* Re: [PATCH] mm/slab: fix an incorrect check in obj_exts_alloc_size()
From: vbabka @ 2026-03-09 14:00 UTC (permalink / raw)
To: Harry Yoo
Cc: adilger.kernel, akpm, cgroups, hannes, hao.li, linux-ext4,
linux-fsdevel, linux-kernel, linux-mm, shicenci, cl, rientjes,
roman.gushchin, viro, surenb, stable
In-Reply-To: <20260309072219.22653-1-harry.yoo@oracle.com>
On 3/9/26 08:22, Harry Yoo wrote:
> obj_exts_alloc_size() prevents recursive allocation of slabobj_ext
> array from the same cache, to avoid creating slabs that are never freed.
>
> There is one mistake that returns the original size when memory
> allocation profiling is disabled. The assumption was that
> memcg-triggered slabobj_ext allocation is always served from
> KMALLOC_CGROUP type. But this is wrong [1]: when the caller specifies
> both __GFP_RECLAIMABLE and __GFP_ACCOUNT with SLUB_TINY enabled, the
> allocation is served from normal kmalloc. This is because kmalloc_type()
> prioritizes __GFP_RECLAIMABLE over __GFP_ACCOUNT, and SLUB_TINY aliases
> KMALLOC_RECLAIM with KMALLOC_NORMAL.
Hm that's suboptimal (leads to sparsely used obj_exts in normal kmalloc
slabs) and maybe separately from this hotfix we could make sure that with
SLUB_TINY, __GFP_ACCOUNT is preferred going forward?
> As a result, the recursion guard is bypassed and the problematic slabs
> can be created. Fix this by removing the mem_alloc_profiling_enabled()
> check entirely. The remaining is_kmalloc_normal() check is still
> sufficient to detect whether the cache is of KMALLOC_NORMAL type and
> avoid bumping the size if it's not.
>
> Without SLUB_TINY, no functional change intended.
> With SLUB_TINY, allocations with __GFP_ACCOUNT|__GFP_RECLAIMABLE
> now allocate a larger array if the sizes equal.
>
> Reported-by: Zw Tang <shicenci@gmail.com>
> Fixes: 280ea9c3154b ("mm/slab: avoid allocating slabobj_ext array from its own slab")
> Closes: https://lore.kernel.org/linux-mm/CAPHJ_VKuMKSke8b11AZQw1PTSFN4n2C0gFxC6xGOG0ZLHgPmnA@mail.gmail.com [1]
> Cc: stable@vger.kernel.org
> Signed-off-by: Harry Yoo <harry.yoo@oracle.com>
Added to slab/for-next-fixes, thanks!
> ---
>
> Zw Tang, could you please confirm that the warning disappears
> on your test environment, with this patch applied?
>
> mm/slub.c | 7 -------
> 1 file changed, 7 deletions(-)
>
> diff --git a/mm/slub.c b/mm/slub.c
> index 20cb4f3b636d..6371838d2352 100644
> --- a/mm/slub.c
> +++ b/mm/slub.c
> @@ -2119,13 +2119,6 @@ static inline size_t obj_exts_alloc_size(struct kmem_cache *s,
> size_t sz = sizeof(struct slabobj_ext) * slab->objects;
> struct kmem_cache *obj_exts_cache;
>
> - /*
> - * slabobj_ext array for KMALLOC_CGROUP allocations
> - * are served from KMALLOC_NORMAL caches.
> - */
> - if (!mem_alloc_profiling_enabled())
> - return sz;
> -
> if (sz > KMALLOC_MAX_CACHE_SIZE)
> return sz;
>
>
> base-commit: 6432f15c818cb30eec7c4ca378ecdebd9796f741
^ permalink raw reply
* [BUG] Warning in ext4_check_map_extents_env
From: Pedro Demarchi Gomes @ 2026-03-09 13:41 UTC (permalink / raw)
To: Theodore Ts'o, Andreas Dilger; +Cc: linux-ext4
Hi,
The warning below occurs when running selftests/mm/merge on a kernel built
with CONFIG_EXT4_DEBUG=y.
syzkaller login: [ 29.277674] ------------[ cut here ]------------
[ 29.279636] WARNING: fs/ext4/inode.c:436 at ext4_check_map_extents_env+0x389/0x440, CPU#1: merge/365
[ 29.282459] Modules linked in:
[ 29.283497] CPU: 1 UID: 0 PID: 365 Comm: merge Not tainted 7.0.0-rc3 #59 PREEMPT(full)
[ 29.285999] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
[ 29.288850] RIP: 0010:ext4_check_map_extents_env+0x389/0x440
[ 29.290653] Code: ff 48 89 da 48 b8 00 00 00 00 00 fc ff df 48 c1 ea 03 80 3c 02 00 0f 85 87 00 00 00 48 8b 45 18 48 85 c0 0f 85 2e fd ff ff 90 <0f> 0b 90 e9 25 fd ff ff e8 8a 2e ca ff e9 e4 fc ff ff 48 89 df e8
[ 29.296623] RSP: 0018:ffff88811876f2a8 EFLAGS: 00010246
[ 29.298288] RAX: 0000000000000000 RBX: ffff888106c66798 RCX: ffffffff81e8ad60
[ 29.300529] RDX: 1ffff11020d8ccf3 RSI: 0000000000000008 RDI: ffff888106c66798
[ 29.302748] RBP: ffff888106c66780 R08: 0000000000000000 R09: ffffed1020d8ccf3
[ 29.305009] R10: ffff888106c6679f R11: 0000000000000001 R12: 00000000001e0c26
[ 29.307226] R13: ffff88811876f494 R14: ffff88811876f498 R15: ffff88811876f488
[ 29.309477] FS: 00007fbe82723780(0000) GS:ffff8883c38aa000(0000) knlGS:0000000000000000
[ 29.312085] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 29.313749] CR2: 00007fbe82790915 CR3: 000000011880e000 CR4: 00000000000006f0
[ 29.315643] Call Trace:
[ 29.316170] <TASK>
[ 29.316539] ext4_map_blocks+0x602/0xb40
[ 29.317204] ? __pfx_ext4_map_blocks+0x10/0x10
[ 29.317971] ? __pfx_stack_trace_save+0x10/0x10
[ 29.318719] ? __filemap_add_folio+0x66f/0xb30
[ 29.319500] ext4_mpage_readpages.constprop.0.isra.0+0x918/0xe20
[ 29.320501] ? __pfx_ext4_mpage_readpages.constprop.0.isra.0+0x10/0x10
[ 29.321602] ? filemap_add_folio+0x11e/0x2c0
[ 29.322325] ? __pfx_ext4_read_folio+0x10/0x10
[ 29.323107] ext4_read_folio+0xd9/0x230
[ 29.323762] ? __pfx_ext4_read_folio+0x10/0x10
[ 29.324552] ? __pfx_ext4_read_folio+0x10/0x10
[ 29.325321] filemap_read_folio+0x43/0x150
[ 29.326041] do_read_cache_folio+0x1b1/0x320
[ 29.326759] read_cache_page+0x46/0x120
[ 29.327426] install_breakpoint+0x27d/0x810
[ 29.328123] uprobe_mmap+0x439/0xeb0
[ 29.328715] ? __pfx_uprobe_mmap+0x10/0x10
[ 29.329391] __mmap_region+0x8af/0x2290
[ 29.330074] ? __pfx___mmap_region+0x10/0x10
[ 29.330793] ? unwind_get_return_address+0x59/0xa0
[ 29.331630] ? event_sched_in+0x33f/0xaf0
[ 29.332308] ? perf_event_groups_next+0x9a/0x200
[ 29.333667] ? mm_get_unmapped_area_vmflags+0x6c/0xe0
[ 29.335295] ? mmap_region+0xd3/0x2b0
[ 29.336171] do_mmap+0x98a/0xec0
[ 29.336713] ? ipe_mmap_file+0xcf/0xe0
[ 29.337340] ? __pfx_do_mmap+0x10/0x10
[ 29.337977] ? __pfx_down_write_killable+0x10/0x10
[ 29.338757] ? __pfx_mutex_unlock+0x10/0x10
[ 29.339477] vm_mmap_pgoff+0x1b2/0x310
[ 29.340114] ? __pfx_vm_mmap_pgoff+0x10/0x10
[ 29.340819] ? __pfx___do_sys_perf_event_open+0x10/0x10
[ 29.341688] ? fget+0x189/0x230
[ 29.342223] ksys_mmap_pgoff+0x2b1/0x5b0
[ 29.342868] ? __pfx_ksys_mmap_pgoff+0x10/0x10
[ 29.343618] do_syscall_64+0xe2/0x560
[ 29.344246] entry_SYSCALL_64_after_hwframe+0x77/0x7f
[ 29.345105] RIP: 0033:0x7fbe82832de2
[ 29.345707] Code: 00 00 00 0f 1f 44 00 00 41 f7 c1 ff 0f 00 00 75 27 55 89 cd 53 48 89 fb 48 85 ff 74 3b 41 89 ea 48 89 df b8 09 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 76 5b 5d c3 0f 1f 00 48 8b 05 f9 8f 0d 00 64
[ 29.348851] RSP: 002b:00007ffd535f3b38 EFLAGS: 00000206 ORIG_RAX: 0000000000000009
[ 29.350309] RAX: ffffffffffffffda RBX: 00007fbe826f9000 RCX: 00007fbe82832de2
[ 29.351526] RDX: 0000000000000004 RSI: 000000000000a000 RDI: 00007fbe826f9000
[ 29.352865] RBP: 0000000000000012 R08: 000000000000000b R09: 0000000000000000
[ 29.354136] R10: 0000000000000012 R11: 0000000000000206 R12: 00007ffd535f4120
[ 29.355357] R13: 0000000000000000 R14: 000000000000000b R15: 0000000000001000
[ 29.356684] </TASK>
[ 29.357119] ---[ end trace 0000000000000000 ]---
The warning is triggered by TEST_F(merge, handle_uprobe_upon_merged_vma) in
selftests/mm/merge.c. It occurs during the first mmap() following the
__NR_perf_event_open syscall, as shown in the excerpt below:
TEST_F(merge, handle_uprobe_upon_merged_vma)
{
const size_t attr_sz = sizeof(struct perf_event_attr);
unsigned int page_size = self->page_size;
const char *probe_file = "./foo";
char *carveout = self->carveout;
struct perf_event_attr attr;
unsigned long type;
void *ptr1, *ptr2;
int fd;
fd = open(probe_file, O_RDWR|O_CREAT, 0600);
ASSERT_GE(fd, 0);
ASSERT_EQ(ftruncate(fd, page_size), 0);
if (read_sysfs("/sys/bus/event_source/devices/uprobe/type", &type) != 0) {
SKIP(goto out, "Failed to read uprobe sysfs file, skipping");
}
memset(&attr, 0, attr_sz);
attr.size = attr_sz;
attr.type = type;
attr.config1 = (__u64)(long)probe_file;
attr.config2 = 0x0;
ASSERT_GE(syscall(__NR_perf_event_open, &attr, 0, -1, -1, 0), 0);
ptr1 = mmap(&carveout[page_size], 10 * page_size, PROT_EXEC,
MAP_PRIVATE | MAP_FIXED, fd, 0); < WARNING!!!
ASSERT_NE(ptr1, MAP_FAILED);
getchar();
ptr2 = mremap(ptr1, page_size, 2 * page_size,
MREMAP_MAYMOVE | MREMAP_FIXED, ptr1 + 5 * page_size);
ASSERT_NE(ptr2, MAP_FAILED);
ASSERT_NE(mremap(ptr2, page_size, page_size,
MREMAP_MAYMOVE | MREMAP_FIXED, ptr1), MAP_FAILED);
out:
close(fd);
remove(probe_file);
}
The issue originates from the following call chain:
prepare_uprobe
-> copy_insn
-> __copy_insn
-> read_mapping_page() or shmem_read_mapping_page()
Both read_mapping_page() and shmem_read_mapping_page() are invoked
without holding i_rwsem or invalidate_lock. When CONFIG_EXT4_DEBUG
is enabled, this triggers the warning in ext4_check_map_extents_env().
^ permalink raw reply
* Re: [BUG] WARNING: lib/ratelimit.c:LINE at ___ratelimit, CPU: kworker/u16:NUM/NUM
From: Jan Kara @ 2026-03-09 12:21 UTC (permalink / raw)
To: Xianying Wang; +Cc: tytso, jack, yi.zhang, libaokun1, linux-ext4, linux-fsdevel
In-Reply-To: <CAOU40uDriX5NCfac2iK70z-M3Ea9pTMvTHtPGz97HKXbYhrjdQ@mail.gmail.com>
Hello,
the warning you've hit looks very likely like a race in the ratelimit code
itself where the WARN_ON is racing with some update to the ratelimit interval
resulting in intermediate invalid value. Neither quota code nor ext4 does
anything to the printk ratelimit state.
Secondly, we don't have a capacity (or even a will) to verify fuzzing
results of each random contributor. We generally process only fuzzing
results from the syzbot run by Google where there's both infractructure to
ease bug triage as well as safety guarantees someone isn't just trying to
make you run a malicious code in your test environment. If you have some
improvements to the way syzkaller works, please work with syzbot guys to
integrate your improvements there for everybody's benefit. Thank you!
Honza
On Mon 09-03-26 18:24:01, Xianying Wang wrote:
> Hello,
>
> I encountered the following warning while testing Linux kernel
> v7.0-rc2 with syzkaller.
>
> The kernel reports a warning in lib/ratelimit.c triggered from the
> quota release workqueue:
>
> WARNING: lib/ratelimit.c at ___ratelimit
>
> Workqueue: quota_events_unbound quota_release_workfn
>
> Before the warning occurs, the filesystem reports several EXT4 errors
> indicating that the filesystem metadata is already corrupted. In
> particular, ext4 detects that allocated blocks overlap with filesystem
> metadata and subsequently forces the filesystem to unmount. After
> that, during the quota cleanup phase, the kernel reports a cycle in
> the quota tree and attempts to release dquot structures through the
> quota release workqueue.
>
> The call chain indicates that the warning is triggered during the
> quota cleanup path:
>
> quota_release_workfn → ext4_release_dquot → dquot_release →
> qtree_release_dquot → qtree_delete_dquot → remove_tree → __quota_error
> → ___ratelimit
>
> During this error reporting process, ___ratelimit() receives invalid
> parameters (e.g., a negative interval), which triggers the warning
> about an uninitialized or corrupted ratelimit_state structure.
>
> From the observed behavior, the warning appears to be a secondary
> symptom triggered while handling a corrupted filesystem and quota
> tree. The initial corruption is detected by ext4 during block
> allocation checks, and the subsequent quota cleanup path exposes the
> ratelimit warning while reporting quota errors.
>
> This can be reproduced on:
>
> HEAD commit:
>
> 11439c4635edd669ae435eec308f4ab8a0804808
>
> report: https://pastebin.com/raw/yJp9p1dM
>
> console output : https://pastebin.com/raw/tyPquTTH
>
> kernel config : https://pastebin.com/7hk2cU0G
>
> C reproducer :https://pastebin.com/raw/Sh3a62JM
>
> Let me know if you need more details or testing.
>
> Best regards,
>
> Xianying
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
^ permalink raw reply
* [BUG] ext4: kernel page fault in ext4_xattr_set_entry via ext4_destroy_inline_data_nolock
From: Zw Tang @ 2026-03-09 12:05 UTC (permalink / raw)
To: tytso, Andreas Dilger; +Cc: linux-ext4, linux-kernel
Hi,
I would like to report an ext4 kernel crash that I reproduced on v7.0-rc3
with a syzkaller-generated C reproducer.
A crafted ext4 filesystem image can trigger a kernel page fault in
memmove() called from ext4_xattr_set_entry(), during the inline data
destruction path.
The first crash happens in:
ext4_destroy_inline_data_nolock()
-> ext4_xattr_ibody_set()
-> ext4_xattr_set_entry()
-> memmove()
Kernel:
git tree: torvalds/linux
commit: 1f318b96cc84d7c2ab792fcc0bfd42a7ca890681
kernel version: v7.0.0-rc3
hardware: QEMU Ubuntu 24.10
Rreproducer:
C reproducer: https://pastebin.com/raw/T7HRiZc2
console output: https://pastebin.com/raw/iYYf40Ek
kernel config: https://pastebin.com/raw/CnHdTQNm
Crash log
---------
The first Oops is:
BUG: unable to handle page fault for address: ffff88800745d000
#PF: supervisor write access in kernel mode
#PF: error_code(0x0003) - permissions violation
CPU: 0 PID: 285 Comm: repro Not tainted 7.0.0-rc3 #1
RIP: 0010:memmove+0x5f/0x1b0
Call Trace:
ext4_xattr_set_entry+0x870/0xb80
ext4_xattr_ibody_set+0x1a8/0x270
ext4_destroy_inline_data_nolock+0x1b2/0x300
ext4_destroy_inline_data+0x44/0x80
ext4_do_writepages+0x216/0x1aa0
ext4_writepages+0x165/0x3e0
do_writepages+0xe3/0x1d0
filemap_writeback+0x103/0x140
ext4_alloc_da_blocks+0x58/0x110
ext4_release_file+0xef/0x140
__fput+0x1ef/0x550
task_work_run+0x94/0x100
do_exit+0x3bb/0x1260
do_group_exit+0x53/0xf0
__x64_sys_exit_group+0x1c/0x20
This looks like an ext4 bug in the inline-data/xattr interaction path.
Based on the call trace, the crafted ext4 image seems to drive ext4 into
an inconsistent inline-data / inode-body xattr state. During
ext4_destroy_inline_data_nolock(), ext4 updates inode-body xattr entries
through ext4_xattr_ibody_set() and ext4_xattr_set_entry(), and the final
memmove() faults on an invalid address.
So the crash appears to be rooted in ext4_xattr_set_entry(), with
ext4_destroy_inline_data_nolock() being the immediate trigger path.
Thanks,
Zw Tang
^ permalink raw reply
* [BUG] WARNING: lib/ratelimit.c:LINE at ___ratelimit, CPU: kworker/u16:NUM/NUM
From: Xianying Wang @ 2026-03-09 10:25 UTC (permalink / raw)
To: tytso; +Cc: jack, linux-ext4, linux-fsdevel
Hello,
I encountered the following warning while testing Linux kernel
v7.0-rc2 with syzkaller.
The kernel reports a warning in lib/ratelimit.c triggered from the
quota release workqueue:
WARNING: lib/ratelimit.c at ___ratelimit
Workqueue: quota_events_unbound quota_release_workfn
Before the warning occurs, the filesystem reports several EXT4 errors
indicating that the file system metadata is already corrupted. In
particular, ext4 detects that allocated blocks overlap with filesystem
metadata and subsequently forces the filesystem to unmount. After
that, during the quota cleanup phase, the kernel reports a cycle in
the quota tree and attempts to release dquot structures through the
quota release workqueue.
The call chain indicates that the warning is triggered during the
quota cleanup path:
quota_release_workfn → ext4_release_dquot → dquot_release →
qtree_release_dquot → qtree_delete_dquot → remove_tree → __quota_error
→ ___ratelimit
During this error reporting process, ___ratelimit() receives invalid
parameters (e.g., a negative interval), which triggers the warning
about an uninitialized or corrupted ratelimit_state structure.
From the observed behavior, the warning appears to be a secondary
symptom triggered while handling a corrupted filesystem and quota
tree. The initial corruption is detected by ext4 during block
allocation checks, and the subsequent quota cleanup path exposes the
ratelimit warning while reporting quota errors.
This can be reproduced on:
HEAD commit:
11439c4635edd669ae435eec308f4ab8a0804808
report: https://pastebin.com/raw/yJp9p1dM
console output : https://pastebin.com/raw/tyPquTTH
kernel config : https://pastebin.com/7hk2cU0G
C reproducer :https://pastebin.com/raw/Sh3a62JM
Let me know if you need more details or testing.
Best regards,
Xianying
^ permalink raw reply
* [BUG] WARNING: lib/ratelimit.c:LINE at ___ratelimit, CPU: kworker/u16:NUM/NUM
From: Xianying Wang @ 2026-03-09 10:24 UTC (permalink / raw)
To: tytso; +Cc: jack, yi.zhang, libaokun1, linux-ext4, linux-fsdevel
Hello,
I encountered the following warning while testing Linux kernel
v7.0-rc2 with syzkaller.
The kernel reports a warning in lib/ratelimit.c triggered from the
quota release workqueue:
WARNING: lib/ratelimit.c at ___ratelimit
Workqueue: quota_events_unbound quota_release_workfn
Before the warning occurs, the filesystem reports several EXT4 errors
indicating that the filesystem metadata is already corrupted. In
particular, ext4 detects that allocated blocks overlap with filesystem
metadata and subsequently forces the filesystem to unmount. After
that, during the quota cleanup phase, the kernel reports a cycle in
the quota tree and attempts to release dquot structures through the
quota release workqueue.
The call chain indicates that the warning is triggered during the
quota cleanup path:
quota_release_workfn → ext4_release_dquot → dquot_release →
qtree_release_dquot → qtree_delete_dquot → remove_tree → __quota_error
→ ___ratelimit
During this error reporting process, ___ratelimit() receives invalid
parameters (e.g., a negative interval), which triggers the warning
about an uninitialized or corrupted ratelimit_state structure.
From the observed behavior, the warning appears to be a secondary
symptom triggered while handling a corrupted filesystem and quota
tree. The initial corruption is detected by ext4 during block
allocation checks, and the subsequent quota cleanup path exposes the
ratelimit warning while reporting quota errors.
This can be reproduced on:
HEAD commit:
11439c4635edd669ae435eec308f4ab8a0804808
report: https://pastebin.com/raw/yJp9p1dM
console output : https://pastebin.com/raw/tyPquTTH
kernel config : https://pastebin.com/7hk2cU0G
C reproducer :https://pastebin.com/raw/Sh3a62JM
Let me know if you need more details or testing.
Best regards,
Xianying
^ permalink raw reply
* Re: [BUG] kernel BUG in ext4_do_writepages
From: Xianying Wang @ 2026-03-09 8:02 UTC (permalink / raw)
To: yebin (H); +Cc: tytso, adilger.kernel, linux-ext4, linux-kernel
In-Reply-To: <69AB6E6D.4080007@huawei.com>
[-- Attachment #1: Type: text/plain, Size: 2988 bytes --]
Hi,
I checked the history of ext4_do_writepages() using git log -L and
found that the function was recently modified by commit
bbbf150f3f85619569ac19dc6458cca7c492e715 ("ext4: reserved credits for
one extent during the folio writeback").
This patch appears potentially related because it changes the journal
credit reservation logic as well as the transaction restart / folio
resubmission behavior in the writeback path. These changes seem
relevant to the crash context I observed in ext4_do_writepages(),
where the filesystem reports free_blocks=0 while dirty_blocks are
still present.
As an additional observation, I was able to reproduce this issue on
Linux v6.17 and Linux v6.18-rc7 as well. However, I cannot confirm yet
that this commit is the exact introducing commit.
If helpful, I can also try to run a git bisect to identify the
introducing commit more precisely.
Please let me know if more information is needed.
Best regards,
Xianying
yebin (H) <yebin10@huawei.com> 于2026年3月7日周六 08:16写道:
>
>
>
> On 2026/3/6 13:42, Xianying Wang wrote:
> > Hi,
> >
> > I would like to report a kernel BUG triggered by a syzkaller
> > reproducer in the ext4 filesystem writeback path.
> >
>
> There was a period when I also noticed block allocation failures during
> write-back, but after the configuration was changed, it didn't seem to
> happen again.
>
> > The issue was originally observed on Linux 6.19.0-rc8 and can also be
> > reproduced on Linux 7.0-rc2. The crash occurs in the ext4 writeback
>
> Can you identify which patch or which patchset introduced the issue?
>
> > routine while the background writeback worker is flushing dirty pages
> > to disk.
> >
> > During the crash, the filesystem reports that no free blocks are
> > available while dirty pages and reserved blocks still exist. Under
> > this condition, the writeback worker continues processing pending
> > writeback operations and eventually reaches an internal consistency
> > check inside the ext4 writeback routine, which triggers a kernel BUG.
> >
> > Based on the execution context, the issue appears to be related to the
> > interaction between delayed allocation and the writeback mechanism
> > when the filesystem runs out of available blocks. When the writeback
> > thread attempts to flush dirty pages in this state, ext4 enters an
> > unexpected internal state that causes the BUG to be triggered.
> >
> > This can be reproduced on:
> >
> > HEAD commit:
> >
> > 11439c4635edd669ae435eec308f4ab8a0804808
> >
> > report: https://pastebin.com/raw/dNFvCatE
> >
> > console output : https://pastebin.com/raw/LAPYKL5P
> >
> > kernel config : https://pastebin.com/7hk2cU0G
> >
> > C reproducer :https://pastebin.com/raw/v07yFCWP
> >
>
> Can you add these to the email as attachments?
>
> > Let me know if you need more details or testing.
> >
> > Best regards,
> >
> > Xianying
> >
> >
> > .
> >
[-- Attachment #2: repro.report --]
[-- Type: application/octet-stream, Size: 101315 bytes --]
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
------------[ cut here ]------------
EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
kernel BUG at fs/ext4/inode.c:2809!
Oops: invalid opcode: 0000 [#1] SMP KASAN NOPTI
CPU: 1 UID: 0 PID: 57 Comm: kworker/u16:3 Not tainted 6.19.0-rc8 #2 PREEMPT(voluntary)
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 117
Hardware name: QEMU Ubuntu 24.10 PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
Workqueue: writeback wb_workfn
EXT4-fs (loop7): This should not happen!! Data will be lost
(flush-7:0)
RIP: 0010:ext4_do_writepages+0x2ce5/0x3b40 fs/ext4/inode.c:2809
Code: 84 ff 45 85 e4 0f 84 08 f6 ff ff 44 8b a5 08 ff ff ff c6 85 9f fe ff ff 01 89 9d 08 ff ff ff e9 50 e5 ff ff e8 dc a1 84 ff 90 <0f> 0b e8 d4 a1 84 ff 48 8b 8d d8 fe ff ff 48 89 c8 48 c1 e8 03 42
RSP: 0018:ffff8881017bf310 EFLAGS: 00010246
RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffffffff81f07130
RDX: 0000000000000001 RSI: ffff888101335340 RDI: 0000000000000002
RBP: ffff8881017bf4d0 R08: 0000000000000000 R09: ffffed1022cd0d26
R10: ffffed1022cd0d25 R11: ffff88811668692f R12: ffff888116686928
R13: 0000000000000001 R14: ffff8881017bf510 R15: ffff888116686b70
FS: 0000000000000000(0000) GS:ffff8881936bf000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007f9c2fe5eec0 CR3: 0000000109da4000 CR4: 0000000000350ef0
Call Trace:
<TASK>
ext4_writepages+0x369/0x7a0 fs/ext4/inode.c:3026
do_writepages+0x244/0x5c0 mm/page-writeback.c:2598
__writeback_single_inode+0x109/0x12a0 fs/fs-writeback.c:1737
writeback_sb_inodes+0x6f9/0x1b00 fs/fs-writeback.c:2030
wb_writeback+0x1a5/0x9e0 fs/fs-writeback.c:2216
wb_do_writeback fs/fs-writeback.c:2363 [inline]
wb_workfn+0x12d/0xcb0 fs/fs-writeback.c:2403
process_one_work kernel/workqueue.c:3257 [inline]
process_scheduled_works+0x54f/0x1910 kernel/workqueue.c:3340
worker_thread+0x5a9/0xd10 kernel/workqueue.c:3421
kthread+0x43f/0x860 kernel/kthread.c:463
ret_from_fork+0x66d/0x7b0 arch/x86/kernel/process.c:158
ret_from_fork_asm+0x1a/0x30 arch/x86/entry/entry_64.S:246
</TASK>
Modules linked in:
---[ end trace 0000000000000000 ]---
RIP: 0010:ext4_do_writepages+0x2ce5/0x3b40 fs/ext4/inode.c:2809
Code: 84 ff 45 85 e4 0f 84 08 f6 ff ff 44 8b a5 08 ff ff ff c6 85 9f fe ff ff 01 89 9d 08 ff ff ff e9 50 e5 ff ff e8 dc a1 84 ff 90 <0f> 0b e8 d4 a1 84 ff 48 8b 8d d8 fe ff ff 48 89 c8 48 c1 e8 03 42
RSP: 0018:ffff8881017bf310 EFLAGS: 00010246
RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffffffff81f07130
RDX: 0000000000000001 RSI: ffff888101335340 RDI: 0000000000000002
RBP: ffff8881017bf4d0 R08: 0000000000000000 R09: ffffed1022cd0d26
R10: ffffed1022cd0d25 R11: ffff88811668692f R12: ffff888116686928
R13: 0000000000000001 R14: ffff8881017bf510 R15: ffff888116686b70
FS: 0000000000000000(0000) GS:ffff8881936bf000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007f9c2fe5eec0 CR3: 0000000109da4000 CR4: 0000000000350ef0
------------[ cut here ]------------
WARNING: kernel/exit.c:902 at do_exit+0x1e3a/0x2d90 kernel/exit.c:902, CPU#1: kworker/u16:3/57
Modules linked in:
CPU: 1 UID: 0 PID: 57 Comm: kworker/u16:3 Tainted: G D 6.19.0-rc8 #2 PREEMPT(voluntary)
Tainted: [D]=DIE
Hardware name: QEMU Ubuntu 24.10 PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
Workqueue: writeback wb_workfn (flush-7:0)
RIP: 0010:do_exit+0x1e3a/0x2d90 kernel/exit.c:902
Code: 2f 04 00 00 c7 43 18 00 00 00 00 e9 88 e4 ff ff e8 7b fd 39 00 bf 02 24 00 00 e8 c1 f9 0b 00 e9 3e ff ff ff e8 67 fd 39 00 90 <0f> 0b 90 e9 83 e2 ff ff e8 59 fd 39 00 48 89 ee bf 05 06 00 00 e8
RSP: 0018:ffff8881017bfe30 EFLAGS: 00010246
RAX: 00000000f0f05800 RBX: 0000000000000200 RCX: ffffffff813b1e67
RDX: 1ffff11020266ca5 RSI: ffff888101335340 RDI: 0000000000000002
RBP: 000000000000000b R08: fffffbfff0f05800 R09: fffffbfff0f058e1
R10: fffffbfff0f058e0 R11: 0000000000000003 R12: ffff888101335340
R13: 0000000000002710 R14: ffff8881013369e8 R15: ffff888101335340
FS: 0000000000000000(0000) GS:ffff8881936bf000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007f9c2fe5eec0 CR3: 0000000109da4000 CR4: 0000000000350ef0
Call Trace:
<TASK>
make_task_dead+0x174/0x3d0 kernel/exit.c:1074
rewind_stack_and_make_dead+0x16/0x20 arch/x86/entry/entry_64.S:1494
RIP: 0000:0x0
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
Code: Unable to access opcode bytes at 0xffffffffffffffd6.
RSP: 0000:0000000000000000 EFLAGS: 00000000 ORIG_RAX: 0000000000000000
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 128 with error 117
RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000000
EXT4-fs (loop3): This should not happen!! Data will be lost
RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 14 with error 117
RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
EXT4-fs (loop4): This should not happen!! Data will be lost
R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
</TASK>
irq event stamp: 5391
hardirqs last enabled at (5391): [<ffffffff8129aeb1>] cond_local_irq_enable arch/x86/include/asm/traps.h:51 [inline]
hardirqs last enabled at (5391): [<ffffffff8129aeb1>] do_error_trap+0x171/0x240 arch/x86/kernel/traps.c:358
hardirqs last disabled at (5390): [<ffffffff84a92121>] exc_invalid_op+0x51/0x80 arch/x86/kernel/traps.c:492
softirqs last enabled at (5382): [<ffffffff813b9880>] softirq_handle_end kernel/softirq.c:468 [inline]
softirqs last enabled at (5382): [<ffffffff813b9880>] handle_softirqs+0x490/0x700 kernel/softirq.c:650
softirqs last disabled at (5373): [<ffffffff813bb2e6>] __do_softirq kernel/softirq.c:656 [inline]
softirqs last disabled at (5373): [<ffffffff813bb2e6>] invoke_softirq kernel/softirq.c:496 [inline]
softirqs last disabled at (5373): [<ffffffff813bb2e6>] __irq_exit_rcu kernel/softirq.c:723 [inline]
softirqs last disabled at (5373): [<ffffffff813bb2e6>] irq_exit_rcu+0xd6/0x110 kernel/softirq.c:739
---[ end trace 0000000000000000 ]---
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 36 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop2): unmounting filesystem 00000000-0000-0000-0000-000000000000.
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop3): unmounting filesystem 00000000-0000-0000-0000-000000000000.
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=16
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop1): unmounting filesystem 00000000-0000-0000-0000-000000000000.
EXT4-fs (loop5): unmounting filesystem 00000000-0000-0000-0000-000000000000.
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 14 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop7): unmounting filesystem 00000000-0000-0000-0000-000000000000.
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=16
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop3): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs (loop6): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs (loop2): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs (loop5): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs (loop7): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs (loop1): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs (loop4): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 156 with error 117
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 117
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 46 with error 117
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 120 with error 117
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop5): This should not happen!! Data will be lost
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 46 with max blocks 2 with error 28
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 42 with error 117
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=16
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 34 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=48
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=3
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 156 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=16
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 78 with error 117
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop6): unmounting filesystem 00000000-0000-0000-0000-000000000000.
EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 120 with max blocks 2 with error 28
EXT4-fs (loop5): This should not happen!! Data will be lost
EXT4-fs (loop5): Total free blocks count 0
EXT4-fs (loop5): Free/Dirty block details
EXT4-fs (loop5): free_blocks=0
EXT4-fs (loop5): dirty_blocks=16
EXT4-fs (loop5): Block reservation details
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 78 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=16
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 42 with max blocks 2 with error 28
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=16
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop6): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs (loop2): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs (loop5): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 92 with error 117
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 114 with error 117
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 192 with error 117
EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 117
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 8 with error 117
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 117
EXT4-fs (loop5): This should not happen!! Data will be lost
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 92 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=16
EXT4-fs (loop2): Block reservation details
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 4 with error 117
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 114 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=16
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=1
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 4 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=16
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=1
EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 8 with max blocks 2 with error 28
EXT4-fs (loop5): This should not happen!! Data will be lost
EXT4-fs (loop5): Total free blocks count 0
EXT4-fs (loop5): Free/Dirty block details
EXT4-fs (loop5): free_blocks=0
EXT4-fs (loop5): dirty_blocks=16
EXT4-fs (loop5): Block reservation details
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 214 with error 117
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 38 with error 117
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 164 with error 117
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 74 with error 117
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 12 with error 117
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 214 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=16
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=1
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 164 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=16
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=1
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 74 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=16
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=1
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 12 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=16
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=1
------------[ cut here ]------------
kernel BUG at fs/ext4/inode.c:2809!
Oops: invalid opcode: 0000 [#2] SMP KASAN NOPTI
CPU: 0 UID: 0 PID: 287 Comm: kworker/u16:4 Tainted: G D W 6.19.0-rc8 #2 PREEMPT(voluntary)
Tainted: [D]=DIE, [W]=WARN
Hardware name: QEMU Ubuntu 24.10 PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
Workqueue: writeback wb_workfn (flush-7:5)
RIP: 0010:ext4_do_writepages+0x2ce5/0x3b40 fs/ext4/inode.c:2809
Code: 84 ff 45 85 e4 0f 84 08 f6 ff ff 44 8b a5 08 ff ff ff c6 85 9f fe ff ff 01 89 9d 08 ff ff ff e9 50 e5 ff ff e8 dc a1 84 ff 90 <0f> 0b e8 d4 a1 84 ff 48 8b 8d d8 fe ff ff 48 89 c8 48 c1 e8 03 42
RSP: 0018:ffff888110f7f310 EFLAGS: 00010246
RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffffffff81f07130
RDX: 0000000000000001 RSI: ffff8881033f9bc0 RDI: 0000000000000002
RBP: ffff888110f7f4d0 R08: 0000000000000000 R09: ffffed10232d3600
R10: ffffed10232d35ff R11: ffff88811969afff R12: ffff88811969aff8
R13: 0000000000000001 R14: ffff888110f7f510 R15: ffff88811969b240
FS: 0000000000000000(0000) GS:ffff88819363f000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007f49b0dd7a90 CR3: 0000000100db1000 CR4: 0000000000350ef0
Call Trace:
<TASK>
ext4_writepages+0x369/0x7a0 fs/ext4/inode.c:3026
do_writepages+0x244/0x5c0 mm/page-writeback.c:2598
__writeback_single_inode+0x109/0x12a0 fs/fs-writeback.c:1737
writeback_sb_inodes+0x6f9/0x1b00 fs/fs-writeback.c:2030
wb_writeback+0x1a5/0x9e0 fs/fs-writeback.c:2216
wb_do_writeback fs/fs-writeback.c:2363 [inline]
wb_workfn+0x12d/0xcb0 fs/fs-writeback.c:2403
process_one_work kernel/workqueue.c:3257 [inline]
process_scheduled_works+0x54f/0x1910 kernel/workqueue.c:3340
worker_thread+0x5a9/0xd10 kernel/workqueue.c:3421
kthread+0x43f/0x860 kernel/kthread.c:463
ret_from_fork+0x66d/0x7b0 arch/x86/kernel/process.c:158
ret_from_fork_asm+0x1a/0x30 arch/x86/entry/entry_64.S:246
</TASK>
Modules linked in:
---[ end trace 0000000000000000 ]---
RIP: 0010:ext4_do_writepages+0x2ce5/0x3b40 fs/ext4/inode.c:2809
Code: 84 ff 45 85 e4 0f 84 08 f6 ff ff 44 8b a5 08 ff ff ff c6 85 9f fe ff ff 01 89 9d 08 ff ff ff e9 50 e5 ff ff e8 dc a1 84 ff 90 <0f> 0b e8 d4 a1 84 ff 48 8b 8d d8 fe ff ff 48 89 c8 48 c1 e8 03 42
RSP: 0018:ffff8881017bf310 EFLAGS: 00010246
RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffffffff81f07130
RDX: 0000000000000001 RSI: ffff888101335340 RDI: 0000000000000002
RBP: ffff8881017bf4d0 R08: 0000000000000000 R09: ffffed1022cd0d26
R10: ffffed1022cd0d25 R11: ffff88811668692f R12: ffff888116686928
R13: 0000000000000001 R14: ffff8881017bf510 R15: ffff888116686b70
FS: 0000000000000000(0000) GS:ffff88819363f000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007f49b0dd7a90 CR3: 0000000100db1000 CR4: 0000000000350ef0
------------[ cut here ]------------
WARNING: kernel/exit.c:902 at do_exit+0x1e3a/0x2d90 kernel/exit.c:902, CPU#0: kworker/u16:4/287
Modules linked in:
CPU: 0 UID: 0 PID: 287 Comm: kworker/u16:4 Tainted: G D W 6.19.0-rc8 #2 PREEMPT(voluntary)
Tainted: [D]=DIE, [W]=WARN
Hardware name: QEMU Ubuntu 24.10 PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
Workqueue: writeback wb_workfn (flush-7:5)
RIP: 0010:do_exit+0x1e3a/0x2d90 kernel/exit.c:902
Code: 2f 04 00 00 c7 43 18 00 00 00 00 e9 88 e4 ff ff e8 7b fd 39 00 bf 02 24 00 00 e8 c1 f9 0b 00 e9 3e ff ff ff e8 67 fd 39 00 90 <0f> 0b 90 e9 83 e2 ff ff e8 59 fd 39 00 48 89 ee bf 05 06 00 00 e8
RSP: 0018:ffff888110f7fe30 EFLAGS: 00010246
RAX: 00000000f0f05800 RBX: 0000000000000200 RCX: ffffffff813b1e67
RDX: 1ffff1102067f5b5 RSI: ffff8881033f9bc0 RDI: 0000000000000002
RBP: 000000000000000b R08: fffffbfff0f05800 R09: fffffbfff0f058e1
R10: fffffbfff0f058e0 R11: 0000000000000003 R12: ffff8881033f9bc0
R13: 0000000000002710 R14: ffff8881033fb268 R15: ffff8881033f9bc0
FS: 0000000000000000(0000) GS:ffff88819363f000(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007f49b0dd7a90 CR3: 0000000100db1000 CR4: 0000000000350ef0
Call Trace:
<TASK>
make_task_dead+0x174/0x3d0 kernel/exit.c:1074
rewind_stack_and_make_dead+0x16/0x20 arch/x86/entry/entry_64.S:1494
RIP: 0000:0x0
Code: Unable to access opcode bytes at 0xffffffffffffffd6.
RSP: 0000:0000000000000000 EFLAGS: 00000000 ORIG_RAX: 0000000000000000
RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000000
RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
</TASK>
irq event stamp: 23206
hardirqs last enabled at (23205): [<ffffffff814206cc>] mod_delayed_work_on+0x13c/0x180 kernel/workqueue.c:2593
hardirqs last disabled at (23206): [<ffffffff84aa3b2c>] __schedule+0x194c/0x3f90 kernel/sched/core.c:6751
softirqs last enabled at (23112): [<ffffffff813b9880>] softirq_handle_end kernel/softirq.c:468 [inline]
softirqs last enabled at (23112): [<ffffffff813b9880>] handle_softirqs+0x490/0x700 kernel/softirq.c:650
softirqs last disabled at (23105): [<ffffffff813bb2e6>] __do_softirq kernel/softirq.c:656 [inline]
softirqs last disabled at (23105): [<ffffffff813bb2e6>] invoke_softirq kernel/softirq.c:496 [inline]
softirqs last disabled at (23105): [<ffffffff813bb2e6>] __irq_exit_rcu kernel/softirq.c:723 [inline]
softirqs last disabled at (23105): [<ffffffff813bb2e6>] irq_exit_rcu+0xd6/0x110 kernel/softirq.c:739
---[ end trace 0000000000000000 ]---
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 360 with error 117
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 128 with error 117
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 360 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=16
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=1
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 28 with error 117
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 128 with max blocks 2 with error 28
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 294 with error 117
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 30 with error 117
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=16
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=1
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 28 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=16
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=1
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 294 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=16
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=1
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 117
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 66 with error 117
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 118 with error 117
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 126 with error 117
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 56 with error 117
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 126 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=16
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=1
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 118 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=16
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=1
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 56 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=16
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=1
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 42 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=48
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=3
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 42 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 34 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=48
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=3
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 34 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=96
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=6
syz-executor406 (891) used greatest stack depth: 22912 bytes left
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 144 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=144
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=9
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 288 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=304
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=19
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 117
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 288 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 14 with error 117
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 160 with error 117
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 14 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=16
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=1
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 246 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 226 with error 28
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop6): dirty_blocks=256
EXT4-fs (loop2): dirty_blocks=240
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=16
EXT4-fs (loop2): i_reserved_data_blocks=15
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=96
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=6
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 246 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 18 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=32
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=2
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 226 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 80 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=80
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=5
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 74 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=80
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=5
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 74 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 60 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=64
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=4
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=96
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=6
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 132 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=144
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=9
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 60 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=64
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=4
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 102 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=112
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=7
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 102 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 338 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=352
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=22
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 40 with error 117
EXT4-fs (loop4): This should not happen!! Data will be lost
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 338 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 117
EXT4-fs (loop6): This should not happen!! Data will be lost
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=64
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=4
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 108 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=112
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=7
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 22 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=32
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=2
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 108 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 252 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=256
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=16
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 106 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 248 with error 28
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop6): dirty_blocks=112
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop6): i_reserved_data_blocks=7
EXT4-fs (loop4): dirty_blocks=256
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=16
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 252 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 22 with max blocks 2 with error 28
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 106 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 248 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
set_capacity_and_notify: 91 callbacks suppressed
loop1: detected capacity change from 0 to 2048
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=96
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=6
loop4: detected capacity change from 0 to 2048
loop7: detected capacity change from 0 to 2048
loop6: detected capacity change from 0 to 2048
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
loop2: detected capacity change from 0 to 2048
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 38 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=48
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=3
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=32
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=2
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 38 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=32
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=2
loop7: detected capacity change from 0 to 2048
loop1: detected capacity change from 0 to 2048
loop3: detected capacity change from 0 to 2048
ext4: Unknown parameter 'subj_user'
loop6: detected capacity change from 0 to 2048
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm ext4lazyinit: bg 0: block 234: padding at end of block bitmap is not set
loop2: detected capacity change from 0 to 2048
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 118 with error 28
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 6 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop1): dirty_blocks=128
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop7): dirty_blocks=16
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=8
EXT4-fs (loop7): i_reserved_data_blocks=1
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 102 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=112
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=7
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 6 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 226 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=240
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=15
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 102 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 156 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=176
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=11
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 54 with error 28
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 226 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=64
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=4
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 156 with max blocks 8 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 54 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 70 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=80
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=5
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 268 with error 28
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 76 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=80
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=5
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=272
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=17
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 268 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 70 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 76 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 182 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=192
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=12
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 182 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 38 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=48
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=3
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 38 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=16
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=1
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 2 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 160 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=160
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=10
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 132 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=144
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=9
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 84 with error 117
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 124 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=128
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=8
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 132 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 124 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 66 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=80
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=5
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 84 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=16
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=1
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 66 with max blocks 4 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 108 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=112
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=7
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 224 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=240
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=15
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 108 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 224 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 152 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=160
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=10
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 152 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=96
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=6
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 194 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=208
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=13
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=64
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=4
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 194 with max blocks 2 with error 28
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 278 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=288
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=18
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=64
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=4
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 278 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 124 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=128
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=8
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 124 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 74 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=80
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=5
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=32
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=2
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 74 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 256 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=256
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=16
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 70 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=80
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=5
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm ext4lazyinit: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 276 with error 28
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=288
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=18
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=32
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=2
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 28 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=32
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=2
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 70 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 276 with max blocks 4 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 28 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 118 with error 28
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=128
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=8
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 260 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=272
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=17
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 260 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 118 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 14 with error 117
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 14 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=16
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=1
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 32 with max blocks 4 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=16
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=1
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 206 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=208
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=13
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 74 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=80
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=5
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=32
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=2
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=64
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=4
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 92 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=112
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=7
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 74 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 206 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 92 with max blocks 6 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm ext4lazyinit: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 204 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=208
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=13
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 170 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=176
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=11
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 204 with max blocks 4 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 170 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 58 with error 117
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 58 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=16
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=1
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 236 with error 117
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 128 with error 117
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 54 with error 117
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 236 with max blocks 2 with error 28
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 34 with error 117
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=16
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=1
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 128 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=16
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=1
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 54 with max blocks 2 with error 28
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop6): dirty_blocks=96
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop2): dirty_blocks=16
EXT4-fs (loop6): i_reserved_data_blocks=6
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=1
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 34 with max blocks 2 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=16
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=1
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 6 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=16
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=1
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 142 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=144
EXT4-fs (loop2): Block reservation details
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): i_reserved_data_blocks=9
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 38 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=48
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=3
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 142 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 6 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 38 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 22 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=32
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=2
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 22 with max blocks 2 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
ext4: Unknown parameter 'subj_user'
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 182 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=192
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=12
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop2): dirty_blocks=48
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop2): i_reserved_data_blocks=3
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=64
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=4
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 182 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 117
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 32 with max blocks 8 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
EXT4-fs (loop4): This should not happen!! Data will be lost
set_capacity_and_notify: 78 callbacks suppressed
loop4: detected capacity change from 0 to 2048
loop1: detected capacity change from 0 to 2048
loop2: detected capacity change from 0 to 2048
loop7: detected capacity change from 0 to 2048
ext4: Unknown parameter 'subj_user'
ext4: Unknown parameter 'subj_user'
loop3: detected capacity change from 0 to 2048
ext4: Unknown parameter 'subj_user'
loop6: detected capacity change from 0 to 2048
ext4: Unknown parameter 'subj_user'
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 174 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=176
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=11
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 50 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop7): Total free blocks count 0
EXT4-fs (loop7): Free/Dirty block details
EXT4-fs (loop7): free_blocks=0
EXT4-fs (loop7): dirty_blocks=64
EXT4-fs (loop7): Block reservation details
EXT4-fs (loop7): i_reserved_data_blocks=4
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 174 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 50 with max blocks 2 with error 28
EXT4-fs (loop7): This should not happen!! Data will be lost
loop1: detected capacity change from 0 to 2048
loop3: detected capacity change from 0 to 2048
loop2: detected capacity change from 0 to 2048
loop4: detected capacity change from 0 to 2048
EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 22 with error 28
EXT4-fs (loop1): This should not happen!! Data will be lost
EXT4-fs (loop1): Total free blocks count 0
EXT4-fs (loop1): Free/Dirty block details
EXT4-fs (loop1): free_blocks=0
EXT4-fs (loop1): dirty_blocks=96
EXT4-fs (loop1): Block reservation details
EXT4-fs (loop1): i_reserved_data_blocks=6
EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs (loop3): Total free blocks count 0
EXT4-fs (loop3): Free/Dirty block details
EXT4-fs (loop3): free_blocks=0
EXT4-fs (loop3): dirty_blocks=32
EXT4-fs (loop3): Block reservation details
EXT4-fs (loop3): i_reserved_data_blocks=2
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 274 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs (loop2): Total free blocks count 0
EXT4-fs (loop2): Free/Dirty block details
EXT4-fs (loop2): free_blocks=0
EXT4-fs (loop2): dirty_blocks=288
EXT4-fs (loop2): Block reservation details
EXT4-fs (loop2): i_reserved_data_blocks=18
EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 188 with error 117
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 22 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 274 with max blocks 2 with error 28
EXT4-fs (loop2): This should not happen!! Data will be lost
EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 192 with error 28
EXT4-fs (loop6): This should not happen!! Data will be lost
EXT4-fs (loop6): Total free blocks count 0
EXT4-fs (loop6): Free/Dirty block details
EXT4-fs (loop6): free_blocks=0
EXT4-fs (loop6): dirty_blocks=192
EXT4-fs (loop6): Block reservation details
EXT4-fs (loop6): i_reserved_data_blocks=12
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 44 with error 117
EXT4-fs (loop7): This should not happen!! Data will be lost
EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 188 with max blocks 2 with error 28
EXT4-fs (loop4): This should not happen!! Data will be lost
EXT4-fs (loop4): Total free blocks count 0
EXT4-fs (loop4): Free/Dirty block details
EXT4-fs (loop4): free_blocks=0
EXT4-fs (loop4): dirty_blocks=16
EXT4-fs (loop4): Block reservation details
EXT4-fs (loop4): i_reserved_data_blocks=1
EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 44 with max blocks 2 with error 28
[-- Attachment #3: repro.cprog --]
[-- Type: application/octet-stream, Size: 51221 bytes --]
// autogenerated by syzkaller (https://github.com/google/syzkaller)
#define _GNU_SOURCE
#include <dirent.h>
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <pthread.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>
#include <linux/futex.h>
#include <linux/loop.h>
#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif
static unsigned long long procid;
static void sleep_ms(uint64_t ms)
{
usleep(ms * 1000);
}
static uint64_t current_time_ms(void)
{
struct timespec ts;
if (clock_gettime(CLOCK_MONOTONIC, &ts))
exit(1);
return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000;
}
static void use_temporary_dir(void)
{
char tmpdir_template[] = "./syzkaller.XXXXXX";
char* tmpdir = mkdtemp(tmpdir_template);
if (!tmpdir)
exit(1);
if (chmod(tmpdir, 0777))
exit(1);
if (chdir(tmpdir))
exit(1);
}
static void thread_start(void* (*fn)(void*), void* arg)
{
pthread_t th;
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setstacksize(&attr, 128 << 10);
int i = 0;
for (; i < 100; i++) {
if (pthread_create(&th, &attr, fn, arg) == 0) {
pthread_attr_destroy(&attr);
return;
}
if (errno == EAGAIN) {
usleep(50);
continue;
}
break;
}
exit(1);
}
#define BITMASK(bf_off, bf_len) (((1ull << (bf_len)) - 1) << (bf_off))
#define STORE_BY_BITMASK(type, htobe, addr, val, bf_off, bf_len) \
*(type*)(addr) = \
htobe((htobe(*(type*)(addr)) & ~BITMASK((bf_off), (bf_len))) | \
(((type)(val) << (bf_off)) & BITMASK((bf_off), (bf_len))))
typedef struct {
int state;
} event_t;
static void event_init(event_t* ev)
{
ev->state = 0;
}
static void event_reset(event_t* ev)
{
ev->state = 0;
}
static void event_set(event_t* ev)
{
if (ev->state)
exit(1);
__atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE);
syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000);
}
static void event_wait(event_t* ev)
{
while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE))
syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0);
}
static int event_isset(event_t* ev)
{
return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE);
}
static int event_timedwait(event_t* ev, uint64_t timeout)
{
uint64_t start = current_time_ms();
uint64_t now = start;
for (;;) {
uint64_t remain = timeout - (now - start);
struct timespec ts;
ts.tv_sec = remain / 1000;
ts.tv_nsec = (remain % 1000) * 1000 * 1000;
syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts);
if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE))
return 1;
now = current_time_ms();
if (now - start > timeout)
return 0;
}
}
static bool write_file(const char* file, const char* what, ...)
{
char buf[1024];
va_list args;
va_start(args, what);
vsnprintf(buf, sizeof(buf), what, args);
va_end(args);
buf[sizeof(buf) - 1] = 0;
int len = strlen(buf);
int fd = open(file, O_WRONLY | O_CLOEXEC);
if (fd == -1)
return false;
if (write(fd, buf, len) != len) {
int err = errno;
close(fd);
errno = err;
return false;
}
close(fd);
return true;
}
//% This code is derived from puff.{c,h}, found in the zlib development. The
//% original files come with the following copyright notice:
//% Copyright (C) 2002-2013 Mark Adler, all rights reserved
//% version 2.3, 21 Jan 2013
//% This software is provided 'as-is', without any express or implied
//% warranty. In no event will the author be held liable for any damages
//% arising from the use of this software.
//% Permission is granted to anyone to use this software for any purpose,
//% including commercial applications, and to alter it and redistribute it
//% freely, subject to the following restrictions:
//% 1. The origin of this software must not be misrepresented; you must not
//% claim that you wrote the original software. If you use this software
//% in a product, an acknowledgment in the product documentation would be
//% appreciated but is not required.
//% 2. Altered source versions must be plainly marked as such, and must not be
//% misrepresented as being the original software.
//% 3. This notice may not be removed or altered from any source distribution.
//% Mark Adler madler@alumni.caltech.edu
//% BEGIN CODE DERIVED FROM puff.{c,h}
#define MAXBITS 15
#define MAXLCODES 286
#define MAXDCODES 30
#define MAXCODES (MAXLCODES + MAXDCODES)
#define FIXLCODES 288
struct puff_state {
unsigned char* out;
unsigned long outlen;
unsigned long outcnt;
const unsigned char* in;
unsigned long inlen;
unsigned long incnt;
int bitbuf;
int bitcnt;
jmp_buf env;
};
static int puff_bits(struct puff_state* s, int need)
{
long val = s->bitbuf;
while (s->bitcnt < need) {
if (s->incnt == s->inlen)
longjmp(s->env, 1);
val |= (long)(s->in[s->incnt++]) << s->bitcnt;
s->bitcnt += 8;
}
s->bitbuf = (int)(val >> need);
s->bitcnt -= need;
return (int)(val & ((1L << need) - 1));
}
static int puff_stored(struct puff_state* s)
{
s->bitbuf = 0;
s->bitcnt = 0;
if (s->incnt + 4 > s->inlen)
return 2;
unsigned len = s->in[s->incnt++];
len |= s->in[s->incnt++] << 8;
if (s->in[s->incnt++] != (~len & 0xff) ||
s->in[s->incnt++] != ((~len >> 8) & 0xff))
return -2;
if (s->incnt + len > s->inlen)
return 2;
if (s->outcnt + len > s->outlen)
return 1;
for (; len--; s->outcnt++, s->incnt++) {
if (s->in[s->incnt])
s->out[s->outcnt] = s->in[s->incnt];
}
return 0;
}
struct puff_huffman {
short* count;
short* symbol;
};
static int puff_decode(struct puff_state* s, const struct puff_huffman* h)
{
int first = 0;
int index = 0;
int bitbuf = s->bitbuf;
int left = s->bitcnt;
int code = first = index = 0;
int len = 1;
short* next = h->count + 1;
while (1) {
while (left--) {
code |= bitbuf & 1;
bitbuf >>= 1;
int count = *next++;
if (code - count < first) {
s->bitbuf = bitbuf;
s->bitcnt = (s->bitcnt - len) & 7;
return h->symbol[index + (code - first)];
}
index += count;
first += count;
first <<= 1;
code <<= 1;
len++;
}
left = (MAXBITS + 1) - len;
if (left == 0)
break;
if (s->incnt == s->inlen)
longjmp(s->env, 1);
bitbuf = s->in[s->incnt++];
if (left > 8)
left = 8;
}
return -10;
}
static int puff_construct(struct puff_huffman* h, const short* length, int n)
{
int len;
for (len = 0; len <= MAXBITS; len++)
h->count[len] = 0;
int symbol;
for (symbol = 0; symbol < n; symbol++)
(h->count[length[symbol]])++;
if (h->count[0] == n)
return 0;
int left = 1;
for (len = 1; len <= MAXBITS; len++) {
left <<= 1;
left -= h->count[len];
if (left < 0)
return left;
}
short offs[MAXBITS + 1];
offs[1] = 0;
for (len = 1; len < MAXBITS; len++)
offs[len + 1] = offs[len] + h->count[len];
for (symbol = 0; symbol < n; symbol++)
if (length[symbol] != 0)
h->symbol[offs[length[symbol]]++] = symbol;
return left;
}
static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode,
const struct puff_huffman* distcode)
{
static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13,
15, 17, 19, 23, 27, 31, 35, 43, 51, 59,
67, 83, 99, 115, 131, 163, 195, 227, 258};
static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2,
2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
static const short dists[30] = {
1, 2, 3, 4, 5, 7, 9, 13, 17, 25,
33, 49, 65, 97, 129, 193, 257, 385, 513, 769,
1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577};
static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3,
4, 4, 5, 5, 6, 6, 7, 7, 8, 8,
9, 9, 10, 10, 11, 11, 12, 12, 13, 13};
int symbol;
do {
symbol = puff_decode(s, lencode);
if (symbol < 0)
return symbol;
if (symbol < 256) {
if (s->outcnt == s->outlen)
return 1;
if (symbol)
s->out[s->outcnt] = symbol;
s->outcnt++;
} else if (symbol > 256) {
symbol -= 257;
if (symbol >= 29)
return -10;
int len = lens[symbol] + puff_bits(s, lext[symbol]);
symbol = puff_decode(s, distcode);
if (symbol < 0)
return symbol;
unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]);
if (dist > s->outcnt)
return -11;
if (s->outcnt + len > s->outlen)
return 1;
while (len--) {
if (dist <= s->outcnt && s->out[s->outcnt - dist])
s->out[s->outcnt] = s->out[s->outcnt - dist];
s->outcnt++;
}
}
} while (symbol != 256);
return 0;
}
static int puff_fixed(struct puff_state* s)
{
static int virgin = 1;
static short lencnt[MAXBITS + 1], lensym[FIXLCODES];
static short distcnt[MAXBITS + 1], distsym[MAXDCODES];
static struct puff_huffman lencode, distcode;
if (virgin) {
lencode.count = lencnt;
lencode.symbol = lensym;
distcode.count = distcnt;
distcode.symbol = distsym;
short lengths[FIXLCODES];
int symbol;
for (symbol = 0; symbol < 144; symbol++)
lengths[symbol] = 8;
for (; symbol < 256; symbol++)
lengths[symbol] = 9;
for (; symbol < 280; symbol++)
lengths[symbol] = 7;
for (; symbol < FIXLCODES; symbol++)
lengths[symbol] = 8;
puff_construct(&lencode, lengths, FIXLCODES);
for (symbol = 0; symbol < MAXDCODES; symbol++)
lengths[symbol] = 5;
puff_construct(&distcode, lengths, MAXDCODES);
virgin = 0;
}
return puff_codes(s, &lencode, &distcode);
}
static int puff_dynamic(struct puff_state* s)
{
static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5,
11, 4, 12, 3, 13, 2, 14, 1, 15};
int nlen = puff_bits(s, 5) + 257;
int ndist = puff_bits(s, 5) + 1;
int ncode = puff_bits(s, 4) + 4;
if (nlen > MAXLCODES || ndist > MAXDCODES)
return -3;
short lengths[MAXCODES];
int index;
for (index = 0; index < ncode; index++)
lengths[order[index]] = puff_bits(s, 3);
for (; index < 19; index++)
lengths[order[index]] = 0;
short lencnt[MAXBITS + 1], lensym[MAXLCODES];
struct puff_huffman lencode = {lencnt, lensym};
int err = puff_construct(&lencode, lengths, 19);
if (err != 0)
return -4;
index = 0;
while (index < nlen + ndist) {
int symbol;
int len;
symbol = puff_decode(s, &lencode);
if (symbol < 0)
return symbol;
if (symbol < 16)
lengths[index++] = symbol;
else {
len = 0;
if (symbol == 16) {
if (index == 0)
return -5;
len = lengths[index - 1];
symbol = 3 + puff_bits(s, 2);
} else if (symbol == 17)
symbol = 3 + puff_bits(s, 3);
else
symbol = 11 + puff_bits(s, 7);
if (index + symbol > nlen + ndist)
return -6;
while (symbol--)
lengths[index++] = len;
}
}
if (lengths[256] == 0)
return -9;
err = puff_construct(&lencode, lengths, nlen);
if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1]))
return -7;
short distcnt[MAXBITS + 1], distsym[MAXDCODES];
struct puff_huffman distcode = {distcnt, distsym};
err = puff_construct(&distcode, lengths + nlen, ndist);
if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
return -8;
return puff_codes(s, &lencode, &distcode);
}
static int puff(unsigned char* dest, unsigned long* destlen,
const unsigned char* source, unsigned long sourcelen)
{
struct puff_state s = {
.out = dest,
.outlen = *destlen,
.outcnt = 0,
.in = source,
.inlen = sourcelen,
.incnt = 0,
.bitbuf = 0,
.bitcnt = 0,
};
int err;
if (setjmp(s.env) != 0)
err = 2;
else {
int last;
do {
last = puff_bits(&s, 1);
int type = puff_bits(&s, 2);
err = type == 0 ? puff_stored(&s)
: (type == 1 ? puff_fixed(&s)
: (type == 2 ? puff_dynamic(&s) : -1));
if (err != 0)
break;
} while (!last);
}
*destlen = s.outcnt;
return err;
}
//% END CODE DERIVED FROM puff.{c,h}
#define ZLIB_HEADER_WIDTH 2
static int puff_zlib_to_file(const unsigned char* source,
unsigned long sourcelen, int dest_fd)
{
if (sourcelen < ZLIB_HEADER_WIDTH)
return 0;
source += ZLIB_HEADER_WIDTH;
sourcelen -= ZLIB_HEADER_WIDTH;
const unsigned long max_destlen = 132 << 20;
void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ,
MAP_PRIVATE | MAP_ANON, -1, 0);
if (ret == MAP_FAILED)
return -1;
unsigned char* dest = (unsigned char*)ret;
unsigned long destlen = max_destlen;
int err = puff(dest, &destlen, source, sourcelen);
if (err) {
munmap(dest, max_destlen);
errno = -err;
return -1;
}
if (write(dest_fd, dest, destlen) != (ssize_t)destlen) {
munmap(dest, max_destlen);
return -1;
}
return munmap(dest, max_destlen);
}
static int setup_loop_device(unsigned char* data, unsigned long size,
const char* loopname, int* loopfd_p)
{
int err = 0, loopfd = -1;
int memfd = syscall(__NR_memfd_create, "syzkaller", 0);
if (memfd == -1) {
err = errno;
goto error;
}
if (puff_zlib_to_file(data, size, memfd)) {
err = errno;
goto error_close_memfd;
}
loopfd = open(loopname, O_RDWR);
if (loopfd == -1) {
err = errno;
goto error_close_memfd;
}
if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
if (errno != EBUSY) {
err = errno;
goto error_close_loop;
}
ioctl(loopfd, LOOP_CLR_FD, 0);
usleep(1000);
if (ioctl(loopfd, LOOP_SET_FD, memfd)) {
err = errno;
goto error_close_loop;
}
}
close(memfd);
*loopfd_p = loopfd;
return 0;
error_close_loop:
close(loopfd);
error_close_memfd:
close(memfd);
error:
errno = err;
return -1;
}
static void reset_loop_device(const char* loopname)
{
int loopfd = open(loopname, O_RDWR);
if (loopfd == -1) {
return;
}
if (ioctl(loopfd, LOOP_CLR_FD, 0)) {
}
close(loopfd);
}
static long syz_mount_image(volatile long fsarg, volatile long dir,
volatile long flags, volatile long optsarg,
volatile long change_dir,
volatile unsigned long size, volatile long image)
{
unsigned char* data = (unsigned char*)image;
int res = -1, err = 0, need_loop_device = !!size;
char* mount_opts = (char*)optsarg;
char* target = (char*)dir;
char* fs = (char*)fsarg;
char* source = NULL;
char loopname[64];
if (need_loop_device) {
int loopfd;
memset(loopname, 0, sizeof(loopname));
snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid);
if (setup_loop_device(data, size, loopname, &loopfd) == -1)
return -1;
close(loopfd);
source = loopname;
}
mkdir(target, 0777);
char opts[256];
memset(opts, 0, sizeof(opts));
if (strlen(mount_opts) > (sizeof(opts) - 32)) {
}
strncpy(opts, mount_opts, sizeof(opts) - 32);
if (strcmp(fs, "iso9660") == 0) {
flags |= MS_RDONLY;
} else if (strncmp(fs, "ext", 3) == 0) {
bool has_remount_ro = false;
char* remount_ro_start = strstr(opts, "errors=remount-ro");
if (remount_ro_start != NULL) {
char after = *(remount_ro_start + strlen("errors=remount-ro"));
char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1);
has_remount_ro = ((before == '\0' || before == ',') &&
(after == '\0' || after == ','));
}
if (strstr(opts, "errors=panic") || !has_remount_ro)
strcat(opts, ",errors=continue");
} else if (strcmp(fs, "xfs") == 0) {
strcat(opts, ",nouuid");
}
res = mount(source, target, fs, flags, opts);
if (res == -1) {
err = errno;
goto error_clear_loop;
}
res = open(target, O_RDONLY | O_DIRECTORY);
if (res == -1) {
err = errno;
goto error_clear_loop;
}
if (change_dir) {
res = chdir(target);
if (res == -1) {
err = errno;
}
}
error_clear_loop:
if (need_loop_device)
reset_loop_device(loopname);
errno = err;
return res;
}
#define FS_IOC_SETFLAGS _IOW('f', 2, long)
static void remove_dir(const char* dir)
{
int iter = 0;
DIR* dp = 0;
const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW;
retry:
while (umount2(dir, umount_flags) == 0) {
}
dp = opendir(dir);
if (dp == NULL) {
if (errno == EMFILE) {
exit(1);
}
exit(1);
}
struct dirent* ep = 0;
while ((ep = readdir(dp))) {
if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0)
continue;
char filename[FILENAME_MAX];
snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name);
while (umount2(filename, umount_flags) == 0) {
}
struct stat st;
if (lstat(filename, &st))
exit(1);
if (S_ISDIR(st.st_mode)) {
remove_dir(filename);
continue;
}
int i;
for (i = 0;; i++) {
if (unlink(filename) == 0)
break;
if (errno == EPERM) {
int fd = open(filename, O_RDONLY);
if (fd != -1) {
long flags = 0;
if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
}
close(fd);
continue;
}
}
if (errno == EROFS) {
break;
}
if (errno != EBUSY || i > 100)
exit(1);
if (umount2(filename, umount_flags))
exit(1);
}
}
closedir(dp);
for (int i = 0;; i++) {
if (rmdir(dir) == 0)
break;
if (i < 100) {
if (errno == EPERM) {
int fd = open(dir, O_RDONLY);
if (fd != -1) {
long flags = 0;
if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) {
}
close(fd);
continue;
}
}
if (errno == EROFS) {
break;
}
if (errno == EBUSY) {
if (umount2(dir, umount_flags))
exit(1);
continue;
}
if (errno == ENOTEMPTY) {
if (iter < 100) {
iter++;
goto retry;
}
}
}
exit(1);
}
}
static void kill_and_wait(int pid, int* status)
{
kill(-pid, SIGKILL);
kill(pid, SIGKILL);
for (int i = 0; i < 100; i++) {
if (waitpid(-1, status, WNOHANG | __WALL) == pid)
return;
usleep(1000);
}
DIR* dir = opendir("/sys/fs/fuse/connections");
if (dir) {
for (;;) {
struct dirent* ent = readdir(dir);
if (!ent)
break;
if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0)
continue;
char abort[300];
snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort",
ent->d_name);
int fd = open(abort, O_WRONLY);
if (fd == -1) {
continue;
}
if (write(fd, abort, 1) < 0) {
}
close(fd);
}
closedir(dir);
} else {
}
while (waitpid(-1, status, __WALL) != pid) {
}
}
static void reset_loop()
{
char buf[64];
snprintf(buf, sizeof(buf), "/dev/loop%llu", procid);
int loopfd = open(buf, O_RDWR);
if (loopfd != -1) {
ioctl(loopfd, LOOP_CLR_FD, 0);
close(loopfd);
}
}
static void setup_test()
{
prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
setpgrp();
write_file("/proc/self/oom_score_adj", "1000");
if (symlink("/dev/binderfs", "./binderfs")) {
}
}
static inline long write_sysctl(const char* path, long value)
{
int fd = open(path, O_WRONLY);
if (fd < 0)
return -errno;
char buf[64];
int n = snprintf(buf, sizeof(buf), "%ld", value);
if (n < 0) {
int e = errno;
close(fd);
return -e;
}
ssize_t w = write(fd, buf, (size_t)n);
if (w != n) {
int e = errno;
close(fd);
return -e;
}
close(fd);
return 0;
}
struct thread_t {
int created, call;
event_t ready, done;
};
static struct thread_t threads[16];
static void execute_call(int call);
static int running;
static void* thr(void* arg)
{
struct thread_t* th = (struct thread_t*)arg;
for (;;) {
event_wait(&th->ready);
event_reset(&th->ready);
execute_call(th->call);
__atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED);
event_set(&th->done);
}
return 0;
}
static void execute_one(void)
{
if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
}
int i, call, thread;
for (call = 0; call < 14; call++) {
for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0]));
thread++) {
struct thread_t* th = &threads[thread];
if (!th->created) {
th->created = 1;
event_init(&th->ready);
event_init(&th->done);
event_set(&th->done);
thread_start(thr, th);
}
if (!event_isset(&th->done))
continue;
event_reset(&th->done);
th->call = call;
__atomic_fetch_add(&running, 1, __ATOMIC_RELAXED);
event_set(&th->ready);
event_timedwait(&th->done,
50 + (call == 0 ? 4000 : 0) + (call == 13 ? 4000 : 0));
break;
}
}
for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++)
sleep_ms(1);
}
static void execute_one(void);
#define WAIT_FLAGS __WALL
static void loop(void)
{
int iter = 0;
for (;; iter++) {
char cwdbuf[32];
sprintf(cwdbuf, "./%d", iter);
if (mkdir(cwdbuf, 0777))
exit(1);
reset_loop();
int pid = fork();
if (pid < 0)
exit(1);
if (pid == 0) {
if (chdir(cwdbuf))
exit(1);
setup_test();
execute_one();
exit(0);
}
int status = 0;
uint64_t start = current_time_ms();
for (;;) {
sleep_ms(10);
if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid)
break;
if (current_time_ms() - start < 5000)
continue;
kill_and_wait(pid, &status);
break;
}
remove_dir(cwdbuf);
}
}
uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff};
void execute_call(int call)
{
intptr_t res = 0;
switch (call) {
case 0:
memcpy((void*)0x200000000780, "ext4\000", 5);
memcpy((void*)0x200000000240, "./file0\000", 8);
*(uint8_t*)0x200000000180 = 0;
memcpy(
(void*)0x200000001ac0,
"\x78\x9c\xec\xdd\xcd\x6b\x5c\x55\x1b\x00\xf0\xe7\x4e\xbe\xd3\xbe\x6f"
"\xf2\xc2\x0b\x5a\x57\x01\x41\x03\xa5\x13\x53\x63\xab\xe0\xa2\xe2\x42"
"\x04\x0b\x05\x5d\xdb\x86\xc9\x34\xd4\x4c\x32\x25\x33\x29\x4d\x08\xd8"
"\x22\x82\x1b\x41\xc5\x85\xa0\x9b\xae\xfd\xa8\x3b\xb7\x7e\x6c\xf5\xbf"
"\x70\x21\x2d\x55\xd3\x62\xc5\x85\x44\xee\x64\xa6\x99\x36\x33\xe9\x24"
"\xe9\xcc\xc4\xf6\xf7\x83\x9b\x39\xe7\xde\x93\x39\xe7\xb9\xe7\x7e\x9c"
"\x99\x7b\x99\x1b\xc0\x23\x6b\x2c\xfd\x93\x89\x38\x14\x11\x1f\x24\x11"
"\x23\x11\x27\xd2\x59\x49\x44\xf4\x55\x4a\xf4\x56\xe6\xa4\xe5\x6e\xaf"
"\xad\xe6\xd2\x29\x89\xf5\xf5\xd7\x7f\x4b\x2a\x65\x6e\xad\xad\xe6\x6a"
"\xef\x95\x54\x5f\x0f\x54\x33\x8f\x47\xc4\xf7\xef\x46\x1c\xce\x6c\xad"
"\xb7\xb4\xbc\x32\x37\x5d\x28\xe4\x17\xab\xf9\x89\xf2\xfc\xf9\x89\xd2"
"\xf2\xca\x91\x73\xf3\xd3\xb3\xf9\xd9\xfc\xc2\xb1\xc9\xa9\xa9\xa3\xc7"
"\x9f\x3b\x7e\xec\xc1\xc5\xfa\xc7\x4f\x2b\x07\xaf\x7f\xf8\xca\xd3\x5f"
"\x9d\xf8\xeb\x9d\xc7\xae\xbe\xff\x43\x12\x27\xe2\x60\x75\x59\x7d\x1c"
"\xa9\xf5\x64\xef\xf5\x8d\xc5\x58\x75\x9d\xf4\x6d\xac\xd4\x3a\x2f\xef"
"\xfd\xed\xf7\x95\xfb\xac\xae\x06\x5b\x00\xfb\x41\xda\x31\x3d\x1b\x7b"
"\x79\x1c\x8a\x91\xe8\xa9\xa4\x9a\x18\xea\x64\xcb\x00\x80\x76\x79\x3b"
"\x1d\xeb\x36\xd3\xd3\x74\x09\x00\xf0\xaf\x96\x34\x3f\xff\x03\x00\x0f"
"\xa5\xda\xf7\x00\xb7\xd6\x56\x73\xb5\xa9\xbb\xdf\x48\x74\xd6\x8d\x97"
"\x22\x62\x70\x23\xfe\xda\xf5\xcd\x8d\x25\xbd\xd5\x6b\x76\x83\x95\xeb"
"\xa0\xc3\xb7\x92\xbb\xae\x8c\x24\x11\x31\xfa\x00\xea\x1f\x8b\x88\xcf"
"\xbe\x79\xf3\x8b\x74\x8a\x06\xd7\x21\x01\xda\xe5\xd2\xe5\x88\x38\x33"
"\x3a\xb6\xf5\xf8\x9f\x6c\xb9\x67\x61\xa7\x9e\x69\xa1\xcc\xd8\x3d\x79"
"\xc7\x3f\xe8\x9c\x6f\xd3\xf1\xcf\xf3\x8d\xc6\x7f\x99\x3b\xe3\x9f\x68"
"\x30\xfe\x19\x68\xb0\xef\xee\xc6\xfd\xf7\xff\xcc\xb5\x07\x50\x4d\x53"
"\xe9\xf8\xef\xc5\xba\x7b\xdb\x6e\xd7\xc5\x5f\x35\xda\x53\xcd\xfd\xa7"
"\x32\xe6\xeb\x4b\xce\x9e\x2b\xe4\xd3\x63\xdb\x7f\x23\x62\x3c\xfa\x06"
"\xd2\xfc\xe4\x36\x75\x8c\xdf\xfc\xfb\x66\xb3\x65\xf5\xe3\xbf\xdf\x3f"
"\x7a\xeb\xf3\xb4\xfe\xf4\x75\xb3\x44\xe6\x5a\xef\xc0\xdd\xff\x33\x33"
"\x5d\x9e\xde\x4b\xcc\xf5\x6e\x5c\x8e\x78\xa2\xb7\x51\xfc\xc9\x9d\xfe"
"\x4f\x9a\x8c\x7f\x4f\xb5\x58\xc7\xab\x2f\xbc\xf7\x69\xb3\x65\x69\xfc"
"\x69\xbc\xb5\x69\x6b\xfc\xed\xb5\x7e\x25\xe2\xa9\x86\xfd\xbf\x79\x47"
"\x5b\xb2\xed\xfd\x89\x13\x95\xcd\x61\xa2\xb6\x51\x34\xf0\xf5\xcf\x9f"
"\x0c\x37\xab\xbf\xbe\xff\xd3\x29\xad\xbf\xf6\x59\xa0\x13\xd2\xfe\x1f"
"\xde\x3e\xfe\xd1\xa4\xfe\x7e\xcd\xd2\xce\xeb\xf8\xf1\xca\xc8\x77\xcd"
"\x96\xdd\x3f\xfe\xc6\xdb\x7f\x7f\xf2\x46\x25\xdd\x5f\x9d\x77\x71\xba"
"\x5c\x5e\x9c\x8c\xe8\x4f\x5e\xdb\x3a\xff\xe8\xe6\xff\xd6\xf2\xb5\xf2"
"\x69\xfc\xe3\x4f\x36\xde\xff\xb7\xdb\xfe\xd3\xcf\x84\x67\x5a\x8c\xbf"
"\xf7\xfa\xaf\x5f\xee\x3e\xfe\xf6\x4a\xe3\x9f\xd9\x51\xff\xef\x3c\x71"
"\xf5\xf6\x5c\x4f\xb3\xfa\x5b\xeb\xff\xa9\x4a\x6a\xbc\x3a\xa7\x95\xe3"
"\x5f\xab\x0d\xdc\xcb\xba\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x80\x56\x65\x22\xe2\x60\x24\x99\xec"
"\x9d\x74\x26\x93\xcd\x6e\x3c\xc3\xfb\xff\x31\x9c\x29\x14\x4b\xe5\xc3"
"\x67\x8b\x4b\x0b\x33\x51\x79\x56\xf6\x68\xf4\x65\x6a\x3f\x75\x39\x52"
"\xf7\x7b\xa8\x93\xd5\xdf\xc3\xaf\xe5\x8f\xde\x93\x7f\x36\x22\xfe\x17"
"\x11\x1f\x0f\x0c\x55\xf2\xd9\x5c\xb1\x30\xd3\xed\xe0\x01\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\xea\x40\x93\xe7\xff\xa7"
"\x7e\x19\xe8\x76\xeb\x00\x80\xb6\x19\xec\xe9\x76\x0b\x00\x80\x4e\x1b"
"\xec\xed\x76\x0b\x00\x80\x4e\x1b\xdc\x51\xe9\xa1\xb6\xb5\x03\x00\xe8"
"\x9c\x9d\x9d\xff\x01\x80\x87\x81\xf3\x3f\x00\x3c\x7a\x9c\xff\x01\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x68\xb3"
"\x53\x27\x4f\xa6\xd3\xfa\x9f\x6b\xab\xb9\x34\x3f\x73\x61\x79\x69\xae"
"\x78\xe1\xc8\x4c\xbe\x34\x97\x9d\x5f\xca\x65\x73\xc5\xc5\xf3\xd9\xd9"
"\x62\x71\xb6\x90\xcf\xe6\x8a\xf3\x4d\xdf\xe8\xd2\xc6\x4b\xa1\x58\x3c"
"\x3f\x15\x0b\x4b\x17\x27\xca\xf9\x52\x79\xa2\xb4\xbc\x72\x7a\xbe\xb8"
"\xb4\x50\x3e\x7d\x6e\x7e\x7a\x36\x7f\x3a\xdf\xd7\xb1\xc8\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x75\xa5\xe5\x95\xb9"
"\xe9\x42\x21\xbf\x28\xb1\xbb\x44\x5f\xec\x8b\x66\x48\x74\x27\x11\x97"
"\x36\xf6\xa3\xfd\xd2\x9e\xdd\x27\x46\xef\x99\x13\xfd\x9b\x47\x89\xa1"
"\xae\x1d\x9f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xbb\x7f\x02\x00\x00\xff\xff"
"\x52\x37\x26\xf9",
1942);
syz_mount_image(
/*fs=*/0x200000000780, /*dir=*/0x200000000240,
/*flags=MS_LAZYTIME|MS_STRICTATIME|MS_NOATIME|MS_DIRSYNC*/ 0x3000480,
/*opts=*/0x200000000180, /*chdir=*/0x45, /*size=*/0x796,
/*img=*/0x200000001ac0);
break;
case 1:
memcpy((void*)0x200000000040, "./bus\000", 6);
res = syscall(__NR_creat, /*file=*/0x200000000040ul, /*mode=*/0ul);
if (res != -1)
r[0] = res;
break;
case 2:
memcpy((void*)0x200000000140, "#! ", 3);
memcpy((void*)0x200000000143, "./file1", 7);
*(uint8_t*)0x20000000014a = 0xa;
syscall(__NR_write, /*fd=*/r[0], /*data=*/0x200000000140ul, /*len=*/0xbul);
break;
case 3:
syscall(__NR_ioctl, /*fd=*/-1, /*cmd=*/0x9408, /*arg=*/0ul);
break;
case 4:
memcpy((void*)0x200000000000, "./bus\000", 6);
res = syscall(
__NR_open, /*file=*/0x200000000000ul,
/*flags=O_NOFOLLOW|O_NOCTTY|O_NOATIME|O_CREAT|O_RDWR*/ 0x60142ul,
/*mode=*/0ul);
if (res != -1)
r[1] = res;
break;
case 5:
memcpy((void*)0x200000000080, "./bus\000", 6);
res =
syscall(__NR_open, /*file=*/0x200000000080ul,
/*flags=O_SYNC|O_NOCTTY|O_DIRECT|O_CLOEXEC|O_RDWR*/ 0x185102ul,
/*mode=*/0ul);
if (res != -1)
r[2] = res;
break;
case 6:
syscall(__NR_ftruncate, /*fd=*/r[2], /*len=*/0x2007ffbul);
break;
case 7:
*(uint32_t*)0x20000001d000 = 1;
*(uint32_t*)0x20000001d004 = 0x80;
*(uint8_t*)0x20000001d008 = 0;
*(uint8_t*)0x20000001d009 = 0;
*(uint8_t*)0x20000001d00a = 0;
*(uint8_t*)0x20000001d00b = 0;
*(uint32_t*)0x20000001d00c = 0;
*(uint64_t*)0x20000001d010 = 0x7f;
*(uint64_t*)0x20000001d018 = 0;
*(uint64_t*)0x20000001d020 = 0;
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 0, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 1, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 2, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 3, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 4, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0x7f, 5, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 6, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 7, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 8, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 9, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 10, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 11, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 12, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 13, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 14, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 15, 2);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 17, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 18, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 19, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 20, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 21, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 22, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 23, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 24, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 25, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 26, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 27, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 28, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 29, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 30, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 31, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 32, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 33, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 34, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 35, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 36, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 37, 1);
STORE_BY_BITMASK(uint64_t, , 0x20000001d028, 0, 38, 26);
*(uint32_t*)0x20000001d030 = 0;
*(uint32_t*)0x20000001d034 = 0;
*(uint64_t*)0x20000001d038 = 0;
*(uint64_t*)0x20000001d040 = 0;
*(uint64_t*)0x20000001d048 = 0x1a20;
*(uint64_t*)0x20000001d050 = 0;
*(uint32_t*)0x20000001d058 = 0;
*(uint32_t*)0x20000001d05c = 0;
*(uint64_t*)0x20000001d060 = 0;
*(uint32_t*)0x20000001d068 = 0;
*(uint16_t*)0x20000001d06c = 0;
*(uint16_t*)0x20000001d06e = 0;
*(uint32_t*)0x20000001d070 = 0;
*(uint32_t*)0x20000001d074 = 0;
*(uint64_t*)0x20000001d078 = 0;
syscall(__NR_perf_event_open, /*attr=*/0x20000001d000ul, /*pid=*/0,
/*cpu=*/-1, /*group=*/-1, /*flags=*/0ul);
break;
case 8:
*(uint32_t*)0x200000000100 = 2;
*(uint32_t*)0x200000000104 = 0x80;
*(uint8_t*)0x200000000108 = 0xe9;
*(uint8_t*)0x200000000109 = 0;
*(uint8_t*)0x20000000010a = 0;
*(uint8_t*)0x20000000010b = 0;
*(uint32_t*)0x20000000010c = 0;
*(uint64_t*)0x200000000110 = 0;
*(uint64_t*)0x200000000118 = 0x48050;
*(uint64_t*)0x200000000120 = 0xb;
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 0, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 1, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 2, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 3, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 4, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 5, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 6, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 7, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 8, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 9, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 10, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 11, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 12, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 13, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 14, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 15, 2);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 17, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 18, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 19, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 20, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 21, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 22, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 23, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 24, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 25, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 26, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 27, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 28, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 29, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 30, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 31, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 32, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 33, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 34, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 35, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 36, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 37, 1);
STORE_BY_BITMASK(uint64_t, , 0x200000000128, 0, 38, 26);
*(uint32_t*)0x200000000130 = 0;
*(uint32_t*)0x200000000134 = 2;
*(uint64_t*)0x200000000138 = 4;
*(uint64_t*)0x200000000140 = 0x100;
*(uint64_t*)0x200000000148 = 0xa;
*(uint64_t*)0x200000000150 = 9;
*(uint32_t*)0x200000000158 = 0xb8;
*(uint32_t*)0x20000000015c = 2;
*(uint64_t*)0x200000000160 = 1;
*(uint32_t*)0x200000000168 = 4;
*(uint16_t*)0x20000000016c = 8;
*(uint16_t*)0x20000000016e = 0;
*(uint32_t*)0x200000000170 = 0;
*(uint32_t*)0x200000000174 = 0;
*(uint64_t*)0x200000000178 = 0;
syscall(__NR_perf_event_open, /*attr=*/0x200000000100ul, /*pid=*/0,
/*cpu=*/-1, /*group=*/-1, /*flags=*/0ul);
break;
case 9:
syscall(__NR_getdents64, /*fd=*/-1, /*ent=*/0ul, /*count=*/0ul);
break;
case 10:
syscall(__NR_sendfile, /*fdout=*/r[1], /*fdin=*/r[2], /*off=*/0ul,
/*count=*/0x1000000201005ul);
break;
case 11:
syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0xb36000ul,
/*prot=PROT_GROWSDOWN|PROT_WRITE*/ 0x1000002ul,
/*flags=MAP_STACK|MAP_POPULATE|MAP_FIXED|MAP_SHARED*/ 0x28011ul,
/*fd=*/r[2], /*offset=*/0ul);
break;
case 12:
syscall(__NR_close, /*fd=*/-1);
break;
case 13:
memcpy((void*)0x200000000780, "ext4\000", 5);
memcpy((void*)0x200000000240, "./file0\000", 8);
memcpy((void*)0x200000001780, "subj_user", 9);
*(uint8_t*)0x200000001789 = 0x3d;
memcpy((void*)0x20000000178a, "&,-(\275:-/", 8);
*(uint8_t*)0x200000001792 = 0x2c;
memcpy((void*)0x200000001793, "dont_appraise", 13);
*(uint8_t*)0x2000000017a0 = 0x2c;
*(uint8_t*)0x2000000017a1 = 0;
memcpy(
(void*)0x200000000f80,
"\x78\x9c\xec\xdd\xcf\x6b\x5c\xd5\x1e\x00\xf0\xef\x9d\x24\xcd\x8f\xb6"
"\x2f\x79\xf0\xe0\xbd\xbe\x55\x40\xd0\x40\xe9\xc4\xd4\xd8\x2a\xb8\xa8"
"\xb8\x10\xc1\x42\x41\xd7\xb6\xc3\x64\x1a\x6a\x26\x99\x92\x99\x94\x26"
"\x04\x6c\x11\xc1\x8d\xa0\xe2\x42\xd0\x4d\xd7\xfe\xa8\xae\xdc\x6a\xdd"
"\xea\x7f\xe1\xa2\xb4\x54\x4d\x8b\xd5\x2e\x24\x72\x27\x33\xcd\xa4\x9d"
"\x49\xa7\x6d\x66\x46\xcc\xe7\x03\x37\x39\xe7\xde\x3b\x73\xce\x77\xce"
"\xb9\xe7\x9e\x99\x7b\x99\x09\x60\xd7\x1a\x4f\xff\x64\x22\x0e\x44\xc4"
"\xfb\x49\xc4\x68\x6d\x7d\x12\x11\x03\xd5\x54\x7f\xc4\xb1\x8d\xfd\x6e"
"\xaf\xad\xe6\xd3\x25\x89\xf5\xf5\xd7\x7e\x49\xaa\xfb\xdc\x5a\x5b\xcd"
"\x47\xc3\x63\x52\x7b\x6b\x99\xff\x45\xc4\x95\x77\x22\x0e\x66\xee\x2f"
"\xb7\xbc\xbc\x32\x97\x2b\x16\x0b\x8b\xb5\xfc\x64\x65\xfe\xec\x64\x79"
"\x79\xe5\xd0\x99\xf9\xdc\x6c\x61\xb6\xb0\x70\x64\x6a\x7a\xfa\xf0\xd1"
"\x67\x8f\x1e\xd9\xb9\x58\x7f\xfb\x71\x65\xdf\xf5\x0f\x5e\x7e\xea\xcb"
"\x63\x77\xde\xfe\xef\xe5\xf7\xbe\x4f\xe2\x58\xec\xab\x6d\x6b\x8c\x63"
"\xa7\x8c\xc7\x78\xed\x35\x19\x48\x5f\xc2\x2d\x5e\xda\xe9\xc2\x7a\x2c"
"\xe9\x75\x05\x78\x24\xe9\xa1\xd9\xb7\x71\x94\xc7\x81\x18\x8d\xbe\x6a"
"\xaa\x85\xe1\x6e\xd6\x0c\x00\xe8\x94\xb7\x22\x62\x1d\x00\xd8\x65\x12"
"\xe7\x7f\x00\xd8\x65\xea\x9f\x03\xdc\x5a\x5b\xcd\xd7\x97\xde\x7e\x22"
"\xd1\x5d\x37\x5e\x8c\x88\xa1\x8d\xf8\xeb\xd7\x37\x37\xb6\xf4\xd7\xae"
"\xd9\x0d\x55\xaf\x83\x8e\xdc\x4a\xb6\x5c\x19\x49\x22\x62\x6c\x07\xca"
"\x1f\x8f\x88\x4f\xbf\x79\xe3\xf3\x74\x89\x0e\x5d\x87\x04\x68\xe6\xc2"
"\xc5\x88\x38\x35\x36\x7e\xff\xf8\x9f\xdc\x77\xcf\xc2\xc3\x7a\xba\x8d"
"\x7d\xc6\xef\xc9\x1b\xff\xa0\x7b\xbe\x4d\xe7\x3f\xcf\x35\x9b\xff\x65"
"\xee\xce\x7f\xa2\xc9\xfc\x67\xb0\xc9\xb1\xfb\x28\x1e\x7c\xfc\x67\xae"
"\xed\x40\x31\x2d\xa5\xf3\xbf\x17\x1a\xee\x6d\xbb\xdd\x10\x7f\xd5\x50"
"\x8c\xf5\xd5\x72\xfb\xab\x73\xbe\x81\xe4\xf4\x99\x62\x21\x1d\xdb\xfe"
"\x15\x11\x13\x31\x30\x98\xe6\xa7\xb6\x29\x63\xe2\xe6\x9f\x37\x5b\x6d"
"\x6b\x9c\xff\xfd\xfa\xe1\x9b\x9f\xdd\x59\x5f\xcd\xa7\xff\x37\xf7\xc8"
"\x5c\xeb\x1f\xdc\xfa\x98\x99\x5c\x25\xf7\x78\x51\x6f\xba\x71\x31\xe2"
"\xff\xfd\xcd\xe2\x4f\xee\xb6\x7f\xd2\x62\xfe\x7b\xa2\xcd\x32\x5e\x79"
"\xfe\xdd\x4f\x5a\x6d\x4b\xe3\x4f\xe3\xad\x2f\x69\xf9\x5b\xe3\xef\xac"
"\xf5\x4b\x11\x4f\x36\x6d\xff\xcd\x3b\xda\xd2\xd4\xe4\x70\xb4\xb8\x3f"
"\x71\xb2\xda\x1d\x26\xeb\x9d\xa2\x89\xaf\x7e\xfa\x78\xa4\x55\xf9\x8d"
"\xed\x9f\x2e\x69\xf9\xf5\xf7\x02\xdd\x90\xb6\xff\x48\x2d\xfe\x3f\xae"
"\x5e\xd9\xdf\x24\xfe\xb1\xa4\xf1\x7e\xcd\xf2\xc3\x97\xf1\xc3\xa5\xd1"
"\xef\x5a\x6d\x7b\x70\xfc\xcd\xfb\xff\x9e\xe4\xf5\x6a\x7f\xdc\x53\x5b"
"\x77\x3e\x57\xa9\x2c\x4e\x45\xec\x49\x5e\xad\xe6\xb7\xac\x3f\xbc\xf9"
"\xd8\x7a\xbe\xbe\x7f\x1a\xff\xc4\x13\xcd\x8f\xff\xed\xfa\x7f\xfa\x9e"
"\xf0\x54\x9b\xf1\xf7\x5f\xff\xf9\x8b\x47\x8f\xbf\xb3\xd2\xf8\x67\xb6"
"\xef\xff\xf7\xb4\xff\xc3\x27\x2e\xdf\x9e\xeb\x6b\x55\x7e\x7b\xed\x3f"
"\x5d\x4d\x4d\xd4\xd6\xb4\x33\xfe\xb5\x5b\xc1\xc7\x79\xed\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0"
"\x5d\x99\x88\xd8\x17\x49\x26\x7b\x37\x9d\xc9\x64\xb3\x1b\xbf\xe1\xfd"
"\x9f\x18\xc9\x14\x4b\xe5\xca\xc1\xd3\xa5\xa5\x85\x99\xa8\xfe\x56\xf6"
"\x58\x0c\x64\xea\x5f\x75\x39\xda\xf0\x7d\xa8\x53\xb5\xef\xc3\xaf\xe7"
"\x0f\xdf\x93\x7f\x26\x22\xfe\x1d\x11\x1f\x0d\x0e\x57\xf3\xd9\x7c\xa9"
"\x38\xd3\xeb\xe0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\xa0\x66\x6f\x8b\xdf\xff\x4f\x5d\x1d\xec\x75\xed\x00\x80\x8e\x19"
"\xea\x75\x05\x00\x80\xae\xdb\xe6\xfc\xff\x75\x5f\x37\x2b\x02\x00\x74"
"\x4d\xf5\xfc\x7f\xa1\xdd\xbd\x87\x3b\x5a\x17\x00\xa0\x3b\x7c\xfe\x0f"
"\x00\xbb\x8f\xf3\x3f\x00\xec\x3e\xce\xff\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x74\xd8\x89\xe3\xc7\xd3\x65"
"\xfd\xf7\xb5\xd5\x7c\x9a\x9f\x39\xb7\xbc\x34\x57\x3a\x77\x68\xa6\x50"
"\x9e\xcb\xce\x2f\xe5\xb3\xf9\xd2\xe2\xd9\xec\x6c\xa9\x34\x5b\x2c\x64"
"\xf3\xa5\xf9\x96\x4f\x74\x61\xe3\x5f\xb1\x54\x3a\x3b\x1d\x0b\x4b\xe7"
"\x27\x2b\x85\x72\x65\xb2\xbc\xbc\x72\x72\xbe\xb4\xb4\x50\x39\x79\x66"
"\x3e\x37\x5b\x38\x59\x18\xe8\x5a\x64\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\xd0\xbe\xf2\xf2\xca\x5c\xae\x58\x2c\x2c\xfe"
"\xa3\x12\x49\x44\x3c\xce\xf3\x0c\x47\x44\xef\xa3\x90\x90\xe8\x5d\xa2"
"\x71\x94\x18\xee\xdd\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x37\xf7\x57\x00"
"\x00\x00\xff\xff\x28\xc7\x27\x9b",
1946);
syz_mount_image(
/*fs=*/0x200000000780, /*dir=*/0x200000000240,
/*flags=MS_LAZYTIME|MS_STRICTATIME|MS_NOATIME|MS_DIRSYNC*/ 0x3000480,
/*opts=*/0x200000001780, /*chdir=*/1, /*size=*/0x79a,
/*img=*/0x200000000f80);
break;
}
}
int main(void)
{
syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul,
/*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
/*offset=*/0ul);
syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul,
/*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul,
/*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
/*offset=*/0ul);
syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul,
/*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
/*offset=*/0ul);
const char* reason;
(void)reason;
for (procid = 0; procid < 8; procid++) {
if (fork() == 0) {
use_temporary_dir();
loop();
}
}
sleep(1000000);
return 0;
}
[-- Attachment #4: repro.log --]
[-- Type: application/octet-stream, Size: 160393 bytes --]
Warning: Permanently added '[localhost]:29435' (ED25519) to the list of known hosts.
syzkaller login: [ 26.108379] audit: type=1400 audit(1771251271.013:7): avc: denied { execmem } for pid=253 comm="syz-executor406" scontext=system_u:system_r:kernel_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=process permissive=1
executing program
executing program
executing program
executing program
executing program
executing program
executing program
executing program
[ 26.146773] loop3: detected capacity change from 0 to 2048
[ 26.149763] loop7: detected capacity change from 0 to 2048
[ 26.153573] loop5: detected capacity change from 0 to 2048
[ 26.156328] loop1: detected capacity change from 0 to 2048
[ 26.159888] loop2: detected capacity change from 0 to 2048
[ 26.161537] loop6: detected capacity change from 0 to 2048
[ 26.164304] loop0: detected capacity change from 0 to 2048
[ 26.176218] EXT4-fs (loop3): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.176971] EXT4-fs (loop7): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.177082] EXT4-fs (loop4): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.177479] EXT4-fs (loop6): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.177771] EXT4-fs (loop5): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.183207] EXT4-fs (loop1): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.183859] EXT4-fs (loop0): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.191864] audit: type=1400 audit(1771251271.091:8): avc: denied { open } for pid=273 comm="syz-executor406" scontext=system_u:system_r:kernel_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=perf_event permissive=1
[ 26.202100] EXT4-fs (loop2): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.207316] audit: type=1400 audit(1771251271.104:9): avc: denied { kernel } for pid=263 comm="syz-executor406" scontext=system_u:system_r:kernel_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=perf_event permissive=1
[ 26.233461] hrtimer: interrupt took 19220 ns
[ 26.317770] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.318046] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.320554] EXT4-fs error (device loop0): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.321248] EXT4-fs (loop0): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 102 with error 117
[ 26.328395] EXT4-fs (loop0): This should not happen!! Data will be lost
[ 26.328395]
[ 26.333493] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 1 with error 28
[ 26.336244] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 26.336244]
[ 26.337469] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.337972] EXT4-fs (loop4): Total free blocks count 0
[ 26.338542] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.342424] EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.342613] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.342716] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 16 with error 117
[ 26.342743] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 26.342743]
[ 26.342947] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 22 with error 117
[ 26.342973] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 26.342973]
[ 26.344382] EXT4-fs (loop4): Free/Dirty block details
[ 26.347472] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.348604] syz-executor406 (312) used greatest stack depth: 23448 bytes left
[ 26.349675] EXT4-fs (loop4): free_blocks=0
[ 26.356743] EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 10 with error 117
[ 26.357248] EXT4-fs (loop4): dirty_blocks=16
[ 26.358196] EXT4-fs (loop5): This should not happen!! Data will be lost
[ 26.358196]
[ 26.360741] EXT4-fs (loop4): Block reservation details
[ 26.368970] EXT4-fs (loop4): i_reserved_data_blocks=1
[ 26.370537] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 12 with error 117
[ 26.371526] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 8 with error 117
[ 26.372992] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 26.372992]
[ 26.374937] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 26.374937]
[ 26.384278] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 22 with max blocks 2 with error 28
[ 26.387083] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 26.387083]
[ 26.388656] EXT4-fs (loop3): Total free blocks count 0
[ 26.389903] EXT4-fs (loop3): Free/Dirty block details
[ 26.391211] EXT4-fs (loop3): free_blocks=0
[ 26.392306] EXT4-fs (loop3): dirty_blocks=16
[ 26.393476] EXT4-fs (loop3): Block reservation details
[ 26.395336] EXT4-fs (loop0): Delayed block allocation failed for inode 18 at logical offset 102 with max blocks 2 with error 28
[ 26.398232] EXT4-fs (loop0): This should not happen!! Data will be lost
[ 26.398232]
[ 26.400269] EXT4-fs (loop0): Total free blocks count 0
[ 26.401735] EXT4-fs (loop0): Free/Dirty block details
[ 26.402888] EXT4-fs (loop0): free_blocks=0
[ 26.404006] EXT4-fs (loop0): dirty_blocks=16
[ 26.405387] EXT4-fs (loop0): Block reservation details
[ 26.408838] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 12 with max blocks 2 with error 28
[ 26.411236] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 26.411236]
[ 26.413128] EXT4-fs (loop7): Total free blocks count 0
[ 26.414424] EXT4-fs (loop7): Free/Dirty block details
[ 26.415392] EXT4-fs (loop7): free_blocks=0
[ 26.416210] EXT4-fs (loop7): dirty_blocks=16
[ 26.417126] EXT4-fs (loop7): Block reservation details
[ 26.423730] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 8 with max blocks 2 with error 28
[ 26.426185] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 26.426185]
[ 26.426848] EXT4-fs (loop1): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 26.428127] EXT4-fs (loop2): Total free blocks count 0
[ 26.431297] EXT4-fs (loop2): Free/Dirty block details
[ 26.432458] EXT4-fs (loop2): free_blocks=0
[ 26.433410] EXT4-fs (loop2): dirty_blocks=16
[ 26.434556] EXT4-fs (loop2): Block reservation details
[ 26.440717] EXT4-fs (loop6): unmounting filesystem 00000000-0000-0000-0000-000000000000.
executing program
[ 26.459366] loop1: detected capacity change from 0 to 2048
[ 26.460143] EXT4-fs (loop4): unmounting filesystem 00000000-0000-0000-0000-000000000000.
executing program
executing program
executing program
[ 26.476890] loop6: detected capacity change from 0 to 2048
executing program
[ 26.479393] EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 10 with max blocks 2 with error 28
[ 26.482383] EXT4-fs (loop5): This should not happen!! Data will be lost
[ 26.482383]
executing program
[ 26.484039] EXT4-fs (loop5): Total free blocks count 0
[ 26.485388] EXT4-fs (loop5): Free/Dirty block details
[ 26.486677] EXT4-fs (loop5): free_blocks=0
[ 26.487106] loop3: detected capacity change from 0 to 2048
[ 26.487270] EXT4-fs (loop1): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.487737] EXT4-fs (loop5): dirty_blocks=16
executing program
[ 26.492161] EXT4-fs (loop5): Block reservation details
[ 26.497737] EXT4-fs (loop6): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.506615] EXT4-fs (loop7): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.514799] EXT4-fs (loop3): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.515818] EXT4-fs (loop2): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.517071] EXT4-fs (loop0): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.523868] EXT4-fs (loop4): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
executing program
[ 26.567776] EXT4-fs (loop5): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.627936] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.630736] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.642719] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.643047] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.648540] EXT4-fs error (device loop0): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.651619] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 2 with error 117
[ 26.654019] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 26.654019]
[ 26.655909] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 14 with error 117
[ 26.658329] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 26.658329]
[ 26.663593] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.668087] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.678029] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 62 with error 117
[ 26.680183] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 26.680183]
[ 26.682059] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 34 with error 117
[ 26.685010] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 26.685010]
[ 26.692899] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 28 with error 117
[ 26.695211] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 26.695211]
[ 26.697104] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 2 with max blocks 2 with error 28
[ 26.699621] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 26.699621]
[ 26.701570] EXT4-fs (loop1): Total free blocks count 0
[ 26.702848] EXT4-fs (loop1): Free/Dirty block details
[ 26.704127] EXT4-fs (loop1): free_blocks=0
[ 26.705112] EXT4-fs (loop1): dirty_blocks=16
[ 26.706255] EXT4-fs (loop1): Block reservation details
[ 26.710597] EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.721282] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
[ 26.723982] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 26.723982]
[ 26.724292] EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 16 with error 117
[ 26.728100] EXT4-fs (loop5): This should not happen!! Data will be lost
[ 26.728100]
[ 26.744245] EXT4-fs (loop6): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 26.759953] EXT4-fs (loop0): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 26.763217] EXT4-fs (loop2): unmounting filesystem 00000000-0000-0000-0000-000000000000.
executing program
[ 26.768598] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 34 with max blocks 2 with error 28
[ 26.771429] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 26.771429]
[ 26.773427] EXT4-fs (loop7): Total free blocks count 0
[ 26.774729] EXT4-fs (loop7): Free/Dirty block details
[ 26.776001] EXT4-fs (loop7): free_blocks=0
[ 26.777046] EXT4-fs (loop7): dirty_blocks=16
[ 26.778180] EXT4-fs (loop7): Block reservation details
[ 26.787020] EXT4-fs (loop5): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 26.791391] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 62 with max blocks 2 with error 28
[ 26.793696] EXT4-fs (loop1): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.794048] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 26.794048]
[ 26.798043] EXT4-fs (loop4): Total free blocks count 0
[ 26.799301] EXT4-fs (loop4): Free/Dirty block details
[ 26.800531] EXT4-fs (loop4): free_blocks=0
executing program
[ 26.801560] EXT4-fs (loop4): dirty_blocks=16
[ 26.802714] EXT4-fs (loop4): Block reservation details
executing program
executing program
executing program
[ 26.827206] EXT4-fs (loop6): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.829101] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 28 with max blocks 2 with error 28
[ 26.831625] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 26.831625]
[ 26.833379] EXT4-fs (loop3): Total free blocks count 0
[ 26.834611] EXT4-fs (loop3): Free/Dirty block details
[ 26.835787] EXT4-fs (loop3): free_blocks=0
[ 26.836776] EXT4-fs (loop3): dirty_blocks=16
[ 26.837814] EXT4-fs (loop3): Block reservation details
executing program
[ 26.850127] EXT4-fs (loop0): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
executing program
[ 26.858881] EXT4-fs (loop7): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.875142] EXT4-fs (loop2): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.883336] EXT4-fs (loop5): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.902624] EXT4-fs (loop4): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
executing program
[ 26.971652] EXT4-fs (loop3): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 26.976005] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.981690] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.986280] EXT4-fs error (device loop0): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 26.989789] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 117
[ 26.992370] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 26.992370]
[ 27.002123] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 36 with error 117
[ 27.004476] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 27.004476]
[ 27.007895] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.009740] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.027824] ------------[ cut here ]------------
[ 27.027935] EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.029145] kernel BUG at fs/ext4/inode.c:2809!
[ 27.033215] Oops: invalid opcode: 0000 [#1] SMP KASAN NOPTI
[ 27.034656] CPU: 1 UID: 0 PID: 57 Comm: kworker/u16:3 Not tainted 6.19.0-rc8 #2 PREEMPT(voluntary)
[ 27.035494] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 117
[ 27.036971] Hardware name: QEMU Ubuntu 24.10 PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
[ 27.036989] Workqueue: writeback wb_workfn
[ 27.040746] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 27.040746]
[ 27.043496] (flush-7:0)
[ 27.043510] RIP: 0010:ext4_do_writepages+0x2ce5/0x3b40
[ 27.048763] Code: 84 ff 45 85 e4 0f 84 08 f6 ff ff 44 8b a5 08 ff ff ff c6 85 9f fe ff ff 01 89 9d 08 ff ff ff e9 50 e5 ff ff e8 dc a1 84 ff 90 <0f> 0b e8 d4 a1 84 ff 48 8b 8d d8 fe ff ff 48 89 c8 48 c1 e8 03 42
[ 27.052965] RSP: 0018:ffff8881017bf310 EFLAGS: 00010246
[ 27.054287] RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffffffff81f07130
[ 27.055830] RDX: 0000000000000001 RSI: ffff888101335340 RDI: 0000000000000002
[ 27.057649] RBP: ffff8881017bf4d0 R08: 0000000000000000 R09: ffffed1022cd0d26
[ 27.059283] R10: ffffed1022cd0d25 R11: ffff88811668692f R12: ffff888116686928
[ 27.060795] R13: 0000000000000001 R14: ffff8881017bf510 R15: ffff888116686b70
[ 27.062503] FS: 0000000000000000(0000) GS:ffff8881936bf000(0000) knlGS:0000000000000000
[ 27.064282] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 27.065692] CR2: 00007f9c2fe5eec0 CR3: 0000000109da4000 CR4: 0000000000350ef0
[ 27.067356] Call Trace:
[ 27.067990] <TASK>
[ 27.068536] ? look_up_lock_class.isra.0+0x6b/0x140
[ 27.069588] ? register_lock_class+0x45/0x780
[ 27.070621] ? __lock_acquire+0x55a/0x1eb0
[ 27.071593] ? __pfx_ext4_do_writepages+0x10/0x10
[ 27.072640] ? lock_is_held_type+0x9e/0x120
[ 27.073669] ? rcu_read_lock_any_held+0xd3/0x100
[ 27.074823] ? __pfx_rcu_read_lock_any_held+0x10/0x10
[ 27.076040] ? ext4_writepages+0x369/0x7a0
[ 27.077067] ext4_writepages+0x369/0x7a0
[ 27.077972] ? __pfx_ext4_writepages+0x10/0x10
[ 27.078973] ? __pfx_ext4_writepages+0x10/0x10
[ 27.080142] do_writepages+0x244/0x5c0
[ 27.080935] __writeback_single_inode+0x109/0x12a0
[ 27.082031] ? wbc_attach_and_unlock_inode+0x4cb/0x900
[ 27.083220] writeback_sb_inodes+0x6f9/0x1b00
[ 27.084186] ? __pfx_writeback_sb_inodes+0x10/0x10
[ 27.085153] ? write_comp_data+0x29/0x80
[ 27.086102] ? queue_io+0x40f/0x550
[ 27.086963] wb_writeback+0x1a5/0x9e0
[ 27.087850] ? __pfx_wb_writeback+0x10/0x10
[ 27.088769] ? mark_held_locks+0x49/0x80
[ 27.089724] ? lockdep_hardirqs_on_prepare+0xdb/0x190
[ 27.090976] wb_workfn+0x12d/0xcb0
[ 27.091735] ? __pfx_wb_workfn+0x10/0x10
[ 27.092714] ? lock_acquire+0x15d/0x2b0
[ 27.093713] ? process_scheduled_works+0x4ce/0x1910
[ 27.094774] process_scheduled_works+0x54f/0x1910
[ 27.095854] ? __pfx_process_scheduled_works+0x10/0x10
[ 27.097096] ? move_linked_works+0x189/0x2d0
[ 27.098116] ? __sanitizer_cov_trace_pc+0x20/0x50
[ 27.099210] ? assign_work+0x195/0x240
[ 27.100119] ? lock_is_held_type+0x9e/0x120
[ 27.101165] worker_thread+0x5a9/0xd10
[ 27.102019] ? __pfx_worker_thread+0x10/0x10
[ 27.103044] kthread+0x43f/0x860
[ 27.103813] ? __pfx_kthread+0x10/0x10
[ 27.104758] ? ret_from_fork+0x79/0x7b0
[ 27.105604] ? lock_release+0xc8/0x270
[ 27.106523] ? __pfx_kthread+0x10/0x10
[ 27.107520] ret_from_fork+0x66d/0x7b0
[ 27.108330] ? __pfx_ret_from_fork+0x10/0x10
[ 27.109387] ? write_comp_data+0x29/0x80
[ 27.110384] ? __sanitizer_cov_trace_pc+0x20/0x50
[ 27.111549] ? __switch_to+0x859/0x1210
[ 27.112404] ? __pfx_kthread+0x10/0x10
[ 27.113344] ret_from_fork_asm+0x1a/0x30
[ 27.114411] </TASK>
[ 27.114922] Modules linked in:
[ 27.115657] ---[ end trace 0000000000000000 ]---
[ 27.116849] RIP: 0010:ext4_do_writepages+0x2ce5/0x3b40
[ 27.118141] Code: 84 ff 45 85 e4 0f 84 08 f6 ff ff 44 8b a5 08 ff ff ff c6 85 9f fe ff ff 01 89 9d 08 ff ff ff e9 50 e5 ff ff e8 dc a1 84 ff 90 <0f> 0b e8 d4 a1 84 ff 48 8b 8d d8 fe ff ff 48 89 c8 48 c1 e8 03 42
[ 27.122490] RSP: 0018:ffff8881017bf310 EFLAGS: 00010246
[ 27.123777] RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffffffff81f07130
[ 27.125513] RDX: 0000000000000001 RSI: ffff888101335340 RDI: 0000000000000002
[ 27.127294] RBP: ffff8881017bf4d0 R08: 0000000000000000 R09: ffffed1022cd0d26
[ 27.128893] R10: ffffed1022cd0d25 R11: ffff88811668692f R12: ffff888116686928
[ 27.130650] R13: 0000000000000001 R14: ffff8881017bf510 R15: ffff888116686b70
[ 27.132322] FS: 0000000000000000(0000) GS:ffff8881936bf000(0000) knlGS:0000000000000000
[ 27.134386] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 27.135803] CR2: 00007f9c2fe5eec0 CR3: 0000000109da4000 CR4: 0000000000350ef0
[ 27.137674] ------------[ cut here ]------------
[ 27.138708] WARNING: kernel/exit.c:902 at do_exit+0x1e3a/0x2d90, CPU#1: kworker/u16:3/57
[ 27.140587] Modules linked in:
[ 27.141403] CPU: 1 UID: 0 PID: 57 Comm: kworker/u16:3 Tainted: G D 6.19.0-rc8 #2 PREEMPT(voluntary)
[ 27.143628] Tainted: [D]=DIE
[ 27.144389] Hardware name: QEMU Ubuntu 24.10 PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
[ 27.146728] Workqueue: writeback wb_workfn (flush-7:0)
[ 27.147945] RIP: 0010:do_exit+0x1e3a/0x2d90
[ 27.149035] Code: 2f 04 00 00 c7 43 18 00 00 00 00 e9 88 e4 ff ff e8 7b fd 39 00 bf 02 24 00 00 e8 c1 f9 0b 00 e9 3e ff ff ff e8 67 fd 39 00 90 <0f> 0b 90 e9 83 e2 ff ff e8 59 fd 39 00 48 89 ee bf 05 06 00 00 e8
[ 27.153520] RSP: 0018:ffff8881017bfe30 EFLAGS: 00010246
[ 27.154875] RAX: 00000000f0f05800 RBX: 0000000000000200 RCX: ffffffff813b1e67
[ 27.156768] RDX: 1ffff11020266ca5 RSI: ffff888101335340 RDI: 0000000000000002
[ 27.158917] RBP: 000000000000000b R08: fffffbfff0f05800 R09: fffffbfff0f058e1
[ 27.160789] R10: fffffbfff0f058e0 R11: 0000000000000003 R12: ffff888101335340
[ 27.162580] R13: 0000000000002710 R14: ffff8881013369e8 R15: ffff888101335340
[ 27.164477] FS: 0000000000000000(0000) GS:ffff8881936bf000(0000) knlGS:0000000000000000
[ 27.166514] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 27.168048] CR2: 00007f9c2fe5eec0 CR3: 0000000109da4000 CR4: 0000000000350ef0
[ 27.169858] Call Trace:
[ 27.170472] <TASK>
[ 27.171076] ? __pfx_kthread+0x10/0x10
[ 27.172131] ? ret_from_fork+0x79/0x7b0
[ 27.173127] ? lock_release+0xc8/0x270
[ 27.174051] ? __pfx_kthread+0x10/0x10
[ 27.175075] ? __pfx_do_exit+0x10/0x10
[ 27.176060] ? ret_from_fork+0x66d/0x7b0
[ 27.176967] ? __pfx_ret_from_fork+0x10/0x10
[ 27.177969] ? write_comp_data+0x29/0x80
[ 27.178870] make_task_dead+0x174/0x3d0
[ 27.179848] rewind_stack_and_make_dead+0x16/0x20
[ 27.180984] RIP: 0000:0x0
[ 27.181557] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.181662] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.184645] Code: Unable to access opcode bytes at 0xffffffffffffffd6.
[ 27.184658] RSP: 0000:0000000000000000 EFLAGS: 00000000 ORIG_RAX: 0000000000000000
[ 27.187984] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 128 with error 117
[ 27.189507] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000000
[ 27.190960] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 27.190960]
[ 27.193386] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[ 27.197688] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 14 with error 117
[ 27.198745] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[ 27.201413] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 27.201413]
[ 27.203221] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[ 27.203237] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 27.208877] </TASK>
[ 27.209530] irq event stamp: 5391
[ 27.210465] hardirqs last enabled at (5391): [<ffffffff8129aeb1>] do_error_trap+0x171/0x240
[ 27.212742] hardirqs last disabled at (5390): [<ffffffff84a92121>] exc_invalid_op+0x51/0x80
[ 27.214919] softirqs last enabled at (5382): [<ffffffff813b9880>] handle_softirqs+0x490/0x700
[ 27.217034] softirqs last disabled at (5373): [<ffffffff813bb2e6>] irq_exit_rcu+0xd6/0x110
[ 27.219060] ---[ end trace 0000000000000000 ]---
[ 27.224075] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 36 with max blocks 2 with error 28
[ 27.227088] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 27.227088]
[ 27.228358] EXT4-fs (loop2): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 27.229282] EXT4-fs (loop6): Total free blocks count 0
[ 27.232826] EXT4-fs (loop6): Free/Dirty block details
[ 27.233968] EXT4-fs (loop3): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 27.234475] EXT4-fs (loop6): free_blocks=0
[ 27.237572] EXT4-fs (loop6): dirty_blocks=16
[ 27.238670] EXT4-fs (loop6): Block reservation details
[ 27.242612] EXT4-fs (loop1): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 27.250874] EXT4-fs (loop5): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 27.255802] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 14 with max blocks 2 with error 28
[ 27.258509] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 27.258509]
executing program
[ 27.259582] EXT4-fs (loop7): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 27.260431] EXT4-fs (loop4): Total free blocks count 0
[ 27.263890] EXT4-fs (loop4): Free/Dirty block details
[ 27.265183] EXT4-fs (loop4): free_blocks=0
[ 27.266186] EXT4-fs (loop4): dirty_blocks=16
[ 27.267323] EXT4-fs (loop4): Block reservation details
[ 27.268454] EXT4-fs (loop3): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
executing program
executing program
executing program
executing program
executing program
[ 27.286081] EXT4-fs (loop6): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 27.303021] EXT4-fs (loop2): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 27.306018] EXT4-fs (loop5): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
executing program
[ 27.311571] EXT4-fs (loop7): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 27.316883] EXT4-fs (loop1): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 27.347697] EXT4-fs (loop4): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
[ 27.394765] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.407835] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.417973] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 156 with error 117
[ 27.420272] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 27.420272]
[ 27.425861] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.426088] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 117
[ 27.431028] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 27.431028]
[ 27.441988] EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.445488] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 46 with error 117
[ 27.448214] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 27.448214]
[ 27.457134] EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 120 with error 117
[ 27.457628] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.459570] EXT4-fs (loop5): This should not happen!! Data will be lost
[ 27.459570]
[ 27.467599] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.478120] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 46 with max blocks 2 with error 28
[ 27.478522] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 42 with error 117
[ 27.480578] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 27.480578]
[ 27.482637] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 27.482637]
[ 27.484270] EXT4-fs (loop2): Total free blocks count 0
[ 27.486833] EXT4-fs (loop2): Free/Dirty block details
[ 27.488085] EXT4-fs (loop2): free_blocks=0
[ 27.489000] EXT4-fs (loop2): dirty_blocks=16
[ 27.489962] EXT4-fs (loop2): Block reservation details
[ 27.491631] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 34 with error 28
[ 27.494165] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 27.494165]
[ 27.495790] EXT4-fs (loop7): Total free blocks count 0
[ 27.496843] EXT4-fs (loop7): Free/Dirty block details
[ 27.497864] EXT4-fs (loop7): free_blocks=0
[ 27.498837] EXT4-fs (loop7): dirty_blocks=48
[ 27.500017] EXT4-fs (loop7): Block reservation details
[ 27.501472] EXT4-fs (loop7): i_reserved_data_blocks=3
[ 27.501922] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.505818] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 156 with max blocks 2 with error 28
[ 27.508116] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 27.508116]
[ 27.509792] EXT4-fs (loop3): Total free blocks count 0
[ 27.510911] EXT4-fs (loop3): Free/Dirty block details
[ 27.512264] EXT4-fs (loop3): free_blocks=0
[ 27.513335] EXT4-fs (loop3): dirty_blocks=16
[ 27.513694] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 78 with error 117
[ 27.514451] EXT4-fs (loop3): Block reservation details
[ 27.516910] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 27.516910]
[ 27.519798] EXT4-fs (loop6): unmounting filesystem 00000000-0000-0000-0000-000000000000.
[ 27.526750] EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 120 with max blocks 2 with error 28
[ 27.528973] EXT4-fs (loop5): This should not happen!! Data will be lost
[ 27.528973]
[ 27.530511] EXT4-fs (loop5): Total free blocks count 0
[ 27.531517] EXT4-fs (loop5): Free/Dirty block details
[ 27.532850] EXT4-fs (loop5): free_blocks=0
[ 27.533860] EXT4-fs (loop5): dirty_blocks=16
[ 27.534926] EXT4-fs (loop5): Block reservation details
executing program
executing program
[ 27.545582] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 78 with max blocks 2 with error 28
[ 27.548940] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 27.548940]
[ 27.550970] EXT4-fs (loop4): Total free blocks count 0
[ 27.552178] EXT4-fs (loop4): Free/Dirty block details
[ 27.553184] EXT4-fs (loop4): free_blocks=0
[ 27.554048] EXT4-fs (loop4): dirty_blocks=16
[ 27.554571] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 42 with max blocks 2 with error 28
[ 27.554934] EXT4-fs (loop4): Block reservation details
[ 27.557128] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 27.557128]
[ 27.560089] EXT4-fs (loop1): Total free blocks count 0
[ 27.561428] EXT4-fs (loop1): Free/Dirty block details
[ 27.562759] EXT4-fs (loop1): free_blocks=0
[ 27.563779] EXT4-fs (loop1): dirty_blocks=16
[ 27.564882] EXT4-fs (loop1): Block reservation details
[ 27.573697] EXT4-fs (loop6): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
executing program
[ 27.584822] EXT4-fs (loop2): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
executing program
executing program
executing program
[ 27.603689] EXT4-fs (loop5): mounted filesystem 00000000-0000-0000-0000-000000000000 r/w without journal. Quota mode: none.
executing program
[ 27.716333] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.718755] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.727714] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 92 with error 117
[ 27.729947] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 27.729947]
[ 27.732844] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.739669] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 114 with error 117
[ 27.741937] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 27.741937]
[ 27.745890] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 192 with error 117
[ 27.745965] EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.748377] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 27.748377]
[ 27.748786] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.748967] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 117
[ 27.748990] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 27.748990]
[ 27.751183] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.761944] EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 8 with error 117
[ 27.762663] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 117
[ 27.764149] EXT4-fs (loop5): This should not happen!! Data will be lost
[ 27.764149]
[ 27.767866] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 27.767866]
[ 27.768263] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 92 with max blocks 2 with error 28
[ 27.771592] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 27.771592]
[ 27.773303] EXT4-fs (loop2): Total free blocks count 0
[ 27.774506] EXT4-fs (loop2): Free/Dirty block details
[ 27.775631] EXT4-fs (loop2): free_blocks=0
[ 27.776536] EXT4-fs (loop2): dirty_blocks=16
[ 27.777356] EXT4-fs (loop2): Block reservation details
[ 27.780036] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.795617] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 4 with error 117
[ 27.798617] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 27.798617]
executing program
[ 27.813921] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 114 with max blocks 2 with error 28
[ 27.816576] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 27.816576]
[ 27.818611] EXT4-fs (loop4): Total free blocks count 0
[ 27.819845] EXT4-fs (loop4): Free/Dirty block details
[ 27.821111] EXT4-fs (loop4): free_blocks=0
[ 27.822146] EXT4-fs (loop4): dirty_blocks=16
[ 27.823206] EXT4-fs (loop4): Block reservation details
[ 27.824563] EXT4-fs (loop4): i_reserved_data_blocks=1
[ 27.831414] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 4 with max blocks 2 with error 28
[ 27.834056] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 27.834056]
[ 27.836004] EXT4-fs (loop7): Total free blocks count 0
[ 27.837284] EXT4-fs (loop7): Free/Dirty block details
[ 27.838539] EXT4-fs (loop7): free_blocks=0
[ 27.839577] EXT4-fs (loop7): dirty_blocks=16
[ 27.840679] EXT4-fs (loop7): Block reservation details
[ 27.841917] EXT4-fs (loop7): i_reserved_data_blocks=1
executing program
executing program
executing program
executing program
[ 27.865172] EXT4-fs (loop5): Delayed block allocation failed for inode 18 at logical offset 8 with max blocks 2 with error 28
[ 27.867414] EXT4-fs (loop5): This should not happen!! Data will be lost
[ 27.867414]
[ 27.869073] EXT4-fs (loop5): Total free blocks count 0
[ 27.870090] EXT4-fs (loop5): Free/Dirty block details
[ 27.871087] EXT4-fs (loop5): free_blocks=0
[ 27.871932] EXT4-fs (loop5): dirty_blocks=16
[ 27.872808] EXT4-fs (loop5): Block reservation details
executing program
executing program
[ 27.965421] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.974681] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 214 with error 117
[ 27.977126] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 27.977126]
[ 27.982001] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.982493] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 27.991604] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 38 with error 117
[ 27.993989] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 27.993989]
[ 27.997582] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 164 with error 117
[ 27.999962] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 27.999962]
[ 28.004191] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.006911] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.009264] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 74 with error 117
[ 28.011855] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 28.011855]
[ 28.019090] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 12 with error 117
[ 28.021625] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 28.021625]
[ 28.025807] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 214 with max blocks 2 with error 28
[ 28.028311] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 28.028311]
[ 28.030287] EXT4-fs (loop3): Total free blocks count 0
[ 28.031630] EXT4-fs (loop3): Free/Dirty block details
[ 28.032946] EXT4-fs (loop3): free_blocks=0
[ 28.034069] EXT4-fs (loop3): dirty_blocks=16
[ 28.035593] EXT4-fs (loop3): Block reservation details
[ 28.036880] EXT4-fs (loop3): i_reserved_data_blocks=1
[ 28.040800] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 164 with max blocks 2 with error 28
[ 28.043729] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 28.043729]
[ 28.045815] EXT4-fs (loop1): Total free blocks count 0
[ 28.047134] EXT4-fs (loop1): Free/Dirty block details
[ 28.048366] EXT4-fs (loop1): free_blocks=0
[ 28.049455] EXT4-fs (loop1): dirty_blocks=16
[ 28.050515] EXT4-fs (loop1): Block reservation details
[ 28.051816] EXT4-fs (loop1): i_reserved_data_blocks=1
[ 28.056420] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.072813] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
[ 28.075635] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 28.075635]
executing program
[ 28.123614] EXT4-fs error (device loop5): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.124028] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 74 with max blocks 2 with error 28
[ 28.128983] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 28.128983]
executing program
[ 28.130616] EXT4-fs (loop4): Total free blocks count 0
[ 28.131877] EXT4-fs (loop4): Free/Dirty block details
[ 28.132958] EXT4-fs (loop4): free_blocks=0
[ 28.133955] EXT4-fs (loop4): dirty_blocks=16
[ 28.134881] EXT4-fs (loop4): Block reservation details
[ 28.136187] EXT4-fs (loop4): i_reserved_data_blocks=1
[ 28.138507] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 12 with max blocks 2 with error 28
[ 28.141259] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 28.141259]
[ 28.143215] EXT4-fs (loop2): Total free blocks count 0
[ 28.144559] EXT4-fs (loop2): Free/Dirty block details
[ 28.145815] EXT4-fs (loop2): free_blocks=0
[ 28.147019] EXT4-fs (loop2): dirty_blocks=16
[ 28.148240] EXT4-fs (loop2): Block reservation details
[ 28.149706] EXT4-fs (loop2): i_reserved_data_blocks=1
[ 28.151984] ------------[ cut here ]------------
[ 28.153346] kernel BUG at fs/ext4/inode.c:2809!
[ 28.154417] Oops: invalid opcode: 0000 [#2] SMP KASAN NOPTI
executing program
[ 28.155770] CPU: 0 UID: 0 PID: 287 Comm: kworker/u16:4 Tainted: G D W 6.19.0-rc8 #2 PREEMPT(voluntary)
[ 28.158156] Tainted: [D]=DIE, [W]=WARN
[ 28.158994] Hardware name: QEMU Ubuntu 24.10 PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
[ 28.161057] Workqueue: writeback wb_workfn (flush-7:5)
[ 28.162096] RIP: 0010:ext4_do_writepages+0x2ce5/0x3b40
[ 28.163149] Code: 84 ff 45 85 e4 0f 84 08 f6 ff ff 44 8b a5 08 ff ff ff c6 85 9f fe ff ff 01 89 9d 08 ff ff ff e9 50 e5 ff ff e8 dc a1 84 ff 90 <0f> 0b e8 d4 a1 84 ff 48 8b 8d d8 fe ff ff 48 89 c8 48 c1 e8 03 42
[ 28.166705] RSP: 0018:ffff888110f7f310 EFLAGS: 00010246
[ 28.167756] RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffffffff81f07130
[ 28.169178] RDX: 0000000000000001 RSI: ffff8881033f9bc0 RDI: 0000000000000002
[ 28.170662] RBP: ffff888110f7f4d0 R08: 0000000000000000 R09: ffffed10232d3600
[ 28.172127] R10: ffffed10232d35ff R11: ffff88811969afff R12: ffff88811969aff8
[ 28.173710] R13: 0000000000000001 R14: ffff888110f7f510 R15: ffff88811969b240
[ 28.175126] FS: 0000000000000000(0000) GS:ffff88819363f000(0000) knlGS:0000000000000000
[ 28.176720] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 28.178062] CR2: 00007f49b0dd7a90 CR3: 0000000100db1000 CR4: 0000000000350ef0
[ 28.179653] Call Trace:
[ 28.180177] <TASK>
[ 28.180635] ? stack_trace_save+0x8e/0xc0
[ 28.181487] ? stack_depot_save_flags+0x2b/0xa00
[ 28.182475] ? ext4_fc_track_inode+0x148/0x6d0
[ 28.183395] ? lock_acquire+0x18b/0x2b0
[ 28.184199] ? lock_release+0x1c7/0x270
[ 28.184979] ? lock_acquire+0x18b/0x2b0
[ 28.185751] ? __pfx_ext4_do_writepages+0x10/0x10
[ 28.186711] ? lock_release+0x1c7/0x270
[ 28.187515] ? lock_acquire+0x18b/0x2b0
[ 28.188298] ? lock_acquire+0x18b/0x2b0
[ 28.189077] ? lock_release+0x1c7/0x270
[ 28.189846] ? ext4_writepages+0x369/0x7a0
[ 28.190695] ext4_writepages+0x369/0x7a0
[ 28.191664] ? __pfx_ext4_writepages+0x10/0x10
[ 28.192828] ? lock_release+0x1c7/0x270
[ 28.193797] ? write_comp_data+0x29/0x80
[ 28.194819] ? __pfx_ext4_writepages+0x10/0x10
[ 28.195958] do_writepages+0x244/0x5c0
[ 28.196926] __writeback_single_inode+0x109/0x12a0
[ 28.198168] ? wbc_attach_and_unlock_inode+0x4cb/0x900
[ 28.199472] writeback_sb_inodes+0x6f9/0x1b00
[ 28.200598] ? __pfx_writeback_sb_inodes+0x10/0x10
[ 28.201807] ? write_comp_data+0x29/0x80
[ 28.202817] ? queue_io+0x40f/0x550
[ 28.203743] wb_writeback+0x1a5/0x9e0
[ 28.204689] ? set_worker_desc+0xa0/0x1b0
[ 28.205726] ? __pfx_wb_writeback+0x10/0x10
[ 28.206801] ? __pfx_do_raw_spin_lock+0x10/0x10
[ 28.207976] ? _raw_spin_unlock_irq+0x23/0x40
[ 28.209076] wb_workfn+0x12d/0xcb0
[ 28.209953] ? write_comp_data+0x29/0x80
[ 28.210847] ? __pfx_wb_workfn+0x10/0x10
[ 28.211848] ? __perf_event_task_sched_in+0x333/0xa50
[ 28.213114] ? __pfx_perf_trace_preemptirq_template+0x10/0x10
[ 28.214568] ? lock_acquire+0x18b/0x2b0
[ 28.215561] process_scheduled_works+0x54f/0x1910
[ 28.216761] ? __pfx_process_scheduled_works+0x10/0x10
[ 28.218044] ? move_linked_works+0x189/0x2d0
[ 28.219154] ? __sanitizer_cov_trace_pc+0x20/0x50
[ 28.220353] ? assign_work+0x195/0x240
[ 28.221240] worker_thread+0x5a9/0xd10
[ 28.222040] ? __pfx_worker_thread+0x10/0x10
[ 28.222921] kthread+0x43f/0x860
[ 28.223586] ? __pfx_kthread+0x10/0x10
[ 28.224479] ? ret_from_fork+0x79/0x7b0
[ 28.225277] ? lock_release+0xc8/0x270
[ 28.226109] ? __pfx_kthread+0x10/0x10
[ 28.226992] ret_from_fork+0x66d/0x7b0
[ 28.227830] ? __pfx_ret_from_fork+0x10/0x10
[ 28.228763] ? write_comp_data+0x29/0x80
[ 28.229653] ? __sanitizer_cov_trace_pc+0x20/0x50
[ 28.230663] ? __switch_to+0x859/0x1210
[ 28.231493] ? __pfx_kthread+0x10/0x10
[ 28.232280] ret_from_fork_asm+0x1a/0x30
[ 28.233105] </TASK>
[ 28.233575] Modules linked in:
[ 28.234479] ---[ end trace 0000000000000000 ]---
[ 28.235431] RIP: 0010:ext4_do_writepages+0x2ce5/0x3b40
[ 28.237464] Code: 84 ff 45 85 e4 0f 84 08 f6 ff ff 44 8b a5 08 ff ff ff c6 85 9f fe ff ff 01 89 9d 08 ff ff ff e9 50 e5 ff ff e8 dc a1 84 ff 90 <0f> 0b e8 d4 a1 84 ff 48 8b 8d d8 fe ff ff 48 89 c8 48 c1 e8 03 42
[ 28.241381] RSP: 0018:ffff8881017bf310 EFLAGS: 00010246
[ 28.242533] RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffffffff81f07130
[ 28.244058] RDX: 0000000000000001 RSI: ffff888101335340 RDI: 0000000000000002
executing program
[ 28.245555] RBP: ffff8881017bf4d0 R08: 0000000000000000 R09: ffffed1022cd0d26
[ 28.247350] R10: ffffed1022cd0d25 R11: ffff88811668692f R12: ffff888116686928
[ 28.249054] R13: 0000000000000001 R14: ffff8881017bf510 R15: ffff888116686b70
[ 28.250968] FS: 0000000000000000(0000) GS:ffff88819363f000(0000) knlGS:0000000000000000
[ 28.253103] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 28.254302] CR2: 00007f49b0dd7a90 CR3: 0000000100db1000 CR4: 0000000000350ef0
[ 28.255724] ------------[ cut here ]------------
[ 28.256638] WARNING: kernel/exit.c:902 at do_exit+0x1e3a/0x2d90, CPU#0: kworker/u16:4/287
[ 28.259953] Modules linked in:
[ 28.260591] CPU: 0 UID: 0 PID: 287 Comm: kworker/u16:4 Tainted: G D W 6.19.0-rc8 #2 PREEMPT(voluntary)
[ 28.262639] Tainted: [D]=DIE, [W]=WARN
[ 28.263379] Hardware name: QEMU Ubuntu 24.10 PC (i440FX + PIIX, 1996), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
[ 28.265260] Workqueue: writeback wb_workfn (flush-7:5)
[ 28.266267] RIP: 0010:do_exit+0x1e3a/0x2d90
[ 28.267165] Code: 2f 04 00 00 c7 43 18 00 00 00 00 e9 88 e4 ff ff e8 7b fd 39 00 bf 02 24 00 00 e8 c1 f9 0b 00 e9 3e ff ff ff e8 67 fd 39 00 90 <0f> 0b 90 e9 83 e2 ff ff e8 59 fd 39 00 48 89 ee bf 05 06 00 00 e8
[ 28.271570] RSP: 0018:ffff888110f7fe30 EFLAGS: 00010246
[ 28.272916] RAX: 00000000f0f05800 RBX: 0000000000000200 RCX: ffffffff813b1e67
[ 28.274300] RDX: 1ffff1102067f5b5 RSI: ffff8881033f9bc0 RDI: 0000000000000002
[ 28.275713] RBP: 000000000000000b R08: fffffbfff0f05800 R09: fffffbfff0f058e1
[ 28.277475] R10: fffffbfff0f058e0 R11: 0000000000000003 R12: ffff8881033f9bc0
[ 28.279161] R13: 0000000000002710 R14: ffff8881033fb268 R15: ffff8881033f9bc0
[ 28.280928] FS: 0000000000000000(0000) GS:ffff88819363f000(0000) knlGS:0000000000000000
[ 28.282863] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 28.284333] CR2: 00007f49b0dd7a90 CR3: 0000000100db1000 CR4: 0000000000350ef0
[ 28.285990] Call Trace:
[ 28.286644] <TASK>
[ 28.287250] ? __pfx_kthread+0x10/0x10
[ 28.288215] ? ret_from_fork+0x79/0x7b0
[ 28.289240] ? lock_release+0xc8/0x270
[ 28.290177] ? __pfx_kthread+0x10/0x10
[ 28.291201] ? __pfx_do_exit+0x10/0x10
[ 28.292191] ? ret_from_fork+0x66d/0x7b0
[ 28.293279] ? __pfx_ret_from_fork+0x10/0x10
executing program
[ 28.294347] ? write_comp_data+0x29/0x80
[ 28.295875] make_task_dead+0x174/0x3d0
[ 28.296907] rewind_stack_and_make_dead+0x16/0x20
[ 28.298099] RIP: 0000:0x0
[ 28.298879] Code: Unable to access opcode bytes at 0xffffffffffffffd6.
[ 28.300519] RSP: 0000:0000000000000000 EFLAGS: 00000000 ORIG_RAX: 0000000000000000
[ 28.302445] RAX: 0000000000000000 RBX: 0000000000000000 RCX: 0000000000000000
[ 28.304103] RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000000000000
[ 28.305855] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[ 28.307547] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[ 28.309370] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[ 28.311050] </TASK>
[ 28.311671] irq event stamp: 23206
[ 28.312535] hardirqs last enabled at (23205): [<ffffffff814206cc>] mod_delayed_work_on+0x13c/0x180
[ 28.314689] hardirqs last disabled at (23206): [<ffffffff84aa3b2c>] __schedule+0x194c/0x3f90
[ 28.316716] softirqs last enabled at (23112): [<ffffffff813b9880>] handle_softirqs+0x490/0x700
[ 28.318840] softirqs last disabled at (23105): [<ffffffff813bb2e6>] irq_exit_rcu+0xd6/0x110
[ 28.320857] ---[ end trace 0000000000000000 ]---
[ 28.354021] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.362278] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.370535] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 360 with error 117
[ 28.372778] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 28.372778]
[ 28.376154] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 128 with error 117
[ 28.378375] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 28.378375]
[ 28.400541] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 360 with max blocks 2 with error 28
[ 28.403055] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 28.403055]
[ 28.404700] EXT4-fs (loop6): Total free blocks count 0
[ 28.405817] EXT4-fs (loop6): Free/Dirty block details
[ 28.406917] EXT4-fs (loop6): free_blocks=0
[ 28.407803] EXT4-fs (loop6): dirty_blocks=16
[ 28.408768] EXT4-fs (loop6): Block reservation details
[ 28.409992] EXT4-fs (loop6): i_reserved_data_blocks=1
[ 28.457541] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.461759] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 28 with error 117
[ 28.464071] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 28.464071]
[ 28.499770] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.502786] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.503798] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 128 with max blocks 2 with error 28
[ 28.505783] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 294 with error 117
[ 28.507783] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 28.507783]
[ 28.510038] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 28.510038]
[ 28.511735] EXT4-fs (loop3): Total free blocks count 0
[ 28.513697] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 30 with error 117
[ 28.514445] EXT4-fs (loop3): Free/Dirty block details
[ 28.516618] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 28.516618]
[ 28.517622] EXT4-fs (loop3): free_blocks=0
[ 28.520022] EXT4-fs (loop3): dirty_blocks=16
[ 28.520899] EXT4-fs (loop3): Block reservation details
[ 28.522012] EXT4-fs (loop3): i_reserved_data_blocks=1
[ 28.523341] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 28 with max blocks 2 with error 28
[ 28.525934] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 28.525934]
[ 28.527841] EXT4-fs (loop7): Total free blocks count 0
[ 28.529119] EXT4-fs (loop7): Free/Dirty block details
[ 28.530325] EXT4-fs (loop7): free_blocks=0
[ 28.531422] EXT4-fs (loop7): dirty_blocks=16
[ 28.532495] EXT4-fs (loop7): Block reservation details
[ 28.533911] EXT4-fs (loop7): i_reserved_data_blocks=1
executing program
executing program
[ 28.556833] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 294 with max blocks 2 with error 28
[ 28.559542] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 28.559542]
[ 28.561532] EXT4-fs (loop1): Total free blocks count 0
executing program
[ 28.562937] EXT4-fs (loop1): Free/Dirty block details
[ 28.564225] EXT4-fs (loop1): free_blocks=0
[ 28.565280] EXT4-fs (loop1): dirty_blocks=16
[ 28.566148] EXT4-fs (loop1): Block reservation details
[ 28.567167] EXT4-fs (loop1): i_reserved_data_blocks=1
executing program
executing program
executing program
[ 28.702179] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.710912] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.717748] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 117
[ 28.720258] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 28.720258]
[ 28.724481] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.724855] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.730732] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 66 with error 117
[ 28.733428] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 28.733428]
[ 28.738290] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 118 with error 117
[ 28.740628] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 28.740628]
[ 28.749950] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.752924] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 126 with error 117
[ 28.755247] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 28.755247]
[ 28.764845] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 56 with error 117
[ 28.767031] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 28.767031]
[ 28.785702] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 126 with max blocks 2 with error 28
[ 28.787912] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 28.787912]
[ 28.789466] EXT4-fs (loop6): Total free blocks count 0
[ 28.790491] EXT4-fs (loop6): Free/Dirty block details
[ 28.791503] EXT4-fs (loop6): free_blocks=0
[ 28.792304] EXT4-fs (loop6): dirty_blocks=16
[ 28.793148] EXT4-fs (loop6): Block reservation details
[ 28.794165] EXT4-fs (loop6): i_reserved_data_blocks=1
[ 28.800427] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 118 with max blocks 2 with error 28
[ 28.802536] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 28.802536]
[ 28.804039] EXT4-fs (loop2): Total free blocks count 0
[ 28.805024] EXT4-fs (loop2): Free/Dirty block details
[ 28.805997] EXT4-fs (loop2): free_blocks=0
[ 28.806786] EXT4-fs (loop2): dirty_blocks=16
[ 28.807665] EXT4-fs (loop2): Block reservation details
[ 28.808646] EXT4-fs (loop2): i_reserved_data_blocks=1
[ 28.814728] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 56 with max blocks 2 with error 28
[ 28.816919] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 28.816919]
[ 28.818485] EXT4-fs (loop1): Total free blocks count 0
[ 28.819522] EXT4-fs (loop1): Free/Dirty block details
[ 28.820538] EXT4-fs (loop1): free_blocks=0
[ 28.821350] EXT4-fs (loop1): dirty_blocks=16
[ 28.822226] EXT4-fs (loop1): Block reservation details
[ 28.823237] EXT4-fs (loop1): i_reserved_data_blocks=1
[ 28.828547] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 28.832040] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 42 with error 28
[ 28.834382] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 28.834382]
[ 28.835992] EXT4-fs (loop4): Total free blocks count 0
[ 28.836989] EXT4-fs (loop4): Free/Dirty block details
[ 28.837945] EXT4-fs (loop4): free_blocks=0
[ 28.838723] EXT4-fs (loop4): dirty_blocks=48
[ 28.839548] EXT4-fs (loop4): Block reservation details
[ 28.840528] EXT4-fs (loop4): i_reserved_data_blocks=3
executing program
executing program
executing program
executing program
[ 28.896049] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 42 with max blocks 2 with error 28
[ 28.898291] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 28.898291]
executing program
[ 28.977082] ext4: Unknown parameter 'subj_user'
executing program
[ 29.025034] ext4: Unknown parameter 'subj_user'
[ 29.030920] ext4: Unknown parameter 'subj_user'
[ 29.071672] ext4: Unknown parameter 'subj_user'
[ 29.091147] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.094195] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 34 with error 28
[ 29.096457] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 29.096457]
[ 29.098212] EXT4-fs (loop4): Total free blocks count 0
[ 29.099376] EXT4-fs (loop4): Free/Dirty block details
[ 29.100480] EXT4-fs (loop4): free_blocks=0
[ 29.101325] EXT4-fs (loop4): dirty_blocks=48
[ 29.102285] EXT4-fs (loop4): Block reservation details
[ 29.103359] EXT4-fs (loop4): i_reserved_data_blocks=3
[ 29.120354] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 34 with max blocks 2 with error 28
[ 29.122661] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 29.122661]
executing program
[ 29.162728] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.168032] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
[ 29.170335] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 29.170335]
[ 29.171956] EXT4-fs (loop1): Total free blocks count 0
[ 29.173047] EXT4-fs (loop1): Free/Dirty block details
[ 29.174096] EXT4-fs (loop1): free_blocks=0
[ 29.174994] EXT4-fs (loop1): dirty_blocks=96
[ 29.175935] EXT4-fs (loop1): Block reservation details
[ 29.176966] EXT4-fs (loop1): i_reserved_data_blocks=6
[ 29.186998] syz-executor406 (891) used greatest stack depth: 22912 bytes left
executing program
executing program
executing program
executing program
executing program
[ 29.329028] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.367231] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 144 with error 28
[ 29.369746] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 29.369746]
[ 29.371491] EXT4-fs (loop4): Total free blocks count 0
[ 29.372574] EXT4-fs (loop4): Free/Dirty block details
[ 29.373653] EXT4-fs (loop4): free_blocks=0
[ 29.374537] EXT4-fs (loop4): dirty_blocks=144
[ 29.375481] EXT4-fs (loop4): Block reservation details
[ 29.376553] EXT4-fs (loop4): i_reserved_data_blocks=9
[ 29.378899] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.387095] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 288 with error 28
[ 29.389467] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 29.389467]
[ 29.391088] EXT4-fs (loop3): Total free blocks count 0
[ 29.392134] EXT4-fs (loop3): Free/Dirty block details
[ 29.393196] EXT4-fs (loop3): free_blocks=0
[ 29.394071] EXT4-fs (loop3): dirty_blocks=304
[ 29.394996] EXT4-fs (loop3): Block reservation details
[ 29.396023] EXT4-fs (loop3): i_reserved_data_blocks=19
[ 29.435535] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.443162] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 117
[ 29.445356] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 29.445356]
[ 29.449960] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 288 with max blocks 2 with error 28
[ 29.452300] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 29.452300]
executing program
[ 29.454217] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.459716] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.463652] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.466710] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
[ 29.469566] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 29.469566]
[ 29.474124] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 14 with error 117
[ 29.476935] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 29.476935]
[ 29.483287] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 160 with error 117
[ 29.486144] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 29.486144]
executing program
executing program
executing program
[ 29.514963] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 14 with max blocks 2 with error 28
[ 29.517249] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 29.517249]
executing program
[ 29.518919] EXT4-fs (loop1): Total free blocks count 0
[ 29.520156] EXT4-fs (loop1): Free/Dirty block details
[ 29.521246] EXT4-fs (loop1): free_blocks=0
[ 29.522132] EXT4-fs (loop1): dirty_blocks=16
[ 29.523006] EXT4-fs (loop1): Block reservation details
[ 29.524018] EXT4-fs (loop1): i_reserved_data_blocks=1
executing program
[ 29.629702] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.643901] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.648772] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.649316] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 246 with error 28
[ 29.653570] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 29.653570]
[ 29.654686] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 226 with error 28
[ 29.655495] EXT4-fs (loop6): Total free blocks count 0
[ 29.657788] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 29.657788]
[ 29.658807] EXT4-fs (loop6): Free/Dirty block details
[ 29.660361] EXT4-fs (loop2): Total free blocks count 0
[ 29.661373] EXT4-fs (loop6): free_blocks=0
[ 29.662454] EXT4-fs (loop2): Free/Dirty block details
[ 29.664773] EXT4-fs (loop2): free_blocks=0
[ 29.664804] EXT4-fs (loop6): dirty_blocks=256
[ 29.665609] EXT4-fs (loop2): dirty_blocks=240
[ 29.666462] EXT4-fs (loop6): Block reservation details
[ 29.667558] EXT4-fs (loop2): Block reservation details
[ 29.668540] EXT4-fs (loop6): i_reserved_data_blocks=16
[ 29.669550] EXT4-fs (loop2): i_reserved_data_blocks=15
[ 29.687548] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
[ 29.689837] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 29.689837]
[ 29.691607] EXT4-fs (loop4): Total free blocks count 0
[ 29.692761] EXT4-fs (loop4): Free/Dirty block details
[ 29.693869] EXT4-fs (loop4): free_blocks=0
[ 29.694782] EXT4-fs (loop4): dirty_blocks=96
[ 29.695761] EXT4-fs (loop4): Block reservation details
[ 29.696852] EXT4-fs (loop4): i_reserved_data_blocks=6
[ 29.714098] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 246 with max blocks 2 with error 28
[ 29.716517] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 29.716517]
[ 29.727664] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.741571] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 18 with error 28
[ 29.743746] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 29.743746]
[ 29.745650] EXT4-fs (loop3): Total free blocks count 0
[ 29.746698] EXT4-fs (loop3): Free/Dirty block details
[ 29.747301] ext4: Unknown parameter 'subj_user'
[ 29.747776] EXT4-fs (loop3): free_blocks=0
[ 29.749538] EXT4-fs (loop3): dirty_blocks=32
[ 29.750347] EXT4-fs (loop3): Block reservation details
[ 29.751430] EXT4-fs (loop3): i_reserved_data_blocks=2
[ 29.753027] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 226 with max blocks 2 with error 28
[ 29.755501] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 29.755501]
[ 29.761768] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 29.766664] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 80 with error 28
[ 29.769021] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 29.769021]
[ 29.770606] EXT4-fs (loop7): Total free blocks count 0
[ 29.771644] EXT4-fs (loop7): Free/Dirty block details
[ 29.772660] EXT4-fs (loop7): free_blocks=0
[ 29.773517] EXT4-fs (loop7): dirty_blocks=80
[ 29.774389] EXT4-fs (loop7): Block reservation details
[ 29.775430] EXT4-fs (loop7): i_reserved_data_blocks=5
executing program
executing program
executing program
executing program
executing program
[ 29.940077] ext4: Unknown parameter 'subj_user'
[ 29.951174] ext4: Unknown parameter 'subj_user'
[ 29.962651] ext4: Unknown parameter 'subj_user'
[ 30.007075] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.015722] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 74 with error 28
[ 30.018111] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 30.018111]
[ 30.019638] EXT4-fs (loop3): Total free blocks count 0
[ 30.020645] EXT4-fs (loop3): Free/Dirty block details
[ 30.021638] EXT4-fs (loop3): free_blocks=0
[ 30.022455] EXT4-fs (loop3): dirty_blocks=80
[ 30.023310] EXT4-fs (loop3): Block reservation details
[ 30.024313] EXT4-fs (loop3): i_reserved_data_blocks=5
[ 30.032088] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
executing program
[ 30.083231] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 74 with max blocks 2 with error 28
[ 30.085792] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 30.085792]
executing program
executing program
executing program
executing program
executing program
[ 30.193547] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.231359] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 60 with error 28
[ 30.233653] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 30.233653]
[ 30.235673] EXT4-fs (loop1): Total free blocks count 0
[ 30.236875] EXT4-fs (loop1): Free/Dirty block details
[ 30.238090] EXT4-fs (loop1): free_blocks=0
[ 30.239105] EXT4-fs (loop1): dirty_blocks=64
[ 30.240107] EXT4-fs (loop1): Block reservation details
[ 30.241269] EXT4-fs (loop1): i_reserved_data_blocks=4
[ 30.275952] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.289992] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
[ 30.292277] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 30.292277]
[ 30.293928] EXT4-fs (loop3): Total free blocks count 0
[ 30.295009] EXT4-fs (loop3): Free/Dirty block details
[ 30.296003] EXT4-fs (loop3): free_blocks=0
[ 30.296808] EXT4-fs (loop3): dirty_blocks=96
[ 30.297703] EXT4-fs (loop3): Block reservation details
[ 30.298729] EXT4-fs (loop3): i_reserved_data_blocks=6
[ 30.317536] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.320663] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.324038] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 132 with error 28
[ 30.326205] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 30.326205]
[ 30.328032] EXT4-fs (loop6): Total free blocks count 0
[ 30.329011] EXT4-fs (loop6): Free/Dirty block details
[ 30.329963] EXT4-fs (loop6): free_blocks=0
[ 30.330738] EXT4-fs (loop6): dirty_blocks=144
[ 30.331579] EXT4-fs (loop6): Block reservation details
[ 30.332549] EXT4-fs (loop6): i_reserved_data_blocks=9
[ 30.338642] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.342206] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 60 with max blocks 2 with error 28
[ 30.344889] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 30.344889]
[ 30.350784] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
[ 30.353540] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 30.353540]
[ 30.355547] EXT4-fs (loop2): Total free blocks count 0
[ 30.356806] EXT4-fs (loop2): Free/Dirty block details
[ 30.358123] EXT4-fs (loop2): free_blocks=0
[ 30.359094] EXT4-fs (loop2): dirty_blocks=64
[ 30.360253] EXT4-fs (loop2): Block reservation details
[ 30.361265] EXT4-fs (loop2): i_reserved_data_blocks=4
[ 30.375649] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.384831] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 102 with error 28
[ 30.387518] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 30.387518]
[ 30.389324] EXT4-fs (loop4): Total free blocks count 0
[ 30.390747] EXT4-fs (loop4): Free/Dirty block details
[ 30.391709] EXT4-fs (loop4): free_blocks=0
[ 30.392496] EXT4-fs (loop4): dirty_blocks=112
[ 30.393516] EXT4-fs (loop4): Block reservation details
[ 30.394749] EXT4-fs (loop4): i_reserved_data_blocks=7
executing program
executing program
executing program
[ 30.448887] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 102 with max blocks 2 with error 28
[ 30.451085] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 30.451085]
executing program
executing program
executing program
[ 30.571150] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.591984] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 338 with error 28
[ 30.594170] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 30.594170]
[ 30.595720] EXT4-fs (loop1): Total free blocks count 0
[ 30.596734] EXT4-fs (loop1): Free/Dirty block details
[ 30.597744] EXT4-fs (loop1): free_blocks=0
[ 30.598544] EXT4-fs (loop1): dirty_blocks=352
[ 30.599394] EXT4-fs (loop1): Block reservation details
[ 30.600366] EXT4-fs (loop1): i_reserved_data_blocks=22
[ 30.604389] ext4: Unknown parameter 'subj_user'
[ 30.631928] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.642873] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.647172] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 40 with error 117
[ 30.649418] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 30.649418]
[ 30.649512] ext4: Unknown parameter 'subj_user'
[ 30.651829] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
[ 30.654307] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 30.654307]
[ 30.657372] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 338 with max blocks 2 with error 28
[ 30.659602] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 30.659602]
[ 30.663648] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.673944] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 117
[ 30.676739] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 30.676739]
executing program
executing program
executing program
executing program
[ 30.850321] ext4: Unknown parameter 'subj_user'
[ 30.879404] ext4: Unknown parameter 'subj_user'
[ 30.883354] ext4: Unknown parameter 'subj_user'
executing program
executing program
[ 30.948810] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 30.954926] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
[ 30.957030] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 30.957030]
[ 30.958795] EXT4-fs (loop6): Total free blocks count 0
[ 30.960188] EXT4-fs (loop6): Free/Dirty block details
[ 30.961186] EXT4-fs (loop6): free_blocks=0
[ 30.962159] EXT4-fs (loop6): dirty_blocks=64
[ 30.963276] EXT4-fs (loop6): Block reservation details
[ 30.964448] EXT4-fs (loop6): i_reserved_data_blocks=4
executing program
[ 31.057709] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
executing program
[ 31.071679] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 108 with error 28
[ 31.073861] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 31.073861]
[ 31.075428] EXT4-fs (loop2): Total free blocks count 0
[ 31.076417] EXT4-fs (loop2): Free/Dirty block details
[ 31.077457] EXT4-fs (loop2): free_blocks=0
[ 31.078270] EXT4-fs (loop2): dirty_blocks=112
[ 31.079148] EXT4-fs (loop2): Block reservation details
[ 31.080131] EXT4-fs (loop2): i_reserved_data_blocks=7
executing program
executing program
[ 31.125917] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 31.146312] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 22 with error 28
[ 31.148805] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 31.148805]
[ 31.150927] EXT4-fs (loop7): Total free blocks count 0
[ 31.152327] EXT4-fs (loop7): Free/Dirty block details
[ 31.153722] EXT4-fs (loop7): free_blocks=0
[ 31.155166] EXT4-fs (loop7): dirty_blocks=32
[ 31.156476] EXT4-fs (loop7): Block reservation details
[ 31.157958] EXT4-fs (loop7): i_reserved_data_blocks=2
[ 31.163755] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 108 with max blocks 2 with error 28
[ 31.167135] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 31.167135]
[ 31.219000] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 31.222856] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 252 with error 28
[ 31.225268] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 31.225268]
[ 31.227454] EXT4-fs (loop1): Total free blocks count 0
[ 31.227858] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 31.228680] EXT4-fs (loop1): Free/Dirty block details
[ 31.232214] EXT4-fs (loop1): free_blocks=0
[ 31.233063] EXT4-fs (loop1): dirty_blocks=256
[ 31.233943] EXT4-fs (loop1): Block reservation details
[ 31.234979] EXT4-fs (loop1): i_reserved_data_blocks=16
[ 31.255036] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 31.261508] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 106 with error 28
[ 31.263603] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 31.263603]
[ 31.265166] EXT4-fs (loop6): Total free blocks count 0
[ 31.265812] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 248 with error 28
[ 31.266184] EXT4-fs (loop6): Free/Dirty block details
[ 31.268655] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 31.268655]
[ 31.269640] EXT4-fs (loop6): free_blocks=0
[ 31.271419] EXT4-fs (loop4): Total free blocks count 0
[ 31.272252] EXT4-fs (loop6): dirty_blocks=112
[ 31.273283] EXT4-fs (loop4): Free/Dirty block details
[ 31.274174] EXT4-fs (loop6): Block reservation details
[ 31.275183] EXT4-fs (loop4): free_blocks=0
[ 31.276209] EXT4-fs (loop6): i_reserved_data_blocks=7
[ 31.277031] EXT4-fs (loop4): dirty_blocks=256
[ 31.278996] EXT4-fs (loop4): Block reservation details
[ 31.280124] EXT4-fs (loop4): i_reserved_data_blocks=16
[ 31.291968] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 252 with max blocks 2 with error 28
[ 31.294976] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 31.294976]
[ 31.307057] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 22 with max blocks 2 with error 28
[ 31.308681] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 106 with max blocks 2 with error 28
[ 31.309876] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 31.309876]
[ 31.312556] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 31.312556]
executing program
[ 31.335979] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 248 with max blocks 2 with error 28
executing program
[ 31.338244] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 31.338244]
[ 31.354496] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
executing program
[ 31.369575] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
[ 31.371835] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 31.371835]
[ 31.373012] set_capacity_and_notify: 91 callbacks suppressed
[ 31.373028] loop1: detected capacity change from 0 to 2048
[ 31.373535] EXT4-fs (loop3): Total free blocks count 0
[ 31.377153] EXT4-fs (loop3): Free/Dirty block details
[ 31.378337] EXT4-fs (loop3): free_blocks=0
[ 31.379330] EXT4-fs (loop3): dirty_blocks=96
[ 31.380222] EXT4-fs (loop3): Block reservation details
[ 31.381263] EXT4-fs (loop3): i_reserved_data_blocks=6
executing program
executing program
[ 31.408029] loop4: detected capacity change from 0 to 2048
[ 31.409995] loop7: detected capacity change from 0 to 2048
[ 31.469223] loop6: detected capacity change from 0 to 2048
[ 31.479769] ext4: Unknown parameter 'subj_user'
[ 31.501772] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 31.505593] loop2: detected capacity change from 0 to 2048
[ 31.516528] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 38 with error 28
[ 31.518673] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 31.518673]
[ 31.520297] EXT4-fs (loop1): Total free blocks count 0
[ 31.521334] EXT4-fs (loop1): Free/Dirty block details
[ 31.522304] EXT4-fs (loop1): free_blocks=0
[ 31.523103] EXT4-fs (loop1): dirty_blocks=48
[ 31.523933] EXT4-fs (loop1): Block reservation details
[ 31.524905] EXT4-fs (loop1): i_reserved_data_blocks=3
[ 31.527131] ext4: Unknown parameter 'subj_user'
executing program
[ 31.539242] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 31.550702] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
[ 31.553368] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 31.553368]
[ 31.555249] EXT4-fs (loop7): Total free blocks count 0
[ 31.556590] EXT4-fs (loop7): Free/Dirty block details
[ 31.557736] EXT4-fs (loop7): free_blocks=0
[ 31.558680] EXT4-fs (loop7): dirty_blocks=32
[ 31.559871] EXT4-fs (loop7): Block reservation details
[ 31.561083] EXT4-fs (loop7): i_reserved_data_blocks=2
[ 31.561094] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 31.583370] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 38 with max blocks 2 with error 28
[ 31.586091] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 31.586091]
[ 31.588461] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
[ 31.591264] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 31.591264]
[ 31.593210] EXT4-fs (loop4): Total free blocks count 0
[ 31.594619] EXT4-fs (loop4): Free/Dirty block details
[ 31.595845] EXT4-fs (loop4): free_blocks=0
[ 31.596934] EXT4-fs (loop4): dirty_blocks=32
[ 31.598254] EXT4-fs (loop4): Block reservation details
[ 31.599807] EXT4-fs (loop4): i_reserved_data_blocks=2
executing program
[ 31.662111] loop7: detected capacity change from 0 to 2048
executing program
[ 31.674275] loop1: detected capacity change from 0 to 2048
[ 31.682788] loop3: detected capacity change from 0 to 2048
[ 31.684718] ext4: Unknown parameter 'subj_user'
executing program
executing program
[ 31.724367] loop6: detected capacity change from 0 to 2048
[ 31.811731] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
executing program
[ 31.824695] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm ext4lazyinit: bg 0: block 234: padding at end of block bitmap is not set
[ 31.837558] loop2: detected capacity change from 0 to 2048
[ 31.838546] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 118 with error 28
[ 31.838930] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 6 with error 28
[ 31.841472] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 31.841472]
[ 31.841489] EXT4-fs (loop1): Total free blocks count 0
[ 31.843775] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 31.843775]
[ 31.845802] EXT4-fs (loop1): Free/Dirty block details
[ 31.847222] EXT4-fs (loop7): Total free blocks count 0
[ 31.849113] EXT4-fs (loop1): free_blocks=0
[ 31.850414] EXT4-fs (loop7): Free/Dirty block details
[ 31.851614] EXT4-fs (loop1): dirty_blocks=128
[ 31.852725] EXT4-fs (loop7): free_blocks=0
[ 31.854015] EXT4-fs (loop1): Block reservation details
[ 31.855229] EXT4-fs (loop7): dirty_blocks=16
[ 31.855246] EXT4-fs (loop7): Block reservation details
[ 31.856281] EXT4-fs (loop1): i_reserved_data_blocks=8
[ 31.857577] EXT4-fs (loop7): i_reserved_data_blocks=1
[ 31.889917] ext4: Unknown parameter 'subj_user'
executing program
[ 31.916826] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 31.920325] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 102 with error 28
[ 31.922464] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 31.922464]
[ 31.923984] EXT4-fs (loop6): Total free blocks count 0
[ 31.924953] EXT4-fs (loop6): Free/Dirty block details
[ 31.925908] EXT4-fs (loop6): free_blocks=0
[ 31.926718] EXT4-fs (loop6): dirty_blocks=112
[ 31.927614] EXT4-fs (loop6): Block reservation details
[ 31.928615] EXT4-fs (loop6): i_reserved_data_blocks=7
[ 31.944211] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 6 with max blocks 2 with error 28
executing program
[ 31.946379] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 31.946379]
[ 32.002906] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.006262] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 226 with error 28
[ 32.008635] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 32.008635]
[ 32.010289] EXT4-fs (loop2): Total free blocks count 0
[ 32.011533] EXT4-fs (loop2): Free/Dirty block details
[ 32.012773] EXT4-fs (loop2): free_blocks=0
[ 32.013645] EXT4-fs (loop2): dirty_blocks=240
[ 32.014571] EXT4-fs (loop2): Block reservation details
[ 32.015648] EXT4-fs (loop2): i_reserved_data_blocks=15
executing program
[ 32.034928] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 102 with max blocks 2 with error 28
[ 32.037237] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 32.037237]
[ 32.078516] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.095674] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 156 with error 28
[ 32.097963] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 32.097963]
[ 32.098112] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.099559] EXT4-fs (loop1): Total free blocks count 0
[ 32.103096] EXT4-fs (loop1): Free/Dirty block details
[ 32.104169] EXT4-fs (loop1): free_blocks=0
[ 32.105057] EXT4-fs (loop1): dirty_blocks=176
[ 32.105994] EXT4-fs (loop1): Block reservation details
[ 32.107004] EXT4-fs (loop1): i_reserved_data_blocks=11
[ 32.108595] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 54 with error 28
[ 32.108933] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 226 with max blocks 2 with error 28
[ 32.110948] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 32.110948]
[ 32.112993] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 32.112993]
[ 32.114464] EXT4-fs (loop3): Total free blocks count 0
[ 32.116972] EXT4-fs (loop3): Free/Dirty block details
[ 32.117935] EXT4-fs (loop3): free_blocks=0
[ 32.118719] EXT4-fs (loop3): dirty_blocks=64
[ 32.119554] EXT4-fs (loop3): Block reservation details
[ 32.120529] EXT4-fs (loop3): i_reserved_data_blocks=4
executing program
executing program
executing program
[ 32.158787] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 156 with max blocks 8 with error 28
[ 32.161206] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 32.161206]
[ 32.188744] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 54 with max blocks 2 with error 28
[ 32.191005] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 32.191005]
executing program
[ 32.244326] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.260130] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.267523] ext4: Unknown parameter 'subj_user'
[ 32.273903] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 70 with error 28
[ 32.276655] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 32.276655]
[ 32.278388] EXT4-fs (loop7): Total free blocks count 0
[ 32.279553] EXT4-fs (loop7): Free/Dirty block details
[ 32.280714] EXT4-fs (loop7): free_blocks=0
[ 32.281706] EXT4-fs (loop7): dirty_blocks=80
[ 32.282690] EXT4-fs (loop7): Block reservation details
[ 32.283854] EXT4-fs (loop7): i_reserved_data_blocks=5
[ 32.290582] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.307300] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 268 with error 28
[ 32.307915] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 76 with error 28
[ 32.310125] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 32.310125]
[ 32.312017] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 32.312017]
[ 32.312031] EXT4-fs (loop6): Total free blocks count 0
[ 32.312042] EXT4-fs (loop6): Free/Dirty block details
[ 32.312053] EXT4-fs (loop6): free_blocks=0
[ 32.312063] EXT4-fs (loop6): dirty_blocks=80
[ 32.312074] EXT4-fs (loop6): Block reservation details
[ 32.312084] EXT4-fs (loop6): i_reserved_data_blocks=5
[ 32.321970] EXT4-fs (loop4): Total free blocks count 0
[ 32.323276] EXT4-fs (loop4): Free/Dirty block details
[ 32.324468] EXT4-fs (loop4): free_blocks=0
[ 32.325580] EXT4-fs (loop4): dirty_blocks=272
[ 32.326480] EXT4-fs (loop4): Block reservation details
[ 32.327612] EXT4-fs (loop4): i_reserved_data_blocks=17
[ 32.347207] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 268 with max blocks 2 with error 28
[ 32.350044] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 32.350044]
[ 32.356693] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 70 with max blocks 2 with error 28
[ 32.359023] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 32.359023]
[ 32.379201] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 76 with max blocks 2 with error 28
[ 32.381383] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 32.381383]
executing program
executing program
[ 32.404328] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.409708] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 182 with error 28
[ 32.412595] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 32.412595]
[ 32.414726] EXT4-fs (loop1): Total free blocks count 0
[ 32.416152] EXT4-fs (loop1): Free/Dirty block details
[ 32.417472] EXT4-fs (loop1): free_blocks=0
[ 32.418429] EXT4-fs (loop1): dirty_blocks=192
[ 32.419614] EXT4-fs (loop1): Block reservation details
[ 32.420925] EXT4-fs (loop1): i_reserved_data_blocks=12
executing program
[ 32.450771] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 182 with max blocks 2 with error 28
[ 32.453313] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 32.453313]
executing program
executing program
executing program
[ 32.533080] ext4: Unknown parameter 'subj_user'
[ 32.564456] ext4: Unknown parameter 'subj_user'
[ 32.610930] ext4: Unknown parameter 'subj_user'
[ 32.628736] ext4: Unknown parameter 'subj_user'
[ 32.641883] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.656958] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 38 with error 28
[ 32.659799] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 32.659799]
[ 32.661705] EXT4-fs (loop7): Total free blocks count 0
[ 32.662947] EXT4-fs (loop7): Free/Dirty block details
[ 32.664201] EXT4-fs (loop7): free_blocks=0
[ 32.665094] EXT4-fs (loop7): dirty_blocks=48
[ 32.666155] EXT4-fs (loop7): Block reservation details
[ 32.667467] EXT4-fs (loop7): i_reserved_data_blocks=3
[ 32.715620] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.729675] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 38 with max blocks 2 with error 28
[ 32.731847] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 32.731847]
[ 32.737280] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 2 with error 28
[ 32.739521] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 32.739521]
[ 32.741184] EXT4-fs (loop2): Total free blocks count 0
[ 32.742258] EXT4-fs (loop2): Free/Dirty block details
[ 32.743301] EXT4-fs (loop2): free_blocks=0
[ 32.744160] EXT4-fs (loop2): dirty_blocks=16
[ 32.745095] EXT4-fs (loop2): Block reservation details
[ 32.746102] EXT4-fs (loop2): i_reserved_data_blocks=1
executing program
executing program
[ 32.790081] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 2 with max blocks 2 with error 28
[ 32.792304] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 32.792304]
executing program
executing program
executing program
executing program
[ 32.940041] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.944710] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.952997] ext4: Unknown parameter 'subj_user'
[ 32.955794] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 160 with error 28
[ 32.958077] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 32.958077]
[ 32.959879] EXT4-fs (loop4): Total free blocks count 0
[ 32.960989] EXT4-fs (loop4): Free/Dirty block details
[ 32.962044] EXT4-fs (loop4): free_blocks=0
[ 32.962917] EXT4-fs (loop4): dirty_blocks=160
[ 32.963847] EXT4-fs (loop4): Block reservation details
[ 32.964901] EXT4-fs (loop4): i_reserved_data_blocks=10
[ 32.970028] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 132 with error 28
[ 32.972675] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 32.972675]
[ 32.974309] EXT4-fs (loop7): Total free blocks count 0
[ 32.975407] EXT4-fs (loop7): Free/Dirty block details
[ 32.976412] EXT4-fs (loop7): free_blocks=0
[ 32.977250] EXT4-fs (loop7): dirty_blocks=144
[ 32.978135] EXT4-fs (loop7): Block reservation details
[ 32.979138] EXT4-fs (loop7): i_reserved_data_blocks=9
[ 32.984734] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 32.986465] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 33.008370] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 84 with error 117
[ 33.011400] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 33.011400]
[ 33.011591] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 124 with error 28
[ 33.015498] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 33.015498]
[ 33.017468] EXT4-fs (loop6): Total free blocks count 0
[ 33.018611] EXT4-fs (loop6): Free/Dirty block details
[ 33.019963] EXT4-fs (loop6): free_blocks=0
[ 33.021094] EXT4-fs (loop6): dirty_blocks=128
[ 33.022138] EXT4-fs (loop6): Block reservation details
[ 33.023655] EXT4-fs (loop6): i_reserved_data_blocks=8
[ 33.056789] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 132 with max blocks 2 with error 28
[ 33.059676] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 33.059676]
[ 33.098475] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
executing program
[ 33.104967] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 124 with max blocks 2 with error 28
[ 33.107994] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 33.107994]
[ 33.111508] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 66 with error 28
[ 33.114084] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 33.114084]
[ 33.116213] EXT4-fs (loop1): Total free blocks count 0
[ 33.117662] EXT4-fs (loop1): Free/Dirty block details
[ 33.119088] EXT4-fs (loop1): free_blocks=0
[ 33.120188] EXT4-fs (loop1): dirty_blocks=80
[ 33.121413] EXT4-fs (loop1): Block reservation details
[ 33.122835] EXT4-fs (loop1): i_reserved_data_blocks=5
[ 33.133783] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 84 with max blocks 2 with error 28
[ 33.136818] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 33.136818]
[ 33.138840] EXT4-fs (loop3): Total free blocks count 0
[ 33.140174] EXT4-fs (loop3): Free/Dirty block details
[ 33.141542] EXT4-fs (loop3): free_blocks=0
[ 33.142721] EXT4-fs (loop3): dirty_blocks=16
[ 33.143863] EXT4-fs (loop3): Block reservation details
[ 33.145339] EXT4-fs (loop3): i_reserved_data_blocks=1
[ 33.155404] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 66 with max blocks 4 with error 28
[ 33.158253] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 33.158253]
executing program
executing program
executing program
executing program
executing program
[ 33.262248] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 33.279599] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 108 with error 28
[ 33.281903] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 33.281903]
[ 33.283557] EXT4-fs (loop4): Total free blocks count 0
[ 33.284932] EXT4-fs (loop4): Free/Dirty block details
[ 33.286499] EXT4-fs (loop4): free_blocks=0
[ 33.287851] EXT4-fs (loop4): dirty_blocks=112
[ 33.288976] EXT4-fs (loop4): Block reservation details
[ 33.290148] EXT4-fs (loop4): i_reserved_data_blocks=7
[ 33.290596] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 33.293312] ext4: Unknown parameter 'subj_user'
[ 33.309910] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 224 with error 28
[ 33.312179] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 33.312179]
[ 33.313860] EXT4-fs (loop6): Total free blocks count 0
[ 33.314970] EXT4-fs (loop6): Free/Dirty block details
[ 33.316129] EXT4-fs (loop6): free_blocks=0
[ 33.317023] EXT4-fs (loop6): dirty_blocks=240
[ 33.317944] EXT4-fs (loop6): Block reservation details
[ 33.319217] EXT4-fs (loop6): i_reserved_data_blocks=15
[ 33.340639] ext4: Unknown parameter 'subj_user'
[ 33.357581] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 108 with max blocks 2 with error 28
[ 33.359902] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 33.359902]
[ 33.392534] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 224 with max blocks 2 with error 28
executing program
[ 33.395024] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 33.395024]
[ 33.406322] ext4: Unknown parameter 'subj_user'
[ 33.432940] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 33.439012] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 152 with error 28
[ 33.441217] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 33.441217]
[ 33.442713] EXT4-fs (loop2): Total free blocks count 0
[ 33.443723] EXT4-fs (loop2): Free/Dirty block details
[ 33.444742] EXT4-fs (loop2): free_blocks=0
[ 33.445603] EXT4-fs (loop2): dirty_blocks=160
[ 33.446491] EXT4-fs (loop2): Block reservation details
[ 33.447489] EXT4-fs (loop2): i_reserved_data_blocks=10
[ 33.469182] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 152 with max blocks 2 with error 28
[ 33.471612] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 33.471612]
executing program
executing program
executing program
executing program
[ 33.572920] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 33.586369] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
[ 33.589219] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 33.589219]
[ 33.591107] EXT4-fs (loop4): Total free blocks count 0
[ 33.592448] EXT4-fs (loop4): Free/Dirty block details
[ 33.593618] EXT4-fs (loop4): free_blocks=0
[ 33.594603] EXT4-fs (loop4): dirty_blocks=96
[ 33.595628] EXT4-fs (loop4): Block reservation details
[ 33.596822] EXT4-fs (loop4): i_reserved_data_blocks=6
[ 33.630934] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 33.634662] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 194 with error 28
[ 33.636866] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 33.636866]
[ 33.638420] EXT4-fs (loop6): Total free blocks count 0
[ 33.639424] EXT4-fs (loop6): Free/Dirty block details
[ 33.640381] EXT4-fs (loop6): free_blocks=0
[ 33.641172] EXT4-fs (loop6): dirty_blocks=208
[ 33.642011] EXT4-fs (loop6): Block reservation details
[ 33.642972] EXT4-fs (loop6): i_reserved_data_blocks=13
executing program
[ 33.690743] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 33.704203] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
[ 33.706478] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 33.706478]
[ 33.708108] EXT4-fs (loop2): Total free blocks count 0
[ 33.709325] EXT4-fs (loop2): Free/Dirty block details
[ 33.710606] EXT4-fs (loop2): free_blocks=0
[ 33.711641] EXT4-fs (loop2): dirty_blocks=64
[ 33.712891] EXT4-fs (loop2): Block reservation details
[ 33.714037] EXT4-fs (loop2): i_reserved_data_blocks=4
[ 33.727361] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
executing program
[ 33.746822] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 33.751540] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 194 with max blocks 2 with error 28
[ 33.752543] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 278 with error 28
[ 33.753618] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 33.753618]
[ 33.755718] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 33.755718]
[ 33.758806] EXT4-fs (loop1): Total free blocks count 0
[ 33.759853] EXT4-fs (loop1): Free/Dirty block details
[ 33.760835] EXT4-fs (loop1): free_blocks=0
[ 33.761649] EXT4-fs (loop1): dirty_blocks=288
[ 33.762612] EXT4-fs (loop1): Block reservation details
[ 33.763651] EXT4-fs (loop1): i_reserved_data_blocks=18
[ 33.773015] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
[ 33.775734] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 33.775734]
[ 33.777651] EXT4-fs (loop7): Total free blocks count 0
[ 33.778898] EXT4-fs (loop7): Free/Dirty block details
[ 33.780276] EXT4-fs (loop7): free_blocks=0
[ 33.781298] EXT4-fs (loop7): dirty_blocks=64
[ 33.782502] EXT4-fs (loop7): Block reservation details
[ 33.783878] EXT4-fs (loop7): i_reserved_data_blocks=4
[ 33.788742] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 278 with max blocks 2 with error 28
[ 33.791304] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 33.791304]
executing program
executing program
executing program
[ 33.848018] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 33.851973] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 124 with error 28
[ 33.854405] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 33.854405]
[ 33.856263] EXT4-fs (loop3): Total free blocks count 0
[ 33.857287] EXT4-fs (loop3): Free/Dirty block details
[ 33.858299] EXT4-fs (loop3): free_blocks=0
[ 33.859136] EXT4-fs (loop3): dirty_blocks=128
[ 33.860032] EXT4-fs (loop3): Block reservation details
[ 33.861107] EXT4-fs (loop3): i_reserved_data_blocks=8
[ 33.873626] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 124 with max blocks 2 with error 28
[ 33.876043] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 33.876043]
executing program
executing program
[ 33.922949] ext4: Unknown parameter 'subj_user'
[ 33.928021] ext4: Unknown parameter 'subj_user'
[ 34.004243] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.015709] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 74 with error 28
[ 34.018112] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 34.018112]
[ 34.019910] EXT4-fs (loop2): Total free blocks count 0
[ 34.021077] EXT4-fs (loop2): Free/Dirty block details
[ 34.022147] EXT4-fs (loop2): free_blocks=0
[ 34.022966] EXT4-fs (loop2): dirty_blocks=80
[ 34.023866] EXT4-fs (loop2): Block reservation details
[ 34.024895] EXT4-fs (loop2): i_reserved_data_blocks=5
[ 34.036118] ext4: Unknown parameter 'subj_user'
[ 34.070014] ext4: Unknown parameter 'subj_user'
[ 34.078689] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.112560] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
[ 34.115294] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 34.115294]
[ 34.117201] EXT4-fs (loop1): Total free blocks count 0
[ 34.118340] EXT4-fs (loop1): Free/Dirty block details
[ 34.119592] EXT4-fs (loop1): free_blocks=0
[ 34.120617] EXT4-fs (loop1): dirty_blocks=32
[ 34.121516] EXT4-fs (loop1): Block reservation details
[ 34.122746] EXT4-fs (loop1): i_reserved_data_blocks=2
executing program
[ 34.157992] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 74 with max blocks 2 with error 28
[ 34.160489] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 34.160489]
executing program
executing program
executing program
executing program
[ 34.296038] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.306761] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 256 with error 28
[ 34.309405] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 34.309405]
[ 34.311144] EXT4-fs (loop6): Total free blocks count 0
[ 34.312206] EXT4-fs (loop6): Free/Dirty block details
[ 34.313392] EXT4-fs (loop6): free_blocks=0
executing program
[ 34.314695] EXT4-fs (loop6): dirty_blocks=256
[ 34.315704] EXT4-fs (loop6): Block reservation details
[ 34.316951] EXT4-fs (loop6): i_reserved_data_blocks=16
[ 34.330861] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.360588] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 70 with error 28
[ 34.362862] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 34.362862]
[ 34.364468] EXT4-fs (loop4): Total free blocks count 0
[ 34.365549] EXT4-fs (loop4): Free/Dirty block details
[ 34.366645] EXT4-fs (loop4): free_blocks=0
[ 34.367586] EXT4-fs (loop4): dirty_blocks=80
[ 34.368580] EXT4-fs (loop4): Block reservation details
[ 34.369730] EXT4-fs (loop4): i_reserved_data_blocks=5
[ 34.388401] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.393546] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm ext4lazyinit: bg 0: block 234: padding at end of block bitmap is not set
executing program
[ 34.448274] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
[ 34.450614] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 34.450614]
[ 34.452331] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.452730] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 276 with error 28
[ 34.455263] EXT4-fs (loop7): Total free blocks count 0
[ 34.457306] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 34.457306]
[ 34.457323] EXT4-fs (loop1): Total free blocks count 0
[ 34.457337] EXT4-fs (loop1): Free/Dirty block details
[ 34.457350] EXT4-fs (loop1): free_blocks=0
[ 34.457362] EXT4-fs (loop1): dirty_blocks=288
[ 34.457375] EXT4-fs (loop1): Block reservation details
[ 34.457388] EXT4-fs (loop1): i_reserved_data_blocks=18
[ 34.466274] EXT4-fs (loop7): Free/Dirty block details
[ 34.467474] EXT4-fs (loop7): free_blocks=0
[ 34.468494] EXT4-fs (loop7): dirty_blocks=32
[ 34.469675] EXT4-fs (loop7): Block reservation details
[ 34.471144] EXT4-fs (loop7): i_reserved_data_blocks=2
executing program
[ 34.501654] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.504797] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 28 with error 28
[ 34.507499] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 34.507499]
[ 34.509476] EXT4-fs (loop3): Total free blocks count 0
[ 34.510630] EXT4-fs (loop3): Free/Dirty block details
[ 34.511623] EXT4-fs (loop3): free_blocks=0
[ 34.512411] EXT4-fs (loop3): dirty_blocks=32
[ 34.513302] EXT4-fs (loop3): Block reservation details
[ 34.514414] EXT4-fs (loop3): i_reserved_data_blocks=2
[ 34.521244] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 70 with max blocks 2 with error 28
[ 34.523503] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 34.523503]
[ 34.528999] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 276 with max blocks 4 with error 28
[ 34.531677] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 34.531677]
executing program
executing program
[ 34.574671] ext4: Unknown parameter 'subj_user'
[ 34.586947] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 28 with max blocks 2 with error 28
[ 34.589935] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 34.589935]
executing program
[ 34.623522] ext4: Unknown parameter 'subj_user'
executing program
[ 34.700417] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.710024] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 118 with error 28
[ 34.711884] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.712227] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 34.712227]
[ 34.717067] EXT4-fs (loop7): Total free blocks count 0
[ 34.718268] EXT4-fs (loop7): Free/Dirty block details
[ 34.719655] EXT4-fs (loop7): free_blocks=0
[ 34.720585] EXT4-fs (loop7): dirty_blocks=128
[ 34.721746] EXT4-fs (loop7): Block reservation details
[ 34.722959] EXT4-fs (loop7): i_reserved_data_blocks=8
[ 34.724963] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 260 with error 28
[ 34.727600] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 34.727600]
[ 34.729400] EXT4-fs (loop1): Total free blocks count 0
[ 34.730791] EXT4-fs (loop1): Free/Dirty block details
[ 34.731844] EXT4-fs (loop1): free_blocks=0
[ 34.732910] EXT4-fs (loop1): dirty_blocks=272
[ 34.733855] EXT4-fs (loop1): Block reservation details
[ 34.735216] EXT4-fs (loop1): i_reserved_data_blocks=17
[ 34.770787] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 260 with max blocks 2 with error 28
[ 34.773396] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 34.773396]
[ 34.778872] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 118 with max blocks 2 with error 28
[ 34.781696] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 34.781696]
[ 34.786801] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.801617] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
[ 34.804098] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 34.804098]
[ 34.806574] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 34.830103] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 14 with error 117
[ 34.832422] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 34.832422]
executing program
[ 34.853922] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 14 with max blocks 2 with error 28
[ 34.856719] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 34.856719]
[ 34.858715] EXT4-fs (loop3): Total free blocks count 0
[ 34.860153] EXT4-fs (loop3): Free/Dirty block details
[ 34.861286] EXT4-fs (loop3): free_blocks=0
[ 34.862321] EXT4-fs (loop3): dirty_blocks=16
[ 34.863357] EXT4-fs (loop3): Block reservation details
[ 34.864758] EXT4-fs (loop3): i_reserved_data_blocks=1
executing program
executing program
executing program
[ 34.885578] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 32 with max blocks 4 with error 28
[ 34.888314] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 34.888314]
executing program
[ 34.890357] EXT4-fs (loop4): Total free blocks count 0
[ 34.892057] EXT4-fs (loop4): Free/Dirty block details
[ 34.893136] EXT4-fs (loop4): free_blocks=0
[ 34.894031] EXT4-fs (loop4): dirty_blocks=16
[ 34.894984] EXT4-fs (loop4): Block reservation details
[ 34.896112] EXT4-fs (loop4): i_reserved_data_blocks=1
executing program
[ 35.003852] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.024745] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.030472] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 206 with error 28
[ 35.032823] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 35.032823]
[ 35.033173] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.034369] EXT4-fs (loop1): Total free blocks count 0
[ 35.034385] EXT4-fs (loop1): Free/Dirty block details
[ 35.034396] EXT4-fs (loop1): free_blocks=0
[ 35.034407] EXT4-fs (loop1): dirty_blocks=208
[ 35.034418] EXT4-fs (loop1): Block reservation details
[ 35.034427] EXT4-fs (loop1): i_reserved_data_blocks=13
[ 35.035008] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.047700] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 74 with error 28
[ 35.050375] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 35.050375]
[ 35.052371] EXT4-fs (loop3): Total free blocks count 0
[ 35.053644] EXT4-fs (loop3): Free/Dirty block details
[ 35.054613] EXT4-fs (loop3): free_blocks=0
[ 35.055404] EXT4-fs (loop3): dirty_blocks=80
[ 35.055402] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.056252] EXT4-fs (loop3): Block reservation details
[ 35.059736] EXT4-fs (loop3): i_reserved_data_blocks=5
[ 35.061000] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
[ 35.063083] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 35.063083]
[ 35.064597] EXT4-fs (loop2): Total free blocks count 0
[ 35.065577] EXT4-fs (loop2): Free/Dirty block details
[ 35.066573] EXT4-fs (loop2): free_blocks=0
[ 35.067464] EXT4-fs (loop2): dirty_blocks=32
[ 35.068348] EXT4-fs (loop2): Block reservation details
[ 35.069357] EXT4-fs (loop2): i_reserved_data_blocks=2
[ 35.081420] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
[ 35.083676] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 35.083676]
[ 35.085273] EXT4-fs (loop7): Total free blocks count 0
[ 35.086370] EXT4-fs (loop7): Free/Dirty block details
[ 35.087365] EXT4-fs (loop7): free_blocks=0
[ 35.088161] EXT4-fs (loop7): dirty_blocks=64
[ 35.088986] EXT4-fs (loop7): Block reservation details
[ 35.089990] EXT4-fs (loop7): i_reserved_data_blocks=4
[ 35.106601] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 92 with error 28
[ 35.108721] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 35.108721]
[ 35.110389] EXT4-fs (loop6): Total free blocks count 0
[ 35.111485] EXT4-fs (loop6): Free/Dirty block details
[ 35.112467] EXT4-fs (loop6): free_blocks=0
[ 35.113502] EXT4-fs (loop6): dirty_blocks=112
[ 35.114632] EXT4-fs (loop6): Block reservation details
[ 35.115881] EXT4-fs (loop6): i_reserved_data_blocks=7
[ 35.117988] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 74 with max blocks 2 with error 28
[ 35.120941] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 35.120941]
[ 35.144021] ext4: Unknown parameter 'subj_user'
[ 35.145154] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 206 with max blocks 2 with error 28
[ 35.145179] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 35.145179]
executing program
executing program
executing program
[ 35.188362] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 92 with max blocks 6 with error 28
[ 35.190655] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 35.190655]
executing program
[ 35.224696] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm ext4lazyinit: bg 0: block 234: padding at end of block bitmap is not set
executing program
[ 35.328266] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.336525] ext4: Unknown parameter 'subj_user'
[ 35.336853] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 204 with error 28
[ 35.339783] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 35.339783]
[ 35.341350] EXT4-fs (loop2): Total free blocks count 0
[ 35.342446] EXT4-fs (loop2): Free/Dirty block details
[ 35.343519] EXT4-fs (loop2): free_blocks=0
[ 35.344493] EXT4-fs (loop2): dirty_blocks=208
[ 35.345517] EXT4-fs (loop2): Block reservation details
[ 35.346627] EXT4-fs (loop2): i_reserved_data_blocks=13
[ 35.354979] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.375623] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 170 with error 28
[ 35.378415] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 35.378415]
[ 35.380285] EXT4-fs (loop1): Total free blocks count 0
[ 35.381580] EXT4-fs (loop1): Free/Dirty block details
[ 35.382829] EXT4-fs (loop1): free_blocks=0
executing program
[ 35.383846] EXT4-fs (loop1): dirty_blocks=176
[ 35.385190] EXT4-fs (loop1): Block reservation details
[ 35.386427] EXT4-fs (loop1): i_reserved_data_blocks=11
[ 35.394227] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 204 with max blocks 4 with error 28
[ 35.396412] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 35.396412]
[ 35.403619] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.411493] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 170 with max blocks 2 with error 28
[ 35.414299] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 35.414299]
[ 35.416333] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 58 with error 117
[ 35.418664] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 35.418664]
executing program
executing program
executing program
[ 35.445647] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 58 with max blocks 2 with error 28
[ 35.448233] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 35.448233]
[ 35.450233] EXT4-fs (loop6): Total free blocks count 0
[ 35.451570] EXT4-fs (loop6): Free/Dirty block details
[ 35.452823] EXT4-fs (loop6): free_blocks=0
[ 35.453885] EXT4-fs (loop6): dirty_blocks=16
[ 35.454961] EXT4-fs (loop6): Block reservation details
[ 35.456259] EXT4-fs (loop6): i_reserved_data_blocks=1
executing program
[ 35.541871] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.547621] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 236 with error 117
[ 35.549927] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 35.549927]
[ 35.578280] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.583218] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.583358] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.589596] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 128 with error 117
[ 35.591820] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 35.591820]
[ 35.594526] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 54 with error 117
[ 35.596792] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 35.596792]
[ 35.599182] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 236 with max blocks 2 with error 28
[ 35.601693] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 34 with error 117
[ 35.601996] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 35.601996]
[ 35.604140] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 35.604140]
[ 35.608230] EXT4-fs (loop4): Total free blocks count 0
[ 35.609653] EXT4-fs (loop4): Free/Dirty block details
[ 35.610964] EXT4-fs (loop4): free_blocks=0
[ 35.612128] EXT4-fs (loop4): dirty_blocks=16
[ 35.613065] EXT4-fs (loop4): Block reservation details
[ 35.614368] EXT4-fs (loop4): i_reserved_data_blocks=1
executing program
[ 35.627584] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 128 with max blocks 2 with error 28
[ 35.630332] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 35.630332]
[ 35.632299] EXT4-fs (loop7): Total free blocks count 0
[ 35.632813] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.633640] EXT4-fs (loop7): Free/Dirty block details
[ 35.637138] EXT4-fs (loop7): free_blocks=0
[ 35.638197] EXT4-fs (loop7): dirty_blocks=16
[ 35.639209] EXT4-fs (loop7): Block reservation details
[ 35.640479] EXT4-fs (loop7): i_reserved_data_blocks=1
[ 35.643085] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 54 with max blocks 2 with error 28
[ 35.645694] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
[ 35.645720] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 35.645720]
[ 35.648197] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 35.648197]
[ 35.650082] EXT4-fs (loop6): Total free blocks count 0
[ 35.650098] EXT4-fs (loop6): Free/Dirty block details
[ 35.651684] EXT4-fs (loop2): Total free blocks count 0
[ 35.652729] EXT4-fs (loop6): free_blocks=0
[ 35.653713] EXT4-fs (loop2): Free/Dirty block details
[ 35.654730] EXT4-fs (loop6): dirty_blocks=96
[ 35.655683] EXT4-fs (loop2): free_blocks=0
[ 35.656902] EXT4-fs (loop6): Block reservation details
[ 35.657945] EXT4-fs (loop2): dirty_blocks=16
[ 35.658941] EXT4-fs (loop6): i_reserved_data_blocks=6
[ 35.660227] EXT4-fs (loop2): Block reservation details
[ 35.663693] EXT4-fs (loop2): i_reserved_data_blocks=1
[ 35.665699] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 34 with max blocks 2 with error 28
[ 35.668502] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 35.668502]
[ 35.670606] EXT4-fs (loop1): Total free blocks count 0
[ 35.672011] EXT4-fs (loop1): Free/Dirty block details
[ 35.673338] EXT4-fs (loop1): free_blocks=0
[ 35.674478] EXT4-fs (loop1): dirty_blocks=16
[ 35.675711] EXT4-fs (loop1): Block reservation details
[ 35.677086] EXT4-fs (loop1): i_reserved_data_blocks=1
executing program
executing program
executing program
executing program
executing program
[ 35.827073] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.838650] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.843797] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 6 with error 28
[ 35.846264] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 35.846264]
[ 35.848097] EXT4-fs (loop3): Total free blocks count 0
[ 35.849272] EXT4-fs (loop3): Free/Dirty block details
[ 35.849909] ext4: Unknown parameter 'subj_user'
[ 35.850348] EXT4-fs (loop3): free_blocks=0
[ 35.852332] EXT4-fs (loop3): dirty_blocks=16
[ 35.853308] EXT4-fs (loop3): Block reservation details
[ 35.854383] EXT4-fs (loop3): i_reserved_data_blocks=1
[ 35.865550] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 142 with error 28
[ 35.867727] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 35.867727]
[ 35.869308] EXT4-fs (loop2): Total free blocks count 0
[ 35.870340] EXT4-fs (loop2): Free/Dirty block details
[ 35.871360] EXT4-fs (loop2): free_blocks=0
[ 35.872214] EXT4-fs (loop2): dirty_blocks=144
[ 35.873120] EXT4-fs (loop2): Block reservation details
[ 35.874084] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.876691] EXT4-fs (loop2): i_reserved_data_blocks=9
[ 35.876801] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 38 with error 28
[ 35.880140] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 35.880140]
[ 35.881871] EXT4-fs (loop7): Total free blocks count 0
[ 35.883019] EXT4-fs (loop7): Free/Dirty block details
[ 35.884039] EXT4-fs (loop7): free_blocks=0
[ 35.884865] EXT4-fs (loop7): dirty_blocks=48
[ 35.885726] EXT4-fs (loop7): Block reservation details
[ 35.886778] EXT4-fs (loop7): i_reserved_data_blocks=3
[ 35.889247] ext4: Unknown parameter 'subj_user'
[ 35.938960] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 142 with max blocks 2 with error 28
[ 35.941393] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 35.941393]
[ 35.944074] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 6 with max blocks 2 with error 28
[ 35.946469] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 35.946469]
[ 35.955621] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 38 with max blocks 2 with error 28
[ 35.962605] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 35.962605]
[ 35.977896] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 35.986055] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 22 with error 28
[ 35.991457] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 35.991457]
[ 35.996432] EXT4-fs (loop6): Total free blocks count 0
[ 36.000578] EXT4-fs (loop6): Free/Dirty block details
[ 36.007156] EXT4-fs (loop6): free_blocks=0
[ 36.010257] EXT4-fs (loop6): dirty_blocks=32
[ 36.013947] EXT4-fs (loop6): Block reservation details
[ 36.015928] EXT4-fs (loop6): i_reserved_data_blocks=2
executing program
executing program
[ 36.073886] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 22 with max blocks 2 with error 28
executing program
[ 36.076359] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 36.076359]
executing program
executing program
executing program
[ 36.206816] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.216076] ext4: Unknown parameter 'subj_user'
[ 36.228704] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 182 with error 28
[ 36.231142] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 36.231142]
[ 36.232833] EXT4-fs (loop3): Total free blocks count 0
[ 36.233904] EXT4-fs (loop3): Free/Dirty block details
[ 36.234914] EXT4-fs (loop3): free_blocks=0
[ 36.235757] EXT4-fs (loop3): dirty_blocks=192
[ 36.236650] EXT4-fs (loop3): Block reservation details
[ 36.237678] EXT4-fs (loop3): i_reserved_data_blocks=12
[ 36.240749] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.257383] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.259717] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 28
[ 36.262315] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 36.262315]
[ 36.264046] EXT4-fs (loop2): Total free blocks count 0
[ 36.265124] EXT4-fs (loop2): Free/Dirty block details
[ 36.265460] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 64 with error 28
[ 36.266134] EXT4-fs (loop2): free_blocks=0
[ 36.268323] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 36.268323]
[ 36.269180] EXT4-fs (loop2): dirty_blocks=48
[ 36.270805] EXT4-fs (loop6): Total free blocks count 0
[ 36.271595] EXT4-fs (loop2): Block reservation details
[ 36.272574] EXT4-fs (loop6): Free/Dirty block details
[ 36.273532] EXT4-fs (loop2): i_reserved_data_blocks=3
[ 36.274528] EXT4-fs (loop6): free_blocks=0
[ 36.276256] EXT4-fs (loop6): dirty_blocks=64
[ 36.277174] EXT4-fs (loop6): Block reservation details
[ 36.278246] EXT4-fs (loop6): i_reserved_data_blocks=4
[ 36.293656] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 182 with max blocks 2 with error 28
[ 36.295884] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 36.295884]
[ 36.296475] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.305991] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 117
[ 36.308922] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 36.308922]
[ 36.321342] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 32 with max blocks 8 with error 28
[ 36.323559] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 36.323559]
[ 36.335931] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.344350] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 32 with error 117
[ 36.347220] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 36.347220]
executing program
executing program
executing program
executing program
executing program
[ 36.468361] set_capacity_and_notify: 78 callbacks suppressed
[ 36.468381] loop4: detected capacity change from 0 to 2048
[ 36.492663] loop1: detected capacity change from 0 to 2048
executing program
[ 36.508222] loop2: detected capacity change from 0 to 2048
[ 36.511865] loop7: detected capacity change from 0 to 2048
[ 36.516122] ext4: Unknown parameter 'subj_user'
[ 36.520084] ext4: Unknown parameter 'subj_user'
[ 36.543889] loop3: detected capacity change from 0 to 2048
[ 36.545612] ext4: Unknown parameter 'subj_user'
[ 36.550136] loop6: detected capacity change from 0 to 2048
[ 36.564620] ext4: Unknown parameter 'subj_user'
[ 36.619685] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.626910] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 174 with error 28
[ 36.629281] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 36.629281]
[ 36.630861] EXT4-fs (loop4): Total free blocks count 0
[ 36.631867] EXT4-fs (loop4): Free/Dirty block details
[ 36.632849] EXT4-fs (loop4): free_blocks=0
[ 36.633667] EXT4-fs (loop4): dirty_blocks=176
[ 36.634562] EXT4-fs (loop4): Block reservation details
[ 36.635693] EXT4-fs (loop4): i_reserved_data_blocks=11
[ 36.674135] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.683614] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 50 with error 28
[ 36.686260] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 36.686260]
[ 36.688192] EXT4-fs (loop7): Total free blocks count 0
[ 36.689287] EXT4-fs (loop7): Free/Dirty block details
[ 36.690623] EXT4-fs (loop7): free_blocks=0
[ 36.691500] EXT4-fs (loop7): dirty_blocks=64
[ 36.692508] EXT4-fs (loop7): Block reservation details
[ 36.693877] EXT4-fs (loop7): i_reserved_data_blocks=4
[ 36.698010] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 174 with max blocks 2 with error 28
[ 36.700770] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 36.700770]
[ 36.731781] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 50 with max blocks 2 with error 28
[ 36.733955] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 36.733955]
executing program
[ 36.740925] loop1: detected capacity change from 0 to 2048
executing program
[ 36.751809] loop3: detected capacity change from 0 to 2048
executing program
[ 36.760126] loop2: detected capacity change from 0 to 2048
executing program
executing program
[ 36.777502] loop4: detected capacity change from 0 to 2048
executing program
[ 36.860837] EXT4-fs error (device loop1): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.868741] EXT4-fs error (device loop3): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.878513] EXT4-fs (loop1): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 96 with error 28
[ 36.879126] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 22 with error 28
[ 36.880999] EXT4-fs (loop1): This should not happen!! Data will be lost
[ 36.880999]
[ 36.881015] EXT4-fs (loop1): Total free blocks count 0
[ 36.881027] EXT4-fs (loop1): Free/Dirty block details
[ 36.881038] EXT4-fs (loop1): free_blocks=0
[ 36.881049] EXT4-fs (loop1): dirty_blocks=96
[ 36.881061] EXT4-fs (loop1): Block reservation details
[ 36.881071] EXT4-fs (loop1): i_reserved_data_blocks=6
[ 36.881139] EXT4-fs error (device loop2): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.883409] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 36.883409]
[ 36.895481] EXT4-fs (loop3): Total free blocks count 0
[ 36.896602] EXT4-fs (loop3): Free/Dirty block details
[ 36.897703] EXT4-fs (loop3): free_blocks=0
[ 36.898595] EXT4-fs (loop3): dirty_blocks=32
[ 36.899547] EXT4-fs (loop3): Block reservation details
[ 36.900598] EXT4-fs (loop3): i_reserved_data_blocks=2
[ 36.903549] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 274 with error 28
[ 36.905952] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 36.905952]
[ 36.907757] EXT4-fs (loop2): Total free blocks count 0
[ 36.908952] EXT4-fs (loop2): Free/Dirty block details
[ 36.910180] EXT4-fs (loop2): free_blocks=0
[ 36.911221] EXT4-fs (loop2): dirty_blocks=288
[ 36.912238] EXT4-fs (loop2): Block reservation details
[ 36.913417] EXT4-fs (loop2): i_reserved_data_blocks=18
[ 36.924775] EXT4-fs error (device loop4): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.934720] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 188 with error 117
[ 36.936986] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 36.936986]
executing program
[ 36.960716] EXT4-fs (loop3): Delayed block allocation failed for inode 18 at logical offset 22 with max blocks 2 with error 28
[ 36.963465] EXT4-fs (loop3): This should not happen!! Data will be lost
[ 36.963465]
[ 36.965530] EXT4-fs error (device loop6): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.969917] EXT4-fs (loop2): Delayed block allocation failed for inode 18 at logical offset 274 with max blocks 2 with error 28
[ 36.972889] EXT4-fs (loop2): This should not happen!! Data will be lost
[ 36.972889]
[ 36.982631] EXT4-fs error (device loop7): ext4_validate_block_bitmap:440: comm syz-executor406: bg 0: block 234: padding at end of block bitmap is not set
[ 36.983819] EXT4-fs (loop6): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 192 with error 28
[ 36.988520] EXT4-fs (loop6): This should not happen!! Data will be lost
[ 36.988520]
[ 36.990567] EXT4-fs (loop6): Total free blocks count 0
[ 36.991650] EXT4-fs (loop6): Free/Dirty block details
[ 36.992667] EXT4-fs (loop6): free_blocks=0
[ 36.993673] EXT4-fs (loop6): dirty_blocks=192
[ 36.994885] EXT4-fs (loop6): Block reservation details
[ 36.996211] EXT4-fs (loop6): i_reserved_data_blocks=12
[ 36.996251] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 0 with max blocks 44 with error 117
[ 36.999699] EXT4-fs (loop7): This should not happen!! Data will be lost
[ 36.999699]
[ 37.008946] EXT4-fs (loop4): Delayed block allocation failed for inode 18 at logical offset 188 with max blocks 2 with error 28
[ 37.011628] EXT4-fs (loop4): This should not happen!! Data will be lost
[ 37.011628]
[ 37.013680] EXT4-fs (loop4): Total free blocks count 0
[ 37.014990] EXT4-fs (loop4): Free/Dirty block details
[ 37.016073] EXT4-fs (loop4): free_blocks=0
[ 37.017038] EXT4-fs (loop4): dirty_blocks=16
[ 37.018127] EXT4-fs (loop4): Block reservation details
[ 37.019358] EXT4-fs (loop4): i_reserved_data_blocks=1
executing program
[ 37.041603] EXT4-fs (loop7): Delayed block allocation failed for inode 18 at logical offset 44 with max blocks 2 with error 28
VM DIAGNOSIS:
22:14:32 Registers:
info registers vcpu 0
CPU#0
RAX=0000000000000000 RBX=ffff88811aebcf00 RCX=ffffffff8169fba7 RDX=0000000000000001
RSI=ffff88810a4fd340 RDI=0000000000000002 RBP=0000000000000001 RSP=ffff88810c56f660
R8 =0000000000000000 R9 =0000000000000000 R10=fffffbfff0c8590a R11=ffffffff8642c857
R12=0000000000000003 R13=ffffed10235d79e1 R14=ffff88811aebcf08 R15=0000000000000001
RIP=ffffffff8169fb83 RFL=00000246 [---Z-P-] CPL=0 II=0 A20=1 SMM=0 HLT=0
ES =0000 0000000000000000 00000000 00000000
CS =0010 0000000000000000 ffffffff 00a09b00 DPL=0 CS64 [-RA]
SS =0018 0000000000000000 ffffffff 00c09300 DPL=0 DS [-WA]
DS =0000 0000000000000000 00000000 00000000
FS =0000 0000000000000000 00000000 00000000
GS =0000 ffff88819363f000 00000000 00000000
LDT=0000 fffffe0000000000 00000000 00000000
TR =0040 fffffe0000003000 00004087 00008b00 DPL=0 TSS64-busy
GDT= fffffe0000001000 0000007f
IDT= fffffe0000000000 00000fff
CR0=80050033 CR2=0000555586d83758 CR3=0000000005a8a000 CR4=00350ef0
DR0=0000000000000000 DR1=0000000000000000 DR2=0000000000000000 DR3=0000000000000000
DR6=00000000ffff0ff0 DR7=0000000000000400
EFER=0000000000000d01
FCW=037f FSW=0000 [ST=0] FTW=00 MXCSR=00001f80
FPR0=0000000000000000 0000 FPR1=0000000000000000 0000
FPR2=0000000000000000 0000 FPR3=0000000000000000 0000
FPR4=0000000000000000 0000 FPR5=0000000000000000 0000
FPR6=0000000000000000 0000 FPR7=0000000000000000 0000
YMM00=0000000000000000 0000000000000000 1f2b04a20cc8258b e0c7f9f34ea9990b
YMM01=0000000000000000 0000000000000000 bc4d6dc020690767 53964022f3849c3b
YMM02=0000000000000000 0000000000000000 27e745c1373c96c4 b8714db3dc4dd622
YMM03=0000000000000000 0000000000000000 29c14974e4588750 cc5d8fca4e6c2d05
YMM04=0000000000000000 0000000000000000 0000000000000000 000000000000000e
YMM05=0000000000000000 0000000000000000 0000000000000000 008001000000000e
YMM06=0000000000000000 0000000000000000 0000000000000000 0000000000800100
YMM07=0000000000000000 0000000000000000 008001000000000e 0000000e00000000
YMM08=0000000000000000 0000000000000000 90000000c2000000 a800000038000000
YMM09=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM10=0000000000000000 0000000000000000 b58178e296701f64 8f57cdd47862912e
YMM11=0000000000000000 0000000000000000 057fb20506fea2f8 36f45f2b84b29af7
YMM12=0000000000000000 0000000000000000 0d0c0f0e09080b0a 0504070601000302
YMM13=0000000000000000 0000000000000000 0c0f0e0d080b0a09 0407060500030201
YMM14=0000000000000000 0000000000000000 0000000000000000 0000000000002480
YMM15=0000000000000000 0000000000000000 0000000000000000 0000000000000040
info registers vcpu 1
CPU#1
RAX=0000000000000000 RBX=1ffff110202f7dc3 RCX=ffffffff81558415 RDX=0000000000000001
RSI=ffff888101335340 RDI=0000000000000002 RBP=0000000000000001 RSP=ffff8881017bee10
R8 =0000000000000000 R9 =0000000000000000 R10=fffffbfff0b66914 R11=ffffffff85b348a3
R12=000000000000001e R13=0000000000000000 R14=ffff88810c190000 R15=ffff8881017beed0
RIP=ffffffff81558405 RFL=00000046 [---Z-P-] CPL=0 II=0 A20=1 SMM=0 HLT=0
ES =0000 0000000000000000 00000000 00000000
CS =0010 0000000000000000 ffffffff 00a09b00 DPL=0 CS64 [-RA]
SS =0018 0000000000000000 ffffffff 00c09300 DPL=0 DS [-WA]
DS =0000 0000000000000000 00000000 00000000
FS =0000 0000000000000000 00000000 00000000
GS =0000 ffff8881936bf000 00000000 00000000
LDT=0000 fffffe0000000000 00000000 00000000
TR =0040 fffffe000004a000 00004087 00008b00 DPL=0 TSS64-busy
GDT= fffffe0000048000 0000007f
IDT= fffffe0000000000 00000fff
CR0=80050033 CR2=00007f9c2fe5eec0 CR3=0000000109da4000 CR4=00350ef0
DR0=0000000000000000 DR1=0000000000000000 DR2=0000000000000000 DR3=0000000000000000
DR6=00000000ffff0ff0 DR7=0000000000000400
EFER=0000000000000d01
FCW=037f FSW=0000 [ST=0] FTW=00 MXCSR=00001f80
FPR0=0000000000000000 0000 FPR1=0000000000000000 0000
FPR2=0000000000000000 0000 FPR3=0000000000000000 0000
FPR4=0000000000000000 0000 FPR5=0000000000000000 0000
FPR6=0000000000000000 0000 FPR7=0000000000000000 0000
YMM00=0000000000000000 0000000000000000 3d3d3d3d3d3d3d3d 3d3d3d3d3d3d3d3d
YMM01=0000000000000000 0000000000000000 0000000000000000 323d595449524f49
YMM02=0000000000000000 0000000000000000 ffffffffffffffff ffffffffffffffff
YMM03=0000000000000000 0000000000000000 2f6c616e72756f6a 2f676f6c2f6e7572
YMM04=0000000000000000 0000000000000000 5db2b4930f07ef8d 00000000001340b8
YMM05=0000000000000000 0000000000000000 d3fdd5f48436fbd7 00000000000aeac0
YMM06=0000000000000000 0000000000000000 259e9b48a54f0c63 00000000000ae978
YMM07=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM08=0000000000000000 0000000000000000 44495f474f4c5359 530069253d595449
YMM09=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM10=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM11=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM12=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM13=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM14=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM15=0000000000000000 0000000000000000 0000000000000000 0000000000000000
info registers vcpu 2
CPU#2
RAX=0000000000000000 RBX=1ffff110218d1e32 RCX=ffffffff81558415 RDX=0000000000000001
RSI=ffff88810c190000 RDI=0000000000000002 RBP=0000000000000001 RSP=ffff88810c68f188
R8 =0000000000000000 R9 =0000000000000000 R10=fffffbfff0b66914 R11=ffffffff85b348a3
R12=000000000000003c R13=0000000000000200 R14=ffff888101335340 R15=ffff88810c68f248
RIP=ffffffff81558405 RFL=00000046 [---Z-P-] CPL=0 II=0 A20=1 SMM=0 HLT=0
ES =0000 0000000000000000 00000000 00000000
CS =0010 0000000000000000 ffffffff 00a09b00 DPL=0 CS64 [-RA]
SS =0018 0000000000000000 ffffffff 00c09300 DPL=0 DS [-WA]
DS =0000 0000000000000000 00000000 00000000
FS =0000 00007f49b0d8e6c0 00000000 00000000
GS =0000 ffff88819373f000 00000000 00000000
LDT=0000 fffffe0000000000 00000000 00000000
TR =0040 fffffe0000091000 00004087 00008b00 DPL=0 TSS64-busy
GDT= fffffe000008f000 0000007f
IDT= fffffe0000000000 00000fff
CR0=80050033 CR2=00007f49b0d8db30 CR3=0000000110bf8000 CR4=00350ef0
DR0=0000000000000000 DR1=0000000000000000 DR2=0000000000000000 DR3=0000000000000000
DR6=00000000ffff0ff0 DR7=0000000000000400
EFER=0000000000000d01
FCW=037f FSW=0000 [ST=0] FTW=00 MXCSR=00001f80
FPR0=0000000000000000 0000 FPR1=0000000000000000 0000
FPR2=0000000000000000 0000 FPR3=0000000000000000 0000
FPR4=0000000000000000 0000 FPR5=0000000000000000 0000
FPR6=0000000000000000 0000 FPR7=0000000000000000 0000
YMM00=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM01=0000000000000000 0000000000000000 ff00000000000000 0000000000000000
YMM02=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM03=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM04=0000000000000000 0000000000000000 5db2b4930f07ef8d 00000000001340b8
YMM05=0000000000000000 0000000000000000 d3fdd5f48436fbd7 00000000000aeac0
YMM06=0000000000000000 0000000000000000 259e9b48a54f0c63 00000000000ae978
YMM07=0000000000000000 0000000000000000 a1fcdcf819d7e1e5 00000000000ae728
YMM08=0000000000000000 0000000000000000 44495f474f4c5359 530069253d595449
YMM09=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM10=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM11=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM12=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM13=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM14=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM15=0000000000000000 0000000000000000 0000000000000000 0000000000000000
info registers vcpu 3
CPU#3
RAX=0000000000000000 RBX=ffff88810c69b780 RCX=ffffffff84a8139d RDX=0000000000000000
RSI=ffff88810c69b780 RDI=0000000000000002 RBP=ffffffff81926a2e RSP=ffff88810c20f408
R8 =0000000000000000 R9 =0000000000000000 R10=fffff940008bd828 R11=ffffea00045ec147
R12=0000000000112cca R13=000000000000001a R14=0000000000112cca R15=000000000000001c
RIP=ffffffff817539a0 RFL=00000293 [--S-A-C] CPL=0 II=0 A20=1 SMM=0 HLT=0
ES =0000 0000000000000000 00000000 00000000
CS =0010 0000000000000000 ffffffff 00a09b00 DPL=0 CS64 [-RA]
SS =0018 0000000000000000 ffffffff 00c09300 DPL=0 DS [-WA]
DS =0000 0000000000000000 00000000 00000000
FS =0000 00007f49b0dd06c0 00000000 00000000
GS =0000 ffff8881937bf000 00000000 00000000
LDT=0000 fffffe0000000000 00000000 00000000
TR =0040 fffffe00000d8000 00004087 00008b00 DPL=0 TSS64-busy
GDT= fffffe00000d6000 0000007f
IDT= fffffe0000000000 00000fff
CR0=80050033 CR2=0000200000000780 CR3=000000010c86e000 CR4=00350ef0
DR0=0000000000000000 DR1=0000000000000000 DR2=0000000000000000 DR3=0000000000000000
DR6=00000000ffff0ff0 DR7=0000000000000400
EFER=0000000000000d01
FCW=037f FSW=0000 [ST=0] FTW=00 MXCSR=00001f80
FPR0=0000000000000000 0000 FPR1=0000000000000000 0000
FPR2=0000000000000000 0000 FPR3=0000000000000000 0000
FPR4=0000000000000000 0000 FPR5=0000000000000000 0000
FPR6=0000000000000000 0000 FPR7=0000000000000000 0000
YMM00=0000000000000000 0000000000000000 2525252525252525 2525252525252525
YMM01=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM02=0000000000000000 0000000000000000 0000000000ff0000 00000000000000ff
YMM03=0000000000000000 0000000000000000 0000000000ff0000 00000000000000ff
YMM04=0000000000000000 0000000000000000 00007f49b0e9ad40 00007f49b0eaebc0
YMM05=0000000000000000 0000000000000000 0000000000000001 0000000000000001
YMM06=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM07=0000000000000000 0000000000000000 2f2f2f2f2f2f2f2f 2f2f2f2f2f2f2f2f
YMM08=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM09=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM10=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM11=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM12=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM13=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM14=0000000000000000 0000000000000000 0000000000000000 0000000000000000
YMM15=0000000000000000 0000000000000000 0000000000000000 0000000000000000
[-- Attachment #5: config --]
[-- Type: application/octet-stream, Size: 147525 bytes --]
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 7.0.0-rc2 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 9.5.0-6ubuntu2.1) 9.5.0"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=90500
CONFIG_CLANG_VERSION=0
CONFIG_AS_IS_GNU=y
CONFIG_AS_VERSION=24200
CONFIG_LD_IS_BFD=y
CONFIG_LD_VERSION=24200
CONFIG_LLD_VERSION=0
CONFIG_RUSTC_VERSION=0
CONFIG_RUSTC_LLVM_VERSION=0
CONFIG_CC_CAN_LINK=y
CONFIG_GCC_ASM_GOTO_OUTPUT_BROKEN=y
CONFIG_TOOLS_SUPPORT_RELR=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY=y
CONFIG_PAHOLE_VERSION=125
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=y
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
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=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
# CONFIG_WATCH_QUEUE is not set
CONFIG_CROSS_MEMORY_ATTACH=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_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_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST_IDLE=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_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=y
# CONFIG_NO_HZ_FULL is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US=125
# CONFIG_POSIX_AUX_CLOCKS is not set
# end of Timers subsystem
CONFIG_BPF=y
CONFIG_HAVE_EBPF_JIT=y
CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y
#
# BPF subsystem
#
# CONFIG_BPF_SYSCALL is not set
# CONFIG_BPF_JIT is not set
# end of BPF subsystem
CONFIG_PREEMPT_BUILD=y
CONFIG_ARCH_HAS_PREEMPT_LAZY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_LAZY=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_TICK_CPU_ACCOUNTING=y
# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
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_NEED_TASKS_RCU=y
CONFIG_TASKS_RCU=y
CONFIG_TASKS_TRACE_RCU=y
CONFIG_RCU_STALL_COMMON=y
CONFIG_RCU_NEED_SEGCBLIST=y
# end of RCU Subsystem
# CONFIG_IKCONFIG is not set
# CONFIG_IKHEADERS is not set
CONFIG_LOG_BUF_SHIFT=18
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_GCC10_NO_ARRAY_BOUNDS=y
CONFIG_CC_NO_ARRAY_BOUNDS=y
CONFIG_GCC_NO_STRINGOP_OVERFLOW=y
CONFIG_CC_NO_STRINGOP_OVERFLOW=y
CONFIG_ARCH_SUPPORTS_INT128=y
# CONFIG_NUMA_BALANCING is not set
CONFIG_SLAB_OBJ_EXT=y
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
# CONFIG_CGROUP_FAVOR_DYNMODS is not set
CONFIG_MEMCG=y
# CONFIG_MEMCG_V1 is not set
CONFIG_BLK_CGROUP=y
CONFIG_CGROUP_WRITEBACK=y
CONFIG_CGROUP_SCHED=y
CONFIG_GROUP_SCHED_WEIGHT=y
CONFIG_FAIR_GROUP_SCHED=y
# CONFIG_CFS_BANDWIDTH is not set
# CONFIG_RT_GROUP_SCHED is not set
CONFIG_SCHED_MM_CID=y
CONFIG_CGROUP_PIDS=y
CONFIG_CGROUP_RDMA=y
# CONFIG_CGROUP_DMEM is not set
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_HUGETLB=y
CONFIG_CPUSETS=y
# CONFIG_CPUSETS_V1 is not set
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_MISC=y
CONFIG_CGROUP_DEBUG=y
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 is not set
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=y
CONFIG_RD_ZSTD=y
# CONFIG_BOOT_CONFIG is not set
CONFIG_CMDLINE_LOG_WRAP_IDEAL_LEN=1021
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="error"
CONFIG_SYSCTL=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
# CONFIG_SYSFS_SYSCALL is not set
CONFIG_HAVE_PCSPKR_PLATFORM=y
# CONFIG_EXPERT is not set
CONFIG_UID16=y
CONFIG_MULTIUSER=y
CONFIG_SGETMASK_SYSCALL=y
CONFIG_FHANDLE=y
CONFIG_POSIX_TIMERS=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_FUTEX=y
CONFIG_FUTEX_PI=y
CONFIG_FUTEX_PRIVATE_HASH=y
CONFIG_FUTEX_MPOL=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_RSEQ_SLICE_EXTENSION is not set
CONFIG_CACHESTAT_SYSCALL=y
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_SELFTEST is not set
CONFIG_KALLSYMS_ALL=y
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
CONFIG_ARCH_SUPPORTS_MSEAL_SYSTEM_MAPPINGS=y
CONFIG_HAVE_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_RESERVE=y
CONFIG_VMCORE_INFO=y
CONFIG_KEXEC_CORE=y
CONFIG_KEXEC=y
# CONFIG_KEXEC_FILE is not set
# CONFIG_KEXEC_JUMP is not set
CONFIG_CRASH_DUMP=y
CONFIG_CRASH_HOTPLUG=y
CONFIG_CRASH_MAX_MEMORY_RANGES=8192
# end of Kexec and crash features
#
# Live Update and Kexec HandOver
#
# CONFIG_KEXEC_HANDOVER is not set
# end of Live Update and Kexec HandOver
# 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_HAVE_INTEL_TXT=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_PGTABLE_LEVELS=5
#
# Processor type and features
#
CONFIG_SMP=y
CONFIG_X86_X2APIC=y
CONFIG_X86_MPPARSE=y
# CONFIG_X86_CPU_RESCTRL is not set
# CONFIG_X86_FRED is not set
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_NUMACHIP is not set
# CONFIG_X86_VSMP is not set
# CONFIG_X86_UV is not set
# CONFIG_X86_INTEL_MID is not set
# CONFIG_X86_GOLDFISH 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=y
CONFIG_PARAVIRT=y
# CONFIG_PARAVIRT_SPINLOCKS is not set
CONFIG_X86_HV_CALLBACK_VECTOR=y
# CONFIG_XEN is not set
CONFIG_KVM_GUEST=y
CONFIG_ARCH_CPUIDLE_HALTPOLL=y
# CONFIG_PVH is not set
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
CONFIG_PARAVIRT_CLOCK=y
# CONFIG_JAILHOUSE_GUEST is not set
# CONFIG_ACRN_GUEST is not set
# CONFIG_BHYVE_GUEST is not set
# CONFIG_INTEL_TDX_GUEST is not set
CONFIG_CC_HAS_MARCH_NATIVE=y
# CONFIG_X86_NATIVE_CPU is not set
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_TSC=y
CONFIG_X86_HAVE_PAE=y
CONFIG_X86_CX8=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_BROADCAST_TLB_FLUSH=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_HYGON=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_CPU_SUP_ZHAOXIN=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
# CONFIG_GART_IOMMU is not set
# 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_MC_PRIO=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_ACPI_MADT_WAKEUP=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_MICROCODE_DBG is not set
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
CONFIG_X86_DIRECT_GBPAGES=y
# CONFIG_X86_CPA_STATISTICS is not set
# CONFIG_AMD_MEM_ENCRYPT is not set
CONFIG_NUMA=y
CONFIG_AMD_NUMA=y
CONFIG_X86_64_ACPI_NUMA=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 is not set
CONFIG_X86_PAT=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_ARCH_PKEY_BITS=4
# CONFIG_X86_INTEL_TSX_MODE_OFF is not set
# CONFIG_X86_INTEL_TSX_MODE_ON is not set
CONFIG_X86_INTEL_TSX_MODE_AUTO=y
# CONFIG_X86_SGX is not set
# CONFIG_X86_USER_SHADOW_STACK is not set
CONFIG_EFI=y
CONFIG_EFI_STUB=y
CONFIG_EFI_HANDOVER_PROTOCOL=y
CONFIG_EFI_MIXED=y
CONFIG_EFI_RUNTIME_MAP=y
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
CONFIG_SCHED_HRTICK=y
CONFIG_ARCH_SUPPORTS_KEXEC=y
CONFIG_ARCH_SUPPORTS_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_KEXEC_HANDOVER=y
CONFIG_ARCH_SUPPORTS_CRASH_DUMP=y
CONFIG_ARCH_DEFAULT_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=0x200000
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=y
CONFIG_CMDLINE="net.ifnames=0"
# CONFIG_CMDLINE_OVERRIDE is not set
CONFIG_MODIFY_LDT_SYSCALL=y
# CONFIG_STRICT_SIGALTSTACK_SIZE is not set
CONFIG_HAVE_LIVEPATCH=y
CONFIG_HAVE_KLP_BUILD=y
CONFIG_X86_BUS_LOCK_DETECT=y
# end of Processor type and features
CONFIG_CC_HAS_NAMED_AS=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_CPU_MITIGATIONS=y
CONFIG_MITIGATION_PAGE_TABLE_ISOLATION=y
CONFIG_MITIGATION_RETPOLINE=y
CONFIG_MITIGATION_RETHUNK=y
CONFIG_MITIGATION_UNRET_ENTRY=y
CONFIG_MITIGATION_CALL_DEPTH_TRACKING=y
# CONFIG_CALL_THUNKS_DEBUG is not set
CONFIG_MITIGATION_IBPB_ENTRY=y
CONFIG_MITIGATION_IBRS_ENTRY=y
CONFIG_MITIGATION_SRSO=y
CONFIG_MITIGATION_GDS=y
CONFIG_MITIGATION_RFDS=y
CONFIG_MITIGATION_SPECTRE_BHI=y
CONFIG_MITIGATION_MDS=y
CONFIG_MITIGATION_TAA=y
CONFIG_MITIGATION_MMIO_STALE_DATA=y
CONFIG_MITIGATION_L1TF=y
CONFIG_MITIGATION_RETBLEED=y
CONFIG_MITIGATION_SPECTRE_V1=y
CONFIG_MITIGATION_SPECTRE_V2=y
CONFIG_MITIGATION_SRBDS=y
CONFIG_MITIGATION_SSB=y
CONFIG_MITIGATION_ITS=y
CONFIG_MITIGATION_TSA=y
CONFIG_ARCH_HAS_ADD_PAGES=y
#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
CONFIG_HIBERNATE_CALLBACKS=y
CONFIG_HIBERNATION=y
CONFIG_HIBERNATION_SNAPSHOT_DEV=y
CONFIG_HIBERNATION_COMP_LZO=y
CONFIG_HIBERNATION_DEF_COMP="lzo"
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_USERSPACE_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
# CONFIG_PM_QOS_CPU_SYSTEM_WAKEUP is not set
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_ADVANCED_DEBUG is not set
# CONFIG_PM_TEST_SUSPEND is not set
CONFIG_PM_SLEEP_DEBUG=y
CONFIG_PM_TRACE=y
CONFIG_PM_TRACE_RTC=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_SLEEP=y
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
CONFIG_ACPI_EC=y
# CONFIG_ACPI_EC_DEBUGFS is not set
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
# CONFIG_ACPI_TAD is not set
CONFIG_ACPI_DOCK=y
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=y
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_ACPI_CONTAINER=y
CONFIG_ACPI_HOTPLUG_IOAPIC=y
# CONFIG_ACPI_SBS is not set
# CONFIG_ACPI_HED is not set
CONFIG_ACPI_BGRT=y
CONFIG_ACPI_NHLT=y
# 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_ACPI_MRRM=y
# CONFIG_PMIC_OPREGION is not set
CONFIG_ACPI_PRMT=y
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 is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
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=y
CONFIG_X86_AMD_PSTATE_DEFAULT_MODE=3
# CONFIG_X86_AMD_PSTATE_UT is not set
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ_CPB=y
# CONFIG_X86_POWERNOW_K8 is not set
# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
# CONFIG_X86_P4_CLOCKMOD is not set
#
# shared options
#
CONFIG_CPUFREQ_ARCH_CUR_FREQ=y
# end of CPU Frequency scaling
#
# CPU Idle
#
CONFIG_CPU_IDLE=y
# CONFIG_CPU_IDLE_GOV_LADDER is not set
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_CPU_IDLE_GOV_TEO is not set
CONFIG_CPU_IDLE_GOV_HALTPOLL=y
CONFIG_HALTPOLL_CPUIDLE=y
# end of CPU Idle
# CONFIG_INTEL_IDLE is not set
# end of Power management and ACPI options
#
# Bus options (PCI etc.)
#
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_MMCONF_FAM10H=y
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
CONFIG_AMD_NODE=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_VIRTUALIZATION=y
# CONFIG_KVM is not set
CONFIG_X86_REQUIRED_FEATURE_ALWAYS=y
CONFIG_X86_REQUIRED_FEATURE_NOPL=y
CONFIG_X86_REQUIRED_FEATURE_CX8=y
CONFIG_X86_REQUIRED_FEATURE_CMOV=y
CONFIG_X86_REQUIRED_FEATURE_SYSFAST32=y
CONFIG_X86_REQUIRED_FEATURE_CPUID=y
CONFIG_X86_REQUIRED_FEATURE_FPU=y
CONFIG_X86_REQUIRED_FEATURE_PAE=y
CONFIG_X86_REQUIRED_FEATURE_PSE=y
CONFIG_X86_REQUIRED_FEATURE_PGE=y
CONFIG_X86_REQUIRED_FEATURE_MSR=y
CONFIG_X86_REQUIRED_FEATURE_FXSR=y
CONFIG_X86_REQUIRED_FEATURE_XMM=y
CONFIG_X86_REQUIRED_FEATURE_XMM2=y
CONFIG_X86_REQUIRED_FEATURE_LM=y
CONFIG_X86_DISABLED_FEATURE_VME=y
CONFIG_X86_DISABLED_FEATURE_K6_MTRR=y
CONFIG_X86_DISABLED_FEATURE_CYRIX_ARR=y
CONFIG_X86_DISABLED_FEATURE_CENTAUR_MCR=y
CONFIG_X86_DISABLED_FEATURE_LAM=y
CONFIG_X86_DISABLED_FEATURE_ENQCMD=y
CONFIG_X86_DISABLED_FEATURE_SGX=y
CONFIG_X86_DISABLED_FEATURE_XENPV=y
CONFIG_X86_DISABLED_FEATURE_TDX_GUEST=y
CONFIG_X86_DISABLED_FEATURE_USER_SHSTK=y
CONFIG_X86_DISABLED_FEATURE_FRED=y
CONFIG_X86_DISABLED_FEATURE_SEV_SNP=y
CONFIG_AS_WRUSS=y
CONFIG_ARCH_CONFIGURES_CPU_MITIGATIONS=y
#
# General architecture-dependent options
#
CONFIG_HOTPLUG_SMT=y
CONFIG_ARCH_SUPPORTS_SCHED_SMT=y
CONFIG_ARCH_SUPPORTS_SCHED_CLUSTER=y
CONFIG_ARCH_SUPPORTS_SCHED_MC=y
CONFIG_SCHED_SMT=y
CONFIG_SCHED_CLUSTER=y
CONFIG_SCHED_MC=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_IRQ_ENTRY=y
CONFIG_GENERIC_SYSCALL=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_UPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_KRETPROBES=y
CONFIG_KRETPROBE_ON_RETHOOK=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_ARCH_HAS_CPU_PASID=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_UNWIND_USER=y
CONFIG_HAVE_UNWIND_USER_FP=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_TABLE_FREE=y
CONFIG_MMU_GATHER_RCU_TABLE_FREE=y
CONFIG_MMU_GATHER_MERGE_VMAS=y
CONFIG_ARCH_WANT_IRQS_OFF_ACTIVATE_MM=y
CONFIG_MMU_LAZY_TLB_REFCOUNT=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_ARCH_HAVE_EXTRA_ELF_NOTES=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_KSTACK_ERASE=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_AUTOFDO_CLANG=y
CONFIG_ARCH_SUPPORTS_PROPELLER_CLANG=y
CONFIG_ARCH_SUPPORTS_CFI=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_PV_STEAL_CLOCK_GEN=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_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_ARCH_HAS_EXECMEM_ROX=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_HAVE_PAGE_SIZE_4KB=y
CONFIG_PAGE_SIZE_4KB=y
CONFIG_PAGE_SIZE_LESS_THAN_64KB=y
CONFIG_PAGE_SIZE_LESS_THAN_256KB=y
CONFIG_PAGE_SHIFT=12
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_ARCH_SUPPORTS_RT=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_ARCH_USE_MEMREMAP_PROT=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
CONFIG_ARCH_HAS_KERNEL_FPU_SUPPORT=y
CONFIG_HAVE_GENERIC_TIF_BITS=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
CONFIG_ARCH_HAS_CPU_ATTACK_VECTORS=y
# end of General architecture-dependent options
CONFIG_RT_MUTEXES=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=y
# CONFIG_MODULE_UNLOAD_TAINT_TRACKING is not set
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
# CONFIG_MODULE_SIG is not set
# CONFIG_MODULE_COMPRESS 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_RQ_ALLOC_TIME=y
CONFIG_BLK_DEV_BSG_COMMON=y
# CONFIG_BLK_DEV_BSGLIB is not set
# CONFIG_BLK_DEV_INTEGRITY is not set
CONFIG_BLK_DEV_WRITE_MOUNTED=y
# CONFIG_BLK_DEV_ZONED is not set
# CONFIG_BLK_DEV_THROTTLING is not set
# CONFIG_BLK_WBT is not set
CONFIG_BLK_CGROUP_IOLATENCY=y
CONFIG_BLK_CGROUP_IOCOST=y
CONFIG_BLK_CGROUP_IOPRIO=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 is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_EFI_PARTITION=y
# end of Partition Types
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_PADATA=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_COMPAT_BINFMT_ELF=y
CONFIG_ELFCORE=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
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_KVFREE_RCU_BATCHED=y
CONFIG_SLAB_MERGE_DEFAULT=y
# CONFIG_SLAB_FREELIST_RANDOM is not set
# CONFIG_SLAB_FREELIST_HARDENED is not set
# CONFIG_SLAB_BUCKETS is not set
# CONFIG_SLUB_STATS is not set
# 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_SPARSEMEM_VMEMMAP_PREINIT=y
CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP=y
CONFIG_ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP=y
CONFIG_ARCH_WANT_HUGETLB_VMEMMAP_PREINIT=y
CONFIG_HAVE_GUP_FAST=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_PTE_PTLOCKS=y
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_SPLIT_PMD_PTLOCKS=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_PCP_BATCH_SCALE_MAX=5
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_MMU_NOTIFIER=y
# CONFIG_KSM is not set
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
# CONFIG_MEMORY_FAILURE is not set
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ARCH_WANTS_THP_SWAP=y
# CONFIG_TRANSPARENT_HUGEPAGE is not set
CONFIG_PAGE_MAPCOUNT=y
CONFIG_PGTABLE_HAS_HUGE_LEAVES=y
CONFIG_HAVE_GIGANTIC_FOLIOS=y
CONFIG_ASYNC_KERNEL_PGTABLE_FREE=y
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_PAGE_BLOCK_MAX_ORDER=10
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_ZONE_DMA=y
CONFIG_ZONE_DMA32=y
CONFIG_VMAP_PFN=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
CONFIG_ARCH_HAS_PKEYS=y
CONFIG_ARCH_USES_PG_ARCH_2=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_USERFAULTFD is not set
# 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
CONFIG_IOMMU_MM_DATA=y
CONFIG_EXECMEM=y
CONFIG_NUMA_MEMBLKS=y
# CONFIG_NUMA_EMU is not set
CONFIG_PT_RECLAIM=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_INET_PSP is not set
CONFIG_UNIX=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 is not set
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_XFRM_STATISTICS is not set
CONFIG_XFRM_AH=y
CONFIG_XFRM_ESP=y
# CONFIG_NET_KEY is not set
# CONFIG_XFRM_IPTFS is not set
# CONFIG_DIBS is not set
CONFIG_NET_HANDSHAKE=y
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=y
CONFIG_IP_PNP_DHCP=y
CONFIG_IP_PNP_BOOTP=y
CONFIG_IP_PNP_RARP=y
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
CONFIG_NET_IP_TUNNEL=y
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_FOU is not set
# CONFIG_NET_FOU_IP_TUNNELS is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
CONFIG_INET_TABLE_PERTURB_ORDER=16
CONFIG_INET_TUNNEL=y
# CONFIG_INET_DIAG 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=y
CONFIG_IPV6=y
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
CONFIG_INET6_AH=y
CONFIG_INET6_ESP=y
# CONFIG_INET6_ESP_OFFLOAD is not set
# CONFIG_INET6_ESPINTCP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_IPV6_ILA is not set
# 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 is not set
# CONFIG_IPV6_MULTIPLE_TABLES is not set
# CONFIG_IPV6_MROUTE 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=y
# CONFIG_MPTCP 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 is not set
#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_INGRESS=y
CONFIG_NETFILTER_EGRESS=y
CONFIG_NETFILTER_SKIP_EGRESS=y
CONFIG_NETFILTER_NETLINK=y
CONFIG_NETFILTER_NETLINK_LOG=y
CONFIG_NF_CONNTRACK=y
CONFIG_NF_LOG_SYSLOG=m
CONFIG_NF_CONNTRACK_SECMARK=y
# CONFIG_NF_CONNTRACK_PROCFS is not set
# CONFIG_NF_CONNTRACK_LABELS is not set
CONFIG_NF_CONNTRACK_FTP=y
CONFIG_NF_CONNTRACK_IRC=y
# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
CONFIG_NF_CONNTRACK_SIP=y
CONFIG_NF_CT_NETLINK=y
# CONFIG_NETFILTER_NETLINK_GLUE_CT is not set
CONFIG_NF_NAT=y
CONFIG_NF_NAT_FTP=y
CONFIG_NF_NAT_IRC=y
CONFIG_NF_NAT_SIP=y
CONFIG_NF_NAT_MASQUERADE=y
# CONFIG_NF_TABLES is not set
CONFIG_NETFILTER_XTABLES=y
# CONFIG_NETFILTER_XTABLES_COMPAT is not set
# CONFIG_NETFILTER_XTABLES_LEGACY is not set
#
# Xtables combined modules
#
CONFIG_NETFILTER_XT_MARK=m
#
# Xtables targets
#
CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y
CONFIG_NETFILTER_XT_TARGET_LOG=m
# CONFIG_NETFILTER_XT_NAT is not set
# CONFIG_NETFILTER_XT_TARGET_NETMAP is not set
CONFIG_NETFILTER_XT_TARGET_NFLOG=y
# CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set
CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m
CONFIG_NETFILTER_XT_TARGET_SECMARK=y
CONFIG_NETFILTER_XT_TARGET_TCPMSS=y
#
# Xtables matches
#
CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y
CONFIG_NETFILTER_XT_MATCH_POLICY=y
CONFIG_NETFILTER_XT_MATCH_STATE=y
# 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=m
CONFIG_NF_LOG_IPV4=m
CONFIG_NF_REJECT_IPV4=m
CONFIG_IP_NF_IPTABLES=y
# 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=m
CONFIG_NF_LOG_IPV6=m
CONFIG_IP6_NF_IPTABLES=y
CONFIG_IP6_NF_MATCH_IPV6HEADER=y
# end of IPv6: Netfilter Configuration
CONFIG_NF_DEFRAG_IPV6=y
# CONFIG_NF_CONNTRACK_BRIDGE is not set
# CONFIG_IP_SCTP is not set
# 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 is not set
# CONFIG_NET_SCH_HHF is not set
# CONFIG_NET_SCH_PIE is not set
# CONFIG_NET_SCH_INGRESS is not set
# CONFIG_NET_SCH_PLUG is not set
# CONFIG_NET_SCH_ETS is not set
# CONFIG_NET_SCH_DUALPI2 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 is not set
# CONFIG_NET_CLS_FLOWER is not set
# 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_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_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 is not set
CONFIG_DNS_RESOLVER=y
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
# CONFIG_VSOCKETS is not set
# CONFIG_NETLINK_DIAG is not set
# CONFIG_MPLS is not set
# 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=y
CONFIG_CGROUP_NET_CLASSID=y
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
CONFIG_NET_FLOW_LIMIT=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# 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_MCTP is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_CFG80211=y
# CONFIG_NL80211_TESTMODE is not set
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y
CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y
CONFIG_CFG80211_DEFAULT_PS=y
# CONFIG_CFG80211_DEBUGFS is not set
CONFIG_CFG80211_CRDA_SUPPORT=y
# CONFIG_CFG80211_WEXT is not set
CONFIG_MAC80211=y
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
# CONFIG_MAC80211_MESH is not set
CONFIG_MAC80211_LEDS=y
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
CONFIG_RFKILL=y
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
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 is not set
CONFIG_DST_CACHE=y
CONFIG_GRO_CELLS=y
CONFIG_NET_SELFTESTS=y
CONFIG_FAILOVER=y
CONFIG_ETHTOOL_NETLINK=y
#
# Device Drivers
#
CONFIG_HAVE_PCI=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_PCI=y
CONFIG_PCI_DOMAINS=y
CONFIG_PCIEPORTBUS=y
# CONFIG_HOTPLUG_PCI_PCIE is not set
# CONFIG_PCIEAER is not set
CONFIG_PCIEASPM=y
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
# CONFIG_PCIE_PTM is not set
CONFIG_PCI_MSI=y
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_STUB is not set
CONFIG_PCI_ATS=y
# CONFIG_PCI_TSM is not set
# CONFIG_PCI_DOE is not set
CONFIG_PCI_LOCKLESS_CONFIG=y
# CONFIG_PCI_IOV is not set
# CONFIG_PCI_NPEM is not set
CONFIG_PCI_PRI=y
CONFIG_PCI_PASID=y
# CONFIG_PCIE_TPH is not set
CONFIG_PCI_LABEL=y
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 is not set
# CONFIG_HOTPLUG_PCI_OCTEONEP is not set
# 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
#
# PLDA-based PCIe controllers
#
# end of PLDA-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_PCI_PWRCTRL_SLOT is not set
# CONFIG_PCI_PWRCTRL_TC9563 is not set
# CONFIG_CXL_BUS is not set
CONFIG_PCCARD=y
CONFIG_PCMCIA=y
CONFIG_PCMCIA_LOAD_CIS=y
CONFIG_CARDBUS=y
#
# PC-card bridges
#
CONFIG_YENTA=y
CONFIG_YENTA_O2=y
CONFIG_YENTA_RICOH=y
CONFIG_YENTA_TI=y
CONFIG_YENTA_ENE_TUNE=y
CONFIG_YENTA_TOSHIBA=y
# CONFIG_PD6729 is not set
# CONFIG_I82092 is not set
CONFIG_PCCARD_NONSTATIC=y
# CONFIG_RAPIDIO is not set
#
# Generic Driver Options
#
CONFIG_AUXILIARY_BUS=y
# CONFIG_UEVENT_HELPER is not set
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_EXTRA_FIRMWARE=""
# CONFIG_FW_LOADER_USER_HELPER is not set
# CONFIG_FW_LOADER_COMPRESS is not set
CONFIG_FW_CACHE=y
# CONFIG_FW_UPLOAD is not set
# end of Firmware loader
CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
CONFIG_DEBUG_DEVRES=y
# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
CONFIG_GENERIC_CPU_DEVICES=y
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_GENERIC_CPU_VULNERABILITIES=y
CONFIG_REGMAP=y
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
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 is not set
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_SIMPLEFB is not set
# CONFIG_GOOGLE_FIRMWARE is not set
#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_ESRT=y
CONFIG_EFI_DXE_MEM_ATTRIBUTES=y
CONFIG_EFI_RUNTIME_WRAPPERS=y
# CONFIG_EFI_BOOTLOADER_CONTROL is not set
# CONFIG_EFI_CAPSULE_LOADER is not set
# CONFIG_EFI_TEST is not set
# CONFIG_APPLE_PROPERTIES is not set
# CONFIG_RESET_ATTACK_MITIGATION is not set
# CONFIG_EFI_RCI2_TABLE is not set
# CONFIG_EFI_DISABLE_PCI_DMA is not set
CONFIG_EFI_EARLYCON=y
CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y
# CONFIG_EFI_DISABLE_RUNTIME is not set
# CONFIG_EFI_COCO_SECRET is not set
# CONFIG_OVMF_DEBUG_LOG is not set
CONFIG_EFI_SBAT_FILE=""
# end of EFI (Extensible Firmware Interface) Support
#
# Qualcomm firmware drivers
#
# end of Qualcomm firmware drivers
#
# Tegra firmware driver
#
# end of Tegra firmware driver
# end of Firmware Drivers
# CONFIG_FWCTL is not set
# 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=y
#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_NULL_BLK is not set
# CONFIG_BLK_DEV_FD is not set
CONFIG_CDROM=y
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_ZRAM is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_RAM 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_BLK_DEV_NVME is not set
# CONFIG_NVME_FC is not set
# CONFIG_NVME_TCP 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_RPMB is not set
# CONFIG_TI_FPC202 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_NTSYNC 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=y
# CONFIG_EEPROM_IDT_89HPESX is not set
# CONFIG_EEPROM_EE1004 is not set
# CONFIG_EEPROM_M24LR is not set
# end of EEPROM support
# CONFIG_CB710_CORE is not set
# CONFIG_SENSORS_LIS3_I2C is not set
# CONFIG_ALTERA_STAPL is not set
CONFIG_INTEL_MEI=y
CONFIG_INTEL_MEI_ME=y
# CONFIG_INTEL_MEI_TXE is not set
# CONFIG_INTEL_MEI_GSC is not set
# CONFIG_INTEL_MEI_HDCP is not set
# CONFIG_INTEL_MEI_PXP is not set
# CONFIG_INTEL_MEI_GSC_PROXY is not set
# CONFIG_VMWARE_VMCI is not set
# CONFIG_GENWQE is not set
# CONFIG_BCM_VK is not set
# CONFIG_MISC_ALCOR_PCI is not set
# CONFIG_MISC_RTSX_PCI is not set
# CONFIG_MISC_RTSX_USB is not set
# CONFIG_UACCE is not set
# CONFIG_PVPANIC is not set
# CONFIG_KEBA_CP500 is not set
# end of Misc devices
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
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 is not set
# CONFIG_SCSI_SCAN_ASYNC is not set
#
# 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 is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# 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 is not set
# CONFIG_SCSI_IPR is not set
# 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 is not set
# CONFIG_SCSI_PM8001 is not set
CONFIG_SCSI_VIRTIO=y
# CONFIG_SCSI_LOWLEVEL_PCMCIA is not set
# CONFIG_SCSI_DH is not set
# end of SCSI device support
CONFIG_ATA=y
CONFIG_SATA_HOST=y
CONFIG_PATA_TIMINGS=y
CONFIG_ATA_VERBOSE_ERROR=y
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=3
# 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 is not set
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_DWC is not set
# 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=y
# 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=y
# 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 is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PCMCIA 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_BITMAP=y
# CONFIG_MD_LLBITMAP is not set
CONFIG_MD_AUTODETECT=y
CONFIG_MD_BITMAP_FILE=y
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID456 is not set
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
# CONFIG_DM_UNSTRIPED is not set
# CONFIG_DM_CRYPT is not set
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_THIN_PROVISIONING is not set
# CONFIG_DM_CACHE is not set
# CONFIG_DM_WRITECACHE is not set
# CONFIG_DM_EBS is not set
# CONFIG_DM_ERA is not set
# CONFIG_DM_CLONE is not set
CONFIG_DM_MIRROR=y
# CONFIG_DM_LOG_USERSPACE is not set
# CONFIG_DM_RAID is not set
CONFIG_DM_ZERO=y
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
# CONFIG_DM_DUST is not set
# CONFIG_DM_INIT is not set
# CONFIG_DM_UEVENT is not set
# CONFIG_DM_FLAKEY is not set
# CONFIG_DM_VERITY is not set
# CONFIG_DM_SWITCH is not set
# CONFIG_DM_LOG_WRITES is not set
# CONFIG_DM_INTEGRITY is not set
# CONFIG_DM_AUDIT is not set
# CONFIG_DM_VDO is not set
# CONFIG_TARGET_CORE is not set
# CONFIG_FUSION 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=y
CONFIG_MAC_EMUMOUSEBTN=y
CONFIG_NETDEVICES=y
CONFIG_MII=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
# CONFIG_DUMMY is not set
# CONFIG_WIREGUARD is not set
# CONFIG_OVPN 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 is not set
# CONFIG_GENEVE is not set
# CONFIG_BAREUDP is not set
# CONFIG_GTP is not set
# CONFIG_PFCP 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 is not set
# CONFIG_TUN_VNET_CROSS_LE is not set
# CONFIG_VETH is not set
CONFIG_VIRTIO_NET=y
# CONFIG_NLMON is not set
# CONFIG_ARCNET is not set
CONFIG_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_PCMCIA_3C574 is not set
# CONFIG_PCMCIA_3C589 is not set
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_AGERE=y
# CONFIG_ET131X is not set
CONFIG_NET_VENDOR_ALACRITECH=y
# CONFIG_SLICOSS is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMAZON=y
# CONFIG_ENA_ETHERNET is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
# CONFIG_PCMCIA_NMCLAN is not set
# CONFIG_AMD_XGBE is not set
# CONFIG_PDS_CORE is not set
CONFIG_NET_VENDOR_AQUANTIA=y
# CONFIG_AQTION is not set
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ASIX=y
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
# CONFIG_CX_ECAT is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BCMGENET is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
CONFIG_TIGON3=y
CONFIG_TIGON3_HWMON=y
# CONFIG_BNX2X is not set
# CONFIG_SYSTEMPORT is not set
# CONFIG_BNXT is not set
# CONFIG_BNGE is not set
CONFIG_NET_VENDOR_CADENCE=y
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=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
CONFIG_NET_VENDOR_CORTINA=y
CONFIG_NET_VENDOR_DAVICOM=y
CONFIG_NET_VENDOR_DEC=y
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
# CONFIG_TULIP is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_ULI526X is not set
# CONFIG_PCMCIA_XIRCOM is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_ENGLEDER=y
# CONFIG_TSNEP is not set
CONFIG_NET_VENDOR_EZCHIP=y
CONFIG_NET_VENDOR_FUJITSU=y
# CONFIG_PCMCIA_FMVJ18X is not set
CONFIG_NET_VENDOR_FUNGIBLE=y
# CONFIG_FUN_ETH is not set
CONFIG_NET_VENDOR_GOOGLE=y
# CONFIG_GVE is not set
CONFIG_NET_VENDOR_HISILICON=y
# CONFIG_HIBMCGE is not set
CONFIG_NET_VENDOR_HUAWEI=y
# CONFIG_HINIC is not set
# CONFIG_HINIC3 is not set
CONFIG_NET_VENDOR_I825XX=y
CONFIG_NET_VENDOR_INTEL=y
CONFIG_E100=y
CONFIG_E1000=y
CONFIG_E1000E=y
CONFIG_E1000E_HWTS=y
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGBEVF is not set
# CONFIG_I40E is not set
# CONFIG_I40EVF is not set
# CONFIG_ICE is not set
# CONFIG_FM10K is not set
# CONFIG_IGC is not set
# CONFIG_IDPF is not set
# CONFIG_JME is not set
CONFIG_NET_VENDOR_LITEX=y
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
CONFIG_SKY2=y
# CONFIG_SKY2_DEBUG is not set
# CONFIG_OCTEON_EP is not set
# CONFIG_OCTEON_EP_VF is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX5_CORE is not set
# CONFIG_MLXSW_CORE is not set
# CONFIG_MLXFW is not set
CONFIG_NET_VENDOR_META=y
# CONFIG_FBNIC is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8842 is not set
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI 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_MUCSE=y
# CONFIG_MGBE is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE 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=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_NETRONOME=y
# CONFIG_NFP is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_PCMCIA_AXNET is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_PCMCIA_PCNET is not set
CONFIG_NET_VENDOR_NVIDIA=y
CONFIG_FORCEDETH=y
CONFIG_NET_VENDOR_OKI=y
# 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=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_QED is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
CONFIG_NET_VENDOR_QUALCOMM=y
# CONFIG_QCOM_EMAC is not set
# CONFIG_RMNET is not set
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_8139CP is not set
CONFIG_8139TOO=y
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
CONFIG_R8169=y
# CONFIG_RTASE is not set
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_ROCKER=y
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 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=y
# CONFIG_PCMCIA_SMC91C92 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_SOCIONEXT=y
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
# CONFIG_DWC_XLGMAC is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
# CONFIG_TEHUTI_TN40 is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TI_CPSW_PHY_SEL is not set
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VERTEXCOM=y
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WANGXUN=y
# CONFIG_NGBE is not set
# CONFIG_TXGBEVF is not set
# CONFIG_NGBEVF is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_NET_VENDOR_XILINX=y
# CONFIG_XILINX_EMACLITE is not set
# CONFIG_XILINX_LL_TEMAC is not set
CONFIG_NET_VENDOR_XIRCOM=y
# CONFIG_PCMCIA_XIRC2PS is not set
# CONFIG_FDDI is not set
CONFIG_MDIO_BUS=y
CONFIG_PHYLIB=y
CONFIG_SWPHY=y
# CONFIG_LED_TRIGGER_PHY is not set
CONFIG_FIXED_PHY=y
#
# MII PHY device drivers
#
# CONFIG_AS21XXX_PHY is not set
# CONFIG_AIR_EN8811H_PHY is not set
# 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_MAXLINEAR_86110_PHY 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_NXP_TJA11XX_PHY is not set
# CONFIG_NCN26000_PHY is not set
# CONFIG_QCA83XX_PHY is not set
# CONFIG_QCA808X_PHY is not set
# CONFIG_QSEMI_PHY is not set
CONFIG_REALTEK_PHY=y
# CONFIG_REALTEK_PHY_HWMON 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_FWNODE_MDIO=y
CONFIG_ACPI_MDIO=y
# CONFIG_MDIO_BITBANG is not set
# CONFIG_MDIO_BCM_UNIMAC is not set
# CONFIG_MDIO_MVUSB is not set
# CONFIG_MDIO_THUNDER is not set
#
# MDIO Multiplexers
#
#
# PCS device drivers
#
# CONFIG_PCS_XPCS is not set
# end of PCS device drivers
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
CONFIG_USB_NET_DRIVERS=y
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_RTL8152 is not set
# CONFIG_USB_LAN78XX is not set
# CONFIG_USB_USBNET is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_IPHETH is not set
CONFIG_WLAN=y
CONFIG_WLAN_VENDOR_ADMTEK=y
# CONFIG_ADM8211 is not set
CONFIG_WLAN_VENDOR_ATH=y
# CONFIG_ATH_DEBUG is not set
# CONFIG_ATH5K is not set
# CONFIG_ATH5K_PCI is not set
# CONFIG_ATH9K is not set
# CONFIG_ATH9K_HTC is not set
# CONFIG_CARL9170 is not set
# CONFIG_ATH6KL is not set
# CONFIG_AR5523 is not set
# CONFIG_WIL6210 is not set
# CONFIG_ATH10K is not set
# CONFIG_WCN36XX is not set
# CONFIG_ATH11K is not set
# CONFIG_ATH12K is not set
CONFIG_WLAN_VENDOR_ATMEL=y
# CONFIG_AT76C50X_USB is not set
CONFIG_WLAN_VENDOR_BROADCOM=y
# CONFIG_B43 is not set
# CONFIG_B43LEGACY is not set
# CONFIG_BRCMSMAC is not set
# CONFIG_BRCMFMAC is not set
CONFIG_WLAN_VENDOR_INTEL=y
# CONFIG_IPW2100 is not set
# CONFIG_IPW2200 is not set
# CONFIG_IWL4965 is not set
# CONFIG_IWL3945 is not set
# CONFIG_IWLWIFI is not set
CONFIG_WLAN_VENDOR_INTERSIL=y
# CONFIG_P54_COMMON is not set
CONFIG_WLAN_VENDOR_MARVELL=y
# CONFIG_LIBERTAS is not set
# CONFIG_LIBERTAS_THINFIRM is not set
# CONFIG_MWIFIEX is not set
# CONFIG_MWL8K is not set
CONFIG_WLAN_VENDOR_MEDIATEK=y
# CONFIG_MT7601U is not set
# CONFIG_MT76x0U is not set
# CONFIG_MT76x0E is not set
# CONFIG_MT76x2E is not set
# CONFIG_MT76x2U is not set
# CONFIG_MT7603E is not set
# CONFIG_MT7615E is not set
# CONFIG_MT7663U is not set
# CONFIG_MT7915E is not set
# CONFIG_MT7921E is not set
# CONFIG_MT7921U is not set
# CONFIG_MT7996E is not set
# CONFIG_MT7925E is not set
# CONFIG_MT7925U is not set
CONFIG_WLAN_VENDOR_MICROCHIP=y
CONFIG_WLAN_VENDOR_PURELIFI=y
# CONFIG_PLFXLC is not set
CONFIG_WLAN_VENDOR_RALINK=y
# CONFIG_RT2X00 is not set
CONFIG_WLAN_VENDOR_REALTEK=y
# CONFIG_RTL8180 is not set
# CONFIG_RTL8187 is not set
CONFIG_RTL_CARDS=y
# CONFIG_RTL8192CE is not set
# CONFIG_RTL8192SE is not set
# CONFIG_RTL8192DE is not set
# CONFIG_RTL8723AE is not set
# CONFIG_RTL8723BE is not set
# CONFIG_RTL8188EE is not set
# CONFIG_RTL8192EE is not set
# CONFIG_RTL8821AE is not set
# CONFIG_RTL8192CU is not set
# CONFIG_RTL8192DU is not set
# CONFIG_RTL8XXXU is not set
# CONFIG_RTW88 is not set
# CONFIG_RTW89 is not set
CONFIG_WLAN_VENDOR_RSI=y
# CONFIG_RSI_91X is not set
CONFIG_WLAN_VENDOR_SILABS=y
CONFIG_WLAN_VENDOR_ST=y
# CONFIG_CW1200 is not set
CONFIG_WLAN_VENDOR_TI=y
# CONFIG_WL1251 is not set
# CONFIG_WL12XX is not set
# CONFIG_WL18XX is not set
# CONFIG_WLCORE is not set
CONFIG_WLAN_VENDOR_ZYDAS=y
# CONFIG_ZD1211RW is not set
CONFIG_WLAN_VENDOR_QUANTENNA=y
# CONFIG_QTNFMAC_PCIE is not set
# CONFIG_MAC80211_HWSIM is not set
# CONFIG_VIRT_WIFI 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 is not set
CONFIG_NET_FAILOVER=y
# CONFIG_ISDN is not set
#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_LEDS=y
CONFIG_INPUT_FF_MEMLESS=y
CONFIG_INPUT_SPARSEKMAP=y
# CONFIG_INPUT_MATRIXKMAP is not set
CONFIG_INPUT_VIVALDIFMAP=y
#
# Userland interfaces
#
# CONFIG_INPUT_MOUSEDEV is not set
# CONFIG_INPUT_JOYDEV is not set
CONFIG_INPUT_EVDEV=y
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 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_TCA8418 is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_CYPRESS_SF is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_BYD=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
# CONFIG_MOUSE_PS2_ELANTECH is not set
# CONFIG_MOUSE_PS2_SENTELIC is not set
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
CONFIG_MOUSE_PS2_FOCALTECH=y
# CONFIG_MOUSE_PS2_VMMOUSE is not set
CONFIG_MOUSE_PS2_SMBUS=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_CYAPA is not set
# CONFIG_MOUSE_ELAN_I2C is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_ANALOG is not set
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_AS5011 is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_JOYSTICK_XPAD is not set
# CONFIG_JOYSTICK_PXRC is not set
# CONFIG_JOYSTICK_QWIIC is not set
# CONFIG_JOYSTICK_FSIA6B is not set
# CONFIG_JOYSTICK_SENSEHAT is not set
# CONFIG_JOYSTICK_SEESAW is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_USB_PEGASUS is not set
# CONFIG_TABLET_SERIAL_WACOM4 is not set
CONFIG_INPUT_TOUCHSCREEN=y
# CONFIG_TOUCHSCREEN_AD7879 is not set
# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
# CONFIG_TOUCHSCREEN_BU21013 is not set
# CONFIG_TOUCHSCREEN_BU21029 is not set
# CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 is not set
# CONFIG_TOUCHSCREEN_CY8CTMA140 is not set
# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
# CONFIG_TOUCHSCREEN_CYTTSP5 is not set
# CONFIG_TOUCHSCREEN_DYNAPRO is not set
# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
# CONFIG_TOUCHSCREEN_EETI is not set
# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
# CONFIG_TOUCHSCREEN_EXC3000 is not set
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_GOODIX_BERLIN_I2C is not set
# CONFIG_TOUCHSCREEN_HIDEEP is not set
# CONFIG_TOUCHSCREEN_HIMAX_HX852X is not set
# CONFIG_TOUCHSCREEN_HYCON_HY46XX is not set
# CONFIG_TOUCHSCREEN_HYNITRON_CSTXXX is not set
# CONFIG_TOUCHSCREEN_HYNITRON_CST816X is not set
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_ILITEK is not set
# CONFIG_TOUCHSCREEN_S6SY761 is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_EKTF2127 is not set
# CONFIG_TOUCHSCREEN_ELAN is not set
# CONFIG_TOUCHSCREEN_ELO is not set
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_WACOM_I2C is not set
# CONFIG_TOUCHSCREEN_MAX11801 is not set
# CONFIG_TOUCHSCREEN_MMS114 is not set
# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_NOVATEK_NVT_TS is not set
# CONFIG_TOUCHSCREEN_IMAGIS is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_PIXCIR is not set
# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
# CONFIG_TOUCHSCREEN_TSC2004 is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
# CONFIG_TOUCHSCREEN_SILEAD is not set
# CONFIG_TOUCHSCREEN_ST1232 is not set
# CONFIG_TOUCHSCREEN_STMFTS is not set
# CONFIG_TOUCHSCREEN_SX8654 is not set
# CONFIG_TOUCHSCREEN_TPS6507X is not set
# CONFIG_TOUCHSCREEN_ZET6223 is not set
# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
# CONFIG_TOUCHSCREEN_IQS5XX is not set
# CONFIG_TOUCHSCREEN_IQS7211 is not set
# CONFIG_TOUCHSCREEN_ZINITIX is not set
# CONFIG_TOUCHSCREEN_HIMAX_HX83112B is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_AW86927 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_APANEL is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_KXTJ9 is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
# CONFIG_INPUT_UINPUT is not set
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_DA7280_HAPTICS is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IMS_PCU 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_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=y
# 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_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_VT_CONSOLE_SLEEP=y
# CONFIG_VT_HW_CONSOLE_BINDING is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
CONFIG_LEGACY_TIOCSTI=y
CONFIG_LDISC_AUTOLOAD=y
#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=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_DMA=y
CONFIG_SERIAL_8250_PCILIB=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_EXAR=y
# CONFIG_SERIAL_8250_CS is not set
CONFIG_SERIAL_8250_NR_UARTS=32
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
CONFIG_SERIAL_8250_DETECT_IRQ=y
CONFIG_SERIAL_8250_RSA=y
CONFIG_SERIAL_8250_MANY_PORTS=y
# CONFIG_SERIAL_8250_PCI1XXXX is not set
# CONFIG_SERIAL_8250_DW is not set
# CONFIG_SERIAL_8250_RT288X is not set
CONFIG_SERIAL_8250_LPSS=y
CONFIG_SERIAL_8250_MID=y
CONFIG_SERIAL_8250_PERICOM=y
# CONFIG_SERIAL_8250_NI is not set
CONFIG_SERIAL_8250_DWLIB=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
# end of Serial drivers
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
# CONFIG_N_HDLC is not set
# CONFIG_IPWIRELESS 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_VIRTIO_CONSOLE=y
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_BA431 is not set
CONFIG_HW_RANDOM_VIA=y
# CONFIG_HW_RANDOM_VIRTIO is not set
# CONFIG_HW_RANDOM_XIPHERA is not set
# CONFIG_APPLICOM is not set
CONFIG_DEVMEM=y
CONFIG_NVRAM=y
CONFIG_DEVPORT=y
CONFIG_HPET=y
# CONFIG_HPET_MMAP is not set
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
# CONFIG_XILLYBUS is not set
# CONFIG_XILLYUSB is not set
# end of Character devices
#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_SMBUS=y
CONFIG_I2C_ALGOBIT=y
#
# 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=y
# 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
# CONFIG_I2C_ZHAOXIN is not set
#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_DESIGNWARE_CORE 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_DIOLAN_U2C is not set
# CONFIG_I2C_CP2615 is not set
# CONFIG_I2C_PCI1XXXX is not set
# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB 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
# CONFIG_PPS_GENERATOR is not set
#
# 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_KVM=y
CONFIG_PTP_1588_CLOCK_VMCLOCK=y
# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set
# CONFIG_PTP_1588_CLOCK_IDTCM is not set
# CONFIG_PTP_1588_CLOCK_FC3W is not set
# CONFIG_PTP_1588_CLOCK_MOCK is not set
# CONFIG_PTP_1588_CLOCK_VMW is not set
# CONFIG_PTP_NETC_V4_TIMER is not set
# end of PTP clock support
#
# DPLL device support
#
# CONFIG_ZL3073X_I2C is not set
# end of DPLL device support
# CONFIG_PINCTRL is not set
CONFIG_GPIOLIB_LEGACY=y
# CONFIG_GPIOLIB is not set
# CONFIG_W1 is not set
# CONFIG_POWER_RESET is not set
# CONFIG_POWER_SEQUENCING is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
CONFIG_POWER_SUPPLY_HWMON=y
# CONFIG_IP5XXX_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_CHARGER_ADP5061 is not set
# CONFIG_BATTERY_CHAGALL 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_BATTERY_MAX1720X is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_LTC4162L is not set
# CONFIG_CHARGER_MAX77976 is not set
# CONFIG_CHARGER_MAX8971 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
# CONFIG_BATTERY_GOLDFISH is not set
# CONFIG_BATTERY_RT5033 is not set
# CONFIG_CHARGER_RT9756 is not set
# CONFIG_CHARGER_BD99954 is not set
# CONFIG_BATTERY_UG3105 is not set
# CONFIG_FUEL_GAUGE_MM8013 is not set
CONFIG_HWMON=y
# CONFIG_HWMON_DEBUG_CHIP is not set
#
# Native drivers
#
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM1177 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_AHT10 is not set
# CONFIG_SENSORS_AQUACOMPUTER_D5NEXT is not set
# CONFIG_SENSORS_AS370 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_ASUS_ROG_RYUJIN is not set
# CONFIG_SENSORS_AXI_FAN_CONTROL is not set
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
# CONFIG_SENSORS_APPLESMC is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_CHIPCAP2 is not set
# CONFIG_SENSORS_CORSAIR_CPRO is not set
# CONFIG_SENSORS_CORSAIR_PSU is not set
# CONFIG_SENSORS_DRIVETEMP is not set
# CONFIG_SENSORS_DS620 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_DELL_SMM is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_FTSTEUTATES is not set
# CONFIG_SENSORS_GIGABYTE_WATERFORCE is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_GPD is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_HIH6130 is not set
# CONFIG_SENSORS_HS3001 is not set
# CONFIG_SENSORS_HTU31 is not set
# CONFIG_SENSORS_I5500 is not set
# CONFIG_SENSORS_CORETEMP is not set
# CONFIG_SENSORS_ISL28022 is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_POWERZ is not set
# CONFIG_SENSORS_POWR1220 is not set
# CONFIG_SENSORS_LENOVO_EC is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LTC2945 is not set
# CONFIG_SENSORS_LTC2947_I2C is not set
# CONFIG_SENSORS_LTC2990 is not set
# CONFIG_SENSORS_LTC2991 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4222 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4260 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_LTC4282 is not set
# CONFIG_SENSORS_MAX127 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX31730 is not set
# CONFIG_SENSORS_MAX31760 is not set
# CONFIG_MAX31827 is not set
# CONFIG_SENSORS_MAX6620 is not set
# CONFIG_SENSORS_MAX6621 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MAX6697 is not set
# CONFIG_SENSORS_MAX31790 is not set
# CONFIG_SENSORS_MC34VR500 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_TC654 is not set
# CONFIG_SENSORS_TPS23861 is not set
# CONFIG_SENSORS_MR75203 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LM95234 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_NCT6683 is not set
# CONFIG_SENSORS_NCT6775 is not set
# CONFIG_SENSORS_NCT6775_I2C is not set
# CONFIG_SENSORS_NCT7363 is not set
# CONFIG_SENSORS_NCT7802 is not set
# CONFIG_SENSORS_NCT7904 is not set
# CONFIG_SENSORS_NPCM7XX is not set
# CONFIG_SENSORS_NZXT_KRAKEN2 is not set
# CONFIG_SENSORS_NZXT_KRAKEN3 is not set
# CONFIG_SENSORS_NZXT_SMART2 is not set
# CONFIG_SENSORS_OCC_P8_I2C is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_PT5161L is not set
# CONFIG_SENSORS_SBTSI is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SHT3x is not set
# CONFIG_SENSORS_SHT4x is not set
# CONFIG_SENSORS_SHTC1 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC2305 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 is not set
# CONFIG_SENSORS_STTS751 is not set
# CONFIG_SENSORS_ADC128D818 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA209 is not set
# CONFIG_SENSORS_INA2XX is not set
# CONFIG_SENSORS_INA238 is not set
# CONFIG_SENSORS_INA3221 is not set
# CONFIG_SENSORS_SPD5118 is not set
# CONFIG_SENSORS_TC74 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP103 is not set
# CONFIG_SENSORS_TMP108 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_TMP464 is not set
# CONFIG_SENSORS_TMP513 is not set
# CONFIG_SENSORS_TSC1641 is not set
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83773G is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_XGENE is not set
#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
# CONFIG_SENSORS_ASUS_WMI is not set
# CONFIG_SENSORS_ASUS_EC is not set
# CONFIG_SENSORS_HP_WMI is not set
CONFIG_THERMAL=y
CONFIG_THERMAL_NETLINK=y
# CONFIG_THERMAL_STATISTICS is not set
# CONFIG_THERMAL_DEBUGFS is not set
# CONFIG_THERMAL_CORE_TESTING is not set
CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
CONFIG_THERMAL_HWMON=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 is not set
# CONFIG_PCIE_THERMAL is not set
# 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=y
# CONFIG_WATCHDOG_CORE is not set
# CONFIG_WATCHDOG_NOWAYOUT is not set
CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
CONFIG_WATCHDOG_OPEN_TIMEOUT=0
# CONFIG_WATCHDOG_SYSFS is not set
# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set
#
# Watchdog Pretimeout Governors
#
#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_LENOVO_SE10_WDT is not set
# CONFIG_LENOVO_SE30_WDT is not set
# CONFIG_WDAT_WDT is not set
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_ZIIRAVE_WATCHDOG is not set
# CONFIG_CADENCE_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
# CONFIG_MAX63XX_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ADVANTECH_EC_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_EBC_C384_WDT is not set
# CONFIG_EXAR_WDT is not set
# CONFIG_F71808E_WDT is not set
# CONFIG_SP5100_TCO is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_IBMASR is not set
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
# CONFIG_INTEL_OC_WATCHDOG is not set
# CONFIG_ITCO_WDT is not set
# CONFIG_IT8712F_WDT is not set
# CONFIG_IT87_WDT is not set
# CONFIG_HP_WATCHDOG is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
# CONFIG_NV_TCO is not set
# CONFIG_60XX_WDT is not set
# CONFIG_SMSC_SCH311X_WDT is not set
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_TQMX86_WDT is not set
# CONFIG_VIA_WDT is not set
# CONFIG_W83627HF_WDT is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_SBC_EPX_C3_WATCHDOG is not set
# CONFIG_INTEL_MEI_WDT is not set
# CONFIG_NI903X_WDT is not set
# CONFIG_NIC7018_WDT is not set
#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set
#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG 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_AS3711 is not set
# CONFIG_MFD_SMPRO is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_BD9571MWV is not set
# CONFIG_MFD_AXP20X_I2C is not set
# CONFIG_MFD_CGBC is not set
# CONFIG_MFD_CS40L50_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_DLN2 is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_MFD_MP2629 is not set
# CONFIG_LPC_ICH is not set
# CONFIG_LPC_SCH is not set
# 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_MAX5970 is not set
# CONFIG_MFD_MAX14577 is not set
# CONFIG_MFD_MAX77541 is not set
# CONFIG_MFD_MAX77693 is not set
# CONFIG_MFD_MAX77705 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_NCT6694 is not set
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_SY7636A is not set
# CONFIG_MFD_RDC321X is not set
# 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_BQ257XX is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_TPS6105X 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_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_LM3533 is not set
# CONFIG_MFD_TQMX86 is not set
# CONFIG_MFD_VX855 is not set
# 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
# CONFIG_MFD_UPBOARD_FPGA is not set
# CONFIG_MFD_MAX7360 is not set
# end of Multifunction device drivers
# CONFIG_REGULATOR is not set
# CONFIG_RC_CORE 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_SCREEN_INFO=y
CONFIG_VIDEO=y
# CONFIG_AUXDISPLAY is not set
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_VIA is not set
CONFIG_INTEL_GTT=y
# CONFIG_VGA_SWITCHEROO is not set
CONFIG_DRM=y
#
# DRM debugging options
#
# CONFIG_DRM_DEBUG_MM is not set
# end of DRM debugging options
CONFIG_DRM_MIPI_DSI=y
CONFIG_DRM_KMS_HELPER=y
# CONFIG_DRM_PANIC is not set
CONFIG_DRM_CLIENT_SELECTION=y
#
# Supported DRM clients
#
# CONFIG_DRM_FBDEV_EMULATION is not set
# CONFIG_DRM_CLIENT_LOG is not set
# end of Supported DRM clients
# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
CONFIG_DRM_DISPLAY_HELPER=y
# CONFIG_DRM_DISPLAY_DP_AUX_CEC is not set
# CONFIG_DRM_DISPLAY_DP_AUX_CHARDEV is not set
CONFIG_DRM_DISPLAY_DP_HELPER=y
CONFIG_DRM_DISPLAY_DSC_HELPER=y
CONFIG_DRM_DISPLAY_HDCP_HELPER=y
CONFIG_DRM_DISPLAY_HDMI_HELPER=y
CONFIG_DRM_TTM=y
CONFIG_DRM_BUDDY=y
CONFIG_DRM_GEM_SHMEM_HELPER=y
# CONFIG_DRM_AMDGPU is not set
#
# ARM devices
#
# end of ARM devices
# CONFIG_DRM_AST is not set
CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y
#
# Display Interface Bridges
#
# CONFIG_DRM_I2C_NXP_TDA998X is not set
# CONFIG_DRM_ANALOGIX_ANX78XX is not set
# end of Display Interface Bridges
# CONFIG_DRM_ETNAVIV is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_GUD is not set
# CONFIG_DRM_HISI_HIBMC is not set
CONFIG_DRM_I915=y
CONFIG_DRM_I915_FORCE_PROBE=""
CONFIG_DRM_I915_CAPTURE_ERROR=y
CONFIG_DRM_I915_COMPRESS_ERROR=y
CONFIG_DRM_I915_USERPTR=y
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
# CONFIG_DRM_MGAG200 is not set
# CONFIG_DRM_NOUVEAU is not set
CONFIG_DRM_PANEL=y
#
# Display Panels
#
# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
# end of Display Panels
# CONFIG_DRM_QXL is not set
# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_ST7571 is not set
# CONFIG_DRM_SSD130X is not set
#
# Drivers for system framebuffers
#
# CONFIG_DRM_EFIDRM is not set
# CONFIG_DRM_SIMPLEDRM is not set
# CONFIG_DRM_VESADRM is not set
# end of Drivers for system framebuffers
# CONFIG_DRM_APPLETBDRM is not set
# CONFIG_DRM_BOCHS is not set
# CONFIG_DRM_CIRRUS_QEMU is not set
# CONFIG_DRM_GM12U320 is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_VBOXVIDEO is not set
# CONFIG_DRM_VGEM is not set
CONFIG_DRM_VIRTIO_GPU=y
CONFIG_DRM_VIRTIO_GPU_KMS=y
# CONFIG_DRM_VKMS is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_XE is not set
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
#
# Frame buffer Devices
#
# CONFIG_FB is not set
# end of Frame buffer Devices
#
# Backlight & LCD device support
#
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_AW99706 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_LM3509 is not set
# CONFIG_BACKLIGHT_LM3639 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_HDMI=y
# CONFIG_FIRMWARE_EDID is not set
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_DUMMY_CONSOLE=y
CONFIG_DUMMY_CONSOLE_COLUMNS=80
CONFIG_DUMMY_CONSOLE_ROWS=25
# end of Console display driver support
# CONFIG_TRACE_GPU_MEM is not set
# end of Graphics support
# CONFIG_DRM_ACCEL is not set
CONFIG_SOUND=y
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_HWDEP=y
CONFIG_SND_SEQ_DEVICE=y
CONFIG_SND_JACK=y
CONFIG_SND_JACK_INPUT_DEV=y
# CONFIG_SND_OSSEMUL is not set
CONFIG_SND_PCM_TIMER=y
CONFIG_SND_HRTIMER=y
# CONFIG_SND_DYNAMIC_MINORS is not set
# CONFIG_SND_SUPPORT_OLD_API is not set
CONFIG_SND_PROC_FS=y
CONFIG_SND_VERBOSE_PROCFS=y
CONFIG_SND_CTL_FAST_LOOKUP=y
# CONFIG_SND_DEBUG is not set
# CONFIG_SND_CTL_INPUT_VALIDATION is not set
# CONFIG_SND_UTIMER is not set
CONFIG_SND_VMASTER=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_SEQ_DUMMY=y
CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
# CONFIG_SND_SEQ_UMP is not set
CONFIG_SND_DRIVERS=y
# CONFIG_SND_PCSP is not set
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_ALOOP is not set
# CONFIG_SND_PCMTEST is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ASIHPI is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SE6X is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
#
# HD-Audio
#
CONFIG_SND_HDA=y
CONFIG_SND_HDA_HWDEP=y
# CONFIG_SND_HDA_RECONFIG is not set
# CONFIG_SND_HDA_INPUT_BEEP is not set
# CONFIG_SND_HDA_PATCH_LOADER is not set
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
# CONFIG_SND_HDA_CTL_DEV_ID is not set
CONFIG_SND_HDA_PREALLOC_SIZE=0
CONFIG_SND_HDA_INTEL=y
# CONFIG_SND_HDA_ACPI is not set
# CONFIG_SND_HDA_CODEC_ANALOG is not set
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
# CONFIG_SND_HDA_CODEC_VIA is not set
# CONFIG_SND_HDA_CODEC_CONEXANT is not set
# CONFIG_SND_HDA_CODEC_SENARYTECH is not set
# CONFIG_SND_HDA_CODEC_CA0110 is not set
# CONFIG_SND_HDA_CODEC_CA0132 is not set
# CONFIG_SND_HDA_CODEC_CMEDIA is not set
# CONFIG_SND_HDA_CODEC_CM9825 is not set
# CONFIG_SND_HDA_CODEC_SI3054 is not set
# CONFIG_SND_HDA_GENERIC is not set
# CONFIG_SND_HDA_CODEC_REALTEK is not set
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
# CONFIG_SND_HDA_CODEC_HDMI is not set
CONFIG_SND_HDA_CORE=y
CONFIG_SND_HDA_COMPONENT=y
CONFIG_SND_HDA_I915=y
CONFIG_SND_INTEL_NHLT=y
CONFIG_SND_INTEL_DSP_CONFIG=y
CONFIG_SND_INTEL_SOUNDWIRE_ACPI=y
# end of HD-Audio
CONFIG_SND_USB=y
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_UA101 is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set
# CONFIG_SND_USB_US122L is not set
# CONFIG_SND_USB_US144MKII is not set
# CONFIG_SND_USB_6FIRE is not set
# CONFIG_SND_USB_HIFACE is not set
# CONFIG_SND_BCD2000 is not set
# CONFIG_SND_USB_POD is not set
# CONFIG_SND_USB_PODHD is not set
# CONFIG_SND_USB_TONEPORT is not set
# CONFIG_SND_USB_VARIAX is not set
CONFIG_SND_PCMCIA=y
# CONFIG_SND_VXPOCKET is not set
# CONFIG_SND_PDAUDIOCF is not set
# CONFIG_SND_SOC is not set
CONFIG_SND_X86=y
# CONFIG_HDMI_LPE_AUDIO is not set
# CONFIG_SND_VIRTIO 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
# CONFIG_HID_HAPTIC is not set
#
# Special HID drivers
#
CONFIG_HID_A4TECH=y
# CONFIG_HID_ACCUTOUCH is not set
# CONFIG_HID_ACRUX is not set
CONFIG_HID_APPLE=y
# CONFIG_HID_APPLEIR is not set
# CONFIG_HID_APPLETB_BL is not set
# CONFIG_HID_APPLETB_KBD is not set
# CONFIG_HID_ASUS is not set
# CONFIG_HID_AUREAL is not set
CONFIG_HID_BELKIN=y
# CONFIG_HID_BETOP_FF is not set
# CONFIG_HID_BIGBEN_FF is not set
CONFIG_HID_CHERRY=y
CONFIG_HID_CHICONY=y
# CONFIG_HID_CORSAIR is not set
# CONFIG_HID_COUGAR is not set
# CONFIG_HID_MACALLY is not set
# CONFIG_HID_PRODIKEYS is not set
# CONFIG_HID_CMEDIA is not set
# CONFIG_HID_CREATIVE_SB0540 is not set
CONFIG_HID_CYPRESS=y
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELAN is not set
# CONFIG_HID_ELECOM is not set
# CONFIG_HID_ELO is not set
# CONFIG_HID_EVISION is not set
CONFIG_HID_EZKEY=y
# CONFIG_HID_FT260 is not set
# CONFIG_HID_GEMBIRD is not set
# CONFIG_HID_GFRM is not set
# CONFIG_HID_GLORIOUS is not set
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_GOOGLE_STADIA_FF is not set
# CONFIG_HID_VIVALDI is not set
# CONFIG_HID_GT683R is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_KYSONA is not set
# CONFIG_HID_UCLOGIC 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=y
# CONFIG_HID_ICADE is not set
CONFIG_HID_ITE=y
# CONFIG_HID_JABRA is not set
# CONFIG_HID_TWINHAN is not set
CONFIG_HID_KENSINGTON=y
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LED is not set
# CONFIG_HID_LENOVO is not set
# CONFIG_HID_LETSKETCH is not set
# CONFIG_HID_MAGICMOUSE is not set
# CONFIG_HID_MALTRON is not set
# CONFIG_HID_MAYFLASH is not set
# CONFIG_HID_MEGAWORLD_FF is not set
CONFIG_HID_REDRAGON=y
CONFIG_HID_MICROSOFT=y
CONFIG_HID_MONTEREY=y
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NINTENDO is not set
# CONFIG_HID_NTI is not set
CONFIG_HID_NTRIG=y
# CONFIG_HID_ORTEK is not set
CONFIG_HID_PANTHERLORD=y
CONFIG_PANTHERLORD_FF=y
# CONFIG_HID_PENMOUNT is not set
CONFIG_HID_PETALYNX=y
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PLANTRONICS is not set
# CONFIG_HID_PXRC is not set
# CONFIG_HID_RAPOO is not set
# CONFIG_HID_RAZER is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_RETRODE is not set
# CONFIG_HID_ROCCAT is not set
# CONFIG_HID_SAITEK is not set
CONFIG_HID_SAMSUNG=y
# CONFIG_HID_SEMITEK is not set
# CONFIG_HID_SIGMAMICRO is not set
CONFIG_HID_SONY=y
# CONFIG_SONY_FF is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEAM is not set
# CONFIG_HID_STEELSERIES is not set
CONFIG_HID_SUNPLUS=y
# 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=y
# CONFIG_HID_TOPRE is not set
# CONFIG_HID_THINGM is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_UDRAW_PS3 is not set
# CONFIG_HID_U2FZERO is not set
# CONFIG_HID_UNIVERSAL_PIDFF is not set
# CONFIG_HID_WACOM is not set
# CONFIG_HID_WIIMOTE is not set
# CONFIG_HID_WINWING 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
# CONFIG_HID_MCP2221 is not set
# end of Special HID drivers
#
# HID-BPF support
#
# 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
#
# Intel THC HID Support
#
# CONFIG_INTEL_THC_HID is not set
# end of Intel THC HID Support
#
# USB HID support
#
CONFIG_USB_HID=y
CONFIG_HID_PID=y
CONFIG_USB_HIDDEV=y
# end of USB HID support
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
# CONFIG_USB_LED_TRIG is not set
# CONFIG_USB_ULPI_BUS is not set
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_PCI=y
CONFIG_USB_PCI_AMD=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
# CONFIG_USB_FEW_INIT_RETRIES is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_PRODUCTLIST is not set
# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
CONFIG_USB_AUTOSUSPEND_DELAY=2
CONFIG_USB_DEFAULT_AUTHORIZATION_MODE=1
CONFIG_USB_MON=y
#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
# CONFIG_USB_XHCI_DBGCAP is not set
CONFIG_USB_XHCI_PCI=y
# CONFIG_USB_XHCI_PCI_RENESAS is not set
# CONFIG_USB_XHCI_PLATFORM is not set
# CONFIG_USB_XHCI_SIDEBAND is not set
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_EHCI_PCI=y
# CONFIG_USB_EHCI_FSL is not set
# CONFIG_USB_EHCI_HCD_PLATFORM is not set
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_OHCI_HCD_PCI=y
# CONFIG_USB_OHCI_HCD_PLATFORM is not set
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_TEST_MODE is not set
#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=y
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set
#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=y
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_REALTEK is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
# CONFIG_USB_STORAGE_ENE_UB6250 is not set
# CONFIG_USB_UAS is not set
#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USBIP_CORE is not set
#
# USB dual-mode controller drivers
#
# CONFIG_USB_CDNS_SUPPORT is not set
# CONFIG_USB_MUSB_HDRC is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_DWC2 is not set
# CONFIG_USB_CHIPIDEA is not set
# CONFIG_USB_ISP1760 is not set
#
# USB port drivers
#
# CONFIG_USB_SERIAL is not set
#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_APPLE_MFI_FASTCHARGE is not set
# CONFIG_USB_LJCA is not set
# CONFIG_USB_USBIO is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_EHSET_TEST_FIXTURE is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
# CONFIG_USB_EZUSB_FX2 is not set
# CONFIG_USB_HUB_USB251XB is not set
# CONFIG_USB_HSIC_USB3503 is not set
# CONFIG_USB_HSIC_USB4604 is not set
# CONFIG_USB_LINK_LAYER_TEST is not set
# CONFIG_USB_CHAOSKEY is not set
#
# USB Physical Layer drivers
#
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_ISP1301 is not set
# end of USB Physical Layer drivers
# CONFIG_USB_GADGET is not set
# CONFIG_TYPEC is not set
# CONFIG_USB_ROLE_SWITCH is not set
# CONFIG_MMC is not set
# CONFIG_SCSI_UFSHCD is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
# CONFIG_LEDS_CLASS_FLASH is not set
# CONFIG_LEDS_CLASS_MULTICOLOR is not set
# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set
#
# LED drivers
#
# CONFIG_LEDS_APU is not set
# CONFIG_LEDS_OSRAM_AMS_AS3668 is not set
# CONFIG_LEDS_AW200XX is not set
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3532 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_LP3944 is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA963X is not set
# CONFIG_LEDS_PCA995X is not set
# CONFIG_LEDS_BD2606MVV is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_TLC591XX is not set
# CONFIG_LEDS_LM355x is not set
# CONFIG_LEDS_IS31FL319X is not set
#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
# CONFIG_LEDS_BLINKM is not set
# CONFIG_LEDS_MLXCPLD is not set
# CONFIG_LEDS_MLXREG is not set
# CONFIG_LEDS_USER is not set
# CONFIG_LEDS_NIC78BX is not set
#
# Flash and Torch LED drivers
#
#
# RGB LED drivers
#
#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_DISK is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
# CONFIG_LEDS_TRIGGER_CPU is not set
# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
# CONFIG_LEDS_TRIGGER_CAMERA is not set
# CONFIG_LEDS_TRIGGER_PANIC is not set
# CONFIG_LEDS_TRIGGER_NETDEV is not set
# CONFIG_LEDS_TRIGGER_PATTERN is not set
# CONFIG_LEDS_TRIGGER_TTY is not set
# CONFIG_LEDS_TRIGGER_INPUT_EVENTS is not set
#
# Simatic LED drivers
#
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC_ATOMIC_SCRUB=y
CONFIG_EDAC_SUPPORT=y
CONFIG_RTC_LIB=y
CONFIG_RTC_MC146818_LIB=y
CONFIG_RTC_CLASS=y
# CONFIG_RTC_HCTOSYS is not set
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
# CONFIG_RTC_DEBUG 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 is not set
#
# 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_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_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_RX8111 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_SD2405AL 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_PCF85063 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
# CONFIG_RTC_DRV_GOLDFISH is not set
#
# HID Sensor RTC drivers
#
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set
#
# DMA Devices
#
CONFIG_DMA_ENGINE=y
CONFIG_DMA_VIRTUAL_CHANNELS=y
CONFIG_DMA_ACPI=y
# CONFIG_ALTERA_MSGDMA is not set
# CONFIG_INTEL_IDMA64 is not set
# CONFIG_INTEL_IDXD is not set
# CONFIG_INTEL_IDXD_COMPAT is not set
# CONFIG_INTEL_IOATDMA is not set
# CONFIG_PLX_DMA is not set
# CONFIG_XILINX_DMA is not set
# CONFIG_XILINX_XDMA is not set
# CONFIG_AMD_PTDMA is not set
# CONFIG_AMD_QDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
# CONFIG_QCOM_HIDMA is not set
CONFIG_DW_DMAC_CORE=y
# CONFIG_DW_DMAC is not set
# CONFIG_DW_DMAC_PCI is not set
# CONFIG_DW_EDMA is not set
CONFIG_HSU_DMA=y
# CONFIG_SF_PDMA is not set
# CONFIG_INTEL_LDMA is not set
#
# DMA Clients
#
# CONFIG_ASYNC_TX_DMA is not set
# CONFIG_DMATEST 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
# end of DMABUF options
# CONFIG_UIO is not set
# CONFIG_VFIO is not set
# CONFIG_VIRT_DRIVERS 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=y
# CONFIG_VIRTIO_MMIO is not set
CONFIG_VIRTIO_DMA_SHARED_BUFFER=y
# CONFIG_VIRTIO_DEBUG is not set
# CONFIG_VIRTIO_RTC is not set
# CONFIG_VDPA is not set
CONFIG_VHOST_MENU=y
# CONFIG_VHOST_NET is not set
# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
CONFIG_VHOST_ENABLE_FORK_OWNER_CONTROL=y
#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
# end of Microsoft Hyper-V guest support
# CONFIG_GREYBUS is not set
# CONFIG_COMEDI is not set
# CONFIG_GPIB is not set
# CONFIG_STAGING is not set
# CONFIG_GOLDFISH 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_PRO3_BUTTON is not set
CONFIG_X86_PLATFORM_DEVICES=y
CONFIG_WMI_BMOF=y
# CONFIG_HUAWEI_WMI is not set
# CONFIG_X86_PLATFORM_DRIVERS_UNIWILL is not set
# CONFIG_MXM_WMI is not set
# CONFIG_NVIDIA_WMI_EC_BACKLIGHT is not set
# CONFIG_XIAOMI_WMI is not set
# CONFIG_REDMI_WMI is not set
# CONFIG_GIGABYTE_WMI is not set
# CONFIG_ACERHDF is not set
# CONFIG_ACER_WIRELESS is not set
# CONFIG_ACER_WMI is not set
#
# AMD HSMP Driver
#
# CONFIG_AMD_HSMP_ACPI is not set
# CONFIG_AMD_HSMP_PLAT is not set
# end of AMD HSMP Driver
# CONFIG_AMD_PMC is not set
# CONFIG_AMD_HFI is not set
# CONFIG_AMD_3D_VCACHE is not set
# CONFIG_AMD_WBRF is not set
# CONFIG_AMD_ISP_PLATFORM 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_WMI is not set
# CONFIG_AYANEO_EC is not set
CONFIG_EEEPC_LAPTOP=y
# CONFIG_X86_PLATFORM_DRIVERS_DELL is not set
# CONFIG_AMILO_RFKILL 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_SENSORS_HDAPS 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_EHL_PSE_IO is not set
# CONFIG_INTEL_OAKTRAIL 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_IDEAPAD_LAPTOP is not set
# CONFIG_LENOVO_WMI_HOTKEY_UTILITIES is not set
# CONFIG_LENOVO_WMI_CAMERA is not set
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_THINKPAD_LMI is not set
# CONFIG_YOGABOOK is not set
# CONFIG_LENOVO_WMI_GAMEZONE is not set
# CONFIG_LENOVO_WMI_TUNING is not set
# CONFIG_ACPI_QUICKSTART is not set
# CONFIG_MSI_EC is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_MSI_WMI is not set
# CONFIG_MSI_WMI_PLATFORM is not set
# CONFIG_SAMSUNG_GALAXYBOOK 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_COMPAL_LAPTOP is not set
# CONFIG_LG_LAPTOP is not set
# CONFIG_PANASONIC_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_SYSTEM76_ACPI is not set
# CONFIG_TOPSTAR_LAPTOP is not set
# CONFIG_SERIAL_MULTI_INSTANTIATE is not set
# CONFIG_INSPUR_PLATFORM_PROFILE is not set
# CONFIG_DASHARO_ACPI 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_OXP_EC is not set
# CONFIG_TUXEDO_NB04_WMI_AB is not set
CONFIG_P2SB=y
CONFIG_ACPI_WMI=y
# CONFIG_ACPI_WMI_LEGACY_DEVICE_NAMES is not set
# CONFIG_COMMON_CLK 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_IOMMU_SVA=y
CONFIG_IOMMU_IOPF=y
CONFIG_AMD_IOMMU=y
CONFIG_DMAR_TABLE=y
CONFIG_INTEL_IOMMU=y
# CONFIG_INTEL_IOMMU_SVM is not set
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON=y
CONFIG_INTEL_IOMMU_PERF_EVENTS=y
# CONFIG_IOMMUFD is not set
# CONFIG_IRQ_REMAP is not set
# CONFIG_VIRTIO_IOMMU is not set
CONFIG_GENERIC_PT=y
# CONFIG_DEBUG_GENERIC_PT is not set
CONFIG_IOMMU_PT=y
CONFIG_IOMMU_PT_AMDV1=y
CONFIG_IOMMU_PT_VTDSS=y
CONFIG_IOMMU_PT_X86_64=y
#
# 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
#
# 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
#
CONFIG_IRQ_MSI_LIB=y
# 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_USB_LGM_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 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 is not set
CONFIG_FS_IOMAP=y
CONFIG_BUFFER_HEAD=y
CONFIG_LEGACY_DIRECT_IO=y
# CONFIG_EXT2_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT2=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# 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_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 is not set
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
# CONFIG_FANOTIFY is not set
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_QUOTA_DEBUG is not set
CONFIG_QUOTA_TREE=y
# CONFIG_QFMT_V1 is not set
CONFIG_QFMT_V2=y
CONFIG_QUOTACTL=y
CONFIG_AUTOFS_FS=y
# CONFIG_FUSE_FS is not set
# CONFIG_OVERLAY_FS is not set
#
# Caches
#
CONFIG_NETFS_SUPPORT=y
# CONFIG_NETFS_STATS is not set
# CONFIG_NETFS_DEBUG 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 is not set
# 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_EXFAT_FS is not set
# CONFIG_NTFS3_FS is not set
# CONFIG_NTFS_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_ARCH_SUPPORTS_HUGETLBFS=y
CONFIG_HUGETLBFS=y
# CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON is not set
CONFIG_HUGETLB_PAGE=y
CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y
CONFIG_HUGETLB_PMD_PAGE_TABLE_SHARING=y
CONFIG_ARCH_HAS_GIGANTIC_PAGE=y
CONFIG_CONFIGFS_FS=y
CONFIG_EFIVAR_FS=m
# 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_UFS_FS is not set
# CONFIG_EROFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
# CONFIG_NFS_V2 is not set
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
# CONFIG_NFS_SWAP is not set
# CONFIG_NFS_V4_0 is not set
# CONFIG_NFS_V4_2 is not set
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_ROOT_NFS=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_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_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_SUNRPC_BACKCHANNEL=y
CONFIG_RPCSEC_GSS_KRB5=y
# 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=y
# 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=y
CONFIG_NLS_ISO8859_1=y
# 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=y
# CONFIG_DLM 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_BIG_KEYS 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_PROC_MEM_ALWAYS_FORCE=y
# CONFIG_PROC_MEM_FORCE_PTRACE is not set
# CONFIG_PROC_MEM_NO_FORCE is not set
# CONFIG_MSEAL_SYSTEM_MAPPINGS is not set
CONFIG_SECURITY=y
CONFIG_HAS_SECURITY_AUDIT=y
CONFIG_SECURITYFS=y
CONFIG_SECURITY_NETWORK=y
# CONFIG_SECURITY_NETWORK_XFRM is not set
# CONFIG_SECURITY_PATH is not set
# CONFIG_INTEL_TXT is not set
CONFIG_LSM_MMAP_MIN_ADDR=65536
# CONFIG_STATIC_USERMODEHELPER is not set
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9
CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256
CONFIG_SECURITY_SELINUX_AVC_HASH_BITS=9
# CONFIG_SECURITY_SELINUX_DEBUG 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_SECURITY_IPE is not set
CONFIG_INTEGRITY=y
# CONFIG_INTEGRITY_SIGNATURE is not set
CONFIG_INTEGRITY_AUDIT=y
# CONFIG_IMA is not set
# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set
# CONFIG_EVM is not set
CONFIG_DEFAULT_SECURITY_SELINUX=y
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,selinux,smack,tomoyo,apparmor,ipe,bpf"
#
# Kernel hardening options
#
#
# Memory initialization
#
CONFIG_INIT_STACK_NONE=y
# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
# end of Memory initialization
#
# Bounds checking
#
CONFIG_FORTIFY_SOURCE=y
CONFIG_HARDENED_USERCOPY=y
CONFIG_HARDENED_USERCOPY_DEFAULT_ON=y
# end of Bounds checking
#
# Hardening of kernel data structures
#
# CONFIG_LIST_HARDENED is not set
# 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_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_SIG=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_NULL is not set
# CONFIG_CRYPTO_PCRYPT is not set
# CONFIG_CRYPTO_CRYPTD is not set
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_KRB5ENC is not set
# CONFIG_CRYPTO_BENCHMARK 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_MLDSA is not set
# end of Public-key cryptography
#
# Block ciphers
#
CONFIG_CRYPTO_AES=y
# 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_SERPENT is not set
# CONFIG_CRYPTO_SM4_GENERIC 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_CHACHA20 is not set
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_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=y
CONFIG_CRYPTO_GCM=y
CONFIG_CRYPTO_GENIV=y
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=y
# CONFIG_CRYPTO_ESSIV is not set
# end of AEAD (authenticated encryption with associated data) ciphers
#
# Hashes, digests, and MACs
#
# CONFIG_CRYPTO_BLAKE2B is not set
CONFIG_CRYPTO_CMAC=y
CONFIG_CRYPTO_GHASH=y
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_MD4 is not set
# CONFIG_CRYPTO_MD5 is not set
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_SHA1 is not set
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_WP512 is not set
# CONFIG_CRYPTO_XCBC is not set
# CONFIG_CRYPTO_XXHASH is not set
# end of Hashes, digests, and MACs
#
# CRCs (cyclic redundancy checks)
#
# CONFIG_CRYPTO_CRC32C is not set
# CONFIG_CRYPTO_CRC32 is not set
# end of CRCs (cyclic redundancy checks)
#
# Compression
#
# CONFIG_CRYPTO_DEFLATE is not set
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_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_HASH is not set
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
# CONFIG_CRYPTO_USER_API_RNG is not set
# CONFIG_CRYPTO_USER_API_AEAD is not set
# end of Userspace interface
#
# Accelerated Cryptographic Algorithms for CPU (x86)
#
# 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_AEGIS128_AESNI_SSE2 is not set
# CONFIG_CRYPTO_SM3_AVX_X86_64 is not set
# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set
# end of Accelerated Cryptographic Algorithms for CPU (x86)
CONFIG_CRYPTO_HW=y
# CONFIG_CRYPTO_DEV_PADLOCK 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_6XXX 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_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_CRYPTO_KRB5 is not set
CONFIG_BINARY_PRINTF=y
#
# Library routines
#
# 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_IOMAP=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_ARCH_USE_SYM_ANNOTATIONS=y
CONFIG_CRC16=y
CONFIG_CRC_CCITT=y
CONFIG_CRC32=y
CONFIG_CRC32_ARCH=y
CONFIG_CRC_OPTIMIZATIONS=y
#
# Crypto library routines
#
CONFIG_CRYPTO_HASH_INFO=y
CONFIG_CRYPTO_LIB_UTILS=y
CONFIG_CRYPTO_LIB_AES=y
CONFIG_CRYPTO_LIB_AES_ARCH=y
CONFIG_CRYPTO_LIB_ARC4=y
CONFIG_CRYPTO_LIB_GF128MUL=y
CONFIG_CRYPTO_LIB_BLAKE2S_ARCH=y
CONFIG_CRYPTO_LIB_MD5=y
CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
CONFIG_CRYPTO_LIB_SHA1=y
CONFIG_CRYPTO_LIB_SHA1_ARCH=y
CONFIG_CRYPTO_LIB_SHA256=y
CONFIG_CRYPTO_LIB_SHA256_ARCH=y
CONFIG_CRYPTO_LIB_SHA512=y
CONFIG_CRYPTO_LIB_SHA512_ARCH=y
CONFIG_CRYPTO_LIB_SHA3=y
# end of Crypto library routines
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_LZ4_DECOMPRESS=y
CONFIG_ZSTD_COMMON=y
CONFIG_ZSTD_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_ARM64=y
CONFIG_XZ_DEC_SPARC=y
CONFIG_XZ_DEC_RISCV=y
# CONFIG_XZ_DEC_MICROLZMA is not set
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_DECOMPRESS_ZSTD=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_INTERVAL_TREE=y
CONFIG_XARRAY_MULTI=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_DMA_OPS_HELPERS=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_NEED_SYNC=y
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_DMA_MAP_BENCHMARK is not set
CONFIG_SGL_ALLOC=y
CONFIG_CHECK_SIGNATURE=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
CONFIG_NLATTR=y
CONFIG_CLZ_TAB=y
# CONFIG_IRQ_POLL is not set
CONFIG_MPILIB=y
CONFIG_DIMLIB=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_HAVE_GENERIC_VDSO=y
CONFIG_GENERIC_GETTIMEOFDAY=y
CONFIG_GENERIC_VDSO_OVERFLOW_PROTECT=y
CONFIG_VDSO_GETRANDOM=y
CONFIG_FONT_SUPPORT=y
CONFIG_FONT_8x16=y
CONFIG_FONT_AUTOSELECT=y
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
CONFIG_UNION_FIND=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 is not set
# CONFIG_DYNAMIC_DEBUG is not set
# CONFIG_DYNAMIC_DEBUG_CORE is not set
CONFIG_SYMBOLIC_ERRNAME=y
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_BUGVERBOSE_DETAILED is not set
# 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_PAHOLE_HAS_LANG_EXCLUDE=y
# CONFIG_GDB_SCRIPTS is not set
CONFIG_FRAME_WARN=2048
# 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_OBJTOOL=y
# CONFIG_OBJTOOL_WERROR is not set
CONFIG_NOINSTR_VALIDATION=y
# 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_ALLOW_NONE is not set
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_ARCH_HAS_UBSAN=y
# CONFIG_UBSAN is not set
CONFIG_HAVE_ARCH_KCSAN=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
# CONFIG_DEBUG_NET_SMALL_RTNL is not set
# end of Networking Debugging
#
# Memory Debugging
#
# CONFIG_PAGE_EXTENSION is not set
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_SLUB_DEBUG=y
# CONFIG_SLUB_DEBUG_ON is not set
CONFIG_SLUB_RCU_DEBUG=y
# CONFIG_PAGE_OWNER is not set
# CONFIG_PAGE_TABLE_CHECK is not set
# CONFIG_PAGE_POISONING is not set
# CONFIG_DEBUG_PAGE_REF is not set
# CONFIG_DEBUG_RODATA_TEST is not set
CONFIG_ARCH_HAS_DEBUG_WX=y
CONFIG_DEBUG_WX=y
CONFIG_ARCH_HAS_PTDUMP=y
CONFIG_PTDUMP=y
# CONFIG_PTDUMP_DEBUGFS is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
# CONFIG_PER_VMA_LOCK_STATS is not set
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_SHRINKER_DEBUG is not set
CONFIG_DEBUG_STACK_USAGE=y
# CONFIG_SCHED_STACK_END_CHECK is not set
CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y
# CONFIG_DEBUG_VFS is not set
CONFIG_DEBUG_VM_IRQSOFF=y
CONFIG_DEBUG_VM=y
# CONFIG_DEBUG_VM_MAPLE_TREE is not set
# CONFIG_DEBUG_VM_RB is not set
# CONFIG_DEBUG_VM_PGFLAGS is not set
# CONFIG_DEBUG_VM_PGTABLE is not set
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
# CONFIG_DEBUG_VIRTUAL is not set
CONFIG_DEBUG_MEMORY_INIT=y
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_ARCH_SUPPORTS_KMAP_LOCAL_FORCE_MAP=y
# CONFIG_DEBUG_KMAP_LOCAL_FORCE_MAP is not set
# CONFIG_MEM_ALLOC_PROFILING 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 is not set
CONFIG_KASAN_INLINE=y
CONFIG_KASAN_STACK=y
# CONFIG_KASAN_VMALLOC 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 is not set
#
# Debug Oops, Lockups and Hangs
#
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_TIMEOUT=0
CONFIG_LOCKUP_DETECTOR=y
CONFIG_SOFTLOCKUP_DETECTOR=y
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
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=140
CONFIG_BOOTPARAM_HUNG_TASK_PANIC=0
CONFIG_DETECT_HUNG_TASK_BLOCKER=y
CONFIG_WQ_WATCHDOG=y
CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
# 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_INFO=y
CONFIG_SCHEDSTATS=y
# end of Scheduler Debugging
# CONFIG_DEBUG_PREEMPT is not set
# CONFIG_DEBUG_ATOMIC is not set
#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_LOCK_DEBUGGING_SUPPORT=y
CONFIG_PROVE_LOCKING=y
CONFIG_PROVE_RAW_LOCK_NESTING=y
# CONFIG_LOCK_STAT is not set
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 is not set
# 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_DEBUG_KOBJECT is not set
#
# Debug kernel data structures
#
# CONFIG_DEBUG_LIST is not set
# CONFIG_DEBUG_PLIST is not set
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS 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=100
CONFIG_RCU_EXP_CPU_STALL_TIMEOUT=0
# CONFIG_RCU_CPU_STALL_CPUTIME is not set
CONFIG_RCU_TRACE=y
# CONFIG_RCU_EQS_DEBUG is not set
# end of RCU Debugging
# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
# CONFIG_LATENCYTOP is not set
# 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_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_FTRACE_REGS_HAVING_PT_REGS=y
CONFIG_HAVE_DYNAMIC_FTRACE_NO_PATCHABLE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_JMP=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_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_TRACEFS_AUTOMOUNT_DEPRECATED=y
# CONFIG_BOOTTIME_TRACING is not set
# CONFIG_FUNCTION_TRACER is not set
# CONFIG_STACK_TRACER is not set
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_PREEMPT_TRACER is not set
# CONFIG_SCHED_TRACER is not set
# CONFIG_HWLAT_TRACER is not set
# CONFIG_OSNOISE_TRACER is not set
# CONFIG_TIMERLAT_TRACER is not set
# CONFIG_MMIOTRACE is not set
# CONFIG_FTRACE_SYSCALLS is not set
# CONFIG_TRACER_SNAPSHOT is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_KPROBE_EVENTS=y
CONFIG_UPROBE_EVENTS=y
CONFIG_EPROBE_EVENTS=y
CONFIG_DYNAMIC_EVENTS=y
CONFIG_PROBE_EVENTS=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_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS 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 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 is not set
#
# x86 Debugging
#
CONFIG_EARLY_PRINTK_USB=y
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
# CONFIG_EARLY_PRINTK_USB_XDBC is not set
# CONFIG_EFI_PGT_DUMP 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=y
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEBUG_BOOT_PARAMS=y
# CONFIG_CPA_DEBUG is not set
CONFIG_DEBUG_ENTRY=y
# CONFIG_DEBUG_NMI_SELFTEST is not set
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 is not set
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
# CONFIG_FUNCTION_ERROR_INJECTION is not set
# CONFIG_FAULT_INJECTION is not set
CONFIG_ARCH_HAS_KCOV=y
CONFIG_KCOV=y
CONFIG_KCOV_ENABLE_COMPARISONS=y
CONFIG_KCOV_INSTRUMENT_ALL=y
CONFIG_KCOV_IRQ_AREA_SIZE=0x40000
# CONFIG_KCOV_SELFTEST is not set
CONFIG_RUNTIME_TESTING_MENU=y
# CONFIG_TEST_DHRY is not set
# CONFIG_LKDTM is not set
# CONFIG_TEST_DIV64 is not set
# CONFIG_TEST_MULDIV64 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_TEST_HEXDUMP is not set
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_TEST_BITMAP 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 is not set
# CONFIG_TEST_BPF is not set
# CONFIG_FIND_BIT_BENCHMARK is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_SYSCTL is not set
# CONFIG_TEST_UDELAY is not set
# CONFIG_TEST_STATIC_KEYS is not set
# CONFIG_TEST_KMOD is not set
# CONFIG_TEST_KALLSYMS is not set
# CONFIG_TEST_MEMCAT_P is not set
# CONFIG_TEST_MEMINIT is not set
# CONFIG_TEST_FREE_PAGES 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
CONFIG_IO_URING_BPF=y
^ permalink raw reply
* [PATCH] mm/slab: fix an incorrect check in obj_exts_alloc_size()
From: Harry Yoo @ 2026-03-09 7:22 UTC (permalink / raw)
To: harry.yoo
Cc: adilger.kernel, akpm, cgroups, hannes, hao.li, linux-ext4,
linux-fsdevel, linux-kernel, linux-mm, shicenci, vbabka, cl,
rientjes, roman.gushchin, viro, surenb, stable
In-Reply-To: <aa5NmA25QsFDMhof@hyeyoo>
obj_exts_alloc_size() prevents recursive allocation of slabobj_ext
array from the same cache, to avoid creating slabs that are never freed.
There is one mistake that returns the original size when memory
allocation profiling is disabled. The assumption was that
memcg-triggered slabobj_ext allocation is always served from
KMALLOC_CGROUP type. But this is wrong [1]: when the caller specifies
both __GFP_RECLAIMABLE and __GFP_ACCOUNT with SLUB_TINY enabled, the
allocation is served from normal kmalloc. This is because kmalloc_type()
prioritizes __GFP_RECLAIMABLE over __GFP_ACCOUNT, and SLUB_TINY aliases
KMALLOC_RECLAIM with KMALLOC_NORMAL.
As a result, the recursion guard is bypassed and the problematic slabs
can be created. Fix this by removing the mem_alloc_profiling_enabled()
check entirely. The remaining is_kmalloc_normal() check is still
sufficient to detect whether the cache is of KMALLOC_NORMAL type and
avoid bumping the size if it's not.
Without SLUB_TINY, no functional change intended.
With SLUB_TINY, allocations with __GFP_ACCOUNT|__GFP_RECLAIMABLE
now allocate a larger array if the sizes equal.
Reported-by: Zw Tang <shicenci@gmail.com>
Fixes: 280ea9c3154b ("mm/slab: avoid allocating slabobj_ext array from its own slab")
Closes: https://lore.kernel.org/linux-mm/CAPHJ_VKuMKSke8b11AZQw1PTSFN4n2C0gFxC6xGOG0ZLHgPmnA@mail.gmail.com [1]
Cc: stable@vger.kernel.org
Signed-off-by: Harry Yoo <harry.yoo@oracle.com>
---
Zw Tang, could you please confirm that the warning disappears
on your test environment, with this patch applied?
mm/slub.c | 7 -------
1 file changed, 7 deletions(-)
diff --git a/mm/slub.c b/mm/slub.c
index 20cb4f3b636d..6371838d2352 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -2119,13 +2119,6 @@ static inline size_t obj_exts_alloc_size(struct kmem_cache *s,
size_t sz = sizeof(struct slabobj_ext) * slab->objects;
struct kmem_cache *obj_exts_cache;
- /*
- * slabobj_ext array for KMALLOC_CGROUP allocations
- * are served from KMALLOC_NORMAL caches.
- */
- if (!mem_alloc_profiling_enabled())
- return sz;
-
if (sz > KMALLOC_MAX_CACHE_SIZE)
return sz;
base-commit: 6432f15c818cb30eec7c4ca378ecdebd9796f741
--
2.43.0
^ permalink raw reply related
* Re: [BUG] WARNING in alloc_slab_obj_exts triggered by __d_alloc
From: Harry Yoo @ 2026-03-09 4:33 UTC (permalink / raw)
To: Zw Tang
Cc: Vlastimil Babka, Andrew Morton, linux-mm, linux-kernel,
linux-fsdevel, linux-ext4, cgroups, Johannes Weiner,
Alexander Viro, Andreas Dilger, Hao Li
In-Reply-To: <CAPHJ_VKuMKSke8b11AZQw1PTSFN4n2C0gFxC6xGOG0ZLHgPmnA@mail.gmail.com>
On Mon, Mar 09, 2026 at 11:14:58AM +0800, Zw Tang wrote:
> Hi,
>
> I encountered a WARNING in alloc_slab_obj_exts() while running a
> syzkaller-generated reproducer on Linux 7.0-rc2.
>
> The warning is triggered during dentry allocation (__d_alloc) after
> mounting a crafted ext4 filesystem image.
>
> Kernel
> git tree: torvalds/linux
> commit: 0031c06807cfa8aa51a759ff8aa09e1aa48149af
> kernel version:Linux 7.0.0-rc2-00057-g0031c06807cf
> hardware: QEMU Ubuntu 24.10
>
> I was able to reproduce this issue reliably using the attached
> reproducer.
Hi, thanks for the report!
> Reproducer:
> C reproducer: https://pastebin.com/raw/eHjm2Aw6
> console output: https://pastebin.com/raw/FQAhquTy
> kernel config: pastebin.com/raw/CnHdTQNm
a few notable config options:
CONFIG_SLUB_TINY=y (which implies KMALLOC_RECLAIM = KMALLOC_NORMAL)
# CONFIG_MEM_ALLOC_PROFILING is not set
CONFIG_MEMCG=y
and also random kmalloc cache feature is not enabled.
> The warning originates from:
>
> mm/slub.c:2189
>
> Call trace:
>
> WARNING: mm/slub.c:2189 at alloc_slab_obj_exts+0x132/0x180
> CPU: 0 UID: 0 PID: 699 Comm: syz.0.118
The triggered warning is:
VM_WARN_ON_ONCE(virt_to_slab(vec) != NULL &&
virt_to_slab(vec)->slab_cache == s);
which means we may be creating a never-freed slab due to recursion.
obj_exts_alloc_size() is supposed to prevent this but it didn't.
Let's see why.
> Call Trace:
> <TASK>
> __memcg_slab_post_alloc_hook+0x130/0x460 mm/memcontrol.c:3234
> memcg_slab_post_alloc_hook mm/slub.c:2464 [inline]
> slab_post_alloc_hook.constprop.0+0x9c/0xf0 mm/slub.c:4526
> slab_alloc_node.constprop.0+0xaa/0x160 mm/slub.c:4844
> __do_kmalloc_node mm/slub.c:5237 [inline]
> __kmalloc_noprof+0x82/0x200 mm/slub.c:5250
> kmalloc_noprof include/linux/slab.h:954 [inline]
> __d_alloc+0x235/0x2f0 fs/dcache.c:1757
The gfp flag used by __d_alloc() is
GFP_KERNEL_ACCOUNT | __GFP_RECLAIMABLE.
Looking at kmalloc_type(), when both __GFP_RECLAIMABLE and __GFP_ACCOUNT
flags are specified, __GFP_RECLAIMABLE has a higher priority.
That said, obj_exts_alloc_size() needs to handle CONFIG_SLUB_TINY
(KMALLOC_RECLAIM = KMALLOC_NORMAL) properly.
in obj_exts_alloc_size():
> /*
> * slabobj_ext array for KMALLOC_CGROUP allocations
> * are served from KMALLOC_NORMAL caches.
> */
> if (!mem_alloc_profiling_enabled())
> return sz;
I added this just to make sure we're not pessimizing when memory
profiling is not enabled. It turns out this part is incorrect,
and actually, redundant.
When memcg requested allocation, the snippet assumes that it would be
KMALLOC_CGROUP, but it turns out there is an exception:
SLUB_TINY with __GFP_ACCOUNT and __GFP_RECLAIMABLE specified.
This should be properly handled by:
> if (!is_kmalloc_normal(s))
> return sz;
I think this should work:
diff --git a/mm/slub.c b/mm/slub.c
index 0c906fefc31b..4759fe6aa60e 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -2119,13 +2119,6 @@ static inline size_t obj_exts_alloc_size(struct kmem_cache *s,
size_t sz = sizeof(struct slabobj_ext) * slab->objects;
struct kmem_cache *obj_exts_cache;
- /*
- * slabobj_ext array for KMALLOC_CGROUP allocations
- * are served from KMALLOC_NORMAL caches.
- */
- if (!mem_alloc_profiling_enabled())
- return sz;
-
if (sz > KMALLOC_MAX_CACHE_SIZE)
return sz;
> d_alloc_pseudo+0x1d/0x70 fs/dcache.c:1871
> alloc_path_pseudo fs/file_table.c:364 [inline]
> alloc_file_pseudo+0x64/0x140 fs/file_table.c:380
> __shmem_file_setup+0x136/0x270 mm/shmem.c:5863
> memfd_alloc_file+0x81/0x240 mm/memfd.c:471
> __do_sys_memfd_create mm/memfd.c:522 [inline]
> __se_sys_memfd_create mm/memfd.c:505 [inline]
> __x64_sys_memfd_create+0x205/0x440 mm/memfd.c:505
> do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
> do_syscall_64+0x11d/0x5a0 arch/x86/entry/syscall_64.c:94
> entry_SYSCALL_64_after_hwframe+0x4b/0x53
>
> The issue happens after mounting an ext4 filesystem image via a loop
> device created from a compressed image in the reproducer.
>
> Relevant kernel messages:
>
> EXT4-fs (loop0): mounted filesystem
> 00000000-0000-0000-0000-000000000000 r/w without journal.
> EXT4-fs (loop3): Delayed block allocation failed for inode 18 at
> logical offset 768 with max blocks 2 with error 28
> EXT4-fs (loop3): This should not happen!! Data will be lost
>
> The WARNING occurs in alloc_slab_obj_exts(), which is related to slab
> object extension allocation.
>
> This may indicate a slab metadata inconsistency triggered by the
> filesystem state.
>
> Please let me know if additional debugging information would help.
>
> Thanks.
> Zw Tang
--
Cheers,
Harry / Hyeonggon
^ permalink raw reply related
* [BUG] Warning in ext4_check_map_extents_env
From: Pedro Demarchi Gomes @ 2026-03-09 4:26 UTC (permalink / raw)
To: linux-ext4
Hi,
The warning below occurs when running selftests/mm/merge on a kernel built
with CONFIG_EXT4_DEBUG=y.
syzkaller login: [ 29.277674] ------------[ cut here ]------------
[ 29.279636] WARNING: fs/ext4/inode.c:436 at ext4_check_map_extents_env+0x389/0x440, CPU#1: merge/365
[ 29.282459] Modules linked in:
[ 29.283497] CPU: 1 UID: 0 PID: 365 Comm: merge Not tainted 7.0.0-rc3 #59 PREEMPT(full)
[ 29.285999] Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
[ 29.288850] RIP: 0010:ext4_check_map_extents_env+0x389/0x440
[ 29.290653] Code: ff 48 89 da 48 b8 00 00 00 00 00 fc ff df 48 c1 ea 03 80 3c 02 00 0f 85 87 00 00 00 48 8b 45 18 48 85 c0 0f 85 2e fd ff ff 90 <0f> 0b 90 e9 25 fd ff ff e8 8a 2e ca ff e9 e4 fc ff ff 48 89 df e8
[ 29.296623] RSP: 0018:ffff88811876f2a8 EFLAGS: 00010246
[ 29.298288] RAX: 0000000000000000 RBX: ffff888106c66798 RCX: ffffffff81e8ad60
[ 29.300529] RDX: 1ffff11020d8ccf3 RSI: 0000000000000008 RDI: ffff888106c66798
[ 29.302748] RBP: ffff888106c66780 R08: 0000000000000000 R09: ffffed1020d8ccf3
[ 29.305009] R10: ffff888106c6679f R11: 0000000000000001 R12: 00000000001e0c26
[ 29.307226] R13: ffff88811876f494 R14: ffff88811876f498 R15: ffff88811876f488
[ 29.309477] FS: 00007fbe82723780(0000) GS:ffff8883c38aa000(0000) knlGS:0000000000000000
[ 29.312085] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 29.313749] CR2: 00007fbe82790915 CR3: 000000011880e000 CR4: 00000000000006f0
[ 29.315643] Call Trace:
[ 29.316170] <TASK>
[ 29.316539] ext4_map_blocks+0x602/0xb40
[ 29.317204] ? __pfx_ext4_map_blocks+0x10/0x10
[ 29.317971] ? __pfx_stack_trace_save+0x10/0x10
[ 29.318719] ? __filemap_add_folio+0x66f/0xb30
[ 29.319500] ext4_mpage_readpages.constprop.0.isra.0+0x918/0xe20
[ 29.320501] ? __pfx_ext4_mpage_readpages.constprop.0.isra.0+0x10/0x10
[ 29.321602] ? filemap_add_folio+0x11e/0x2c0
[ 29.322325] ? __pfx_ext4_read_folio+0x10/0x10
[ 29.323107] ext4_read_folio+0xd9/0x230
[ 29.323762] ? __pfx_ext4_read_folio+0x10/0x10
[ 29.324552] ? __pfx_ext4_read_folio+0x10/0x10
[ 29.325321] filemap_read_folio+0x43/0x150
[ 29.326041] do_read_cache_folio+0x1b1/0x320
[ 29.326759] read_cache_page+0x46/0x120
[ 29.327426] install_breakpoint+0x27d/0x810
[ 29.328123] uprobe_mmap+0x439/0xeb0
[ 29.328715] ? __pfx_uprobe_mmap+0x10/0x10
[ 29.329391] __mmap_region+0x8af/0x2290
[ 29.330074] ? __pfx___mmap_region+0x10/0x10
[ 29.330793] ? unwind_get_return_address+0x59/0xa0
[ 29.331630] ? event_sched_in+0x33f/0xaf0
[ 29.332308] ? perf_event_groups_next+0x9a/0x200
[ 29.333667] ? mm_get_unmapped_area_vmflags+0x6c/0xe0
[ 29.335295] ? mmap_region+0xd3/0x2b0
[ 29.336171] do_mmap+0x98a/0xec0
[ 29.336713] ? ipe_mmap_file+0xcf/0xe0
[ 29.337340] ? __pfx_do_mmap+0x10/0x10
[ 29.337977] ? __pfx_down_write_killable+0x10/0x10
[ 29.338757] ? __pfx_mutex_unlock+0x10/0x10
[ 29.339477] vm_mmap_pgoff+0x1b2/0x310
[ 29.340114] ? __pfx_vm_mmap_pgoff+0x10/0x10
[ 29.340819] ? __pfx___do_sys_perf_event_open+0x10/0x10
[ 29.341688] ? fget+0x189/0x230
[ 29.342223] ksys_mmap_pgoff+0x2b1/0x5b0
[ 29.342868] ? __pfx_ksys_mmap_pgoff+0x10/0x10
[ 29.343618] do_syscall_64+0xe2/0x560
[ 29.344246] entry_SYSCALL_64_after_hwframe+0x77/0x7f
[ 29.345105] RIP: 0033:0x7fbe82832de2
[ 29.345707] Code: 00 00 00 0f 1f 44 00 00 41 f7 c1 ff 0f 00 00 75 27 55 89 cd 53 48 89 fb 48 85 ff 74 3b 41 89 ea 48 89 df b8 09 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 76 5b 5d c3 0f 1f 00 48 8b 05 f9 8f 0d 00 64
[ 29.348851] RSP: 002b:00007ffd535f3b38 EFLAGS: 00000206 ORIG_RAX: 0000000000000009
[ 29.350309] RAX: ffffffffffffffda RBX: 00007fbe826f9000 RCX: 00007fbe82832de2
[ 29.351526] RDX: 0000000000000004 RSI: 000000000000a000 RDI: 00007fbe826f9000
[ 29.352865] RBP: 0000000000000012 R08: 000000000000000b R09: 0000000000000000
[ 29.354136] R10: 0000000000000012 R11: 0000000000000206 R12: 00007ffd535f4120
[ 29.355357] R13: 0000000000000000 R14: 000000000000000b R15: 0000000000001000
[ 29.356684] </TASK>
[ 29.357119] ---[ end trace 0000000000000000 ]---
The warning is triggered by TEST_F(merge, handle_uprobe_upon_merged_vma) in
selftests/mm/merge.c. It occurs during the first mmap() following the
__NR_perf_event_open syscall, as shown in the excerpt below:
TEST_F(merge, handle_uprobe_upon_merged_vma)
{
const size_t attr_sz = sizeof(struct perf_event_attr);
unsigned int page_size = self->page_size;
const char *probe_file = "./foo";
char *carveout = self->carveout;
struct perf_event_attr attr;
unsigned long type;
void *ptr1, *ptr2;
int fd;
fd = open(probe_file, O_RDWR|O_CREAT, 0600);
ASSERT_GE(fd, 0);
ASSERT_EQ(ftruncate(fd, page_size), 0);
if (read_sysfs("/sys/bus/event_source/devices/uprobe/type", &type) != 0) {
SKIP(goto out, "Failed to read uprobe sysfs file, skipping");
}
memset(&attr, 0, attr_sz);
attr.size = attr_sz;
attr.type = type;
attr.config1 = (__u64)(long)probe_file;
attr.config2 = 0x0;
ASSERT_GE(syscall(__NR_perf_event_open, &attr, 0, -1, -1, 0), 0);
ptr1 = mmap(&carveout[page_size], 10 * page_size, PROT_EXEC,
MAP_PRIVATE | MAP_FIXED, fd, 0); < WARNING!!!
ASSERT_NE(ptr1, MAP_FAILED);
getchar();
ptr2 = mremap(ptr1, page_size, 2 * page_size,
MREMAP_MAYMOVE | MREMAP_FIXED, ptr1 + 5 * page_size);
ASSERT_NE(ptr2, MAP_FAILED);
ASSERT_NE(mremap(ptr2, page_size, page_size,
MREMAP_MAYMOVE | MREMAP_FIXED, ptr1), MAP_FAILED);
out:
close(fd);
remove(probe_file);
}
The issue originates from the following call chain:
prepare_uprobe
-> copy_insn
-> __copy_insn
-> read_mapping_page() or shmem_read_mapping_page()
Both read_mapping_page() and shmem_read_mapping_page() are invoked
without holding i_rwsem or invalidate_lock. When CONFIG_EXT4_DEBUG
is enabled, this triggers the warning in ext4_check_map_extents_env().
^ permalink raw reply
* [BUG] WARNING in alloc_slab_obj_exts triggered by __d_alloc
From: Zw Tang @ 2026-03-09 3:14 UTC (permalink / raw)
To: Vlastimil Babka, Andrew Morton
Cc: linux-mm, linux-kernel, linux-fsdevel, linux-ext4, cgroups,
Johannes Weiner, Alexander Viro, Andreas Dilger
Hi,
I encountered a WARNING in alloc_slab_obj_exts() while running a
syzkaller-generated reproducer on Linux 7.0-rc2.
The warning is triggered during dentry allocation (__d_alloc) after
mounting a crafted ext4 filesystem image.
Kernel
git tree: torvalds/linux
commit: 0031c06807cfa8aa51a759ff8aa09e1aa48149af
kernel version:Linux 7.0.0-rc2-00057-g0031c06807cf
hardware: QEMU Ubuntu 24.10
I was able to reproduce this issue reliably using the attached
reproducer.
Reproducer:
C reproducer: https://pastebin.com/raw/eHjm2Aw6
console output: https://pastebin.com/raw/FQAhquTy
kernel config: pastebin.com/raw/CnHdTQNm
The warning originates from:
mm/slub.c:2189
Call trace:
WARNING: mm/slub.c:2189 at alloc_slab_obj_exts+0x132/0x180
CPU: 0 UID: 0 PID: 699 Comm: syz.0.118
Call Trace:
<TASK>
__memcg_slab_post_alloc_hook+0x130/0x460 mm/memcontrol.c:3234
memcg_slab_post_alloc_hook mm/slub.c:2464 [inline]
slab_post_alloc_hook.constprop.0+0x9c/0xf0 mm/slub.c:4526
slab_alloc_node.constprop.0+0xaa/0x160 mm/slub.c:4844
__do_kmalloc_node mm/slub.c:5237 [inline]
__kmalloc_noprof+0x82/0x200 mm/slub.c:5250
kmalloc_noprof include/linux/slab.h:954 [inline]
__d_alloc+0x235/0x2f0 fs/dcache.c:1757
d_alloc_pseudo+0x1d/0x70 fs/dcache.c:1871
alloc_path_pseudo fs/file_table.c:364 [inline]
alloc_file_pseudo+0x64/0x140 fs/file_table.c:380
__shmem_file_setup+0x136/0x270 mm/shmem.c:5863
memfd_alloc_file+0x81/0x240 mm/memfd.c:471
__do_sys_memfd_create mm/memfd.c:522 [inline]
__se_sys_memfd_create mm/memfd.c:505 [inline]
__x64_sys_memfd_create+0x205/0x440 mm/memfd.c:505
do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
do_syscall_64+0x11d/0x5a0 arch/x86/entry/syscall_64.c:94
entry_SYSCALL_64_after_hwframe+0x4b/0x53
The issue happens after mounting an ext4 filesystem image via a loop
device created from a compressed image in the reproducer.
Relevant kernel messages:
EXT4-fs (loop0): mounted filesystem
00000000-0000-0000-0000-000000000000 r/w without journal.
EXT4-fs (loop3): Delayed block allocation failed for inode 18 at
logical offset 768 with max blocks 2 with error 28
EXT4-fs (loop3): This should not happen!! Data will be lost
The WARNING occurs in alloc_slab_obj_exts(), which is related to slab
object extension allocation.
This may indicate a slab metadata inconsistency triggered by the
filesystem state.
Please let me know if additional debugging information would help.
Thanks.
Zw Tang
^ permalink raw reply
* Re: [PATCH e2fsprogs] e2fsck: preen inline data no attr
From: Theodore Tso @ 2026-03-08 5:04 UTC (permalink / raw)
To: Daniel Tang; +Cc: linux-ext4, Darrick J. Wong
In-Reply-To: <25105329.ouqheUzb2q@daniel-desktop3>
On Sat, Mar 07, 2026 at 08:42:04PM -0500, Daniel Tang wrote:
>
>
> > More importantly, information about the source of the inconsistency
> > report would be written to the superblock
>
> What could have the opportunity to write anything to the superblock?
> Before a panic, there's no inconsistency.
I don't know that. It's possible that the kernel could have detected
an inconsistency, and if you've left the default errors=continue
behavior, this will cause a EXT4-fs error log, but if people don't pay
attention to the console log messages, they might not realize it.
That's why I needed to rule it out.
> After a panic, Linux would
> say "not syncing", or after a panic, hardware stops before new writes
> can reach the disk. systemd, as shown by `systemd-analyze plot` runs
> fsck before attempting any `.mount`.
The problem is that *if* the file system does not have ERROR_FS set
before the crash, *then* the fsck log that you sent me can't
*possibly* have been the first fsck run after the crash.
That's because this message:
root@daniel-tablet1:~# fsck.ext4 -p /dev/nvme0n1p7 # For example
/dev/nvme0n1p7 contains a file system with errors, check forced.
... means that the ERROR_FS bit has already been set. And the only
two entities that could have set that bit is (a) the kernel, or (b)
fsck.ext4.
Now yes, most distributions will run fsck before mounting. But
normally, all fsck.ext4 will do is replay the journal (if necessary),
and then perform basic sanity checks on the superblock. It doesn't do
a full check of the file system unless (1) something is obviously
wrong with the superblock, (2) the ERROR_FS bit is set (check forced
message above), or (3) the user has explicitly requested a full fsck
by running fsck with the -f flag.
So if the theory that the ERROR_FS bit was not set by the kernel is
correct, then there must be an fsck run where (a) the "check forced"
message is not present (so the ERROR_FS bit is not yet set), and (b)
the fsck log shows that the fsck ran into some kind of major
difficulty or something obviously wrong with the file system leading
to the ERROR_FS bit being set. It was this log that I was asking if
you could find, since the one that you sent me had the "checked force"
message, meaning ERROR_FS was already set.
> Inline data is for mostly-reading
> 30,000 mostly-small Javascript files totalling 100 MiB.
You actually have a lot of Javascript files which are smaller than 160
bytes or so? That's.... surprising.
> Fast commit is
> for monthly-apt-upgrading 250,000-max (TeX Live) 300-average
> (google-chrome-stable) files totaling 64 GiB-max 2 GiB-average.
Fast commit only happes if you have workloads where you need fsync(2)
to be fast, and you don't mind writing some extra blocks 5 seconds
later when the large (non-fast) journal commit takes place.
> * apt-get is 7% (48.018 s) faster with fast_commit writes
That's.... surprising.
Ah... looking at what you were doing, it appears you were setting
fast_commit not on the root file system itself, but on the file system
where /var/lib/containerd is located. I'm going to guess that fsync's
being issued by apt are getting amplified by whatever
docker/containerd is doing with the writes plus fsync's to the
writeable image layer file.
If that's your actual use case, try installing the apt-eatmydata
package in your Dockerfile, and/or before you do this:
# time docker run --rm -v /run/archives:/mnt ubuntu:24.04 bash -c 'dpkg --force-all -i /mnt/*.deb ; sync'
If you were just using this as a proxy for your real world use
case.... I'd suggest finding a different way of measuring the benefits
of fast commit. That is, if what you *really* care about is running
"apt get" on real, bare metal system (and not in your containers),
then you need to measure that. Trying to use docker run as a proxy is
going to be misleading.
But if you are really trying to improve container build times, see this article:
https://blog.kronis.dev/blog/increase-container-build-speeds-when-you-use-apt
It uses the eatmydata package directly, instead of using
"apt-eatmydata", but it basically points out why having apt issue a
huge number of fsync on what are generally disposable images in a CI
run, or while building new docker images, is just waste of resources.
Cheers,
- Ted
^ permalink raw reply
* Re: [PATCH e2fsprogs] e2fsck: preen inline data no attr
From: Daniel Tang @ 2026-03-08 1:42 UTC (permalink / raw)
To: Theodore Tso; +Cc: linux-ext4, Darrick J. Wong
In-Reply-To: <20260306222315.GA42132@macsyma.local>
[-- Attachment #1: Type: text/plain, Size: 5658 bytes --]
> Does the problem go away if you disable fast_commit?
Disabling fast_commit on all 5 ext4 partitions successfully brought me
from 4 unpreenable unclean shutdowns to a streak of 2 preenable unclean
shutdowns. `/`, /boot, /var, /tmp are clean without needs_recovery in
dumpe2fs, and `fsck.ext4 -f` found no needed fixes. /home was
"Filesystem state: clean" but had needs_recovery and orphan_present.
`fsck.ext4 -p` removed 1–2 orphaned inodes.
Testing was performed on the tablet with Firefox open to new tab
without internet, and the same USB-C–HDMI adapter. I might leave
fast_commit off for all partition except `/`, which I mount readonly
except when updating while I sit in a stable environment.
```console
root@ubuntu:~# cryptsetup luksOpen /dev/nvme0n1p9 homecrypt
Enter passphrase for /dev/nvme0n1p9:
root@ubuntu:~# dumpe2fs -h /dev/mapper/homecrypt
dumpe2fs 1.47.0 (5-Feb-2023)
Filesystem volume name: <none>
Last mounted on: /home
Filesystem UUID: b4dee0c9-72e8-4ad8-a277-d14ab505732b
Filesystem magic number: 0xEF53
Filesystem revision #: 1 (dynamic)
Filesystem features: has_journal ext_attr dir_index sparse_super2 orphan_file filetype needs_recovery extent flex_bg inline_data encrypt sparse_super large_file metadata_csum orphan_present
Filesystem flags: signed_directory_hash
Default mount options: user_xattr acl
Filesystem state: clean
Errors behavior: Remount read-only
Filesystem OS type: Linux
Inode count: 9756672
Block count: 78022481
Reserved block count: 0
Overhead clusters: 880816
Free blocks: 72084435
Free inodes: 9277324
First block: 0
Block size: 4096
Fragment size: 4096
Blocks per group: 32768
Fragments per group: 32768
Inodes per group: 4096
Inode blocks per group: 256
Flex block group size: 8192
Filesystem created: Mon Feb 9 17:26:30 2026
Last mount time: Sun Mar 8 00:22:42 2026
Last write time: Sun Mar 8 00:22:42 2026
Mount count: 1
Maximum mount count: -1
Last checked: Sun Mar 8 00:22:40 2026
Check interval: 0 (<none>)
Lifetime writes: 38 GB
Reserved blocks uid: 0 (user root)
Reserved blocks gid: 0 (group root)
First inode: 11
Inode size: 256
Required extra isize: 32
Desired extra isize: 32
Journal inode: 8
Default directory hash: half_md4
Directory Hash Seed: 3d04ee5a-9500-4206-8eaf-dac860feeb2c
Journal backup: inode blocks
Checksum type: crc32c
Checksum: 0x81ad4fc4
Orphan file inode: 12
Journal features: journal_incompat_revoke journal_checksum_v3
Total journal size: 1040M
Total journal blocks: 266240
Max transaction length: 266240
Fast commit length: 0
Journal sequence: 0x00001cf8
Journal start: 205738
Journal checksum type: crc32c
Journal checksum: 0xfe1d1be0
root@ubuntu:~# fsck.ext4 -p /dev/mapper/homecrypt
/dev/mapper/homecrypt: recovering journal
/dev/mapper/homecrypt: Clearing orphaned inode 430228 (uid=1000, gid=1000, mode=0100664, size=8028)
/dev/mapper/homecrypt: clean, 479363/9756672 files, 5937874/78022481 blocks
```
> What would be really interesting is
> to see the logs from the fsck.ext4 or kernel run to see what the
> initial complete was
See the attachment in my previous email. Ubuntu and/or systemd will
always fsck before mounting, even on clean reboots. This time I booted
into a Ubuntu 24.04 LiveUSB after the unclean shutdowns to run
dumpe2fs and fsck.ext4.
> More importantly, information about the source of the inconsistency
> report would be written to the superblock
What could have the opportunity to write anything to the superblock?
Before a panic, there's no inconsistency. After a panic, Linux would
say "not syncing", or after a panic, hardware stops before new writes
can reach the disk. systemd, as shown by `systemd-analyze plot` runs
fsck before attempting any `.mount`. initramfs mounts `/` readonly,
and any readwrite setting in `/etc/fstab` is only applied later. In
LiveUSB, I too always fsck first before mounting. Basically, the
filesystem would need to be readwrite or at least mounted and have a
corrupt file be accessed, for the inconsistency report to be written.
Since the fsck always precedes the mount, I don't think any report
will be written to the superblock.
> with the intersection of fast_commit and
> inline_data.
> sign that something isn't quite right,
`/proc/fs/ext4/*/fc-info`'s Ineligible reasons' "Extended attributes
changed" suggests that inline data will requests that fast commit be
disabled each time a small file is written. But the workload that
benefits from each is different. Inline data is for mostly-reading
30,000 mostly-small Javascript files totalling 100 MiB. Fast commit is
for monthly-apt-upgrading 250,000-max (TeX Live) 300-average
(google-chrome-stable) files totaling 64 GiB-max 2 GiB-average.
> is there a reason why you enabled inline_data and fast_commit in the
> first place? Was there something specific about how you expect the
> file systems will be used that led you to believe they would be
> helpful?
The reason is performance, especially on my desktop with a HDD. Raw
data is in the attached file. In summary:
* apt-get is 7% (48.018 s) faster with fast_commit writes
* npm is 5% (0.9154 s) faster with inline_data reads
[-- Attachment #2: desktop_20260308_ext4_inlinedata_fastcommit_benchmarks.txt --]
[-- Type: text/plain, Size: 10589 bytes --]
root@daniel-desktop3:~# uname -a
Linux daniel-desktop3 6.17.0-14-generic #14-Ubuntu SMP PREEMPT_DYNAMIC Fri Jan 9 17:01:16 UTC 2026 x86_64 GNU/Linux
root@daniel-desktop3:~# cat /sys/block/sdb/device/model
WDC WD80EAZZ-00B
root@daniel-desktop3:~# fdisk -l /dev/sdb
Disk /dev/sdb: 7.28 TiB, 8001563222016 bytes, 15628053168 sectors
Disk model: WDC WD80EAZZ-00B
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: 5C03C302-C74E-6A42-8293-CFFDB44076B9
Device Start End Sectors Size Type
/dev/sdb1 2048 15611275263 15611273216 7.3T Linux filesystem
/dev/sdb2 15611275264 15628052479 16777216 8G Linux filesystem
root@daniel-desktop3:~# cat /etc/mke2fs.conf
[defaults]
creator_os = Linux
base_features = ""
fs_type = ext4
enable_periodic_fsck = 0
errors = remount-ro
force_undo = 0
auto_64-bit_support = 0
default_mntopts = acl,user_xattr
blocksize = 4096
lazy_itable_init = 1
lazy_journal_init = 0
num_backup_sb = 0
packed_meta_blocks = 1
inode_ratio = 32768
inode_size = 256
reserved_ratio = 0
hash_alg = half_md4
flex_bg_size = 8196
discard = 1
encoding = utf8-12.1
encoding_flags = strict
[fs_types]
ext4 = {
features = dir_index,ext_attr,extent,fast_commit,filetype,flex_bg,has_journal,inline_data,large_file,metadata_csum,orphan_file,sparse_super,sparse_super2
}
tmp = {
discard = 0
features = ^has_journal # Note that I didn't disable journaling on my tablet
}
home = {
features = casefold,encrypt
}
boot = {
features = ^inline_data
inode_ratio = 65536
}
small = {
inode_ratio = 4096
}
floppy = {
inode_ratio = 8192
}
big = {
inode_ratio = 32768
}
huge = {
inode_ratio = 65536
}
news = {
inode_ratio = 4096
}
largefile = {
inode_ratio = 1048576
blocksize = -1
}
largefile4 = {
inode_ratio = 4194304
blocksize = -1
}
hurd = {
blocksize = 4096
inode_size = 128
warn_y2038_dates = 0
}
root@daniel-desktop3:~# systemctl stop containerd docker
root@daniel-desktop3:~# mkdir -p /run/downloadtmp /run/archives
root@daniel-desktop3:~# mount -o remount,size=8G /run
root@daniel-desktop3:~# mount --bind /run/downloadtmp /var/lib/containerd
root@daniel-desktop3:~# systemctl start containerd docker
root@daniel-desktop3:~# docker run --rm -itv /run/archives:/var/cache/apt/archives ubuntu:24.04 bash -c 'apt update && apt install -dy texlive-full'
[... 4417 MB and 755 packages ...]
root@daniel-desktop3:~# systemctl stop containerd docker
root@daniel-desktop3:~# umount /var/lib/containerd
root@daniel-desktop3:~# wipefs -a /dev/sdb2
root@daniel-desktop3:~# mkfs.ext4 /dev/sdb2
mke2fs 1.47.2 (1-Jan-2025)
64-bit filesystem support is not enabled. The larger fields afforded by this feature enable full-strength checksumming. Pass -O 64bit to rectify.
Creating filesystem with 2097152 4k blocks and 262144 inodes
Filesystem UUID: d370114c-abe5-4b16-adba-e6b626b76f1d
Superblock backups stored on blocks:
Allocating group tables: done
Writing inode tables: done
Creating journal (16640 blocks): done
Writing superblocks and filesystem accounting information: done
root@daniel-desktop3:~# mount /dev/sdb2 /var/lib/containerd
root@daniel-desktop3:~# rm -rf /var/lib/containerd/* /run/containerd
root@daniel-desktop3:~# systemctl start containerd docker
root@daniel-desktop3:~# docker pull ubuntu:24.04
24.04: Pulling from library/ubuntu
01d7766a2e4a: Pull complete
fd8cda969ed2: Download complete
Digest: sha256:d1e2e92c075e5ca139d51a140fff46f84315c0fdce203eab2807c7e495eff4f9
Status: Downloaded newer image for ubuntu:24.04
docker.io/library/ubuntu:24.04
root@daniel-desktop3:~# sync; sysctl -w vm.drop_caches=3
vm.drop_caches = 3
root@daniel-desktop3:~# time docker run --rm -v /run/archives:/mnt ubuntu:24.04 bash -c 'dpkg --force-all -i /mnt/*.deb ; sync'
[...]
real 10m11.195s
user 0m0.102s
sys 0m0.135s
root@daniel-desktop3:~# systemctl stop containerd docker
root@daniel-desktop3:~# umount /var/lib/containerd
root@daniel-desktop3:~# wipefs -a /dev/sdb2
root@daniel-desktop3:~# mkfs.ext4 /dev/sdb2 -O ^fast_commit
[... similar ...]
root@daniel-desktop3:~# mount /dev/sdb2 /var/lib/containerd
root@daniel-desktop3:~# rm -rf /var/lib/containerd/* /run/containerd
root@daniel-desktop3:~# systemctl start containerd docker
root@daniel-desktop3:~# docker pull ubuntu:24.04
[... same ...]
root@daniel-desktop3:~# sync; sysctl -w vm.drop_caches=3
vm.drop_caches = 3
root@daniel-desktop3:~# time docker run --rm -v /run/archives:/mnt ubuntu:24.04 bash -c 'dpkg --force-all -i /mnt/*.deb ; sync'
[...]
real 10m59.213s
user 0m0.117s
sys 0m0.128s
root@daniel-desktop3:~# systemctl stop containerd docker
root@daniel-desktop3:~# umount /var/lib/containerd
root@daniel-desktop3:~# mount -t tmpfs tmpfs /var/lib/containerd
root@daniel-desktop3:~# systemctl start containerd docker
root@daniel-desktop3:~# docker pull ubuntu:24.04
[... same ...]
root@daniel-desktop3:~# runuser home -c 'git -C /home/home/.nvm rev-parse HEAD'
4c556a19b08728989267a89728152e4b6765000b
root@daniel-desktop3:~# runuser home -c 'mkdir /home/home/.nvm2'
root@daniel-desktop3:~# wipefs -a /dev/sdb2
root@daniel-desktop3:~# mkfs.ext4 /dev/sdb2 -E root_owner=1000:1000
[... similar ...]
root@daniel-desktop3:~# mount /dev/sdb2 /home/home/.nvm2
root@daniel-desktop3:~# rm -rf /home/home/.nvm2/lost+found
root@daniel-desktop3:~# runuser home -c 'git clone /home/home/.nvm /home/home/.nvm2'
Cloning into '/home/home/.nvm2'...
done.
root@daniel-desktop3:~# docker run --rm -v /home/home/.nvm2:/.nvm -v /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:/usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:ro ubuntu:24.04 bash -c 'apt update && apt install -y bzip2 wget && . .nvm/nvm.sh && nvm install 25.6.0 && npm i -g @angular/cli@21.1.3 apollo@2.34.0 asar@3.2.0 bun-repl@2.1.1 bun@1.3.9 clipboard-cli@5.0.0 create-react-app@5.1.0 detox-cli@20.47.0 elasticdump@6.124.2 expo-cli@6.3.12 express-generator@4.16.1 firebase-tools@15.5.1 google-closure-compiler@20260128.0.0 graphql@16.12.0 har-extractor@1.1.2 http-server-upload@3.0.0 json@11.0.0 lighthouse@13.0.2 markdown-pdf@11.0.0 npm-check-updates@19.3.2 npm@11.9.0 prettier@3.8.1 qrcode@1.5.4 showdown@2.1.0 svgo@4.0.0 typescript@5.9.3 uglify-js@3.19.3 web-ext@9.2.0'
[...]
added 3892 packages, removed 1 package, and changed 24 packages in [...]s
[...]
root@daniel-desktop3:~# time docker run --rm -v /home/home/.nvm2:/.nvm -v /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:/usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:ro ubuntu:24.04 bash -c 'ln -s /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0 /usr/lib/x86_64-linux-gnu/libatomic.so.1 && . .nvm/nvm.sh && npm ls -g --depth=0'
[...]
real 0m1.785s
user 0m0.007s
sys 0m0.012s
root@daniel-desktop3:~# sync; sysctl -w vm.drop_caches=3
root@daniel-desktop3:~# time docker run --rm -v /home/home/.nvm2:/.nvm -v /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:/usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:ro ubuntu:24.04 bash -c 'ln -s /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0 /usr/lib/x86_64-linux-gnu/libatomic.so.1 && . .nvm/nvm.sh && npm ls -g --depth=0'
[...]
real 0m15.520s
user 0m0.007s
sys 0m0.022s
[rerunning, remembering drop_caches:]
real 0m16.480s
user 0m0.007s
sys 0m0.024s
real 0m16.997s
user 0m0.011s
sys 0m0.020s
real 0m16.651s
user 0m0.009s
sys 0m0.020s
real 0m17.035s
user 0m0.008s
sys 0m0.023s
[mean = 16.5366]
[real/user is meaningless with `time docker`]
root@daniel-desktop3:~# umount /home/home/.nvm2
root@daniel-desktop3:~# wipefs -a /dev/sdb2
root@daniel-desktop3:~# mkfs.ext4 /dev/sdb2 -E root_owner=1000:1000 -O ^inline_data
[... similar ...]
root@daniel-desktop3:~# mount /dev/sdb2 /home/home/.nvm2
root@daniel-desktop3:~# rm -rf /home/home/.nvm2/lost+found
root@daniel-desktop3:~# runuser home -c 'git clone /home/home/.nvm /home/home/.nvm2'
Cloning into '/home/home/.nvm2'...
done.
root@daniel-desktop3:~# docker run --rm -v /home/home/.nvm2:/.nvm -v /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:/usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:ro ubuntu:24.04 bash -c 'apt update && apt install -y bzip2 wget && . .nvm/nvm.sh && nvm install 25.6.0 && npm i -g @angular/cli@21.1.3 apollo@2.34.0 asar@3.2.0 bun-repl@2.1.1 bun@1.3.9 clipboard-cli@5.0.0 create-react-app@5.1.0 detox-cli@20.47.0 elasticdump@6.124.2 expo-cli@6.3.12 express-generator@4.16.1 firebase-tools@15.5.1 google-closure-compiler@20260128.0.0 graphql@16.12.0 har-extractor@1.1.2 http-server-upload@3.0.0 json@11.0.0 lighthouse@13.0.2 markdown-pdf@11.0.0 npm-check-updates@19.3.2 npm@11.9.0 prettier@3.8.1 qrcode@1.5.4 showdown@2.1.0 svgo@4.0.0 typescript@5.9.3 uglify-js@3.19.3 web-ext@9.2.0'
[...]
added 3892 packages, removed 1 package, and changed 24 packages in [...]s
[...]
root@daniel-desktop3:~# time docker run --rm -v /home/home/.nvm2:/.nvm -v /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:/usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:ro ubuntu:24.04 bash -c 'ln -s /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0 /usr/lib/x86_64-linux-gnu/libatomic.so.1 && . .nvm/nvm.sh && npm ls -g --depth=0'
[...]
real 0m1.812s
user 0m0.007s
sys 0m0.012s
root@daniel-desktop3:~# sync; sysctl -w vm.drop_caches=3
root@daniel-desktop3:~# time docker run --rm -v /home/home/.nvm2:/.nvm -v /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:/usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0:ro ubuntu:24.04 bash -c 'ln -s /usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0 /usr/lib/x86_64-linux-gnu/libatomic.so.1 && . .nvm/nvm.sh && npm ls -g --depth=0'
[...]
real 0m16.651s
user 0m0.010s
sys 0m0.021s
[rerunning, remembering drop_caches:]
real 0m17.615s
user 0m0.004s
sys 0m0.025s
real 0m17.930s
user 0m0.007s
sys 0m0.025s
real 0m17.495s
user 0m0.008s
sys 0m0.023s
real 0m17.574s
user 0m0.011s
sys 0m0.018s
[mean = 17.453]
[I didn't have time to repeat mkfs.ext4, but I assumed inode placement differences' effects small]
^ permalink raw reply
* Re: [PATCH v2] ext4: Minor fix for ext4_split_extent_zeroout()
From: Zhang Yi @ 2026-03-07 8:18 UTC (permalink / raw)
To: Ojaswin Mujoo, linux-ext4, Theodore Ts'o
Cc: Dan Carpenter, Ritesh Harjani (IBM)
In-Reply-To: <20260302143811.605174-1-ojaswin@linux.ibm.com>
On 3/2/2026 10:38 PM, Ojaswin Mujoo wrote:
> We missed storing the error which triggerd smatch warning:
>
> fs/ext4/extents.c:3369 ext4_split_extent_zeroout()
> warn: duplicate zero check 'err' (previous on line 3363)
>
> fs/ext4/extents.c
> 3361
> 3362 err = ext4_ext_get_access(handle, inode, path + depth);
> 3363 if (err)
> 3364 return err;
> 3365
> 3366 ext4_ext_mark_initialized(ex);
> 3367
> 3368 ext4_ext_dirty(handle, inode, path + depth);
> --> 3369 if (err)
> 3370 return err;
> 3371
> 3372 return 0;
> 3373 }
>
> Fix it by correctly storing the err value from ext4_ext_dirty().
>
> Link: https://lore.kernel.org/all/aYXvVgPnKltX79KE@stanley.mountain/
> Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
> Fixes: a985e07c26455 ("ext4: refactor zeroout path and handle all cases")
> Reviewed-by: Ritesh Harjani (IBM) <ritesh.list@gmail.com>
> Signed-off-by: Ojaswin Mujoo <ojaswin@linux.ibm.com>
Looks good to me.
Reviewed-by: Zhang Yi <yi.zhang@huawei.com>
> ---
> fs/ext4/extents.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
> index 3630b27e4fd7..5579e0e68c0f 100644
> --- a/fs/ext4/extents.c
> +++ b/fs/ext4/extents.c
> @@ -3365,7 +3365,7 @@ static int ext4_split_extent_zeroout(handle_t *handle, struct inode *inode,
>
> ext4_ext_mark_initialized(ex);
>
> - ext4_ext_dirty(handle, inode, path + depth);
> + err = ext4_ext_dirty(handle, inode, path + depth);
> if (err)
> return err;
>
^ permalink raw reply
* Re: [PATCH] ext4: avoid allocate block from corrupted group in ext4_mb_find_by_goal()
From: Zhang Yi @ 2026-03-07 8:07 UTC (permalink / raw)
To: Ye Bin, tytso, adilger.kernel, linux-ext4; +Cc: jack
In-Reply-To: <20260302134619.3145520-1-yebin@huaweicloud.com>
On 3/2/2026 9:46 PM, Ye Bin wrote:
> From: Ye Bin <yebin10@huawei.com>
>
> There's issue as follows:
> ...
> EXT4-fs (mmcblk0p1): Delayed block allocation failed for inode 206 at logical offset 0 with max blocks 1 with error 117
> EXT4-fs (mmcblk0p1): This should not happen!! Data will be lost
>
> EXT4-fs (mmcblk0p1): Delayed block allocation failed for inode 206 at logical offset 0 with max blocks 1 with error 117
> EXT4-fs (mmcblk0p1): This should not happen!! Data will be lost
>
> EXT4-fs (mmcblk0p1): Delayed block allocation failed for inode 206 at logical offset 0 with max blocks 1 with error 117
> EXT4-fs (mmcblk0p1): This should not happen!! Data will be lost
>
> EXT4-fs (mmcblk0p1): Delayed block allocation failed for inode 206 at logical offset 0 with max blocks 1 with error 117
> EXT4-fs (mmcblk0p1): This should not happen!! Data will be lost
>
> EXT4-fs (mmcblk0p1): Delayed block allocation failed for inode 2243 at logical offset 0 with max blocks 1 with error 117
> EXT4-fs (mmcblk0p1): This should not happen!! Data will be lost
>
> EXT4-fs (mmcblk0p1): Delayed block allocation failed for inode 2239 at logical offset 0 with max blocks 1 with error 117
> EXT4-fs (mmcblk0p1): This should not happen!! Data will be lost
>
> EXT4-fs (mmcblk0p1): error count since last fsck: 1
> EXT4-fs (mmcblk0p1): initial error at time 1765597433: ext4_mb_generate_buddy:760
> EXT4-fs (mmcblk0p1): last error at time 1765597433: ext4_mb_generate_buddy:760
> ...
>
> According to the log analysis, blocks are always requested from the
> corrupted block group. This may happen as follows:
> ext4_mb_find_by_goal
> ext4_mb_load_buddy
> ext4_mb_load_buddy_gfp
> ext4_mb_init_cache
> ext4_read_block_bitmap_nowait
> ext4_wait_block_bitmap
> ext4_validate_block_bitmap
> if (!grp || EXT4_MB_GRP_BBITMAP_CORRUPT(grp))
> return -EFSCORRUPTED; // There's no logs.
> if (err)
> return err; // Will return error
> ext4_lock_group(ac->ac_sb, group);
> if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info))) // Unreachable
> goto out;
>
> After commit 9008a58e5dce ("ext4: make the bitmap read routines return
> real error codes") merged, Commit 163a203ddb36 ("ext4: mark block group
> as corrupt on block bitmap error") is no real solution for allocating
> blocks from corrupted block groups. This is because if
> 'EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info)' is true, then
> 'ext4_mb_load_buddy()' may return an error. This means that the block
> allocation will fail.
> Therefore, check block group if corrupted when ext4_mb_load_buddy()
> returns error.
>
> Fixes: 163a203ddb36 ("ext4: mark block group as corrupt on block bitmap error")
> Fixes: 9008a58e5dce ("ext4: make the bitmap read routines return real error codes")
> Signed-off-by: Ye Bin <yebin10@huawei.com>
Looks good to me.
Reviewed-by: Zhang Yi <yi.zhang@huawei.com>
> ---
> fs/ext4/mballoc.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
> index e2341489f4d0..ffa6886de8a3 100644
> --- a/fs/ext4/mballoc.c
> +++ b/fs/ext4/mballoc.c
> @@ -2443,8 +2443,12 @@ int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
> return 0;
>
> err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
> - if (err)
> + if (err) {
> + if (EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info) &&
> + !(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
> + return 0;
> return err;
> + }
>
> ext4_lock_group(ac->ac_sb, group);
> if (unlikely(EXT4_MB_GRP_BBITMAP_CORRUPT(e4b->bd_info)))
^ permalink raw reply
* Re: [PATCH v3] ext4: fix mballoc-test.c is not compiled when EXT4_KUNIT_TESTS=M
From: Ojaswin Mujoo @ 2026-03-07 6:25 UTC (permalink / raw)
To: yebin (H); +Cc: Ye Bin, tytso, adilger.kernel, linux-ext4, jack
In-Reply-To: <69AB6B2D.6070006@huawei.com>
On Sat, Mar 07, 2026 at 08:02:53AM +0800, yebin (H) wrote:
>
>
> On 2026/3/6 17:55, Ojaswin Mujoo wrote:
> > On Fri, Feb 27, 2026 at 02:55:14PM +0800, Ye Bin wrote:
> > > From: Ye Bin <yebin10@huawei.com>
> > >
> > > Now, only EXT4_KUNIT_TESTS=Y testcase will be compiled in 'mballoc.c'.
> > > To solve this issue, the ext4 test code needs to be decoupled. The ext4
> > > test module is compiled into a separate module.
> > >
> > > Reported-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
> > > Closes: https://patchwork.kernel.org/project/cifs-client/patch/20260118091313.1988168-2-chenxiaosong.chenxiaosong@linux.dev/
> > > Fixes: 7c9fa399a369 ("ext4: add first unit test for ext4_mb_new_blocks_simple in mballoc")
> > > Signed-off-by: Ye Bin <yebin10@huawei.com>
> >
> > Hi Ye,
> >
> > > From my testing I can see that EXPORT_SYMBOL_FOR_MODULE() doesn't
> > resepect the namespace restriction if EXT4_KUNIT_TESTS=y but I think
> > that should be okay.
> >
> > The patch otherwise looks good. Feel free to add:
> >
> > Reviewed-by: Ojaswin Mujoo <ojaswin@linux.ibm.com>
> >
> > One thing, recently added extents-test.c is also having the same issue where
> > it doesn't work when compiled as module. Would you be willing to fix it
> > as well?
> >
> No problem, I will fix this issue.
Awesome, thanks :)
Regards,
ojaswin
> > Regards,
> > ojaswin
> >
> >
> >
> > .
> >
^ permalink raw reply
* Re: [BUG] kernel BUG in ext4_do_writepages
From: yebin (H) @ 2026-03-07 0:16 UTC (permalink / raw)
To: Xianying Wang, tytso; +Cc: adilger.kernel, linux-ext4, linux-kernel
In-Reply-To: <CAOU40uDHsLY6KOor1A-uuozEn8yJgF+gmQx_MLnkU6oSnyAERw@mail.gmail.com>
On 2026/3/6 13:42, Xianying Wang wrote:
> Hi,
>
> I would like to report a kernel BUG triggered by a syzkaller
> reproducer in the ext4 filesystem writeback path.
>
There was a period when I also noticed block allocation failures during
write-back, but after the configuration was changed, it didn't seem to
happen again.
> The issue was originally observed on Linux 6.19.0-rc8 and can also be
> reproduced on Linux 7.0-rc2. The crash occurs in the ext4 writeback
Can you identify which patch or which patchset introduced the issue?
> routine while the background writeback worker is flushing dirty pages
> to disk.
>
> During the crash, the filesystem reports that no free blocks are
> available while dirty pages and reserved blocks still exist. Under
> this condition, the writeback worker continues processing pending
> writeback operations and eventually reaches an internal consistency
> check inside the ext4 writeback routine, which triggers a kernel BUG.
>
> Based on the execution context, the issue appears to be related to the
> interaction between delayed allocation and the writeback mechanism
> when the filesystem runs out of available blocks. When the writeback
> thread attempts to flush dirty pages in this state, ext4 enters an
> unexpected internal state that causes the BUG to be triggered.
>
> This can be reproduced on:
>
> HEAD commit:
>
> 11439c4635edd669ae435eec308f4ab8a0804808
>
> report: https://pastebin.com/raw/dNFvCatE
>
> console output : https://pastebin.com/raw/LAPYKL5P
>
> kernel config : https://pastebin.com/7hk2cU0G
>
> C reproducer :https://pastebin.com/raw/v07yFCWP
>
Can you add these to the email as attachments?
> Let me know if you need more details or testing.
>
> Best regards,
>
> Xianying
>
>
> .
>
^ permalink raw reply
* Re: [PATCH v3] ext4: fix mballoc-test.c is not compiled when EXT4_KUNIT_TESTS=M
From: yebin (H) @ 2026-03-07 0:02 UTC (permalink / raw)
To: Ojaswin Mujoo, Ye Bin; +Cc: tytso, adilger.kernel, linux-ext4, jack
In-Reply-To: <aaqkoSTFyYzxxYRI@li-dc0c254c-257c-11b2-a85c-98b6c1322444.ibm.com>
On 2026/3/6 17:55, Ojaswin Mujoo wrote:
> On Fri, Feb 27, 2026 at 02:55:14PM +0800, Ye Bin wrote:
>> From: Ye Bin <yebin10@huawei.com>
>>
>> Now, only EXT4_KUNIT_TESTS=Y testcase will be compiled in 'mballoc.c'.
>> To solve this issue, the ext4 test code needs to be decoupled. The ext4
>> test module is compiled into a separate module.
>>
>> Reported-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
>> Closes: https://patchwork.kernel.org/project/cifs-client/patch/20260118091313.1988168-2-chenxiaosong.chenxiaosong@linux.dev/
>> Fixes: 7c9fa399a369 ("ext4: add first unit test for ext4_mb_new_blocks_simple in mballoc")
>> Signed-off-by: Ye Bin <yebin10@huawei.com>
>
> Hi Ye,
>
>>From my testing I can see that EXPORT_SYMBOL_FOR_MODULE() doesn't
> resepect the namespace restriction if EXT4_KUNIT_TESTS=y but I think
> that should be okay.
>
> The patch otherwise looks good. Feel free to add:
>
> Reviewed-by: Ojaswin Mujoo <ojaswin@linux.ibm.com>
>
> One thing, recently added extents-test.c is also having the same issue where
> it doesn't work when compiled as module. Would you be willing to fix it
> as well?
>
No problem, I will fix this issue.
> Regards,
> ojaswin
>
>
>
> .
>
^ permalink raw reply
* Re: [PATCH e2fsprogs] e2fsck: preen inline data no attr
From: Theodore Tso @ 2026-03-06 22:23 UTC (permalink / raw)
To: Daniel Tang; +Cc: linux-ext4, Darrick J. Wong
In-Reply-To: <2415922.vCJZsxu672@daniel-desktop3>
On Fri, Mar 06, 2026 at 01:03:19PM -0500, Daniel Tang wrote:
> Today I tested the bug and this time it was a directory in /var,
> unlike the inline-data lockfile in /home last time.
> I reformatted /home with encryption in the meantime.
Thanks for the additional data. I didn't realize you were also using
fast_commit. I would not at all be surprised if there might be some
interesting kernel bugs with the intersection of fast_commit and
inline_data.
Does the problem go away if you disable fast_commit? For that matter,
is there a reason why you enabled inline_data and fast_commit in the
first place? Was there something specific about how you expect the
file systems will be used that led you to believe they would be
helpful? Or was this an Arch / Gento style "let's enable the latest
features just because we want to use the latest and greatest?"
It's great to get that kind of extra exposure, and I'm appreciative if
your dedication to use these latest features --- but there is a reason
why many distributions haven't enabled either by default just yet.
Given that you have a (mostly) reliable reproducer, it would be
definitely interesting to see if reproduces without fast_commit
enabled.
> root@daniel-tablet1:~# dumpe2fs -h /dev/nvme0n1p7
> dumpe2fs 1.47.2 (1-Jan-2025)
> ....
> Filesystem state: not clean with errors
> root@daniel-tablet1:~# fsck.ext4 -p /dev/nvme0n1p7 # For example
> /dev/nvme0n1p7 contains a file system with errors, check forced.
It appears that either the kernel or a previous run of fsck.ext4 found
that file system had serious issues, and marked the file system as
file system level inconsistency. What would be really interesting is
to see the logs from the fsck.ext4 or kernel run to see what the
initial complete was, and whether there was some other interesting
information or attempted fix ups if this was from fsck.ext4 before it
threw up its hands and gave up.
If I had to guess, it was a previous fsck.ext4 run. If it were the
kernel that noticed the problem, then there would be an "EXT4-fs
error" message, for example:
root@kvm-xfstests:~# echo testing > /sys/fs/ext4/vdc/trigger_fs_error
[ 235.316299] EXT4-fs error (device vdc): trigger_test_error:130: comm bash: testing
More importantly, information about the source of the inconsistency
report would be written to the superblock, and dumpe2fs would have
displayed it, for example:
FS Error count: 1
First error time: Fri Mar 6 17:11:51 2026
First error function: trigger_test_error
First error line #: 130
First error err: EFSCORRUPTED
Last error time: Fri Mar 6 17:11:51 2026
Last error function: trigger_test_error
Last error line #: 130
Last error err: EFSCORRUPTED
Given that lines like this weren't in your dumpe2fs output, I'm
guessing that it was a previous fsck run --- probably the one that was
run immediately after the boot by the systemd unit file / init
scripts. Hopefully those would have logged somewhere, such as
journalctl --- any chance you could try to see if you get the output
from that first fsck run?
In any case, while I'm not categorically opposed to your patch of
allowing a missing inline extended attribute from causing the fsck to
halt, since it's not a _lot_ of lost user data (less than 60 bytes),
it's a sign that something isn't quite right, and we really should
debug the underlying problem, since papering over the problem might
mean that we don't hear about it until something *really* critical
gets lost.
Cheers,
- Ted
^ permalink raw reply
* Re: [PATCH e2fsprogs] e2fsck: preen inline data no attr
From: Daniel Tang @ 2026-03-06 18:03 UTC (permalink / raw)
To: Theodore Tso; +Cc: linux-ext4, Darrick J. Wong
In-Reply-To: <20260306155108.GA19348@macsyma.local>
[-- Attachment #1.1: Type: text/plain, Size: 20857 bytes --]
Today I tested the bug and this time it was a directory in /var,
unlike the inline-data lockfile in /home last time.
I reformatted /home with encryption in the meantime.
The unrecoverable system freeze—a kernel panic probably—happens after
unplugging a "link-002" USB-C–HDMI adapter 1–50 times (average 5). That'll
be debugged separately. The other end must be connected to HDMI 2
(not HDMI 1) of a DELL S2721QS.
Although it's not the same inline file data bug, it's an inline
directory bug this time. Note that `ncheck` worked last time but not
this time.
```console
root@daniel-tablet1:~# # After somehow starting sshd in systemd recovery shell:
root@daniel-tablet1:~# dumpe2fs -h /dev/nvme0n1p7
dumpe2fs 1.47.2 (1-Jan-2025)
Filesystem volume name: <none>
Last mounted on: /var
Filesystem UUID: 46916dcd-c245-4384-bbaf-2f9460979425
Filesystem magic number: 0xEF53
Filesystem revision #: 1 (dynamic)
Filesystem features: has_journal ext_attr dir_index sparse_super2 fast_commit orphan_file filetype extent flex_bg inline_data sparse_super large_file extra_isize metadata_csum
Filesystem flags: signed_directory_hash
Default mount options: user_xattr acl
Filesystem state: not clean with errors
Errors behavior: Remount read-only
Filesystem OS type: Linux
Inode count: 640848
Block count: 2560000
Reserved block count: 128000
Overhead clusters: 56597
Free blocks: 1335285
Free inodes: 576232
First block: 0
Block size: 4096
Fragment size: 4096
Blocks per group: 32768
Fragments per group: 32768
Inodes per group: 8112
Inode blocks per group: 507
Flex block group size: 16
Filesystem created: Sat Dec 28 15:24:12 2019
Last mount time: Fri Mar 6 11:20:11 2026
Last write time: Fri Mar 6 11:37:08 2026
Mount count: 3
Maximum mount count: -1
Last checked: Mon Mar 2 01:08:36 2026
Check interval: 0 (<none>)
Lifetime writes: 1457 GB
Reserved blocks uid: 0 (user root)
Reserved blocks gid: 0 (group root)
First inode: 11
Inode size: 256
Required extra isize: 32
Desired extra isize: 32
Journal inode: 8
Default directory hash: half_md4
Directory Hash Seed: dcb465c1-50d7-4793-a3d0-9e0e02cd4c29
Journal backup: inode blocks
Checksum type: crc32c
Checksum: 0x1a947ea3
Orphan file inode: 42
Journal features: journal_incompat_revoke journal_checksum_v3 FEATURE_I5
Total journal size: 64M
Total journal blocks: 16384
Max transaction length: 16128
Fast commit length: 256
Journal sequence: 0x00388937
Journal start: 0
Journal checksum type: crc32c
Journal checksum: 0x6a84a638
root@daniel-tablet1:~# fsck.ext4 -p /dev/nvme0n1p7 # For example
/dev/nvme0n1p7 contains a file system with errors, check forced.
/dev/nvme0n1p7: Entry '..' in /tmp/???/??? (137) has deleted/unused inode 120. CLEARED.
/dev/nvme0n1p7: Entry '..' in /tmp/???/??? (195) has deleted/unused inode 167. CLEARED.
/dev/nvme0n1p7: Unconnected directory inode 137 (was in /tmp/???)
/dev/nvme0n1p7: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
(i.e., without -a or -p options)
root@daniel-tablet1:~# debugfs -nc /dev/nvme0n1p7
debugfs 1.47.2 (1-Jan-2025)
debugfs: stat <137>
Inode: 137 Type: directory Mode: 01777 Flags: 0x10000000
Generation: 2378807545 Version: 0x00000000:00000001
User: 0 Group: 0 Project: 0 Size: 60
File ACL: 0
Links: 2 Blockcount: 0
Fragment: Address: 0 Number: 0 Size: 0
ctime: 0x69aafee3:66aff6ec -- Fri Mar 6 11:20:51 2026
atime: 0x69aafee3:66aff6ec -- Fri Mar 6 11:20:51 2026
mtime: 0x69aafee3:66aff6ec -- Fri Mar 6 11:20:51 2026
crtime: 0x69aafee3:66aff6ec -- Fri Mar 6 11:20:51 2026
Size of extra inode fields: 32
Extended attributes:
system.data (0)
Inode checksum: 0x1decf2a9
Size of inline data: 60
debugfs: stat <195>
Inode: 195 Type: directory Mode: 01777 Flags: 0x10000000
Generation: 4036975850 Version: 0x00000000:00000001
User: 0 Group: 0 Project: 0 Size: 60
File ACL: 0
Links: 2 Blockcount: 0
Fragment: Address: 0 Number: 0 Size: 0
ctime: 0x69aafee9:230c2808 -- Fri Mar 6 11:20:57 2026
atime: 0x69aafee9:230c2808 -- Fri Mar 6 11:20:57 2026
mtime: 0x69aafee9:230c2808 -- Fri Mar 6 11:20:57 2026
crtime: 0x69aafee9:230c2808 -- Fri Mar 6 11:20:57 2026
Size of extra inode fields: 32
Extended attributes:
system.data (0)
Inode checksum: 0xcf705890
Size of inline data: 60
debugfs: orphan_inodes
Orphan inode list empty
Dumping orphan file inode 42:
debugfs: ncheck <137>
Inode Pathname
debugfs: ncheck <195>
Inode Pathname
debugfs: logdump
Journal starts at block 0, transaction 3705143
*** Fast Commit Area ***
tag HEAD, features 0x0, tid 3705170
tag INODE, inode 129952
tag ADD_RANGE, inode 129952, lblk 0, pblk 2392580, len 1
tag CREAT_DENTRY, parent 139307, ino 129952, name "attributes.3R2DL3"
tag INODE, inode 119
tag INODE, inode 184
tag INODE, inode 87
tag INODE, inode 169
tag INODE, inode 129952
tag TAIL, tid 3705170
tag TAIL, tid 3705167
tag ADD_RANGE, inode 169, lblk 1160, pblk 1517192, len 12
tag INODE, inode 169
tag TAIL, tid 3705140
root@daniel-tablet1:~# fsck.ext4 -y /dev/nvme0n1p7
e2fsck 1.47.2 (1-Jan-2025)
/dev/nvme0n1p7 contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Entry '..' in /tmp/???/??? (137) has deleted/unused inode 120. Clear? yes
Entry '..' in /tmp/???/??? (195) has deleted/unused inode 167. Clear? yes
Pass 3: Checking directory connectivity
Unconnected directory inode 137 (was in /tmp/???)
Connect to /lost+found? yes
Unconnected directory inode 195 (was in /tmp/???)
Connect to /lost+found? yes
Pass 4: Checking reference counts
Inode 13 ref count is 14, should be 12. Fix? yes
Inode 137 ref count is 3, should be 2. Fix? yes
Inode 195 ref count is 3, should be 2. Fix? yes
Pass 5: Checking group summary information
Free blocks count wrong (1335285, counted=1335286).
Fix? yes
Inode bitmap differences: -120 -167
Fix? yes
Free inodes count wrong for group #0 (7815, counted=7817).
Fix? yes
Directories count wrong for group #0 (51, counted=49).
Fix? yes
Free inodes count wrong (576232, counted=576212).
Fix? yes
/dev/nvme0n1p7: ***** FILE SYSTEM WAS MODIFIED *****
/dev/nvme0n1p7: 64636/640848 files (0.8% non-contiguous), 1224714/2560000 blocks
root@daniel-tablet1:~# mount /var
root@daniel-tablet1:~# cd /var/lost+found
root@daniel-tablet1:/var/lost+found# find
.
./#137
./#195
root@daniel-tablet1:/var/lost+found# mount -o remount,ro /var
[then Magic Sysrq O then U then reboot -f]
```
`journalctl -b` is attached.
Besides connecting the monitor, all of my unclean shutdowns were during
system idleness. I've always caused this less than an hour after boot.
Therefore all of mine are temporary files, and I don't know whether this
also happens to someone's important files.
I do not need to manually remove or truncate beyond what `fsck.ext4`
does automatically when started `-p`. I can choose to remove or
truncate them anyway because they are all temporary files.
After reboot, without unplugging the adapter:
```console
root@daniel-tablet1:~# dhclient
mkdtemp: Read-only file system (os error 30) at path "/tmp/tmp.isEJLAByyM"
/sbin/dhclient-script: 38: /etc/dhcp/dhclient-exit-hooks.d/resolved: cannot create : Directory nonexistent
[repeated 5 times with other line numbers and filepaths]
Setting LLMNR [...]
root@daniel-tablet1:~# rm /run/nologin
root@daniel-tablet1:~# /usr/sbin/sshd -D
root@daniel-tablet1:~# # Then I did similar with /dev/nvme0n1p6
```
After rebooting, unplugging the adapter 10 times, then force-rebooting:
```console
root@daniel-tablet1:~# fsck.ext4 -p /dev/nvme0n1p6
/dev/nvme0n1p6 contains a file system with errors, check forced.
/dev/nvme0n1p6: Entry 'systemd-private-79893677cb354f8c82fb240966b39bb2-lm-sensors.service-6lXzxn' in / (2) is a link to directory /systemd-private-79893677cb354f8c82fb240966b39bb2-lm-sensors.service-6lXzxn (389382).
/dev/nvme0n1p6: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
(i.e., without -a or -p options)
root@daniel-tablet1:~# debugfs -nc /dev/nvme0n1p6
debugfs 1.47.2 (1-Jan-2025)
debugfs: stat <389382>
debugfs: ls <389382>
389382 (12) . 2 (12) .. 389383 (56) tmp
Inode: 389382 Type: directory Mode: 0700 Flags: 0x10000000
Generation: 749221114 Version: 0x00000000:00000002
User: 0 Group: 0 Project: 0 Size: 60
File ACL: 0
Links: 3 Blockcount: 0
Fragment: Address: 0 Number: 0 Size: 0
ctime: 0x69ab0ba2:33f9a744 -- Fri Mar 6 12:15:14 2026
atime: 0x69ab0ba2:33f9a744 -- Fri Mar 6 12:15:14 2026
mtime: 0x69ab0ba2:33f9a744 -- Fri Mar 6 12:15:14 2026
crtime: 0x69ab0ba2:33f9a744 -- Fri Mar 6 12:15:14 2026
Size of extra inode fields: 32
Extended attributes:
system.data (0)
Inode checksum: 0x79edbb64
Size of inline data: 60
root@daniel-tablet1:~# fsck.ext4 -y /dev/nvme0n1p6
e2fsck 1.47.2 (1-Jan-2025)
/dev/nvme0n1p6 contains a file system with errors, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Entry 'systemd-private-79893677cb354f8c82fb240966b39bb2-lm-sensors.service-6lXzxn' in / (2) is a link to directory /systemd-private-79893677cb354f8c82fb240966b39bb2-lm-sensors.service-6lXzxn (389382).
Clear? yes
Entry 'systemd-private-26e6cb34d76b4af6b450ce062fdec7a6-colord.service-KZRRvf' in / (2) has deleted/unused inode 21. Clear? yes
Entry 'systemd-private-26e6cb34d76b4af6b450ce062fdec7a6-geoclue.service-iXWqgN' in / (2) has deleted/unused inode 129802. Clear? yes
Pass 3: Checking directory connectivity
Unconnected directory inode 129798 (was in /)
Connect to /lost+found? yes
Unconnected directory inode 129800 (was in /)
Connect to /lost+found? yes
Unconnected directory inode 389388 (was in /)
Connect to /lost+found? yes
Pass 4: Checking reference counts
Inode 129798 ref count is 4, should be 3. Fix? yes
Inode 129800 ref count is 4, should be 3. Fix? yes
Unattached inode 129804
Connect to /lost+found? yes
Inode 129804 ref count is 2, should be 1. Fix? yes
Inode 389388 ref count is 4, should be 3. Fix? yes
Pass 5: Checking group summary information
/dev/nvme0n1p6: ***** FILE SYSTEM WAS MODIFIED *****
/dev/nvme0n1p6: 46/640848 files (2.2% non-contiguous), 59413/2560000 blocks
root@daniel-tablet1:~# reboot # It worked without Magic Sysrq this time and prompt was uncolored
```
Another adapter unplug attempt resulted in `/tmp/systemd-private*colord*`
having "an incorrect filetype (was 2, should be 1)."
I don't know why there are some many different problems this time. During
the time that I had unencrypted /home, I only got inline data errors with
inside what I think is `/home/home/.cache`. It was perhaps some lockfile
or pidfile.
Another attempt, but this time with Firefox open, but the problematic
inode didn't have inline data:
```console
[omitted fixing /tmp like last time ...]
root@daniel-tablet1:~# fsck.ext4 -p /dev/mapper/homecrypt
/dev/mapper/homecrypt: Unattached inode 408852
/dev/mapper/homecrypt: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
(i.e., without -a or -p options)
root@daniel-tablet1:~# debugfs -nc /dev/mapper/homecrypt
debugfs 1.47.2 (1-Jan-2025)
debugfs: stat <408852>
Inode: 408852 Type: regular Mode: 0664 Flags: 0x80000
Generation: 2194885973 Version: 0x00000000:00000003
User: 1000 Group: 1000 Project: 0 Size: 98914
File ACL: 0
Links: 1 Blockcount: 200
Fragment: Address: 0 Number: 0 Size: 0
ctime: 0x69ab0fdc:839b6170 -- Fri Mar 6 12:33:16 2026
atime: 0x69ab0fdc:83214f70 -- Fri Mar 6 12:33:16 2026
mtime: 0x69ab0fdc:83797658 -- Fri Mar 6 12:33:16 2026
crtime: 0x69ab0fdc:83214f70 -- Fri Mar 6 12:33:16 2026
Size of extra inode fields: 32
Inode checksum: 0x570a769b
EXTENTS:
(0-24):6307264-6307288
debugfs: ncheck <408852>
Inode Pathname
debugfs: cat <408852>
[binary, but could be a Mesa shader cache file]
debugfs: logdump
[attached]
root@daniel-tablet1:~# fsck.ext4 /dev/mapper/homecrypt
e2fsck 1.47.2 (1-Jan-2025)
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Unattached inode 408852
Connect to /lost+found<y>? yes
Inode 408852 ref count is 2, should be 1. Fix<y>? yes
Pass 5: Checking group summary information
Block bitmap differences: -(4286031--4286032) +(4286035--4286036) -(5706241--5706242) +(6307264--6307288) -(6307296--6307320) -(6308064--6308088) +(6494304--6494328)
Fix<y>? yes
Free blocks count wrong for group #26 (41, counted=40).
Fix<y>? yes
Free blocks count wrong for group #81 (43, counted=64).
Fix<y>? yes
Free blocks count wrong for group #128 (1608, counted=1589).
Fix<y>? yes
Free blocks count wrong for group #130 (3533, counted=3530).
Fix<y>? yes
Free blocks count wrong for group #131 (3124, counted=3097).
Fix<y>? yes
Free blocks count wrong for group #148 (0, counted=1).
Fix<y>? yes
Free blocks count wrong for group #159 (1467, counted=1561).
Fix ('a' enables 'yes' to all) <y>? yes
Free blocks count wrong for group #173 (7616, counted=7669).
Fix ('a' enables 'yes' to all) <y>? yes
Free blocks count wrong for group #174 (31543, counted=29570).
Fix ('a' enables 'yes' to all) <y>? yes
Free blocks count wrong for group #175 (30878, counted=31741).
Fix ('a' enables 'yes' to all) <y>? yes
Free blocks count wrong for group #176 (28457, counted=32578).
Fix<y>? yes
Free blocks count wrong for group #177 (32241, counted=29745).
Fix<y>? yes
Free blocks count wrong for group #178 (3895, counted=3914).
Fix<y>? yes
Free blocks count wrong for group #187 (21504, counted=22309).
Fix<y>? yes
Free blocks count wrong for group #191 (8471, counted=8487).
Fix<y>? yes
Free blocks count wrong for group #192 (3689, counted=3725).
Fix<y>? yes
Free blocks count wrong for group #193 (3587, counted=3586).
Fix<y>? yes
Free blocks count wrong for group #194 (7573, counted=7540).
Fix<y>? yes
Free blocks count wrong for group #197 (16064, counted=16076).
Fix<y>? yes
Free blocks count wrong for group #198 (27631, counted=25974).
Fix<y>? yes
Free blocks count wrong (72088071, counted=72087902).
Fix<y>? yes
Inode bitmap differences: -407142 +471162
Fix<y>? yes
Free inodes count wrong for group #115 (3, counted=4).
Fix<y>? yes
Free inodes count wrong for group #116 (755, counted=728).
Fix<y>? yes
Free inodes count wrong (9277815, counted=9277789).
Fix<y>? yes
Orphan file (inode 12) block 39 is not clean.
Clear<y>? yes
/dev/mapper/homecrypt: ***** FILE SYSTEM WAS MODIFIED *****
/dev/mapper/homecrypt: 478883/9756672 files (0.2% non-contiguous), 5934579/78022481 blocks
```
So there are a lot of unrelated errors, which look more severe than
the original one targeted by this patch. I will stop testing unplugging
for now, as something needs to be fixed to remove the noise. But my patch
should resolve the original error I got.
```console
home@daniel-tablet1:~$ uname -a # During good boot
Linux daniel-tablet1 6.18.7-surface-1 #1 SMP PREEMPT_DYNAMIC Mon Jan 26 00:16:20 UTC 2026 x86_64 GNU/Linux
home@daniel-tablet1:~$ apt-cache policy e2fsprogs
e2fsprogs:
Installed: 1.47.2-3ubuntu2
Candidate: 1.47.2-3ubuntu2
Version table:
*** 1.47.2-3ubuntu2 500
500 https://gpl.savoirfairelinux.net/pub/mirrors/ubuntu questing/main amd64 Packages
100 /var/lib/dpkg/status
root@daniel-tablet1:~# cat /proc/1/mounts
sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
udev /dev devtmpfs rw,nosuid,relatime,size=7936332k,nr_inodes=1984083,mode=755,inode64 0 0
devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=600,ptmxmode=000 0 0
tmpfs /run tmpfs rw,nosuid,nodev,noexec,relatime,size=1596384k,mode=755,inode64 0 0
/dev/nvme0n1p8 / ext4 ro,nodev,noatime,nombcache,min_batch_time=15000,max_dir_size_kb=4096 0 0
securityfs /sys/kernel/security securityfs rw,nosuid,nodev,noexec,relatime 0 0
tmpfs /dev/shm tmpfs rw,nosuid,nodev,inode64 0 0
cgroup2 /sys/fs/cgroup cgroup2 rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot 0 0
none /sys/fs/pstore pstore rw,nosuid,nodev,noexec,relatime 0 0
efivarfs /sys/firmware/efi/efivars efivarfs rw,nosuid,nodev,noexec,relatime 0 0
bpf /sys/fs/bpf bpf rw,nosuid,nodev,noexec,relatime,mode=700 0 0
systemd-1 /proc/sys/fs/binfmt_misc autofs rw,relatime,fd=36,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1296 0 0
hugetlbfs /dev/hugepages hugetlbfs rw,nosuid,nodev,relatime,pagesize=2M 0 0
mqueue /dev/mqueue mqueue rw,nosuid,nodev,noexec,relatime 0 0
tmpfs /run/lock tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 0 0
debugfs /sys/kernel/debug debugfs rw,nosuid,nodev,noexec,relatime 0 0
tracefs /sys/kernel/tracing tracefs rw,nosuid,nodev,noexec,relatime 0 0
tmpfs /run/credentials/systemd-journald.service tmpfs ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap 0 0
fusectl /sys/fs/fuse/connections fusectl rw,nosuid,nodev,noexec,relatime 0 0
configfs /sys/kernel/config configfs rw,nosuid,nodev,noexec,relatime 0 0
tmpfs /run/credentials/systemd-cryptsetup@homecrypt.service tmpfs ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap 0 0
tmpfs /media tmpfs rw,nosuid,nodev,noexec,noatime,size=5120k,mode=755,inode64 0 0
/dev/nvme0n1p5 /boot ext4 ro,nosuid,nodev,noexec,noatime,nombcache,min_batch_time=15000,max_dir_size_kb=1024 0 0
/dev/nvme0n1p6 /tmp ext4 rw,nosuid,nodev,noatime,nombcache,min_batch_time=15000,max_dir_size_kb=4096 0 0
/dev/nvme0n1p7 /var ext4 rw,nosuid,nodev,noatime,nombcache,min_batch_time=15000,max_dir_size_kb=4096 0 0
/dev/nvme0n1p1 /boot/efi vfat ro,nosuid,nodev,noexec,noatime,fmask=0006,dmask=0007,allow_utime=0020,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 0
tmpfs /run/credentials/systemd-resolved.service tmpfs ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap 0 0
tmpfs /var/lib/gdm3 tmpfs rw,nosuid,nodev,noexec,noatime,size=400k,nr_inodes=100,mode=000,inode64 0 0
/dev/mapper/homecrypt /home ext4 rw,nosuid,nodev,noatime,nombcache,min_batch_time=15000,max_dir_size_kb=4096 0 0
binfmt_misc /proc/sys/fs/binfmt_misc binfmt_misc rw,nosuid,nodev,noexec,relatime 0 0
tmpfs /run/user/1001 tmpfs rw,nosuid,nodev,relatime,size=1596380k,nr_inodes=399095,mode=700,uid=1001,gid=1000,inode64 0 0
tmpfs /run/user/1000 tmpfs rw,nosuid,nodev,relatime,size=1596380k,nr_inodes=399095,mode=700,uid=1000,gid=1000,inode64 0 0
tmpfs /run/user/60578 tmpfs rw,nosuid,nodev,relatime,size=1596380k,nr_inodes=399095,mode=700,uid=60578,gid=139,inode64 0 0
portal /run/user/60578/doc fuse.portal rw,nosuid,nodev,relatime,user_id=60578,group_id=139 0 0
tmpfs /run/user/0 tmpfs rw,nosuid,nodev,relatime,size=1596380k,nr_inodes=399095,mode=700,inode64 0 0
root@daniel-tablet1:~# cat /etc/fstab
UUID=36fa67db-bdeb-4537-a4b0-4b001d623ccf / ext4 errors=remount-ro,max_dir_size_kb=4096,min_batch_time=15000,noatime,nodev,nombcache,ro 0 1
UUID=b36382aa-72e5-4584-8066-d8250cb1c86b /boot ext4 errors=remount-ro,max_dir_size_kb=1024,min_batch_time=15000,noatime,nodev,noexec,nombcache,nosuid,ro 0 2
UUID=C4B7-85E2 /boot/efi vfat dmask=0007,fmask=0006,noatime,nodev,noexec,nosuid,ro 0 2
/dev/mapper/homecrypt /home ext4 errors=remount-ro,max_dir_size_kb=4096,min_batch_time=15000,noatime,nodev,nombcache,nosuid 0 2
UUID=69452394-6e8e-4a5b-9116-0a8402d66401 /tmp ext4 errors=remount-ro,max_dir_size_kb=4096,min_batch_time=15000,noatime,nodev,nombcache,nosuid 0 2
UUID=46916dcd-c245-4384-bbaf-2f9460979425 /var ext4 errors=remount-ro,max_dir_size_kb=4096,min_batch_time=15000,noatime,nodev,nombcache,nosuid 0 2
tmpfs /media tmpfs mode=755,noatime,nodev,noexec,nosuid,size=5120k 0 0
tmpfs /var/lib/gdm3 tmpfs nodev,nosuid,noexec,noatime,nr_blocks=100,nr_inodes=100,mode=0 0 0
root@daniel-tablet1:~# cat /etc/crypttab
# <target name> <source device> <key file> <options>
homecrypt UUID=0ffa31a8-58f7-48a5-ae99-71f40d376bd6 none discard,luks,no-read-workqueue,no-write-workqueue,same-cpu-crypt,submit-from-crypt-cpus
```
[-- Attachment #1.2: Type: text/html, Size: 55711 bytes --]
[-- Attachment #2.1.1: Type: text/plain, Size: 156744 bytes --]
Mar 06 11:22:24 daniel-tablet1 kernel: Linux version 6.18.7-surface-1 (root@e61ac5a62644) (gcc (Ubuntu 11.4.0-1ubuntu1~22.04.2) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #1 SMP PREEMPT_DYNAMIC Mon Jan 26 00:16:20 UTC 2026
Mar 06 11:22:24 daniel-tablet1 kernel: Command line: BOOT_IMAGE=/vmlinuz-6.18.7-surface-1 root=/dev/nvme0n1p8 ro fbcon=font:TER16x32 rootflags=nombcache quiet splash usbcore.autosuspend=-1 usbcore.quirks=0bda:8153:k reboot=pci
Mar 06 11:22:24 daniel-tablet1 kernel: KERNEL supported cpus:
Mar 06 11:22:24 daniel-tablet1 kernel: Intel GenuineIntel
Mar 06 11:22:24 daniel-tablet1 kernel: AMD AuthenticAMD
Mar 06 11:22:24 daniel-tablet1 kernel: Hygon HygonGenuine
Mar 06 11:22:24 daniel-tablet1 kernel: Centaur CentaurHauls
Mar 06 11:22:24 daniel-tablet1 kernel: zhaoxin Shanghai
Mar 06 11:22:24 daniel-tablet1 kernel: x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-provided physical RAM map:
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000077094fff] usable
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x0000000077095000-0x00000000770a0fff] ACPI data
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x00000000770a1000-0x0000000079cbffff] usable
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x0000000079cc0000-0x0000000079cc0fff] ACPI NVS
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x0000000079cc1000-0x0000000079cc1fff] usable
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x0000000079cc2000-0x0000000079cc2fff] reserved
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x0000000079cc3000-0x000000007b62bfff] usable
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x000000007b62c000-0x000000007ba2bfff] reserved
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x000000007ba2c000-0x000000007ba45fff] usable
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x000000007ba46000-0x000000007bb89fff] reserved
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x000000007bb8a000-0x000000007bbb3fff] ACPI NVS
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x000000007bbb4000-0x000000007bbfefff] ACPI data
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x000000007bbff000-0x000000007bbfffff] usable
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x000000007bc00000-0x00000000953fffff] reserved
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
Mar 06 11:22:24 daniel-tablet1 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000046abfffff] usable
Mar 06 11:22:24 daniel-tablet1 kernel: NX (Execute Disable) protection: active
Mar 06 11:22:24 daniel-tablet1 kernel: APIC: Static calls initialized
Mar 06 11:22:24 daniel-tablet1 kernel: efi: EFI v2.7 by MSFT
Mar 06 11:22:24 daniel-tablet1 kernel: efi: ACPI=0x7bbfe000 ACPI 2.0=0x7bbfe014 TPMFinalLog=0x7bbab000 SMBIOS=0x7bac4000 SMBIOS 3.0=0x7bac2000 MEMATTR=0x7769c018 ESRT=0x78de5e98 MOKvar=0x7babf000 INITRD=0x7766e198 RNG=0x7bbb7018 TPMEventLog=0x77095018
Mar 06 11:22:24 daniel-tablet1 kernel: random: crng init done
Mar 06 11:22:24 daniel-tablet1 kernel: efi: Not removing mem199: MMIO range=[0xfe010000-0xfe010fff] (4KB) from e820 map
Mar 06 11:22:24 daniel-tablet1 kernel: SMBIOS 3.3.0 present.
Mar 06 11:22:24 daniel-tablet1 kernel: DMI: Microsoft Corporation Surface Pro 7/Surface Pro 7, BIOS 24.109.140 07/21/2025
Mar 06 11:22:24 daniel-tablet1 kernel: DMI: Memory slots populated: 2/2
Mar 06 11:22:24 daniel-tablet1 kernel: tsc: Detected 1500.000 MHz processor
Mar 06 11:22:24 daniel-tablet1 kernel: tsc: Detected 1497.600 MHz TSC
Mar 06 11:22:24 daniel-tablet1 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Mar 06 11:22:24 daniel-tablet1 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Mar 06 11:22:24 daniel-tablet1 kernel: last_pfn = 0x46ac00 max_arch_pfn = 0x400000000
Mar 06 11:22:24 daniel-tablet1 kernel: MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
Mar 06 11:22:24 daniel-tablet1 kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
Mar 06 11:22:24 daniel-tablet1 kernel: last_pfn = 0x7bc00 max_arch_pfn = 0x400000000
Mar 06 11:22:24 daniel-tablet1 kernel: esrt: Reserving ESRT space from 0x0000000078de5e98 to 0x0000000078de5f70.
Mar 06 11:22:24 daniel-tablet1 kernel: e820: update [mem 0x78de5000-0x78de5fff] usable ==> reserved
Mar 06 11:22:24 daniel-tablet1 kernel: Using GB pages for direct mapping
Mar 06 11:22:24 daniel-tablet1 kernel: Secure boot enabled
Mar 06 11:22:24 daniel-tablet1 kernel: RAMDISK: [mem 0x6652f000-0x6b3d2fff]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Early table checksum verification disabled
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: RSDP 0x000000007BBFE014 000024 (v02 MSFT )
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: XSDT 0x000000007BBFD0E8 0000BC (v01 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: FACP 0x000000007BBE1000 000114 (v06 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: DSDT 0x000000007BBC0000 01C074 (v02 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: FACS 0x000000007BB91000 000040
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: WSMT 0x000000007BBFC000 000028 (v01 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0x000000007BBFA000 001B61 (v02 CpuRef CpuSsdt 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: MSDM 0x000000007BBF9000 000055 (v01 MSFT 00000001 MSFT 00000001)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0x000000007BBF2000 006230 (v02 MSFT DptfTabl 00001000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0x000000007BBEE000 0033E3 (v02 SaSsdt SaSsdt 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0x000000007BBE2000 00B27A (v02 INTEL TcssSsdt 00001000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: HPET 0x000000007BBE0000 000038 (v01 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LPIT 0x000000007BBDF000 000094 (v01 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: APIC 0x000000007BBDE000 00012C (v04 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: MCFG 0x000000007BBDD000 00003C (v01 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0x000000007BBBF000 000DB4 (v02 MSFT RTD3_JL 00001000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0x000000007BBBE000 0009E3 (v02 MSFT xh_jl000 00000000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: NHLT 0x000000007BBBD000 00002D (v00 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0x000000007BBBC000 000574 (v02 MSFT Tpm2Tabl 00001000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: TPM2 0x000000007BBBB000 000034 (v03 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: DMAR 0x000000007BBBA000 0000A0 (v02 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: FPDT 0x000000007BBB9000 000034 (v01 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: BGRT 0x000000007BBB8000 000038 (v01 MSFT MSFT 00000002 MSFT 20160422)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving FACP table memory at [mem 0x7bbe1000-0x7bbe1113]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving DSDT table memory at [mem 0x7bbc0000-0x7bbdc073]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving FACS table memory at [mem 0x7bb91000-0x7bb9103f]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving WSMT table memory at [mem 0x7bbfc000-0x7bbfc027]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving SSDT table memory at [mem 0x7bbfa000-0x7bbfbb60]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving MSDM table memory at [mem 0x7bbf9000-0x7bbf9054]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving SSDT table memory at [mem 0x7bbf2000-0x7bbf822f]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving SSDT table memory at [mem 0x7bbee000-0x7bbf13e2]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving SSDT table memory at [mem 0x7bbe2000-0x7bbed279]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving HPET table memory at [mem 0x7bbe0000-0x7bbe0037]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving LPIT table memory at [mem 0x7bbdf000-0x7bbdf093]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving APIC table memory at [mem 0x7bbde000-0x7bbde12b]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving MCFG table memory at [mem 0x7bbdd000-0x7bbdd03b]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving SSDT table memory at [mem 0x7bbbf000-0x7bbbfdb3]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving SSDT table memory at [mem 0x7bbbe000-0x7bbbe9e2]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving NHLT table memory at [mem 0x7bbbd000-0x7bbbd02c]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving SSDT table memory at [mem 0x7bbbc000-0x7bbbc573]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving TPM2 table memory at [mem 0x7bbbb000-0x7bbbb033]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving DMAR table memory at [mem 0x7bbba000-0x7bbba09f]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving FPDT table memory at [mem 0x7bbb9000-0x7bbb9033]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Reserving BGRT table memory at [mem 0x7bbb8000-0x7bbb8037]
Mar 06 11:22:24 daniel-tablet1 kernel: No NUMA configuration found
Mar 06 11:22:24 daniel-tablet1 kernel: Faking a node at [mem 0x0000000000000000-0x000000046abfffff]
Mar 06 11:22:24 daniel-tablet1 kernel: NODE_DATA(0) allocated [mem 0x46abd3280-0x46abfdfff]
Mar 06 11:22:24 daniel-tablet1 kernel: Zone ranges:
Mar 06 11:22:24 daniel-tablet1 kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: Normal [mem 0x0000000100000000-0x000000046abfffff]
Mar 06 11:22:24 daniel-tablet1 kernel: Device empty
Mar 06 11:22:24 daniel-tablet1 kernel: Movable zone start for each node
Mar 06 11:22:24 daniel-tablet1 kernel: Early memory node ranges
Mar 06 11:22:24 daniel-tablet1 kernel: node 0: [mem 0x0000000000001000-0x000000000009ffff]
Mar 06 11:22:24 daniel-tablet1 kernel: node 0: [mem 0x0000000000100000-0x0000000077094fff]
Mar 06 11:22:24 daniel-tablet1 kernel: node 0: [mem 0x00000000770a1000-0x0000000079cbffff]
Mar 06 11:22:24 daniel-tablet1 kernel: node 0: [mem 0x0000000079cc1000-0x0000000079cc1fff]
Mar 06 11:22:24 daniel-tablet1 kernel: node 0: [mem 0x0000000079cc3000-0x000000007b62bfff]
Mar 06 11:22:24 daniel-tablet1 kernel: node 0: [mem 0x000000007ba2c000-0x000000007ba45fff]
Mar 06 11:22:24 daniel-tablet1 kernel: node 0: [mem 0x000000007bbff000-0x000000007bbfffff]
Mar 06 11:22:24 daniel-tablet1 kernel: node 0: [mem 0x0000000100000000-0x000000046abfffff]
Mar 06 11:22:24 daniel-tablet1 kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000046abfffff]
Mar 06 11:22:24 daniel-tablet1 kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Mar 06 11:22:24 daniel-tablet1 kernel: On node 0, zone DMA: 96 pages in unavailable ranges
Mar 06 11:22:24 daniel-tablet1 kernel: On node 0, zone DMA32: 12 pages in unavailable ranges
Mar 06 11:22:24 daniel-tablet1 kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
Mar 06 11:22:24 daniel-tablet1 kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
Mar 06 11:22:24 daniel-tablet1 kernel: On node 0, zone DMA32: 1024 pages in unavailable ranges
Mar 06 11:22:24 daniel-tablet1 kernel: On node 0, zone DMA32: 441 pages in unavailable ranges
Mar 06 11:22:24 daniel-tablet1 kernel: On node 0, zone Normal: 17408 pages in unavailable ranges
Mar 06 11:22:24 daniel-tablet1 kernel: On node 0, zone Normal: 21504 pages in unavailable ranges
Mar 06 11:22:24 daniel-tablet1 kernel: Reserving Intel graphics memory at [mem 0x91800000-0x953fffff]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: PM-Timer IO Port: 0x1808
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Mar 06 11:22:24 daniel-tablet1 kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Mar 06 11:22:24 daniel-tablet1 kernel: e820: update [mem 0x775f5000-0x77632fff] usable ==> reserved
Mar 06 11:22:24 daniel-tablet1 kernel: TSC deadline timer available
Mar 06 11:22:24 daniel-tablet1 kernel: CPU topo: Max. logical packages: 1
Mar 06 11:22:24 daniel-tablet1 kernel: CPU topo: Max. logical dies: 1
Mar 06 11:22:24 daniel-tablet1 kernel: CPU topo: Max. dies per package: 1
Mar 06 11:22:24 daniel-tablet1 kernel: CPU topo: Max. threads per core: 2
Mar 06 11:22:24 daniel-tablet1 kernel: CPU topo: Num. cores per package: 4
Mar 06 11:22:24 daniel-tablet1 kernel: CPU topo: Num. threads per package: 8
Mar 06 11:22:24 daniel-tablet1 kernel: CPU topo: Allowing 8 present CPUs plus 0 hotplug CPUs
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x77095000-0x770a0fff]
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x775f5000-0x77632fff]
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x78de5000-0x78de5fff]
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x79cc0000-0x79cc0fff]
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x79cc2000-0x79cc2fff]
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x7b62c000-0x7ba2bfff]
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x7ba46000-0x7bbfefff]
Mar 06 11:22:24 daniel-tablet1 kernel: PM: hibernation: Registered nosave memory: [mem 0x7bc00000-0xffffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: [mem 0x95400000-0xfe00ffff] available for PCI devices
Mar 06 11:22:24 daniel-tablet1 kernel: Booting paravirtualized kernel on bare hardware
Mar 06 11:22:24 daniel-tablet1 kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Mar 06 11:22:24 daniel-tablet1 kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
Mar 06 11:22:24 daniel-tablet1 kernel: percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u524288
Mar 06 11:22:24 daniel-tablet1 kernel: pcpu-alloc: s221184 r8192 d114688 u524288 alloc=1*2097152
Mar 06 11:22:24 daniel-tablet1 kernel: pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7
Mar 06 11:22:24 daniel-tablet1 kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-6.18.7-surface-1 root=/dev/nvme0n1p8 ro fbcon=font:TER16x32 rootflags=nombcache quiet splash usbcore.autosuspend=-1 usbcore.quirks=0bda:8153:k reboot=pci
Mar 06 11:22:24 daniel-tablet1 kernel: Unknown kernel command line parameters "splash", will be passed to user space.
Mar 06 11:22:24 daniel-tablet1 kernel: printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes
Mar 06 11:22:24 daniel-tablet1 kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: software IO TLB: area num 8.
Mar 06 11:22:24 daniel-tablet1 kernel: Fallback order for Node 0: 0
Mar 06 11:22:24 daniel-tablet1 kernel: Built 1 zonelists, mobility grouping on. Total pages: 4088280
Mar 06 11:22:24 daniel-tablet1 kernel: Policy zone: Normal
Mar 06 11:22:24 daniel-tablet1 kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
Mar 06 11:22:24 daniel-tablet1 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Mar 06 11:22:24 daniel-tablet1 kernel: ftrace: allocating 58226 entries in 228 pages
Mar 06 11:22:24 daniel-tablet1 kernel: ftrace: allocated 228 pages with 4 groups
Mar 06 11:22:24 daniel-tablet1 kernel: Dynamic Preempt: voluntary
Mar 06 11:22:24 daniel-tablet1 kernel: rcu: Preemptible hierarchical RCU implementation.
Mar 06 11:22:24 daniel-tablet1 kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
Mar 06 11:22:24 daniel-tablet1 kernel: Trampoline variant of Tasks RCU enabled.
Mar 06 11:22:24 daniel-tablet1 kernel: Rude variant of Tasks RCU enabled.
Mar 06 11:22:24 daniel-tablet1 kernel: Tracing variant of Tasks RCU enabled.
Mar 06 11:22:24 daniel-tablet1 kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Mar 06 11:22:24 daniel-tablet1 kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Mar 06 11:22:24 daniel-tablet1 kernel: RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
Mar 06 11:22:24 daniel-tablet1 kernel: RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
Mar 06 11:22:24 daniel-tablet1 kernel: RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
Mar 06 11:22:24 daniel-tablet1 kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
Mar 06 11:22:24 daniel-tablet1 kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Mar 06 11:22:24 daniel-tablet1 kernel: Console: colour dummy device 80x25
Mar 06 11:22:24 daniel-tablet1 kernel: printk: legacy console [tty0] enabled
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Core revision 20250807
Mar 06 11:22:24 daniel-tablet1 kernel: hpet: HPET dysfunctional in PC10. Force disabled.
Mar 06 11:22:24 daniel-tablet1 kernel: APIC: Switch to symmetric I/O mode setup
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: Host address width 39
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 49e2ff0505e
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: DRHD base: 0x000000fed92000 flags: 0x0
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: dmar1: reg_base_addr fed92000 ver 1:0 cap d2008c40660462 ecap f050da
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: dmar2: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: RMRR base: 0x00000091000000 end: 0x000000953fffff
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 2
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR-IR: Enabled IRQ remapping in xapic mode
Mar 06 11:22:24 daniel-tablet1 kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Mar 06 11:22:24 daniel-tablet1 kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x159647815e3, max_idle_ns: 440795269835 ns
Mar 06 11:22:24 daniel-tablet1 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 2995.20 BogoMIPS (lpj=1497600)
Mar 06 11:22:24 daniel-tablet1 kernel: x86/cpu: SGX disabled or unsupported by BIOS.
Mar 06 11:22:24 daniel-tablet1 kernel: CPU0: Thermal monitoring enabled (TM1)
Mar 06 11:22:24 daniel-tablet1 kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Mar 06 11:22:24 daniel-tablet1 kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Mar 06 11:22:24 daniel-tablet1 kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Mar 06 11:22:24 daniel-tablet1 kernel: process: using mwait in idle threads
Mar 06 11:22:24 daniel-tablet1 kernel: mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
Mar 06 11:22:24 daniel-tablet1 kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Mar 06 11:22:24 daniel-tablet1 kernel: SRBDS: Mitigation: Microcode
Mar 06 11:22:24 daniel-tablet1 kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
Mar 06 11:22:24 daniel-tablet1 kernel: RETBleed: Mitigation: Enhanced IBRS
Mar 06 11:22:24 daniel-tablet1 kernel: ITS: Mitigation: Aligned branch/return thunks
Mar 06 11:22:24 daniel-tablet1 kernel: MMIO Stale Data: Mitigation: Clear CPU buffers
Mar 06 11:22:24 daniel-tablet1 kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Mar 06 11:22:24 daniel-tablet1 kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
Mar 06 11:22:24 daniel-tablet1 kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Mar 06 11:22:24 daniel-tablet1 kernel: GDS: Vulnerable
Mar 06 11:22:24 daniel-tablet1 kernel: active return thunk: its_return_thunk
Mar 06 11:22:24 daniel-tablet1 kernel: Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall and VM exit
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
Mar 06 11:22:24 daniel-tablet1 kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
Mar 06 11:22:24 daniel-tablet1 kernel: Freeing SMP alternatives memory: 52K
Mar 06 11:22:24 daniel-tablet1 kernel: pid_max: default: 32768 minimum: 301
Mar 06 11:22:24 daniel-tablet1 kernel: LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
Mar 06 11:22:24 daniel-tablet1 kernel: landlock: Up and running.
Mar 06 11:22:24 daniel-tablet1 kernel: Yama: becoming mindful.
Mar 06 11:22:24 daniel-tablet1 kernel: AppArmor: AppArmor initialized
Mar 06 11:22:24 daniel-tablet1 kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: smpboot: CPU0: Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz (family: 0x6, model: 0x7e, stepping: 0x5)
Mar 06 11:22:24 daniel-tablet1 kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
Mar 06 11:22:24 daniel-tablet1 kernel: ... version: 5
Mar 06 11:22:24 daniel-tablet1 kernel: ... bit width: 48
Mar 06 11:22:24 daniel-tablet1 kernel: ... generic counters: 8
Mar 06 11:22:24 daniel-tablet1 kernel: ... generic bitmap: 00000000000000ff
Mar 06 11:22:24 daniel-tablet1 kernel: ... fixed-purpose counters: 4
Mar 06 11:22:24 daniel-tablet1 kernel: ... fixed-purpose bitmap: 000000000000000f
Mar 06 11:22:24 daniel-tablet1 kernel: ... value mask: 0000ffffffffffff
Mar 06 11:22:24 daniel-tablet1 kernel: ... max period: 00007fffffffffff
Mar 06 11:22:24 daniel-tablet1 kernel: ... global_ctrl mask: 0001000f000000ff
Mar 06 11:22:24 daniel-tablet1 kernel: signal: max sigframe size: 3632
Mar 06 11:22:24 daniel-tablet1 kernel: Estimated ratio of average max frequency by base frequency (times 1024): 2389
Mar 06 11:22:24 daniel-tablet1 kernel: rcu: Hierarchical SRCU implementation.
Mar 06 11:22:24 daniel-tablet1 kernel: rcu: Max phase no-delay instances is 400.
Mar 06 11:22:24 daniel-tablet1 kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
Mar 06 11:22:24 daniel-tablet1 kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Mar 06 11:22:24 daniel-tablet1 kernel: smp: Bringing up secondary CPUs ...
Mar 06 11:22:24 daniel-tablet1 kernel: smpboot: x86: Booting SMP configuration:
Mar 06 11:22:24 daniel-tablet1 kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
Mar 06 11:22:24 daniel-tablet1 kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
Mar 06 11:22:24 daniel-tablet1 kernel: smp: Brought up 1 node, 8 CPUs
Mar 06 11:22:24 daniel-tablet1 kernel: smpboot: Total of 8 processors activated (23961.60 BogoMIPS)
Mar 06 11:22:24 daniel-tablet1 kernel: Memory: 15845752K/16353120K available (20537K kernel code, 3452K rwdata, 8616K rodata, 5000K init, 5680K bss, 480468K reserved, 0K cma-reserved)
Mar 06 11:22:24 daniel-tablet1 kernel: devtmpfs: initialized
Mar 06 11:22:24 daniel-tablet1 kernel: x86/mm: Memory block size: 128MB
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: PM: Registering ACPI NVS region [mem 0x79cc0000-0x79cc0fff] (4096 bytes)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: PM: Registering ACPI NVS region [mem 0x7bb8a000-0x7bbb3fff] (172032 bytes)
Mar 06 11:22:24 daniel-tablet1 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Mar 06 11:22:24 daniel-tablet1 kernel: posixtimers hash table entries: 4096 (order: 4, 65536 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: futex hash table entries: 2048 (131072 bytes on 1 NUMA nodes, total 128 KiB, linear).
Mar 06 11:22:24 daniel-tablet1 kernel: pinctrl core: initialized pinctrl subsystem
Mar 06 11:22:24 daniel-tablet1 kernel: PM: RTC time: 16:22:21, date: 2026-03-06
Mar 06 11:22:24 daniel-tablet1 kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Mar 06 11:22:24 daniel-tablet1 kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Mar 06 11:22:24 daniel-tablet1 kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Mar 06 11:22:24 daniel-tablet1 kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Mar 06 11:22:24 daniel-tablet1 kernel: audit: initializing netlink subsys (disabled)
Mar 06 11:22:24 daniel-tablet1 kernel: audit: type=2000 audit(1772814141.019:1): state=initialized audit_enabled=0 res=1
Mar 06 11:22:24 daniel-tablet1 kernel: thermal_sys: Registered thermal governor 'fair_share'
Mar 06 11:22:24 daniel-tablet1 kernel: thermal_sys: Registered thermal governor 'bang_bang'
Mar 06 11:22:24 daniel-tablet1 kernel: thermal_sys: Registered thermal governor 'step_wise'
Mar 06 11:22:24 daniel-tablet1 kernel: thermal_sys: Registered thermal governor 'user_space'
Mar 06 11:22:24 daniel-tablet1 kernel: thermal_sys: Registered thermal governor 'power_allocator'
Mar 06 11:22:24 daniel-tablet1 kernel: cpuidle: using governor ladder
Mar 06 11:22:24 daniel-tablet1 kernel: cpuidle: using governor menu
Mar 06 11:22:24 daniel-tablet1 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Mar 06 11:22:24 daniel-tablet1 kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
Mar 06 11:22:24 daniel-tablet1 kernel: PCI: Using configuration type 1 for base access
Mar 06 11:22:24 daniel-tablet1 kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Mar 06 11:22:24 daniel-tablet1 kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Mar 06 11:22:24 daniel-tablet1 kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Mar 06 11:22:24 daniel-tablet1 kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Mar 06 11:22:24 daniel-tablet1 kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Added _OSI(Module Device)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Added _OSI(Processor Device)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: 8 ACPI AML tables successfully acquired and loaded
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Dynamic OEM Table Load:
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0xFFFF8C0E02426000 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Dynamic OEM Table Load:
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0xFFFF8C0E023DD800 000437 (v02 PmRef Cpu0Ist 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Dynamic OEM Table Load:
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0xFFFF8C0E01793A00 0000F4 (v02 PmRef Cpu0Psd 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Dynamic OEM Table Load:
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0xFFFF8C0E02376800 00012C (v02 PmRef Cpu0Hwp 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Dynamic OEM Table Load:
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0xFFFF8C0E023DB000 000724 (v02 PmRef HwpLvt 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Dynamic OEM Table Load:
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0xFFFF8C0E023DC000 0005FC (v02 PmRef ApIst 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Dynamic OEM Table Load:
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0xFFFF8C0E02420C00 000317 (v02 PmRef ApHwp 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Dynamic OEM Table Load:
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0xFFFF8C0E02435000 000AB0 (v02 PmRef ApPsd 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Dynamic OEM Table Load:
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: SSDT 0xFFFF8C0E02420400 00030A (v02 PmRef ApCst 00003000 INTL 20181003)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Interpreter enabled
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: PM: (supports S0 S4 S5)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Using IOAPIC for interrupt routing
Mar 06 11:22:24 daniel-tablet1 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Mar 06 11:22:24 daniel-tablet1 kernel: PCI: Ignoring E820 reservations for host bridge windows
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: Enabled 8 GPEs in block 00 to 7F
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: \_SB_.PCI0.XHC_.RHUB.HS10.BTPR: New power resource
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: \_SB_.PCI0.TBT0: New power resource
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: \_SB_.PCI0.TBT1: New power resource
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: \_SB_.PCI0.D3C_: New power resource
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: \PIN_: New power resource
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Mar 06 11:22:24 daniel-tablet1 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Mar 06 11:22:24 daniel-tablet1 kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
Mar 06 11:22:24 daniel-tablet1 kernel: PCI host bridge to bus 0000:00
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: root bus resource [mem 0x95400000-0xdfffffff window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:00.0: [8086:8a12] type 00 class 0x060000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: [8086:8a52] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: BAR 0 [mem 0x6001000000-0x6001ffffff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: BAR 2 [mem 0x4000000000-0x400fffffff 64bit pref]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: BAR 4 [io 0x3000-0x303f]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:04.0: [8086:8a03] type 00 class 0x118000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:04.0: BAR 0 [mem 0x6002120000-0x600212ffff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:05.0: [8086:8a19] type 00 class 0x048000 PCIe Root Complex Integrated Endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:05.0: BAR 0 [mem 0x6000000000-0x6000ffffff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:0d.0: [8086:8a13] type 00 class 0x0c0330 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:0d.0: BAR 0 [mem 0x6002110000-0x600211ffff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:0d.0: PME# supported from D3hot D3cold
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:12.0: [8086:34fc] type 00 class 0x070000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:12.0: BAR 0 [mem 0x600213a000-0x600213bfff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:12.0: PME# supported from D0 D3hot
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.0: [8086:34ed] type 00 class 0x0c0330 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.0: BAR 0 [mem 0x6002100000-0x600210ffff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.2: [8086:34ef] type 00 class 0x050000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.2: BAR 0 [mem 0x6002138000-0x6002139fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.2: BAR 2 [mem 0x6002143000-0x6002143fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.3: [8086:34f0] type 00 class 0x028000 PCIe Root Complex Integrated Endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.3: BAR 0 [mem 0x6002134000-0x6002137fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.0: [8086:34e8] type 00 class 0x0c8000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.2: [8086:34ea] type 00 class 0x0c8000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.2: BAR 0 [mem 0x00000000-0x00000fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.3: [8086:34eb] type 00 class 0x0c8000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.3: BAR 0 [mem 0x00000000-0x00000fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:16.0: [8086:34e0] type 00 class 0x078000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:16.0: BAR 0 [mem 0x600213f000-0x600213ffff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:16.0: PME# supported from D3hot
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:16.4: [8086:34e4] type 00 class 0x078000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:16.4: BAR 0 [mem 0x600213e000-0x600213efff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:16.4: DMAR: Disabling IOMMU for IPTS
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:16.4: PME# supported from D3hot
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:19.0: [8086:34c5] type 00 class 0x0c8000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:19.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1d.0: [8086:34b0] type 01 class 0x060400 PCIe Root Port
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1d.0: PCI bridge to [bus 01]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1d.0: bridge window [mem 0x95400000-0x954fffff]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1e.0: [8086:34a8] type 00 class 0x078000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1e.0: BAR 0 [mem 0x00000000-0x00000fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.0: [8086:3482] type 00 class 0x060100 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.3: [8086:34c8] type 00 class 0x040380 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.3: BAR 0 [mem 0x6002130000-0x6002133fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.3: BAR 4 [mem 0x6002000000-0x60020fffff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.5: [8086:34a4] type 00 class 0x0c8000 conventional PCI endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:01:00.0: [1c5c:1327] type 00 class 0x010802 PCIe Endpoint
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:01:00.0: BAR 0 [mem 0x95400000-0x95403fff 64bit]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:01:00.0: supports D1
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:01:00.0: PME# supported from D0 D1 D3hot
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1d.0: PCI bridge to [bus 01]
Mar 06 11:22:24 daniel-tablet1 kernel: Low-power S0 idle used by default for system suspend
Mar 06 11:22:24 daniel-tablet1 kernel: iommu: Default domain type: Translated
Mar 06 11:22:24 daniel-tablet1 kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Mar 06 11:22:24 daniel-tablet1 kernel: SCSI subsystem initialized
Mar 06 11:22:24 daniel-tablet1 kernel: libata version 3.00 loaded.
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: bus type USB registered
Mar 06 11:22:24 daniel-tablet1 kernel: usbcore: registered new interface driver usbfs
Mar 06 11:22:24 daniel-tablet1 kernel: usbcore: registered new interface driver hub
Mar 06 11:22:24 daniel-tablet1 kernel: usbcore: registered new device driver usb
Mar 06 11:22:24 daniel-tablet1 kernel: pps_core: LinuxPPS API ver. 1 registered
Mar 06 11:22:24 daniel-tablet1 kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Mar 06 11:22:24 daniel-tablet1 kernel: PTP clock support registered
Mar 06 11:22:24 daniel-tablet1 kernel: EDAC MC: Ver: 3.0.0
Mar 06 11:22:24 daniel-tablet1 kernel: efivars: Registered efivars operations
Mar 06 11:22:24 daniel-tablet1 kernel: NetLabel: Initializing
Mar 06 11:22:24 daniel-tablet1 kernel: NetLabel: domain hash size = 128
Mar 06 11:22:24 daniel-tablet1 kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
Mar 06 11:22:24 daniel-tablet1 kernel: NetLabel: unlabeled traffic allowed by default
Mar 06 11:22:24 daniel-tablet1 kernel: mctp: management component transport protocol core
Mar 06 11:22:24 daniel-tablet1 kernel: NET: Registered PF_MCTP protocol family
Mar 06 11:22:24 daniel-tablet1 kernel: PCI: Using ACPI for IRQ routing
Mar 06 11:22:24 daniel-tablet1 kernel: PCI: pci_cache_line_size set to 64 bytes
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]: can't claim; no compatible bridge window
Mar 06 11:22:24 daniel-tablet1 kernel: e820: reserve RAM buffer [mem 0x77095000-0x77ffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: e820: reserve RAM buffer [mem 0x775f5000-0x77ffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: e820: reserve RAM buffer [mem 0x78de5000-0x7bffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: e820: reserve RAM buffer [mem 0x79cc0000-0x7bffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: e820: reserve RAM buffer [mem 0x79cc2000-0x7bffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: e820: reserve RAM buffer [mem 0x7b62c000-0x7bffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: e820: reserve RAM buffer [mem 0x7ba46000-0x7bffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: e820: reserve RAM buffer [mem 0x7bc00000-0x7bffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: e820: reserve RAM buffer [mem 0x46ac00000-0x46bffffff]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Mar 06 11:22:24 daniel-tablet1 kernel: vgaarb: loaded
Mar 06 11:22:24 daniel-tablet1 kernel: Monitor-Mwait will be used to enter C-1 state
Mar 06 11:22:24 daniel-tablet1 kernel: Monitor-Mwait will be used to enter C-2 state
Mar 06 11:22:24 daniel-tablet1 kernel: Monitor-Mwait will be used to enter C-3 state
Mar 06 11:22:24 daniel-tablet1 kernel: clocksource: Switched to clocksource tsc-early
Mar 06 11:22:24 daniel-tablet1 kernel: VFS: Disk quotas dquot_6.6.0
Mar 06 11:22:24 daniel-tablet1 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Mar 06 11:22:24 daniel-tablet1 kernel: AppArmor: AppArmor Filesystem Enabled
Mar 06 11:22:24 daniel-tablet1 kernel: pnp: PnP ACPI init
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:00: [io 0x0680-0x069f] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:00: [io 0x164e-0x164f] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:02: [mem 0xfed10000-0xfed17fff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:02: [mem 0xfeda0000-0xfeda0fff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:02: [mem 0xfeda1000-0xfeda1fff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:02: [mem 0xe0000000-0xefffffff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:02: [mem 0xfed20000-0xfed7ffff] could not be reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:02: [mem 0xfed90000-0xfed93fff] could not be reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:02: [mem 0xfee00000-0xfeefffff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:03: [io 0x1800-0x18fe] could not be reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:03: [mem 0xfd000000-0xfd68ffff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:03: [mem 0xfd6b0000-0xfd6cffff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:03: [mem 0xfd6f0000-0xfdffffff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:03: [mem 0xfe000000-0xfe01ffff] could not be reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:03: [mem 0xfe200000-0xfe7fffff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:03: [mem 0xff000000-0xffffffff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:04: [io 0x2000-0x20fe] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: system 00:05: [mem 0xfe038000-0xfe038fff] has been reserved
Mar 06 11:22:24 daniel-tablet1 kernel: pnp: PnP ACPI: found 6 devices
Mar 06 11:22:24 daniel-tablet1 kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Mar 06 11:22:24 daniel-tablet1 kernel: NET: Registered PF_INET protocol family
Mar 06 11:22:24 daniel-tablet1 kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: TCP: Hash tables configured (established 131072 bind 65536)
Mar 06 11:22:24 daniel-tablet1 kernel: MPTCP token hash table entries: 16384 (order: 7, 393216 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
Mar 06 11:22:24 daniel-tablet1 kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Mar 06 11:22:24 daniel-tablet1 kernel: NET: Registered PF_XDP protocol family
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.0: BAR 0 [mem 0x4010000000-0x4010000fff 64bit]: assigned
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.2: BAR 0 [mem 0x4010001000-0x4010001fff 64bit]: assigned
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.3: BAR 0 [mem 0x4010002000-0x4010002fff 64bit]: assigned
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:19.0: BAR 0 [mem 0x4010003000-0x4010003fff 64bit]: assigned
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1e.0: BAR 0 [mem 0x4010004000-0x4010004fff 64bit]: assigned
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.5: BAR 0 [mem 0x95500000-0x95500fff]: assigned
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1d.0: PCI bridge to [bus 01]
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1d.0: bridge window [mem 0x95400000-0x954fffff]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: resource 7 [mem 0x95400000-0xdfffffff window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
Mar 06 11:22:24 daniel-tablet1 kernel: pci_bus 0000:01: resource 1 [mem 0x95400000-0x954fffff]
Mar 06 11:22:24 daniel-tablet1 kernel: PCI: CLS 0 bytes, default 64
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: No ATSR found
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: No SATC found
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: dmar1: Using Queued invalidation
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: dmar0: Using Queued invalidation
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: dmar2: Using Queued invalidation
Mar 06 11:22:24 daniel-tablet1 kernel: Trying to unpack rootfs image as initramfs...
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:05.0: Adding to iommu group 0
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:02.0: Adding to iommu group 1
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:00.0: Adding to iommu group 2
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:04.0: Adding to iommu group 3
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:0d.0: Adding to iommu group 4
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:12.0: Adding to iommu group 5
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.0: Adding to iommu group 6
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.2: Adding to iommu group 6
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:14.3: Adding to iommu group 7
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.0: Adding to iommu group 8
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.2: Adding to iommu group 8
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:15.3: Adding to iommu group 8
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:16.0: Adding to iommu group 9
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:16.4: Adding to iommu group 9
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:19.0: Adding to iommu group 10
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1d.0: Adding to iommu group 11
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1e.0: Adding to iommu group 12
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.0: Adding to iommu group 13
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.3: Adding to iommu group 13
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:00:1f.5: Adding to iommu group 13
Mar 06 11:22:24 daniel-tablet1 kernel: pci 0000:01:00.0: Adding to iommu group 14
Mar 06 11:22:24 daniel-tablet1 kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
Mar 06 11:22:24 daniel-tablet1 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Mar 06 11:22:24 daniel-tablet1 kernel: software IO TLB: mapped [mem 0x0000000073095000-0x0000000077095000] (64MB)
Mar 06 11:22:24 daniel-tablet1 kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x159647815e3, max_idle_ns: 440795269835 ns
Mar 06 11:22:24 daniel-tablet1 kernel: clocksource: Switched to clocksource tsc
Mar 06 11:22:24 daniel-tablet1 kernel: Initialise system trusted keyrings
Mar 06 11:22:24 daniel-tablet1 kernel: Key type blacklist registered
Mar 06 11:22:24 daniel-tablet1 kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
Mar 06 11:22:24 daniel-tablet1 kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Mar 06 11:22:24 daniel-tablet1 kernel: fuse: init (API version 7.45)
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Platform Keyring initialized
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Machine keyring initialized
Mar 06 11:22:24 daniel-tablet1 kernel: Key type asymmetric registered
Mar 06 11:22:24 daniel-tablet1 kernel: Asymmetric key parser 'x509' registered
Mar 06 11:22:24 daniel-tablet1 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Mar 06 11:22:24 daniel-tablet1 kernel: io scheduler mq-deadline registered
Mar 06 11:22:24 daniel-tablet1 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Mar 06 11:22:24 daniel-tablet1 kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
Mar 06 11:22:24 daniel-tablet1 kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: button: Lid Switch [LID0]
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: [Firmware Bug]: No valid trip points!
Mar 06 11:22:24 daniel-tablet1 kernel: thermal LNXTHERM:00: registered as thermal_zone0
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: Thermal Zone [TZ01] (27 C)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: [Firmware Bug]: No valid trip points!
Mar 06 11:22:24 daniel-tablet1 kernel: thermal LNXTHERM:01: registered as thermal_zone1
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: Thermal Zone [TZ02] (27 C)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: [Firmware Bug]: No valid trip points!
Mar 06 11:22:24 daniel-tablet1 kernel: thermal LNXTHERM:02: registered as thermal_zone2
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: Thermal Zone [TZ03] (27 C)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: [Firmware Bug]: No valid trip points!
Mar 06 11:22:24 daniel-tablet1 kernel: thermal LNXTHERM:03: registered as thermal_zone3
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: Thermal Zone [TZ04] (27 C)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: [Firmware Bug]: No valid trip points!
Mar 06 11:22:24 daniel-tablet1 kernel: thermal LNXTHERM:04: registered as thermal_zone4
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: Thermal Zone [TZ05] (27 C)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: [Firmware Bug]: No valid trip points!
Mar 06 11:22:24 daniel-tablet1 kernel: thermal LNXTHERM:05: registered as thermal_zone5
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: Thermal Zone [TZ06] (27 C)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: [Firmware Bug]: No valid trip points!
Mar 06 11:22:24 daniel-tablet1 kernel: thermal LNXTHERM:06: registered as thermal_zone6
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: Thermal Zone [TZ07] (27 C)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: [Firmware Bug]: No valid trip points!
Mar 06 11:22:24 daniel-tablet1 kernel: thermal LNXTHERM:07: registered as thermal_zone7
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: Thermal Zone [TZ08] (27 C)
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: [Firmware Bug]: No valid trip points!
Mar 06 11:22:24 daniel-tablet1 kernel: thermal LNXTHERM:08: registered as thermal_zone8
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: thermal: Thermal Zone [TZ09] (27 C)
Mar 06 11:22:24 daniel-tablet1 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Mar 06 11:22:24 daniel-tablet1 kernel: serial 0000:00:12.0: enabling device (0000 -> 0002)
Mar 06 11:22:24 daniel-tablet1 kernel: hpet_acpi_add: no address or irqs in _CRS
Mar 06 11:22:24 daniel-tablet1 kernel: Linux agpgart interface v0.103
Mar 06 11:22:24 daniel-tablet1 kernel: ACPI: bus type drm_connector registered
Mar 06 11:22:24 daniel-tablet1 kernel: loop: module loaded
Mar 06 11:22:24 daniel-tablet1 kernel: tun: Universal TUN/TAP device driver, 1.6
Mar 06 11:22:24 daniel-tablet1 kernel: PPP generic driver version 2.4.2
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x110 quirks 0x0000000200009810
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:0d.0: Host supports USB 3.1 Enhanced SuperSpeed
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb1: Product: xHCI Host Controller
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb1: Manufacturer: Linux 6.18.7-surface-1 xhci-hcd
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb1: SerialNumber: 0000:00:0d.0
Mar 06 11:22:24 daniel-tablet1 kernel: hub 1-0:1.0: USB hub found
Mar 06 11:22:24 daniel-tablet1 kernel: hub 1-0:1.0: 1 port detected
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.18
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb2: Product: xHCI Host Controller
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb2: Manufacturer: Linux 6.18.7-surface-1 xhci-hcd
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb2: SerialNumber: 0000:00:0d.0
Mar 06 11:22:24 daniel-tablet1 kernel: hub 2-0:1.0: USB hub found
Mar 06 11:22:24 daniel-tablet1 kernel: hub 2-0:1.0: 4 ports detected
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x110 quirks 0x0000000000009810
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Mar 06 11:22:24 daniel-tablet1 kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb3: Product: xHCI Host Controller
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb3: Manufacturer: Linux 6.18.7-surface-1 xhci-hcd
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb3: SerialNumber: 0000:00:14.0
Mar 06 11:22:24 daniel-tablet1 kernel: hub 3-0:1.0: USB hub found
Mar 06 11:22:24 daniel-tablet1 kernel: hub 3-0:1.0: 12 ports detected
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.18
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb4: Product: xHCI Host Controller
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb4: Manufacturer: Linux 6.18.7-surface-1 xhci-hcd
Mar 06 11:22:24 daniel-tablet1 kernel: usb usb4: SerialNumber: 0000:00:14.0
Mar 06 11:22:24 daniel-tablet1 kernel: hub 4-0:1.0: USB hub found
Mar 06 11:22:24 daniel-tablet1 kernel: hub 4-0:1.0: 6 ports detected
Mar 06 11:22:24 daniel-tablet1 kernel: i8042: PNP: No PS/2 controller found.
Mar 06 11:22:24 daniel-tablet1 kernel: mousedev: PS/2 mouse device common for all mice
Mar 06 11:22:24 daniel-tablet1 kernel: rtc_cmos 00:01: RTC can wake from S4
Mar 06 11:22:24 daniel-tablet1 kernel: rtc_cmos 00:01: registered as rtc0
Mar 06 11:22:24 daniel-tablet1 kernel: rtc_cmos 00:01: setting system clock to 2026-03-06T16:22:21 UTC (1772814141)
Mar 06 11:22:24 daniel-tablet1 kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
Mar 06 11:22:24 daniel-tablet1 kernel: i2c_dev: i2c /dev entries driver
Mar 06 11:22:24 daniel-tablet1 kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
Mar 06 11:22:24 daniel-tablet1 kernel: device-mapper: uevent: version 1.0.3
Mar 06 11:22:24 daniel-tablet1 kernel: device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
Mar 06 11:22:24 daniel-tablet1 kernel: intel_pstate: Intel P-state driver initializing
Mar 06 11:22:24 daniel-tablet1 kernel: intel_pstate: HWP enabled
Mar 06 11:22:24 daniel-tablet1 kernel: simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
Mar 06 11:22:24 daniel-tablet1 kernel: [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
Mar 06 11:22:24 daniel-tablet1 kernel: fbcon: Deferring console take-over
Mar 06 11:22:24 daniel-tablet1 kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
Mar 06 11:22:24 daniel-tablet1 kernel: drop_monitor: Initializing network drop monitor service
Mar 06 11:22:24 daniel-tablet1 kernel: NET: Registered PF_INET6 protocol family
Mar 06 11:22:24 daniel-tablet1 kernel: Segment Routing with IPv6
Mar 06 11:22:24 daniel-tablet1 kernel: In-situ OAM (IOAM) with IPv6
Mar 06 11:22:24 daniel-tablet1 kernel: NET: Registered PF_PACKET protocol family
Mar 06 11:22:24 daniel-tablet1 kernel: Key type dns_resolver registered
Mar 06 11:22:24 daniel-tablet1 kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Mar 06 11:22:24 daniel-tablet1 kernel: microcode: Current revision: 0x000000ca
Mar 06 11:22:24 daniel-tablet1 kernel: microcode: Updated early from: 0x000000c6
Mar 06 11:22:24 daniel-tablet1 kernel: IPI shorthand broadcast: enabled
Mar 06 11:22:24 daniel-tablet1 kernel: sched_clock: Marking stable (557000897, 7522984)->(636246354, -71722473)
Mar 06 11:22:24 daniel-tablet1 kernel: registered taskstats version 1
Mar 06 11:22:24 daniel-tablet1 kernel: Loading compiled-in X.509 certificates
Mar 06 11:22:24 daniel-tablet1 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 48f65da3e1ba40b8962cdc3b181bebcc065f2fe1'
Mar 06 11:22:24 daniel-tablet1 kernel: Demotion targets for Node 0: null
Mar 06 11:22:24 daniel-tablet1 kernel: Key type .fscrypt registered
Mar 06 11:22:24 daniel-tablet1 kernel: Key type fscrypt-provisioning registered
Mar 06 11:22:24 daniel-tablet1 kernel: Key type big_key registered
Mar 06 11:22:24 daniel-tablet1 kernel: Key type trusted registered
Mar 06 11:22:24 daniel-tablet1 kernel: Freeing initrd memory: 80528K
Mar 06 11:22:24 daniel-tablet1 kernel: Key type encrypted registered
Mar 06 11:22:24 daniel-tablet1 kernel: AppArmor: AppArmor sha256 policy hashing enabled
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loading X.509 certificate: UEFI:db
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loading X.509 certificate: UEFI:db
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loading X.509 certificate: UEFI:db
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loading X.509 certificate: UEFI:db
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
Mar 06 11:22:24 daniel-tablet1 kernel: blacklist: Duplicate blacklisted hash bin:c452ab846073df5ace25cca64d6b7a09d906308a1a65eb5240e3c4ebcaa9cc0c
Mar 06 11:22:24 daniel-tablet1 kernel: blacklist: Duplicate blacklisted hash bin:47ff1b63b140b6fc04ed79131331e651da5b2e2f170f5daef4153dc2fbc532b1
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table)
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table)
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loaded X.509 cert 'Default Company Ltd: linux-surface: 24ef5c444499ba0aa6f2a8bea4258f065fea4ec6'
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table)
Mar 06 11:22:24 daniel-tablet1 kernel: integrity: Loaded X.509 cert 'daniel-tablet1 Secure Boot Module Signature key: acf364063669bbb41a0f75bb4970bd70ac30e272'
Mar 06 11:22:24 daniel-tablet1 kernel: Loading compiled-in module X.509 certificates
Mar 06 11:22:24 daniel-tablet1 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 48f65da3e1ba40b8962cdc3b181bebcc065f2fe1'
Mar 06 11:22:24 daniel-tablet1 kernel: ima: Allocated hash algorithm: sha256
Mar 06 11:22:24 daniel-tablet1 kernel: evm: Initialising EVM extended attributes:
Mar 06 11:22:24 daniel-tablet1 kernel: evm: security.selinux
Mar 06 11:22:24 daniel-tablet1 kernel: evm: security.SMACK64
Mar 06 11:22:24 daniel-tablet1 kernel: evm: security.SMACK64EXEC
Mar 06 11:22:24 daniel-tablet1 kernel: evm: security.SMACK64TRANSMUTE
Mar 06 11:22:24 daniel-tablet1 kernel: evm: security.SMACK64MMAP
Mar 06 11:22:24 daniel-tablet1 kernel: evm: security.apparmor
Mar 06 11:22:24 daniel-tablet1 kernel: evm: security.ima
Mar 06 11:22:24 daniel-tablet1 kernel: evm: security.capability
Mar 06 11:22:24 daniel-tablet1 kernel: evm: HMAC attrs: 0x1
Mar 06 11:22:24 daniel-tablet1 kernel: audit: type=1807 audit(1772814141.724:2): action=measure func=KEXEC_KERNEL_CHECK res=1
Mar 06 11:22:24 daniel-tablet1 kernel: audit: type=1807 audit(1772814141.724:3): action=measure func=MODULE_CHECK res=1
Mar 06 11:22:24 daniel-tablet1 kernel: PM: Magic number: 2:950:387
Mar 06 11:22:24 daniel-tablet1 kernel: thermal cooling_device2: hash matches
Mar 06 11:22:24 daniel-tablet1 kernel: RAS: Correctable Errors collector initialized.
Mar 06 11:22:24 daniel-tablet1 kernel: clk: Disabling unused clocks
Mar 06 11:22:24 daniel-tablet1 kernel: PM: genpd: Disabling unused power domains
Mar 06 11:22:24 daniel-tablet1 kernel: usb 3-8: new full-speed USB device number 2 using xhci_hcd
Mar 06 11:22:24 daniel-tablet1 kernel: Freeing unused decrypted memory: 2028K
Mar 06 11:22:24 daniel-tablet1 kernel: Freeing unused kernel image (initmem) memory: 5000K
Mar 06 11:22:24 daniel-tablet1 kernel: Write protecting the kernel read-only data: 32768k
Mar 06 11:22:24 daniel-tablet1 kernel: Freeing unused kernel image (text/rodata gap) memory: 1988K
Mar 06 11:22:24 daniel-tablet1 kernel: Freeing unused kernel image (rodata/data gap) memory: 1624K
Mar 06 11:22:24 daniel-tablet1 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Mar 06 11:22:24 daniel-tablet1 kernel: Run /init as init process
Mar 06 11:22:24 daniel-tablet1 kernel: with arguments:
Mar 06 11:22:24 daniel-tablet1 kernel: /init
Mar 06 11:22:24 daniel-tablet1 kernel: splash
Mar 06 11:22:24 daniel-tablet1 kernel: with environment:
Mar 06 11:22:24 daniel-tablet1 kernel: HOME=/
Mar 06 11:22:24 daniel-tablet1 kernel: TERM=linux
Mar 06 11:22:24 daniel-tablet1 kernel: usb 3-8: New USB device found, idVendor=045e, idProduct=09c0, bcdDevice= 0.07
Mar 06 11:22:24 daniel-tablet1 kernel: usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 06 11:22:24 daniel-tablet1 kernel: usb 3-8: Product: Surface Type Cover
Mar 06 11:22:24 daniel-tablet1 kernel: usb 3-8: Manufacturer: Microsoft
Mar 06 11:22:24 daniel-tablet1 kernel: intel_oc_wdt INT3F0D:00: probe with driver intel_oc_wdt failed with error -13
Mar 06 11:22:24 daniel-tablet1 kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
Mar 06 11:22:24 daniel-tablet1 kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Mar 06 11:22:24 daniel-tablet1 kernel: intel-lpss 0000:00:15.2: enabling device (0000 -> 0002)
Mar 06 11:22:24 daniel-tablet1 kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Mar 06 11:22:24 daniel-tablet1 kernel: Key type psk registered
Mar 06 11:22:24 daniel-tablet1 kernel: intel-lpss 0000:00:15.3: enabling device (0000 -> 0002)
Mar 06 11:22:24 daniel-tablet1 kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
Mar 06 11:22:24 daniel-tablet1 kernel: input: gpio-keys as /devices/platform/MSHW0040:00/gpio-keys.1.auto/input/input1
Mar 06 11:22:24 daniel-tablet1 kernel: input: gpio-keys as /devices/platform/MSHW0040:00/gpio-keys.2.auto/input/input2
Mar 06 11:22:24 daniel-tablet1 kernel: intel-lpss 0000:00:19.0: enabling device (0000 -> 0002)
Mar 06 11:22:24 daniel-tablet1 kernel: intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
Mar 06 11:22:24 daniel-tablet1 kernel: idma64 idma64.4: Found Intel integrated DMA 64-bit
Mar 06 11:22:24 daniel-tablet1 kernel: nvme nvme0: pci function 0000:01:00.0
Mar 06 11:22:24 daniel-tablet1 kernel: nvme nvme0: missing or invalid SUBNQN field.
Mar 06 11:22:24 daniel-tablet1 kernel: nvme nvme0: 8/0/0 default/read/poll queues
Mar 06 11:22:24 daniel-tablet1 kernel: nvme0n1: p1 p2 p3 p4 p5 p6 p7 p8 p9
Mar 06 11:22:24 daniel-tablet1 kernel: dw-apb-uart.4: ttyS4 at MMIO 0x4010004000 (irq = 20, base_baud = 7500000) is a 16550A
Mar 06 11:22:24 daniel-tablet1 kernel: serial serial0: tty port ttyS4 registered
Mar 06 11:22:24 daniel-tablet1 kernel: surface_serial_hub serial0-0: SAM firmware version: 14.800.139
Mar 06 11:22:24 daniel-tablet1 kernel: usb 3-10: new full-speed USB device number 3 using xhci_hcd
Mar 06 11:22:24 daniel-tablet1 kernel: usb 3-10: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
Mar 06 11:22:24 daniel-tablet1 kernel: usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Mar 06 11:22:24 daniel-tablet1 kernel: hid: raw HID events driver (C) Jiri Kosina
Mar 06 11:22:24 daniel-tablet1 kernel: usbcore: registered new interface driver usbhid
Mar 06 11:22:24 daniel-tablet1 kernel: usbhid: USB HID core driver
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input3
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input4
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input5
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Touchpad as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input6
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input7
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input8
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input9
Mar 06 11:22:24 daniel-tablet1 kernel: hid-generic 0003:045E:09C0.0001: input,hiddev0,hidraw0: USB HID v1.11 Keyboard [Microsoft Surface Type Cover] on usb-0000:00:14.0-8/input0
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input11
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input12
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input13
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input14
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Touchpad as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input15
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input16
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input17
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover UNKNOWN as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input18
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input19
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input20
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input21
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input22
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input23
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input24
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input25
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input26
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input27
Mar 06 11:22:24 daniel-tablet1 kernel: input: Microsoft Surface Type Cover Tablet Mode Switch as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:045E:09C0.0001/input/input28
Mar 06 11:22:24 daniel-tablet1 kernel: hid-multitouch 0003:045E:09C0.0001: input,hiddev0,hidraw0: USB HID v1.11 Keyboard [Microsoft Surface Type Cover] on usb-0000:00:14.0-8/input0
Mar 06 11:22:24 daniel-tablet1 kernel: ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=1
Mar 06 11:22:24 daniel-tablet1 kernel: hid-generic 001F:8087:0AC2.0002: hidraw1: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on
Mar 06 11:22:24 daniel-tablet1 kernel: hid-sensor-hub 001F:8087:0AC2.0002: hidraw1: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on
Mar 06 11:22:24 daniel-tablet1 kernel: EXT4-fs (nvme0n1p8): orphan cleanup on readonly fs
Mar 06 11:22:24 daniel-tablet1 kernel: EXT4-fs (nvme0n1p8): mounted filesystem 36fa67db-bdeb-4537-a4b0-4b001d623ccf ro with ordered data mode. Quota mode: none.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Inserted module 'autofs4'
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd 257.9-0ubuntu2.1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Detected architecture x86-64.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Hostname set to <daniel-tablet1>.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Queued start job for default target graphical.target.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Created slice system-systemd\x2dcryptsetup.slice - Encrypted Volume Units Service Slice.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Created slice user.slice - User and Session Slice.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Expecting device dev-disk-by\x2duuid-0ffa31a8\x2d58f7\x2d48a5\x2dae99\x2d71f40d376bd6.device - /dev/disk/by-uuid/0ffa31a8-58f7-48a5-ae99-71f40d376bd6...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Expecting device dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.device - /dev/disk/by-uuid/46916dcd-c245-4384-bbaf-2f9460979425...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Expecting device dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.device - /dev/disk/by-uuid/69452394-6e8e-4a5b-9116-0a8402d66401...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Expecting device dev-disk-by\x2duuid-C4B7\x2d85E2.device - /dev/disk/by-uuid/C4B7-85E2...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Expecting device dev-disk-by\x2duuid-b36382aa\x2d72e5\x2d4584\x2d8066\x2dd8250cb1c86b.device - /dev/disk/by-uuid/b36382aa-72e5-4584-8066-d8250cb1c86b...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Expecting device dev-mapper-homecrypt.device - /dev/mapper/homecrypt...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target remote-fs.target - Remote File Systems.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target slices.target - Slice Units.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target swap.target - Swaps.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target virt-guest-shutdown.target - libvirt guests shutdown target.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-journald.service - Journal Service...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting blk-availability.service - Availability of block devices...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
Mar 06 11:22:24 daniel-tablet1 kernel: pstore: Using crash dump compression: deflate
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
Mar 06 11:22:24 daniel-tablet1 kernel: pstore: Registered efi_pstore as persistent store backend
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished blk-availability.service - Availability of block devices.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
Mar 06 11:22:24 daniel-tablet1 systemd-journald[335]: Collecting audit messages is disabled.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: modprobe@configfs.service: Deactivated successfully.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: modprobe@drm.service: Deactivated successfully.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: modprobe@fuse.service: Deactivated successfully.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
Mar 06 11:22:24 daniel-tablet1 kernel: EXT4-fs (nvme0n1p8): re-mounted 36fa67db-bdeb-4537-a4b0-4b001d623ccf.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
Mar 06 11:22:24 daniel-tablet1 kernel: lp: driver loaded but no devices found
Mar 06 11:22:24 daniel-tablet1 systemd-journald[335]: Journal started
Mar 06 11:22:24 daniel-tablet1 systemd-journald[335]: Runtime Journal (/run/log/journal/a835234b12cd40638672f45525ee8e4f) is 8M, max 155.8M, 147.8M free.
Mar 06 11:22:24 daniel-tablet1 systemd-modules-load[351]: Inserted module 'uhid'
Mar 06 11:22:24 daniel-tablet1 systemd-modules-load[351]: Inserted module 'lp'
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Started systemd-journald.service - Journal Service.
Mar 06 11:22:24 daniel-tablet1 systemd-modules-load[351]: Inserted module 'ppdev'
Mar 06 11:22:24 daniel-tablet1 kernel: ppdev: user-space parallel port driver
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
Mar 06 11:22:24 daniel-tablet1 systemd-modules-load[351]: Inserted module 'parport_pc'
Mar 06 11:22:24 daniel-tablet1 systemd-modules-load[351]: Module 'i2c_dev' is built in
Mar 06 11:22:24 daniel-tablet1 kernel: acpi_tad: loading out-of-tree module taints kernel.
Mar 06 11:22:24 daniel-tablet1 systemd-modules-load[351]: Inserted module 'surface_acpi_tad_rtc'
Mar 06 11:22:24 daniel-tablet1 kernel: platform surfaceacpitadrtc.0: registered as rtc1
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Mar 06 11:22:24 daniel-tablet1 systemd-modules-load[351]: Inserted module 'intel_rapl_msr'
Mar 06 11:22:24 daniel-tablet1 kernel: intel_rapl_msr: PL4 support detected.
Mar 06 11:22:24 daniel-tablet1 kernel: intel_rapl_common: Found RAPL domain package
Mar 06 11:22:24 daniel-tablet1 kernel: intel_rapl_common: Found RAPL domain core
Mar 06 11:22:24 daniel-tablet1 kernel: intel_rapl_common: Found RAPL domain uncore
Mar 06 11:22:24 daniel-tablet1 kernel: intel_rapl_common: Found RAPL domain psys
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
Mar 06 11:22:24 daniel-tablet1 systemd-udevd[392]: Using default interface naming scheme 'v257'.
Mar 06 11:22:24 daniel-tablet1 systemd-sysctl[396]: Couldn't write '1' to 'kernel/apparmor_restrict_unprivileged_userns', ignoring: No such file or directory
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
Mar 06 11:22:24 daniel-tablet1 systemd-udevd[392]: /usr/lib/udev/rules.d/90-alsa-restore.rules:18 GOTO="alsa_restore_std" has no matching label, ignoring.
Mar 06 11:22:24 daniel-tablet1 systemd-udevd[392]: /usr/lib/udev/rules.d/90-alsa-restore.rules:18 The line has no effect any more, dropping.
Mar 06 11:22:24 daniel-tablet1 systemd-udevd[392]: /usr/lib/udev/rules.d/90-alsa-restore.rules:22 GOTO="alsa_restore_std" has no matching label, ignoring.
Mar 06 11:22:24 daniel-tablet1 systemd-udevd[392]: /usr/lib/udev/rules.d/90-alsa-restore.rules:22 The line has no effect any more, dropping.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: nvmefc-boot-connections.service - Auto-connect to subsystems on FC-NVME devices found during boot was skipped because of an unmet condition check (ConditionPathExists=/sys/class/fc/fc_udev_device/nvme_discovery).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting plymouth-start.service - Show Plymouth Boot Screen...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target tpm2.target - Trusted Platform Module.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Started plymouth-start.service - Show Plymouth Boot Screen.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Started systemd-ask-password-plymouth.path - Forward Password Requests to Plymouth Directory Watch.
Mar 06 11:22:24 daniel-tablet1 (udev-worker)[426]: 3-8: Process '/sbin/modprobe -r i2c_hid && /sbin/modprobe i2c_hid' failed with exit code 1.
Mar 06 11:22:24 daniel-tablet1 (udev-worker)[411]: 3-8:1.0: Process '/sbin/modprobe -r i2c_hid && /sbin/modprobe i2c_hid' failed with exit code 1.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Found device dev-disk-by\x2duuid-0ffa31a8\x2d58f7\x2d48a5\x2dae99\x2d71f40d376bd6.device - HFB1M8MH331C0MR homecrypt.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Found device dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.device - HFB1M8MH331C0MR 6.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Found device dev-disk-by\x2duuid-C4B7\x2d85E2.device - HFB1M8MH331C0MR SYSTEM.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Found device dev-disk-by\x2duuid-b36382aa\x2d72e5\x2d4584\x2d8066\x2dd8250cb1c86b.device - HFB1M8MH331C0MR 5.
Mar 06 11:22:24 daniel-tablet1 kernel: intel_pmc_core INT33A1:00: initialized
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Found device dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.device - HFB1M8MH331C0MR 7.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-cryptsetup@homecrypt.service - Cryptography Setup for homecrypt...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service - File System Check on /dev/disk/by-uuid/46916dcd-c245-4384-bbaf-2f9460979425...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.service - File System Check on /dev/disk/by-uuid/69452394-6e8e-4a5b-9116-0a8402d66401...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-C4B7\x2d85E2.service - File System Check on /dev/disk/by-uuid/C4B7-85E2...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-b36382aa\x2d72e5\x2d4584\x2d8066\x2dd8250cb1c86b.service - File System Check on /dev/disk/by-uuid/b36382aa-72e5-4584-8066-d8250cb1c86b...
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: recovering journal
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[477]: /dev/nvme0n1p7: recovering journal
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: fsck.ext4: Invalid argument while recovering journal of /dev/nvme0n1p6
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[477]: fsck.ext4: Invalid argument while recovering journal of /dev/nvme0n1p7
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[480]: /dev/nvme0n1p5: clean, 624/64000 files, 88178/256000 blocks
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Started systemd-ask-password-plymouth.service - Forward Password Requests to Plymouth.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[481]: fsck.fat 4.2 (2021-01-31)
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[481]: /dev/nvme0n1p1: 196 files, 8180/65772 clusters
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6 was not cleanly unmounted, check forced.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished systemd-fsck@dev-disk-by\x2duuid-C4B7\x2d85E2.service - File System Check on /dev/disk/by-uuid/C4B7-85E2.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[477]: /dev/nvme0n1p7 was not cleanly unmounted, check forced.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished systemd-fsck@dev-disk-by\x2duuid-b36382aa\x2d72e5\x2d4584\x2d8066\x2dd8250cb1c86b.service - File System Check on /dev/disk/by-uuid/b36382aa-72e5-4584-8066-d8250cb1c86b.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: Entry '..' in /systemd-private-2ac25c3c792244da8d6763e4dfb3bc55-systemd-logind.service-REqt6a/??? (17) has deleted/unused inode 13. CLEARED.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: Entry '4953' in /.ICE-unix (129793) has deleted/unused inode 129802. CLEARED.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: Entry 'systemd-private-2ac25c3c792244da8d6763e4dfb3bc55-iio-sensor-proxy.service-O76Oan' in / (2) has deleted/unused inode 129796. CLEARED.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: Entry 'systemd-private-2ac25c3c792244da8d6763e4dfb3bc55-systemd-logind.service-REqt6a' in / (2) has deleted/unused inode 13. CLEARED.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: Entry 'systemd-private-2ac25c3c792244da8d6763e4dfb3bc55-colord.service-iWjS5d' in / (2) has deleted/unused inode 129800. CLEARED.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: Entry 'plasma-csd-generator.xHyouV' in / (2) has deleted/unused inode 129803. CLEARED.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: Entry 'systemd-private-2ac25c3c792244da8d6763e4dfb3bc55-bluetooth.service-q0u0uT' in / (2) has deleted/unused inode 129794. CLEARED.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: Unconnected directory inode 17 (was in /???)
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: /dev/nvme0n1p6: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[478]: (i.e., without -a or -p options)
Mar 06 11:22:24 daniel-tablet1 kernel: proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[470]: fsck failed with exit status 4.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.service: Main process exited, code=exited, status=1/FAILURE
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.service: Failed with result 'exit-code'.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Failed to start systemd-fsck@dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.service - File System Check on /dev/disk/by-uuid/69452394-6e8e-4a5b-9116-0a8402d66401.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Dependency failed for tmp.mount - /tmp.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Dependency failed for local-fs.target - Local File Systems.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: local-fs.target: Job local-fs.target/start failed with result 'dependency'.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: local-fs.target: Triggering OnFailure= dependencies.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: tmp.mount: Job tmp.mount/start failed with result 'dependency'.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target timers.target - Timer Units.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on systemd-sysext.socket - System Extension Image Management.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting console-setup.service - Set console font and keymap...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target getty.target - Login Prompts.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting qemu-kvm.service - QEMU KVM preparation - module, ksm, hugepages...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-ask-password-wall.path: Deactivated successfully.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Stopped systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting setvtrgb.service - Set console scheme...
Mar 06 11:22:24 daniel-tablet1 kernel: intel_rapl_common: Found RAPL domain package
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting ufw.service - Uncomplicated firewall...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target paths.target - Path Units.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Listening on dbus.socket - D-Bus System Message Bus Socket.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting dbus.service - D-Bus System Message Bus...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Started emergency.service - Emergency Shell.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target emergency.target - Emergency Mode.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Starting systemd-binfmt.service - Set Up Additional Binary Formats...
Mar 06 11:22:24 daniel-tablet1 systemd[1]: systemd-pcrphase-sysinit.service - TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished setvtrgb.service - Set console scheme.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished console-setup.service - Set console font and keymap.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished ufw.service - Uncomplicated firewall.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Created slice system-getty.slice - Slice /system/getty.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Reached target network-pre.target - Preparation for Network.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 499 (systemd-binfmt)
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Received SIGRTMIN+20 from PID 257 (plymouthd).
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data.
Mar 06 11:22:24 daniel-tablet1 kernel: mc: Linux media interface: v0.10
Mar 06 11:22:24 daniel-tablet1 dbus-daemon[494]: dbus[494]: Unknown group "power" in message bus configuration file
Mar 06 11:22:24 daniel-tablet1 dbus-daemon[494]: dbus[494]: Unknown group "power" in message bus configuration file
Mar 06 11:22:24 daniel-tablet1 dbus-daemon[494]: [system] AppArmor D-Bus mediation is enabled
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Started dbus.service - D-Bus System Message Bus.
Mar 06 11:22:24 daniel-tablet1 kernel: videodev: Linux video capture interface: v2.00
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[477]: /dev/nvme0n1p7: Entry '..' in /tmp/systemd-private-2ac25c3c792244da8d6763e4dfb3bc55-systemd-logind.service-uX0hHv/??? (137) has deleted/unused inode 120. CLEARED.
Mar 06 11:22:24 daniel-tablet1 systemd-fsck[477]: /dev/nvme0n1p7: Entry '..' in /tmp/systemd-private-2ac25c3c792244da8d6763e4dfb3bc55-colord.service-gmpbvG/??? (195) has deleted/unused inode 167. CLEARED.
Mar 06 11:22:24 daniel-tablet1 systemd[1]: Finished qemu-kvm.service - QEMU KVM preparation - module, ksm, hugepages.
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 systemd-fsck[477]: /dev/nvme0n1p7: Entry 'systemd-private-2ac25c3c792244da8d6763e4dfb3bc55-colord.service-gmpbvG' in /tmp (13) has deleted/unused inode 167. CLEARED.
Mar 06 11:22:25 daniel-tablet1 systemd-fsck[477]: /dev/nvme0n1p7: Entry 'systemd-private-2ac25c3c792244da8d6763e4dfb3bc55-systemd-logind.service-uX0hHv' in /tmp (13) has deleted/unused inode 120. CLEARED.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Mounting boot.mount - /boot...
Mar 06 11:22:25 daniel-tablet1 systemd[1]: media.mount: Directory /media to mount over is not empty, mounting anyway.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Mounting media.mount - /media...
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Mounting proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System...
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Mounted media.mount - /media.
Mar 06 11:22:25 daniel-tablet1 kernel: EXT4-fs (nvme0n1p5): orphan cleanup on readonly fs
Mar 06 11:22:25 daniel-tablet1 kernel: EXT4-fs (nvme0n1p5): mounted filesystem b36382aa-72e5-4584-8066-d8250cb1c86b ro with ordered data mode. Quota mode: none.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Mounted boot.mount - /boot.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Mounting boot-efi.mount - /boot/efi...
Mar 06 11:22:25 daniel-tablet1 systemd-fsck[477]: /dev/nvme0n1p7: Unconnected directory inode 137 (was in /tmp/???)
Mar 06 11:22:25 daniel-tablet1 systemd-fsck[477]: /dev/nvme0n1p7: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
Mar 06 11:22:25 daniel-tablet1 systemd-fsck[477]: (i.e., without -a or -p options)
Mar 06 11:22:25 daniel-tablet1 systemd-fsck[469]: fsck failed with exit status 4.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service: Main process exited, code=exited, status=1/FAILURE
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service: Failed with result 'exit-code'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Failed to start systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service - File System Check on /dev/disk/by-uuid/46916dcd-c245-4384-bbaf-2f9460979425.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for var.mount - /var.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for var-lib-gdm3.mount - /var/lib/gdm3.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: var-lib-gdm3.mount: Job var-lib-gdm3.mount/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for var-lib-machines.mount - Virtual Machine and Container Storage (Compatibility).
Mar 06 11:22:25 daniel-tablet1 systemd[1]: var-lib-machines.mount: Job var-lib-machines.mount/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for systemd-oomd.service - Userspace Out-Of-Memory (OOM) Killer.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-oomd.service: Job systemd-oomd.service/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for systemd-random-seed.service - Load/Save OS Random Seed.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-random-seed.service: Job systemd-random-seed.service/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for systemd-tpm2-setup.service - TPM SRK Setup.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-tpm2-setup.service: Job systemd-tpm2-setup.service/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for systemd-journal-flush.service - Flush Journal to Persistent Storage.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-journal-flush.service: Job systemd-journal-flush.service/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for apparmor.service - Load AppArmor profiles.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: apparmor.service: Job apparmor.service/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for systemd-resolved.service - Network Name Resolution.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-resolved.service: Job systemd-resolved.service/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Dependency failed for systemd-pstore.service - Platform Persistent Storage Archival.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-pstore.service: Job systemd-pstore.service/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: var.mount: Job var.mount/start failed with result 'dependency'.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Reached target machines.target - Containers.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Reached target network.target - Network.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Reached target network-online.target - Network is Online.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Reached target nss-lookup.target - Host and Network Name Lookups.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Listening on systemd-importd.socket - Disk Image Download Service Socket.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Reached target sockets.target - Socket Units.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Starting systemd-tmpfiles-setup.service - Create System Files and Directories...
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: /usr/lib/tmpfiles.d/legacy.conf:14: Duplicate line for path "/run/lock", ignoring.
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create directory or subvolume "/var/lib": Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib/apport': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create directory or subvolume "/var/log": Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/log': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib/colord': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create directory or subvolume "/var/spool": Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/spool/cron': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib/dbus': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create symlink '/var/lock': Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/log': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create directory or subvolume "/var/cache": Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/cache': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib/systemd': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib/systemd': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib/systemd': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib/systemd': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/log': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/cache': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create directory or subvolume "/var/tmp": Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to open path '/var/lib': No such file or directory
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create symlink '/var/run': Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create directory or subvolume "/tmp/.X11-unix": Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create directory or subvolume "/tmp/.ICE-unix": Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create directory or subvolume "/tmp/.XIM-unix": Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd-tmpfiles[525]: Failed to create directory or subvolume "/tmp/.font-unix": Read-only file system
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Finished systemd-tmpfiles-setup.service - Create System Files and Directories.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Starting audit-rules.service - Load Audit Rules...
Mar 06 11:22:25 daniel-tablet1 systemd[1]: ldconfig.service - Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Mar 06 11:22:25 daniel-tablet1 systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-journal-catalog-update.service - Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-machine-id-commit.service - Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Mar 06 11:22:25 daniel-tablet1 systemd[1]: systemd-update-done.service - Update is Completed was skipped because no trigger condition checks were met.
Mar 06 11:22:25 daniel-tablet1 augenrules[529]: mktemp: Read-only file system (os error 30) at path "/tmp/aurules.A80dE7gA"
Mar 06 11:22:25 daniel-tablet1 augenrules[528]: /usr/sbin/augenrules: 85: cannot create : Directory nonexistent
Mar 06 11:22:25 daniel-tablet1 augenrules[534]: /usr/sbin/augenrules: 88: cannot create : Directory nonexistent
Mar 06 11:22:25 daniel-tablet1 augenrules[528]: /usr/sbin/augenrules: No rules
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: No rules
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: enabled 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: failure 1
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: pid 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: rate_limit 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog_limit 8192
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: lost 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog_wait_time 60000
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog_wait_time_actual 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: enabled 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: failure 1
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: pid 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: rate_limit 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog_limit 8192
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: lost 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog_wait_time 60000
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog_wait_time_actual 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: enabled 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: failure 1
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: pid 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: rate_limit 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog_limit 8192
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: lost 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog 0
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog_wait_time 60000
Mar 06 11:22:25 daniel-tablet1 augenrules[537]: backlog_wait_time_actual 0
Mar 06 11:22:25 daniel-tablet1 systemd[1]: audit-rules.service: Deactivated successfully.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Finished audit-rules.service - Load Audit Rules.
Mar 06 11:22:25 daniel-tablet1 kernel: i915 0000:00:02.0: [drm] Found icelake/port_f (device ID 8a52) integrated display version 11.00 stepping D0
Mar 06 11:22:25 daniel-tablet1 kernel: surface_serial_hub serial0-0: event: unhandled event (rqid: 0x02, tc: 0x02, tid: 0x01, cid: 0x53, iid: 0x01)
Mar 06 11:22:25 daniel-tablet1 kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
Mar 06 11:22:25 daniel-tablet1 kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Mar 06 11:22:25 daniel-tablet1 kernel: i915 0000:00:02.0: [drm] Using Transparent Hugepages
Mar 06 11:22:25 daniel-tablet1 kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Mar 06 11:22:25 daniel-tablet1 kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/icl_dmc_ver1_09.bin (v1.9)
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: Core ver 2.22
Mar 06 11:22:25 daniel-tablet1 kernel: NET: Registered PF_BLUETOOTH protocol family
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: HCI device and connection manager initialized
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: HCI socket layer initialized
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: L2CAP socket layer initialized
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: SCO socket layer initialized
Mar 06 11:22:25 daniel-tablet1 kernel: i915 0000:00:02.0: [drm] Registered 3 planes with drm panic
Mar 06 11:22:25 daniel-tablet1 kernel: [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 1
Mar 06 11:22:25 daniel-tablet1 kernel: ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
Mar 06 11:22:25 daniel-tablet1 kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input30
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: fbcon: i915drmfb (fb0) is primary device
Mar 06 11:22:25 daniel-tablet1 kernel: fbcon: Deferring console take-over
Mar 06 11:22:25 daniel-tablet1 kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Mar 06 11:22:25 daniel-tablet1 kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Mounted proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Finished systemd-binfmt.service - Set Up Additional Binary Formats.
Mar 06 11:22:25 daniel-tablet1 systemd[1]: Mounted boot-efi.mount - /boot/efi.
Mar 06 11:22:25 daniel-tablet1 kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[423]: input13: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[431]: input22: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 kernel: mei_me 0000:00:16.4: enabling device (0000 -> 0002)
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[424]: input23: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 kernel: usbcore: registered new interface driver btusb
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: Bootloader revision 0.4 build 0 week 11 2017
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: Device revision is 2
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: Secure boot is enabled
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: OTP lock is enabled
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: API lock is enabled
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: Debug lock is disabled
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[407]: input19: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: Found device firmware: intel/ibt-19-32-4.sfi
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: Boot Address: 0x24800
Mar 06 11:22:25 daniel-tablet1 kernel: Bluetooth: hci0: Firmware Version: 193-33.24
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[413]: input26: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[406]: input20: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[427]: input2: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: iwlwifi 0000:00:14.3: Detected crf-id 0x3617, cnv-id 0x2000300 wfpm id 0x80000000
Mar 06 11:22:25 daniel-tablet1 kernel: iwlwifi 0000:00:14.3: PCI dev 34f0/0074, rev=0x332, rfid=0x10a100
Mar 06 11:22:25 daniel-tablet1 kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz
Mar 06 11:22:25 daniel-tablet1 kernel: iwlwifi 0000:00:14.3: loaded firmware version 77.6eaf654b.0 Qu-c0-hr-b0-77.ucode op_mode iwlmvm
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[416]: input12: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[429]: input28: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[408]: input27: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 (udev-worker)[417]: input1: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:25 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:26 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:26 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[420]: input16: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[403]: input24: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[411]: input11: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[419]: input21: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[418]: input0: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[422]: input14: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[421]: input25: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Mar 06 11:22:26 daniel-tablet1 kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Mar 06 11:22:26 daniel-tablet1 kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Mar 06 11:22:26 daniel-tablet1 kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Mar 06 11:22:26 daniel-tablet1 kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[426]: input18: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[414]: input17: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 kernel: intel_tcc_cooling: Programmable TCC Offset detected
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[430]: input15: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:26 daniel-tablet1 kernel: iwlwifi 0000:00:14.3: Detected RF HR B3, rfid=0x10a100
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[437]: mice: Process '/bin/input-remapper-control --command autoload --device /dev/input/mice' failed with exit code 5.
Mar 06 11:22:26 daniel-tablet1 kernel: iwlwifi 0000:00:14.3: base HW address: 28:7f:cf:5a:36:f6
Mar 06 11:22:26 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:26 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:26 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:26 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:26 daniel-tablet1 systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service - File System Check on /dev/disk/by-uuid/46916dcd-c245-4384-bbaf-2f9460979425...
Mar 06 11:22:26 daniel-tablet1 systemd-fsck[640]: /dev/nvme0n1p7 contains a file system with errors, check forced.
Mar 06 11:22:26 daniel-tablet1 systemd[1]: Stopped target emergency.target - Emergency Mode.
Mar 06 11:22:26 daniel-tablet1 systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Mar 06 11:22:26 daniel-tablet1 systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
Mar 06 11:22:26 daniel-tablet1 systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.service - File System Check on /dev/disk/by-uuid/69452394-6e8e-4a5b-9116-0a8402d66401...
Mar 06 11:22:26 daniel-tablet1 systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Mar 06 11:22:26 daniel-tablet1 systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Mar 06 11:22:26 daniel-tablet1 systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:26 daniel-tablet1 systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
Mar 06 11:22:26 daniel-tablet1 systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Mar 06 11:22:26 daniel-tablet1 systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:26 daniel-tablet1 systemd[1]: emergency.service: Deactivated successfully.
Mar 06 11:22:26 daniel-tablet1 systemd[1]: Stopped emergency.service - Emergency Shell.
Mar 06 11:22:26 daniel-tablet1 systemd-fsck[675]: /dev/nvme0n1p6 contains a file system with errors, check forced.
Mar 06 11:22:26 daniel-tablet1 kernel: acpi PNP0A05:00: No SoundWire links detected
Mar 06 11:22:26 daniel-tablet1 systemd-fsck[675]: /dev/nvme0n1p6: Entry '..' in /???/??? (17) has deleted/unused inode 13. CLEARED.
Mar 06 11:22:26 daniel-tablet1 systemd-fsck[675]: /dev/nvme0n1p6: Unconnected directory inode 17 (was in /???)
Mar 06 11:22:26 daniel-tablet1 systemd-fsck[675]: /dev/nvme0n1p6: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
Mar 06 11:22:26 daniel-tablet1 systemd-fsck[675]: (i.e., without -a or -p options)
Mar 06 11:22:26 daniel-tablet1 systemd-fsck[666]: fsck failed with exit status 4.
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[408]: event19: Process '/bin/input-remapper-control --command autoload --device /dev/input/event19' failed with exit code 5.
Mar 06 11:22:26 daniel-tablet1 kernel: ipts: unknown parameter 'gen7mt' ignored
Mar 06 11:22:26 daniel-tablet1 (udev-worker)[429]: event20: Process '/bin/input-remapper-control --command autoload --device /dev/input/event20' failed with exit code 5.
Mar 06 11:22:26 daniel-tablet1 kernel: ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: Starting IPTS
Mar 06 11:22:26 daniel-tablet1 kernel: ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS EDS Version: 2
Mar 06 11:22:26 daniel-tablet1 kernel: ipts 0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04: IPTS running in poll mode
Mar 06 11:22:26 daniel-tablet1 kernel: input: IPTS 045E:099F Touchscreen as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:099F.0003/input/input31
Mar 06 11:22:26 daniel-tablet1 kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
Mar 06 11:22:26 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:26 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:26 daniel-tablet1 kernel: input: IPTS 045E:099F as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:099F.0003/input/input32
Mar 06 11:22:26 daniel-tablet1 kernel: input: IPTS 045E:099F as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:099F.0003/input/input33
Mar 06 11:22:26 daniel-tablet1 kernel: input: IPTS 045E:099F as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:099F.0003/input/input34
Mar 06 11:22:26 daniel-tablet1 kernel: input: IPTS 045E:099F as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:099F.0003/input/input35
Mar 06 11:22:26 daniel-tablet1 kernel: input: IPTS 045E:099F Stylus as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:099F.0003/input/input36
Mar 06 11:22:26 daniel-tablet1 kernel: input: IPTS 045E:099F as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:099F.0003/input/input37
Mar 06 11:22:26 daniel-tablet1 kernel: input: IPTS 045E:099F as /devices/pci0000:00/0000:00:16.4/0000:00:16.4-3e8d0870-271a-4208-8eb5-9acb9402ae04/0000:045E:099F.0003/input/input38
Mar 06 11:22:27 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:27 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:27 daniel-tablet1 systemd-fsck[640]: /dev/nvme0n1p7: Entry '..' in /tmp/???/??? (137) has deleted/unused inode 120. CLEARED.
Mar 06 11:22:27 daniel-tablet1 systemd-fsck[640]: /dev/nvme0n1p7: Entry '..' in /tmp/???/??? (195) has deleted/unused inode 167. CLEARED.
Mar 06 11:22:27 daniel-tablet1 kernel: iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
Mar 06 11:22:27 daniel-tablet1 (udev-worker)[405]: input30: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:27 daniel-tablet1 kernel: spi-nor spi0.0: supply vcc not found, using dummy regulator
Mar 06 11:22:27 daniel-tablet1 kernel: hid-generic 0000:045E:099F.0003: input,hidraw2: <UNKNOWN> HID v0.00 Device [IPTS 045E:099F] on
Mar 06 11:22:27 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:27 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:27 daniel-tablet1 kernel: Creating 1 MTD partitions on "0000:00:1f.5":
Mar 06 11:22:27 daniel-tablet1 kernel: 0x000000000000-0x000001000000 : "BIOS"
Mar 06 11:22:27 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:27 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:27 daniel-tablet1 (udev-worker)[403]: event16: Process '/bin/input-remapper-control --command autoload --device /dev/input/event16' failed with exit code 5.
Mar 06 11:22:27 daniel-tablet1 kernel: Bluetooth: hci0: Waiting for firmware download to complete
Mar 06 11:22:27 daniel-tablet1 kernel: Bluetooth: hci0: Firmware loaded in 1606261 usecs
Mar 06 11:22:27 daniel-tablet1 kernel: Bluetooth: hci0: Waiting for device to boot
Mar 06 11:22:27 daniel-tablet1 kernel: Bluetooth: hci0: Device booted in 14624 usecs
Mar 06 11:22:27 daniel-tablet1 kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-19-32-4.ddc
Mar 06 11:22:27 daniel-tablet1 kernel: Bluetooth: hci0: Applying Intel DDC parameters completed
Mar 06 11:22:27 daniel-tablet1 kernel: Bluetooth: hci0: Firmware revision 0.4 build 193 week 33 2024
Mar 06 11:22:27 daniel-tablet1 kernel: Bluetooth: hci0: HCI LE Coded PHY feature bit is set, but its usage is not supported.
Mar 06 11:22:27 daniel-tablet1 kernel: acpi PNP0A05:00: No SoundWire links detected
Mar 06 11:22:27 daniel-tablet1 kernel: acpi PNP0A05:00: No SoundWire links detected
Mar 06 11:22:27 daniel-tablet1 kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Mar 06 11:22:27 daniel-tablet1 kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops intel_audio_component_bind_ops [i915])
Mar 06 11:22:27 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:27 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:27 daniel-tablet1 (udev-worker)[410]: input37: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:27 daniel-tablet1 (udev-worker)[428]: input35: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:27 daniel-tablet1 kernel: snd_hda_codec_alc269 hdaudioC0D0: autoconfig for ALC274: line_outs=1 (0x1b/0x0/0x0/0x0/0x0) type:speaker
Mar 06 11:22:27 daniel-tablet1 kernel: snd_hda_codec_alc269 hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Mar 06 11:22:27 daniel-tablet1 kernel: snd_hda_codec_alc269 hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Mar 06 11:22:27 daniel-tablet1 kernel: snd_hda_codec_alc269 hdaudioC0D0: mono: mono_out=0x0
Mar 06 11:22:27 daniel-tablet1 kernel: snd_hda_codec_alc269 hdaudioC0D0: inputs:
Mar 06 11:22:27 daniel-tablet1 kernel: snd_hda_codec_alc269 hdaudioC0D0: Internal Mic=0x12
Mar 06 11:22:27 daniel-tablet1 kernel: snd_hda_codec_alc269 hdaudioC0D0: Mic=0x19
Mar 06 11:22:27 daniel-tablet1 systemd-fsck[640]: /dev/nvme0n1p7: Unconnected directory inode 137 (was in /tmp/???)
Mar 06 11:22:27 daniel-tablet1 systemd-fsck[640]: /dev/nvme0n1p7: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
Mar 06 11:22:27 daniel-tablet1 systemd-fsck[640]: (i.e., without -a or -p options)
Mar 06 11:22:27 daniel-tablet1 systemd-fsck[636]: fsck failed with exit status 4.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service: Main process exited, code=exited, status=1/FAILURE
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service: Failed with result 'exit-code'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Failed to start systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service - File System Check on /dev/disk/by-uuid/46916dcd-c245-4384-bbaf-2f9460979425.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for var.mount - /var.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for local-fs.target - Local File Systems.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: local-fs.target: Job local-fs.target/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: local-fs.target: Triggering OnFailure= dependencies.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for var-lib-gdm3.mount - /var/lib/gdm3.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: var-lib-gdm3.mount: Job var-lib-gdm3.mount/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for systemd-random-seed.service - Load/Save OS Random Seed.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-random-seed.service: Job systemd-random-seed.service/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for systemd-tpm2-setup.service - TPM SRK Setup.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-tpm2-setup.service: Job systemd-tpm2-setup.service/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for systemd-rfkill.socket - Load/Save RF Kill Switch Status /dev/rfkill Watch.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-rfkill.socket: Job systemd-rfkill.socket/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for systemd-journal-flush.service - Flush Journal to Persistent Storage.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-journal-flush.service: Job systemd-journal-flush.service/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for apparmor.service - Load AppArmor profiles.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: apparmor.service: Job apparmor.service/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for systemd-resolved.service - Network Name Resolution.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-resolved.service: Job systemd-resolved.service/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for systemd-pstore.service - Platform Persistent Storage Archival.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-pstore.service: Job systemd-pstore.service/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: var.mount: Job var.mount/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.service: Main process exited, code=exited, status=1/FAILURE
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.service: Failed with result 'exit-code'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Failed to start systemd-fsck@dev-disk-by\x2duuid-69452394\x2d6e8e\x2d4a5b\x2d9116\x2d0a8402d66401.service - File System Check on /dev/disk/by-uuid/69452394-6e8e-4a5b-9116-0a8402d66401.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Dependency failed for tmp.mount - /tmp.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: tmp.mount: Job tmp.mount/start failed with result 'dependency'.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Requested transaction contradicts existing jobs: Resource deadlock avoided
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Requested transaction contradicts existing jobs: Resource deadlock avoided
Mar 06 11:22:27 daniel-tablet1 (udev-worker)[408]: input31: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Created slice system-systemd\x2dbacklight.slice - Slice /system/systemd-backlight.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Reached target bluetooth.target - Bluetooth Support.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service - File System Check on /dev/disk/by-uuid/46916dcd-c245-4384-bbaf-2f9460979425...
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-machine-id-commit.service - Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Started emergency.service - Emergency Shell.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: Reached target emergency.target - Emergency Mode.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: ldconfig.service - Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-journal-catalog-update.service - Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-pcrphase-sysinit.service - TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Mar 06 11:22:27 daniel-tablet1 systemd[1]: systemd-update-done.service - Update is Completed was skipped because no trigger condition checks were met.
Mar 06 11:22:27 daniel-tablet1 systemd-fsck[764]: /dev/nvme0n1p7 contains a file system with errors, check forced.
Mar 06 11:22:27 daniel-tablet1 (udev-worker)[437]: input32: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:27 daniel-tablet1 (udev-worker)[402]: input38: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[401]: event4: Process '/bin/input-remapper-control --command autoload --device /dev/input/event4' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[424]: event15: Process '/bin/input-remapper-control --command autoload --device /dev/input/event15' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[429]: input36: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[426]: event10: Process '/bin/input-remapper-control --command autoload --device /dev/input/event10' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:28 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:28 daniel-tablet1 kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input39
Mar 06 11:22:28 daniel-tablet1 kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input40
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[412]: event5: Process '/bin/input-remapper-control --command autoload --device /dev/input/event5' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[412]: controlC0: Process '/usr/sbin/alsactl -E HOME=/run/alsa -E XDG_RUNTIME_DIR=/run/alsa/runtime restore 0' failed with exit code 2.
Mar 06 11:22:28 daniel-tablet1 systemd[1]: Reached target sound.target - Sound Card.
Mar 06 11:22:28 daniel-tablet1 systemd-fsck[764]: /dev/nvme0n1p7: Entry '..' in /tmp/???/??? (137) has deleted/unused inode 120. CLEARED.
Mar 06 11:22:28 daniel-tablet1 systemd-fsck[764]: /dev/nvme0n1p7: Entry '..' in /tmp/???/??? (195) has deleted/unused inode 167. CLEARED.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[415]: mouse1: Process '/bin/input-remapper-control --command autoload --device /dev/input/mouse1' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[414]: event9: Process '/bin/input-remapper-control --command autoload --device /dev/input/event9' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[419]: event13: Process '/bin/input-remapper-control --command autoload --device /dev/input/event13' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[405]: event21: Process '/bin/input-remapper-control --command autoload --device /dev/input/event21' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[417]: event1: Process '/bin/input-remapper-control --command autoload --device /dev/input/event1' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[418]: event0: Process '/bin/input-remapper-control --command autoload --device /dev/input/event0' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[413]: event18: Process '/bin/input-remapper-control --command autoload --device /dev/input/event18' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[423]: input34: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[422]: event6: Process '/bin/input-remapper-control --command autoload --device /dev/input/event6' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[420]: event8: Process '/bin/input-remapper-control --command autoload --device /dev/input/event8' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[430]: event7: Process '/bin/input-remapper-control --command autoload --device /dev/input/event7' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[416]: mouse0: Process '/bin/input-remapper-control --command autoload --device /dev/input/mouse0' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[406]: event12: Process '/bin/input-remapper-control --command autoload --device /dev/input/event12' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[425]: input33: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[411]: event3: Process '/bin/input-remapper-control --command autoload --device /dev/input/event3' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[421]: event17: Process '/bin/input-remapper-control --command autoload --device /dev/input/event17' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[407]: event11: Process '/bin/input-remapper-control --command autoload --device /dev/input/event11' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[431]: event14: Process '/bin/input-remapper-control --command autoload --device /dev/input/event14' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[427]: event2: Process '/bin/input-remapper-control --command autoload --device /dev/input/event2' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 systemd-fsck[764]: /dev/nvme0n1p7: Unconnected directory inode 137 (was in /tmp/???)
Mar 06 11:22:28 daniel-tablet1 systemd-fsck[764]: /dev/nvme0n1p7: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
Mar 06 11:22:28 daniel-tablet1 systemd-fsck[764]: (i.e., without -a or -p options)
Mar 06 11:22:28 daniel-tablet1 systemd-fsck[755]: fsck failed with exit status 4.
Mar 06 11:22:28 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service: Main process exited, code=exited, status=1/FAILURE
Mar 06 11:22:28 daniel-tablet1 systemd[1]: systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service: Failed with result 'exit-code'.
Mar 06 11:22:28 daniel-tablet1 systemd[1]: Failed to start systemd-fsck@dev-disk-by\x2duuid-46916dcd\x2dc245\x2d4384\x2dbbaf\x2d2f9460979425.service - File System Check on /dev/disk/by-uuid/46916dcd-c245-4384-bbaf-2f9460979425.
Mar 06 11:22:28 daniel-tablet1 systemd[1]: Dependency failed for var.mount - /var.
Mar 06 11:22:28 daniel-tablet1 systemd[1]: Dependency failed for systemd-backlight@backlight:intel_backlight.service - Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Mar 06 11:22:28 daniel-tablet1 systemd[1]: systemd-backlight@backlight:intel_backlight.service: Job systemd-backlight@backlight:intel_backlight.service/start failed with result 'dependency'.
Mar 06 11:22:28 daniel-tablet1 systemd[1]: var.mount: Job var.mount/start failed with result 'dependency'.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[402]: event29: Process '/bin/input-remapper-control --command autoload --device /dev/input/event29' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[409]: event28: Process '/bin/input-remapper-control --command autoload --device /dev/input/event28' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[401]: mouse3: Process '/bin/input-remapper-control --command autoload --device /dev/input/mouse3' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[428]: event26: Process '/bin/input-remapper-control --command autoload --device /dev/input/event26' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[410]: event22: Process '/bin/input-remapper-control --command autoload --device /dev/input/event22' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[437]: event23: Process '/bin/input-remapper-control --command autoload --device /dev/input/event23' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[424]: event27: Process '/bin/input-remapper-control --command autoload --device /dev/input/event27' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[426]: input40: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[404]: input39: Process '/bin/input-remapper-control --command autoload --device ' failed with exit code 2.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[408]: mouse2: Process '/bin/input-remapper-control --command autoload --device /dev/input/mouse2' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[418]: event25: Process '/bin/input-remapper-control --command autoload --device /dev/input/event25' failed with exit code 5.
Mar 06 11:22:28 daniel-tablet1 (udev-worker)[403]: event24: Process '/bin/input-remapper-control --command autoload --device /dev/input/event24' failed with exit code 5.
Mar 06 11:22:29 daniel-tablet1 (udev-worker)[411]: event31: Process '/bin/input-remapper-control --command autoload --device /dev/input/event31' failed with exit code 5.
Mar 06 11:22:29 daniel-tablet1 (udev-worker)[426]: event30: Process '/bin/input-remapper-control --command autoload --device /dev/input/event30' failed with exit code 5.
Mar 06 11:22:32 daniel-tablet1 systemd[1]: Received SIGRTMIN+21 from PID 257 (plymouthd).
Mar 06 11:22:32 daniel-tablet1 systemd-tty-ask-password-agent[483]: Failed to query password: Input/output error
Mar 06 11:22:32 daniel-tablet1 systemd-tty-ask-password-agent[483]: Failed to process password, ignoring: Input/output error
Mar 06 11:22:32 daniel-tablet1 kernel: fbcon: Taking over console
Mar 06 11:22:33 daniel-tablet1 kernel: Console: switching to colour frame buffer device 171x57
Mar 06 11:22:38 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dvdd not found, using dummy regulator
Mar 06 11:22:38 daniel-tablet1 kernel: ov8865 i2c-INT347A:00: supply dovdd not found, using dummy regulator
Mar 06 11:22:38 daniel-tablet1 kernel: i2c i2c-INT347A:00: deferred probe pending: ov8865: waiting for fwnode graph endpoint
Mar 06 11:22:38 daniel-tablet1 kernel: i2c i2c-INT33BE:00: deferred probe pending: ov5693: waiting for fwnode graph endpoint
Mar 06 11:22:38 daniel-tablet1 kernel: i2c i2c-INT347E:00: deferred probe pending: ov7251: waiting for fwnode graph endpoint
Mar 06 11:23:41 daniel-tablet1 kernel: EXT4-fs (nvme0n1p8): re-mounted 36fa67db-bdeb-4537-a4b0-4b001d623ccf r/w.
[-- Attachment #2.1.2: Type: application/octet-stream, Size: 0 bytes --]
[-- Attachment #2.2: Type: application/octet-stream, Size: 0 bytes --]
[-- Attachment #3: logdump202603061245390001.txt --]
[-- Type: text/plain, Size: 31448 bytes --]
Journal starts at block 0, transaction 6986
*** Fast Commit Area ***
tag HEAD, features 0x0, tid 7009
tag ADD_RANGE, inode 471162, lblk 0, pblk 6492160, len 25
tag INODE, inode 471162
tag TAIL, tid 7009
tag ADD_ENTRY, parent 451, ino 471162, name "qqpc_opengl.qdbFsX"
tag DEL_ENTRY, parent 451, ino 408852, name "qqpc_opengl"
tag ADD_ENTRY, parent 451, ino 471162, name "qqpc_opengl"
tag DEL_ENTRY, parent 451, ino 471162, name "qqpc_opengl.qdbFsX"
tag INODE, inode 471162
tag ADD_RANGE, inode 408852, lblk 0, pblk 6307264, len 25
tag INODE, inode 408852
tag TAIL, tid 7009
tag ADD_ENTRY, parent 451, ino 408852, name "qqpc_opengl.biaKqC"
tag DEL_ENTRY, parent 451, ino 471162, name "qqpc_opengl"
tag ADD_ENTRY, parent 451, ino 408852, name "qqpc_opengl"
tag DEL_ENTRY, parent 451, ino 408852, name "qqpc_opengl.biaKqC"
tag INODE, inode 408852
tag ADD_RANGE, inode 471162, lblk 0, pblk 6494304, len 25
tag INODE, inode 471162
tag TAIL, tid 7009
tag ADD_ENTRY, parent 451, ino 471162, name "qqpc_opengl.oWYZQg"
tag DEL_ENTRY, parent 451, ino 408852, name "qqpc_opengl"
tag ADD_ENTRY, parent 451, ino 471162, name "qqpc_opengl"
tag DEL_ENTRY, parent 451, ino 471162, name "qqpc_opengl.oWYZQg"
tag INODE, inode 471162
tag ADD_RANGE, inode 125, lblk 0, pblk 4286035, len 2
tag DEL_RANGE, inode 125, lblk 2, len 2147483647
tag DEL_RANGE, inode 125, lblk -2147483647, len 2147483646
tag INODE, inode 125
tag ADD_RANGE, inode 438344, lblk 0, pblk 5707842, len 1
tag INODE, inode 438344
tag ADD_RANGE, inode 408852, lblk 0, pblk 6307680, len 25
tag INODE, inode 408852
tag TAIL, tid 7009
tag ADD_ENTRY, parent 451, ino 408852, name "qqpc_opengl.PDhvmH"
tag DEL_ENTRY, parent 451, ino 471162, name "qqpc_opengl"
tag ADD_ENTRY, parent 451, ino 408852, name "qqpc_opengl"
tag DEL_ENTRY, parent 451, ino 408852, name "qqpc_opengl.PDhvmH"
tag INODE, inode 408852
tag ADD_RANGE, inode 471162, lblk 0, pblk 6508576, len 25
tag INODE, inode 471162
tag TAIL, tid 7009
tag INODE, inode 478143
tag ADD_RANGE, inode 438346, lblk 0, pblk 5702656, len 41
tag INODE, inode 438346
tag ADD_RANGE, inode 478144, lblk 0, pblk 5704704, len 45
tag INODE, inode 478144
tag ADD_RANGE, inode 478146, lblk 0, pblk 5706112, len 44
tag INODE, inode 478146
tag ADD_RANGE, inode 477211, lblk 0, pblk 5704429, len 4
tag INODE, inode 477211
tag ADD_RANGE, inode 466851, lblk 0, pblk 5704433, len 4
tag INODE, inode 466851
tag ADD_RANGE, inode 466286, lblk 0, pblk 5704437, len 4
tag INODE, inode 466286
tag ADD_RANGE, inode 408852, lblk 0, pblk 2684416, len 25
tag INODE, inode 408852
tag TAIL, tid 7007
tag ADD_ENTRY, parent 451, ino 408852, name "qqpc_opengl.NTRAgI"
tag DEL_ENTRY, parent 451, ino 471746, name "qqpc_opengl"
tag ADD_ENTRY, parent 451, ino 408852, name "qqpc_opengl"
tag DEL_ENTRY, parent 451, ino 408852, name "qqpc_opengl.NTRAgI"
tag INODE, inode 408852
tag ADD_RANGE, inode 471162, lblk 0, pblk 6508608, len 25
tag INODE, inode 471162
tag TAIL, tid 7007
tag ADD_ENTRY, parent 451, ino 471162, name "qqpc_opengl.xTQtml"
tag DEL_ENTRY, parent 451, ino 408852, name "qqpc_opengl"
tag ADD_ENTRY, parent 451, ino 471162, name "qqpc_opengl"
tag DEL_ENTRY, parent 451, ino 471162, name "qqpc_opengl.xTQtml"
tag INODE, inode 471162
tag INODE, inode 469266
tag ADD_RANGE, inode 408852, lblk 0, pblk 6307264, len 25
tag INODE, inode 408852
tag TAIL, tid 7007
tag ADD_ENTRY, parent 25, ino 478153, name "plasma-org.kde.plasma.desktop-appletsrc.iiUTGN"
tag DEL_ENTRY, parent 25, ino 471829, name "plasma-org.kde.plasma.desktop-appletsrc"
tag ADD_ENTRY, parent 25, ino 478153, name "plasma-org.kde.plasma.desktop-appletsrc"
tag DEL_ENTRY, parent 25, ino 478153, name "plasma-org.kde.plasma.desktop-appletsrc.iiUTGN"
tag DEL_ENTRY, parent 25, ino 471162, name "plasma-org.kde.plasma.desktop-appletsrc.lock"
tag DEL_ENTRY, parent 406471, ino 408928, name ".startup-incomplete"
tag INODE, inode 408928
tag ADD_RANGE, inode 408928, lblk 0, pblk 5703695, len 5
tag CREAT_DENTRY, parent 406467, ino 408928, name "prefs-1.js"
tag INODE, inode 478153
tag ADD_RANGE, inode 125, lblk 0, pblk 4286015, len 2
tag DEL_RANGE, inode 125, lblk 2, len 2147483647
tag DEL_RANGE, inode 125, lblk -2147483647, len 2147483646
tag INODE, inode 125
tag INODE, inode 408928
tag TAIL, tid 7006
tag ADD_ENTRY, parent 406670, ino 477194, name "9279c232-606b-4e79-8cd4-5064bc02c3b0"
tag DEL_ENTRY, parent 406673, ino 477194, name "9279c232-606b-4e79-8cd4-5064bc02c3b0"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477211, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag INODE, inode 477211
tag CREAT_DENTRY, parent 406673, ino 477211, name "3f1609f1-1484-488b-9d8f-35a86fb74ecd"
tag ADD_ENTRY, parent 406670, ino 477211, name "3f1609f1-1484-488b-9d8f-35a86fb74ecd"
tag DEL_ENTRY, parent 406673, ino 477211, name "3f1609f1-1484-488b-9d8f-35a86fb74ecd"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.tmp"
tag INODE, inode 477362
tag ADD_RANGE, inode 477362, lblk 0, pblk 5703289, len 11
tag CREAT_DENTRY, parent 406667, ino 477362, name "data.safe.tmp"
tag DEL_ENTRY, parent 406667, ino 477190, name "data.safe.bin"
tag ADD_ENTRY, parent 406667, ino 477362, name "data.safe.bin"
tag DEL_ENTRY, parent 406667, ino 477362, name "data.safe.tmp"
tag INODE, inode 477190
tag CREAT_DENTRY, parent 406673, ino 477190, name "c87d2c7b-7b74-428a-855f-43a38f35de05"
tag ADD_ENTRY, parent 406670, ino 477190, name "c87d2c7b-7b74-428a-855f-43a38f35de05"
tag DEL_ENTRY, parent 406673, ino 477190, name "c87d2c7b-7b74-428a-855f-43a38f35de05"
tag INODE, inode 477413
tag ADD_RANGE, inode 477413, lblk 0, pblk 5707805, len 5
tag CREAT_DENTRY, parent 406467, ino 477413, name "prefs-1.js"
tag INODE, inode 471159
tag INODE, inode 438496
tag INODE, inode 469075
tag INODE, inode 406600
tag INODE, inode 2175
tag PAD
tag INODE, inode 471161
tag INODE, inode 476683
tag INODE, inode 476877
tag INODE, inode 469266
tag INODE, inode 475128
tag INODE, inode 477194
tag INODE, inode 477211
tag INODE, inode 477362
tag INODE, inode 477190
tag INODE, inode 477413
tag TAIL, tid 6996
tag DEL_ENTRY, parent 406467, ino 471159, name "prefs.js"
tag ADD_ENTRY, parent 406467, ino 477413, name "prefs.js"
tag DEL_ENTRY, parent 406467, ino 477413, name "prefs-1.js"
tag ADD_ENTRY, parent 407760, ino 478456, name "1299932866"
tag DEL_ENTRY, parent 406487, ino 478456, name "BB95D0607349D05725D5FE01D4FB300E319072AD"
tag INODE, inode 471159
tag CREAT_DENTRY, parent 406487, ino 471159, name "BB95D0607349D05725D5FE01D4FB300E319072AD"
tag INODE, inode 477502
tag DEL_RANGE, inode 477502, lblk 0, len 1
tag CREAT_DENTRY, parent 406467, ino 477502, name "AlternateServices.bin"
tag DEL_ENTRY, parent 406670, ino 438496, name "fe6c2bd5-805a-4ce6-a249-5f6ba8fcafd8"
tag INODE, inode 438496
tag CREAT_DENTRY, parent 406487, ino 438496, name "5E463A77EE0989DC7CA40D1018188AAC496D9FE8"
tag INODE, inode 477543
tag CREAT_DENTRY, parent 406487, ino 477543, name "3190790D82B4FA8996DC085419D9B134861B6EC9"
tag INODE, inode 477813
tag CREAT_DENTRY, parent 406471, ino 477813, name "safebrowsing-updating"
tag INODE, inode 477815
tag CREAT_DENTRY, parent 477813, ino 477815, name "google-trackwhite-digest256.sbstore"
tag INODE, inode 477953
tag CREAT_DENTRY, parent 477813, ino 477953, name "social-tracking-protection-facebook-digest256.sbstore"
tag INODE, inode 477959
tag CREAT_DENTRY, parent 477813, ino 477959, name "google4"
tag INODE, inode 478008
tag CREAT_DENTRY, parent 477959, ino 478008, name "goog-downloadwhite-proto.vlpset"
tag INODE, inode 478009
tag CREAT_DENTRY, parent 477959, ino 478009, name "goog-badbinurl-proto.vlpset"
tag INODE, inode 478012
tag CREAT_DENTRY, parent 477959, ino 478012, name "goog-unwanted-proto.vlpset"
tag INODE, inode 478014
tag CREAT_DENTRY, parent 477959, ino 478014, name "goog-phish-proto.vlpset"
tag INODE, inode 478129
tag CREAT_DENTRY, parent 477959, ino 478129, name "goog-malware-proto.metadata"
tag INODE, inode 478139
tag CREAT_DENTRY, parent 477959, ino 478139, name "goog-phish-proto.metadata"
tag INODE, inode 478224
tag CREAT_DENTRY, parent 477959, ino 478224, name "goog-unwanted-proto.metadata"
tag INODE, inode 478225
tag CREAT_DENTRY, parent 477959, ino 478225, name "goog-badbinurl-proto.metadata"
tag PAD
tag INODE, inode 478228
tag CREAT_DENTRY, parent 477959, ino 478228, name "goog-malware-proto.vlpset"
tag INODE, inode 478232
tag CREAT_DENTRY, parent 477959, ino 478232, name "goog-downloadwhite-proto.metadata"
tag INODE, inode 478235
tag CREAT_DENTRY, parent 477813, ino 478235, name "anti-fraud-track-digest256.vlpset"
tag INODE, inode 478286
tag CREAT_DENTRY, parent 477813, ino 478286, name "base-cryptomining-track-digest256.vlpset"
tag INODE, inode 478471
tag CREAT_DENTRY, parent 477813, ino 478471, name "social-tracking-protection-linkedin-digest256.vlpset"
tag INODE, inode 478475
tag CREAT_DENTRY, parent 477813, ino 478475, name "social-tracking-protection-twitter-digest256.vlpset"
tag INODE, inode 478494
tag CREAT_DENTRY, parent 477813, ino 478494, name "base-fingerprinting-track-digest256.vlpset"
tag INODE, inode 478497
tag CREAT_DENTRY, parent 477813, ino 478497, name "anti-fraud-track-digest256.sbstore"
tag INODE, inode 478498
tag CREAT_DENTRY, parent 477813, ino 478498, name "mozstd-trackwhite-digest256.vlpset"
tag INODE, inode 478499
tag CREAT_DENTRY, parent 477813, ino 478499, name "social-track-digest256.vlpset"
tag INODE, inode 478500
tag CREAT_DENTRY, parent 477813, ino 478500, name "social-tracking-protection-twitter-digest256.sbstore"
tag INODE, inode 478501
tag CREAT_DENTRY, parent 477813, ino 478501, name "consent-manager-track-digest256.sbstore"
tag INODE, inode 478502
tag CREAT_DENTRY, parent 477813, ino 478502, name "content-track-digest256.vlpset"
tag INODE, inode 478503
tag CREAT_DENTRY, parent 477813, ino 478503, name "base-fingerprinting-track-digest256.sbstore"
tag INODE, inode 478504
tag CREAT_DENTRY, parent 477813, ino 478504, name "analytics-track-digest256.vlpset"
tag INODE, inode 478505
tag CREAT_DENTRY, parent 477813, ino 478505, name "google-trackwhite-digest256.vlpset"
tag INODE, inode 478506
tag CREAT_DENTRY, parent 477813, ino 478506, name "ads-track-digest256.vlpset"
tag INODE, inode 478507
tag CREAT_DENTRY, parent 477813, ino 478507, name "content-email-track-digest256.sbstore"
tag PAD
tag INODE, inode 478508
tag CREAT_DENTRY, parent 477813, ino 478508, name "ads-track-digest256.sbstore"
tag INODE, inode 478509
tag CREAT_DENTRY, parent 477813, ino 478509, name "consent-manager-track-digest256.vlpset"
tag INODE, inode 478510
tag CREAT_DENTRY, parent 477813, ino 478510, name "base-email-track-digest256.sbstore"
tag INODE, inode 478511
tag CREAT_DENTRY, parent 477813, ino 478511, name "mozstd-trackwhite-digest256.sbstore"
tag INODE, inode 478512
tag CREAT_DENTRY, parent 477813, ino 478512, name "base-email-track-digest256.vlpset"
tag INODE, inode 478513
tag CREAT_DENTRY, parent 477813, ino 478513, name "social-tracking-protection-linkedin-digest256.sbstore"
tag INODE, inode 478514
tag CREAT_DENTRY, parent 477813, ino 478514, name "content-track-digest256.sbstore"
tag INODE, inode 478515
tag CREAT_DENTRY, parent 477813, ino 478515, name "analytics-track-digest256.sbstore"
tag INODE, inode 478516
tag CREAT_DENTRY, parent 477813, ino 478516, name "base-cryptomining-track-digest256.sbstore"
tag INODE, inode 478517
tag CREAT_DENTRY, parent 477813, ino 478517, name "social-tracking-protection-facebook-digest256.vlpset"
tag INODE, inode 478518
tag CREAT_DENTRY, parent 477813, ino 478518, name "content-email-track-digest256.vlpset"
tag INODE, inode 478519
tag CREAT_DENTRY, parent 477813, ino 478519, name "social-track-digest256.sbstore"
tag INODE, inode 478520
tag CREAT_DENTRY, parent 406487, ino 478520, name "5A76623F431A12FE401D6D72B8CA6E446BDE9569"
tag ADD_ENTRY, parent 407760, ino 477821, name "807541140"
tag DEL_ENTRY, parent 406487, ino 477821, name "6E7C72B58DD19446CD32AC5809F9CF381FDD9B9B"
tag DEL_ENTRY, parent 406670, ino 469075, name "ff0de406-128c-4b90-ba70-a4eec9ac0c1d"
tag INODE, inode 469075
tag CREAT_DENTRY, parent 406487, ino 469075, name "D5005E4197D927545AFDD21200E1F159D54CD20F"
tag INODE, inode 478521
tag CREAT_DENTRY, parent 406487, ino 478521, name "6E7C72B58DD19446CD32AC5809F9CF381FDD9B9B"
tag INODE, inode 477413
tag INODE, inode 470650
tag INODE, inode 406600
tag PAD
tag INODE, inode 478456
tag INODE, inode 471159
tag INODE, inode 406685
tag INODE, inode 406658
tag INODE, inode 477502
tag INODE, inode 438496
tag INODE, inode 477543
tag INODE, inode 477815
tag INODE, inode 477953
tag INODE, inode 478008
tag INODE, inode 478009
tag INODE, inode 478012
tag INODE, inode 478014
tag INODE, inode 478129
tag INODE, inode 478139
tag INODE, inode 478224
tag INODE, inode 478225
tag INODE, inode 478228
tag INODE, inode 478232
tag INODE, inode 478235
tag PAD
tag INODE, inode 478286
tag INODE, inode 478471
tag INODE, inode 478475
tag INODE, inode 478494
tag INODE, inode 478497
tag INODE, inode 478498
tag INODE, inode 478499
tag INODE, inode 478500
tag INODE, inode 478501
tag INODE, inode 478502
tag INODE, inode 478503
tag INODE, inode 478504
tag INODE, inode 478505
tag INODE, inode 478506
tag INODE, inode 478507
tag INODE, inode 478508
tag INODE, inode 478509
tag INODE, inode 478510
tag INODE, inode 478511
tag INODE, inode 478512
tag INODE, inode 478513
tag INODE, inode 478514
tag INODE, inode 478515
tag INODE, inode 478516
tag PAD
tag INODE, inode 478517
tag INODE, inode 478518
tag INODE, inode 478519
tag INODE, inode 478520
tag INODE, inode 477821
tag INODE, inode 469075
tag INODE, inode 478521
tag ADD_RANGE, inode 406498, lblk 0, pblk 4310012, len 1
tag INODE, inode 406498
tag TAIL, tid 6996
tag ADD_ENTRY, parent 393, ino 540, name "close-backdrop-active.svg"
tag DEL_ENTRY, parent 393, ino 541, name "close-backdrop-hover.svg"
tag INODE, inode 540
tag ADD_RANGE, inode 541, lblk 0, pblk 5707780, len 1
tag INODE, inode 541
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 541, name "close-backdrop-hover.svg"
tag DEL_ENTRY, parent 393, ino 554, name "maximize-normal.svg"
tag INODE, inode 541
tag ADD_RANGE, inode 554, lblk 0, pblk 5707781, len 1
tag INODE, inode 554
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 554, name "maximize-normal.svg"
tag DEL_ENTRY, parent 393, ino 556, name "maximize-active.svg"
tag INODE, inode 554
tag ADD_RANGE, inode 556, lblk 0, pblk 5707782, len 1
tag INODE, inode 556
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 556, name "maximize-active.svg"
tag DEL_ENTRY, parent 393, ino 560, name "maximize-hover.svg"
tag INODE, inode 556
tag ADD_RANGE, inode 560, lblk 0, pblk 5707783, len 1
tag INODE, inode 560
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 560, name "maximize-hover.svg"
tag DEL_ENTRY, parent 393, ino 698, name "maximize-backdrop-normal.svg"
tag INODE, inode 560
tag ADD_RANGE, inode 698, lblk 0, pblk 5707784, len 1
tag INODE, inode 698
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 698, name "maximize-backdrop-normal.svg"
tag DEL_ENTRY, parent 393, ino 700, name "maximize-backdrop-active.svg"
tag INODE, inode 698
tag ADD_RANGE, inode 700, lblk 0, pblk 5707785, len 1
tag INODE, inode 700
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 700, name "maximize-backdrop-active.svg"
tag DEL_ENTRY, parent 393, ino 701, name "maximize-backdrop-hover.svg"
tag INODE, inode 700
tag ADD_RANGE, inode 701, lblk 0, pblk 5707786, len 1
tag INODE, inode 701
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 701, name "maximize-backdrop-hover.svg"
tag DEL_ENTRY, parent 393, ino 438103, name "maximized-normal.svg"
tag INODE, inode 701
tag ADD_RANGE, inode 438103, lblk 0, pblk 5707787, len 1
tag INODE, inode 438103
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 438103, name "maximized-normal.svg"
tag DEL_ENTRY, parent 393, ino 703, name "maximized-active.svg"
tag INODE, inode 438103
tag ADD_RANGE, inode 703, lblk 0, pblk 5707788, len 1
tag INODE, inode 703
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 703, name "maximized-active.svg"
tag DEL_ENTRY, parent 393, ino 704, name "maximized-hover.svg"
tag INODE, inode 703
tag ADD_RANGE, inode 704, lblk 0, pblk 5707789, len 1
tag INODE, inode 704
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 704, name "maximized-hover.svg"
tag DEL_ENTRY, parent 393, ino 705, name "maximized-backdrop-normal.svg"
tag INODE, inode 704
tag ADD_RANGE, inode 705, lblk 0, pblk 5707790, len 1
tag INODE, inode 705
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 705, name "maximized-backdrop-normal.svg"
tag DEL_ENTRY, parent 393, ino 706, name "maximized-backdrop-active.svg"
tag INODE, inode 705
tag ADD_RANGE, inode 706, lblk 0, pblk 5707791, len 1
tag INODE, inode 706
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 706, name "maximized-backdrop-active.svg"
tag DEL_ENTRY, parent 393, ino 707, name "maximized-backdrop-hover.svg"
tag INODE, inode 706
tag ADD_RANGE, inode 707, lblk 0, pblk 5707792, len 1
tag INODE, inode 707
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 707, name "maximized-backdrop-hover.svg"
tag DEL_ENTRY, parent 393, ino 708, name "minimize-normal.svg"
tag INODE, inode 707
tag ADD_RANGE, inode 708, lblk 0, pblk 5707793, len 1
tag INODE, inode 708
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 708, name "minimize-normal.svg"
tag DEL_ENTRY, parent 393, ino 709, name "minimize-active.svg"
tag INODE, inode 708
tag ADD_RANGE, inode 709, lblk 0, pblk 5704193, len 1
tag INODE, inode 709
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 709, name "minimize-active.svg"
tag DEL_ENTRY, parent 393, ino 710, name "minimize-hover.svg"
tag INODE, inode 709
tag ADD_RANGE, inode 710, lblk 0, pblk 5707794, len 1
tag INODE, inode 710
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 710, name "minimize-hover.svg"
tag DEL_ENTRY, parent 393, ino 711, name "minimize-backdrop-normal.svg"
tag INODE, inode 710
tag ADD_RANGE, inode 711, lblk 0, pblk 5708288, len 1
tag INODE, inode 711
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 711, name "minimize-backdrop-normal.svg"
tag DEL_ENTRY, parent 393, ino 712, name "minimize-backdrop-active.svg"
tag INODE, inode 711
tag ADD_RANGE, inode 712, lblk 0, pblk 5708289, len 1
tag INODE, inode 712
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 712, name "minimize-backdrop-active.svg"
tag DEL_ENTRY, parent 393, ino 713, name "minimize-backdrop-hover.svg"
tag INODE, inode 712
tag ADD_RANGE, inode 713, lblk 0, pblk 5708290, len 1
tag INODE, inode 713
tag TAIL, tid 6989
tag ADD_ENTRY, parent 393, ino 713, name "minimize-backdrop-hover.svg"
tag DEL_ENTRY, parent 424, ino 715, name "window_decorations.css"
tag INODE, inode 713
tag ADD_RANGE, inode 715, lblk 0, pblk 5708291, len 1
tag INODE, inode 715
tag TAIL, tid 6989
tag ADD_ENTRY, parent 424, ino 715, name "window_decorations.css"
tag DEL_ENTRY, parent 426, ino 716, name "window_decorations.css"
tag INODE, inode 715
tag ADD_RANGE, inode 716, lblk 0, pblk 5708292, len 1
tag INODE, inode 716
tag TAIL, tid 6989
tag ADD_ENTRY, parent 426, ino 716, name "window_decorations.css"
tag DEL_ENTRY, parent 413, ino 308, name "xsettingsd.conf"
tag DEL_ENTRY, parent 13, ino 126, name ".gtkrc-2.0"
tag INODE, inode 126
tag CREAT_DENTRY, parent 13, ino 126, name ".gtkrc-2.0"
tag DEL_ENTRY, parent 413, ino 308, name "xsettingsd.conf"
tag DEL_ENTRY, parent 413, ino 308, name "xsettingsd.conf"
tag DEL_ENTRY, parent 413, ino 308, name "xsettingsd.conf"
tag DEL_ENTRY, parent 413, ino 308, name "xsettingsd.conf"
tag INODE, inode 308
tag CREAT_DENTRY, parent 413, ino 308, name "xsettingsd.conf"
tag INODE, inode 471161
tag CREAT_DENTRY, parent 145, ino 471161, name "UserFeedback.org.kde.plasmashell.lock"
tag INODE, inode 716
tag INODE, inode 126
tag INODE, inode 308
tag INODE, inode 471161
tag TAIL, tid 6989
tag ADD_RANGE, inode 473064, lblk 0, pblk 5703169, len 1
tag INODE, inode 473064
tag TAIL, tid 6989
tag ADD_ENTRY, parent 145, ino 473064, name "UserFeedback.org.kde.plasmashell.mwPNna"
tag DEL_ENTRY, parent 145, ino 472941, name "UserFeedback.org.kde.plasmashell"
tag ADD_ENTRY, parent 145, ino 473064, name "UserFeedback.org.kde.plasmashell"
tag DEL_ENTRY, parent 145, ino 473064, name "UserFeedback.org.kde.plasmashell.mwPNna"
tag DEL_ENTRY, parent 145, ino 471161, name "UserFeedback.org.kde.plasmashell.lock"
tag DEL_ENTRY, parent 424, ino 461, name "gtk.css"
tag INODE, inode 461
tag CREAT_DENTRY, parent 424, ino 461, name "gtk.css"
tag DEL_ENTRY, parent 426, ino 714, name "gtk.css"
tag INODE, inode 714
tag CREAT_DENTRY, parent 426, ino 714, name "gtk.css"
tag DEL_ENTRY, parent 21, ino 469266, name "plasma_theme_default.kcache"
tag INODE, inode 469266
tag ADD_RANGE, inode 469266, lblk 0, pblk 6504448, len 4121
tag CREAT_DENTRY, parent 21, ino 469266, name "plasma_theme_default.kcache"
tag INODE, inode 471161
tag CREAT_DENTRY, parent 25, ino 471161, name "kglobalshortcutsrc.lock"
tag INODE, inode 473064
tag ADD_RANGE, inode 126, lblk 0, pblk 4285960, len 1
tag DEL_RANGE, inode 126, lblk 1, len 2147483647
tag DEL_RANGE, inode 126, lblk -2147483648, len 2147483647
tag INODE, inode 126
tag INODE, inode 461
tag INODE, inode 714
tag ADD_RANGE, inode 463, lblk 0, pblk 5704194, len 2
tag DEL_RANGE, inode 463, lblk 2, len 2147483647
tag DEL_RANGE, inode 463, lblk -2147483647, len 2147483646
tag INODE, inode 463
tag ADD_RANGE, inode 727, lblk 0, pblk 5704196, len 2
tag DEL_RANGE, inode 727, lblk 2, len 2147483647
tag DEL_RANGE, inode 727, lblk -2147483647, len 2147483646
tag INODE, inode 727
tag INODE, inode 469266
tag INODE, inode 471161
tag TAIL, tid 6989
tag ADD_RANGE, inode 472941, lblk 0, pblk 4285961, len 4
tag INODE, inode 472941
tag TAIL, tid 6989
tag ADD_ENTRY, parent 25, ino 472941, name "kglobalshortcutsrc.zpzIFv"
tag DEL_ENTRY, parent 25, ino 471149, name "kglobalshortcutsrc"
tag ADD_ENTRY, parent 25, ino 472941, name "kglobalshortcutsrc"
tag DEL_ENTRY, parent 25, ino 472941, name "kglobalshortcutsrc.zpzIFv"
tag DEL_ENTRY, parent 25, ino 471161, name "kglobalshortcutsrc.lock"
tag INODE, inode 472941
tag ADD_RANGE, inode 471149, lblk 0, pblk 5707795, len 7
tag INODE, inode 471149
tag TAIL, tid 6989
tag ADD_ENTRY, parent 392, ino 471149, name "qqpc_opengl.tThTit"
tag DEL_ENTRY, parent 392, ino 469076, name "qqpc_opengl"
tag ADD_ENTRY, parent 392, ino 471149, name "qqpc_opengl"
tag DEL_ENTRY, parent 392, ino 471149, name "qqpc_opengl.tThTit"
tag INODE, inode 469076
tag ADD_RANGE, inode 469076, lblk 0, pblk 5708800, len 1
tag CREAT_DENTRY, parent 447, ino 469076, name "a835234b12cd40638672f45525ee8e4f-unix-0_8RPiJq"
tag INODE, inode 471149
tag INODE, inode 469076
tag TAIL, tid 6989
tag DEL_ENTRY, parent 447, ino 2364, name "a835234b12cd40638672f45525ee8e4f-unix-0"
tag ADD_ENTRY, parent 447, ino 469076, name "a835234b12cd40638672f45525ee8e4f-unix-0"
tag DEL_ENTRY, parent 447, ino 469076, name "a835234b12cd40638672f45525ee8e4f-unix-0_8RPiJq"
tag INODE, inode 2364
tag ADD_RANGE, inode 2364, lblk 0, pblk 5703170, len 1
tag CREAT_DENTRY, parent 447, ino 2364, name "a835234b12cd40638672f45525ee8e4f-unix-wayland-0_ZD7QfY"
tag INODE, inode 469076
tag INODE, inode 2364
tag TAIL, tid 6989
tag DEL_ENTRY, parent 447, ino 409035, name "a835234b12cd40638672f45525ee8e4f-unix-wayland-0"
tag ADD_ENTRY, parent 447, ino 2364, name "a835234b12cd40638672f45525ee8e4f-unix-wayland-0"
tag DEL_ENTRY, parent 447, ino 2364, name "a835234b12cd40638672f45525ee8e4f-unix-wayland-0_ZD7QfY"
tag INODE, inode 409035
tag ADD_RANGE, inode 409035, lblk 0, pblk 5703171, len 1
tag CREAT_DENTRY, parent 25, ino 409035, name "kxkbrc_4vqHuQ"
tag INODE, inode 2364
tag INODE, inode 409035
tag TAIL, tid 6989
tag DEL_ENTRY, parent 25, ino 438016, name "kxkbrc"
tag ADD_ENTRY, parent 25, ino 409035, name "kxkbrc"
tag DEL_ENTRY, parent 25, ino 409035, name "kxkbrc_4vqHuQ"
tag INODE, inode 409035
tag ADD_RANGE, inode 125, lblk 0, pblk 4285967, len 2
tag DEL_RANGE, inode 125, lblk 2, len 2147483647
tag DEL_RANGE, inode 125, lblk -2147483647, len 2147483646
tag INODE, inode 125
tag ADD_RANGE, inode 438016, lblk 0, pblk 5709312, len 2
tag INODE, inode 438016
tag TAIL, tid 6989
tag ADD_ENTRY, parent 423, ino 438016, name "5b7bbfd96267d74c2fdae847420d463d51481b0a.qmlc.sEmkhp"
tag DEL_ENTRY, parent 423, ino 407142, name "5b7bbfd96267d74c2fdae847420d463d51481b0a.qmlc"
tag ADD_ENTRY, parent 423, ino 438016, name "5b7bbfd96267d74c2fdae847420d463d51481b0a.qmlc"
tag DEL_ENTRY, parent 423, ino 438016, name "5b7bbfd96267d74c2fdae847420d463d51481b0a.qmlc.sEmkhp"
tag INODE, inode 471161
tag CREAT_DENTRY, parent 25, ino 471161, name "kglobalshortcutsrc.lock"
tag INODE, inode 438016
tag INODE, inode 407142
tag INODE, inode 471161
tag TAIL, tid 6989
tag ADD_RANGE, inode 473065, lblk 0, pblk 4285969, len 4
tag INODE, inode 473065
tag TAIL, tid 6989
tag ADD_ENTRY, parent 25, ino 473065, name "kglobalshortcutsrc.pjLxAb"
tag DEL_ENTRY, parent 25, ino 472941, name "kglobalshortcutsrc"
tag ADD_ENTRY, parent 25, ino 473065, name "kglobalshortcutsrc"
tag DEL_ENTRY, parent 25, ino 473065, name "kglobalshortcutsrc.pjLxAb"
tag DEL_ENTRY, parent 25, ino 471161, name "kglobalshortcutsrc.lock"
tag INODE, inode 471161
tag CREAT_DENTRY, parent 145, ino 471161, name "kickerstaterc.lock"
tag INODE, inode 473065
tag INODE, inode 471161
tag TAIL, tid 6989
tag ADD_RANGE, inode 472941, lblk 0, pblk 5708293, len 4
tag INODE, inode 472941
tag TAIL, tid 6989
tag ADD_ENTRY, parent 145, ino 472941, name "kickerstaterc.ftwxWx"
tag DEL_ENTRY, parent 145, ino 471159, name "kickerstaterc"
tag ADD_ENTRY, parent 145, ino 472941, name "kickerstaterc"
tag DEL_ENTRY, parent 145, ino 472941, name "kickerstaterc.ftwxWx"
tag DEL_ENTRY, parent 145, ino 471161, name "kickerstaterc.lock"
tag DEL_ENTRY, parent 129, ino 408928, name ".#lk0x000056d0558793b0.daniel-tablet1.5001"
tag ADD_ENTRY, parent 129, ino 408928, name ".#lk0x00006316313c53b0.daniel-tablet1.5341x"
tag DEL_ENTRY, parent 129, ino 408928, name ".#lk0x00006316313c53b0.daniel-tablet1.5341x"
tag ADD_ENTRY, parent 129, ino 408928, name "pubring.kbx.lock"
tag DEL_ENTRY, parent 129, ino 471159, name "pubring.kbx.tmp"
tag DEL_ENTRY, parent 129, ino 408928, name "pubring.kbx.lock"
tag DEL_ENTRY, parent 129, ino 408928, name ".#lk0x00006316313c53b0.daniel-tablet1.5341"
tag DEL_ENTRY, parent 150, ino 449, name "Akonadi.error.old"
tag INODE, inode 472941
tag INODE, inode 469266
tag ADD_RANGE, inode 449, lblk 0, pblk 5703172, len 1
tag INODE, inode 449
tag TAIL, tid 6989
tag ADD_ENTRY, parent 150, ino 449, name "Akonadi.error.old"
tag INODE, inode 408928
tag CREAT_DENTRY, parent 600, ino 408928, name "accounts.db-wal"
tag INODE, inode 471159
tag DEL_RANGE, inode 471159, lblk 0, len 1
tag CREAT_DENTRY, parent 600, ino 471159, name "accounts.db-shm"
tag DEL_ENTRY, parent 150, ino 449, name "Akonadi.error.old"
tag DEL_RANGE, inode 457, lblk 0, len 1
tag DEL_RANGE, inode 457, lblk 1, len 2147483647
tag DEL_RANGE, inode 457, lblk -2147483648, len 2147483647
tag INODE, inode 457
tag INODE, inode 408928
tag INODE, inode 471159
tag ADD_RANGE, inode 449, lblk 0, pblk 5708801, len 1
tag INODE, inode 449
tag TAIL, tid 6989
tag INODE, inode 478825
tag INODE, inode 478826
tag INODE, inode 478827
tag INODE, inode 478828
tag INODE, inode 478829
tag INODE, inode 478830
tag INODE, inode 478831
tag INODE, inode 478832
tag INODE, inode 478833
tag INODE, inode 478834
tag INODE, inode 478835
tag INODE, inode 478836
tag INODE, inode 478837
tag INODE, inode 478838
tag INODE, inode 478839
tag INODE, inode 478840
tag INODE, inode 478841
tag INODE, inode 478842
tag INODE, inode 478843
tag INODE, inode 478844
tag TAIL, tid 6507
^ permalink raw reply
* Re: [PATCH e2fsprogs] e2fsck: preen inline data no attr
From: Theodore Tso @ 2026-03-06 15:51 UTC (permalink / raw)
To: Daniel Tang; +Cc: linux-ext4, Darrick J. Wong
In-Reply-To: <3188418.mvXUDI8C0e@daniel-desktop3>
On Wed, Mar 04, 2026 at 08:56:37AM -0500, Daniel Tang wrote:
> I don't like being forcibly dropped into an emergency shell to truncate
> pidfiles and other temporary files every time my tablet uncleanly shuts
> down.
What version of the kernel and e2fsprogs are you running on your
tablet? And can you send us the output of running "dumpe2fs -h
/dev/DEVICE" on the file system in question?
This really shouldn't be happening; if the extended attribute is
missing while the inline data flag is set, that sounds like either a
kernel bug, or perhaps a problem with the storage device where writes
are not being properly persisted.
Is there anything about these inodes that you need to manually remove
or truncate? What are the inode timestamps, so we can see if they are
freshly created right about the time of the unclean shutdown? Or are
they files that might might have been much longer lived, in which case
this might be a sign of actual data loss.
Finally, it's interesting that you're getting dropped into an
emergency shell after every unclean shutdown. If that's because the
file system had some kind of file system inconsistency marked, then
there may be something else weird going on.
If it's just because there is a deleted inline_data file on the orphan
list, that shouldn't be an issue, and in fact, we can easily verify that:
kvm-xfstests shell
root@kvm-xfstests:~# mke2fs -t ext4 -Fq -O inline_data /dev/vdc 8M
root@kvm-xfstests:~# mount /dev/vdc /mnt
root@kvm-xfstests:~# echo foo > /mnt/foo
root@kvm-xfstests:~# cat >> /mnt/foo
^Z
[1]+ Stopped cat >> /mnt/foo
root@kvm-xfstests:~# rm /mnt/foo
root@kvm-xfstests:~# sync
root@kvm-xfstests:~# <Control-A> x
QEMU: terminated
We then restart the kernel, and take a quick look:
root@kvm-xfstests:~# dd if=/dev/vdc of=/tmp/test.img bs=1M count=8
8+0 records in
8+0 records out
8388608 bytes (8.4 MB, 8.0 MiB) copied, 0.0614913 s, 136 MB/s
root@kvm-xfstests:~# e2fsck /tmp/test.img
e2fsck 1.47.4-WIP (11-Nov-2025)
/tmp/test.img: recovering journal
Clearing orphaned inode 13 (uid=0, gid=0, mode=0100644, size=4)
Setting free inodes count to 2036 (was 2037)
/tmp/test.img: clean, 12/2048 files, 1649/8192 blocks
root@kvm-xfstests:~# debugfs /dev/vdc
debugfs 1.47.4-WIP (11-Nov-2025)
debugfs: stat <13>
Inode: 13 Type: regular Mode: 0644 Flags: 0x10000000
Generation: 2671039161 Version: 0x00000000:00000001
User: 0 Group: 0 Project: 0 Size: 4
File ACL: 0
Links: 0 Blockcount: 0
Fragment: Address: 0 Number: 0 Size: 0
ctime: 0x69aaf6ce:a04cc190 -- Fri Mar 6 10:46:22 2026
atime: 0x69aaf6ca:0edd508c -- Fri Mar 6 10:46:18 2026
mtime: 0x69aaf6ca:0edd508c -- Fri Mar 6 10:46:18 2026
crtime: 0x69aaf6ca:0edd508c -- Fri Mar 6 10:46:18 2026
Size of extra inode fields: 32
Extended attributes:
system.data (0)
Inode checksum: 0x14853e18
Size of inline data: 60
debugfs:
So this is how things *should* work. I'm curious why it's apparently
not working this way on your tablet.
- Ted
^ permalink raw reply
* Re: [PATCH v5] ext4: avoid infinite loops caused by residual data
From: Jan Kara @ 2026-03-06 15:25 UTC (permalink / raw)
To: Edward Adam Davis
Cc: jack, brauner, linux-ext4, linux-fsdevel, linux-kernel,
syzbot+1659aaaaa8d9d11265d7, syzkaller-bugs, viro
In-Reply-To: <tencent_43696283A68450B761D76866C6F360E36705@qq.com>
On Fri 06-03-26 09:31:58, Edward Adam Davis wrote:
> On the mkdir/mknod path, when mapping logical blocks to physical blocks,
> if inserting a new extent into the extent tree fails (in this example,
> because the file system disabled the huge file feature when marking the
> inode as dirty), ext4_ext_map_blocks() only calls ext4_free_blocks() to
> reclaim the physical block without deleting the corresponding data in
> the extent tree. This causes subsequent mkdir operations to reference
> the previously reclaimed physical block number again, even though this
> physical block is already being used by the xattr block. Therefore, a
> situation arises where both the directory and xattr are using the same
> buffer head block in memory simultaneously.
>
> The above causes ext4_xattr_block_set() to enter an infinite loop about
> "inserted" and cannot release the inode lock, ultimately leading to the
> 143s blocking problem mentioned in [1].
>
> If the metadata is corrupted, then trying to remove some extent space
> can do even more harm. Also in case EXT4_GET_BLOCKS_DELALLOC_RESERVE
> was passed, remove space wrongly update quota information.
> Jan Kara suggests distinguishing between two cases:
>
> 1) The error is ENOSPC or EDQUOT - in this case the filesystem is fully
> consistent and we must maintain its consistency including all the
> accounting. However these errors can happen only early before we've
> inserted the extent into the extent tree. So current code works correctly
> for this case.
>
> 2) Some other error - this means metadata is corrupted. We should strive to
> do as few modifications as possible to limit damage. So I'd just skip
> freeing of allocated blocks.
>
> [1]
> INFO: task syz.0.17:5995 blocked for more than 143 seconds.
> Call Trace:
> inode_lock_nested include/linux/fs.h:1073 [inline]
> __start_dirop fs/namei.c:2923 [inline]
> start_dirop fs/namei.c:2934 [inline]
>
> Reported-by: syzbot+512459401510e2a9a39f@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=1659aaaaa8d9d11265d7
> Tested-by: syzbot+1659aaaaa8d9d11265d7@syzkaller.appspotmail.com
> Reported-by: syzbot+1659aaaaa8d9d11265d7@syzkaller.appspotmail.com
> Closes: https://syzkaller.appspot.com/bug?extid=512459401510e2a9a39f
> Tested-by: syzbot+1659aaaaa8d9d11265d7@syzkaller.appspotmail.com
> Signed-off-by: Edward Adam Davis <eadavis@qq.com>
Looks good to me! Feel free to add:
Reviewed-by: Jan Kara <jack@suse.cz>
Honza
> ---
> v1 -> v2: fix ci reported issues
> v2 -> v3: new fix for removing residual data and update subject and coments
> v3 -> v4: filtering already allocated blocks and update comments
> v4 -> v5: don't touch corrupted data and update comments
>
> fs/ext4/extents.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
> index ae3804f36535..4779da94f816 100644
> --- a/fs/ext4/extents.c
> +++ b/fs/ext4/extents.c
> @@ -4457,9 +4457,13 @@ int ext4_ext_map_blocks(handle_t *handle, struct inode *inode,
> path = ext4_ext_insert_extent(handle, inode, path, &newex, flags);
> if (IS_ERR(path)) {
> err = PTR_ERR(path);
> - if (allocated_clusters) {
> + /*
> + * Gracefully handle out of space conditions. If the filesystem
> + * is inconsistent, we'll just leak allocated blocks to avoid
> + * causing even more damage.
> + */
> + if (allocated_clusters && (err == -EDQUOT || err == -ENOSPC)) {
> int fb_flags = 0;
> -
> /*
> * free data blocks we just allocated.
> * not a good idea to call discard here directly,
> --
> 2.43.0
>
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
^ permalink raw reply
* Re: [PATCH v3 01/12] vfs: widen inode hash/lookup functions to u64
From: Christian Brauner @ 2026-03-06 13:28 UTC (permalink / raw)
To: Jeff Layton
Cc: Christoph Hellwig, Alexander Viro, Jan Kara, Steven Rostedt,
Masami Hiramatsu, Mathieu Desnoyers, Dan Williams, Eric Biggers,
Theodore Y. Ts'o, Muchun Song, Oscar Salvador,
David Hildenbrand, David Howells, Paulo Alcantara, Andreas Dilger,
Jan Kara, Jaegeuk Kim, Chao Yu, Trond Myklebust, Anna Schumaker,
Chuck Lever, NeilBrown, Olga Kornievskaia, Dai Ngo, Tom Talpey,
Steve French, Ronnie Sahlberg, Shyam Prasad N, Bharath SM,
Alexander Aring, Ryusuke Konishi, Viacheslav Dubeyko,
Eric Van Hensbergen, Latchesar Ionkov, Dominique Martinet,
Christian Schoenebeck, David Sterba, Marc Dionne, Ian Kent,
Luis de Bethencourt, Salah Triki, Tigran A. Aivazian,
Ilya Dryomov, Alex Markuze, Jan Harkes, coda, Nicolas Pitre,
Tyler Hicks, Amir Goldstein, John Paul Adrian Glaubitz,
Yangtao Li, Mikulas Patocka, David Woodhouse, Richard Weinberger,
Dave Kleikamp, Konstantin Komarov, Mark Fasheh, Joel Becker,
Joseph Qi, Mike Marshall, Martin Brandenburg, Miklos Szeredi,
Anders Larsen, Zhihao Cheng, Damien Le Moal, Naohiro Aota,
Johannes Thumshirn, John Johansen, Paul Moore, James Morris,
Serge E. Hallyn, Mimi Zohar, Roberto Sassu, Dmitry Kasatkin,
Eric Snowberg, Fan Wu, Stephen Smalley, Ondrej Mosnacek,
Casey Schaufler, Alex Deucher, Christian König, David Airlie,
Simona Vetter, Sumit Semwal, Eric Dumazet, Kuniyuki Iwashima,
Paolo Abeni, Willem de Bruijn, David S. Miller, Jakub Kicinski,
Simon Horman, Oleg Nesterov, Peter Zijlstra, Ingo Molnar,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Alexander Shishkin, Jiri Olsa, Ian Rogers, Adrian Hunter,
James Clark, Darrick J. Wong, Martin Schiller, Eric Paris,
Joerg Reuter, Marcel Holtmann, Johan Hedberg,
Luiz Augusto von Dentz, Oliver Hartkopp, Marc Kleine-Budde,
David Ahern, Neal Cardwell, Steffen Klassert, Herbert Xu,
Remi Denis-Courmont, Marcelo Ricardo Leitner, Xin Long,
Magnus Karlsson, Maciej Fijalkowski, Stanislav Fomichev,
Alexei Starovoitov, Daniel Borkmann, Jesper Dangaard Brouer,
John Fastabend, linux-fsdevel, linux-kernel, linux-trace-kernel,
nvdimm, fsverity, linux-mm, netfs, linux-ext4, linux-f2fs-devel,
linux-nfs, linux-cifs, samba-technical, linux-nilfs, v9fs,
linux-afs, autofs, ceph-devel, codalist, ecryptfs, linux-mtd,
jfs-discussion, ntfs3, ocfs2-devel, devel, linux-unionfs,
apparmor, linux-security-module, linux-integrity, selinux,
amd-gfx, dri-devel, linux-media, linaro-mm-sig, netdev,
linux-perf-users, linux-fscrypt, linux-xfs, linux-hams, linux-x25,
audit, linux-bluetooth, linux-can, linux-sctp, bpf
In-Reply-To: <c1845a4b8d35d367953ac6cbfcf91ac36958ba51.camel@kernel.org>
On Fri, Mar 06, 2026 at 07:03:15AM -0500, Jeff Layton wrote:
> On Thu, 2026-03-05 at 06:24 -0800, Christoph Hellwig wrote:
> > > extern struct inode *ilookup5_nowait(struct super_block *sb,
> > > - unsigned long hashval, int (*test)(struct inode *, void *),
> > > + u64 hashval, int (*test)(struct inode *, void *),
> > > void *data, bool *isnew);
> > > -extern struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
> > > +extern struct inode *ilookup5(struct super_block *sb, u64 hashval,
> > > int (*test)(struct inode *, void *), void *data);
> >
> > ...
> >
> > Can you please drop all these pointless externs while you're at it?
> >
>
> I was planning to do that, but then Christian merged it!
>
> I'll do a patch on top of this that does this in the range of fs.h that
> the patch touches. Christian can throw it on top of the series, and
> that shouldn't be too bad for backports.
I can easily drop those so no need to resend for stuff like this as per
the usual protocol.
^ permalink raw reply
* Re: [LTP] [linux-next:master] [ext4] 81d2e13a57: ltp.fanotify22.fail
From: Petr Vorel @ 2026-03-06 12:19 UTC (permalink / raw)
To: kernel test robot
Cc: Darrick J. Wong, Christian Brauner, Jan Kara, lkp, oe-lkp,
linux-ext4, Christoph Hellwig, ltp, Amir Goldstein
In-Reply-To: <202602042124.87bd00e3-lkp@intel.com>
Hi all,
[ Cc Amir, although this might be more related to ext4 than fanotify ]
Kind regards,
Petr
> Hello,
> kernel test robot noticed "ltp.fanotify22.fail" on:
> commit: 81d2e13a57c9d73582527966fae24d4fd73826ca ("ext4: convert to new fserror helpers")
> https://git.kernel.org/cgit/linux/kernel/git/next/linux-next.git master
> [test failed on linux-next/master 33a647c659ffa5bdb94abc345c8c86768ff96215]
> in testcase: ltp
> version:
> with following parameters:
> disk: 1HDD
> fs: btrfs
> test: syscalls-02/fanotify22
> config: x86_64-rhel-9.4-ltp
> compiler: gcc-14
> test machine: 4 threads 1 sockets Intel(R) Core(TM) i3-3220 CPU @ 3.30GHz (Ivy Bridge) with 8G memory
> (please refer to attached dmesg/kmsg for entire log/backtrace)
> If you fix the issue in a separate patch/commit (i.e. not just a new version of
> the same patch/commit), kindly add following tags
> | Reported-by: kernel test robot <oliver.sang@intel.com>
> | Closes: https://lore.kernel.org/oe-lkp/202602042124.87bd00e3-lkp@intel.com
> The kernel config and materials to reproduce are available at:
> https://download.01.org/0day-ci/archive/20260204/202602042124.87bd00e3-lkp@intel.com
> user :notice: [ 423.546026] [ T265] Hostname: lkp-ivb-d04
> user :notice: [ 423.554417] [ T265] Python: 3.13.5 (main, Jun 25 2025, 18:55:22) [GCC 14.2.0]
> user :notice: [ 423.570800] [ T265] Directory: /tmp/kirk.root/tmpefuyb6o0
> user :notice: [ 423.584852] [ T265] Connecting to SUT: default
> user :warn : [ 423.586640] [ T5587] /lkp/benchmarks/ltp/kirk[5563]: fanotify22: start (command: fanotify22)
> user :notice: [ 423.605665] [ T265] Starting suite: temp_single_test
> user :notice: [ 423.613894] [ T265] ---------------------------------
> kern :info : [ 423.633832] [ T5592] loop: module loaded
> kern :info : [ 423.657047] [ T5591] loop0: detected capacity change from 0 to 614400
> kern :err : [ 423.821741] [ T5591] /dev/zero: Can't lookup blockdev
> kern :info : [ 424.033575] [ T5591] EXT4-fs (loop0): mounted filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9 r/w with ordered data mode. Quota mode: none.
> kern :info : [ 424.098309] [ T5607] EXT4-fs (loop0): unmounting filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9.
> kern :info : [ 424.345598] [ T5607] EXT4-fs (loop0): mounted filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9 r/w with ordered data mode. Quota mode: none.
> kern :crit : [ 424.414068] [ T5607] EXT4-fs error (device loop0): __ext4_remount:6794: comm fanotify22: Abort forced by user
> kern :err : [ 424.423984] [ T5607] Aborting journal on device loop0-8.
> kern :crit : [ 424.463989] [ T5607] EXT4-fs (loop0): Remounting filesystem read-only
> kern :info : [ 424.470416] [ T5607] EXT4-fs (loop0): re-mounted 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9 ro.
> kern :info : [ 424.479591] [ T5607] EXT4-fs (loop0): unmounting filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9.
> kern :warn : [ 424.490528] [ T5607] EXT4-fs (loop0): warning: mounting fs with errors, running e2fsck is recommended
> kern :info : [ 424.539426] [ T5607] EXT4-fs (loop0): mounted filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9 r/w with ordered data mode. Quota mode: none.
> kern :crit : [ 424.552662] [ T5607] EXT4-fs error (device loop0): ext4_lookup:1785: inode #32386: comm fanotify22: iget: bogus i_mode (377)
> kern :info : [ 424.617262] [ T5607] EXT4-fs (loop0): unmounting filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9.
> kern :warn : [ 424.703481] [ T5607] EXT4-fs (loop0): warning: mounting fs with errors, running e2fsck is recommended
> kern :info : [ 424.752431] [ T5607] EXT4-fs (loop0): mounted filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9 r/w with ordered data mode. Quota mode: none.
> kern :crit : [ 424.765440] [ T5607] EXT4-fs error (device loop0): ext4_lookup:1777: inode #32385: comm fanotify22: bad inode number: 1
> kern :crit : [ 424.776331] [ T5607] EXT4-fs error (device loop0): ext4_lookup:1785: inode #32386: comm fanotify22: iget: bogus i_mode (377)
> kern :info : [ 424.845037] [ T5607] EXT4-fs (loop0): unmounting filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9.
> kern :warn : [ 424.928434] [ T5607] EXT4-fs (loop0): warning: mounting fs with errors, running e2fsck is recommended
> kern :info : [ 424.985535] [ T5607] EXT4-fs (loop0): mounted filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9 r/w with ordered data mode. Quota mode: none.
> kern :crit : [ 424.998543] [ T5607] EXT4-fs error (device loop0): ext4_lookup:1785: inode #32386: comm fanotify22: iget: bogus i_mode (377)
> kern :crit : [ 425.115411] [ T5607] EXT4-fs error (device loop0): __ext4_remount:6794: comm fanotify22: Abort forced by user
> kern :err : [ 425.125337] [ T5607] Aborting journal on device loop0-8.
> kern :crit : [ 425.191808] [ T5607] EXT4-fs (loop0): Remounting filesystem read-only
> kern :info : [ 425.198225] [ T5607] EXT4-fs (loop0): re-mounted 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9 ro.
> kern :info : [ 425.207311] [ T5607] EXT4-fs (loop0): unmounting filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9.
> kern :warn : [ 425.218247] [ T5607] EXT4-fs (loop0): warning: mounting fs with errors, running e2fsck is recommended
> kern :info : [ 425.255422] [ T5607] EXT4-fs (loop0): mounted filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9 r/w with ordered data mode. Quota mode: none.
> kern :info : [ 425.300422] [ T5591] EXT4-fs (loop0): unmounting filesystem 6b5acef8-3cdb-48f2-8af0-b27b5ee321e9.
> user :notice: [ 425.421952] [ T265] \x1b[1;37mfanotify22: \x1b[0m\x1b[1;31mfail\x1b[0m | \x1b[1;33mtainted\x1b[0m (1.808s)
> user :warn : [ 425.427743] [ T5635] /lkp/benchmarks/ltp/kirk[5563]: fanotify22: end (returncode: 1)
> user :notice: [ 425.447575] [ T265]
> user :notice: [ 425.463971] [ T265] Execution time: 1.866s
> user :notice: [ 425.476018] [ T265] Suite: temp_single_test
> user :notice: [ 425.483786] [ T265] Total runs: 1
> user :notice: [ 425.490690] [ T265] Runtime: 1.808s
> user :notice: [ 425.497330] [ T265] Passed: 3
> user :notice: [ 425.503518] [ T265] Failed: 1
> user :notice: [ 425.509637] [ T265] Skipped: 0
> user :notice: [ 425.515735] [ T265] Broken: 0
> user :notice: [ 425.521820] [ T265] Warnings: 0
> user :notice: [ 425.529960] [ T265] Kernel: Linux 6.19.0-rc1-00006-g81d2e13a57c9 #1 SMP PREEMPT_DYNAMIC Sat Jan 31 20:49:54 CST 2026
> user :notice: [ 425.543805] [ T265] Machine: unknown
> user :notice: [ 425.550576] [ T265] Arch: x86_64
> user :notice: [ 425.557336] [ T265] RAM: 6899604 kB
> user :notice: [ 425.564451] [ T265] Swap: 0 kB
> user :notice: [ 425.571112] [ T265] Distro: debian 13
> user :notice: [ 425.582858] [ T265] Disconnecting from SUT: default
> user :notice: [ 425.590377] [ T265] Session stopped
^ permalink raw reply
* Re: [PATCH v3 01/12] vfs: widen inode hash/lookup functions to u64
From: Jeff Layton @ 2026-03-06 12:03 UTC (permalink / raw)
To: Christoph Hellwig
Cc: Alexander Viro, Christian Brauner, Jan Kara, Steven Rostedt,
Masami Hiramatsu, Mathieu Desnoyers, Dan Williams, Eric Biggers,
Theodore Y. Ts'o, Muchun Song, Oscar Salvador,
David Hildenbrand, David Howells, Paulo Alcantara, Andreas Dilger,
Jan Kara, Jaegeuk Kim, Chao Yu, Trond Myklebust, Anna Schumaker,
Chuck Lever, NeilBrown, Olga Kornievskaia, Dai Ngo, Tom Talpey,
Steve French, Ronnie Sahlberg, Shyam Prasad N, Bharath SM,
Alexander Aring, Ryusuke Konishi, Viacheslav Dubeyko,
Eric Van Hensbergen, Latchesar Ionkov, Dominique Martinet,
Christian Schoenebeck, David Sterba, Marc Dionne, Ian Kent,
Luis de Bethencourt, Salah Triki, Tigran A. Aivazian,
Ilya Dryomov, Alex Markuze, Jan Harkes, coda, Nicolas Pitre,
Tyler Hicks, Amir Goldstein, John Paul Adrian Glaubitz,
Yangtao Li, Mikulas Patocka, David Woodhouse, Richard Weinberger,
Dave Kleikamp, Konstantin Komarov, Mark Fasheh, Joel Becker,
Joseph Qi, Mike Marshall, Martin Brandenburg, Miklos Szeredi,
Anders Larsen, Zhihao Cheng, Damien Le Moal, Naohiro Aota,
Johannes Thumshirn, John Johansen, Paul Moore, James Morris,
Serge E. Hallyn, Mimi Zohar, Roberto Sassu, Dmitry Kasatkin,
Eric Snowberg, Fan Wu, Stephen Smalley, Ondrej Mosnacek,
Casey Schaufler, Alex Deucher, Christian König, David Airlie,
Simona Vetter, Sumit Semwal, Eric Dumazet, Kuniyuki Iwashima,
Paolo Abeni, Willem de Bruijn, David S. Miller, Jakub Kicinski,
Simon Horman, Oleg Nesterov, Peter Zijlstra, Ingo Molnar,
Arnaldo Carvalho de Melo, Namhyung Kim, Mark Rutland,
Alexander Shishkin, Jiri Olsa, Ian Rogers, Adrian Hunter,
James Clark, Darrick J. Wong, Martin Schiller, Eric Paris,
Joerg Reuter, Marcel Holtmann, Johan Hedberg,
Luiz Augusto von Dentz, Oliver Hartkopp, Marc Kleine-Budde,
David Ahern, Neal Cardwell, Steffen Klassert, Herbert Xu,
Remi Denis-Courmont, Marcelo Ricardo Leitner, Xin Long,
Magnus Karlsson, Maciej Fijalkowski, Stanislav Fomichev,
Alexei Starovoitov, Daniel Borkmann, Jesper Dangaard Brouer,
John Fastabend, linux-fsdevel, linux-kernel, linux-trace-kernel,
nvdimm, fsverity, linux-mm, netfs, linux-ext4, linux-f2fs-devel,
linux-nfs, linux-cifs, samba-technical, linux-nilfs, v9fs,
linux-afs, autofs, ceph-devel, codalist, ecryptfs, linux-mtd,
jfs-discussion, ntfs3, ocfs2-devel, devel, linux-unionfs,
apparmor, linux-security-module, linux-integrity, selinux,
amd-gfx, dri-devel, linux-media, linaro-mm-sig, netdev,
linux-perf-users, linux-fscrypt, linux-xfs, linux-hams, linux-x25,
audit, linux-bluetooth, linux-can, linux-sctp, bpf
In-Reply-To: <aamSFgXhrORAJLBC@infradead.org>
On Thu, 2026-03-05 at 06:24 -0800, Christoph Hellwig wrote:
> > extern struct inode *ilookup5_nowait(struct super_block *sb,
> > - unsigned long hashval, int (*test)(struct inode *, void *),
> > + u64 hashval, int (*test)(struct inode *, void *),
> > void *data, bool *isnew);
> > -extern struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
> > +extern struct inode *ilookup5(struct super_block *sb, u64 hashval,
> > int (*test)(struct inode *, void *), void *data);
>
> ...
>
> Can you please drop all these pointless externs while you're at it?
>
I was planning to do that, but then Christian merged it!
I'll do a patch on top of this that does this in the range of fs.h that
the patch touches. Christian can throw it on top of the series, and
that shouldn't be too bad for backports.
> Otherwise looks good:
>
> Reviewed-by: Christoph Hellwig <hch@lst.de>
Thanks for the review!
--
Jeff Layton <jlayton@kernel.org>
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox