* [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15
@ 2025-10-17 16:53 Matthieu Baerts (NGI0)
2025-10-17 16:53 ` [PATCH 5.10.y 1/3] x86/boot: Compile boot code with -std=gnu11 too Matthieu Baerts (NGI0)
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Matthieu Baerts (NGI0) @ 2025-10-17 16:53 UTC (permalink / raw)
To: stable, Greg Kroah-Hartman, Sasha Levin
Cc: MPTCP Upstream, Matthieu Baerts (NGI0), Alexey Dobriyan,
Ingo Molnar, H. Peter Anvin (Intel), Nathan Chancellor,
Dave Hansen, Ard Biesheuvel, Arnd Bergmann, Douglas Raillard,
Masami Hiramatsu (Google), Steven Rostedt (Google),
Mathieu Desnoyers
This kernel version doesn't build with GCC 15:
In file included from include/uapi/linux/posix_types.h:5,
from include/uapi/linux/types.h:14,
from include/linux/types.h:6,
from arch/x86/realmode/rm/wakeup.h:11,
from arch/x86/realmode/rm/wakemain.c:2:
include/linux/stddef.h:11:9: error: cannot use keyword 'false' as enumeration constant
11 | false = 0,
| ^~~~~
include/linux/stddef.h:11:9: note: 'false' is a keyword with '-std=c23' onwards
include/linux/types.h:30:33: error: 'bool' cannot be defined via 'typedef'
30 | typedef _Bool bool;
| ^~~~
include/linux/types.h:30:33: note: 'bool' is a keyword with '-std=c23' onwards
include/linux/types.h:30:1: warning: useless type name in empty declaration
30 | typedef _Bool bool;
| ^~~~~~~
I initially fixed this by adding -std=gnu11 in arch/x86/Makefile, then I
realised this fix was already done in an upstream commit, created before
the GCC 15 release and not mentioning the error I had. This is the first
patch.
When I was investigating my error, I noticed other commits were already
backported to stable versions. They were all adding -std=gnu11 in
different Makefiles. In their commit message, they were mentioning
'gnu11' was picked to use the same as the one from the main Makefile.
But this is not the case in this kernel version. Patch 2 fixes that.
Finally, I noticed an extra warning that I didn't have in v5.15. Patch 3
fixes that.
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
---
Alexey Dobriyan (1):
x86/boot: Compile boot code with -std=gnu11 too
Matthieu Baerts (NGI0) (2):
arch: back to -std=gnu89 in < v5.18
tracing: fix declaration-after-statement warning
arch/parisc/boot/compressed/Makefile | 2 +-
arch/s390/Makefile | 2 +-
arch/s390/purgatory/Makefile | 2 +-
arch/x86/Makefile | 2 +-
arch/x86/boot/compressed/Makefile | 2 +-
drivers/firmware/efi/libstub/Makefile | 2 +-
kernel/trace/trace_events_synth.c | 3 ++-
7 files changed, 8 insertions(+), 7 deletions(-)
---
base-commit: a32db271d59d9f35f3a937ac27fcc2db1e029cdc
change-id: 20251017-v5-10-gcc-15-ad2510f784f7
Best regards,
--
Matthieu Baerts (NGI0) <matttbe@kernel.org>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 5.10.y 1/3] x86/boot: Compile boot code with -std=gnu11 too
2025-10-17 16:53 [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Matthieu Baerts (NGI0)
@ 2025-10-17 16:53 ` Matthieu Baerts (NGI0)
2025-11-03 1:43 ` Patch "x86/boot: Compile boot code with -std=gnu11 too" has been added to the 5.10-stable tree gregkh
2025-10-17 16:53 ` [PATCH 5.10.y 2/3] arch: back to -std=gnu89 in < v5.18 Matthieu Baerts (NGI0)
` (3 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Matthieu Baerts (NGI0) @ 2025-10-17 16:53 UTC (permalink / raw)
To: stable, Greg Kroah-Hartman, Sasha Levin
Cc: MPTCP Upstream, Matthieu Baerts (NGI0), Alexey Dobriyan,
Ingo Molnar, H. Peter Anvin (Intel), Nathan Chancellor,
Dave Hansen, Ard Biesheuvel
From: Alexey Dobriyan <adobriyan@gmail.com>
commit b3bee1e7c3f2b1b77182302c7b2131c804175870 upstream.
Use -std=gnu11 for consistency with main kernel code.
It doesn't seem to change anything in vmlinux.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Acked-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Link: https://lore.kernel.org/r/2058761e-12a4-4b2f-9690-3c3c1c9902a5@p183
[ This kernel version doesn't build with GCC 15:
In file included from include/uapi/linux/posix_types.h:5,
from include/uapi/linux/types.h:14,
from include/linux/types.h:6,
from arch/x86/realmode/rm/wakeup.h:11,
from arch/x86/realmode/rm/wakemain.c:2:
include/linux/stddef.h:11:9: error: cannot use keyword 'false' as enumeration constant
11 | false = 0,
| ^~~~~
include/linux/stddef.h:11:9: note: 'false' is a keyword with '-std=c23' onwards
include/linux/types.h:30:33: error: 'bool' cannot be defined via 'typedef'
30 | typedef _Bool bool;
| ^~~~
include/linux/types.h:30:33: note: 'bool' is a keyword with '-std=c23' onwards
include/linux/types.h:30:1: warning: useless type name in empty declaration
30 | typedef _Bool bool;
| ^~~~~~~
The fix is similar to commit ee2ab467bddf ("x86/boot: Use '-std=gnu11'
to fix build with GCC 15") which has been backported to this kernel.
Note: In < 5.18 version, -std=gnu89 is used instead of -std=gnu11, see
commit e8c07082a810 ("Kbuild: move to -std=gnu11"). I suggest not to
modify that in this commit here as all the other similar fixes to
support GCC 15 set -std=gnu11. This can be done in a dedicated commit
if needed.
There was a conflict, because commit 2838307b019d ("x86/build: Remove
-m16 workaround for unsupported versions of GCC") is not in this
version and change code in the context. -std=gnu11 can still be added
at the same place. ]
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
---
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
---
arch/x86/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 8b9fa777f513..f584d07095f1 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -31,7 +31,7 @@ endif
CODE16GCC_CFLAGS := -m32 -Wa,$(srctree)/arch/x86/boot/code16gcc.h
M16_CFLAGS := $(call cc-option, -m16, $(CODE16GCC_CFLAGS))
-REALMODE_CFLAGS := $(M16_CFLAGS) -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
+REALMODE_CFLAGS := -std=gnu11 $(M16_CFLAGS) -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
-Wall -Wstrict-prototypes -march=i386 -mregparm=3 \
-fno-strict-aliasing -fomit-frame-pointer -fno-pic \
-mno-mmx -mno-sse $(call cc-option,-fcf-protection=none)
--
2.51.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 5.10.y 2/3] arch: back to -std=gnu89 in < v5.18
2025-10-17 16:53 [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Matthieu Baerts (NGI0)
2025-10-17 16:53 ` [PATCH 5.10.y 1/3] x86/boot: Compile boot code with -std=gnu11 too Matthieu Baerts (NGI0)
@ 2025-10-17 16:53 ` Matthieu Baerts (NGI0)
2025-11-03 1:43 ` Patch "arch: back to -std=gnu89 in < v5.18" has been added to the 5.10-stable tree gregkh
2025-10-17 16:53 ` [PATCH 5.10.y 3/3] tracing: fix declaration-after-statement warning Matthieu Baerts (NGI0)
` (2 subsequent siblings)
4 siblings, 1 reply; 10+ messages in thread
From: Matthieu Baerts (NGI0) @ 2025-10-17 16:53 UTC (permalink / raw)
To: stable, Greg Kroah-Hartman, Sasha Levin
Cc: MPTCP Upstream, Matthieu Baerts (NGI0), Nathan Chancellor,
Ard Biesheuvel, Alexey Dobriyan, Arnd Bergmann
Recent fixes have been backported to < v5.18 to fix build issues with
GCC 5.15. They all force -std=gnu11 in the CFLAGS, "because [the kernel]
requests the gnu11 standard via '-std=' in the main Makefile".
This is true for >= 5.18 versions, but not before. This switch to
-std=gnu11 has been done in commit e8c07082a810 ("Kbuild: move to
-std=gnu11").
For a question of uniformity, force -std=gnu89, similar to what is done
in the main Makefile.
Note: the fixes tags below refers to upstream commits, but this fix is
only for kernels not having commit e8c07082a810 ("Kbuild: move to
-std=gnu11").
Fixes: 7cbb015e2d3d ("parisc: fix building with gcc-15")
Fixes: 3b8b80e99376 ("s390: Add '-std=gnu11' to decompressor and purgatory CFLAGS")
Fixes: b3bee1e7c3f2 ("x86/boot: Compile boot code with -std=gnu11 too")
Fixes: ee2ab467bddf ("x86/boot: Use '-std=gnu11' to fix build with GCC 15")
Fixes: 8ba14d9f490a ("efi: libstub: Use '-std=gnu11' to fix build with GCC 15")
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
---
Note:
An alternative is to backport commit e8c07082a810 ("Kbuild: move to
-std=gnu11"), but I guess we might not want to do that for stable, as
it might introduce new warnings.
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Ard Biesheuvel <ardb@kernel.org>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Arnd Bergmann <arnd@arndb.de>
---
arch/parisc/boot/compressed/Makefile | 2 +-
arch/s390/Makefile | 2 +-
arch/s390/purgatory/Makefile | 2 +-
arch/x86/Makefile | 2 +-
arch/x86/boot/compressed/Makefile | 2 +-
drivers/firmware/efi/libstub/Makefile | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/arch/parisc/boot/compressed/Makefile b/arch/parisc/boot/compressed/Makefile
index 4e5aecc263a2..f2efd55a0c81 100644
--- a/arch/parisc/boot/compressed/Makefile
+++ b/arch/parisc/boot/compressed/Makefile
@@ -22,7 +22,7 @@ KBUILD_CFLAGS += -fno-PIE -mno-space-regs -mdisable-fpregs -Os
ifndef CONFIG_64BIT
KBUILD_CFLAGS += -mfast-indirect-calls
endif
-KBUILD_CFLAGS += -std=gnu11
+KBUILD_CFLAGS += -std=gnu89
OBJECTS += $(obj)/head.o $(obj)/real2.o $(obj)/firmware.o $(obj)/misc.o $(obj)/piggy.o
diff --git a/arch/s390/Makefile b/arch/s390/Makefile
index 92f2426d8797..9680c6c9a710 100644
--- a/arch/s390/Makefile
+++ b/arch/s390/Makefile
@@ -23,7 +23,7 @@ endif
aflags_dwarf := -Wa,-gdwarf-2
KBUILD_AFLAGS_DECOMPRESSOR := $(CLANG_FLAGS) -m64 -D__ASSEMBLY__
KBUILD_AFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO),$(aflags_dwarf))
-KBUILD_CFLAGS_DECOMPRESSOR := $(CLANG_FLAGS) -m64 -O2 -std=gnu11
+KBUILD_CFLAGS_DECOMPRESSOR := $(CLANG_FLAGS) -m64 -O2 -std=gnu89
KBUILD_CFLAGS_DECOMPRESSOR += -DDISABLE_BRANCH_PROFILING -D__NO_FORTIFY
KBUILD_CFLAGS_DECOMPRESSOR += -fno-delete-null-pointer-checks -msoft-float
KBUILD_CFLAGS_DECOMPRESSOR += -fno-asynchronous-unwind-tables
diff --git a/arch/s390/purgatory/Makefile b/arch/s390/purgatory/Makefile
index 955f113cf320..e03f234fcfbe 100644
--- a/arch/s390/purgatory/Makefile
+++ b/arch/s390/purgatory/Makefile
@@ -20,7 +20,7 @@ GCOV_PROFILE := n
UBSAN_SANITIZE := n
KASAN_SANITIZE := n
-KBUILD_CFLAGS := -std=gnu11 -fno-strict-aliasing -Wall -Wstrict-prototypes
+KBUILD_CFLAGS := -std=gnu89 -fno-strict-aliasing -Wall -Wstrict-prototypes
KBUILD_CFLAGS += -Wno-pointer-sign -Wno-sign-compare
KBUILD_CFLAGS += -fno-zero-initialized-in-bss -fno-builtin -ffreestanding
KBUILD_CFLAGS += -c -MD -Os -m64 -msoft-float -fno-common
diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index f584d07095f1..9c08f2cd399f 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -31,7 +31,7 @@ endif
CODE16GCC_CFLAGS := -m32 -Wa,$(srctree)/arch/x86/boot/code16gcc.h
M16_CFLAGS := $(call cc-option, -m16, $(CODE16GCC_CFLAGS))
-REALMODE_CFLAGS := -std=gnu11 $(M16_CFLAGS) -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
+REALMODE_CFLAGS := -std=gnu89 $(M16_CFLAGS) -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
-Wall -Wstrict-prototypes -march=i386 -mregparm=3 \
-fno-strict-aliasing -fomit-frame-pointer -fno-pic \
-mno-mmx -mno-sse $(call cc-option,-fcf-protection=none)
diff --git a/arch/x86/boot/compressed/Makefile b/arch/x86/boot/compressed/Makefile
index e1a750baf036..6dd03543235a 100644
--- a/arch/x86/boot/compressed/Makefile
+++ b/arch/x86/boot/compressed/Makefile
@@ -33,7 +33,7 @@ targets := vmlinux vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma \
# avoid errors with '-march=i386', and future flags may depend on the target to
# be valid.
KBUILD_CFLAGS := -m$(BITS) -O2 $(CLANG_FLAGS)
-KBUILD_CFLAGS += -std=gnu11
+KBUILD_CFLAGS += -std=gnu89
KBUILD_CFLAGS += -fno-strict-aliasing -fPIE
KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
cflags-$(CONFIG_X86_32) := -march=i386
diff --git a/drivers/firmware/efi/libstub/Makefile b/drivers/firmware/efi/libstub/Makefile
index d7bcfe0d50d1..d719134e2d3a 100644
--- a/drivers/firmware/efi/libstub/Makefile
+++ b/drivers/firmware/efi/libstub/Makefile
@@ -7,7 +7,7 @@
#
cflags-$(CONFIG_X86_32) := -march=i386
cflags-$(CONFIG_X86_64) := -mcmodel=small
-cflags-$(CONFIG_X86) += -m$(BITS) -D__KERNEL__ -std=gnu11 \
+cflags-$(CONFIG_X86) += -m$(BITS) -D__KERNEL__ -std=gnu89 \
-fPIC -fno-strict-aliasing -mno-red-zone \
-mno-mmx -mno-sse -fshort-wchar \
-Wno-pointer-sign \
--
2.51.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 5.10.y 3/3] tracing: fix declaration-after-statement warning
2025-10-17 16:53 [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Matthieu Baerts (NGI0)
2025-10-17 16:53 ` [PATCH 5.10.y 1/3] x86/boot: Compile boot code with -std=gnu11 too Matthieu Baerts (NGI0)
2025-10-17 16:53 ` [PATCH 5.10.y 2/3] arch: back to -std=gnu89 in < v5.18 Matthieu Baerts (NGI0)
@ 2025-10-17 16:53 ` Matthieu Baerts (NGI0)
2025-11-03 1:43 ` Patch "tracing: fix declaration-after-statement warning" has been added to the 5.10-stable tree gregkh
2025-10-20 13:32 ` [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Greg Kroah-Hartman
2025-10-31 8:10 ` Philip Müller
4 siblings, 1 reply; 10+ messages in thread
From: Matthieu Baerts (NGI0) @ 2025-10-17 16:53 UTC (permalink / raw)
To: stable, Greg Kroah-Hartman, Sasha Levin
Cc: MPTCP Upstream, Matthieu Baerts (NGI0), Douglas Raillard,
Masami Hiramatsu (Google), Steven Rostedt (Google),
Mathieu Desnoyers
When building this kernel version this warning is visible:
kernel/trace/trace_events_synth.c: In function 'synth_event_reg':
kernel/trace/trace_events_synth.c:847:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
847 | int ret = trace_event_reg(call, type, data);
| ^~~
This can be easily fixed by declaring 'ret' earlier.
This issue is visible in < v5.18, because -std=gnu89 is used by default,
see commit e8c07082a810 ("Kbuild: move to -std=gnu11").
Please note that in v5.15.y, the 'Fixes' commit has been modified during
the backport, not to have this warning. See commit 72848b81b3dd
("tracing: Ensure module defining synth event cannot be unloaded while
tracing") from v5.15.y.
Fixes: 21581dd4e7ff ("tracing: Ensure module defining synth event cannot be unloaded while tracing")
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
---
Cc: Douglas Raillard <douglas.raillard@arm.com>
Cc: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Cc: Steven Rostedt (Google) <rostedt@goodmis.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
---
kernel/trace/trace_events_synth.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/kernel/trace/trace_events_synth.c b/kernel/trace/trace_events_synth.c
index 613d45e7b608..b126af59e61c 100644
--- a/kernel/trace/trace_events_synth.c
+++ b/kernel/trace/trace_events_synth.c
@@ -831,6 +831,7 @@ static int synth_event_reg(struct trace_event_call *call,
enum trace_reg type, void *data)
{
struct synth_event *event = container_of(call, struct synth_event, call);
+ int ret;
switch (type) {
#ifdef CONFIG_PERF_EVENTS
@@ -844,7 +845,7 @@ static int synth_event_reg(struct trace_event_call *call,
break;
}
- int ret = trace_event_reg(call, type, data);
+ ret = trace_event_reg(call, type, data);
switch (type) {
#ifdef CONFIG_PERF_EVENTS
--
2.51.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15
2025-10-17 16:53 [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Matthieu Baerts (NGI0)
` (2 preceding siblings ...)
2025-10-17 16:53 ` [PATCH 5.10.y 3/3] tracing: fix declaration-after-statement warning Matthieu Baerts (NGI0)
@ 2025-10-20 13:32 ` Greg Kroah-Hartman
2025-10-20 16:00 ` Matthieu Baerts
2025-10-31 8:10 ` Philip Müller
4 siblings, 1 reply; 10+ messages in thread
From: Greg Kroah-Hartman @ 2025-10-20 13:32 UTC (permalink / raw)
To: Matthieu Baerts (NGI0)
Cc: stable, Sasha Levin, MPTCP Upstream, Alexey Dobriyan, Ingo Molnar,
H. Peter Anvin (Intel), Nathan Chancellor, Dave Hansen,
Ard Biesheuvel, Arnd Bergmann, Douglas Raillard,
Masami Hiramatsu (Google), Steven Rostedt (Google),
Mathieu Desnoyers
On Fri, Oct 17, 2025 at 06:53:24PM +0200, Matthieu Baerts (NGI0) wrote:
> This kernel version doesn't build with GCC 15:
>
> In file included from include/uapi/linux/posix_types.h:5,
> from include/uapi/linux/types.h:14,
> from include/linux/types.h:6,
> from arch/x86/realmode/rm/wakeup.h:11,
> from arch/x86/realmode/rm/wakemain.c:2:
> include/linux/stddef.h:11:9: error: cannot use keyword 'false' as enumeration constant
> 11 | false = 0,
> | ^~~~~
> include/linux/stddef.h:11:9: note: 'false' is a keyword with '-std=c23' onwards
> include/linux/types.h:30:33: error: 'bool' cannot be defined via 'typedef'
> 30 | typedef _Bool bool;
> | ^~~~
> include/linux/types.h:30:33: note: 'bool' is a keyword with '-std=c23' onwards
> include/linux/types.h:30:1: warning: useless type name in empty declaration
> 30 | typedef _Bool bool;
> | ^~~~~~~
>
> I initially fixed this by adding -std=gnu11 in arch/x86/Makefile, then I
> realised this fix was already done in an upstream commit, created before
> the GCC 15 release and not mentioning the error I had. This is the first
> patch.
>
> When I was investigating my error, I noticed other commits were already
> backported to stable versions. They were all adding -std=gnu11 in
> different Makefiles. In their commit message, they were mentioning
> 'gnu11' was picked to use the same as the one from the main Makefile.
> But this is not the case in this kernel version. Patch 2 fixes that.
>
> Finally, I noticed an extra warning that I didn't have in v5.15. Patch 3
> fixes that.
As with 5.4.y, this kernel isn't going to be around all that much
longer, and I strongly doubt anyone that relies on it is also using
gcc15 with it. Normally near the end of the 6 year window of kernels,
we are "stuck" with using older gcc releases with that, and not newer
ones, and that's fine, as that's what the users of those kernels are
also doing.
So I don't think the effort is worth it. gcc14 will be around in
distros for the next year so all should be ok here. Just like gcc13 was
around long enough for us to keep 4.19.y working just fine with that
maximum compiler release as well.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15
2025-10-20 13:32 ` [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Greg Kroah-Hartman
@ 2025-10-20 16:00 ` Matthieu Baerts
0 siblings, 0 replies; 10+ messages in thread
From: Matthieu Baerts @ 2025-10-20 16:00 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: stable, Sasha Levin, MPTCP Upstream, Alexey Dobriyan, Ingo Molnar,
H. Peter Anvin (Intel), Nathan Chancellor, Dave Hansen,
Ard Biesheuvel, Arnd Bergmann, Douglas Raillard,
Masami Hiramatsu (Google), Steven Rostedt (Google),
Mathieu Desnoyers
Hi Greg,
Thank you for your reply!
On 20/10/2025 15:32, Greg Kroah-Hartman wrote:
> On Fri, Oct 17, 2025 at 06:53:24PM +0200, Matthieu Baerts (NGI0) wrote:
>> This kernel version doesn't build with GCC 15:
>>
>> In file included from include/uapi/linux/posix_types.h:5,
>> from include/uapi/linux/types.h:14,
>> from include/linux/types.h:6,
>> from arch/x86/realmode/rm/wakeup.h:11,
>> from arch/x86/realmode/rm/wakemain.c:2:
>> include/linux/stddef.h:11:9: error: cannot use keyword 'false' as enumeration constant
>> 11 | false = 0,
>> | ^~~~~
>> include/linux/stddef.h:11:9: note: 'false' is a keyword with '-std=c23' onwards
>> include/linux/types.h:30:33: error: 'bool' cannot be defined via 'typedef'
>> 30 | typedef _Bool bool;
>> | ^~~~
>> include/linux/types.h:30:33: note: 'bool' is a keyword with '-std=c23' onwards
>> include/linux/types.h:30:1: warning: useless type name in empty declaration
>> 30 | typedef _Bool bool;
>> | ^~~~~~~
>>
>> I initially fixed this by adding -std=gnu11 in arch/x86/Makefile, then I
>> realised this fix was already done in an upstream commit, created before
>> the GCC 15 release and not mentioning the error I had. This is the first
>> patch.
>>
>> When I was investigating my error, I noticed other commits were already
>> backported to stable versions. They were all adding -std=gnu11 in
>> different Makefiles. In their commit message, they were mentioning
>> 'gnu11' was picked to use the same as the one from the main Makefile.
>> But this is not the case in this kernel version. Patch 2 fixes that.
>>
>> Finally, I noticed an extra warning that I didn't have in v5.15. Patch 3
>> fixes that.
>
> As with 5.4.y, this kernel isn't going to be around all that much
> longer, and I strongly doubt anyone that relies on it is also using
> gcc15 with it. Normally near the end of the 6 year window of kernels,
> we are "stuck" with using older gcc releases with that, and not newer
> ones, and that's fine, as that's what the users of those kernels are
> also doing.
>
> So I don't think the effort is worth it. gcc14 will be around in
> distros for the next year so all should be ok here. Just like gcc13 was
> around long enough for us to keep 4.19.y working just fine with that
> maximum compiler release as well.
Fine by me, but just to avoid confusions, I would like to add:
- Only the first patch fixes the GCC 15 support, and it only adds
'-std=gnu11' in x86/boot. All the other GCC 15 specific patches have
already been backported, only that one didn't have a Fixes tag and was
missing in <= v5.15.
- Patch 2/3 fixes the (accidental) switch to C11 standard for some arch.
It should not be a problem in v5.10, because GCC minimal version is 4.9
which supports C11 if I'm not mistaken. It is just to be consistent with
what is done in the main Makefile, but it can be drop if preferred.
- Patch 3/3 is not linked to GCC 15 support, it fixes an ISO C90 warning.
Cheers,
Matt
--
Sponsored by the NGI0 Core fund.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15
2025-10-17 16:53 [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Matthieu Baerts (NGI0)
` (3 preceding siblings ...)
2025-10-20 13:32 ` [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Greg Kroah-Hartman
@ 2025-10-31 8:10 ` Philip Müller
4 siblings, 0 replies; 10+ messages in thread
From: Philip Müller @ 2025-10-31 8:10 UTC (permalink / raw)
To: Matthieu Baerts (NGI0), stable, Greg Kroah-Hartman, Sasha Levin
Cc: MPTCP Upstream, Alexey Dobriyan, Ingo Molnar,
H. Peter Anvin (Intel), Nathan Chancellor, Dave Hansen,
Ard Biesheuvel, Arnd Bergmann, Douglas Raillard,
Masami Hiramatsu (Google), Steven Rostedt (Google),
Mathieu Desnoyers, Chris Clayton, Laura Nao, Alyssa Ross
[-- Attachment #1: Type: text/plain, Size: 2940 bytes --]
On 10/17/25 18:53, Matthieu Baerts (NGI0) wrote:
> This kernel version doesn't build with GCC 15:
>
> In file included from include/uapi/linux/posix_types.h:5,
> from include/uapi/linux/types.h:14,
> from include/linux/types.h:6,
> from arch/x86/realmode/rm/wakeup.h:11,
> from arch/x86/realmode/rm/wakemain.c:2:
> include/linux/stddef.h:11:9: error: cannot use keyword 'false' as enumeration constant
> 11 | false = 0,
> | ^~~~~
> include/linux/stddef.h:11:9: note: 'false' is a keyword with '-std=c23' onwards
> include/linux/types.h:30:33: error: 'bool' cannot be defined via 'typedef'
> 30 | typedef _Bool bool;
> | ^~~~
> include/linux/types.h:30:33: note: 'bool' is a keyword with '-std=c23' onwards
> include/linux/types.h:30:1: warning: useless type name in empty declaration
> 30 | typedef _Bool bool;
> | ^~~~~~~
>
> I initially fixed this by adding -std=gnu11 in arch/x86/Makefile, then I
> realised this fix was already done in an upstream commit, created before
> the GCC 15 release and not mentioning the error I had. This is the first
> patch.
>
> When I was investigating my error, I noticed other commits were already
> backported to stable versions. They were all adding -std=gnu11 in
> different Makefiles. In their commit message, they were mentioning
> 'gnu11' was picked to use the same as the one from the main Makefile.
> But this is not the case in this kernel version. Patch 2 fixes that.
>
> Finally, I noticed an extra warning that I didn't have in v5.15. Patch 3
> fixes that.
>
> Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
> ---
> Alexey Dobriyan (1):
> x86/boot: Compile boot code with -std=gnu11 too
>
> Matthieu Baerts (NGI0) (2):
> arch: back to -std=gnu89 in < v5.18
> tracing: fix declaration-after-statement warning
>
> arch/parisc/boot/compressed/Makefile | 2 +-
> arch/s390/Makefile | 2 +-
> arch/s390/purgatory/Makefile | 2 +-
> arch/x86/Makefile | 2 +-
> arch/x86/boot/compressed/Makefile | 2 +-
> drivers/firmware/efi/libstub/Makefile | 2 +-
> kernel/trace/trace_events_synth.c | 3 ++-
> 7 files changed, 8 insertions(+), 7 deletions(-)
> ---
> base-commit: a32db271d59d9f35f3a937ac27fcc2db1e029cdc
> change-id: 20251017-v5-10-gcc-15-ad2510f784f7
>
> Best regards,
The last kernel I was able to build with GCC15 was 5.10.245. With
5.10.246 we have again the 'FAILED unresolved symbol filp_close' error.
Attached you may find the full build log. 5.4.x and 5.15.x series still
compile fine with GCC15. We already had the issue with 5.10.235 back in
March:
https://lore.kernel.org/stable/b39ca723-16a4-42a2-b8ca-b97d0e4bf7f5@manjaro.org/
--
Best, Philip
[-- Attachment #2: linux5.10.246build.log --]
[-- Type: text/x-log, Size: 2604256 bytes --]
2025-10-31T05:20:44.0991360Z Current runner version: '2.328.0'
2025-10-31T05:20:44.1020387Z ##[group]Runner Image Provisioner
2025-10-31T05:20:44.1022346Z Hosted Compute Agent
2025-10-31T05:20:44.1023764Z Version: 20250912.392
2025-10-31T05:20:44.1025228Z Commit: d921fda672a98b64f4f82364647e2f10b2267d0b
2025-10-31T05:20:44.1026839Z Build Date: 2025-09-12T15:23:14Z
2025-10-31T05:20:44.1028208Z ##[endgroup]
2025-10-31T05:20:44.1029558Z ##[group]Operating System
2025-10-31T05:20:44.1030884Z Ubuntu
2025-10-31T05:20:44.1032459Z 24.04.3
2025-10-31T05:20:44.1033789Z LTS
2025-10-31T05:20:44.1035094Z ##[endgroup]
2025-10-31T05:20:44.1036432Z ##[group]Runner Image
2025-10-31T05:20:44.1037821Z Image: ubuntu-24.04
2025-10-31T05:20:44.1039139Z Version: 20250929.60.1
2025-10-31T05:20:44.1041159Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250929.60/images/ubuntu/Ubuntu2404-Readme.md
2025-10-31T05:20:44.1044117Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250929.60
2025-10-31T05:20:44.1046016Z ##[endgroup]
2025-10-31T05:20:44.1049888Z ##[group]GITHUB_TOKEN Permissions
2025-10-31T05:20:44.1053673Z Actions: write
2025-10-31T05:20:44.1055015Z Attestations: write
2025-10-31T05:20:44.1056329Z Checks: write
2025-10-31T05:20:44.1057596Z Contents: write
2025-10-31T05:20:44.1058882Z Deployments: write
2025-10-31T05:20:44.1060139Z Discussions: write
2025-10-31T05:20:44.1061422Z Issues: write
2025-10-31T05:20:44.1062980Z Metadata: read
2025-10-31T05:20:44.1064271Z Models: read
2025-10-31T05:20:44.1065507Z Packages: write
2025-10-31T05:20:44.1066827Z Pages: write
2025-10-31T05:20:44.1068107Z PullRequests: write
2025-10-31T05:20:44.1069386Z RepositoryProjects: write
2025-10-31T05:20:44.1070738Z SecurityEvents: write
2025-10-31T05:20:44.1072380Z Statuses: write
2025-10-31T05:20:44.1073744Z ##[endgroup]
2025-10-31T05:20:44.1077023Z Secret source: Actions
2025-10-31T05:20:44.1078740Z Prepare workflow directory
2025-10-31T05:20:44.1427804Z Prepare all required actions
2025-10-31T05:20:44.1467965Z Getting action download info
2025-10-31T05:20:44.6475284Z Download action repository 'manjaro-kernels/kernel-action@master' (SHA:49855c668c3d8eab63562c6c84c4c972a1f74cd8)
2025-10-31T05:20:45.3838752Z Complete job name: build-kernel
2025-10-31T05:20:45.4717171Z ##[group]Run manjaro-kernels/kernel-action@master
2025-10-31T05:20:45.4718646Z with:
2025-10-31T05:20:45.4719662Z gitlab-pw: ***
2025-10-31T05:20:45.4720689Z build-mirror: ***
2025-10-31T05:20:45.4721624Z branch: unstable
2025-10-31T05:20:45.4722773Z bump-kernel: false
2025-10-31T05:20:45.4723741Z bump-modules: repo
2025-10-31T05:20:45.4764955Z gpg-key: ***
2025-10-31T05:20:45.4766034Z gpg-passphrase: ***
2025-10-31T05:20:45.4767016Z bxt-api-key: ***
2025-10-31T05:20:45.4767946Z bump-pkgrel: false
2025-10-31T05:20:45.4768877Z realtime: false
2025-10-31T05:20:45.4770118Z ##[endgroup]
2025-10-31T05:20:45.4963498Z ##[group]Run sudo apt-get update
2025-10-31T05:20:45.4964632Z ^[[36;1msudo apt-get update^[[0m
2025-10-31T05:20:45.4965653Z ^[[36;1msudo apt-get install \^[[0m
2025-10-31T05:20:45.4966690Z ^[[36;1mbuild-essential \^[[0m
2025-10-31T05:20:45.4967664Z ^[[36;1mcmake \^[[0m
2025-10-31T05:20:45.4968575Z ^[[36;1mfakeroot \^[[0m
2025-10-31T05:20:45.4969529Z ^[[36;1mgit \^[[0m
2025-10-31T05:20:45.4970463Z ^[[36;1mlibarchive-dev \^[[0m
2025-10-31T05:20:45.4971449Z ^[[36;1mlibarchive-tools \^[[0m
2025-10-31T05:20:45.4972654Z ^[[36;1mlibcurl4-openssl-dev \^[[0m
2025-10-31T05:20:45.4973698Z ^[[36;1mlibgpgme-dev \^[[0m
2025-10-31T05:20:45.4974646Z ^[[36;1mlibssl-dev \^[[0m
2025-10-31T05:20:45.4975583Z ^[[36;1mzip \^[[0m
2025-10-31T05:20:45.4976549Z ^[[36;1mpython3-pip^[[0m
2025-10-31T05:20:45.4977528Z ^[[36;1msudo pip3 install meson^[[0m
2025-10-31T05:20:45.4978555Z ^[[36;1msudo pip3 install ninja^[[0m
2025-10-31T05:20:45.5017450Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-31T05:20:45.5018627Z ##[endgroup]
2025-10-31T05:20:45.5937301Z Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [144 B]
2025-10-31T05:20:45.6201488Z Hit:2 http://azure.archive.ubuntu.com/ubuntu noble InRelease
2025-10-31T05:20:45.6221316Z Get:3 http://azure.archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
2025-10-31T05:20:45.6253621Z Get:6 https://packages.microsoft.com/repos/azure-cli noble InRelease [3564 B]
2025-10-31T05:20:45.6284701Z Get:4 http://azure.archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
2025-10-31T05:20:45.6297485Z Get:7 https://packages.microsoft.com/ubuntu/24.04/prod noble InRelease [3600 B]
2025-10-31T05:20:45.6310017Z Get:5 http://azure.archive.ubuntu.com/ubuntu noble-security InRelease [126 kB]
2025-10-31T05:20:45.7487274Z Get:8 https://packages.microsoft.com/repos/azure-cli noble/main amd64 Packages [1629 B]
2025-10-31T05:20:45.7964470Z Get:9 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1545 kB]
2025-10-31T05:20:45.8072771Z Get:10 http://azure.archive.ubuntu.com/ubuntu noble-updates/main Translation-en [294 kB]
2025-10-31T05:20:45.8100526Z Get:11 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Components [175 kB]
2025-10-31T05:20:45.8121441Z Get:12 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 c-n-f Metadata [15.4 kB]
2025-10-31T05:20:45.8131614Z Get:13 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1498 kB]
2025-10-31T05:20:45.8315701Z Get:14 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe Translation-en [303 kB]
2025-10-31T05:20:45.8381584Z Get:15 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Components [378 kB]
2025-10-31T05:20:45.8490332Z Get:16 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 c-n-f Metadata [31.4 kB]
2025-10-31T05:20:45.8495403Z Get:17 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [2175 kB]
2025-10-31T05:20:45.8585347Z Get:18 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted Translation-en [490 kB]
2025-10-31T05:20:45.9013145Z Get:29 https://packages.microsoft.com/ubuntu/24.04/prod noble/main amd64 Packages [65.9 kB]
2025-10-31T05:20:45.9050651Z Get:30 https://packages.microsoft.com/ubuntu/24.04/prod noble/main arm64 Packages [48.7 kB]
2025-10-31T05:20:45.9090316Z Get:31 https://packages.microsoft.com/ubuntu/24.04/prod noble/main armhf Packages [11.1 kB]
2025-10-31T05:20:45.9125444Z Get:19 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Components [212 B]
2025-10-31T05:20:45.9134625Z Get:20 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 c-n-f Metadata [516 B]
2025-10-31T05:20:45.9148025Z Get:21 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [30.3 kB]
2025-10-31T05:20:45.9157752Z Get:22 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse Translation-en [5564 B]
2025-10-31T05:20:45.9168594Z Get:23 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Components [940 B]
2025-10-31T05:20:45.9177021Z Get:24 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 c-n-f Metadata [484 B]
2025-10-31T05:20:45.9187332Z Get:25 http://azure.archive.ubuntu.com/ubuntu noble-backports/main amd64 Components [7148 B]
2025-10-31T05:20:45.9199680Z Get:26 http://azure.archive.ubuntu.com/ubuntu noble-backports/universe amd64 Components [11.0 kB]
2025-10-31T05:20:45.9208480Z Get:27 http://azure.archive.ubuntu.com/ubuntu noble-backports/restricted amd64 Components [216 B]
2025-10-31T05:20:45.9217851Z Get:28 http://azure.archive.ubuntu.com/ubuntu noble-backports/multiverse amd64 Components [212 B]
2025-10-31T05:20:45.9568250Z Get:32 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 Packages [1270 kB]
2025-10-31T05:20:45.9678996Z Get:33 http://azure.archive.ubuntu.com/ubuntu noble-security/main Translation-en [211 kB]
2025-10-31T05:20:45.9728359Z Get:34 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 Components [21.5 kB]
2025-10-31T05:20:45.9740672Z Get:35 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 c-n-f Metadata [9008 B]
2025-10-31T05:20:46.0162595Z Get:36 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 Packages [905 kB]
2025-10-31T05:20:46.0223800Z Get:37 http://azure.archive.ubuntu.com/ubuntu noble-security/universe Translation-en [203 kB]
2025-10-31T05:20:46.0259602Z Get:38 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 Components [52.2 kB]
2025-10-31T05:20:46.0272426Z Get:39 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 c-n-f Metadata [19.4 kB]
2025-10-31T05:20:46.0294376Z Get:40 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [2080 kB]
2025-10-31T05:20:46.0435182Z Get:41 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted Translation-en [470 kB]
2025-10-31T05:20:46.0468286Z Get:42 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted amd64 Components [208 B]
2025-10-31T05:20:46.0490144Z Get:43 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted amd64 c-n-f Metadata [500 B]
2025-10-31T05:20:46.0499900Z Get:44 http://azure.archive.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [27.4 kB]
2025-10-31T05:20:46.0510842Z Get:45 http://azure.archive.ubuntu.com/ubuntu noble-security/multiverse Translation-en [5708 B]
2025-10-31T05:20:46.0519794Z Get:46 http://azure.archive.ubuntu.com/ubuntu noble-security/multiverse amd64 Components [208 B]
2025-10-31T05:20:46.0528470Z Get:47 http://azure.archive.ubuntu.com/ubuntu noble-security/multiverse amd64 c-n-f Metadata [384 B]
2025-10-31T05:20:54.6186416Z Fetched 12.7 MB in 1s (8548 kB/s)
2025-10-31T05:20:55.3760318Z Reading package lists...
2025-10-31T05:20:55.4079743Z Reading package lists...
2025-10-31T05:20:55.5960711Z Building dependency tree...
2025-10-31T05:20:55.5968034Z Reading state information...
2025-10-31T05:20:55.7801132Z fakeroot is already the newest version (1.33-1).
2025-10-31T05:20:55.7802861Z git is already the newest version (1:2.51.0-0ppa2~ubuntu24.04.1).
2025-10-31T05:20:55.7804137Z git set to manually installed.
2025-10-31T05:20:55.7805273Z zip is already the newest version (3.0-13ubuntu0.2).
2025-10-31T05:20:55.7806318Z python3-pip is already the newest version (24.0+dfsg-1ubuntu1.3).
2025-10-31T05:20:55.7807156Z The following additional packages will be installed:
2025-10-31T05:20:55.7808718Z bzip2-doc cmake-data comerr-dev libacl1-dev libassuan-dev libattr1-dev
2025-10-31T05:20:55.7810341Z libbz2-dev libext2fs-dev libgpg-error-dev libjsoncpp25 liblzma-dev librhash0
2025-10-31T05:20:55.7811656Z libssl3t64 nettle-dev openssl
2025-10-31T05:20:55.7815069Z Suggested packages:
2025-10-31T05:20:55.7816222Z cmake-doc cmake-format elpa-cmake-mode ninja-build doc-base libcurl4-doc
2025-10-31T05:20:55.7817673Z libidn-dev libkrb5-dev libldap2-dev librtmp-dev libssh2-1-dev liblzma-doc
2025-10-31T05:20:55.7818591Z libssl-doc
2025-10-31T05:20:55.8325938Z The following NEW packages will be installed:
2025-10-31T05:20:55.8327664Z build-essential bzip2-doc cmake cmake-data comerr-dev libacl1-dev
2025-10-31T05:20:55.8329172Z libarchive-dev libarchive-tools libassuan-dev libattr1-dev libbz2-dev
2025-10-31T05:20:55.8330653Z libcurl4-openssl-dev libext2fs-dev libgpg-error-dev libgpgme-dev
2025-10-31T05:20:55.8337039Z libjsoncpp25 liblzma-dev librhash0 nettle-dev
2025-10-31T05:20:55.8345307Z The following packages will be upgraded:
2025-10-31T05:20:55.8348118Z libssl-dev libssl3t64 openssl
2025-10-31T05:20:55.8521523Z 3 upgraded, 19 newly installed, 0 to remove and 40 not upgraded.
2025-10-31T05:20:55.8522647Z Need to get 22.9 MB of archives.
2025-10-31T05:20:55.8523325Z After this operation, 61.7 MB of additional disk space will be used.
2025-10-31T05:20:55.8524066Z Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [144 B]
2025-10-31T05:20:55.9900578Z Get:2 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libssl-dev amd64 3.0.13-0ubuntu3.6 [2408 kB]
2025-10-31T05:20:56.5181208Z Get:3 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libssl3t64 amd64 3.0.13-0ubuntu3.6 [1940 kB]
2025-10-31T05:20:56.6150117Z Get:4 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 openssl amd64 3.0.13-0ubuntu3.6 [1003 kB]
2025-10-31T05:20:56.7081217Z Get:5 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 build-essential amd64 12.10ubuntu1 [4928 B]
2025-10-31T05:20:56.7718353Z Get:6 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 bzip2-doc all 1.0.8-5.1build0.1 [499 kB]
2025-10-31T05:20:56.8429413Z Get:7 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 libjsoncpp25 amd64 1.9.5-6build1 [82.8 kB]
2025-10-31T05:20:56.9091703Z Get:8 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 librhash0 amd64 1.4.3-3build1 [129 kB]
2025-10-31T05:20:56.9748946Z Get:9 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 cmake-data all 3.28.3-1build7 [2155 kB]
2025-10-31T05:20:57.0714742Z Get:10 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 cmake amd64 3.28.3-1build7 [11.2 MB]
2025-10-31T05:20:57.3371792Z Get:11 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libbz2-dev amd64 1.0.8-5.1build0.1 [33.6 kB]
2025-10-31T05:20:57.3978093Z Get:12 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 liblzma-dev amd64 5.6.1+really5.4.5-1ubuntu0.2 [176 kB]
2025-10-31T05:20:57.4652649Z Get:13 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libattr1-dev amd64 1:2.5.2-1build1.1 [23.1 kB]
2025-10-31T05:20:57.5302721Z Get:14 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libacl1-dev amd64 2.3.2-1build1.1 [78.5 kB]
2025-10-31T05:20:57.5928524Z Get:15 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 comerr-dev amd64 2.1-1.47.0-2.4~exp1ubuntu4.1 [43.8 kB]
2025-10-31T05:20:57.6690215Z Get:16 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libext2fs-dev amd64 1.47.0-2.4~exp1ubuntu4.1 [300 kB]
2025-10-31T05:20:57.8034810Z Get:17 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 nettle-dev amd64 3.9.1-2.2build1.1 [1154 kB]
2025-10-31T05:20:57.8943060Z Get:18 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libarchive-dev amd64 3.7.2-2ubuntu0.5 [589 kB]
2025-10-31T05:20:57.9801824Z Get:19 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 libarchive-tools amd64 3.7.2-2ubuntu0.5 [72.4 kB]
2025-10-31T05:20:58.0462735Z Get:20 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libgpg-error-dev amd64 1.47-3build2.1 [128 kB]
2025-10-31T05:20:58.1150482Z Get:21 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 libassuan-dev amd64 2.5.6-1build1 [95.0 kB]
2025-10-31T05:20:58.1839686Z Get:22 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libcurl4-openssl-dev amd64 8.5.0-2ubuntu10.6 [446 kB]
2025-10-31T05:20:58.2564598Z Get:23 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 libgpgme-dev amd64 1.18.0-4.1ubuntu4 [345 kB]
2025-10-31T05:20:58.5347596Z Fetched 22.9 MB in 2s (9454 kB/s)
2025-10-31T05:20:58.5834181Z (Reading database ...
2025-10-31T05:20:58.5835457Z (Reading database ... 5%
2025-10-31T05:20:58.5836328Z (Reading database ... 10%
2025-10-31T05:20:58.5836999Z (Reading database ... 15%
2025-10-31T05:20:58.5837534Z (Reading database ... 20%
2025-10-31T05:20:58.5838090Z (Reading database ... 25%
2025-10-31T05:20:58.5838623Z (Reading database ... 30%
2025-10-31T05:20:58.5839228Z (Reading database ... 35%
2025-10-31T05:20:58.5839824Z (Reading database ... 40%
2025-10-31T05:20:58.5840357Z (Reading database ... 45%
2025-10-31T05:20:58.5840895Z (Reading database ... 50%
2025-10-31T05:20:58.6247538Z (Reading database ... 55%
2025-10-31T05:20:58.8657024Z (Reading database ... 60%
2025-10-31T05:20:59.0823533Z (Reading database ... 65%
2025-10-31T05:20:59.2713400Z (Reading database ... 70%
2025-10-31T05:20:59.4643153Z (Reading database ... 75%
2025-10-31T05:20:59.6711396Z (Reading database ... 80%
2025-10-31T05:20:59.9214088Z (Reading database ... 85%
2025-10-31T05:21:00.1630152Z (Reading database ... 90%
2025-10-31T05:21:00.4178830Z (Reading database ... 95%
2025-10-31T05:21:00.4179829Z (Reading database ... 100%
2025-10-31T05:21:00.4181025Z (Reading database ... 214596 files and directories currently installed.)
2025-10-31T05:21:00.4229834Z Preparing to unpack .../libssl-dev_3.0.13-0ubuntu3.6_amd64.deb ...
2025-10-31T05:21:00.4276187Z Unpacking libssl-dev:amd64 (3.0.13-0ubuntu3.6) over (3.0.13-0ubuntu3.5) ...
2025-10-31T05:21:00.5672940Z Preparing to unpack .../libssl3t64_3.0.13-0ubuntu3.6_amd64.deb ...
2025-10-31T05:21:00.5790518Z Unpacking libssl3t64:amd64 (3.0.13-0ubuntu3.6) over (3.0.13-0ubuntu3.5) ...
2025-10-31T05:21:00.6523467Z Setting up libssl3t64:amd64 (3.0.13-0ubuntu3.6) ...
2025-10-31T05:21:00.6865953Z (Reading database ...
2025-10-31T05:21:00.6866722Z (Reading database ... 5%
2025-10-31T05:21:00.6867310Z (Reading database ... 10%
2025-10-31T05:21:00.6868097Z (Reading database ... 15%
2025-10-31T05:21:00.6868633Z (Reading database ... 20%
2025-10-31T05:21:00.6869244Z (Reading database ... 25%
2025-10-31T05:21:00.6870314Z (Reading database ... 30%
2025-10-31T05:21:00.6870904Z (Reading database ... 35%
2025-10-31T05:21:00.6871435Z (Reading database ... 40%
2025-10-31T05:21:00.6872160Z (Reading database ... 45%
2025-10-31T05:21:00.6872782Z (Reading database ... 50%
2025-10-31T05:21:00.6882268Z (Reading database ... 55%
2025-10-31T05:21:00.7001076Z (Reading database ... 60%
2025-10-31T05:21:00.7025581Z (Reading database ... 65%
2025-10-31T05:21:00.7045091Z (Reading database ... 70%
2025-10-31T05:21:00.7069462Z (Reading database ... 75%
2025-10-31T05:21:00.7139788Z (Reading database ... 80%
2025-10-31T05:21:00.7308614Z (Reading database ... 85%
2025-10-31T05:21:00.7534404Z (Reading database ... 90%
2025-10-31T05:21:00.7616761Z (Reading database ... 95%
2025-10-31T05:21:00.7617569Z (Reading database ... 100%
2025-10-31T05:21:00.7618526Z (Reading database ... 214596 files and directories currently installed.)
2025-10-31T05:21:00.7661249Z Preparing to unpack .../00-openssl_3.0.13-0ubuntu3.6_amd64.deb ...
2025-10-31T05:21:00.7701506Z Unpacking openssl (3.0.13-0ubuntu3.6) over (3.0.13-0ubuntu3.5) ...
2025-10-31T05:21:01.0081208Z Selecting previously unselected package build-essential.
2025-10-31T05:21:01.0219120Z Preparing to unpack .../01-build-essential_12.10ubuntu1_amd64.deb ...
2025-10-31T05:21:01.0229919Z Unpacking build-essential (12.10ubuntu1) ...
2025-10-31T05:21:01.0449474Z Selecting previously unselected package bzip2-doc.
2025-10-31T05:21:01.0585326Z Preparing to unpack .../02-bzip2-doc_1.0.8-5.1build0.1_all.deb ...
2025-10-31T05:21:01.0599548Z Unpacking bzip2-doc (1.0.8-5.1build0.1) ...
2025-10-31T05:21:01.0944772Z Selecting previously unselected package libjsoncpp25:amd64.
2025-10-31T05:21:01.1077912Z Preparing to unpack .../03-libjsoncpp25_1.9.5-6build1_amd64.deb ...
2025-10-31T05:21:01.1088729Z Unpacking libjsoncpp25:amd64 (1.9.5-6build1) ...
2025-10-31T05:21:01.1344041Z Selecting previously unselected package librhash0:amd64.
2025-10-31T05:21:01.1476773Z Preparing to unpack .../04-librhash0_1.4.3-3build1_amd64.deb ...
2025-10-31T05:21:01.1495731Z Unpacking librhash0:amd64 (1.4.3-3build1) ...
2025-10-31T05:21:01.1751075Z Selecting previously unselected package cmake-data.
2025-10-31T05:21:01.1886789Z Preparing to unpack .../05-cmake-data_3.28.3-1build7_all.deb ...
2025-10-31T05:21:01.1959942Z Unpacking cmake-data (3.28.3-1build7) ...
2025-10-31T05:21:01.7683268Z Selecting previously unselected package cmake.
2025-10-31T05:21:01.7869892Z Preparing to unpack .../06-cmake_3.28.3-1build7_amd64.deb ...
2025-10-31T05:21:01.7880018Z Unpacking cmake (3.28.3-1build7) ...
2025-10-31T05:21:01.9570990Z Selecting previously unselected package libbz2-dev:amd64.
2025-10-31T05:21:01.9706418Z Preparing to unpack .../07-libbz2-dev_1.0.8-5.1build0.1_amd64.deb ...
2025-10-31T05:21:01.9718594Z Unpacking libbz2-dev:amd64 (1.0.8-5.1build0.1) ...
2025-10-31T05:21:01.9937020Z Selecting previously unselected package liblzma-dev:amd64.
2025-10-31T05:21:02.0071802Z Preparing to unpack .../08-liblzma-dev_5.6.1+really5.4.5-1ubuntu0.2_amd64.deb ...
2025-10-31T05:21:02.0081634Z Unpacking liblzma-dev:amd64 (5.6.1+really5.4.5-1ubuntu0.2) ...
2025-10-31T05:21:02.0373445Z Selecting previously unselected package libattr1-dev:amd64.
2025-10-31T05:21:02.0511577Z Preparing to unpack .../09-libattr1-dev_1%3a2.5.2-1build1.1_amd64.deb ...
2025-10-31T05:21:02.0530312Z Unpacking libattr1-dev:amd64 (1:2.5.2-1build1.1) ...
2025-10-31T05:21:02.1270222Z Selecting previously unselected package libacl1-dev:amd64.
2025-10-31T05:21:02.1404644Z Preparing to unpack .../10-libacl1-dev_2.3.2-1build1.1_amd64.deb ...
2025-10-31T05:21:02.1414525Z Unpacking libacl1-dev:amd64 (2.3.2-1build1.1) ...
2025-10-31T05:21:02.1854881Z Selecting previously unselected package comerr-dev:amd64.
2025-10-31T05:21:02.1992306Z Preparing to unpack .../11-comerr-dev_2.1-1.47.0-2.4~exp1ubuntu4.1_amd64.deb ...
2025-10-31T05:21:02.2027232Z Unpacking comerr-dev:amd64 (2.1-1.47.0-2.4~exp1ubuntu4.1) ...
2025-10-31T05:21:02.2269448Z Selecting previously unselected package libext2fs-dev.
2025-10-31T05:21:02.2403549Z Preparing to unpack .../12-libext2fs-dev_1.47.0-2.4~exp1ubuntu4.1_amd64.deb ...
2025-10-31T05:21:02.2415226Z Unpacking libext2fs-dev (1.47.0-2.4~exp1ubuntu4.1) ...
2025-10-31T05:21:02.2696225Z Selecting previously unselected package nettle-dev:amd64.
2025-10-31T05:21:02.2835637Z Preparing to unpack .../13-nettle-dev_3.9.1-2.2build1.1_amd64.deb ...
2025-10-31T05:21:02.2845858Z Unpacking nettle-dev:amd64 (3.9.1-2.2build1.1) ...
2025-10-31T05:21:02.3299671Z Selecting previously unselected package libarchive-dev:amd64.
2025-10-31T05:21:02.3436461Z Preparing to unpack .../14-libarchive-dev_3.7.2-2ubuntu0.5_amd64.deb ...
2025-10-31T05:21:02.3447453Z Unpacking libarchive-dev:amd64 (3.7.2-2ubuntu0.5) ...
2025-10-31T05:21:02.3807713Z Selecting previously unselected package libarchive-tools.
2025-10-31T05:21:02.3945445Z Preparing to unpack .../15-libarchive-tools_3.7.2-2ubuntu0.5_amd64.deb ...
2025-10-31T05:21:02.3955728Z Unpacking libarchive-tools (3.7.2-2ubuntu0.5) ...
2025-10-31T05:21:02.4266248Z Selecting previously unselected package libgpg-error-dev.
2025-10-31T05:21:02.4402240Z Preparing to unpack .../16-libgpg-error-dev_1.47-3build2.1_amd64.deb ...
2025-10-31T05:21:02.4414319Z Unpacking libgpg-error-dev (1.47-3build2.1) ...
2025-10-31T05:21:02.4670988Z Selecting previously unselected package libassuan-dev.
2025-10-31T05:21:02.4803727Z Preparing to unpack .../17-libassuan-dev_2.5.6-1build1_amd64.deb ...
2025-10-31T05:21:02.4816792Z Unpacking libassuan-dev (2.5.6-1build1) ...
2025-10-31T05:21:02.5058319Z Selecting previously unselected package libcurl4-openssl-dev:amd64.
2025-10-31T05:21:02.5194666Z Preparing to unpack .../18-libcurl4-openssl-dev_8.5.0-2ubuntu10.6_amd64.deb ...
2025-10-31T05:21:02.5208469Z Unpacking libcurl4-openssl-dev:amd64 (8.5.0-2ubuntu10.6) ...
2025-10-31T05:21:02.5537361Z Selecting previously unselected package libgpgme-dev.
2025-10-31T05:21:02.5673413Z Preparing to unpack .../19-libgpgme-dev_1.18.0-4.1ubuntu4_amd64.deb ...
2025-10-31T05:21:02.5685710Z Unpacking libgpgme-dev (1.18.0-4.1ubuntu4) ...
2025-10-31T05:21:02.6169454Z Setting up bzip2-doc (1.0.8-5.1build0.1) ...
2025-10-31T05:21:02.6201639Z Setting up libarchive-tools (3.7.2-2ubuntu0.5) ...
2025-10-31T05:21:02.6228145Z Setting up libattr1-dev:amd64 (1:2.5.2-1build1.1) ...
2025-10-31T05:21:02.6256793Z Setting up nettle-dev:amd64 (3.9.1-2.2build1.1) ...
2025-10-31T05:21:02.6301475Z Setting up libgpg-error-dev (1.47-3build2.1) ...
2025-10-31T05:21:02.6335852Z Setting up libcurl4-openssl-dev:amd64 (8.5.0-2ubuntu10.6) ...
2025-10-31T05:21:02.6366730Z Setting up comerr-dev:amd64 (2.1-1.47.0-2.4~exp1ubuntu4.1) ...
2025-10-31T05:21:02.6406192Z Setting up libssl-dev:amd64 (3.0.13-0ubuntu3.6) ...
2025-10-31T05:21:02.6435055Z Setting up libjsoncpp25:amd64 (1.9.5-6build1) ...
2025-10-31T05:21:02.6475720Z Setting up libassuan-dev (2.5.6-1build1) ...
2025-10-31T05:21:02.6505502Z Setting up libgpgme-dev (1.18.0-4.1ubuntu4) ...
2025-10-31T05:21:02.6536156Z Setting up liblzma-dev:amd64 (5.6.1+really5.4.5-1ubuntu0.2) ...
2025-10-31T05:21:02.6569590Z Setting up librhash0:amd64 (1.4.3-3build1) ...
2025-10-31T05:21:02.6598923Z Setting up build-essential (12.10ubuntu1) ...
2025-10-31T05:21:02.6633868Z Setting up cmake-data (3.28.3-1build7) ...
2025-10-31T05:21:02.6712352Z Setting up libext2fs-dev (1.47.0-2.4~exp1ubuntu4.1) ...
2025-10-31T05:21:02.6742366Z Setting up openssl (3.0.13-0ubuntu3.6) ...
2025-10-31T05:21:02.6795014Z Setting up libacl1-dev:amd64 (2.3.2-1build1.1) ...
2025-10-31T05:21:02.6820716Z Setting up libbz2-dev:amd64 (1.0.8-5.1build0.1) ...
2025-10-31T05:21:02.6849702Z Setting up libarchive-dev:amd64 (3.7.2-2ubuntu0.5) ...
2025-10-31T05:21:02.6879190Z Setting up cmake (3.28.3-1build7) ...
2025-10-31T05:21:02.6913168Z Processing triggers for libc-bin (2.39-0ubuntu8.6) ...
2025-10-31T05:21:02.7767414Z Processing triggers for man-db (2.12.0-4build2) ...
2025-10-31T05:21:17.8897883Z Processing triggers for install-info (7.1-3build2) ...
2025-10-31T05:21:18.7608580Z
2025-10-31T05:21:18.7609386Z Running kernel seems to be up-to-date.
2025-10-31T05:21:18.7609927Z
2025-10-31T05:21:18.8041266Z Restarting services...
2025-10-31T05:21:18.8041787Z /etc/needrestart/restart.d/systemd-manager
2025-10-31T05:21:19.1284944Z systemctl restart packagekit.service php8.3-fpm.service systemd-journald.service systemd-networkd.service systemd-resolved.service systemd-udevd.service udisks2.service walinuxagent.service
2025-10-31T05:21:19.3290626Z
2025-10-31T05:21:19.3293071Z Service restarts being deferred:
2025-10-31T05:21:19.3294320Z systemctl restart hosted-compute-agent.service
2025-10-31T05:21:19.3295597Z systemctl restart systemd-logind.service
2025-10-31T05:21:19.3296996Z
2025-10-31T05:21:19.3297363Z No containers need to be restarted.
2025-10-31T05:21:19.3297840Z
2025-10-31T05:21:19.3298194Z User sessions running outdated binaries:
2025-10-31T05:21:19.3299052Z runner @ user manager service: systemd[1014]
2025-10-31T05:21:19.3438633Z
2025-10-31T05:21:19.3439354Z No VM guests are running outdated hypervisor (qemu) binaries on this host.
2025-10-31T05:21:22.7722379Z Collecting meson
2025-10-31T05:21:22.8053714Z Downloading meson-1.9.1-py3-none-any.whl.metadata (1.8 kB)
2025-10-31T05:21:22.8177110Z Downloading meson-1.9.1-py3-none-any.whl (1.0 MB)
2025-10-31T05:21:22.8460444Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 39.6 MB/s eta 0:00:00
2025-10-31T05:21:23.1410779Z Installing collected packages: meson
2025-10-31T05:21:23.8599161Z Successfully installed meson-1.9.1
2025-10-31T05:21:23.8602499Z WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
2025-10-31T05:21:24.3698094Z Collecting ninja
2025-10-31T05:21:24.3999703Z Downloading ninja-1.13.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (5.1 kB)
2025-10-31T05:21:24.4107275Z Downloading ninja-1.13.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (180 kB)
2025-10-31T05:21:24.4290244Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 180.7/180.7 kB 10.8 MB/s eta 0:00:00
2025-10-31T05:21:24.6646238Z Installing collected packages: ninja
2025-10-31T05:21:24.6757232Z Successfully installed ninja-1.13.0
2025-10-31T05:21:24.6760679Z WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
2025-10-31T05:21:24.7395822Z ##[group]Run sudo git clone --depth 1 https://gitlab.manjaro.org/packages/core/pacman.git
2025-10-31T05:21:24.7396696Z ^[[36;1msudo git clone --depth 1 https://gitlab.manjaro.org/packages/core/pacman.git^[[0m
2025-10-31T05:21:24.7397338Z ^[[36;1mpushd pacman^[[0m
2025-10-31T05:21:24.7397964Z ^[[36;1msudo wget https://sources.archlinux.org/other/pacman/pacman-${PACMAN_VERSION}.tar.xz^[[0m
2025-10-31T05:21:24.7398671Z ^[[36;1msudo tar -xvf pacman-${PACMAN_VERSION}.tar.xz^[[0m
2025-10-31T05:21:24.7399204Z ^[[36;1mpushd pacman-${PACMAN_VERSION}^[[0m
2025-10-31T05:21:24.7399736Z ^[[36;1m## sudo patch -p1 -i ../pacman-sync-first-option.patch^[[0m
2025-10-31T05:21:24.7400280Z ^[[36;1msudo meson --prefix=/usr \^[[0m
2025-10-31T05:21:24.7400747Z ^[[36;1m --buildtype=plain \^[[0m
2025-10-31T05:21:24.7401396Z ^[[36;1m -Ddoc=disabled \^[[0m
2025-10-31T05:21:24.7401855Z ^[[36;1m -Ddoxygen=enabled \^[[0m
2025-10-31T05:21:24.7402661Z ^[[36;1m -Dscriptlet-shell=/usr/bin/bash \^[[0m
2025-10-31T05:21:24.7403194Z ^[[36;1m -Dldconfig=/usr/bin/ldconfig \^[[0m
2025-10-31T05:21:24.7403681Z ^[[36;1m build^[[0m
2025-10-31T05:21:24.7404103Z ^[[36;1msudo meson compile -C build^[[0m
2025-10-31T05:21:24.7404551Z ^[[36;1msudo meson install -C build^[[0m
2025-10-31T05:21:24.7404975Z ^[[36;1mpopd^[[0m
2025-10-31T05:21:24.7405413Z ^[[36;1msudo install -m644 pacman.conf /etc/pacman.conf^[[0m
2025-10-31T05:21:24.7405952Z ^[[36;1msudo install -m644 makepkg.conf /etc/^[[0m
2025-10-31T05:21:24.7406453Z ^[[36;1msudo mkdir -p /etc/pacman.d^[[0m
2025-10-31T05:21:24.7407367Z ^[[36;1mecho "Server = ***/unstable/\$repo/\$arch" | sudo tee /etc/pacman.d/mirrorlist^[[0m
2025-10-31T05:21:24.7407986Z ^[[36;1m# install updpkgsums^[[0m
2025-10-31T05:21:24.7408660Z ^[[36;1msudo wget https://gitlab.archlinux.org/pacman/pacman-contrib/-/raw/master/src/updpkgsums.sh.in^[[0m
2025-10-31T05:21:24.7409593Z ^[[36;1msudo wget https://gitlab.archlinux.org/pacman/pacman-contrib/-/raw/master/configure.ac^[[0m
2025-10-31T05:21:24.7410363Z ^[[36;1mcontrib_ver=$(grep AC_INIT configure.ac | cut -d[ -f3 | cut -d] -f1)^[[0m
2025-10-31T05:21:24.7411170Z ^[[36;1msudo sed -i -e "s/@PACKAGE_VERSION@/${contrib_ver}/; s/@libmakepkgdir@/\/usr\/share\/makepkg/" updpkgsums.sh.in^[[0m
2025-10-31T05:21:24.7411934Z ^[[36;1msudo install -m755 updpkgsums.sh.in /usr/bin/updpkgsums^[[0m
2025-10-31T05:21:24.7412648Z ^[[36;1mpopd^[[0m
2025-10-31T05:21:24.7413074Z ^[[36;1msudo rm -rf pacman-${PACMAN_VERSION}^[[0m
2025-10-31T05:21:24.7446564Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-31T05:21:24.7447095Z env:
2025-10-31T05:21:24.7447480Z PACMAN_VERSION: 6.0.2
2025-10-31T05:21:24.7447889Z ##[endgroup]
2025-10-31T05:21:24.7635385Z Cloning into 'pacman'...
2025-10-31T05:21:26.5861922Z ~/work/linux510/linux510/pacman ~/work/linux510/linux510
2025-10-31T05:21:26.6140791Z --2025-10-31 05:21:26-- https://sources.archlinux.org/other/pacman/pacman-6.0.2.tar.xz
2025-10-31T05:21:26.7941032Z Resolving sources.archlinux.org (sources.archlinux.org)... 168.119.141.106, 2a01:4f8:251:598::
2025-10-31T05:21:26.9469201Z Connecting to sources.archlinux.org (sources.archlinux.org)|168.119.141.106|:443... connected.
2025-10-31T05:21:27.5660830Z HTTP request sent, awaiting response... 200 OK
2025-10-31T05:21:27.5662316Z Length: 880868 (860K) [application/x-xz]
2025-10-31T05:21:27.5663634Z Saving to: ‘pacman-6.0.2.tar.xz’
2025-10-31T05:21:27.5664026Z
2025-10-31T05:21:27.7211141Z 0K .......... .......... .......... .......... .......... 5% 323K 3s
2025-10-31T05:21:27.8740466Z 50K .......... .......... .......... .......... .......... 11% 327K 2s
2025-10-31T05:21:27.8763812Z 100K .......... .......... .......... .......... .......... 17% 19.8M 1s
2025-10-31T05:21:27.9148676Z 150K .......... .......... .......... .......... .......... 23% 1.27M 1s
2025-10-31T05:21:28.0289833Z 200K .......... .......... .......... .......... .......... 29% 438K 1s
2025-10-31T05:21:28.0314171Z 250K .......... .......... .......... .......... .......... 34% 19.4M 1s
2025-10-31T05:21:28.0337717Z 300K .......... .......... .......... .......... .......... 40% 20.7M 1s
2025-10-31T05:21:28.0693632Z 350K .......... .......... .......... .......... .......... 46% 1.38M 1s
2025-10-31T05:21:28.0708911Z 400K .......... .......... .......... .......... .......... 52% 30.1M 0s
2025-10-31T05:21:28.1834037Z 450K .......... .......... .......... .......... .......... 58% 445K 0s
2025-10-31T05:21:28.1858196Z 500K .......... .......... .......... .......... .......... 63% 19.6M 0s
2025-10-31T05:21:28.1873113Z 550K .......... .......... .......... .......... .......... 69% 32.4M 0s
2025-10-31T05:21:28.1890764Z 600K .......... .......... .......... .......... .......... 75% 27.3M 0s
2025-10-31T05:21:28.1906764Z 650K .......... .......... .......... .......... .......... 81% 30.7M 0s
2025-10-31T05:21:28.1923785Z 700K .......... .......... .......... .......... .......... 87% 28.9M 0s
2025-10-31T05:21:28.1944301Z 750K .......... .......... .......... .......... .......... 92% 23.6M 0s
2025-10-31T05:21:28.2269830Z 800K .......... .......... .......... .......... .......... 98% 1.50M 0s
2025-10-31T05:21:28.2270926Z 850K .......... 100% 19.0T=0.7s
2025-10-31T05:21:28.2271608Z
2025-10-31T05:21:28.2272856Z 2025-10-31 05:21:28 (1.27 MB/s) - ‘pacman-6.0.2.tar.xz’ saved [880868/880868]
2025-10-31T05:21:28.2273638Z
2025-10-31T05:21:28.2506474Z pacman-6.0.2/
2025-10-31T05:21:28.2507180Z pacman-6.0.2/.editorconfig
2025-10-31T05:21:28.2507897Z pacman-6.0.2/.gitattributes
2025-10-31T05:21:28.2508571Z pacman-6.0.2/.gitignore
2025-10-31T05:21:28.2509271Z pacman-6.0.2/.gitlab-ci.yml
2025-10-31T05:21:28.2512656Z pacman-6.0.2/.mailmap
2025-10-31T05:21:28.2513364Z pacman-6.0.2/.tx/
2025-10-31T05:21:28.2514062Z pacman-6.0.2/.tx/config
2025-10-31T05:21:28.2514750Z pacman-6.0.2/AUTHORS
2025-10-31T05:21:28.2515417Z pacman-6.0.2/COPYING
2025-10-31T05:21:28.2515964Z pacman-6.0.2/HACKING
2025-10-31T05:21:28.2516379Z pacman-6.0.2/NEWS
2025-10-31T05:21:28.2520912Z pacman-6.0.2/README
2025-10-31T05:21:28.2525574Z pacman-6.0.2/RELEASE
2025-10-31T05:21:28.2526261Z pacman-6.0.2/TRANSLATORS
2025-10-31T05:21:28.2533265Z pacman-6.0.2/build-aux/
2025-10-31T05:21:28.2533981Z pacman-6.0.2/build-aux/.gitignore
2025-10-31T05:21:28.2534738Z pacman-6.0.2/build-aux/cat-test-file
2025-10-31T05:21:28.2535530Z pacman-6.0.2/build-aux/edit-script.sh.in
2025-10-31T05:21:28.2536362Z pacman-6.0.2/build-aux/meson-make-symlink.sh
2025-10-31T05:21:28.2537236Z pacman-6.0.2/build-aux/print-failed-test-output
2025-10-31T05:21:28.2538110Z pacman-6.0.2/build-aux/script-wrapper.sh.in
2025-10-31T05:21:28.2538938Z pacman-6.0.2/build-aux/update-copyright
2025-10-31T05:21:28.2539726Z pacman-6.0.2/build-aux/update-po
2025-10-31T05:21:28.2540454Z pacman-6.0.2/doc/
2025-10-31T05:21:28.2541134Z pacman-6.0.2/doc/.gitignore
2025-10-31T05:21:28.2541864Z pacman-6.0.2/doc/BUILDINFO.5.asciidoc
2025-10-31T05:21:28.2542921Z pacman-6.0.2/doc/Doxyfile.in
2025-10-31T05:21:28.2544035Z pacman-6.0.2/doc/PKGBUILD-example.txt
2025-10-31T05:21:28.2544913Z pacman-6.0.2/doc/PKGBUILD.5.asciidoc
2025-10-31T05:21:28.2545759Z pacman-6.0.2/doc/alpm-hooks.5.asciidoc
2025-10-31T05:21:28.2546564Z pacman-6.0.2/doc/asciidoc-override.css
2025-10-31T05:21:28.2547072Z pacman-6.0.2/doc/asciidoc.conf
2025-10-31T05:21:28.2547504Z pacman-6.0.2/doc/footer.asciidoc
2025-10-31T05:21:28.2547942Z pacman-6.0.2/doc/index.asciidoc
2025-10-31T05:21:28.2548413Z pacman-6.0.2/doc/makepkg-template.1.asciidoc
2025-10-31T05:21:28.2549226Z pacman-6.0.2/doc/makepkg.8.asciidoc
2025-10-31T05:21:28.2549892Z pacman-6.0.2/doc/makepkg.conf.5.asciidoc
2025-10-31T05:21:28.2550355Z pacman-6.0.2/doc/meson.build
2025-10-31T05:21:28.2550791Z pacman-6.0.2/doc/pacman-conf.8.asciidoc
2025-10-31T05:21:28.2551602Z pacman-6.0.2/doc/pacman-key.8.asciidoc
2025-10-31T05:21:28.2552978Z pacman-6.0.2/doc/pacman.8.asciidoc
2025-10-31T05:21:28.2554227Z pacman-6.0.2/doc/pacman.conf.5.asciidoc
2025-10-31T05:21:28.2606386Z pacman-6.0.2/doc/repo-add.8.asciidoc
2025-10-31T05:21:28.2607246Z pacman-6.0.2/doc/submitting-patches.asciidoc
2025-10-31T05:21:28.2608094Z pacman-6.0.2/doc/translation-help.asciidoc
2025-10-31T05:21:28.2608875Z pacman-6.0.2/doc/vercmp.8.asciidoc
2025-10-31T05:21:28.2609621Z pacman-6.0.2/etc/
2025-10-31T05:21:28.2610277Z pacman-6.0.2/etc/.gitignore
2025-10-31T05:21:28.2610979Z pacman-6.0.2/etc/makepkg.conf.in
2025-10-31T05:21:28.2611708Z pacman-6.0.2/etc/pacman.conf.in
2025-10-31T05:21:28.2612571Z pacman-6.0.2/lib/
2025-10-31T05:21:28.2613215Z pacman-6.0.2/lib/libalpm/
2025-10-31T05:21:28.2613926Z pacman-6.0.2/lib/libalpm/.gitignore
2025-10-31T05:21:28.2614759Z pacman-6.0.2/lib/libalpm/add.c
2025-10-31T05:21:28.2615474Z pacman-6.0.2/lib/libalpm/add.h
2025-10-31T05:21:28.2616179Z pacman-6.0.2/lib/libalpm/alpm.c
2025-10-31T05:21:28.2617146Z pacman-6.0.2/lib/libalpm/alpm.h
2025-10-31T05:21:28.2617871Z pacman-6.0.2/lib/libalpm/alpm_list.c
2025-10-31T05:21:28.2618623Z pacman-6.0.2/lib/libalpm/alpm_list.h
2025-10-31T05:21:28.2619372Z pacman-6.0.2/lib/libalpm/backup.c
2025-10-31T05:21:28.2620098Z pacman-6.0.2/lib/libalpm/backup.h
2025-10-31T05:21:28.2620830Z pacman-6.0.2/lib/libalpm/base64.c
2025-10-31T05:21:28.2621554Z pacman-6.0.2/lib/libalpm/base64.h
2025-10-31T05:21:28.2625251Z pacman-6.0.2/lib/libalpm/be_local.c
2025-10-31T05:21:28.2626039Z pacman-6.0.2/lib/libalpm/be_package.c
2025-10-31T05:21:28.2626805Z pacman-6.0.2/lib/libalpm/be_sync.c
2025-10-31T05:21:28.2627546Z pacman-6.0.2/lib/libalpm/conflict.c
2025-10-31T05:21:28.2628301Z pacman-6.0.2/lib/libalpm/conflict.h
2025-10-31T05:21:28.2629032Z pacman-6.0.2/lib/libalpm/db.c
2025-10-31T05:21:28.2629743Z pacman-6.0.2/lib/libalpm/db.h
2025-10-31T05:21:28.2630447Z pacman-6.0.2/lib/libalpm/deps.c
2025-10-31T05:21:28.2631156Z pacman-6.0.2/lib/libalpm/deps.h
2025-10-31T05:21:28.2631877Z pacman-6.0.2/lib/libalpm/diskspace.c
2025-10-31T05:21:28.2632828Z pacman-6.0.2/lib/libalpm/diskspace.h
2025-10-31T05:21:28.2633568Z pacman-6.0.2/lib/libalpm/dload.c
2025-10-31T05:21:28.2634287Z pacman-6.0.2/lib/libalpm/dload.h
2025-10-31T05:21:28.2635004Z pacman-6.0.2/lib/libalpm/error.c
2025-10-31T05:21:28.2635723Z pacman-6.0.2/lib/libalpm/filelist.c
2025-10-31T05:21:28.2636452Z pacman-6.0.2/lib/libalpm/filelist.h
2025-10-31T05:21:28.2637180Z pacman-6.0.2/lib/libalpm/graph.c
2025-10-31T05:21:28.2637891Z pacman-6.0.2/lib/libalpm/graph.h
2025-10-31T05:21:28.2638603Z pacman-6.0.2/lib/libalpm/group.c
2025-10-31T05:21:28.2639312Z pacman-6.0.2/lib/libalpm/group.h
2025-10-31T05:21:28.2640030Z pacman-6.0.2/lib/libalpm/handle.c
2025-10-31T05:21:28.2640747Z pacman-6.0.2/lib/libalpm/handle.h
2025-10-31T05:21:28.2641469Z pacman-6.0.2/lib/libalpm/hook.c
2025-10-31T05:21:28.2642505Z pacman-6.0.2/lib/libalpm/hook.h
2025-10-31T05:21:28.2643265Z pacman-6.0.2/lib/libalpm/libalpm.pc.in
2025-10-31T05:21:28.2644064Z pacman-6.0.2/lib/libalpm/libarchive-compat.h
2025-10-31T05:21:28.2644870Z pacman-6.0.2/lib/libalpm/log.c
2025-10-31T05:21:28.2645587Z pacman-6.0.2/lib/libalpm/log.h
2025-10-31T05:21:28.2646298Z pacman-6.0.2/lib/libalpm/meson.build
2025-10-31T05:21:28.2647302Z pacman-6.0.2/lib/libalpm/package.c
2025-10-31T05:21:28.2648094Z pacman-6.0.2/lib/libalpm/package.h
2025-10-31T05:21:28.2648865Z pacman-6.0.2/lib/libalpm/pkghash.c
2025-10-31T05:21:28.2649646Z pacman-6.0.2/lib/libalpm/pkghash.h
2025-10-31T05:21:28.2650426Z pacman-6.0.2/lib/libalpm/po/
2025-10-31T05:21:28.2651201Z pacman-6.0.2/lib/libalpm/po/.gitignore
2025-10-31T05:21:28.2652156Z pacman-6.0.2/lib/libalpm/po/LINGUAS
2025-10-31T05:21:28.2652948Z pacman-6.0.2/lib/libalpm/po/Makevars
2025-10-31T05:21:28.2653746Z pacman-6.0.2/lib/libalpm/po/POTFILES.in
2025-10-31T05:21:28.2654559Z pacman-6.0.2/lib/libalpm/po/ar.po
2025-10-31T05:21:28.2655342Z pacman-6.0.2/lib/libalpm/po/ast.po
2025-10-31T05:21:28.2656120Z pacman-6.0.2/lib/libalpm/po/az_AZ.po
2025-10-31T05:21:28.2656918Z pacman-6.0.2/lib/libalpm/po/bg.po
2025-10-31T05:21:28.2657700Z pacman-6.0.2/lib/libalpm/po/br.po
2025-10-31T05:21:28.2658467Z pacman-6.0.2/lib/libalpm/po/ca.po
2025-10-31T05:21:28.2659241Z pacman-6.0.2/lib/libalpm/po/cs.po
2025-10-31T05:21:28.2660016Z pacman-6.0.2/lib/libalpm/po/da.po
2025-10-31T05:21:28.2660780Z pacman-6.0.2/lib/libalpm/po/de.po
2025-10-31T05:21:28.2661550Z pacman-6.0.2/lib/libalpm/po/el.po
2025-10-31T05:21:28.2662474Z pacman-6.0.2/lib/libalpm/po/en_GB.po
2025-10-31T05:21:28.2663267Z pacman-6.0.2/lib/libalpm/po/eo.po
2025-10-31T05:21:28.2664035Z pacman-6.0.2/lib/libalpm/po/es.po
2025-10-31T05:21:28.2664816Z pacman-6.0.2/lib/libalpm/po/es_419.po
2025-10-31T05:21:28.2665602Z pacman-6.0.2/lib/libalpm/po/eu.po
2025-10-31T05:21:28.2666374Z pacman-6.0.2/lib/libalpm/po/eu_ES.po
2025-10-31T05:21:28.2667172Z pacman-6.0.2/lib/libalpm/po/fi.po
2025-10-31T05:21:28.2667943Z pacman-6.0.2/lib/libalpm/po/fr.po
2025-10-31T05:21:28.2668709Z pacman-6.0.2/lib/libalpm/po/gl.po
2025-10-31T05:21:28.2669472Z pacman-6.0.2/lib/libalpm/po/hi.po
2025-10-31T05:21:28.2670453Z pacman-6.0.2/lib/libalpm/po/hr.po
2025-10-31T05:21:28.2671247Z pacman-6.0.2/lib/libalpm/po/hu.po
2025-10-31T05:21:28.2672228Z pacman-6.0.2/lib/libalpm/po/id.po
2025-10-31T05:21:28.2673006Z pacman-6.0.2/lib/libalpm/po/it.po
2025-10-31T05:21:28.2673764Z pacman-6.0.2/lib/libalpm/po/ja.po
2025-10-31T05:21:28.2674523Z pacman-6.0.2/lib/libalpm/po/kk.po
2025-10-31T05:21:28.2675294Z pacman-6.0.2/lib/libalpm/po/ko.po
2025-10-31T05:21:28.2676074Z pacman-6.0.2/lib/libalpm/po/libalpm.pot
2025-10-31T05:21:28.2676887Z pacman-6.0.2/lib/libalpm/po/lt.po
2025-10-31T05:21:28.2677669Z pacman-6.0.2/lib/libalpm/po/meson.build
2025-10-31T05:21:28.2678478Z pacman-6.0.2/lib/libalpm/po/nb.po
2025-10-31T05:21:28.2679241Z pacman-6.0.2/lib/libalpm/po/nl.po
2025-10-31T05:21:28.2680015Z pacman-6.0.2/lib/libalpm/po/pl.po
2025-10-31T05:21:28.2680797Z pacman-6.0.2/lib/libalpm/po/pt.po
2025-10-31T05:21:28.2681586Z pacman-6.0.2/lib/libalpm/po/pt_BR.po
2025-10-31T05:21:28.2683215Z pacman-6.0.2/lib/libalpm/po/remove-potcdate.sin
2025-10-31T05:21:28.2684126Z pacman-6.0.2/lib/libalpm/po/ro.po
2025-10-31T05:21:28.2685047Z pacman-6.0.2/lib/libalpm/po/ru.po
2025-10-31T05:21:28.2688733Z pacman-6.0.2/lib/libalpm/po/sk.po
2025-10-31T05:21:28.2690488Z pacman-6.0.2/lib/libalpm/po/sl.po
2025-10-31T05:21:28.2692671Z pacman-6.0.2/lib/libalpm/po/sr.po
2025-10-31T05:21:28.2694312Z pacman-6.0.2/lib/libalpm/po/sr@latin.po
2025-10-31T05:21:28.2696263Z pacman-6.0.2/lib/libalpm/po/sv.po
2025-10-31T05:21:28.2698560Z pacman-6.0.2/lib/libalpm/po/tr.po
2025-10-31T05:21:28.2700905Z pacman-6.0.2/lib/libalpm/po/uk.po
2025-10-31T05:21:28.2703967Z pacman-6.0.2/lib/libalpm/po/zh_CN.po
2025-10-31T05:21:28.2705327Z pacman-6.0.2/lib/libalpm/po/zh_TW.po
2025-10-31T05:21:28.2707950Z pacman-6.0.2/lib/libalpm/rawstr.c
2025-10-31T05:21:28.2708760Z pacman-6.0.2/lib/libalpm/remove.c
2025-10-31T05:21:28.2711540Z pacman-6.0.2/lib/libalpm/remove.h
2025-10-31T05:21:28.2712466Z pacman-6.0.2/lib/libalpm/signing.c
2025-10-31T05:21:28.2715630Z pacman-6.0.2/lib/libalpm/signing.h
2025-10-31T05:21:28.2716425Z pacman-6.0.2/lib/libalpm/sync.c
2025-10-31T05:21:28.2719136Z pacman-6.0.2/lib/libalpm/sync.h
2025-10-31T05:21:28.2719897Z pacman-6.0.2/lib/libalpm/trans.c
2025-10-31T05:21:28.2721243Z pacman-6.0.2/lib/libalpm/trans.h
2025-10-31T05:21:28.2722165Z pacman-6.0.2/lib/libalpm/util.c
2025-10-31T05:21:28.2725563Z pacman-6.0.2/lib/libalpm/util.h
2025-10-31T05:21:28.2726329Z pacman-6.0.2/lib/libalpm/version.c
2025-10-31T05:21:28.2728418Z pacman-6.0.2/meson.build
2025-10-31T05:21:28.2729974Z pacman-6.0.2/meson_options.txt
2025-10-31T05:21:28.2730707Z pacman-6.0.2/proto/
2025-10-31T05:21:28.2734156Z pacman-6.0.2/proto/PKGBUILD-split.proto
2025-10-31T05:21:28.2734988Z pacman-6.0.2/proto/PKGBUILD-vcs.proto
2025-10-31T05:21:28.2735794Z pacman-6.0.2/proto/PKGBUILD.proto
2025-10-31T05:21:28.2736567Z pacman-6.0.2/proto/proto.install
2025-10-31T05:21:28.2737310Z pacman-6.0.2/scripts/
2025-10-31T05:21:28.2738030Z pacman-6.0.2/scripts/.gitignore
2025-10-31T05:21:28.2738794Z pacman-6.0.2/scripts/completion/
2025-10-31T05:21:28.2739741Z pacman-6.0.2/scripts/completion/.gitignore
2025-10-31T05:21:28.2740627Z pacman-6.0.2/scripts/completion/bash_completion.in
2025-10-31T05:21:28.2741551Z pacman-6.0.2/scripts/completion/zsh_completion.in
2025-10-31T05:21:28.2742582Z pacman-6.0.2/scripts/libmakepkg/
2025-10-31T05:21:28.2743373Z pacman-6.0.2/scripts/libmakepkg/.gitignore
2025-10-31T05:21:28.2744189Z pacman-6.0.2/scripts/libmakepkg/buildenv/
2025-10-31T05:21:28.2745084Z pacman-6.0.2/scripts/libmakepkg/buildenv/buildflags.sh.in
2025-10-31T05:21:28.2746070Z pacman-6.0.2/scripts/libmakepkg/buildenv/compiler.sh.in
2025-10-31T05:21:28.2747057Z pacman-6.0.2/scripts/libmakepkg/buildenv/debugflags.sh.in
2025-10-31T05:21:28.2748020Z pacman-6.0.2/scripts/libmakepkg/buildenv/lto.sh.in
2025-10-31T05:21:28.2748982Z pacman-6.0.2/scripts/libmakepkg/buildenv/makeflags.sh.in
2025-10-31T05:21:28.2749943Z pacman-6.0.2/scripts/libmakepkg/buildenv/meson.build
2025-10-31T05:21:28.2750852Z pacman-6.0.2/scripts/libmakepkg/buildenv.sh.in
2025-10-31T05:21:28.2751941Z pacman-6.0.2/scripts/libmakepkg/executable/
2025-10-31T05:21:28.2752955Z pacman-6.0.2/scripts/libmakepkg/executable/ccache.sh.in
2025-10-31T05:21:28.2753930Z pacman-6.0.2/scripts/libmakepkg/executable/checksum.sh.in
2025-10-31T05:21:28.2754942Z pacman-6.0.2/scripts/libmakepkg/executable/debugedit.sh.in
2025-10-31T05:21:28.2755943Z pacman-6.0.2/scripts/libmakepkg/executable/distcc.sh.in
2025-10-31T05:21:28.2756920Z pacman-6.0.2/scripts/libmakepkg/executable/fakeroot.sh.in
2025-10-31T05:21:28.2757877Z pacman-6.0.2/scripts/libmakepkg/executable/gpg.sh.in
2025-10-31T05:21:28.2758802Z pacman-6.0.2/scripts/libmakepkg/executable/gzip.sh.in
2025-10-31T05:21:28.2759744Z pacman-6.0.2/scripts/libmakepkg/executable/meson.build
2025-10-31T05:21:28.2760691Z pacman-6.0.2/scripts/libmakepkg/executable/pacman.sh.in
2025-10-31T05:21:28.2761648Z pacman-6.0.2/scripts/libmakepkg/executable/strip.sh.in
2025-10-31T05:21:28.2762736Z pacman-6.0.2/scripts/libmakepkg/executable/sudo.sh.in
2025-10-31T05:21:28.2763690Z pacman-6.0.2/scripts/libmakepkg/executable/vcs.sh.in
2025-10-31T05:21:28.2764615Z pacman-6.0.2/scripts/libmakepkg/executable.sh.in
2025-10-31T05:21:28.2765509Z pacman-6.0.2/scripts/libmakepkg/integrity/
2025-10-31T05:21:28.2766452Z pacman-6.0.2/scripts/libmakepkg/integrity/generate_checksum.sh.in
2025-10-31T05:21:28.2767548Z pacman-6.0.2/scripts/libmakepkg/integrity/generate_signature.sh.in
2025-10-31T05:21:28.2768566Z pacman-6.0.2/scripts/libmakepkg/integrity/meson.build
2025-10-31T05:21:28.2769560Z pacman-6.0.2/scripts/libmakepkg/integrity/verify_checksum.sh.in
2025-10-31T05:21:28.2770619Z pacman-6.0.2/scripts/libmakepkg/integrity/verify_signature.sh.in
2025-10-31T05:21:28.2771612Z pacman-6.0.2/scripts/libmakepkg/integrity.sh.in
2025-10-31T05:21:28.2772631Z pacman-6.0.2/scripts/libmakepkg/lint_config/
2025-10-31T05:21:28.2773513Z pacman-6.0.2/scripts/libmakepkg/lint_config/ext.sh.in
2025-10-31T05:21:28.2774465Z pacman-6.0.2/scripts/libmakepkg/lint_config/meson.build
2025-10-31T05:21:28.2775436Z pacman-6.0.2/scripts/libmakepkg/lint_config/paths.sh.in
2025-10-31T05:21:28.2776466Z pacman-6.0.2/scripts/libmakepkg/lint_config/source_date_epoch.sh.in
2025-10-31T05:21:28.2777679Z pacman-6.0.2/scripts/libmakepkg/lint_config/variable.sh.in
2025-10-31T05:21:28.2778634Z pacman-6.0.2/scripts/libmakepkg/lint_config.sh.in
2025-10-31T05:21:28.2779539Z pacman-6.0.2/scripts/libmakepkg/lint_package/
2025-10-31T05:21:28.2780502Z pacman-6.0.2/scripts/libmakepkg/lint_package/build_references.sh.in
2025-10-31T05:21:28.2781573Z pacman-6.0.2/scripts/libmakepkg/lint_package/dotfiles.sh.in
2025-10-31T05:21:28.2782719Z pacman-6.0.2/scripts/libmakepkg/lint_package/file_names.sh.in
2025-10-31T05:21:28.2783765Z pacman-6.0.2/scripts/libmakepkg/lint_package/meson.build
2025-10-31T05:21:28.2784797Z pacman-6.0.2/scripts/libmakepkg/lint_package/missing_backup.sh.in
2025-10-31T05:21:28.2785795Z pacman-6.0.2/scripts/libmakepkg/lint_package.sh.in
2025-10-31T05:21:28.2786704Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/
2025-10-31T05:21:28.2787631Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/arch.sh.in
2025-10-31T05:21:28.2788648Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/arch_specific.sh.in
2025-10-31T05:21:28.2789700Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/backup.sh.in
2025-10-31T05:21:28.2790333Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/changelog.sh.in
2025-10-31T05:21:28.2790979Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/checkdepends.sh.in
2025-10-31T05:21:28.2791602Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/conflicts.sh.in
2025-10-31T05:21:28.2792421Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/depends.sh.in
2025-10-31T05:21:28.2793023Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/epoch.sh.in
2025-10-31T05:21:28.2793637Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/fullpkgver.sh.in
2025-10-31T05:21:28.2794264Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/install.sh.in
2025-10-31T05:21:28.2794888Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/makedepends.sh.in
2025-10-31T05:21:28.2795858Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/meson.build
2025-10-31T05:21:28.2796898Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/optdepends.sh.in
2025-10-31T05:21:28.2797932Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/options.sh.in
2025-10-31T05:21:28.2799002Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/package_function.sh.in
2025-10-31T05:21:28.2800197Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/package_function_variable.sh.in
2025-10-31T05:21:28.2800879Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkgbase.sh.in
2025-10-31T05:21:28.2801456Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkglist.sh.in
2025-10-31T05:21:28.2802267Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkgname.sh.in
2025-10-31T05:21:28.2803304Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in
2025-10-31T05:21:28.2803902Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkgver.sh.in
2025-10-31T05:21:28.2804504Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/provides.sh.in
2025-10-31T05:21:28.2805122Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/source.sh.in
2025-10-31T05:21:28.2805710Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/util.sh.in
2025-10-31T05:21:28.2806304Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/variable.sh.in
2025-10-31T05:21:28.2806883Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild.sh.in
2025-10-31T05:21:28.2807706Z pacman-6.0.2/scripts/libmakepkg/meson.build
2025-10-31T05:21:28.2808401Z pacman-6.0.2/scripts/libmakepkg/reproducible/
2025-10-31T05:21:28.2808958Z pacman-6.0.2/scripts/libmakepkg/reproducible/meson.build
2025-10-31T05:21:28.2809555Z pacman-6.0.2/scripts/libmakepkg/reproducible/python.sh.in
2025-10-31T05:21:28.2810136Z pacman-6.0.2/scripts/libmakepkg/reproducible.sh.in
2025-10-31T05:21:28.2810669Z pacman-6.0.2/scripts/libmakepkg/source/
2025-10-31T05:21:28.2811162Z pacman-6.0.2/scripts/libmakepkg/source/bzr.sh.in
2025-10-31T05:21:28.2811866Z pacman-6.0.2/scripts/libmakepkg/source/file.sh.in
2025-10-31T05:21:28.2812840Z pacman-6.0.2/scripts/libmakepkg/source/fossil.sh.in
2025-10-31T05:21:28.2813392Z pacman-6.0.2/scripts/libmakepkg/source/git.sh.in
2025-10-31T05:21:28.2813915Z pacman-6.0.2/scripts/libmakepkg/source/hg.sh.in
2025-10-31T05:21:28.2814578Z pacman-6.0.2/scripts/libmakepkg/source/local.sh.in
2025-10-31T05:21:28.2815131Z pacman-6.0.2/scripts/libmakepkg/source/meson.build
2025-10-31T05:21:28.2815679Z pacman-6.0.2/scripts/libmakepkg/source/svn.sh.in
2025-10-31T05:21:28.2816601Z pacman-6.0.2/scripts/libmakepkg/source.sh.in
2025-10-31T05:21:28.2817471Z pacman-6.0.2/scripts/libmakepkg/srcinfo.sh.in
2025-10-31T05:21:28.2818315Z pacman-6.0.2/scripts/libmakepkg/tidy/
2025-10-31T05:21:28.2819122Z pacman-6.0.2/scripts/libmakepkg/tidy/docs.sh.in
2025-10-31T05:21:28.2819851Z pacman-6.0.2/scripts/libmakepkg/tidy/emptydirs.sh.in
2025-10-31T05:21:28.2820713Z pacman-6.0.2/scripts/libmakepkg/tidy/libtool.sh.in
2025-10-31T05:21:28.2821260Z pacman-6.0.2/scripts/libmakepkg/tidy/meson.build
2025-10-31T05:21:28.2821789Z pacman-6.0.2/scripts/libmakepkg/tidy/purge.sh.in
2025-10-31T05:21:28.2822551Z pacman-6.0.2/scripts/libmakepkg/tidy/staticlibs.sh.in
2025-10-31T05:21:28.2823131Z pacman-6.0.2/scripts/libmakepkg/tidy/strip.sh.in
2025-10-31T05:21:28.2823658Z pacman-6.0.2/scripts/libmakepkg/tidy/zipman.sh.in
2025-10-31T05:21:28.2824187Z pacman-6.0.2/scripts/libmakepkg/tidy.sh.in
2025-10-31T05:21:28.2824675Z pacman-6.0.2/scripts/libmakepkg/util/
2025-10-31T05:21:28.2825318Z pacman-6.0.2/scripts/libmakepkg/util/compress.sh.in
2025-10-31T05:21:28.2826194Z pacman-6.0.2/scripts/libmakepkg/util/config.sh.in
2025-10-31T05:21:28.2826743Z pacman-6.0.2/scripts/libmakepkg/util/dirsize.sh.in
2025-10-31T05:21:28.2827292Z pacman-6.0.2/scripts/libmakepkg/util/error.sh.in
2025-10-31T05:21:28.2827831Z pacman-6.0.2/scripts/libmakepkg/util/meson.build
2025-10-31T05:21:28.2828371Z pacman-6.0.2/scripts/libmakepkg/util/message.sh.in
2025-10-31T05:21:28.2829207Z pacman-6.0.2/scripts/libmakepkg/util/option.sh.in
2025-10-31T05:21:28.2829936Z pacman-6.0.2/scripts/libmakepkg/util/parseopts.sh.in
2025-10-31T05:21:28.2830650Z pacman-6.0.2/scripts/libmakepkg/util/pkgbuild.sh.in
2025-10-31T05:21:28.2831207Z pacman-6.0.2/scripts/libmakepkg/util/schema.sh.in
2025-10-31T05:21:28.2831747Z pacman-6.0.2/scripts/libmakepkg/util/source.sh.in
2025-10-31T05:21:28.2832493Z pacman-6.0.2/scripts/libmakepkg/util/util.sh.in
2025-10-31T05:21:28.2833120Z pacman-6.0.2/scripts/libmakepkg/util.sh.in
2025-10-31T05:21:28.2833960Z pacman-6.0.2/scripts/libmakepkg.pc.in
2025-10-31T05:21:28.2834474Z pacman-6.0.2/scripts/makepkg-template.pl.in
2025-10-31T05:21:28.2834954Z pacman-6.0.2/scripts/makepkg.sh.in
2025-10-31T05:21:28.2835414Z pacman-6.0.2/scripts/meson.build
2025-10-31T05:21:28.2835882Z pacman-6.0.2/scripts/pacman-db-upgrade.sh.in
2025-10-31T05:21:28.2836382Z pacman-6.0.2/scripts/pacman-key.sh.in
2025-10-31T05:21:28.2836842Z pacman-6.0.2/scripts/po/
2025-10-31T05:21:28.2837275Z pacman-6.0.2/scripts/po/.gitignore
2025-10-31T05:21:28.2837728Z pacman-6.0.2/scripts/po/LINGUAS
2025-10-31T05:21:28.2838379Z pacman-6.0.2/scripts/po/Makevars
2025-10-31T05:21:28.2848310Z pacman-6.0.2/scripts/po/POTFILES.in
2025-10-31T05:21:28.2849102Z pacman-6.0.2/scripts/po/az_AZ.po
2025-10-31T05:21:28.2849633Z pacman-6.0.2/scripts/po/bg.po
2025-10-31T05:21:28.2850084Z pacman-6.0.2/scripts/po/br.po
2025-10-31T05:21:28.2850515Z pacman-6.0.2/scripts/po/ca.po
2025-10-31T05:21:28.2850969Z pacman-6.0.2/scripts/po/cs.po
2025-10-31T05:21:28.2851421Z pacman-6.0.2/scripts/po/da.po
2025-10-31T05:21:28.2852279Z pacman-6.0.2/scripts/po/de.po
2025-10-31T05:21:28.2853061Z pacman-6.0.2/scripts/po/el.po
2025-10-31T05:21:28.2853784Z pacman-6.0.2/scripts/po/en_GB.po
2025-10-31T05:21:28.2854526Z pacman-6.0.2/scripts/po/eo.po
2025-10-31T05:21:28.2855254Z pacman-6.0.2/scripts/po/es.po
2025-10-31T05:21:28.2855983Z pacman-6.0.2/scripts/po/es_419.po
2025-10-31T05:21:28.2856703Z pacman-6.0.2/scripts/po/eu.po
2025-10-31T05:21:28.2857462Z pacman-6.0.2/scripts/po/eu_ES.po
2025-10-31T05:21:28.2858044Z pacman-6.0.2/scripts/po/fi.po
2025-10-31T05:21:28.2858475Z pacman-6.0.2/scripts/po/fr.po
2025-10-31T05:21:28.2861163Z pacman-6.0.2/scripts/po/gl.po
2025-10-31T05:21:28.2865117Z pacman-6.0.2/scripts/po/hi.po
2025-10-31T05:21:28.2870300Z pacman-6.0.2/scripts/po/hu.po
2025-10-31T05:21:28.2875125Z pacman-6.0.2/scripts/po/id.po
2025-10-31T05:21:28.2878251Z pacman-6.0.2/scripts/po/it.po
2025-10-31T05:21:28.2882280Z pacman-6.0.2/scripts/po/ja.po
2025-10-31T05:21:28.2886010Z pacman-6.0.2/scripts/po/ko.po
2025-10-31T05:21:28.2890476Z pacman-6.0.2/scripts/po/lt.po
2025-10-31T05:21:28.2894509Z pacman-6.0.2/scripts/po/meson.build
2025-10-31T05:21:28.2895297Z pacman-6.0.2/scripts/po/nb.po
2025-10-31T05:21:28.2897743Z pacman-6.0.2/scripts/po/nl.po
2025-10-31T05:21:28.2901908Z pacman-6.0.2/scripts/po/pacman-scripts.pot
2025-10-31T05:21:28.2903888Z pacman-6.0.2/scripts/po/pl.po
2025-10-31T05:21:28.2907637Z pacman-6.0.2/scripts/po/pt.po
2025-10-31T05:21:28.2911378Z pacman-6.0.2/scripts/po/pt_BR.po
2025-10-31T05:21:28.2914295Z pacman-6.0.2/scripts/po/remove-potcdate.sin
2025-10-31T05:21:28.2915127Z pacman-6.0.2/scripts/po/ro.po
2025-10-31T05:21:28.2918471Z pacman-6.0.2/scripts/po/ru.po
2025-10-31T05:21:28.2922163Z pacman-6.0.2/scripts/po/sk.po
2025-10-31T05:21:28.2926369Z pacman-6.0.2/scripts/po/sl.po
2025-10-31T05:21:28.2929253Z pacman-6.0.2/scripts/po/sr.po
2025-10-31T05:21:28.2933042Z pacman-6.0.2/scripts/po/sr@latin.po
2025-10-31T05:21:28.2936781Z pacman-6.0.2/scripts/po/sv.po
2025-10-31T05:21:28.2940533Z pacman-6.0.2/scripts/po/tr.po
2025-10-31T05:21:28.2944032Z pacman-6.0.2/scripts/po/uk.po
2025-10-31T05:21:28.2948703Z pacman-6.0.2/scripts/po/zh_CN.po
2025-10-31T05:21:28.2952378Z pacman-6.0.2/scripts/po/zh_TW.po
2025-10-31T05:21:28.2956871Z pacman-6.0.2/scripts/repo-add.sh.in
2025-10-31T05:21:28.2958233Z pacman-6.0.2/scripts/wrapper.sh.in
2025-10-31T05:21:28.2958991Z pacman-6.0.2/src/
2025-10-31T05:21:28.2959658Z pacman-6.0.2/src/common/
2025-10-31T05:21:28.2960359Z pacman-6.0.2/src/common/ini.c
2025-10-31T05:21:28.2961059Z pacman-6.0.2/src/common/ini.h
2025-10-31T05:21:28.2961774Z pacman-6.0.2/src/common/meson.build
2025-10-31T05:21:28.2962893Z pacman-6.0.2/src/common/util-common.c
2025-10-31T05:21:28.2963663Z pacman-6.0.2/src/common/util-common.h
2025-10-31T05:21:28.2964216Z pacman-6.0.2/src/pacman/
2025-10-31T05:21:28.2964645Z pacman-6.0.2/src/pacman/.gitignore
2025-10-31T05:21:28.2965099Z pacman-6.0.2/src/pacman/callback.c
2025-10-31T05:21:28.2965925Z pacman-6.0.2/src/pacman/callback.h
2025-10-31T05:21:28.2966776Z pacman-6.0.2/src/pacman/check.c
2025-10-31T05:21:28.2967506Z pacman-6.0.2/src/pacman/check.h
2025-10-31T05:21:28.2968376Z pacman-6.0.2/src/pacman/conf.c
2025-10-31T05:21:28.2972412Z pacman-6.0.2/src/pacman/conf.h
2025-10-31T05:21:28.2973375Z pacman-6.0.2/src/pacman/database.c
2025-10-31T05:21:28.2974201Z pacman-6.0.2/src/pacman/deptest.c
2025-10-31T05:21:28.2976563Z pacman-6.0.2/src/pacman/files.c
2025-10-31T05:21:28.2977313Z pacman-6.0.2/src/pacman/ini.c
2025-10-31T05:21:28.2977762Z pacman-6.0.2/src/pacman/ini.h
2025-10-31T05:21:28.2978472Z pacman-6.0.2/src/pacman/meson.build
2025-10-31T05:21:28.2979253Z pacman-6.0.2/src/pacman/package.c
2025-10-31T05:21:28.2980039Z pacman-6.0.2/src/pacman/package.h
2025-10-31T05:21:28.2980930Z pacman-6.0.2/src/pacman/pacman-conf.c
2025-10-31T05:21:28.2981772Z pacman-6.0.2/src/pacman/pacman.c
2025-10-31T05:21:28.2982793Z pacman-6.0.2/src/pacman/pacman.h
2025-10-31T05:21:28.2984192Z pacman-6.0.2/src/pacman/po/
2025-10-31T05:21:28.2985420Z pacman-6.0.2/src/pacman/po/.gitignore
2025-10-31T05:21:28.2986535Z pacman-6.0.2/src/pacman/po/LINGUAS
2025-10-31T05:21:28.2987705Z pacman-6.0.2/src/pacman/po/Makevars
2025-10-31T05:21:28.2990077Z pacman-6.0.2/src/pacman/po/POTFILES.in
2025-10-31T05:21:28.2991142Z pacman-6.0.2/src/pacman/po/ar.po
2025-10-31T05:21:28.2992100Z pacman-6.0.2/src/pacman/po/ast.po
2025-10-31T05:21:28.2993066Z pacman-6.0.2/src/pacman/po/az_AZ.po
2025-10-31T05:21:28.2996607Z pacman-6.0.2/src/pacman/po/bg.po
2025-10-31T05:21:28.2999987Z pacman-6.0.2/src/pacman/po/br.po
2025-10-31T05:21:28.3002710Z pacman-6.0.2/src/pacman/po/ca.po
2025-10-31T05:21:28.3006154Z pacman-6.0.2/src/pacman/po/cs.po
2025-10-31T05:21:28.3009728Z pacman-6.0.2/src/pacman/po/da.po
2025-10-31T05:21:28.3012791Z pacman-6.0.2/src/pacman/po/de.po
2025-10-31T05:21:28.3016528Z pacman-6.0.2/src/pacman/po/el.po
2025-10-31T05:21:28.3020475Z pacman-6.0.2/src/pacman/po/en_GB.po
2025-10-31T05:21:28.3022307Z pacman-6.0.2/src/pacman/po/eo.po
2025-10-31T05:21:28.3025276Z pacman-6.0.2/src/pacman/po/es.po
2025-10-31T05:21:28.3028642Z pacman-6.0.2/src/pacman/po/es_419.po
2025-10-31T05:21:28.3029977Z pacman-6.0.2/src/pacman/po/eu.po
2025-10-31T05:21:28.3032900Z pacman-6.0.2/src/pacman/po/eu_ES.po
2025-10-31T05:21:28.3033828Z pacman-6.0.2/src/pacman/po/fi.po
2025-10-31T05:21:28.3036820Z pacman-6.0.2/src/pacman/po/fr.po
2025-10-31T05:21:28.3040232Z pacman-6.0.2/src/pacman/po/gl.po
2025-10-31T05:21:28.3043466Z pacman-6.0.2/src/pacman/po/hi.po
2025-10-31T05:21:28.3046502Z pacman-6.0.2/src/pacman/po/hr.po
2025-10-31T05:21:28.3049785Z pacman-6.0.2/src/pacman/po/hu.po
2025-10-31T05:21:28.3053999Z pacman-6.0.2/src/pacman/po/id.po
2025-10-31T05:21:28.3056737Z pacman-6.0.2/src/pacman/po/it.po
2025-10-31T05:21:28.3059669Z pacman-6.0.2/src/pacman/po/ja.po
2025-10-31T05:21:28.3063626Z pacman-6.0.2/src/pacman/po/ko.po
2025-10-31T05:21:28.3066812Z pacman-6.0.2/src/pacman/po/lt.po
2025-10-31T05:21:28.3070622Z pacman-6.0.2/src/pacman/po/meson.build
2025-10-31T05:21:28.3071431Z pacman-6.0.2/src/pacman/po/nb.po
2025-10-31T05:21:28.3073991Z pacman-6.0.2/src/pacman/po/nl.po
2025-10-31T05:21:28.3076902Z pacman-6.0.2/src/pacman/po/pacman.pot
2025-10-31T05:21:28.3078135Z pacman-6.0.2/src/pacman/po/pl.po
2025-10-31T05:21:28.3081410Z pacman-6.0.2/src/pacman/po/pt.po
2025-10-31T05:21:28.3084591Z pacman-6.0.2/src/pacman/po/pt_BR.po
2025-10-31T05:21:28.3087084Z pacman-6.0.2/src/pacman/po/remove-potcdate.sin
2025-10-31T05:21:28.3087936Z pacman-6.0.2/src/pacman/po/ro.po
2025-10-31T05:21:28.3090001Z pacman-6.0.2/src/pacman/po/ru.po
2025-10-31T05:21:28.3093704Z pacman-6.0.2/src/pacman/po/sk.po
2025-10-31T05:21:28.3096078Z pacman-6.0.2/src/pacman/po/sl.po
2025-10-31T05:21:28.3098621Z pacman-6.0.2/src/pacman/po/sr.po
2025-10-31T05:21:28.3102079Z pacman-6.0.2/src/pacman/po/sr@latin.po
2025-10-31T05:21:28.3104256Z pacman-6.0.2/src/pacman/po/sv.po
2025-10-31T05:21:28.3106830Z pacman-6.0.2/src/pacman/po/tr.po
2025-10-31T05:21:28.3110847Z pacman-6.0.2/src/pacman/po/uk.po
2025-10-31T05:21:28.3114511Z pacman-6.0.2/src/pacman/po/zh_CN.po
2025-10-31T05:21:28.3118285Z pacman-6.0.2/src/pacman/po/zh_TW.po
2025-10-31T05:21:28.3121580Z pacman-6.0.2/src/pacman/query.c
2025-10-31T05:21:28.3122557Z pacman-6.0.2/src/pacman/remove.c
2025-10-31T05:21:28.3123416Z pacman-6.0.2/src/pacman/sighandler.c
2025-10-31T05:21:28.3124239Z pacman-6.0.2/src/pacman/sighandler.h
2025-10-31T05:21:28.3125087Z pacman-6.0.2/src/pacman/sync.c
2025-10-31T05:21:28.3125875Z pacman-6.0.2/src/pacman/upgrade.c
2025-10-31T05:21:28.3126828Z pacman-6.0.2/src/pacman/util-common.c
2025-10-31T05:21:28.3127656Z pacman-6.0.2/src/pacman/util-common.h
2025-10-31T05:21:28.3128372Z pacman-6.0.2/src/pacman/util.c
2025-10-31T05:21:28.3132519Z pacman-6.0.2/src/pacman/util.h
2025-10-31T05:21:28.3133344Z pacman-6.0.2/src/util/
2025-10-31T05:21:28.3134118Z pacman-6.0.2/src/util/.gitignore
2025-10-31T05:21:28.3134943Z pacman-6.0.2/src/util/meson.build
2025-10-31T05:21:28.3135770Z pacman-6.0.2/src/util/testpkg.c
2025-10-31T05:21:28.3136533Z pacman-6.0.2/src/util/util-common.c
2025-10-31T05:21:28.3137315Z pacman-6.0.2/src/util/util-common.h
2025-10-31T05:21:28.3138082Z pacman-6.0.2/src/util/vercmp.c
2025-10-31T05:21:28.3138815Z pacman-6.0.2/test/
2025-10-31T05:21:28.3139505Z pacman-6.0.2/test/.gitignore
2025-10-31T05:21:28.3140257Z pacman-6.0.2/test/pacman/
2025-10-31T05:21:28.3140986Z pacman-6.0.2/test/pacman/.gitignore
2025-10-31T05:21:28.3141759Z pacman-6.0.2/test/pacman/ChangeLog
2025-10-31T05:21:28.3142669Z pacman-6.0.2/test/pacman/README
2025-10-31T05:21:28.3143420Z pacman-6.0.2/test/pacman/TODO
2025-10-31T05:21:28.3144182Z pacman-6.0.2/test/pacman/ldconfig.stub
2025-10-31T05:21:28.3144996Z pacman-6.0.2/test/pacman/meson.build
2025-10-31T05:21:28.3145802Z pacman-6.0.2/test/pacman/pactest.py
2025-10-31T05:21:28.3146654Z pacman-6.0.2/test/pacman/pmdb.py
2025-10-31T05:21:28.3147370Z pacman-6.0.2/test/pacman/pmenv.py
2025-10-31T05:21:28.3148358Z pacman-6.0.2/test/pacman/pmfile.py
2025-10-31T05:21:28.3149152Z pacman-6.0.2/test/pacman/pmpkg.py
2025-10-31T05:21:28.3149924Z pacman-6.0.2/test/pacman/pmrule.py
2025-10-31T05:21:28.3150684Z pacman-6.0.2/test/pacman/pmserve.py
2025-10-31T05:21:28.3151463Z pacman-6.0.2/test/pacman/pmtest.py
2025-10-31T05:21:28.3152399Z pacman-6.0.2/test/pacman/tap.py
2025-10-31T05:21:28.3153147Z pacman-6.0.2/test/pacman/tests/
2025-10-31T05:21:28.3153886Z pacman-6.0.2/test/pacman/tests/TESTS
2025-10-31T05:21:28.3154708Z pacman-6.0.2/test/pacman/tests/backup001.py
2025-10-31T05:21:28.3155542Z pacman-6.0.2/test/pacman/tests/clean001.py
2025-10-31T05:21:28.3156360Z pacman-6.0.2/test/pacman/tests/clean002.py
2025-10-31T05:21:28.3157170Z pacman-6.0.2/test/pacman/tests/clean003.py
2025-10-31T05:21:28.3157972Z pacman-6.0.2/test/pacman/tests/clean004.py
2025-10-31T05:21:28.3158785Z pacman-6.0.2/test/pacman/tests/clean005.py
2025-10-31T05:21:28.3159591Z pacman-6.0.2/test/pacman/tests/config001.py
2025-10-31T05:21:28.3160410Z pacman-6.0.2/test/pacman/tests/config002.py
2025-10-31T05:21:28.3161235Z pacman-6.0.2/test/pacman/tests/database001.py
2025-10-31T05:21:28.3162256Z pacman-6.0.2/test/pacman/tests/database002.py
2025-10-31T05:21:28.3163112Z pacman-6.0.2/test/pacman/tests/database010.py
2025-10-31T05:21:28.3163968Z pacman-6.0.2/test/pacman/tests/database011.py
2025-10-31T05:21:28.3164815Z pacman-6.0.2/test/pacman/tests/database012.py
2025-10-31T05:21:28.3165739Z pacman-6.0.2/test/pacman/tests/dbonly-extracted-files.py
2025-10-31T05:21:28.3166683Z pacman-6.0.2/test/pacman/tests/depconflict100.py
2025-10-31T05:21:28.3167585Z pacman-6.0.2/test/pacman/tests/depconflict110.py
2025-10-31T05:21:28.3168475Z pacman-6.0.2/test/pacman/tests/depconflict111.py
2025-10-31T05:21:28.3169366Z pacman-6.0.2/test/pacman/tests/depconflict120.py
2025-10-31T05:21:28.3170586Z pacman-6.0.2/test/pacman/tests/dependency-cycle-fixed-by-upgrade.py
2025-10-31T05:21:28.3171586Z pacman-6.0.2/test/pacman/tests/deprange001.py
2025-10-31T05:21:28.3172580Z pacman-6.0.2/test/pacman/tests/deptest001.py
2025-10-31T05:21:28.3173425Z pacman-6.0.2/test/pacman/tests/dummy001.py
2025-10-31T05:21:28.3174285Z pacman-6.0.2/test/pacman/tests/epoch001.py
2025-10-31T05:21:28.3175089Z pacman-6.0.2/test/pacman/tests/epoch002.py
2025-10-31T05:21:28.3175887Z pacman-6.0.2/test/pacman/tests/epoch003.py
2025-10-31T05:21:28.3176699Z pacman-6.0.2/test/pacman/tests/epoch004.py
2025-10-31T05:21:28.3177493Z pacman-6.0.2/test/pacman/tests/epoch005.py
2025-10-31T05:21:28.3178299Z pacman-6.0.2/test/pacman/tests/epoch010.py
2025-10-31T05:21:28.3179096Z pacman-6.0.2/test/pacman/tests/epoch011.py
2025-10-31T05:21:28.3179897Z pacman-6.0.2/test/pacman/tests/epoch012.py
2025-10-31T05:21:28.3180868Z pacman-6.0.2/test/pacman/tests/file-conflict-with-installed-pkg.py
2025-10-31T05:21:28.3181877Z pacman-6.0.2/test/pacman/tests/fileconflict001.py
2025-10-31T05:21:28.3182912Z pacman-6.0.2/test/pacman/tests/fileconflict002.py
2025-10-31T05:21:28.3183812Z pacman-6.0.2/test/pacman/tests/fileconflict003.py
2025-10-31T05:21:28.3184709Z pacman-6.0.2/test/pacman/tests/fileconflict004.py
2025-10-31T05:21:28.3185604Z pacman-6.0.2/test/pacman/tests/fileconflict005.py
2025-10-31T05:21:28.3186500Z pacman-6.0.2/test/pacman/tests/fileconflict006.py
2025-10-31T05:21:28.3187418Z pacman-6.0.2/test/pacman/tests/fileconflict007.py
2025-10-31T05:21:28.3188308Z pacman-6.0.2/test/pacman/tests/fileconflict008.py
2025-10-31T05:21:28.3189204Z pacman-6.0.2/test/pacman/tests/fileconflict009.py
2025-10-31T05:21:28.3190105Z pacman-6.0.2/test/pacman/tests/fileconflict010.py
2025-10-31T05:21:28.3190997Z pacman-6.0.2/test/pacman/tests/fileconflict011.py
2025-10-31T05:21:28.3191910Z pacman-6.0.2/test/pacman/tests/fileconflict012.py
2025-10-31T05:21:28.3192921Z pacman-6.0.2/test/pacman/tests/fileconflict013.py
2025-10-31T05:21:28.3193824Z pacman-6.0.2/test/pacman/tests/fileconflict015.py
2025-10-31T05:21:28.3194725Z pacman-6.0.2/test/pacman/tests/fileconflict016.py
2025-10-31T05:21:28.3195611Z pacman-6.0.2/test/pacman/tests/fileconflict017.py
2025-10-31T05:21:28.3196700Z pacman-6.0.2/test/pacman/tests/fileconflict020.py
2025-10-31T05:21:28.3197603Z pacman-6.0.2/test/pacman/tests/fileconflict021.py
2025-10-31T05:21:28.3198495Z pacman-6.0.2/test/pacman/tests/fileconflict022.py
2025-10-31T05:21:28.3199382Z pacman-6.0.2/test/pacman/tests/fileconflict023.py
2025-10-31T05:21:28.3200270Z pacman-6.0.2/test/pacman/tests/fileconflict024.py
2025-10-31T05:21:28.3201158Z pacman-6.0.2/test/pacman/tests/fileconflict025.py
2025-10-31T05:21:28.3202178Z pacman-6.0.2/test/pacman/tests/fileconflict030.py
2025-10-31T05:21:28.3203070Z pacman-6.0.2/test/pacman/tests/fileconflict031.py
2025-10-31T05:21:28.3203964Z pacman-6.0.2/test/pacman/tests/fileconflict032.py
2025-10-31T05:21:28.3204864Z pacman-6.0.2/test/pacman/tests/hook-abortonfail.py
2025-10-31T05:21:28.3205822Z pacman-6.0.2/test/pacman/tests/hook-description-reused.py
2025-10-31T05:21:28.3206776Z pacman-6.0.2/test/pacman/tests/hook-exec-reused.py
2025-10-31T05:21:28.3207730Z pacman-6.0.2/test/pacman/tests/hook-exec-with-arguments.py
2025-10-31T05:21:28.3208749Z pacman-6.0.2/test/pacman/tests/hook-file-change-packages.py
2025-10-31T05:21:28.3209790Z pacman-6.0.2/test/pacman/tests/hook-file-remove-trigger-match.py
2025-10-31T05:21:28.3210828Z pacman-6.0.2/test/pacman/tests/hook-file-upgrade-nomatch.py
2025-10-31T05:21:28.3211801Z pacman-6.0.2/test/pacman/tests/hook-invalid-trigger.py
2025-10-31T05:21:28.3212951Z pacman-6.0.2/test/pacman/tests/hook-pkg-install-trigger-match.py
2025-10-31T05:21:28.3214051Z pacman-6.0.2/test/pacman/tests/hook-pkg-postinstall-trigger-match.py
2025-10-31T05:21:28.3215167Z pacman-6.0.2/test/pacman/tests/hook-pkg-remove-trigger-match.py
2025-10-31T05:21:28.3216235Z pacman-6.0.2/test/pacman/tests/hook-pkg-upgrade-trigger-match.py
2025-10-31T05:21:28.3217233Z pacman-6.0.2/test/pacman/tests/hook-target-list.py
2025-10-31T05:21:28.3218326Z pacman-6.0.2/test/pacman/tests/hook-type-reused.py
2025-10-31T05:21:28.3219308Z pacman-6.0.2/test/pacman/tests/hook-upgrade-trigger-no-match.py
2025-10-31T05:21:28.3220305Z pacman-6.0.2/test/pacman/tests/hook-when-reused.py
2025-10-31T05:21:28.3221179Z pacman-6.0.2/test/pacman/tests/ignore001.py
2025-10-31T05:21:28.3222128Z pacman-6.0.2/test/pacman/tests/ignore002.py
2025-10-31T05:21:28.3222967Z pacman-6.0.2/test/pacman/tests/ignore003.py
2025-10-31T05:21:28.3223787Z pacman-6.0.2/test/pacman/tests/ignore004.py
2025-10-31T05:21:28.3224599Z pacman-6.0.2/test/pacman/tests/ignore005.py
2025-10-31T05:21:28.3225407Z pacman-6.0.2/test/pacman/tests/ignore006.py
2025-10-31T05:21:28.3226213Z pacman-6.0.2/test/pacman/tests/ignore007.py
2025-10-31T05:21:28.3227009Z pacman-6.0.2/test/pacman/tests/ignore008.py
2025-10-31T05:21:28.3227848Z pacman-6.0.2/test/pacman/tests/ldconfig001.py
2025-10-31T05:21:28.3228709Z pacman-6.0.2/test/pacman/tests/ldconfig002.py
2025-10-31T05:21:28.3229556Z pacman-6.0.2/test/pacman/tests/ldconfig003.py
2025-10-31T05:21:28.3230398Z pacman-6.0.2/test/pacman/tests/mode001.py
2025-10-31T05:21:28.3231196Z pacman-6.0.2/test/pacman/tests/mode002.py
2025-10-31T05:21:28.3232118Z pacman-6.0.2/test/pacman/tests/mode003.py
2025-10-31T05:21:28.3233012Z pacman-6.0.2/test/pacman/tests/multiple-architectures01.py
2025-10-31T05:21:28.3234023Z pacman-6.0.2/test/pacman/tests/multiple-architectures02.py
2025-10-31T05:21:28.3241382Z pacman-6.0.2/test/pacman/tests/noupgrade-inverted.py
2025-10-31T05:21:28.3242648Z pacman-6.0.2/test/pacman/tests/overwrite-files-match-negated.py
2025-10-31T05:21:28.3243708Z pacman-6.0.2/test/pacman/tests/overwrite-files-match.py
2025-10-31T05:21:28.3244709Z pacman-6.0.2/test/pacman/tests/overwrite-files-nonmatch.py
2025-10-31T05:21:28.3245728Z pacman-6.0.2/test/pacman/tests/pacman001.py
2025-10-31T05:21:28.3246488Z pacman-6.0.2/test/pacman/tests/pacman002.py
2025-10-31T05:21:28.3247280Z pacman-6.0.2/test/pacman/tests/pacman003.py
2025-10-31T05:21:28.3247972Z pacman-6.0.2/test/pacman/tests/pacman004.py
2025-10-31T05:21:28.3248590Z pacman-6.0.2/test/pacman/tests/pacman005.py
2025-10-31T05:21:28.3249289Z pacman-6.0.2/test/pacman/tests/provision001.py
2025-10-31T05:21:28.3250232Z pacman-6.0.2/test/pacman/tests/provision002.py
2025-10-31T05:21:28.3250980Z pacman-6.0.2/test/pacman/tests/provision003.py
2025-10-31T05:21:28.3251610Z pacman-6.0.2/test/pacman/tests/provision004.py
2025-10-31T05:21:28.3252533Z pacman-6.0.2/test/pacman/tests/provision010.py
2025-10-31T05:21:28.3253218Z pacman-6.0.2/test/pacman/tests/provision011.py
2025-10-31T05:21:28.3253909Z pacman-6.0.2/test/pacman/tests/provision012.py
2025-10-31T05:21:28.3254551Z pacman-6.0.2/test/pacman/tests/provision020.py
2025-10-31T05:21:28.3255311Z pacman-6.0.2/test/pacman/tests/provision021.py
2025-10-31T05:21:28.3256006Z pacman-6.0.2/test/pacman/tests/provision022.py
2025-10-31T05:21:28.3256758Z pacman-6.0.2/test/pacman/tests/query001.py
2025-10-31T05:21:28.3257378Z pacman-6.0.2/test/pacman/tests/query002.py
2025-10-31T05:21:28.3258057Z pacman-6.0.2/test/pacman/tests/query003.py
2025-10-31T05:21:28.3258710Z pacman-6.0.2/test/pacman/tests/query004.py
2025-10-31T05:21:28.3259313Z pacman-6.0.2/test/pacman/tests/query005.py
2025-10-31T05:21:28.3259960Z pacman-6.0.2/test/pacman/tests/query006.py
2025-10-31T05:21:28.3260765Z pacman-6.0.2/test/pacman/tests/query007.py
2025-10-31T05:21:28.3261398Z pacman-6.0.2/test/pacman/tests/query010.py
2025-10-31T05:21:28.3262179Z pacman-6.0.2/test/pacman/tests/query011.py
2025-10-31T05:21:28.3262801Z pacman-6.0.2/test/pacman/tests/query012.py
2025-10-31T05:21:28.3263578Z pacman-6.0.2/test/pacman/tests/querycheck001.py
2025-10-31T05:21:28.3264311Z pacman-6.0.2/test/pacman/tests/querycheck002.py
2025-10-31T05:21:28.3265003Z pacman-6.0.2/test/pacman/tests/querycheck_fast_file_type.py
2025-10-31T05:21:28.3265692Z pacman-6.0.2/test/pacman/tests/reason001.py
2025-10-31T05:21:28.3266559Z pacman-6.0.2/test/pacman/tests/remove-assumeinstalled.py
2025-10-31T05:21:28.3267429Z pacman-6.0.2/test/pacman/tests/remove-directory-replaced-with-symlink.py
2025-10-31T05:21:28.3268577Z pacman-6.0.2/test/pacman/tests/remove-optdepend-of-installed-package.py
2025-10-31T05:21:28.3269601Z pacman-6.0.2/test/pacman/tests/remove-recursive-cycle.py
2025-10-31T05:21:28.3270318Z pacman-6.0.2/test/pacman/tests/remove001.py
2025-10-31T05:21:28.3270923Z pacman-6.0.2/test/pacman/tests/remove002.py
2025-10-31T05:21:28.3271659Z pacman-6.0.2/test/pacman/tests/remove010.py
2025-10-31T05:21:28.3272395Z pacman-6.0.2/test/pacman/tests/remove011.py
2025-10-31T05:21:28.3273021Z pacman-6.0.2/test/pacman/tests/remove012.py
2025-10-31T05:21:28.3273675Z pacman-6.0.2/test/pacman/tests/remove020.py
2025-10-31T05:21:28.3274366Z pacman-6.0.2/test/pacman/tests/remove021.py
2025-10-31T05:21:28.3275145Z pacman-6.0.2/test/pacman/tests/remove030.py
2025-10-31T05:21:28.3275740Z pacman-6.0.2/test/pacman/tests/remove031.py
2025-10-31T05:21:28.3276332Z pacman-6.0.2/test/pacman/tests/remove040.py
2025-10-31T05:21:28.3276929Z pacman-6.0.2/test/pacman/tests/remove041.py
2025-10-31T05:21:28.3277678Z pacman-6.0.2/test/pacman/tests/remove042.py
2025-10-31T05:21:28.3278284Z pacman-6.0.2/test/pacman/tests/remove043.py
2025-10-31T05:21:28.3278933Z pacman-6.0.2/test/pacman/tests/remove044.py
2025-10-31T05:21:28.3279562Z pacman-6.0.2/test/pacman/tests/remove045.py
2025-10-31T05:21:28.3280193Z pacman-6.0.2/test/pacman/tests/remove047.py
2025-10-31T05:21:28.3280945Z pacman-6.0.2/test/pacman/tests/remove049.py
2025-10-31T05:21:28.3281552Z pacman-6.0.2/test/pacman/tests/remove050.py
2025-10-31T05:21:28.3282280Z pacman-6.0.2/test/pacman/tests/remove051.py
2025-10-31T05:21:28.3282888Z pacman-6.0.2/test/pacman/tests/remove052.py
2025-10-31T05:21:28.3283554Z pacman-6.0.2/test/pacman/tests/remove060.py
2025-10-31T05:21:28.3284236Z pacman-6.0.2/test/pacman/tests/remove070.py
2025-10-31T05:21:28.3284837Z pacman-6.0.2/test/pacman/tests/remove071.py
2025-10-31T05:21:28.3285514Z pacman-6.0.2/test/pacman/tests/replace-and-upgrade-package.py
2025-10-31T05:21:28.3286411Z pacman-6.0.2/test/pacman/tests/replace100.py
2025-10-31T05:21:28.3287082Z pacman-6.0.2/test/pacman/tests/replace101.py
2025-10-31T05:21:28.3287699Z pacman-6.0.2/test/pacman/tests/replace102.py
2025-10-31T05:21:28.3288486Z pacman-6.0.2/test/pacman/tests/replace103.py
2025-10-31T05:21:28.3289386Z pacman-6.0.2/test/pacman/tests/replace104.py
2025-10-31T05:21:28.3290112Z pacman-6.0.2/test/pacman/tests/replace110.py
2025-10-31T05:21:28.3290785Z pacman-6.0.2/test/pacman/tests/scriptlet-signal-handling.py
2025-10-31T05:21:28.3291742Z pacman-6.0.2/test/pacman/tests/scriptlet-signal-reset.py
2025-10-31T05:21:28.3292649Z pacman-6.0.2/test/pacman/tests/scriptlet001.py
2025-10-31T05:21:28.3293298Z pacman-6.0.2/test/pacman/tests/scriptlet002.py
2025-10-31T05:21:28.3293970Z pacman-6.0.2/test/pacman/tests/sign001.py
2025-10-31T05:21:28.3294658Z pacman-6.0.2/test/pacman/tests/sign002.py
2025-10-31T05:21:28.3295329Z pacman-6.0.2/test/pacman/tests/skip-remove-with-glob-chars.py
2025-10-31T05:21:28.3296056Z pacman-6.0.2/test/pacman/tests/smoke001.py
2025-10-31T05:21:28.3296833Z pacman-6.0.2/test/pacman/tests/smoke002.py
2025-10-31T05:21:28.3297459Z pacman-6.0.2/test/pacman/tests/smoke003.py
2025-10-31T05:21:28.3298063Z pacman-6.0.2/test/pacman/tests/smoke004.py
2025-10-31T05:21:28.3298715Z pacman-6.0.2/test/pacman/tests/symlink-replace-with-dir.py
2025-10-31T05:21:28.3299472Z pacman-6.0.2/test/pacman/tests/symlink001.py
2025-10-31T05:21:28.3300207Z pacman-6.0.2/test/pacman/tests/symlink002.py
2025-10-31T05:21:28.3300819Z pacman-6.0.2/test/pacman/tests/symlink010.py
2025-10-31T05:21:28.3301423Z pacman-6.0.2/test/pacman/tests/symlink011.py
2025-10-31T05:21:28.3302222Z pacman-6.0.2/test/pacman/tests/symlink012.py
2025-10-31T05:21:28.3303058Z pacman-6.0.2/test/pacman/tests/symlink020.py
2025-10-31T05:21:28.3303887Z pacman-6.0.2/test/pacman/tests/symlink021.py
2025-10-31T05:21:28.3304621Z pacman-6.0.2/test/pacman/tests/sync-failover-404-with-body.py
2025-10-31T05:21:28.3305728Z pacman-6.0.2/test/pacman/tests/sync-install-assumeinstalled.py
2025-10-31T05:21:28.3306857Z pacman-6.0.2/test/pacman/tests/sync-nodepversion01.py
2025-10-31T05:21:28.3307664Z pacman-6.0.2/test/pacman/tests/sync-nodepversion02.py
2025-10-31T05:21:28.3308617Z pacman-6.0.2/test/pacman/tests/sync-nodepversion03.py
2025-10-31T05:21:28.3309448Z pacman-6.0.2/test/pacman/tests/sync-nodepversion04.py
2025-10-31T05:21:28.3310194Z pacman-6.0.2/test/pacman/tests/sync-nodepversion05.py
2025-10-31T05:21:28.3311174Z pacman-6.0.2/test/pacman/tests/sync-nodepversion06.py
2025-10-31T05:21:28.3312375Z pacman-6.0.2/test/pacman/tests/sync-sysupgrade-print-replaced-packages.py
2025-10-31T05:21:28.3313548Z pacman-6.0.2/test/pacman/tests/sync-update-assumeinstalled.py
2025-10-31T05:21:28.3314635Z pacman-6.0.2/test/pacman/tests/sync-update-package-removing-required-provides.py
2025-10-31T05:21:28.3315537Z pacman-6.0.2/test/pacman/tests/sync001.py
2025-10-31T05:21:28.3316384Z pacman-6.0.2/test/pacman/tests/sync002.py
2025-10-31T05:21:28.3317025Z pacman-6.0.2/test/pacman/tests/sync003.py
2025-10-31T05:21:28.3317740Z pacman-6.0.2/test/pacman/tests/sync009.py
2025-10-31T05:21:28.3318411Z pacman-6.0.2/test/pacman/tests/sync010.py
2025-10-31T05:21:28.3319180Z pacman-6.0.2/test/pacman/tests/sync011.py
2025-10-31T05:21:28.3319839Z pacman-6.0.2/test/pacman/tests/sync012.py
2025-10-31T05:21:28.3320501Z pacman-6.0.2/test/pacman/tests/sync020.py
2025-10-31T05:21:28.3321183Z pacman-6.0.2/test/pacman/tests/sync021.py
2025-10-31T05:21:28.3322155Z pacman-6.0.2/test/pacman/tests/sync022.py
2025-10-31T05:21:28.3322865Z pacman-6.0.2/test/pacman/tests/sync023.py
2025-10-31T05:21:28.3323559Z pacman-6.0.2/test/pacman/tests/sync024.py
2025-10-31T05:21:28.3324241Z pacman-6.0.2/test/pacman/tests/sync030.py
2025-10-31T05:21:28.3325004Z pacman-6.0.2/test/pacman/tests/sync031.py
2025-10-31T05:21:28.3325628Z pacman-6.0.2/test/pacman/tests/sync040.py
2025-10-31T05:21:28.3326286Z pacman-6.0.2/test/pacman/tests/sync041.py
2025-10-31T05:21:28.3327024Z pacman-6.0.2/test/pacman/tests/sync042.py
2025-10-31T05:21:28.3327842Z pacman-6.0.2/test/pacman/tests/sync043.py
2025-10-31T05:21:28.3328696Z pacman-6.0.2/test/pacman/tests/sync044.py
2025-10-31T05:21:28.3329392Z pacman-6.0.2/test/pacman/tests/sync045.py
2025-10-31T05:21:28.3330024Z pacman-6.0.2/test/pacman/tests/sync046.py
2025-10-31T05:21:28.3330751Z pacman-6.0.2/test/pacman/tests/sync050.py
2025-10-31T05:21:28.3331406Z pacman-6.0.2/test/pacman/tests/sync051.py
2025-10-31T05:21:28.3332313Z pacman-6.0.2/test/pacman/tests/sync052.py
2025-10-31T05:21:28.3332922Z pacman-6.0.2/test/pacman/tests/sync100.py
2025-10-31T05:21:28.3333716Z pacman-6.0.2/test/pacman/tests/sync1000.py
2025-10-31T05:21:28.3334470Z pacman-6.0.2/test/pacman/tests/sync1003.py
2025-10-31T05:21:28.3335145Z pacman-6.0.2/test/pacman/tests/sync1004.py
2025-10-31T05:21:28.3335862Z pacman-6.0.2/test/pacman/tests/sync1008.py
2025-10-31T05:21:28.3336701Z pacman-6.0.2/test/pacman/tests/sync101.py
2025-10-31T05:21:28.3337368Z pacman-6.0.2/test/pacman/tests/sync102.py
2025-10-31T05:21:28.3338036Z pacman-6.0.2/test/pacman/tests/sync103.py
2025-10-31T05:21:28.3338812Z pacman-6.0.2/test/pacman/tests/sync104.py
2025-10-31T05:21:28.3339496Z pacman-6.0.2/test/pacman/tests/sync110.py
2025-10-31T05:21:28.3340287Z pacman-6.0.2/test/pacman/tests/sync1100.py
2025-10-31T05:21:28.3340996Z pacman-6.0.2/test/pacman/tests/sync1101.py
2025-10-31T05:21:28.3341753Z pacman-6.0.2/test/pacman/tests/sync1102.py
2025-10-31T05:21:28.3342518Z pacman-6.0.2/test/pacman/tests/sync1103.py
2025-10-31T05:21:28.3343248Z pacman-6.0.2/test/pacman/tests/sync1104.py
2025-10-31T05:21:28.3343945Z pacman-6.0.2/test/pacman/tests/sync1105.py
2025-10-31T05:21:28.3344689Z pacman-6.0.2/test/pacman/tests/sync120.py
2025-10-31T05:21:28.3345416Z pacman-6.0.2/test/pacman/tests/sync130.py
2025-10-31T05:21:28.3346090Z pacman-6.0.2/test/pacman/tests/sync131.py
2025-10-31T05:21:28.3346758Z pacman-6.0.2/test/pacman/tests/sync132.py
2025-10-31T05:21:28.3347657Z pacman-6.0.2/test/pacman/tests/sync133.py
2025-10-31T05:21:28.3348314Z pacman-6.0.2/test/pacman/tests/sync134.py
2025-10-31T05:21:28.3349284Z pacman-6.0.2/test/pacman/tests/sync135.py
2025-10-31T05:21:28.3350070Z pacman-6.0.2/test/pacman/tests/sync136.py
2025-10-31T05:21:28.3350816Z pacman-6.0.2/test/pacman/tests/sync137.py
2025-10-31T05:21:28.3351570Z pacman-6.0.2/test/pacman/tests/sync138.py
2025-10-31T05:21:28.3352506Z pacman-6.0.2/test/pacman/tests/sync139.py
2025-10-31T05:21:28.3353237Z pacman-6.0.2/test/pacman/tests/sync140.py
2025-10-31T05:21:28.3353842Z pacman-6.0.2/test/pacman/tests/sync141.py
2025-10-31T05:21:28.3354545Z pacman-6.0.2/test/pacman/tests/sync150.py
2025-10-31T05:21:28.3355266Z pacman-6.0.2/test/pacman/tests/sync200.py
2025-10-31T05:21:28.3355991Z pacman-6.0.2/test/pacman/tests/sync300.py
2025-10-31T05:21:28.3356714Z pacman-6.0.2/test/pacman/tests/sync306.py
2025-10-31T05:21:28.3357485Z pacman-6.0.2/test/pacman/tests/sync400.py
2025-10-31T05:21:28.3358255Z pacman-6.0.2/test/pacman/tests/sync401.py
2025-10-31T05:21:28.3359072Z pacman-6.0.2/test/pacman/tests/sync402.py
2025-10-31T05:21:28.3359779Z pacman-6.0.2/test/pacman/tests/sync403.py
2025-10-31T05:21:28.3360601Z pacman-6.0.2/test/pacman/tests/sync404.py
2025-10-31T05:21:28.3361438Z pacman-6.0.2/test/pacman/tests/sync405.py
2025-10-31T05:21:28.3362273Z pacman-6.0.2/test/pacman/tests/sync406.py
2025-10-31T05:21:28.3363005Z pacman-6.0.2/test/pacman/tests/sync407.py
2025-10-31T05:21:28.3363805Z pacman-6.0.2/test/pacman/tests/sync500.py
2025-10-31T05:21:28.3364617Z pacman-6.0.2/test/pacman/tests/sync501.py
2025-10-31T05:21:28.3365331Z pacman-6.0.2/test/pacman/tests/sync502.py
2025-10-31T05:21:28.3366012Z pacman-6.0.2/test/pacman/tests/sync503.py
2025-10-31T05:21:28.3366730Z pacman-6.0.2/test/pacman/tests/sync600.py
2025-10-31T05:21:28.3367544Z pacman-6.0.2/test/pacman/tests/sync700.py
2025-10-31T05:21:28.3368359Z pacman-6.0.2/test/pacman/tests/sync701.py
2025-10-31T05:21:28.3369162Z pacman-6.0.2/test/pacman/tests/sync702.py
2025-10-31T05:21:28.3369979Z pacman-6.0.2/test/pacman/tests/sync890.py
2025-10-31T05:21:28.3370761Z pacman-6.0.2/test/pacman/tests/sync891.py
2025-10-31T05:21:28.3371439Z pacman-6.0.2/test/pacman/tests/sync892.py
2025-10-31T05:21:28.3372373Z pacman-6.0.2/test/pacman/tests/sync893.py
2025-10-31T05:21:28.3373165Z pacman-6.0.2/test/pacman/tests/sync895.py
2025-10-31T05:21:28.3374171Z pacman-6.0.2/test/pacman/tests/sync896.py
2025-10-31T05:21:28.3374982Z pacman-6.0.2/test/pacman/tests/sync897.py
2025-10-31T05:21:28.3375761Z pacman-6.0.2/test/pacman/tests/sync898.py
2025-10-31T05:21:28.3376467Z pacman-6.0.2/test/pacman/tests/sync899.py
2025-10-31T05:21:28.3377085Z pacman-6.0.2/test/pacman/tests/sync900.py
2025-10-31T05:21:28.3377678Z pacman-6.0.2/test/pacman/tests/sync901.py
2025-10-31T05:21:28.3378370Z pacman-6.0.2/test/pacman/tests/sync990.py
2025-10-31T05:21:28.3379010Z pacman-6.0.2/test/pacman/tests/sync992.py
2025-10-31T05:21:28.3379616Z pacman-6.0.2/test/pacman/tests/sync993.py
2025-10-31T05:21:28.3380303Z pacman-6.0.2/test/pacman/tests/sync999.py
2025-10-31T05:21:28.3380918Z pacman-6.0.2/test/pacman/tests/trans001.py
2025-10-31T05:21:28.3381423Z pacman-6.0.2/test/pacman/tests/type001.py
2025-10-31T05:21:28.3382331Z pacman-6.0.2/test/pacman/tests/unresolvable001.py
2025-10-31T05:21:28.3383182Z pacman-6.0.2/test/pacman/tests/upgrade-download-404.py
2025-10-31T05:21:28.3384040Z pacman-6.0.2/test/pacman/tests/upgrade-download-pkg-and-sig-with-filename.py
2025-10-31T05:21:28.3385131Z pacman-6.0.2/test/pacman/tests/upgrade-download-pkg-and-sig-without-filename.py
2025-10-31T05:21:28.3385976Z pacman-6.0.2/test/pacman/tests/upgrade-download-with-xfercommand.py
2025-10-31T05:21:28.3386582Z pacman-6.0.2/test/pacman/tests/upgrade001.py
2025-10-31T05:21:28.3387099Z pacman-6.0.2/test/pacman/tests/upgrade002.py
2025-10-31T05:21:28.3387596Z pacman-6.0.2/test/pacman/tests/upgrade003.py
2025-10-31T05:21:28.3388089Z pacman-6.0.2/test/pacman/tests/upgrade004.py
2025-10-31T05:21:28.3388578Z pacman-6.0.2/test/pacman/tests/upgrade005.py
2025-10-31T05:21:28.3389073Z pacman-6.0.2/test/pacman/tests/upgrade006.py
2025-10-31T05:21:28.3389563Z pacman-6.0.2/test/pacman/tests/upgrade010.py
2025-10-31T05:21:28.3390217Z pacman-6.0.2/test/pacman/tests/upgrade011.py
2025-10-31T05:21:28.3390709Z pacman-6.0.2/test/pacman/tests/upgrade013.py
2025-10-31T05:21:28.3391201Z pacman-6.0.2/test/pacman/tests/upgrade020.py
2025-10-31T05:21:28.3391695Z pacman-6.0.2/test/pacman/tests/upgrade021.py
2025-10-31T05:21:28.3392355Z pacman-6.0.2/test/pacman/tests/upgrade022.py
2025-10-31T05:21:28.3392852Z pacman-6.0.2/test/pacman/tests/upgrade023.py
2025-10-31T05:21:28.3393356Z pacman-6.0.2/test/pacman/tests/upgrade024.py
2025-10-31T05:21:28.3394073Z pacman-6.0.2/test/pacman/tests/upgrade025.py
2025-10-31T05:21:28.3394689Z pacman-6.0.2/test/pacman/tests/upgrade026.py
2025-10-31T05:21:28.3395189Z pacman-6.0.2/test/pacman/tests/upgrade027.py
2025-10-31T05:21:28.3395692Z pacman-6.0.2/test/pacman/tests/upgrade028.py
2025-10-31T05:21:28.3396179Z pacman-6.0.2/test/pacman/tests/upgrade029.py
2025-10-31T05:21:28.3396672Z pacman-6.0.2/test/pacman/tests/upgrade030.py
2025-10-31T05:21:28.3397156Z pacman-6.0.2/test/pacman/tests/upgrade031.py
2025-10-31T05:21:28.3397650Z pacman-6.0.2/test/pacman/tests/upgrade032.py
2025-10-31T05:21:28.3398139Z pacman-6.0.2/test/pacman/tests/upgrade040.py
2025-10-31T05:21:28.3398641Z pacman-6.0.2/test/pacman/tests/upgrade041.py
2025-10-31T05:21:28.3399134Z pacman-6.0.2/test/pacman/tests/upgrade042.py
2025-10-31T05:21:28.3399624Z pacman-6.0.2/test/pacman/tests/upgrade043.py
2025-10-31T05:21:28.3400112Z pacman-6.0.2/test/pacman/tests/upgrade045.py
2025-10-31T05:21:28.3400617Z pacman-6.0.2/test/pacman/tests/upgrade050.py
2025-10-31T05:21:28.3401436Z pacman-6.0.2/test/pacman/tests/upgrade051.py
2025-10-31T05:21:28.3402439Z pacman-6.0.2/test/pacman/tests/upgrade052.py
2025-10-31T05:21:28.3403286Z pacman-6.0.2/test/pacman/tests/upgrade053.py
2025-10-31T05:21:28.3404141Z pacman-6.0.2/test/pacman/tests/upgrade054.py
2025-10-31T05:21:28.3404831Z pacman-6.0.2/test/pacman/tests/upgrade055.py
2025-10-31T05:21:28.3405330Z pacman-6.0.2/test/pacman/tests/upgrade056.py
2025-10-31T05:21:28.3405819Z pacman-6.0.2/test/pacman/tests/upgrade057.py
2025-10-31T05:21:28.3406324Z pacman-6.0.2/test/pacman/tests/upgrade058.py
2025-10-31T05:21:28.3406813Z pacman-6.0.2/test/pacman/tests/upgrade059.py
2025-10-31T05:21:28.3407459Z pacman-6.0.2/test/pacman/tests/upgrade060.py
2025-10-31T05:21:28.3407959Z pacman-6.0.2/test/pacman/tests/upgrade061.py
2025-10-31T05:21:28.3408450Z pacman-6.0.2/test/pacman/tests/upgrade070.py
2025-10-31T05:21:28.3408940Z pacman-6.0.2/test/pacman/tests/upgrade071.py
2025-10-31T05:21:28.3409430Z pacman-6.0.2/test/pacman/tests/upgrade072.py
2025-10-31T05:21:28.3409922Z pacman-6.0.2/test/pacman/tests/upgrade073.py
2025-10-31T05:21:28.3410421Z pacman-6.0.2/test/pacman/tests/upgrade074.py
2025-10-31T05:21:28.3410912Z pacman-6.0.2/test/pacman/tests/upgrade075.py
2025-10-31T05:21:28.3411397Z pacman-6.0.2/test/pacman/tests/upgrade076.py
2025-10-31T05:21:28.3411921Z pacman-6.0.2/test/pacman/tests/upgrade077.py
2025-10-31T05:21:28.3412632Z pacman-6.0.2/test/pacman/tests/upgrade078.py
2025-10-31T05:21:28.3413128Z pacman-6.0.2/test/pacman/tests/upgrade080.py
2025-10-31T05:21:28.3413621Z pacman-6.0.2/test/pacman/tests/upgrade081.py
2025-10-31T05:21:28.3414107Z pacman-6.0.2/test/pacman/tests/upgrade082.py
2025-10-31T05:21:28.3414599Z pacman-6.0.2/test/pacman/tests/upgrade083.py
2025-10-31T05:21:28.3415081Z pacman-6.0.2/test/pacman/tests/upgrade084.py
2025-10-31T05:21:28.3415567Z pacman-6.0.2/test/pacman/tests/upgrade090.py
2025-10-31T05:21:28.3416053Z pacman-6.0.2/test/pacman/tests/upgrade100.py
2025-10-31T05:21:28.3416557Z pacman-6.0.2/test/pacman/tests/xfercommand001.py
2025-10-31T05:21:28.3417073Z pacman-6.0.2/test/pacman/util.py
2025-10-31T05:21:28.3417523Z pacman-6.0.2/test/scripts/
2025-10-31T05:21:28.3417999Z pacman-6.0.2/test/scripts/makepkg-template-tests/
2025-10-31T05:21:28.3418680Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/
2025-10-31T05:21:28.3419504Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/PKGBUILD
2025-10-31T05:21:28.3424991Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/
2025-10-31T05:21:28.3426145Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/build/
2025-10-31T05:21:28.3427145Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/build/build-1.template
2025-10-31T05:21:28.3428117Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/package/
2025-10-31T05:21:28.3429103Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/package/package-1.template
2025-10-31T05:21:28.3430103Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/testcase-config
2025-10-31T05:21:28.3430872Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-key/
2025-10-31T05:21:28.3431514Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-key/PKGBUILD
2025-10-31T05:21:28.3432454Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-key/testcase-config
2025-10-31T05:21:28.3433255Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-missing-name/
2025-10-31T05:21:28.3434110Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-missing-name/PKGBUILD
2025-10-31T05:21:28.3434999Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-missing-name/testcase-config
2025-10-31T05:21:28.3435887Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-unknown-marker/
2025-10-31T05:21:28.3436731Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-unknown-marker/PKGBUILD
2025-10-31T05:21:28.3437648Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-unknown-marker/testcase-config
2025-10-31T05:21:28.3438456Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/
2025-10-31T05:21:28.3439136Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/PKGBUILD
2025-10-31T05:21:28.3439868Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/templates/
2025-10-31T05:21:28.3440683Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/templates/perl-bla-1.2.template
2025-10-31T05:21:28.3441755Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/templates/perl-module-1.0.template
2025-10-31T05:21:28.3442891Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/templates/perl-module-1.1.template
2025-10-31T05:21:28.3443740Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/testcase-config
2025-10-31T05:21:28.3444521Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/
2025-10-31T05:21:28.3445338Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/PKGBUILD
2025-10-31T05:21:28.3446201Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/PKGBUILD.expanded
2025-10-31T05:21:28.3447079Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/
2025-10-31T05:21:28.3447956Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/first/
2025-10-31T05:21:28.3448941Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/first/perl-module-1.0.template
2025-10-31T05:21:28.3449960Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/last/
2025-10-31T05:21:28.3451711Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/last/perl-module-1.0.template
2025-10-31T05:21:28.3453653Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/testcase-config
2025-10-31T05:21:28.3454490Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-file/
2025-10-31T05:21:28.3455241Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-file/PKGBUILD
2025-10-31T05:21:28.3456581Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-file/testcase-config
2025-10-31T05:21:28.3457992Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/
2025-10-31T05:21:28.3458803Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/PKGBUILD
2025-10-31T05:21:28.3459646Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/templates/
2025-10-31T05:21:28.3460575Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/templates/perl-module-1.0.template
2025-10-31T05:21:28.3461492Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/testcase-config
2025-10-31T05:21:28.3462466Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-invalid/
2025-10-31T05:21:28.3463192Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-invalid/PKGBUILD
2025-10-31T05:21:28.3464004Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-invalid/testcase-config
2025-10-31T05:21:28.3464735Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/
2025-10-31T05:21:28.3465426Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/PKGBUILD
2025-10-31T05:21:28.3466166Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/templates/
2025-10-31T05:21:28.3467017Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/templates/foo@-_.+a-1.template
2025-10-31T05:21:28.3467859Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/testcase-config
2025-10-31T05:21:28.3468605Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/
2025-10-31T05:21:28.3469366Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/PKGBUILD
2025-10-31T05:21:28.3470162Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/templates/
2025-10-31T05:21:28.3471091Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/templates/template-without_version.template
2025-10-31T05:21:28.3472243Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/testcase-config
2025-10-31T05:21:28.3473056Z pacman-6.0.2/test/scripts/makepkg-template-tests/testcase-config-template
2025-10-31T05:21:28.3473828Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/
2025-10-31T05:21:28.3474849Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/PKGBUILD
2025-10-31T05:21:28.3475728Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/templates/
2025-10-31T05:21:28.3476698Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/templates/perl-bla-1.2.template
2025-10-31T05:21:28.3477752Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/templates/perl-module-1.0.template
2025-10-31T05:21:28.3478803Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/templates/perl-module-1.1.template
2025-10-31T05:21:28.3479772Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/testcase-config
2025-10-31T05:21:28.3480504Z pacman-6.0.2/test/scripts/makepkg-template_test.sh
2025-10-31T05:21:28.3481029Z pacman-6.0.2/test/scripts/meson.build
2025-10-31T05:21:28.3481530Z pacman-6.0.2/test/scripts/pacman-db-upgrade-v9.py
2025-10-31T05:21:28.3482235Z pacman-6.0.2/test/scripts/parseopts_test.sh
2025-10-31T05:21:28.3482720Z pacman-6.0.2/test/tap.sh
2025-10-31T05:21:28.3483143Z pacman-6.0.2/test/util/
2025-10-31T05:21:28.3483564Z pacman-6.0.2/test/util/meson.build
2025-10-31T05:21:28.3484032Z pacman-6.0.2/test/util/vercmptest.sh
2025-10-31T05:21:28.3484485Z pacman-6.0.2/valgrind.supp
2025-10-31T05:21:28.3485153Z ~/work/linux510/linux510/pacman/pacman-6.0.2 ~/work/linux510/linux510/pacman ~/work/linux510/linux510
2025-10-31T05:21:31.0020571Z The Meson build system
2025-10-31T05:21:31.0021527Z Version: 1.9.1
2025-10-31T05:21:31.0022845Z Source dir: /home/runner/work/linux510/linux510/pacman/pacman-6.0.2
2025-10-31T05:21:31.0024321Z Build dir: /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build
2025-10-31T05:21:31.0025900Z Build type: native build
2025-10-31T05:21:31.0026595Z Project name: pacman
2025-10-31T05:21:31.0027284Z Project version: 6.0.2
2025-10-31T05:21:31.0028367Z C compiler for the host machine: cc (gcc 13.3.0 "cc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0")
2025-10-31T05:21:31.0029614Z C linker for the host machine: cc ld.bfd 2.42
2025-10-31T05:21:31.0030656Z Host machine cpu family: x86_64
2025-10-31T05:21:31.0031548Z Host machine cpu: x86_64
2025-10-31T05:21:31.0032677Z Program python3 found: YES (/usr/bin/python3)
2025-10-31T05:21:31.0033723Z Program bash found: YES (/usr/bin/bash)
2025-10-31T05:21:31.0034872Z WARNING: You should add the boolean check kwarg to the run_command call.
2025-10-31T05:21:31.0036103Z It currently defaults to false,
2025-10-31T05:21:31.0036986Z but it will default to true in meson 2.0.
2025-10-31T05:21:31.0037985Z See also: https://github.com/mesonbuild/meson/issues/9300
2025-10-31T05:21:31.0038992Z Found pkg-config: YES (/usr/bin/pkg-config) 1.8.1
2025-10-31T05:21:31.0039983Z Run-time dependency bash-completion found: YES 2.11
2025-10-31T05:21:31.0040701Z Checking for function "ngettext" : YES
2025-10-31T05:21:31.0041208Z Run-time dependency libarchive found: YES 3.7.2
2025-10-31T05:21:31.0041734Z Run-time dependency libcurl found: YES 8.5.0
2025-10-31T05:21:31.0042501Z Run-time dependency gpgme found: YES 1.18.0
2025-10-31T05:21:31.0042999Z Run-time dependency libcrypto found: YES 3.0.13
2025-10-31T05:21:31.0043486Z Has header "mntent.h" : YES
2025-10-31T05:21:31.0043923Z Has header "sys/mnttab.h" : NO
2025-10-31T05:21:31.0044360Z Has header "sys/mount.h" : YES
2025-10-31T05:21:31.0044791Z Has header "sys/param.h" : YES
2025-10-31T05:21:31.0045228Z Has header "sys/statvfs.h" : YES
2025-10-31T05:21:31.0045668Z Has header "sys/types.h" : YES
2025-10-31T05:21:31.0046099Z Has header "sys/ucred.h" : NO
2025-10-31T05:21:31.0046542Z Has header "termios.h" : YES
2025-10-31T05:21:31.0046994Z Checking for function "getmntent" : YES
2025-10-31T05:21:31.0047478Z Checking for function "getmntinfo" : NO
2025-10-31T05:21:31.0047948Z Checking for function "strndup" : YES
2025-10-31T05:21:31.0048406Z Checking for function "strnlen" : YES
2025-10-31T05:21:31.0049083Z Checking for function "strsep" : YES
2025-10-31T05:21:31.0049557Z Checking for function "swprintf" : YES
2025-10-31T05:21:31.0050016Z Checking for function "tcflush" : YES
2025-10-31T05:21:31.0050541Z Checking whether type "struct stat" has member "st_blksize" : YES
2025-10-31T05:21:31.0051170Z Checking whether type "struct statvfs" has member "f_flag" : YES
2025-10-31T05:21:31.0051787Z Checking whether type "struct statfs" has member "f_flags" : NO
2025-10-31T05:21:31.0052517Z Checking for type "mode_t" : YES
2025-10-31T05:21:31.0052968Z Checking for type "uid_t" : YES
2025-10-31T05:21:31.0053401Z Checking for type "off_t" : YES
2025-10-31T05:21:31.0053832Z Checking for type "pid_t" : YES
2025-10-31T05:21:31.0054276Z Checking for type "size_t" : YES
2025-10-31T05:21:31.0054714Z Checking for type "ssize_t" : YES
2025-10-31T05:21:31.0055197Z Checking for type "int64_t" : YES
2025-10-31T05:21:31.0055674Z Configuring config.h using configuration
2025-10-31T05:21:31.0056187Z Configuring edit-script.sh using configuration
2025-10-31T05:21:31.0057022Z Program edit-script.sh found: YES (/usr/bin/bash /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/scripts/edit-script.sh)
2025-10-31T05:21:31.0057881Z Configuring libmakepkg.pc using configuration
2025-10-31T05:21:31.0058376Z Program msgfmt found: NO
2025-10-31T05:21:31.0059026Z lib/libalpm/po/meson.build:1: WARNING: Gettext not found, all translation (po) targets will be ignored.
2025-10-31T05:21:31.0059733Z Program asciidoc skipped: feature doc disabled
2025-10-31T05:21:31.0060240Z Program a2x skipped: feature doc disabled
2025-10-31T05:21:31.0060767Z WARNING: extract_all_objects called without setting recursive
2025-10-31T05:21:31.0061329Z keyword argument. Meson currently defaults to
2025-10-31T05:21:31.0061856Z non-recursive to maintain backward compatibility but
2025-10-31T05:21:31.0062707Z the default will be changed in meson 2.0.
2025-10-31T05:21:31.0062990Z
2025-10-31T05:21:31.0063194Z Configuring makepkg using configuration
2025-10-31T05:21:31.0063711Z Configuring pacman-db-upgrade using configuration
2025-10-31T05:21:31.0064242Z Configuring pacman-key using configuration
2025-10-31T05:21:31.0064726Z Configuring repo-add using configuration
2025-10-31T05:21:31.0065209Z Configuring repo-remove using configuration
2025-10-31T05:21:31.0065712Z Configuring repo-elephant using configuration
2025-10-31T05:21:31.0066224Z Configuring makepkg.conf using configuration
2025-10-31T05:21:31.0066721Z Configuring pacman.conf using configuration
2025-10-31T05:21:31.0067206Z Checking for size of "ssize_t" : 8
2025-10-31T05:21:31.0067665Z Message: pacman 6.0.2
2025-10-31T05:21:31.0068115Z Build information:
2025-10-31T05:21:31.0068526Z prefix : /usr
2025-10-31T05:21:31.0068967Z sysconfdir : /etc
2025-10-31T05:21:31.0069423Z conf file : /etc/pacman.conf
2025-10-31T05:21:31.0069899Z localstatedir : /var
2025-10-31T05:21:31.0070351Z database dir : /var/lib/pacman/
2025-10-31T05:21:31.0070853Z cache dir : /var/cache/pacman/pkg/
2025-10-31T05:21:31.0071354Z compiler : gcc 13.3.0
2025-10-31T05:21:31.0071797Z
2025-10-31T05:21:31.0072344Z Architecture : x86_64
2025-10-31T05:21:31.0072812Z Host Type : x86_64-linux-gnu
2025-10-31T05:21:31.0073323Z File inode command : stat -c '%i %n'
2025-10-31T05:21:31.0073818Z File seccomp command : file -S
2025-10-31T05:21:31.0074277Z libalpm version : 13.0.2
2025-10-31T05:21:31.0074730Z pacman version : 6.0.2
2025-10-31T05:21:31.0075162Z
2025-10-31T05:21:31.0075549Z Directory and file information:
2025-10-31T05:21:31.0076005Z root working directory : /
2025-10-31T05:21:31.0076466Z package extension : .pkg.tar.gz
2025-10-31T05:21:31.0076938Z source pkg extension : .src.tar.gz
2025-10-31T05:21:31.0077407Z build script name : PKGBUILD
2025-10-31T05:21:31.0078046Z template directory : /usr/share/makepkg-template
2025-10-31T05:21:31.0078551Z
2025-10-31T05:21:31.0078928Z Compilation options:
2025-10-31T05:21:31.0079360Z i18n support : true
2025-10-31T05:21:31.0079809Z Build docs : false
2025-10-31T05:21:31.0080260Z debug build : false
2025-10-31T05:21:31.0080702Z Use libcurl : true
2025-10-31T05:21:31.0081135Z Use GPGME : true
2025-10-31T05:21:31.0081565Z Use OpenSSL : true
2025-10-31T05:21:31.0082191Z Use nettle : false
2025-10-31T05:21:31.0082664Z
2025-10-31T05:21:31.0083052Z Build targets in project: 104
2025-10-31T05:21:31.0083514Z NOTICE: Future-deprecated features used:
2025-10-31T05:21:31.0083996Z * 0.55.0: {'ExternalProgram.path'}
2025-10-31T05:21:31.0084595Z * 0.56.0: {'dependency.get_pkgconfig_variable', 'meson.build_root', 'meson.source_root'}
2025-10-31T05:21:31.0085025Z
2025-10-31T05:21:31.0085207Z pacman 6.0.2
2025-10-31T05:21:31.0085422Z
2025-10-31T05:21:31.0085604Z User defined options
2025-10-31T05:21:31.0086021Z buildtype : plain
2025-10-31T05:21:31.0086447Z doc : disabled
2025-10-31T05:21:31.0086875Z doxygen : enabled
2025-10-31T05:21:31.0087311Z ldconfig : /usr/bin/ldconfig
2025-10-31T05:21:31.0087767Z prefix : /usr
2025-10-31T05:21:31.0088200Z scriptlet-shell: /usr/bin/bash
2025-10-31T05:21:31.0088465Z
2025-10-31T05:21:31.0088766Z Found ninja-1.13.0.git.kitware.jobserver-pipe-1 at /usr/local/bin/ninja
2025-10-31T05:21:31.0089605Z WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.
2025-10-31T05:21:31.2785975Z ninja: Entering directory `/home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build'
2025-10-31T05:21:31.3803481Z [1/156] Compiling C object libcommon.a.p/src_common_ini.c.o
2025-10-31T05:21:31.3963452Z [2/156] Compiling C object libcommon.a.p/src_common_util-common.c.o
2025-10-31T05:21:31.4052816Z [3/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_alpm_list.c.o
2025-10-31T05:21:31.4178632Z [4/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_base64.c.o
2025-10-31T05:21:31.5094935Z [5/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_backup.c.o
2025-10-31T05:21:31.5185122Z [6/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_alpm.c.o
2025-10-31T05:21:31.5858928Z [7/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_add.c.o
2025-10-31T05:21:31.6192575Z [8/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_be_package.c.o
2025-10-31T05:21:31.6323126Z [9/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_be_sync.c.o
2025-10-31T05:21:31.6702690Z [10/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_be_local.c.o
2025-10-31T05:21:31.6753989Z [11/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_conflict.c.o
2025-10-31T05:21:31.6923500Z [12/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_db.c.o
2025-10-31T05:21:31.7725599Z [13/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_error.c.o
2025-10-31T05:21:31.7769079Z [14/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_filelist.c.o
2025-10-31T05:21:31.7908924Z [15/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_deps.c.o
2025-10-31T05:21:31.8005712Z [16/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_graph.c.o
2025-10-31T05:21:31.9462757Z [17/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_group.c.o
2025-10-31T05:21:31.9483335Z [18/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_diskspace.c.o
2025-10-31T05:21:31.9526952Z [19/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_hook.c.o
2025-10-31T05:21:31.9710273Z [20/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_log.c.o
2025-10-31T05:21:32.0262973Z [21/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_dload.c.o
2025-10-31T05:21:32.0288250Z [22/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_handle.c.o
2025-10-31T05:21:32.1014910Z [23/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_rawstr.c.o
2025-10-31T05:21:32.1219760Z [24/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_remove.c.o
2025-10-31T05:21:32.1784835Z [25/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_pkghash.c.o
2025-10-31T05:21:32.2258273Z [26/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_package.c.o
2025-10-31T05:21:32.2444991Z [27/156] Generating scripts/repo-add.sh.in with a custom command
2025-10-31T05:21:32.2507639Z [28/156] Linking static target libcommon.a
2025-10-31T05:21:32.2619609Z [29/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_trans.c.o
2025-10-31T05:21:32.2691374Z [30/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_sync.c.o
2025-10-31T05:21:32.2917806Z [31/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_signing.c.o
2025-10-31T05:21:32.3371684Z [32/156] Compiling C object pacman.p/src_pacman_database.c.o
2025-10-31T05:21:32.3450704Z [33/156] Compiling C object pacman.p/src_pacman_check.c.o
2025-10-31T05:21:32.3523773Z [34/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_version.c.o
2025-10-31T05:21:32.3739349Z [35/156] Compiling C object pacman.p/src_pacman_deptest.c.o
2025-10-31T05:21:32.4278674Z [36/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_util.c.o
2025-10-31T05:21:32.4294016Z ../lib/libalpm/util.c: In function ‘md5_file’:
2025-10-31T05:21:32.4296032Z ../lib/libalpm/util.c:936:9: warning: ‘MD5_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-31T05:21:32.4297518Z 936 | MD5_Init(&ctx);
2025-10-31T05:21:32.4298497Z | ^~~~~~~~
2025-10-31T05:21:32.4299688Z In file included from ../lib/libalpm/util.c:43:
2025-10-31T05:21:32.4300684Z /usr/include/openssl/md5.h:49:27: note: declared here
2025-10-31T05:21:32.4301664Z 49 | OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c);
2025-10-31T05:21:32.4331530Z | ^~~~~~~~
2025-10-31T05:21:32.4333294Z ../lib/libalpm/util.c:946:17: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-31T05:21:32.4334659Z 946 | MD5_Update(&ctx, buf, n);
2025-10-31T05:21:32.4335555Z | ^~~~~~~~~~
2025-10-31T05:21:32.4336452Z /usr/include/openssl/md5.h:50:27: note: declared here
2025-10-31T05:21:32.4337660Z 50 | OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
2025-10-31T05:21:32.4338769Z | ^~~~~~~~~~
2025-10-31T05:21:32.4340364Z ../lib/libalpm/util.c:960:9: warning: ‘MD5_Final’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-31T05:21:32.4341674Z 960 | MD5_Final(output, &ctx);
2025-10-31T05:21:32.4348255Z | ^~~~~~~~~
2025-10-31T05:21:32.4349095Z /usr/include/openssl/md5.h:51:27: note: declared here
2025-10-31T05:21:32.4350188Z 51 | OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c);
2025-10-31T05:21:32.4351203Z | ^~~~~~~~~
2025-10-31T05:21:32.4359851Z ../lib/libalpm/util.c: In function ‘sha256_file’:
2025-10-31T05:21:32.4361429Z ../lib/libalpm/util.c:992:9: warning: ‘SHA256_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-31T05:21:32.4362926Z 992 | SHA256_Init(&ctx);
2025-10-31T05:21:32.4363691Z | ^~~~~~~~~~~
2025-10-31T05:21:32.4364486Z In file included from ../lib/libalpm/util.c:44:
2025-10-31T05:21:32.4365452Z /usr/include/openssl/sha.h:73:27: note: declared here
2025-10-31T05:21:32.4366456Z 73 | OSSL_DEPRECATEDIN_3_0 int SHA256_Init(SHA256_CTX *c);
2025-10-31T05:21:32.4367382Z | ^~~~~~~~~~~
2025-10-31T05:21:32.4368858Z ../lib/libalpm/util.c:1002:17: warning: ‘SHA256_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-31T05:21:32.4370160Z 1002 | SHA256_Update(&ctx, buf, n);
2025-10-31T05:21:32.4371031Z | ^~~~~~~~~~~~~
2025-10-31T05:21:32.4371878Z /usr/include/openssl/sha.h:74:27: note: declared here
2025-10-31T05:21:32.4403523Z 74 | OSSL_DEPRECATEDIN_3_0 int SHA256_Update(SHA256_CTX *c,
2025-10-31T05:21:32.4404522Z | ^~~~~~~~~~~~~
2025-10-31T05:21:32.4406128Z ../lib/libalpm/util.c:1016:9: warning: ‘SHA256_Final’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-31T05:21:32.4407431Z 1016 | SHA256_Final(output, &ctx);
2025-10-31T05:21:32.4408258Z | ^~~~~~~~~~~~
2025-10-31T05:21:32.4409107Z /usr/include/openssl/sha.h:76:27: note: declared here
2025-10-31T05:21:32.4410263Z 76 | OSSL_DEPRECATEDIN_3_0 int SHA256_Final(unsigned char *md, SHA256_CTX *c);
2025-10-31T05:21:32.4411318Z | ^~~~~~~~~~~~
2025-10-31T05:21:32.4412463Z [37/156] Compiling C object pacman.p/src_pacman_files.c.o
2025-10-31T05:21:32.4494180Z [38/156] Linking static target libalpm_objlib.a
2025-10-31T05:21:32.4626928Z [39/156] Compiling C object pacman.p/src_pacman_query.c.o
2025-10-31T05:21:32.4695838Z [40/156] Compiling C object pacman.p/src_pacman_conf.c.o
2025-10-31T05:21:32.5227245Z [41/156] Compiling C object pacman.p/src_pacman_package.c.o
2025-10-31T05:21:32.5243998Z [42/156] Compiling C object pacman.p/src_pacman_sighandler.c.o
2025-10-31T05:21:32.5363400Z [43/156] Compiling C object pacman.p/src_pacman_remove.c.o
2025-10-31T05:21:32.5419756Z [44/156] Compiling C object pacman.p/src_pacman_pacman.c.o
2025-10-31T05:21:32.5560978Z [45/156] Linking target libalpm.so.13.0.2
2025-10-31T05:21:32.5823659Z [46/156] Compiling C object pacman.p/src_pacman_upgrade.c.o
2025-10-31T05:21:32.6000039Z [47/156] Compiling C object pacman.p/src_pacman_sync.c.o
2025-10-31T05:21:32.6436702Z [48/156] Compiling C object pacman.p/src_pacman_callback.c.o
2025-10-31T05:21:32.6868020Z [49/156] Compiling C object pacman-conf.p/src_pacman_pacman-conf.c.o
2025-10-31T05:21:32.7134543Z [50/156] Compiling C object pacman-conf.p/src_pacman_callback.c.o
2025-10-31T05:21:32.7495646Z [51/156] Compiling C object vercmp.p/src_util_vercmp.c.o
2025-10-31T05:21:32.7573822Z [52/156] Generating scripts/makepkg-template.pl.in with a custom command
2025-10-31T05:21:32.7676146Z [53/156] Generating scripts/makepkg.sh.in with a custom command
2025-10-31T05:21:32.7752596Z [54/156] Generating scripts/pacman-db-upgrade.sh.in with a custom command
2025-10-31T05:21:32.7834722Z [55/156] Generating scripts/pacman-key.sh.in with a custom command
2025-10-31T05:21:32.7891184Z [56/156] Generating scripts/repo-remove with a custom command
2025-10-31T05:21:32.7919756Z [57/156] Generating scripts/repo-elephant with a custom command
2025-10-31T05:21:32.7933264Z [58/156] Compiling C object testpkg.p/src_util_testpkg.c.o
2025-10-31T05:21:32.8001496Z [59/156] Generating scripts/libmakepkg/buildenv/buildenv_buildflags_sh_in with a custom command
2025-10-31T05:21:32.8039558Z [60/156] Generating scripts/libmakepkg/libmakepkg_buildenv with a custom command
2025-10-31T05:21:32.8071062Z [61/156] Generating scripts/libmakepkg/buildenv/buildenv_compiler_sh_in with a custom command
2025-10-31T05:21:32.8126051Z [62/156] Generating scripts/libmakepkg/buildenv/buildenv_debugflags_sh_in with a custom command
2025-10-31T05:21:32.8143725Z [63/156] Generating scripts/libmakepkg/buildenv/buildenv_lto_sh_in with a custom command
2025-10-31T05:21:32.8191383Z [64/156] Generating scripts/libmakepkg/buildenv/buildenv_makeflags_sh_in with a custom command
2025-10-31T05:21:32.8218503Z [65/156] Compiling C object pacman-conf.p/src_pacman_util.c.o
2025-10-31T05:21:32.8247168Z [66/156] Generating scripts/libmakepkg/libmakepkg_executable with a custom command
2025-10-31T05:21:32.8278880Z [67/156] Generating scripts/libmakepkg/executable/executable_checksum_sh_in with a custom command
2025-10-31T05:21:32.8291395Z [68/156] Generating scripts/libmakepkg/executable/executable_ccache_sh_in with a custom command
2025-10-31T05:21:32.8319231Z [69/156] Generating scripts/libmakepkg/executable/executable_distcc_sh_in with a custom command
2025-10-31T05:21:32.8352779Z [70/156] Generating scripts/libmakepkg/executable/executable_gpg_sh_in with a custom command
2025-10-31T05:21:32.8358026Z [71/156] Compiling C object pacman-conf.p/src_pacman_conf.c.o
2025-10-31T05:21:32.8377634Z [72/156] Generating scripts/libmakepkg/executable/executable_fakeroot_sh_in with a custom command
2025-10-31T05:21:32.8397192Z [73/156] Generating scripts/libmakepkg/executable/executable_gzip_sh_in with a custom command
2025-10-31T05:21:32.8406996Z [74/156] Generating scripts/libmakepkg/executable/executable_pacman_sh_in with a custom command
2025-10-31T05:21:32.8428437Z [75/156] Generating scripts/libmakepkg/executable/executable_strip_sh_in with a custom command
2025-10-31T05:21:32.8458662Z [76/156] Generating scripts/libmakepkg/executable/executable_vcs_sh_in with a custom command
2025-10-31T05:21:32.8471119Z [77/156] Generating scripts/libmakepkg/libmakepkg_integrity with a custom command
2025-10-31T05:21:32.8482283Z [78/156] Generating scripts/libmakepkg/executable/executable_sudo_sh_in with a custom command
2025-10-31T05:21:32.8489784Z [79/156] Generating scripts/libmakepkg/integrity/integrity_generate_checksum_sh_in with a custom command
2025-10-31T05:21:32.8516024Z [80/156] Generating scripts/libmakepkg/integrity/integrity_generate_signature_sh_in with a custom command
2025-10-31T05:21:32.8535710Z [81/156] Generating scripts/libmakepkg/integrity/integrity_verify_checksum_sh_in with a custom command
2025-10-31T05:21:32.8553878Z [82/156] Generating scripts/libmakepkg/integrity/integrity_verify_signature_sh_in with a custom command
2025-10-31T05:21:32.8579167Z [83/156] Generating scripts/libmakepkg/libmakepkg_lint_config with a custom command
2025-10-31T05:21:32.8585486Z [84/156] Generating scripts/libmakepkg/lint_config/lint_config_ext_sh_in with a custom command
2025-10-31T05:21:32.8595385Z [85/156] Compiling C object pacman.p/src_pacman_util.c.o
2025-10-31T05:21:32.8621602Z [86/156] Generating scripts/libmakepkg/lint_config/lint_config_paths_sh_in with a custom command
2025-10-31T05:21:32.8624054Z [87/156] Generating scripts/libmakepkg/lint_config/lint_config_source_date_epoch_sh_in with a custom command
2025-10-31T05:21:32.8650935Z [88/156] Generating scripts/libmakepkg/libmakepkg_lint_package with a custom command
2025-10-31T05:21:32.8653144Z [89/156] Generating scripts/libmakepkg/lint_config/lint_config_variable_sh_in with a custom command
2025-10-31T05:21:32.8667364Z [90/156] Generating scripts/libmakepkg/lint_package/lint_package_build_references_sh_in with a custom command
2025-10-31T05:21:32.8683551Z [91/156] Generating scripts/libmakepkg/lint_package/lint_package_dotfiles_sh_in with a custom command
2025-10-31T05:21:32.8685614Z [92/156] Generating scripts/libmakepkg/lint_package/lint_package_file_names_sh_in with a custom command
2025-10-31T05:21:32.8700359Z [93/156] Generating scripts/libmakepkg/lint_package/lint_package_missing_backup_sh_in with a custom command
2025-10-31T05:21:32.8719197Z [94/156] Generating scripts/libmakepkg/libmakepkg_lint_pkgbuild with a custom command
2025-10-31T05:21:32.8744993Z [95/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_arch_sh_in with a custom command
2025-10-31T05:21:32.8747007Z [96/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_backup_sh_in with a custom command
2025-10-31T05:21:32.8760627Z [97/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_arch_specific_sh_in with a custom command
2025-10-31T05:21:32.8766535Z [98/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_changelog_sh_in with a custom command
2025-10-31T05:21:32.8791021Z [99/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_conflicts_sh_in with a custom command
2025-10-31T05:21:32.8803980Z [100/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_depends_sh_in with a custom command
2025-10-31T05:21:32.8809986Z [101/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_checkdepends_sh_in with a custom command
2025-10-31T05:21:32.8823059Z [102/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_fullpkgver_sh_in with a custom command
2025-10-31T05:21:32.8828854Z [103/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_epoch_sh_in with a custom command
2025-10-31T05:21:32.8854165Z [104/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_install_sh_in with a custom command
2025-10-31T05:21:32.8858198Z [105/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_makedepends_sh_in with a custom command
2025-10-31T05:21:32.8880520Z [106/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_options_sh_in with a custom command
2025-10-31T05:21:32.8894248Z [107/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_optdepends_sh_in with a custom command
2025-10-31T05:21:32.8911840Z [108/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_package_function_variable_sh_in with a custom command
2025-10-31T05:21:32.8916914Z [109/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_package_function_sh_in with a custom command
2025-10-31T05:21:32.8926271Z [110/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkgbase_sh_in with a custom command
2025-10-31T05:21:32.8939933Z [111/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkglist_sh_in with a custom command
2025-10-31T05:21:32.8956366Z [112/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkgname_sh_in with a custom command
2025-10-31T05:21:32.8969367Z [113/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkgrel_sh_in with a custom command
2025-10-31T05:21:32.8993137Z [114/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_provides_sh_in with a custom command
2025-10-31T05:21:32.9005002Z [115/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkgver_sh_in with a custom command
2025-10-31T05:21:32.9014001Z [116/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_source_sh_in with a custom command
2025-10-31T05:21:32.9026285Z [117/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_variable_sh_in with a custom command
2025-10-31T05:21:32.9043581Z [118/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_util_sh_in with a custom command
2025-10-31T05:21:32.9050792Z [119/156] Generating scripts/libmakepkg/libmakepkg_reproducible with a custom command
2025-10-31T05:21:32.9076289Z [120/156] Generating scripts/libmakepkg/reproducible/reproducible_python_sh_in with a custom command
2025-10-31T05:21:32.9094132Z [121/156] Generating scripts/libmakepkg/libmakepkg_source with a custom command
2025-10-31T05:21:32.9096006Z [122/156] Generating scripts/libmakepkg/source/source_bzr_sh_in with a custom command
2025-10-31T05:21:32.9106794Z [123/156] Generating scripts/libmakepkg/source/source_fossil_sh_in with a custom command
2025-10-31T05:21:32.9117280Z [124/156] Generating scripts/libmakepkg/source/source_file_sh_in with a custom command
2025-10-31T05:21:32.9145391Z [125/156] Generating scripts/libmakepkg/source/source_git_sh_in with a custom command
2025-10-31T05:21:32.9151134Z [126/156] Generating scripts/libmakepkg/source/source_hg_sh_in with a custom command
2025-10-31T05:21:32.9164464Z [127/156] Generating scripts/libmakepkg/source/source_local_sh_in with a custom command
2025-10-31T05:21:32.9173663Z [128/156] Generating scripts/libmakepkg/source/source_svn_sh_in with a custom command
2025-10-31T05:21:32.9177208Z [129/156] Generating scripts/libmakepkg/libmakepkg_srcinfo with a custom command
2025-10-31T05:21:32.9200403Z [130/156] Generating scripts/libmakepkg/libmakepkg_tidy with a custom command
2025-10-31T05:21:32.9228265Z [131/156] Generating scripts/libmakepkg/tidy/tidy_docs_sh_in with a custom command
2025-10-31T05:21:32.9237847Z [132/156] Generating scripts/libmakepkg/tidy/tidy_libtool_sh_in with a custom command
2025-10-31T05:21:32.9242588Z [133/156] Generating scripts/libmakepkg/tidy/tidy_purge_sh_in with a custom command
2025-10-31T05:21:32.9248427Z [134/156] Generating scripts/libmakepkg/tidy/tidy_emptydirs_sh_in with a custom command
2025-10-31T05:21:32.9263416Z [135/156] Generating scripts/libmakepkg/tidy/tidy_staticlibs_sh_in with a custom command
2025-10-31T05:21:32.9285387Z [136/156] Generating scripts/libmakepkg/tidy/tidy_strip_sh_in with a custom command
2025-10-31T05:21:32.9305337Z [137/156] Generating scripts/libmakepkg/tidy/tidy_zipman_sh_in with a custom command
2025-10-31T05:21:32.9310908Z [138/156] Generating scripts/libmakepkg/libmakepkg_util with a custom command
2025-10-31T05:21:32.9318857Z [139/156] Generating scripts/libmakepkg/util/util_compress_sh_in with a custom command
2025-10-31T05:21:32.9333625Z [140/156] Generating scripts/libmakepkg/util/util_config_sh_in with a custom command
2025-10-31T05:21:32.9359484Z [141/156] Generating scripts/libmakepkg/util/util_error_sh_in with a custom command
2025-10-31T05:21:32.9387142Z [142/156] Generating scripts/libmakepkg/util/util_dirsize_sh_in with a custom command
2025-10-31T05:21:32.9399739Z [143/156] Generating scripts/libmakepkg/util/util_message_sh_in with a custom command
2025-10-31T05:21:32.9403276Z [144/156] Generating scripts/libmakepkg/util/util_parseopts_sh_in with a custom command
2025-10-31T05:21:32.9404728Z [145/156] Generating scripts/libmakepkg/util/util_option_sh_in with a custom command
2025-10-31T05:21:32.9422984Z [146/156] Generating scripts/libmakepkg/util/util_pkgbuild_sh_in with a custom command
2025-10-31T05:21:32.9431784Z [147/156] Generating scripts/libmakepkg/util/util_schema_sh_in with a custom command
2025-10-31T05:21:32.9448567Z [148/156] Generating scripts/libmakepkg/util/util_source_sh_in with a custom command
2025-10-31T05:21:32.9450214Z [149/156] Generating scripts/libmakepkg/util/util_util_sh_in with a custom command
2025-10-31T05:21:32.9461252Z [150/156] Generating scripts/bash_completion with a custom command
2025-10-31T05:21:32.9481574Z [151/156] Generating scripts/zsh_completion with a custom command
2025-10-31T05:21:32.9729321Z [152/156] Linking target vercmp
2025-10-31T05:21:38.1788006Z [153/156] Generating symbol file libalpm.so.13.0.2.p/libalpm.so.13.0.2.symbols
2025-10-31T05:21:38.2659349Z [154/156] Linking target testpkg
2025-10-31T05:21:38.3088984Z [155/156] Linking target pacman-conf
2025-10-31T05:21:38.3105358Z [156/156] Linking target pacman
2025-10-31T05:21:38.3117187Z INFO: autodetecting backend as ninja
2025-10-31T05:21:38.3118499Z INFO: calculating backend command to run: /usr/local/bin/ninja -C /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build
2025-10-31T05:21:38.5755198Z ninja: Entering directory `/home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build'
2025-10-31T05:21:38.5782576Z ninja: no work to do.
2025-10-31T05:21:38.6023410Z Installing scripts/makepkg-template to /usr/bin
2025-10-31T05:21:38.6024881Z Installing scripts/makepkg to /usr/bin
2025-10-31T05:21:38.6026309Z Installing scripts/pacman-db-upgrade to /usr/bin
2025-10-31T05:21:38.6027815Z Installing scripts/pacman-key to /usr/bin
2025-10-31T05:21:38.6028945Z Installing scripts/repo-add to /usr/bin
2025-10-31T05:21:38.6030275Z Installing scripts/libmakepkg/buildenv.sh to /usr/share/makepkg
2025-10-31T05:21:38.6031926Z Installing scripts/libmakepkg/buildenv/buildflags.sh to /usr/share/makepkg/buildenv
2025-10-31T05:21:38.6034102Z Installing scripts/libmakepkg/buildenv/compiler.sh to /usr/share/makepkg/buildenv
2025-10-31T05:21:38.6036016Z Installing scripts/libmakepkg/buildenv/debugflags.sh to /usr/share/makepkg/buildenv
2025-10-31T05:21:38.6037343Z Installing scripts/libmakepkg/buildenv/lto.sh to /usr/share/makepkg/buildenv
2025-10-31T05:21:38.6038371Z Installing scripts/libmakepkg/buildenv/makeflags.sh to /usr/share/makepkg/buildenv
2025-10-31T05:21:38.6039117Z Installing scripts/libmakepkg/executable.sh to /usr/share/makepkg
2025-10-31T05:21:38.6039856Z Installing scripts/libmakepkg/executable/ccache.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6040685Z Installing scripts/libmakepkg/executable/checksum.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6041481Z Installing scripts/libmakepkg/executable/distcc.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6042517Z Installing scripts/libmakepkg/executable/fakeroot.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6043526Z Installing scripts/libmakepkg/executable/gpg.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6044317Z Installing scripts/libmakepkg/executable/gzip.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6045100Z Installing scripts/libmakepkg/executable/pacman.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6045883Z Installing scripts/libmakepkg/executable/strip.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6046656Z Installing scripts/libmakepkg/executable/sudo.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6047419Z Installing scripts/libmakepkg/executable/vcs.sh to /usr/share/makepkg/executable
2025-10-31T05:21:38.6048131Z Installing scripts/libmakepkg/integrity.sh to /usr/share/makepkg
2025-10-31T05:21:38.6048879Z Installing scripts/libmakepkg/integrity/generate_checksum.sh to /usr/share/makepkg/integrity
2025-10-31T05:21:38.6049743Z Installing scripts/libmakepkg/integrity/generate_signature.sh to /usr/share/makepkg/integrity
2025-10-31T05:21:38.6050596Z Installing scripts/libmakepkg/integrity/verify_checksum.sh to /usr/share/makepkg/integrity
2025-10-31T05:21:38.6051432Z Installing scripts/libmakepkg/integrity/verify_signature.sh to /usr/share/makepkg/integrity
2025-10-31T05:21:38.6052376Z Installing scripts/libmakepkg/lint_config.sh to /usr/share/makepkg
2025-10-31T05:21:38.6053093Z Installing scripts/libmakepkg/lint_config/ext.sh to /usr/share/makepkg/lint_config
2025-10-31T05:21:38.6053881Z Installing scripts/libmakepkg/lint_config/paths.sh to /usr/share/makepkg/lint_config
2025-10-31T05:21:38.6054701Z Installing scripts/libmakepkg/lint_config/source_date_epoch.sh to /usr/share/makepkg/lint_config
2025-10-31T05:21:38.6055535Z Installing scripts/libmakepkg/lint_config/variable.sh to /usr/share/makepkg/lint_config
2025-10-31T05:21:38.6056253Z Installing scripts/libmakepkg/lint_package.sh to /usr/share/makepkg
2025-10-31T05:21:38.6057158Z Installing scripts/libmakepkg/lint_package/build_references.sh to /usr/share/makepkg/lint_package
2025-10-31T05:21:38.6058024Z Installing scripts/libmakepkg/lint_package/dotfiles.sh to /usr/share/makepkg/lint_package
2025-10-31T05:21:38.6058843Z Installing scripts/libmakepkg/lint_package/file_names.sh to /usr/share/makepkg/lint_package
2025-10-31T05:21:38.6059687Z Installing scripts/libmakepkg/lint_package/missing_backup.sh to /usr/share/makepkg/lint_package
2025-10-31T05:21:38.6060477Z Installing scripts/libmakepkg/lint_pkgbuild.sh to /usr/share/makepkg
2025-10-31T05:21:38.6061216Z Installing scripts/libmakepkg/lint_pkgbuild/arch.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6062214Z Installing scripts/libmakepkg/lint_pkgbuild/arch_specific.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6063070Z Installing scripts/libmakepkg/lint_pkgbuild/backup.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6063891Z Installing scripts/libmakepkg/lint_pkgbuild/changelog.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6064745Z Installing scripts/libmakepkg/lint_pkgbuild/checkdepends.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6065596Z Installing scripts/libmakepkg/lint_pkgbuild/conflicts.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6066417Z Installing scripts/libmakepkg/lint_pkgbuild/depends.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6067257Z Installing scripts/libmakepkg/lint_pkgbuild/epoch.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6068072Z Installing scripts/libmakepkg/lint_pkgbuild/fullpkgver.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6068897Z Installing scripts/libmakepkg/lint_pkgbuild/install.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6069721Z Installing scripts/libmakepkg/lint_pkgbuild/makedepends.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6070581Z Installing scripts/libmakepkg/lint_pkgbuild/optdepends.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6071423Z Installing scripts/libmakepkg/lint_pkgbuild/options.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6072638Z Installing scripts/libmakepkg/lint_pkgbuild/package_function.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6073619Z Installing scripts/libmakepkg/lint_pkgbuild/package_function_variable.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6074518Z Installing scripts/libmakepkg/lint_pkgbuild/pkgbase.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6075331Z Installing scripts/libmakepkg/lint_pkgbuild/pkglist.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6076144Z Installing scripts/libmakepkg/lint_pkgbuild/pkgname.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6076958Z Installing scripts/libmakepkg/lint_pkgbuild/pkgrel.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6077756Z Installing scripts/libmakepkg/lint_pkgbuild/pkgver.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6078578Z Installing scripts/libmakepkg/lint_pkgbuild/provides.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6079386Z Installing scripts/libmakepkg/lint_pkgbuild/source.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6080180Z Installing scripts/libmakepkg/lint_pkgbuild/util.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6080992Z Installing scripts/libmakepkg/lint_pkgbuild/variable.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-31T05:21:38.6081728Z Installing scripts/libmakepkg/reproducible.sh to /usr/share/makepkg
2025-10-31T05:21:38.6082641Z Installing scripts/libmakepkg/reproducible/python.sh to /usr/share/makepkg/reproducible
2025-10-31T05:21:38.6083845Z Installing scripts/libmakepkg/source.sh to /usr/share/makepkg
2025-10-31T05:21:38.6084687Z Installing scripts/libmakepkg/source/bzr.sh to /usr/share/makepkg/source
2025-10-31T05:21:38.6085388Z Installing scripts/libmakepkg/source/file.sh to /usr/share/makepkg/source
2025-10-31T05:21:38.6086087Z Installing scripts/libmakepkg/source/fossil.sh to /usr/share/makepkg/source
2025-10-31T05:21:38.6086944Z Installing scripts/libmakepkg/source/git.sh to /usr/share/makepkg/source
2025-10-31T05:21:38.6087639Z Installing scripts/libmakepkg/source/hg.sh to /usr/share/makepkg/source
2025-10-31T05:21:38.6088333Z Installing scripts/libmakepkg/source/local.sh to /usr/share/makepkg/source
2025-10-31T05:21:38.6089035Z Installing scripts/libmakepkg/source/svn.sh to /usr/share/makepkg/source
2025-10-31T05:21:38.6089692Z Installing scripts/libmakepkg/srcinfo.sh to /usr/share/makepkg
2025-10-31T05:21:38.6090291Z Installing scripts/libmakepkg/tidy.sh to /usr/share/makepkg
2025-10-31T05:21:38.6090914Z Installing scripts/libmakepkg/tidy/docs.sh to /usr/share/makepkg/tidy
2025-10-31T05:21:38.6091596Z Installing scripts/libmakepkg/tidy/emptydirs.sh to /usr/share/makepkg/tidy
2025-10-31T05:21:38.6092538Z Installing scripts/libmakepkg/tidy/libtool.sh to /usr/share/makepkg/tidy
2025-10-31T05:21:38.6093228Z Installing scripts/libmakepkg/tidy/purge.sh to /usr/share/makepkg/tidy
2025-10-31T05:21:38.6093931Z Installing scripts/libmakepkg/tidy/staticlibs.sh to /usr/share/makepkg/tidy
2025-10-31T05:21:38.6094624Z Installing scripts/libmakepkg/tidy/strip.sh to /usr/share/makepkg/tidy
2025-10-31T05:21:38.6095299Z Installing scripts/libmakepkg/tidy/zipman.sh to /usr/share/makepkg/tidy
2025-10-31T05:21:38.6095937Z Installing scripts/libmakepkg/util.sh to /usr/share/makepkg
2025-10-31T05:21:38.6096575Z Installing scripts/libmakepkg/util/compress.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6097270Z Installing scripts/libmakepkg/util/config.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6097956Z Installing scripts/libmakepkg/util/dirsize.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6098631Z Installing scripts/libmakepkg/util/error.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6099302Z Installing scripts/libmakepkg/util/message.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6099980Z Installing scripts/libmakepkg/util/option.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6100670Z Installing scripts/libmakepkg/util/parseopts.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6101363Z Installing scripts/libmakepkg/util/pkgbuild.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6102263Z Installing scripts/libmakepkg/util/schema.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6102958Z Installing scripts/libmakepkg/util/source.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6103619Z Installing scripts/libmakepkg/util/util.sh to /usr/share/makepkg/util
2025-10-31T05:21:38.6104279Z Installing scripts/pacman to /usr/share/bash-completion/completions
2025-10-31T05:21:38.6104894Z Installing scripts/_pacman to /usr/share/zsh/site-functions
2025-10-31T05:21:38.6105477Z Installing libalpm.so.13.0.2 to /usr/lib/x86_64-linux-gnu
2025-10-31T05:21:38.6106011Z Installing pacman to /usr/bin
2025-10-31T05:21:38.6106450Z Installing pacman-conf to /usr/bin
2025-10-31T05:21:38.6106902Z Installing testpkg to /usr/bin
2025-10-31T05:21:38.6107332Z Installing vercmp to /usr/bin
2025-10-31T05:21:38.6108021Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/lib/libalpm/alpm.h to /usr/include
2025-10-31T05:21:38.6115126Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/lib/libalpm/alpm_list.h to /usr/include
2025-10-31T05:21:38.6116221Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/scripts/libmakepkg.pc to /usr/share/pkgconfig
2025-10-31T05:21:38.6117397Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/meson-private/libalpm.pc to /usr/lib/x86_64-linux-gnu/pkgconfig
2025-10-31T05:21:38.6118305Z '/usr/bin/repo-remove' -> 'repo-add'
2025-10-31T05:21:38.6125006Z '/usr/bin/repo-elephant' -> 'repo-add'
2025-10-31T05:21:38.6166339Z '/usr/share/bash-completion/completions/pacman-key' -> 'pacman'
2025-10-31T05:21:38.6211211Z '/usr/share/bash-completion/completions/makepkg' -> 'pacman'
2025-10-31T05:21:38.6288211Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/makepkg.conf to /etc
2025-10-31T05:21:38.6289891Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/pacman.conf to /etc
2025-10-31T05:21:38.6291485Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/proto/PKGBUILD-split.proto to /usr/share/pacman
2025-10-31T05:21:38.6293371Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/proto/PKGBUILD-vcs.proto to /usr/share/pacman
2025-10-31T05:21:38.6294960Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/proto/PKGBUILD.proto to /usr/share/pacman
2025-10-31T05:21:38.6296538Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/proto/proto.install to /usr/share/pacman
2025-10-31T05:21:38.6297971Z Installing symlink pointing to libalpm.so.13.0.2 to /usr/lib/x86_64-linux-gnu/libalpm.so.13
2025-10-31T05:21:38.6299218Z Installing symlink pointing to libalpm.so.13 to /usr/lib/x86_64-linux-gnu/libalpm.so
2025-10-31T05:21:38.6300949Z Running custom install script '/bin/sh /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build-aux/meson-make-symlink.sh repo-add /usr/bin/repo-remove'
2025-10-31T05:21:38.6303286Z Running custom install script '/bin/sh /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build-aux/meson-make-symlink.sh repo-add /usr/bin/repo-elephant'
2025-10-31T05:21:38.6305657Z Running custom install script '/bin/sh /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build-aux/meson-make-symlink.sh pacman /usr/share/bash-completion/completions/pacman-key'
2025-10-31T05:21:38.6308040Z Running custom install script '/bin/sh /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build-aux/meson-make-symlink.sh pacman /usr/share/bash-completion/completions/makepkg'
2025-10-31T05:21:38.6309803Z Running custom install script '/usr/bin/sh -c mkdir -p "$DESTDIR//var/lib/pacman/"'
2025-10-31T05:21:38.6311003Z Running custom install script '/usr/bin/sh -c mkdir -p "$DESTDIR//var/cache/pacman/pkg/"'
2025-10-31T05:21:38.6312412Z Running custom install script '/usr/bin/sh -c mkdir -p "$DESTDIR//usr/share/makepkg-template/"'
2025-10-31T05:21:38.6313702Z Running custom install script '/usr/bin/sh -c mkdir -p "$DESTDIR//usr/share/libalpm/hooks/"'
2025-10-31T05:21:38.6615807Z ~/work/linux510/linux510/pacman ~/work/linux510/linux510
2025-10-31T05:21:38.7016556Z Server = ***/unstable/$repo/$arch
2025-10-31T05:21:38.7096071Z --2025-10-31 05:21:38-- https://gitlab.archlinux.org/pacman/pacman-contrib/-/raw/master/src/updpkgsums.sh.in
2025-10-31T05:21:39.0282908Z Resolving gitlab.archlinux.org (gitlab.archlinux.org)... 213.133.111.15, 2a01:4f8:222:174c::1
2025-10-31T05:21:39.1818773Z Connecting to gitlab.archlinux.org (gitlab.archlinux.org)|213.133.111.15|:443... connected.
2025-10-31T05:21:39.6780629Z HTTP request sent, awaiting response... 200 OK
2025-10-31T05:21:39.6781621Z Length: 3777 (3.7K) [text/plain]
2025-10-31T05:21:39.6783038Z Saving to: ‘updpkgsums.sh.in’
2025-10-31T05:21:39.6783519Z
2025-10-31T05:21:39.6783942Z 0K ... 100% 1.01G=0s
2025-10-31T05:21:39.6784682Z
2025-10-31T05:21:39.6785284Z 2025-10-31 05:21:39 (1.01 GB/s) - ‘updpkgsums.sh.in’ saved [3777/3777]
2025-10-31T05:21:39.6785956Z
2025-10-31T05:21:39.6880257Z --2025-10-31 05:21:39-- https://gitlab.archlinux.org/pacman/pacman-contrib/-/raw/master/configure.ac
2025-10-31T05:21:39.7111532Z Resolving gitlab.archlinux.org (gitlab.archlinux.org)... 213.133.111.15, 2a01:4f8:222:174c::1
2025-10-31T05:21:39.8636029Z Connecting to gitlab.archlinux.org (gitlab.archlinux.org)|213.133.111.15|:443... connected.
2025-10-31T05:21:40.3563990Z HTTP request sent, awaiting response... 200 OK
2025-10-31T05:21:40.3565120Z Length: 6551 (6.4K) [text/plain]
2025-10-31T05:21:40.3566226Z Saving to: ‘configure.ac’
2025-10-31T05:21:40.3566733Z
2025-10-31T05:21:40.3567203Z 0K ...... 100% 1.35G=0s
2025-10-31T05:21:40.3567934Z
2025-10-31T05:21:40.3568635Z 2025-10-31 05:21:40 (1.35 GB/s) - ‘configure.ac’ saved [6551/6551]
2025-10-31T05:21:40.3569387Z
2025-10-31T05:21:40.3760368Z ~/work/linux510/linux510
2025-10-31T05:21:40.3879025Z ##[group]Run sudo install -dm755 /usr/share/pacman/keyrings/
2025-10-31T05:21:40.3880241Z ^[[36;1msudo install -dm755 /usr/share/pacman/keyrings/^[[0m
2025-10-31T05:21:40.3881258Z ^[[36;1m^[[0m
2025-10-31T05:21:40.3882597Z ^[[36;1msudo git clone --depth 1 https://gitlab.manjaro.org/packages/core/manjaro-keyring.git^[[0m
2025-10-31T05:21:40.3883819Z ^[[36;1mpushd manjaro-keyring^[[0m
2025-10-31T05:21:40.3884789Z ^[[36;1m sudo install -m0644 manjaro.gpg /usr/share/pacman/keyrings/^[[0m
2025-10-31T05:21:40.3886068Z ^[[36;1m sudo install -m0644 manjaro-trusted /usr/share/pacman/keyrings/^[[0m
2025-10-31T05:21:40.3887386Z ^[[36;1m sudo install -m0644 manjaro-trusted /usr/share/pacman/keyrings/^[[0m
2025-10-31T05:21:40.3888436Z ^[[36;1mpopd^[[0m
2025-10-31T05:21:40.3889188Z ^[[36;1msudo rm -rf manjaro-keyring^[[0m
2025-10-31T05:21:40.3890026Z ^[[36;1m^[[0m
2025-10-31T05:21:40.3890817Z ^[[36;1mmkdir -p archlinux-keyring^[[0m
2025-10-31T05:21:40.3891676Z ^[[36;1mpushd archlinux-keyring^[[0m
2025-10-31T05:21:40.3893243Z ^[[36;1m #wget https://archlinux.org/packages/core/any/archlinux-keyring/download -O /tmp/archlinux-keyring.tar.zst^[[0m
2025-10-31T05:21:40.3894720Z ^[[36;1m # temp solution until Arch infra gets fixed^[[0m
2025-10-31T05:21:40.3896338Z ^[[36;1m wget https://mirrors.manjaro.org/repo/pool/sync/archlinux-keyring-20250807.1-1-any.pkg.tar.zst -O /tmp/archlinux-keyring.tar.zst^[[0m
2025-10-31T05:21:40.3898601Z ^[[36;1m tar --use-compress-program=unzstd --strip-components=4 --wildcards -xvf /tmp/archlinux-keyring.tar.zst usr/share/pacman/keyrings/*^[[0m
2025-10-31T05:21:40.3900308Z ^[[36;1m sudo install -m0644 archlinux.gpg /usr/share/pacman/keyrings/^[[0m
2025-10-31T05:21:40.3901603Z ^[[36;1m sudo install -m0644 archlinux-trusted /usr/share/pacman/keyrings/^[[0m
2025-10-31T05:21:40.3903122Z ^[[36;1m sudo install -m0644 archlinux-revoked /usr/share/pacman/keyrings/^[[0m
2025-10-31T05:21:40.3904185Z ^[[36;1mpopd^[[0m
2025-10-31T05:21:40.3904939Z ^[[36;1msudo pacman-key --init^[[0m
2025-10-31T05:21:40.3905862Z ^[[36;1msudo pacman-key --populate archlinux manjaro^[[0m
2025-10-31T05:21:40.3906843Z ^[[36;1msudo rm -rf archlinux-keyring^[[0m
2025-10-31T05:21:40.3943083Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-31T05:21:40.3943654Z ##[endgroup]
2025-10-31T05:21:40.4140673Z Cloning into 'manjaro-keyring'...
2025-10-31T05:21:42.1158232Z ~/work/linux510/linux510/manjaro-keyring ~/work/linux510/linux510
2025-10-31T05:21:42.1376616Z ~/work/linux510/linux510
2025-10-31T05:21:42.1469411Z ~/work/linux510/linux510/archlinux-keyring ~/work/linux510/linux510
2025-10-31T05:21:42.1490061Z --2025-10-31 05:21:42-- https://mirrors.manjaro.org/repo/pool/sync/archlinux-keyring-20250807.1-1-any.pkg.tar.zst
2025-10-31T05:21:42.4077695Z Resolving mirrors.manjaro.org (mirrors.manjaro.org)... 156.146.53.32, 156.146.53.35, 2a02:6ea0:e600::13, ...
2025-10-31T05:21:42.4096441Z Connecting to mirrors.manjaro.org (mirrors.manjaro.org)|156.146.53.32|:443... connected.
2025-10-31T05:21:42.4605973Z HTTP request sent, awaiting response... 200 OK
2025-10-31T05:21:42.4606718Z Length: 1243944 (1.2M) [application/octet-stream]
2025-10-31T05:21:42.4607645Z Saving to: ‘/tmp/archlinux-keyring.tar.zst’
2025-10-31T05:21:42.4608053Z
2025-10-31T05:21:42.4765545Z 0K .......... .......... .......... .......... .......... 4% 3.07M 0s
2025-10-31T05:21:42.4847341Z 50K .......... .......... .......... .......... .......... 8% 5.96M 0s
2025-10-31T05:21:42.4904729Z 100K .......... .......... .......... .......... .......... 12% 8.46M 0s
2025-10-31T05:21:42.4956751Z 150K .......... .......... .......... .......... .......... 16% 9.40M 0s
2025-10-31T05:21:42.4989149Z 200K .......... .......... .......... .......... .......... 20% 15.0M 0s
2025-10-31T05:21:42.5018697Z 250K .......... .......... .......... .......... .......... 24% 16.5M 0s
2025-10-31T05:21:42.5039651Z 300K .......... .......... .......... .......... .......... 28% 22.9M 0s
2025-10-31T05:21:42.5073245Z 350K .......... .......... .......... .......... .......... 32% 14.5M 0s
2025-10-31T05:21:42.5089014Z 400K .......... .......... .......... .......... .......... 37% 30.9M 0s
2025-10-31T05:21:42.5105802Z 450K .......... .......... .......... .......... .......... 41% 29.0M 0s
2025-10-31T05:21:42.5129412Z 500K .......... .......... .......... .......... .......... 45% 20.9M 0s
2025-10-31T05:21:42.5139325Z 550K .......... .......... .......... .......... .......... 49% 48.6M 0s
2025-10-31T05:21:42.5150696Z 600K .......... .......... .......... .......... .......... 53% 43.1M 0s
2025-10-31T05:21:42.5169169Z 650K .......... .......... .......... .......... .......... 57% 26.6M 0s
2025-10-31T05:21:42.5179461Z 700K .......... .......... .......... .......... .......... 61% 47.1M 0s
2025-10-31T05:21:42.5192609Z 750K .......... .......... .......... .......... .......... 65% 37.1M 0s
2025-10-31T05:21:42.5204645Z 800K .......... .......... .......... .......... .......... 69% 40.6M 0s
2025-10-31T05:21:42.5213843Z 850K .......... .......... .......... .......... .......... 74% 53.3M 0s
2025-10-31T05:21:42.5216215Z 900K .......... .......... .......... .......... .......... 78% 222M 0s
2025-10-31T05:21:42.5227095Z 950K .......... .......... .......... .......... .......... 82% 45.5M 0s
2025-10-31T05:21:42.5240190Z 1000K .......... .......... .......... .......... .......... 86% 36.9M 0s
2025-10-31T05:21:42.5251223Z 1050K .......... .......... .......... .......... .......... 90% 44.0M 0s
2025-10-31T05:21:42.5260388Z 1100K .......... .......... .......... .......... .......... 94% 53.2M 0s
2025-10-31T05:21:42.5272974Z 1150K .......... .......... .......... .......... .......... 98% 39.0M 0s
2025-10-31T05:21:42.5273875Z 1200K .......... .... 100% 27.5T=0.07s
2025-10-31T05:21:42.5274435Z
2025-10-31T05:21:42.5275368Z 2025-10-31 05:21:42 (17.8 MB/s) - ‘/tmp/archlinux-keyring.tar.zst’ saved [1243944/1243944]
2025-10-31T05:21:42.5276090Z
2025-10-31T05:21:42.5342898Z usr/share/pacman/keyrings/archlinux-revoked
2025-10-31T05:21:42.5343890Z usr/share/pacman/keyrings/archlinux-trusted
2025-10-31T05:21:42.5344772Z usr/share/pacman/keyrings/archlinux.gpg
2025-10-31T05:21:42.5621647Z ~/work/linux510/linux510
2025-10-31T05:21:42.5781792Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-31T05:21:42.6241461Z gpg: /etc/pacman.d/gnupg/trustdb.gpg: trustdb created
2025-10-31T05:21:42.6318732Z gpg: no ultimately trusted keys found
2025-10-31T05:21:42.6578787Z gpg: starting migration from earlier GnuPG versions
2025-10-31T05:21:42.6906409Z gpg: porting secret keys from '/etc/pacman.d/gnupg/secring.gpg' to gpg-agent
2025-10-31T05:21:42.6907318Z gpg: migration succeeded
2025-10-31T05:21:42.6935157Z ==> Generating pacman master key. This may take some time.
2025-10-31T05:21:42.6954923Z gpg: Generating pacman keyring master key...
2025-10-31T05:21:46.1801140Z gpg: directory '/etc/pacman.d/gnupg/openpgp-revocs.d' created
2025-10-31T05:21:46.2042616Z gpg: revocation certificate stored as '/etc/pacman.d/gnupg/openpgp-revocs.d/D65F7C3F0FEDB148381C0EF5F60421ABF944B78B.rev'
2025-10-31T05:21:46.2043794Z gpg: Done
2025-10-31T05:21:46.2064188Z ==> Updating trust database...
2025-10-31T05:21:46.2090114Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-31T05:21:46.2090896Z gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-31T05:21:46.2258392Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-31T05:21:46.2316065Z ==> Appending keys from archlinux.gpg...
2025-10-31T05:21:49.1470199Z ==> Appending keys from manjaro.gpg...
2025-10-31T05:21:50.0426112Z ==> Locally signing trusted keys in keyring...
2025-10-31T05:21:52.7473558Z -> Locally signed 23 keys.
2025-10-31T05:21:52.7485430Z ==> Importing owner trust values...
2025-10-31T05:21:52.7508545Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7509333Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7510405Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7511171Z gpg: inserting ownertrust of 4
2025-10-31T05:21:52.7511854Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7533887Z gpg: inserting ownertrust of 4
2025-10-31T05:21:52.7534903Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7535677Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7536449Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7537184Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7537927Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7538696Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7539451Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7540170Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7540716Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7541149Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7541582Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7542233Z gpg: inserting ownertrust of 4
2025-10-31T05:21:52.7542711Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7543162Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7543612Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7544034Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7544454Z gpg: setting ownertrust to 4
2025-10-31T05:21:52.7553336Z ==> Disabling revoked keys in keyring...
2025-10-31T05:21:53.0485225Z -> Disabled 50 keys.
2025-10-31T05:21:53.0497889Z ==> Updating trust database...
2025-10-31T05:21:53.0528572Z gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
2025-10-31T05:21:53.0529822Z gpg: (use option "--allow-weak-key-signatures" to override)
2025-10-31T05:21:53.0827317Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-31T05:21:53.1188478Z gpg: depth: 0 valid: 1 signed: 21 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-31T05:21:53.1488341Z gpg: depth: 1 valid: 21 signed: 101 trust: 0-, 0q, 0n, 21m, 0f, 0u
2025-10-31T05:21:53.1687552Z gpg: depth: 2 valid: 74 signed: 17 trust: 74-, 0q, 0n, 0m, 0f, 0u
2025-10-31T05:21:53.1690087Z gpg: next trustdb check due at 2025-11-14
2025-10-31T05:21:53.1823372Z ##[group]Run sudo apt-get clean
2025-10-31T05:21:53.1823888Z ^[[36;1msudo apt-get clean^[[0m
2025-10-31T05:21:53.1824350Z ^[[36;1msudo rm -rf /usr/share/dotnet^[[0m
2025-10-31T05:21:53.1824991Z ^[[36;1msudo rm -rf /opt/ghc^[[0m
2025-10-31T05:21:53.1825474Z ^[[36;1msudo rm -rf "/usr/local/share/boost"^[[0m
2025-10-31T05:21:53.1826002Z ^[[36;1msudo rm -rf "$AGENT_TOOLSDIRECTORY"^[[0m
2025-10-31T05:21:53.1858834Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-31T05:21:53.1859382Z ##[endgroup]
2025-10-31T05:23:18.6916157Z ##[group]Run sudo git clone --depth 1 https://gitlab.manjaro.org/tools/development-tools/manjaro-chrootbuild
2025-10-31T05:23:18.6917110Z ^[[36;1msudo git clone --depth 1 https://gitlab.manjaro.org/tools/development-tools/manjaro-chrootbuild^[[0m
2025-10-31T05:23:18.6917795Z ^[[36;1mpushd manjaro-chrootbuild^[[0m
2025-10-31T05:23:18.6918247Z ^[[36;1msudo ./install.sh^[[0m
2025-10-31T05:23:18.6918903Z ^[[36;1mecho 'PACKAGER="Manjaro Build Server <build@manjaro.org>"' | sudo tee -a /etc/makepkg.conf > /dev/null^[[0m
2025-10-31T05:23:18.6919588Z ^[[36;1mpopd^[[0m
2025-10-31T05:23:18.6920016Z ^[[36;1msudo rm -rf manjaro-chrootbuild^[[0m
2025-10-31T05:23:18.6953613Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-31T05:23:18.6954151Z ##[endgroup]
2025-10-31T05:23:18.7073182Z Cloning into 'manjaro-chrootbuild'...
2025-10-31T05:23:19.5040634Z warning: redirecting to https://gitlab.manjaro.org/tools/development-tools/manjaro-chrootbuild.git/
2025-10-31T05:23:20.8160445Z ~/work/linux510/linux510/manjaro-chrootbuild ~/work/linux510/linux510
2025-10-31T05:23:20.8229583Z Installing manjaro-chrootbuild
2025-10-31T05:23:20.8247201Z util-chroot.sh
2025-10-31T05:23:20.8261580Z util-lists.sh
2025-10-31T05:23:20.8274946Z util-pkg.sh
2025-10-31T05:23:20.8288109Z util.sh
2025-10-31T05:23:20.8318768Z cb_monitor
2025-10-31T05:23:20.8332391Z chrootbuild
2025-10-31T05:23:20.8345837Z prepare_chroot
2025-10-31T05:23:20.8358997Z sign_pkgs
2025-10-31T05:23:20.8389607Z pacman.conf.aarch64
2025-10-31T05:23:20.8404201Z pacman.conf.x86_64
2025-10-31T05:23:20.8517071Z ~/work/linux510/linux510
2025-10-31T05:23:20.8634606Z ##[group]Run KERNEL=$(echo ${GITHUB_REPOSITORY} | cut -d'/' -f2)
2025-10-31T05:23:20.8635304Z ^[[36;1mKERNEL=$(echo ${GITHUB_REPOSITORY} | cut -d'/' -f2)^[[0m
2025-10-31T05:23:20.8636506Z ^[[36;1msudo git clone ***gitlab.manjaro.org/packages/core/${KERNEL}.git^[[0m
2025-10-31T05:23:20.8637183Z ^[[36;1msudo git config --global user.name "Manjaro Build Server"^[[0m
2025-10-31T05:23:20.8637822Z ^[[36;1msudo git config --global user.email "build@manjaro.org"^[[0m
2025-10-31T05:23:20.8638386Z ^[[36;1mecho "KERNEL=${KERNEL}" >>$GITHUB_ENV^[[0m
2025-10-31T05:23:20.8638886Z ^[[36;1mif [[ "false" == "true" ]]; then^[[0m
2025-10-31T05:23:20.8639421Z ^[[36;1m oldver=$(grep 'pkgver=' ${KERNEL}/PKGBUILD | cut -d'=' -f2)^[[0m
2025-10-31T05:23:20.8640000Z ^[[36;1m sudo chown -R ${UID}:${UID} ${KERNEL}^[[0m
2025-10-31T05:23:20.8640499Z ^[[36;1m cd ${KERNEL}^[[0m
2025-10-31T05:23:20.8640935Z ^[[36;1m if [[ $oldver == *rc* ]]; then^[[0m
2025-10-31T05:23:20.8641419Z ^[[36;1m ver_maj=$(echo $oldver | cut -d'r' -f1)^[[0m
2025-10-31T05:23:20.8642151Z ^[[36;1m _rc=$(echo ${oldver} | cut -d'c' -f2)^[[0m
2025-10-31T05:23:20.8642719Z ^[[36;1m _rc_new=rc$((${_rc}+1))^[[0m
2025-10-31T05:23:20.8643220Z ^[[36;1m sudo sed -i -e "/^_rc=/c\_rc=${_rc_new}" PKGBUILD^[[0m
2025-10-31T05:23:20.8643747Z ^[[36;1m ver_new=${ver_maj}${_rc_new}^[[0m
2025-10-31T05:23:20.8644188Z ^[[36;1m else^[[0m
2025-10-31T05:23:20.8644743Z ^[[36;1m ver_maj=$(printf "%s.%s" "$(echo ${oldver} | cut -d. -f1)" "$(echo ${oldver} | cut -d. -f2)")^[[0m
2025-10-31T05:23:20.8645372Z ^[[36;1m ver_min=$(echo ${oldver} | cut -d. -f3)^[[0m
2025-10-31T05:23:20.8645882Z ^[[36;1m ver_new=${ver_maj}.$((${ver_min}+1))^[[0m
2025-10-31T05:23:20.8646358Z ^[[36;1m fi^[[0m
2025-10-31T05:23:20.8646829Z ^[[36;1m sudo sed -i -e "/^pkgver=/c\pkgver=${ver_new}" PKGBUILD^[[0m
2025-10-31T05:23:20.8647407Z ^[[36;1m sudo sed -i -e "/^pkgrel=/c\pkgrel=1" PKGBUILD^[[0m
2025-10-31T05:23:20.8647953Z ^[[36;1m echo "update PKGBUILD"^[[0m
2025-10-31T05:23:20.8648409Z ^[[36;1m updpkgsums^[[0m
2025-10-31T05:23:20.8649046Z ^[[36;1m sudo git add PKGBUILD^[[0m
2025-10-31T05:23:20.8649554Z ^[[36;1m sudo git commit -m"[pkg-upd] ${ver_new}-1"^[[0m
2025-10-31T05:23:20.8650067Z ^[[36;1m sudo git push^[[0m
2025-10-31T05:23:20.8650499Z ^[[36;1m sudo rm -rf src^[[0m
2025-10-31T05:23:20.8650917Z ^[[36;1m cd ..^[[0m
2025-10-31T05:23:20.8651330Z ^[[36;1melif [[ "false" == "true" ]]; then^[[0m
2025-10-31T05:23:20.8652120Z ^[[36;1m repover=$(sudo pacman -Syi ${KERNEL} | grep Version | rev | cut -d' ' -f1 | rev | cut -d- -f1)^[[0m
2025-10-31T05:23:20.8652765Z ^[[36;1m . ${KERNEL}/PKGBUILD^[[0m
2025-10-31T05:23:20.8653245Z ^[[36;1m if [[ "$pkgver" == "$repover" ]]; then^[[0m
2025-10-31T05:23:20.8653758Z ^[[36;1m sudo chown -R ${UID}:${UID} ${KERNEL}^[[0m
2025-10-31T05:23:20.8654248Z ^[[36;1m cd ${KERNEL}^[[0m
2025-10-31T05:23:20.8654779Z ^[[36;1m reporel=$(sudo pacman -Syi ${KERNEL} | grep Version | cut -d'-' -f2)^[[0m
2025-10-31T05:23:20.8655381Z ^[[36;1m rel_new=$((${reporel}+1))^[[0m
2025-10-31T05:23:20.8655899Z ^[[36;1m sudo sed -i -e "/^pkgrel=/c\pkgrel=${rel_new}" PKGBUILD^[[0m
2025-10-31T05:23:20.8656438Z ^[[36;1m sudo git add PKGBUILD^[[0m
2025-10-31T05:23:20.8656926Z ^[[36;1m sudo git commit -m"[pkg-upd] pkgrel ${rel_new}"^[[0m
2025-10-31T05:23:20.8657439Z ^[[36;1m sudo git push^[[0m
2025-10-31T05:23:20.8657853Z ^[[36;1m cd ..^[[0m
2025-10-31T05:23:20.8658242Z ^[[36;1m fi^[[0m
2025-10-31T05:23:20.8658625Z ^[[36;1mfi^[[0m
2025-10-31T05:23:20.8691140Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-31T05:23:20.8691687Z ##[endgroup]
2025-10-31T05:23:20.8832459Z Cloning into 'linux510'...
2025-10-31T05:23:22.9173523Z ##[group]Run sudo chrootbuild -p linux510 -b unstable
2025-10-31T05:23:22.9174555Z ^[[36;1msudo chrootbuild -p linux510 -b unstable^[[0m
2025-10-31T05:23:22.9175435Z ^[[36;1mif [ -z "***^[[0m
2025-10-31T05:23:22.9176261Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9176868Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9177456Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9178036Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9178618Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9179204Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9179772Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9180355Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9180937Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9181530Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9182357Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9182987Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9183600Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9184186Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9184759Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9185340Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9185937Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9186502Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9187076Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9187667Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9188238Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9188829Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9189440Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9190032Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9190631Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9191217Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9191808Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9200719Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9201359Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9202159Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9202769Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9203348Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9203948Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9204520Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9205089Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9205675Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9206234Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9206814Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9207394Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9207954Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9208525Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9209084Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9209648Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9210230Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9210813Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9211406Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9212166Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9212754Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9213358Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9213952Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9214545Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9215127Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9215889Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9216467Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9217056Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9217621Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9218171Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9218767Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9219329Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9219892Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9220457Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9221038Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9221587Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9222328Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9222920Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9223544Z ^[[36;1m***" ] || [ -z "***" ]; then^[[0m
2025-10-31T05:23:22.9224053Z ^[[36;1m echo "## gpg credentials not provided. Skip signing."^[[0m
2025-10-31T05:23:22.9224565Z ^[[36;1melse^[[0m
2025-10-31T05:23:22.9225228Z ^[[36;1m cat <(echo -e "***^[[0m
2025-10-31T05:23:22.9225865Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9226436Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9227019Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9227589Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9228155Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9228722Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9229277Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9229847Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9230408Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9230986Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9231567Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9232325Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9232888Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9233455Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9234023Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9234588Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9235180Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9235737Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9236304Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9236893Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9237448Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9238027Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9238748Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9239332Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9239919Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9240474Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9241051Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9241609Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9242325Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9242907Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9243466Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9244023Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9244601Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9245160Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9245717Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9246296Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9246847Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9247415Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9247979Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9248518Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9249076Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9249628Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9250176Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9250745Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9251314Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9251901Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9252657Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9253216Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9253804Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9254379Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9254962Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9255549Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9256107Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9256665Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9257238Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9257792Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9258330Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9258915Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9259459Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9260023Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9260578Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9261152Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9261699Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9262476Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9263055Z ^[[36;1m***^[[0m
2025-10-31T05:23:22.9263614Z ^[[36;1m***" | base64 --decode) | gpg --batch --import &>/dev/null^[[0m
2025-10-31T05:23:22.9264258Z ^[[36;1m for p in $(find $PWD -maxdepth 1 -regex '.*\.pkg\.tar\.\(xz\|zst\)'); do^[[0m
2025-10-31T05:23:22.9264871Z ^[[36;1m echo "## signing $p"^[[0m
2025-10-31T05:23:22.9265582Z ^[[36;1m gpg --pinentry-mode loopback --passphrase "***" --detach-sign ${p}^[[0m
2025-10-31T05:23:22.9266288Z ^[[36;1m done^[[0m
2025-10-31T05:23:22.9266669Z ^[[36;1mfi^[[0m
2025-10-31T05:23:22.9267085Z ^[[36;1mCHRSRC=/var/lib/chrootbuild/build/linux510^[[0m
2025-10-31T05:23:22.9267597Z ^[[36;1mecho "CHRSRC=${CHRSRC}" >> $GITHUB_ENV^[[0m
2025-10-31T05:23:22.9268081Z ^[[36;1m. ${CHRSRC}/PKGBUILD^[[0m
2025-10-31T05:23:22.9268503Z ^[[36;1mif [[ ! -z ${_rc} ]]; then^[[0m
2025-10-31T05:23:22.9269000Z ^[[36;1m _confpath=${CHRSRC}/src/linux-${_basekernel}-${_rc}^[[0m
2025-10-31T05:23:22.9269498Z ^[[36;1melse^[[0m
2025-10-31T05:23:22.9269921Z ^[[36;1m _confpath=${CHRSRC}/src/linux-${_basekernel}^[[0m
2025-10-31T05:23:22.9270402Z ^[[36;1mfi^[[0m
2025-10-31T05:23:22.9270787Z ^[[36;1mif [[ "false" == "true" ]]; then^[[0m
2025-10-31T05:23:22.9271222Z ^[[36;1m cd linux510^[[0m
2025-10-31T05:23:22.9271641Z ^[[36;1m if [[ -e config.rt ]]; then^[[0m
2025-10-31T05:23:22.9272260Z ^[[36;1m sudo rm config.rt^[[0m
2025-10-31T05:23:22.9272743Z ^[[36;1m sudo cp "${_confpath}/.config" config.rt^[[0m
2025-10-31T05:23:22.9273231Z ^[[36;1m else^[[0m
2025-10-31T05:23:22.9273623Z ^[[36;1m sudo rm config^[[0m
2025-10-31T05:23:22.9274083Z ^[[36;1m sudo cp "${_confpath}/.config" config^[[0m
2025-10-31T05:23:22.9274557Z ^[[36;1m fi^[[0m
2025-10-31T05:23:22.9274954Z ^[[36;1m if [[ -e config.rt ]]; then^[[0m
2025-10-31T05:23:22.9275412Z ^[[36;1m sudo git add config.rt^[[0m
2025-10-31T05:23:22.9275843Z ^[[36;1m else^[[0m
2025-10-31T05:23:22.9276237Z ^[[36;1m sudo git add config^[[0m
2025-10-31T05:23:22.9276658Z ^[[36;1m fi^[[0m
2025-10-31T05:23:22.9277039Z ^[[36;1m updpkgsums^[[0m
2025-10-31T05:23:22.9277451Z ^[[36;1m sudo git add PKGBUILD^[[0m
2025-10-31T05:23:22.9277919Z ^[[36;1m sudo git commit -m"update config" || true^[[0m
2025-10-31T05:23:22.9278408Z ^[[36;1m sudo git push^[[0m
2025-10-31T05:23:22.9278959Z ^[[36;1m sudo rm -rf .git^[[0m
2025-10-31T05:23:22.9279370Z ^[[36;1m cd ..^[[0m
2025-10-31T05:23:22.9279749Z ^[[36;1mfi^[[0m
2025-10-31T05:23:22.9312477Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-31T05:23:22.9313027Z env:
2025-10-31T05:23:22.9313409Z KERNEL: linux510
2025-10-31T05:23:22.9313804Z ##[endgroup]
2025-10-31T05:23:22.9709342Z
2025-10-31T05:23:22.9710843Z ^[[1m^[[32m^[[1m:: Package(s) to build:^[[0m
2025-10-31T05:23:22.9711759Z - linux510
2025-10-31T05:23:22.9712284Z
2025-10-31T05:23:22.9712772Z ^[[1m^[[32m^[[1m:: Create install root at [/var/lib/chrootbuild]^[[0m
2025-10-31T05:23:22.9965761Z
2025-10-31T05:23:22.9966367Z ^[[1m^[[32m^[[1m:: Install build environment^[[0m
2025-10-31T05:23:23.0072581Z :: Synchronizing package databases...
2025-10-31T05:23:25.7825748Z core downloading...
2025-10-31T05:23:25.7826489Z extra downloading...
2025-10-31T05:23:25.7827159Z multilib downloading...
2025-10-31T05:23:25.8122706Z resolving dependencies...
2025-10-31T05:23:26.0168973Z looking for conflicting packages...
2025-10-31T05:23:26.0200259Z warning: dependency cycle detected:
2025-10-31T05:23:26.0201230Z warning: systemd-libs will be installed before its libcap dependency
2025-10-31T05:23:26.0201937Z
2025-10-31T05:23:26.0211566Z Packages (140) acl-2.3.2-1 attr-2.5.2-1 audit-4.0.5-1 autoconf-2.72-1 automake-1.18.1-1 bash-5.3.3-2 binutils-2.45+r29+g2b2e51a31ec7-1 bison-3.8.2-8 brotli-1.1.0-3 bzip2-1.0.8-6 ca-certificates-20240618-1 ca-certificates-mozilla-3.117-1 ca-certificates-utils-20240618-1 coreutils-9.8-2 cryptsetup-2.8.1-1 curl-8.16.0-1 db5.3-5.3.28-5 dbus-1.16.2-1 dbus-broker-37-2 dbus-broker-units-37-2 dbus-units-37-2 debugedit-5.2-1 device-mapper-2.03.36-1 diffutils-3.12-2 e2fsprogs-1.47.3-1 expat-2.7.3-1 fakeroot-1.37.1.2-1 file-5.46-5 filesystem-2025.10.12-1 findutils-4.10.0-3 flex-2.6.4-5 gawk-5.3.2-1 gc-8.2.10-2 gcc-15.2.1+r22+gc4e96a094636-1 gcc-libs-15.2.1+r22+gc4e96a094636-1 gdbm-1.26-1 gettext-0.26-1 glib2-2.86.1-1 glibc-2.42+r17+gd7274d718e6f-1 gmp-6.3.0-2 gnulib-l10n-20241231-1 gnupg-2.4.8-3 gnutls-3.8.10-1 gpgme-2.0.1-1 grep-3.12-2 groff-1.23.0-7 guile-3.0.10-1 gzip-1.14-2 hwdata-0.400-1 iana-etc-20250612-1 icu-76.1-1 jansson-2.14.1-1 json-c-0.18-2 kbd-2.9.0-1 keyutils-1.6.3-3 kmod-34.2-1 krb5-1.21.3-2 leancrypto-1.6.0-1 libarchive-3.8.2-1 libassuan-3.0.0-1 libcap-2.76-1 libcap-ng-0.8.5-3 libelf-0.193-5 libevent-2.1.12-4 libffi-3.5.2-1 libgcrypt-1.11.2-1 libgpg-error-1.56-1 libidn2-2.3.7-1 libisl-0.27-1 libksba-1.6.7-2 libldap-2.6.10-2 libmpc-1.3.1-2 libnghttp2-1.68.0-1 libnghttp3-1.12.0-1 libnsl-2.0.1-1 libp11-kit-0.25.10-2 libpsl-0.21.5-2 libsasl-2.1.28-5 libseccomp-2.5.6-1 libsecret-0.21.7-1 libssh2-1.11.1-1 libsysprof-capture-49.0-1 libtasn1-4.20.0-1 libtirpc-1.3.7-1 libtool-2.6.0-1 libunistring-1.3-1 libusb-1.0.29-1 libverto-0.3.2-5 libxcrypt-4.4.38-1 libxml2-2.15.1-1 linux-api-headers-6.16-2 lmdb-0.9.33-1 lz4-1:1.10.0-2 m4-1.4.20-1 make-4.4.1-2 mpdecimal-4.0.1-1 mpfr-4.2.2-1 ncurses-6.5-4 nettle-3.10.2-1 npth-1.8-1 openssl-3.6.0-1 p11-kit-0.25.10-2 pacman-7.0.0.r10.ga2d0293-3 pacman-mirrors-5.2.1-1 pam-1.7.1-1 pambase-20250719-1 patch-2.8-1 pcre2-10.47-1 perl-5.42.0-1 pinentry-1.3.2-2 pkgconf-2.5.1-1 popt-1.19-2 python-3.13.7-1 python-charset-normalizer-3.4.4-1 python-idna-3.11-1 python-npyscreen-4.10.5-10 python-pytz-2025.2-1 python-requests-2.32.5-1 python-urllib3-2.5.0-2 readline-8.3.001-1 sed-4.9-3 shadow-4.18.0-1 sqlite-3.50.4-2 sudo-1.9.17.p2-1 systemd-257.10-1 systemd-libs-257.10-1 tar-1.35-2 texinfo-7.2-1 tpm2-tss-4.1.3-1 tzdata-2025b-1 util-linux-2.41.2-1 util-linux-libs-2.41.2-1 which-2.23-1 xxhash-0.8.3-1 xz-5.8.1-1 zlib-1:1.3.1-2 zstd-1.5.7-2 archlinux-keyring-20251027-1 base-devel-1-3 manjaro-keyring-20251003-1
2025-10-31T05:23:26.0219404Z
2025-10-31T05:23:26.0219600Z Total Download Size: 254.01 MiB
2025-10-31T05:23:26.0220037Z Total Installed Size: 1070.55 MiB
2025-10-31T05:23:26.0220285Z
2025-10-31T05:23:26.0220764Z :: Proceed with installation? [Y/n]
2025-10-31T05:23:26.0221221Z :: Retrieving packages...
2025-10-31T05:24:08.1835959Z gcc-15.2.1+r22+gc4e96a094636-1-x86_64 downloading...
2025-10-31T05:24:08.1836976Z gcc-libs-15.2.1+r22+gc4e96a094636-1-x86_64 downloading...
2025-10-31T05:24:08.1838098Z perl-5.42.0-1-x86_64 downloading...
2025-10-31T05:24:08.1838878Z python-3.13.7-1-x86_64 downloading...
2025-10-31T05:24:08.1839466Z icu-76.1-1-x86_64 downloading...
2025-10-31T05:24:08.1840059Z systemd-257.10-1-x86_64 downloading...
2025-10-31T05:24:08.1840698Z glibc-2.42+r17+gd7274d718e6f-1-x86_64 downloading...
2025-10-31T05:24:08.1841350Z guile-3.0.10-1-x86_64 downloading...
2025-10-31T05:24:08.1842240Z binutils-2.45+r29+g2b2e51a31ec7-1-x86_64 downloading...
2025-10-31T05:24:08.1842933Z openssl-3.6.0-1-x86_64 downloading...
2025-10-31T05:24:08.1843536Z util-linux-2.41.2-1-x86_64 downloading...
2025-10-31T05:24:08.1844136Z glib2-2.86.1-1-x86_64 downloading...
2025-10-31T05:24:08.1844721Z gettext-0.26-1-x86_64 downloading...
2025-10-31T05:24:08.1845199Z gnupg-2.4.8-3-x86_64 downloading...
2025-10-31T05:24:08.1845679Z coreutils-9.8-2-x86_64 downloading...
2025-10-31T05:24:08.1846169Z bash-5.3.3-2-x86_64 downloading...
2025-10-31T05:24:08.1846641Z groff-1.23.0-7-x86_64 downloading...
2025-10-31T05:24:08.1847117Z sqlite-3.50.4-2-x86_64 downloading...
2025-10-31T05:24:08.1847585Z texinfo-7.2-1-x86_64 downloading...
2025-10-31T05:24:08.1848057Z sudo-1.9.17.p2-1-x86_64 downloading...
2025-10-31T05:24:08.1848535Z gnutls-3.8.10-1-x86_64 downloading...
2025-10-31T05:24:08.1849008Z hwdata-0.400-1-any downloading...
2025-10-31T05:24:08.1849472Z pcre2-10.47-1-x86_64 downloading...
2025-10-31T05:24:08.1849972Z linux-api-headers-6.16-2-x86_64 downloading...
2025-10-31T05:24:08.1850510Z systemd-libs-257.10-1-x86_64 downloading...
2025-10-31T05:24:08.1851005Z gawk-5.3.2-1-x86_64 downloading...
2025-10-31T05:24:08.1851482Z leancrypto-1.6.0-1-x86_64 downloading...
2025-10-31T05:24:08.1852157Z krb5-1.21.3-2-x86_64 downloading...
2025-10-31T05:24:08.1852635Z kbd-2.9.0-1-x86_64 downloading...
2025-10-31T05:24:08.1853110Z e2fsprogs-1.47.3-1-x86_64 downloading...
2025-10-31T05:24:08.1853848Z curl-8.16.0-1-x86_64 downloading...
2025-10-31T05:24:08.1854337Z shadow-4.18.0-1-x86_64 downloading...
2025-10-31T05:24:08.1854834Z archlinux-keyring-20251027-1-any downloading...
2025-10-31T05:24:08.1855339Z db5.3-5.3.28-5-x86_64 downloading...
2025-10-31T05:24:08.1855815Z pacman-7.0.0.r10.ga2d0293-3-x86_64 downloading...
2025-10-31T05:24:08.1856324Z ncurses-6.5-4-x86_64 downloading...
2025-10-31T05:24:08.1856776Z tpm2-tss-4.1.3-1-x86_64 downloading...
2025-10-31T05:24:08.1857227Z libisl-0.27-1-x86_64 downloading...
2025-10-31T05:24:08.1857672Z xz-5.8.1-1-x86_64 downloading...
2025-10-31T05:24:08.1858123Z cryptsetup-2.8.1-1-x86_64 downloading...
2025-10-31T05:24:08.1858581Z tar-1.35-2-x86_64 downloading...
2025-10-31T05:24:08.1859021Z libcap-2.76-1-x86_64 downloading...
2025-10-31T05:24:08.1859481Z libxml2-2.15.1-1-x86_64 downloading...
2025-10-31T05:24:08.1859937Z bison-3.8.2-8-x86_64 downloading...
2025-10-31T05:24:08.1860396Z libunistring-1.3-1-x86_64 downloading...
2025-10-31T05:24:08.1860871Z libgcrypt-1.11.2-1-x86_64 downloading...
2025-10-31T05:24:08.1861338Z autoconf-2.72-1-any downloading...
2025-10-31T05:24:08.1861790Z automake-1.18.1-1-any downloading...
2025-10-31T05:24:08.1862414Z libelf-0.193-5-x86_64 downloading...
2025-10-31T05:24:08.1862868Z pam-1.7.1-1-x86_64 downloading...
2025-10-31T05:24:08.1863317Z libarchive-3.8.2-1-x86_64 downloading...
2025-10-31T05:24:08.1863774Z make-4.4.1-2-x86_64 downloading...
2025-10-31T05:24:08.1864209Z zstd-1.5.7-2-x86_64 downloading...
2025-10-31T05:24:08.1864670Z util-linux-libs-2.41.2-1-x86_64 downloading...
2025-10-31T05:24:08.1865169Z findutils-4.10.0-3-x86_64 downloading...
2025-10-31T05:24:08.1865639Z libp11-kit-0.25.10-2-x86_64 downloading...
2025-10-31T05:24:08.1866100Z nettle-3.10.2-1-x86_64 downloading...
2025-10-31T05:24:08.1866711Z gmp-6.3.0-2-x86_64 downloading...
2025-10-31T05:24:08.1867145Z mpfr-4.2.2-1-x86_64 downloading...
2025-10-31T05:24:08.1874519Z file-5.46-5-x86_64 downloading...
2025-10-31T05:24:08.1875022Z libtool-2.6.0-1-x86_64 downloading...
2025-10-31T05:24:08.1875496Z readline-8.3.001-1-x86_64 downloading...
2025-10-31T05:24:08.1875969Z audit-4.0.5-1-x86_64 downloading...
2025-10-31T05:24:08.1876470Z ca-certificates-mozilla-3.117-1-x86_64 downloading...
2025-10-31T05:24:08.1877002Z iana-etc-20250612-1-any downloading...
2025-10-31T05:24:08.1877461Z brotli-1.1.0-3-x86_64 downloading...
2025-10-31T05:24:08.1877906Z tzdata-2025b-1-x86_64 downloading...
2025-10-31T05:24:08.1878352Z dbus-1.16.2-1-x86_64 downloading...
2025-10-31T05:24:08.1878800Z diffutils-3.12-2-x86_64 downloading...
2025-10-31T05:24:08.1879255Z gpgme-2.0.1-1-x86_64 downloading...
2025-10-31T05:24:08.1879693Z flex-2.6.4-5-x86_64 downloading...
2025-10-31T05:24:08.1880169Z python-npyscreen-4.10.5-10-any downloading...
2025-10-31T05:24:08.1880696Z device-mapper-2.03.36-1-x86_64 downloading...
2025-10-31T05:24:08.1881176Z libldap-2.6.10-2-x86_64 downloading...
2025-10-31T05:24:08.1881637Z libgpg-error-1.56-1-x86_64 downloading...
2025-10-31T05:24:08.1882241Z m4-1.4.20-1-x86_64 downloading...
2025-10-31T05:24:08.1882687Z libevent-2.1.12-4-x86_64 downloading...
2025-10-31T05:24:08.1883150Z gdbm-1.26-1-x86_64 downloading...
2025-10-31T05:24:08.1883587Z libssh2-1.11.1-1-x86_64 downloading...
2025-10-31T05:24:08.1884039Z p11-kit-0.25.10-2-x86_64 downloading...
2025-10-31T05:24:08.1884481Z gc-8.2.10-2-x86_64 downloading...
2025-10-31T05:24:08.1884911Z grep-3.12-2-x86_64 downloading...
2025-10-31T05:24:08.1885362Z python-urllib3-2.5.0-2-any downloading...
2025-10-31T05:24:08.1885826Z sed-4.9-3-x86_64 downloading...
2025-10-31T05:24:08.1886275Z pacman-mirrors-5.2.1-1-any downloading...
2025-10-31T05:24:08.1886736Z pinentry-1.3.2-2-x86_64 downloading...
2025-10-31T05:24:08.1887190Z libsecret-0.21.7-1-x86_64 downloading...
2025-10-31T05:24:08.1887707Z python-charset-normalizer-3.4.4-1-x86_64 downloading...
2025-10-31T05:24:08.1888242Z libtirpc-1.3.7-1-x86_64 downloading...
2025-10-31T05:24:08.1888684Z lz4-1:1.10.0-2-x86_64 downloading...
2025-10-31T05:24:08.1889305Z dbus-broker-37-2-x86_64 downloading...
2025-10-31T05:24:08.1889770Z libsasl-2.1.28-5-x86_64 downloading...
2025-10-31T05:24:08.1890216Z libksba-1.6.7-2-x86_64 downloading...
2025-10-31T05:24:08.1890664Z libidn2-2.3.7-1-x86_64 downloading...
2025-10-31T05:24:08.1891109Z acl-2.3.2-1-x86_64 downloading...
2025-10-31T05:24:08.1891550Z libtasn1-4.20.0-1-x86_64 downloading...
2025-10-31T05:24:08.1892117Z kmod-34.2-1-x86_64 downloading...
2025-10-31T05:24:08.1892567Z gnulib-l10n-20241231-1-any downloading...
2025-10-31T05:24:08.1893046Z python-requests-2.32.5-1-any downloading...
2025-10-31T05:24:08.1893516Z expat-2.7.3-1-x86_64 downloading...
2025-10-31T05:24:08.1893964Z lmdb-0.9.33-1-x86_64 downloading...
2025-10-31T05:24:08.1894405Z libassuan-3.0.0-1-x86_64 downloading...
2025-10-31T05:24:20.8208599Z mpdecimal-4.0.1-1-x86_64 downloading...
2025-10-31T05:24:20.8209618Z python-idna-3.11-1-any downloading...
2025-10-31T05:24:20.8210455Z keyutils-1.6.3-3-x86_64 downloading...
2025-10-31T05:24:20.8211325Z xxhash-0.8.3-1-x86_64 downloading...
2025-10-31T05:24:20.8212489Z libnghttp2-1.68.0-1-x86_64 downloading...
2025-10-31T05:24:20.8213496Z zlib-1:1.3.1-2-x86_64 downloading...
2025-10-31T05:24:20.8214549Z libseccomp-2.5.6-1-x86_64 downloading...
2025-10-31T05:24:20.8215544Z jansson-2.14.1-1-x86_64 downloading...
2025-10-31T05:24:20.8216516Z libpsl-0.21.5-2-x86_64 downloading...
2025-10-31T05:24:20.8217489Z gzip-1.14-2-x86_64 downloading...
2025-10-31T05:24:20.8218436Z patch-2.8-1-x86_64 downloading...
2025-10-31T05:24:20.8219421Z libmpc-1.3.1-2-x86_64 downloading...
2025-10-31T05:24:20.8220414Z libxcrypt-4.4.38-1-x86_64 downloading...
2025-10-31T05:24:20.8221276Z fakeroot-1.37.1.2-1-x86_64 downloading...
2025-10-31T05:24:20.8221934Z popt-1.19-2-x86_64 downloading...
2025-10-31T05:24:20.8222845Z libusb-1.0.29-1-x86_64 downloading...
2025-10-31T05:24:20.8223332Z libnghttp3-1.12.0-1-x86_64 downloading...
2025-10-31T05:24:20.8223807Z pkgconf-2.5.1-1-x86_64 downloading...
2025-10-31T05:24:20.8224305Z manjaro-keyring-20251003-1-any downloading...
2025-10-31T05:24:20.8224807Z attr-2.5.2-1-x86_64 downloading...
2025-10-31T05:24:20.8225270Z json-c-0.18-2-x86_64 downloading...
2025-10-31T05:24:20.8225722Z bzip2-1.0.8-6-x86_64 downloading...
2025-10-31T05:24:20.8226198Z libsysprof-capture-49.0-1-x86_64 downloading...
2025-10-31T05:24:20.8226717Z python-pytz-2025.2-1-any downloading...
2025-10-31T05:24:20.8227185Z libffi-3.5.2-1-x86_64 downloading...
2025-10-31T05:24:20.8227638Z debugedit-5.2-1-x86_64 downloading...
2025-10-31T05:24:20.8228094Z libcap-ng-0.8.5-3-x86_64 downloading...
2025-10-31T05:24:20.8228550Z npth-1.8-1-x86_64 downloading...
2025-10-31T05:24:20.8228992Z base-devel-1-3-any downloading...
2025-10-31T05:24:20.8229443Z libnsl-2.0.1-1-x86_64 downloading...
2025-10-31T05:24:20.8229913Z filesystem-2025.10.12-1-any downloading...
2025-10-31T05:24:20.8230385Z libverto-0.3.2-5-x86_64 downloading...
2025-10-31T05:24:20.8230837Z which-2.23-1-x86_64 downloading...
2025-10-31T05:24:20.8231493Z ca-certificates-utils-20240618-1-any downloading...
2025-10-31T05:24:20.8232217Z pambase-20250719-1-any downloading...
2025-10-31T05:24:20.8232710Z dbus-broker-units-37-2-x86_64 downloading...
2025-10-31T05:24:20.8233194Z dbus-units-37-2-x86_64 downloading...
2025-10-31T05:24:20.8233665Z ca-certificates-20240618-1-any downloading...
2025-10-31T05:24:20.8234140Z checking keyring...
2025-10-31T05:24:21.0909005Z checking package integrity...
2025-10-31T05:24:23.6679036Z loading package files...
2025-10-31T05:24:23.8387199Z checking for file conflicts...
2025-10-31T05:24:24.0051714Z checking available disk space...
2025-10-31T05:24:24.0097657Z :: Processing package changes...
2025-10-31T05:24:24.0098716Z installing linux-api-headers...
2025-10-31T05:24:24.1124645Z installing tzdata...
2025-10-31T05:24:24.2811885Z Optional dependencies for tzdata
2025-10-31T05:24:24.2813456Z bash: for tzselect [pending]
2025-10-31T05:24:24.2814607Z glibc: for zdump, zic [pending]
2025-10-31T05:24:24.2815921Z installing iana-etc...
2025-10-31T05:24:24.2880712Z installing filesystem...
2025-10-31T05:24:24.2954401Z installing glibc...
2025-10-31T05:24:24.4889785Z Optional dependencies for glibc
2025-10-31T05:24:24.4890744Z gd: for memusagestat
2025-10-31T05:24:24.4891434Z perl: for mtrace [pending]
2025-10-31T05:24:24.4892380Z installing gcc-libs...
2025-10-31T05:24:24.8115878Z installing ncurses...
2025-10-31T05:24:25.0809487Z Optional dependencies for ncurses
2025-10-31T05:24:25.0810624Z bash: for ncursesw6-config [pending]
2025-10-31T05:24:25.0811417Z installing readline...
2025-10-31T05:24:25.0873829Z installing bash...
2025-10-31T05:24:25.1164974Z Optional dependencies for bash
2025-10-31T05:24:25.1168314Z bash-completion: for tab completion
2025-10-31T05:24:25.1169100Z installing acl...
2025-10-31T05:24:25.1227567Z installing attr...
2025-10-31T05:24:25.1265026Z installing gmp...
2025-10-31T05:24:25.1299635Z installing zlib...
2025-10-31T05:24:25.1318720Z installing sqlite...
2025-10-31T05:24:25.1595018Z installing util-linux-libs...
2025-10-31T05:24:25.1686902Z Optional dependencies for util-linux-libs
2025-10-31T05:24:25.1688259Z python: python bindings to libmount [pending]
2025-10-31T05:24:25.1689530Z installing e2fsprogs...
2025-10-31T05:24:25.1897107Z Optional dependencies for e2fsprogs
2025-10-31T05:24:25.1898315Z lvm2: for e2scrub
2025-10-31T05:24:25.1899390Z util-linux: for e2scrub [pending]
2025-10-31T05:24:25.1900602Z smtp-forwarder: for e2scrub_fail script
2025-10-31T05:24:25.1901507Z installing keyutils...
2025-10-31T05:24:25.1950119Z installing gdbm...
2025-10-31T05:24:25.1998479Z installing openssl...
2025-10-31T05:24:25.6661235Z Optional dependencies for openssl
2025-10-31T05:24:25.6662270Z ca-certificates [pending]
2025-10-31T05:24:25.6663142Z perl [pending]
2025-10-31T05:24:25.6663640Z installing libsasl...
2025-10-31T05:24:25.6708402Z installing libldap...
2025-10-31T05:24:25.6867779Z installing libevent...
2025-10-31T05:24:25.6937692Z Optional dependencies for libevent
2025-10-31T05:24:25.6938997Z python: event_rpcgen.py [pending]
2025-10-31T05:24:25.6939807Z installing libverto...
2025-10-31T05:24:25.6951043Z installing lmdb...
2025-10-31T05:24:25.6975139Z installing krb5...
2025-10-31T05:24:25.7199752Z installing libcap-ng...
2025-10-31T05:24:25.7232573Z installing audit...
2025-10-31T05:24:25.7406693Z Optional dependencies for audit
2025-10-31T05:24:25.7407502Z libldap: for audispd-zos-remote [installed]
2025-10-31T05:24:25.7408306Z sh: for augenrules [installed]
2025-10-31T05:24:25.7409014Z installing libxcrypt...
2025-10-31T05:24:25.7430703Z installing libtirpc...
2025-10-31T05:24:25.7499136Z installing libnsl...
2025-10-31T05:24:25.7514240Z installing pambase...
2025-10-31T05:24:25.7521734Z installing libgpg-error...
2025-10-31T05:24:25.7585262Z installing libgcrypt...
2025-10-31T05:24:25.7643725Z installing lz4...
2025-10-31T05:24:25.7670030Z installing xz...
2025-10-31T05:24:25.7991803Z installing zstd...
2025-10-31T05:24:25.8050177Z installing systemd-libs...
2025-10-31T05:24:25.8687349Z installing pam...
2025-10-31T05:24:25.9088249Z installing libcap...
2025-10-31T05:24:25.9211390Z installing coreutils...
2025-10-31T05:24:25.9748617Z installing findutils...
2025-10-31T05:24:25.9820079Z installing libtasn1...
2025-10-31T05:24:25.9881768Z installing libffi...
2025-10-31T05:24:25.9898309Z installing libp11-kit...
2025-10-31T05:24:25.9973685Z installing p11-kit...
2025-10-31T05:24:26.0163653Z installing ca-certificates-utils...
2025-10-31T05:24:26.0186902Z installing ca-certificates-mozilla...
2025-10-31T05:24:26.0213925Z installing ca-certificates...
2025-10-31T05:24:26.0216826Z installing brotli...
2025-10-31T05:24:26.0267537Z installing libunistring...
2025-10-31T05:24:26.0362992Z installing libidn2...
2025-10-31T05:24:26.0429048Z installing libnghttp2...
2025-10-31T05:24:26.0448941Z installing libnghttp3...
2025-10-31T05:24:26.0466690Z installing libpsl...
2025-10-31T05:24:26.0494754Z installing libssh2...
2025-10-31T05:24:26.0649434Z installing curl...
2025-10-31T05:24:26.1073665Z installing mpfr...
2025-10-31T05:24:26.1118883Z installing gawk...
2025-10-31T05:24:26.1258460Z installing gnulib-l10n...
2025-10-31T05:24:26.1304701Z installing icu...
2025-10-31T05:24:26.2418855Z installing libxml2...
2025-10-31T05:24:26.2532432Z Optional dependencies for libxml2
2025-10-31T05:24:26.2533244Z python: Python bindings [pending]
2025-10-31T05:24:26.2533975Z installing gettext...
2025-10-31T05:24:26.2956487Z Optional dependencies for gettext
2025-10-31T05:24:26.2957329Z git: for autopoint infrastructure updates
2025-10-31T05:24:26.2958123Z appstream: for appstream support
2025-10-31T05:24:26.2958858Z installing nettle...
2025-10-31T05:24:26.3036275Z installing leancrypto...
2025-10-31T05:24:26.3190228Z installing gnutls...
2025-10-31T05:24:26.4232730Z Optional dependencies for gnutls
2025-10-31T05:24:26.4233451Z tpm2-tss: support for TPM2 wrapped keys [pending]
2025-10-31T05:24:26.4234119Z installing libksba...
2025-10-31T05:24:26.4251043Z installing libusb...
2025-10-31T05:24:26.4268013Z installing libassuan...
2025-10-31T05:24:26.4286856Z installing libsysprof-capture...
2025-10-31T05:24:26.4308530Z installing bzip2...
2025-10-31T05:24:26.4328525Z installing pcre2...
2025-10-31T05:24:26.4709552Z Optional dependencies for pcre2
2025-10-31T05:24:26.4710238Z sh: for pcre2-config [installed]
2025-10-31T05:24:26.4710872Z installing glib2...
2025-10-31T05:24:26.5722936Z Optional dependencies for glib2
2025-10-31T05:24:26.5723986Z dconf: GSettings storage backend
2025-10-31T05:24:26.5724812Z glib2-devel: development tools
2025-10-31T05:24:26.5725616Z gvfs: most gio functionality
2025-10-31T05:24:26.5726391Z installing json-c...
2025-10-31T05:24:26.5747524Z installing tpm2-tss...
2025-10-31T05:24:26.5997376Z installing libsecret...
2025-10-31T05:24:26.6093110Z Optional dependencies for libsecret
2025-10-31T05:24:26.6093802Z org.freedesktop.secrets: secret storage backend
2025-10-31T05:24:26.6094491Z installing pinentry...
2025-10-31T05:24:26.6124175Z Optional dependencies for pinentry
2025-10-31T05:24:26.6124931Z gcr: GNOME backend
2025-10-31T05:24:26.6125463Z gtk3: GTK backend
2025-10-31T05:24:26.6125991Z qt5-x11extras: Qt5 backend
2025-10-31T05:24:26.6126541Z kwayland5: Qt5 backend
2025-10-31T05:24:26.6127087Z kguiaddons: Qt6 backend
2025-10-31T05:24:26.6127638Z kwindowsystem: Qt6 backend
2025-10-31T05:24:26.6128197Z installing npth...
2025-10-31T05:24:26.6136974Z installing gnupg...
2025-10-31T05:24:26.6590897Z Optional dependencies for gnupg
2025-10-31T05:24:26.6591516Z pcsclite: for using scdaemon not with the gnupg internal card driver
2025-10-31T05:24:26.6592240Z installing gpgme...
2025-10-31T05:24:26.6629452Z installing grep...
2025-10-31T05:24:26.6690243Z installing libarchive...
2025-10-31T05:24:26.6764411Z installing expat...
2025-10-31T05:24:26.6792883Z installing mpdecimal...
2025-10-31T05:24:26.6817836Z installing python...
2025-10-31T05:24:27.0074131Z Optional dependencies for python
2025-10-31T05:24:27.0075527Z python-setuptools: for building Python packages using tooling that is usually bundled with Python
2025-10-31T05:24:27.0076958Z python-pip: for installing Python packages using tooling that is usually bundled with Python
2025-10-31T05:24:27.0078018Z python-pipx: for installing Python software not packaged on Arch Linux
2025-10-31T05:24:27.0078849Z sqlite: for a default database integration [installed]
2025-10-31T05:24:27.0079525Z xz: for lzma [installed]
2025-10-31T05:24:27.0080076Z tk: for tkinter
2025-10-31T05:24:27.0080611Z installing python-npyscreen...
2025-10-31T05:24:27.0253706Z installing python-pytz...
2025-10-31T05:24:27.0276572Z installing python-charset-normalizer...
2025-10-31T05:24:27.0336862Z installing python-idna...
2025-10-31T05:24:27.0384064Z installing python-urllib3...
2025-10-31T05:24:27.0505114Z Optional dependencies for python-urllib3
2025-10-31T05:24:27.0506010Z python-brotli: Brotli support
2025-10-31T05:24:27.0507117Z python-brotlicffi: Brotli support
2025-10-31T05:24:27.0507924Z python-h2: HTTP/2 support
2025-10-31T05:24:27.0508604Z python-pysocks: SOCKS support
2025-10-31T05:24:27.0509242Z python-zstandard: Zstandard support
2025-10-31T05:24:27.0509899Z installing python-requests...
2025-10-31T05:24:27.0566714Z Optional dependencies for python-requests
2025-10-31T05:24:27.0567616Z python-chardet: alternative character encoding library
2025-10-31T05:24:27.0568592Z python-pysocks: SOCKS proxy support
2025-10-31T05:24:27.0577142Z installing pacman-mirrors...
2025-10-31T05:24:27.0780963Z Optional dependencies for pacman-mirrors
2025-10-31T05:24:27.0781851Z gtk3: for interactive mode (GUI)
2025-10-31T05:24:27.0782912Z python-gobject: for interactive mode (GUI)
2025-10-31T05:24:27.0783806Z installing device-mapper...
2025-10-31T05:24:27.0822699Z installing popt...
2025-10-31T05:24:27.0867036Z installing cryptsetup...
2025-10-31T05:24:27.0991072Z installing dbus...
2025-10-31T05:24:27.1071546Z installing dbus-broker...
2025-10-31T05:24:27.1098026Z installing dbus-broker-units...
2025-10-31T05:24:27.1102419Z installing dbus-units...
2025-10-31T05:24:27.1105301Z installing sed...
2025-10-31T05:24:27.1156658Z installing gzip...
2025-10-31T05:24:27.1183929Z Optional dependencies for gzip
2025-10-31T05:24:27.1184633Z less: zless support
2025-10-31T05:24:27.1185261Z util-linux: zmore support [pending]
2025-10-31T05:24:27.1185974Z diffutils: zdiff/zcmp support [pending]
2025-10-31T05:24:27.1186641Z installing kbd...
2025-10-31T05:24:27.1772570Z installing kmod...
2025-10-31T05:24:27.1816287Z installing hwdata...
2025-10-31T05:24:27.1978341Z installing libelf...
2025-10-31T05:24:27.2092608Z installing libseccomp...
2025-10-31T05:24:27.2135007Z installing file...
2025-10-31T05:24:27.2259295Z installing shadow...
2025-10-31T05:24:27.2656877Z installing util-linux...
2025-10-31T05:24:27.3808172Z Optional dependencies for util-linux
2025-10-31T05:24:27.3809003Z words: default dictionary for look
2025-10-31T05:24:27.3809759Z installing systemd...
2025-10-31T05:24:27.5484995Z Initializing machine ID from random generator.
2025-10-31T05:24:27.5649170Z Creating group 'nobody' with GID 65534.
2025-10-31T05:24:27.5653369Z Creating group 'adm' with GID 999.
2025-10-31T05:24:27.5657575Z Creating group 'wheel' with GID 998.
2025-10-31T05:24:27.5661765Z Creating group 'utmp' with GID 997.
2025-10-31T05:24:27.5666314Z Creating group 'audio' with GID 996.
2025-10-31T05:24:27.5670454Z Creating group 'disk' with GID 995.
2025-10-31T05:24:27.5674819Z Creating group 'input' with GID 994.
2025-10-31T05:24:27.5678992Z Creating group 'kmem' with GID 993.
2025-10-31T05:24:27.5683469Z Creating group 'kvm' with GID 992.
2025-10-31T05:24:27.5687558Z Creating group 'lp' with GID 991.
2025-10-31T05:24:27.5691782Z Creating group 'optical' with GID 990.
2025-10-31T05:24:27.5696233Z Creating group 'render' with GID 989.
2025-10-31T05:24:27.5700325Z Creating group 'sgx' with GID 988.
2025-10-31T05:24:27.5705022Z Creating group 'storage' with GID 987.
2025-10-31T05:24:27.5708067Z Creating group 'tty' with GID 5.
2025-10-31T05:24:27.5712387Z Creating group 'uucp' with GID 986.
2025-10-31T05:24:27.5716730Z Creating group 'video' with GID 985.
2025-10-31T05:24:27.5720780Z Creating group 'users' with GID 984.
2025-10-31T05:24:27.5724168Z Creating group 'sys' with GID 3.
2025-10-31T05:24:27.5727246Z Creating group 'mem' with GID 8.
2025-10-31T05:24:27.5730386Z Creating group 'ftp' with GID 11.
2025-10-31T05:24:27.5733849Z Creating group 'mail' with GID 12.
2025-10-31T05:24:27.5736905Z Creating group 'log' with GID 19.
2025-10-31T05:24:27.5739993Z Creating group 'smmsp' with GID 25.
2025-10-31T05:24:27.5743461Z Creating group 'proc' with GID 26.
2025-10-31T05:24:27.5746641Z Creating group 'games' with GID 50.
2025-10-31T05:24:27.5749716Z Creating group 'lock' with GID 54.
2025-10-31T05:24:27.5753274Z Creating group 'network' with GID 90.
2025-10-31T05:24:27.5756666Z Creating group 'floppy' with GID 94.
2025-10-31T05:24:27.5760072Z Creating group 'scanner' with GID 96.
2025-10-31T05:24:27.5763202Z Creating group 'power' with GID 98.
2025-10-31T05:24:27.5767343Z Creating group 'groups' with GID 983.
2025-10-31T05:24:27.5771601Z Creating group 'systemd-journal' with GID 982.
2025-10-31T05:24:27.5776298Z Creating group 'rfkill' with GID 981.
2025-10-31T05:24:27.5777290Z Creating user 'nobody' (Kernel Overflow User) with UID 65534 and GID 65534.
2025-10-31T05:24:27.5780717Z Creating group 'dbus' with GID 81.
2025-10-31T05:24:27.5784596Z Creating user 'dbus' (System Message Bus) with UID 81 and GID 81.
2025-10-31T05:24:27.5788555Z Creating group 'bin' with GID 1.
2025-10-31T05:24:27.5791928Z Creating user 'bin' (n/a) with UID 1 and GID 1.
2025-10-31T05:24:27.5797026Z Creating group 'daemon' with GID 2.
2025-10-31T05:24:27.5800377Z Creating user 'daemon' (n/a) with UID 2 and GID 2.
2025-10-31T05:24:27.5802658Z Creating user 'mail' (n/a) with UID 8 and GID 12.
2025-10-31T05:24:27.5805149Z Creating user 'ftp' (n/a) with UID 14 and GID 11.
2025-10-31T05:24:27.5809284Z Creating group 'http' with GID 33.
2025-10-31T05:24:27.5812725Z Creating user 'http' (n/a) with UID 33 and GID 33.
2025-10-31T05:24:27.5817030Z Creating group 'systemd-coredump' with GID 980.
2025-10-31T05:24:27.5820519Z Creating user 'systemd-coredump' (systemd Core Dumper) with UID 980 and GID 980.
2025-10-31T05:24:27.5825090Z Creating group 'systemd-network' with GID 979.
2025-10-31T05:24:27.5828738Z Creating user 'systemd-network' (systemd Network Management) with UID 979 and GID 979.
2025-10-31T05:24:27.5832938Z Creating group 'systemd-oom' with GID 978.
2025-10-31T05:24:27.5836670Z Creating user 'systemd-oom' (systemd Userspace OOM Killer) with UID 978 and GID 978.
2025-10-31T05:24:27.5840479Z Creating group 'systemd-journal-remote' with GID 977.
2025-10-31T05:24:27.5844279Z Creating user 'systemd-journal-remote' (systemd Journal Remote) with UID 977 and GID 977.
2025-10-31T05:24:27.5848159Z Creating group 'systemd-resolve' with GID 976.
2025-10-31T05:24:27.5851724Z Creating user 'systemd-resolve' (systemd Resolver) with UID 976 and GID 976.
2025-10-31T05:24:27.5856048Z Creating group 'systemd-timesync' with GID 975.
2025-10-31T05:24:27.5859717Z Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 975 and GID 975.
2025-10-31T05:24:27.5863982Z Creating group 'tss' with GID 974.
2025-10-31T05:24:27.5867415Z Creating user 'tss' (tss user for tpm2) with UID 974 and GID 974.
2025-10-31T05:24:27.5871459Z Creating group 'uuidd' with GID 973.
2025-10-31T05:24:27.5875224Z Creating user 'uuidd' (UUID generator helper daemon) with UID 973 and GID 973.
2025-10-31T05:24:27.6105218Z Created symlink '/etc/systemd/system/getty.target.wants/getty@tty1.service' → '/usr/lib/systemd/system/getty@.service'.
2025-10-31T05:24:27.6107077Z Created symlink '/etc/systemd/system/multi-user.target.wants/remote-fs.target' → '/usr/lib/systemd/system/remote-fs.target'.
2025-10-31T05:24:27.6109850Z Created symlink '/etc/systemd/system/sockets.target.wants/systemd-userdbd.socket' → '/usr/lib/systemd/system/systemd-userdbd.socket'.
2025-10-31T05:24:27.6156484Z Optional dependencies for systemd
2025-10-31T05:24:27.6157731Z libmicrohttpd: systemd-journal-gatewayd and systemd-journal-remote
2025-10-31T05:24:27.6159260Z quota-tools: kernel-level quota management
2025-10-31T05:24:27.6160541Z systemd-sysvcompat: symlink package to provide sysvinit binaries
2025-10-31T05:24:27.6161908Z systemd-ukify: combine kernel and initrd into a signed Unified Kernel Image
2025-10-31T05:24:27.6163612Z polkit: allow administration as unprivileged user
2025-10-31T05:24:27.6165283Z curl: systemd-journal-upload, machinectl pull-tar and pull-raw [installed]
2025-10-31T05:24:27.6166864Z gnutls: systemd-journal-gatewayd and systemd-journal-remote [installed]
2025-10-31T05:24:27.6168154Z qrencode: show QR codes
2025-10-31T05:24:27.6169234Z iptables: firewall features
2025-10-31T05:24:27.6170071Z libarchive: convert DDIs to tarballs [installed]
2025-10-31T05:24:27.6171220Z libbpf: support BPF programs
2025-10-31T05:24:27.6172184Z libpwquality: check password quality
2025-10-31T05:24:27.6173071Z libfido2: unlocking LUKS2 volumes with FIDO2 token
2025-10-31T05:24:27.6174011Z libp11-kit: support PKCS#11 [installed]
2025-10-31T05:24:27.6174955Z tpm2-tss: unlocking LUKS2 volumes with TPM2 [installed]
2025-10-31T05:24:27.6175899Z installing pacman...
2025-10-31T05:24:27.6179131Z warning: /var/lib/chrootbuild/etc/pacman.conf installed as /var/lib/chrootbuild/etc/pacman.conf.pacnew
2025-10-31T05:24:27.6474657Z Optional dependencies for pacman
2025-10-31T05:24:27.6475613Z base-devel: required to use makepkg [pending]
2025-10-31T05:24:27.6476695Z perl-locale-gettext: translation support in makepkg-template
2025-10-31T05:24:27.6477750Z installing archlinux-keyring...
2025-10-31T05:24:27.6754914Z installing m4...
2025-10-31T05:24:27.6803379Z installing diffutils...
2025-10-31T05:24:27.6871082Z installing db5.3...
2025-10-31T05:24:27.7018122Z installing perl...
2025-10-31T05:24:28.0810784Z installing autoconf...
2025-10-31T05:24:28.0900238Z installing automake...
2025-10-31T05:24:28.1017191Z installing jansson...
2025-10-31T05:24:28.1036129Z installing binutils...
2025-10-31T05:24:28.2112948Z Optional dependencies for binutils
2025-10-31T05:24:28.2113911Z debuginfod: for debuginfod server/client functionality
2025-10-31T05:24:28.2114846Z installing bison...
2025-10-31T05:24:28.2325523Z installing xxhash...
2025-10-31T05:24:28.2351820Z installing debugedit...
2025-10-31T05:24:28.2362832Z installing fakeroot...
2025-10-31T05:24:28.2583310Z installing flex...
2025-10-31T05:24:28.2643269Z installing libmpc...
2025-10-31T05:24:28.2655204Z installing libisl...
2025-10-31T05:24:28.2797287Z installing gcc...
2025-10-31T05:24:28.8852699Z Optional dependencies for gcc
2025-10-31T05:24:28.8854025Z lib32-gcc-libs: for generating code for 32-bit ABI
2025-10-31T05:24:28.8854908Z installing groff...
2025-10-31T05:24:28.9440406Z Optional dependencies for groff
2025-10-31T05:24:28.9441486Z netpbm: for use together with man -H command interaction in browsers
2025-10-31T05:24:28.9442953Z psutils: for use together with man -H command interaction in browsers
2025-10-31T05:24:28.9444049Z libxaw: for gxditview
2025-10-31T05:24:28.9444870Z perl-file-homedir: for use with glilypond
2025-10-31T05:24:28.9445727Z installing tar...
2025-10-31T05:24:28.9544028Z installing libtool...
2025-10-31T05:24:28.9631427Z installing gc...
2025-10-31T05:24:28.9699398Z installing guile...
2025-10-31T05:24:29.1366706Z installing make...
2025-10-31T05:24:29.1433794Z installing manjaro-keyring...
2025-10-31T05:24:29.1662185Z >>> Run `pacman-key --init` to set up your pacman keyring.
2025-10-31T05:24:29.1663359Z >>> Then run `pacman-key --populate manjaro` to install the Manjaro keyring.
2025-10-31T05:24:29.1664611Z installing patch...
2025-10-31T05:24:29.1678416Z Optional dependencies for patch
2025-10-31T05:24:29.1679255Z ed: for patch -e functionality
2025-10-31T05:24:29.1680048Z installing pkgconf...
2025-10-31T05:24:29.1710398Z installing sudo...
2025-10-31T05:24:29.1976877Z installing texinfo...
2025-10-31T05:24:29.2649637Z Optional dependencies for texinfo
2025-10-31T05:24:29.2650621Z perl-archive-zip: EPUB file output via texi2any
2025-10-31T05:24:29.2651614Z installing which...
2025-10-31T05:24:29.2657198Z installing base-devel...
2025-10-31T05:24:29.4626450Z :: Running post-transaction hooks...
2025-10-31T05:24:29.4627191Z ( 1/14) Creating system user accounts...
2025-10-31T05:24:29.4709879Z Creating group 'alpm' with GID 972.
2025-10-31T05:24:29.4713536Z Creating user 'alpm' (Manjaro Linux Package Management) with UID 972 and GID 972.
2025-10-31T05:24:29.4768815Z ( 2/14) Updating journal message catalog...
2025-10-31T05:24:29.4914164Z ( 3/14) Reloading system manager configuration...
2025-10-31T05:24:29.4980550Z Skipped: Running in chroot.
2025-10-31T05:24:29.4982592Z ( 4/14) Reloading user manager configuration...
2025-10-31T05:24:29.5045514Z Skipped: Running in chroot.
2025-10-31T05:24:29.5048141Z ( 5/14) Updating udev hardware database...
2025-10-31T05:24:29.7878345Z ( 6/14) Applying kernel sysctl settings...
2025-10-31T05:24:29.7951141Z Skipped: Running in chroot.
2025-10-31T05:24:29.7953207Z ( 7/14) Creating temporary files...
2025-10-31T05:24:29.8205970Z ( 8/14) Reloading device manager configuration...
2025-10-31T05:24:29.8273737Z Skipped: Running in chroot.
2025-10-31T05:24:29.8276009Z ( 9/14) Arming ConditionNeedsUpdate...
2025-10-31T05:24:29.8331908Z (10/14) Rebuilding certificate stores...
2025-10-31T05:24:30.9897053Z (11/14) Reloading system bus configuration...
2025-10-31T05:24:30.9967845Z Skipped: Running in chroot.
2025-10-31T05:24:30.9969733Z (12/14) Checking for old perl modules...
2025-10-31T05:24:31.0039608Z (13/14) Configuring pacman-mirrors ...
2025-10-31T05:24:31.1506630Z ::^[[1;33mWARNING^[[1;m
2025-10-31T05:24:31.1509235Z Connection: 'http://ping.manjaro.org/pacmanmirrors' => 'HTTPConnectionPool(host='ping.manjaro.org', port=80): Max retries exceeded with url: /pacmanmirrors (Caused by NameResolutionError("<urllib3.connection.HTTPConnection object at 0x7f847bbb5e80>: Failed to resolve 'ping.manjaro.org' ([Errno -3] Temporary failure in name resolution)"))'
2025-10-31T05:24:31.1513363Z Connection: 'https://wikipedia.org' => 'HTTPSConnectionPool(host='wikipedia.org', port=443): Max retries exceeded with url: / (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7f847bbb63c0>: Failed to resolve 'wikipedia.org' ([Errno -3] Temporary failure in name resolution)"))'
2025-10-31T05:24:31.1516705Z Connection: 'https://archlinux.org' => 'HTTPSConnectionPool(host='archlinux.org', port=443): Max retries exceeded with url: / (Caused by NameResolutionError("<urllib3.connection.HTTPSConnection object at 0x7f847bd3fc50>: Failed to resolve 'archlinux.org' ([Errno -3] Temporary failure in name resolution)"))'
2025-10-31T05:24:31.1518963Z ::^[[1;37mINFO^[[1;m Internet connection appears to be down
2025-10-31T05:24:31.1519779Z ::^[[1;37mINFO^[[1;m Mirror ranking is not available
2025-10-31T05:24:31.1520597Z ::^[[1;37mINFO^[[1;m Mirror list is generated using random method
2025-10-31T05:24:31.1521355Z ::^[[1;37mINFO^[[1;m Writing mirror list
2025-10-31T05:24:31.1522497Z ::Global : https://mirrors.cicku.me/manjaro/stable^[[1;m
2025-10-31T05:24:31.1523571Z ::Global : https://mirrors2.manjaro.org/stable^[[1;m
2025-10-31T05:24:31.1524695Z ::Global : https://mirrors.manjaro.org/repo/stable^[[1;m
2025-10-31T05:24:31.1526123Z ::^[[1;37mINFO^[[1;m Mirror list generated and saved to: /etc/pacman.d/mirrorlist
2025-10-31T05:24:31.1681305Z hint: use `pacman-mirrors` to generate and update your pacman mirrorlist.
2025-10-31T05:24:31.1683644Z (14/14) Updating the info directory file...
2025-10-31T05:24:33.4873814Z Backing up pacman-mirrors.conf...
2025-10-31T05:24:33.4890451Z Removing pacman-mirrors & Python packages to ensure clean chroot...
2025-10-31T05:24:33.4978334Z
2025-10-31T05:24:33.4979703Z Packages (9) mpdecimal-4.0.1-1 pacman-mirrors-5.2.1-1 python-3.13.7-1 python-charset-normalizer-3.4.4-1 python-idna-3.11-1 python-npyscreen-4.10.5-10 python-pytz-2025.2-1 python-requests-2.32.5-1 python-urllib3-2.5.0-2
2025-10-31T05:24:33.4980997Z
2025-10-31T05:24:33.4981241Z Total Removed Size: 73.75 MiB
2025-10-31T05:24:33.4981563Z
2025-10-31T05:24:33.4989969Z :: Do you want to remove these packages? [Y/n]
2025-10-31T05:24:33.4990626Z :: Processing package changes...
2025-10-31T05:24:33.4991189Z removing mpdecimal...
2025-10-31T05:24:33.5065093Z removing pacman-mirrors...
2025-10-31T05:24:33.5177404Z removing python...
2025-10-31T05:24:33.6047719Z removing python-charset-normalizer...
2025-10-31T05:24:33.6073590Z removing python-idna...
2025-10-31T05:24:33.6090513Z removing python-npyscreen...
2025-10-31T05:24:33.6145556Z removing python-pytz...
2025-10-31T05:24:33.6157814Z removing python-requests...
2025-10-31T05:24:33.6179598Z removing python-urllib3...
2025-10-31T05:24:33.6513231Z :: Running post-transaction hooks...
2025-10-31T05:24:33.6514331Z (1/1) Arming ConditionNeedsUpdate...
2025-10-31T05:24:33.6605827Z Restoring pacman-mirrors.conf...
2025-10-31T05:24:33.6621374Z
2025-10-31T05:24:33.6622491Z ^[[1m^[[32m^[[1m:: Populate keyrings.^[[0m
2025-10-31T05:24:33.6836431Z gpg: /etc/pacman.d/gnupg/trustdb.gpg: trustdb created
2025-10-31T05:24:33.6837316Z gpg: no ultimately trusted keys found
2025-10-31T05:24:33.7176811Z gpg: starting migration from earlier GnuPG versions
2025-10-31T05:24:33.7220340Z gpg: porting secret keys from '/etc/pacman.d/gnupg/secring.gpg' to gpg-agent
2025-10-31T05:24:33.7221380Z gpg: migration succeeded
2025-10-31T05:24:33.7250865Z ==> Generating pacman master key. This may take some time.
2025-10-31T05:24:33.7280593Z gpg: Generating pacman keyring master key...
2025-10-31T05:24:35.0412355Z gpg: directory '/etc/pacman.d/gnupg/openpgp-revocs.d' created
2025-10-31T05:24:35.0640733Z gpg: revocation certificate stored as '/etc/pacman.d/gnupg/openpgp-revocs.d/EBE33A2BB05DFCA405B83CB0BBFA6F03D1DE5280.rev'
2025-10-31T05:24:35.0641526Z gpg: Done
2025-10-31T05:24:35.0673000Z ==> Updating trust database...
2025-10-31T05:24:35.0713247Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-31T05:24:35.0714271Z gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-31T05:24:35.0915844Z ==> Appending keys from archlinux.gpg...
2025-10-31T05:24:37.9234932Z ==> Appending keys from manjaro.gpg...
2025-10-31T05:24:38.9493883Z ==> Locally signing trusted keys in keyring...
2025-10-31T05:24:41.6198730Z -> Locally signed 23 keys.
2025-10-31T05:24:41.6219931Z ==> Importing owner trust values...
2025-10-31T05:24:41.6252693Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6253298Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6253795Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6254421Z gpg: inserting ownertrust of 4
2025-10-31T05:24:41.6255169Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6288622Z gpg: inserting ownertrust of 4
2025-10-31T05:24:41.6289400Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6289875Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6290425Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6290974Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6298661Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6299228Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6299723Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6300199Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6300669Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6301137Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6301599Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6302289Z gpg: inserting ownertrust of 4
2025-10-31T05:24:41.6302753Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6303183Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6303609Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6304042Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6304461Z gpg: setting ownertrust to 4
2025-10-31T05:24:41.6317301Z ==> Disabling revoked keys in keyring...
2025-10-31T05:24:41.9877135Z -> Disabled 60 keys.
2025-10-31T05:24:41.9898789Z ==> Updating trust database...
2025-10-31T05:24:41.9939528Z gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
2025-10-31T05:24:41.9940256Z gpg: (use option "--allow-weak-key-signatures" to override)
2025-10-31T05:24:42.0226658Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-31T05:24:42.0576943Z gpg: depth: 0 valid: 1 signed: 21 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-31T05:24:42.0884069Z gpg: depth: 1 valid: 21 signed: 102 trust: 0-, 0q, 0n, 21m, 0f, 0u
2025-10-31T05:24:42.1079173Z gpg: depth: 2 valid: 75 signed: 19 trust: 75-, 0q, 0n, 0m, 0f, 0u
2025-10-31T05:24:42.1081559Z gpg: next trustdb check due at 2025-12-31
2025-10-31T05:24:42.1094720Z
2025-10-31T05:24:42.1095644Z ^[[1m^[[32m^[[1m:: Create locale^[[0m
2025-10-31T05:24:42.1152929Z Generating locales...
2025-10-31T05:24:42.5589989Z C.UTF-8... done
2025-10-31T05:24:43.7344258Z en_US.UTF-8... done
2025-10-31T05:24:44.9339175Z de_DE.UTF-8... done
2025-10-31T05:24:44.9340139Z Generation complete.
2025-10-31T05:24:44.9649927Z
2025-10-31T05:24:44.9651008Z ^[[1m^[[32m^[[1m:: Configure branch [unstable]^[[0m
2025-10-31T05:24:44.9693348Z
2025-10-31T05:24:44.9693944Z ^[[1m^[[32m^[[1m:: Update chroot file system^[[0m
2025-10-31T05:24:44.9827263Z :: Synchronizing package databases...
2025-10-31T05:24:46.2515603Z core downloading...
2025-10-31T05:24:46.2516854Z extra downloading...
2025-10-31T05:24:46.2518207Z multilib downloading...
2025-10-31T05:24:46.2521632Z :: Starting full system upgrade...
2025-10-31T05:24:46.4678221Z there is nothing to do
2025-10-31T05:24:46.5084307Z validating keys:
2025-10-31T05:24:46.5102752Z gpg: directory '/build/.gnupg' created
2025-10-31T05:24:48.1553950Z ==> Making package: linux510 5.10.246-1 (Fri 31 Oct 2025 05:24:48 AM UTC)
2025-10-31T05:24:48.1567519Z ==> Checking runtime dependencies...
2025-10-31T05:24:48.1587226Z ==> Checking buildtime dependencies...
2025-10-31T05:24:48.1725657Z ==> Installing missing dependencies...
2025-10-31T05:24:48.3747911Z resolving dependencies...
2025-10-31T05:24:48.3764230Z looking for conflicting packages...
2025-10-31T05:24:48.3775888Z
2025-10-31T05:24:48.3781656Z Packages (37) docbook-xml-4.5-11 libxslt-1.1.43-2 mpdecimal-4.0.1-1 perl-error-0.17030-2 perl-mailtools-2.22-2 perl-timedate-2.33-8 python-3.13.7-1 python-babel-2.17.0-1 python-charset-normalizer-3.4.4-1 python-docutils-1:0.22.2-1 python-idna-3.11-1 python-imagesize-1.4.1-6 python-jinja-1:3.1.6-1 python-markupsafe-3.0.2-1 python-packaging-25.0-1 python-pygments-2.19.2-1 python-pytz-2025.2-1 python-requests-2.32.5-1 python-roman-numerals-py-3.1.0-1 python-snowballstemmer-2.2.0-7 python-sphinx-alabaster-theme-1.0.0-4 python-sphinxcontrib-applehelp-2.0.0-3 python-sphinxcontrib-devhelp-2.0.0-4 python-sphinxcontrib-htmlhelp-2.1.0-3 python-sphinxcontrib-jsmath-1.0.1-19 python-sphinxcontrib-qthelp-2.0.0-3 python-sphinxcontrib-serializinghtml-2.0.0-3 python-urllib3-2.5.0-2 zlib-ng-2.2.5-1 bc-1.08.2-1 cpio-2.15-3 docbook-xsl-1.79.2-9 git-2.51.2-2 inetutils-2.6-1 pahole-1:1.30-2 python-sphinx-8.2.3-1 xmlto-0.0.29-1
2025-10-31T05:24:48.3786944Z
2025-10-31T05:24:48.3787216Z Total Download Size: 22.25 MiB
2025-10-31T05:24:48.3787833Z Total Installed Size: 210.88 MiB
2025-10-31T05:24:48.3788199Z
2025-10-31T05:24:48.3788774Z :: Proceed with installation? [Y/n]
2025-10-31T05:24:48.3789567Z :: Retrieving packages...
2025-10-31T05:24:59.8011846Z git-2.51.2-2-x86_64 downloading...
2025-10-31T05:24:59.8012916Z python-babel-2.17.0-1-any downloading...
2025-10-31T05:24:59.8013660Z python-sphinx-8.2.3-1-any downloading...
2025-10-31T05:24:59.8014393Z python-pygments-2.19.2-1-any downloading...
2025-10-31T05:24:59.8015136Z python-docutils-1:0.22.2-1-any downloading...
2025-10-31T05:24:59.8015864Z docbook-xsl-1.79.2-9-any downloading...
2025-10-31T05:24:59.8016564Z pahole-1:1.30-2-x86_64 downloading...
2025-10-31T05:24:59.8017220Z inetutils-2.6-1-x86_64 downloading...
2025-10-31T05:24:59.8017896Z python-jinja-1:3.1.6-1-any downloading...
2025-10-31T05:24:59.8018578Z cpio-2.15-3-x86_64 downloading...
2025-10-31T05:24:59.8019277Z python-snowballstemmer-2.2.0-7-any downloading...
2025-10-31T05:24:59.8020031Z libxslt-1.1.43-2-x86_64 downloading...
2025-10-31T05:24:59.8020746Z python-packaging-25.0-1-any downloading...
2025-10-31T05:24:59.8021472Z zlib-ng-2.2.5-1-x86_64 downloading...
2025-10-31T05:24:59.8022334Z bc-1.08.2-1-x86_64 downloading...
2025-10-31T05:24:59.8023037Z docbook-xml-4.5-11-any downloading...
2025-10-31T05:24:59.8023762Z perl-mailtools-2.22-2-any downloading...
2025-10-31T05:24:59.8024590Z python-sphinxcontrib-htmlhelp-2.1.0-3-any downloading...
2025-10-31T05:24:59.8025452Z perl-timedate-2.33-8-any downloading...
2025-10-31T05:24:59.8026314Z python-sphinxcontrib-applehelp-2.0.0-3-any downloading...
2025-10-31T05:24:59.8027378Z python-sphinxcontrib-serializinghtml-2.0.0-3-any downloading...
2025-10-31T05:24:59.8028405Z python-sphinxcontrib-qthelp-2.0.0-3-any downloading...
2025-10-31T05:24:59.8029607Z xmlto-0.0.29-1-x86_64 downloading...
2025-10-31T05:24:59.8030482Z python-sphinxcontrib-devhelp-2.0.0-4-any downloading...
2025-10-31T05:24:59.8031087Z perl-error-0.17030-2-any downloading...
2025-10-31T05:24:59.8031588Z python-markupsafe-3.0.2-1-x86_64 downloading...
2025-10-31T05:24:59.8032355Z python-sphinx-alabaster-theme-1.0.0-4-any downloading...
2025-10-31T05:24:59.8032931Z python-imagesize-1.4.1-6-any downloading...
2025-10-31T05:24:59.8033468Z python-roman-numerals-py-3.1.0-1-any downloading...
2025-10-31T05:24:59.8034039Z python-sphinxcontrib-jsmath-1.0.1-19-any downloading...
2025-10-31T05:24:59.8034553Z checking keyring...
2025-10-31T05:24:59.9046482Z checking package integrity...
2025-10-31T05:25:00.5084753Z loading package files...
2025-10-31T05:25:00.5560948Z checking for file conflicts...
2025-10-31T05:25:00.5762997Z checking available disk space...
2025-10-31T05:25:00.5796464Z :: Processing package changes...
2025-10-31T05:25:00.5797350Z installing bc...
2025-10-31T05:25:00.5808728Z installing docbook-xml...
2025-10-31T05:25:00.7145812Z installing libxslt...
2025-10-31T05:25:00.7211077Z Optional dependencies for libxslt
2025-10-31T05:25:00.7211918Z python: Python bindings [pending]
2025-10-31T05:25:00.7212876Z installing docbook-xsl...
2025-10-31T05:25:01.2665881Z installing pahole...
2025-10-31T05:25:01.2732566Z Optional dependencies for pahole
2025-10-31T05:25:01.2733477Z ostra-cg: Generate call graphs from encoded traces
2025-10-31T05:25:01.2734374Z installing mpdecimal...
2025-10-31T05:25:01.2755614Z installing python...
2025-10-31T05:25:01.5644848Z Optional dependencies for python
2025-10-31T05:25:01.5646064Z python-setuptools: for building Python packages using tooling that is usually bundled with Python
2025-10-31T05:25:01.5647104Z python-pip: for installing Python packages using tooling that is usually bundled with Python
2025-10-31T05:25:01.5648236Z python-pipx: for installing Python software not packaged on Arch Linux
2025-10-31T05:25:01.5648954Z sqlite: for a default database integration [installed]
2025-10-31T05:25:01.5649530Z xz: for lzma [installed]
2025-10-31T05:25:01.5649995Z tk: for tkinter
2025-10-31T05:25:01.5650447Z installing python-pytz...
2025-10-31T05:25:01.5664777Z installing python-babel...
2025-10-31T05:25:01.7165516Z installing python-docutils...
2025-10-31T05:25:01.7613799Z Optional dependencies for python-docutils
2025-10-31T05:25:01.7614889Z python-myst-parser: to parse input in "Markdown" (CommonMark) format
2025-10-31T05:25:01.7616061Z python-pillow: for some image manipulation operations
2025-10-31T05:25:01.7617340Z python-pygments: for syntax highlighting of code directives and roles [pending]
2025-10-31T05:25:01.7618490Z installing python-imagesize...
2025-10-31T05:25:01.7629273Z installing python-markupsafe...
2025-10-31T05:25:01.7646903Z installing python-jinja...
2025-10-31T05:25:01.7731916Z Optional dependencies for python-jinja
2025-10-31T05:25:01.7733149Z python-babel: for i18n support [installed]
2025-10-31T05:25:01.7734038Z installing python-packaging...
2025-10-31T05:25:01.7786386Z installing python-pygments...
2025-10-31T05:25:01.8777940Z installing python-charset-normalizer...
2025-10-31T05:25:01.8835495Z installing python-idna...
2025-10-31T05:25:01.8877948Z installing python-urllib3...
2025-10-31T05:25:01.8983353Z Optional dependencies for python-urllib3
2025-10-31T05:25:01.8984240Z python-brotli: Brotli support
2025-10-31T05:25:01.8985029Z python-brotlicffi: Brotli support
2025-10-31T05:25:01.8985797Z python-h2: HTTP/2 support
2025-10-31T05:25:01.8986570Z python-pysocks: SOCKS support
2025-10-31T05:25:01.8987399Z python-zstandard: Zstandard support
2025-10-31T05:25:01.8988247Z installing python-requests...
2025-10-31T05:25:01.9037434Z Optional dependencies for python-requests
2025-10-31T05:25:01.9038419Z python-chardet: alternative character encoding library
2025-10-31T05:25:01.9039392Z python-pysocks: SOCKS proxy support
2025-10-31T05:25:01.9040268Z installing python-roman-numerals-py...
2025-10-31T05:25:01.9051422Z installing python-snowballstemmer...
2025-10-31T05:25:01.9161329Z Optional dependencies for python-snowballstemmer
2025-10-31T05:25:01.9162548Z python-pystemmer: for improved performance
2025-10-31T05:25:01.9163458Z installing python-sphinx-alabaster-theme...
2025-10-31T05:25:01.9182649Z installing python-sphinxcontrib-applehelp...
2025-10-31T05:25:01.9347678Z installing python-sphinxcontrib-devhelp...
2025-10-31T05:25:01.9505653Z installing python-sphinxcontrib-htmlhelp...
2025-10-31T05:25:01.9685089Z installing python-sphinxcontrib-jsmath...
2025-10-31T05:25:01.9699608Z installing python-sphinxcontrib-qthelp...
2025-10-31T05:25:01.9858872Z installing python-sphinxcontrib-serializinghtml...
2025-10-31T05:25:02.0035150Z installing python-sphinx...
2025-10-31T05:25:02.1170791Z Optional dependencies for python-sphinx
2025-10-31T05:25:02.1171429Z imagemagick: for ext.imgconverter
2025-10-31T05:25:02.1172381Z texlive-fontsextra: for the default admonition title icons in PDF output
2025-10-31T05:25:02.1173197Z texlive-latexextra: for generation of PDF documentation
2025-10-31T05:25:02.1173835Z installing perl-error...
2025-10-31T05:25:02.1180910Z installing perl-timedate...
2025-10-31T05:25:02.1216587Z installing perl-mailtools...
2025-10-31T05:25:02.1243499Z installing zlib-ng...
2025-10-31T05:25:02.1263857Z installing git...
2025-10-31T05:25:02.2877004Z Optional dependencies for git
2025-10-31T05:25:02.2877756Z git-zsh-completion: upstream zsh completion
2025-10-31T05:25:02.2878281Z tk: gitk and git gui
2025-10-31T05:25:02.2878713Z openssh: ssh transport and crypto
2025-10-31T05:25:02.2879190Z man: show help with `git command --help`
2025-10-31T05:25:02.2879666Z perl-libwww: git svn
2025-10-31T05:25:02.2880168Z perl-term-readkey: git svn and interactive.singlekey setting
2025-10-31T05:25:02.2881035Z perl-io-socket-ssl: git send-email TLS support
2025-10-31T05:25:02.2881578Z perl-authen-sasl: git send-email TLS support
2025-10-31T05:25:02.2882507Z perl-cgi: gitweb (web interface) support
2025-10-31T05:25:02.2883000Z python: git svn & git p4 [installed]
2025-10-31T05:25:02.2883450Z subversion: git svn
2025-10-31T05:25:02.2883912Z org.freedesktop.secrets: keyring credential helper
2025-10-31T05:25:02.2884460Z libsecret: libsecret credential helper [installed]
2025-10-31T05:25:02.2884971Z less: the default pager for git
2025-10-31T05:25:02.2885410Z installing inetutils...
2025-10-31T05:25:02.3613184Z installing xmlto...
2025-10-31T05:25:02.3644408Z installing cpio...
2025-10-31T05:25:02.4937700Z :: Running post-transaction hooks...
2025-10-31T05:25:02.4938337Z (1/5) Creating system user accounts...
2025-10-31T05:25:02.5632560Z Creating group 'git' with GID 971.
2025-10-31T05:25:02.5635532Z Creating user 'git' (git daemon user) with UID 971 and GID 971.
2025-10-31T05:25:02.5640143Z Creating group '_talkd' with GID 970.
2025-10-31T05:25:02.5644449Z Creating user '_talkd' (User for legacy talkd server) with UID 970 and GID 970.
2025-10-31T05:25:02.5704323Z (2/5) Reloading system manager configuration...
2025-10-31T05:25:02.6393467Z Skipped: Running in chroot.
2025-10-31T05:25:02.6394398Z (3/5) Arming ConditionNeedsUpdate...
2025-10-31T05:25:02.7057514Z (4/5) Checking for old perl modules...
2025-10-31T05:25:02.7728272Z (5/5) Updating the info directory file...
2025-10-31T05:25:02.9285231Z ==> Retrieving sources...
2025-10-31T05:25:02.9370232Z -> Downloading linux-5.10.tar.xz...
2025-10-31T05:25:02.9409485Z % Total % Received % Xferd Average Speed Time Time Time Current
2025-10-31T05:25:02.9410848Z Dload Upload Total Spent Left Speed
2025-10-31T05:25:02.9411618Z
2025-10-31T05:25:04.1988940Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
2025-10-31T05:25:04.9675879Z 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0
2025-10-31T05:25:05.2823472Z 0 111M 0 32246 0 0 15911 0 2:02:08 0:00:02 2:02:06 15916
2025-10-31T05:25:05.2824393Z 100 111M 100 111M 0 0 47.4M 0 0:00:02 0:00:02 --:--:-- 47.5M
2025-10-31T05:25:05.2939283Z -> Downloading patch-5.10.246.xz...
2025-10-31T05:25:05.2980245Z % Total % Received % Xferd Average Speed Time Time Time Current
2025-10-31T05:25:05.2981482Z Dload Upload Total Spent Left Speed
2025-10-31T05:25:05.2982365Z
2025-10-31T05:25:05.8790568Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
2025-10-31T05:25:05.9056384Z 0 6801k 0 16375 0 0 28185 0 0:04:07 --:--:-- 0:04:07 28184
2025-10-31T05:25:05.9057674Z 100 6801k 100 6801k 0 0 10.9M 0 --:--:-- --:--:-- --:--:-- 10.9M
2025-10-31T05:25:05.9138855Z -> Found config
2025-10-31T05:25:05.9185554Z -> Found config.anbox
2025-10-31T05:25:05.9249780Z -> Downloading 0001-linux-5.10.246-gcc15.patch...
2025-10-31T05:25:05.9290793Z % Total % Received % Xferd Average Speed Time Time Time Current
2025-10-31T05:25:05.9292546Z Dload Upload Total Spent Left Speed
2025-10-31T05:25:05.9293441Z
2025-10-31T05:25:06.1988609Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
2025-10-31T05:25:06.1990286Z 100 6766 0 6766 0 0 25077 0 --:--:-- --:--:-- --:--:-- 25152
2025-10-31T05:25:06.2093799Z -> Downloading 0002-linux-5.10.246-gcc15.patch...
2025-10-31T05:25:06.2135599Z % Total % Received % Xferd Average Speed Time Time Time Current
2025-10-31T05:25:06.2136965Z Dload Upload Total Spent Left Speed
2025-10-31T05:25:06.2137728Z
2025-10-31T05:25:06.2943210Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
2025-10-31T05:25:06.2944620Z 100 9018 0 9018 0 0 109k 0 --:--:-- --:--:-- --:--:-- 110k
2025-10-31T05:25:06.3045479Z -> Downloading 0003-linux-5.10.246-gcc15.patch...
2025-10-31T05:25:06.3086405Z % Total % Received % Xferd Average Speed Time Time Time Current
2025-10-31T05:25:06.3087317Z Dload Upload Total Spent Left Speed
2025-10-31T05:25:06.3087696Z
2025-10-31T05:25:06.3742371Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
2025-10-31T05:25:06.3743844Z 100 5627 0 5627 0 0 85803 0 --:--:-- --:--:-- --:--:-- 86569
2025-10-31T05:25:06.3824639Z -> Found 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-CLONE_NEWUSER.patch
2025-10-31T05:25:06.3870796Z -> Found 0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_special_driver-list.patch
2025-10-31T05:25:06.3916627Z -> Found 0101-i2c-nuvoton-nc677x-hwmon-driver.patch
2025-10-31T05:25:06.3962606Z -> Found 0102-iomap-iomap_bmap-should-accept-unwritten-maps.patch
2025-10-31T05:25:06.4009271Z -> Found 0104-revert-xhci-Add-support-for-Renesas-controller-with-memory.patch
2025-10-31T05:25:06.4055014Z -> Found 0107-quirk-kernel-org-bug-210681-firmware_rome_error.patch
2025-10-31T05:25:06.4098486Z -> Found 0999-patch_realtek.patch
2025-10-31T05:25:06.4136176Z ==> Validating source files with sha256sums...
2025-10-31T05:25:06.7753567Z linux-5.10.tar.xz ... Passed
2025-10-31T05:25:06.8048921Z patch-5.10.246.xz ... Passed
2025-10-31T05:25:06.8135535Z config ... Passed
2025-10-31T05:25:06.8211473Z config.anbox ... Passed
2025-10-31T05:25:06.8276842Z 0001-linux-5.10.246-gcc15.patch ... Passed
2025-10-31T05:25:06.8341530Z 0002-linux-5.10.246-gcc15.patch ... Passed
2025-10-31T05:25:06.8406314Z 0003-linux-5.10.246-gcc15.patch ... Passed
2025-10-31T05:25:06.8482560Z 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-CLONE_NEWUSER.patch ... Passed
2025-10-31T05:25:06.8562468Z 0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_special_driver-list.patch ... Passed
2025-10-31T05:25:06.8641340Z 0101-i2c-nuvoton-nc677x-hwmon-driver.patch ... Passed
2025-10-31T05:25:06.8718804Z 0102-iomap-iomap_bmap-should-accept-unwritten-maps.patch ... Passed
2025-10-31T05:25:06.8795045Z 0104-revert-xhci-Add-support-for-Renesas-controller-with-memory.patch ... Passed
2025-10-31T05:25:06.8870100Z 0107-quirk-kernel-org-bug-210681-firmware_rome_error.patch ... Passed
2025-10-31T05:25:06.8951827Z 0999-patch_realtek.patch ... Passed
2025-10-31T05:25:06.9223147Z ==> Extracting sources...
2025-10-31T05:25:06.9817595Z -> Extracting linux-5.10.tar.xz with bsdtar
2025-10-31T05:25:15.4600075Z -> Extracting patch-5.10.246.xz with xz
2025-10-31T05:25:15.8883426Z ==> Starting prepare()...
2025-10-31T05:25:15.8884012Z ==> add upstream patch
2025-10-31T05:25:15.8892948Z patching file .gitignore
2025-10-31T05:25:15.8894059Z patching file Documentation/ABI/testing/configfs-usb-gadget-uvc
2025-10-31T05:25:15.8895100Z patching file Documentation/ABI/testing/evm
2025-10-31T05:25:15.8896123Z patching file Documentation/ABI/testing/sysfs-ata
2025-10-31T05:25:15.8898137Z patching file Documentation/ABI/testing/sysfs-bus-iio
2025-10-31T05:25:15.8900155Z patching file Documentation/ABI/testing/sysfs-bus-iio-lptimer-stm32
2025-10-31T05:25:15.8901115Z patching file Documentation/ABI/testing/sysfs-bus-iio-vf610
2025-10-31T05:25:15.8902193Z patching file Documentation/ABI/testing/sysfs-bus-optee-devices
2025-10-31T05:25:15.8903069Z patching file Documentation/ABI/testing/sysfs-bus-papr-pmem
2025-10-31T05:25:15.8904016Z patching file Documentation/ABI/testing/sysfs-bus-pci
2025-10-31T05:25:15.8905268Z patching file Documentation/ABI/testing/sysfs-bus-usb
2025-10-31T05:25:15.8906368Z patching file Documentation/ABI/testing/sysfs-class-devfreq
2025-10-31T05:25:15.8907317Z patching file Documentation/ABI/testing/sysfs-class-devlink
2025-10-31T05:25:15.8908311Z patching file Documentation/ABI/testing/sysfs-class-net-queues
2025-10-31T05:25:15.8909656Z patching file Documentation/ABI/testing/sysfs-class-net-statistics
2025-10-31T05:25:15.8911443Z patching file Documentation/ABI/testing/sysfs-devices-consumer
2025-10-31T05:25:15.8912645Z patching file Documentation/ABI/testing/sysfs-devices-memory
2025-10-31T05:25:15.8913628Z patching file Documentation/ABI/testing/sysfs-devices-removable
2025-10-31T05:25:15.8915062Z patching file Documentation/ABI/testing/sysfs-devices-supplier
2025-10-31T05:25:15.8916149Z patching file Documentation/ABI/testing/sysfs-devices-system-cpu
2025-10-31T05:25:15.8917420Z patching file Documentation/ABI/testing/sysfs-driver-ufs
2025-10-31T05:25:15.8919313Z patching file Documentation/ABI/testing/sysfs-driver-xen-blkback
2025-10-31T05:25:15.8920412Z patching file Documentation/ABI/testing/sysfs-driver-xen-blkfront
2025-10-31T05:25:15.8921496Z patching file Documentation/ABI/testing/sysfs-kernel-oops_count
2025-10-31T05:25:15.8922723Z patching file Documentation/ABI/testing/sysfs-kernel-warn_count
2025-10-31T05:25:15.8923815Z patching file Documentation/ABI/testing/sysfs-platform-asus-wmi
2025-10-31T05:25:15.8924797Z patching file Documentation/accounting/psi.rst
2025-10-31T05:25:15.8925769Z patching file Documentation/admin-guide/cgroup-v1/memory.rst
2025-10-31T05:25:15.8926857Z patching file Documentation/admin-guide/device-mapper/dm-integrity.rst
2025-10-31T05:25:15.8928425Z patching file Documentation/admin-guide/devices.txt
2025-10-31T05:25:15.8930970Z patching file Documentation/admin-guide/hw-vuln/gather_data_sampling.rst
2025-10-31T05:25:15.8932197Z patching file Documentation/admin-guide/hw-vuln/index.rst
2025-10-31T05:25:15.8933354Z patching file Documentation/admin-guide/hw-vuln/indirect-target-selection.rst
2025-10-31T05:25:15.8934642Z patching file Documentation/admin-guide/hw-vuln/processor_mmio_stale_data.rst
2025-10-31T05:25:15.8935882Z patching file Documentation/admin-guide/hw-vuln/reg-file-data-sampling.rst
2025-10-31T05:25:15.8937027Z patching file Documentation/admin-guide/hw-vuln/spectre.rst
2025-10-31T05:25:15.8938489Z patching file Documentation/admin-guide/hw-vuln/srso.rst
2025-10-31T05:25:15.8939669Z patching file Documentation/admin-guide/hw-vuln/vmscape.rst
2025-10-31T05:25:15.8941062Z patching file Documentation/admin-guide/kdump/gdbmacros.txt
2025-10-31T05:25:15.8945209Z patching file Documentation/admin-guide/kernel-parameters.txt
2025-10-31T05:25:15.8950311Z patching file Documentation/admin-guide/mm/memory-hotplug.rst
2025-10-31T05:25:15.8951388Z patching file Documentation/admin-guide/perf/arm-cmn.rst
2025-10-31T05:25:15.8952523Z patching file Documentation/admin-guide/pm/cpuidle.rst
2025-10-31T05:25:15.8953587Z patching file Documentation/admin-guide/security-bugs.rst
2025-10-31T05:25:15.8954870Z patching file Documentation/admin-guide/sysctl/kernel.rst
2025-10-31T05:25:15.8956733Z patching file Documentation/admin-guide/sysctl/net.rst
2025-10-31T05:25:15.8957779Z patching file Documentation/admin-guide/sysctl/vm.rst
2025-10-31T05:25:15.8958965Z patching file Documentation/arm/memory.rst
2025-10-31T05:25:15.8959898Z patching file Documentation/arm64/cpu-feature-registers.rst
2025-10-31T05:25:15.8961009Z patching file Documentation/arm64/elf_hwcaps.rst
2025-10-31T05:25:15.8961929Z patching file Documentation/arm64/silicon-errata.rst
2025-10-31T05:25:15.8963452Z patching file Documentation/arm64/tagged-address-abi.rst
2025-10-31T05:25:15.8964370Z patching file Documentation/asm-annotations.rst
2025-10-31T05:25:15.8965266Z patching file Documentation/atomic_bitops.txt
2025-10-31T05:25:15.8966163Z patching file Documentation/block/queue-sysfs.rst
2025-10-31T05:25:15.8967148Z patching file Documentation/conf.py
2025-10-31T05:25:15.8968281Z patching file Documentation/core-api/kernel-api.rst
2025-10-31T05:25:15.8969419Z patching file Documentation/dev-tools/gdb-kernel-debugging.rst
2025-10-31T05:25:15.8970479Z patching file Documentation/devicetree/bindings/arm/omap/omap.txt
2025-10-31T05:25:15.8971570Z patching file Documentation/devicetree/bindings/arm/qcom.yaml
2025-10-31T05:25:15.8973002Z patching file Documentation/devicetree/bindings/arm/tegra.yaml
2025-10-31T05:25:15.8974032Z patching file Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml
2025-10-31T05:25:15.8975197Z patching file Documentation/devicetree/bindings/clock/axi-clkgen.txt
2025-10-31T05:25:15.8976367Z patching file Documentation/devicetree/bindings/clock/qcom,gcc-msm8996.yaml
2025-10-31T05:25:15.8977625Z patching file Documentation/devicetree/bindings/clock/xlnx,versal-clk.yaml
2025-10-31T05:25:15.8978937Z patching file Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
2025-10-31T05:25:15.8980309Z patching file Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
2025-10-31T05:25:15.8981516Z patching file Documentation/devicetree/bindings/display/bridge/sii902x.txt
2025-10-31T05:25:15.8982942Z patching file Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
2025-10-31T05:25:15.8983890Z patching file Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
2025-10-31T05:25:15.8984874Z patching file Documentation/devicetree/bindings/dma/allwinner,sun50i-a64-dma.yaml
2025-10-31T05:25:15.8985726Z patching file Documentation/devicetree/bindings/dma/moxa,moxart-dma.txt
2025-10-31T05:25:15.8986428Z patching file Documentation/devicetree/bindings/gpio/gpio-altera.txt
2025-10-31T05:25:15.8987343Z patching file Documentation/devicetree/bindings/i2c/google,cros-ec-i2c-tunnel.yaml
2025-10-31T05:25:15.8988054Z patching file Documentation/devicetree/bindings/i2c/i2c-at91.txt
2025-10-31T05:25:15.8988868Z patching file Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
2025-10-31T05:25:15.8989659Z patching file Documentation/devicetree/bindings/media/renesas,vin.yaml
2025-10-31T05:25:15.8990438Z patching file Documentation/devicetree/bindings/mmc/mmc-controller.yaml
2025-10-31T05:25:15.8991300Z patching file Documentation/devicetree/bindings/mtd/gpmc-nand.txt
2025-10-31T05:25:15.8992615Z patching file Documentation/devicetree/bindings/mtd/nand-controller.yaml
2025-10-31T05:25:15.8993893Z patching file Documentation/devicetree/bindings/net/btusb.txt
2025-10-31T05:25:15.8995052Z patching file Documentation/devicetree/bindings/net/can/tcan4x5x.txt
2025-10-31T05:25:15.8996534Z patching file Documentation/devicetree/bindings/net/ethernet-controller.yaml
2025-10-31T05:25:15.8997852Z patching file Documentation/devicetree/bindings/net/ethernet-phy.yaml
2025-10-31T05:25:15.8999116Z patching file Documentation/devicetree/bindings/net/renesas,etheravb.yaml
2025-10-31T05:25:15.9000368Z patching file Documentation/devicetree/bindings/nvmem/mxs-ocotp.yaml
2025-10-31T05:25:15.9001634Z patching file Documentation/devicetree/bindings/phy/amlogic,g12a-usb2-phy.yaml
2025-10-31T05:25:15.9003231Z patching file Documentation/devicetree/bindings/phy/amlogic,g12a-usb3-pcie-phy.yaml
2025-10-31T05:25:15.9004731Z patching file Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb2-phy.yaml
2025-10-31T05:25:15.9006266Z patching file Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb3-pcie-phy.yaml
2025-10-31T05:25:15.9007786Z patching file Documentation/devicetree/bindings/pinctrl/aspeed,ast2600-pinctrl.yaml
2025-10-31T05:25:15.9009294Z patching file Documentation/devicetree/bindings/pinctrl/marvell,armada-37xx-pinctrl.txt
2025-10-31T05:25:15.9010791Z patching file Documentation/devicetree/bindings/regulator/nxp,pca9450-regulator.yaml
2025-10-31T05:25:15.9012370Z patching file Documentation/devicetree/bindings/regulator/samsung,s5m8767.txt
2025-10-31T05:25:15.9013733Z patching file Documentation/devicetree/bindings/riscv/sifive-l2-cache.yaml
2025-10-31T05:25:15.9014952Z patching file Documentation/devicetree/bindings/rtc/rtc.yaml
2025-10-31T05:25:15.9016065Z patching file Documentation/devicetree/bindings/serial/8250.yaml
2025-10-31T05:25:15.9017294Z patching file Documentation/devicetree/bindings/serial/renesas,scif.yaml
2025-10-31T05:25:15.9018529Z patching file Documentation/devicetree/bindings/serial/rs485.yaml
2025-10-31T05:25:15.9019716Z patching file Documentation/devicetree/bindings/serial/st,stm32-uart.yaml
2025-10-31T05:25:15.9021246Z patching file Documentation/devicetree/bindings/sound/amlogic,gx-sound-card.yaml
2025-10-31T05:25:15.9022722Z patching file Documentation/devicetree/bindings/sound/mt6359.yaml
2025-10-31T05:25:15.9023918Z patching file Documentation/devicetree/bindings/sound/qcom,wcd9335.txt
2025-10-31T05:25:15.9025117Z patching file Documentation/devicetree/bindings/sound/rt5645.txt
2025-10-31T05:25:15.9026267Z patching file Documentation/devicetree/bindings/sound/tas2562.yaml
2025-10-31T05:25:15.9027404Z patching file Documentation/devicetree/bindings/sound/tas2764.yaml
2025-10-31T05:25:15.9028545Z patching file Documentation/devicetree/bindings/sound/tas2770.yaml
2025-10-31T05:25:15.9029766Z patching file Documentation/devicetree/bindings/spi/qcom,spi-qcom-qspi.yaml
2025-10-31T05:25:15.9031021Z patching file Documentation/devicetree/bindings/spi/spi-mxic.txt
2025-10-31T05:25:15.9032387Z patching file Documentation/devicetree/bindings/thermal/thermal-zones.yaml
2025-10-31T05:25:15.9033667Z patching file Documentation/devicetree/bindings/usb/cdns,usb3.yaml
2025-10-31T05:25:15.9034853Z patching file Documentation/devicetree/bindings/vendor-prefixes.yaml
2025-10-31T05:25:15.9036114Z patching file Documentation/devicetree/bindings/watchdog/samsung-wdt.yaml
2025-10-31T05:25:15.9037229Z patching file Documentation/dontdiff
2025-10-31T05:25:15.9038187Z patching file Documentation/driver-api/dmaengine/dmatest.rst
2025-10-31T05:25:15.9039432Z patching file Documentation/driver-api/early-userspace/early_userspace_support.rst
2025-10-31T05:25:15.9040674Z patching file Documentation/driver-api/firewire.rst
2025-10-31T05:25:15.9041715Z patching file Documentation/driver-api/fpga/fpga-bridge.rst
2025-10-31T05:25:15.9042945Z patching file Documentation/driver-api/fpga/fpga-mgr.rst
2025-10-31T05:25:15.9044032Z patching file Documentation/driver-api/fpga/fpga-programming.rst
2025-10-31T05:25:15.9045142Z patching file Documentation/driver-api/fpga/fpga-region.rst
2025-10-31T05:25:15.9046163Z patching file Documentation/driver-api/ipmi.rst
2025-10-31T05:25:15.9047108Z patching file Documentation/driver-api/spi.rst
2025-10-31T05:25:15.9048037Z patching file Documentation/driver-api/vfio.rst
2025-10-31T05:25:15.9049229Z patching file Documentation/driver-api/xilinx/eemi.rst
2025-10-31T05:25:15.9050310Z patching file Documentation/fault-injection/fault-injection.rst
2025-10-31T05:25:15.9051443Z patching file Documentation/fault-injection/provoke-crashes.rst
2025-10-31T05:25:15.9052728Z patching file Documentation/filesystems/autofs-mount-control.rst
2025-10-31T05:25:15.9053794Z patching file Documentation/filesystems/autofs.rst
2025-10-31T05:25:15.9054848Z patching file Documentation/filesystems/directory-locking.rst
2025-10-31T05:25:15.9055942Z patching file Documentation/filesystems/ext4/attributes.rst
2025-10-31T05:25:15.9056953Z patching file Documentation/filesystems/f2fs.rst
2025-10-31T05:25:15.9057910Z patching file Documentation/filesystems/files.rst
2025-10-31T05:25:15.9058884Z patching file Documentation/filesystems/fscrypt.rst
2025-10-31T05:25:15.9059867Z patching file Documentation/filesystems/locking.rst
2025-10-31T05:25:15.9060840Z patching file Documentation/filesystems/mount_api.rst
2025-10-31T05:25:15.9061869Z patching file Documentation/filesystems/nfs/exporting.rst
2025-10-31T05:25:15.9063064Z patching file Documentation/filesystems/overlayfs.rst
2025-10-31T05:25:15.9064073Z patching file Documentation/filesystems/porting.rst
2025-10-31T05:25:15.9065133Z patching file Documentation/filesystems/ramfs-rootfs-initramfs.rst
2025-10-31T05:25:15.9066194Z patching file Documentation/filesystems/seq_file.rst
2025-10-31T05:25:15.9067157Z patching file Documentation/filesystems/vfs.rst
2025-10-31T05:25:15.9068200Z patching file Documentation/firmware-guide/acpi/apei/einj.rst
2025-10-31T05:25:15.9069425Z patching file Documentation/firmware-guide/acpi/dsd/data-node-references.rst
2025-10-31T05:25:15.9070667Z patching file Documentation/firmware-guide/acpi/i2c-muxes.rst
2025-10-31T05:25:15.9071803Z patching file Documentation/gpu/todo.rst
2025-10-31T05:25:15.9072859Z patching file Documentation/hwmon/lm90.rst
2025-10-31T05:25:15.9073764Z patching file Documentation/hwmon/max31790.rst
2025-10-31T05:25:15.9074732Z patching file Documentation/input/joydev/joystick.rst
2025-10-31T05:25:15.9075729Z patching file Documentation/kbuild/gcc-plugins.rst
2025-10-31T05:25:15.9077287Z patching file Documentation/kernel-hacking/locking.rst
2025-10-31T05:25:15.9079169Z patching file Documentation/locking/hwspinlock.rst
2025-10-31T05:25:15.9080317Z patching file Documentation/locking/locktypes.rst
2025-10-31T05:25:15.9081563Z patching file Documentation/locking/seqlock.rst
2025-10-31T05:25:15.9084220Z patching file Documentation/memory-barriers.txt
2025-10-31T05:25:15.9087408Z patching file Documentation/networking/af_xdp.rst
2025-10-31T05:25:15.9089175Z patching file Documentation/networking/bonding.rst
2025-10-31T05:25:15.9092338Z patching file Documentation/networking/decnet.rst
2025-10-31T05:25:15.9094257Z patching file Documentation/networking/device_drivers/ethernet/intel/ixgbe.rst
2025-10-31T05:25:15.9095466Z patching file Documentation/networking/index.rst
2025-10-31T05:25:15.9096946Z patching file Documentation/networking/ip-sysctl.rst
2025-10-31T05:25:15.9100165Z patching file Documentation/networking/ipvs-sysctl.rst
2025-10-31T05:25:15.9101191Z patching file Documentation/networking/j1939.rst
2025-10-31T05:25:15.9102380Z patching file Documentation/networking/netdev-FAQ.rst
2025-10-31T05:25:15.9103895Z patching file Documentation/networking/netdevices.rst
2025-10-31T05:25:15.9105401Z patching file Documentation/powerpc/associativity.rst
2025-10-31T05:25:15.9106737Z patching file Documentation/powerpc/index.rst
2025-10-31T05:25:15.9107709Z patching file Documentation/powerpc/syscall64-abi.rst
2025-10-31T05:25:15.9108841Z patching file Documentation/process/code-of-conduct-interpretation.rst
2025-10-31T05:25:15.9109991Z patching file Documentation/process/deprecated.rst
2025-10-31T05:25:15.9111061Z patching file Documentation/process/stable-kernel-rules.rst
2025-10-31T05:25:15.9112326Z patching file Documentation/process/submitting-patches.rst
2025-10-31T05:25:15.9113720Z patching file Documentation/scsi/libsas.rst
2025-10-31T05:25:15.9115389Z patching file Documentation/scsi/scsi_mid_low_api.rst
2025-10-31T05:25:15.9117755Z patching file Documentation/security/keys/core.rst
2025-10-31T05:25:15.9120547Z patching file Documentation/sound/alsa-configuration.rst
2025-10-31T05:25:15.9123224Z patching file Documentation/sound/hd-audio/models.rst
2025-10-31T05:25:15.9124335Z patching file Documentation/sound/soc/dapm.rst
2025-10-31T05:25:15.9125419Z patching file Documentation/sphinx/kernel_include.py
2025-10-31T05:25:15.9126448Z patching file Documentation/sphinx/load_config.py
2025-10-31T05:25:15.9127448Z patching file Documentation/sphinx/parse-headers.pl
2025-10-31T05:25:15.9128462Z patching file Documentation/target/tcm_mod_builder.py
2025-10-31T05:25:15.9129621Z patching file Documentation/timers/no_hz.rst
2025-10-31T05:25:15.9131028Z patching file Documentation/trace/events.rst
2025-10-31T05:25:15.9134077Z patching file Documentation/trace/ftrace.rst
2025-10-31T05:25:15.9137629Z patching file Documentation/trace/histogram-design.rst
2025-10-31T05:25:15.9140487Z patching file Documentation/trace/histogram.rst
2025-10-31T05:25:15.9143861Z patching file Documentation/trace/postprocess/decode_msr.py
2025-10-31T05:25:15.9145103Z patching file Documentation/trace/postprocess/trace-pagealloc-postprocess.pl
2025-10-31T05:25:15.9146427Z patching file Documentation/trace/postprocess/trace-vmscan-postprocess.pl
2025-10-31T05:25:15.9147715Z patching file Documentation/translations/it_IT/kernel-hacking/locking.rst
2025-10-31T05:25:15.9149345Z patching file Documentation/userspace-api/ioctl/ioctl-number.rst
2025-10-31T05:25:15.9152272Z patching file Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst
2025-10-31T05:25:15.9156956Z patching file Documentation/userspace-api/media/v4l/subdev-formats.rst
2025-10-31T05:25:15.9160722Z patching file Documentation/userspace-api/seccomp_filter.rst
2025-10-31T05:25:15.9163930Z patching file Documentation/virt/kvm/api.rst
2025-10-31T05:25:15.9168526Z patching file Documentation/virt/kvm/devices/vm.rst
2025-10-31T05:25:15.9169532Z patching file Documentation/virt/kvm/mmu.rst
2025-10-31T05:25:15.9170856Z patching file Documentation/vm/arch_pgtable_helpers.rst
2025-10-31T05:25:15.9172302Z patching file Documentation/vm/memory-model.rst
2025-10-31T05:25:15.9173261Z patching file Documentation/vm/slub.rst
2025-10-31T05:25:15.9174513Z patching file Documentation/x86/mds.rst
2025-10-31T05:25:15.9175639Z patching file Documentation/x86/topology.rst
2025-10-31T05:25:15.9185930Z patching file MAINTAINERS
2025-10-31T05:25:15.9196403Z patching file Makefile
2025-10-31T05:25:15.9200067Z patching file arch/Kconfig
2025-10-31T05:25:15.9201552Z patching file arch/alpha/boot/tools/objstrip.c
2025-10-31T05:25:15.9202722Z patching file arch/alpha/include/asm/bugs.h
2025-10-31T05:25:15.9203803Z patching file arch/alpha/include/asm/elf.h
2025-10-31T05:25:15.9204965Z patching file arch/alpha/include/asm/io.h
2025-10-31T05:25:15.9206294Z patching file arch/alpha/include/asm/local64.h
2025-10-31T05:25:15.9207256Z patching file arch/alpha/include/asm/pgtable.h
2025-10-31T05:25:15.9208518Z patching file arch/alpha/include/asm/processor.h
2025-10-31T05:25:15.9209516Z patching file arch/alpha/include/asm/thread_info.h
2025-10-31T05:25:15.9210380Z patching file arch/alpha/include/asm/timex.h
2025-10-31T05:25:15.9211363Z patching file arch/alpha/include/uapi/asm/ptrace.h
2025-10-31T05:25:15.9212531Z patching file arch/alpha/kernel/asm-offsets.c
2025-10-31T05:25:15.9213419Z patching file arch/alpha/kernel/entry.S
2025-10-31T05:25:15.9214971Z patching file arch/alpha/kernel/module.c
2025-10-31T05:25:15.9216221Z patching file arch/alpha/kernel/osf_sys.c
2025-10-31T05:25:15.9218222Z patching file arch/alpha/kernel/process.c
2025-10-31T05:25:15.9219122Z patching file arch/alpha/kernel/rtc.c
2025-10-31T05:25:15.9220463Z patching file arch/alpha/kernel/setup.c
2025-10-31T05:25:15.9222440Z patching file arch/alpha/kernel/signal.c
2025-10-31T05:25:15.9223642Z patching file arch/alpha/kernel/smp.c
2025-10-31T05:25:15.9225501Z patching file arch/alpha/kernel/srmcons.c
2025-10-31T05:25:15.9226793Z patching file arch/alpha/kernel/traps.c
2025-10-31T05:25:15.9228867Z patching file arch/alpha/mm/fault.c
2025-10-31T05:25:15.9229716Z patching file arch/arc/Makefile
2025-10-31T05:25:15.9230566Z patching file arch/arc/boot/Makefile
2025-10-31T05:25:15.9231584Z patching file arch/arc/boot/dts/hsdk.dts
2025-10-31T05:25:15.9232843Z patching file arch/arc/include/asm/Kbuild
2025-10-31T05:25:15.9233730Z patching file arch/arc/include/asm/io.h
2025-10-31T05:25:15.9234833Z patching file arch/arc/include/asm/linkage.h
2025-10-31T05:25:15.9235704Z patching file arch/arc/include/asm/page.h
2025-10-31T05:25:15.9236496Z patching file arch/arc/include/asm/pgtable.h
2025-10-31T05:25:15.9237697Z patching file arch/arc/include/asm/thread_info.h
2025-10-31T05:25:15.9238720Z patching file arch/arc/include/uapi/asm/page.h
2025-10-31T05:25:15.9239693Z patching file arch/arc/include/uapi/asm/sigcontext.h
2025-10-31T05:25:15.9240639Z patching file arch/arc/kernel/entry.S
2025-10-31T05:25:15.9254083Z patching file arch/arc/kernel/fpu.c
2025-10-31T05:25:15.9255019Z patching file arch/arc/kernel/process.c
2025-10-31T05:25:15.9255878Z patching file arch/arc/kernel/signal.c
2025-10-31T05:25:15.9256718Z patching file arch/arc/kernel/smp.c
2025-10-31T05:25:15.9257566Z patching file arch/arc/kernel/vmlinux.lds.S
2025-10-31T05:25:15.9258418Z patching file arch/arc/mm/cache.c
2025-10-31T05:25:15.9259239Z patching file arch/arc/mm/init.c
2025-10-31T05:25:15.9260056Z patching file arch/arc/mm/ioremap.c
2025-10-31T05:25:15.9260883Z patching file arch/arc/mm/tlb.c
2025-10-31T05:25:15.9261666Z patching file arch/arm/Kconfig
2025-10-31T05:25:15.9262629Z patching file arch/arm/Kconfig.debug
2025-10-31T05:25:15.9263454Z patching file arch/arm/Makefile
2025-10-31T05:25:15.9264306Z patching file arch/arm/boot/compressed/Makefile
2025-10-31T05:25:15.9265434Z patching file arch/arm/boot/compressed/atags_to_fdt.c
2025-10-31T05:25:15.9266427Z patching file arch/arm/boot/compressed/decompress.c
2025-10-31T05:25:15.9267412Z patching file arch/arm/boot/compressed/efi-header.S
2025-10-31T05:25:15.9268363Z patching file arch/arm/boot/compressed/head.S
2025-10-31T05:25:15.9269261Z patching file arch/arm/boot/dts/Makefile
2025-10-31T05:25:15.9270149Z patching file arch/arm/boot/dts/am335x-baltos.dtsi
2025-10-31T05:25:15.9271137Z patching file arch/arm/boot/dts/am335x-bone-common.dtsi
2025-10-31T05:25:15.9272286Z patching file arch/arm/boot/dts/am335x-cm-t335.dts
2025-10-31T05:25:15.9273254Z patching file arch/arm/boot/dts/am335x-evmsk.dts
2025-10-31T05:25:15.9274215Z patching file arch/arm/boot/dts/am335x-guardian.dts
2025-10-31T05:25:15.9275243Z patching file arch/arm/boot/dts/am335x-moxa-uc-2100-common.dtsi
2025-10-31T05:25:15.9276327Z patching file arch/arm/boot/dts/am335x-moxa-uc-8100-common.dtsi
2025-10-31T05:25:15.9277362Z patching file arch/arm/boot/dts/am335x-pcm-953.dtsi
2025-10-31T05:25:15.9278306Z patching file arch/arm/boot/dts/am33xx-l4.dtsi
2025-10-31T05:25:15.9279223Z patching file arch/arm/boot/dts/am33xx.dtsi
2025-10-31T05:25:15.9280121Z patching file arch/arm/boot/dts/am3517-evm.dts
2025-10-31T05:25:15.9281421Z patching file arch/arm/boot/dts/am3517-som.dtsi
2025-10-31T05:25:15.9283005Z patching file arch/arm/boot/dts/am437x-gp-evm.dts
2025-10-31T05:25:15.9285320Z patching file arch/arm/boot/dts/am437x-l4.dtsi
2025-10-31T05:25:15.9287983Z patching file arch/arm/boot/dts/am43x-epos-evm.dts
2025-10-31T05:25:15.9289218Z patching file arch/arm/boot/dts/am5718.dtsi
2025-10-31T05:25:15.9290379Z patching file arch/arm/boot/dts/am57xx-cl-som-am57x.dts
2025-10-31T05:25:15.9291847Z patching file arch/arm/boot/dts/arm-realview-pb1176.dts
2025-10-31T05:25:15.9293232Z patching file arch/arm/boot/dts/armada-370.dtsi
2025-10-31T05:25:15.9295412Z patching file arch/arm/boot/dts/armada-375.dtsi
2025-10-31T05:25:15.9296418Z patching file arch/arm/boot/dts/armada-380.dtsi
2025-10-31T05:25:15.9298021Z patching file arch/arm/boot/dts/armada-385-turris-omnia.dts
2025-10-31T05:25:15.9299245Z patching file arch/arm/boot/dts/armada-385.dtsi
2025-10-31T05:25:15.9300262Z patching file arch/arm/boot/dts/armada-388-helios4.dts
2025-10-31T05:25:15.9301544Z patching file arch/arm/boot/dts/armada-38x.dtsi
2025-10-31T05:25:15.9303082Z patching file arch/arm/boot/dts/armada-39x.dtsi
2025-10-31T05:25:15.9304414Z patching file arch/arm/boot/dts/armada-xp-98dx3236.dtsi
2025-10-31T05:25:15.9305414Z patching file arch/arm/boot/dts/armada-xp-mv78230.dtsi
2025-10-31T05:25:15.9306421Z patching file arch/arm/boot/dts/armada-xp-mv78260.dtsi
2025-10-31T05:25:15.9307671Z patching file arch/arm/boot/dts/aspeed-ast2500-evb.dts
2025-10-31T05:25:15.9308560Z patching file arch/arm/boot/dts/aspeed-ast2600-evb.dts
2025-10-31T05:25:15.9309540Z patching file arch/arm/boot/dts/aspeed-bmc-facebook-tiogapass.dts
2025-10-31T05:25:15.9310724Z patching file arch/arm/boot/dts/aspeed-bmc-ibm-rainier.dts
2025-10-31T05:25:15.9312164Z patching file arch/arm/boot/dts/aspeed-bmc-intel-s2600wf.dts
2025-10-31T05:25:15.9313222Z patching file arch/arm/boot/dts/aspeed-bmc-opp-tacoma.dts
2025-10-31T05:25:15.9314759Z patching file arch/arm/boot/dts/aspeed-g4.dtsi
2025-10-31T05:25:15.9316356Z patching file arch/arm/boot/dts/aspeed-g5.dtsi
2025-10-31T05:25:15.9317986Z patching file arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi
2025-10-31T05:25:15.9319444Z patching file arch/arm/boot/dts/aspeed-g6.dtsi
2025-10-31T05:25:15.9320817Z patching file arch/arm/boot/dts/at91-kizbox3_common.dtsi
2025-10-31T05:25:15.9321737Z patching file arch/arm/boot/dts/at91-sam9x60ek.dts
2025-10-31T05:25:15.9323563Z patching file arch/arm/boot/dts/at91-sama5d27_som1.dtsi
2025-10-31T05:25:15.9324592Z patching file arch/arm/boot/dts/at91-sama5d27_som1_ek.dts
2025-10-31T05:25:15.9325929Z patching file arch/arm/boot/dts/at91-sama5d27_wlsom1.dtsi
2025-10-31T05:25:15.9327114Z patching file arch/arm/boot/dts/at91-sama5d27_wlsom1_ek.dts
2025-10-31T05:25:15.9328321Z patching file arch/arm/boot/dts/at91-sama5d2_icp.dts
2025-10-31T05:25:15.9330117Z patching file arch/arm/boot/dts/at91-sama5d2_ptc_ek.dts
2025-10-31T05:25:15.9331367Z patching file arch/arm/boot/dts/at91-sama5d2_xplained.dts
2025-10-31T05:25:15.9332936Z patching file arch/arm/boot/dts/at91-sama5d3_xplained.dts
2025-10-31T05:25:15.9334340Z patching file arch/arm/boot/dts/at91-sama5d4_xplained.dts
2025-10-31T05:25:15.9335558Z patching file arch/arm/boot/dts/at91-tse850-3.dts
2025-10-31T05:25:15.9336650Z patching file arch/arm/boot/dts/at91rm9200.dtsi
2025-10-31T05:25:15.9337946Z patching file arch/arm/boot/dts/at91sam9260ek.dts
2025-10-31T05:25:15.9338911Z patching file arch/arm/boot/dts/at91sam9261ek.dts
2025-10-31T05:25:15.9339952Z patching file arch/arm/boot/dts/at91sam9263ek.dts
2025-10-31T05:25:15.9341045Z patching file arch/arm/boot/dts/at91sam9g20ek_common.dtsi
2025-10-31T05:25:15.9342543Z patching file arch/arm/boot/dts/at91sam9rl.dtsi
2025-10-31T05:25:15.9344214Z patching file arch/arm/boot/dts/bcm-cygnus.dtsi
2025-10-31T05:25:15.9345460Z patching file arch/arm/boot/dts/bcm-hr2.dtsi
2025-10-31T05:25:15.9346603Z patching file arch/arm/boot/dts/bcm-nsp.dtsi
2025-10-31T05:25:15.9347964Z patching file arch/arm/boot/dts/bcm2711-rpi-4-b.dts
2025-10-31T05:25:15.9349208Z patching file arch/arm/boot/dts/bcm2711.dtsi
2025-10-31T05:25:15.9351739Z patching file arch/arm/boot/dts/bcm2835-rpi-a-plus.dts
2025-10-31T05:25:15.9352933Z patching file arch/arm/boot/dts/bcm2835-rpi-a.dts
2025-10-31T05:25:15.9354116Z patching file arch/arm/boot/dts/bcm2835-rpi-b-plus.dts
2025-10-31T05:25:15.9355145Z patching file arch/arm/boot/dts/bcm2835-rpi-b-rev2.dts
2025-10-31T05:25:15.9356152Z patching file arch/arm/boot/dts/bcm2835-rpi-b.dts
2025-10-31T05:25:15.9357135Z patching file arch/arm/boot/dts/bcm2835-rpi-cm1.dtsi
2025-10-31T05:25:15.9358151Z patching file arch/arm/boot/dts/bcm2835-rpi-zero-w.dts
2025-10-31T05:25:15.9359162Z patching file arch/arm/boot/dts/bcm2835-rpi-zero.dts
2025-10-31T05:25:15.9360148Z patching file arch/arm/boot/dts/bcm2835-rpi.dtsi
2025-10-31T05:25:15.9361105Z patching file arch/arm/boot/dts/bcm2836-rpi-2-b.dts
2025-10-31T05:25:15.9362448Z patching file arch/arm/boot/dts/bcm2837-rpi-3-a-plus.dts
2025-10-31T05:25:15.9363507Z patching file arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts
2025-10-31T05:25:15.9364528Z patching file arch/arm/boot/dts/bcm2837-rpi-3-b.dts
2025-10-31T05:25:15.9365532Z patching file arch/arm/boot/dts/bcm2837-rpi-cm3-io3.dts
2025-10-31T05:25:15.9366531Z patching file arch/arm/boot/dts/bcm2837-rpi-cm3.dtsi
2025-10-31T05:25:15.9367490Z patching file arch/arm/boot/dts/bcm2837.dtsi
2025-10-31T05:25:15.9368395Z patching file arch/arm/boot/dts/bcm283x.dtsi
2025-10-31T05:25:15.9369367Z patching file arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dts
2025-10-31T05:25:15.9370412Z patching file arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts
2025-10-31T05:25:15.9371493Z patching file arch/arm/boot/dts/bcm4708-buffalo-wzr-1750dhp.dts
2025-10-31T05:25:15.9372834Z patching file arch/arm/boot/dts/bcm4708-linksys-ea6500-v2.dts
2025-10-31T05:25:15.9373922Z patching file arch/arm/boot/dts/bcm4708-netgear-r6250.dts
2025-10-31T05:25:15.9374985Z patching file arch/arm/boot/dts/bcm4708-netgear-r6300-v2.dts
2025-10-31T05:25:15.9376067Z patching file arch/arm/boot/dts/bcm4708-smartrg-sr400ac.dts
2025-10-31T05:25:15.9377115Z patching file arch/arm/boot/dts/bcm47081-asus-rt-n18u.dts
2025-10-31T05:25:15.9378190Z patching file arch/arm/boot/dts/bcm47081-buffalo-wzr-600dhp2.dts
2025-10-31T05:25:15.9379306Z patching file arch/arm/boot/dts/bcm47081-buffalo-wzr-900dhp.dts
2025-10-31T05:25:15.9380382Z patching file arch/arm/boot/dts/bcm4709-asus-rt-ac87u.dts
2025-10-31T05:25:15.9381467Z patching file arch/arm/boot/dts/bcm4709-buffalo-wxr-1900dhp.dts
2025-10-31T05:25:15.9382702Z patching file arch/arm/boot/dts/bcm4709-linksys-ea9200.dts
2025-10-31T05:25:15.9383751Z patching file arch/arm/boot/dts/bcm4709-netgear-r7000.dts
2025-10-31T05:25:15.9384781Z patching file arch/arm/boot/dts/bcm4709-netgear-r8000.dts
2025-10-31T05:25:15.9386080Z patching file arch/arm/boot/dts/bcm4709-tplink-archer-c9-v1.dts
2025-10-31T05:25:15.9387190Z patching file arch/arm/boot/dts/bcm47094-dlink-dir-885l.dts
2025-10-31T05:25:15.9388280Z patching file arch/arm/boot/dts/bcm47094-linksys-panamera.dts
2025-10-31T05:25:15.9389373Z patching file arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
2025-10-31T05:25:15.9390431Z patching file arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
2025-10-31T05:25:15.9391475Z patching file arch/arm/boot/dts/bcm47094-luxul-xwc-2000.dts
2025-10-31T05:25:15.9392669Z patching file arch/arm/boot/dts/bcm47094-luxul-xwr-3100.dts
2025-10-31T05:25:15.9393752Z patching file arch/arm/boot/dts/bcm47094-luxul-xwr-3150-v1.dts
2025-10-31T05:25:15.9394823Z patching file arch/arm/boot/dts/bcm47094-netgear-r8500.dts
2025-10-31T05:25:15.9395861Z patching file arch/arm/boot/dts/bcm47094-phicomm-k3.dts
2025-10-31T05:25:15.9396901Z patching file arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
2025-10-31T05:25:15.9397966Z patching file arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
2025-10-31T05:25:15.9399002Z patching file arch/arm/boot/dts/bcm53015-meraki-mr26.dts
2025-10-31T05:25:15.9400063Z patching file arch/arm/boot/dts/bcm53016-meraki-mr32.dts
2025-10-31T05:25:15.9401045Z patching file arch/arm/boot/dts/bcm5301x.dtsi
2025-10-31T05:25:15.9402110Z patching file arch/arm/boot/dts/bcm53573.dtsi
2025-10-31T05:25:15.9403021Z patching file arch/arm/boot/dts/bcm63138.dtsi
2025-10-31T05:25:15.9403972Z patching file arch/arm/boot/dts/bcm7445-bcm97445svmb.dts
2025-10-31T05:25:15.9404948Z patching file arch/arm/boot/dts/bcm7445.dtsi
2025-10-31T05:25:15.9405890Z patching file arch/arm/boot/dts/bcm911360_entphn.dts
2025-10-31T05:25:15.9406841Z patching file arch/arm/boot/dts/bcm94708.dts
2025-10-31T05:25:15.9407732Z patching file arch/arm/boot/dts/bcm94709.dts
2025-10-31T05:25:15.9408644Z patching file arch/arm/boot/dts/bcm947189acdbmr.dts
2025-10-31T05:25:15.9409586Z patching file arch/arm/boot/dts/bcm958300k.dts
2025-10-31T05:25:15.9410496Z patching file arch/arm/boot/dts/bcm958305k.dts
2025-10-31T05:25:15.9411403Z patching file arch/arm/boot/dts/bcm958522er.dts
2025-10-31T05:25:15.9412522Z patching file arch/arm/boot/dts/bcm958525er.dts
2025-10-31T05:25:15.9413611Z patching file arch/arm/boot/dts/bcm958525xmc.dts
2025-10-31T05:25:15.9414545Z patching file arch/arm/boot/dts/bcm958622hr.dts
2025-10-31T05:25:15.9415445Z patching file arch/arm/boot/dts/bcm958623hr.dts
2025-10-31T05:25:15.9416365Z patching file arch/arm/boot/dts/bcm958625hr.dts
2025-10-31T05:25:15.9417283Z patching file arch/arm/boot/dts/bcm958625k.dts
2025-10-31T05:25:15.9418157Z patching file arch/arm/boot/dts/bcm963138dvt.dts
2025-10-31T05:25:15.9419087Z patching file arch/arm/boot/dts/bcm988312hr.dts
2025-10-31T05:25:15.9419965Z patching file arch/arm/boot/dts/dm816x.dtsi
2025-10-31T05:25:15.9420802Z patching file arch/arm/boot/dts/dove.dtsi
2025-10-31T05:25:15.9421716Z patching file arch/arm/boot/dts/dra7-ipu-dsp-common.dtsi
2025-10-31T05:25:15.9422883Z patching file arch/arm/boot/dts/dra7-l4.dtsi
2025-10-31T05:25:15.9423776Z patching file arch/arm/boot/dts/dra7.dtsi
2025-10-31T05:25:15.9424648Z patching file arch/arm/boot/dts/dra71x.dtsi
2025-10-31T05:25:15.9425541Z patching file arch/arm/boot/dts/dra72x.dtsi
2025-10-31T05:25:15.9426501Z patching file arch/arm/boot/dts/dra74-ipu-dsp-common.dtsi
2025-10-31T05:25:15.9427467Z patching file arch/arm/boot/dts/dra74x.dtsi
2025-10-31T05:25:15.9428362Z patching file arch/arm/boot/dts/e60k02.dtsi
2025-10-31T05:25:15.9429554Z patching file arch/arm/boot/dts/exynos3250-artik5.dtsi
2025-10-31T05:25:15.9430724Z patching file arch/arm/boot/dts/exynos3250-monk.dts
2025-10-31T05:25:15.9432273Z patching file arch/arm/boot/dts/exynos3250-rinato.dts
2025-10-31T05:25:15.9433712Z patching file arch/arm/boot/dts/exynos4-cpu-thermal.dtsi
2025-10-31T05:25:15.9434703Z patching file arch/arm/boot/dts/exynos4.dtsi
2025-10-31T05:25:15.9436128Z patching file arch/arm/boot/dts/exynos4210-i9100.dts
2025-10-31T05:25:15.9437525Z patching file arch/arm/boot/dts/exynos4210-smdkv310.dts
2025-10-31T05:25:15.9438702Z patching file arch/arm/boot/dts/exynos4210.dtsi
2025-10-31T05:25:15.9439706Z patching file arch/arm/boot/dts/exynos4412-itop-elite.dts
2025-10-31T05:25:15.9440841Z patching file arch/arm/boot/dts/exynos4412-midas.dtsi
2025-10-31T05:25:15.9442832Z patching file arch/arm/boot/dts/exynos4412-odroid-common.dtsi
2025-10-31T05:25:15.9445260Z patching file arch/arm/boot/dts/exynos4412-origen.dts
2025-10-31T05:25:15.9446335Z patching file arch/arm/boot/dts/exynos4412-smdk4412.dts
2025-10-31T05:25:15.9447379Z patching file arch/arm/boot/dts/exynos5250-pinctrl.dtsi
2025-10-31T05:25:15.9448629Z patching file arch/arm/boot/dts/exynos5250-smdk5250.dts
2025-10-31T05:25:15.9450005Z patching file arch/arm/boot/dts/exynos5250-snow-common.dtsi
2025-10-31T05:25:15.9451242Z patching file arch/arm/boot/dts/exynos5250-spring.dts
2025-10-31T05:25:15.9452856Z patching file arch/arm/boot/dts/exynos5250.dtsi
2025-10-31T05:25:15.9454541Z patching file arch/arm/boot/dts/exynos5410-odroidxu.dts
2025-10-31T05:25:15.9455821Z patching file arch/arm/boot/dts/exynos5410-pinctrl.dtsi
2025-10-31T05:25:15.9457053Z patching file arch/arm/boot/dts/exynos5410.dtsi
2025-10-31T05:25:15.9458341Z patching file arch/arm/boot/dts/exynos5420-arndale-octa.dts
2025-10-31T05:25:15.9459586Z patching file arch/arm/boot/dts/exynos5420-smdk5420.dts
2025-10-31T05:25:15.9460910Z patching file arch/arm/boot/dts/exynos5420.dtsi
2025-10-31T05:25:15.9463048Z patching file arch/arm/boot/dts/exynos5422-odroid-core.dtsi
2025-10-31T05:25:15.9464349Z patching file arch/arm/boot/dts/exynos5422-odroidhc1.dts
2025-10-31T05:25:15.9465683Z patching file arch/arm/boot/dts/exynos5422-odroidxu3-common.dtsi
2025-10-31T05:25:15.9466797Z patching file arch/arm/boot/dts/exynos5422-odroidxu4.dts
2025-10-31T05:25:15.9467869Z patching file arch/arm/boot/dts/exynos54xx-odroidxu-leds.dtsi
2025-10-31T05:25:15.9468952Z patching file arch/arm/boot/dts/gemini-dlink-dns-313.dts
2025-10-31T05:25:15.9469951Z patching file arch/arm/boot/dts/gemini-nas4220b.dts
2025-10-31T05:25:15.9470929Z patching file arch/arm/boot/dts/gemini-rut1xx.dts
2025-10-31T05:25:15.9471886Z patching file arch/arm/boot/dts/gemini-wbd111.dts
2025-10-31T05:25:15.9473178Z patching file arch/arm/boot/dts/gemini-wbd222.dts
2025-10-31T05:25:15.9474113Z patching file arch/arm/boot/dts/gemini.dtsi
2025-10-31T05:25:15.9474990Z patching file arch/arm/boot/dts/imx1-ads.dts
2025-10-31T05:25:15.9475904Z patching file arch/arm/boot/dts/imx1-apf9328.dts
2025-10-31T05:25:15.9476821Z patching file arch/arm/boot/dts/imx1.dtsi
2025-10-31T05:25:15.9477699Z patching file arch/arm/boot/dts/imx23-evk.dts
2025-10-31T05:25:15.9478672Z patching file arch/arm/boot/dts/imx23-sansa.dts
2025-10-31T05:25:15.9479589Z patching file arch/arm/boot/dts/imx23.dtsi
2025-10-31T05:25:15.9480578Z patching file arch/arm/boot/dts/imx25-eukrea-cpuimx25.dtsi
2025-10-31T05:25:15.9481791Z patching file arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts
2025-10-31T05:25:15.9483312Z patching file arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts
2025-10-31T05:25:15.9484664Z patching file arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts
2025-10-31T05:25:15.9485829Z patching file arch/arm/boot/dts/imx25-pdk.dts
2025-10-31T05:25:15.9486775Z patching file arch/arm/boot/dts/imx25.dtsi
2025-10-31T05:25:15.9487662Z patching file arch/arm/boot/dts/imx27-apf27dev.dts
2025-10-31T05:25:15.9488682Z patching file arch/arm/boot/dts/imx27-eukrea-cpuimx27.dtsi
2025-10-31T05:25:15.9489800Z patching file arch/arm/boot/dts/imx27-eukrea-mbimxsd27-baseboard.dts
2025-10-31T05:25:15.9490958Z patching file arch/arm/boot/dts/imx27-phytec-phycard-s-rdk.dts
2025-10-31T05:25:15.9492207Z patching file arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts
2025-10-31T05:25:15.9493292Z patching file arch/arm/boot/dts/imx27-phytec-phycore-som.dtsi
2025-10-31T05:25:15.9494297Z patching file arch/arm/boot/dts/imx27.dtsi
2025-10-31T05:25:15.9495171Z patching file arch/arm/boot/dts/imx28-evk.dts
2025-10-31T05:25:15.9496276Z patching file arch/arm/boot/dts/imx28-m28evk.dts
2025-10-31T05:25:15.9497199Z patching file arch/arm/boot/dts/imx28-sps1.dts
2025-10-31T05:25:15.9498081Z patching file arch/arm/boot/dts/imx28.dtsi
2025-10-31T05:25:15.9498958Z patching file arch/arm/boot/dts/imx31.dtsi
2025-10-31T05:25:15.9499803Z patching file arch/arm/boot/dts/imx35.dtsi
2025-10-31T05:25:15.9500934Z patching file arch/arm/boot/dts/imx50.dtsi
2025-10-31T05:25:15.9502393Z patching file arch/arm/boot/dts/imx51.dtsi
2025-10-31T05:25:15.9503716Z patching file arch/arm/boot/dts/imx53-m53menlo.dts
2025-10-31T05:25:15.9505229Z patching file arch/arm/boot/dts/imx53-ppd.dts
2025-10-31T05:25:15.9506880Z patching file arch/arm/boot/dts/imx53.dtsi
2025-10-31T05:25:15.9508339Z patching file arch/arm/boot/dts/imx6dl-colibri-eval-v3.dts
2025-10-31T05:25:15.9509445Z patching file arch/arm/boot/dts/imx6dl-eckelmann-ci4x10.dts
2025-10-31T05:25:15.9510463Z patching file arch/arm/boot/dts/imx6dl-prtrvt.dts
2025-10-31T05:25:15.9511262Z patching file arch/arm/boot/dts/imx6dl-rex-basic.dts
2025-10-31T05:25:15.9512291Z patching file arch/arm/boot/dts/imx6dl-riotboard.dts
2025-10-31T05:25:15.9513566Z patching file arch/arm/boot/dts/imx6dl-yapp4-common.dtsi
2025-10-31T05:25:15.9515162Z patching file arch/arm/boot/dts/imx6dl.dtsi
2025-10-31T05:25:15.9516205Z patching file arch/arm/boot/dts/imx6q-apalis-eval.dts
2025-10-31T05:25:15.9517275Z patching file arch/arm/boot/dts/imx6q-apalis-ixora-v1.1.dts
2025-10-31T05:25:15.9518353Z patching file arch/arm/boot/dts/imx6q-apalis-ixora.dts
2025-10-31T05:25:15.9519341Z patching file arch/arm/boot/dts/imx6q-ba16.dtsi
2025-10-31T05:25:15.9520311Z patching file arch/arm/boot/dts/imx6q-bx50v3.dtsi
2025-10-31T05:25:15.9521475Z patching file arch/arm/boot/dts/imx6q-cm-fx6.dts
2025-10-31T05:25:15.9522858Z patching file arch/arm/boot/dts/imx6q-dhcom-som.dtsi
2025-10-31T05:25:15.9524407Z patching file arch/arm/boot/dts/imx6q-dmo-edmqmx6.dts
2025-10-31T05:25:15.9525427Z patching file arch/arm/boot/dts/imx6q-dms-ba16.dts
2025-10-31T05:25:15.9526416Z patching file arch/arm/boot/dts/imx6q-gw5400-a.dts
2025-10-31T05:25:15.9527455Z patching file arch/arm/boot/dts/imx6q-kontron-samx6i.dtsi
2025-10-31T05:25:15.9528639Z patching file arch/arm/boot/dts/imx6q-marsboard.dts
2025-10-31T05:25:15.9529606Z patching file arch/arm/boot/dts/imx6q-prti6q.dts
2025-10-31T05:25:15.9530592Z patching file arch/arm/boot/dts/imx6q-rex-pro.dts
2025-10-31T05:25:15.9531564Z patching file arch/arm/boot/dts/imx6q-tbs2910.dts
2025-10-31T05:25:15.9532909Z patching file arch/arm/boot/dts/imx6q.dtsi
2025-10-31T05:25:15.9534270Z patching file arch/arm/boot/dts/imx6qdl-apalis.dtsi
2025-10-31T05:25:15.9535765Z patching file arch/arm/boot/dts/imx6qdl-aristainetos.dtsi
2025-10-31T05:25:15.9536982Z patching file arch/arm/boot/dts/imx6qdl-aristainetos2.dtsi
2025-10-31T05:25:15.9538241Z patching file arch/arm/boot/dts/imx6qdl-colibri.dtsi
2025-10-31T05:25:15.9539696Z patching file arch/arm/boot/dts/imx6qdl-dfi-fs700-m60.dtsi
2025-10-31T05:25:15.9541328Z patching file arch/arm/boot/dts/imx6qdl-emcon-avari.dtsi
2025-10-31T05:25:15.9543079Z patching file arch/arm/boot/dts/imx6qdl-gw52xx.dtsi
2025-10-31T05:25:15.9544671Z patching file arch/arm/boot/dts/imx6qdl-gw560x.dtsi
2025-10-31T05:25:15.9554647Z patching file arch/arm/boot/dts/imx6qdl-gw5910.dtsi
2025-10-31T05:25:15.9555708Z patching file arch/arm/boot/dts/imx6qdl-gw5913.dtsi
2025-10-31T05:25:15.9556757Z patching file arch/arm/boot/dts/imx6qdl-kontron-samx6i.dtsi
2025-10-31T05:25:15.9557823Z patching file arch/arm/boot/dts/imx6qdl-nit6xlite.dtsi
2025-10-31T05:25:15.9558854Z patching file arch/arm/boot/dts/imx6qdl-nitrogen6_max.dtsi
2025-10-31T05:25:15.9559909Z patching file arch/arm/boot/dts/imx6qdl-nitrogen6_som2.dtsi
2025-10-31T05:25:15.9560959Z patching file arch/arm/boot/dts/imx6qdl-nitrogen6x.dtsi
2025-10-31T05:25:15.9562192Z patching file arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi
2025-10-31T05:25:15.9563244Z patching file arch/arm/boot/dts/imx6qdl-pico.dtsi
2025-10-31T05:25:15.9564224Z patching file arch/arm/boot/dts/imx6qdl-prti6q.dtsi
2025-10-31T05:25:15.9565375Z patching file arch/arm/boot/dts/imx6qdl-sabreauto.dtsi
2025-10-31T05:25:15.9566392Z patching file arch/arm/boot/dts/imx6qdl-sabrelite.dtsi
2025-10-31T05:25:15.9567377Z patching file arch/arm/boot/dts/imx6qdl-sabresd.dtsi
2025-10-31T05:25:15.9568365Z patching file arch/arm/boot/dts/imx6qdl-sr-som.dtsi
2025-10-31T05:25:15.9569317Z patching file arch/arm/boot/dts/imx6qdl-ts7970.dtsi
2025-10-31T05:25:15.9570263Z patching file arch/arm/boot/dts/imx6qdl-udoo.dtsi
2025-10-31T05:25:15.9571242Z patching file arch/arm/boot/dts/imx6qdl-wandboard.dtsi
2025-10-31T05:25:15.9572366Z patching file arch/arm/boot/dts/imx6qdl.dtsi
2025-10-31T05:25:15.9573274Z patching file arch/arm/boot/dts/imx6qp.dtsi
2025-10-31T05:25:15.9574157Z patching file arch/arm/boot/dts/imx6sl-evk.dts
2025-10-31T05:25:15.9575127Z patching file arch/arm/boot/dts/imx6sl-tolino-shine2hd.dts
2025-10-31T05:25:15.9576123Z patching file arch/arm/boot/dts/imx6sl.dtsi
2025-10-31T05:25:15.9576992Z patching file arch/arm/boot/dts/imx6sll.dtsi
2025-10-31T05:25:15.9577961Z patching file arch/arm/boot/dts/imx6sx-nitrogen6sx.dts
2025-10-31T05:25:15.9578950Z patching file arch/arm/boot/dts/imx6sx-sdb-reva.dts
2025-10-31T05:25:15.9579906Z patching file arch/arm/boot/dts/imx6sx-sdb.dts
2025-10-31T05:25:15.9580799Z patching file arch/arm/boot/dts/imx6sx.dtsi
2025-10-31T05:25:15.9581902Z patching file arch/arm/boot/dts/imx6ul-14x14-evk.dtsi
2025-10-31T05:25:15.9583313Z patching file arch/arm/boot/dts/imx6ul-kontron-n6310-som.dtsi
2025-10-31T05:25:15.9584424Z patching file arch/arm/boot/dts/imx6ul-kontron-n6311-som.dtsi
2025-10-31T05:25:15.9585518Z patching file arch/arm/boot/dts/imx6ul-kontron-n6x1x-s.dtsi
2025-10-31T05:25:15.9586704Z patching file arch/arm/boot/dts/imx6ul-kontron-n6x1x-som-common.dtsi
2025-10-31T05:25:15.9587821Z patching file arch/arm/boot/dts/imx6ul-pico-dwarf.dts
2025-10-31T05:25:15.9588773Z patching file arch/arm/boot/dts/imx6ul.dtsi
2025-10-31T05:25:15.9589755Z patching file arch/arm/boot/dts/imx6ull-colibri-wifi.dtsi
2025-10-31T05:25:15.9590771Z patching file arch/arm/boot/dts/imx6ull-colibri.dtsi
2025-10-31T05:25:15.9591842Z patching file arch/arm/boot/dts/imx6ull-kontron-n6411-som.dtsi
2025-10-31T05:25:15.9593308Z patching file arch/arm/boot/dts/imx6ull-myir-mys-6ulx-eval.dts
2025-10-31T05:25:15.9594378Z patching file arch/arm/boot/dts/imx6ull-pinfunc.h
2025-10-31T05:25:15.9595390Z patching file arch/arm/boot/dts/imx7-colibri-aster.dtsi
2025-10-31T05:25:15.9596428Z patching file arch/arm/boot/dts/imx7-colibri-eval-v3.dtsi
2025-10-31T05:25:15.9597421Z patching file arch/arm/boot/dts/imx7-colibri.dtsi
2025-10-31T05:25:15.9598363Z patching file arch/arm/boot/dts/imx7-mba7.dtsi
2025-10-31T05:25:15.9599327Z patching file arch/arm/boot/dts/imx7d-colibri-emmc.dtsi
2025-10-31T05:25:15.9600327Z patching file arch/arm/boot/dts/imx7d-meerkat96.dts
2025-10-31T05:25:15.9601318Z patching file arch/arm/boot/dts/imx7d-nitrogen7.dts
2025-10-31T05:25:15.9602607Z patching file arch/arm/boot/dts/imx7d-pico-dwarf.dts
2025-10-31T05:25:15.9603657Z patching file arch/arm/boot/dts/imx7d-pico-hobbit.dts
2025-10-31T05:25:15.9604655Z patching file arch/arm/boot/dts/imx7d-pico-nymph.dts
2025-10-31T05:25:15.9605651Z patching file arch/arm/boot/dts/imx7d-pico-pi.dts
2025-10-31T05:25:15.9606607Z patching file arch/arm/boot/dts/imx7d-pico.dtsi
2025-10-31T05:25:15.9607687Z patching file arch/arm/boot/dts/imx7d-sdb.dts
2025-10-31T05:25:15.9609151Z patching file arch/arm/boot/dts/imx7d-zii-rmu2.dts
2025-10-31T05:25:15.9610131Z patching file arch/arm/boot/dts/imx7d.dtsi
2025-10-31T05:25:15.9611367Z patching file arch/arm/boot/dts/imx7s-warp.dts
2025-10-31T05:25:15.9612909Z patching file arch/arm/boot/dts/imx7s.dtsi
2025-10-31T05:25:15.9615437Z patching file arch/arm/boot/dts/imx7ulp.dtsi
2025-10-31T05:25:15.9616410Z patching file arch/arm/boot/dts/integratorap.dts
2025-10-31T05:25:15.9617427Z patching file arch/arm/boot/dts/iwg20d-q7-common.dtsi
2025-10-31T05:25:15.9618442Z patching file arch/arm/boot/dts/kirkwood-lsxl.dtsi
2025-10-31T05:25:15.9619665Z patching file arch/arm/boot/dts/logicpd-som-lv-35xx-devkit.dts
2025-10-31T05:25:15.9620772Z patching file arch/arm/boot/dts/logicpd-som-lv-37xx-devkit.dts
2025-10-31T05:25:15.9621818Z patching file arch/arm/boot/dts/logicpd-som-lv.dtsi
2025-10-31T05:25:15.9623044Z patching file arch/arm/boot/dts/logicpd-torpedo-baseboard.dtsi
2025-10-31T05:25:15.9624061Z patching file arch/arm/boot/dts/lpc32xx.dtsi
2025-10-31T05:25:15.9624995Z patching file arch/arm/boot/dts/ls1021a-tsn.dts
2025-10-31T05:25:15.9626090Z patching file arch/arm/boot/dts/ls1021a.dtsi
2025-10-31T05:25:15.9627739Z patching file arch/arm/boot/dts/meson.dtsi
2025-10-31T05:25:15.9629000Z patching file arch/arm/boot/dts/meson8.dtsi
2025-10-31T05:25:15.9630412Z patching file arch/arm/boot/dts/meson8b-ec100.dts
2025-10-31T05:25:15.9631519Z patching file arch/arm/boot/dts/meson8b-mxq.dts
2025-10-31T05:25:15.9632789Z patching file arch/arm/boot/dts/meson8b-odroidc1.dts
2025-10-31T05:25:15.9633999Z patching file arch/arm/boot/dts/meson8b.dtsi
2025-10-31T05:25:15.9635362Z patching file arch/arm/boot/dts/meson8m2-mxiii-plus.dts
2025-10-31T05:25:15.9636389Z patching file arch/arm/boot/dts/mmp2-brownstone.dts
2025-10-31T05:25:15.9637450Z patching file arch/arm/boot/dts/motorola-mapphone-common.dtsi
2025-10-31T05:25:15.9638969Z patching file arch/arm/boot/dts/moxart-uc7112lx.dts
2025-10-31T05:25:15.9639910Z patching file arch/arm/boot/dts/moxart.dtsi
2025-10-31T05:25:15.9640996Z patching file arch/arm/boot/dts/mt7623.dtsi
2025-10-31T05:25:15.9642729Z patching file arch/arm/boot/dts/omap-gpmc-smsc911x.dtsi
2025-10-31T05:25:15.9643771Z patching file arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi
2025-10-31T05:25:15.9644780Z patching file arch/arm/boot/dts/omap3-beagle-ab4.dts
2025-10-31T05:25:15.9646129Z patching file arch/arm/boot/dts/omap3-beagle.dts
2025-10-31T05:25:15.9647291Z patching file arch/arm/boot/dts/omap3-cm-t3517.dts
2025-10-31T05:25:15.9648285Z patching file arch/arm/boot/dts/omap3-cm-t3x.dtsi
2025-10-31T05:25:15.9649294Z patching file arch/arm/boot/dts/omap3-cpu-thermal.dtsi
2025-10-31T05:25:15.9650351Z patching file arch/arm/boot/dts/omap3-devkit8000-common.dtsi
2025-10-31T05:25:15.9651454Z patching file arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi
2025-10-31T05:25:15.9652872Z patching file arch/arm/boot/dts/omap3-devkit8000.dts
2025-10-31T05:25:15.9653865Z patching file arch/arm/boot/dts/omap3-gta04.dtsi
2025-10-31T05:25:15.9655054Z patching file arch/arm/boot/dts/omap3-gta04a5one.dts
2025-10-31T05:25:15.9656018Z patching file arch/arm/boot/dts/omap3-ldp.dts
2025-10-31T05:25:15.9656997Z patching file arch/arm/boot/dts/omap3-lilly-a83x.dtsi
2025-10-31T05:25:15.9658353Z patching file arch/arm/boot/dts/omap3-n900.dts
2025-10-31T05:25:15.9660824Z patching file arch/arm/boot/dts/omap3-n950-n9.dtsi
2025-10-31T05:25:15.9661887Z patching file arch/arm/boot/dts/omap3-overo-common-lcd35.dtsi
2025-10-31T05:25:15.9663242Z patching file arch/arm/boot/dts/omap3-overo-common-lcd43.dtsi
2025-10-31T05:25:15.9664361Z patching file arch/arm/boot/dts/omap3-overo-tobiduo-common.dtsi
2025-10-31T05:25:15.9665469Z patching file arch/arm/boot/dts/omap3-pandora-common.dtsi
2025-10-31T05:25:15.9666471Z patching file arch/arm/boot/dts/omap3-zoom3.dts
2025-10-31T05:25:15.9667635Z patching file arch/arm/boot/dts/omap3.dtsi
2025-10-31T05:25:15.9668968Z patching file arch/arm/boot/dts/omap3430-sdp.dts
2025-10-31T05:25:15.9669979Z patching file arch/arm/boot/dts/omap4-cpu-thermal.dtsi
2025-10-31T05:25:15.9671314Z patching file arch/arm/boot/dts/omap4-l4.dtsi
2025-10-31T05:25:15.9674068Z patching file arch/arm/boot/dts/omap4-panda-es.dts
2025-10-31T05:25:15.9675061Z patching file arch/arm/boot/dts/omap4.dtsi
2025-10-31T05:25:15.9676590Z patching file arch/arm/boot/dts/omap443x.dtsi
2025-10-31T05:25:15.9677548Z patching file arch/arm/boot/dts/omap4460.dtsi
2025-10-31T05:25:15.9678749Z patching file arch/arm/boot/dts/omap44xx-clocks.dtsi
2025-10-31T05:25:15.9680530Z patching file arch/arm/boot/dts/omap5-board-common.dtsi
2025-10-31T05:25:15.9682120Z patching file arch/arm/boot/dts/omap5-cm-t54.dts
2025-10-31T05:25:15.9684070Z patching file arch/arm/boot/dts/omap5-l4.dtsi
2025-10-31T05:25:15.9686731Z patching file arch/arm/boot/dts/omap5.dtsi
2025-10-31T05:25:15.9687800Z patching file arch/arm/boot/dts/ox820.dtsi
2025-10-31T05:25:15.9688878Z patching file arch/arm/boot/dts/picoxcell-pc3x2.dtsi
2025-10-31T05:25:15.9690214Z patching file arch/arm/boot/dts/qcom-apq8064.dtsi
2025-10-31T05:25:15.9692651Z patching file arch/arm/boot/dts/qcom-ipq4019.dtsi
2025-10-31T05:25:15.9693885Z patching file arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
2025-10-31T05:25:15.9695028Z patching file arch/arm/boot/dts/qcom-ipq8064.dtsi
2025-10-31T05:25:15.9696462Z patching file arch/arm/boot/dts/qcom-mdm9615.dtsi
2025-10-31T05:25:15.9697811Z patching file arch/arm/boot/dts/qcom-msm8960.dtsi
2025-10-31T05:25:15.9699186Z patching file arch/arm/boot/dts/qcom-msm8974.dtsi
2025-10-31T05:25:15.9700817Z patching file arch/arm/boot/dts/qcom-pm8841.dtsi
2025-10-31T05:25:15.9701784Z patching file arch/arm/boot/dts/r8a7779-marzen.dts
2025-10-31T05:25:15.9702943Z patching file arch/arm/boot/dts/r8a7779.dtsi
2025-10-31T05:25:15.9704365Z patching file arch/arm/boot/dts/r8a7790-lager.dts
2025-10-31T05:25:15.9705785Z patching file arch/arm/boot/dts/r8a7791-koelsch.dts
2025-10-31T05:25:15.9707214Z patching file arch/arm/boot/dts/r8a7791-porter.dts
2025-10-31T05:25:15.9708460Z patching file arch/arm/boot/dts/r8a7793-gose.dts
2025-10-31T05:25:15.9709716Z patching file arch/arm/boot/dts/r8a7794-alt.dts
2025-10-31T05:25:15.9710836Z patching file arch/arm/boot/dts/r8a7794-silk.dts
2025-10-31T05:25:15.9711897Z patching file arch/arm/boot/dts/rk3036-evb.dts
2025-10-31T05:25:15.9713278Z patching file arch/arm/boot/dts/rk3036-kylin.dts
2025-10-31T05:25:15.9714500Z patching file arch/arm/boot/dts/rk3036.dtsi
2025-10-31T05:25:15.9716537Z patching file arch/arm/boot/dts/rk3066a.dtsi
2025-10-31T05:25:15.9717880Z patching file arch/arm/boot/dts/rk3188-radxarock.dts
2025-10-31T05:25:15.9718956Z patching file arch/arm/boot/dts/rk3188.dtsi
2025-10-31T05:25:15.9720932Z patching file arch/arm/boot/dts/rk322x.dtsi
2025-10-31T05:25:15.9722658Z patching file arch/arm/boot/dts/rk3288-evb-act8846.dts
2025-10-31T05:25:15.9723673Z patching file arch/arm/boot/dts/rk3288-firefly.dtsi
2025-10-31T05:25:15.9725044Z patching file arch/arm/boot/dts/rk3288-miqi.dts
2025-10-31T05:25:15.9726054Z patching file arch/arm/boot/dts/rk3288-rock2-som.dtsi
2025-10-31T05:25:15.9727099Z patching file arch/arm/boot/dts/rk3288-rock2-square.dts
2025-10-31T05:25:15.9728107Z patching file arch/arm/boot/dts/rk3288-vyasa.dts
2025-10-31T05:25:15.9729597Z patching file arch/arm/boot/dts/rk3288.dtsi
2025-10-31T05:25:15.9732309Z patching file arch/arm/boot/dts/rk3xxx.dtsi
2025-10-31T05:25:15.9733286Z patching file arch/arm/boot/dts/s3c6410-mini6410.dts
2025-10-31T05:25:15.9734283Z patching file arch/arm/boot/dts/s3c64xx-pinctrl.dtsi
2025-10-31T05:25:15.9737569Z patching file arch/arm/boot/dts/s5pv210-aquila.dts
2025-10-31T05:25:15.9738572Z patching file arch/arm/boot/dts/s5pv210-aries.dtsi
2025-10-31T05:25:15.9740119Z patching file arch/arm/boot/dts/s5pv210-fascinate4g.dts
2025-10-31T05:25:15.9741131Z patching file arch/arm/boot/dts/s5pv210-goni.dts
2025-10-31T05:25:15.9742634Z patching file arch/arm/boot/dts/s5pv210-smdkv210.dts
2025-10-31T05:25:15.9743952Z patching file arch/arm/boot/dts/s5pv210.dtsi
2025-10-31T05:25:15.9745401Z patching file arch/arm/boot/dts/sam9x60.dtsi
2025-10-31T05:25:15.9747027Z patching file arch/arm/boot/dts/sama5d2.dtsi
2025-10-31T05:25:15.9749255Z patching file arch/arm/boot/dts/sama5d4.dtsi
2025-10-31T05:25:15.9750967Z patching file arch/arm/boot/dts/socfpga_arria10_socdk_qspi.dts
2025-10-31T05:25:15.9752237Z patching file arch/arm/boot/dts/socfpga_arria5_socdk.dts
2025-10-31T05:25:15.9753317Z patching file arch/arm/boot/dts/socfpga_cyclone5_socdk.dts
2025-10-31T05:25:15.9754381Z patching file arch/arm/boot/dts/socfpga_cyclone5_sockit.dts
2025-10-31T05:25:15.9755467Z patching file arch/arm/boot/dts/socfpga_cyclone5_socrates.dts
2025-10-31T05:25:15.9756550Z patching file arch/arm/boot/dts/socfpga_cyclone5_sodia.dts
2025-10-31T05:25:15.9757805Z patching file arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dts
2025-10-31T05:25:15.9758836Z patching file arch/arm/boot/dts/spear1340.dtsi
2025-10-31T05:25:15.9759765Z patching file arch/arm/boot/dts/spear13xx.dtsi
2025-10-31T05:25:15.9760711Z patching file arch/arm/boot/dts/spear320-hmi.dts
2025-10-31T05:25:15.9761648Z patching file arch/arm/boot/dts/spear3xx.dtsi
2025-10-31T05:25:15.9762744Z patching file arch/arm/boot/dts/spear600.dtsi
2025-10-31T05:25:15.9763654Z patching file arch/arm/boot/dts/ste-ab8500.dtsi
2025-10-31T05:25:15.9764573Z patching file arch/arm/boot/dts/ste-ab8505.dtsi
2025-10-31T05:25:15.9765494Z patching file arch/arm/boot/dts/ste-db8500.dtsi
2025-10-31T05:25:15.9766430Z patching file arch/arm/boot/dts/ste-db8520.dtsi
2025-10-31T05:25:15.9767340Z patching file arch/arm/boot/dts/ste-db9500.dtsi
2025-10-31T05:25:15.9768306Z patching file arch/arm/boot/dts/ste-href-ab8500.dtsi
2025-10-31T05:25:15.9769334Z patching file arch/arm/boot/dts/ste-href-tvk1281618-r3.dtsi
2025-10-31T05:25:15.9770332Z patching file arch/arm/boot/dts/ste-href.dtsi
2025-10-31T05:25:15.9771606Z patching file arch/arm/boot/dts/ste-nomadik-stn8815.dtsi
2025-10-31T05:25:15.9773252Z patching file arch/arm/boot/dts/ste-snowball.dts
2025-10-31T05:25:15.9774628Z patching file arch/arm/boot/dts/ste-ux500-samsung-golden.dts
2025-10-31T05:25:15.9775953Z patching file arch/arm/boot/dts/ste-ux500-samsung-skomer.dts
2025-10-31T05:25:15.9777244Z patching file arch/arm/boot/dts/stm32429i-eval.dts
2025-10-31T05:25:15.9778250Z patching file arch/arm/boot/dts/stm32746g-eval.dts
2025-10-31T05:25:15.9779234Z patching file arch/arm/boot/dts/stm32f429-disco.dts
2025-10-31T05:25:15.9780425Z patching file arch/arm/boot/dts/stm32f429.dtsi
2025-10-31T05:25:15.9781911Z patching file arch/arm/boot/dts/stm32f469-disco.dts
2025-10-31T05:25:15.9783106Z patching file arch/arm/boot/dts/stm32f7-pinctrl.dtsi
2025-10-31T05:25:15.9784389Z patching file arch/arm/boot/dts/stm32f746.dtsi
2025-10-31T05:25:15.9785704Z patching file arch/arm/boot/dts/stm32f769-disco.dts
2025-10-31T05:25:15.9786845Z patching file arch/arm/boot/dts/stm32h743.dtsi
2025-10-31T05:25:15.9788824Z patching file arch/arm/boot/dts/stm32mp15-pinctrl.dtsi
2025-10-31T05:25:15.9791470Z patching file arch/arm/boot/dts/stm32mp151.dtsi
2025-10-31T05:25:15.9793805Z patching file arch/arm/boot/dts/stm32mp157a-dhcor-avenger96.dts
2025-10-31T05:25:15.9794924Z patching file arch/arm/boot/dts/stm32mp157a-stinger96.dtsi
2025-10-31T05:25:15.9796005Z patching file arch/arm/boot/dts/stm32mp157c-odyssey-som.dtsi
2025-10-31T05:25:15.9797076Z patching file arch/arm/boot/dts/stm32mp157c-odyssey.dts
2025-10-31T05:25:15.9798142Z patching file arch/arm/boot/dts/stm32mp15xx-dhcom-drc02.dtsi
2025-10-31T05:25:15.9799226Z patching file arch/arm/boot/dts/stm32mp15xx-dhcom-pdk2.dtsi
2025-10-31T05:25:15.9800292Z patching file arch/arm/boot/dts/stm32mp15xx-dhcom-som.dtsi
2025-10-31T05:25:15.9801400Z patching file arch/arm/boot/dts/stm32mp15xx-dhcor-avenger96.dtsi
2025-10-31T05:25:15.9802703Z patching file arch/arm/boot/dts/stm32mp15xx-dhcor-som.dtsi
2025-10-31T05:25:15.9803762Z patching file arch/arm/boot/dts/stm32mp15xx-dkx.dtsi
2025-10-31T05:25:15.9804950Z patching file arch/arm/boot/dts/stm32mp15xx-osd32.dtsi
2025-10-31T05:25:15.9805987Z patching file arch/arm/boot/dts/sun7i-a20-bananapro.dts
2025-10-31T05:25:15.9807079Z patching file arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts
2025-10-31T05:25:15.9808181Z patching file arch/arm/boot/dts/sun8i-a33.dtsi
2025-10-31T05:25:15.9809479Z patching file arch/arm/boot/dts/sun8i-a83t.dtsi
2025-10-31T05:25:15.9811141Z patching file arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts
2025-10-31T05:25:15.9812328Z patching file arch/arm/boot/dts/sun8i-h2-plus-orangepi-zero.dts
2025-10-31T05:25:15.9813302Z patching file arch/arm/boot/dts/sun8i-h3-nanopi-duo2.dts
2025-10-31T05:25:15.9814162Z patching file arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts
2025-10-31T05:25:15.9815051Z patching file arch/arm/boot/dts/sun8i-h3.dtsi
2025-10-31T05:25:15.9816083Z patching file arch/arm/boot/dts/sun8i-v3s.dtsi
2025-10-31T05:25:15.9817220Z patching file arch/arm/boot/dts/sun9i-a80-cubieboard4.dts
2025-10-31T05:25:15.9818249Z patching file arch/arm/boot/dts/suniv-f1c100s.dtsi
2025-10-31T05:25:15.9819345Z patching file arch/arm/boot/dts/tegra114.dtsi
2025-10-31T05:25:15.9821082Z patching file arch/arm/boot/dts/tegra124-nyan-big.dts
2025-10-31T05:25:15.9823682Z patching file arch/arm/boot/dts/tegra124-nyan-blaze.dts
2025-10-31T05:25:15.9825415Z patching file arch/arm/boot/dts/tegra124-venice2.dts
2025-10-31T05:25:15.9827122Z patching file arch/arm/boot/dts/tegra20-acer-a500-picasso.dts
2025-10-31T05:25:15.9828835Z patching file arch/arm/boot/dts/tegra20-harmony.dts
2025-10-31T05:25:15.9829982Z patching file arch/arm/boot/dts/tegra20-medcom-wide.dts
2025-10-31T05:25:15.9830979Z patching file arch/arm/boot/dts/tegra20-plutux.dts
2025-10-31T05:25:15.9832187Z patching file arch/arm/boot/dts/tegra20-seaboard.dts
2025-10-31T05:25:15.9833716Z patching file arch/arm/boot/dts/tegra20-tamonten.dtsi
2025-10-31T05:25:15.9834916Z patching file arch/arm/boot/dts/tegra20-tec.dts
2025-10-31T05:25:15.9835886Z patching file arch/arm/boot/dts/tegra20-ventana.dts
2025-10-31T05:25:15.9837388Z patching file arch/arm/boot/dts/tegra30-asus-nexus7-grouper-ti-pmic.dtsi
2025-10-31T05:25:15.9838870Z patching file arch/arm/boot/dts/tegra30-cardhu.dtsi
2025-10-31T05:25:15.9840000Z patching file arch/arm/boot/dts/tny_a9263.dts
2025-10-31T05:25:15.9841071Z patching file arch/arm/boot/dts/uniphier-pxs2.dtsi
2025-10-31T05:25:15.9842557Z patching file arch/arm/boot/dts/usb_a9263.dts
2025-10-31T05:25:15.9843632Z patching file arch/arm/boot/dts/versatile-ab.dts
2025-10-31T05:25:15.9844737Z patching file arch/arm/boot/dts/versatile-pb.dts
2025-10-31T05:25:15.9845718Z patching file arch/arm/boot/dts/vexpress-v2m.dtsi
2025-10-31T05:25:15.9846858Z patching file arch/arm/boot/dts/vexpress-v2p-ca5s.dts
2025-10-31T05:25:15.9847888Z patching file arch/arm/boot/dts/vexpress-v2p-ca9.dts
2025-10-31T05:25:15.9849121Z patching file arch/arm/boot/dts/vf610-zii-dev-rev-b.dts
2025-10-31T05:25:15.9850158Z patching file arch/arm/boot/dts/vf610-zii-dev-rev-c.dts
2025-10-31T05:25:15.9851526Z patching file arch/arm/boot/dts/vfxxx.dtsi
2025-10-31T05:25:15.9852982Z patching file arch/arm/configs/multi_v5_defconfig
2025-10-31T05:25:15.9854153Z patching file arch/arm/configs/multi_v7_defconfig
2025-10-31T05:25:15.9855615Z patching file arch/arm/crypto/Kconfig
2025-10-31T05:25:15.9856683Z patching file arch/arm/crypto/aes-ce-core.S
2025-10-31T05:25:15.9858115Z patching file arch/arm/crypto/aes-neonbs-glue.c
2025-10-31T05:25:15.9859570Z patching file arch/arm/crypto/curve25519-core.S
2025-10-31T05:25:15.9861732Z patching file arch/arm/crypto/poly1305-glue.c
2025-10-31T05:25:15.9862844Z patching file arch/arm/crypto/sha256_glue.c
2025-10-31T05:25:15.9863719Z patching file arch/arm/crypto/sha512-glue.c
2025-10-31T05:25:15.9864772Z patching file arch/arm/include/asm/Kbuild
2025-10-31T05:25:15.9865808Z patching file arch/arm/include/asm/assembler.h
2025-10-31T05:25:15.9867268Z patching file arch/arm/include/asm/bugs.h
2025-10-31T05:25:15.9876519Z patching file arch/arm/include/asm/cpuidle.h
2025-10-31T05:25:15.9877458Z patching file arch/arm/include/asm/dma.h
2025-10-31T05:25:15.9878355Z patching file arch/arm/include/asm/exception.h
2025-10-31T05:25:15.9879274Z patching file arch/arm/include/asm/fixmap.h
2025-10-31T05:25:15.9880151Z patching file arch/arm/include/asm/ftrace.h
2025-10-31T05:25:15.9881015Z patching file arch/arm/include/asm/insn.h
2025-10-31T05:25:15.9881860Z patching file arch/arm/include/asm/io.h
2025-10-31T05:25:15.9882936Z patching file arch/arm/include/asm/kexec-internal.h
2025-10-31T05:25:15.9883891Z patching file arch/arm/include/asm/mach/map.h
2025-10-31T05:25:15.9884804Z patching file arch/arm/include/asm/memory.h
2025-10-31T05:25:15.9885665Z patching file arch/arm/include/asm/module.h
2025-10-31T05:25:15.9886596Z patching file arch/arm/include/asm/perf_event.h
2025-10-31T05:25:15.9887528Z patching file arch/arm/include/asm/pgtable-3level.h
2025-10-31T05:25:15.9888681Z patching file arch/arm/include/asm/pgtable-nommu.h
2025-10-31T05:25:15.9889637Z patching file arch/arm/include/asm/pgtable.h
2025-10-31T05:25:15.9890524Z patching file arch/arm/include/asm/prom.h
2025-10-31T05:25:15.9891415Z patching file arch/arm/include/asm/ptrace.h
2025-10-31T05:25:15.9892495Z patching file arch/arm/include/asm/spectre.h
2025-10-31T05:25:15.9893391Z patching file arch/arm/include/asm/thread_info.h
2025-10-31T05:25:15.9894317Z patching file arch/arm/include/asm/timex.h
2025-10-31T05:25:15.9895189Z patching file arch/arm/include/asm/uaccess.h
2025-10-31T05:25:15.9896105Z patching file arch/arm/include/asm/vmlinux.lds.h
2025-10-31T05:25:15.9897043Z patching file arch/arm/include/debug/imx-uart.h
2025-10-31T05:25:15.9897960Z patching file arch/arm/include/debug/tegra.S
2025-10-31T05:25:15.9898845Z patching file arch/arm/kernel/Makefile
2025-10-31T05:25:15.9899714Z patching file arch/arm/kernel/asm-offsets.c
2025-10-31T05:25:15.9900587Z patching file arch/arm/kernel/atags.h
2025-10-31T05:25:15.9901435Z patching file arch/arm/kernel/atags_parse.c
2025-10-31T05:25:15.9902428Z patching file arch/arm/kernel/bugs.c
2025-10-31T05:25:15.9903266Z patching file arch/arm/kernel/devtree.c
2025-10-31T05:25:15.9904108Z patching file arch/arm/kernel/entry-armv.S
2025-10-31T05:25:15.9905022Z patching file arch/arm/kernel/entry-common.S
2025-10-31T05:25:15.9906387Z patching file arch/arm/kernel/entry-ftrace.S
2025-10-31T05:25:15.9907690Z patching file arch/arm/kernel/entry-v7m.S
2025-10-31T05:25:15.9908567Z patching file arch/arm/kernel/ftrace.c
2025-10-31T05:25:15.9909976Z patching file arch/arm/kernel/head.S
2025-10-31T05:25:15.9911660Z patching file arch/arm/kernel/hw_breakpoint.c
2025-10-31T05:25:15.9913501Z patching file arch/arm/kernel/insn.c
2025-10-31T05:25:15.9914562Z patching file arch/arm/kernel/iwmmxt.S
2025-10-31T05:25:15.9915927Z patching file arch/arm/kernel/iwmmxt.h
2025-10-31T05:25:15.9917256Z patching file arch/arm/kernel/kgdb.c
2025-10-31T05:25:15.9918557Z patching file arch/arm/kernel/machine_kexec.c
2025-10-31T05:25:15.9919699Z patching file arch/arm/kernel/module-plts.c
2025-10-31T05:25:15.9921360Z patching file arch/arm/kernel/perf_callchain.c
2025-10-31T05:25:15.9923194Z patching file arch/arm/kernel/perf_event_v7.c
2025-10-31T05:25:15.9925711Z patching file arch/arm/kernel/process.c
2025-10-31T05:25:15.9926639Z patching file arch/arm/kernel/relocate_kernel.S
2025-10-31T05:25:15.9927946Z patching file arch/arm/kernel/setup.c
2025-10-31T05:25:15.9930076Z patching file arch/arm/kernel/signal.c
2025-10-31T05:25:15.9931337Z patching file arch/arm/kernel/smccc-call.S
2025-10-31T05:25:15.9932659Z patching file arch/arm/kernel/smp.c
2025-10-31T05:25:15.9934000Z patching file arch/arm/kernel/spectre.c
2025-10-31T05:25:15.9935399Z patching file arch/arm/kernel/stacktrace.c
2025-10-31T05:25:15.9936410Z patching file arch/arm/kernel/suspend.c
2025-10-31T05:25:15.9937518Z patching file arch/arm/kernel/swp_emulate.c
2025-10-31T05:25:15.9938674Z patching file arch/arm/kernel/sys_oabi-compat.c
2025-10-31T05:25:15.9940059Z patching file arch/arm/kernel/traps.c
2025-10-31T05:25:15.9942255Z patching file arch/arm/kernel/unwind.c
2025-10-31T05:25:15.9943496Z patching file arch/arm/kernel/vmlinux-xip.lds.S
2025-10-31T05:25:15.9944448Z patching file arch/arm/lib/findbit.S
2025-10-31T05:25:15.9945483Z patching file arch/arm/lib/memset.S
2025-10-31T05:25:15.9946359Z patching file arch/arm/lib/xor-neon.c
2025-10-31T05:25:15.9947339Z patching file arch/arm/mach-at91/pm.c
2025-10-31T05:25:15.9949719Z patching file arch/arm/mach-at91/pm_suspend.S
2025-10-31T05:25:15.9950676Z patching file arch/arm/mach-axxia/platsmp.c
2025-10-31T05:25:15.9951621Z patching file arch/arm/mach-bcm/Kconfig
2025-10-31T05:25:15.9952637Z patching file arch/arm/mach-bcm/bcm_kona_smc.c
2025-10-31T05:25:15.9953609Z patching file arch/arm/mach-cns3xxx/core.c
2025-10-31T05:25:15.9954639Z patching file arch/arm/mach-davinci/Kconfig
2025-10-31T05:25:15.9955949Z patching file arch/arm/mach-davinci/board-da850-evm.c
2025-10-31T05:25:15.9957423Z patching file arch/arm/mach-davinci/pm.c
2025-10-31T05:25:15.9958508Z patching file arch/arm/mach-ep93xx/core.c
2025-10-31T05:25:15.9960129Z patching file arch/arm/mach-ep93xx/timer-ep93xx.c
2025-10-31T05:25:15.9960835Z patching file arch/arm/mach-exynos/Kconfig
2025-10-31T05:25:15.9961504Z patching file arch/arm/mach-exynos/exynos.c
2025-10-31T05:25:15.9962763Z patching file arch/arm/mach-footbridge/cats-pci.c
2025-10-31T05:25:15.9963668Z patching file arch/arm/mach-footbridge/dc21285.c
2025-10-31T05:25:15.9964754Z patching file arch/arm/mach-footbridge/ebsa285-pci.c
2025-10-31T05:25:15.9965485Z patching file arch/arm/mach-footbridge/netwinder-pci.c
2025-10-31T05:25:15.9966243Z patching file arch/arm/mach-footbridge/personal-pci.c
2025-10-31T05:25:15.9966944Z patching file arch/arm/mach-highbank/Kconfig
2025-10-31T05:25:15.9967612Z patching file arch/arm/mach-hisi/platsmp.c
2025-10-31T05:25:15.9968618Z patching file arch/arm/mach-imx/cpu-imx25.c
2025-10-31T05:25:15.9969577Z patching file arch/arm/mach-imx/cpu-imx27.c
2025-10-31T05:25:15.9970494Z patching file arch/arm/mach-imx/cpu-imx31.c
2025-10-31T05:25:15.9971387Z patching file arch/arm/mach-imx/cpu-imx35.c
2025-10-31T05:25:15.9972475Z patching file arch/arm/mach-imx/cpu-imx5.c
2025-10-31T05:25:15.9973357Z patching file arch/arm/mach-imx/mmdc.c
2025-10-31T05:25:15.9974827Z patching file arch/arm/mach-imx/pm-imx6.c
2025-10-31T05:25:15.9976087Z patching file arch/arm/mach-imx/suspend-imx53.S
2025-10-31T05:25:15.9976966Z patching file arch/arm/mach-imx/suspend-imx6.S
2025-10-31T05:25:15.9977910Z patching file arch/arm/mach-iop32x/include/mach/entry-macro.S
2025-10-31T05:25:15.9978614Z patching file arch/arm/mach-iop32x/include/mach/irqs.h
2025-10-31T05:25:15.9979242Z patching file arch/arm/mach-iop32x/irq.c
2025-10-31T05:25:15.9980064Z patching file arch/arm/mach-iop32x/irqs.h
2025-10-31T05:25:15.9981120Z patching file arch/arm/mach-ixp4xx/Kconfig
2025-10-31T05:25:15.9982235Z patching file arch/arm/mach-keystone/keystone.c
2025-10-31T05:25:15.9983112Z patching file arch/arm/mach-mediatek/Kconfig
2025-10-31T05:25:15.9984103Z patching file arch/arm/mach-meson/platsmp.c
2025-10-31T05:25:15.9985514Z patching file arch/arm/mach-mmp/sram.c
2025-10-31T05:25:15.9986424Z patching file arch/arm/mach-mmp/time.c
2025-10-31T05:25:15.9987282Z patching file arch/arm/mach-mstar/Kconfig
2025-10-31T05:25:15.9988154Z patching file arch/arm/mach-mxs/mach-mxs.c
2025-10-31T05:25:15.9989304Z patching file arch/arm/mach-omap1/ams-delta-fiq-handler.S
2025-10-31T05:25:15.9990346Z patching file arch/arm/mach-omap1/board-ams-delta.c
2025-10-31T05:25:15.9991860Z patching file arch/arm/mach-omap1/board-osk.c
2025-10-31T05:25:15.9993449Z patching file arch/arm/mach-omap1/clock.c
2025-10-31T05:25:15.9994966Z patching file arch/arm/mach-omap1/pm.c
2025-10-31T05:25:15.9996215Z patching file arch/arm/mach-omap1/timer.c
2025-10-31T05:25:15.9997252Z patching file arch/arm/mach-omap2/Kconfig
2025-10-31T05:25:15.9998376Z patching file arch/arm/mach-omap2/board-generic.c
2025-10-31T05:25:15.9999636Z patching file arch/arm/mach-omap2/board-n8x0.c
2025-10-31T05:25:16.0000891Z patching file arch/arm/mach-omap2/clockdomain.h
2025-10-31T05:25:16.0002254Z patching file arch/arm/mach-omap2/clockdomains33xx_data.c
2025-10-31T05:25:16.0003278Z patching file arch/arm/mach-omap2/cm33xx.c
2025-10-31T05:25:16.0004654Z patching file arch/arm/mach-omap2/cpuidle44xx.c
2025-10-31T05:25:16.0005914Z patching file arch/arm/mach-omap2/display.c
2025-10-31T05:25:16.0007224Z patching file arch/arm/mach-omap2/id.c
2025-10-31T05:25:16.0008633Z patching file arch/arm/mach-omap2/omap-secure.c
2025-10-31T05:25:16.0009786Z patching file arch/arm/mach-omap2/omap-secure.h
2025-10-31T05:25:16.0010743Z patching file arch/arm/mach-omap2/omap4-common.c
2025-10-31T05:25:16.0012181Z patching file arch/arm/mach-omap2/omap_device.c
2025-10-31T05:25:16.0015309Z patching file arch/arm/mach-omap2/omap_hwmod.c
2025-10-31T05:25:16.0018631Z patching file arch/arm/mach-omap2/pm33xx-core.c
2025-10-31T05:25:16.0019682Z patching file arch/arm/mach-omap2/pmic-cpcap.c
2025-10-31T05:25:16.0020967Z patching file arch/arm/mach-omap2/powerdomain.c
2025-10-31T05:25:16.0023007Z patching file arch/arm/mach-omap2/prm3xxx.c
2025-10-31T05:25:16.0024166Z patching file arch/arm/mach-omap2/sr_device.c
2025-10-31T05:25:16.0025601Z patching file arch/arm/mach-omap2/timer.c
2025-10-31T05:25:16.0026310Z patching file arch/arm/mach-orion5x/board-dt.c
2025-10-31T05:25:16.0027059Z patching file arch/arm/mach-orion5x/common.h
2025-10-31T05:25:16.0028153Z patching file arch/arm/mach-pxa/cm-x300.c
2025-10-31T05:25:16.0029643Z patching file arch/arm/mach-pxa/include/mach/spitz.h
2025-10-31T05:25:16.0031265Z patching file arch/arm/mach-pxa/magician.c
2025-10-31T05:25:16.0033122Z patching file arch/arm/mach-pxa/sharpsl_pm.c
2025-10-31T05:25:16.0034677Z patching file arch/arm/mach-pxa/spitz.c
2025-10-31T05:25:16.0036346Z patching file arch/arm/mach-pxa/spitz.h
2025-10-31T05:25:16.0038448Z patching file arch/arm/mach-pxa/spitz_pm.c
2025-10-31T05:25:16.0039385Z patching file arch/arm/mach-pxa/tosa.c
2025-10-31T05:25:16.0040861Z patching file arch/arm/mach-realview/platsmp-dt.c
2025-10-31T05:25:16.0041556Z patching file arch/arm/mach-rockchip/platsmp.c
2025-10-31T05:25:16.0042913Z patching file arch/arm/mach-s3c/irq-s3c24xx-fiq.S
2025-10-31T05:25:16.0044299Z patching file arch/arm/mach-s3c/irq-s3c24xx.c
2025-10-31T05:25:16.0046026Z patching file arch/arm/mach-s3c/mach-jive.c
2025-10-31T05:25:16.0047211Z patching file arch/arm/mach-s3c/s3c64xx.c
2025-10-31T05:25:16.0048162Z patching file arch/arm/mach-s5pv210/Kconfig
2025-10-31T05:25:16.0049064Z patching file arch/arm/mach-sa1100/jornada720_ssp.c
2025-10-31T05:25:16.0050163Z patching file arch/arm/mach-shmobile/headsmp.S
2025-10-31T05:25:16.0051273Z patching file arch/arm/mach-shmobile/regulator-quirk-rcar-gen2.c
2025-10-31T05:25:16.0052506Z patching file arch/arm/mach-socfpga/Kconfig
2025-10-31T05:25:16.0053417Z patching file arch/arm/mach-socfpga/core.h
2025-10-31T05:25:16.0054324Z patching file arch/arm/mach-socfpga/platsmp.c
2025-10-31T05:25:16.0055226Z patching file arch/arm/mach-sunxi/mc_smp.c
2025-10-31T05:25:16.0056427Z patching file arch/arm/mach-tango/Kconfig
2025-10-31T05:25:16.0057405Z patching file arch/arm/mach-tegra/reset.c
2025-10-31T05:25:16.0058043Z patching file arch/arm/mach-vexpress/dcscb.c
2025-10-31T05:25:16.0058842Z patching file arch/arm/mach-vexpress/spc.c
2025-10-31T05:25:16.0060014Z patching file arch/arm/mach-zynq/common.c
2025-10-31T05:25:16.0060969Z patching file arch/arm/mach-zynq/slcr.c
2025-10-31T05:25:16.0062336Z patching file arch/arm/mm/Kconfig
2025-10-31T05:25:16.0064541Z patching file arch/arm/mm/alignment.c
2025-10-31T05:25:16.0065864Z patching file arch/arm/mm/dump.c
2025-10-31T05:25:16.0067105Z patching file arch/arm/mm/fault.c
2025-10-31T05:25:16.0068524Z patching file arch/arm/mm/init.c
2025-10-31T05:25:16.0070126Z patching file arch/arm/mm/ioremap.c
2025-10-31T05:25:16.0071713Z patching file arch/arm/mm/mmu.c
2025-10-31T05:25:16.0074575Z patching file arch/arm/mm/nommu.c
2025-10-31T05:25:16.0075456Z patching file arch/arm/mm/pageattr.c
2025-10-31T05:25:16.0076472Z patching file arch/arm/mm/pmsa-v7.c
2025-10-31T05:25:16.0077690Z patching file arch/arm/mm/pmsa-v8.c
2025-10-31T05:25:16.0078820Z patching file arch/arm/mm/proc-macros.S
2025-10-31T05:25:16.0079945Z patching file arch/arm/mm/proc-v7-bugs.c
2025-10-31T05:25:16.0081773Z patching file arch/arm/mm/pv-fixup-asm.S
2025-10-31T05:25:16.0083199Z patching file arch/arm/net/bpf_jit_32.c
2025-10-31T05:25:16.0085623Z patching file arch/arm/nwfpe/Makefile
2025-10-31T05:25:16.0086529Z patching file arch/arm/probes/decode.h
2025-10-31T05:25:16.0087817Z patching file arch/arm/probes/kprobes/checkers-common.c
2025-10-31T05:25:16.0088823Z patching file arch/arm/probes/kprobes/core.c
2025-10-31T05:25:16.0089910Z patching file arch/arm/probes/kprobes/opt-arm.c
2025-10-31T05:25:16.0091248Z patching file arch/arm/probes/kprobes/test-core.c
2025-10-31T05:25:16.0093591Z patching file arch/arm/probes/kprobes/test-core.h
2025-10-31T05:25:16.0094792Z patching file arch/arm/probes/kprobes/test-thumb.c
2025-10-31T05:25:16.0096542Z patching file arch/arm/probes/uprobes/core.c
2025-10-31T05:25:16.0097464Z patching file arch/arm/vfp/entry.S
2025-10-31T05:25:16.0098301Z patching file arch/arm/vfp/vfphw.S
2025-10-31T05:25:16.0099433Z patching file arch/arm/vfp/vfpmodule.c
2025-10-31T05:25:16.0101480Z patching file arch/arm/xen/enlighten.c
2025-10-31T05:25:16.0102704Z patching file arch/arm/xen/p2m.c
2025-10-31T05:25:16.0104294Z patching file arch/arm64/Kconfig
2025-10-31T05:25:16.0107327Z patching file arch/arm64/Kconfig.platforms
2025-10-31T05:25:16.0108198Z patching file arch/arm64/Makefile
2025-10-31T05:25:16.0109136Z patching file arch/arm64/boot/dts/allwinner/sun50i-a100.dtsi
2025-10-31T05:25:16.0110260Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-cpu-opp.dtsi
2025-10-31T05:25:16.0111457Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dts
2025-10-31T05:25:16.0112875Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-lts.dts
2025-10-31T05:25:16.0114098Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-pinebook.dts
2025-10-31T05:25:16.0115289Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-pinephone.dtsi
2025-10-31T05:25:16.0116533Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-sopine-baseboard.dts
2025-10-31T05:25:16.0117786Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-sopine.dtsi
2025-10-31T05:25:16.0118895Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi
2025-10-31T05:25:16.0120011Z patching file arch/arm64/boot/dts/allwinner/sun50i-h5-cpu-opp.dtsi
2025-10-31T05:25:16.0121172Z patching file arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo2.dts
2025-10-31T05:25:16.0122613Z patching file arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus.dts
2025-10-31T05:25:16.0123835Z patching file arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi
2025-10-31T05:25:16.0124942Z patching file arch/arm64/boot/dts/allwinner/sun50i-h6-beelink-gs1.dts
2025-10-31T05:25:16.0126135Z patching file arch/arm64/boot/dts/allwinner/sun50i-h6-cpu-opp.dtsi
2025-10-31T05:25:16.0127289Z patching file arch/arm64/boot/dts/allwinner/sun50i-h6-tanix-tx6.dts
2025-10-31T05:25:16.0128538Z patching file arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi
2025-10-31T05:25:16.0129639Z patching file arch/arm64/boot/dts/altera/socfpga_stratix10_socdk.dts
2025-10-31T05:25:16.0130817Z patching file arch/arm64/boot/dts/altera/socfpga_stratix10_socdk_nand.dts
2025-10-31T05:25:16.0132120Z patching file arch/arm64/boot/dts/amlogic/meson-axg.dtsi
2025-10-31T05:25:16.0133186Z patching file arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi
2025-10-31T05:25:16.0134293Z patching file arch/arm64/boot/dts/amlogic/meson-g12a-sei510.dts
2025-10-31T05:25:16.0135382Z patching file arch/arm64/boot/dts/amlogic/meson-g12a-u200.dts
2025-10-31T05:25:16.0136491Z patching file arch/arm64/boot/dts/amlogic/meson-g12a-x96-max.dts
2025-10-31T05:25:16.0137567Z patching file arch/arm64/boot/dts/amlogic/meson-g12a.dtsi
2025-10-31T05:25:16.0138651Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-a311d.dtsi
2025-10-31T05:25:16.0139800Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-khadas-vim3.dtsi
2025-10-31T05:25:16.0141008Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi
2025-10-31T05:25:16.0142286Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-s922x.dtsi
2025-10-31T05:25:16.0143399Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-w400.dtsi
2025-10-31T05:25:16.0144469Z patching file arch/arm64/boot/dts/amlogic/meson-g12b.dtsi
2025-10-31T05:25:16.0145557Z patching file arch/arm64/boot/dts/amlogic/meson-gx-libretech-pc.dtsi
2025-10-31T05:25:16.0146674Z patching file arch/arm64/boot/dts/amlogic/meson-gx.dtsi
2025-10-31T05:25:16.0147732Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-kii-pro.dts
2025-10-31T05:25:16.0148873Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-nanopi-k2.dts
2025-10-31T05:25:16.0150027Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-odroidc2.dts
2025-10-31T05:25:16.0151330Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95.dtsi
2025-10-31T05:25:16.0152582Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-wetek.dtsi
2025-10-31T05:25:16.0153674Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
2025-10-31T05:25:16.0154767Z patching file arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p230.dts
2025-10-31T05:25:16.0155939Z patching file arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts
2025-10-31T05:25:16.0157200Z patching file arch/arm64/boot/dts/amlogic/meson-gxl-s905d-sml5442tw.dts
2025-10-31T05:25:16.0158327Z patching file arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
2025-10-31T05:25:16.0159427Z patching file arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dts
2025-10-31T05:25:16.0160562Z patching file arch/arm64/boot/dts/amlogic/meson-gxm-nexbox-a1.dts
2025-10-31T05:25:16.0161671Z patching file arch/arm64/boot/dts/amlogic/meson-gxm-q200.dts
2025-10-31T05:25:16.0162951Z patching file arch/arm64/boot/dts/amlogic/meson-gxm-rbox-pro.dts
2025-10-31T05:25:16.0164107Z patching file arch/arm64/boot/dts/amlogic/meson-sm1-khadas-vim3l.dts
2025-10-31T05:25:16.0165276Z patching file arch/arm64/boot/dts/amlogic/meson-sm1-odroid-c4.dts
2025-10-31T05:25:16.0166391Z patching file arch/arm64/boot/dts/amlogic/meson-sm1-sei610.dts
2025-10-31T05:25:16.0167451Z patching file arch/arm64/boot/dts/amlogic/meson-sm1.dtsi
2025-10-31T05:25:16.0168467Z patching file arch/arm64/boot/dts/arm/juno-base.dtsi
2025-10-31T05:25:16.0169517Z patching file arch/arm64/boot/dts/broadcom/northstar2/ns2-svk.dts
2025-10-31T05:25:16.0170638Z patching file arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi
2025-10-31T05:25:16.0171778Z patching file arch/arm64/boot/dts/broadcom/stingray/stingray-usb.dtsi
2025-10-31T05:25:16.0173179Z patching file arch/arm64/boot/dts/exynos/exynos5433-tm2-common.dtsi
2025-10-31T05:25:16.0174322Z patching file arch/arm64/boot/dts/exynos/exynos7-espresso.dts
2025-10-31T05:25:16.0175363Z patching file arch/arm64/boot/dts/exynos/exynos7.dtsi
2025-10-31T05:25:16.0176402Z patching file arch/arm64/boot/dts/freescale/fsl-ls1012a.dtsi
2025-10-31T05:25:16.0177585Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var2.dts
2025-10-31T05:25:16.0179109Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var4.dts
2025-10-31T05:25:16.0188367Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28.dts
2025-10-31T05:25:16.0189609Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts
2025-10-31T05:25:16.0190697Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi
2025-10-31T05:25:16.0191769Z patching file arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi
2025-10-31T05:25:16.0193038Z patching file arch/arm64/boot/dts/freescale/fsl-ls1046a-frwy.dts
2025-10-31T05:25:16.0194141Z patching file arch/arm64/boot/dts/freescale/fsl-ls1046a-rdb.dts
2025-10-31T05:25:16.0195232Z patching file arch/arm64/boot/dts/freescale/fsl-ls1046a.dtsi
2025-10-31T05:25:16.0196278Z patching file arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
2025-10-31T05:25:16.0197332Z patching file arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi
2025-10-31T05:25:16.0198488Z patching file arch/arm64/boot/dts/freescale/imx8mm-beacon-baseboard.dtsi
2025-10-31T05:25:16.0199741Z patching file arch/arm64/boot/dts/freescale/imx8mm-beacon-som.dtsi
2025-10-31T05:25:16.0200856Z patching file arch/arm64/boot/dts/freescale/imx8mm-evk.dtsi
2025-10-31T05:25:16.0201916Z patching file arch/arm64/boot/dts/freescale/imx8mm-pinfunc.h
2025-10-31T05:25:16.0203170Z patching file arch/arm64/boot/dts/freescale/imx8mm-var-som.dtsi
2025-10-31T05:25:16.0204232Z patching file arch/arm64/boot/dts/freescale/imx8mm.dtsi
2025-10-31T05:25:16.0205292Z patching file arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts
2025-10-31T05:25:16.0206390Z patching file arch/arm64/boot/dts/freescale/imx8mn-var-som.dtsi
2025-10-31T05:25:16.0207432Z patching file arch/arm64/boot/dts/freescale/imx8mn.dtsi
2025-10-31T05:25:16.0208448Z patching file arch/arm64/boot/dts/freescale/imx8mp-evk.dts
2025-10-31T05:25:16.0209656Z patching file arch/arm64/boot/dts/freescale/imx8mp.dtsi
2025-10-31T05:25:16.0210721Z patching file arch/arm64/boot/dts/freescale/imx8mq-librem5-r3.dts
2025-10-31T05:25:16.0211848Z patching file arch/arm64/boot/dts/freescale/imx8mq-librem5.dtsi
2025-10-31T05:25:16.0213133Z patching file arch/arm64/boot/dts/freescale/imx8mq-pinfunc.h
2025-10-31T05:25:16.0214198Z patching file arch/arm64/boot/dts/freescale/imx8mq-thor96.dts
2025-10-31T05:25:16.0215282Z patching file arch/arm64/boot/dts/freescale/imx8mq-zii-ultra.dtsi
2025-10-31T05:25:16.0216352Z patching file arch/arm64/boot/dts/freescale/imx8mq.dtsi
2025-10-31T05:25:16.0217365Z patching file arch/arm64/boot/dts/hisilicon/hi3660.dtsi
2025-10-31T05:25:16.0218398Z patching file arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi
2025-10-31T05:25:16.0219429Z patching file arch/arm64/boot/dts/hisilicon/hi6220.dtsi
2025-10-31T05:25:16.0220727Z patching file arch/arm64/boot/dts/intel/socfpga_agilex.dtsi
2025-10-31T05:25:16.0222309Z patching file arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts
2025-10-31T05:25:16.0223833Z patching file arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
2025-10-31T05:25:16.0224919Z patching file arch/arm64/boot/dts/marvell/armada-37xx.dtsi
2025-10-31T05:25:16.0226002Z patching file arch/arm64/boot/dts/marvell/armada-7040.dtsi
2025-10-31T05:25:16.0227054Z patching file arch/arm64/boot/dts/marvell/armada-8040.dtsi
2025-10-31T05:25:16.0228111Z patching file arch/arm64/boot/dts/marvell/armada-cp11x.dtsi
2025-10-31T05:25:16.0229143Z patching file arch/arm64/boot/dts/marvell/cn9130-db.dts
2025-10-31T05:25:16.0230140Z patching file arch/arm64/boot/dts/marvell/cn9130.dtsi
2025-10-31T05:25:16.0231148Z patching file arch/arm64/boot/dts/mediatek/mt2712-evb.dts
2025-10-31T05:25:16.0232566Z patching file arch/arm64/boot/dts/mediatek/mt2712e.dtsi
2025-10-31T05:25:16.0234366Z patching file arch/arm64/boot/dts/mediatek/mt6797.dtsi
2025-10-31T05:25:16.0235504Z patching file arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts
2025-10-31T05:25:16.0236663Z patching file arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
2025-10-31T05:25:16.0237825Z patching file arch/arm64/boot/dts/mediatek/mt7622.dtsi
2025-10-31T05:25:16.0240109Z patching file arch/arm64/boot/dts/mediatek/mt8173-elm-hana.dtsi
2025-10-31T05:25:16.0241222Z patching file arch/arm64/boot/dts/mediatek/mt8173-elm.dtsi
2025-10-31T05:25:16.0243132Z patching file arch/arm64/boot/dts/mediatek/mt8173-evb.dts
2025-10-31T05:25:16.0245505Z patching file arch/arm64/boot/dts/mediatek/mt8173.dtsi
2025-10-31T05:25:16.0247062Z patching file arch/arm64/boot/dts/mediatek/mt8183-evb.dts
2025-10-31T05:25:16.0248172Z patching file arch/arm64/boot/dts/mediatek/mt8183-kukui-krane.dtsi
2025-10-31T05:25:16.0249277Z patching file arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi
2025-10-31T05:25:16.0250599Z patching file arch/arm64/boot/dts/mediatek/mt8183.dtsi
2025-10-31T05:25:16.0252115Z patching file arch/arm64/boot/dts/mediatek/mt8516-pumpkin.dts
2025-10-31T05:25:16.0253185Z patching file arch/arm64/boot/dts/mediatek/mt8516.dtsi
2025-10-31T05:25:16.0254459Z patching file arch/arm64/boot/dts/mediatek/pumpkin-common.dtsi
2025-10-31T05:25:16.0255559Z patching file arch/arm64/boot/dts/microchip/sparx5.dtsi
2025-10-31T05:25:16.0256661Z patching file arch/arm64/boot/dts/microchip/sparx5_pcb_common.dtsi
2025-10-31T05:25:16.0257772Z patching file arch/arm64/boot/dts/nvidia/tegra132-norrin.dts
2025-10-31T05:25:16.0259087Z patching file arch/arm64/boot/dts/nvidia/tegra132.dtsi
2025-10-31T05:25:16.0261294Z patching file arch/arm64/boot/dts/nvidia/tegra186.dtsi
2025-10-31T05:25:16.0263165Z patching file arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi
2025-10-31T05:25:16.0264616Z patching file arch/arm64/boot/dts/nvidia/tegra194.dtsi
2025-10-31T05:25:16.0267581Z patching file arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi
2025-10-31T05:25:16.0269436Z patching file arch/arm64/boot/dts/nvidia/tegra210.dtsi
2025-10-31T05:25:16.0271764Z patching file arch/arm64/boot/dts/qcom/apq8096-ifc6640.dts
2025-10-31T05:25:16.0273190Z patching file arch/arm64/boot/dts/qcom/ipq6018-cp01-c1.dts
2025-10-31T05:25:16.0274208Z patching file arch/arm64/boot/dts/qcom/ipq6018.dtsi
2025-10-31T05:25:16.0275218Z patching file arch/arm64/boot/dts/qcom/ipq8074-hk01.dts
2025-10-31T05:25:16.0276241Z patching file arch/arm64/boot/dts/qcom/ipq8074.dtsi
2025-10-31T05:25:16.0278108Z patching file arch/arm64/boot/dts/qcom/msm8916-samsung-a2015-common.dtsi
2025-10-31T05:25:16.0279120Z patching file arch/arm64/boot/dts/qcom/msm8916-samsung-a5u-eur.dts
2025-10-31T05:25:16.0280104Z patching file arch/arm64/boot/dts/qcom/msm8916.dtsi
2025-10-31T05:25:16.0282364Z patching file arch/arm64/boot/dts/qcom/msm8992-bullhead-rev-101.dts
2025-10-31T05:25:16.0283346Z patching file arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts
2025-10-31T05:25:16.0284302Z patching file arch/arm64/boot/dts/qcom/msm8994-angler-rev-101.dts
2025-10-31T05:25:16.0285182Z patching file arch/arm64/boot/dts/qcom/msm8994.dtsi
2025-10-31T05:25:16.0287117Z patching file arch/arm64/boot/dts/qcom/msm8996.dtsi
2025-10-31T05:25:16.0289595Z patching file arch/arm64/boot/dts/qcom/msm8998.dtsi
2025-10-31T05:25:16.0291625Z patching file arch/arm64/boot/dts/qcom/pm8150.dtsi
2025-10-31T05:25:16.0292431Z patching file arch/arm64/boot/dts/qcom/pm8916.dtsi
2025-10-31T05:25:16.0293507Z patching file arch/arm64/boot/dts/qcom/qcs404-evb.dtsi
2025-10-31T05:25:16.0294816Z patching file arch/arm64/boot/dts/qcom/qcs404.dtsi
2025-10-31T05:25:16.0296695Z patching file arch/arm64/boot/dts/qcom/qrb5165-rb5.dts
2025-10-31T05:25:16.0297817Z patching file arch/arm64/boot/dts/qcom/sc7180-idp.dts
2025-10-31T05:25:16.0298971Z patching file arch/arm64/boot/dts/qcom/sc7180-trogdor-lte-sku.dtsi
2025-10-31T05:25:16.0300055Z patching file arch/arm64/boot/dts/qcom/sc7180-trogdor.dtsi
2025-10-31T05:25:16.0302980Z patching file arch/arm64/boot/dts/qcom/sc7180.dtsi
2025-10-31T05:25:16.0305780Z patching file arch/arm64/boot/dts/qcom/sdm630.dtsi
2025-10-31T05:25:16.0308025Z patching file arch/arm64/boot/dts/qcom/sdm845-cheza.dtsi
2025-10-31T05:25:16.0309653Z patching file arch/arm64/boot/dts/qcom/sdm845-db845c.dts
2025-10-31T05:25:16.0311302Z patching file arch/arm64/boot/dts/qcom/sdm845-mtp.dts
2025-10-31T05:25:16.0313941Z patching file arch/arm64/boot/dts/qcom/sdm845.dtsi
2025-10-31T05:25:16.0317317Z patching file arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dts
2025-10-31T05:25:16.0319181Z patching file arch/arm64/boot/dts/qcom/sm8150.dtsi
2025-10-31T05:25:16.0320959Z patching file arch/arm64/boot/dts/qcom/sm8250-mtp.dts
2025-10-31T05:25:16.0322549Z patching file arch/arm64/boot/dts/qcom/sm8250.dtsi
2025-10-31T05:25:16.0325027Z patching file arch/arm64/boot/dts/renesas/beacon-renesom-baseboard.dtsi
2025-10-31T05:25:16.0326245Z patching file arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi
2025-10-31T05:25:16.0327239Z patching file arch/arm64/boot/dts/renesas/cat875.dtsi
2025-10-31T05:25:16.0328204Z patching file arch/arm64/boot/dts/renesas/hihope-common.dtsi
2025-10-31T05:25:16.0329469Z patching file arch/arm64/boot/dts/renesas/hihope-rzg2-ex.dtsi
2025-10-31T05:25:16.0330374Z patching file arch/arm64/boot/dts/renesas/r8a774a1-beacon-rzg2m-kit.dts
2025-10-31T05:25:16.0331712Z patching file arch/arm64/boot/dts/renesas/r8a774a1.dtsi
2025-10-31T05:25:16.0334672Z patching file arch/arm64/boot/dts/renesas/r8a774b1.dtsi
2025-10-31T05:25:16.0336775Z patching file arch/arm64/boot/dts/renesas/r8a774c0-cat874.dts
2025-10-31T05:25:16.0337925Z patching file arch/arm64/boot/dts/renesas/r8a774c0.dtsi
2025-10-31T05:25:16.0340417Z patching file arch/arm64/boot/dts/renesas/r8a774e1.dtsi
2025-10-31T05:25:16.0343280Z patching file arch/arm64/boot/dts/renesas/r8a77960.dtsi
2025-10-31T05:25:16.0345822Z patching file arch/arm64/boot/dts/renesas/r8a77961.dtsi
2025-10-31T05:25:16.0347669Z patching file arch/arm64/boot/dts/renesas/r8a77970-v3msk.dts
2025-10-31T05:25:16.0348716Z patching file arch/arm64/boot/dts/renesas/r8a77980.dtsi
2025-10-31T05:25:16.0350665Z patching file arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
2025-10-31T05:25:16.0352356Z patching file arch/arm64/boot/dts/renesas/r8a77990.dtsi
2025-10-31T05:25:16.0354192Z patching file arch/arm64/boot/dts/renesas/r8a77995-draak.dts
2025-10-31T05:25:16.0355143Z patching file arch/arm64/boot/dts/renesas/r8a779a0.dtsi
2025-10-31T05:25:16.0356251Z patching file arch/arm64/boot/dts/renesas/salvator-common.dtsi
2025-10-31T05:25:16.0357414Z patching file arch/arm64/boot/dts/renesas/ulcb-kf.dtsi
2025-10-31T05:25:16.0358586Z patching file arch/arm64/boot/dts/renesas/ulcb.dtsi
2025-10-31T05:25:16.0360309Z patching file arch/arm64/boot/dts/rockchip/px30.dtsi
2025-10-31T05:25:16.0362869Z patching file arch/arm64/boot/dts/rockchip/rk3308-roc-cc.dts
2025-10-31T05:25:16.0364019Z patching file arch/arm64/boot/dts/rockchip/rk3328-nanopi-r2s.dts
2025-10-31T05:25:16.0365121Z patching file arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
2025-10-31T05:25:16.0366176Z patching file arch/arm64/boot/dts/rockchip/rk3328-rock64.dts
2025-10-31T05:25:16.0367475Z patching file arch/arm64/boot/dts/rockchip/rk3328.dtsi
2025-10-31T05:25:16.0370136Z patching file arch/arm64/boot/dts/rockchip/rk3368-lion.dtsi
2025-10-31T05:25:16.0371193Z patching file arch/arm64/boot/dts/rockchip/rk3368.dtsi
2025-10-31T05:25:16.0372969Z patching file arch/arm64/boot/dts/rockchip/rk3399-firefly.dts
2025-10-31T05:25:16.0374204Z patching file arch/arm64/boot/dts/rockchip/rk3399-gru-bob.dts
2025-10-31T05:25:16.0375334Z patching file arch/arm64/boot/dts/rockchip/rk3399-gru-chromebook.dtsi
2025-10-31T05:25:16.0376519Z patching file arch/arm64/boot/dts/rockchip/rk3399-gru-scarlet.dtsi
2025-10-31T05:25:16.0377616Z patching file arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi
2025-10-31T05:25:16.0379195Z patching file arch/arm64/boot/dts/rockchip/rk3399-khadas-edge.dtsi
2025-10-31T05:25:16.0380478Z patching file arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts
2025-10-31T05:25:16.0381814Z patching file arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
2025-10-31T05:25:16.0383579Z patching file arch/arm64/boot/dts/rockchip/rk3399-puma-haikou.dts
2025-10-31T05:25:16.0384697Z patching file arch/arm64/boot/dts/rockchip/rk3399-puma.dtsi
2025-10-31T05:25:16.0386126Z patching file arch/arm64/boot/dts/rockchip/rk3399-roc-pc.dtsi
2025-10-31T05:25:16.0387811Z patching file arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4.dtsi
2025-10-31T05:25:16.0390140Z patching file arch/arm64/boot/dts/rockchip/rk3399-rock960.dtsi
2025-10-31T05:25:16.0391336Z patching file arch/arm64/boot/dts/rockchip/rk3399-sapphire-excavator.dts
2025-10-31T05:25:16.0392785Z patching file arch/arm64/boot/dts/rockchip/rk3399.dtsi
2025-10-31T05:25:16.0396165Z patching file arch/arm64/boot/dts/socionext/uniphier-ld20.dtsi
2025-10-31T05:25:16.0397308Z patching file arch/arm64/boot/dts/socionext/uniphier-pxs3.dtsi
2025-10-31T05:25:16.0398937Z patching file arch/arm64/boot/dts/ti/k3-am65-main.dtsi
2025-10-31T05:25:16.0400509Z patching file arch/arm64/boot/dts/ti/k3-am65.dtsi
2025-10-31T05:25:16.0401556Z patching file arch/arm64/boot/dts/ti/k3-am654-base-board.dts
2025-10-31T05:25:16.0402912Z patching file arch/arm64/boot/dts/ti/k3-j7200-common-proc-board.dts
2025-10-31T05:25:16.0404023Z patching file arch/arm64/boot/dts/ti/k3-j7200-main.dtsi
2025-10-31T05:25:16.0405093Z patching file arch/arm64/boot/dts/ti/k3-j7200-mcu-wakeup.dtsi
2025-10-31T05:25:16.0406133Z patching file arch/arm64/boot/dts/ti/k3-j7200.dtsi
2025-10-31T05:25:16.0407223Z patching file arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts
2025-10-31T05:25:16.0408732Z patching file arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
2025-10-31T05:25:16.0411582Z patching file arch/arm64/boot/dts/ti/k3-j721e.dtsi
2025-10-31T05:25:16.0412853Z patching file arch/arm64/boot/dts/xilinx/zynqmp-zc1751-xm016-dc2.dts
2025-10-31T05:25:16.0413959Z patching file arch/arm64/boot/dts/xilinx/zynqmp.dtsi
2025-10-31T05:25:16.0414877Z patching file arch/arm64/configs/defconfig
2025-10-31T05:25:16.0416097Z patching file arch/arm64/crypto/Kconfig
2025-10-31T05:25:16.0417084Z patching file arch/arm64/crypto/aes-glue.c
2025-10-31T05:25:16.0418838Z patching file arch/arm64/crypto/poly1305-armv8.pl
2025-10-31T05:25:16.0420103Z patching file arch/arm64/crypto/poly1305-core.S_shipped
2025-10-31T05:25:16.0421257Z patching file arch/arm64/crypto/poly1305-glue.c
2025-10-31T05:25:16.0422360Z patching file arch/arm64/crypto/sha1-ce-glue.c
2025-10-31T05:25:16.0423193Z patching file arch/arm64/crypto/sha2-ce-glue.c
2025-10-31T05:25:16.0424039Z patching file arch/arm64/crypto/sha3-ce-glue.c
2025-10-31T05:25:16.0424940Z patching file arch/arm64/crypto/sha512-ce-glue.c
2025-10-31T05:25:16.0425930Z patching file arch/arm64/include/asm/Kbuild
2025-10-31T05:25:16.0426942Z patching file arch/arm64/include/asm/acpi.h
2025-10-31T05:25:16.0428139Z patching file arch/arm64/include/asm/alternative.h
2025-10-31T05:25:16.0429274Z patching file arch/arm64/include/asm/arch_timer.h
2025-10-31T05:25:16.0430293Z patching file arch/arm64/include/asm/asm-bug.h
2025-10-31T05:25:16.0431215Z patching file arch/arm64/include/asm/asm-uaccess.h
2025-10-31T05:25:16.0432450Z patching file arch/arm64/include/asm/assembler.h
2025-10-31T05:25:16.0434069Z patching file arch/arm64/include/asm/atomic.h
2025-10-31T05:25:16.0435140Z patching file arch/arm64/include/asm/atomic_ll_sc.h
2025-10-31T05:25:16.0436966Z patching file arch/arm64/include/asm/atomic_lse.h
2025-10-31T05:25:16.0438146Z patching file arch/arm64/include/asm/barrier.h
2025-10-31T05:25:16.0439149Z patching file arch/arm64/include/asm/cpu.h
2025-10-31T05:25:16.0440161Z patching file arch/arm64/include/asm/cpucaps.h
2025-10-31T05:25:16.0441347Z patching file arch/arm64/include/asm/cpufeature.h
2025-10-31T05:25:16.0443213Z patching file arch/arm64/include/asm/cputype.h
2025-10-31T05:25:16.0444744Z patching file arch/arm64/include/asm/daifflags.h
2025-10-31T05:25:16.0445687Z patching file arch/arm64/include/asm/debug-monitors.h
2025-10-31T05:25:16.0446694Z patching file arch/arm64/include/asm/efi.h
2025-10-31T05:25:16.0447940Z patching file arch/arm64/include/asm/esr.h
2025-10-31T05:25:16.0449098Z patching file arch/arm64/include/asm/exception.h
2025-10-31T05:25:16.0450217Z patching file arch/arm64/include/asm/fixmap.h
2025-10-31T05:25:16.0451226Z patching file arch/arm64/include/asm/hwcap.h
2025-10-31T05:25:16.0452470Z patching file arch/arm64/include/asm/hyp_image.h
2025-10-31T05:25:16.0453718Z patching file arch/arm64/include/asm/insn.h
2025-10-31T05:25:16.0455705Z patching file arch/arm64/include/asm/io.h
2025-10-31T05:25:16.0456679Z patching file arch/arm64/include/asm/kernel-pgtable.h
2025-10-31T05:25:16.0457798Z patching file arch/arm64/include/asm/kvm_arm.h
2025-10-31T05:25:16.0459066Z patching file arch/arm64/include/asm/kvm_asm.h
2025-10-31T05:25:16.0460538Z patching file arch/arm64/include/asm/kvm_emulate.h
2025-10-31T05:25:16.0462166Z patching file arch/arm64/include/asm/kvm_host.h
2025-10-31T05:25:16.0463678Z patching file arch/arm64/include/asm/kvm_hyp.h
2025-10-31T05:25:16.0464742Z patching file arch/arm64/include/asm/kvm_mmu.h
2025-10-31T05:25:16.0466001Z patching file arch/arm64/include/asm/memory.h
2025-10-31T05:25:16.0467334Z patching file arch/arm64/include/asm/mman.h
2025-10-31T05:25:16.0468491Z patching file arch/arm64/include/asm/mmu.h
2025-10-31T05:25:16.0469703Z patching file arch/arm64/include/asm/mmu_context.h
2025-10-31T05:25:16.0472321Z patching file arch/arm64/include/asm/module.lds.h
2025-10-31T05:25:16.0473326Z patching file arch/arm64/include/asm/pgtable-prot.h
2025-10-31T05:25:16.0474293Z patching file arch/arm64/include/asm/pgtable.h
2025-10-31T05:25:16.0476104Z patching file arch/arm64/include/asm/preempt.h
2025-10-31T05:25:16.0477075Z patching file arch/arm64/include/asm/processor.h
2025-10-31T05:25:16.0478276Z patching file arch/arm64/include/asm/ptrace.h
2025-10-31T05:25:16.0479354Z patching file arch/arm64/include/asm/scs.h
2025-10-31T05:25:16.0480245Z patching file arch/arm64/include/asm/sdei.h
2025-10-31T05:25:16.0481152Z patching file arch/arm64/include/asm/sections.h
2025-10-31T05:25:16.0482244Z patching file arch/arm64/include/asm/spectre.h
2025-10-31T05:25:16.0483165Z patching file arch/arm64/include/asm/syscall.h
2025-10-31T05:25:16.0484279Z patching file arch/arm64/include/asm/syscall_wrapper.h
2025-10-31T05:25:16.0485250Z patching file arch/arm64/include/asm/sysreg.h
2025-10-31T05:25:16.0488223Z patching file arch/arm64/include/asm/system_misc.h
2025-10-31T05:25:16.0489232Z patching file arch/arm64/include/asm/thread_info.h
2025-10-31T05:25:16.0490173Z patching file arch/arm64/include/asm/tlb.h
2025-10-31T05:25:16.0491067Z patching file arch/arm64/include/asm/tlbflush.h
2025-10-31T05:25:16.0492214Z patching file arch/arm64/include/asm/traps.h
2025-10-31T05:25:16.0493281Z patching file arch/arm64/include/asm/uaccess.h
2025-10-31T05:25:16.0494569Z patching file arch/arm64/include/asm/unistd32.h
2025-10-31T05:25:16.0495957Z patching file arch/arm64/include/asm/uprobes.h
2025-10-31T05:25:16.0496951Z patching file arch/arm64/include/asm/vdso/gettimeofday.h
2025-10-31T05:25:16.0497927Z patching file arch/arm64/include/asm/vectors.h
2025-10-31T05:25:16.0499360Z patching file arch/arm64/include/asm/word-at-a-time.h
2025-10-31T05:25:16.0500377Z patching file arch/arm64/include/uapi/asm/hwcap.h
2025-10-31T05:25:16.0501344Z patching file arch/arm64/include/uapi/asm/kvm.h
2025-10-31T05:25:16.0502562Z patching file arch/arm64/kernel/acpi_numa.c
2025-10-31T05:25:16.0503760Z patching file arch/arm64/kernel/alternative.c
2025-10-31T05:25:16.0504987Z patching file arch/arm64/kernel/armv8_deprecated.c
2025-10-31T05:25:16.0507826Z patching file arch/arm64/kernel/cacheinfo.c
2025-10-31T05:25:16.0508746Z patching file arch/arm64/kernel/cpu_errata.c
2025-10-31T05:25:16.0511300Z patching file arch/arm64/kernel/cpufeature.c
2025-10-31T05:25:16.0515372Z patching file arch/arm64/kernel/cpuidle.c
2025-10-31T05:25:16.0516264Z patching file arch/arm64/kernel/cpuinfo.c
2025-10-31T05:25:16.0517189Z patching file arch/arm64/kernel/crash_dump.c
2025-10-31T05:25:16.0518136Z patching file arch/arm64/kernel/debug-monitors.c
2025-10-31T05:25:16.0519235Z patching file arch/arm64/kernel/efi-rt-wrapper.S
2025-10-31T05:25:16.0520171Z patching file arch/arm64/kernel/efi.c
2025-10-31T05:25:16.0521587Z patching file arch/arm64/kernel/entry-common.c
2025-10-31T05:25:16.0523446Z patching file arch/arm64/kernel/entry-ftrace.S
2025-10-31T05:25:16.0524681Z patching file arch/arm64/kernel/entry.S
2025-10-31T05:25:16.0528317Z patching file arch/arm64/kernel/fpsimd.c
2025-10-31T05:25:16.0529615Z patching file arch/arm64/kernel/ftrace.c
2025-10-31T05:25:16.0531694Z patching file arch/arm64/kernel/head.S
2025-10-31T05:25:16.0533593Z patching file arch/arm64/kernel/hw_breakpoint.c
2025-10-31T05:25:16.0535093Z patching file arch/arm64/kernel/image-vars.h
2025-10-31T05:25:16.0536397Z patching file arch/arm64/kernel/insn.c
2025-10-31T05:25:16.0539107Z patching file arch/arm64/kernel/kgdb.c
2025-10-31T05:25:16.0540049Z patching file arch/arm64/kernel/machine_kexec_file.c
2025-10-31T05:25:16.0541206Z patching file arch/arm64/kernel/module-plts.c
2025-10-31T05:25:16.0550795Z patching file arch/arm64/kernel/mte.c
2025-10-31T05:25:16.0551211Z patching file arch/arm64/kernel/paravirt.c
2025-10-31T05:25:16.0551623Z patching file arch/arm64/kernel/perf_callchain.c
2025-10-31T05:25:16.0552166Z patching file arch/arm64/kernel/perf_event.c
2025-10-31T05:25:16.0552589Z patching file arch/arm64/kernel/probes/decode-insn.c
2025-10-31T05:25:16.0552993Z patching file arch/arm64/kernel/probes/kprobes.c
2025-10-31T05:25:16.0553413Z patching file arch/arm64/kernel/probes/simulate-insn.c
2025-10-31T05:25:16.0553795Z patching file arch/arm64/kernel/probes/uprobes.c
2025-10-31T05:25:16.0554173Z patching file arch/arm64/kernel/process.c
2025-10-31T05:25:16.0554554Z patching file arch/arm64/kernel/proton-pack.c
2025-10-31T05:25:16.0557407Z patching file arch/arm64/kernel/ptrace.c
2025-10-31T05:25:16.0559546Z patching file arch/arm64/kernel/sdei.c
2025-10-31T05:25:16.0560450Z patching file arch/arm64/kernel/setup.c
2025-10-31T05:25:16.0562136Z patching file arch/arm64/kernel/signal.c
2025-10-31T05:25:16.0564049Z patching file arch/arm64/kernel/smp.c
2025-10-31T05:25:16.0565682Z patching file arch/arm64/kernel/stacktrace.c
2025-10-31T05:25:16.0566607Z patching file arch/arm64/kernel/suspend.c
2025-10-31T05:25:16.0567638Z patching file arch/arm64/kernel/sys_compat.c
2025-10-31T05:25:16.0568553Z patching file arch/arm64/kernel/syscall.c
2025-10-31T05:25:16.0570623Z patching file arch/arm64/kernel/topology.c
2025-10-31T05:25:16.0571784Z patching file arch/arm64/kernel/traps.c
2025-10-31T05:25:16.0574304Z patching file arch/arm64/kernel/vdso/vdso.lds.S
2025-10-31T05:25:16.0574914Z patching file arch/arm64/kernel/vdso32/Makefile
2025-10-31T05:25:16.0576198Z patching file arch/arm64/kernel/vmlinux.lds.S
2025-10-31T05:25:16.0577536Z patching file arch/arm64/kvm/arm.c
2025-10-31T05:25:16.0579286Z patching file arch/arm64/kvm/debug.c
2025-10-31T05:25:16.0580652Z patching file arch/arm64/kvm/guest.c
2025-10-31T05:25:16.0582136Z patching file arch/arm64/kvm/hyp/entry.S
2025-10-31T05:25:16.0583089Z patching file arch/arm64/kvm/hyp/hyp-entry.S
2025-10-31T05:25:16.0584331Z patching file arch/arm64/kvm/hyp/include/hyp/switch.h
2025-10-31T05:25:16.0585427Z patching file arch/arm64/kvm/hyp/include/hyp/sysreg-sr.h
2025-10-31T05:25:16.0586324Z patching file arch/arm64/kvm/hyp/nvhe/Makefile
2025-10-31T05:25:16.0587138Z patching file arch/arm64/kvm/hyp/nvhe/debug-sr.c
2025-10-31T05:25:16.0587963Z patching file arch/arm64/kvm/hyp/nvhe/host.S
2025-10-31T05:25:16.0588966Z patching file arch/arm64/kvm/hyp/nvhe/hyp-main.c
2025-10-31T05:25:16.0589824Z patching file arch/arm64/kvm/hyp/nvhe/switch.c
2025-10-31T05:25:16.0590838Z patching file arch/arm64/kvm/hyp/nvhe/tlb.c
2025-10-31T05:25:16.0591900Z patching file arch/arm64/kvm/hyp/pgtable.c
2025-10-31T05:25:16.0593613Z patching file arch/arm64/kvm/hyp/smccc_wa.S
2025-10-31T05:25:16.0594544Z patching file arch/arm64/kvm/hyp/vhe/switch.c
2025-10-31T05:25:16.0595489Z patching file arch/arm64/kvm/hyp/vhe/tlb.c
2025-10-31T05:25:16.0596351Z patching file arch/arm64/kvm/hypercalls.c
2025-10-31T05:25:16.0597468Z patching file arch/arm64/kvm/mmu.c
2025-10-31T05:25:16.0599619Z patching file arch/arm64/kvm/pmu-emul.c
2025-10-31T05:25:16.0601187Z patching file arch/arm64/kvm/psci.c
2025-10-31T05:25:16.0602697Z patching file arch/arm64/kvm/reset.c
2025-10-31T05:25:16.0604808Z patching file arch/arm64/kvm/sys_regs.c
2025-10-31T05:25:16.0608283Z patching file arch/arm64/kvm/vgic/vgic-its.c
2025-10-31T05:25:16.0610834Z patching file arch/arm64/kvm/vgic/vgic-kvm-device.c
2025-10-31T05:25:16.0612218Z patching file arch/arm64/kvm/vgic/vgic-mmio-v2.c
2025-10-31T05:25:16.0613470Z patching file arch/arm64/kvm/vgic/vgic-mmio-v3.c
2025-10-31T05:25:16.0615043Z patching file arch/arm64/kvm/vgic/vgic-mmio.c
2025-10-31T05:25:16.0616441Z patching file arch/arm64/kvm/vgic/vgic-mmio.h
2025-10-31T05:25:16.0617286Z patching file arch/arm64/kvm/vgic/vgic-v3.c
2025-10-31T05:25:16.0618542Z patching file arch/arm64/kvm/vgic/vgic-v4.c
2025-10-31T05:25:16.0619770Z patching file arch/arm64/kvm/vgic/vgic.c
2025-10-31T05:25:16.0621125Z patching file arch/arm64/kvm/vgic/vgic.h
2025-10-31T05:25:16.0622394Z patching file arch/arm64/lib/clear_page.S
2025-10-31T05:25:16.0622998Z patching file arch/arm64/lib/copy_from_user.S
2025-10-31T05:25:16.0623936Z patching file arch/arm64/lib/copy_in_user.S
2025-10-31T05:25:16.0624909Z patching file arch/arm64/lib/copy_page.S
2025-10-31T05:25:16.0625714Z patching file arch/arm64/lib/copy_to_user.S
2025-10-31T05:25:16.0626600Z patching file arch/arm64/lib/csum.c
2025-10-31T05:25:16.0627488Z patching file arch/arm64/mm/cache.S
2025-10-31T05:25:16.0628512Z patching file arch/arm64/mm/context.c
2025-10-31T05:25:16.0629995Z patching file arch/arm64/mm/copypage.c
2025-10-31T05:25:16.0630648Z patching file arch/arm64/mm/fault.c
2025-10-31T05:25:16.0632410Z patching file arch/arm64/mm/flush.c
2025-10-31T05:25:16.0633086Z patching file arch/arm64/mm/hugetlbpage.c
2025-10-31T05:25:16.0634218Z patching file arch/arm64/mm/init.c
2025-10-31T05:25:16.0636113Z patching file arch/arm64/mm/ioremap.c
2025-10-31T05:25:16.0637109Z patching file arch/arm64/mm/mmu.c
2025-10-31T05:25:16.0639546Z patching file arch/arm64/mm/physaddr.c
2025-10-31T05:25:16.0640036Z patching file arch/arm64/mm/proc.S
2025-10-31T05:25:16.0641250Z patching file arch/arm64/mm/ptdump_debugfs.c
2025-10-31T05:25:16.0641878Z patching file arch/arm64/net/bpf_jit.h
2025-10-31T05:25:16.0643359Z patching file arch/arm64/net/bpf_jit_comp.c
2025-10-31T05:25:16.0645177Z patching file arch/arm64/xen/hypercall.S
2025-10-31T05:25:16.0645989Z patching file arch/c6x/include/asm/thread_info.h
2025-10-31T05:25:16.0646783Z patching file arch/c6x/kernel/asm-offsets.c
2025-10-31T05:25:16.0647577Z patching file arch/c6x/kernel/signal.c
2025-10-31T05:25:16.0648721Z patching file arch/csky/Kconfig
2025-10-31T05:25:16.0649638Z patching file arch/csky/abiv1/alignment.c
2025-10-31T05:25:16.0650763Z patching file arch/csky/include/asm/Kbuild
2025-10-31T05:25:16.0651578Z patching file arch/csky/include/asm/page.h
2025-10-31T05:25:16.0652624Z patching file arch/csky/include/asm/thread_info.h
2025-10-31T05:25:16.0653554Z patching file arch/csky/include/uapi/asm/unistd.h
2025-10-31T05:25:16.0654388Z patching file arch/csky/kernel/perf_callchain.c
2025-10-31T05:25:16.0655425Z patching file arch/csky/kernel/probes/kprobes.c
2025-10-31T05:25:16.0656409Z patching file arch/csky/kernel/process.c
2025-10-31T05:25:16.0657272Z patching file arch/csky/kernel/ptrace.c
2025-10-31T05:25:16.0658318Z patching file arch/csky/kernel/signal.c
2025-10-31T05:25:16.0659361Z patching file arch/csky/kernel/smp.c
2025-10-31T05:25:16.0660361Z patching file arch/csky/kernel/traps.c
2025-10-31T05:25:16.0661310Z patching file arch/csky/mm/syscache.c
2025-10-31T05:25:16.0662395Z patching file arch/h8300/include/asm/Kbuild
2025-10-31T05:25:16.0663258Z patching file arch/h8300/include/asm/thread_info.h
2025-10-31T05:25:16.0664151Z patching file arch/h8300/kernel/asm-offsets.c
2025-10-31T05:25:16.0664967Z patching file arch/h8300/kernel/process.c
2025-10-31T05:25:16.0665847Z patching file arch/h8300/kernel/signal.c
2025-10-31T05:25:16.0666721Z patching file arch/h8300/kernel/traps.c
2025-10-31T05:25:16.0667618Z patching file arch/h8300/mm/fault.c
2025-10-31T05:25:16.0668495Z patching file arch/hexagon/Kconfig
2025-10-31T05:25:16.0669246Z patching file arch/hexagon/Makefile
2025-10-31T05:25:16.0670176Z patching file arch/hexagon/include/asm/Kbuild
2025-10-31T05:25:16.0671181Z patching file arch/hexagon/include/asm/cmpxchg.h
2025-10-31T05:25:16.0671834Z patching file arch/hexagon/include/asm/futex.h
2025-10-31T05:25:16.0673087Z patching file arch/hexagon/include/asm/syscalls.h
2025-10-31T05:25:16.0674164Z patching file arch/hexagon/include/asm/thread_info.h
2025-10-31T05:25:16.0675047Z patching file arch/hexagon/include/asm/timer-regs.h
2025-10-31T05:25:16.0676008Z patching file arch/hexagon/include/asm/timex.h
2025-10-31T05:25:16.0676937Z patching file arch/hexagon/include/uapi/asm/unistd.h
2025-10-31T05:25:16.0677757Z patching file arch/hexagon/kernel/hexagon_ksyms.c
2025-10-31T05:25:16.0678558Z patching file arch/hexagon/kernel/process.c
2025-10-31T05:25:16.0679452Z patching file arch/hexagon/kernel/ptrace.c
2025-10-31T05:25:16.0680389Z patching file arch/hexagon/kernel/syscalltab.c
2025-10-31T05:25:16.0681139Z patching file arch/hexagon/kernel/time.c
2025-10-31T05:25:16.0682353Z patching file arch/hexagon/kernel/traps.c
2025-10-31T05:25:16.0683510Z patching file arch/hexagon/kernel/vmlinux.lds.S
2025-10-31T05:25:16.0684298Z patching file arch/hexagon/lib/Makefile
2025-10-31T05:25:16.0684919Z patching file arch/hexagon/lib/divsi3.S
2025-10-31T05:25:16.0686125Z patching file arch/hexagon/lib/io.c
2025-10-31T05:25:16.0686978Z patching file arch/hexagon/lib/memcpy_likely_aligned.S
2025-10-31T05:25:16.0687936Z patching file arch/hexagon/lib/modsi3.S
2025-10-31T05:25:16.0689038Z patching file arch/hexagon/lib/udivsi3.S
2025-10-31T05:25:16.0689973Z patching file arch/hexagon/lib/umodsi3.S
2025-10-31T05:25:16.0691056Z patching file arch/ia64/Kconfig
2025-10-31T05:25:16.0692238Z patching file arch/ia64/Kconfig.debug
2025-10-31T05:25:16.0693150Z patching file arch/ia64/configs/generic_defconfig
2025-10-31T05:25:16.0694741Z patching file arch/ia64/include/asm/bugs.h
2025-10-31T05:25:16.0695694Z patching file arch/ia64/include/asm/efi.h
2025-10-31T05:25:16.0696935Z patching file arch/ia64/include/asm/local64.h
2025-10-31T05:25:16.0697849Z patching file arch/ia64/include/asm/module.h
2025-10-31T05:25:16.0698967Z patching file arch/ia64/include/asm/pgtable.h
2025-10-31T05:25:16.0700702Z patching file arch/ia64/include/asm/processor.h
2025-10-31T05:25:16.0701741Z patching file arch/ia64/include/asm/ptrace.h
2025-10-31T05:25:16.0702952Z patching file arch/ia64/include/asm/syscall.h
2025-10-31T05:25:16.0703969Z patching file arch/ia64/include/asm/thread_info.h
2025-10-31T05:25:16.0704987Z patching file arch/ia64/include/asm/timex.h
2025-10-31T05:25:16.0706036Z patching file arch/ia64/kernel/acpi.c
2025-10-31T05:25:16.0707948Z patching file arch/ia64/kernel/efi.c
2025-10-31T05:25:16.0709832Z patching file arch/ia64/kernel/err_inject.c
2025-10-31T05:25:16.0711325Z patching file arch/ia64/kernel/kprobes.c
2025-10-31T05:25:16.0713079Z patching file arch/ia64/kernel/machine_kexec.c
2025-10-31T05:25:16.0714508Z patching file arch/ia64/kernel/mca.c
2025-10-31T05:25:16.0716862Z patching file arch/ia64/kernel/mca_drv.c
2025-10-31T05:25:16.0718268Z patching file arch/ia64/kernel/module.c
2025-10-31T05:25:16.0720137Z patching file arch/ia64/kernel/process.c
2025-10-31T05:25:16.0721772Z patching file arch/ia64/kernel/ptrace.c
2025-10-31T05:25:16.0724292Z patching file arch/ia64/kernel/salinfo.c
2025-10-31T05:25:16.0725466Z patching file arch/ia64/kernel/setup.c
2025-10-31T05:25:16.0727201Z patching file arch/ia64/kernel/signal.c
2025-10-31T05:25:16.0728269Z patching file arch/ia64/kernel/smpboot.c
2025-10-31T05:25:16.0729882Z patching file arch/ia64/kernel/time.c
2025-10-31T05:25:16.0730939Z patching file arch/ia64/kernel/traps.c
2025-10-31T05:25:16.0732590Z patching file arch/ia64/kernel/uncached.c
2025-10-31T05:25:16.0733585Z patching file arch/ia64/mm/contig.c
2025-10-31T05:25:16.0734627Z patching file arch/ia64/mm/discontig.c
2025-10-31T05:25:16.0736217Z patching file arch/ia64/mm/fault.c
2025-10-31T05:25:16.0736923Z patching file arch/ia64/mm/hugetlbpage.c
2025-10-31T05:25:16.0737876Z patching file arch/ia64/mm/init.c
2025-10-31T05:25:16.0739211Z patching file arch/ia64/mm/numa.c
2025-10-31T05:25:16.0740134Z patching file arch/ia64/scripts/unwcheck.py
2025-10-31T05:25:16.0740847Z patching file arch/m68k/68000/entry.S
2025-10-31T05:25:16.0741801Z patching file arch/m68k/Kconfig
2025-10-31T05:25:16.0742926Z patching file arch/m68k/Kconfig.cpu
2025-10-31T05:25:16.0744250Z patching file arch/m68k/Kconfig.debug
2025-10-31T05:25:16.0744819Z patching file arch/m68k/Kconfig.devices
2025-10-31T05:25:16.0745951Z patching file arch/m68k/Kconfig.machine
2025-10-31T05:25:16.0747251Z patching file arch/m68k/amiga/config.c
2025-10-31T05:25:16.0748467Z patching file arch/m68k/atari/ataints.c
2025-10-31T05:25:16.0749609Z patching file arch/m68k/coldfire/device.c
2025-10-31T05:25:16.0750884Z patching file arch/m68k/coldfire/entry.S
2025-10-31T05:25:16.0751766Z patching file arch/m68k/emu/nfeth.c
2025-10-31T05:25:16.0753081Z patching file arch/m68k/fpsp040/skeleton.S
2025-10-31T05:25:16.0754258Z patching file arch/m68k/ifpsp060/os.S
2025-10-31T05:25:16.0755629Z patching file arch/m68k/include/asm/Kbuild
2025-10-31T05:25:16.0756549Z patching file arch/m68k/include/asm/bitops.h
2025-10-31T05:25:16.0758160Z patching file arch/m68k/include/asm/bugs.h
2025-10-31T05:25:16.0759132Z patching file arch/m68k/include/asm/cmpxchg.h
2025-10-31T05:25:16.0760198Z patching file arch/m68k/include/asm/mcfgpio.h
2025-10-31T05:25:16.0761401Z patching file arch/m68k/include/asm/motorola_pgtable.h
2025-10-31T05:25:16.0762558Z patching file arch/m68k/include/asm/mvme147hw.h
2025-10-31T05:25:16.0763615Z patching file arch/m68k/include/asm/pgtable_no.h
2025-10-31T05:25:16.0764628Z patching file arch/m68k/include/asm/raw_io.h
2025-10-31T05:25:16.0766227Z patching file arch/m68k/include/asm/thread_info.h
2025-10-31T05:25:16.0766873Z patching file arch/m68k/include/asm/timex.h
2025-10-31T05:25:16.0767765Z patching file arch/m68k/include/asm/vga.h
2025-10-31T05:25:16.0768683Z patching file arch/m68k/kernel/early_printk.c
2025-10-31T05:25:16.0769807Z patching file arch/m68k/kernel/entry.S
2025-10-31T05:25:16.0772149Z patching file arch/m68k/kernel/head.S
2025-10-31T05:25:16.0775045Z patching file arch/m68k/kernel/process.c
2025-10-31T05:25:16.0775696Z patching file arch/m68k/kernel/relocate_kernel.S
2025-10-31T05:25:16.0776601Z patching file arch/m68k/kernel/setup_mm.c
2025-10-31T05:25:16.0778149Z patching file arch/m68k/kernel/signal.c
2025-10-31T05:25:16.0780451Z patching file arch/m68k/kernel/sys_m68k.c
2025-10-31T05:25:16.0781557Z patching file arch/m68k/kernel/traps.c
2025-10-31T05:25:16.0783794Z patching file arch/m68k/mac/config.c
2025-10-31T05:25:16.0785433Z patching file arch/m68k/mac/misc.c
2025-10-31T05:25:16.0786625Z patching file arch/m68k/mm/fault.c
2025-10-31T05:25:16.0787563Z patching file arch/m68k/mvme147/config.c
2025-10-31T05:25:16.0788607Z patching file arch/m68k/mvme147/mvme147.h
2025-10-31T05:25:16.0789666Z patching file arch/m68k/mvme16x/config.c
2025-10-31T05:25:16.0790811Z patching file arch/m68k/mvme16x/mvme16x.h
2025-10-31T05:25:16.0791920Z patching file arch/microblaze/include/asm/Kbuild
2025-10-31T05:25:16.0793028Z patching file arch/microblaze/include/asm/thread_info.h
2025-10-31T05:25:16.0793915Z patching file arch/microblaze/include/asm/uaccess.h
2025-10-31T05:25:16.0795044Z patching file arch/microblaze/kernel/Makefile
2025-10-31T05:25:16.0796005Z patching file arch/microblaze/kernel/cpu/cpuinfo-static.c
2025-10-31T05:25:16.0796841Z patching file arch/microblaze/kernel/exceptions.c
2025-10-31T05:25:16.0797743Z patching file arch/microblaze/kernel/process.c
2025-10-31T05:25:16.0798654Z patching file arch/microblaze/kernel/signal.c
2025-10-31T05:25:16.0799703Z patching file arch/microblaze/mm/init.c
2025-10-31T05:25:16.0801737Z patching file arch/mips/Kconfig
2025-10-31T05:25:16.0804696Z patching file arch/mips/Makefile
2025-10-31T05:25:16.0805834Z patching file arch/mips/alchemy/board-xxs1500.c
2025-10-31T05:25:16.0806797Z patching file arch/mips/alchemy/devboards/db1000.c
2025-10-31T05:25:16.0808521Z patching file arch/mips/alchemy/devboards/db1200.c
2025-10-31T05:25:16.0810319Z patching file arch/mips/alchemy/devboards/db1300.c
2025-10-31T05:25:16.0812105Z patching file arch/mips/alchemy/devboards/db1550.c
2025-10-31T05:25:16.0813045Z patching file arch/mips/bcm47xx/Kconfig
2025-10-31T05:25:16.0813898Z patching file arch/mips/bcm47xx/prom.c
2025-10-31T05:25:16.0814970Z patching file arch/mips/bcm63xx/clk.c
2025-10-31T05:25:16.0816299Z patching file arch/mips/bmips/dma.c
2025-10-31T05:25:16.0817072Z patching file arch/mips/bmips/setup.c
2025-10-31T05:25:16.0818190Z patching file arch/mips/boot/compressed/Makefile
2025-10-31T05:25:16.0819209Z patching file arch/mips/boot/compressed/decompress.c
2025-10-31T05:25:16.0820176Z patching file arch/mips/boot/dts/brcm/bcm3368.dtsi
2025-10-31T05:25:16.0821045Z patching file arch/mips/boot/dts/brcm/bcm63268.dtsi
2025-10-31T05:25:16.0821834Z patching file arch/mips/boot/dts/brcm/bcm6358.dtsi
2025-10-31T05:25:16.0822824Z patching file arch/mips/boot/dts/brcm/bcm6362.dtsi
2025-10-31T05:25:16.0823661Z patching file arch/mips/boot/dts/brcm/bcm6368.dtsi
2025-10-31T05:25:16.0824582Z patching file arch/mips/boot/dts/ingenic/jz4780.dtsi
2025-10-31T05:25:16.0825722Z patching file arch/mips/boot/dts/loongson/loongson64c_4core_ls7a.dts
2025-10-31T05:25:16.0826430Z patching file arch/mips/boot/dts/loongson/loongson64g_4core_ls7a.dts
2025-10-31T05:25:16.0827213Z patching file arch/mips/boot/dts/loongson/ls7a-pch.dtsi
2025-10-31T05:25:16.0829408Z patching file arch/mips/cavium-octeon/executive/cvmx-helper-board.c
2025-10-31T05:25:16.0830323Z patching file arch/mips/cavium-octeon/executive/cvmx-helper.c
2025-10-31T05:25:16.0832886Z patching file arch/mips/cavium-octeon/octeon-irq.c
2025-10-31T05:25:16.0835664Z patching file arch/mips/cavium-octeon/octeon-platform.c
2025-10-31T05:25:16.0837211Z patching file arch/mips/cavium-octeon/octeon-usb.c
2025-10-31T05:25:16.0838645Z patching file arch/mips/cavium-octeon/setup.c
2025-10-31T05:25:16.0840454Z patching file arch/mips/configs/decstation_64_defconfig
2025-10-31T05:25:16.0841282Z patching file arch/mips/configs/decstation_defconfig
2025-10-31T05:25:16.0842410Z patching file arch/mips/configs/decstation_r4k_defconfig
2025-10-31T05:25:16.0843379Z patching file arch/mips/configs/gpr_defconfig
2025-10-31T05:25:16.0844427Z patching file arch/mips/configs/mtx1_defconfig
2025-10-31T05:25:16.0845798Z patching file arch/mips/configs/nlm_xlp_defconfig
2025-10-31T05:25:16.0846863Z patching file arch/mips/configs/nlm_xlr_defconfig
2025-10-31T05:25:16.0848035Z patching file arch/mips/configs/rm200_defconfig
2025-10-31T05:25:16.0849084Z patching file arch/mips/crypto/Makefile
2025-10-31T05:25:16.0849949Z patching file arch/mips/crypto/chacha-core.S
2025-10-31T05:25:16.0851062Z patching file arch/mips/crypto/poly1305-glue.c
2025-10-31T05:25:16.0852220Z patching file arch/mips/dec/int-handler.S
2025-10-31T05:25:16.0853248Z patching file arch/mips/dec/prom/Makefile
2025-10-31T05:25:16.0854057Z patching file arch/mips/dec/prom/init.c
2025-10-31T05:25:16.0854975Z patching file arch/mips/dec/setup.c
2025-10-31T05:25:16.0856460Z patching file arch/mips/fw/lib/cmdline.c
2025-10-31T05:25:16.0857091Z patching file arch/mips/generic/board-boston.its.S
2025-10-31T05:25:16.0857861Z patching file arch/mips/generic/board-ni169445.its.S
2025-10-31T05:25:16.0858592Z patching file arch/mips/generic/board-ocelot.its.S
2025-10-31T05:25:16.0859380Z patching file arch/mips/generic/board-xilfpga.its.S
2025-10-31T05:25:16.0860050Z patching file arch/mips/generic/vmlinux.its.S
2025-10-31T05:25:16.0860835Z patching file arch/mips/generic/yamon-dt.c
2025-10-31T05:25:16.0862210Z patching file arch/mips/include/asm/Kbuild
2025-10-31T05:25:16.0862974Z patching file arch/mips/include/asm/asm.h
2025-10-31T05:25:16.0864294Z patching file arch/mips/include/asm/asmmacro.h
2025-10-31T05:25:16.0865574Z patching file arch/mips/include/asm/atomic.h
2025-10-31T05:25:16.0866527Z patching file arch/mips/include/asm/bugs.h
2025-10-31T05:25:16.0867529Z patching file arch/mips/include/asm/checksum.h
2025-10-31T05:25:16.0868600Z patching file arch/mips/include/asm/cmpxchg.h
2025-10-31T05:25:16.0870495Z patching file arch/mips/include/asm/cpu-features.h
2025-10-31T05:25:16.0871597Z patching file arch/mips/include/asm/dec/prom.h
2025-10-31T05:25:16.0872811Z patching file arch/mips/include/asm/div64.h
2025-10-31T05:25:16.0873901Z patching file arch/mips/include/asm/dmi.h
2025-10-31T05:25:16.0874804Z patching file arch/mips/include/asm/ds1287.h
2025-10-31T05:25:16.0875757Z patching file arch/mips/include/asm/ftrace.h
2025-10-31T05:25:16.0876675Z patching file arch/mips/include/asm/fw/fw.h
2025-10-31T05:25:16.0877570Z patching file arch/mips/include/asm/highmem.h
2025-10-31T05:25:16.0878414Z patching file arch/mips/include/asm/hugetlb.h
2025-10-31T05:25:16.0879418Z patching file arch/mips/include/asm/mach-ip27/cpu-feature-overrides.h
2025-10-31T05:25:16.0880273Z patching file arch/mips/include/asm/mach-ip30/cpu-feature-overrides.h
2025-10-31T05:25:16.0881128Z patching file arch/mips/include/asm/mach-loongson64/boot_param.h
2025-10-31T05:25:16.0882290Z patching file arch/mips/include/asm/mach-loongson64/kernel-entry-init.h
2025-10-31T05:25:16.0883217Z patching file arch/mips/include/asm/mach-rc32434/pci.h
2025-10-31T05:25:16.0884690Z patching file arch/mips/include/asm/mips-cm.h
2025-10-31T05:25:16.0887266Z patching file arch/mips/include/asm/mipsregs.h
2025-10-31T05:25:16.0890031Z patching file arch/mips/include/asm/octeon/cvmx-bootinfo.h
2025-10-31T05:25:16.0890948Z patching file arch/mips/include/asm/pgalloc.h
2025-10-31T05:25:16.0892274Z patching file arch/mips/include/asm/pgtable-64.h
2025-10-31T05:25:16.0893473Z patching file arch/mips/include/asm/ptrace.h
2025-10-31T05:25:16.0894551Z patching file arch/mips/include/asm/setup.h
2025-10-31T05:25:16.0895490Z patching file arch/mips/include/asm/switch_to.h
2025-10-31T05:25:16.0896471Z patching file arch/mips/include/asm/syscall.h
2025-10-31T05:25:16.0897440Z patching file arch/mips/include/asm/thread_info.h
2025-10-31T05:25:16.0898544Z patching file arch/mips/include/asm/timex.h
2025-10-31T05:25:16.0899673Z patching file arch/mips/include/asm/vdso/gettimeofday.h
2025-10-31T05:25:16.0900704Z patching file arch/mips/include/asm/vdso/vdso.h
2025-10-31T05:25:16.0901565Z patching file arch/mips/include/asm/vpe.h
2025-10-31T05:25:16.0902847Z patching file arch/mips/kernel/asm-offsets.c
2025-10-31T05:25:16.0904033Z patching file arch/mips/kernel/binfmt_elfn32.c
2025-10-31T05:25:16.0904918Z patching file arch/mips/kernel/binfmt_elfo32.c
2025-10-31T05:25:16.0905812Z patching file arch/mips/kernel/cacheinfo.c
2025-10-31T05:25:16.0906909Z patching file arch/mips/kernel/cevt-ds1287.c
2025-10-31T05:25:16.0907829Z patching file arch/mips/kernel/cevt-r4k.c
2025-10-31T05:25:16.0909683Z patching file arch/mips/kernel/cpu-probe.c
2025-10-31T05:25:16.0912238Z patching file arch/mips/kernel/elf.c
2025-10-31T05:25:16.0913200Z patching file arch/mips/kernel/ftrace.c
2025-10-31T05:25:16.0914313Z patching file arch/mips/kernel/jump_label.c
2025-10-31T05:25:16.0915283Z patching file arch/mips/kernel/mips-cm.c
2025-10-31T05:25:16.0917112Z patching file arch/mips/kernel/mips-cpc.c
2025-10-31T05:25:16.0917995Z patching file arch/mips/kernel/pm-cps.c
2025-10-31T05:25:16.0919850Z patching file arch/mips/kernel/proc.c
2025-10-31T05:25:16.0920811Z patching file arch/mips/kernel/process.c
2025-10-31T05:25:16.0923105Z patching file arch/mips/kernel/ptrace.c
2025-10-31T05:25:16.0924876Z patching file arch/mips/kernel/r2300_fpu.S
2025-10-31T05:25:16.0925595Z patching file arch/mips/kernel/relocate.c
2025-10-31T05:25:16.0926862Z patching file arch/mips/kernel/scall32-o32.S
2025-10-31T05:25:16.0927840Z patching file arch/mips/kernel/scall64-n32.S
2025-10-31T05:25:16.0928816Z patching file arch/mips/kernel/scall64-n64.S
2025-10-31T05:25:16.0929756Z patching file arch/mips/kernel/scall64-o32.S
2025-10-31T05:25:16.0931188Z patching file arch/mips/kernel/setup.c
2025-10-31T05:25:16.0933297Z patching file arch/mips/kernel/signal.c
2025-10-31T05:25:16.0934906Z patching file arch/mips/kernel/smp-cps.c
2025-10-31T05:25:16.0936382Z patching file arch/mips/kernel/smp.c
2025-10-31T05:25:16.0937577Z patching file arch/mips/kernel/syscall.c
2025-10-31T05:25:16.0938842Z patching file arch/mips/kernel/syscalls/syscall_n32.tbl
2025-10-31T05:25:16.0939831Z patching file arch/mips/kernel/syscalls/syscall_o32.tbl
2025-10-31T05:25:16.0941005Z patching file arch/mips/kernel/time.c
2025-10-31T05:25:16.0942983Z patching file arch/mips/kernel/traps.c
2025-10-31T05:25:16.0945489Z patching file arch/mips/kernel/vmlinux.lds.S
2025-10-31T05:25:16.0946296Z patching file arch/mips/kernel/vpe-cmp.c
2025-10-31T05:25:16.0947353Z patching file arch/mips/kernel/vpe-mt.c
2025-10-31T05:25:16.0949114Z patching file arch/mips/kvm/mmu.c
2025-10-31T05:25:16.0950805Z patching file arch/mips/lantiq/clk.c
2025-10-31T05:25:16.0951661Z patching file arch/mips/lantiq/falcon/sysctrl.c
2025-10-31T05:25:16.0952751Z patching file arch/mips/lantiq/irq.c
2025-10-31T05:25:16.0953750Z patching file arch/mips/lantiq/prom.c
2025-10-31T05:25:16.0954682Z patching file arch/mips/lantiq/xway/dma.c
2025-10-31T05:25:16.0955865Z patching file arch/mips/lantiq/xway/gptu.c
2025-10-31T05:25:16.0956849Z patching file arch/mips/lantiq/xway/sysctrl.c
2025-10-31T05:25:16.0958467Z patching file arch/mips/lib/mips-atomic.c
2025-10-31T05:25:16.0959110Z patching file arch/mips/lib/uncached.c
2025-10-31T05:25:16.0959920Z patching file arch/mips/loongson2ef/Platform
2025-10-31T05:25:16.0960844Z patching file arch/mips/loongson32/common/platform.c
2025-10-31T05:25:16.0962355Z patching file arch/mips/loongson32/ls1c/board.c
2025-10-31T05:25:16.0962939Z patching file arch/mips/loongson64/Platform
2025-10-31T05:25:16.0963803Z patching file arch/mips/loongson64/env.c
2025-10-31T05:25:16.0964908Z patching file arch/mips/loongson64/init.c
2025-10-31T05:25:16.0965608Z patching file arch/mips/loongson64/numa.c
2025-10-31T05:25:16.0967131Z patching file arch/mips/mm/c-r4k.c
2025-10-31T05:25:16.0969280Z patching file arch/mips/mm/init.c
2025-10-31T05:25:16.0970257Z patching file arch/mips/mm/sc-mips.c
2025-10-31T05:25:16.0971272Z patching file arch/mips/mm/tlb-r4k.c
2025-10-31T05:25:16.0973644Z patching file arch/mips/mm/tlbex.c
2025-10-31T05:25:16.0976142Z patching file arch/mips/mti-malta/malta-dtshim.c
2025-10-31T05:25:16.0976737Z patching file arch/mips/mti-malta/malta-platform.c
2025-10-31T05:25:16.0977670Z patching file arch/mips/mti-malta/malta-setup.c
2025-10-31T05:25:16.0978865Z patching file arch/mips/net/bpf_jit.c
2025-10-31T05:25:16.0981146Z patching file arch/mips/net/ebpf_jit.c
2025-10-31T05:25:16.0983372Z patching file arch/mips/pci/ops-rc32434.c
2025-10-31T05:25:16.0984165Z patching file arch/mips/pci/pci-legacy.c
2025-10-31T05:25:16.0985188Z patching file arch/mips/pci/pci-mt7620.c
2025-10-31T05:25:16.0986330Z patching file arch/mips/pci/pci-rt2880.c
2025-10-31T05:25:16.0988305Z patching file arch/mips/pci/pcie-octeon.c
2025-10-31T05:25:16.0990536Z patching file arch/mips/pic32/pic32mzda/early_console.c
2025-10-31T05:25:16.0991198Z patching file arch/mips/pic32/pic32mzda/init.c
2025-10-31T05:25:16.0992359Z patching file arch/mips/ralink/ill_acc.c
2025-10-31T05:25:16.0993121Z patching file arch/mips/ralink/of.c
2025-10-31T05:25:16.0994119Z patching file arch/mips/rb532/devices.c
2025-10-31T05:25:16.0995157Z patching file arch/mips/sgi-ip27/ip27-xtalk.c
2025-10-31T05:25:16.0996375Z patching file arch/mips/sgi-ip30/ip30-console.c
2025-10-31T05:25:16.0997176Z patching file arch/mips/sni/time.c
2025-10-31T05:25:16.0998158Z patching file arch/mips/vdso/Makefile
2025-10-31T05:25:16.0999318Z patching file arch/mips/vr41xx/common/icu.c
2025-10-31T05:25:16.1000898Z patching file arch/nds32/include/asm/Kbuild
2025-10-31T05:25:16.1001464Z patching file arch/nds32/include/asm/thread_info.h
2025-10-31T05:25:16.1002433Z patching file arch/nds32/include/asm/uaccess.h
2025-10-31T05:25:16.1003860Z patching file arch/nds32/kernel/ex-exit.S
2025-10-31T05:25:16.1004505Z patching file arch/nds32/kernel/fpu.c
2025-10-31T05:25:16.1005877Z patching file arch/nds32/kernel/perf_event_cpu.c
2025-10-31T05:25:16.1007519Z patching file arch/nds32/kernel/process.c
2025-10-31T05:25:16.1008397Z patching file arch/nds32/kernel/signal.c
2025-10-31T05:25:16.1009696Z patching file arch/nds32/kernel/traps.c
2025-10-31T05:25:16.1010780Z patching file arch/nds32/mm/cacheflush.c
2025-10-31T05:25:16.1011694Z patching file arch/nds32/mm/mmap.c
2025-10-31T05:25:16.1012774Z patching file arch/nios2/boot/Makefile
2025-10-31T05:25:16.1013720Z patching file arch/nios2/boot/dts/10m50_devboard.dts
2025-10-31T05:25:16.1014600Z patching file arch/nios2/boot/dts/3c120_devboard.dts
2025-10-31T05:25:16.1015511Z patching file arch/nios2/include/asm/entry.h
2025-10-31T05:25:16.1016364Z patching file arch/nios2/include/asm/irqflags.h
2025-10-31T05:25:16.1017228Z patching file arch/nios2/include/asm/pgtable.h
2025-10-31T05:25:16.1018153Z patching file arch/nios2/include/asm/ptrace.h
2025-10-31T05:25:16.1018971Z patching file arch/nios2/include/asm/registers.h
2025-10-31T05:25:16.1019790Z patching file arch/nios2/include/asm/thread_info.h
2025-10-31T05:25:16.1020630Z patching file arch/nios2/include/asm/timex.h
2025-10-31T05:25:16.1021461Z patching file arch/nios2/include/asm/uaccess.h
2025-10-31T05:25:16.1022974Z patching file arch/nios2/kernel/entry.S
2025-10-31T05:25:16.1024560Z patching file arch/nios2/kernel/process.c
2025-10-31T05:25:16.1025400Z patching file arch/nios2/kernel/signal.c
2025-10-31T05:25:16.1026816Z patching file arch/nios2/kernel/sys_nios2.c
2025-10-31T05:25:16.1027584Z patching file arch/nios2/kernel/syscall_table.c
2025-10-31T05:25:16.1028342Z patching file arch/nios2/kernel/traps.c
2025-10-31T05:25:16.1029327Z patching file arch/nios2/platform/Kconfig.platform
2025-10-31T05:25:16.1030407Z patching file arch/openrisc/include/asm/barrier.h
2025-10-31T05:25:16.1031482Z patching file arch/openrisc/include/asm/syscalls.h
2025-10-31T05:25:16.1032531Z patching file arch/openrisc/include/asm/thread_info.h
2025-10-31T05:25:16.1033386Z patching file arch/openrisc/include/asm/timex.h
2025-10-31T05:25:16.1034214Z patching file arch/openrisc/kernel/dma.c
2025-10-31T05:25:16.1035273Z patching file arch/openrisc/kernel/entry.S
2025-10-31T05:25:16.1037502Z patching file arch/openrisc/kernel/head.S
2025-10-31T05:25:16.1039437Z patching file arch/openrisc/kernel/process.c
2025-10-31T05:25:16.1040120Z patching file arch/openrisc/kernel/setup.c
2025-10-31T05:25:16.1041267Z patching file arch/openrisc/kernel/signal.c
2025-10-31T05:25:16.1042496Z patching file arch/openrisc/kernel/smp.c
2025-10-31T05:25:16.1043676Z patching file arch/openrisc/kernel/traps.c
2025-10-31T05:25:16.1044759Z patching file arch/openrisc/mm/init.c
2025-10-31T05:25:16.1045765Z patching file arch/parisc/Kconfig
2025-10-31T05:25:16.1046853Z patching file arch/parisc/Makefile
2025-10-31T05:25:16.1047913Z patching file arch/parisc/boot/compressed/Makefile
2025-10-31T05:25:16.1048854Z patching file arch/parisc/include/asm/Kbuild
2025-10-31T05:25:16.1049778Z patching file arch/parisc/include/asm/assembly.h
2025-10-31T05:25:16.1051111Z patching file arch/parisc/include/asm/bugs.h
2025-10-31T05:25:16.1052245Z patching file arch/parisc/include/asm/cacheflush.h
2025-10-31T05:25:16.1053199Z patching file arch/parisc/include/asm/checksum.h
2025-10-31T05:25:16.1054297Z patching file arch/parisc/include/asm/cmpxchg.h
2025-10-31T05:25:16.1055211Z patching file arch/parisc/include/asm/fb.h
2025-10-31T05:25:16.1056037Z patching file arch/parisc/include/asm/futex.h
2025-10-31T05:25:16.1056955Z patching file arch/parisc/include/asm/hardware.h
2025-10-31T05:25:16.1057917Z patching file arch/parisc/include/asm/ldcw.h
2025-10-31T05:25:16.1058949Z patching file arch/parisc/include/asm/led.h
2025-10-31T05:25:16.1059878Z patching file arch/parisc/include/asm/mmu_context.h
2025-10-31T05:25:16.1060880Z patching file arch/parisc/include/asm/page.h
2025-10-31T05:25:16.1061934Z patching file arch/parisc/include/asm/pgalloc.h
2025-10-31T05:25:16.1063681Z patching file arch/parisc/include/asm/pgtable.h
2025-10-31T05:25:16.1065889Z patching file arch/parisc/include/asm/processor.h
2025-10-31T05:25:16.1066649Z patching file arch/parisc/include/asm/ropes.h
2025-10-31T05:25:16.1067720Z patching file arch/parisc/include/asm/special_insns.h
2025-10-31T05:25:16.1068964Z patching file arch/parisc/include/asm/spinlock_types.h
2025-10-31T05:25:16.1069665Z patching file arch/parisc/include/asm/string.h
2025-10-31T05:25:16.1070570Z patching file arch/parisc/include/asm/thread_info.h
2025-10-31T05:25:16.1071491Z patching file arch/parisc/include/asm/timex.h
2025-10-31T05:25:16.1072524Z patching file arch/parisc/include/asm/traps.h
2025-10-31T05:25:16.1073501Z patching file arch/parisc/include/uapi/asm/errno.h
2025-10-31T05:25:16.1074396Z patching file arch/parisc/include/uapi/asm/ioctls.h
2025-10-31T05:25:16.1075212Z patching file arch/parisc/include/uapi/asm/mman.h
2025-10-31T05:25:16.1076256Z patching file arch/parisc/include/uapi/asm/pdc.h
2025-10-31T05:25:16.1077420Z patching file arch/parisc/install.sh
2025-10-31T05:25:16.1078427Z patching file arch/parisc/kernel/asm-offsets.c
2025-10-31T05:25:16.1079563Z patching file arch/parisc/kernel/cache.c
2025-10-31T05:25:16.1081351Z patching file arch/parisc/kernel/drivers.c
2025-10-31T05:25:16.1083804Z patching file arch/parisc/kernel/entry.S
2025-10-31T05:25:16.1087351Z patching file arch/parisc/kernel/firmware.c
2025-10-31T05:25:16.1089300Z patching file arch/parisc/kernel/ftrace.c
2025-10-31T05:25:16.1089968Z patching file arch/parisc/kernel/head.S
2025-10-31T05:25:16.1091327Z patching file arch/parisc/kernel/irq.c
2025-10-31T05:25:16.1092699Z patching file arch/parisc/kernel/parisc_ksyms.c
2025-10-31T05:25:16.1093607Z patching file arch/parisc/kernel/patch.c
2025-10-31T05:25:16.1094708Z patching file arch/parisc/kernel/pci-dma.c
2025-10-31T05:25:16.1096041Z patching file arch/parisc/kernel/pdt.c
2025-10-31T05:25:16.1097067Z patching file arch/parisc/kernel/process.c
2025-10-31T05:25:16.1098203Z patching file arch/parisc/kernel/processor.c
2025-10-31T05:25:16.1099841Z patching file arch/parisc/kernel/ptrace.c
2025-10-31T05:25:16.1101117Z patching file arch/parisc/kernel/real2.S
2025-10-31T05:25:16.1102441Z patching file arch/parisc/kernel/signal.c
2025-10-31T05:25:16.1104130Z patching file arch/parisc/kernel/smp.c
2025-10-31T05:25:16.1105280Z patching file arch/parisc/kernel/sys_parisc.c
2025-10-31T05:25:16.1106875Z patching file arch/parisc/kernel/syscall.S
2025-10-31T05:25:16.1108662Z patching file arch/parisc/kernel/syscalls/syscall.tbl
2025-10-31T05:25:16.1109633Z patching file arch/parisc/kernel/time.c
2025-10-31T05:25:16.1110853Z patching file arch/parisc/kernel/traps.c
2025-10-31T05:25:16.1112896Z patching file arch/parisc/kernel/unaligned.c
2025-10-31T05:25:16.1114490Z patching file arch/parisc/kernel/unwind.c
2025-10-31T05:25:16.1115682Z patching file arch/parisc/lib/Makefile
2025-10-31T05:25:16.1116558Z patching file arch/parisc/lib/iomap.c
2025-10-31T05:25:16.1117721Z patching file arch/parisc/lib/memset.c
2025-10-31T05:25:16.1118804Z patching file arch/parisc/lib/string.S
2025-10-31T05:25:16.1119963Z patching file arch/parisc/math-emu/driver.c
2025-10-31T05:25:16.1121141Z patching file arch/parisc/math-emu/fpudispatch.c
2025-10-31T05:25:16.1124411Z patching file arch/parisc/mm/fault.c
2025-10-31T05:25:16.1125262Z patching file arch/parisc/mm/fixmap.c
2025-10-31T05:25:16.1126133Z patching file arch/parisc/mm/hugetlbpage.c
2025-10-31T05:25:16.1127267Z patching file arch/parisc/mm/init.c
2025-10-31T05:25:16.1129354Z patching file arch/powerpc/Kconfig
2025-10-31T05:25:16.1131143Z patching file arch/powerpc/Kconfig.debug
2025-10-31T05:25:16.1132228Z patching file arch/powerpc/Makefile
2025-10-31T05:25:16.1134106Z patching file arch/powerpc/boot/Makefile
2025-10-31T05:25:16.1135253Z patching file arch/powerpc/boot/devtree.c
2025-10-31T05:25:16.1137254Z patching file arch/powerpc/boot/dts/charon.dts
2025-10-31T05:25:16.1138058Z patching file arch/powerpc/boot/dts/digsy_mtc.dts
2025-10-31T05:25:16.1139307Z patching file arch/powerpc/boot/dts/fsl/e500v1_power_isa.dtsi
2025-10-31T05:25:16.1141066Z patching file arch/powerpc/boot/dts/fsl/mpc8540ads.dts
2025-10-31T05:25:16.1142342Z patching file arch/powerpc/boot/dts/fsl/mpc8541cds.dts
2025-10-31T05:25:16.1143588Z patching file arch/powerpc/boot/dts/fsl/mpc8555cds.dts
2025-10-31T05:25:16.1144947Z patching file arch/powerpc/boot/dts/fsl/mpc8560ads.dts
2025-10-31T05:25:16.1145861Z patching file arch/powerpc/boot/dts/fsl/p1010si-post.dtsi
2025-10-31T05:25:16.1146970Z patching file arch/powerpc/boot/dts/fsl/p2041si-post.dtsi
2025-10-31T05:25:16.1148651Z patching file arch/powerpc/boot/dts/fsl/qoriq-fman3-0-10g-2.dtsi
2025-10-31T05:25:16.1157667Z patching file arch/powerpc/boot/dts/fsl/qoriq-fman3-0-10g-3.dtsi
2025-10-31T05:25:16.1158184Z patching file arch/powerpc/boot/dts/fsl/qoriq-fman3l-0.dtsi
2025-10-31T05:25:16.1158606Z patching file arch/powerpc/boot/dts/fsl/t1023rdb.dts
2025-10-31T05:25:16.1159073Z patching file arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dts
2025-10-31T05:25:16.1159484Z patching file arch/powerpc/boot/dts/fsl/t1040rdb.dts
2025-10-31T05:25:16.1159899Z patching file arch/powerpc/boot/dts/fsl/t104xrdb.dtsi
2025-10-31T05:25:16.1160356Z patching file arch/powerpc/boot/dts/fsl/t2081si-post.dtsi
2025-10-31T05:25:16.1160756Z patching file arch/powerpc/boot/dts/lite5200.dts
2025-10-31T05:25:16.1161163Z patching file arch/powerpc/boot/dts/lite5200b.dts
2025-10-31T05:25:16.1161565Z patching file arch/powerpc/boot/dts/media5200.dts
2025-10-31T05:25:16.1162627Z patching file arch/powerpc/boot/dts/mpc5200b.dtsi
2025-10-31T05:25:16.1163575Z patching file arch/powerpc/boot/dts/o2d.dts
2025-10-31T05:25:16.1164438Z patching file arch/powerpc/boot/dts/o2d.dtsi
2025-10-31T05:25:16.1165318Z patching file arch/powerpc/boot/dts/o2dnt2.dts
2025-10-31T05:25:16.1166210Z patching file arch/powerpc/boot/dts/o3dnt.dts
2025-10-31T05:25:16.1167120Z patching file arch/powerpc/boot/dts/pcm032.dts
2025-10-31T05:25:16.1168105Z patching file arch/powerpc/boot/dts/tqm5200.dts
2025-10-31T05:25:16.1169062Z patching file arch/powerpc/boot/ns16550.c
2025-10-31T05:25:16.1170097Z patching file arch/powerpc/boot/simple_alloc.c
2025-10-31T05:25:16.1171067Z patching file arch/powerpc/configs/85xx-hw.config
2025-10-31T05:25:16.1172163Z patching file arch/powerpc/configs/mpc885_ads_defconfig
2025-10-31T05:25:16.1173166Z patching file arch/powerpc/configs/ppc6xx_defconfig
2025-10-31T05:25:16.1175140Z patching file arch/powerpc/include/asm/Kbuild
2025-10-31T05:25:16.1175786Z patching file arch/powerpc/include/asm/barrier.h
2025-10-31T05:25:16.1176873Z patching file arch/powerpc/include/asm/bitops.h
2025-10-31T05:25:16.1178078Z patching file arch/powerpc/include/asm/book3s/32/mmu-hash.h
2025-10-31T05:25:16.1179063Z patching file arch/powerpc/include/asm/book3s/32/pgtable.h
2025-10-31T05:25:16.1180659Z patching file arch/powerpc/include/asm/book3s/64/hash-4k.h
2025-10-31T05:25:16.1181809Z patching file arch/powerpc/include/asm/book3s/64/pgtable.h
2025-10-31T05:25:16.1184096Z patching file arch/powerpc/include/asm/book3s/64/radix.h
2025-10-31T05:25:16.1185167Z patching file arch/powerpc/include/asm/bpf_perf_event.h
2025-10-31T05:25:16.1186791Z patching file arch/powerpc/include/asm/bugs.h
2025-10-31T05:25:16.1187805Z patching file arch/powerpc/include/asm/code-patching.h
2025-10-31T05:25:16.1188996Z patching file arch/powerpc/include/asm/cpm1.h
2025-10-31T05:25:16.1190592Z patching file arch/powerpc/include/asm/cpu_has_feature.h
2025-10-31T05:25:16.1191524Z patching file arch/powerpc/include/asm/cpu_setup_power.h
2025-10-31T05:25:16.1193477Z patching file arch/powerpc/include/asm/cputable.h
2025-10-31T05:25:16.1195022Z patching file arch/powerpc/include/asm/cputhreads.h
2025-10-31T05:25:16.1195909Z patching file arch/powerpc/include/asm/dcr-native.h
2025-10-31T05:25:16.1196891Z patching file arch/powerpc/include/asm/dtl.h
2025-10-31T05:25:16.1197995Z patching file arch/powerpc/include/asm/exception-64s.h
2025-10-31T05:25:16.1199118Z patching file arch/powerpc/include/asm/feature-fixups.h
2025-10-31T05:25:16.1200259Z patching file arch/powerpc/include/asm/firmware.h
2025-10-31T05:25:16.1201416Z patching file arch/powerpc/include/asm/fixmap.h
2025-10-31T05:25:16.1202620Z patching file arch/powerpc/include/asm/ftrace.h
2025-10-31T05:25:16.1203981Z patching file arch/powerpc/include/asm/hvcall.h
2025-10-31T05:25:16.1205900Z patching file arch/powerpc/include/asm/hw_irq.h
2025-10-31T05:25:16.1206940Z patching file arch/powerpc/include/asm/imc-pmu.h
2025-10-31T05:25:16.1208184Z patching file arch/powerpc/include/asm/io.h
2025-10-31T05:25:16.1210311Z patching file arch/powerpc/include/asm/kexec.h
2025-10-31T05:25:16.1211338Z patching file arch/powerpc/include/asm/kvm_guest.h
2025-10-31T05:25:16.1213238Z patching file arch/powerpc/include/asm/kvm_para.h
2025-10-31T05:25:16.1213975Z patching file arch/powerpc/include/asm/lppaca.h
2025-10-31T05:25:16.1215194Z patching file arch/powerpc/include/asm/machdep.h
2025-10-31T05:25:16.1216359Z patching file arch/powerpc/include/asm/mmu.h
2025-10-31T05:25:16.1217471Z patching file arch/powerpc/include/asm/mmzone.h
2025-10-31T05:25:16.1218551Z patching file arch/powerpc/include/asm/nohash/32/pgtable.h
2025-10-31T05:25:16.1219504Z patching file arch/powerpc/include/asm/nohash/32/pte-40x.h
2025-10-31T05:25:16.1220313Z patching file arch/powerpc/include/asm/nohash/32/pte-8xx.h
2025-10-31T05:25:16.1221264Z patching file arch/powerpc/include/asm/nohash/64/pgtable-4k.h
2025-10-31T05:25:16.1222303Z patching file arch/powerpc/include/asm/nohash/64/pgtable.h
2025-10-31T05:25:16.1223581Z patching file arch/powerpc/include/asm/nohash/pgtable.h
2025-10-31T05:25:16.1224778Z patching file arch/powerpc/include/asm/paca.h
2025-10-31T05:25:16.1225995Z patching file arch/powerpc/include/asm/page.h
2025-10-31T05:25:16.1227540Z patching file arch/powerpc/include/asm/paravirt.h
2025-10-31T05:25:16.1228474Z patching file arch/powerpc/include/asm/percpu.h
2025-10-31T05:25:16.1229577Z patching file arch/powerpc/include/asm/plpar_wrappers.h
2025-10-31T05:25:16.1230641Z patching file arch/powerpc/include/asm/pmc.h
2025-10-31T05:25:16.1231749Z patching file arch/powerpc/include/asm/ppc-opcode.h
2025-10-31T05:25:16.1233703Z patching file arch/powerpc/include/asm/prom.h
2025-10-31T05:25:16.1234718Z patching file arch/powerpc/include/asm/ps3.h
2025-10-31T05:25:16.1236279Z patching file arch/powerpc/include/asm/ptrace.h
2025-10-31T05:25:16.1238414Z patching file arch/powerpc/include/asm/reg.h
2025-10-31T05:25:16.1240490Z patching file arch/powerpc/include/asm/reg_fsl_emb.h
2025-10-31T05:25:16.1241334Z patching file arch/powerpc/include/asm/sections.h
2025-10-31T05:25:16.1242562Z patching file arch/powerpc/include/asm/security_features.h
2025-10-31T05:25:16.1243574Z patching file arch/powerpc/include/asm/smp.h
2025-10-31T05:25:16.1244789Z patching file arch/powerpc/include/asm/sstep.h
2025-10-31T05:25:16.1245865Z patching file arch/powerpc/include/asm/switch_to.h
2025-10-31T05:25:16.1246859Z patching file arch/powerpc/include/asm/syscall.h
2025-10-31T05:25:16.1248056Z patching file arch/powerpc/include/asm/thread_info.h
2025-10-31T05:25:16.1249180Z patching file arch/powerpc/include/asm/timex.h
2025-10-31T05:25:16.1250165Z patching file arch/powerpc/include/asm/topology.h
2025-10-31T05:25:16.1251363Z patching file arch/powerpc/include/asm/uaccess.h
2025-10-31T05:25:16.1253438Z patching file arch/powerpc/include/asm/vas.h
2025-10-31T05:25:16.1254375Z patching file arch/powerpc/include/asm/vdso.h
2025-10-31T05:25:16.1255400Z patching file arch/powerpc/include/asm/word-at-a-time.h
2025-10-31T05:25:16.1256408Z patching file arch/powerpc/include/uapi/asm/bpf_perf_event.h
2025-10-31T05:25:16.1258506Z patching file arch/powerpc/include/uapi/asm/errno.h
2025-10-31T05:25:16.1258947Z patching file arch/powerpc/include/uapi/asm/ioctls.h
2025-10-31T05:25:16.1260124Z patching file arch/powerpc/kernel/Makefile
2025-10-31T05:25:16.1261563Z patching file arch/powerpc/kernel/asm-offsets.c
2025-10-31T05:25:16.1263499Z patching file arch/powerpc/kernel/btext.c
2025-10-31T05:25:16.1265107Z patching file arch/powerpc/kernel/cpu_setup_power.S
2025-10-31T05:25:16.1266705Z patching file arch/powerpc/kernel/cpu_setup_power.c
2025-10-31T05:25:16.1269695Z patching file arch/powerpc/kernel/cputable.c
2025-10-31T05:25:16.1272195Z patching file arch/powerpc/kernel/dma-iommu.c
2025-10-31T05:25:16.1273156Z patching file arch/powerpc/kernel/dt_cpu_ftrs.c
2025-10-31T05:25:16.1275522Z patching file arch/powerpc/kernel/eeh.c
2025-10-31T05:25:16.1277747Z patching file arch/powerpc/kernel/eeh_driver.c
2025-10-31T05:25:16.1280366Z patching file arch/powerpc/kernel/eeh_pe.c
2025-10-31T05:25:16.1282293Z patching file arch/powerpc/kernel/entry_32.S
2025-10-31T05:25:16.1284211Z patching file arch/powerpc/kernel/entry_64.S
2025-10-31T05:25:16.1286642Z patching file arch/powerpc/kernel/exceptions-64s.S
2025-10-31T05:25:16.1289779Z patching file arch/powerpc/kernel/fadump.c
2025-10-31T05:25:16.1291832Z patching file arch/powerpc/kernel/firmware.c
2025-10-31T05:25:16.1292819Z patching file arch/powerpc/kernel/fpu.S
2025-10-31T05:25:16.1293997Z patching file arch/powerpc/kernel/head_32.h
2025-10-31T05:25:16.1295634Z patching file arch/powerpc/kernel/head_40x.S
2025-10-31T05:25:16.1297319Z patching file arch/powerpc/kernel/head_64.S
2025-10-31T05:25:16.1299142Z patching file arch/powerpc/kernel/head_8xx.S
2025-10-31T05:25:16.1301070Z patching file arch/powerpc/kernel/head_book3s_32.S
2025-10-31T05:25:16.1303303Z patching file arch/powerpc/kernel/hw_breakpoint.c
2025-10-31T05:25:16.1305066Z patching file arch/powerpc/kernel/idle.c
2025-10-31T05:25:16.1305965Z patching file arch/powerpc/kernel/idle_6xx.S
2025-10-31T05:25:16.1307071Z patching file arch/powerpc/kernel/idle_book3s.S
2025-10-31T05:25:16.1308967Z patching file arch/powerpc/kernel/iommu.c
2025-10-31T05:25:16.1310881Z patching file arch/powerpc/kernel/irq.c
2025-10-31T05:25:16.1313236Z patching file arch/powerpc/kernel/kprobes.c
2025-10-31T05:25:16.1314599Z patching file arch/powerpc/kernel/kvm.c
2025-10-31T05:25:16.1316311Z patching file arch/powerpc/kernel/l2cr_6xx.S
2025-10-31T05:25:16.1317482Z patching file arch/powerpc/kernel/mce.c
2025-10-31T05:25:16.1319262Z patching file arch/powerpc/kernel/mce_power.c
2025-10-31T05:25:16.1321142Z patching file arch/powerpc/kernel/paca.c
2025-10-31T05:25:16.1323021Z patching file arch/powerpc/kernel/pci-common.c
2025-10-31T05:25:16.1325212Z patching file arch/powerpc/kernel/pci-hotplug.c
2025-10-31T05:25:16.1326163Z patching file arch/powerpc/kernel/pci_dn.c
2025-10-31T05:25:16.1328434Z patching file arch/powerpc/kernel/ppc_save_regs.S
2025-10-31T05:25:16.1329675Z patching file arch/powerpc/kernel/process.c
2025-10-31T05:25:16.1332576Z patching file arch/powerpc/kernel/prom.c
2025-10-31T05:25:16.1334882Z patching file arch/powerpc/kernel/prom_init.c
2025-10-31T05:25:16.1337711Z patching file arch/powerpc/kernel/prom_init_check.sh
2025-10-31T05:25:16.1338605Z patching file arch/powerpc/kernel/ptrace/ptrace-view.c
2025-10-31T05:25:16.1340035Z patching file arch/powerpc/kernel/ptrace/ptrace.c
2025-10-31T05:25:16.1341449Z patching file arch/powerpc/kernel/rtas.c
2025-10-31T05:25:16.1343940Z patching file arch/powerpc/kernel/rtas_flash.c
2025-10-31T05:25:16.1345279Z patching file arch/powerpc/kernel/security.c
2025-10-31T05:25:16.1346356Z patching file arch/powerpc/kernel/secvar-sysfs.c
2025-10-31T05:25:16.1347633Z patching file arch/powerpc/kernel/setup-common.c
2025-10-31T05:25:16.1348965Z patching file arch/powerpc/kernel/setup.h
2025-10-31T05:25:16.1349790Z patching file arch/powerpc/kernel/setup_32.c
2025-10-31T05:25:16.1351272Z patching file arch/powerpc/kernel/setup_64.c
2025-10-31T05:25:16.1353243Z patching file arch/powerpc/kernel/signal.c
2025-10-31T05:25:16.1354762Z patching file arch/powerpc/kernel/smp.c
2025-10-31T05:25:16.1357301Z patching file arch/powerpc/kernel/stacktrace.c
2025-10-31T05:25:16.1358159Z patching file arch/powerpc/kernel/swsusp_32.S
2025-10-31T05:25:16.1359533Z patching file arch/powerpc/kernel/swsusp_asm64.S
2025-10-31T05:25:16.1360553Z patching file arch/powerpc/kernel/syscalls/syscall.tbl
2025-10-31T05:25:16.1362382Z patching file arch/powerpc/kernel/sysfs.c
2025-10-31T05:25:16.1363827Z patching file arch/powerpc/kernel/systbl.S
2025-10-31T05:25:16.1364885Z patching file arch/powerpc/kernel/time.c
2025-10-31T05:25:16.1367028Z patching file arch/powerpc/kernel/trace/ftrace.c
2025-10-31T05:25:16.1368338Z patching file arch/powerpc/kernel/trace/ftrace_64_mprofile.S
2025-10-31T05:25:16.1370390Z patching file arch/powerpc/kernel/traps.c
2025-10-31T05:25:16.1373044Z patching file arch/powerpc/kernel/vdso.c
2025-10-31T05:25:16.1374238Z patching file arch/powerpc/kernel/vdso64/sigtramp.S
2025-10-31T05:25:16.1375242Z patching file arch/powerpc/kernel/vdso64/vdso64.lds.S
2025-10-31T05:25:16.1376128Z patching file arch/powerpc/kernel/vector.S
2025-10-31T05:25:16.1377249Z patching file arch/powerpc/kernel/vmlinux.lds.S
2025-10-31T05:25:16.1378891Z patching file arch/powerpc/kernel/watchdog.c
2025-10-31T05:25:16.1380403Z patching file arch/powerpc/kexec/core.c
2025-10-31T05:25:16.1381163Z patching file arch/powerpc/kexec/elf_64.c
2025-10-31T05:25:16.1382517Z patching file arch/powerpc/kexec/file_load_64.c
2025-10-31T05:25:16.1385122Z patching file arch/powerpc/kvm/book3s_64_mmu_radix.c
2025-10-31T05:25:16.1386917Z patching file arch/powerpc/kvm/book3s_64_vio.c
2025-10-31T05:25:16.1388862Z patching file arch/powerpc/kvm/book3s_64_vio_hv.c
2025-10-31T05:25:16.1392489Z patching file arch/powerpc/kvm/book3s_hv.c
2025-10-31T05:25:16.1396642Z patching file arch/powerpc/kvm/book3s_hv_builtin.c
2025-10-31T05:25:16.1398312Z patching file arch/powerpc/kvm/book3s_hv_nested.c
2025-10-31T05:25:16.1400280Z patching file arch/powerpc/kvm/book3s_hv_ras.c
2025-10-31T05:25:16.1401380Z patching file arch/powerpc/kvm/book3s_hv_rm_mmu.c
2025-10-31T05:25:16.1404081Z patching file arch/powerpc/kvm/book3s_hv_rmhandlers.S
2025-10-31T05:25:16.1407342Z patching file arch/powerpc/kvm/book3s_hv_uvmem.c
2025-10-31T05:25:16.1408814Z patching file arch/powerpc/kvm/book3s_rtas.c
2025-10-31T05:25:16.1410539Z patching file arch/powerpc/kvm/booke.c
2025-10-31T05:25:16.1413266Z patching file arch/powerpc/kvm/powerpc.c
2025-10-31T05:25:16.1415824Z patching file arch/powerpc/lib/Makefile
2025-10-31T05:25:16.1416458Z patching file arch/powerpc/lib/code-patching.c
2025-10-31T05:25:16.1418364Z patching file arch/powerpc/lib/feature-fixups.c
2025-10-31T05:25:16.1420764Z patching file arch/powerpc/lib/sstep.c
2025-10-31T05:25:16.1424869Z patching file arch/powerpc/math-emu/math_efp.c
2025-10-31T05:25:16.1426040Z patching file arch/powerpc/mm/book3s32/mmu.c
2025-10-31T05:25:16.1428098Z patching file arch/powerpc/mm/book3s64/hash_utils.c
2025-10-31T05:25:16.1430184Z patching file arch/powerpc/mm/book3s64/pgtable.c
2025-10-31T05:25:16.1431371Z patching file arch/powerpc/mm/book3s64/radix_pgtable.c
2025-10-31T05:25:16.1434187Z patching file arch/powerpc/mm/book3s64/radix_tlb.c
2025-10-31T05:25:16.1435955Z patching file arch/powerpc/mm/book3s64/slb.c
2025-10-31T05:25:16.1437127Z patching file arch/powerpc/mm/fault.c
2025-10-31T05:25:16.1438717Z patching file arch/powerpc/mm/init-common.c
2025-10-31T05:25:16.1439553Z patching file arch/powerpc/mm/init_64.c
2025-10-31T05:25:16.1440685Z patching file arch/powerpc/mm/kasan/Makefile
2025-10-31T05:25:16.1441348Z patching file arch/powerpc/mm/kasan/book3s_32.c
2025-10-31T05:25:16.1442467Z patching file arch/powerpc/mm/kasan/kasan_init_32.c
2025-10-31T05:25:16.1443667Z patching file arch/powerpc/mm/mem.c
2025-10-31T05:25:16.1444905Z patching file arch/powerpc/mm/mmu_context.c
2025-10-31T05:25:16.1445769Z patching file arch/powerpc/mm/nohash/book3e_pgtable.c
2025-10-31T05:25:16.1446655Z patching file arch/powerpc/mm/nohash/kaslr_booke.c
2025-10-31T05:25:16.1448036Z patching file arch/powerpc/mm/numa.c
2025-10-31T05:25:16.1451223Z patching file arch/powerpc/mm/pgtable.c
2025-10-31T05:25:16.1451918Z patching file arch/powerpc/mm/pgtable_64.c
2025-10-31T05:25:16.1453232Z patching file arch/powerpc/mm/ptdump/shared.c
2025-10-31T05:25:16.1453821Z patching file arch/powerpc/net/bpf_jit.h
2025-10-31T05:25:16.1454983Z patching file arch/powerpc/net/bpf_jit64.h
2025-10-31T05:25:16.1456047Z patching file arch/powerpc/net/bpf_jit_comp64.c
2025-10-31T05:25:16.1458101Z patching file arch/powerpc/perf/Makefile
2025-10-31T05:25:16.1458681Z patching file arch/powerpc/perf/callchain.c
2025-10-31T05:25:16.1460149Z patching file arch/powerpc/perf/core-book3s.c
2025-10-31T05:25:16.1463105Z patching file arch/powerpc/perf/core-fsl-emb.c
2025-10-31T05:25:16.1465137Z patching file arch/powerpc/perf/hv-24x7.c
2025-10-31T05:25:16.1467046Z patching file arch/powerpc/perf/hv-gpci-requests.h
2025-10-31T05:25:16.1468001Z patching file arch/powerpc/perf/hv-gpci.c
2025-10-31T05:25:16.1469534Z patching file arch/powerpc/perf/hv-gpci.h
2025-10-31T05:25:16.1470571Z patching file arch/powerpc/perf/imc-pmu.c
2025-10-31T05:25:16.1474234Z patching file arch/powerpc/perf/isa207-common.c
2025-10-31T05:25:16.1475804Z patching file arch/powerpc/perf/isa207-common.h
2025-10-31T05:25:16.1476957Z patching file arch/powerpc/perf/power10-events-list.h
2025-10-31T05:25:16.1477835Z patching file arch/powerpc/perf/power10-pmu.c
2025-10-31T05:25:16.1479282Z patching file arch/powerpc/perf/power9-pmu.c
2025-10-31T05:25:16.1480269Z patching file arch/powerpc/perf/req-gen/perf.h
2025-10-31T05:25:16.1481391Z patching file arch/powerpc/platforms/44x/Kconfig
2025-10-31T05:25:16.1482521Z patching file arch/powerpc/platforms/44x/fsp2.c
2025-10-31T05:25:16.1483669Z patching file arch/powerpc/platforms/4xx/cpm.c
2025-10-31T05:25:16.1485093Z patching file arch/powerpc/platforms/512x/clock-commonclk.c
2025-10-31T05:25:16.1486848Z patching file arch/powerpc/platforms/512x/mpc512x_lpbfifo.c
2025-10-31T05:25:16.1487982Z patching file arch/powerpc/platforms/52xx/lite5200_sleep.S
2025-10-31T05:25:16.1489060Z patching file arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c
2025-10-31T05:25:16.1490267Z patching file arch/powerpc/platforms/83xx/mpc832x_rdb.c
2025-10-31T05:25:16.1491251Z patching file arch/powerpc/platforms/85xx/Makefile
2025-10-31T05:25:16.1492297Z patching file arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c
2025-10-31T05:25:16.1493252Z patching file arch/powerpc/platforms/85xx/smp.c
2025-10-31T05:25:16.1494943Z patching file arch/powerpc/platforms/8xx/cpm1.c
2025-10-31T05:25:16.1496047Z patching file arch/powerpc/platforms/8xx/micropatch.c
2025-10-31T05:25:16.1497036Z patching file arch/powerpc/platforms/8xx/pic.c
2025-10-31T05:25:16.1497922Z patching file arch/powerpc/platforms/Kconfig
2025-10-31T05:25:16.1499016Z patching file arch/powerpc/platforms/Kconfig.cputype
2025-10-31T05:25:16.1500265Z patching file arch/powerpc/platforms/Makefile
2025-10-31T05:25:16.1501668Z patching file arch/powerpc/platforms/book3s/Kconfig
2025-10-31T05:25:16.1502604Z patching file arch/powerpc/platforms/book3s/Makefile
2025-10-31T05:25:16.1503535Z patching file arch/powerpc/platforms/book3s/vas-api.c
2025-10-31T05:25:16.1505418Z patching file arch/powerpc/platforms/cell/axon_msi.c
2025-10-31T05:25:16.1506779Z patching file arch/powerpc/platforms/cell/iommu.c
2025-10-31T05:25:16.1508061Z patching file arch/powerpc/platforms/cell/pervasive.c
2025-10-31T05:25:16.1508626Z patching file arch/powerpc/platforms/cell/smp.c
2025-10-31T05:25:16.1509594Z patching file arch/powerpc/platforms/cell/spufs/coredump.c
2025-10-31T05:25:16.1510568Z patching file arch/powerpc/platforms/cell/spufs/inode.c
2025-10-31T05:25:16.1512317Z patching file arch/powerpc/platforms/embedded6xx/flipper-pic.c
2025-10-31T05:25:16.1513297Z patching file arch/powerpc/platforms/embedded6xx/hlwd-pic.c
2025-10-31T05:25:16.1514241Z patching file arch/powerpc/platforms/embedded6xx/linkstation.c
2025-10-31T05:25:16.1515100Z patching file arch/powerpc/platforms/embedded6xx/mpc10x.h
2025-10-31T05:25:16.1515933Z patching file arch/powerpc/platforms/embedded6xx/wii.c
2025-10-31T05:25:16.1516915Z patching file arch/powerpc/platforms/powermac/cache.S
2025-10-31T05:25:16.1518523Z patching file arch/powerpc/platforms/powermac/low_i2c.c
2025-10-31T05:25:16.1520369Z patching file arch/powerpc/platforms/powermac/sleep.S
2025-10-31T05:25:16.1522233Z patching file arch/powerpc/platforms/powernv/Kconfig
2025-10-31T05:25:16.1522855Z patching file arch/powerpc/platforms/powernv/Makefile
2025-10-31T05:25:16.1523805Z patching file arch/powerpc/platforms/powernv/memtrace.c
2025-10-31T05:25:16.1525439Z patching file arch/powerpc/platforms/powernv/npu-dma.c
2025-10-31T05:25:16.1527102Z patching file arch/powerpc/platforms/powernv/opal-fadump.c
2025-10-31T05:25:16.1529445Z patching file arch/powerpc/platforms/powernv/opal-fadump.h
2025-10-31T05:25:16.1529905Z patching file arch/powerpc/platforms/powernv/opal-irqchip.c
2025-10-31T05:25:16.1530986Z patching file arch/powerpc/platforms/powernv/opal-lpc.c
2025-10-31T05:25:16.1531936Z patching file arch/powerpc/platforms/powernv/opal-powercap.c
2025-10-31T05:25:16.1533432Z patching file arch/powerpc/platforms/powernv/opal-prd.c
2025-10-31T05:25:16.1534427Z patching file arch/powerpc/platforms/powernv/opal-xscom.c
2025-10-31T05:25:16.1535578Z patching file arch/powerpc/platforms/powernv/opal.c
2025-10-31T05:25:16.1538156Z patching file arch/powerpc/platforms/powernv/pci-ioda.c
2025-10-31T05:25:16.1540835Z patching file arch/powerpc/platforms/powernv/pci-sriov.c
2025-10-31T05:25:16.1541903Z patching file arch/powerpc/platforms/powernv/powernv.h
2025-10-31T05:25:16.1542996Z patching file arch/powerpc/platforms/powernv/rng.c
2025-10-31T05:25:16.1544661Z patching file arch/powerpc/platforms/powernv/setup.c
2025-10-31T05:25:16.1545730Z patching file arch/powerpc/platforms/powernv/ultravisor.c
2025-10-31T05:25:16.1546534Z patching file arch/powerpc/platforms/powernv/vas-api.c
2025-10-31T05:25:16.1548455Z patching file arch/powerpc/platforms/powernv/vas-fault.c
2025-10-31T05:25:16.1549668Z patching file arch/powerpc/platforms/powernv/vas-window.c
2025-10-31T05:25:16.1551714Z patching file arch/powerpc/platforms/powernv/vas.h
2025-10-31T05:25:16.1553241Z patching file arch/powerpc/platforms/ps3/mm.c
2025-10-31T05:25:16.1555176Z patching file arch/powerpc/platforms/pseries/dlpar.c
2025-10-31T05:25:16.1556177Z patching file arch/powerpc/platforms/pseries/dtl.c
2025-10-31T05:25:16.1557740Z patching file arch/powerpc/platforms/pseries/eeh_pseries.c
2025-10-31T05:25:16.1559061Z patching file arch/powerpc/platforms/pseries/firmware.c
2025-10-31T05:25:16.1560198Z patching file arch/powerpc/platforms/pseries/hotplug-cpu.c
2025-10-31T05:25:16.1562162Z patching file arch/powerpc/platforms/pseries/hotplug-memory.c
2025-10-31T05:25:16.1563490Z patching file arch/powerpc/platforms/pseries/hvCall.S
2025-10-31T05:25:16.1564499Z patching file arch/powerpc/platforms/pseries/ibmebus.c
2025-10-31T05:25:16.1566099Z patching file arch/powerpc/platforms/pseries/iommu.c
2025-10-31T05:25:16.1568336Z patching file arch/powerpc/platforms/pseries/lpar.c
2025-10-31T05:25:16.1570884Z patching file arch/powerpc/platforms/pseries/lparcfg.c
2025-10-31T05:25:16.1572535Z patching file arch/powerpc/platforms/pseries/mobility.c
2025-10-31T05:25:16.1574186Z patching file arch/powerpc/platforms/pseries/msi.c
2025-10-31T05:25:16.1575837Z patching file arch/powerpc/platforms/pseries/papr_scm.c
2025-10-31T05:25:16.1577835Z patching file arch/powerpc/platforms/pseries/pci_dlpar.c
2025-10-31T05:25:16.1578470Z patching file arch/powerpc/platforms/pseries/pseries.h
2025-10-31T05:25:16.1579313Z patching file arch/powerpc/platforms/pseries/rng.c
2025-10-31T05:25:16.1580470Z patching file arch/powerpc/platforms/pseries/setup.c
2025-10-31T05:25:16.1582557Z patching file arch/powerpc/platforms/pseries/smp.c
2025-10-31T05:25:16.1583581Z patching file arch/powerpc/platforms/pseries/suspend.c
2025-10-31T05:25:16.1585210Z patching file arch/powerpc/platforms/pseries/vio.c
2025-10-31T05:25:16.1587170Z patching file arch/powerpc/purgatory/Makefile
2025-10-31T05:25:16.1587811Z patching file arch/powerpc/sysdev/dart_iommu.c
2025-10-31T05:25:16.1588914Z patching file arch/powerpc/sysdev/dcr-low.S
2025-10-31T05:25:16.1589756Z patching file arch/powerpc/sysdev/fsl_gtm.c
2025-10-31T05:25:16.1590927Z patching file arch/powerpc/sysdev/fsl_msi.c
2025-10-31T05:25:16.1592615Z patching file arch/powerpc/sysdev/fsl_pci.c
2025-10-31T05:25:16.1594455Z patching file arch/powerpc/sysdev/fsl_pci.h
2025-10-31T05:25:16.1595342Z patching file arch/powerpc/sysdev/fsl_rio.c
2025-10-31T05:25:16.1596914Z patching file arch/powerpc/sysdev/mpic_msgr.c
2025-10-31T05:25:16.1597867Z patching file arch/powerpc/sysdev/tsi108_pci.c
2025-10-31T05:25:16.1598990Z patching file arch/powerpc/sysdev/xics/icp-native.c
2025-10-31T05:25:16.1600074Z patching file arch/powerpc/sysdev/xics/icp-opal.c
2025-10-31T05:25:16.1601287Z patching file arch/powerpc/sysdev/xive/common.c
2025-10-31T05:25:16.1603831Z patching file arch/powerpc/sysdev/xive/native.c
2025-10-31T05:25:16.1604969Z patching file arch/powerpc/sysdev/xive/spapr.c
2025-10-31T05:25:16.1606598Z patching file arch/powerpc/xmon/nonstdio.c
2025-10-31T05:25:16.1607187Z patching file arch/powerpc/xmon/ppc-dis.c
2025-10-31T05:25:16.1609097Z patching file arch/powerpc/xmon/xmon.c
2025-10-31T05:25:16.1611774Z patching file arch/riscv/Kconfig
2025-10-31T05:25:16.1613600Z patching file arch/riscv/Makefile
2025-10-31T05:25:16.1614601Z patching file arch/riscv/boot/dts/sifive/fu540-c000.dtsi
2025-10-31T05:25:16.1615508Z patching file arch/riscv/boot/dts/sifive/hifive-unleashed-a00.dts
2025-10-31T05:25:16.1616368Z patching file arch/riscv/configs/defconfig
2025-10-31T05:25:16.1617309Z patching file arch/riscv/include/asm/Kbuild
2025-10-31T05:25:16.1618156Z patching file arch/riscv/include/asm/ftrace.h
2025-10-31T05:25:16.1619155Z patching file arch/riscv/include/asm/hugetlb.h
2025-10-31T05:25:16.1620011Z patching file arch/riscv/include/asm/io.h
2025-10-31T05:25:16.1621091Z patching file arch/riscv/include/asm/irq_work.h
2025-10-31T05:25:16.1621916Z patching file arch/riscv/include/asm/jump_label.h
2025-10-31T05:25:16.1623043Z patching file arch/riscv/include/asm/kasan.h
2025-10-31T05:25:16.1623936Z patching file arch/riscv/include/asm/kgdb.h
2025-10-31T05:25:16.1624824Z patching file arch/riscv/include/asm/mmio.h
2025-10-31T05:25:16.1625865Z patching file arch/riscv/include/asm/module.lds.h
2025-10-31T05:25:16.1626695Z patching file arch/riscv/include/asm/page.h
2025-10-31T05:25:16.1627728Z patching file arch/riscv/include/asm/parse_asm.h
2025-10-31T05:25:16.1628688Z patching file arch/riscv/include/asm/patch.h
2025-10-31T05:25:16.1629589Z patching file arch/riscv/include/asm/pgtable-64.h
2025-10-31T05:25:16.1630517Z patching file arch/riscv/include/asm/pgtable.h
2025-10-31T05:25:16.1631875Z patching file arch/riscv/include/asm/sbi.h
2025-10-31T05:25:16.1633035Z patching file arch/riscv/include/asm/stackprotector.h
2025-10-31T05:25:16.1633849Z patching file arch/riscv/include/asm/syscall.h
2025-10-31T05:25:16.1634758Z patching file arch/riscv/include/asm/thread_info.h
2025-10-31T05:25:16.1635715Z patching file arch/riscv/include/asm/timex.h
2025-10-31T05:25:16.1636655Z patching file arch/riscv/include/asm/uaccess.h
2025-10-31T05:25:16.1638209Z patching file arch/riscv/include/asm/vdso.h
2025-10-31T05:25:16.1639152Z patching file arch/riscv/include/uapi/asm/setup.h
2025-10-31T05:25:16.1640053Z patching file arch/riscv/include/uapi/asm/unistd.h
2025-10-31T05:25:16.1640896Z patching file arch/riscv/kernel/Makefile
2025-10-31T05:25:16.1641797Z patching file arch/riscv/kernel/asm-offsets.c
2025-10-31T05:25:16.1643018Z patching file arch/riscv/kernel/cacheinfo.c
2025-10-31T05:25:16.1644058Z patching file arch/riscv/kernel/cpu-hotplug.c
2025-10-31T05:25:16.1644858Z patching file arch/riscv/kernel/efi-header.S
2025-10-31T05:25:16.1645736Z patching file arch/riscv/kernel/efi.c
2025-10-31T05:25:16.1646627Z patching file arch/riscv/kernel/entry.S
2025-10-31T05:25:16.1648229Z patching file arch/riscv/kernel/ftrace.c
2025-10-31T05:25:16.1649122Z patching file arch/riscv/kernel/head.S
2025-10-31T05:25:16.1650152Z patching file arch/riscv/kernel/kgdb.c
2025-10-31T05:25:16.1651237Z patching file arch/riscv/kernel/mcount.S
2025-10-31T05:25:16.1652375Z patching file arch/riscv/kernel/module.c
2025-10-31T05:25:16.1653755Z patching file arch/riscv/kernel/patch.c
2025-10-31T05:25:16.1654756Z patching file arch/riscv/kernel/perf_callchain.c
2025-10-31T05:25:16.1655769Z patching file arch/riscv/kernel/process.c
2025-10-31T05:25:16.1656674Z patching file arch/riscv/kernel/ptrace.c
2025-10-31T05:25:16.1657583Z patching file arch/riscv/kernel/reset.c
2025-10-31T05:25:16.1658480Z patching file arch/riscv/kernel/setup.c
2025-10-31T05:25:16.1659409Z patching file arch/riscv/kernel/signal.c
2025-10-31T05:25:16.1660564Z patching file arch/riscv/kernel/smp.c
2025-10-31T05:25:16.1661638Z patching file arch/riscv/kernel/smpboot.c
2025-10-31T05:25:16.1662563Z patching file arch/riscv/kernel/stacktrace.c
2025-10-31T05:25:16.1663645Z patching file arch/riscv/kernel/sys_riscv.c
2025-10-31T05:25:16.1664427Z patching file arch/riscv/kernel/time.c
2025-10-31T05:25:16.1665314Z patching file arch/riscv/kernel/trace_irq.c
2025-10-31T05:25:16.1666464Z patching file arch/riscv/kernel/trace_irq.h
2025-10-31T05:25:16.1667550Z patching file arch/riscv/kernel/traps.c
2025-10-31T05:25:16.1668827Z patching file arch/riscv/kernel/traps_misaligned.c
2025-10-31T05:25:16.1669938Z patching file arch/riscv/kernel/vdso.c
2025-10-31T05:25:16.1670868Z patching file arch/riscv/kernel/vdso/Makefile
2025-10-31T05:25:16.1671924Z patching file arch/riscv/kernel/vdso/vdso.lds.S
2025-10-31T05:25:16.1672931Z patching file arch/riscv/mm/Makefile
2025-10-31T05:25:16.1673741Z patching file arch/riscv/mm/cacheflush.c
2025-10-31T05:25:16.1674663Z patching file arch/riscv/mm/fault.c
2025-10-31T05:25:16.1675885Z patching file arch/riscv/mm/init.c
2025-10-31T05:25:16.1677777Z patching file arch/riscv/mm/kasan_init.c
2025-10-31T05:25:16.1678342Z patching file arch/riscv/mm/pageattr.c
2025-10-31T05:25:16.1679542Z patching file arch/riscv/net/bpf_jit.h
2025-10-31T05:25:16.1681239Z patching file arch/riscv/net/bpf_jit_comp32.c
2025-10-31T05:25:16.1683173Z patching file arch/riscv/net/bpf_jit_comp64.c
2025-10-31T05:25:16.1685006Z patching file arch/riscv/net/bpf_jit_core.c
2025-10-31T05:25:16.1686108Z patching file arch/s390/Kconfig
2025-10-31T05:25:16.1687764Z patching file arch/s390/Makefile
2025-10-31T05:25:16.1688827Z patching file arch/s390/boot/compressed/decompressor.c
2025-10-31T05:25:16.1689408Z patching file arch/s390/boot/compressed/vmlinux.lds.S
2025-10-31T05:25:16.1690247Z patching file arch/s390/boot/ipl_parm.c
2025-10-31T05:25:16.1691330Z patching file arch/s390/boot/ipl_report.c
2025-10-31T05:25:16.1692367Z patching file arch/s390/boot/mem_detect.c
2025-10-31T05:25:16.1693673Z patching file arch/s390/boot/text_dma.S
2025-10-31T05:25:16.1694427Z patching file arch/s390/boot/uv.c
2025-10-31T05:25:16.1695533Z patching file arch/s390/crypto/aes_s390.c
2025-10-31T05:25:16.1697231Z patching file arch/s390/crypto/arch_random.c
2025-10-31T05:25:16.1698324Z patching file arch/s390/crypto/paes_s390.c
2025-10-31T05:25:16.1699774Z patching file arch/s390/hypfs/hypfs_dbfs.c
2025-10-31T05:25:16.1700670Z patching file arch/s390/hypfs/hypfs_diag.c
2025-10-31T05:25:16.1701831Z patching file arch/s390/hypfs/hypfs_vm.c
2025-10-31T05:25:16.1703023Z patching file arch/s390/hypfs/inode.c
2025-10-31T05:25:16.1704596Z patching file arch/s390/include/asm/Kbuild
2025-10-31T05:25:16.1705095Z patching file arch/s390/include/asm/archrandom.h
2025-10-31T05:25:16.1706349Z patching file arch/s390/include/asm/cpu_mf.h
2025-10-31T05:25:16.1708038Z patching file arch/s390/include/asm/debug.h
2025-10-31T05:25:16.1708874Z patching file arch/s390/include/asm/dwarf.h
2025-10-31T05:25:16.1709907Z patching file arch/s390/include/asm/extable.h
2025-10-31T05:25:16.1710860Z patching file arch/s390/include/asm/facility.h
2025-10-31T05:25:16.1711752Z patching file arch/s390/include/asm/fpu/api.h
2025-10-31T05:25:16.1712873Z patching file arch/s390/include/asm/ftrace.h
2025-10-31T05:25:16.1713801Z patching file arch/s390/include/asm/futex.h
2025-10-31T05:25:16.1714830Z patching file arch/s390/include/asm/gmap.h
2025-10-31T05:25:16.1715854Z patching file arch/s390/include/asm/hugetlb.h
2025-10-31T05:25:16.1716839Z patching file arch/s390/include/asm/kexec.h
2025-10-31T05:25:16.1718416Z patching file arch/s390/include/asm/kvm_host.h
2025-10-31T05:25:16.1720019Z patching file arch/s390/include/asm/pci.h
2025-10-31T05:25:16.1721062Z patching file arch/s390/include/asm/pci_io.h
2025-10-31T05:25:16.1722616Z patching file arch/s390/include/asm/percpu.h
2025-10-31T05:25:16.1723626Z patching file arch/s390/include/asm/perf_event.h
2025-10-31T05:25:16.1725241Z patching file arch/s390/include/asm/pgtable.h
2025-10-31T05:25:16.1728037Z patching file arch/s390/include/asm/preempt.h
2025-10-31T05:25:16.1728465Z patching file arch/s390/include/asm/processor.h
2025-10-31T05:25:16.1729548Z patching file arch/s390/include/asm/setup.h
2025-10-31T05:25:16.1730659Z patching file arch/s390/include/asm/stacktrace.h
2025-10-31T05:25:16.1732467Z patching file arch/s390/include/asm/thread_info.h
2025-10-31T05:25:16.1733238Z patching file arch/s390/include/asm/timex.h
2025-10-31T05:25:16.1734513Z patching file arch/s390/include/asm/uv.h
2025-10-31T05:25:16.1735501Z patching file arch/s390/include/asm/vdso/data.h
2025-10-31T05:25:16.1736446Z patching file arch/s390/kernel/asm-offsets.c
2025-10-31T05:25:16.1737348Z patching file arch/s390/kernel/cpcmd.c
2025-10-31T05:25:16.1738368Z patching file arch/s390/kernel/crash_dump.c
2025-10-31T05:25:16.1740216Z patching file arch/s390/kernel/debug.c
2025-10-31T05:25:16.1742796Z patching file arch/s390/kernel/dis.c
2025-10-31T05:25:16.1743909Z patching file arch/s390/kernel/dumpstack.c
2025-10-31T05:25:16.1744865Z patching file arch/s390/kernel/early.c
2025-10-31T05:25:16.1746481Z patching file arch/s390/kernel/entry.S
2025-10-31T05:25:16.1748766Z patching file arch/s390/kernel/ftrace.c
2025-10-31T05:25:16.1750294Z patching file arch/s390/kernel/ipl.c
2025-10-31T05:25:16.1752578Z patching file arch/s390/kernel/jump_label.c
2025-10-31T05:25:16.1753458Z patching file arch/s390/kernel/kprobes.c
2025-10-31T05:25:16.1755028Z patching file arch/s390/kernel/machine_kexec_file.c
2025-10-31T05:25:16.1756440Z patching file arch/s390/kernel/mcount.S
2025-10-31T05:25:16.1757345Z patching file arch/s390/kernel/module.c
2025-10-31T05:25:16.1758892Z patching file arch/s390/kernel/nmi.c
2025-10-31T05:25:16.1759940Z patching file arch/s390/kernel/os_info.c
2025-10-31T05:25:16.1761037Z patching file arch/s390/kernel/perf_cpum_cf.c
2025-10-31T05:25:16.1763289Z patching file arch/s390/kernel/perf_cpum_sf.c
2025-10-31T05:25:16.1766175Z patching file arch/s390/kernel/perf_event.c
2025-10-31T05:25:16.1766786Z patching file arch/s390/kernel/process.c
2025-10-31T05:25:16.1768401Z patching file arch/s390/kernel/ptrace.c
2025-10-31T05:25:16.1770666Z patching file arch/s390/kernel/setup.c
2025-10-31T05:25:16.1772580Z patching file arch/s390/kernel/smp.c
2025-10-31T05:25:16.1774637Z patching file arch/s390/kernel/sthyi.c
2025-10-31T05:25:16.1775611Z patching file arch/s390/kernel/syscalls/Makefile
2025-10-31T05:25:16.1776529Z patching file arch/s390/kernel/syscalls/syscall.tbl
2025-10-31T05:25:16.1778174Z patching file arch/s390/kernel/time.c
2025-10-31T05:25:16.1779613Z patching file arch/s390/kernel/traps.c
2025-10-31T05:25:16.1780544Z patching file arch/s390/kernel/uv.c
2025-10-31T05:25:16.1781859Z patching file arch/s390/kernel/vdso64/vdso_user_wrapper.S
2025-10-31T05:25:16.1782823Z patching file arch/s390/kernel/vmlinux.lds.S
2025-10-31T05:25:16.1784028Z patching file arch/s390/kernel/vtime.c
2025-10-31T05:25:16.1785161Z patching file arch/s390/kvm/diag.c
2025-10-31T05:25:16.1786734Z patching file arch/s390/kvm/gaccess.c
2025-10-31T05:25:16.1789202Z patching file arch/s390/kvm/gaccess.h
2025-10-31T05:25:16.1790662Z patching file arch/s390/kvm/intercept.c
2025-10-31T05:25:16.1793381Z patching file arch/s390/kvm/interrupt.c
2025-10-31T05:25:16.1797826Z patching file arch/s390/kvm/kvm-s390.c
2025-10-31T05:25:16.1801634Z patching file arch/s390/kvm/kvm-s390.h
2025-10-31T05:25:16.1802994Z patching file arch/s390/kvm/priv.c
2025-10-31T05:25:16.1804978Z patching file arch/s390/kvm/pv.c
2025-10-31T05:25:16.1806038Z patching file arch/s390/kvm/sigp.c
2025-10-31T05:25:16.1807555Z patching file arch/s390/kvm/trace-s390.h
2025-10-31T05:25:16.1808871Z patching file arch/s390/kvm/vsie.c
2025-10-31T05:25:16.1811428Z patching file arch/s390/lib/string.c
2025-10-31T05:25:16.1812330Z patching file arch/s390/lib/test_unwind.c
2025-10-31T05:25:16.1813519Z patching file arch/s390/lib/uaccess.c
2025-10-31T05:25:16.1814633Z patching file arch/s390/mm/cmm.c
2025-10-31T05:25:16.1815750Z patching file arch/s390/mm/dump_pagetables.c
2025-10-31T05:25:16.1816691Z patching file arch/s390/mm/extmem.c
2025-10-31T05:25:16.1818537Z patching file arch/s390/mm/fault.c
2025-10-31T05:25:16.1820511Z patching file arch/s390/mm/gmap.c
2025-10-31T05:25:16.1823423Z patching file arch/s390/mm/hugetlbpage.c
2025-10-31T05:25:16.1824114Z patching file arch/s390/mm/init.c
2025-10-31T05:25:16.1825247Z patching file arch/s390/mm/kasan_init.c
2025-10-31T05:25:16.1826701Z patching file arch/s390/mm/page-states.c
2025-10-31T05:25:16.1827787Z patching file arch/s390/mm/pgalloc.c
2025-10-31T05:25:16.1829456Z patching file arch/s390/mm/pgtable.c
2025-10-31T05:25:16.1831262Z patching file arch/s390/mm/vmem.c
2025-10-31T05:25:16.1833049Z patching file arch/s390/net/bpf_jit_comp.c
2025-10-31T05:25:16.1835639Z patching file arch/s390/pci/pci.c
2025-10-31T05:25:16.1837726Z patching file arch/s390/pci/pci_bus.h
2025-10-31T05:25:16.1838248Z patching file arch/s390/pci/pci_clp.c
2025-10-31T05:25:16.1839955Z patching file arch/s390/pci/pci_dma.c
2025-10-31T05:25:16.1841056Z patching file arch/s390/pci/pci_event.c
2025-10-31T05:25:16.1842418Z patching file arch/s390/pci/pci_mmio.c
2025-10-31T05:25:16.1843614Z patching file arch/s390/purgatory/Makefile
2025-10-31T05:25:16.1844274Z patching file arch/s390/purgatory/head.S
2025-10-31T05:25:16.1852765Z patching file arch/sh/Kconfig
2025-10-31T05:25:16.1853187Z patching file arch/sh/Kconfig.debug
2025-10-31T05:25:16.1853536Z patching file arch/sh/Makefile
2025-10-31T05:25:16.1853954Z patching file arch/sh/boards/mach-ap325rxa/setup.c
2025-10-31T05:25:16.1854351Z patching file arch/sh/boards/mach-ecovec24/setup.c
2025-10-31T05:25:16.1854747Z patching file arch/sh/boards/mach-kfr2r09/setup.c
2025-10-31T05:25:16.1855140Z patching file arch/sh/boards/mach-migor/setup.c
2025-10-31T05:25:16.1855521Z patching file arch/sh/boards/mach-se/7724/setup.c
2025-10-31T05:25:16.1856381Z patching file arch/sh/boot/compressed/Makefile
2025-10-31T05:25:16.1857276Z patching file arch/sh/boot/romimage/Makefile
2025-10-31T05:25:16.1858155Z patching file arch/sh/drivers/dma/Kconfig
2025-10-31T05:25:16.1859001Z patching file arch/sh/drivers/dma/dma-sh.c
2025-10-31T05:25:16.1860549Z patching file arch/sh/include/asm/Kbuild
2025-10-31T05:25:16.1861219Z patching file arch/sh/include/asm/bugs.h
2025-10-31T05:25:16.1862565Z patching file arch/sh/include/asm/io.h
2025-10-31T05:25:16.1863924Z patching file arch/sh/include/asm/pgtable-3level.h
2025-10-31T05:25:16.1864824Z patching file arch/sh/include/asm/processor.h
2025-10-31T05:25:16.1865852Z patching file arch/sh/include/asm/processor_32.h
2025-10-31T05:25:16.1866794Z patching file arch/sh/include/asm/sections.h
2025-10-31T05:25:16.1867693Z patching file arch/sh/include/asm/sfp-machine.h
2025-10-31T05:25:16.1868675Z patching file arch/sh/include/asm/thread_info.h
2025-10-31T05:25:16.1869715Z patching file arch/sh/kernel/cpu/fpu.c
2025-10-31T05:25:16.1870611Z patching file arch/sh/kernel/cpu/proc.c
2025-10-31T05:25:16.1871524Z patching file arch/sh/kernel/cpu/sh2/probe.c
2025-10-31T05:25:16.1872565Z patching file arch/sh/kernel/cpu/sh4/sq.c
2025-10-31T05:25:16.1873782Z patching file arch/sh/kernel/cpu/sh4a/smp-shx3.c
2025-10-31T05:25:16.1874658Z patching file arch/sh/kernel/head_32.S
2025-10-31T05:25:16.1875775Z patching file arch/sh/kernel/idle.c
2025-10-31T05:25:16.1876663Z patching file arch/sh/kernel/kprobes.c
2025-10-31T05:25:16.1877716Z patching file arch/sh/kernel/machvec.c
2025-10-31T05:25:16.1878648Z patching file arch/sh/kernel/nmi_debug.c
2025-10-31T05:25:16.1879527Z patching file arch/sh/kernel/process_32.c
2025-10-31T05:25:16.1880469Z patching file arch/sh/kernel/setup.c
2025-10-31T05:25:16.1882232Z patching file arch/sh/kernel/signal_32.c
2025-10-31T05:25:16.1883315Z patching file arch/sh/kernel/smp.c
2025-10-31T05:25:16.1884348Z patching file arch/sh/kernel/traps.c
2025-10-31T05:25:16.1885268Z patching file arch/sh/kernel/vmlinux.lds.S
2025-10-31T05:25:16.1886156Z patching file arch/sh/lib/checksum.S
2025-10-31T05:25:16.1887887Z patching file arch/sh/math-emu/math.c
2025-10-31T05:25:16.1888895Z patching file arch/sh/math-emu/sfp-util.h
2025-10-31T05:25:16.1889980Z patching file arch/sparc/Kconfig
2025-10-31T05:25:16.1891466Z patching file arch/sparc/include/asm/Kbuild
2025-10-31T05:25:16.1892431Z patching file arch/sparc/include/asm/bugs.h
2025-10-31T05:25:16.1893488Z patching file arch/sparc/include/asm/mman.h
2025-10-31T05:25:16.1894661Z patching file arch/sparc/include/asm/oplib_64.h
2025-10-31T05:25:16.1895806Z patching file arch/sparc/include/asm/pgtable_32.h
2025-10-31T05:25:16.1897447Z patching file arch/sparc/include/asm/pgtable_64.h
2025-10-31T05:25:16.1899076Z patching file arch/sparc/include/asm/smp_64.h
2025-10-31T05:25:16.1899910Z patching file arch/sparc/include/asm/thread_info_32.h
2025-10-31T05:25:16.1900947Z patching file arch/sparc/include/asm/thread_info_64.h
2025-10-31T05:25:16.1902169Z patching file arch/sparc/include/asm/timex_32.h
2025-10-31T05:25:16.1903197Z patching file arch/sparc/include/uapi/asm/termbits.h
2025-10-31T05:25:16.1904093Z patching file arch/sparc/include/uapi/asm/termios.h
2025-10-31T05:25:16.1905142Z patching file arch/sparc/kernel/ioport.c
2025-10-31T05:25:16.1906300Z patching file arch/sparc/kernel/led.c
2025-10-31T05:25:16.1907711Z patching file arch/sparc/kernel/leon_pci_grpci1.c
2025-10-31T05:25:16.1909354Z patching file arch/sparc/kernel/leon_pci_grpci2.c
2025-10-31T05:25:16.1911066Z patching file arch/sparc/kernel/mdesc.c
2025-10-31T05:25:16.1913030Z patching file arch/sparc/kernel/nmi.c
2025-10-31T05:25:16.1914020Z patching file arch/sparc/kernel/of_device_32.c
2025-10-31T05:25:16.1915408Z patching file arch/sparc/kernel/of_device_64.c
2025-10-31T05:25:16.1916675Z patching file arch/sparc/kernel/process_32.c
2025-10-31T05:25:16.1918256Z patching file arch/sparc/kernel/process_64.c
2025-10-31T05:25:16.1919636Z patching file arch/sparc/kernel/prom_64.c
2025-10-31T05:25:16.1920833Z patching file arch/sparc/kernel/setup_32.c
2025-10-31T05:25:16.1922227Z patching file arch/sparc/kernel/setup_64.c
2025-10-31T05:25:16.1923888Z patching file arch/sparc/kernel/signal_32.c
2025-10-31T05:25:16.1926194Z patching file arch/sparc/kernel/signal_64.c
2025-10-31T05:25:16.1927308Z patching file arch/sparc/kernel/smp_32.c
2025-10-31T05:25:16.1928952Z patching file arch/sparc/kernel/smp_64.c
2025-10-31T05:25:16.1930881Z patching file arch/sparc/kernel/sys32.S
2025-10-31T05:25:16.1932684Z patching file arch/sparc/kernel/syscalls/syscall.tbl
2025-10-31T05:25:16.1934185Z patching file arch/sparc/kernel/traps_32.c
2025-10-31T05:25:16.1936113Z patching file arch/sparc/kernel/traps_64.c
2025-10-31T05:25:16.1938779Z patching file arch/sparc/lib/M7memcpy.S
2025-10-31T05:25:16.1940431Z patching file arch/sparc/lib/Memcpy_utils.S
2025-10-31T05:25:16.1941360Z patching file arch/sparc/lib/NG4memcpy.S
2025-10-31T05:25:16.1942613Z patching file arch/sparc/lib/NGmemcpy.S
2025-10-31T05:25:16.1944361Z patching file arch/sparc/lib/U1memcpy.S
2025-10-31T05:25:16.1945615Z patching file arch/sparc/lib/U3memcpy.S
2025-10-31T05:25:16.1946948Z patching file arch/sparc/lib/checksum_32.S
2025-10-31T05:25:16.1947883Z patching file arch/sparc/lib/iomap.c
2025-10-31T05:25:16.1948808Z patching file arch/sparc/lib/memset.S
2025-10-31T05:25:16.1949787Z patching file arch/sparc/mm/hugetlbpage.c
2025-10-31T05:25:16.1950911Z patching file arch/sparc/mm/init_32.c
2025-10-31T05:25:16.1952995Z patching file arch/sparc/mm/init_64.c
2025-10-31T05:25:16.1955384Z patching file arch/sparc/mm/tlb.c
2025-10-31T05:25:16.1956601Z patching file arch/sparc/net/bpf_jit_comp_64.c
2025-10-31T05:25:16.1958424Z patching file arch/sparc/prom/init_64.c
2025-10-31T05:25:16.1958922Z patching file arch/sparc/prom/p1275.c
2025-10-31T05:25:16.1959928Z patching file arch/sparc/vdso/vma.c
2025-10-31T05:25:16.1961019Z patching file arch/um/Kconfig
2025-10-31T05:25:16.1961940Z patching file arch/um/Kconfig.debug
2025-10-31T05:25:16.1962882Z patching file arch/um/Makefile
2025-10-31T05:25:16.1963963Z patching file arch/um/configs/i386_defconfig
2025-10-31T05:25:16.1964732Z patching file arch/um/configs/x86_64_defconfig
2025-10-31T05:25:16.1965695Z patching file arch/um/drivers/Kconfig
2025-10-31T05:25:16.1966942Z patching file arch/um/drivers/Makefile
2025-10-31T05:25:16.1967658Z patching file arch/um/drivers/chan_user.c
2025-10-31T05:25:16.1968974Z patching file arch/um/drivers/line.c
2025-10-31T05:25:16.1970640Z patching file arch/um/drivers/mconsole_kern.c
2025-10-31T05:25:16.1971810Z patching file arch/um/drivers/mconsole_user.c
2025-10-31T05:25:16.1973038Z patching file arch/um/drivers/net_kern.c
2025-10-31T05:25:16.1974600Z patching file arch/um/drivers/random.c
2025-10-31T05:25:16.1975762Z patching file arch/um/drivers/slip_user.c
2025-10-31T05:25:16.1977241Z patching file arch/um/drivers/ubd_kern.c
2025-10-31T05:25:16.1979811Z patching file arch/um/drivers/ubd_user.c
2025-10-31T05:25:16.1980810Z patching file arch/um/drivers/vector_kern.c
2025-10-31T05:25:16.1983318Z patching file arch/um/drivers/virtio_uml.c
2025-10-31T05:25:16.1985115Z patching file arch/um/drivers/xterm.c
2025-10-31T05:25:16.1986157Z patching file arch/um/include/asm/asm-prototypes.h
2025-10-31T05:25:16.1986774Z patching file arch/um/include/asm/bugs.h
2025-10-31T05:25:16.1987755Z patching file arch/um/include/asm/delay.h
2025-10-31T05:25:16.1988570Z patching file arch/um/include/asm/mmu.h
2025-10-31T05:25:16.1989501Z patching file arch/um/include/asm/pgtable-3level.h
2025-10-31T05:25:16.1990306Z patching file arch/um/include/asm/thread_info.h
2025-10-31T05:25:16.1991128Z patching file arch/um/include/asm/timex.h
2025-10-31T05:25:16.1992198Z patching file arch/um/include/shared/kern_util.h
2025-10-31T05:25:16.1993063Z patching file arch/um/include/shared/os.h
2025-10-31T05:25:16.1994025Z patching file arch/um/include/shared/registers.h
2025-10-31T05:25:16.1994920Z patching file arch/um/include/shared/skas/mm_id.h
2025-10-31T05:25:16.1995749Z patching file arch/um/kernel/Makefile
2025-10-31T05:25:16.1996549Z patching file arch/um/kernel/dyn.lds.S
2025-10-31T05:25:16.1997479Z patching file arch/um/kernel/exec.c
2025-10-31T05:25:16.1998220Z patching file arch/um/kernel/gmon_syms.c
2025-10-31T05:25:16.1999102Z patching file arch/um/kernel/mem.c
2025-10-31T05:25:16.2000023Z patching file arch/um/kernel/physmem.c
2025-10-31T05:25:16.2001030Z patching file arch/um/kernel/process.c
2025-10-31T05:25:16.2002308Z patching file arch/um/kernel/ptrace.c
2025-10-31T05:25:16.2003329Z patching file arch/um/kernel/signal.c
2025-10-31T05:25:16.2004186Z patching file arch/um/kernel/sysrq.c
2025-10-31T05:25:16.2005113Z patching file arch/um/kernel/time.c
2025-10-31T05:25:16.2006759Z patching file arch/um/kernel/tlb.c
2025-10-31T05:25:16.2007901Z patching file arch/um/kernel/um_arch.c
2025-10-31T05:25:16.2009118Z patching file arch/um/kernel/uml.lds.S
2025-10-31T05:25:16.2009960Z patching file arch/um/kernel/vmlinux.lds.S
2025-10-31T05:25:16.2010761Z patching file arch/um/os-Linux/helper.c
2025-10-31T05:25:16.2011673Z patching file arch/um/os-Linux/irq.c
2025-10-31T05:25:16.2012433Z patching file arch/um/os-Linux/registers.c
2025-10-31T05:25:16.2013641Z patching file arch/um/os-Linux/signal.c
2025-10-31T05:25:16.2014769Z patching file arch/um/os-Linux/skas/process.c
2025-10-31T05:25:16.2016056Z patching file arch/um/os-Linux/start_up.c
2025-10-31T05:25:16.2016828Z patching file arch/um/os-Linux/umid.c
2025-10-31T05:25:16.2017965Z patching file arch/um/os-Linux/util.c
2025-10-31T05:25:16.2019792Z patching file arch/x86/Kconfig
2025-10-31T05:25:16.2023454Z patching file arch/x86/Kconfig.cpu
2025-10-31T05:25:16.2024378Z patching file arch/x86/Kconfig.debug
2025-10-31T05:25:16.2025365Z patching file arch/x86/Makefile
2025-10-31T05:25:16.2026524Z patching file arch/x86/Makefile.um
2025-10-31T05:25:16.2027420Z patching file arch/x86/boot/Makefile
2025-10-31T05:25:16.2028337Z patching file arch/x86/boot/bioscall.S
2025-10-31T05:25:16.2029236Z patching file arch/x86/boot/boot.h
2025-10-31T05:25:16.2030865Z patching file arch/x86/boot/compressed/Makefile
2025-10-31T05:25:16.2031826Z patching file arch/x86/boot/compressed/efi_thunk_64.S
2025-10-31T05:25:16.2032954Z patching file arch/x86/boot/compressed/head_64.S
2025-10-31T05:25:16.2035146Z patching file arch/x86/boot/compressed/ident_map_64.c
2025-10-31T05:25:16.2035983Z patching file arch/x86/boot/compressed/idt_64.c
2025-10-31T05:25:16.2036580Z patching file arch/x86/boot/compressed/idt_handlers_64.S
2025-10-31T05:25:16.2037231Z patching file arch/x86/boot/compressed/mem_encrypt.S
2025-10-31T05:25:16.2038024Z patching file arch/x86/boot/compressed/misc.h
2025-10-31T05:25:16.2038999Z patching file arch/x86/boot/compressed/sev-es.c
2025-10-31T05:25:16.2039933Z patching file arch/x86/boot/main.c
2025-10-31T05:25:16.2040892Z patching file arch/x86/configs/i386_defconfig
2025-10-31T05:25:16.2041812Z patching file arch/x86/configs/x86_64_defconfig
2025-10-31T05:25:16.2042988Z patching file arch/x86/crypto/Makefile
2025-10-31T05:25:16.2044030Z patching file arch/x86/crypto/aegis128-aesni-asm.S
2025-10-31T05:25:16.2046376Z patching file arch/x86/crypto/aes_ctrby8_avx-x86_64.S
2025-10-31T05:25:16.2048063Z patching file arch/x86/crypto/aesni-intel_asm.S
2025-10-31T05:25:16.2052261Z patching file arch/x86/crypto/aesni-intel_avx-x86_64.S
2025-10-31T05:25:16.2055577Z patching file arch/x86/crypto/aesni-intel_glue.c
2025-10-31T05:25:16.2057604Z patching file arch/x86/crypto/blake2s-core.S
2025-10-31T05:25:16.2058410Z patching file arch/x86/crypto/blake2s-glue.c
2025-10-31T05:25:16.2060089Z patching file arch/x86/crypto/blake2s-shash.c
2025-10-31T05:25:16.2061335Z patching file arch/x86/crypto/blowfish-x86_64-asm_64.S
2025-10-31T05:25:16.2063200Z patching file arch/x86/crypto/camellia-aesni-avx-asm_64.S
2025-10-31T05:25:16.2065376Z patching file arch/x86/crypto/camellia-aesni-avx2-asm_64.S
2025-10-31T05:25:16.2067304Z patching file arch/x86/crypto/camellia-x86_64-asm_64.S
2025-10-31T05:25:16.2068395Z patching file arch/x86/crypto/cast5-avx-x86_64-asm_64.S
2025-10-31T05:25:16.2069945Z patching file arch/x86/crypto/cast6-avx-x86_64-asm_64.S
2025-10-31T05:25:16.2071359Z patching file arch/x86/crypto/chacha-avx2-x86_64.S
2025-10-31T05:25:16.2073324Z patching file arch/x86/crypto/chacha-avx512vl-x86_64.S
2025-10-31T05:25:16.2074635Z patching file arch/x86/crypto/chacha-ssse3-x86_64.S
2025-10-31T05:25:16.2076198Z patching file arch/x86/crypto/crc32-pclmul_asm.S
2025-10-31T05:25:16.2077187Z patching file arch/x86/crypto/crc32c-pcl-intel-asm_64.S
2025-10-31T05:25:16.2078389Z patching file arch/x86/crypto/crct10dif-pcl-asm_64.S
2025-10-31T05:25:16.2079969Z patching file arch/x86/crypto/curve25519-x86_64.c
2025-10-31T05:25:16.2082201Z patching file arch/x86/crypto/des3_ede-asm_64.S
2025-10-31T05:25:16.2083413Z patching file arch/x86/crypto/ghash-clmulni-intel_asm.S
2025-10-31T05:25:16.2084407Z patching file arch/x86/crypto/ghash-clmulni-intel_glue.c
2025-10-31T05:25:16.2085531Z patching file arch/x86/crypto/nh-avx2-x86_64.S
2025-10-31T05:25:16.2086426Z patching file arch/x86/crypto/nh-sse2-x86_64.S
2025-10-31T05:25:16.2088519Z patching file arch/x86/crypto/poly1305-x86_64-cryptogams.pl
2025-10-31T05:25:16.2091570Z patching file arch/x86/crypto/poly1305_glue.c
2025-10-31T05:25:16.2092942Z patching file arch/x86/crypto/serpent-avx-x86_64-asm_64.S
2025-10-31T05:25:16.2094833Z patching file arch/x86/crypto/serpent-avx2-asm_64.S
2025-10-31T05:25:16.2096330Z patching file arch/x86/crypto/serpent-sse2-i586-asm_32.S
2025-10-31T05:25:16.2097526Z patching file arch/x86/crypto/serpent-sse2-x86_64-asm_64.S
2025-10-31T05:25:16.2099081Z patching file arch/x86/crypto/sha1_avx2_x86_64_asm.S
2025-10-31T05:25:16.2100175Z patching file arch/x86/crypto/sha1_ni_asm.S
2025-10-31T05:25:16.2101233Z patching file arch/x86/crypto/sha1_ssse3_asm.S
2025-10-31T05:25:16.2102559Z patching file arch/x86/crypto/sha256-avx-asm.S
2025-10-31T05:25:16.2104241Z patching file arch/x86/crypto/sha256-avx2-asm.S
2025-10-31T05:25:16.2105465Z patching file arch/x86/crypto/sha256-ssse3-asm.S
2025-10-31T05:25:16.2106660Z patching file arch/x86/crypto/sha256_ni_asm.S
2025-10-31T05:25:16.2107783Z patching file arch/x86/crypto/sha512-avx-asm.S
2025-10-31T05:25:16.2109140Z patching file arch/x86/crypto/sha512-avx2-asm.S
2025-10-31T05:25:16.2110785Z patching file arch/x86/crypto/sha512-ssse3-asm.S
2025-10-31T05:25:16.2112245Z patching file arch/x86/crypto/twofish-avx-x86_64-asm_64.S
2025-10-31T05:25:16.2113432Z patching file arch/x86/crypto/twofish-i586-asm_32.S
2025-10-31T05:25:16.2114585Z patching file arch/x86/crypto/twofish-x86_64-asm_64-3way.S
2025-10-31T05:25:16.2115661Z patching file arch/x86/crypto/twofish-x86_64-asm_64.S
2025-10-31T05:25:16.2116568Z patching file arch/x86/entry/Makefile
2025-10-31T05:25:16.2117423Z patching file arch/x86/entry/calling.h
2025-10-31T05:25:16.2118993Z patching file arch/x86/entry/common.c
2025-10-31T05:25:16.2120105Z patching file arch/x86/entry/entry.S
2025-10-31T05:25:16.2121622Z patching file arch/x86/entry/entry_32.S
2025-10-31T05:25:16.2124241Z patching file arch/x86/entry/entry_64.S
2025-10-31T05:25:16.2127126Z patching file arch/x86/entry/entry_64_compat.S
2025-10-31T05:25:16.2128370Z patching file arch/x86/entry/syscalls/syscall_32.tbl
2025-10-31T05:25:16.2129354Z patching file arch/x86/entry/thunk_32.S
2025-10-31T05:25:16.2130117Z patching file arch/x86/entry/thunk_64.S
2025-10-31T05:25:16.2131080Z patching file arch/x86/entry/vdso/Makefile
2025-10-31T05:25:16.2132296Z patching file arch/x86/entry/vdso/vdso32/system_call.S
2025-10-31T05:25:16.2133156Z patching file arch/x86/entry/vdso/vma.c
2025-10-31T05:25:16.2134666Z patching file arch/x86/entry/vsyscall/vsyscall_64.c
2025-10-31T05:25:16.2135705Z patching file arch/x86/entry/vsyscall/vsyscall_emu_64.S
2025-10-31T05:25:16.2136801Z patching file arch/x86/events/amd/core.c
2025-10-31T05:25:16.2138581Z patching file arch/x86/events/amd/ibs.c
2025-10-31T05:25:16.2140735Z patching file arch/x86/events/amd/iommu.c
2025-10-31T05:25:16.2141873Z patching file arch/x86/events/amd/power.c
2025-10-31T05:25:16.2143076Z patching file arch/x86/events/amd/uncore.c
2025-10-31T05:25:16.2145168Z patching file arch/x86/events/core.c
2025-10-31T05:25:16.2149710Z patching file arch/x86/events/intel/core.c
2025-10-31T05:25:16.2154301Z patching file arch/x86/events/intel/ds.c
2025-10-31T05:25:16.2156971Z patching file arch/x86/events/intel/lbr.c
2025-10-31T05:25:16.2159601Z patching file arch/x86/events/intel/pt.c
2025-10-31T05:25:16.2161928Z patching file arch/x86/events/intel/pt.h
2025-10-31T05:25:16.2162826Z patching file arch/x86/events/intel/uncore.h
2025-10-31T05:25:16.2164379Z patching file arch/x86/events/intel/uncore_snb.c
2025-10-31T05:25:16.2167163Z patching file arch/x86/events/intel/uncore_snbep.c
2025-10-31T05:25:16.2171089Z patching file arch/x86/events/msr.c
2025-10-31T05:25:16.2172467Z patching file arch/x86/events/perf_event.h
2025-10-31T05:25:16.2174197Z patching file arch/x86/events/zhaoxin/core.c
2025-10-31T05:25:16.2175394Z patching file arch/x86/hyperv/hv_init.c
2025-10-31T05:25:16.2176735Z patching file arch/x86/hyperv/mmu.c
2025-10-31T05:25:16.2177893Z patching file arch/x86/include/asm/GEN-for-each-reg.h
2025-10-31T05:25:16.2178799Z patching file arch/x86/include/asm/acenv.h
2025-10-31T05:25:16.2179824Z patching file arch/x86/include/asm/alternative-asm.h
2025-10-31T05:25:16.2181411Z patching file arch/x86/include/asm/alternative.h
2025-10-31T05:25:16.2183584Z patching file arch/x86/include/asm/amd_nb.h
2025-10-31T05:25:16.2184455Z patching file arch/x86/include/asm/apic.h
2025-10-31T05:25:16.2186133Z patching file arch/x86/include/asm/asm-prototypes.h
2025-10-31T05:25:16.2186804Z patching file arch/x86/include/asm/asm.h
2025-10-31T05:25:16.2188149Z patching file arch/x86/include/asm/boot.h
2025-10-31T05:25:16.2188970Z patching file arch/x86/include/asm/bugs.h
2025-10-31T05:25:16.2189890Z patching file arch/x86/include/asm/cacheinfo.h
2025-10-31T05:25:16.2190925Z patching file arch/x86/include/asm/compat.h
2025-10-31T05:25:16.2192249Z patching file arch/x86/include/asm/cpu.h
2025-10-31T05:25:16.2193231Z patching file arch/x86/include/asm/cpu_device_id.h
2025-10-31T05:25:16.2194990Z patching file arch/x86/include/asm/cpu_entry_area.h
2025-10-31T05:25:16.2195962Z patching file arch/x86/include/asm/cpufeature.h
2025-10-31T05:25:16.2197710Z patching file arch/x86/include/asm/cpufeatures.h
2025-10-31T05:25:16.2199963Z patching file arch/x86/include/asm/debugreg.h
2025-10-31T05:25:16.2200772Z patching file arch/x86/include/asm/disabled-features.h
2025-10-31T05:25:16.2201847Z patching file arch/x86/include/asm/efi.h
2025-10-31T05:25:16.2203234Z patching file arch/x86/include/asm/entry-common.h
2025-10-31T05:25:16.2204186Z patching file arch/x86/include/asm/fpu/api.h
2025-10-31T05:25:16.2205207Z patching file arch/x86/include/asm/fpu/internal.h
2025-10-31T05:25:16.2207372Z patching file arch/x86/include/asm/hyperv-tlfs.h
2025-10-31T05:25:16.2208467Z patching file arch/x86/include/asm/i8259.h
2025-10-31T05:25:16.2209539Z patching file arch/x86/include/asm/idtentry.h
2025-10-31T05:25:16.2211438Z patching file arch/x86/include/asm/inat.h
2025-10-31T05:25:16.2212474Z patching file arch/x86/include/asm/insn-eval.h
2025-10-31T05:25:16.2213535Z patching file arch/x86/include/asm/insn.h
2025-10-31T05:25:16.2214734Z patching file arch/x86/include/asm/intel-family.h
2025-10-31T05:25:16.2215752Z patching file arch/x86/include/asm/iommu.h
2025-10-31T05:25:16.2216833Z patching file arch/x86/include/asm/irqflags.h
2025-10-31T05:25:16.2217969Z patching file arch/x86/include/asm/kexec.h
2025-10-31T05:25:16.2219067Z patching file arch/x86/include/asm/kprobes.h
2025-10-31T05:25:16.2220814Z patching file arch/x86/include/asm/kvm_host.h
2025-10-31T05:25:16.2223497Z patching file arch/x86/include/asm/kvm_page_track.h
2025-10-31T05:25:16.2224201Z patching file arch/x86/include/asm/kvm_para.h
2025-10-31T05:25:16.2225387Z patching file arch/x86/include/asm/kvmclock.h
2025-10-31T05:25:16.2226324Z patching file arch/x86/include/asm/linkage.h
2025-10-31T05:25:16.2227287Z patching file arch/x86/include/asm/local64.h
2025-10-31T05:25:16.2228436Z patching file arch/x86/include/asm/mce.h
2025-10-31T05:25:16.2229802Z patching file arch/x86/include/asm/mem_encrypt.h
2025-10-31T05:25:16.2230785Z patching file arch/x86/include/asm/microcode.h
2025-10-31T05:25:16.2232991Z patching file arch/x86/include/asm/microcode_amd.h
2025-10-31T05:25:16.2233971Z patching file arch/x86/include/asm/mshyperv.h
2025-10-31T05:25:16.2235527Z patching file arch/x86/include/asm/msr-index.h
2025-10-31T05:25:16.2237970Z patching file arch/x86/include/asm/msr.h
2025-10-31T05:25:16.2238674Z patching file arch/x86/include/asm/mwait.h
2025-10-31T05:25:16.2239917Z patching file arch/x86/include/asm/nmi.h
2025-10-31T05:25:16.2240834Z patching file arch/x86/include/asm/nospec-branch.h
2025-10-31T05:25:16.2243512Z patching file arch/x86/include/asm/numa.h
2025-10-31T05:25:16.2244045Z patching file arch/x86/include/asm/page.h
2025-10-31T05:25:16.2245170Z patching file arch/x86/include/asm/page_64_types.h
2025-10-31T05:25:16.2246260Z patching file arch/x86/include/asm/paravirt.h
2025-10-31T05:25:16.2247888Z patching file arch/x86/include/asm/paravirt_types.h
2025-10-31T05:25:16.2249286Z patching file arch/x86/include/asm/perf_event.h
2025-10-31T05:25:16.2250914Z patching file arch/x86/include/asm/pgtable.h
2025-10-31T05:25:16.2253064Z patching file arch/x86/include/asm/pgtable_64.h
2025-10-31T05:25:16.2254115Z patching file arch/x86/include/asm/pgtable_types.h
2025-10-31T05:25:16.2255458Z patching file arch/x86/include/asm/preempt.h
2025-10-31T05:25:16.2256566Z patching file arch/x86/include/asm/processor.h
2025-10-31T05:25:16.2258541Z patching file arch/x86/include/asm/proto.h
2025-10-31T05:25:16.2259431Z patching file arch/x86/include/asm/ptrace.h
2025-10-31T05:25:16.2261596Z patching file arch/x86/include/asm/qspinlock_paravirt.h
2025-10-31T05:25:16.2262249Z patching file arch/x86/include/asm/realmode.h
2025-10-31T05:25:16.2262820Z patching file arch/x86/include/asm/reboot.h
2025-10-31T05:25:16.2263974Z patching file arch/x86/include/asm/required-features.h
2025-10-31T05:25:16.2264825Z patching file arch/x86/include/asm/resctrl.h
2025-10-31T05:25:16.2266006Z patching file arch/x86/include/asm/segment.h
2025-10-31T05:25:16.2267598Z patching file arch/x86/include/asm/setup.h
2025-10-31T05:25:16.2269703Z patching file arch/x86/include/asm/smap.h
2025-10-31T05:25:16.2270370Z patching file arch/x86/include/asm/smp.h
2025-10-31T05:25:16.2271621Z patching file arch/x86/include/asm/special_insns.h
2025-10-31T05:25:16.2272598Z patching file arch/x86/include/asm/stackprotector.h
2025-10-31T05:25:16.2273960Z patching file arch/x86/include/asm/static_call.h
2025-10-31T05:25:16.2274956Z patching file arch/x86/include/asm/suspend_32.h
2025-10-31T05:25:16.2275864Z patching file arch/x86/include/asm/suspend_64.h
2025-10-31T05:25:16.2276930Z patching file arch/x86/include/asm/svm.h
2025-10-31T05:25:16.2278023Z patching file arch/x86/include/asm/sync_core.h
2025-10-31T05:25:16.2278988Z patching file arch/x86/include/asm/syscall.h
2025-10-31T05:25:16.2280043Z patching file arch/x86/include/asm/syscall_wrapper.h
2025-10-31T05:25:16.2281167Z patching file arch/x86/include/asm/text-patching.h
2025-10-31T05:25:16.2282542Z patching file arch/x86/include/asm/thread_info.h
2025-10-31T05:25:16.2283751Z patching file arch/x86/include/asm/timex.h
2025-10-31T05:25:16.2284690Z patching file arch/x86/include/asm/tlbflush.h
2025-10-31T05:25:16.2285730Z patching file arch/x86/include/asm/topology.h
2025-10-31T05:25:16.2286801Z patching file arch/x86/include/asm/tsc.h
2025-10-31T05:25:16.2287905Z patching file arch/x86/include/asm/uaccess.h
2025-10-31T05:25:16.2289775Z patching file arch/x86/include/asm/unwind_hints.h
2025-10-31T05:25:16.2290697Z patching file arch/x86/include/asm/virtext.h
2025-10-31T05:25:16.2291772Z patching file arch/x86/include/asm/vsyscall.h
2025-10-31T05:25:16.2293103Z patching file arch/x86/include/asm/xen/hypercall.h
2025-10-31T05:25:16.2294667Z patching file arch/x86/include/uapi/asm/hwcap2.h
2025-10-31T05:25:16.2295607Z patching file arch/x86/kernel/Makefile
2025-10-31T05:25:16.2297046Z patching file arch/x86/kernel/acpi/boot.c
2025-10-31T05:25:16.2299082Z patching file arch/x86/kernel/acpi/cstate.c
2025-10-31T05:25:16.2299983Z patching file arch/x86/kernel/acpi/wakeup_32.S
2025-10-31T05:25:16.2301212Z patching file arch/x86/kernel/alternative.c
2025-10-31T05:25:16.2306034Z patching file arch/x86/kernel/amd_nb.c
2025-10-31T05:25:16.2308338Z patching file arch/x86/kernel/apic/apic.c
2025-10-31T05:25:16.2311590Z patching file arch/x86/kernel/apic/io_apic.c
2025-10-31T05:25:16.2314795Z patching file arch/x86/kernel/apic/msi.c
2025-10-31T05:25:16.2315728Z patching file arch/x86/kernel/apic/vector.c
2025-10-31T05:25:16.2317459Z patching file arch/x86/kernel/apic/x2apic_cluster.c
2025-10-31T05:25:16.2318383Z patching file arch/x86/kernel/apic/x2apic_phys.c
2025-10-31T05:25:16.2319881Z patching file arch/x86/kernel/apic/x2apic_uv_x.c
2025-10-31T05:25:16.2322573Z patching file arch/x86/kernel/apm_32.c
2025-10-31T05:25:16.2325169Z patching file arch/x86/kernel/asm-offsets_32.c
2025-10-31T05:25:16.2325655Z patching file arch/x86/kernel/asm-offsets_64.c
2025-10-31T05:25:16.2326752Z patching file arch/x86/kernel/cc_platform.c
2025-10-31T05:25:16.2328673Z patching file arch/x86/kernel/cpu/amd.c
2025-10-31T05:25:16.2331820Z patching file arch/x86/kernel/cpu/bugs.c
2025-10-31T05:25:16.2339068Z patching file arch/x86/kernel/cpu/cacheinfo.c
2025-10-31T05:25:16.2341132Z patching file arch/x86/kernel/cpu/common.c
2025-10-31T05:25:16.2345411Z patching file arch/x86/kernel/cpu/cpu.h
2025-10-31T05:25:16.2346026Z patching file arch/x86/kernel/cpu/cpuid-deps.c
2025-10-31T05:25:16.2347087Z patching file arch/x86/kernel/cpu/cyrix.c
2025-10-31T05:25:16.2348205Z patching file arch/x86/kernel/cpu/feat_ctl.c
2025-10-31T05:25:16.2349204Z patching file arch/x86/kernel/cpu/hygon.c
2025-10-31T05:25:16.2351168Z patching file arch/x86/kernel/cpu/intel.c
2025-10-31T05:25:16.2353787Z patching file arch/x86/kernel/cpu/match.c
2025-10-31T05:25:16.2354618Z patching file arch/x86/kernel/cpu/mce/amd.c
2025-10-31T05:25:16.2357713Z patching file arch/x86/kernel/cpu/mce/core.c
2025-10-31T05:25:16.2361254Z patching file arch/x86/kernel/cpu/mce/inject.c
2025-10-31T05:25:16.2362403Z patching file arch/x86/kernel/cpu/mce/intel.c
2025-10-31T05:25:16.2365191Z patching file arch/x86/kernel/cpu/mce/internal.h
2025-10-31T05:25:16.2366195Z patching file arch/x86/kernel/cpu/microcode/amd.c
2025-10-31T05:25:16.2368709Z patching file arch/x86/kernel/cpu/microcode/core.c
2025-10-31T05:25:16.2370773Z patching file arch/x86/kernel/cpu/microcode/intel.c
2025-10-31T05:25:16.2371932Z patching file arch/x86/kernel/cpu/mshyperv.c
2025-10-31T05:25:16.2374209Z patching file arch/x86/kernel/cpu/mtrr/generic.c
2025-10-31T05:25:16.2375708Z patching file arch/x86/kernel/cpu/mtrr/mtrr.c
2025-10-31T05:25:16.2376956Z patching file arch/x86/kernel/cpu/perfctr-watchdog.c
2025-10-31T05:25:16.2378097Z patching file arch/x86/kernel/cpu/resctrl/core.c
2025-10-31T05:25:16.2379975Z patching file arch/x86/kernel/cpu/resctrl/monitor.c
2025-10-31T05:25:16.2381767Z patching file arch/x86/kernel/cpu/resctrl/pseudo_lock.c
2025-10-31T05:25:16.2384669Z patching file arch/x86/kernel/cpu/resctrl/rdtgroup.c
2025-10-31T05:25:16.2387561Z patching file arch/x86/kernel/cpu/scattered.c
2025-10-31T05:25:16.2388105Z patching file arch/x86/kernel/cpu/topology.c
2025-10-31T05:25:16.2389526Z patching file arch/x86/kernel/cpu/tsx.c
2025-10-31T05:25:16.2390265Z patching file arch/x86/kernel/crash.c
2025-10-31T05:25:16.2391676Z patching file arch/x86/kernel/devicetree.c
2025-10-31T05:25:16.2392740Z patching file arch/x86/kernel/doublefault_32.c
2025-10-31T05:25:16.2393820Z patching file arch/x86/kernel/dumpstack.c
2025-10-31T05:25:16.2395594Z patching file arch/x86/kernel/e820.c
2025-10-31T05:25:16.2397794Z patching file arch/x86/kernel/early-quirks.c
2025-10-31T05:25:16.2399398Z patching file arch/x86/kernel/fpu/core.c
2025-10-31T05:25:16.2400551Z patching file arch/x86/kernel/fpu/init.c
2025-10-31T05:25:16.2401729Z patching file arch/x86/kernel/fpu/regset.c
2025-10-31T05:25:16.2402991Z patching file arch/x86/kernel/fpu/signal.c
2025-10-31T05:25:16.2405106Z patching file arch/x86/kernel/fpu/xstate.c
2025-10-31T05:25:16.2407598Z patching file arch/x86/kernel/ftrace.c
2025-10-31T05:25:16.2408912Z patching file arch/x86/kernel/ftrace_32.S
2025-10-31T05:25:16.2409931Z patching file arch/x86/kernel/ftrace_64.S
2025-10-31T05:25:16.2411657Z patching file arch/x86/kernel/head64.c
2025-10-31T05:25:16.2413428Z patching file arch/x86/kernel/head_32.S
2025-10-31T05:25:16.2414849Z patching file arch/x86/kernel/head_64.S
2025-10-31T05:25:16.2416692Z patching file arch/x86/kernel/hpet.c
2025-10-31T05:25:16.2418770Z patching file arch/x86/kernel/hw_breakpoint.c
2025-10-31T05:25:16.2420232Z patching file arch/x86/kernel/i8253.c
2025-10-31T05:25:16.2421163Z patching file arch/x86/kernel/i8259.c
2025-10-31T05:25:16.2422714Z patching file arch/x86/kernel/ima_arch.c
2025-10-31T05:25:16.2423704Z patching file arch/x86/kernel/ioport.c
2025-10-31T05:25:16.2425114Z patching file arch/x86/kernel/irq.c
2025-10-31T05:25:16.2426126Z patching file arch/x86/kernel/irqflags.S
2025-10-31T05:25:16.2427046Z patching file arch/x86/kernel/irqinit.c
2025-10-31T05:25:16.2428068Z patching file arch/x86/kernel/kdebugfs.c
2025-10-31T05:25:16.2429517Z patching file arch/x86/kernel/kprobes/core.c
2025-10-31T05:25:16.2433124Z patching file arch/x86/kernel/kprobes/opt.c
2025-10-31T05:25:16.2434686Z patching file arch/x86/kernel/ksysfs.c
2025-10-31T05:25:16.2436393Z patching file arch/x86/kernel/kvm.c
2025-10-31T05:25:16.2438626Z patching file arch/x86/kernel/kvmclock.c
2025-10-31T05:25:16.2440338Z patching file arch/x86/kernel/machine_kexec_64.c
2025-10-31T05:25:16.2441448Z patching file arch/x86/kernel/module.c
2025-10-31T05:25:16.2443173Z patching file arch/x86/kernel/msr.c
2025-10-31T05:25:16.2444212Z patching file arch/x86/kernel/nmi.c
2025-10-31T05:25:16.2446128Z patching file arch/x86/kernel/paravirt.c
2025-10-31T05:25:16.2447363Z patching file arch/x86/kernel/paravirt_patch.c
2025-10-31T05:25:16.2448317Z patching file arch/x86/kernel/pmem.c
2025-10-31T05:25:16.2449481Z patching file arch/x86/kernel/process.c
2025-10-31T05:25:16.2451670Z patching file arch/x86/kernel/process_32.c
2025-10-31T05:25:16.2453017Z patching file arch/x86/kernel/process_64.c
2025-10-31T05:25:16.2455039Z patching file arch/x86/kernel/reboot.c
2025-10-31T05:25:16.2457257Z patching file arch/x86/kernel/relocate_kernel_32.S
2025-10-31T05:25:16.2458534Z patching file arch/x86/kernel/relocate_kernel_64.S
2025-10-31T05:25:16.2459942Z patching file arch/x86/kernel/setup.c
2025-10-31T05:25:16.2462135Z patching file arch/x86/kernel/setup_percpu.c
2025-10-31T05:25:16.2464237Z patching file arch/x86/kernel/sev-es-shared.c
2025-10-31T05:25:16.2466381Z patching file arch/x86/kernel/sev-es.c
2025-10-31T05:25:16.2469579Z patching file arch/x86/kernel/sev_verify_cbit.S
2025-10-31T05:25:16.2470300Z patching file arch/x86/kernel/signal.c
2025-10-31T05:25:16.2472393Z patching file arch/x86/kernel/smp.c
2025-10-31T05:25:16.2474022Z patching file arch/x86/kernel/smpboot.c
2025-10-31T05:25:16.2476682Z patching file arch/x86/kernel/static_call.c
2025-10-31T05:25:16.2477748Z patching file arch/x86/kernel/step.c
2025-10-31T05:25:16.2478734Z patching file arch/x86/kernel/sys_x86_64.c
2025-10-31T05:25:16.2479799Z patching file arch/x86/kernel/sysfb_efi.c
2025-10-31T05:25:16.2480925Z patching file arch/x86/kernel/tboot.c
2025-10-31T05:25:16.2482430Z patching file arch/x86/kernel/time.c
2025-10-31T05:25:16.2483343Z patching file arch/x86/kernel/tls.c
2025-10-31T05:25:16.2484751Z patching file arch/x86/kernel/traps.c
2025-10-31T05:25:16.2487316Z patching file arch/x86/kernel/tsc.c
2025-10-31T05:25:16.2489432Z patching file arch/x86/kernel/tsc_sync.c
2025-10-31T05:25:16.2490749Z patching file arch/x86/kernel/umip.c
2025-10-31T05:25:16.2492356Z patching file arch/x86/kernel/unwind_orc.c
2025-10-31T05:25:16.2494283Z patching file arch/x86/kernel/uprobes.c
2025-10-31T05:25:16.2495849Z patching file arch/x86/kernel/verify_cpu.S
2025-10-31T05:25:16.2496740Z patching file arch/x86/kernel/vmlinux.lds.S
2025-10-31T05:25:16.2498590Z patching file arch/x86/kernel/x86_init.c
2025-10-31T05:25:16.2499603Z patching file arch/x86/kvm/cpuid.c
2025-10-31T05:25:16.2501875Z patching file arch/x86/kvm/cpuid.h
2025-10-31T05:25:16.2504835Z patching file arch/x86/kvm/emulate.c
2025-10-31T05:25:16.2510000Z patching file arch/x86/kvm/hyperv.c
2025-10-31T05:25:16.2512640Z patching file arch/x86/kvm/ioapic.c
2025-10-31T05:25:16.2514164Z patching file arch/x86/kvm/kvm_emulate.h
2025-10-31T05:25:16.2516054Z patching file arch/x86/kvm/lapic.c
2025-10-31T05:25:16.2518786Z patching file arch/x86/kvm/mmu.h
2025-10-31T05:25:16.2521230Z patching file arch/x86/kvm/mmu/mmu.c
2025-10-31T05:25:16.2526458Z patching file arch/x86/kvm/mmu/page_track.c
2025-10-31T05:25:16.2527142Z patching file arch/x86/kvm/mmu/paging.h
2025-10-31T05:25:16.2528559Z patching file arch/x86/kvm/mmu/paging_tmpl.h
2025-10-31T05:25:16.2530669Z patching file arch/x86/kvm/mmu/spte.h
2025-10-31T05:25:16.2531356Z patching file arch/x86/kvm/mmu/tdp_iter.c
2025-10-31T05:25:16.2532571Z patching file arch/x86/kvm/mmu/tdp_iter.h
2025-10-31T05:25:16.2533862Z patching file arch/x86/kvm/mmu/tdp_mmu.c
2025-10-31T05:25:16.2536243Z patching file arch/x86/kvm/mmu/tdp_mmu.h
2025-10-31T05:25:16.2536982Z patching file arch/x86/kvm/pmu.c
2025-10-31T05:25:16.2538446Z patching file arch/x86/kvm/pmu.h
2025-10-31T05:25:16.2539580Z patching file arch/x86/kvm/svm/avic.c
2025-10-31T05:25:16.2541438Z patching file arch/x86/kvm/svm/nested.c
2025-10-31T05:25:16.2543767Z patching file arch/x86/kvm/svm/pmu.c
2025-10-31T05:25:16.2545367Z patching file arch/x86/kvm/svm/sev.c
2025-10-31T05:25:16.2548317Z patching file arch/x86/kvm/svm/svm.c
2025-10-31T05:25:16.2552517Z patching file arch/x86/kvm/svm/svm.h
2025-10-31T05:25:16.2553497Z patching file arch/x86/kvm/svm/vmenter.S
2025-10-31T05:25:16.2555148Z patching file arch/x86/kvm/trace.h
2025-10-31T05:25:16.2557093Z patching file arch/x86/kvm/vmx/evmcs.c
2025-10-31T05:25:16.2557994Z patching file arch/x86/kvm/vmx/evmcs.h
2025-10-31T05:25:16.2560973Z patching file arch/x86/kvm/vmx/nested.c
2025-10-31T05:25:16.2568111Z patching file arch/x86/kvm/vmx/pmu_intel.c
2025-10-31T05:25:16.2570352Z patching file arch/x86/kvm/vmx/posted_intr.c
2025-10-31T05:25:16.2571837Z patching file arch/x86/kvm/vmx/run_flags.h
2025-10-31T05:25:16.2572822Z patching file arch/x86/kvm/vmx/vmcs.h
2025-10-31T05:25:16.2573771Z patching file arch/x86/kvm/vmx/vmenter.S
2025-10-31T05:25:16.2578110Z patching file arch/x86/kvm/vmx/vmx.c
2025-10-31T05:25:16.2585677Z patching file arch/x86/kvm/vmx/vmx.h
2025-10-31T05:25:16.2590460Z patching file arch/x86/kvm/x86.c
2025-10-31T05:25:16.2599607Z patching file arch/x86/kvm/x86.h
2025-10-31T05:25:16.2600622Z patching file arch/x86/lib/atomic64_386_32.S
2025-10-31T05:25:16.2602240Z patching file arch/x86/lib/atomic64_cx8_32.S
2025-10-31T05:25:16.2603274Z patching file arch/x86/lib/checksum_32.S
2025-10-31T05:25:16.2604345Z patching file arch/x86/lib/clear_page_64.S
2025-10-31T05:25:16.2612685Z patching file arch/x86/lib/cmpxchg16b_emu.S
2025-10-31T05:25:16.2613162Z patching file arch/x86/lib/cmpxchg8b_emu.S
2025-10-31T05:25:16.2613538Z patching file arch/x86/lib/copy_mc.c
2025-10-31T05:25:16.2613900Z patching file arch/x86/lib/copy_mc_64.S
2025-10-31T05:25:16.2614283Z patching file arch/x86/lib/copy_page_64.S
2025-10-31T05:25:16.2614662Z patching file arch/x86/lib/copy_user_64.S
2025-10-31T05:25:16.2615035Z patching file arch/x86/lib/csum-copy_64.S
2025-10-31T05:25:16.2615392Z patching file arch/x86/lib/delay.c
2025-10-31T05:25:16.2615761Z patching file arch/x86/lib/error-inject.c
2025-10-31T05:25:16.2616105Z patching file arch/x86/lib/getuser.S
2025-10-31T05:25:16.2616452Z patching file arch/x86/lib/hweight.S
2025-10-31T05:25:16.2616799Z patching file arch/x86/lib/inat.c
2025-10-31T05:25:16.2617158Z patching file arch/x86/lib/insn-eval.c
2025-10-31T05:25:16.2619393Z patching file arch/x86/lib/insn.c
2025-10-31T05:25:16.2621632Z patching file arch/x86/lib/iomap_copy_64.S
2025-10-31T05:25:16.2622321Z patching file arch/x86/lib/memcpy_64.S
2025-10-31T05:25:16.2623481Z patching file arch/x86/lib/memmove_64.S
2025-10-31T05:25:16.2624383Z patching file arch/x86/lib/memset_64.S
2025-10-31T05:25:16.2625298Z patching file arch/x86/lib/misc.c
2025-10-31T05:25:16.2626106Z patching file arch/x86/lib/mmx_32.c
2025-10-31T05:25:16.2627274Z patching file arch/x86/lib/msr-reg.S
2025-10-31T05:25:16.2628168Z patching file arch/x86/lib/msr-smp.c
2025-10-31T05:25:16.2629122Z patching file arch/x86/lib/putuser.S
2025-10-31T05:25:16.2630000Z patching file arch/x86/lib/retpoline.S
2025-10-31T05:25:16.2632120Z patching file arch/x86/lib/usercopy_64.c
2025-10-31T05:25:16.2633005Z patching file arch/x86/lib/x86-opcode-map.txt
2025-10-31T05:25:16.2634916Z patching file arch/x86/math-emu/div_Xsig.S
2025-10-31T05:25:16.2635700Z patching file arch/x86/math-emu/div_small.S
2025-10-31T05:25:16.2636580Z patching file arch/x86/math-emu/mul_Xsig.S
2025-10-31T05:25:16.2637538Z patching file arch/x86/math-emu/polynom_Xsig.S
2025-10-31T05:25:16.2638367Z patching file arch/x86/math-emu/reg_norm.S
2025-10-31T05:25:16.2639324Z patching file arch/x86/math-emu/reg_round.S
2025-10-31T05:25:16.2640464Z patching file arch/x86/math-emu/reg_u_add.S
2025-10-31T05:25:16.2641368Z patching file arch/x86/math-emu/reg_u_div.S
2025-10-31T05:25:16.2642586Z patching file arch/x86/math-emu/reg_u_mul.S
2025-10-31T05:25:16.2643545Z patching file arch/x86/math-emu/reg_u_sub.S
2025-10-31T05:25:16.2644505Z patching file arch/x86/math-emu/round_Xsig.S
2025-10-31T05:25:16.2645402Z patching file arch/x86/math-emu/shr_Xsig.S
2025-10-31T05:25:16.2646316Z patching file arch/x86/math-emu/wm_shrx.S
2025-10-31T05:25:16.2647877Z patching file arch/x86/mm/cpu_entry_area.c
2025-10-31T05:25:16.2648448Z patching file arch/x86/mm/extable.c
2025-10-31T05:25:16.2649776Z patching file arch/x86/mm/fault.c
2025-10-31T05:25:16.2651568Z patching file arch/x86/mm/ident_map.c
2025-10-31T05:25:16.2652649Z patching file arch/x86/mm/init.c
2025-10-31T05:25:16.2654763Z patching file arch/x86/mm/init_64.c
2025-10-31T05:25:16.2656877Z patching file arch/x86/mm/ioremap.c
2025-10-31T05:25:16.2658636Z patching file arch/x86/mm/kaslr.c
2025-10-31T05:25:16.2659248Z patching file arch/x86/mm/maccess.c
2025-10-31T05:25:16.2660298Z patching file arch/x86/mm/mem_encrypt.c
2025-10-31T05:25:16.2661404Z patching file arch/x86/mm/mem_encrypt_boot.S
2025-10-31T05:25:16.2662591Z patching file arch/x86/mm/mem_encrypt_identity.c
2025-10-31T05:25:16.2664716Z patching file arch/x86/mm/numa.c
2025-10-31T05:25:16.2665985Z patching file arch/x86/mm/pat/cpa-test.c
2025-10-31T05:25:16.2667157Z patching file arch/x86/mm/pat/memtype.c
2025-10-31T05:25:16.2669449Z patching file arch/x86/mm/pat/set_memory.c
2025-10-31T05:25:16.2671444Z patching file arch/x86/mm/pgtable.c
2025-10-31T05:25:16.2672873Z patching file arch/x86/mm/pkeys.c
2025-10-31T05:25:16.2673922Z patching file arch/x86/mm/pti.c
2025-10-31T05:25:16.2676185Z patching file arch/x86/net/bpf_jit_comp.c
2025-10-31T05:25:16.2679776Z patching file arch/x86/net/bpf_jit_comp32.c
2025-10-31T05:25:16.2682249Z patching file arch/x86/pci/fixup.c
2025-10-31T05:25:16.2683729Z patching file arch/x86/pci/init.c
2025-10-31T05:25:16.2684397Z patching file arch/x86/pci/intel_mid_pci.c
2025-10-31T05:25:16.2685600Z patching file arch/x86/pci/xen.c
2025-10-31T05:25:16.2686927Z patching file arch/x86/platform/efi/Makefile
2025-10-31T05:25:16.2687708Z patching file arch/x86/platform/efi/efi.c
2025-10-31T05:25:16.2689230Z patching file arch/x86/platform/efi/efi_64.c
2025-10-31T05:25:16.2690448Z patching file arch/x86/platform/efi/efi_stub_32.S
2025-10-31T05:25:16.2690982Z patching file arch/x86/platform/efi/efi_stub_64.S
2025-10-31T05:25:16.2691770Z patching file arch/x86/platform/efi/efi_thunk_64.S
2025-10-31T05:25:16.2692663Z patching file arch/x86/platform/efi/memmap.c
2025-10-31T05:25:16.2694471Z patching file arch/x86/platform/efi/quirks.c
2025-10-31T05:25:16.2696128Z patching file arch/x86/platform/intel/iosf_mbi.c
2025-10-31T05:25:16.2697323Z patching file arch/x86/platform/olpc/olpc-xo1-sci.c
2025-10-31T05:25:16.2698471Z patching file arch/x86/platform/olpc/olpc.c
2025-10-31T05:25:16.2699386Z patching file arch/x86/platform/olpc/xo1-wakeup.S
2025-10-31T05:25:16.2700303Z patching file arch/x86/platform/pvh/head.S
2025-10-31T05:25:16.2701530Z patching file arch/x86/power/cpu.c
2025-10-31T05:25:16.2703499Z patching file arch/x86/power/hibernate.c
2025-10-31T05:25:16.2704584Z patching file arch/x86/power/hibernate_asm_32.S
2025-10-31T05:25:16.2705418Z patching file arch/x86/power/hibernate_asm_64.S
2025-10-31T05:25:16.2706317Z patching file arch/x86/purgatory/Makefile
2025-10-31T05:25:16.2707293Z patching file arch/x86/realmode/init.c
2025-10-31T05:25:16.2708421Z patching file arch/x86/tools/chkobjdump.awk
2025-10-31T05:25:16.2709541Z patching file arch/x86/tools/relocs.c
2025-10-31T05:25:16.2711406Z patching file arch/x86/um/Makefile
2025-10-31T05:25:16.2712193Z patching file arch/x86/um/asm/checksum.h
2025-10-31T05:25:16.2713115Z patching file arch/x86/um/checksum_32.S
2025-10-31T05:25:16.2714092Z patching file arch/x86/um/ldt.c
2025-10-31T05:25:16.2715177Z patching file arch/x86/um/os-Linux/mcontext.c
2025-10-31T05:25:16.2715985Z patching file arch/x86/um/setjmp_32.S
2025-10-31T05:25:16.2716881Z patching file arch/x86/um/setjmp_64.S
2025-10-31T05:25:16.2717859Z patching file arch/x86/um/shared/sysdep/syscalls_32.h
2025-10-31T05:25:16.2718567Z patching file arch/x86/um/shared/sysdep/syscalls_64.h
2025-10-31T05:25:16.2719380Z patching file arch/x86/um/syscalls_64.c
2025-10-31T05:25:16.2720245Z patching file arch/x86/um/tls_32.c
2025-10-31T05:25:16.2721311Z patching file arch/x86/um/vdso/Makefile
2025-10-31T05:25:16.2722219Z patching file arch/x86/um/vdso/um_vdso.c
2025-10-31T05:25:16.2723207Z patching file arch/x86/xen/Makefile
2025-10-31T05:25:16.2724123Z patching file arch/x86/xen/enlighten.c
2025-10-31T05:25:16.2725725Z patching file arch/x86/xen/enlighten_hvm.c
2025-10-31T05:25:16.2727140Z patching file arch/x86/xen/enlighten_pv.c
2025-10-31T05:25:16.2729520Z patching file arch/x86/xen/enlighten_pvh.c
2025-10-31T05:25:16.2730562Z patching file arch/x86/xen/mmu_pv.c
2025-10-31T05:25:16.2733669Z patching file arch/x86/xen/p2m.c
2025-10-31T05:25:16.2735381Z patching file arch/x86/xen/pmu.c
2025-10-31T05:25:16.2736369Z patching file arch/x86/xen/pmu.h
2025-10-31T05:25:16.2737417Z patching file arch/x86/xen/setup.c
2025-10-31T05:25:16.2739271Z patching file arch/x86/xen/smp.c
2025-10-31T05:25:16.2740357Z patching file arch/x86/xen/smp_hvm.c
2025-10-31T05:25:16.2741548Z patching file arch/x86/xen/smp_pv.c
2025-10-31T05:25:16.2743171Z patching file arch/x86/xen/spinlock.c
2025-10-31T05:25:16.2744091Z patching file arch/x86/xen/time.c
2025-10-31T05:25:16.2745652Z patching file arch/x86/xen/xen-asm.S
2025-10-31T05:25:16.2747459Z patching file arch/x86/xen/xen-head.S
2025-10-31T05:25:16.2748462Z patching file arch/x86/xen/xen-ops.h
2025-10-31T05:25:16.2749628Z patching file arch/xtensa/Kconfig
2025-10-31T05:25:16.2751083Z patching file arch/xtensa/boot/Makefile
2025-10-31T05:25:16.2752148Z patching file arch/xtensa/boot/dts/xtfpga-flash-128m.dtsi
2025-10-31T05:25:16.2752985Z patching file arch/xtensa/boot/dts/xtfpga-flash-16m.dtsi
2025-10-31T05:25:16.2753805Z patching file arch/xtensa/boot/dts/xtfpga-flash-4m.dtsi
2025-10-31T05:25:16.2754573Z patching file arch/xtensa/boot/lib/zmem.c
2025-10-31T05:25:16.2755552Z patching file arch/xtensa/include/asm/Kbuild
2025-10-31T05:25:16.2756338Z patching file arch/xtensa/include/asm/bugs.h
2025-10-31T05:25:16.2757299Z patching file arch/xtensa/include/asm/core.h
2025-10-31T05:25:16.2758247Z patching file arch/xtensa/include/asm/kmem_layout.h
2025-10-31T05:25:16.2759158Z patching file arch/xtensa/include/asm/processor.h
2025-10-31T05:25:16.2760146Z patching file arch/xtensa/include/asm/thread_info.h
2025-10-31T05:25:16.2761120Z patching file arch/xtensa/include/asm/timex.h
2025-10-31T05:25:16.2762259Z patching file arch/xtensa/kernel/coprocessor.S
2025-10-31T05:25:16.2764112Z patching file arch/xtensa/kernel/entry.S
2025-10-31T05:25:16.2766071Z patching file arch/xtensa/kernel/irq.c
2025-10-31T05:25:16.2766590Z patching file arch/xtensa/kernel/jump_label.c
2025-10-31T05:25:16.2767554Z patching file arch/xtensa/kernel/perf_event.c
2025-10-31T05:25:16.2768802Z patching file arch/xtensa/kernel/process.c
2025-10-31T05:25:16.2769749Z patching file arch/xtensa/kernel/ptrace.c
2025-10-31T05:25:16.2771063Z patching file arch/xtensa/kernel/setup.c
2025-10-31T05:25:16.2772519Z patching file arch/xtensa/kernel/signal.c
2025-10-31T05:25:16.2774167Z patching file arch/xtensa/kernel/smp.c
2025-10-31T05:25:16.2775164Z patching file arch/xtensa/kernel/time.c
2025-10-31T05:25:16.2776159Z patching file arch/xtensa/kernel/traps.c
2025-10-31T05:25:16.2777615Z patching file arch/xtensa/mm/fault.c
2025-10-31T05:25:16.2778283Z patching file arch/xtensa/mm/mmu.c
2025-10-31T05:25:16.2779241Z patching file arch/xtensa/platforms/iss/console.c
2025-10-31T05:25:16.2780465Z patching file arch/xtensa/platforms/iss/network.c
2025-10-31T05:25:16.2782146Z patching file arch/xtensa/platforms/iss/simdisk.c
2025-10-31T05:25:16.2783079Z patching file arch/xtensa/platforms/xtfpga/setup.c
2025-10-31T05:25:16.2784621Z patching file block/bfq-cgroup.c
2025-10-31T05:25:16.2788620Z patching file block/bfq-iosched.c
2025-10-31T05:25:16.2794340Z patching file block/bfq-iosched.h
2025-10-31T05:25:16.2796093Z patching file block/bio-integrity.c
2025-10-31T05:25:16.2797694Z patching file block/bio.c
2025-10-31T05:25:16.2799947Z patching file block/blk-cgroup-rwstat.c
2025-10-31T05:25:16.2800997Z patching file block/blk-cgroup.c
2025-10-31T05:25:16.2804088Z patching file block/blk-core.c
2025-10-31T05:25:16.2806442Z patching file block/blk-crypto-fallback.c
2025-10-31T05:25:16.2807442Z patching file block/blk-crypto-internal.h
2025-10-31T05:25:16.2808652Z patching file block/blk-crypto.c
2025-10-31T05:25:16.2810404Z patching file block/blk-flush.c
2025-10-31T05:25:16.2811579Z patching file block/blk-integrity.c
2025-10-31T05:25:16.2813843Z patching file block/blk-iocost.c
2025-10-31T05:25:16.2817475Z patching file block/blk-iolatency.c
2025-10-31T05:25:16.2819587Z patching file block/blk-map.c
2025-10-31T05:25:16.2821085Z patching file block/blk-merge.c
2025-10-31T05:25:16.2823305Z patching file block/blk-mq-debugfs.c
2025-10-31T05:25:16.2825082Z patching file block/blk-mq-sched.c
2025-10-31T05:25:16.2826657Z patching file block/blk-mq-sysfs.c
2025-10-31T05:25:16.2827772Z patching file block/blk-mq-tag.c
2025-10-31T05:25:16.2829464Z patching file block/blk-mq-tag.h
2025-10-31T05:25:16.2831442Z patching file block/blk-mq.c
2025-10-31T05:25:16.2835580Z patching file block/blk-mq.h
2025-10-31T05:25:16.2836564Z patching file block/blk-pm.c
2025-10-31T05:25:16.2837873Z patching file block/blk-pm.h
2025-10-31T05:25:16.2838773Z patching file block/blk-rq-qos.c
2025-10-31T05:25:16.2839794Z patching file block/blk-rq-qos.h
2025-10-31T05:25:16.2841176Z patching file block/blk-settings.c
2025-10-31T05:25:16.2843367Z patching file block/blk-stat.c
2025-10-31T05:25:16.2844222Z patching file block/blk-sysfs.c
2025-10-31T05:25:16.2846675Z patching file block/blk-throttle.c
2025-10-31T05:25:16.2849509Z patching file block/blk-wbt.c
2025-10-31T05:25:16.2850653Z patching file block/blk-wbt.h
2025-10-31T05:25:16.2851585Z patching file block/blk-zoned.c
2025-10-31T05:25:16.2853530Z patching file block/blk.h
2025-10-31T05:25:16.2854635Z patching file block/bsg.c
2025-10-31T05:25:16.2856199Z patching file block/elevator.c
2025-10-31T05:25:16.2858065Z patching file block/genhd.c
2025-10-31T05:25:16.2860506Z patching file block/ioctl.c
2025-10-31T05:25:16.2862262Z patching file block/ioprio.c
2025-10-31T05:25:16.2863303Z patching file block/keyslot-manager.c
2025-10-31T05:25:16.2864999Z patching file block/kyber-iosched.c
2025-10-31T05:25:16.2866637Z patching file block/mq-deadline.c
2025-10-31T05:25:16.2867955Z patching file block/opal_proto.h
2025-10-31T05:25:16.2868947Z patching file block/partitions/amiga.c
2025-10-31T05:25:16.2870677Z patching file block/partitions/core.c
2025-10-31T05:25:16.2872386Z patching file block/partitions/efi.c
2025-10-31T05:25:16.2874063Z patching file block/partitions/ldm.c
2025-10-31T05:25:16.2875692Z patching file block/partitions/ldm.h
2025-10-31T05:25:16.2876392Z patching file block/partitions/mac.c
2025-10-31T05:25:16.2877497Z patching file block/partitions/msdos.c
2025-10-31T05:25:16.2879882Z patching file block/sed-opal.c
2025-10-31T05:25:16.2882493Z patching file certs/.gitignore
2025-10-31T05:25:16.2882861Z patching file certs/Kconfig
2025-10-31T05:25:16.2883866Z patching file certs/Makefile
2025-10-31T05:25:16.2884935Z patching file certs/blacklist.c
2025-10-31T05:25:16.2885999Z patching file certs/blacklist.h
2025-10-31T05:25:16.2886790Z patching file certs/blacklist_hashes.c
2025-10-31T05:25:16.2887474Z patching file certs/common.c
2025-10-31T05:25:16.2888437Z patching file certs/common.h
2025-10-31T05:25:16.2889359Z patching file certs/revocation_certificates.S
2025-10-31T05:25:16.2890292Z patching file certs/system_keyring.c
2025-10-31T05:25:16.2892403Z patching file crypto/Kconfig
2025-10-31T05:25:16.2894694Z patching file crypto/Makefile
2025-10-31T05:25:16.2895375Z patching file crypto/aead.c
2025-10-31T05:25:16.2896776Z patching file crypto/af_alg.c
2025-10-31T05:25:16.2898640Z patching file crypto/akcipher.c
2025-10-31T05:25:16.2899693Z patching file crypto/algapi.c
2025-10-31T05:25:16.2901736Z patching file crypto/algboss.c
2025-10-31T05:25:16.2902827Z patching file crypto/algif_hash.c
2025-10-31T05:25:16.2904197Z patching file crypto/api.c
2025-10-31T05:25:16.2905867Z patching file crypto/asymmetric_keys/asym_tpm.c
2025-10-31T05:25:16.2907080Z patching file crypto/asymmetric_keys/pkcs7_verify.c
2025-10-31T05:25:16.2908282Z patching file crypto/asymmetric_keys/public_key.c
2025-10-31T05:25:16.2909906Z patching file crypto/asymmetric_keys/verify_pefile.c
2025-10-31T05:25:16.2911308Z patching file crypto/asymmetric_keys/x509_public_key.c
2025-10-31T05:25:16.2912420Z patching file crypto/async_tx/async_xor.c
2025-10-31T05:25:16.2913880Z patching file crypto/authenc.c
2025-10-31T05:25:16.2914919Z patching file crypto/blake2s_generic.c
2025-10-31T05:25:16.2916837Z patching file crypto/cipher.c
2025-10-31T05:25:16.2917517Z patching file crypto/cryptd.c
2025-10-31T05:25:16.2919809Z patching file crypto/crypto_null.c
2025-10-31T05:25:16.2921576Z patching file crypto/drbg.c
2025-10-31T05:25:16.2924487Z patching file crypto/ecdh.c
2025-10-31T05:25:16.2925213Z patching file crypto/ecdh_helper.c
2025-10-31T05:25:16.2926207Z patching file crypto/ecrdsa.c
2025-10-31T05:25:16.2927949Z patching file crypto/essiv.c
2025-10-31T05:25:16.2929590Z patching file crypto/jitterentropy.c
2025-10-31T05:25:16.2931136Z patching file crypto/lrw.c
2025-10-31T05:25:16.2932335Z patching file crypto/memneq.c
2025-10-31T05:25:16.2934164Z patching file crypto/michael_mic.c
2025-10-31T05:25:16.2935296Z patching file crypto/pcrypt.c
2025-10-31T05:25:16.2936849Z patching file crypto/rng.c
2025-10-31T05:25:16.2938103Z patching file crypto/rsa-pkcs1pad.c
2025-10-31T05:25:16.2939686Z patching file crypto/scompress.c
2025-10-31T05:25:16.2940573Z patching file crypto/seqiv.c
2025-10-31T05:25:16.2941848Z patching file crypto/shash.c
2025-10-31T05:25:16.2943343Z patching file crypto/sm2.c
2025-10-31T05:25:16.2945369Z patching file crypto/tcrypt.c
2025-10-31T05:25:16.2963603Z patching file crypto/testmgr.h
2025-10-31T05:25:16.2980801Z patching file crypto/xor.c
2025-10-31T05:25:16.2981648Z patching file crypto/xts.c
2025-10-31T05:25:16.2984081Z patching file drivers/accessibility/speakup/main.c
2025-10-31T05:25:16.2986369Z patching file drivers/accessibility/speakup/speakup_dectlk.c
2025-10-31T05:25:16.2987238Z patching file drivers/accessibility/speakup/spk_ttyio.c
2025-10-31T05:25:16.2988348Z patching file drivers/accessibility/speakup/synth.c
2025-10-31T05:25:16.2989749Z patching file drivers/acpi/Kconfig
2025-10-31T05:25:16.2991186Z patching file drivers/acpi/Makefile
2025-10-31T05:25:16.2991889Z patching file drivers/acpi/ac.c
2025-10-31T05:25:16.2993193Z patching file drivers/acpi/acpi_amba.c
2025-10-31T05:25:16.2994103Z patching file drivers/acpi/acpi_apd.c
2025-10-31T05:25:16.2995117Z patching file drivers/acpi/acpi_configfs.c
2025-10-31T05:25:16.2996208Z patching file drivers/acpi/acpi_dbg.c
2025-10-31T05:25:16.2998020Z patching file drivers/acpi/acpi_extlog.c
2025-10-31T05:25:16.2999122Z patching file drivers/acpi/acpi_lpit.c
2025-10-31T05:25:16.3000356Z patching file drivers/acpi/acpi_lpss.c
2025-10-31T05:25:16.3002406Z patching file drivers/acpi/acpi_pad.c
2025-10-31T05:25:16.3003757Z patching file drivers/acpi/acpi_pnp.c
2025-10-31T05:25:16.3005187Z patching file drivers/acpi/acpi_processor.c
2025-10-31T05:25:16.3006877Z patching file drivers/acpi/acpi_tad.c
2025-10-31T05:25:16.3009020Z patching file drivers/acpi/acpi_video.c
2025-10-31T05:25:16.3011575Z patching file drivers/acpi/acpica/Makefile
2025-10-31T05:25:16.3012384Z patching file drivers/acpi/acpica/acglobal.h
2025-10-31T05:25:16.3013828Z patching file drivers/acpi/acpica/acobject.h
2025-10-31T05:25:16.3015081Z patching file drivers/acpi/acpica/dbconvert.c
2025-10-31T05:25:16.3016456Z patching file drivers/acpi/acpica/dbnames.c
2025-10-31T05:25:16.3018110Z patching file drivers/acpi/acpica/dsmethod.c
2025-10-31T05:25:16.3019757Z patching file drivers/acpi/acpica/dsutils.c
2025-10-31T05:25:16.3021379Z patching file drivers/acpi/acpica/dswstate.c
2025-10-31T05:25:16.3023020Z patching file drivers/acpi/acpica/evhandler.c
2025-10-31T05:25:16.3025223Z patching file drivers/acpi/acpica/evregion.c
2025-10-31T05:25:16.3027260Z patching file drivers/acpi/acpica/exfield.c
2025-10-31T05:25:16.3028407Z patching file drivers/acpi/acpica/exoparg1.c
2025-10-31T05:25:16.3030219Z patching file drivers/acpi/acpica/exprep.c
2025-10-31T05:25:16.3031474Z patching file drivers/acpi/acpica/exregion.c
2025-10-31T05:25:16.3033011Z patching file drivers/acpi/acpica/hwesleep.c
2025-10-31T05:25:16.3034119Z patching file drivers/acpi/acpica/hwsleep.c
2025-10-31T05:25:16.3035351Z patching file drivers/acpi/acpica/hwvalid.c
2025-10-31T05:25:16.3036526Z patching file drivers/acpi/acpica/hwxfsleep.c
2025-10-31T05:25:16.3038004Z patching file drivers/acpi/acpica/nsaccess.c
2025-10-31T05:25:16.3039482Z patching file drivers/acpi/acpica/nsrepair.c
2025-10-31T05:25:16.3040893Z patching file drivers/acpi/acpica/nswalk.c
2025-10-31T05:25:16.3042190Z patching file drivers/acpi/acpica/psargs.c
2025-10-31T05:25:16.3044296Z patching file drivers/acpi/acpica/psobject.c
2025-10-31T05:25:16.3045896Z patching file drivers/acpi/acpica/psopcode.c
2025-10-31T05:25:16.3047736Z patching file drivers/acpi/acpica/utcopy.c
2025-10-31T05:25:16.3049157Z patching file drivers/acpi/acpica/utdelete.c
2025-10-31T05:25:16.3050835Z patching file drivers/acpi/acpica/utprint.c
2025-10-31T05:25:16.3051831Z patching file drivers/acpi/apei/Kconfig
2025-10-31T05:25:16.3052610Z patching file drivers/acpi/apei/bert.c
2025-10-31T05:25:16.3054019Z patching file drivers/acpi/apei/einj.c
2025-10-31T05:25:16.3055369Z patching file drivers/acpi/apei/erst.c
2025-10-31T05:25:16.3057068Z patching file drivers/acpi/apei/ghes.c
2025-10-31T05:25:16.3059203Z patching file drivers/acpi/apei/hest.c
2025-10-31T05:25:16.3060116Z patching file drivers/acpi/arm64/gtdt.c
2025-10-31T05:25:16.3061901Z patching file drivers/acpi/arm64/iort.c
2025-10-31T05:25:16.3064592Z patching file drivers/acpi/battery.c
2025-10-31T05:25:16.3066838Z patching file drivers/acpi/bgrt.c
2025-10-31T05:25:16.3067972Z patching file drivers/acpi/bus.c
2025-10-31T05:25:16.3069893Z patching file drivers/acpi/button.c
2025-10-31T05:25:16.3071609Z patching file drivers/acpi/cppc_acpi.c
2025-10-31T05:25:16.3073862Z patching file drivers/acpi/custom_method.c
2025-10-31T05:25:16.3074942Z patching file drivers/acpi/device_pm.c
2025-10-31T05:25:16.3077365Z patching file drivers/acpi/device_sysfs.c
2025-10-31T05:25:16.3079278Z patching file drivers/acpi/dock.c
2025-10-31T05:25:16.3080792Z patching file drivers/acpi/dptf/dptf_pch_fivr.c
2025-10-31T05:25:16.3082539Z patching file drivers/acpi/ec.c
2025-10-31T05:25:16.3085785Z patching file drivers/acpi/fan.c
2025-10-31T05:25:16.3086907Z patching file drivers/acpi/fan.h
2025-10-31T05:25:16.3088223Z patching file drivers/acpi/hed.c
2025-10-31T05:25:16.3089108Z patching file drivers/acpi/internal.h
2025-10-31T05:25:16.3090621Z patching file drivers/acpi/irq.c
2025-10-31T05:25:16.3092658Z patching file drivers/acpi/nfit/core.c
2025-10-31T05:25:16.3096037Z patching file drivers/acpi/numa/hmat.c
2025-10-31T05:25:16.3097679Z patching file drivers/acpi/osi.c
2025-10-31T05:25:16.3098706Z patching file drivers/acpi/pci_mcfg.c
2025-10-31T05:25:16.3100163Z patching file drivers/acpi/pci_root.c
2025-10-31T05:25:16.3101829Z patching file drivers/acpi/pmic/intel_pmic.c
2025-10-31T05:25:16.3103033Z patching file drivers/acpi/pmic/tps68470_pmic.c
2025-10-31T05:25:16.3104560Z patching file drivers/acpi/power.c
2025-10-31T05:25:16.3106288Z patching file drivers/acpi/pptt.c
2025-10-31T05:25:16.3108137Z patching file drivers/acpi/processor_idle.c
2025-10-31T05:25:16.3110519Z patching file drivers/acpi/processor_pdc.c
2025-10-31T05:25:16.3111521Z patching file drivers/acpi/processor_perflib.c
2025-10-31T05:25:16.3113538Z patching file drivers/acpi/processor_thermal.c
2025-10-31T05:25:16.3114671Z patching file drivers/acpi/property.c
2025-10-31T05:25:16.3117190Z patching file drivers/acpi/resource.c
2025-10-31T05:25:16.3119532Z patching file drivers/acpi/sbs.c
2025-10-31T05:25:16.3121644Z patching file drivers/acpi/scan.c
2025-10-31T05:25:16.3124688Z patching file drivers/acpi/sleep.c
2025-10-31T05:25:16.3126585Z patching file drivers/acpi/sysfs.c
2025-10-31T05:25:16.3128347Z patching file drivers/acpi/tables.c
2025-10-31T05:25:16.3130147Z patching file drivers/acpi/thermal.c
2025-10-31T05:25:16.3132328Z patching file drivers/acpi/video_detect.c
2025-10-31T05:25:16.3134175Z patching file drivers/acpi/x86/utils.c
2025-10-31T05:25:16.3136043Z patching file drivers/amba/bus.c
2025-10-31T05:25:16.3139136Z patching file drivers/android/binder.c
2025-10-31T05:25:16.3146169Z patching file drivers/android/binder_alloc.c
2025-10-31T05:25:16.3148196Z patching file drivers/android/binder_alloc.h
2025-10-31T05:25:16.3149338Z patching file drivers/ata/Kconfig
2025-10-31T05:25:16.3151669Z patching file drivers/ata/ahci.c
2025-10-31T05:25:16.3155261Z patching file drivers/ata/ahci.h
2025-10-31T05:25:16.3157598Z patching file drivers/ata/ahci_brcm.c
2025-10-31T05:25:16.3159248Z patching file drivers/ata/ahci_imx.c
2025-10-31T05:25:16.3160989Z patching file drivers/ata/ahci_sunxi.c
2025-10-31T05:25:16.3162207Z patching file drivers/ata/ahci_xgene.c
2025-10-31T05:25:16.3164770Z patching file drivers/ata/libahci.c
2025-10-31T05:25:16.3167412Z patching file drivers/ata/libahci_platform.c
2025-10-31T05:25:16.3170383Z patching file drivers/ata/libata-core.c
2025-10-31T05:25:16.3176032Z patching file drivers/ata/libata-eh.c
2025-10-31T05:25:16.3179346Z patching file drivers/ata/libata-sata.c
2025-10-31T05:25:16.3182533Z patching file drivers/ata/libata-scsi.c
2025-10-31T05:25:16.3186863Z patching file drivers/ata/libata-sff.c
2025-10-31T05:25:16.3189775Z patching file drivers/ata/libata-transport.c
2025-10-31T05:25:16.3191228Z patching file drivers/ata/libata.h
2025-10-31T05:25:16.3192561Z patching file drivers/ata/pata_arasan_cf.c
2025-10-31T05:25:16.3194611Z patching file drivers/ata/pata_cs5536.c
2025-10-31T05:25:16.3195646Z patching file drivers/ata/pata_ep93xx.c
2025-10-31T05:25:16.3197481Z patching file drivers/ata/pata_ftide010.c
2025-10-31T05:25:16.3198904Z patching file drivers/ata/pata_hpt37x.c
2025-10-31T05:25:16.3200610Z patching file drivers/ata/pata_isapnp.c
2025-10-31T05:25:16.3201379Z patching file drivers/ata/pata_ixp4xx_cf.c
2025-10-31T05:25:16.3203128Z patching file drivers/ata/pata_legacy.c
2025-10-31T05:25:16.3205379Z patching file drivers/ata/pata_macio.c
2025-10-31T05:25:16.3207174Z patching file drivers/ata/pata_marvell.c
2025-10-31T05:25:16.3208079Z patching file drivers/ata/pata_ns87415.c
2025-10-31T05:25:16.3209755Z patching file drivers/ata/pata_octeon_cf.c
2025-10-31T05:25:16.3211391Z patching file drivers/ata/pata_pxa.c
2025-10-31T05:25:16.3212534Z patching file drivers/ata/pata_rb532_cf.c
2025-10-31T05:25:16.3213984Z patching file drivers/ata/pata_via.c
2025-10-31T05:25:16.3215740Z patching file drivers/ata/sata_dwc_460ex.c
2025-10-31T05:25:16.3217862Z patching file drivers/ata/sata_fsl.c
2025-10-31T05:25:16.3219899Z patching file drivers/ata/sata_gemini.c
2025-10-31T05:25:16.3221039Z patching file drivers/ata/sata_highbank.c
2025-10-31T05:25:16.3223882Z patching file drivers/ata/sata_mv.c
2025-10-31T05:25:16.3227420Z patching file drivers/ata/sata_sil.c
2025-10-31T05:25:16.3229161Z patching file drivers/ata/sata_sx4.c
2025-10-31T05:25:16.3232194Z patching file drivers/atm/atmtcp.c
2025-10-31T05:25:16.3234019Z patching file drivers/atm/eni.c
2025-10-31T05:25:16.3236610Z patching file drivers/atm/firestream.c
2025-10-31T05:25:16.3238563Z patching file drivers/atm/idt77105.c
2025-10-31T05:25:16.3240467Z patching file drivers/atm/idt77252.c
2025-10-31T05:25:16.3244636Z patching file drivers/atm/iphase.c
2025-10-31T05:25:16.3247804Z patching file drivers/atm/lanai.c
2025-10-31T05:25:16.3250781Z patching file drivers/atm/nicstar.c
2025-10-31T05:25:16.3253560Z patching file drivers/atm/solos-pci.c
2025-10-31T05:25:16.3255380Z patching file drivers/atm/uPD98402.c
2025-10-31T05:25:16.3256324Z patching file drivers/auxdisplay/ht16k33.c
2025-10-31T05:25:16.3258149Z patching file drivers/auxdisplay/img-ascii-lcd.c
2025-10-31T05:25:16.3259125Z patching file drivers/base/arch_topology.c
2025-10-31T05:25:16.3260809Z patching file drivers/base/bus.c
2025-10-31T05:25:16.3262920Z patching file drivers/base/class.c
2025-10-31T05:25:16.3265123Z patching file drivers/base/core.c
2025-10-31T05:25:16.3268984Z patching file drivers/base/cpu.c
2025-10-31T05:25:16.3270761Z patching file drivers/base/dd.c
2025-10-31T05:25:16.3273191Z patching file drivers/base/devcoredump.c
2025-10-31T05:25:16.3274950Z patching file drivers/base/devres.c
2025-10-31T05:25:16.3276589Z patching file drivers/base/devtmpfs.c
2025-10-31T05:25:16.3277553Z patching file drivers/base/driver.c
2025-10-31T05:25:16.3279118Z patching file drivers/base/firmware_loader/fallback.c
2025-10-31T05:25:16.3280290Z patching file drivers/base/firmware_loader/firmware.h
2025-10-31T05:25:16.3281488Z patching file drivers/base/firmware_loader/main.c
2025-10-31T05:25:16.3284191Z patching file drivers/base/memory.c
2025-10-31T05:25:16.3285891Z patching file drivers/base/node.c
2025-10-31T05:25:16.3287891Z patching file drivers/base/platform.c
2025-10-31T05:25:16.3290357Z patching file drivers/base/power/domain.c
2025-10-31T05:25:16.3293334Z patching file drivers/base/power/domain_governor.c
2025-10-31T05:25:16.3294665Z patching file drivers/base/power/main.c
2025-10-31T05:25:16.3298151Z patching file drivers/base/power/power.h
2025-10-31T05:25:16.3299371Z patching file drivers/base/power/runtime.c
2025-10-31T05:25:16.3302448Z patching file drivers/base/power/trace.c
2025-10-31T05:25:16.3303371Z patching file drivers/base/power/wakeirq.c
2025-10-31T05:25:16.3305362Z patching file drivers/base/power/wakeup.c
2025-10-31T05:25:16.3307293Z patching file drivers/base/property.c
2025-10-31T05:25:16.3309021Z patching file drivers/base/regmap/internal.h
2025-10-31T05:25:16.3309928Z patching file drivers/base/regmap/regcache-rbtree.c
2025-10-31T05:25:16.3311570Z patching file drivers/base/regmap/regcache.c
2025-10-31T05:25:16.3312963Z patching file drivers/base/regmap/regmap-debugfs.c
2025-10-31T05:25:16.3314563Z patching file drivers/base/regmap/regmap-i2c.c
2025-10-31T05:25:16.3315692Z patching file drivers/base/regmap/regmap-irq.c
2025-10-31T05:25:16.3317725Z patching file drivers/base/regmap/regmap-sdw.c
2025-10-31T05:25:16.3319295Z patching file drivers/base/regmap/regmap.c
2025-10-31T05:25:16.3322728Z patching file drivers/base/swnode.c
2025-10-31T05:25:16.3324403Z patching file drivers/base/test/Makefile
2025-10-31T05:25:16.3325003Z patching file drivers/base/test/test_async_driver_probe.c
2025-10-31T05:25:16.3326197Z patching file drivers/bcma/main.c
2025-10-31T05:25:16.3327525Z patching file drivers/block/Kconfig
2025-10-31T05:25:16.3328734Z patching file drivers/block/Makefile
2025-10-31T05:25:16.3329925Z patching file drivers/block/aoe/aoecmd.c
2025-10-31T05:25:16.3331785Z patching file drivers/block/aoe/aoedev.c
2025-10-31T05:25:16.3332746Z patching file drivers/block/aoe/aoenet.c
2025-10-31T05:25:16.3334216Z patching file drivers/block/ataflop.c
2025-10-31T05:25:16.3336595Z patching file drivers/block/brd.c
2025-10-31T05:25:16.3338039Z patching file drivers/block/cryptoloop.c
2025-10-31T05:25:16.3339649Z patching file drivers/block/drbd/drbd_int.h
2025-10-31T05:25:16.3343040Z patching file drivers/block/drbd/drbd_main.c
2025-10-31T05:25:16.3347476Z patching file drivers/block/drbd/drbd_nl.c
2025-10-31T05:25:16.3352799Z patching file drivers/block/drbd/drbd_receiver.c
2025-10-31T05:25:16.3357280Z patching file drivers/block/drbd/drbd_req.c
2025-10-31T05:25:16.3359538Z patching file drivers/block/drbd/drbd_state.c
2025-10-31T05:25:16.3362152Z patching file drivers/block/drbd/drbd_state_change.h
2025-10-31T05:25:16.3364218Z patching file drivers/block/floppy.c
2025-10-31T05:25:16.3368831Z patching file drivers/block/loop.c
2025-10-31T05:25:16.3371729Z patching file drivers/block/nbd.c
2025-10-31T05:25:16.3375345Z patching file drivers/block/null_blk.h
2025-10-31T05:25:16.3377252Z patching file drivers/block/null_blk/Kconfig
2025-10-31T05:25:16.3377999Z patching file drivers/block/null_blk/Makefile
2025-10-31T05:25:16.3378886Z patching file drivers/block/null_blk/main.c
2025-10-31T05:25:16.3384179Z patching file drivers/block/null_blk/null_blk.h
2025-10-31T05:25:16.3385340Z patching file drivers/block/null_blk/trace.c
2025-10-31T05:25:16.3386268Z patching file drivers/block/null_blk/trace.h
2025-10-31T05:25:16.3387305Z patching file drivers/block/null_blk/zoned.c
2025-10-31T05:25:16.3390323Z patching file drivers/block/null_blk_main.c
2025-10-31T05:25:16.3394462Z patching file drivers/block/null_blk_trace.c
2025-10-31T05:25:16.3395362Z patching file drivers/block/null_blk_trace.h
2025-10-31T05:25:16.3396489Z patching file drivers/block/null_blk_zoned.c
2025-10-31T05:25:16.3401300Z patching file drivers/block/rbd.c
2025-10-31T05:25:16.3408509Z patching file drivers/block/rnbd/rnbd-clt-sysfs.c
2025-10-31T05:25:16.3410007Z patching file drivers/block/rnbd/rnbd-clt.c
2025-10-31T05:25:16.3412244Z patching file drivers/block/rnbd/rnbd-clt.h
2025-10-31T05:25:16.3412841Z patching file drivers/block/rnbd/rnbd-proto.h
2025-10-31T05:25:16.3414018Z patching file drivers/block/rnbd/rnbd-srv.c
2025-10-31T05:25:16.3415958Z patching file drivers/block/rsxx/core.c
2025-10-31T05:25:16.3417936Z patching file drivers/block/sunvdc.c
2025-10-31T05:25:16.3419619Z patching file drivers/block/sx8.c
2025-10-31T05:25:16.3423762Z patching file drivers/block/umem.c
2025-10-31T05:25:16.3425453Z patching file drivers/block/virtio_blk.c
2025-10-31T05:25:16.3427621Z patching file drivers/block/xen-blkback/blkback.c
2025-10-31T05:25:16.3429506Z patching file drivers/block/xen-blkback/common.h
2025-10-31T05:25:16.3430707Z patching file drivers/block/xen-blkback/xenbus.c
2025-10-31T05:25:16.3433745Z patching file drivers/block/xen-blkfront.c
2025-10-31T05:25:16.3437887Z patching file drivers/block/zram/zcomp.c
2025-10-31T05:25:16.3439218Z patching file drivers/block/zram/zram_drv.c
2025-10-31T05:25:16.3441532Z patching file drivers/bluetooth/ath3k.c
2025-10-31T05:25:16.3443356Z patching file drivers/bluetooth/bfusb.c
2025-10-31T05:25:16.3444445Z patching file drivers/bluetooth/btbcm.c
2025-10-31T05:25:16.3446215Z patching file drivers/bluetooth/btintel.c
2025-10-31T05:25:16.3448105Z patching file drivers/bluetooth/btmrvl_sdio.c
2025-10-31T05:25:16.3450118Z patching file drivers/bluetooth/btmtksdio.c
2025-10-31T05:25:16.3451846Z patching file drivers/bluetooth/btmtkuart.c
2025-10-31T05:25:16.3453805Z patching file drivers/bluetooth/btqca.c
2025-10-31T05:25:16.3455019Z patching file drivers/bluetooth/btqcomsmd.c
2025-10-31T05:25:16.3456505Z patching file drivers/bluetooth/btrtl.c
2025-10-31T05:25:16.3457637Z patching file drivers/bluetooth/btsdio.c
2025-10-31T05:25:16.3459801Z patching file drivers/bluetooth/btusb.c
2025-10-31T05:25:16.3464472Z patching file drivers/bluetooth/hci_bcm.c
2025-10-31T05:25:16.3466203Z patching file drivers/bluetooth/hci_bcsp.c
2025-10-31T05:25:16.3467680Z patching file drivers/bluetooth/hci_h5.c
2025-10-31T05:25:16.3469400Z patching file drivers/bluetooth/hci_intel.c
2025-10-31T05:25:16.3478458Z patching file drivers/bluetooth/hci_ldisc.c
2025-10-31T05:25:16.3479066Z patching file drivers/bluetooth/hci_ll.c
2025-10-31T05:25:16.3479465Z patching file drivers/bluetooth/hci_nokia.c
2025-10-31T05:25:16.3479847Z patching file drivers/bluetooth/hci_qca.c
2025-10-31T05:25:16.3480232Z patching file drivers/bluetooth/hci_serdev.c
2025-10-31T05:25:16.3480907Z patching file drivers/bluetooth/hci_uart.h
2025-10-31T05:25:16.3481887Z patching file drivers/bluetooth/hci_vhci.c
2025-10-31T05:25:16.3483165Z patching file drivers/bus/Kconfig
2025-10-31T05:25:16.3484123Z patching file drivers/bus/Makefile
2025-10-31T05:25:16.3484940Z patching file drivers/bus/arm-integrator-lm.c
2025-10-31T05:25:16.3486018Z patching file drivers/bus/fsl-mc/fsl-mc-allocator.c
2025-10-31T05:25:16.3487599Z patching file drivers/bus/fsl-mc/fsl-mc-bus.c
2025-10-31T05:25:16.3489480Z patching file drivers/bus/fsl-mc/mc-io.c
2025-10-31T05:25:16.3490261Z patching file drivers/bus/fsl-mc/mc-sys.c
2025-10-31T05:25:16.3491306Z patching file drivers/bus/hisi_lpc.c
2025-10-31T05:25:16.3493010Z patching file drivers/bus/imx-weim.c
2025-10-31T05:25:16.3493815Z patching file drivers/bus/mhi/Kconfig
2025-10-31T05:25:16.3494593Z patching file drivers/bus/mhi/Makefile
2025-10-31T05:25:16.3495340Z patching file drivers/bus/mhi/core/Makefile
2025-10-31T05:25:16.3496241Z patching file drivers/bus/mhi/core/boot.c
2025-10-31T05:25:16.3498489Z patching file drivers/bus/mhi/core/debugfs.c
2025-10-31T05:25:16.3500456Z patching file drivers/bus/mhi/core/init.c
2025-10-31T05:25:16.3504116Z patching file drivers/bus/mhi/core/internal.h
2025-10-31T05:25:16.3506810Z patching file drivers/bus/mhi/core/main.c
2025-10-31T05:25:16.3510579Z patching file drivers/bus/mhi/core/pm.c
2025-10-31T05:25:16.3514198Z patching file drivers/bus/mhi/host/Kconfig
2025-10-31T05:25:16.3515255Z patching file drivers/bus/mhi/host/Makefile
2025-10-31T05:25:16.3516141Z patching file drivers/bus/mhi/host/boot.c
2025-10-31T05:25:16.3518497Z patching file drivers/bus/mhi/host/debugfs.c
2025-10-31T05:25:16.3520364Z patching file drivers/bus/mhi/host/init.c
2025-10-31T05:25:16.3524205Z patching file drivers/bus/mhi/host/internal.h
2025-10-31T05:25:16.3527064Z patching file drivers/bus/mhi/host/main.c
2025-10-31T05:25:16.3531110Z patching file drivers/bus/mhi/host/pci_generic.c
2025-10-31T05:25:16.3533090Z patching file drivers/bus/mhi/host/pm.c
2025-10-31T05:25:16.3536893Z patching file drivers/bus/mips_cdmm.c
2025-10-31T05:25:16.3538018Z patching file drivers/bus/moxtet.c
2025-10-31T05:25:16.3539573Z patching file drivers/bus/omap_l3_noc.c
2025-10-31T05:25:16.3540502Z patching file drivers/bus/qcom-ebi2.c
2025-10-31T05:25:16.3541634Z patching file drivers/bus/sunxi-rsb.c
2025-10-31T05:25:16.3544167Z patching file drivers/bus/ti-sysc.c
2025-10-31T05:25:16.3548305Z patching file drivers/cdrom/gdrom.c
2025-10-31T05:25:16.3549771Z patching file drivers/char/Kconfig
2025-10-31T05:25:16.3551184Z patching file drivers/char/agp/Kconfig
2025-10-31T05:25:16.3552262Z patching file drivers/char/agp/parisc-agp.c
2025-10-31T05:25:16.3553910Z patching file drivers/char/hpet.c
2025-10-31T05:25:16.3555832Z patching file drivers/char/hw_random/Kconfig
2025-10-31T05:25:16.3556900Z patching file drivers/char/hw_random/amd-rng.c
2025-10-31T05:25:16.3557985Z patching file drivers/char/hw_random/atmel-rng.c
2025-10-31T05:25:16.3558902Z patching file drivers/char/hw_random/cavium-rng-vf.c
2025-10-31T05:25:16.3560679Z patching file drivers/char/hw_random/cavium-rng.c
2025-10-31T05:25:16.3561496Z patching file drivers/char/hw_random/cctrng.c
2025-10-31T05:25:16.3563165Z patching file drivers/char/hw_random/core.c
2025-10-31T05:25:16.3564790Z patching file drivers/char/hw_random/exynos-trng.c
2025-10-31T05:25:16.3565617Z patching file drivers/char/hw_random/geode-rng.c
2025-10-31T05:25:16.3566769Z patching file drivers/char/hw_random/imx-rngc.c
2025-10-31T05:25:16.3568048Z patching file drivers/char/hw_random/ingenic-trng.c
2025-10-31T05:25:16.3569050Z patching file drivers/char/hw_random/iproc-rng200.c
2025-10-31T05:25:16.3570127Z patching file drivers/char/hw_random/ks-sa-rng.c
2025-10-31T05:25:16.3571143Z patching file drivers/char/hw_random/mtk-rng.c
2025-10-31T05:25:16.3572382Z patching file drivers/char/hw_random/nomadik-rng.c
2025-10-31T05:25:16.3573407Z patching file drivers/char/hw_random/omap3-rom-rng.c
2025-10-31T05:25:16.3574278Z patching file drivers/char/hw_random/st-rng.c
2025-10-31T05:25:16.3575386Z patching file drivers/char/hw_random/timeriomem-rng.c
2025-10-31T05:25:16.3576273Z patching file drivers/char/hw_random/virtio-rng.c
2025-10-31T05:25:16.3577926Z patching file drivers/char/ipmi/Kconfig
2025-10-31T05:25:16.3578712Z patching file drivers/char/ipmi/ipmb_dev_int.c
2025-10-31T05:25:16.3581177Z patching file drivers/char/ipmi/ipmi_msghandler.c
2025-10-31T05:25:16.3585595Z patching file drivers/char/ipmi/ipmi_si_intf.c
2025-10-31T05:25:16.3588296Z patching file drivers/char/ipmi/ipmi_ssif.c
2025-10-31T05:25:16.3591915Z patching file drivers/char/ipmi/ipmi_watchdog.c
2025-10-31T05:25:16.3594370Z patching file drivers/char/mem.c
2025-10-31T05:25:16.3595809Z patching file drivers/char/mwave/3780i.h
2025-10-31T05:25:16.3597502Z patching file drivers/char/pcmcia/cm4000_cs.c
2025-10-31T05:25:16.3599471Z patching file drivers/char/ppdev.c
2025-10-31T05:25:16.3601392Z patching file drivers/char/random.c
2025-10-31T05:25:16.3609766Z patching file drivers/char/tpm/eventlog/acpi.c
2025-10-31T05:25:16.3610787Z patching file drivers/char/tpm/eventlog/common.c
2025-10-31T05:25:16.3611667Z patching file drivers/char/tpm/eventlog/efi.c
2025-10-31T05:25:16.3612990Z patching file drivers/char/tpm/eventlog/of.c
2025-10-31T05:25:16.3613971Z patching file drivers/char/tpm/tpm-chip.c
2025-10-31T05:25:16.3615825Z patching file drivers/char/tpm/tpm-dev-common.c
2025-10-31T05:25:16.3616602Z patching file drivers/char/tpm/tpm-interface.c
2025-10-31T05:25:16.3617689Z patching file drivers/char/tpm/tpm.h
2025-10-31T05:25:16.3619019Z patching file drivers/char/tpm/tpm2-cmd.c
2025-10-31T05:25:16.3620336Z patching file drivers/char/tpm/tpm2-space.c
2025-10-31T05:25:16.3622192Z patching file drivers/char/tpm/tpm_crb.c
2025-10-31T05:25:16.3623727Z patching file drivers/char/tpm/tpm_ftpm_tee.c
2025-10-31T05:25:16.3624982Z patching file drivers/char/tpm/tpm_ibmvtpm.c
2025-10-31T05:25:16.3626583Z patching file drivers/char/tpm/tpm_ibmvtpm.h
2025-10-31T05:25:16.3627386Z patching file drivers/char/tpm/tpm_tis.c
2025-10-31T05:25:16.3629035Z patching file drivers/char/tpm/tpm_tis_core.c
2025-10-31T05:25:16.3631799Z patching file drivers/char/tpm/tpm_tis_core.h
2025-10-31T05:25:16.3632830Z patching file drivers/char/tpm/tpm_tis_spi_main.c
2025-10-31T05:25:16.3633914Z patching file drivers/char/tpm/tpm_vtpm_proxy.c
2025-10-31T05:25:16.3635373Z patching file drivers/char/ttyprintk.c
2025-10-31T05:25:16.3636884Z patching file drivers/char/virtio_console.c
2025-10-31T05:25:16.3639352Z patching file drivers/clk/Kconfig
2025-10-31T05:25:16.3640454Z patching file drivers/clk/actions/owl-s500.c
2025-10-31T05:25:16.3642644Z patching file drivers/clk/actions/owl-s700.c
2025-10-31T05:25:16.3643842Z patching file drivers/clk/actions/owl-s900.c
2025-10-31T05:25:16.3645478Z patching file drivers/clk/analogbits/wrpll-cln28hpc.c
2025-10-31T05:25:16.3646336Z patching file drivers/clk/at91/at91rm9200.c
2025-10-31T05:25:16.3647318Z patching file drivers/clk/at91/clk-generated.c
2025-10-31T05:25:16.3648419Z patching file drivers/clk/at91/clk-peripheral.c
2025-10-31T05:25:16.3649636Z patching file drivers/clk/at91/clk-sam9x60-pll.c
2025-10-31T05:25:16.3650734Z patching file drivers/clk/at91/pmc.c
2025-10-31T05:25:16.3651713Z patching file drivers/clk/at91/sam9x60.c
2025-10-31T05:25:16.3653164Z patching file drivers/clk/at91/sama7g5.c
2025-10-31T05:25:16.3655145Z patching file drivers/clk/baikal-t1/ccu-div.c
2025-10-31T05:25:16.3656624Z patching file drivers/clk/baikal-t1/ccu-div.h
2025-10-31T05:25:16.3657468Z patching file drivers/clk/baikal-t1/clk-ccu-div.c
2025-10-31T05:25:16.3658940Z patching file drivers/clk/bcm/clk-bcm2711-dvp.c
2025-10-31T05:25:16.3660105Z patching file drivers/clk/bcm/clk-bcm2835.c
2025-10-31T05:25:16.3662740Z patching file drivers/clk/bcm/clk-bcm53573-ilp.c
2025-10-31T05:25:16.3663605Z patching file drivers/clk/bcm/clk-iproc-pll.c
2025-10-31T05:25:16.3665312Z patching file drivers/clk/bcm/clk-raspberrypi.c
2025-10-31T05:25:16.3666429Z patching file drivers/clk/berlin/bg2.c
2025-10-31T05:25:16.3667925Z patching file drivers/clk/berlin/bg2q.c
2025-10-31T05:25:16.3668839Z patching file drivers/clk/clk-asm9260.c
2025-10-31T05:25:16.3670572Z patching file drivers/clk/clk-ast2600.c
2025-10-31T05:25:16.3672720Z patching file drivers/clk/clk-axi-clkgen.c
2025-10-31T05:25:16.3674257Z patching file drivers/clk/clk-bm1880.c
2025-10-31T05:25:16.3676048Z patching file drivers/clk/clk-cdce925.c
2025-10-31T05:25:16.3677639Z patching file drivers/clk/clk-clps711x.c
2025-10-31T05:25:16.3678451Z patching file drivers/clk/clk-conf.c
2025-10-31T05:25:16.3679444Z patching file drivers/clk/clk-devres.c
2025-10-31T05:25:16.3681227Z patching file drivers/clk/clk-divider.c
2025-10-31T05:25:16.3682450Z patching file drivers/clk/clk-fixed-rate.c
2025-10-31T05:25:16.3683630Z patching file drivers/clk/clk-fsl-sai.c
2025-10-31T05:25:16.3684727Z patching file drivers/clk/clk-npcm7xx.c
2025-10-31T05:25:16.3686225Z patching file drivers/clk/clk-oxnas.c
2025-10-31T05:25:16.3687724Z patching file drivers/clk/clk-qoriq.c
2025-10-31T05:25:16.3689617Z patching file drivers/clk/clk-s2mps11.c
2025-10-31T05:25:16.3690467Z patching file drivers/clk/clk-scmi.c
2025-10-31T05:25:16.3692123Z patching file drivers/clk/clk-si5341.c
2025-10-31T05:25:16.3695952Z patching file drivers/clk/clk-stm32f4.c
2025-10-31T05:25:16.3698370Z patching file drivers/clk/clk-versaclock5.c
2025-10-31T05:25:16.3701785Z patching file drivers/clk/clk.c
2025-10-31T05:25:16.3706701Z patching file drivers/clk/davinci/da8xx-cfgchip.c
2025-10-31T05:25:16.3707734Z patching file drivers/clk/davinci/psc.c
2025-10-31T05:25:16.3708942Z patching file drivers/clk/hisilicon/clk-hi3519.c
2025-10-31T05:25:16.3709924Z patching file drivers/clk/hisilicon/clk-hi3620.c
2025-10-31T05:25:16.3711107Z patching file drivers/clk/imx/Kconfig
2025-10-31T05:25:16.3712189Z patching file drivers/clk/imx/clk-composite-8m.c
2025-10-31T05:25:16.3713481Z patching file drivers/clk/imx/clk-imx25.c
2025-10-31T05:25:16.3714368Z patching file drivers/clk/imx/clk-imx27.c
2025-10-31T05:25:16.3715389Z patching file drivers/clk/imx/clk-imx35.c
2025-10-31T05:25:16.3716863Z patching file drivers/clk/imx/clk-imx5.c
2025-10-31T05:25:16.3718729Z patching file drivers/clk/imx/clk-imx6q.c
2025-10-31T05:25:16.3720685Z patching file drivers/clk/imx/clk-imx6sl.c
2025-10-31T05:25:16.3721843Z patching file drivers/clk/imx/clk-imx6sll.c
2025-10-31T05:25:16.3723687Z patching file drivers/clk/imx/clk-imx6sx.c
2025-10-31T05:25:16.3725546Z patching file drivers/clk/imx/clk-imx6ul.c
2025-10-31T05:25:16.3727209Z patching file drivers/clk/imx/clk-imx7d.c
2025-10-31T05:25:16.3729367Z patching file drivers/clk/imx/clk-imx7ulp.c
2025-10-31T05:25:16.3730513Z patching file drivers/clk/imx/clk-imx8mm.c
2025-10-31T05:25:16.3732638Z patching file drivers/clk/imx/clk-imx8mn.c
2025-10-31T05:25:16.3734600Z patching file drivers/clk/imx/clk-imx8mp.c
2025-10-31T05:25:16.3737507Z patching file drivers/clk/imx/clk-imx8mq.c
2025-10-31T05:25:16.3739582Z patching file drivers/clk/imx/clk-imx8qxp-lpcg.c
2025-10-31T05:25:16.3740290Z patching file drivers/clk/imx/clk-imx8qxp.c
2025-10-31T05:25:16.3741203Z patching file drivers/clk/imx/clk.c
2025-10-31T05:25:16.3742617Z patching file drivers/clk/imx/clk.h
2025-10-31T05:25:16.3744394Z patching file drivers/clk/ingenic/cgu.c
2025-10-31T05:25:16.3745592Z patching file drivers/clk/ingenic/jz4725b-cgu.c
2025-10-31T05:25:16.3746523Z patching file drivers/clk/ingenic/tcu.c
2025-10-31T05:25:16.3747928Z patching file drivers/clk/keystone/pll.c
2025-10-31T05:25:16.3749013Z patching file drivers/clk/keystone/sci-clk.c
2025-10-31T05:25:16.3750646Z patching file drivers/clk/loongson1/clk-loongson1c.c
2025-10-31T05:25:16.3751552Z patching file drivers/clk/mediatek/clk-mt2701.c
2025-10-31T05:25:16.3753734Z patching file drivers/clk/mediatek/clk-mt6765.c
2025-10-31T05:25:16.3755481Z patching file drivers/clk/mediatek/clk-mt6779.c
2025-10-31T05:25:16.3757296Z patching file drivers/clk/mediatek/clk-mt6797.c
2025-10-31T05:25:16.3758421Z patching file drivers/clk/mediatek/clk-mt7629-eth.c
2025-10-31T05:25:16.3759490Z patching file drivers/clk/mediatek/clk-mt7629.c
2025-10-31T05:25:16.3760889Z patching file drivers/clk/mediatek/clk-mt8183-mfgcfg.c
2025-10-31T05:25:16.3761677Z patching file drivers/clk/mediatek/reset.c
2025-10-31T05:25:16.3762788Z patching file drivers/clk/meson/Kconfig
2025-10-31T05:25:16.3763727Z patching file drivers/clk/meson/clk-pll.c
2025-10-31T05:25:16.3766353Z patching file drivers/clk/meson/g12a.c
2025-10-31T05:25:16.3770332Z patching file drivers/clk/meson/gxbb.c
2025-10-31T05:25:16.3773226Z patching file drivers/clk/meson/meson-aoclk.c
2025-10-31T05:25:16.3773852Z patching file drivers/clk/meson/meson-eeclk.c
2025-10-31T05:25:16.3775478Z patching file drivers/clk/meson/meson8b.c
2025-10-31T05:25:16.3777953Z patching file drivers/clk/mmp/clk-audio.c
2025-10-31T05:25:16.3779148Z patching file drivers/clk/mmp/clk-of-pxa168.c
2025-10-31T05:25:16.3780062Z patching file drivers/clk/mvebu/ap-cpu-clk.c
2025-10-31T05:25:16.3781497Z patching file drivers/clk/mvebu/armada-37xx-periph.c
2025-10-31T05:25:16.3783205Z patching file drivers/clk/mvebu/armada-37xx-xtal.c
2025-10-31T05:25:16.3783966Z patching file drivers/clk/mvebu/kirkwood.c
2025-10-31T05:25:16.3785144Z patching file drivers/clk/nxp/clk-lpc18xx-cgu.c
2025-10-31T05:25:16.3786946Z patching file drivers/clk/qcom/Kconfig
2025-10-31T05:25:16.3787820Z patching file drivers/clk/qcom/a53-pll.c
2025-10-31T05:25:16.3788705Z patching file drivers/clk/qcom/apss-ipq-pll.c
2025-10-31T05:25:16.3789541Z patching file drivers/clk/qcom/apss-ipq6018.c
2025-10-31T05:25:16.3790696Z patching file drivers/clk/qcom/camcc-sdm845.c
2025-10-31T05:25:16.3793254Z patching file drivers/clk/qcom/clk-alpha-pll.c
2025-10-31T05:25:16.3795168Z patching file drivers/clk/qcom/clk-krait.c
2025-10-31T05:25:16.3796115Z patching file drivers/clk/qcom/clk-rcg2.c
2025-10-31T05:25:16.3798080Z patching file drivers/clk/qcom/clk-regmap-mux.c
2025-10-31T05:25:16.3799050Z patching file drivers/clk/qcom/clk-rpmh.c
2025-10-31T05:25:16.3800226Z patching file drivers/clk/qcom/common.c
2025-10-31T05:25:16.3801199Z patching file drivers/clk/qcom/common.h
2025-10-31T05:25:16.3802418Z patching file drivers/clk/qcom/dispcc-sdm845.c
2025-10-31T05:25:16.3804202Z patching file drivers/clk/qcom/dispcc-sm8250.c
2025-10-31T05:25:16.3806588Z patching file drivers/clk/qcom/gcc-ipq6018.c
2025-10-31T05:25:16.3810531Z patching file drivers/clk/qcom/gcc-ipq8074.c
2025-10-31T05:25:16.3814654Z patching file drivers/clk/qcom/gcc-mdm9615.c
2025-10-31T05:25:16.3816960Z patching file drivers/clk/qcom/gcc-msm8939.c
2025-10-31T05:25:16.3820046Z patching file drivers/clk/qcom/gcc-msm8994.c
2025-10-31T05:25:16.3822934Z patching file drivers/clk/qcom/gcc-msm8996.c
2025-10-31T05:25:16.3826092Z patching file drivers/clk/qcom/gcc-msm8998.c
2025-10-31T05:25:16.3829474Z patching file drivers/clk/qcom/gcc-qcs404.c
2025-10-31T05:25:16.3832631Z patching file drivers/clk/qcom/gcc-sc7180.c
2025-10-31T05:25:16.3835818Z patching file drivers/clk/qcom/gcc-sdm845.c
2025-10-31T05:25:16.3838920Z patching file drivers/clk/qcom/gcc-sm8150.c
2025-10-31T05:25:16.3843416Z patching file drivers/clk/qcom/gcc-sm8250.c
2025-10-31T05:25:16.3847171Z patching file drivers/clk/qcom/gdsc.c
2025-10-31T05:25:16.3848856Z patching file drivers/clk/qcom/gdsc.h
2025-10-31T05:25:16.3849805Z patching file drivers/clk/qcom/gpucc-msm8998.c
2025-10-31T05:25:16.3850910Z patching file drivers/clk/qcom/gpucc-sc7180.c
2025-10-31T05:25:16.3852160Z patching file drivers/clk/qcom/gpucc-sdm845.c
2025-10-31T05:25:16.3853260Z patching file drivers/clk/qcom/gpucc-sm8150.c
2025-10-31T05:25:16.3855230Z patching file drivers/clk/qcom/mmcc-apq8084.c
2025-10-31T05:25:16.3858110Z patching file drivers/clk/qcom/mmcc-msm8974.c
2025-10-31T05:25:16.3860714Z patching file drivers/clk/qcom/mmcc-msm8998.c
2025-10-31T05:25:16.3863416Z patching file drivers/clk/qcom/reset.c
2025-10-31T05:25:16.3864174Z patching file drivers/clk/qcom/reset.h
2025-10-31T05:25:16.3865178Z patching file drivers/clk/qcom/videocc-sm8150.c
2025-10-31T05:25:16.3866307Z patching file drivers/clk/renesas/r8a77995-cpg-mssr.c
2025-10-31T05:25:16.3867343Z patching file drivers/clk/renesas/r8a779a0-cpg-mssr.c
2025-10-31T05:25:16.3868845Z patching file drivers/clk/renesas/r9a06g032-clocks.c
2025-10-31T05:25:16.3870725Z patching file drivers/clk/renesas/rcar-usb2-clock-sel.c
2025-10-31T05:25:16.3871791Z patching file drivers/clk/renesas/renesas-cpg-mssr.c
2025-10-31T05:25:16.3873937Z patching file drivers/clk/rockchip/clk-pll.c
2025-10-31T05:25:16.3875505Z patching file drivers/clk/rockchip/clk-rk3036.c
2025-10-31T05:25:16.3876488Z patching file drivers/clk/rockchip/clk-rk3128.c
2025-10-31T05:25:16.3878143Z patching file drivers/clk/rockchip/clk-rk3228.c
2025-10-31T05:25:16.3879732Z patching file drivers/clk/rockchip/clk-rk3328.c
2025-10-31T05:25:16.3881632Z patching file drivers/clk/rockchip/clk-rk3399.c
2025-10-31T05:25:16.3883916Z patching file drivers/clk/rockchip/clk.c
2025-10-31T05:25:16.3885479Z patching file drivers/clk/samsung/clk-exynos7.c
2025-10-31T05:25:16.3887547Z patching file drivers/clk/samsung/clk-pll.c
2025-10-31T05:25:16.3889172Z patching file drivers/clk/samsung/clk.c
2025-10-31T05:25:16.3890214Z patching file drivers/clk/socfpga/clk-agilex.c
2025-10-31T05:25:16.3892277Z patching file drivers/clk/socfpga/clk-gate-a10.c
2025-10-31T05:25:16.3892966Z patching file drivers/clk/socfpga/clk-gate.c
2025-10-31T05:25:16.3894085Z patching file drivers/clk/socfpga/clk-periph-s10.c
2025-10-31T05:25:16.3894953Z patching file drivers/clk/socfpga/clk-periph.c
2025-10-31T05:25:16.3895824Z patching file drivers/clk/socfpga/clk-pll.c
2025-10-31T05:25:16.3896747Z patching file drivers/clk/socfpga/clk-s10.c
2025-10-31T05:25:16.3898560Z patching file drivers/clk/sprd/common.c
2025-10-31T05:25:16.3899603Z patching file drivers/clk/st/clkgen-fsyn.c
2025-10-31T05:25:16.3901566Z patching file drivers/clk/sunxi-ng/ccu-sun50i-a100.c
2025-10-31T05:25:16.3903667Z patching file drivers/clk/sunxi-ng/ccu-sun50i-a64.c
2025-10-31T05:25:16.3905564Z patching file drivers/clk/sunxi-ng/ccu-sun50i-h6.c
2025-10-31T05:25:16.3907492Z patching file drivers/clk/sunxi-ng/ccu-sun8i-h3.c
2025-10-31T05:25:16.3909274Z patching file drivers/clk/sunxi-ng/ccu-sun8i-v3s.c
2025-10-31T05:25:16.3910409Z patching file drivers/clk/sunxi-ng/ccu_mmc_timing.c
2025-10-31T05:25:16.3911288Z patching file drivers/clk/sunxi-ng/ccu_mp.c
2025-10-31T05:25:16.3912518Z patching file drivers/clk/sunxi/clk-sun9i-mmc.c
2025-10-31T05:25:16.3913579Z patching file drivers/clk/tegra/clk-bpmp.c
2025-10-31T05:25:16.3915426Z patching file drivers/clk/tegra/clk-dfll.c
2025-10-31T05:25:16.3917448Z patching file drivers/clk/tegra/clk-id.h
2025-10-31T05:25:16.3918238Z patching file drivers/clk/tegra/clk-periph-gate.c
2025-10-31T05:25:16.3919444Z patching file drivers/clk/tegra/clk-periph.c
2025-10-31T05:25:16.3921296Z patching file drivers/clk/tegra/clk-pll.c
2025-10-31T05:25:16.3923856Z patching file drivers/clk/tegra/clk-sdmmc-mux.c
2025-10-31T05:25:16.3924842Z patching file drivers/clk/tegra/clk-tegra-periph.c
2025-10-31T05:25:16.3926942Z patching file drivers/clk/tegra/clk-tegra114.c
2025-10-31T05:25:16.3928770Z patching file drivers/clk/tegra/clk-tegra124-emc.c
2025-10-31T05:25:16.3929925Z patching file drivers/clk/tegra/clk-tegra20.c
2025-10-31T05:25:16.3933525Z patching file drivers/clk/tegra/clk-tegra210.c
2025-10-31T05:25:16.3936661Z patching file drivers/clk/tegra/clk-tegra30.c
2025-10-31T05:25:16.3938458Z patching file drivers/clk/ti/apll.c
2025-10-31T05:25:16.3939537Z patching file drivers/clk/ti/autoidle.c
2025-10-31T05:25:16.3940504Z patching file drivers/clk/ti/clk-dra7-atl.c
2025-10-31T05:25:16.3941717Z patching file drivers/clk/ti/clk.c
2025-10-31T05:25:16.3943918Z patching file drivers/clk/ti/clkctrl.c
2025-10-31T05:25:16.3945094Z patching file drivers/clk/ti/clock.h
2025-10-31T05:25:16.3946208Z patching file drivers/clk/ti/clockdomain.c
2025-10-31T05:25:16.3947127Z patching file drivers/clk/ti/composite.c
2025-10-31T05:25:16.3948393Z patching file drivers/clk/ti/divider.c
2025-10-31T05:25:16.3949696Z patching file drivers/clk/ti/dpll.c
2025-10-31T05:25:16.3951003Z patching file drivers/clk/ti/fapll.c
2025-10-31T05:25:16.3952486Z patching file drivers/clk/ti/fixed-factor.c
2025-10-31T05:25:16.3953182Z patching file drivers/clk/ti/gate.c
2025-10-31T05:25:16.3954368Z patching file drivers/clk/ti/interface.c
2025-10-31T05:25:16.3955210Z patching file drivers/clk/ti/mux.c
2025-10-31T05:25:16.3956495Z patching file drivers/clk/uniphier/clk-uniphier-fixed-rate.c
2025-10-31T05:25:16.3957164Z patching file drivers/clk/uniphier/clk-uniphier-mux.c
2025-10-31T05:25:16.3957970Z patching file drivers/clk/x86/Kconfig
2025-10-31T05:25:16.3958716Z patching file drivers/clk/x86/clk-cgu-pll.c
2025-10-31T05:25:16.3959856Z patching file drivers/clk/x86/clk-cgu.c
2025-10-31T05:25:16.3962503Z patching file drivers/clk/x86/clk-cgu.h
2025-10-31T05:25:16.3963654Z patching file drivers/clk/x86/clk-lgm.c
2025-10-31T05:25:16.3965142Z patching file drivers/clk/zynqmp/clk-mux-zynqmp.c
2025-10-31T05:25:16.3965926Z patching file drivers/clk/zynqmp/clkc.c
2025-10-31T05:25:16.3967162Z patching file drivers/clk/zynqmp/divider.c
2025-10-31T05:25:16.3968286Z patching file drivers/clk/zynqmp/pll.c
2025-10-31T05:25:16.3970111Z patching file drivers/clocksource/Kconfig
2025-10-31T05:25:16.3971189Z patching file drivers/clocksource/acpi_pm.c
2025-10-31T05:25:16.3973081Z patching file drivers/clocksource/arm_arch_timer.c
2025-10-31T05:25:16.3975044Z patching file drivers/clocksource/clps711x-timer.c
2025-10-31T05:25:16.3975930Z patching file drivers/clocksource/exynos_mct.c
2025-10-31T05:25:16.3977805Z patching file drivers/clocksource/hyperv_timer.c
2025-10-31T05:25:16.3978793Z patching file drivers/clocksource/i8253.c
2025-10-31T05:25:16.3979988Z patching file drivers/clocksource/ingenic-ost.c
2025-10-31T05:25:16.3981020Z patching file drivers/clocksource/ingenic-timer.c
2025-10-31T05:25:16.3982332Z patching file drivers/clocksource/mips-gic-timer.c
2025-10-31T05:25:16.3983589Z patching file drivers/clocksource/mxs_timer.c
2025-10-31T05:25:16.3984679Z patching file drivers/clocksource/sh_cmt.c
2025-10-31T05:25:16.3987513Z patching file drivers/clocksource/timer-atmel-tcb.c
2025-10-31T05:25:16.3988502Z patching file drivers/clocksource/timer-cadence-ttc.c
2025-10-31T05:25:16.3990232Z patching file drivers/clocksource/timer-davinci.c
2025-10-31T05:25:16.3991431Z patching file drivers/clocksource/timer-imx-gpt.c
2025-10-31T05:25:16.3992876Z patching file drivers/clocksource/timer-imx-tpm.c
2025-10-31T05:25:16.3994014Z patching file drivers/clocksource/timer-ixp4xx.c
2025-10-31T05:25:16.3995187Z patching file drivers/clocksource/timer-microchip-pit64b.c
2025-10-31T05:25:16.3996315Z patching file drivers/clocksource/timer-of.c
2025-10-31T05:25:16.3997400Z patching file drivers/clocksource/timer-of.h
2025-10-31T05:25:16.3998325Z patching file drivers/clocksource/timer-orion.c
2025-10-31T05:25:16.3999487Z patching file drivers/clocksource/timer-oxnas-rps.c
2025-10-31T05:25:16.4000573Z patching file drivers/clocksource/timer-qcom.c
2025-10-31T05:25:16.4001680Z patching file drivers/clocksource/timer-sp804.c
2025-10-31T05:25:16.4003029Z patching file drivers/clocksource/timer-stm32-lp.c
2025-10-31T05:25:16.4004219Z patching file drivers/clocksource/timer-ti-dm-systimer.c
2025-10-31T05:25:16.4006704Z patching file drivers/clocksource/timer-ti-dm.c
2025-10-31T05:25:16.4008464Z patching file drivers/counter/104-quad-8.c
2025-10-31T05:25:16.4010385Z patching file drivers/counter/Kconfig
2025-10-31T05:25:16.4011008Z patching file drivers/counter/microchip-tcb-capture.c
2025-10-31T05:25:16.4012804Z patching file drivers/counter/stm32-lptimer-cnt.c
2025-10-31T05:25:16.4015083Z patching file drivers/counter/stm32-timer-cnt.c
2025-10-31T05:25:16.4016646Z patching file drivers/counter/ti-eqep.c
2025-10-31T05:25:16.4017931Z patching file drivers/cpufreq/Kconfig.arm
2025-10-31T05:25:16.4019385Z patching file drivers/cpufreq/acpi-cpufreq.c
2025-10-31T05:25:16.4021472Z patching file drivers/cpufreq/amd_freq_sensitivity.c
2025-10-31T05:25:16.4022396Z patching file drivers/cpufreq/armada-37xx-cpufreq.c
2025-10-31T05:25:16.4024521Z patching file drivers/cpufreq/armada-8k-cpufreq.c
2025-10-31T05:25:16.4025439Z patching file drivers/cpufreq/brcmstb-avs-cpufreq.c
2025-10-31T05:25:16.4027248Z patching file drivers/cpufreq/cppc_cpufreq.c
2025-10-31T05:25:16.4028247Z patching file drivers/cpufreq/cpufreq-dt-platdev.c
2025-10-31T05:25:16.4029353Z patching file drivers/cpufreq/cpufreq-dt.c
2025-10-31T05:25:16.4031309Z patching file drivers/cpufreq/cpufreq.c
2025-10-31T05:25:16.4034835Z patching file drivers/cpufreq/cpufreq_governor.c
2025-10-31T05:25:16.4036047Z patching file drivers/cpufreq/cpufreq_governor_attr_set.c
2025-10-31T05:25:16.4036916Z patching file drivers/cpufreq/cpufreq_stats.c
2025-10-31T05:25:16.4038115Z patching file drivers/cpufreq/freq_table.c
2025-10-31T05:25:16.4039193Z patching file drivers/cpufreq/highbank-cpufreq.c
2025-10-31T05:25:16.4040089Z patching file drivers/cpufreq/imx-cpufreq-dt.c
2025-10-31T05:25:16.4041163Z patching file drivers/cpufreq/imx6q-cpufreq.c
2025-10-31T05:25:16.4043846Z patching file drivers/cpufreq/intel_pstate.c
2025-10-31T05:25:16.4046875Z patching file drivers/cpufreq/loongson1-cpufreq.c
2025-10-31T05:25:16.4047599Z patching file drivers/cpufreq/loongson2_cpufreq.c
2025-10-31T05:25:16.4048714Z patching file drivers/cpufreq/mediatek-cpufreq.c
2025-10-31T05:25:16.4050488Z patching file drivers/cpufreq/pmac32-cpufreq.c
2025-10-31T05:25:16.4052212Z patching file drivers/cpufreq/powernow-k8.c
2025-10-31T05:25:16.4054338Z patching file drivers/cpufreq/powernv-cpufreq.c
2025-10-31T05:25:16.4056126Z patching file drivers/cpufreq/qcom-cpufreq-hw.c
2025-10-31T05:25:16.4057641Z patching file drivers/cpufreq/qcom-cpufreq-nvmem.c
2025-10-31T05:25:16.4058991Z patching file drivers/cpufreq/qoriq-cpufreq.c
2025-10-31T05:25:16.4060003Z patching file drivers/cpufreq/s3c64xx-cpufreq.c
2025-10-31T05:25:16.4061129Z patching file drivers/cpufreq/scmi-cpufreq.c
2025-10-31T05:25:16.4062597Z patching file drivers/cpufreq/scpi-cpufreq.c
2025-10-31T05:25:16.4063697Z patching file drivers/cpufreq/sti-cpufreq.c
2025-10-31T05:25:16.4064791Z patching file drivers/cpufreq/sun50i-cpufreq-nvmem.c
2025-10-31T05:25:16.4065789Z patching file drivers/cpufreq/tegra20-cpufreq.c
2025-10-31T05:25:16.4066741Z patching file drivers/cpufreq/ti-cpufreq.c
2025-10-31T05:25:16.4068473Z patching file drivers/cpufreq/vexpress-spc-cpufreq.c
2025-10-31T05:25:16.4069395Z patching file drivers/cpuidle/Kconfig.arm
2025-10-31T05:25:16.4070331Z patching file drivers/cpuidle/cpuidle-psci-domain.c
2025-10-31T05:25:16.4071316Z patching file drivers/cpuidle/cpuidle-pseries.c
2025-10-31T05:25:16.4072848Z patching file drivers/cpuidle/cpuidle-tegra.c
2025-10-31T05:25:16.4073759Z patching file drivers/cpuidle/dt_idle_states.c
2025-10-31T05:25:16.4074867Z patching file drivers/cpuidle/governors/menu.c
2025-10-31T05:25:16.4076622Z patching file drivers/cpuidle/sysfs.c
2025-10-31T05:25:16.4078282Z patching file drivers/crypto/Kconfig
2025-10-31T05:25:16.4079765Z patching file drivers/crypto/allwinner/Kconfig
2025-10-31T05:25:16.4080792Z patching file drivers/crypto/allwinner/sun4i-ss/sun4i-ss-cipher.c
2025-10-31T05:25:16.4083256Z patching file drivers/crypto/allwinner/sun4i-ss/sun4i-ss.h
2025-10-31T05:25:16.4084148Z patching file drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c
2025-10-31T05:25:16.4085725Z patching file drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
2025-10-31T05:25:16.4086930Z patching file drivers/crypto/allwinner/sun8i-ce/sun8i-ce-hash.c
2025-10-31T05:25:16.4088249Z patching file drivers/crypto/allwinner/sun8i-ce/sun8i-ce.h
2025-10-31T05:25:16.4089397Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c
2025-10-31T05:25:16.4091321Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
2025-10-31T05:25:16.4093211Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss-hash.c
2025-10-31T05:25:16.4094298Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss-prng.c
2025-10-31T05:25:16.4095229Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss.h
2025-10-31T05:25:16.4097002Z patching file drivers/crypto/amcc/crypto4xx_core.c
2025-10-31T05:25:16.4099109Z patching file drivers/crypto/amlogic/amlogic-gxl-cipher.c
2025-10-31T05:25:16.4099928Z patching file drivers/crypto/amlogic/amlogic-gxl-core.c
2025-10-31T05:25:16.4100868Z patching file drivers/crypto/amlogic/amlogic-gxl.h
2025-10-31T05:25:16.4101756Z patching file drivers/crypto/atmel-sha204a.c
2025-10-31T05:25:16.4103410Z patching file drivers/crypto/atmel-tdes.c
2025-10-31T05:25:16.4106084Z patching file drivers/crypto/bcm/cipher.c
2025-10-31T05:25:16.4109248Z patching file drivers/crypto/bcm/cipher.h
2025-10-31T05:25:16.4110424Z patching file drivers/crypto/bcm/spu2.c
2025-10-31T05:25:16.4112452Z patching file drivers/crypto/bcm/util.c
2025-10-31T05:25:16.4114530Z patching file drivers/crypto/caam/caamalg.c
2025-10-31T05:25:16.4117740Z patching file drivers/crypto/caam/caamalg_qi.c
2025-10-31T05:25:16.4121205Z patching file drivers/crypto/caam/caamalg_qi2.c
2025-10-31T05:25:16.4125035Z patching file drivers/crypto/caam/caampkc.c
2025-10-31T05:25:16.4128638Z patching file drivers/crypto/caam/ctrl.c
2025-10-31T05:25:16.4130328Z patching file drivers/crypto/caam/qi.c
2025-10-31T05:25:16.4131913Z patching file drivers/crypto/caam/regs.h
2025-10-31T05:25:16.4133939Z patching file drivers/crypto/cavium/cpt/cptpf_main.c
2025-10-31T05:25:16.4135207Z patching file drivers/crypto/cavium/nitrox/nitrox_isr.c
2025-10-31T05:25:16.4136354Z patching file drivers/crypto/cavium/nitrox/nitrox_main.c
2025-10-31T05:25:16.4137479Z patching file drivers/crypto/cavium/nitrox/nitrox_mbx.c
2025-10-31T05:25:16.4138474Z patching file drivers/crypto/ccp/ccp-debugfs.c
2025-10-31T05:25:16.4139589Z patching file drivers/crypto/ccp/ccp-dmaengine.c
2025-10-31T05:25:16.4141671Z patching file drivers/crypto/ccp/ccp-ops.c
2025-10-31T05:25:16.4144216Z patching file drivers/crypto/ccp/psp-dev.c
2025-10-31T05:25:16.4145156Z patching file drivers/crypto/ccp/sev-dev.c
2025-10-31T05:25:16.4148418Z patching file drivers/crypto/ccp/sev-dev.h
2025-10-31T05:25:16.4148817Z patching file drivers/crypto/ccp/sp-pci.c
2025-10-31T05:25:16.4150393Z patching file drivers/crypto/ccp/sp-platform.c
2025-10-31T05:25:16.4151243Z patching file drivers/crypto/ccp/tee-dev.c
2025-10-31T05:25:16.4152762Z patching file drivers/crypto/ccp/tee-dev.h
2025-10-31T05:25:16.4154427Z patching file drivers/crypto/ccree/cc_buffer_mgr.c
2025-10-31T05:25:16.4156812Z patching file drivers/crypto/ccree/cc_cipher.c
2025-10-31T05:25:16.4158477Z patching file drivers/crypto/ccree/cc_debugfs.c
2025-10-31T05:25:16.4159213Z patching file drivers/crypto/ccree/cc_driver.c
2025-10-31T05:25:16.4161809Z patching file drivers/crypto/chelsio/chcr_algo.c
2025-10-31T05:25:16.4165712Z patching file drivers/crypto/hisilicon/hpre/hpre_crypto.c
2025-10-31T05:25:16.4167229Z patching file drivers/crypto/hisilicon/hpre/hpre_main.c
2025-10-31T05:25:16.4169531Z patching file drivers/crypto/hisilicon/qm.c
2025-10-31T05:25:16.4172677Z patching file drivers/crypto/hisilicon/qm.h
2025-10-31T05:25:16.4173830Z patching file drivers/crypto/hisilicon/sec/sec_algs.c
2025-10-31T05:25:16.4175742Z patching file drivers/crypto/hisilicon/sec/sec_drv.h
2025-10-31T05:25:16.4176589Z patching file drivers/crypto/hisilicon/sec2/sec.h
2025-10-31T05:25:16.4178225Z patching file drivers/crypto/hisilicon/sec2/sec_crypto.c
2025-10-31T05:25:16.4181465Z patching file drivers/crypto/hisilicon/sec2/sec_crypto.h
2025-10-31T05:25:16.4181886Z patching file drivers/crypto/hisilicon/sgl.c
2025-10-31T05:25:16.4183312Z patching file drivers/crypto/hisilicon/zip/zip_crypto.c
2025-10-31T05:25:16.4184955Z patching file drivers/crypto/img-hash.c
2025-10-31T05:25:16.4187093Z patching file drivers/crypto/inside-secure/safexcel.c
2025-10-31T05:25:16.4189991Z patching file drivers/crypto/inside-secure/safexcel_hash.c
2025-10-31T05:25:16.4193061Z patching file drivers/crypto/ixp4xx_crypto.c
2025-10-31T05:25:16.4195235Z patching file drivers/crypto/marvell/cesa/cesa.c
2025-10-31T05:25:16.4196363Z patching file drivers/crypto/marvell/cesa/cesa.h
2025-10-31T05:25:16.4198135Z patching file drivers/crypto/marvell/cesa/cipher.c
2025-10-31T05:25:16.4199894Z patching file drivers/crypto/marvell/cesa/hash.c
2025-10-31T05:25:16.4201890Z patching file drivers/crypto/marvell/cesa/tdma.c
2025-10-31T05:25:16.4203907Z patching file drivers/crypto/marvell/octeontx/otx_cptpf_ucode.c
2025-10-31T05:25:16.4205997Z patching file drivers/crypto/mxs-dcp.c
2025-10-31T05:25:16.4208427Z patching file drivers/crypto/n2_core.c
2025-10-31T05:25:16.4210593Z patching file drivers/crypto/nx/Makefile
2025-10-31T05:25:16.4211452Z patching file drivers/crypto/nx/nx-842-pseries.c
2025-10-31T05:25:16.4213424Z patching file drivers/crypto/nx/nx-aes-ctr.c
2025-10-31T05:25:16.4214287Z patching file drivers/crypto/nx/nx-common-powernv.c
2025-10-31T05:25:16.4215874Z patching file drivers/crypto/nx/nx.h
2025-10-31T05:25:16.4216923Z patching file drivers/crypto/omap-aes.c
2025-10-31T05:25:16.4219074Z patching file drivers/crypto/omap-des.c
2025-10-31T05:25:16.4221110Z patching file drivers/crypto/omap-sham.c
2025-10-31T05:25:16.4223731Z patching file drivers/crypto/qat/qat_c3xxx/adf_c3xxx_hw_data.c
2025-10-31T05:25:16.4224556Z patching file drivers/crypto/qat/qat_c3xxx/adf_c3xxx_hw_data.h
2025-10-31T05:25:16.4225288Z patching file drivers/crypto/qat/qat_c3xxx/adf_drv.c
2025-10-31T05:25:16.4226348Z patching file drivers/crypto/qat/qat_c3xxxvf/adf_c3xxxvf_hw_data.c
2025-10-31T05:25:16.4227174Z patching file drivers/crypto/qat/qat_c3xxxvf/adf_drv.c
2025-10-31T05:25:16.4228253Z patching file drivers/crypto/qat/qat_c62x/adf_c62x_hw_data.c
2025-10-31T05:25:16.4229309Z patching file drivers/crypto/qat/qat_c62x/adf_c62x_hw_data.h
2025-10-31T05:25:16.4230109Z patching file drivers/crypto/qat/qat_c62x/adf_drv.c
2025-10-31T05:25:16.4231217Z patching file drivers/crypto/qat/qat_c62xvf/adf_c62xvf_hw_data.c
2025-10-31T05:25:16.4232649Z patching file drivers/crypto/qat/qat_c62xvf/adf_drv.c
2025-10-31T05:25:16.4233745Z patching file drivers/crypto/qat/qat_common/adf_accel_devices.h
2025-10-31T05:25:16.4235004Z patching file drivers/crypto/qat/qat_common/adf_aer.c
2025-10-31T05:25:16.4236083Z patching file drivers/crypto/qat/qat_common/adf_common_drv.h
2025-10-31T05:25:16.4237151Z patching file drivers/crypto/qat/qat_common/adf_init.c
2025-10-31T05:25:16.4238352Z patching file drivers/crypto/qat/qat_common/adf_isr.c
2025-10-31T05:25:16.4239822Z patching file drivers/crypto/qat/qat_common/adf_pf2vf_msg.c
2025-10-31T05:25:16.4241466Z patching file drivers/crypto/qat/qat_common/adf_transport.c
2025-10-31T05:25:16.4242792Z patching file drivers/crypto/qat/qat_common/adf_transport_debug.c
2025-10-31T05:25:16.4243923Z patching file drivers/crypto/qat/qat_common/adf_vf2pf_msg.c
2025-10-31T05:25:16.4245010Z patching file drivers/crypto/qat/qat_common/adf_vf_isr.c
2025-10-31T05:25:16.4252208Z patching file drivers/crypto/qat/qat_common/qat_algs.c
2025-10-31T05:25:16.4253249Z patching file drivers/crypto/qat/qat_common/qat_crypto.c
2025-10-31T05:25:16.4254233Z patching file drivers/crypto/qat/qat_common/qat_crypto.h
2025-10-31T05:25:16.4255194Z patching file drivers/crypto/qat/qat_common/qat_hal.c
2025-10-31T05:25:16.4256131Z patching file drivers/crypto/qat/qat_common/qat_uclo.c
2025-10-31T05:25:16.4257142Z patching file drivers/crypto/qat/qat_dh895xcc/adf_dh895xcc_hw_data.c
2025-10-31T05:25:16.4258180Z patching file drivers/crypto/qat/qat_dh895xcc/adf_drv.c
2025-10-31T05:25:16.4259222Z patching file drivers/crypto/qat/qat_dh895xccvf/adf_dh895xccvf_hw_data.c
2025-10-31T05:25:16.4260294Z patching file drivers/crypto/qat/qat_dh895xccvf/adf_drv.c
2025-10-31T05:25:16.4261191Z patching file drivers/crypto/qce/core.c
2025-10-31T05:25:16.4262196Z patching file drivers/crypto/qce/sha.c
2025-10-31T05:25:16.4263007Z patching file drivers/crypto/qce/skcipher.c
2025-10-31T05:25:16.4263811Z patching file drivers/crypto/qcom-rng.c
2025-10-31T05:25:16.4264891Z patching file drivers/crypto/rockchip/rk3288_crypto.c
2025-10-31T05:25:16.4265824Z patching file drivers/crypto/rockchip/rk3288_crypto.h
2025-10-31T05:25:16.4266791Z patching file drivers/crypto/rockchip/rk3288_crypto_ahash.c
2025-10-31T05:25:16.4267803Z patching file drivers/crypto/rockchip/rk3288_crypto_skcipher.c
2025-10-31T05:25:16.4268392Z patching file drivers/crypto/s5p-sss.c
2025-10-31T05:25:16.4269318Z patching file drivers/crypto/sa2ul.c
2025-10-31T05:25:16.4271770Z patching file drivers/crypto/sahara.c
2025-10-31T05:25:16.4274698Z patching file drivers/crypto/stm32/stm32-crc32.c
2025-10-31T05:25:16.4276033Z patching file drivers/crypto/stm32/stm32-cryp.c
2025-10-31T05:25:16.4280601Z patching file drivers/crypto/stm32/stm32-hash.c
2025-10-31T05:25:16.4283076Z patching file drivers/crypto/talitos.c
2025-10-31T05:25:16.4285932Z patching file drivers/crypto/talitos.h
2025-10-31T05:25:16.4287372Z patching file drivers/crypto/ux500/hash/hash_core.c
2025-10-31T05:25:16.4288910Z patching file drivers/crypto/virtio/Kconfig
2025-10-31T05:25:16.4289751Z patching file drivers/crypto/virtio/Makefile
2025-10-31T05:25:16.4290711Z patching file drivers/crypto/virtio/virtio_crypto_akcipher_algs.c
2025-10-31T05:25:16.4292827Z patching file drivers/crypto/virtio/virtio_crypto_algs.c
2025-10-31T05:25:16.4294323Z patching file drivers/crypto/virtio/virtio_crypto_common.h
2025-10-31T05:25:16.4295367Z patching file drivers/crypto/virtio/virtio_crypto_core.c
2025-10-31T05:25:16.4296663Z patching file drivers/crypto/virtio/virtio_crypto_mgr.c
2025-10-31T05:25:16.4297547Z patching file drivers/crypto/vmx/Kconfig
2025-10-31T05:25:16.4298436Z patching file drivers/crypto/xilinx/zynqmp-aes-gcm.c
2025-10-31T05:25:16.4299696Z patching file drivers/dax/bus.c
2025-10-31T05:25:16.4301651Z patching file drivers/dax/dax-private.h
2025-10-31T05:25:16.4302588Z patching file drivers/dax/hmem/device.c
2025-10-31T05:25:16.4303375Z patching file drivers/dax/kmem.c
2025-10-31T05:25:16.4304194Z patching file drivers/dax/super.c
2025-10-31T05:25:16.4305815Z patching file drivers/devfreq/devfreq.c
2025-10-31T05:25:16.4308224Z patching file drivers/devfreq/event/exynos-ppmu.c
2025-10-31T05:25:16.4309404Z patching file drivers/devfreq/event/rockchip-dfi.c
2025-10-31T05:25:16.4310387Z patching file drivers/devfreq/governor_userspace.c
2025-10-31T05:25:16.4311269Z patching file drivers/devfreq/rk3399_dmc.c
2025-10-31T05:25:16.4312248Z patching file drivers/dio/dio.c
2025-10-31T05:25:16.4313360Z patching file drivers/dma-buf/Kconfig
2025-10-31T05:25:16.4314417Z patching file drivers/dma-buf/dma-buf.c
2025-10-31T05:25:16.4315889Z patching file drivers/dma-buf/dma-fence-array.c
2025-10-31T05:25:16.4316757Z patching file drivers/dma-buf/dma-heap.c
2025-10-31T05:25:16.4317914Z patching file drivers/dma-buf/dma-resv.c
2025-10-31T05:25:16.4319093Z patching file drivers/dma-buf/heaps/heap-helpers.c
2025-10-31T05:25:16.4319990Z patching file drivers/dma-buf/sw_sync.c
2025-10-31T05:25:16.4320995Z patching file drivers/dma-buf/sync_debug.c
2025-10-31T05:25:16.4321838Z patching file drivers/dma-buf/sync_file.c
2025-10-31T05:25:16.4323135Z patching file drivers/dma-buf/udmabuf.c
2025-10-31T05:25:16.4324476Z patching file drivers/dma/Kconfig
2025-10-31T05:25:16.4325871Z patching file drivers/dma/acpi-dma.c
2025-10-31T05:25:16.4327498Z patching file drivers/dma/at_hdmac.c
2025-10-31T05:25:16.4329958Z patching file drivers/dma/at_hdmac_regs.h
2025-10-31T05:25:16.4331398Z patching file drivers/dma/at_xdmac.c
2025-10-31T05:25:16.4334280Z patching file drivers/dma/bestcomm/ata.c
2025-10-31T05:25:16.4335122Z patching file drivers/dma/bestcomm/bestcomm.c
2025-10-31T05:25:16.4336118Z patching file drivers/dma/bestcomm/fec.c
2025-10-31T05:25:16.4337016Z patching file drivers/dma/bestcomm/gen_bd.c
2025-10-31T05:25:16.4338198Z patching file drivers/dma/dma-axi-dmac.c
2025-10-31T05:25:16.4339890Z patching file drivers/dma/dmaengine.c
2025-10-31T05:25:16.4341327Z patching file drivers/dma/dmaengine.h
2025-10-31T05:25:16.4342560Z patching file drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c
2025-10-31T05:25:16.4344096Z patching file drivers/dma/dw-edma/dw-edma-core.c
2025-10-31T05:25:16.4345438Z patching file drivers/dma/dw/Kconfig
2025-10-31T05:25:16.4346222Z patching file drivers/dma/dw/acpi.c
2025-10-31T05:25:16.4347204Z patching file drivers/dma/dw/core.c
2025-10-31T05:25:16.4348929Z patching file drivers/dma/dw/internal.h
2025-10-31T05:25:16.4349724Z patching file drivers/dma/dw/pci.c
2025-10-31T05:25:16.4350644Z patching file drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.c
2025-10-31T05:25:16.4352360Z patching file drivers/dma/fsl-qdma.c
2025-10-31T05:25:16.4354714Z patching file drivers/dma/fsldma.c
2025-10-31T05:25:16.4356059Z patching file drivers/dma/hisi_dma.c
2025-10-31T05:25:16.4357263Z patching file drivers/dma/hsu/pci.c
2025-10-31T05:25:16.4358284Z patching file drivers/dma/idma64.c
2025-10-31T05:25:16.4359382Z patching file drivers/dma/idxd/cdev.c
2025-10-31T05:25:16.4360725Z patching file drivers/dma/idxd/device.c
2025-10-31T05:25:16.4362163Z patching file drivers/dma/idxd/dma.c
2025-10-31T05:25:16.4363405Z patching file drivers/dma/idxd/idxd.h
2025-10-31T05:25:16.4364527Z patching file drivers/dma/idxd/init.c
2025-10-31T05:25:16.4365519Z patching file drivers/dma/idxd/irq.c
2025-10-31T05:25:16.4366508Z patching file drivers/dma/idxd/submit.c
2025-10-31T05:25:16.4367567Z patching file drivers/dma/idxd/sysfs.c
2025-10-31T05:25:16.4369645Z patching file drivers/dma/imx-dma.c
2025-10-31T05:25:16.4371508Z patching file drivers/dma/imx-sdma.c
2025-10-31T05:25:16.4373885Z patching file drivers/dma/ioat/dma.c
2025-10-31T05:25:16.4375613Z patching file drivers/dma/ioat/init.c
2025-10-31T05:25:16.4377366Z patching file drivers/dma/ioat/registers.h
2025-10-31T05:25:16.4378216Z patching file drivers/dma/mcf-edma.c
2025-10-31T05:25:16.4379430Z patching file drivers/dma/mediatek/mtk-cqdma.c
2025-10-31T05:25:16.4380768Z patching file drivers/dma/mediatek/mtk-hsdma.c
2025-10-31T05:25:16.4382183Z patching file drivers/dma/mediatek/mtk-uart-apdma.c
2025-10-31T05:25:16.4383615Z patching file drivers/dma/milbeaut-xdmac.c
2025-10-31T05:25:16.4384808Z patching file drivers/dma/mmp_pdma.c
2025-10-31T05:25:16.4386467Z patching file drivers/dma/mv_xor.c
2025-10-31T05:25:16.4388407Z patching file drivers/dma/mv_xor_v2.c
2025-10-31T05:25:16.4389475Z patching file drivers/dma/mxs-dma.c
2025-10-31T05:25:16.4391295Z patching file drivers/dma/nbpfaxi.c
2025-10-31T05:25:16.4393222Z patching file drivers/dma/of-dma.c
2025-10-31T05:25:16.4394409Z patching file drivers/dma/owl-dma.c
2025-10-31T05:25:16.4396510Z patching file drivers/dma/pl330.c
2025-10-31T05:25:16.4399022Z patching file drivers/dma/plx_dma.c
2025-10-31T05:25:16.4400388Z patching file drivers/dma/pxa_dma.c
2025-10-31T05:25:16.4401828Z patching file drivers/dma/qcom/Kconfig
2025-10-31T05:25:16.4403010Z patching file drivers/dma/qcom/bam_dma.c
2025-10-31T05:25:16.4404470Z patching file drivers/dma/qcom/hidma_mgmt.c
2025-10-31T05:25:16.4405432Z patching file drivers/dma/sf-pdma/Kconfig
2025-10-31T05:25:16.4406250Z patching file drivers/dma/sf-pdma/sf-pdma.c
2025-10-31T05:25:16.4407909Z patching file drivers/dma/sh/rcar-dmac.c
2025-10-31T05:25:16.4409635Z patching file drivers/dma/sh/shdma.h
2025-10-31T05:25:16.4410488Z patching file drivers/dma/sh/usb-dmac.c
2025-10-31T05:25:16.4412108Z patching file drivers/dma/sprd-dma.c
2025-10-31T05:25:16.4413843Z patching file drivers/dma/st_fdma.c
2025-10-31T05:25:16.4415890Z patching file drivers/dma/ste_dma40.c
2025-10-31T05:25:16.4418594Z patching file drivers/dma/stm32-dma.c
2025-10-31T05:25:16.4419987Z patching file drivers/dma/stm32-dmamux.c
2025-10-31T05:25:16.4421429Z patching file drivers/dma/stm32-mdma.c
2025-10-31T05:25:16.4424228Z patching file drivers/dma/tegra20-apb-dma.c
2025-10-31T05:25:16.4425986Z patching file drivers/dma/tegra210-adma.c
2025-10-31T05:25:16.4427168Z patching file drivers/dma/ti/dma-crossbar.c
2025-10-31T05:25:16.4428945Z patching file drivers/dma/ti/edma.c
2025-10-31T05:25:16.4430942Z patching file drivers/dma/ti/k3-udma-private.c
2025-10-31T05:25:16.4432577Z patching file drivers/dma/ti/k3-udma.c
2025-10-31T05:25:16.4435336Z patching file drivers/dma/uniphier-xdmac.c
2025-10-31T05:25:16.4437263Z patching file drivers/dma/xilinx/xilinx_dma.c
2025-10-31T05:25:16.4440145Z patching file drivers/dma/xilinx/xilinx_dpdma.c
2025-10-31T05:25:16.4442478Z patching file drivers/dma/xilinx/zynqmp_dma.c
2025-10-31T05:25:16.4443712Z patching file drivers/edac/Makefile
2025-10-31T05:25:16.4445060Z patching file drivers/edac/altera_edac.c
2025-10-31T05:25:16.4447076Z patching file drivers/edac/altera_edac.h
2025-10-31T05:25:16.4448899Z patching file drivers/edac/amd64_edac.c
2025-10-31T05:25:16.4451678Z patching file drivers/edac/armada_xp_edac.c
2025-10-31T05:25:16.4452822Z patching file drivers/edac/bluefield_edac.c
2025-10-31T05:25:16.4453898Z patching file drivers/edac/dmc520_edac.c
2025-10-31T05:25:16.4455157Z patching file drivers/edac/edac_device.c
2025-10-31T05:25:16.4456616Z patching file drivers/edac/edac_mc.c
2025-10-31T05:25:16.4457836Z patching file drivers/edac/edac_module.h
2025-10-31T05:25:16.4458815Z patching file drivers/edac/fsl_ddr_edac.c
2025-10-31T05:25:16.4459980Z patching file drivers/edac/ghes_edac.c
2025-10-31T05:25:16.4461139Z patching file drivers/edac/highbank_mc_edac.c
2025-10-31T05:25:16.4462128Z patching file drivers/edac/i10nm_base.c
2025-10-31T05:25:16.4463543Z patching file drivers/edac/ie31200_edac.c
2025-10-31T05:25:16.4465286Z patching file drivers/edac/mce_amd.c
2025-10-31T05:25:16.4466993Z patching file drivers/edac/pnd2_edac.c
2025-10-31T05:25:16.4468384Z patching file drivers/edac/qcom_edac.c
2025-10-31T05:25:16.4470314Z patching file drivers/edac/sb_edac.c
2025-10-31T05:25:16.4473510Z patching file drivers/edac/skx_base.c
2025-10-31T05:25:16.4474634Z patching file drivers/edac/skx_common.c
2025-10-31T05:25:16.4476371Z patching file drivers/edac/skx_common.h
2025-10-31T05:25:16.4477486Z patching file drivers/edac/synopsys_edac.c
2025-10-31T05:25:16.4479631Z patching file drivers/edac/thunderx_edac.c
2025-10-31T05:25:16.4481439Z patching file drivers/edac/ti_edac.c
2025-10-31T05:25:16.4482887Z patching file drivers/edac/xgene_edac.c
2025-10-31T05:25:16.4484685Z patching file drivers/extcon/Kconfig
2025-10-31T05:25:16.4485988Z patching file drivers/extcon/extcon-arizona.c
2025-10-31T05:25:16.4487719Z patching file drivers/extcon/extcon-intel-mrfld.c
2025-10-31T05:25:16.4488770Z patching file drivers/extcon/extcon-max77693.c
2025-10-31T05:25:16.4490184Z patching file drivers/extcon/extcon-max8997.c
2025-10-31T05:25:16.4491308Z patching file drivers/extcon/extcon-ptn5150.c
2025-10-31T05:25:16.4492493Z patching file drivers/extcon/extcon-sm5502.c
2025-10-31T05:25:16.4493820Z patching file drivers/extcon/extcon.c
2025-10-31T05:25:16.4495615Z patching file drivers/firewire/core-card.c
2025-10-31T05:25:16.4497088Z patching file drivers/firewire/core-cdev.c
2025-10-31T05:25:16.4498993Z patching file drivers/firewire/core-device.c
2025-10-31T05:25:16.4500293Z patching file drivers/firewire/core-topology.c
2025-10-31T05:25:16.4501597Z patching file drivers/firewire/core-transaction.c
2025-10-31T05:25:16.4503500Z patching file drivers/firewire/nosy.c
2025-10-31T05:25:16.4505534Z patching file drivers/firewire/ohci.c
2025-10-31T05:25:16.4508450Z patching file drivers/firewire/sbp2.c
2025-10-31T05:25:16.4509909Z patching file drivers/firmware/Kconfig
2025-10-31T05:25:16.4510957Z patching file drivers/firmware/arm_scmi/base.c
2025-10-31T05:25:16.4511845Z patching file drivers/firmware/arm_scmi/bus.c
2025-10-31T05:25:16.4512905Z patching file drivers/firmware/arm_scmi/clock.c
2025-10-31T05:25:16.4513880Z patching file drivers/firmware/arm_scmi/common.h
2025-10-31T05:25:16.4514943Z patching file drivers/firmware/arm_scmi/driver.c
2025-10-31T05:25:16.4516442Z patching file drivers/firmware/arm_scmi/mailbox.c
2025-10-31T05:25:16.4517691Z patching file drivers/firmware/arm_scmi/notify.c
2025-10-31T05:25:16.4519174Z patching file drivers/firmware/arm_scmi/reset.c
2025-10-31T05:25:16.4520106Z patching file drivers/firmware/arm_scmi/scmi_pm_domain.c
2025-10-31T05:25:16.4521224Z patching file drivers/firmware/arm_scmi/shmem.c
2025-10-31T05:25:16.4522207Z patching file drivers/firmware/arm_scpi.c
2025-10-31T05:25:16.4523869Z patching file drivers/firmware/arm_sdei.c
2025-10-31T05:25:16.4525874Z patching file drivers/firmware/broadcom/tee_bnxt_fw.c
2025-10-31T05:25:16.4526772Z patching file drivers/firmware/dmi-id.c
2025-10-31T05:25:16.4527606Z patching file drivers/firmware/dmi-sysfs.c
2025-10-31T05:25:16.4528904Z patching file drivers/firmware/dmi_scan.c
2025-10-31T05:25:16.4530339Z patching file drivers/firmware/efi/apple-properties.c
2025-10-31T05:25:16.4531382Z patching file drivers/firmware/efi/arm-runtime.c
2025-10-31T05:25:16.4532451Z patching file drivers/firmware/efi/capsule-loader.c
2025-10-31T05:25:16.4533478Z patching file drivers/firmware/efi/cper.c
2025-10-31T05:25:16.4534687Z patching file drivers/firmware/efi/efi-init.c
2025-10-31T05:25:16.4535716Z patching file drivers/firmware/efi/efi-pstore.c
2025-10-31T05:25:16.4536802Z patching file drivers/firmware/efi/efi.c
2025-10-31T05:25:16.4538311Z patching file drivers/firmware/efi/fdtparams.c
2025-10-31T05:25:16.4539223Z patching file drivers/firmware/efi/libstub/Makefile
2025-10-31T05:25:16.4540205Z patching file drivers/firmware/efi/libstub/arm64-stub.c
2025-10-31T05:25:16.4541296Z patching file drivers/firmware/efi/libstub/efi-stub.c
2025-10-31T05:25:16.4542531Z patching file drivers/firmware/efi/libstub/efistub.h
2025-10-31T05:25:16.4543747Z patching file drivers/firmware/efi/libstub/fdt.c
2025-10-31T05:25:16.4544665Z patching file drivers/firmware/efi/libstub/file.c
2025-10-31T05:25:16.4545582Z patching file drivers/firmware/efi/libstub/random.c
2025-10-31T05:25:16.4546533Z patching file drivers/firmware/efi/libstub/randomalloc.c
2025-10-31T05:25:16.4547496Z patching file drivers/firmware/efi/libstub/relocate.c
2025-10-31T05:25:16.4548439Z patching file drivers/firmware/efi/libstub/riscv-stub.c
2025-10-31T05:25:16.4549388Z patching file drivers/firmware/efi/libstub/secureboot.c
2025-10-31T05:25:16.4550316Z patching file drivers/firmware/efi/libstub/tpm.c
2025-10-31T05:25:16.4551231Z patching file drivers/firmware/efi/libstub/x86-stub.c
2025-10-31T05:25:16.4552270Z patching file drivers/firmware/efi/memattr.c
2025-10-31T05:25:16.4553302Z patching file drivers/firmware/efi/memmap.c
2025-10-31T05:25:16.4554339Z patching file drivers/firmware/efi/mokvar-table.c
2025-10-31T05:25:16.4555359Z patching file drivers/firmware/efi/riscv-runtime.c
2025-10-31T05:25:16.4556302Z patching file drivers/firmware/efi/runtime-wrappers.c
2025-10-31T05:25:16.4557310Z patching file drivers/firmware/efi/tpm.c
2025-10-31T05:25:16.4558459Z patching file drivers/firmware/efi/vars.c
2025-10-31T05:25:16.4559918Z patching file drivers/firmware/google/Kconfig
2025-10-31T05:25:16.4560830Z patching file drivers/firmware/google/coreboot_table.c
2025-10-31T05:25:16.4561836Z patching file drivers/firmware/google/framebuffer-coreboot.c
2025-10-31T05:25:16.4562932Z patching file drivers/firmware/google/gsmi.c
2025-10-31T05:25:16.4564037Z patching file drivers/firmware/imx/Kconfig
2025-10-31T05:25:16.4564865Z patching file drivers/firmware/imx/imx-scu.c
2025-10-31T05:25:16.4565845Z patching file drivers/firmware/iscsi_ibft.c
2025-10-31T05:25:16.4567083Z patching file drivers/firmware/meson/meson_sm.c
2025-10-31T05:25:16.4568243Z patching file drivers/firmware/psci/psci.c
2025-10-31T05:25:16.4569295Z patching file drivers/firmware/psci/psci_checker.c
2025-10-31T05:25:16.4570227Z patching file drivers/firmware/qcom_scm-smc.c
2025-10-31T05:25:16.4571345Z patching file drivers/firmware/qcom_scm.c
2025-10-31T05:25:16.4573330Z patching file drivers/firmware/qcom_scm.h
2025-10-31T05:25:16.4574186Z patching file drivers/firmware/qemu_fw_cfg.c
2025-10-31T05:25:16.4575626Z patching file drivers/firmware/raspberrypi.c
2025-10-31T05:25:16.4576837Z patching file drivers/firmware/scpi_pm_domain.c
2025-10-31T05:25:16.4577741Z patching file drivers/firmware/smccc/soc_id.c
2025-10-31T05:25:16.4578753Z patching file drivers/firmware/stratix10-svc.c
2025-10-31T05:25:16.4580216Z patching file drivers/firmware/tegra/Makefile
2025-10-31T05:25:16.4581098Z patching file drivers/firmware/tegra/bpmp-debugfs.c
2025-10-31T05:25:16.4582291Z patching file drivers/firmware/tegra/bpmp-private.h
2025-10-31T05:25:16.4583237Z patching file drivers/firmware/tegra/bpmp-tegra210.c
2025-10-31T05:25:16.4584135Z patching file drivers/firmware/tegra/bpmp.c
2025-10-31T05:25:16.4586288Z patching file drivers/firmware/ti_sci.c
2025-10-31T05:25:16.4588760Z patching file drivers/firmware/turris-mox-rwtm.c
2025-10-31T05:25:16.4590195Z patching file drivers/firmware/xilinx/zynqmp.c
2025-10-31T05:25:16.4591807Z patching file drivers/fpga/altera-cvp.c
2025-10-31T05:25:16.4592990Z patching file drivers/fpga/altera-pr-ip-core.c
2025-10-31T05:25:16.4594046Z patching file drivers/fpga/dfl-fme-perf.c
2025-10-31T05:25:16.4595174Z patching file drivers/fpga/dfl-fme-region.c
2025-10-31T05:25:16.4596003Z patching file drivers/fpga/dfl-pci.c
2025-10-31T05:25:16.4597391Z patching file drivers/fpga/dfl.c
2025-10-31T05:25:16.4604556Z patching file drivers/fpga/fpga-bridge.c
2025-10-31T05:25:16.4605342Z patching file drivers/fpga/fpga-region.c
2025-10-31T05:25:16.4605861Z patching file drivers/fpga/machxo2-spi.c
2025-10-31T05:25:16.4606730Z patching file drivers/fpga/of-fpga-region.c
2025-10-31T05:25:16.4607311Z patching file drivers/fpga/stratix10-soc.c
2025-10-31T05:25:16.4608104Z patching file drivers/fpga/xilinx-spi.c
2025-10-31T05:25:16.4608727Z patching file drivers/fpga/zynq-fpga.c
2025-10-31T05:25:16.4609197Z patching file drivers/fsi/fsi-core.c
2025-10-31T05:25:16.4609999Z patching file drivers/fsi/fsi-master-aspeed.c
2025-10-31T05:25:16.4610633Z patching file drivers/fsi/fsi-master-ast-cf.c
2025-10-31T05:25:16.4611371Z patching file drivers/fsi/fsi-master-gpio.c
2025-10-31T05:25:16.4612554Z patching file drivers/fsi/fsi-occ.c
2025-10-31T05:25:16.4613841Z patching file drivers/fsi/fsi-sbefifo.c
2025-10-31T05:25:16.4615424Z patching file drivers/fsi/fsi-scom.c
2025-10-31T05:25:16.4616860Z patching file drivers/gpio/Kconfig
2025-10-31T05:25:16.4618571Z patching file drivers/gpio/gpio-74x164.c
2025-10-31T05:25:16.4619535Z patching file drivers/gpio/gpio-aggregator.c
2025-10-31T05:25:16.4621030Z patching file drivers/gpio/gpio-amd8111.c
2025-10-31T05:25:16.4622186Z patching file drivers/gpio/gpio-aspeed.c
2025-10-31T05:25:16.4624438Z patching file drivers/gpio/gpio-bcm-kona.c
2025-10-31T05:25:16.4625739Z patching file drivers/gpio/gpio-cadence.c
2025-10-31T05:25:16.4626691Z patching file drivers/gpio/gpio-crystalcove.c
2025-10-31T05:25:16.4627720Z patching file drivers/gpio/gpio-davinci.c
2025-10-31T05:25:16.4628941Z patching file drivers/gpio/gpio-dln2.c
2025-10-31T05:25:16.4630230Z patching file drivers/gpio/gpio-dwapb.c
2025-10-31T05:25:16.4631505Z patching file drivers/gpio/gpio-eic-sprd.c
2025-10-31T05:25:16.4633136Z patching file drivers/gpio/gpio-ep93xx.c
2025-10-31T05:25:16.4635179Z patching file drivers/gpio/gpio-grgpio.c
2025-10-31T05:25:16.4636312Z patching file drivers/gpio/gpio-mlxbf2.c
2025-10-31T05:25:16.4637325Z patching file drivers/gpio/gpio-mockup.c
2025-10-31T05:25:16.4638515Z patching file drivers/gpio/gpio-mpc8xxx.c
2025-10-31T05:25:16.4639827Z patching file drivers/gpio/gpio-mvebu.c
2025-10-31T05:25:16.4641527Z patching file drivers/gpio/gpio-mxc.c
2025-10-31T05:25:16.4642998Z patching file drivers/gpio/gpio-omap.c
2025-10-31T05:25:16.4645002Z patching file drivers/gpio/gpio-pca953x.c
2025-10-31T05:25:16.4647039Z patching file drivers/gpio/gpio-pcf857x.c
2025-10-31T05:25:16.4648041Z patching file drivers/gpio/gpio-pmic-eic-sprd.c
2025-10-31T05:25:16.4649091Z patching file drivers/gpio/gpio-pxa.c
2025-10-31T05:25:16.4650257Z patching file drivers/gpio/gpio-rcar.c
2025-10-31T05:25:16.4651539Z patching file drivers/gpio/gpio-sifive.c
2025-10-31T05:25:16.4652765Z patching file drivers/gpio/gpio-stmpe.c
2025-10-31T05:25:16.4653896Z patching file drivers/gpio/gpio-tb10x.c
2025-10-31T05:25:16.4655005Z patching file drivers/gpio/gpio-tegra186.c
2025-10-31T05:25:16.4656249Z patching file drivers/gpio/gpio-timberdale.c
2025-10-31T05:25:16.4657377Z patching file drivers/gpio/gpio-tps65912.c
2025-10-31T05:25:16.4658296Z patching file drivers/gpio/gpio-tps68470.c
2025-10-31T05:25:16.4659237Z patching file drivers/gpio/gpio-tqmx86.c
2025-10-31T05:25:16.4660522Z patching file drivers/gpio/gpio-ts4900.c
2025-10-31T05:25:16.4661614Z patching file drivers/gpio/gpio-uniphier.c
2025-10-31T05:25:16.4662800Z patching file drivers/gpio/gpio-vf610.c
2025-10-31T05:25:16.4663927Z patching file drivers/gpio/gpio-vr41xx.c
2025-10-31T05:25:16.4664928Z patching file drivers/gpio/gpio-wcd934x.c
2025-10-31T05:25:16.4665884Z patching file drivers/gpio/gpio-wcove.c
2025-10-31T05:25:16.4667028Z patching file drivers/gpio/gpio-winbond.c
2025-10-31T05:25:16.4668173Z patching file drivers/gpio/gpio-xgs-iproc.c
2025-10-31T05:25:16.4669373Z patching file drivers/gpio/gpio-zynq.c
2025-10-31T05:25:16.4671254Z patching file drivers/gpio/gpiolib-acpi.c
2025-10-31T05:25:16.4673733Z patching file drivers/gpio/gpiolib-cdev.c
2025-10-31T05:25:16.4676685Z patching file drivers/gpio/gpiolib-of.c
2025-10-31T05:25:16.4678093Z patching file drivers/gpio/gpiolib-sysfs.c
2025-10-31T05:25:16.4680589Z patching file drivers/gpio/gpiolib.c
2025-10-31T05:25:16.4684353Z patching file drivers/gpu/drm/Kconfig
2025-10-31T05:25:16.4685649Z patching file drivers/gpu/drm/amd/amdgpu/ObjectID.h
2025-10-31T05:25:16.4687435Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu.h
2025-10-31T05:25:16.4689211Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c
2025-10-31T05:25:16.4690570Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c
2025-10-31T05:25:16.4691850Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c
2025-10-31T05:25:16.4693110Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
2025-10-31T05:25:16.4694461Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
2025-10-31T05:25:16.4695899Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c
2025-10-31T05:25:16.4697027Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
2025-10-31T05:25:16.4698921Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
2025-10-31T05:25:16.4701389Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c
2025-10-31T05:25:16.4703677Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c
2025-10-31T05:25:16.4704621Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c
2025-10-31T05:25:16.4705556Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.h
2025-10-31T05:25:16.4706526Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c
2025-10-31T05:25:16.4708282Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.c
2025-10-31T05:25:16.4710712Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
2025-10-31T05:25:16.4712642Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
2025-10-31T05:25:16.4714964Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
2025-10-31T05:25:16.4717867Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
2025-10-31T05:25:16.4721463Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c
2025-10-31T05:25:16.4723211Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
2025-10-31T05:25:16.4724503Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c
2025-10-31T05:25:16.4726213Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
2025-10-31T05:25:16.4728112Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_fb.c
2025-10-31T05:25:16.4729284Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c
2025-10-31T05:25:16.4731174Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c
2025-10-31T05:25:16.4732545Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
2025-10-31T05:25:16.4733902Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
2025-10-31T05:25:16.4735280Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h
2025-10-31T05:25:16.4736352Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c
2025-10-31T05:25:16.4737430Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_i2c.c
2025-10-31T05:25:16.4738504Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
2025-10-31T05:25:16.4739786Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c
2025-10-31T05:25:16.4741060Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
2025-10-31T05:25:16.4742600Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
2025-10-31T05:25:16.4744788Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
2025-10-31T05:25:16.4746912Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
2025-10-31T05:25:16.4748938Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_psp.h
2025-10-31T05:25:16.4750315Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
2025-10-31T05:25:16.4752802Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
2025-10-31T05:25:16.4753848Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
2025-10-31T05:25:16.4754883Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_sched.c
2025-10-31T05:25:16.4755848Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_sync.c
2025-10-31T05:25:16.4757007Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h
2025-10-31T05:25:16.4758783Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
2025-10-31T05:25:16.4760896Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.h
2025-10-31T05:25:16.4762090Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
2025-10-31T05:25:16.4763223Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_umc.h
2025-10-31T05:25:16.4764311Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c
2025-10-31T05:25:16.4766105Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c
2025-10-31T05:25:16.4767411Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c
2025-10-31T05:25:16.4768824Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_virt.h
2025-10-31T05:25:16.4770838Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
2025-10-31T05:25:16.4773645Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h
2025-10-31T05:25:16.4774684Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c
2025-10-31T05:25:16.4775879Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_xgmi.c
2025-10-31T05:25:16.4777362Z patching file drivers/gpu/drm/amd/amdgpu/atom.c
2025-10-31T05:25:16.4779451Z patching file drivers/gpu/drm/amd/amdgpu/atombios_encoders.c
2025-10-31T05:25:16.4781747Z patching file drivers/gpu/drm/amd/amdgpu/cik.c
2025-10-31T05:25:16.4784103Z patching file drivers/gpu/drm/amd/amdgpu/cz_ih.c
2025-10-31T05:25:16.4785891Z patching file drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
2025-10-31T05:25:16.4789302Z patching file drivers/gpu/drm/amd/amdgpu/dce_v11_0.c
2025-10-31T05:25:16.4792610Z patching file drivers/gpu/drm/amd/amdgpu/dce_v6_0.c
2025-10-31T05:25:16.4795831Z patching file drivers/gpu/drm/amd/amdgpu/dce_v8_0.c
2025-10-31T05:25:16.4798121Z patching file drivers/gpu/drm/amd/amdgpu/df_v1_7.c
2025-10-31T05:25:16.4802690Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
2025-10-31T05:25:16.4809149Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
2025-10-31T05:25:16.4812707Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
2025-10-31T05:25:16.4817434Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
2025-10-31T05:25:16.4823273Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
2025-10-31T05:25:16.4827947Z patching file drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.c
2025-10-31T05:25:16.4829120Z patching file drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c
2025-10-31T05:25:16.4830660Z patching file drivers/gpu/drm/amd/amdgpu/gmc_v6_0.c
2025-10-31T05:25:16.4832505Z patching file drivers/gpu/drm/amd/amdgpu/gmc_v7_0.c
2025-10-31T05:25:16.4834430Z patching file drivers/gpu/drm/amd/amdgpu/gmc_v8_0.c
2025-10-31T05:25:16.4836541Z patching file drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
2025-10-31T05:25:16.4838216Z patching file drivers/gpu/drm/amd/amdgpu/iceland_ih.c
2025-10-31T05:25:16.4839389Z patching file drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.c
2025-10-31T05:25:16.4840729Z patching file drivers/gpu/drm/amd/amdgpu/jpeg_v2_5.c
2025-10-31T05:25:16.4841890Z patching file drivers/gpu/drm/amd/amdgpu/jpeg_v3_0.c
2025-10-31T05:25:16.4843330Z patching file drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c
2025-10-31T05:25:16.4844643Z patching file drivers/gpu/drm/amd/amdgpu/nbio_v7_4.c
2025-10-31T05:25:16.4845947Z patching file drivers/gpu/drm/amd/amdgpu/nv.c
2025-10-31T05:25:16.4847415Z patching file drivers/gpu/drm/amd/amdgpu/psp_gfx_if.h
2025-10-31T05:25:16.4848623Z patching file drivers/gpu/drm/amd/amdgpu/psp_v11_0.c
2025-10-31T05:25:16.4849933Z patching file drivers/gpu/drm/amd/amdgpu/psp_v12_0.c
2025-10-31T05:25:16.4851057Z patching file drivers/gpu/drm/amd/amdgpu/psp_v3_1.c
2025-10-31T05:25:16.4853012Z patching file drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c
2025-10-31T05:25:16.4855585Z patching file drivers/gpu/drm/amd/amdgpu/sdma_v5_0.c
2025-10-31T05:25:16.4857582Z patching file drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
2025-10-31T05:25:16.4859803Z patching file drivers/gpu/drm/amd/amdgpu/si.c
2025-10-31T05:25:16.4862358Z patching file drivers/gpu/drm/amd/amdgpu/soc15.c
2025-10-31T05:25:16.4864187Z patching file drivers/gpu/drm/amd/amdgpu/tonga_ih.c
2025-10-31T05:25:16.4865232Z patching file drivers/gpu/drm/amd/amdgpu/umc_v8_7.c
2025-10-31T05:25:16.4866335Z patching file drivers/gpu/drm/amd/amdgpu/uvd_v3_1.c
2025-10-31T05:25:16.4868067Z patching file drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
2025-10-31T05:25:16.4870022Z patching file drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c
2025-10-31T05:25:16.4873000Z patching file drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
2025-10-31T05:25:16.4875383Z patching file drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
2025-10-31T05:25:16.4877558Z patching file drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c
2025-10-31T05:25:16.4879746Z patching file drivers/gpu/drm/amd/amdgpu/vi.c
2025-10-31T05:25:16.4881861Z patching file drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
2025-10-31T05:25:16.4884106Z patching file drivers/gpu/drm/amd/amdkfd/kfd_crat.c
2025-10-31T05:25:16.4885727Z patching file drivers/gpu/drm/amd/amdkfd/kfd_crat.h
2025-10-31T05:25:16.4887439Z patching file drivers/gpu/drm/amd/amdkfd/kfd_dbgdev.c
2025-10-31T05:25:16.4888527Z patching file drivers/gpu/drm/amd/amdkfd/kfd_debugfs.c
2025-10-31T05:25:16.4889624Z patching file drivers/gpu/drm/amd/amdkfd/kfd_device.c
2025-10-31T05:25:16.4891717Z patching file drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
2025-10-31T05:25:16.4894615Z patching file drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.h
2025-10-31T05:25:16.4895788Z patching file drivers/gpu/drm/amd/amdkfd/kfd_events.c
2025-10-31T05:25:16.4896884Z patching file drivers/gpu/drm/amd/amdkfd/kfd_iommu.c
2025-10-31T05:25:16.4897932Z patching file drivers/gpu/drm/amd/amdkfd/kfd_iommu.h
2025-10-31T05:25:16.4898896Z patching file drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c
2025-10-31T05:25:16.4899971Z patching file drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.h
2025-10-31T05:25:16.4901073Z patching file drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
2025-10-31T05:25:16.4902323Z patching file drivers/gpu/drm/amd/amdkfd/kfd_packet_manager.c
2025-10-31T05:25:16.4903361Z patching file drivers/gpu/drm/amd/amdkfd/kfd_packet_manager_v9.c
2025-10-31T05:25:16.4904376Z patching file drivers/gpu/drm/amd/amdkfd/kfd_packet_manager_vi.c
2025-10-31T05:25:16.4905550Z patching file drivers/gpu/drm/amd/amdkfd/kfd_priv.h
2025-10-31T05:25:16.4907427Z patching file drivers/gpu/drm/amd/amdkfd/kfd_process.c
2025-10-31T05:25:16.4909345Z patching file drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
2025-10-31T05:25:16.4910390Z patching file drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
2025-10-31T05:25:16.4911625Z patching file drivers/gpu/drm/amd/amdkfd/kfd_topology.c
2025-10-31T05:25:16.4913189Z patching file drivers/gpu/drm/amd/amdkfd/kfd_topology.h
2025-10-31T05:25:16.4914145Z patching file drivers/gpu/drm/amd/display/Kconfig
2025-10-31T05:25:16.4917514Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
2025-10-31T05:25:16.4924633Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h
2025-10-31T05:25:16.4925673Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_color.c
2025-10-31T05:25:16.4926901Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
2025-10-31T05:25:16.4928437Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
2025-10-31T05:25:16.4930896Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_hdcp.c
2025-10-31T05:25:16.4932133Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_hdcp.h
2025-10-31T05:25:16.4933235Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c
2025-10-31T05:25:16.4935206Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
2025-10-31T05:25:16.4936443Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.h
2025-10-31T05:25:16.4937953Z patching file drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
2025-10-31T05:25:16.4940730Z patching file drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c
2025-10-31T05:25:16.4943308Z patching file drivers/gpu/drm/amd/display/dc/bios/command_table.c
2025-10-31T05:25:16.4945353Z patching file drivers/gpu/drm/amd/display/dc/calcs/Makefile
2025-10-31T05:25:16.4946355Z patching file drivers/gpu/drm/amd/display/dc/calcs/bw_fixed.c
2025-10-31T05:25:16.4947328Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/Makefile
2025-10-31T05:25:16.4948400Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dce100/dce_clk_mgr.c
2025-10-31T05:25:16.4949523Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dce110/dce110_clk_mgr.c
2025-10-31T05:25:16.4950600Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dce60/dce60_clk_mgr.c
2025-10-31T05:25:16.4951685Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dcn20/dcn20_clk_mgr.c
2025-10-31T05:25:16.4953204Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dcn21/rn_clk_mgr.c
2025-10-31T05:25:16.4954726Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dcn30/dcn30_clk_mgr.c
2025-10-31T05:25:16.4956653Z patching file drivers/gpu/drm/amd/display/dc/core/dc.c
2025-10-31T05:25:16.4959328Z patching file drivers/gpu/drm/amd/display/dc/core/dc_hw_sequencer.c
2025-10-31T05:25:16.4960881Z patching file drivers/gpu/drm/amd/display/dc/core/dc_link.c
2025-10-31T05:25:16.4964745Z patching file drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
2025-10-31T05:25:16.4968383Z patching file drivers/gpu/drm/amd/display/dc/core/dc_resource.c
2025-10-31T05:25:16.4972242Z patching file drivers/gpu/drm/amd/display/dc/core/dc_stream.c
2025-10-31T05:25:16.4973400Z patching file drivers/gpu/drm/amd/display/dc/core/dc_surface.c
2025-10-31T05:25:16.4974448Z patching file drivers/gpu/drm/amd/display/dc/dc.h
2025-10-31T05:25:16.4975870Z patching file drivers/gpu/drm/amd/display/dc/dc_stream.h
2025-10-31T05:25:16.4977046Z patching file drivers/gpu/drm/amd/display/dc/dc_types.h
2025-10-31T05:25:16.4978281Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_abm.c
2025-10-31T05:25:16.4979272Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_aux.h
2025-10-31T05:25:16.4980600Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c
2025-10-31T05:25:16.4982584Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_dmcu.c
2025-10-31T05:25:16.4984423Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_link_encoder.c
2025-10-31T05:25:16.4986096Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_link_encoder.h
2025-10-31T05:25:16.4987378Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_stream_encoder.c
2025-10-31T05:25:16.4989359Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_transform.c
2025-10-31T05:25:16.4991220Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_transform.h
2025-10-31T05:25:16.4993485Z patching file drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c
2025-10-31T05:25:16.4995942Z patching file drivers/gpu/drm/amd/display/dc/dce120/dce120_resource.c
2025-10-31T05:25:16.4997433Z patching file drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c
2025-10-31T05:25:16.4999277Z patching file drivers/gpu/drm/amd/display/dc/dce80/dce80_resource.c
2025-10-31T05:25:16.5000557Z patching file drivers/gpu/drm/amd/display/dc/dcn10/Makefile
2025-10-31T05:25:16.5001596Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_cm_common.c
2025-10-31T05:25:16.5002936Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp_dscl.c
2025-10-31T05:25:16.5005280Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c
2025-10-31T05:25:16.5008146Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.h
2025-10-31T05:25:16.5008806Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c
2025-10-31T05:25:16.5010211Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_link_encoder.c
2025-10-31T05:25:16.5011638Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c
2025-10-31T05:25:16.5013242Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c
2025-10-31T05:25:16.5015199Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_resource.c
2025-10-31T05:25:16.5017293Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_stream_encoder.c
2025-10-31T05:25:16.5018940Z patching file drivers/gpu/drm/amd/display/dc/dcn20/Makefile
2025-10-31T05:25:16.5019601Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dccg.c
2025-10-31T05:25:16.5020604Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dwb_scl.c
2025-10-31T05:25:16.5022344Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hubp.c
2025-10-31T05:25:16.5024980Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c
2025-10-31T05:25:16.5028226Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_link_encoder.c
2025-10-31T05:25:16.5028960Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_mpc.c
2025-10-31T05:25:16.5030103Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_optc.c
2025-10-31T05:25:16.5032437Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c
2025-10-31T05:25:16.5035834Z patching file drivers/gpu/drm/amd/display/dc/dcn21/Makefile
2025-10-31T05:25:16.5036999Z patching file drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
2025-10-31T05:25:16.5039281Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_cm_common.c
2025-10-31T05:25:16.5041035Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_dpp.c
2025-10-31T05:25:16.5042525Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_dwb_cm.c
2025-10-31T05:25:16.5044153Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_hubp.c
2025-10-31T05:25:16.5045492Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_hwseq.c
2025-10-31T05:25:16.5047375Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c
2025-10-31T05:25:16.5049589Z patching file drivers/gpu/drm/amd/display/dc/dml/Makefile
2025-10-31T05:25:16.5052163Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn20/display_mode_vba_20.c
2025-10-31T05:25:16.5056903Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn20/display_mode_vba_20v2.c
2025-10-31T05:25:16.5060725Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn20/display_rq_dlg_calc_20.c
2025-10-31T05:25:16.5069043Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn20/display_rq_dlg_calc_20v2.c
2025-10-31T05:25:16.5069672Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn21/display_mode_vba_21.c
2025-10-31T05:25:16.5070357Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn21/display_rq_dlg_calc_21.c
2025-10-31T05:25:16.5074264Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c
2025-10-31T05:25:16.5079282Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
2025-10-31T05:25:16.5080912Z patching file drivers/gpu/drm/amd/display/dc/dml/display_mode_enums.h
2025-10-31T05:25:16.5081811Z patching file drivers/gpu/drm/amd/display/dc/dml/display_mode_structs.h
2025-10-31T05:25:16.5083370Z patching file drivers/gpu/drm/amd/display/dc/dml/display_mode_vba.c
2025-10-31T05:25:16.5085373Z patching file drivers/gpu/drm/amd/display/dc/dml/dml1_display_rq_dlg_calc.c
2025-10-31T05:25:16.5087043Z patching file drivers/gpu/drm/amd/display/dc/dml/dml_inline_defs.h
2025-10-31T05:25:16.5087696Z patching file drivers/gpu/drm/amd/display/dc/dsc/Makefile
2025-10-31T05:25:16.5088794Z patching file drivers/gpu/drm/amd/display/dc/gpio/gpio_service.c
2025-10-31T05:25:16.5090197Z patching file drivers/gpu/drm/amd/display/dc/hdcp/hdcp_msg.c
2025-10-31T05:25:16.5091411Z patching file drivers/gpu/drm/amd/display/dc/inc/hw/transform.h
2025-10-31T05:25:16.5092503Z patching file drivers/gpu/drm/amd/display/dc/inc/hw_sequencer.h
2025-10-31T05:25:16.5093731Z patching file drivers/gpu/drm/amd/display/dc/irq/dce110/irq_service_dce110.c
2025-10-31T05:25:16.5094745Z patching file drivers/gpu/drm/amd/display/dc/irq/dcn21/irq_service_dcn21.c
2025-10-31T05:25:16.5095655Z patching file drivers/gpu/drm/amd/display/dc/irq_types.h
2025-10-31T05:25:16.5096524Z patching file drivers/gpu/drm/amd/display/dc/os_types.h
2025-10-31T05:25:16.5097448Z patching file drivers/gpu/drm/amd/display/dmub/dmub_srv.h
2025-10-31T05:25:16.5099024Z patching file drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c
2025-10-31T05:25:16.5100350Z patching file drivers/gpu/drm/amd/display/include/gpio_service_interface.h
2025-10-31T05:25:16.5101721Z patching file drivers/gpu/drm/amd/display/modules/color/color_gamma.c
2025-10-31T05:25:16.5104098Z patching file drivers/gpu/drm/amd/display/modules/freesync/freesync.c
2025-10-31T05:25:16.5105562Z patching file drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c
2025-10-31T05:25:16.5106574Z patching file drivers/gpu/drm/amd/display/modules/hdcp/hdcp1_execution.c
2025-10-31T05:25:16.5107547Z patching file drivers/gpu/drm/amd/display/modules/hdcp/hdcp_ddc.c
2025-10-31T05:25:16.5109043Z patching file drivers/gpu/drm/amd/display/modules/hdcp/hdcp_psp.c
2025-10-31T05:25:16.5110164Z patching file drivers/gpu/drm/amd/display/modules/inc/mod_stats.h
2025-10-31T05:25:16.5111107Z patching file drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c
2025-10-31T05:25:16.5113494Z patching file drivers/gpu/drm/amd/include/asic_reg/dce/dce_6_0_d.h
2025-10-31T05:25:16.5120136Z patching file drivers/gpu/drm/amd/include/asic_reg/dce/dce_6_0_sh_mask.h
2025-10-31T05:25:16.5130516Z patching file drivers/gpu/drm/amd/include/atombios.h
2025-10-31T05:25:16.5137572Z patching file drivers/gpu/drm/amd/include/atomfirmware.h
2025-10-31T05:25:16.5140095Z patching file drivers/gpu/drm/amd/include/discovery.h
2025-10-31T05:25:16.5141038Z patching file drivers/gpu/drm/amd/include/kgd_pp_interface.h
2025-10-31T05:25:16.5148021Z patching file drivers/gpu/drm/amd/include/navi10_enum.h
2025-10-31T05:25:16.5159448Z patching file drivers/gpu/drm/amd/include/pptable.h
2025-10-31T05:25:16.5161428Z patching file drivers/gpu/drm/amd/pm/amdgpu_pm.c
2025-10-31T05:25:16.5164470Z patching file drivers/gpu/drm/amd/pm/inc/amdgpu_smu.h
2025-10-31T05:25:16.5165519Z patching file drivers/gpu/drm/amd/pm/inc/smu_v11_0.h
2025-10-31T05:25:16.5167034Z patching file drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c
2025-10-31T05:25:16.5168565Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/pp_psm.c
2025-10-31T05:25:16.5170004Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/ppatomctrl.c
2025-10-31T05:25:16.5171729Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/ppevvmath.h
2025-10-31T05:25:16.5173061Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/pptable_v1_0.h
2025-10-31T05:25:16.5174883Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/process_pptables_v1_0.c
2025-10-31T05:25:16.5176720Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/processpptables.c
2025-10-31T05:25:16.5178679Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu10_hwmgr.c
2025-10-31T05:25:16.5181527Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c
2025-10-31T05:25:16.5185558Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_thermal.c
2025-10-31T05:25:16.5187087Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c
2025-10-31T05:25:16.5189263Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu_helper.c
2025-10-31T05:25:16.5191805Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c
2025-10-31T05:25:16.5196537Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega10_thermal.c
2025-10-31T05:25:16.5198387Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_hwmgr.c
2025-10-31T05:25:16.5201743Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega20_hwmgr.c
2025-10-31T05:25:16.5205233Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega20_thermal.c
2025-10-31T05:25:16.5206845Z patching file drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c
2025-10-31T05:25:16.5210896Z patching file drivers/gpu/drm/amd/pm/powerplay/si_dpm.c
2025-10-31T05:25:16.5215607Z patching file drivers/gpu/drm/amd/pm/powerplay/smumgr/vega10_smumgr.c
2025-10-31T05:25:16.5217093Z patching file drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
2025-10-31T05:25:16.5219628Z patching file drivers/gpu/drm/amd/pm/swsmu/smu11/arcturus_ppt.c
2025-10-31T05:25:16.5222356Z patching file drivers/gpu/drm/amd/pm/swsmu/smu11/navi10_ppt.c
2025-10-31T05:25:16.5225478Z patching file drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
2025-10-31T05:25:16.5228280Z patching file drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c
2025-10-31T05:25:16.5230319Z patching file drivers/gpu/drm/amd/pm/swsmu/smu12/renoir_ppt.c
2025-10-31T05:25:16.5231459Z patching file drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c
2025-10-31T05:25:16.5232623Z patching file drivers/gpu/drm/arm/display/include/malidp_utils.h
2025-10-31T05:25:16.5233569Z patching file drivers/gpu/drm/arm/display/komeda/komeda_kms.c
2025-10-31T05:25:16.5234651Z patching file drivers/gpu/drm/arm/display/komeda/komeda_pipeline.c
2025-10-31T05:25:16.5236269Z patching file drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c
2025-10-31T05:25:16.5238083Z patching file drivers/gpu/drm/arm/display/komeda/komeda_plane.c
2025-10-31T05:25:16.5239048Z patching file drivers/gpu/drm/arm/display/komeda/komeda_wb_connector.c
2025-10-31T05:25:16.5239894Z patching file drivers/gpu/drm/arm/malidp_crtc.c
2025-10-31T05:25:16.5240914Z patching file drivers/gpu/drm/arm/malidp_mw.c
2025-10-31T05:25:16.5242130Z patching file drivers/gpu/drm/arm/malidp_planes.c
2025-10-31T05:25:16.5243693Z patching file drivers/gpu/drm/armada/armada_drv.c
2025-10-31T05:25:16.5244552Z patching file drivers/gpu/drm/armada/armada_overlay.c
2025-10-31T05:25:16.5245563Z patching file drivers/gpu/drm/aspeed/Kconfig
2025-10-31T05:25:16.5246394Z patching file drivers/gpu/drm/ast/ast_dp501.c
2025-10-31T05:25:16.5247755Z patching file drivers/gpu/drm/ast/ast_drv.c
2025-10-31T05:25:16.5248701Z patching file drivers/gpu/drm/ast/ast_drv.h
2025-10-31T05:25:16.5249543Z patching file drivers/gpu/drm/ast/ast_main.c
2025-10-31T05:25:16.5250953Z patching file drivers/gpu/drm/ast/ast_mode.c
2025-10-31T05:25:16.5253042Z patching file drivers/gpu/drm/ast/ast_post.c
2025-10-31T05:25:16.5254729Z patching file drivers/gpu/drm/bridge/Kconfig
2025-10-31T05:25:16.5255820Z patching file drivers/gpu/drm/bridge/adv7511/adv7511.h
2025-10-31T05:25:16.5256846Z patching file drivers/gpu/drm/bridge/adv7511/adv7511_audio.c
2025-10-31T05:25:16.5257770Z patching file drivers/gpu/drm/bridge/adv7511/adv7511_cec.c
2025-10-31T05:25:16.5259139Z patching file drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
2025-10-31T05:25:16.5260972Z patching file drivers/gpu/drm/bridge/adv7511/adv7533.c
2025-10-31T05:25:16.5262902Z patching file drivers/gpu/drm/bridge/analogix/analogix_dp_core.c
2025-10-31T05:25:16.5264989Z patching file drivers/gpu/drm/bridge/analogix/analogix_dp_reg.c
2025-10-31T05:25:16.5267046Z patching file drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-core.c
2025-10-31T05:25:16.5269034Z patching file drivers/gpu/drm/bridge/cdns-dsi.c
2025-10-31T05:25:16.5270671Z patching file drivers/gpu/drm/bridge/display-connector.c
2025-10-31T05:25:16.5271643Z patching file drivers/gpu/drm/bridge/lontium-lt9611.c
2025-10-31T05:25:16.5273884Z patching file drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
2025-10-31T05:25:16.5275254Z patching file drivers/gpu/drm/bridge/nwl-dsi.c
2025-10-31T05:25:16.5276860Z patching file drivers/gpu/drm/bridge/nxp-ptn3460.c
2025-10-31T05:25:16.5277781Z patching file drivers/gpu/drm/bridge/panel.c
2025-10-31T05:25:16.5278812Z patching file drivers/gpu/drm/bridge/parade-ps8640.c
2025-10-31T05:25:16.5280133Z patching file drivers/gpu/drm/bridge/sii902x.c
2025-10-31T05:25:16.5282392Z patching file drivers/gpu/drm/bridge/sil-sii8620.c
2025-10-31T05:25:16.5284466Z patching file drivers/gpu/drm/bridge/synopsys/dw-hdmi-ahb-audio.c
2025-10-31T05:25:16.5285363Z patching file drivers/gpu/drm/bridge/synopsys/dw-hdmi-audio.h
2025-10-31T05:25:16.5286103Z patching file drivers/gpu/drm/bridge/synopsys/dw-hdmi-i2s-audio.c
2025-10-31T05:25:16.5287891Z patching file drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
2025-10-31T05:25:16.5290666Z patching file drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c
2025-10-31T05:25:16.5291758Z patching file drivers/gpu/drm/bridge/tc358762.c
2025-10-31T05:25:16.5292833Z patching file drivers/gpu/drm/bridge/tc358764.c
2025-10-31T05:25:16.5294286Z patching file drivers/gpu/drm/bridge/tc358767.c
2025-10-31T05:25:16.5296191Z patching file drivers/gpu/drm/bridge/tc358768.c
2025-10-31T05:25:16.5298324Z patching file drivers/gpu/drm/bridge/tc358775.c
2025-10-31T05:25:16.5299890Z patching file drivers/gpu/drm/bridge/ti-sn65dsi86.c
2025-10-31T05:25:16.5301279Z patching file drivers/gpu/drm/bridge/ti-tpd12s015.c
2025-10-31T05:25:16.5302821Z patching file drivers/gpu/drm/drm_atomic.c
2025-10-31T05:25:16.5305478Z patching file drivers/gpu/drm/drm_atomic_helper.c
2025-10-31T05:25:16.5308452Z patching file drivers/gpu/drm/drm_atomic_uapi.c
2025-10-31T05:25:16.5310083Z patching file drivers/gpu/drm/drm_auth.c
2025-10-31T05:25:16.5311636Z patching file drivers/gpu/drm/drm_bridge.c
2025-10-31T05:25:16.5313600Z patching file drivers/gpu/drm/drm_client_modeset.c
2025-10-31T05:25:16.5315294Z patching file drivers/gpu/drm/drm_color_mgmt.c
2025-10-31T05:25:16.5316997Z patching file drivers/gpu/drm/drm_connector.c
2025-10-31T05:25:16.5319600Z patching file drivers/gpu/drm/drm_crtc.c
2025-10-31T05:25:16.5321034Z patching file drivers/gpu/drm/drm_crtc_helper_internal.h
2025-10-31T05:25:16.5321745Z patching file drivers/gpu/drm/drm_crtc_internal.h
2025-10-31T05:25:16.5323196Z patching file drivers/gpu/drm/drm_debugfs.c
2025-10-31T05:25:16.5324470Z patching file drivers/gpu/drm/drm_dp_aux_dev.c
2025-10-31T05:25:16.5325432Z patching file drivers/gpu/drm/drm_dp_cec.c
2025-10-31T05:25:16.5326819Z patching file drivers/gpu/drm/drm_dp_dual_mode_helper.c
2025-10-31T05:25:16.5328670Z patching file drivers/gpu/drm/drm_dp_helper.c
2025-10-31T05:25:16.5332320Z patching file drivers/gpu/drm/drm_dp_mst_topology.c
2025-10-31T05:25:16.5336587Z patching file drivers/gpu/drm/drm_drv.c
2025-10-31T05:25:16.5339440Z patching file drivers/gpu/drm/drm_edid.c
2025-10-31T05:25:16.5343941Z patching file drivers/gpu/drm/drm_fb_helper.c
2025-10-31T05:25:16.5346223Z patching file drivers/gpu/drm/drm_file.c
2025-10-31T05:25:16.5348460Z patching file drivers/gpu/drm/drm_fourcc.c
2025-10-31T05:25:16.5349969Z patching file drivers/gpu/drm/drm_framebuffer.c
2025-10-31T05:25:16.5351602Z patching file drivers/gpu/drm/drm_gem.c
2025-10-31T05:25:16.5353587Z patching file drivers/gpu/drm/drm_gem_shmem_helper.c
2025-10-31T05:25:16.5355237Z patching file drivers/gpu/drm/drm_gem_vram_helper.c
2025-10-31T05:25:16.5356601Z patching file drivers/gpu/drm/drm_internal.h
2025-10-31T05:25:16.5357661Z patching file drivers/gpu/drm/drm_ioc32.c
2025-10-31T05:25:16.5359331Z patching file drivers/gpu/drm/drm_ioctl.c
2025-10-31T05:25:16.5360809Z patching file drivers/gpu/drm/drm_kms_helper_common.c
2025-10-31T05:25:16.5361652Z patching file drivers/gpu/drm/drm_lease.c
2025-10-31T05:25:16.5363990Z patching file drivers/gpu/drm/drm_mipi_dbi.c
2025-10-31T05:25:16.5365603Z patching file drivers/gpu/drm/drm_mipi_dsi.c
2025-10-31T05:25:16.5367599Z patching file drivers/gpu/drm/drm_mm.c
2025-10-31T05:25:16.5369107Z patching file drivers/gpu/drm/drm_mode_config.c
2025-10-31T05:25:16.5370698Z patching file drivers/gpu/drm/drm_modes.c
2025-10-31T05:25:16.5372691Z patching file drivers/gpu/drm/drm_of.c
2025-10-31T05:25:16.5373771Z patching file drivers/gpu/drm/drm_panel.c
2025-10-31T05:25:16.5375062Z patching file drivers/gpu/drm/drm_panel_orientation_quirks.c
2025-10-31T05:25:16.5376827Z patching file drivers/gpu/drm/drm_plane.c
2025-10-31T05:25:16.5378372Z patching file drivers/gpu/drm/drm_plane_helper.c
2025-10-31T05:25:16.5379444Z patching file drivers/gpu/drm/drm_prime.c
2025-10-31T05:25:16.5380921Z patching file drivers/gpu/drm/drm_print.c
2025-10-31T05:25:16.5382343Z patching file drivers/gpu/drm/drm_probe_helper.c
2025-10-31T05:25:16.5384432Z patching file drivers/gpu/drm/drm_syncobj.c
2025-10-31T05:25:16.5386125Z patching file drivers/gpu/drm/drm_sysfs.c
2025-10-31T05:25:16.5387641Z patching file drivers/gpu/drm/etnaviv/etnaviv_buffer.c
2025-10-31T05:25:16.5388719Z patching file drivers/gpu/drm/etnaviv/etnaviv_drv.c
2025-10-31T05:25:16.5389826Z patching file drivers/gpu/drm/etnaviv/etnaviv_dump.c
2025-10-31T05:25:16.5391139Z patching file drivers/gpu/drm/etnaviv/etnaviv_gem.c
2025-10-31T05:25:16.5392421Z patching file drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c
2025-10-31T05:25:16.5393377Z patching file drivers/gpu/drm/etnaviv/etnaviv_gem_submit.c
2025-10-31T05:25:16.5394975Z patching file drivers/gpu/drm/etnaviv/etnaviv_gpu.c
2025-10-31T05:25:16.5397309Z patching file drivers/gpu/drm/etnaviv/etnaviv_gpu.h
2025-10-31T05:25:16.5398113Z patching file drivers/gpu/drm/etnaviv/etnaviv_hwdb.c
2025-10-31T05:25:16.5399033Z patching file drivers/gpu/drm/etnaviv/etnaviv_iommu.c
2025-10-31T05:25:16.5399986Z patching file drivers/gpu/drm/etnaviv/etnaviv_iommu_v2.c
2025-10-31T05:25:16.5400960Z patching file drivers/gpu/drm/etnaviv/etnaviv_mmu.c
2025-10-31T05:25:16.5402110Z patching file drivers/gpu/drm/etnaviv/etnaviv_mmu.h
2025-10-31T05:25:16.5402905Z patching file drivers/gpu/drm/etnaviv/etnaviv_sched.c
2025-10-31T05:25:16.5404258Z patching file drivers/gpu/drm/exynos/exynos5433_drm_decon.c
2025-10-31T05:25:16.5405602Z patching file drivers/gpu/drm/exynos/exynos7_drm_decon.c
2025-10-31T05:25:16.5407143Z patching file drivers/gpu/drm/exynos/exynos_drm_crtc.c
2025-10-31T05:25:16.5407924Z patching file drivers/gpu/drm/exynos/exynos_drm_dma.c
2025-10-31T05:25:16.5408825Z patching file drivers/gpu/drm/exynos/exynos_drm_drv.c
2025-10-31T05:25:16.5410448Z patching file drivers/gpu/drm/exynos/exynos_drm_dsi.c
2025-10-31T05:25:16.5412580Z patching file drivers/gpu/drm/exynos/exynos_drm_fimd.c
2025-10-31T05:25:16.5414355Z patching file drivers/gpu/drm/exynos/exynos_drm_g2d.c
2025-10-31T05:25:16.5415908Z patching file drivers/gpu/drm/exynos/exynos_drm_g2d.h
2025-10-31T05:25:16.5416744Z patching file drivers/gpu/drm/exynos/exynos_drm_gsc.c
2025-10-31T05:25:16.5418316Z patching file drivers/gpu/drm/exynos/exynos_drm_vidi.c
2025-10-31T05:25:16.5419833Z patching file drivers/gpu/drm/exynos/exynos_hdmi.c
2025-10-31T05:25:16.5421512Z patching file drivers/gpu/drm/fsl-dcu/Kconfig
2025-10-31T05:25:16.5422373Z patching file drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c
2025-10-31T05:25:16.5423850Z patching file drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.h
2025-10-31T05:25:16.5424515Z patching file drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_rgb.c
2025-10-31T05:25:16.5426034Z patching file drivers/gpu/drm/gma500/cdv_intel_dp.c
2025-10-31T05:25:16.5427831Z patching file drivers/gpu/drm/gma500/cdv_intel_lvds.c
2025-10-31T05:25:16.5428900Z patching file drivers/gpu/drm/gma500/framebuffer.c
2025-10-31T05:25:16.5430280Z patching file drivers/gpu/drm/gma500/gma_display.c
2025-10-31T05:25:16.5431547Z patching file drivers/gpu/drm/gma500/mid_bios.c
2025-10-31T05:25:16.5432688Z patching file drivers/gpu/drm/gma500/oaktrail_hdmi.c
2025-10-31T05:25:16.5434053Z patching file drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c
2025-10-31T05:25:16.5435018Z patching file drivers/gpu/drm/gma500/oaktrail_lvds.c
2025-10-31T05:25:16.5436079Z patching file drivers/gpu/drm/gma500/psb_drv.c
2025-10-31T05:25:16.5437216Z patching file drivers/gpu/drm/gma500/psb_intel_display.c
2025-10-31T05:25:16.5438553Z patching file drivers/gpu/drm/gma500/psb_intel_lvds.c
2025-10-31T05:25:16.5439670Z patching file drivers/gpu/drm/hisilicon/hibmc/Kconfig
2025-10-31T05:25:16.5440488Z patching file drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c
2025-10-31T05:25:16.5441434Z patching file drivers/gpu/drm/i915/Kconfig
2025-10-31T05:25:16.5442528Z patching file drivers/gpu/drm/i915/Makefile
2025-10-31T05:25:16.5444198Z patching file drivers/gpu/drm/i915/display/icl_dsi.c
2025-10-31T05:25:16.5445866Z patching file drivers/gpu/drm/i915/display/intel_acpi.c
2025-10-31T05:25:16.5446890Z patching file drivers/gpu/drm/i915/display/intel_bw.c
2025-10-31T05:25:16.5449669Z patching file drivers/gpu/drm/i915/display/intel_ddi.c
2025-10-31T05:25:16.5458145Z patching file drivers/gpu/drm/i915/display/intel_display.c
2025-10-31T05:25:16.5467388Z patching file drivers/gpu/drm/i915/display/intel_display_debugfs.c
2025-10-31T05:25:16.5470502Z patching file drivers/gpu/drm/i915/display/intel_display_power.c
2025-10-31T05:25:16.5474258Z patching file drivers/gpu/drm/i915/display/intel_display_types.h
2025-10-31T05:25:16.5477799Z patching file drivers/gpu/drm/i915/display/intel_dp.c
2025-10-31T05:25:16.5482703Z patching file drivers/gpu/drm/i915/display/intel_dp.h
2025-10-31T05:25:16.5483728Z patching file drivers/gpu/drm/i915/display/intel_dp_link_training.c
2025-10-31T05:25:16.5485069Z patching file drivers/gpu/drm/i915/display/intel_dp_mst.c
2025-10-31T05:25:16.5487534Z patching file drivers/gpu/drm/i915/display/intel_dpll_mgr.c
2025-10-31T05:25:16.5490613Z patching file drivers/gpu/drm/i915/display/intel_dsi_vbt.c
2025-10-31T05:25:16.5492985Z patching file drivers/gpu/drm/i915/display/intel_hdcp.c
2025-10-31T05:25:16.5495484Z patching file drivers/gpu/drm/i915/display/intel_hdmi.c
2025-10-31T05:25:16.5498064Z patching file drivers/gpu/drm/i915/display/intel_opregion.c
2025-10-31T05:25:16.5499759Z patching file drivers/gpu/drm/i915/display/intel_overlay.c
2025-10-31T05:25:16.5501887Z patching file drivers/gpu/drm/i915/display/intel_panel.c
2025-10-31T05:25:16.5504007Z patching file drivers/gpu/drm/i915/display/intel_quirks.c
2025-10-31T05:25:16.5505794Z patching file drivers/gpu/drm/i915/display/intel_sdvo.c
2025-10-31T05:25:16.5509141Z patching file drivers/gpu/drm/i915/display/intel_sprite.c
2025-10-31T05:25:16.5511589Z patching file drivers/gpu/drm/i915/display/intel_tc.c
2025-10-31T05:25:16.5513614Z patching file drivers/gpu/drm/i915/display/vlv_dsi.c
2025-10-31T05:25:16.5515961Z patching file drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
2025-10-31T05:25:16.5517057Z patching file drivers/gpu/drm/i915/gem/i915_gem_domain.c
2025-10-31T05:25:16.5519059Z patching file drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
2025-10-31T05:25:16.5521738Z patching file drivers/gpu/drm/i915/gem/i915_gem_mman.c
2025-10-31T05:25:16.5523517Z patching file drivers/gpu/drm/i915/gem/i915_gem_object.h
2025-10-31T05:25:16.5524462Z patching file drivers/gpu/drm/i915/gem/i915_gem_object_types.h
2025-10-31T05:25:16.5525432Z patching file drivers/gpu/drm/i915/gem/i915_gem_pages.c
2025-10-31T05:25:16.5526662Z patching file drivers/gpu/drm/i915/gem/i915_gem_tiling.c
2025-10-31T05:25:16.5527791Z patching file drivers/gpu/drm/i915/gt/gen7_renderclear.c
2025-10-31T05:25:16.5529680Z patching file drivers/gpu/drm/i915/gt/gen8_ppgtt.c
2025-10-31T05:25:16.5530931Z patching file drivers/gpu/drm/i915/gt/intel_breadcrumbs.c
2025-10-31T05:25:16.5532714Z patching file drivers/gpu/drm/i915/gt/intel_engine_cs.c
2025-10-31T05:25:16.5534463Z patching file drivers/gpu/drm/i915/gt/intel_engine_pm.c
2025-10-31T05:25:16.5535335Z patching file drivers/gpu/drm/i915/gt/intel_engine_user.c
2025-10-31T05:25:16.5536727Z patching file drivers/gpu/drm/i915/gt/intel_ggtt.c
2025-10-31T05:25:16.5538603Z patching file drivers/gpu/drm/i915/gt/intel_ggtt_fencing.c
2025-10-31T05:25:16.5540049Z patching file drivers/gpu/drm/i915/gt/intel_gt.c
2025-10-31T05:25:16.5541391Z patching file drivers/gpu/drm/i915/gt/intel_gt.h
2025-10-31T05:25:16.5542264Z patching file drivers/gpu/drm/i915/gt/intel_gt_requests.c
2025-10-31T05:25:16.5543277Z patching file drivers/gpu/drm/i915/gt/intel_gt_types.h
2025-10-31T05:25:16.5545736Z patching file drivers/gpu/drm/i915/gt/intel_lrc.c
2025-10-31T05:25:16.5549357Z patching file drivers/gpu/drm/i915/gt/intel_reset.c
2025-10-31T05:25:16.5550937Z patching file drivers/gpu/drm/i915/gt/intel_ring.c
2025-10-31T05:25:16.5552788Z patching file drivers/gpu/drm/i915/gt/intel_ring_submission.c
2025-10-31T05:25:16.5554357Z patching file drivers/gpu/drm/i915/gt/intel_timeline.c
2025-10-31T05:25:16.5556055Z patching file drivers/gpu/drm/i915/gt/intel_workarounds.c
2025-10-31T05:25:16.5559138Z patching file drivers/gpu/drm/i915/gt/selftest_lrc.c
2025-10-31T05:25:16.5562377Z patching file drivers/gpu/drm/i915/gvt/debugfs.c
2025-10-31T05:25:16.5563339Z patching file drivers/gpu/drm/i915/gvt/display.c
2025-10-31T05:25:16.5565803Z patching file drivers/gpu/drm/i915/gvt/gtt.c
2025-10-31T05:25:16.5568081Z patching file drivers/gpu/drm/i915/gvt/gtt.h
2025-10-31T05:25:16.5569008Z patching file drivers/gpu/drm/i915/gvt/gvt.c
2025-10-31T05:25:16.5570310Z patching file drivers/gpu/drm/i915/gvt/gvt.h
2025-10-31T05:25:16.5572514Z patching file drivers/gpu/drm/i915/gvt/handlers.c
2025-10-31T05:25:16.5575121Z patching file drivers/gpu/drm/i915/gvt/mmio.c
2025-10-31T05:25:16.5575944Z patching file drivers/gpu/drm/i915/gvt/mmio.h
2025-10-31T05:25:16.5576816Z patching file drivers/gpu/drm/i915/gvt/opregion.c
2025-10-31T05:25:16.5578393Z patching file drivers/gpu/drm/i915/gvt/scheduler.c
2025-10-31T05:25:16.5579962Z patching file drivers/gpu/drm/i915/gvt/vgpu.c
2025-10-31T05:25:16.5581377Z patching file drivers/gpu/drm/i915/i915_active.c
2025-10-31T05:25:16.5583905Z patching file drivers/gpu/drm/i915/i915_cmd_parser.c
2025-10-31T05:25:16.5586277Z patching file drivers/gpu/drm/i915/i915_drv.c
2025-10-31T05:25:16.5588378Z patching file drivers/gpu/drm/i915/i915_drv.h
2025-10-31T05:25:16.5590654Z patching file drivers/gpu/drm/i915/i915_gpu_error.c
2025-10-31T05:25:16.5592521Z patching file drivers/gpu/drm/i915/i915_mitigations.c
2025-10-31T05:25:16.5593964Z patching file drivers/gpu/drm/i915/i915_mitigations.h
2025-10-31T05:25:16.5595303Z patching file drivers/gpu/drm/i915/i915_pci.c
2025-10-31T05:25:16.5597812Z patching file drivers/gpu/drm/i915/i915_perf.c
2025-10-31T05:25:16.5600860Z patching file drivers/gpu/drm/i915/i915_perf_types.h
2025-10-31T05:25:16.5602180Z patching file drivers/gpu/drm/i915/i915_pmu.c
2025-10-31T05:25:16.5607036Z patching file drivers/gpu/drm/i915/i915_reg.h
2025-10-31T05:25:16.5614377Z patching file drivers/gpu/drm/i915/i915_request.c
2025-10-31T05:25:16.5616519Z patching file drivers/gpu/drm/i915/i915_request.h
2025-10-31T05:25:16.5617565Z patching file drivers/gpu/drm/i915/i915_scheduler.c
2025-10-31T05:25:16.5618793Z patching file drivers/gpu/drm/i915/i915_sw_fence.c
2025-10-31T05:25:16.5620123Z patching file drivers/gpu/drm/i915/i915_sysfs.c
2025-10-31T05:25:16.5621683Z patching file drivers/gpu/drm/i915/i915_vma.c
2025-10-31T05:25:16.5623384Z patching file drivers/gpu/drm/i915/intel_dram.c
2025-10-31T05:25:16.5624663Z patching file drivers/gpu/drm/i915/intel_gvt.c
2025-10-31T05:25:16.5625511Z patching file drivers/gpu/drm/i915/intel_gvt.h
2025-10-31T05:25:16.5626410Z patching file drivers/gpu/drm/i915/intel_pch.c
2025-10-31T05:25:16.5627352Z patching file drivers/gpu/drm/i915/intel_pch.h
2025-10-31T05:25:16.5630279Z patching file drivers/gpu/drm/i915/intel_pm.c
2025-10-31T05:25:16.5635020Z patching file drivers/gpu/drm/i915/intel_runtime_pm.c
2025-10-31T05:25:16.5636240Z patching file drivers/gpu/drm/i915/intel_runtime_pm.h
2025-10-31T05:25:16.5637202Z patching file drivers/gpu/drm/i915/intel_sideband.c
2025-10-31T05:25:16.5638188Z patching file drivers/gpu/drm/i915/intel_sideband.h
2025-10-31T05:25:16.5639647Z patching file drivers/gpu/drm/i915/intel_uncore.c
2025-10-31T05:25:16.5641587Z patching file drivers/gpu/drm/i915/intel_uncore.h
2025-10-31T05:25:16.5643339Z patching file drivers/gpu/drm/i915/selftests/i915_gem_gtt.c
2025-10-31T05:25:16.5645547Z patching file drivers/gpu/drm/i915/selftests/i915_request.c
2025-10-31T05:25:16.5647516Z patching file drivers/gpu/drm/i915/selftests/mock_request.c
2025-10-31T05:25:16.5648194Z patching file drivers/gpu/drm/imx/dcss/dcss-crtc.c
2025-10-31T05:25:16.5649105Z patching file drivers/gpu/drm/imx/dcss/dcss-dev.c
2025-10-31T05:25:16.5650064Z patching file drivers/gpu/drm/imx/dcss/dcss-plane.c
2025-10-31T05:25:16.5651274Z patching file drivers/gpu/drm/imx/imx-drm-core.c
2025-10-31T05:25:16.5652369Z patching file drivers/gpu/drm/imx/imx-ldb.c
2025-10-31T05:25:16.5653821Z patching file drivers/gpu/drm/imx/imx-tve.c
2025-10-31T05:25:16.5654856Z patching file drivers/gpu/drm/imx/ipuv3-crtc.c
2025-10-31T05:25:16.5656104Z patching file drivers/gpu/drm/imx/parallel-display.c
2025-10-31T05:25:16.5657439Z patching file drivers/gpu/drm/ingenic/ingenic-drm-drv.c
2025-10-31T05:25:16.5659399Z patching file drivers/gpu/drm/ingenic/ingenic-ipu.c
2025-10-31T05:25:16.5660417Z patching file drivers/gpu/drm/lima/lima_bcast.c
2025-10-31T05:25:16.5661165Z patching file drivers/gpu/drm/lima/lima_bcast.h
2025-10-31T05:25:16.5662165Z patching file drivers/gpu/drm/lima/lima_device.c
2025-10-31T05:25:16.5663237Z patching file drivers/gpu/drm/lima/lima_drv.c
2025-10-31T05:25:16.5664208Z patching file drivers/gpu/drm/lima/lima_gem.c
2025-10-31T05:25:16.5665263Z patching file drivers/gpu/drm/lima/lima_gp.c
2025-10-31T05:25:16.5666312Z patching file drivers/gpu/drm/lima/lima_mmu.c
2025-10-31T05:25:16.5667171Z patching file drivers/gpu/drm/lima/lima_pp.c
2025-10-31T05:25:16.5668512Z patching file drivers/gpu/drm/lima/lima_sched.c
2025-10-31T05:25:16.5669443Z patching file drivers/gpu/drm/lima/lima_sched.h
2025-10-31T05:25:16.5670281Z patching file drivers/gpu/drm/mcde/mcde_drv.c
2025-10-31T05:25:16.5671695Z patching file drivers/gpu/drm/mcde/mcde_dsi.c
2025-10-31T05:25:16.5673346Z patching file drivers/gpu/drm/mediatek/mtk_cec.c
2025-10-31T05:25:16.5674214Z patching file drivers/gpu/drm/mediatek/mtk_disp_ovl.c
2025-10-31T05:25:16.5675412Z patching file drivers/gpu/drm/mediatek/mtk_dpi.c
2025-10-31T05:25:16.5677065Z patching file drivers/gpu/drm/mediatek/mtk_drm_crtc.c
2025-10-31T05:25:16.5678514Z patching file drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.c
2025-10-31T05:25:16.5679466Z patching file drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h
2025-10-31T05:25:16.5680457Z patching file drivers/gpu/drm/mediatek/mtk_drm_drv.c
2025-10-31T05:25:16.5681475Z patching file drivers/gpu/drm/mediatek/mtk_drm_gem.c
2025-10-31T05:25:16.5682789Z patching file drivers/gpu/drm/mediatek/mtk_dsi.c
2025-10-31T05:25:16.5685707Z patching file drivers/gpu/drm/mediatek/mtk_hdmi.c
2025-10-31T05:25:16.5688061Z patching file drivers/gpu/drm/mediatek/mtk_mipi_tx.c
2025-10-31T05:25:16.5688810Z patching file drivers/gpu/drm/meson/meson_drv.c
2025-10-31T05:25:16.5840333Z patching file drivers/gpu/drm/meson/meson_dw_hdmi.c
2025-10-31T05:25:16.5842246Z patching file drivers/gpu/drm/meson/meson_osd_afbcd.c
2025-10-31T05:25:16.5843436Z patching file drivers/gpu/drm/meson/meson_osd_afbcd.h
2025-10-31T05:25:16.5844228Z patching file drivers/gpu/drm/meson/meson_plane.c
2025-10-31T05:25:16.5846152Z patching file drivers/gpu/drm/meson/meson_registers.h
2025-10-31T05:25:16.5848456Z patching file drivers/gpu/drm/meson/meson_viu.c
2025-10-31T05:25:16.5849576Z patching file drivers/gpu/drm/meson/meson_vpp.c
2025-10-31T05:25:16.5850643Z patching file drivers/gpu/drm/mgag200/mgag200_drv.h
2025-10-31T05:25:16.5851490Z patching file drivers/gpu/drm/mgag200/mgag200_i2c.c
2025-10-31T05:25:16.5853128Z patching file drivers/gpu/drm/mgag200/mgag200_mode.c
2025-10-31T05:25:16.5855306Z patching file drivers/gpu/drm/mgag200/mgag200_reg.h
2025-10-31T05:25:16.5856597Z patching file drivers/gpu/drm/msm/Kconfig
2025-10-31T05:25:16.5857261Z patching file drivers/gpu/drm/msm/Makefile
2025-10-31T05:25:16.5858487Z patching file drivers/gpu/drm/msm/adreno/a2xx_gpu.c
2025-10-31T05:25:16.5860114Z patching file drivers/gpu/drm/msm/adreno/a3xx_gpu.c
2025-10-31T05:25:16.5861309Z patching file drivers/gpu/drm/msm/adreno/a4xx_gpu.c
2025-10-31T05:25:16.5862942Z patching file drivers/gpu/drm/msm/adreno/a5xx_gpu.c
2025-10-31T05:25:16.5865755Z patching file drivers/gpu/drm/msm/adreno/a5xx_gpu.h
2025-10-31T05:25:16.5866604Z patching file drivers/gpu/drm/msm/adreno/a5xx_power.c
2025-10-31T05:25:16.5867929Z patching file drivers/gpu/drm/msm/adreno/a5xx_preempt.c
2025-10-31T05:25:16.5870051Z patching file drivers/gpu/drm/msm/adreno/a6xx_gmu.c
2025-10-31T05:25:16.5872478Z patching file drivers/gpu/drm/msm/adreno/a6xx_gmu.h
2025-10-31T05:25:16.5873134Z patching file drivers/gpu/drm/msm/adreno/a6xx_gpu.c
2025-10-31T05:25:16.5876514Z patching file drivers/gpu/drm/msm/adreno/a6xx_gpu.h
2025-10-31T05:25:16.5877121Z patching file drivers/gpu/drm/msm/adreno/a6xx_gpu_state.c
2025-10-31T05:25:16.5878875Z patching file drivers/gpu/drm/msm/adreno/a6xx_gpu_state.h
2025-10-31T05:25:16.5879872Z patching file drivers/gpu/drm/msm/adreno/a6xx_hfi.c
2025-10-31T05:25:16.5881241Z patching file drivers/gpu/drm/msm/adreno/adreno_device.c
2025-10-31T05:25:16.5882574Z patching file drivers/gpu/drm/msm/adreno/adreno_gpu.c
2025-10-31T05:25:16.5884288Z patching file drivers/gpu/drm/msm/adreno/adreno_gpu.h
2025-10-31T05:25:16.5885633Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_core_perf.c
2025-10-31T05:25:16.5886862Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_core_perf.h
2025-10-31T05:25:16.5887954Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
2025-10-31T05:25:16.5890331Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
2025-10-31T05:25:16.5893202Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_cmd.c
2025-10-31T05:25:16.5894681Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c
2025-10-31T05:25:16.5896159Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c
2025-10-31T05:25:16.5897621Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c
2025-10-31T05:25:16.5898699Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dspp.c
2025-10-31T05:25:16.5899725Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_intf.c
2025-10-31T05:25:16.5901339Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c
2025-10-31T05:25:16.5902789Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c
2025-10-31T05:25:16.5905024Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h
2025-10-31T05:25:16.5906098Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_mdss.c
2025-10-31T05:25:16.5907783Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c
2025-10-31T05:25:16.5909755Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c
2025-10-31T05:25:16.5911217Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_vbif.c
2025-10-31T05:25:16.5913036Z patching file drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c
2025-10-31T05:25:16.5914088Z patching file drivers/gpu/drm/msm/disp/mdp4/mdp4_kms.c
2025-10-31T05:25:16.5915906Z patching file drivers/gpu/drm/msm/disp/mdp4/mdp4_lvds_connector.c
2025-10-31T05:25:16.5916444Z patching file drivers/gpu/drm/msm/disp/mdp4/mdp4_plane.c
2025-10-31T05:25:16.5917880Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_cmd_encoder.c
2025-10-31T05:25:16.5919165Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c
2025-10-31T05:25:16.5921342Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c
2025-10-31T05:25:16.5922979Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_mixer.c
2025-10-31T05:25:16.5923676Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_mixer.h
2025-10-31T05:25:16.5924465Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_pipe.c
2025-10-31T05:25:16.5925211Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_pipe.h
2025-10-31T05:25:16.5926005Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_plane.c
2025-10-31T05:25:16.5928036Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_smp.c
2025-10-31T05:25:16.5928908Z patching file drivers/gpu/drm/msm/dp/dp_audio.c
2025-10-31T05:25:16.5930213Z patching file drivers/gpu/drm/msm/dp/dp_audio.h
2025-10-31T05:25:16.5930906Z patching file drivers/gpu/drm/msm/dp/dp_aux.c
2025-10-31T05:25:16.5942759Z patching file drivers/gpu/drm/msm/dp/dp_catalog.c
2025-10-31T05:25:16.5943255Z patching file drivers/gpu/drm/msm/dp/dp_catalog.h
2025-10-31T05:25:16.5943705Z patching file drivers/gpu/drm/msm/dp/dp_ctrl.c
2025-10-31T05:25:16.5944092Z patching file drivers/gpu/drm/msm/dp/dp_display.c
2025-10-31T05:25:16.5944467Z patching file drivers/gpu/drm/msm/dp/dp_display.h
2025-10-31T05:25:16.5944827Z patching file drivers/gpu/drm/msm/dp/dp_hpd.c
2025-10-31T05:25:16.5945198Z patching file drivers/gpu/drm/msm/dp/dp_link.c
2025-10-31T05:25:16.5945908Z patching file drivers/gpu/drm/msm/dp/dp_link.h
2025-10-31T05:25:16.5946865Z patching file drivers/gpu/drm/msm/dp/dp_panel.c
2025-10-31T05:25:16.5948211Z patching file drivers/gpu/drm/msm/dp/dp_reg.h
2025-10-31T05:25:16.5949214Z patching file drivers/gpu/drm/msm/dsi/dsi.c
2025-10-31T05:25:16.5954632Z patching file drivers/gpu/drm/msm/dsi/dsi_cfg.c
2025-10-31T05:25:16.5955005Z patching file drivers/gpu/drm/msm/dsi/dsi_host.c
2025-10-31T05:25:16.5955379Z patching file drivers/gpu/drm/msm/dsi/dsi_manager.c
2025-10-31T05:25:16.5956229Z patching file drivers/gpu/drm/msm/dsi/phy/dsi_phy.c
2025-10-31T05:25:16.5957624Z patching file drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c
2025-10-31T05:25:16.5958268Z patching file drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c
2025-10-31T05:25:16.5959338Z patching file drivers/gpu/drm/msm/dsi/pll/dsi_pll.c
2025-10-31T05:25:16.5960132Z patching file drivers/gpu/drm/msm/dsi/pll/dsi_pll.h
2025-10-31T05:25:16.5961728Z patching file drivers/gpu/drm/msm/dsi/pll/dsi_pll_10nm.c
2025-10-31T05:25:16.5962933Z patching file drivers/gpu/drm/msm/dsi/pll/dsi_pll_7nm.c
2025-10-31T05:25:16.5965038Z patching file drivers/gpu/drm/msm/edp/edp_ctrl.c
2025-10-31T05:25:16.5966764Z patching file drivers/gpu/drm/msm/hdmi/hdmi.c
2025-10-31T05:25:16.5968663Z patching file drivers/gpu/drm/msm/hdmi/hdmi.h
2025-10-31T05:25:16.5969715Z patching file drivers/gpu/drm/msm/hdmi/hdmi_bridge.c
2025-10-31T05:25:16.5971106Z patching file drivers/gpu/drm/msm/hdmi/hdmi_connector.c
2025-10-31T05:25:16.5973592Z patching file drivers/gpu/drm/msm/hdmi/hdmi_hpd.c
2025-10-31T05:25:16.5975649Z patching file drivers/gpu/drm/msm/hdmi/hdmi_i2c.c
2025-10-31T05:25:16.5976708Z patching file drivers/gpu/drm/msm/msm_debugfs.c
2025-10-31T05:25:16.5977311Z patching file drivers/gpu/drm/msm/msm_drv.c
2025-10-31T05:25:16.5979951Z patching file drivers/gpu/drm/msm/msm_drv.h
2025-10-31T05:25:16.5981783Z patching file drivers/gpu/drm/msm/msm_fence.c
2025-10-31T05:25:16.5982576Z patching file drivers/gpu/drm/msm/msm_gem.c
2025-10-31T05:25:16.5984509Z patching file drivers/gpu/drm/msm/msm_gem_prime.c
2025-10-31T05:25:16.5985110Z patching file drivers/gpu/drm/msm/msm_gem_shrinker.c
2025-10-31T05:25:16.5986799Z patching file drivers/gpu/drm/msm/msm_gem_submit.c
2025-10-31T05:25:16.5988217Z patching file drivers/gpu/drm/msm/msm_gpu.c
2025-10-31T05:25:16.5989435Z patching file drivers/gpu/drm/msm/msm_gpu.h
2025-10-31T05:25:16.5990469Z patching file drivers/gpu/drm/msm/msm_iommu.c
2025-10-31T05:25:16.5991803Z patching file drivers/gpu/drm/msm/msm_rd.c
2025-10-31T05:25:16.5992681Z patching file drivers/gpu/drm/msm/msm_ringbuffer.c
2025-10-31T05:25:16.5993495Z patching file drivers/gpu/drm/msm/msm_ringbuffer.h
2025-10-31T05:25:16.5994332Z patching file drivers/gpu/drm/mxsfb/Kconfig
2025-10-31T05:25:16.5995109Z patching file drivers/gpu/drm/mxsfb/mxsfb_drv.c
2025-10-31T05:25:16.5996427Z patching file drivers/gpu/drm/mxsfb/mxsfb_drv.h
2025-10-31T05:25:16.5997340Z patching file drivers/gpu/drm/mxsfb/mxsfb_kms.c
2025-10-31T05:25:16.6003632Z patching file drivers/gpu/drm/mxsfb/mxsfb_regs.h
2025-10-31T05:25:16.6004797Z patching file drivers/gpu/drm/nouveau/dispnv04/disp.c
2025-10-31T05:25:16.6005223Z patching file drivers/gpu/drm/nouveau/dispnv04/tvnv17.c
2025-10-31T05:25:16.6005774Z patching file drivers/gpu/drm/nouveau/dispnv50/atom.h
2025-10-31T05:25:16.6006194Z patching file drivers/gpu/drm/nouveau/dispnv50/base507c.c
2025-10-31T05:25:16.6006601Z patching file drivers/gpu/drm/nouveau/dispnv50/base827c.c
2025-10-31T05:25:16.6006993Z patching file drivers/gpu/drm/nouveau/dispnv50/crc.c
2025-10-31T05:25:16.6007578Z patching file drivers/gpu/drm/nouveau/dispnv50/disp.c
2025-10-31T05:25:16.6010785Z patching file drivers/gpu/drm/nouveau/dispnv50/disp.h
2025-10-31T05:25:16.6011568Z patching file drivers/gpu/drm/nouveau/dispnv50/head.c
2025-10-31T05:25:16.6013102Z patching file drivers/gpu/drm/nouveau/dispnv50/head.h
2025-10-31T05:25:16.6013949Z patching file drivers/gpu/drm/nouveau/dispnv50/head917d.c
2025-10-31T05:25:16.6015070Z patching file drivers/gpu/drm/nouveau/dispnv50/wimmc37b.c
2025-10-31T05:25:16.6020582Z patching file drivers/gpu/drm/nouveau/dispnv50/wndw.c
2025-10-31T05:25:16.6021011Z patching file drivers/gpu/drm/nouveau/dispnv50/wndw.h
2025-10-31T05:25:16.6021818Z patching file drivers/gpu/drm/nouveau/include/nvhw/class/cl917d.h
2025-10-31T05:25:16.6022392Z patching file drivers/gpu/drm/nouveau/include/nvif/push.h
2025-10-31T05:25:16.6022891Z patching file drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/conn.h
2025-10-31T05:25:16.6023303Z patching file drivers/gpu/drm/nouveau/nouveau_acpi.c
2025-10-31T05:25:16.6024389Z patching file drivers/gpu/drm/nouveau/nouveau_backlight.c
2025-10-31T05:25:16.6026089Z patching file drivers/gpu/drm/nouveau/nouveau_bios.c
2025-10-31T05:25:16.6028862Z patching file drivers/gpu/drm/nouveau/nouveau_bo.c
2025-10-31T05:25:16.6030815Z patching file drivers/gpu/drm/nouveau/nouveau_chan.c
2025-10-31T05:25:16.6032577Z patching file drivers/gpu/drm/nouveau/nouveau_connector.c
2025-10-31T05:25:16.6034573Z patching file drivers/gpu/drm/nouveau/nouveau_debugfs.c
2025-10-31T05:25:16.6035656Z patching file drivers/gpu/drm/nouveau/nouveau_display.c
2025-10-31T05:25:16.6037390Z patching file drivers/gpu/drm/nouveau/nouveau_dmem.c
2025-10-31T05:25:16.6038699Z patching file drivers/gpu/drm/nouveau/nouveau_dp.c
2025-10-31T05:25:16.6040077Z patching file drivers/gpu/drm/nouveau/nouveau_drm.c
2025-10-31T05:25:16.6042288Z patching file drivers/gpu/drm/nouveau/nouveau_drv.h
2025-10-31T05:25:16.6043344Z patching file drivers/gpu/drm/nouveau/nouveau_fbcon.c
2025-10-31T05:25:16.6044586Z patching file drivers/gpu/drm/nouveau/nouveau_fence.c
2025-10-31T05:25:16.6046036Z patching file drivers/gpu/drm/nouveau/nouveau_gem.c
2025-10-31T05:25:16.6047533Z patching file drivers/gpu/drm/nouveau/nouveau_prime.c
2025-10-31T05:25:16.6048763Z patching file drivers/gpu/drm/nouveau/nouveau_svm.c
2025-10-31T05:25:16.6050251Z patching file drivers/gpu/drm/nouveau/nouveau_vmm.c
2025-10-31T05:25:16.6051302Z patching file drivers/gpu/drm/nouveau/nv04_fence.c
2025-10-31T05:25:16.6054410Z patching file drivers/gpu/drm/nouveau/nvkm/engine/device/ctrl.c
2025-10-31T05:25:16.6055100Z patching file drivers/gpu/drm/nouveau/nvkm/engine/device/tegra.c
2025-10-31T05:25:16.6055960Z patching file drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c
2025-10-31T05:25:16.6056426Z patching file drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.h
2025-10-31T05:25:16.6057057Z patching file drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigv100.c
2025-10-31T05:25:16.6059288Z patching file drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.c
2025-10-31T05:25:16.6059759Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.h
2025-10-31T05:25:16.6060470Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk104.c
2025-10-31T05:25:16.6062434Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110.c
2025-10-31T05:25:16.6063927Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110b.c
2025-10-31T05:25:16.6064647Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk208.c
2025-10-31T05:25:16.6066510Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c
2025-10-31T05:25:16.6068446Z patching file drivers/gpu/drm/nouveau/nvkm/falcon/base.c
2025-10-31T05:25:16.6076509Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm200.c
2025-10-31T05:25:16.6077181Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp102.c
2025-10-31T05:25:16.6077761Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/acr/hsfw.c
2025-10-31T05:25:16.6078343Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/bios/base.c
2025-10-31T05:25:16.6078809Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadow.c
2025-10-31T05:25:16.6079487Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowof.c
2025-10-31T05:25:16.6079930Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/clk/base.c
2025-10-31T05:25:16.6080457Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c
2025-10-31T05:25:16.6080906Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gf100.c
2025-10-31T05:25:16.6081732Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gk104.c
2025-10-31T05:25:16.6082442Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv50.c
2025-10-31T05:25:16.6083041Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/mmu/base.c
2025-10-31T05:25:16.6083495Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmtu102.c
2025-10-31T05:25:16.6083954Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.c
2025-10-31T05:25:16.6084398Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm200.c
2025-10-31T05:25:16.6084826Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm20b.c
2025-10-31T05:25:16.6085915Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp102.c
2025-10-31T05:25:16.6086763Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp10b.c
2025-10-31T05:25:16.6087428Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/priv.h
2025-10-31T05:25:16.6089503Z patching file drivers/gpu/drm/omapdrm/dss/dsi.c
2025-10-31T05:25:16.6093996Z patching file drivers/gpu/drm/omapdrm/dss/dss.c
2025-10-31T05:25:16.6094940Z patching file drivers/gpu/drm/omapdrm/omap_dmm_tiler.c
2025-10-31T05:25:16.6096438Z patching file drivers/gpu/drm/omapdrm/omap_drv.c
2025-10-31T05:25:16.6097688Z patching file drivers/gpu/drm/omapdrm/omap_gem.c
2025-10-31T05:25:16.6099639Z patching file drivers/gpu/drm/panel/Kconfig
2025-10-31T05:25:16.6100722Z patching file drivers/gpu/drm/panel/panel-arm-versatile.c
2025-10-31T05:25:16.6101886Z patching file drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c
2025-10-31T05:25:16.6104040Z patching file drivers/gpu/drm/panel/panel-elida-kd35t133.c
2025-10-31T05:25:16.6104856Z patching file drivers/gpu/drm/panel/panel-ilitek-ili9881c.c
2025-10-31T05:25:16.6106217Z patching file drivers/gpu/drm/panel/panel-innolux-p079zca.c
2025-10-31T05:25:16.6107994Z patching file drivers/gpu/drm/panel/panel-kingdisplay-kd097d04.c
2025-10-31T05:25:16.6108574Z patching file drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
2025-10-31T05:25:16.6109768Z patching file drivers/gpu/drm/panel/panel-novatek-nt35510.c
2025-10-31T05:25:16.6111609Z patching file drivers/gpu/drm/panel/panel-orisetech-otm8009a.c
2025-10-31T05:25:16.6113107Z patching file drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c
2025-10-31T05:25:16.6114403Z patching file drivers/gpu/drm/panel/panel-samsung-s6d16d0.c
2025-10-31T05:25:16.6115519Z patching file drivers/gpu/drm/panel/panel-samsung-s6e63m0-dsi.c
2025-10-31T05:25:16.6116033Z patching file drivers/gpu/drm/panel/panel-sharp-ls043t1le01.c
2025-10-31T05:25:16.6118259Z patching file drivers/gpu/drm/panel/panel-simple.c
2025-10-31T05:25:16.6125505Z patching file drivers/gpu/drm/panel/panel-sitronix-st7701.c
2025-10-31T05:25:16.6126730Z patching file drivers/gpu/drm/panel/panel-sitronix-st7703.c
2025-10-31T05:25:16.6127177Z patching file drivers/gpu/drm/panel/panel-sony-acx424akp.c
2025-10-31T05:25:16.6127584Z patching file drivers/gpu/drm/panel/panel-tpo-tpg110.c
2025-10-31T05:25:16.6134960Z patching file drivers/gpu/drm/panel/panel-visionox-rm69299.c
2025-10-31T05:25:16.6135355Z patching file drivers/gpu/drm/panfrost/Kconfig
2025-10-31T05:25:16.6135918Z patching file drivers/gpu/drm/panfrost/panfrost_device.c
2025-10-31T05:25:16.6136348Z patching file drivers/gpu/drm/panfrost/panfrost_device.h
2025-10-31T05:25:16.6136757Z patching file drivers/gpu/drm/panfrost/panfrost_drv.c
2025-10-31T05:25:16.6137149Z patching file drivers/gpu/drm/panfrost/panfrost_gem.c
2025-10-31T05:25:16.6137537Z patching file drivers/gpu/drm/panfrost/panfrost_gem.h
2025-10-31T05:25:16.6138044Z patching file drivers/gpu/drm/panfrost/panfrost_gpu.c
2025-10-31T05:25:16.6138446Z patching file drivers/gpu/drm/panfrost/panfrost_job.c
2025-10-31T05:25:16.6138846Z patching file drivers/gpu/drm/panfrost/panfrost_mmu.c
2025-10-31T05:25:16.6140522Z patching file drivers/gpu/drm/panfrost/panfrost_mmu.h
2025-10-31T05:25:16.6141525Z patching file drivers/gpu/drm/panfrost/panfrost_regs.h
2025-10-31T05:25:16.6143013Z patching file drivers/gpu/drm/pl111/Kconfig
2025-10-31T05:25:16.6143642Z patching file drivers/gpu/drm/pl111/pl111_drv.c
2025-10-31T05:25:16.6144774Z patching file drivers/gpu/drm/pl111/pl111_versatile.c
2025-10-31T05:25:16.6146167Z patching file drivers/gpu/drm/qxl/qxl_cmd.c
2025-10-31T05:25:16.6147606Z patching file drivers/gpu/drm/qxl/qxl_display.c
2025-10-31T05:25:16.6149295Z patching file drivers/gpu/drm/qxl/qxl_drv.h
2025-10-31T05:25:16.6150149Z patching file drivers/gpu/drm/qxl/qxl_dumb.c
2025-10-31T05:25:16.6151101Z patching file drivers/gpu/drm/qxl/qxl_gem.c
2025-10-31T05:25:16.6152526Z patching file drivers/gpu/drm/qxl/qxl_ioctl.c
2025-10-31T05:25:16.6154209Z patching file drivers/gpu/drm/qxl/qxl_object.c
2025-10-31T05:25:16.6154848Z patching file drivers/gpu/drm/qxl/qxl_object.h
2025-10-31T05:25:16.6155509Z patching file drivers/gpu/drm/qxl/qxl_release.c
2025-10-31T05:25:16.6156987Z patching file drivers/gpu/drm/radeon/.gitignore
2025-10-31T05:25:16.6157733Z patching file drivers/gpu/drm/radeon/Kconfig
2025-10-31T05:25:16.6158718Z patching file drivers/gpu/drm/radeon/Makefile
2025-10-31T05:25:16.6162411Z patching file drivers/gpu/drm/radeon/atombios.h
2025-10-31T05:25:16.6170471Z patching file drivers/gpu/drm/radeon/atombios_encoders.c
2025-10-31T05:25:16.6176343Z patching file drivers/gpu/drm/radeon/ci_dpm.c
2025-10-31T05:25:16.6181823Z patching file drivers/gpu/drm/radeon/cik.c
2025-10-31T05:25:16.6189290Z patching file drivers/gpu/drm/radeon/cypress_dpm.c
2025-10-31T05:25:16.6193048Z patching file drivers/gpu/drm/radeon/evergreen.c
2025-10-31T05:25:16.6197947Z patching file drivers/gpu/drm/radeon/evergreen_cs.c
2025-10-31T05:25:16.6203707Z patching file drivers/gpu/drm/radeon/ni.c
2025-10-31T05:25:16.6206049Z patching file drivers/gpu/drm/radeon/ni_dpm.c
2025-10-31T05:25:16.6211368Z patching file drivers/gpu/drm/radeon/r100.c
2025-10-31T05:25:16.6214965Z patching file drivers/gpu/drm/radeon/r300.c
2025-10-31T05:25:16.6216996Z patching file drivers/gpu/drm/radeon/r600_cs.c
2025-10-31T05:25:16.6220470Z patching file drivers/gpu/drm/radeon/radeon.h
2025-10-31T05:25:16.6223611Z patching file drivers/gpu/drm/radeon/radeon_asic.h
2025-10-31T05:25:16.6227147Z patching file drivers/gpu/drm/radeon/radeon_atombios.c
2025-10-31T05:25:16.6230286Z patching file drivers/gpu/drm/radeon/radeon_bios.c
2025-10-31T05:25:16.6233024Z patching file drivers/gpu/drm/radeon/radeon_connectors.c
2025-10-31T05:25:16.6235536Z patching file drivers/gpu/drm/radeon/radeon_cs.c
2025-10-31T05:25:16.6237372Z patching file drivers/gpu/drm/radeon/radeon_device.c
2025-10-31T05:25:16.6240001Z patching file drivers/gpu/drm/radeon/radeon_display.c
2025-10-31T05:25:16.6242751Z patching file drivers/gpu/drm/radeon/radeon_dp_mst.c
2025-10-31T05:25:16.6244504Z patching file drivers/gpu/drm/radeon/radeon_drv.c
2025-10-31T05:25:16.6245835Z patching file drivers/gpu/drm/radeon/radeon_encoders.c
2025-10-31T05:25:16.6247261Z patching file drivers/gpu/drm/radeon/radeon_gem.c
2025-10-31T05:25:16.6249155Z patching file drivers/gpu/drm/radeon/radeon_kms.c
2025-10-31T05:25:16.6250846Z patching file drivers/gpu/drm/radeon/radeon_pm.c
2025-10-31T05:25:16.6253233Z patching file drivers/gpu/drm/radeon/radeon_prime.c
2025-10-31T05:25:16.6254892Z patching file drivers/gpu/drm/radeon/radeon_ttm.c
2025-10-31T05:25:16.6256327Z patching file drivers/gpu/drm/radeon/radeon_uvd.c
2025-10-31T05:25:16.6257977Z patching file drivers/gpu/drm/radeon/radeon_vce.c
2025-10-31T05:25:16.6259619Z patching file drivers/gpu/drm/radeon/radeon_vm.c
2025-10-31T05:25:16.6261670Z patching file drivers/gpu/drm/radeon/rs400.c
2025-10-31T05:25:16.6263561Z patching file drivers/gpu/drm/radeon/rv740_dpm.c
2025-10-31T05:25:16.6266095Z patching file drivers/gpu/drm/radeon/si.c
2025-10-31T05:25:16.6273352Z patching file drivers/gpu/drm/radeon/si_dpm.c
2025-10-31T05:25:16.6279230Z patching file drivers/gpu/drm/radeon/sumo_dpm.c
2025-10-31T05:25:16.6281844Z patching file drivers/gpu/drm/radeon/trinity_dpm.c
2025-10-31T05:25:16.6284149Z patching file drivers/gpu/drm/rcar-du/Kconfig
2025-10-31T05:25:16.6285135Z patching file drivers/gpu/drm/rcar-du/rcar_cmm.c
2025-10-31T05:25:16.6287091Z patching file drivers/gpu/drm/rcar-du/rcar_du_crtc.c
2025-10-31T05:25:16.6289166Z patching file drivers/gpu/drm/rcar-du/rcar_du_drv.h
2025-10-31T05:25:16.6289864Z patching file drivers/gpu/drm/rcar-du/rcar_du_encoder.c
2025-10-31T05:25:16.6290627Z patching file drivers/gpu/drm/rcar-du/rcar_du_kms.c
2025-10-31T05:25:16.6292279Z patching file drivers/gpu/drm/rockchip/analogix_dp-rockchip.c
2025-10-31T05:25:16.6293643Z patching file drivers/gpu/drm/rockchip/cdn-dp-core.c
2025-10-31T05:25:16.6295553Z patching file drivers/gpu/drm/rockchip/cdn-dp-reg.c
2025-10-31T05:25:16.6297253Z patching file drivers/gpu/drm/rockchip/dw-mipi-dsi-rockchip.c
2025-10-31T05:25:16.6300249Z patching file drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c
2025-10-31T05:25:16.6301037Z patching file drivers/gpu/drm/rockchip/inno_hdmi.c
2025-10-31T05:25:16.6303015Z patching file drivers/gpu/drm/rockchip/rk3066_hdmi.c
2025-10-31T05:25:16.6304491Z patching file drivers/gpu/drm/rockchip/rockchip_drm_fb.c
2025-10-31T05:25:16.6305272Z patching file drivers/gpu/drm/rockchip/rockchip_drm_gem.c
2025-10-31T05:25:16.6306665Z patching file drivers/gpu/drm/rockchip/rockchip_drm_vop.c
2025-10-31T05:25:16.6309909Z patching file drivers/gpu/drm/rockchip/rockchip_drm_vop.h
2025-10-31T05:25:16.6311367Z patching file drivers/gpu/drm/rockchip/rockchip_lvds.c
2025-10-31T05:25:16.6312688Z patching file drivers/gpu/drm/rockchip/rockchip_vop_reg.c
2025-10-31T05:25:16.6315696Z patching file drivers/gpu/drm/rockchip/rockchip_vop_reg.h
2025-10-31T05:25:16.6317164Z patching file drivers/gpu/drm/scheduler/gpu_scheduler_trace.h
2025-10-31T05:25:16.6317936Z patching file drivers/gpu/drm/scheduler/sched_entity.c
2025-10-31T05:25:16.6319575Z patching file drivers/gpu/drm/scheduler/sched_main.c
2025-10-31T05:25:16.6321083Z patching file drivers/gpu/drm/sti/Makefile
2025-10-31T05:25:16.6321520Z patching file drivers/gpu/drm/sti/sti_dvo.c
2025-10-31T05:25:16.6323144Z patching file drivers/gpu/drm/sti/sti_hda.c
2025-10-31T05:25:16.6324868Z patching file drivers/gpu/drm/sti/sti_hdmi.c
2025-10-31T05:25:16.6326665Z patching file drivers/gpu/drm/sti/sti_mixer.c
2025-10-31T05:25:16.6327693Z patching file drivers/gpu/drm/stm/drv.c
2025-10-31T05:25:16.6329225Z patching file drivers/gpu/drm/stm/ltdc.c
2025-10-31T05:25:16.6331182Z patching file drivers/gpu/drm/sun4i/Kconfig
2025-10-31T05:25:16.6332202Z patching file drivers/gpu/drm/sun4i/sun4i_drv.c
2025-10-31T05:25:16.6334126Z patching file drivers/gpu/drm/sun4i/sun4i_tcon.c
2025-10-31T05:25:16.6335792Z patching file drivers/gpu/drm/sun4i/sun4i_tcon.h
2025-10-31T05:25:16.6337385Z patching file drivers/gpu/drm/sun4i/sun6i_mipi_dsi.c
2025-10-31T05:25:16.6339448Z patching file drivers/gpu/drm/sun4i/sun8i_csc.h
2025-10-31T05:25:16.6339973Z patching file drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c
2025-10-31T05:25:16.6341442Z patching file drivers/gpu/drm/sun4i/sun8i_dw_hdmi.h
2025-10-31T05:25:16.6343041Z patching file drivers/gpu/drm/sun4i/sun8i_hdmi_phy.c
2025-10-31T05:25:16.6344706Z patching file drivers/gpu/drm/sun4i/sun8i_mixer.h
2025-10-31T05:25:16.6346252Z patching file drivers/gpu/drm/tegra/dc.c
2025-10-31T05:25:16.6349171Z patching file drivers/gpu/drm/tegra/dpaux.c
2025-10-31T05:25:16.6350706Z patching file drivers/gpu/drm/tegra/drm.c
2025-10-31T05:25:16.6353037Z patching file drivers/gpu/drm/tegra/dsi.c
2025-10-31T05:25:16.6355188Z patching file drivers/gpu/drm/tegra/fb.c
2025-10-31T05:25:16.6356621Z patching file drivers/gpu/drm/tegra/hdmi.c
2025-10-31T05:25:16.6362821Z patching file drivers/gpu/drm/tegra/hub.c
2025-10-31T05:25:16.6363270Z patching file drivers/gpu/drm/tegra/hub.h
2025-10-31T05:25:16.6363627Z patching file drivers/gpu/drm/tegra/output.c
2025-10-31T05:25:16.6363968Z patching file drivers/gpu/drm/tegra/rgb.c
2025-10-31T05:25:16.6364317Z patching file drivers/gpu/drm/tegra/sor.c
2025-10-31T05:25:16.6367710Z patching file drivers/gpu/drm/tegra/vic.c
2025-10-31T05:25:16.6368884Z patching file drivers/gpu/drm/tidss/tidss_crtc.c
2025-10-31T05:25:16.6370546Z patching file drivers/gpu/drm/tidss/tidss_dispc.c
2025-10-31T05:25:16.6372960Z patching file drivers/gpu/drm/tidss/tidss_plane.c
2025-10-31T05:25:16.6374001Z patching file drivers/gpu/drm/tilcdc/tilcdc_crtc.c
2025-10-31T05:25:16.6375136Z patching file drivers/gpu/drm/tilcdc/tilcdc_external.c
2025-10-31T05:25:16.6376968Z patching file drivers/gpu/drm/tiny/gm12u320.c
2025-10-31T05:25:16.6377926Z patching file drivers/gpu/drm/tiny/ili9486.c
2025-10-31T05:25:16.6379181Z patching file drivers/gpu/drm/tiny/repaper.c
2025-10-31T05:25:16.6380811Z patching file drivers/gpu/drm/tiny/st7735r.c
2025-10-31T05:25:16.6382472Z patching file drivers/gpu/drm/ttm/ttm_bo.c
2025-10-31T05:25:16.6384536Z patching file drivers/gpu/drm/ttm/ttm_bo_util.c
2025-10-31T05:25:16.6385800Z patching file drivers/gpu/drm/ttm/ttm_bo_vm.c
2025-10-31T05:25:16.6387060Z patching file drivers/gpu/drm/ttm/ttm_memory.c
2025-10-31T05:25:16.6388166Z patching file drivers/gpu/drm/ttm/ttm_range_manager.c
2025-10-31T05:25:16.6388989Z patching file drivers/gpu/drm/ttm/ttm_resource.c
2025-10-31T05:25:16.6389987Z patching file drivers/gpu/drm/tve200/tve200_drv.c
2025-10-31T05:25:16.6390974Z patching file drivers/gpu/drm/udl/udl_connector.c
2025-10-31T05:25:16.6391697Z patching file drivers/gpu/drm/udl/udl_drv.c
2025-10-31T05:25:16.6392884Z patching file drivers/gpu/drm/udl/udl_drv.h
2025-10-31T05:25:16.6393900Z patching file drivers/gpu/drm/udl/udl_main.c
2025-10-31T05:25:16.6395128Z patching file drivers/gpu/drm/udl/udl_modeset.c
2025-10-31T05:25:16.6396807Z patching file drivers/gpu/drm/v3d/v3d_drv.h
2025-10-31T05:25:16.6397415Z patching file drivers/gpu/drm/v3d/v3d_gem.c
2025-10-31T05:25:16.6399123Z patching file drivers/gpu/drm/v3d/v3d_irq.c
2025-10-31T05:25:16.6400096Z patching file drivers/gpu/drm/v3d/v3d_mmu.c
2025-10-31T05:25:16.6401343Z patching file drivers/gpu/drm/v3d/v3d_sched.c
2025-10-31T05:25:16.6402797Z patching file drivers/gpu/drm/vboxvideo/hgsmi_base.c
2025-10-31T05:25:16.6403496Z patching file drivers/gpu/drm/vboxvideo/vbox_main.c
2025-10-31T05:25:16.6404537Z patching file drivers/gpu/drm/vboxvideo/vboxvideo.h
2025-10-31T05:25:16.6405987Z patching file drivers/gpu/drm/vc4/vc4_bo.c
2025-10-31T05:25:16.6407649Z patching file drivers/gpu/drm/vc4/vc4_crtc.c
2025-10-31T05:25:16.6409527Z patching file drivers/gpu/drm/vc4/vc4_dpi.c
2025-10-31T05:25:16.6411073Z patching file drivers/gpu/drm/vc4/vc4_drv.c
2025-10-31T05:25:16.6412900Z patching file drivers/gpu/drm/vc4/vc4_drv.h
2025-10-31T05:25:16.6414386Z patching file drivers/gpu/drm/vc4/vc4_dsi.c
2025-10-31T05:25:16.6418246Z patching file drivers/gpu/drm/vc4/vc4_hdmi.c
2025-10-31T05:25:16.6421916Z patching file drivers/gpu/drm/vc4/vc4_hdmi_regs.h
2025-10-31T05:25:16.6423584Z patching file drivers/gpu/drm/vc4/vc4_hvs.c
2025-10-31T05:25:16.6425424Z patching file drivers/gpu/drm/vc4/vc4_plane.c
2025-10-31T05:25:16.6427846Z patching file drivers/gpu/drm/vc4/vc4_regs.h
2025-10-31T05:25:16.6429560Z patching file drivers/gpu/drm/vc4/vc4_txp.c
2025-10-31T05:25:16.6431050Z patching file drivers/gpu/drm/vc4/vc4_vec.c
2025-10-31T05:25:16.6432268Z patching file drivers/gpu/drm/vgem/vgem_fence.c
2025-10-31T05:25:16.6433581Z patching file drivers/gpu/drm/virtio/virtgpu_display.c
2025-10-31T05:25:16.6434335Z patching file drivers/gpu/drm/virtio/virtgpu_gem.c
2025-10-31T05:25:16.6435629Z patching file drivers/gpu/drm/virtio/virtgpu_ioctl.c
2025-10-31T05:25:16.6436759Z patching file drivers/gpu/drm/virtio/virtgpu_kms.c
2025-10-31T05:25:16.6438561Z patching file drivers/gpu/drm/virtio/virtgpu_object.c
2025-10-31T05:25:16.6439192Z patching file drivers/gpu/drm/virtio/virtgpu_plane.c
2025-10-31T05:25:16.6440849Z patching file drivers/gpu/drm/virtio/virtgpu_vq.c
2025-10-31T05:25:16.6441762Z patching file drivers/gpu/drm/vkms/vkms_crtc.c
2025-10-31T05:25:16.6443183Z patching file drivers/gpu/drm/vkms/vkms_drv.c
2025-10-31T05:25:16.6444657Z patching file drivers/gpu/drm/vmwgfx/device_include/svga3d_surfacedefs.h
2025-10-31T05:25:16.6446936Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_binding.c
2025-10-31T05:25:16.6449140Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_blit.c
2025-10-31T05:25:16.6450664Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_bo.c
2025-10-31T05:25:16.6453376Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.c
2025-10-31T05:25:16.6455042Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf_res.c
2025-10-31T05:25:16.6456298Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_cotable.c
2025-10-31T05:25:16.6457983Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
2025-10-31T05:25:16.6459871Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
2025-10-31T05:25:16.6463085Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c
2025-10-31T05:25:16.6467859Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_fb.c
2025-10-31T05:25:16.6469388Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_fence.c
2025-10-31T05:25:16.6471832Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
2025-10-31T05:25:16.6474787Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_mob.c
2025-10-31T05:25:16.6476170Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_msg.c
2025-10-31T05:25:16.6477534Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c
2025-10-31T05:25:16.6479302Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_resource.c
2025-10-31T05:25:16.6481371Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_scrn.c
2025-10-31T05:25:16.6483149Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_shader.c
2025-10-31T05:25:16.6484782Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_so.c
2025-10-31T05:25:16.6486364Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
2025-10-31T05:25:16.6489140Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c
2025-10-31T05:25:16.6490817Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_validation.c
2025-10-31T05:25:16.6492875Z patching file drivers/gpu/drm/xen/xen_drm_front.c
2025-10-31T05:25:16.6494493Z patching file drivers/gpu/drm/xlnx/zynqmp_disp.c
2025-10-31T05:25:16.6496933Z patching file drivers/gpu/drm/xlnx/zynqmp_dp.c
2025-10-31T05:25:16.6498940Z patching file drivers/gpu/drm/xlnx/zynqmp_dpsub.c
2025-10-31T05:25:16.6499726Z patching file drivers/gpu/drm/zte/Kconfig
2025-10-31T05:25:16.6501012Z patching file drivers/gpu/host1x/bus.c
2025-10-31T05:25:16.6502849Z patching file drivers/gpu/host1x/dev.c
2025-10-31T05:25:16.6504305Z patching file drivers/gpu/host1x/hw/syncpt_hw.c
2025-10-31T05:25:16.6505253Z patching file drivers/gpu/ipu-v3/ipu-common.c
2025-10-31T05:25:16.6507385Z patching file drivers/gpu/ipu-v3/ipu-cpmem.c
2025-10-31T05:25:16.6508670Z patching file drivers/gpu/ipu-v3/ipu-di.c
2025-10-31T05:25:16.6510381Z patching file drivers/greybus/interface.c
2025-10-31T05:25:16.6512546Z patching file drivers/greybus/svc.c
2025-10-31T05:25:16.6514235Z patching file drivers/hid/Kconfig
2025-10-31T05:25:16.6516280Z patching file drivers/hid/hid-a4tech.c
2025-10-31T05:25:16.6517215Z patching file drivers/hid/hid-alps.c
2025-10-31T05:25:16.6518827Z patching file drivers/hid/hid-apple.c
2025-10-31T05:25:16.6520571Z patching file drivers/hid/hid-appleir.c
2025-10-31T05:25:16.6522118Z patching file drivers/hid/hid-asus.c
2025-10-31T05:25:16.6524432Z patching file drivers/hid/hid-betopff.c
2025-10-31T05:25:16.6525408Z patching file drivers/hid/hid-bigbenff.c
2025-10-31T05:25:16.6527383Z patching file drivers/hid/hid-chicony.c
2025-10-31T05:25:16.6528958Z patching file drivers/hid/hid-core.c
2025-10-31T05:25:16.6532785Z patching file drivers/hid/hid-corsair.c
2025-10-31T05:25:16.6534472Z patching file drivers/hid/hid-cougar.c
2025-10-31T05:25:16.6535050Z patching file drivers/hid/hid-cp2112.c
2025-10-31T05:25:16.6536603Z patching file drivers/hid/hid-debug.c
2025-10-31T05:25:16.6538876Z patching file drivers/hid/hid-elan.c
2025-10-31T05:25:16.6539875Z patching file drivers/hid/hid-elo.c
2025-10-31T05:25:16.6541014Z patching file drivers/hid/hid-glorious.c
2025-10-31T05:25:16.6542432Z patching file drivers/hid/hid-google-hammer.c
2025-10-31T05:25:16.6544798Z patching file drivers/hid/hid-gt683r.c
2025-10-31T05:25:16.6545774Z patching file drivers/hid/hid-holtek-kbd.c
2025-10-31T05:25:16.6547267Z patching file drivers/hid/hid-holtek-mouse.c
2025-10-31T05:25:16.6547908Z patching file drivers/hid/hid-hyperv.c
2025-10-31T05:25:16.6549496Z patching file drivers/hid/hid-ids.h
2025-10-31T05:25:16.6553233Z patching file drivers/hid/hid-input.c
2025-10-31T05:25:16.6555373Z patching file drivers/hid/hid-ite.c
2025-10-31T05:25:16.6556482Z patching file drivers/hid/hid-led.c
2025-10-31T05:25:16.6557942Z patching file drivers/hid/hid-lenovo.c
2025-10-31T05:25:16.6560626Z patching file drivers/hid/hid-lg.c
2025-10-31T05:25:16.6562673Z patching file drivers/hid/hid-lg4ff.c
2025-10-31T05:25:16.6564931Z patching file drivers/hid/hid-logitech-dj.c
2025-10-31T05:25:16.6568253Z patching file drivers/hid/hid-logitech-hidpp.c
2025-10-31T05:25:16.6572939Z patching file drivers/hid/hid-magicmouse.c
2025-10-31T05:25:16.6574491Z patching file drivers/hid/hid-mcp2221.c
2025-10-31T05:25:16.6580183Z patching file drivers/hid/hid-mf.c
2025-10-31T05:25:16.6580547Z patching file drivers/hid/hid-microsoft.c
2025-10-31T05:25:16.6580896Z patching file drivers/hid/hid-multitouch.c
2025-10-31T05:25:16.6583403Z patching file drivers/hid/hid-ntrig.c
2025-10-31T05:25:16.6584756Z patching file drivers/hid/hid-plantronics.c
2025-10-31T05:25:16.6586537Z patching file drivers/hid/hid-prodikeys.c
2025-10-31T05:25:16.6588291Z patching file drivers/hid/hid-quirks.c
2025-10-31T05:25:16.6591279Z patching file drivers/hid/hid-roccat-arvo.c
2025-10-31T05:25:16.6592586Z patching file drivers/hid/hid-roccat-isku.c
2025-10-31T05:25:16.6593998Z patching file drivers/hid/hid-roccat-kone.c
2025-10-31T05:25:16.6595516Z patching file drivers/hid/hid-roccat-koneplus.c
2025-10-31T05:25:16.6596926Z patching file drivers/hid/hid-roccat-konepure.c
2025-10-31T05:25:16.6597944Z patching file drivers/hid/hid-roccat-kovaplus.c
2025-10-31T05:25:16.6599244Z patching file drivers/hid/hid-roccat-lua.c
2025-10-31T05:25:16.6600330Z patching file drivers/hid/hid-roccat-pyra.c
2025-10-31T05:25:16.6601245Z patching file drivers/hid/hid-roccat-ryos.c
2025-10-31T05:25:16.6601853Z patching file drivers/hid/hid-roccat-savu.c
2025-10-31T05:25:16.6602836Z patching file drivers/hid/hid-roccat.c
2025-10-31T05:25:16.6603934Z patching file drivers/hid/hid-saitek.c
2025-10-31T05:25:16.6604966Z patching file drivers/hid/hid-samsung.c
2025-10-31T05:25:16.6606190Z patching file drivers/hid/hid-sensor-custom.c
2025-10-31T05:25:16.6607821Z patching file drivers/hid/hid-sensor-hub.c
2025-10-31T05:25:16.6609488Z patching file drivers/hid/hid-steam.c
2025-10-31T05:25:16.6611079Z patching file drivers/hid/hid-u2fzero.c
2025-10-31T05:25:16.6612505Z patching file drivers/hid/hid-uclogic-core.c
2025-10-31T05:25:16.6613941Z patching file drivers/hid/hid-uclogic-params.c
2025-10-31T05:25:16.6615944Z patching file drivers/hid/hid-vivaldi.c
2025-10-31T05:25:16.6617216Z patching file drivers/hid/hidraw.c
2025-10-31T05:25:16.6618706Z patching file drivers/hid/i2c-hid/i2c-hid-core.c
2025-10-31T05:25:16.6620847Z patching file drivers/hid/i2c-hid/i2c-hid-dmi-quirks.c
2025-10-31T05:25:16.6622388Z patching file drivers/hid/intel-ish-hid/ipc/ipc.c
2025-10-31T05:25:16.6623974Z patching file drivers/hid/intel-ish-hid/ipc/pci-ish.c
2025-10-31T05:25:16.6625272Z patching file drivers/hid/intel-ish-hid/ishtp-fw-loader.c
2025-10-31T05:25:16.6626927Z patching file drivers/hid/intel-ish-hid/ishtp-hid.c
2025-10-31T05:25:16.6627728Z patching file drivers/hid/intel-ish-hid/ishtp-hid.h
2025-10-31T05:25:16.6629134Z patching file drivers/hid/intel-ish-hid/ishtp/client.c
2025-10-31T05:25:16.6630830Z patching file drivers/hid/intel-ish-hid/ishtp/dma-if.c
2025-10-31T05:25:16.6631832Z patching file drivers/hid/uhid.c
2025-10-31T05:25:16.6634268Z patching file drivers/hid/usbhid/hid-core.c
2025-10-31T05:25:16.6636794Z patching file drivers/hid/usbhid/hid-pidff.c
2025-10-31T05:25:16.6638779Z patching file drivers/hid/usbhid/usbkbd.c
2025-10-31T05:25:16.6639781Z patching file drivers/hid/wacom.h
2025-10-31T05:25:16.6641721Z patching file drivers/hid/wacom_sys.c
2025-10-31T05:25:16.6647062Z patching file drivers/hid/wacom_wac.c
2025-10-31T05:25:16.6653484Z patching file drivers/hid/wacom_wac.h
2025-10-31T05:25:16.6654774Z patching file drivers/hsi/clients/ssi_protocol.c
2025-10-31T05:25:16.6657630Z patching file drivers/hsi/controllers/omap_ssi_core.c
2025-10-31T05:25:16.6658149Z patching file drivers/hsi/controllers/omap_ssi_port.c
2025-10-31T05:25:16.6660169Z patching file drivers/hsi/hsi_core.c
2025-10-31T05:25:16.6661015Z patching file drivers/hv/channel.c
2025-10-31T05:25:16.6664072Z patching file drivers/hv/channel_mgmt.c
2025-10-31T05:25:16.6667291Z patching file drivers/hv/connection.c
2025-10-31T05:25:16.6668437Z patching file drivers/hv/hv_balloon.c
2025-10-31T05:25:16.6670485Z patching file drivers/hv/hv_kvp.c
2025-10-31T05:25:16.6671860Z patching file drivers/hv/hv_snapshot.c
2025-10-31T05:25:16.6673239Z patching file drivers/hv/hv_util.c
2025-10-31T05:25:16.6674702Z patching file drivers/hv/hyperv_vmbus.h
2025-10-31T05:25:16.6676247Z patching file drivers/hv/ring_buffer.c
2025-10-31T05:25:16.6678571Z patching file drivers/hv/vmbus_drv.c
2025-10-31T05:25:16.6681803Z patching file drivers/hwmon/Kconfig
2025-10-31T05:25:16.6684731Z patching file drivers/hwmon/acpi_power_meter.c
2025-10-31T05:25:16.6686211Z patching file drivers/hwmon/ad7314.c
2025-10-31T05:25:16.6687293Z patching file drivers/hwmon/adc128d818.c
2025-10-31T05:25:16.6689037Z patching file drivers/hwmon/adt7470.c
2025-10-31T05:25:16.6691193Z patching file drivers/hwmon/adt7475.c
2025-10-31T05:25:16.6693962Z patching file drivers/hwmon/amc6821.c
2025-10-31T05:25:16.6695031Z patching file drivers/hwmon/amd_energy.c
2025-10-31T05:25:16.6696959Z patching file drivers/hwmon/aspeed-pwm-tacho.c
2025-10-31T05:25:16.6698296Z patching file drivers/hwmon/axi-fan-control.c
2025-10-31T05:25:16.6700090Z patching file drivers/hwmon/coretemp.c
2025-10-31T05:25:16.6702999Z patching file drivers/hwmon/corsair-cpro.c
2025-10-31T05:25:16.6704716Z patching file drivers/hwmon/dell-smm-hwmon.c
2025-10-31T05:25:16.6706621Z patching file drivers/hwmon/drivetemp.c
2025-10-31T05:25:16.6708367Z patching file drivers/hwmon/f71882fg.c
2025-10-31T05:25:16.6710944Z patching file drivers/hwmon/gpio-fan.c
2025-10-31T05:25:16.6712406Z patching file drivers/hwmon/gsc-hwmon.c
2025-10-31T05:25:16.6713600Z patching file drivers/hwmon/hwmon.c
2025-10-31T05:25:16.6714808Z patching file drivers/hwmon/i5500_temp.c
2025-10-31T05:25:16.6715497Z patching file drivers/hwmon/ibmaem.c
2025-10-31T05:25:16.6717177Z patching file drivers/hwmon/ibmpex.c
2025-10-31T05:25:16.6717930Z patching file drivers/hwmon/ina3221.c
2025-10-31T05:25:16.6719947Z patching file drivers/hwmon/it87.c
2025-10-31T05:25:16.6722234Z patching file drivers/hwmon/jc42.c
2025-10-31T05:25:16.6724085Z patching file drivers/hwmon/k10temp.c
2025-10-31T05:25:16.6725177Z patching file drivers/hwmon/lm70.c
2025-10-31T05:25:16.6726177Z patching file drivers/hwmon/lm80.c
2025-10-31T05:25:16.6727622Z patching file drivers/hwmon/lm90.c
2025-10-31T05:25:16.6730280Z patching file drivers/hwmon/lm95234.c
2025-10-31T05:25:16.6731281Z patching file drivers/hwmon/ltc2945.c
2025-10-31T05:25:16.6732395Z patching file drivers/hwmon/ltc2947-core.c
2025-10-31T05:25:16.6733977Z patching file drivers/hwmon/max16065.c
2025-10-31T05:25:16.6734821Z patching file drivers/hwmon/max31722.c
2025-10-31T05:25:16.6735624Z patching file drivers/hwmon/max31790.c
2025-10-31T05:25:16.6737131Z patching file drivers/hwmon/max6697.c
2025-10-31T05:25:16.6738073Z patching file drivers/hwmon/mlxreg-fan.c
2025-10-31T05:25:16.6739192Z patching file drivers/hwmon/mr75203.c
2025-10-31T05:25:16.6741645Z patching file drivers/hwmon/nct6775.c
2025-10-31T05:25:16.6744766Z patching file drivers/hwmon/nct7802.c
2025-10-31T05:25:16.6746025Z patching file drivers/hwmon/ntc_thermistor.c
2025-10-31T05:25:16.6747143Z patching file drivers/hwmon/occ/common.c
2025-10-31T05:25:16.6749236Z patching file drivers/hwmon/occ/common.h
2025-10-31T05:25:16.6749796Z patching file drivers/hwmon/pmbus/adm1266.c
2025-10-31T05:25:16.6750754Z patching file drivers/hwmon/pmbus/adm1275.c
2025-10-31T05:25:16.6752235Z patching file drivers/hwmon/pmbus/bel-pfe.c
2025-10-31T05:25:16.6752897Z patching file drivers/hwmon/pmbus/ibm-cffps.c
2025-10-31T05:25:16.6754152Z patching file drivers/hwmon/pmbus/isl68137.c
2025-10-31T05:25:16.6754755Z patching file drivers/hwmon/pmbus/lm25066.c
2025-10-31T05:25:16.6756017Z patching file drivers/hwmon/pmbus/max34440.c
2025-10-31T05:25:16.6757118Z patching file drivers/hwmon/pmbus/mp2975.c
2025-10-31T05:25:16.6757875Z patching file drivers/hwmon/pmbus/pmbus.c
2025-10-31T05:25:16.6758605Z patching file drivers/hwmon/pmbus/pmbus.h
2025-10-31T05:25:16.6760338Z patching file drivers/hwmon/pmbus/pmbus_core.c
2025-10-31T05:25:16.6762320Z patching file drivers/hwmon/pmbus/pxe1610.c
2025-10-31T05:25:16.6762892Z patching file drivers/hwmon/pmbus/ucd9000.c
2025-10-31T05:25:16.6764438Z patching file drivers/hwmon/pwm-fan.c
2025-10-31T05:25:16.6765180Z patching file drivers/hwmon/sch56xx-common.c
2025-10-31T05:25:16.6766115Z patching file drivers/hwmon/scpi-hwmon.c
2025-10-31T05:25:16.6766822Z patching file drivers/hwmon/shtc1.c
2025-10-31T05:25:16.6767756Z patching file drivers/hwmon/tmp401.c
2025-10-31T05:25:16.6768720Z patching file drivers/hwmon/tmp421.c
2025-10-31T05:25:16.6769822Z patching file drivers/hwmon/tmp513.c
2025-10-31T05:25:16.6771499Z patching file drivers/hwmon/w83627ehf.c
2025-10-31T05:25:16.6773636Z patching file drivers/hwmon/w83791d.c
2025-10-31T05:25:16.6775464Z patching file drivers/hwmon/w83792d.c
2025-10-31T05:25:16.6777389Z patching file drivers/hwmon/w83793.c
2025-10-31T05:25:16.6779129Z patching file drivers/hwmon/xgene-hwmon.c
2025-10-31T05:25:16.6780228Z patching file drivers/hwspinlock/hwspinlock_core.c
2025-10-31T05:25:16.6781270Z patching file drivers/hwspinlock/hwspinlock_internal.h
2025-10-31T05:25:16.6781782Z patching file drivers/hwspinlock/qcom_hwspinlock.c
2025-10-31T05:25:16.6783026Z patching file drivers/hwtracing/coresight/coresight-catu.c
2025-10-31T05:25:16.6784477Z patching file drivers/hwtracing/coresight/coresight-core.c
2025-10-31T05:25:16.6786193Z patching file drivers/hwtracing/coresight/coresight-cpu-debug.c
2025-10-31T05:25:16.6787202Z patching file drivers/hwtracing/coresight/coresight-cti-core.c
2025-10-31T05:25:16.6788459Z patching file drivers/hwtracing/coresight/coresight-etb10.c
2025-10-31T05:25:16.6789533Z patching file drivers/hwtracing/coresight/coresight-etm-perf.c
2025-10-31T05:25:16.6790692Z patching file drivers/hwtracing/coresight/coresight-etm3x-core.c
2025-10-31T05:25:16.6792184Z patching file drivers/hwtracing/coresight/coresight-etm4x-core.c
2025-10-31T05:25:16.6794660Z patching file drivers/hwtracing/coresight/coresight-etm4x-sysfs.c
2025-10-31T05:25:16.6796196Z patching file drivers/hwtracing/coresight/coresight-etm4x.h
2025-10-31T05:25:16.6796908Z patching file drivers/hwtracing/coresight/coresight-funnel.c
2025-10-31T05:25:16.6797977Z patching file drivers/hwtracing/coresight/coresight-platform.c
2025-10-31T05:25:16.6799001Z patching file drivers/hwtracing/coresight/coresight-priv.h
2025-10-31T05:25:16.6799708Z patching file drivers/hwtracing/coresight/coresight-replicator.c
2025-10-31T05:25:16.6800814Z patching file drivers/hwtracing/coresight/coresight-stm.c
2025-10-31T05:25:16.6801906Z patching file drivers/hwtracing/coresight/coresight-tmc-core.c
2025-10-31T05:25:16.6803082Z patching file drivers/hwtracing/coresight/coresight-tmc-etf.c
2025-10-31T05:25:16.6804611Z patching file drivers/hwtracing/coresight/coresight-tmc-etr.c
2025-10-31T05:25:16.6806081Z patching file drivers/hwtracing/coresight/coresight-tmc.h
2025-10-31T05:25:16.6806611Z patching file drivers/hwtracing/coresight/coresight-tpiu.c
2025-10-31T05:25:16.6807508Z patching file drivers/hwtracing/intel_th/core.c
2025-10-31T05:25:16.6808761Z patching file drivers/hwtracing/intel_th/gth.c
2025-10-31T05:25:16.6809703Z patching file drivers/hwtracing/intel_th/intel_th.h
2025-10-31T05:25:16.6810387Z patching file drivers/hwtracing/intel_th/msu-sink.c
2025-10-31T05:25:16.6811494Z patching file drivers/hwtracing/intel_th/msu.c
2025-10-31T05:25:16.6814589Z patching file drivers/hwtracing/intel_th/pci.c
2025-10-31T05:25:16.6815641Z patching file drivers/hwtracing/stm/core.c
2025-10-31T05:25:16.6816745Z patching file drivers/hwtracing/stm/heartbeat.c
2025-10-31T05:25:16.6817847Z patching file drivers/i2c/busses/Kconfig
2025-10-31T05:25:16.6819364Z patching file drivers/i2c/busses/i2c-ali1535.c
2025-10-31T05:25:16.6820164Z patching file drivers/i2c/busses/i2c-ali15x3.c
2025-10-31T05:25:16.6821591Z patching file drivers/i2c/busses/i2c-aspeed.c
2025-10-31T05:25:16.6823499Z patching file drivers/i2c/busses/i2c-at91-master.c
2025-10-31T05:25:16.6824459Z patching file drivers/i2c/busses/i2c-at91-slave.c
2025-10-31T05:25:16.6825286Z patching file drivers/i2c/busses/i2c-bcm-iproc.c
2025-10-31T05:25:16.6827501Z patching file drivers/i2c/busses/i2c-bcm2835.c
2025-10-31T05:25:16.6828308Z patching file drivers/i2c/busses/i2c-brcmstb.c
2025-10-31T05:25:16.6829799Z patching file drivers/i2c/busses/i2c-cadence.c
2025-10-31T05:25:16.6831472Z patching file drivers/i2c/busses/i2c-cbus-gpio.c
2025-10-31T05:25:16.6832297Z patching file drivers/i2c/busses/i2c-cros-ec-tunnel.c
2025-10-31T05:25:16.6833403Z patching file drivers/i2c/busses/i2c-designware-common.c
2025-10-31T05:25:16.6834868Z patching file drivers/i2c/busses/i2c-designware-master.c
2025-10-31T05:25:16.6835839Z patching file drivers/i2c/busses/i2c-designware-pcidrv.c
2025-10-31T05:25:16.6836650Z patching file drivers/i2c/busses/i2c-designware-platdrv.c
2025-10-31T05:25:16.6837681Z patching file drivers/i2c/busses/i2c-designware-slave.c
2025-10-31T05:25:16.6838402Z patching file drivers/i2c/busses/i2c-emev2.c
2025-10-31T05:25:16.6839678Z patching file drivers/i2c/busses/i2c-exynos5.c
2025-10-31T05:25:16.6840662Z patching file drivers/i2c/busses/i2c-highlander.c
2025-10-31T05:25:16.6841476Z patching file drivers/i2c/busses/i2c-hix5hd2.c
2025-10-31T05:25:16.6843169Z patching file drivers/i2c/busses/i2c-i801.c
2025-10-31T05:25:16.6845300Z patching file drivers/i2c/busses/i2c-ibm_iic.c
2025-10-31T05:25:16.6846499Z patching file drivers/i2c/busses/i2c-img-scb.c
2025-10-31T05:25:16.6848017Z patching file drivers/i2c/busses/i2c-imx-lpi2c.c
2025-10-31T05:25:16.6849355Z patching file drivers/i2c/busses/i2c-imx.c
2025-10-31T05:25:16.6850789Z patching file drivers/i2c/busses/i2c-iop3xx.c
2025-10-31T05:25:16.6851531Z patching file drivers/i2c/busses/i2c-isch.c
2025-10-31T05:25:16.6853581Z patching file drivers/i2c/busses/i2c-ismt.c
2025-10-31T05:25:16.6855122Z patching file drivers/i2c/busses/i2c-jz4780.c
2025-10-31T05:25:16.6855803Z patching file drivers/i2c/busses/i2c-meson.c
2025-10-31T05:25:16.6857427Z patching file drivers/i2c/busses/i2c-mlxbf.c
2025-10-31T05:25:16.6859926Z patching file drivers/i2c/busses/i2c-mpc.c
2025-10-31T05:25:16.6861702Z patching file drivers/i2c/busses/i2c-mt65xx.c
2025-10-31T05:25:16.6863699Z patching file drivers/i2c/busses/i2c-mt7621.c
2025-10-31T05:25:16.6864463Z patching file drivers/i2c/busses/i2c-mxs.c
2025-10-31T05:25:16.6865989Z patching file drivers/i2c/busses/i2c-nomadik.c
2025-10-31T05:25:16.6867735Z patching file drivers/i2c/busses/i2c-npcm7xx.c
2025-10-31T05:25:16.6870544Z patching file drivers/i2c/busses/i2c-ocores.c
2025-10-31T05:25:16.6871635Z patching file drivers/i2c/busses/i2c-octeon-core.c
2025-10-31T05:25:16.6873184Z patching file drivers/i2c/busses/i2c-omap.c
2025-10-31T05:25:16.6877314Z patching file drivers/i2c/busses/i2c-pasemi.c
2025-10-31T05:25:16.6878122Z patching file drivers/i2c/busses/i2c-piix4.c
2025-10-31T05:25:16.6879611Z patching file drivers/i2c/busses/i2c-pnx.c
2025-10-31T05:25:16.6880933Z patching file drivers/i2c/busses/i2c-pxa-pci.c
2025-10-31T05:25:16.6881748Z patching file drivers/i2c/busses/i2c-pxa.c
2025-10-31T05:25:16.6883587Z patching file drivers/i2c/busses/i2c-qcom-cci.c
2025-10-31T05:25:16.6884561Z patching file drivers/i2c/busses/i2c-qcom-geni.c
2025-10-31T05:25:16.6886395Z patching file drivers/i2c/busses/i2c-qup.c
2025-10-31T05:25:16.6888367Z patching file drivers/i2c/busses/i2c-rcar.c
2025-10-31T05:25:16.6890268Z patching file drivers/i2c/busses/i2c-riic.c
2025-10-31T05:25:16.6891339Z patching file drivers/i2c/busses/i2c-rk3x.c
2025-10-31T05:25:16.6893313Z patching file drivers/i2c/busses/i2c-robotfuzz-osif.c
2025-10-31T05:25:16.6894184Z patching file drivers/i2c/busses/i2c-s3c2410.c
2025-10-31T05:25:16.6895814Z patching file drivers/i2c/busses/i2c-sh7760.c
2025-10-31T05:25:16.6896630Z patching file drivers/i2c/busses/i2c-sh_mobile.c
2025-10-31T05:25:16.6897965Z patching file drivers/i2c/busses/i2c-sis630.c
2025-10-31T05:25:16.6898711Z patching file drivers/i2c/busses/i2c-sprd.c
2025-10-31T05:25:16.6899804Z patching file drivers/i2c/busses/i2c-stm32.c
2025-10-31T05:25:16.6901196Z patching file drivers/i2c/busses/i2c-stm32f7.c
2025-10-31T05:25:16.6903621Z patching file drivers/i2c/busses/i2c-sun6i-p2wi.c
2025-10-31T05:25:16.6910075Z patching file drivers/i2c/busses/i2c-synquacer.c
2025-10-31T05:25:16.6910532Z patching file drivers/i2c/busses/i2c-tegra-bpmp.c
2025-10-31T05:25:16.6910916Z patching file drivers/i2c/busses/i2c-tegra.c
2025-10-31T05:25:16.6911323Z patching file drivers/i2c/busses/i2c-thunderx-pcidrv.c
2025-10-31T05:25:16.6911615Z patching file drivers/i2c/busses/i2c-tiny-usb.c
2025-10-31T05:25:16.6911857Z patching file drivers/i2c/busses/i2c-xgene-slimpro.c
2025-10-31T05:25:16.6912449Z patching file drivers/i2c/busses/i2c-xiic.c
2025-10-31T05:25:16.6913212Z patching file drivers/i2c/busses/i2c-xlp9xx.c
2025-10-31T05:25:16.6914254Z patching file drivers/i2c/busses/i2c-xlr.c
2025-10-31T05:25:16.6915465Z patching file drivers/i2c/i2c-core-acpi.c
2025-10-31T05:25:16.6917259Z patching file drivers/i2c/i2c-core-base.c
2025-10-31T05:25:16.6919262Z patching file drivers/i2c/i2c-core.h
2025-10-31T05:25:16.6920031Z patching file drivers/i2c/i2c-dev.c
2025-10-31T05:25:16.6921445Z patching file drivers/i2c/i2c-mux.c
2025-10-31T05:25:16.6922520Z patching file drivers/i2c/i2c-smbus.c
2025-10-31T05:25:16.6924001Z patching file drivers/i2c/muxes/i2c-demux-pinctrl.c
2025-10-31T05:25:16.6924864Z patching file drivers/i2c/muxes/i2c-mux-gpmux.c
2025-10-31T05:25:16.6925600Z patching file drivers/i2c/muxes/i2c-mux-pinctrl.c
2025-10-31T05:25:16.6926465Z patching file drivers/i2c/muxes/i2c-mux-reg.c
2025-10-31T05:25:16.6927287Z patching file drivers/i3c/internals.h
2025-10-31T05:25:16.6928753Z patching file drivers/i3c/master.c
2025-10-31T05:25:16.6931586Z patching file drivers/i3c/master/i3c-master-cdns.c
2025-10-31T05:25:16.6933490Z patching file drivers/ide/falconide.c
2025-10-31T05:25:16.6934719Z patching file drivers/ide/ide-atapi.c
2025-10-31T05:25:16.6935742Z patching file drivers/ide/ide-io.c
2025-10-31T05:25:16.6937042Z patching file drivers/ide/ide-pm.c
2025-10-31T05:25:16.6938311Z patching file drivers/idle/intel_idle.c
2025-10-31T05:25:16.6940141Z patching file drivers/iio/Kconfig
2025-10-31T05:25:16.6940731Z patching file drivers/iio/Makefile
2025-10-31T05:25:16.6941640Z patching file drivers/iio/accel/Kconfig
2025-10-31T05:25:16.6943054Z patching file drivers/iio/accel/adis16201.c
2025-10-31T05:25:16.6944033Z patching file drivers/iio/accel/adis16209.c
2025-10-31T05:25:16.6945290Z patching file drivers/iio/accel/bma180.c
2025-10-31T05:25:16.6946853Z patching file drivers/iio/accel/bma220_spi.c
2025-10-31T05:25:16.6947733Z patching file drivers/iio/accel/bma400.h
2025-10-31T05:25:16.6948762Z patching file drivers/iio/accel/bma400_core.c
2025-10-31T05:25:16.6950363Z patching file drivers/iio/accel/bmc150-accel-core.c
2025-10-31T05:25:16.6952186Z patching file drivers/iio/accel/hid-sensor-accel-3d.c
2025-10-31T05:25:16.6953638Z patching file drivers/iio/accel/kxcjk-1013.c
2025-10-31T05:25:16.6955307Z patching file drivers/iio/accel/kxsd9.c
2025-10-31T05:25:16.6956707Z patching file drivers/iio/accel/mma8452.c
2025-10-31T05:25:16.6958738Z patching file drivers/iio/accel/mma9551.c
2025-10-31T05:25:16.6959846Z patching file drivers/iio/accel/mma9551_core.c
2025-10-31T05:25:16.6961280Z patching file drivers/iio/accel/mma9553.c
2025-10-31T05:25:16.6962835Z patching file drivers/iio/accel/mxc4005.c
2025-10-31T05:25:16.6964425Z patching file drivers/iio/accel/st_accel_core.c
2025-10-31T05:25:16.6965847Z patching file drivers/iio/accel/st_accel_i2c.c
2025-10-31T05:25:16.6966567Z patching file drivers/iio/accel/st_accel_spi.c
2025-10-31T05:25:16.6967582Z patching file drivers/iio/accel/stk8312.c
2025-10-31T05:25:16.6968820Z patching file drivers/iio/accel/stk8ba50.c
2025-10-31T05:25:16.6970289Z patching file drivers/iio/adc/Kconfig
2025-10-31T05:25:16.6972266Z patching file drivers/iio/adc/ab8500-gpadc.c
2025-10-31T05:25:16.6973674Z patching file drivers/iio/adc/ad7091r-base.c
2025-10-31T05:25:16.6975122Z patching file drivers/iio/adc/ad7091r-base.h
2025-10-31T05:25:16.6975853Z patching file drivers/iio/adc/ad7091r5.c
2025-10-31T05:25:16.6977117Z patching file drivers/iio/adc/ad7124.c
2025-10-31T05:25:16.6978805Z patching file drivers/iio/adc/ad7192.c
2025-10-31T05:25:16.6980424Z patching file drivers/iio/adc/ad7266.c
2025-10-31T05:25:16.6981454Z patching file drivers/iio/adc/ad7292.c
2025-10-31T05:25:16.6982506Z patching file drivers/iio/adc/ad7476.c
2025-10-31T05:25:16.6983806Z patching file drivers/iio/adc/ad7606.c
2025-10-31T05:25:16.6985029Z patching file drivers/iio/adc/ad7606_spi.c
2025-10-31T05:25:16.6986072Z patching file drivers/iio/adc/ad7768-1.c
2025-10-31T05:25:16.6987452Z patching file drivers/iio/adc/ad7780.c
2025-10-31T05:25:16.6988466Z patching file drivers/iio/adc/ad7791.c
2025-10-31T05:25:16.6989764Z patching file drivers/iio/adc/ad7793.c
2025-10-31T05:25:16.6991032Z patching file drivers/iio/adc/ad7923.c
2025-10-31T05:25:16.6992154Z patching file drivers/iio/adc/ad7949.c
2025-10-31T05:25:16.6993427Z patching file drivers/iio/adc/ad9467.c
2025-10-31T05:25:16.6995160Z patching file drivers/iio/adc/ad_sigma_delta.c
2025-10-31T05:25:16.6996570Z patching file drivers/iio/adc/adi-axi-adc.c
2025-10-31T05:25:16.6997850Z patching file drivers/iio/adc/aspeed_adc.c
2025-10-31T05:25:16.6999368Z patching file drivers/iio/adc/at91-sama5d2_adc.c
2025-10-31T05:25:16.7001598Z patching file drivers/iio/adc/at91_adc.c
2025-10-31T05:25:16.7003499Z patching file drivers/iio/adc/axp20x_adc.c
2025-10-31T05:25:16.7004782Z patching file drivers/iio/adc/axp288_adc.c
2025-10-31T05:25:16.7005708Z patching file drivers/iio/adc/berlin2-adc.c
2025-10-31T05:25:16.7006890Z patching file drivers/iio/adc/dln2-adc.c
2025-10-31T05:25:16.7008446Z patching file drivers/iio/adc/exynos_adc.c
2025-10-31T05:25:16.7009847Z patching file drivers/iio/adc/hx711.c
2025-10-31T05:25:16.7010812Z patching file drivers/iio/adc/ltc2497.c
2025-10-31T05:25:16.7011932Z patching file drivers/iio/adc/max1027.c
2025-10-31T05:25:16.7013517Z patching file drivers/iio/adc/max1363.c
2025-10-31T05:25:16.7015368Z patching file drivers/iio/adc/mcp3911.c
2025-10-31T05:25:16.7016335Z patching file drivers/iio/adc/men_z188_adc.c
2025-10-31T05:25:16.7017763Z patching file drivers/iio/adc/meson_saradc.c
2025-10-31T05:25:16.7019171Z patching file drivers/iio/adc/mp2629_adc.c
2025-10-31T05:25:16.7020119Z patching file drivers/iio/adc/mt6577_auxadc.c
2025-10-31T05:25:16.7021424Z patching file drivers/iio/adc/mxs-lradc-adc.c
2025-10-31T05:25:16.7023064Z patching file drivers/iio/adc/palmas_gpadc.c
2025-10-31T05:25:16.7024497Z patching file drivers/iio/adc/qcom-spmi-vadc.c
2025-10-31T05:25:16.7025852Z patching file drivers/iio/adc/rockchip_saradc.c
2025-10-31T05:25:16.7026852Z patching file drivers/iio/adc/sc27xx_adc.c
2025-10-31T05:25:16.7028406Z patching file drivers/iio/adc/stm32-adc-core.c
2025-10-31T05:25:16.7030244Z patching file drivers/iio/adc/stm32-adc.c
2025-10-31T05:25:16.7032724Z patching file drivers/iio/adc/stm32-dfsdm-adc.c
2025-10-31T05:25:16.7034264Z patching file drivers/iio/adc/stmpe-adc.c
2025-10-31T05:25:16.7035240Z patching file drivers/iio/adc/stx104.c
2025-10-31T05:25:16.7036882Z patching file drivers/iio/adc/ti-adc081c.c
2025-10-31T05:25:16.7037879Z patching file drivers/iio/adc/ti-adc128s052.c
2025-10-31T05:25:16.7039187Z patching file drivers/iio/adc/ti-ads1015.c
2025-10-31T05:25:16.7040621Z patching file drivers/iio/adc/ti-ads124s08.c
2025-10-31T05:25:16.7041881Z patching file drivers/iio/adc/ti-ads7950.c
2025-10-31T05:25:16.7043438Z patching file drivers/iio/adc/ti-ads8688.c
2025-10-31T05:25:16.7045334Z patching file drivers/iio/adc/ti_am335x_adc.c
2025-10-31T05:25:16.7046752Z patching file drivers/iio/adc/twl6030-gpadc.c
2025-10-31T05:25:16.7048288Z patching file drivers/iio/adc/vf610_adc.c
2025-10-31T05:25:16.7049806Z patching file drivers/iio/adc/xilinx-xadc-core.c
2025-10-31T05:25:16.7052240Z patching file drivers/iio/addac/Kconfig
2025-10-31T05:25:16.7053244Z patching file drivers/iio/addac/Makefile
2025-10-31T05:25:16.7054248Z patching file drivers/iio/afe/iio-rescale.c
2025-10-31T05:25:16.7055460Z patching file drivers/iio/buffer/industrialio-buffer-dmaengine.c
2025-10-31T05:25:16.7056445Z patching file drivers/iio/chemical/atlas-sensor.c
2025-10-31T05:25:16.7057446Z patching file drivers/iio/chemical/bme680.h
2025-10-31T05:25:16.7058395Z patching file drivers/iio/chemical/bme680_core.c
2025-10-31T05:25:16.7060071Z patching file drivers/iio/chemical/ccs811.c
2025-10-31T05:25:16.7061005Z patching file drivers/iio/chemical/pms7003.c
2025-10-31T05:25:16.7062132Z patching file drivers/iio/chemical/sps30.c
2025-10-31T05:25:16.7063718Z patching file drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c
2025-10-31T05:25:16.7064677Z patching file drivers/iio/common/hid-sensors/Kconfig
2025-10-31T05:25:16.7065510Z patching file drivers/iio/common/hid-sensors/hid-sensor-trigger.c
2025-10-31T05:25:16.7066596Z patching file drivers/iio/common/ms_sensors/ms_sensors_i2c.c
2025-10-31T05:25:16.7067695Z patching file drivers/iio/common/ssp_sensors/ssp_spi.c
2025-10-31T05:25:16.7069124Z patching file drivers/iio/common/st_sensors/st_sensors_core.c
2025-10-31T05:25:16.7070241Z patching file drivers/iio/common/st_sensors/st_sensors_trigger.c
2025-10-31T05:25:16.7071236Z patching file drivers/iio/dac/Kconfig
2025-10-31T05:25:16.7072305Z patching file drivers/iio/dac/Makefile
2025-10-31T05:25:16.7073163Z patching file drivers/iio/dac/ad5360.c
2025-10-31T05:25:16.7074429Z patching file drivers/iio/dac/ad5421.c
2025-10-31T05:25:16.7075505Z patching file drivers/iio/dac/ad5446.c
2025-10-31T05:25:16.7076556Z patching file drivers/iio/dac/ad5504.c
2025-10-31T05:25:16.7077598Z patching file drivers/iio/dac/ad5592r-base.c
2025-10-31T05:25:16.7078593Z patching file drivers/iio/dac/ad5593r.c
2025-10-31T05:25:16.7079543Z patching file drivers/iio/dac/ad5624r_spi.c
2025-10-31T05:25:16.7080721Z patching file drivers/iio/dac/ad5770r.c
2025-10-31T05:25:16.7082166Z patching file drivers/iio/dac/cio-dac.c
2025-10-31T05:25:16.7082708Z patching file drivers/iio/dac/mcp4725.c
2025-10-31T05:25:16.7084092Z patching file drivers/iio/dac/ti-dac5571.c
2025-10-31T05:25:16.7085116Z patching file drivers/iio/dummy/iio_simple_dummy.c
2025-10-31T05:25:16.7086479Z patching file drivers/iio/dummy/iio_simple_dummy_buffer.c
2025-10-31T05:25:16.7087268Z patching file drivers/iio/frequency/adf4350.c
2025-10-31T05:25:16.7088475Z patching file drivers/iio/gyro/Kconfig
2025-10-31T05:25:16.7089245Z patching file drivers/iio/gyro/adis16136.c
2025-10-31T05:25:16.7090304Z patching file drivers/iio/gyro/adis16260.c
2025-10-31T05:25:16.7091340Z patching file drivers/iio/gyro/adxrs290.c
2025-10-31T05:25:16.7092996Z patching file drivers/iio/gyro/bmg160_core.c
2025-10-31T05:25:16.7094647Z patching file drivers/iio/gyro/fxas21002c_core.c
2025-10-31T05:25:16.7095979Z patching file drivers/iio/gyro/itg3200_buffer.c
2025-10-31T05:25:16.7096918Z patching file drivers/iio/gyro/mpu3050-core.c
2025-10-31T05:25:16.7098480Z patching file drivers/iio/gyro/st_gyro_core.c
2025-10-31T05:25:16.7099395Z patching file drivers/iio/gyro/st_gyro_i2c.c
2025-10-31T05:25:16.7100176Z patching file drivers/iio/gyro/st_gyro_spi.c
2025-10-31T05:25:16.7101167Z patching file drivers/iio/health/afe4403.c
2025-10-31T05:25:16.7102482Z patching file drivers/iio/health/afe4404.c
2025-10-31T05:25:16.7103818Z patching file drivers/iio/humidity/Kconfig
2025-10-31T05:25:16.7104456Z patching file drivers/iio/humidity/am2315.c
2025-10-31T05:25:16.7105478Z patching file drivers/iio/humidity/hdc100x.c
2025-10-31T05:25:16.7106531Z patching file drivers/iio/humidity/hid-sensor-humidity.c
2025-10-31T05:25:16.7107527Z patching file drivers/iio/imu/adis.c
2025-10-31T05:25:16.7109540Z patching file drivers/iio/imu/adis16400.c
2025-10-31T05:25:16.7110810Z patching file drivers/iio/imu/adis16460.c
2025-10-31T05:25:16.7112260Z patching file drivers/iio/imu/adis16475.c
2025-10-31T05:25:16.7114061Z patching file drivers/iio/imu/adis16480.c
2025-10-31T05:25:16.7115371Z patching file drivers/iio/imu/adis_buffer.c
2025-10-31T05:25:16.7116230Z patching file drivers/iio/imu/adis_trigger.c
2025-10-31T05:25:16.7117175Z patching file drivers/iio/imu/bmi160/bmi160.h
2025-10-31T05:25:16.7118103Z patching file drivers/iio/imu/bmi160/bmi160_core.c
2025-10-31T05:25:16.7119584Z patching file drivers/iio/imu/fxos8700_core.c
2025-10-31T05:25:16.7121313Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600.h
2025-10-31T05:25:16.7122478Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_accel.c
2025-10-31T05:25:16.7123931Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
2025-10-31T05:25:16.7125057Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_core.c
2025-10-31T05:25:16.7126665Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_gyro.c
2025-10-31T05:25:16.7127691Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_i2c.c
2025-10-31T05:25:16.7128421Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_spi.c
2025-10-31T05:25:16.7129205Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_temp.c
2025-10-31T05:25:16.7130636Z patching file drivers/iio/imu/inv_mpu6050/inv_mpu_core.c
2025-10-31T05:25:16.7132650Z patching file drivers/iio/imu/kmx61.c
2025-10-31T05:25:16.7134374Z patching file drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
2025-10-31T05:25:16.7135903Z patching file drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
2025-10-31T05:25:16.7138043Z patching file drivers/iio/industrialio-buffer.c
2025-10-31T05:25:16.7139462Z patching file drivers/iio/industrialio-sw-trigger.c
2025-10-31T05:25:16.7140283Z patching file drivers/iio/industrialio-trigger.c
2025-10-31T05:25:16.7141604Z patching file drivers/iio/inkern.c
2025-10-31T05:25:16.7143403Z patching file drivers/iio/light/Kconfig
2025-10-31T05:25:16.7144400Z patching file drivers/iio/light/al3010.c
2025-10-31T05:25:16.7145654Z patching file drivers/iio/light/apds9960.c
2025-10-31T05:25:16.7147085Z patching file drivers/iio/light/as73211.c
2025-10-31T05:25:16.7148642Z patching file drivers/iio/light/cm32181.c
2025-10-31T05:25:16.7149564Z patching file drivers/iio/light/gp2ap002.c
2025-10-31T05:25:16.7150887Z patching file drivers/iio/light/hid-sensor-prox.c
2025-10-31T05:25:16.7151864Z patching file drivers/iio/light/isl29028.c
2025-10-31T05:25:16.7153380Z patching file drivers/iio/light/isl29125.c
2025-10-31T05:25:16.7154683Z patching file drivers/iio/light/ltr501.c
2025-10-31T05:25:16.7156353Z patching file drivers/iio/light/max44009.c
2025-10-31T05:25:16.7157668Z patching file drivers/iio/light/opt3001.c
2025-10-31T05:25:16.7159142Z patching file drivers/iio/light/rpr0521.c
2025-10-31T05:25:16.7160434Z patching file drivers/iio/light/st_uvis25.h
2025-10-31T05:25:16.7161144Z patching file drivers/iio/light/st_uvis25_core.c
2025-10-31T05:25:16.7162414Z patching file drivers/iio/light/stk3310.c
2025-10-31T05:25:16.7163755Z patching file drivers/iio/light/tcs3414.c
2025-10-31T05:25:16.7164713Z patching file drivers/iio/light/tcs3472.c
2025-10-31T05:25:16.7166134Z patching file drivers/iio/light/tsl2583.c
2025-10-31T05:25:16.7167803Z patching file drivers/iio/light/tsl2772.c
2025-10-31T05:25:16.7169551Z patching file drivers/iio/light/vcnl4000.c
2025-10-31T05:25:16.7170917Z patching file drivers/iio/light/vcnl4035.c
2025-10-31T05:25:16.7172383Z patching file drivers/iio/light/veml6030.c
2025-10-31T05:25:16.7173814Z patching file drivers/iio/magnetometer/Kconfig
2025-10-31T05:25:16.7174858Z patching file drivers/iio/magnetometer/ak8975.c
2025-10-31T05:25:16.7176519Z patching file drivers/iio/magnetometer/bmc150_magn.c
2025-10-31T05:25:16.7177824Z patching file drivers/iio/magnetometer/hmc5843.h
2025-10-31T05:25:16.7178634Z patching file drivers/iio/magnetometer/hmc5843_core.c
2025-10-31T05:25:16.7179929Z patching file drivers/iio/magnetometer/mag3110.c
2025-10-31T05:25:16.7180989Z patching file drivers/iio/magnetometer/rm3100-core.c
2025-10-31T05:25:16.7182294Z patching file drivers/iio/magnetometer/st_magn_core.c
2025-10-31T05:25:16.7183621Z patching file drivers/iio/magnetometer/st_magn_i2c.c
2025-10-31T05:25:16.7184266Z patching file drivers/iio/magnetometer/st_magn_spi.c
2025-10-31T05:25:16.7185090Z patching file drivers/iio/orientation/Kconfig
2025-10-31T05:25:16.7185970Z patching file drivers/iio/potentiostat/lmp91000.c
2025-10-31T05:25:16.7187022Z patching file drivers/iio/pressure/Kconfig
2025-10-31T05:25:16.7188252Z patching file drivers/iio/pressure/bmp280-core.c
2025-10-31T05:25:16.7189651Z patching file drivers/iio/pressure/dps310.c
2025-10-31T05:25:16.7191486Z patching file drivers/iio/pressure/mpl3115.c
2025-10-31T05:25:16.7192371Z patching file drivers/iio/pressure/ms5611.h
2025-10-31T05:25:16.7193337Z patching file drivers/iio/pressure/ms5611_core.c
2025-10-31T05:25:16.7194711Z patching file drivers/iio/pressure/ms5611_i2c.c
2025-10-31T05:25:16.7195376Z patching file drivers/iio/pressure/ms5611_spi.c
2025-10-31T05:25:16.7196685Z patching file drivers/iio/pressure/st_pressure_core.c
2025-10-31T05:25:16.7197703Z patching file drivers/iio/pressure/st_pressure_i2c.c
2025-10-31T05:25:16.7198451Z patching file drivers/iio/pressure/st_pressure_spi.c
2025-10-31T05:25:16.7199793Z patching file drivers/iio/pressure/zpa2326.c
2025-10-31T05:25:16.7201348Z patching file drivers/iio/proximity/Kconfig
2025-10-31T05:25:16.7202220Z patching file drivers/iio/proximity/as3935.c
2025-10-31T05:25:16.7203611Z patching file drivers/iio/proximity/isl29501.c
2025-10-31T05:25:16.7204925Z patching file drivers/iio/proximity/pulsedlight-lidar-lite-v2.c
2025-10-31T05:25:16.7205787Z patching file drivers/iio/proximity/srf08.c
2025-10-31T05:25:16.7206799Z patching file drivers/iio/proximity/vl53l0x-i2c.c
2025-10-31T05:25:16.7207687Z patching file drivers/iio/temperature/Kconfig
2025-10-31T05:25:16.7208539Z patching file drivers/iio/temperature/hid-sensor-temperature.c
2025-10-31T05:25:16.7209932Z patching file drivers/iio/temperature/ltc2983.c
2025-10-31T05:25:16.7211812Z patching file drivers/iio/temperature/mlx90632.c
2025-10-31T05:25:16.7213307Z patching file drivers/iio/trigger/iio-trig-hrtimer.c
2025-10-31T05:25:16.7214189Z patching file drivers/iio/trigger/iio-trig-sysfs.c
2025-10-31T05:25:16.7215128Z patching file drivers/iio/trigger/stm32-timer-trigger.c
2025-10-31T05:25:16.7216583Z patching file drivers/infiniband/core/addr.c
2025-10-31T05:25:16.7218168Z patching file drivers/infiniband/core/cache.c
2025-10-31T05:25:16.7220812Z patching file drivers/infiniband/core/cm.c
2025-10-31T05:25:16.7225505Z patching file drivers/infiniband/core/cma.c
2025-10-31T05:25:16.7230641Z patching file drivers/infiniband/core/cma_configfs.c
2025-10-31T05:25:16.7231441Z patching file drivers/infiniband/core/cma_priv.h
2025-10-31T05:25:16.7233162Z patching file drivers/infiniband/core/device.c
2025-10-31T05:25:16.7235885Z patching file drivers/infiniband/core/iwcm.c
2025-10-31T05:25:16.7237515Z patching file drivers/infiniband/core/iwcm.h
2025-10-31T05:25:16.7239086Z patching file drivers/infiniband/core/mad.c
2025-10-31T05:25:16.7242198Z patching file drivers/infiniband/core/nldev.c
2025-10-31T05:25:16.7244204Z patching file drivers/infiniband/core/restrack.c
2025-10-31T05:25:16.7245109Z patching file drivers/infiniband/core/rw.c
2025-10-31T05:25:16.7246876Z patching file drivers/infiniband/core/sa_query.c
2025-10-31T05:25:16.7249151Z patching file drivers/infiniband/core/ucma.c
2025-10-31T05:25:16.7251513Z patching file drivers/infiniband/core/umem.c
2025-10-31T05:25:16.7252566Z patching file drivers/infiniband/core/umem_odp.c
2025-10-31T05:25:16.7254122Z patching file drivers/infiniband/core/user_mad.c
2025-10-31T05:25:16.7257003Z patching file drivers/infiniband/core/uverbs_cmd.c
2025-10-31T05:25:16.7260047Z patching file drivers/infiniband/core/uverbs_main.c
2025-10-31T05:25:16.7261535Z patching file drivers/infiniband/core/uverbs_marshall.c
2025-10-31T05:25:16.7262441Z patching file drivers/infiniband/core/uverbs_std_types_counters.c
2025-10-31T05:25:16.7263477Z patching file drivers/infiniband/core/uverbs_std_types_device.c
2025-10-31T05:25:16.7264609Z patching file drivers/infiniband/core/uverbs_std_types_mr.c
2025-10-31T05:25:16.7265599Z patching file drivers/infiniband/core/uverbs_uapi.c
2025-10-31T05:25:16.7267434Z patching file drivers/infiniband/core/verbs.c
2025-10-31T05:25:16.7270575Z patching file drivers/infiniband/hw/bnxt_re/ib_verbs.c
2025-10-31T05:25:16.7274192Z patching file drivers/infiniband/hw/bnxt_re/main.c
2025-10-31T05:25:16.7276631Z patching file drivers/infiniband/hw/bnxt_re/qplib_fp.c
2025-10-31T05:25:16.7279232Z patching file drivers/infiniband/hw/bnxt_re/qplib_fp.h
2025-10-31T05:25:16.7280542Z patching file drivers/infiniband/hw/bnxt_re/qplib_rcfw.c
2025-10-31T05:25:16.7282334Z patching file drivers/infiniband/hw/bnxt_re/qplib_rcfw.h
2025-10-31T05:25:16.7283339Z patching file drivers/infiniband/hw/bnxt_re/qplib_res.c
2025-10-31T05:25:16.7284941Z patching file drivers/infiniband/hw/bnxt_re/qplib_res.h
2025-10-31T05:25:16.7285933Z patching file drivers/infiniband/hw/bnxt_re/qplib_sp.c
2025-10-31T05:25:16.7287428Z patching file drivers/infiniband/hw/bnxt_re/qplib_sp.h
2025-10-31T05:25:16.7289431Z patching file drivers/infiniband/hw/cxgb4/cm.c
2025-10-31T05:25:16.7292529Z patching file drivers/infiniband/hw/cxgb4/cq.c
2025-10-31T05:25:16.7294170Z patching file drivers/infiniband/hw/cxgb4/device.c
2025-10-31T05:25:16.7295755Z patching file drivers/infiniband/hw/cxgb4/provider.c
2025-10-31T05:25:16.7297416Z patching file drivers/infiniband/hw/cxgb4/qp.c
2025-10-31T05:25:16.7299423Z patching file drivers/infiniband/hw/cxgb4/resource.c
2025-10-31T05:25:16.7300481Z patching file drivers/infiniband/hw/efa/efa_main.c
2025-10-31T05:25:16.7302172Z patching file drivers/infiniband/hw/efa/efa_verbs.c
2025-10-31T05:25:16.7305123Z patching file drivers/infiniband/hw/hfi1/affinity.c
2025-10-31T05:25:16.7310566Z patching file drivers/infiniband/hw/hfi1/chip.c
2025-10-31T05:25:16.7318574Z patching file drivers/infiniband/hw/hfi1/driver.c
2025-10-31T05:25:16.7320219Z patching file drivers/infiniband/hw/hfi1/efivar.c
2025-10-31T05:25:16.7321512Z patching file drivers/infiniband/hw/hfi1/file_ops.c
2025-10-31T05:25:16.7323969Z patching file drivers/infiniband/hw/hfi1/firmware.c
2025-10-31T05:25:16.7326393Z patching file drivers/infiniband/hw/hfi1/hfi.h
2025-10-31T05:25:16.7328777Z patching file drivers/infiniband/hw/hfi1/init.c
2025-10-31T05:25:16.7330856Z patching file drivers/infiniband/hw/hfi1/ipoib.h
2025-10-31T05:25:16.7331715Z patching file drivers/infiniband/hw/hfi1/ipoib_main.c
2025-10-31T05:25:16.7333192Z patching file drivers/infiniband/hw/hfi1/ipoib_tx.c
2025-10-31T05:25:16.7334784Z patching file drivers/infiniband/hw/hfi1/mmu_rb.c
2025-10-31T05:25:16.7336415Z patching file drivers/infiniband/hw/hfi1/mmu_rb.h
2025-10-31T05:25:16.7337231Z patching file drivers/infiniband/hw/hfi1/netdev_rx.c
2025-10-31T05:25:16.7338655Z patching file drivers/infiniband/hw/hfi1/pcie.c
2025-10-31T05:25:16.7340743Z patching file drivers/infiniband/hw/hfi1/pio.c
2025-10-31T05:25:16.7343487Z patching file drivers/infiniband/hw/hfi1/sdma.c
2025-10-31T05:25:16.7346231Z patching file drivers/infiniband/hw/hfi1/sdma.h
2025-10-31T05:25:16.7347897Z patching file drivers/infiniband/hw/hfi1/sdma_txreq.h
2025-10-31T05:25:16.7348561Z patching file drivers/infiniband/hw/hfi1/trace_mmu.h
2025-10-31T05:25:16.7349577Z patching file drivers/infiniband/hw/hfi1/trace_tx.h
2025-10-31T05:25:16.7351528Z patching file drivers/infiniband/hw/hfi1/user_exp_rcv.c
2025-10-31T05:25:16.7353746Z patching file drivers/infiniband/hw/hfi1/user_exp_rcv.h
2025-10-31T05:25:16.7354856Z patching file drivers/infiniband/hw/hfi1/user_sdma.c
2025-10-31T05:25:16.7358046Z patching file drivers/infiniband/hw/hfi1/user_sdma.h
2025-10-31T05:25:16.7359495Z patching file drivers/infiniband/hw/hfi1/verbs.c
2025-10-31T05:25:16.7361310Z patching file drivers/infiniband/hw/hfi1/vnic_sdma.c
2025-10-31T05:25:16.7362239Z patching file drivers/infiniband/hw/hns/hns_roce_ah.c
2025-10-31T05:25:16.7363342Z patching file drivers/infiniband/hw/hns/hns_roce_alloc.c
2025-10-31T05:25:16.7364551Z patching file drivers/infiniband/hw/hns/hns_roce_cmd.c
2025-10-31T05:25:16.7365651Z patching file drivers/infiniband/hw/hns/hns_roce_cmd.h
2025-10-31T05:25:16.7366513Z patching file drivers/infiniband/hw/hns/hns_roce_common.h
2025-10-31T05:25:16.7367518Z patching file drivers/infiniband/hw/hns/hns_roce_cq.c
2025-10-31T05:25:16.7368946Z patching file drivers/infiniband/hw/hns/hns_roce_db.c
2025-10-31T05:25:16.7369905Z patching file drivers/infiniband/hw/hns/hns_roce_device.h
2025-10-31T05:25:16.7372442Z patching file drivers/infiniband/hw/hns/hns_roce_hem.c
2025-10-31T05:25:16.7375606Z patching file drivers/infiniband/hw/hns/hns_roce_hem.h
2025-10-31T05:25:16.7377781Z patching file drivers/infiniband/hw/hns/hns_roce_hw_v1.c
2025-10-31T05:25:16.7381188Z patching file drivers/infiniband/hw/hns/hns_roce_hw_v1.h
2025-10-31T05:25:16.7384340Z patching file drivers/infiniband/hw/hns/hns_roce_hw_v2.c
2025-10-31T05:25:16.7389740Z patching file drivers/infiniband/hw/hns/hns_roce_hw_v2.h
2025-10-31T05:25:16.7391616Z patching file drivers/infiniband/hw/hns/hns_roce_main.c
2025-10-31T05:25:16.7393573Z patching file drivers/infiniband/hw/hns/hns_roce_mr.c
2025-10-31T05:25:16.7395575Z patching file drivers/infiniband/hw/hns/hns_roce_pd.c
2025-10-31T05:25:16.7396627Z patching file drivers/infiniband/hw/hns/hns_roce_qp.c
2025-10-31T05:25:16.7399232Z patching file drivers/infiniband/hw/hns/hns_roce_restrack.c
2025-10-31T05:25:16.7399862Z patching file drivers/infiniband/hw/hns/hns_roce_srq.c
2025-10-31T05:25:16.7401558Z patching file drivers/infiniband/hw/i40iw/i40iw.h
2025-10-31T05:25:16.7404054Z patching file drivers/infiniband/hw/i40iw/i40iw_ctrl.c
2025-10-31T05:25:16.7407165Z patching file drivers/infiniband/hw/i40iw/i40iw_pble.c
2025-10-31T05:25:16.7408476Z patching file drivers/infiniband/hw/i40iw/i40iw_type.h
2025-10-31T05:25:16.7410412Z patching file drivers/infiniband/hw/i40iw/i40iw_verbs.c
2025-10-31T05:25:16.7412768Z patching file drivers/infiniband/hw/mlx4/alias_GUID.c
2025-10-31T05:25:16.7414603Z patching file drivers/infiniband/hw/mlx4/mad.c
2025-10-31T05:25:16.7417153Z patching file drivers/infiniband/hw/mlx4/main.c
2025-10-31T05:25:16.7419817Z patching file drivers/infiniband/hw/mlx4/mr.c
2025-10-31T05:25:16.7421813Z patching file drivers/infiniband/hw/mlx4/qp.c
2025-10-31T05:25:16.7424934Z patching file drivers/infiniband/hw/mlx4/sysfs.c
2025-10-31T05:25:16.7426300Z patching file drivers/infiniband/hw/mlx5/counters.c
2025-10-31T05:25:16.7427737Z patching file drivers/infiniband/hw/mlx5/cq.c
2025-10-31T05:25:16.7429905Z patching file drivers/infiniband/hw/mlx5/devx.c
2025-10-31T05:25:16.7432980Z patching file drivers/infiniband/hw/mlx5/fs.c
2025-10-31T05:25:16.7435094Z patching file drivers/infiniband/hw/mlx5/mad.c
2025-10-31T05:25:16.7437342Z patching file drivers/infiniband/hw/mlx5/main.c
2025-10-31T05:25:16.7441228Z patching file drivers/infiniband/hw/mlx5/mr.c
2025-10-31T05:25:16.7444638Z patching file drivers/infiniband/hw/mlx5/qp.c
2025-10-31T05:25:16.7448477Z patching file drivers/infiniband/hw/mlx5/qpc.c
2025-10-31T05:25:16.7449808Z patching file drivers/infiniband/hw/mlx5/srq.c
2025-10-31T05:25:16.7451150Z patching file drivers/infiniband/hw/mlx5/wr.c
2025-10-31T05:25:16.7453219Z patching file drivers/infiniband/hw/mthca/mthca_cmd.c
2025-10-31T05:25:16.7455154Z patching file drivers/infiniband/hw/mthca/mthca_cq.c
2025-10-31T05:25:16.7456460Z patching file drivers/infiniband/hw/mthca/mthca_dev.h
2025-10-31T05:25:16.7457780Z patching file drivers/infiniband/hw/mthca/mthca_main.c
2025-10-31T05:25:16.7459578Z patching file drivers/infiniband/hw/mthca/mthca_qp.c
2025-10-31T05:25:16.7462222Z patching file drivers/infiniband/hw/ocrdma/ocrdma_verbs.c
2025-10-31T05:25:16.7464466Z patching file drivers/infiniband/hw/qedr/main.c
2025-10-31T05:25:16.7465797Z patching file drivers/infiniband/hw/qedr/qedr.h
2025-10-31T05:25:16.7467014Z patching file drivers/infiniband/hw/qedr/qedr_iw_cm.c
2025-10-31T05:25:16.7469193Z patching file drivers/infiniband/hw/qedr/verbs.c
2025-10-31T05:25:16.7472518Z patching file drivers/infiniband/hw/qib/qib_fs.c
2025-10-31T05:25:16.7473897Z patching file drivers/infiniband/hw/qib/qib_user_sdma.c
2025-10-31T05:25:16.7475810Z patching file drivers/infiniband/hw/usnic/usnic_ib_main.c
2025-10-31T05:25:16.7476935Z patching file drivers/infiniband/hw/usnic/usnic_ib_verbs.c
2025-10-31T05:25:16.7478053Z patching file drivers/infiniband/hw/usnic/usnic_uiom.c
2025-10-31T05:25:16.7479217Z patching file drivers/infiniband/hw/usnic/usnic_uiom_interval_tree.c
2025-10-31T05:25:16.7480145Z patching file drivers/infiniband/hw/vmw_pvrdma/pvrdma.h
2025-10-31T05:25:16.7481169Z patching file drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.c
2025-10-31T05:25:16.7482303Z patching file drivers/infiniband/sw/rdmavt/Kconfig
2025-10-31T05:25:16.7483251Z patching file drivers/infiniband/sw/rdmavt/mr.c
2025-10-31T05:25:16.7485388Z patching file drivers/infiniband/sw/rdmavt/qp.c
2025-10-31T05:25:16.7487661Z patching file drivers/infiniband/sw/rdmavt/vt.c
2025-10-31T05:25:16.7488647Z patching file drivers/infiniband/sw/rxe/Kconfig
2025-10-31T05:25:16.7489448Z patching file drivers/infiniband/sw/rxe/rxe.c
2025-10-31T05:25:16.7490469Z patching file drivers/infiniband/sw/rxe/rxe_av.c
2025-10-31T05:25:16.7491384Z patching file drivers/infiniband/sw/rxe/rxe_comp.c
2025-10-31T05:25:16.7492535Z patching file drivers/infiniband/sw/rxe/rxe_cq.c
2025-10-31T05:25:16.7493524Z patching file drivers/infiniband/sw/rxe/rxe_mr.c
2025-10-31T05:25:16.7494556Z patching file drivers/infiniband/sw/rxe/rxe_net.c
2025-10-31T05:25:16.7496076Z patching file drivers/infiniband/sw/rxe/rxe_opcode.c
2025-10-31T05:25:16.7497102Z patching file drivers/infiniband/sw/rxe/rxe_param.h
2025-10-31T05:25:16.7498065Z patching file drivers/infiniband/sw/rxe/rxe_qp.c
2025-10-31T05:25:16.7499600Z patching file drivers/infiniband/sw/rxe/rxe_recv.c
2025-10-31T05:25:16.7500819Z patching file drivers/infiniband/sw/rxe/rxe_req.c
2025-10-31T05:25:16.7502504Z patching file drivers/infiniband/sw/rxe/rxe_resp.c
2025-10-31T05:25:16.7503863Z patching file drivers/infiniband/sw/rxe/rxe_task.c
2025-10-31T05:25:16.7504602Z patching file drivers/infiniband/sw/rxe/rxe_task.h
2025-10-31T05:25:16.7505851Z patching file drivers/infiniband/sw/rxe/rxe_verbs.c
2025-10-31T05:25:16.7506924Z patching file drivers/infiniband/sw/rxe/rxe_verbs.h
2025-10-31T05:25:16.7507814Z patching file drivers/infiniband/sw/siw/Kconfig
2025-10-31T05:25:16.7508633Z patching file drivers/infiniband/sw/siw/siw.h
2025-10-31T05:25:16.7510321Z patching file drivers/infiniband/sw/siw/siw_cm.c
2025-10-31T05:25:16.7512127Z patching file drivers/infiniband/sw/siw/siw_cq.c
2025-10-31T05:25:16.7513027Z patching file drivers/infiniband/sw/siw/siw_main.c
2025-10-31T05:25:16.7514368Z patching file drivers/infiniband/sw/siw/siw_mem.c
2025-10-31T05:25:16.7515567Z patching file drivers/infiniband/sw/siw/siw_qp.c
2025-10-31T05:25:16.7517765Z patching file drivers/infiniband/sw/siw/siw_qp_rx.c
2025-10-31T05:25:16.7519785Z patching file drivers/infiniband/sw/siw/siw_qp_tx.c
2025-10-31T05:25:16.7521543Z patching file drivers/infiniband/sw/siw/siw_verbs.c
2025-10-31T05:25:16.7524397Z patching file drivers/infiniband/ulp/ipoib/ipoib_main.c
2025-10-31T05:25:16.7526541Z patching file drivers/infiniband/ulp/ipoib/ipoib_multicast.c
2025-10-31T05:25:16.7527863Z patching file drivers/infiniband/ulp/ipoib/ipoib_netlink.c
2025-10-31T05:25:16.7528661Z patching file drivers/infiniband/ulp/ipoib/ipoib_vlan.c
2025-10-31T05:25:16.7529878Z patching file drivers/infiniband/ulp/iser/iscsi_iser.c
2025-10-31T05:25:16.7531353Z patching file drivers/infiniband/ulp/iser/iscsi_iser.h
2025-10-31T05:25:16.7532601Z patching file drivers/infiniband/ulp/iser/iser_initiator.c
2025-10-31T05:25:16.7533793Z patching file drivers/infiniband/ulp/iser/iser_memory.c
2025-10-31T05:25:16.7535091Z patching file drivers/infiniband/ulp/iser/iser_verbs.c
2025-10-31T05:25:16.7536944Z patching file drivers/infiniband/ulp/isert/ib_isert.c
2025-10-31T05:25:16.7539187Z patching file drivers/infiniband/ulp/isert/ib_isert.h
2025-10-31T05:25:16.7540107Z patching file drivers/infiniband/ulp/rtrs/rtrs-clt-sysfs.c
2025-10-31T05:25:16.7541858Z patching file drivers/infiniband/ulp/rtrs/rtrs-clt.c
2025-10-31T05:25:16.7545262Z patching file drivers/infiniband/ulp/rtrs/rtrs-clt.h
2025-10-31T05:25:16.7546006Z patching file drivers/infiniband/ulp/rtrs/rtrs-pri.h
2025-10-31T05:25:16.7547267Z patching file drivers/infiniband/ulp/rtrs/rtrs-srv-sysfs.c
2025-10-31T05:25:16.7548795Z patching file drivers/infiniband/ulp/rtrs/rtrs-srv.c
2025-10-31T05:25:16.7551668Z patching file drivers/infiniband/ulp/rtrs/rtrs.c
2025-10-31T05:25:16.7554408Z patching file drivers/infiniband/ulp/srp/ib_srp.c
2025-10-31T05:25:16.7558230Z patching file drivers/infiniband/ulp/srp/ib_srp.h
2025-10-31T05:25:16.7560255Z patching file drivers/infiniband/ulp/srpt/ib_srpt.c
2025-10-31T05:25:16.7563684Z patching file drivers/infiniband/ulp/srpt/ib_srpt.h
2025-10-31T05:25:16.7564959Z patching file drivers/input/ff-core.c
2025-10-31T05:25:16.7565884Z patching file drivers/input/input-mt.c
2025-10-31T05:25:16.7567551Z patching file drivers/input/input.c
2025-10-31T05:25:16.7569935Z patching file drivers/input/joydev.c
2025-10-31T05:25:16.7571391Z patching file drivers/input/joystick/Kconfig
2025-10-31T05:25:16.7572497Z patching file drivers/input/joystick/iforce/iforce-main.c
2025-10-31T05:25:16.7573561Z patching file drivers/input/joystick/iforce/iforce-serio.c
2025-10-31T05:25:16.7574523Z patching file drivers/input/joystick/iforce/iforce-usb.c
2025-10-31T05:25:16.7575488Z patching file drivers/input/joystick/iforce/iforce.h
2025-10-31T05:25:16.7576305Z patching file drivers/input/joystick/spaceball.c
2025-10-31T05:25:16.7577809Z patching file drivers/input/joystick/xpad.c
2025-10-31T05:25:16.7580463Z patching file drivers/input/keyboard/Kconfig
2025-10-31T05:25:16.7581896Z patching file drivers/input/keyboard/adp5589-keys.c
2025-10-31T05:25:16.7583843Z patching file drivers/input/keyboard/applespi.c
2025-10-31T05:25:16.7585994Z patching file drivers/input/keyboard/atkbd.c
2025-10-31T05:25:16.7587900Z patching file drivers/input/keyboard/gpio_keys_polled.c
2025-10-31T05:25:16.7588843Z patching file drivers/input/keyboard/hil_kbd.c
2025-10-31T05:25:16.7590072Z patching file drivers/input/keyboard/ipaq-micro-keys.c
2025-10-31T05:25:16.7590686Z patching file drivers/input/keyboard/nspire-keypad.c
2025-10-31T05:25:16.7591928Z patching file drivers/input/keyboard/omap4-keypad.c
2025-10-31T05:25:16.7593621Z patching file drivers/input/keyboard/qt1050.c
2025-10-31T05:25:16.7594574Z patching file drivers/input/keyboard/snvs_pwrkey.c
2025-10-31T05:25:16.7595978Z patching file drivers/input/misc/adxl34x.c
2025-10-31T05:25:16.7597332Z patching file drivers/input/misc/drv260x.c
2025-10-31T05:25:16.7598926Z patching file drivers/input/misc/ims-pcu.c
2025-10-31T05:25:16.7600948Z patching file drivers/input/misc/iqs269a.c
2025-10-31T05:25:16.7604252Z patching file drivers/input/misc/pm8xxx-vibrator.c
2025-10-31T05:25:16.7605198Z patching file drivers/input/misc/powermate.c
2025-10-31T05:25:16.7606187Z patching file drivers/input/misc/rk805-pwrkey.c
2025-10-31T05:25:16.7607108Z patching file drivers/input/misc/soc_button_array.c
2025-10-31T05:25:16.7608596Z patching file drivers/input/misc/sparcspkr.c
2025-10-31T05:25:16.7609685Z patching file drivers/input/misc/uinput.c
2025-10-31T05:25:16.7611856Z patching file drivers/input/mouse/alps.c
2025-10-31T05:25:16.7614558Z patching file drivers/input/mouse/appletouch.c
2025-10-31T05:25:16.7616013Z patching file drivers/input/mouse/bcm5974.c
2025-10-31T05:25:16.7617467Z patching file drivers/input/mouse/cyapa_gen6.c
2025-10-31T05:25:16.7618466Z patching file drivers/input/mouse/elan_i2c.h
2025-10-31T05:25:16.7619576Z patching file drivers/input/mouse/elan_i2c_core.c
2025-10-31T05:25:16.7621344Z patching file drivers/input/mouse/elan_i2c_smbus.c
2025-10-31T05:25:16.7623063Z patching file drivers/input/mouse/elantech.c
2025-10-31T05:25:16.7625383Z patching file drivers/input/mouse/elantech.h
2025-10-31T05:25:16.7626125Z patching file drivers/input/mouse/focaltech.c
2025-10-31T05:25:16.7627484Z patching file drivers/input/mouse/synaptics.c
2025-10-31T05:25:16.7629174Z patching file drivers/input/rmi4/rmi_bus.c
2025-10-31T05:25:16.7630378Z patching file drivers/input/rmi4/rmi_driver.c
2025-10-31T05:25:16.7631800Z patching file drivers/input/rmi4/rmi_f34.c
2025-10-31T05:25:16.7633402Z patching file drivers/input/rmi4/rmi_smbus.c
2025-10-31T05:25:16.7634575Z patching file drivers/input/serio/ambakmi.c
2025-10-31T05:25:16.7635493Z patching file drivers/input/serio/gscps2.c
2025-10-31T05:25:16.7636435Z patching file drivers/input/serio/i8042-acpipnpio.h
2025-10-31T05:25:16.7640972Z patching file drivers/input/serio/i8042-x86ia64io.h
2025-10-31T05:25:16.7644341Z patching file drivers/input/serio/i8042.c
2025-10-31T05:25:16.7646313Z patching file drivers/input/serio/i8042.h
2025-10-31T05:25:16.7646922Z patching file drivers/input/serio/ioc3kbd.c
2025-10-31T05:25:16.7647864Z patching file drivers/input/serio/serport.c
2025-10-31T05:25:16.7649394Z patching file drivers/input/tablet/aiptek.c
2025-10-31T05:25:16.7651511Z patching file drivers/input/touchscreen/ads7846.c
2025-10-31T05:25:16.7655029Z patching file drivers/input/touchscreen/atmel_mxt_ts.c
2025-10-31T05:25:16.7657632Z patching file drivers/input/touchscreen/cyttsp4_core.c
2025-10-31T05:25:16.7659622Z patching file drivers/input/touchscreen/elants_i2c.c
2025-10-31T05:25:16.7661531Z patching file drivers/input/touchscreen/elo.c
2025-10-31T05:25:16.7663109Z patching file drivers/input/touchscreen/goodix.c
2025-10-31T05:25:16.7665297Z patching file drivers/input/touchscreen/hideep.c
2025-10-31T05:25:16.7666719Z patching file drivers/input/touchscreen/ili210x.c
2025-10-31T05:25:16.7668464Z patching file drivers/input/touchscreen/melfas_mip4.c
2025-10-31T05:25:16.7669945Z patching file drivers/input/touchscreen/of_touchscreen.c
2025-10-31T05:25:16.7670897Z patching file drivers/input/touchscreen/raspberrypi-ts.c
2025-10-31T05:25:16.7672294Z patching file drivers/input/touchscreen/raydium_i2c_ts.c
2025-10-31T05:25:16.7673925Z patching file drivers/input/touchscreen/s6sy761.c
2025-10-31T05:25:16.7674895Z patching file drivers/input/touchscreen/silead.c
2025-10-31T05:25:16.7682235Z patching file drivers/input/touchscreen/stmfts.c
2025-10-31T05:25:16.7682865Z patching file drivers/input/touchscreen/sur40.c
2025-10-31T05:25:16.7683237Z patching file drivers/input/touchscreen/usbtouchscreen.c
2025-10-31T05:25:16.7683483Z patching file drivers/input/touchscreen/zinitix.c
2025-10-31T05:25:16.7683832Z patching file drivers/interconnect/core.c
2025-10-31T05:25:16.7684192Z patching file drivers/interconnect/imx/imx.c
2025-10-31T05:25:16.7684883Z patching file drivers/interconnect/imx/imx8mq.c
2025-10-31T05:25:16.7685619Z patching file drivers/interconnect/qcom/Kconfig
2025-10-31T05:25:16.7686683Z patching file drivers/interconnect/qcom/bcm-voter.c
2025-10-31T05:25:16.7687720Z patching file drivers/interconnect/qcom/icc-rpmh.c
2025-10-31T05:25:16.7688699Z patching file drivers/interconnect/qcom/icc-rpmh.h
2025-10-31T05:25:16.7689600Z patching file drivers/interconnect/qcom/osm-l3.c
2025-10-31T05:25:16.7690611Z patching file drivers/interconnect/qcom/sc7180.c
2025-10-31T05:25:16.7692714Z patching file drivers/interconnect/qcom/sm8150.c
2025-10-31T05:25:16.7693799Z patching file drivers/iommu/amd/amd_iommu.h
2025-10-31T05:25:16.7694813Z patching file drivers/iommu/amd/amd_iommu_types.h
2025-10-31T05:25:16.7696932Z patching file drivers/iommu/amd/init.c
2025-10-31T05:25:16.7701202Z patching file drivers/iommu/amd/iommu.c
2025-10-31T05:25:16.7704357Z patching file drivers/iommu/amd/iommu_v2.c
2025-10-31T05:25:16.7706575Z patching file drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
2025-10-31T05:25:16.7709098Z patching file drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.h
2025-10-31T05:25:16.7710075Z patching file drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
2025-10-31T05:25:16.7711885Z patching file drivers/iommu/arm/arm-smmu/arm-smmu.c
2025-10-31T05:25:16.7714153Z patching file drivers/iommu/arm/arm-smmu/arm-smmu.h
2025-10-31T05:25:16.7715166Z patching file drivers/iommu/arm/arm-smmu/qcom_iommu.c
2025-10-31T05:25:16.7716698Z patching file drivers/iommu/dma-iommu.c
2025-10-31T05:25:16.7718265Z patching file drivers/iommu/exynos-iommu.c
2025-10-31T05:25:16.7719880Z patching file drivers/iommu/fsl_pamu.c
2025-10-31T05:25:16.7722658Z patching file drivers/iommu/intel/dmar.c
2025-10-31T05:25:16.7726096Z patching file drivers/iommu/intel/iommu.c
2025-10-31T05:25:16.7730565Z patching file drivers/iommu/intel/irq_remapping.c
2025-10-31T05:25:16.7732299Z patching file drivers/iommu/intel/pasid.c
2025-10-31T05:25:16.7733869Z patching file drivers/iommu/intel/pasid.h
2025-10-31T05:25:16.7734880Z patching file drivers/iommu/intel/svm.c
2025-10-31T05:25:16.7737093Z patching file drivers/iommu/io-pgtable-arm-v7s.c
2025-10-31T05:25:16.7738588Z patching file drivers/iommu/io-pgtable-arm.c
2025-10-31T05:25:16.7740650Z patching file drivers/iommu/iommu.c
2025-10-31T05:25:16.7743322Z patching file drivers/iommu/iova.c
2025-10-31T05:25:16.7744950Z patching file drivers/iommu/ipmmu-vmsa.c
2025-10-31T05:25:16.7746355Z patching file drivers/iommu/msm_iommu.c
2025-10-31T05:25:16.7747671Z patching file drivers/iommu/mtk_iommu.c
2025-10-31T05:25:16.7749038Z patching file drivers/iommu/mtk_iommu_v1.c
2025-10-31T05:25:16.7750126Z patching file drivers/iommu/omap-iommu-debug.c
2025-10-31T05:25:16.7751448Z patching file drivers/iommu/omap-iommu.c
2025-10-31T05:25:16.7753379Z patching file drivers/iommu/rockchip-iommu.c
2025-10-31T05:25:16.7754888Z patching file drivers/iommu/sun50i-iommu.c
2025-10-31T05:25:16.7756545Z patching file drivers/iommu/virtio-iommu.c
2025-10-31T05:25:16.7757942Z patching file drivers/ipack/carriers/tpci200.c
2025-10-31T05:25:16.7759542Z patching file drivers/ipack/devices/ipoctal.c
2025-10-31T05:25:16.7761111Z patching file drivers/irqchip/Kconfig
2025-10-31T05:25:16.7762316Z patching file drivers/irqchip/irq-alpine-msi.c
2025-10-31T05:25:16.7763760Z patching file drivers/irqchip/irq-armada-370-xp.c
2025-10-31T05:25:16.7765102Z patching file drivers/irqchip/irq-aspeed-i2c-ic.c
2025-10-31T05:25:16.7765793Z patching file drivers/irqchip/irq-aspeed-scu-ic.c
2025-10-31T05:25:16.7766776Z patching file drivers/irqchip/irq-aspeed-vic.c
2025-10-31T05:25:16.7767915Z patching file drivers/irqchip/irq-bcm6345-l1.c
2025-10-31T05:25:16.7768848Z patching file drivers/irqchip/irq-bcm7120-l2.c
2025-10-31T05:25:16.7769823Z patching file drivers/irqchip/irq-brcmstb-l2.c
2025-10-31T05:25:16.7770878Z patching file drivers/irqchip/irq-csky-apb-intc.c
2025-10-31T05:25:16.7771765Z patching file drivers/irqchip/irq-gic-common.c
2025-10-31T05:25:16.7772885Z patching file drivers/irqchip/irq-gic-common.h
2025-10-31T05:25:16.7773873Z patching file drivers/irqchip/irq-gic-pm.c
2025-10-31T05:25:16.7774760Z patching file drivers/irqchip/irq-gic-realview.c
2025-10-31T05:25:16.7775676Z patching file drivers/irqchip/irq-gic-v2m.c
2025-10-31T05:25:16.7778269Z patching file drivers/irqchip/irq-gic-v3-its.c
2025-10-31T05:25:16.7782106Z patching file drivers/irqchip/irq-gic-v3-mbi.c
2025-10-31T05:25:16.7783649Z patching file drivers/irqchip/irq-gic-v3.c
2025-10-31T05:25:16.7786377Z patching file drivers/irqchip/irq-gic.c
2025-10-31T05:25:16.7788206Z patching file drivers/irqchip/irq-imx-irqsteer.c
2025-10-31T05:25:16.7789526Z patching file drivers/irqchip/irq-ingenic-tcu.c
2025-10-31T05:25:16.7790394Z patching file drivers/irqchip/irq-ingenic.c
2025-10-31T05:25:16.7791241Z patching file drivers/irqchip/irq-jcore-aic.c
2025-10-31T05:25:16.7792373Z patching file drivers/irqchip/irq-loongson-pch-msi.c
2025-10-31T05:25:16.7793455Z patching file drivers/irqchip/irq-loongson-pch-pic.c
2025-10-31T05:25:16.7794470Z patching file drivers/irqchip/irq-mbigen.c
2025-10-31T05:25:16.7795674Z patching file drivers/irqchip/irq-meson-gpio.c
2025-10-31T05:25:16.7797104Z patching file drivers/irqchip/irq-mips-cpu.c
2025-10-31T05:25:16.7798854Z patching file drivers/irqchip/irq-mips-gic.c
2025-10-31T05:25:16.7800819Z patching file drivers/irqchip/irq-mtk-cirq.c
2025-10-31T05:25:16.7801601Z patching file drivers/irqchip/irq-mvebu-gicp.c
2025-10-31T05:25:16.7802794Z patching file drivers/irqchip/irq-mxs.c
2025-10-31T05:25:16.7803685Z patching file drivers/irqchip/irq-nvic.c
2025-10-31T05:25:16.7804584Z patching file drivers/irqchip/irq-or1k-pic.c
2025-10-31T05:25:16.7805567Z patching file drivers/irqchip/irq-sifive-plic.c
2025-10-31T05:25:16.7806550Z patching file drivers/irqchip/irq-sni-exiu.c
2025-10-31T05:25:16.7807924Z patching file drivers/irqchip/irq-stm32-exti.c
2025-10-31T05:25:16.7809188Z patching file drivers/irqchip/irq-sun4i.c
2025-10-31T05:25:16.7810031Z patching file drivers/irqchip/irq-sunxi-nmi.c
2025-10-31T05:25:16.7810985Z patching file drivers/irqchip/irq-tegra.c
2025-10-31T05:25:16.7812470Z patching file drivers/irqchip/irq-ti-sci-inta.c
2025-10-31T05:25:16.7813812Z patching file drivers/irqchip/irq-ti-sci-intr.c
2025-10-31T05:25:16.7814826Z patching file drivers/irqchip/irq-vic.c
2025-10-31T05:25:16.7815911Z patching file drivers/irqchip/irq-xilinx-intc.c
2025-10-31T05:25:16.7816835Z patching file drivers/irqchip/irq-xtensa-mx.c
2025-10-31T05:25:16.7817740Z patching file drivers/irqchip/irqchip.c
2025-10-31T05:25:16.7818616Z patching file drivers/irqchip/qcom-pdc.c
2025-10-31T05:25:16.7820056Z patching file drivers/isdn/capi/kcapi.c
2025-10-31T05:25:16.7822912Z patching file drivers/isdn/hardware/mISDN/hfcmulti.c
2025-10-31T05:25:16.7826693Z patching file drivers/isdn/hardware/mISDN/hfcpci.c
2025-10-31T05:25:16.7829234Z patching file drivers/isdn/hardware/mISDN/hfcsusb.c
2025-10-31T05:25:16.7831414Z patching file drivers/isdn/hardware/mISDN/mISDNinfineon.c
2025-10-31T05:25:16.7833247Z patching file drivers/isdn/hardware/mISDN/mISDNipac.c
2025-10-31T05:25:16.7834986Z patching file drivers/isdn/hardware/mISDN/netjet.c
2025-10-31T05:25:16.7836270Z patching file drivers/isdn/mISDN/Kconfig
2025-10-31T05:25:16.7836948Z patching file drivers/isdn/mISDN/core.c
2025-10-31T05:25:16.7838001Z patching file drivers/isdn/mISDN/core.h
2025-10-31T05:25:16.7838704Z patching file drivers/isdn/mISDN/dsp.h
2025-10-31T05:25:16.7840243Z patching file drivers/isdn/mISDN/dsp_cmx.c
2025-10-31T05:25:16.7842184Z patching file drivers/isdn/mISDN/dsp_core.c
2025-10-31T05:25:16.7843526Z patching file drivers/isdn/mISDN/dsp_hwec.c
2025-10-31T05:25:16.7844417Z patching file drivers/isdn/mISDN/dsp_pipeline.c
2025-10-31T05:25:16.7845470Z patching file drivers/isdn/mISDN/l1oip.h
2025-10-31T05:25:16.7846522Z patching file drivers/isdn/mISDN/l1oip_core.c
2025-10-31T05:25:16.7848158Z patching file drivers/isdn/mISDN/layer1.c
2025-10-31T05:25:16.7849338Z patching file drivers/leds/Kconfig
2025-10-31T05:25:16.7850747Z patching file drivers/leds/led-class-multicolor.c
2025-10-31T05:25:16.7851559Z patching file drivers/leds/led-class.c
2025-10-31T05:25:16.7853139Z patching file drivers/leds/led-triggers.c
2025-10-31T05:25:16.7854486Z patching file drivers/leds/leds-as3645a.c
2025-10-31T05:25:16.7855558Z patching file drivers/leds/leds-aw2013.c
2025-10-31T05:25:16.7856612Z patching file drivers/leds/leds-is31fl32xx.c
2025-10-31T05:25:16.7857798Z patching file drivers/leds/leds-ktd2692.c
2025-10-31T05:25:16.7858883Z patching file drivers/leds/leds-lm3601x.c
2025-10-31T05:25:16.7859875Z patching file drivers/leds/leds-lm36274.c
2025-10-31T05:25:16.7860825Z patching file drivers/leds/leds-lm3692x.c
2025-10-31T05:25:16.7861901Z patching file drivers/leds/leds-lm3697.c
2025-10-31T05:25:16.7863311Z patching file drivers/leds/leds-lp50xx.c
2025-10-31T05:25:16.7864752Z patching file drivers/leds/leds-lp5523.c
2025-10-31T05:25:16.7866162Z patching file drivers/leds/leds-lp55xx-common.c
2025-10-31T05:25:16.7867196Z patching file drivers/leds/leds-lp8860.c
2025-10-31T05:25:16.7868142Z patching file drivers/leds/leds-lt3593.c
2025-10-31T05:25:16.7869083Z patching file drivers/leds/leds-netxbig.c
2025-10-31T05:25:16.7870446Z patching file drivers/leds/leds-pwm.c
2025-10-31T05:25:16.7871218Z patching file drivers/leds/leds-sgm3140.c
2025-10-31T05:25:16.7872362Z patching file drivers/leds/leds-spi-byte.c
2025-10-31T05:25:16.7873682Z patching file drivers/leds/leds-ss4200.c
2025-10-31T05:25:16.7874837Z patching file drivers/leds/leds-tca6507.c
2025-10-31T05:25:16.7876185Z patching file drivers/leds/leds-tlc591xx.c
2025-10-31T05:25:16.7877046Z patching file drivers/leds/leds-turris-omnia.c
2025-10-31T05:25:16.7877992Z patching file drivers/leds/trigger/ledtrig-audio.c
2025-10-31T05:25:16.7878890Z patching file drivers/leds/trigger/ledtrig-cpu.c
2025-10-31T05:25:16.7879721Z patching file drivers/leds/trigger/ledtrig-netdev.c
2025-10-31T05:25:16.7880637Z patching file drivers/leds/trigger/ledtrig-panic.c
2025-10-31T05:25:16.7881304Z patching file drivers/lightnvm/Kconfig
2025-10-31T05:25:16.7882521Z patching file drivers/lightnvm/core.c
2025-10-31T05:25:16.7884096Z patching file drivers/macintosh/Kconfig
2025-10-31T05:25:16.7884933Z patching file drivers/macintosh/Makefile
2025-10-31T05:25:16.7885666Z patching file drivers/macintosh/adb-iop.c
2025-10-31T05:25:16.7887150Z patching file drivers/macintosh/adb.c
2025-10-31T05:25:16.7888205Z patching file drivers/macintosh/macio-adb.c
2025-10-31T05:25:16.7889253Z patching file drivers/macintosh/macio_asic.c
2025-10-31T05:25:16.7890604Z patching file drivers/macintosh/therm_windtunnel.c
2025-10-31T05:25:16.7891547Z patching file drivers/macintosh/via-macii.c
2025-10-31T05:25:16.7893380Z patching file drivers/macintosh/via-pmu.c
2025-10-31T05:25:16.7895376Z patching file drivers/macintosh/windfarm_lm75_sensor.c
2025-10-31T05:25:16.7896106Z patching file drivers/macintosh/windfarm_smu_sat.c
2025-10-31T05:25:16.7897130Z patching file drivers/macintosh/windfarm_smu_sensors.c
2025-10-31T05:25:16.7898094Z patching file drivers/mailbox/arm_mhu_db.c
2025-10-31T05:25:16.7899517Z patching file drivers/mailbox/bcm-flexrm-mailbox.c
2025-10-31T05:25:16.7900998Z patching file drivers/mailbox/bcm2835-mailbox.c
2025-10-31T05:25:16.7901760Z patching file drivers/mailbox/imx-mailbox.c
2025-10-31T05:25:16.7903321Z patching file drivers/mailbox/mailbox-test.c
2025-10-31T05:25:16.7904351Z patching file drivers/mailbox/mailbox.c
2025-10-31T05:25:16.7905892Z patching file drivers/mailbox/mtk-cmdq-mailbox.c
2025-10-31T05:25:16.7906868Z patching file drivers/mailbox/qcom-apcs-ipc-mailbox.c
2025-10-31T05:25:16.7907592Z patching file drivers/mailbox/qcom-ipcc.c
2025-10-31T05:25:16.7908779Z patching file drivers/mailbox/rockchip-mailbox.c
2025-10-31T05:25:16.7909486Z patching file drivers/mailbox/sprd-mailbox.c
2025-10-31T05:25:16.7910956Z patching file drivers/mailbox/tegra-hsp.c
2025-10-31T05:25:16.7912371Z patching file drivers/mailbox/ti-msgmgr.c
2025-10-31T05:25:16.7913851Z patching file drivers/mailbox/zynqmp-ipi-mailbox.c
2025-10-31T05:25:16.7915163Z patching file drivers/mcb/mcb-core.c
2025-10-31T05:25:16.7916098Z patching file drivers/mcb/mcb-lpc.c
2025-10-31T05:25:16.7917022Z patching file drivers/mcb/mcb-parse.c
2025-10-31T05:25:16.7917947Z patching file drivers/mcb/mcb-pci.c
2025-10-31T05:25:16.7919116Z patching file drivers/md/Kconfig
2025-10-31T05:25:16.7920520Z patching file drivers/md/bcache/bcache.h
2025-10-31T05:25:16.7922311Z patching file drivers/md/bcache/bset.c
2025-10-31T05:25:16.7924075Z patching file drivers/md/bcache/bset.h
2025-10-31T05:25:16.7925812Z patching file drivers/md/bcache/btree.c
2025-10-31T05:25:16.7928586Z patching file drivers/md/bcache/btree.h
2025-10-31T05:25:16.7929524Z patching file drivers/md/bcache/features.c
2025-10-31T05:25:16.7930215Z patching file drivers/md/bcache/features.h
2025-10-31T05:25:16.7931550Z patching file drivers/md/bcache/journal.c
2025-10-31T05:25:16.7933072Z patching file drivers/md/bcache/journal.h
2025-10-31T05:25:16.7934129Z patching file drivers/md/bcache/request.c
2025-10-31T05:25:16.7936181Z patching file drivers/md/bcache/super.c
2025-10-31T05:25:16.7938881Z patching file drivers/md/bcache/sysfs.c
2025-10-31T05:25:16.7940403Z patching file drivers/md/bcache/writeback.c
2025-10-31T05:25:16.7942340Z patching file drivers/md/bcache/writeback.h
2025-10-31T05:25:16.7943690Z patching file drivers/md/dm-bufio.c
2025-10-31T05:25:16.7945828Z patching file drivers/md/dm-cache-metadata.c
2025-10-31T05:25:16.7947912Z patching file drivers/md/dm-cache-policy-smq.c
2025-10-31T05:25:16.7950444Z patching file drivers/md/dm-cache-target.c
2025-10-31T05:25:16.7953467Z patching file drivers/md/dm-clone-metadata.c
2025-10-31T05:25:16.7955241Z patching file drivers/md/dm-clone-target.c
2025-10-31T05:25:16.7956904Z patching file drivers/md/dm-core.h
2025-10-31T05:25:16.7958764Z patching file drivers/md/dm-crypt.c
2025-10-31T05:25:16.7962257Z patching file drivers/md/dm-delay.c
2025-10-31T05:25:16.7963677Z patching file drivers/md/dm-ebs-target.c
2025-10-31T05:25:16.7965113Z patching file drivers/md/dm-era-target.c
2025-10-31T05:25:16.7967326Z patching file drivers/md/dm-flakey.c
2025-10-31T05:25:16.7968773Z patching file drivers/md/dm-historical-service-time.c
2025-10-31T05:25:16.7969751Z patching file drivers/md/dm-init.c
2025-10-31T05:25:16.7971907Z patching file drivers/md/dm-integrity.c
2025-10-31T05:25:16.7976476Z patching file drivers/md/dm-ioctl.c
2025-10-31T05:25:16.7978537Z patching file drivers/md/dm-log.c
2025-10-31T05:25:16.7979637Z patching file drivers/md/dm-queue-length.c
2025-10-31T05:25:16.7981724Z patching file drivers/md/dm-raid.c
2025-10-31T05:25:16.7985548Z patching file drivers/md/dm-raid1.c
2025-10-31T05:25:16.7987100Z patching file drivers/md/dm-round-robin.c
2025-10-31T05:25:16.7987993Z patching file drivers/md/dm-rq.c
2025-10-31T05:25:16.7989362Z patching file drivers/md/dm-service-time.c
2025-10-31T05:25:16.7990950Z patching file drivers/md/dm-snap.c
2025-10-31T05:25:16.7993583Z patching file drivers/md/dm-stats.c
2025-10-31T05:25:16.7995096Z patching file drivers/md/dm-stats.h
2025-10-31T05:25:16.7996357Z patching file drivers/md/dm-table.c
2025-10-31T05:25:16.7999356Z patching file drivers/md/dm-thin-metadata.c
2025-10-31T05:25:16.8002465Z patching file drivers/md/dm-thin.c
2025-10-31T05:25:16.8005348Z patching file drivers/md/dm-unstripe.c
2025-10-31T05:25:16.8006304Z patching file drivers/md/dm-verity-fec.c
2025-10-31T05:25:16.8007806Z patching file drivers/md/dm-verity-fec.h
2025-10-31T05:25:16.8008849Z patching file drivers/md/dm-verity-target.c
2025-10-31T05:25:16.8010486Z patching file drivers/md/dm-verity-verify-sig.c
2025-10-31T05:25:16.8011140Z patching file drivers/md/dm-verity.h
2025-10-31T05:25:16.8013102Z patching file drivers/md/dm-writecache.c
2025-10-31T05:25:16.8016359Z patching file drivers/md/dm-zoned-metadata.c
2025-10-31T05:25:16.8018565Z patching file drivers/md/dm-zoned-target.c
2025-10-31T05:25:16.8020733Z patching file drivers/md/dm.c
2025-10-31T05:25:16.8023995Z patching file drivers/md/dm.h
2025-10-31T05:25:16.8025596Z patching file drivers/md/md-bitmap.c
2025-10-31T05:25:16.8028649Z patching file drivers/md/md-cluster.c
2025-10-31T05:25:16.8032916Z patching file drivers/md/md.c
2025-10-31T05:25:16.8039889Z patching file drivers/md/md.h
2025-10-31T05:25:16.8041430Z patching file drivers/md/persistent-data/dm-array.c
2025-10-31T05:25:16.8042986Z patching file drivers/md/persistent-data/dm-btree-internal.h
2025-10-31T05:25:16.8043765Z patching file drivers/md/persistent-data/dm-btree-remove.c
2025-10-31T05:25:16.8045173Z patching file drivers/md/persistent-data/dm-btree.c
2025-10-31T05:25:16.8046606Z patching file drivers/md/persistent-data/dm-space-map-common.c
2025-10-31T05:25:16.8047618Z patching file drivers/md/persistent-data/dm-space-map-common.h
2025-10-31T05:25:16.8048474Z patching file drivers/md/persistent-data/dm-space-map-disk.c
2025-10-31T05:25:16.8049577Z patching file drivers/md/persistent-data/dm-space-map-metadata.c
2025-10-31T05:25:16.8050959Z patching file drivers/md/raid0.c
2025-10-31T05:25:16.8052654Z patching file drivers/md/raid0.h
2025-10-31T05:25:16.8054329Z patching file drivers/md/raid1.c
2025-10-31T05:25:16.8057993Z patching file drivers/md/raid10.c
2025-10-31T05:25:16.8064043Z patching file drivers/md/raid5.c
2025-10-31T05:25:16.8069014Z patching file drivers/media/Kconfig
2025-10-31T05:25:16.8070550Z patching file drivers/media/cec/core/cec-adap.c
2025-10-31T05:25:16.8074121Z patching file drivers/media/cec/core/cec-api.c
2025-10-31T05:25:16.8075443Z patching file drivers/media/cec/core/cec-core.c
2025-10-31T05:25:16.8076439Z patching file drivers/media/cec/core/cec-pin-priv.h
2025-10-31T05:25:16.8077527Z patching file drivers/media/cec/core/cec-pin.c
2025-10-31T05:25:16.8079293Z patching file drivers/media/cec/core/cec-priv.h
2025-10-31T05:25:16.8079867Z patching file drivers/media/cec/i2c/Kconfig
2025-10-31T05:25:16.8080653Z patching file drivers/media/cec/platform/Makefile
2025-10-31T05:25:16.8081545Z patching file drivers/media/cec/platform/cros-ec/cros-ec-cec.c
2025-10-31T05:25:16.8082569Z patching file drivers/media/cec/platform/s5p/s5p_cec.c
2025-10-31T05:25:16.8083730Z patching file drivers/media/cec/platform/stm32/stm32-cec.c
2025-10-31T05:25:16.8084851Z patching file drivers/media/cec/platform/tegra/tegra_cec.c
2025-10-31T05:25:16.8086217Z patching file drivers/media/cec/usb/pulse8/pulse8-cec.c
2025-10-31T05:25:16.8087587Z patching file drivers/media/cec/usb/rainshadow/rainshadow-cec.c
2025-10-31T05:25:16.8088630Z patching file drivers/media/common/saa7146/saa7146_core.c
2025-10-31T05:25:16.8089752Z patching file drivers/media/common/saa7146/saa7146_fops.c
2025-10-31T05:25:16.8091180Z patching file drivers/media/common/saa7146/saa7146_video.c
2025-10-31T05:25:16.8093216Z patching file drivers/media/common/siano/smscoreapi.c
2025-10-31T05:25:16.8095385Z patching file drivers/media/common/siano/smscoreapi.h
2025-10-31T05:25:16.8096953Z patching file drivers/media/common/siano/smsdvb-main.c
2025-10-31T05:25:16.8098914Z patching file drivers/media/common/v4l2-tpg/v4l2-tpg-core.c
2025-10-31T05:25:16.8101674Z patching file drivers/media/common/videobuf2/videobuf2-core.c
2025-10-31T05:25:16.8104666Z patching file drivers/media/common/videobuf2/videobuf2-dma-contig.c
2025-10-31T05:25:16.8105723Z patching file drivers/media/common/videobuf2/videobuf2-dma-sg.c
2025-10-31T05:25:16.8107148Z patching file drivers/media/common/videobuf2/videobuf2-v4l2.c
2025-10-31T05:25:16.8108769Z patching file drivers/media/dvb-core/dmxdev.c
2025-10-31T05:25:16.8110665Z patching file drivers/media/dvb-core/dvb_ca_en50221.c
2025-10-31T05:25:16.8112905Z patching file drivers/media/dvb-core/dvb_demux.c
2025-10-31T05:25:16.8115038Z patching file drivers/media/dvb-core/dvb_frontend.c
2025-10-31T05:25:16.8117650Z patching file drivers/media/dvb-core/dvb_net.c
2025-10-31T05:25:16.8119388Z patching file drivers/media/dvb-core/dvb_vb2.c
2025-10-31T05:25:16.8120420Z patching file drivers/media/dvb-core/dvbdev.c
2025-10-31T05:25:16.8122736Z patching file drivers/media/dvb-frontends/as102_fe_types.h
2025-10-31T05:25:16.8123606Z patching file drivers/media/dvb-frontends/ascot2e.c
2025-10-31T05:25:16.8124900Z patching file drivers/media/dvb-frontends/atbm8830.c
2025-10-31T05:25:16.8125992Z patching file drivers/media/dvb-frontends/au8522_dig.c
2025-10-31T05:25:16.8127449Z patching file drivers/media/dvb-frontends/bcm3510.c
2025-10-31T05:25:16.8128819Z patching file drivers/media/dvb-frontends/cx22700.c
2025-10-31T05:25:16.8129786Z patching file drivers/media/dvb-frontends/cx22702.c
2025-10-31T05:25:16.8131128Z patching file drivers/media/dvb-frontends/cx24110.c
2025-10-31T05:25:16.8132443Z patching file drivers/media/dvb-frontends/cx24113.c
2025-10-31T05:25:16.8134112Z patching file drivers/media/dvb-frontends/cx24116.c
2025-10-31T05:25:16.8135984Z patching file drivers/media/dvb-frontends/cx24120.c
2025-10-31T05:25:16.8137807Z patching file drivers/media/dvb-frontends/cx24123.c
2025-10-31T05:25:16.8139303Z patching file drivers/media/dvb-frontends/cxd2820r_core.c
2025-10-31T05:25:16.8141429Z patching file drivers/media/dvb-frontends/cxd2841er.c
2025-10-31T05:25:16.8144609Z patching file drivers/media/dvb-frontends/cxd2880/cxd2880_top.c
2025-10-31T05:25:16.8146374Z patching file drivers/media/dvb-frontends/dib0070.c
2025-10-31T05:25:16.8148227Z patching file drivers/media/dvb-frontends/dib0090.c
2025-10-31T05:25:16.8150379Z patching file drivers/media/dvb-frontends/dib3000mb.c
2025-10-31T05:25:16.8151874Z patching file drivers/media/dvb-frontends/dib3000mc.c
2025-10-31T05:25:16.8153699Z patching file drivers/media/dvb-frontends/dib7000m.c
2025-10-31T05:25:16.8155840Z patching file drivers/media/dvb-frontends/dib7000p.c
2025-10-31T05:25:16.8159087Z patching file drivers/media/dvb-frontends/dib8000.c
2025-10-31T05:25:16.8162927Z patching file drivers/media/dvb-frontends/dib9000.c
2025-10-31T05:25:16.8168498Z patching file drivers/media/dvb-frontends/drx39xyj/drxj.c
2025-10-31T05:25:16.8174973Z patching file drivers/media/dvb-frontends/drxd_hard.c
2025-10-31T05:25:16.8178484Z patching file drivers/media/dvb-frontends/drxk_hard.c
2025-10-31T05:25:16.8182285Z patching file drivers/media/dvb-frontends/ds3000.c
2025-10-31T05:25:16.8183880Z patching file drivers/media/dvb-frontends/dvb-pll.c
2025-10-31T05:25:16.8185184Z patching file drivers/media/dvb-frontends/ec100.c
2025-10-31T05:25:16.8186289Z patching file drivers/media/dvb-frontends/helene.c
2025-10-31T05:25:16.8187892Z patching file drivers/media/dvb-frontends/horus3a.c
2025-10-31T05:25:16.8188810Z patching file drivers/media/dvb-frontends/isl6405.c
2025-10-31T05:25:16.8189660Z patching file drivers/media/dvb-frontends/isl6421.c
2025-10-31T05:25:16.8190631Z patching file drivers/media/dvb-frontends/isl6423.c
2025-10-31T05:25:16.8191680Z patching file drivers/media/dvb-frontends/itd1000.c
2025-10-31T05:25:16.8193041Z patching file drivers/media/dvb-frontends/ix2505v.c
2025-10-31T05:25:16.8194123Z patching file drivers/media/dvb-frontends/l64781.c
2025-10-31T05:25:16.8195641Z patching file drivers/media/dvb-frontends/lg2160.c
2025-10-31T05:25:16.8197303Z patching file drivers/media/dvb-frontends/lgdt3305.c
2025-10-31T05:25:16.8199117Z patching file drivers/media/dvb-frontends/lgdt3306a.c
2025-10-31T05:25:16.8201077Z patching file drivers/media/dvb-frontends/lgdt330x.c
2025-10-31T05:25:16.8202649Z patching file drivers/media/dvb-frontends/lgs8gxx.c
2025-10-31T05:25:16.8204056Z patching file drivers/media/dvb-frontends/lnbh25.c
2025-10-31T05:25:16.8204854Z patching file drivers/media/dvb-frontends/lnbp21.c
2025-10-31T05:25:16.8205863Z patching file drivers/media/dvb-frontends/lnbp22.c
2025-10-31T05:25:16.8207271Z patching file drivers/media/dvb-frontends/m88ds3103.c
2025-10-31T05:25:16.8209118Z patching file drivers/media/dvb-frontends/m88rs2000.c
2025-10-31T05:25:16.8210907Z patching file drivers/media/dvb-frontends/mb86a16.c
2025-10-31T05:25:16.8212952Z patching file drivers/media/dvb-frontends/mb86a20s.c
2025-10-31T05:25:16.8214814Z patching file drivers/media/dvb-frontends/mn88443x.c
2025-10-31T05:25:16.8216321Z patching file drivers/media/dvb-frontends/mt312.c
2025-10-31T05:25:16.8217703Z patching file drivers/media/dvb-frontends/mt352.c
2025-10-31T05:25:16.8219254Z patching file drivers/media/dvb-frontends/mxl5xx.c
2025-10-31T05:25:16.8221366Z patching file drivers/media/dvb-frontends/nxt200x.c
2025-10-31T05:25:16.8222979Z patching file drivers/media/dvb-frontends/nxt6000.c
2025-10-31T05:25:16.8224312Z patching file drivers/media/dvb-frontends/or51132.c
2025-10-31T05:25:16.8225532Z patching file drivers/media/dvb-frontends/or51211.c
2025-10-31T05:25:16.8226839Z patching file drivers/media/dvb-frontends/rtl2830.c
2025-10-31T05:25:16.8228322Z patching file drivers/media/dvb-frontends/rtl2832.c
2025-10-31T05:25:16.8229837Z patching file drivers/media/dvb-frontends/s5h1409.c
2025-10-31T05:25:16.8231291Z patching file drivers/media/dvb-frontends/s5h1411.c
2025-10-31T05:25:16.8232859Z patching file drivers/media/dvb-frontends/s5h1420.c
2025-10-31T05:25:16.8234214Z patching file drivers/media/dvb-frontends/s5h1432.c
2025-10-31T05:25:16.8235265Z patching file drivers/media/dvb-frontends/s921.c
2025-10-31T05:25:16.8236558Z patching file drivers/media/dvb-frontends/si21xx.c
2025-10-31T05:25:16.8237953Z patching file drivers/media/dvb-frontends/sp8870.c
2025-10-31T05:25:16.8239046Z patching file drivers/media/dvb-frontends/sp887x.c
2025-10-31T05:25:16.8240658Z patching file drivers/media/dvb-frontends/stb0899_algo.c
2025-10-31T05:25:16.8242745Z patching file drivers/media/dvb-frontends/stb0899_drv.c
2025-10-31T05:25:16.8244351Z patching file drivers/media/dvb-frontends/stb6000.c
2025-10-31T05:25:16.8245359Z patching file drivers/media/dvb-frontends/stb6100.c
2025-10-31T05:25:16.8246701Z patching file drivers/media/dvb-frontends/stv0288.c
2025-10-31T05:25:16.8248051Z patching file drivers/media/dvb-frontends/stv0297.c
2025-10-31T05:25:16.8249922Z patching file drivers/media/dvb-frontends/stv0299.c
2025-10-31T05:25:16.8251818Z patching file drivers/media/dvb-frontends/stv0367.c
2025-10-31T05:25:16.8254519Z patching file drivers/media/dvb-frontends/stv0367_priv.h
2025-10-31T05:25:16.8255752Z patching file drivers/media/dvb-frontends/stv0900_core.c
2025-10-31T05:25:16.8258536Z patching file drivers/media/dvb-frontends/stv090x.c
2025-10-31T05:25:16.8261473Z patching file drivers/media/dvb-frontends/stv6110.c
2025-10-31T05:25:16.8262577Z patching file drivers/media/dvb-frontends/stv6110x.c
2025-10-31T05:25:16.8263911Z patching file drivers/media/dvb-frontends/tda10021.c
2025-10-31T05:25:16.8264983Z patching file drivers/media/dvb-frontends/tda10023.c
2025-10-31T05:25:16.8266403Z patching file drivers/media/dvb-frontends/tda10048.c
2025-10-31T05:25:16.8268130Z patching file drivers/media/dvb-frontends/tda1004x.c
2025-10-31T05:25:16.8269857Z patching file drivers/media/dvb-frontends/tda10086.c
2025-10-31T05:25:16.8271308Z patching file drivers/media/dvb-frontends/tda18271c2dd.c
2025-10-31T05:25:16.8272703Z patching file drivers/media/dvb-frontends/tda665x.c
2025-10-31T05:25:16.8273712Z patching file drivers/media/dvb-frontends/tda8083.c
2025-10-31T05:25:16.8274680Z patching file drivers/media/dvb-frontends/tda8261.c
2025-10-31T05:25:16.8275598Z patching file drivers/media/dvb-frontends/tda826x.c
2025-10-31T05:25:16.8276684Z patching file drivers/media/dvb-frontends/ts2020.c
2025-10-31T05:25:16.8278511Z patching file drivers/media/dvb-frontends/tua6100.c
2025-10-31T05:25:16.8279432Z patching file drivers/media/dvb-frontends/ves1820.c
2025-10-31T05:25:16.8280517Z patching file drivers/media/dvb-frontends/ves1x93.c
2025-10-31T05:25:16.8281741Z patching file drivers/media/dvb-frontends/zl10036.c
2025-10-31T05:25:16.8282848Z patching file drivers/media/dvb-frontends/zl10039.c
2025-10-31T05:25:16.8284068Z patching file drivers/media/dvb-frontends/zl10353.c
2025-10-31T05:25:16.8285530Z patching file drivers/media/firewire/firedtv-avc.c
2025-10-31T05:25:16.8287143Z patching file drivers/media/firewire/firedtv-ci.c
2025-10-31T05:25:16.8287877Z patching file drivers/media/i2c/ad5820.c
2025-10-31T05:25:16.8289188Z patching file drivers/media/i2c/adv748x/adv748x.h
2025-10-31T05:25:16.8290747Z patching file drivers/media/i2c/adv7511-v4l2.c
2025-10-31T05:25:16.8293442Z patching file drivers/media/i2c/adv7604.c
2025-10-31T05:25:16.8296821Z patching file drivers/media/i2c/adv7842.c
2025-10-31T05:25:16.8299559Z patching file drivers/media/i2c/et8ek8/et8ek8_driver.c
2025-10-31T05:25:16.8301161Z patching file drivers/media/i2c/hi556.c
2025-10-31T05:25:16.8302713Z patching file drivers/media/i2c/imx214.c
2025-10-31T05:25:16.8304585Z patching file drivers/media/i2c/imx219.c
2025-10-31T05:25:16.8307092Z patching file drivers/media/i2c/imx258.c
2025-10-31T05:25:16.8308669Z patching file drivers/media/i2c/ir-kbd-i2c.c
2025-10-31T05:25:16.8310180Z patching file drivers/media/i2c/m5mols/m5mols_core.c
2025-10-31T05:25:16.8311801Z patching file drivers/media/i2c/max2175.c
2025-10-31T05:25:16.8313488Z patching file drivers/media/i2c/max9271.c
2025-10-31T05:25:16.8314806Z patching file drivers/media/i2c/max9286.c
2025-10-31T05:25:16.8316564Z patching file drivers/media/i2c/mt9p031.c
2025-10-31T05:25:16.8318352Z patching file drivers/media/i2c/mt9v111.c
2025-10-31T05:25:16.8319962Z patching file drivers/media/i2c/ov2659.c
2025-10-31T05:25:16.8321909Z patching file drivers/media/i2c/ov2680.c
2025-10-31T05:25:16.8324349Z patching file drivers/media/i2c/ov2740.c
2025-10-31T05:25:16.8326361Z patching file drivers/media/i2c/ov5640.c
2025-10-31T05:25:16.8329268Z patching file drivers/media/i2c/ov5670.c
2025-10-31T05:25:16.8331204Z patching file drivers/media/i2c/ov5675.c
2025-10-31T05:25:16.8333034Z patching file drivers/media/i2c/ov7251.c
2025-10-31T05:25:16.8334996Z patching file drivers/media/i2c/ov7670.c
2025-10-31T05:25:16.8337078Z patching file drivers/media/i2c/ov772x.c
2025-10-31T05:25:16.8338907Z patching file drivers/media/i2c/ov8856.c
2025-10-31T05:25:16.8340634Z patching file drivers/media/i2c/rdacm20.c
2025-10-31T05:25:16.8342330Z patching file drivers/media/i2c/rj54n1cb0c.c
2025-10-31T05:25:16.8344221Z patching file drivers/media/i2c/s5c73m3/s5c73m3-core.c
2025-10-31T05:25:16.8345741Z patching file drivers/media/i2c/s5c73m3/s5c73m3.h
2025-10-31T05:25:16.8346932Z patching file drivers/media/i2c/s5k4ecgx.c
2025-10-31T05:25:16.8348831Z patching file drivers/media/i2c/s5k5baf.c
2025-10-31T05:25:16.8350898Z patching file drivers/media/i2c/s5k6aa.c
2025-10-31T05:25:16.8352619Z patching file drivers/media/i2c/saa6588.c
2025-10-31T05:25:16.8354641Z patching file drivers/media/i2c/smiapp/smiapp-core.c
2025-10-31T05:25:16.8357305Z patching file drivers/media/i2c/tc358743.c
2025-10-31T05:25:16.8360264Z patching file drivers/media/i2c/tda1997x.c
2025-10-31T05:25:16.8363039Z patching file drivers/media/i2c/tvp5150.c
2025-10-31T05:25:16.8364812Z patching file drivers/media/mc/Makefile
2025-10-31T05:25:16.8365430Z patching file drivers/media/mc/mc-devnode.c
2025-10-31T05:25:16.8366798Z patching file drivers/media/pci/b2c2/flexcop-pci.c
2025-10-31T05:25:16.8367807Z patching file drivers/media/pci/bt8xx/bt878.c
2025-10-31T05:25:16.8370007Z patching file drivers/media/pci/bt8xx/bttv-driver.c
2025-10-31T05:25:16.8373134Z patching file drivers/media/pci/bt8xx/dst.c
2025-10-31T05:25:16.8374875Z patching file drivers/media/pci/bt8xx/dst_ca.c
2025-10-31T05:25:16.8376253Z patching file drivers/media/pci/cobalt/cobalt-driver.c
2025-10-31T05:25:16.8377487Z patching file drivers/media/pci/cobalt/cobalt-driver.h
2025-10-31T05:25:16.8378545Z patching file drivers/media/pci/cx18/cx18-queue.c
2025-10-31T05:25:16.8379842Z patching file drivers/media/pci/cx23885/cx23885-alsa.c
2025-10-31T05:25:16.8381433Z patching file drivers/media/pci/cx23885/cx23885-core.c
2025-10-31T05:25:16.8383984Z patching file drivers/media/pci/cx23885/cx23885-dvb.c
2025-10-31T05:25:16.8386286Z patching file drivers/media/pci/cx23885/cx23885-video.c
2025-10-31T05:25:16.8388258Z patching file drivers/media/pci/cx25821/cx25821-core.c
2025-10-31T05:25:16.8389729Z patching file drivers/media/pci/cx88/cx88-mpeg.c
2025-10-31T05:25:16.8390648Z patching file drivers/media/pci/cx88/cx88-vbi.c
2025-10-31T05:25:16.8392119Z patching file drivers/media/pci/cx88/cx88-video.c
2025-10-31T05:25:16.8394009Z patching file drivers/media/pci/ddbridge/ddbridge-dummy-fe.c
2025-10-31T05:25:16.8394607Z patching file drivers/media/pci/ddbridge/ddbridge-main.c
2025-10-31T05:25:16.8395950Z patching file drivers/media/pci/dm1105/dm1105.c
2025-10-31T05:25:16.8397266Z patching file drivers/media/pci/intel/ipu3/Kconfig
2025-10-31T05:25:16.8398393Z patching file drivers/media/pci/intel/ipu3/ipu3-cio2.c
2025-10-31T05:25:16.8400563Z patching file drivers/media/pci/intel/ipu3/ipu3-cio2.h
2025-10-31T05:25:16.8402096Z patching file drivers/media/pci/ivtv/ivtv-driver.c
2025-10-31T05:25:16.8403793Z patching file drivers/media/pci/ivtv/ivtv-driver.h
2025-10-31T05:25:16.8405439Z patching file drivers/media/pci/ivtv/ivtv-ioctl.c
2025-10-31T05:25:16.8407420Z patching file drivers/media/pci/ivtv/ivtv-irq.c
2025-10-31T05:25:16.8408709Z patching file drivers/media/pci/ivtv/ivtv-queue.c
2025-10-31T05:25:16.8410054Z patching file drivers/media/pci/ivtv/ivtv-streams.c
2025-10-31T05:25:16.8411575Z patching file drivers/media/pci/ivtv/ivtv-udma.c
2025-10-31T05:25:16.8413040Z patching file drivers/media/pci/ivtv/ivtv-yuv.c
2025-10-31T05:25:16.8414859Z patching file drivers/media/pci/ivtv/ivtvfb.c
2025-10-31T05:25:16.8416636Z patching file drivers/media/pci/netup_unidvb/netup_unidvb_core.c
2025-10-31T05:25:16.8418075Z patching file drivers/media/pci/netup_unidvb/netup_unidvb_spi.c
2025-10-31T05:25:16.8419365Z patching file drivers/media/pci/ngene/ngene-core.c
2025-10-31T05:25:16.8421043Z patching file drivers/media/pci/ngene/ngene.h
2025-10-31T05:25:16.8422782Z patching file drivers/media/pci/saa7134/saa7134-alsa.c
2025-10-31T05:25:16.8424469Z patching file drivers/media/pci/saa7134/saa7134-core.c
2025-10-31T05:25:16.8426441Z patching file drivers/media/pci/saa7134/saa7134-dvb.c
2025-10-31T05:25:16.8428124Z patching file drivers/media/pci/saa7134/saa7134-empress.c
2025-10-31T05:25:16.8428864Z patching file drivers/media/pci/saa7134/saa7134-ts.c
2025-10-31T05:25:16.8429821Z patching file drivers/media/pci/saa7134/saa7134-vbi.c
2025-10-31T05:25:16.8431266Z patching file drivers/media/pci/saa7134/saa7134-video.c
2025-10-31T05:25:16.8433341Z patching file drivers/media/pci/saa7146/hexium_gemini.c
2025-10-31T05:25:16.8434242Z patching file drivers/media/pci/saa7146/hexium_orion.c
2025-10-31T05:25:16.8435288Z patching file drivers/media/pci/saa7146/mxb.c
2025-10-31T05:25:16.8437053Z patching file drivers/media/pci/saa7164/saa7164-core.c
2025-10-31T05:25:16.8438814Z patching file drivers/media/pci/saa7164/saa7164-encoder.c
2025-10-31T05:25:16.8440183Z patching file drivers/media/pci/smipcie/smipcie-ir.c
2025-10-31T05:25:16.8441291Z patching file drivers/media/pci/solo6x10/solo6x10-core.c
2025-10-31T05:25:16.8442497Z patching file drivers/media/pci/solo6x10/solo6x10-g723.c
2025-10-31T05:25:16.8443499Z patching file drivers/media/pci/solo6x10/solo6x10-offsets.h
2025-10-31T05:25:16.8444231Z patching file drivers/media/pci/sta2x11/Kconfig
2025-10-31T05:25:16.8445279Z patching file drivers/media/pci/sta2x11/sta2x11_vip.c
2025-10-31T05:25:16.8447140Z patching file drivers/media/pci/ttpci/av7110_av.c
2025-10-31T05:25:16.8448891Z patching file drivers/media/pci/ttpci/budget-av.c
2025-10-31T05:25:16.8450497Z patching file drivers/media/pci/tw686x/tw686x-core.c
2025-10-31T05:25:16.8451856Z patching file drivers/media/pci/tw686x/tw686x-video.c
2025-10-31T05:25:16.8454117Z patching file drivers/media/platform/am437x/am437x-vpfe.c
2025-10-31T05:25:16.8456487Z patching file drivers/media/platform/aspeed-video.c
2025-10-31T05:25:16.8459179Z patching file drivers/media/platform/coda/coda-bit.c
2025-10-31T05:25:16.8462148Z patching file drivers/media/platform/coda/coda-common.c
2025-10-31T05:25:16.8464904Z patching file drivers/media/platform/coda/coda-jpeg.c
2025-10-31T05:25:16.8466672Z patching file drivers/media/platform/coda/imx-vdoa.c
2025-10-31T05:25:16.8467704Z patching file drivers/media/platform/davinci/vpbe_display.c
2025-10-31T05:25:16.8469316Z patching file drivers/media/platform/davinci/vpbe_venc.c
2025-10-31T05:25:16.8470323Z patching file drivers/media/platform/davinci/vpif.c
2025-10-31T05:25:16.8471783Z patching file drivers/media/platform/exynos-gsc/gsc-m2m.c
2025-10-31T05:25:16.8473640Z patching file drivers/media/platform/exynos4-is/fimc-capture.c
2025-10-31T05:25:16.8475428Z patching file drivers/media/platform/exynos4-is/fimc-core.c
2025-10-31T05:25:16.8476766Z patching file drivers/media/platform/exynos4-is/fimc-is-regs.c
2025-10-31T05:25:16.8477667Z patching file drivers/media/platform/exynos4-is/fimc-is.c
2025-10-31T05:25:16.8479174Z patching file drivers/media/platform/exynos4-is/fimc-isp-video.c
2025-10-31T05:25:16.8480190Z patching file drivers/media/platform/exynos4-is/fimc-isp-video.h
2025-10-31T05:25:16.8481101Z patching file drivers/media/platform/exynos4-is/fimc-isp.c
2025-10-31T05:25:16.8482882Z patching file drivers/media/platform/exynos4-is/fimc-lite.c
2025-10-31T05:25:16.8484576Z patching file drivers/media/platform/exynos4-is/fimc-m2m.c
2025-10-31T05:25:16.8486022Z patching file drivers/media/platform/exynos4-is/media-dev.c
2025-10-31T05:25:16.8487713Z patching file drivers/media/platform/exynos4-is/media-dev.h
2025-10-31T05:25:16.8494165Z patching file drivers/media/platform/exynos4-is/mipi-csis.c
2025-10-31T05:25:16.8494588Z patching file drivers/media/platform/imx-pxp.c
2025-10-31T05:25:16.8495019Z patching file drivers/media/platform/marvell-ccic/mcam-core.c
2025-10-31T05:25:16.8495291Z patching file drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c
2025-10-31T05:25:16.8496038Z patching file drivers/media/platform/mtk-mdp/mtk_mdp_ipi.h
2025-10-31T05:25:16.8497027Z patching file drivers/media/platform/mtk-mdp/mtk_mdp_m2m.c
2025-10-31T05:25:16.8498272Z patching file drivers/media/platform/mtk-mdp/mtk_mdp_vpu.c
2025-10-31T05:25:16.8499283Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_drv.c
2025-10-31T05:25:16.8500182Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.c
2025-10-31T05:25:16.8501018Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.h
2025-10-31T05:25:16.8502218Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_enc.c
2025-10-31T05:25:16.8503837Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_enc_drv.c
2025-10-31T05:25:16.8504791Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_enc_pm.c
2025-10-31T05:25:16.8505703Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_fw_vpu.c
2025-10-31T05:25:16.8506755Z patching file drivers/media/platform/mtk-vcodec/vdec/vdec_vp9_if.c
2025-10-31T05:25:16.8508331Z patching file drivers/media/platform/mtk-vcodec/venc/venc_h264_if.c
2025-10-31T05:25:16.8509465Z patching file drivers/media/platform/mtk-vpu/mtk_vpu.c
2025-10-31T05:25:16.8510797Z patching file drivers/media/platform/mtk-vpu/mtk_vpu.h
2025-10-31T05:25:16.8512405Z patching file drivers/media/platform/omap3isp/isp.c
2025-10-31T05:25:16.8515118Z patching file drivers/media/platform/omap3isp/ispccdc.c
2025-10-31T05:25:16.8517404Z patching file drivers/media/platform/omap3isp/ispstat.c
2025-10-31T05:25:16.8519217Z patching file drivers/media/platform/pxa_camera.c
2025-10-31T05:25:16.8521654Z patching file drivers/media/platform/qcom/camss/camss-vfe.c
2025-10-31T05:25:16.8523750Z patching file drivers/media/platform/qcom/camss/camss-video.c
2025-10-31T05:25:16.8525085Z patching file drivers/media/platform/qcom/camss/camss.c
2025-10-31T05:25:16.8526218Z patching file drivers/media/platform/qcom/venus/Makefile
2025-10-31T05:25:16.8527010Z patching file drivers/media/platform/qcom/venus/core.c
2025-10-31T05:25:16.8528923Z patching file drivers/media/platform/qcom/venus/core.h
2025-10-31T05:25:16.8530205Z patching file drivers/media/platform/qcom/venus/dbgfs.c
2025-10-31T05:25:16.8530756Z patching file drivers/media/platform/qcom/venus/dbgfs.h
2025-10-31T05:25:16.8531736Z patching file drivers/media/platform/qcom/venus/firmware.c
2025-10-31T05:25:16.8533228Z patching file drivers/media/platform/qcom/venus/helpers.c
2025-10-31T05:25:16.8534976Z patching file drivers/media/platform/qcom/venus/helpers.h
2025-10-31T05:25:16.8535683Z patching file drivers/media/platform/qcom/venus/hfi.c
2025-10-31T05:25:16.8537167Z patching file drivers/media/platform/qcom/venus/hfi_msgs.c
2025-10-31T05:25:16.8538211Z patching file drivers/media/platform/qcom/venus/hfi_parser.c
2025-10-31T05:25:16.8540025Z patching file drivers/media/platform/qcom/venus/hfi_parser.h
2025-10-31T05:25:16.8540732Z patching file drivers/media/platform/qcom/venus/hfi_platform.c
2025-10-31T05:25:16.8541850Z patching file drivers/media/platform/qcom/venus/hfi_platform.h
2025-10-31T05:25:16.8543364Z patching file drivers/media/platform/qcom/venus/hfi_platform_v4.c
2025-10-31T05:25:16.8544741Z patching file drivers/media/platform/qcom/venus/hfi_venus.c
2025-10-31T05:25:16.8547040Z patching file drivers/media/platform/qcom/venus/hfi_venus_io.h
2025-10-31T05:25:16.8548495Z patching file drivers/media/platform/qcom/venus/pm_helpers.c
2025-10-31T05:25:16.8550399Z patching file drivers/media/platform/qcom/venus/pm_helpers.h
2025-10-31T05:25:16.8551429Z patching file drivers/media/platform/qcom/venus/vdec.c
2025-10-31T05:25:16.8554142Z patching file drivers/media/platform/qcom/venus/venc.c
2025-10-31T05:25:16.8556060Z patching file drivers/media/platform/rcar-vin/rcar-csi2.c
2025-10-31T05:25:16.8557736Z patching file drivers/media/platform/rcar-vin/rcar-dma.c
2025-10-31T05:25:16.8559357Z patching file drivers/media/platform/rcar-vin/rcar-v4l2.c
2025-10-31T05:25:16.8560904Z patching file drivers/media/platform/rcar_drif.c
2025-10-31T05:25:16.8562989Z patching file drivers/media/platform/rcar_fdp1.c
2025-10-31T05:25:16.8565243Z patching file drivers/media/platform/rockchip/rga/rga-buf.c
2025-10-31T05:25:16.8566096Z patching file drivers/media/platform/rockchip/rga/rga.c
2025-10-31T05:25:16.8568058Z patching file drivers/media/platform/s3c-camif/camif-capture.c
2025-10-31T05:25:16.8569578Z patching file drivers/media/platform/s3c-camif/camif-core.c
2025-10-31T05:25:16.8570641Z patching file drivers/media/platform/s5p-g2d/g2d.c
2025-10-31T05:25:16.8572717Z patching file drivers/media/platform/s5p-jpeg/jpeg-core.c
2025-10-31T05:25:16.8575347Z patching file drivers/media/platform/s5p-mfc/s5p_mfc.c
2025-10-31T05:25:16.8577052Z patching file drivers/media/platform/s5p-mfc/s5p_mfc_cmd_v6.c
2025-10-31T05:25:16.8578047Z patching file drivers/media/platform/s5p-mfc/s5p_mfc_ctrl.c
2025-10-31T05:25:16.8579634Z patching file drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
2025-10-31T05:25:16.8582984Z patching file drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c
2025-10-31T05:25:16.8585284Z patching file drivers/media/platform/sh_vou.c
2025-10-31T05:25:16.8586711Z patching file drivers/media/platform/sti/bdisp/Makefile
2025-10-31T05:25:16.8587426Z patching file drivers/media/platform/sti/bdisp/bdisp-debug.c
2025-10-31T05:25:16.8588912Z patching file drivers/media/platform/sti/bdisp/bdisp-v4l2.c
2025-10-31T05:25:16.8590769Z patching file drivers/media/platform/sti/c8sectpfe/c8sectpfe-core.c
2025-10-31T05:25:16.8591866Z patching file drivers/media/platform/sti/delta/Makefile
2025-10-31T05:25:16.8593415Z patching file drivers/media/platform/sti/delta/delta-v4l2.c
2025-10-31T05:25:16.8595066Z patching file drivers/media/platform/sti/hva/Makefile
2025-10-31T05:25:16.8595705Z patching file drivers/media/platform/sti/hva/hva-hw.c
2025-10-31T05:25:16.8597451Z patching file drivers/media/platform/stm32/stm32-dcmi.c
2025-10-31T05:25:16.8599330Z patching file drivers/media/platform/sunxi/sun4i-csi/sun4i_csi.c
2025-10-31T05:25:16.8600241Z patching file drivers/media/platform/sunxi/sun4i-csi/sun4i_csi.h
2025-10-31T05:25:16.8601212Z patching file drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c
2025-10-31T05:25:16.8602753Z patching file drivers/media/platform/sunxi/sun8i-di/sun8i-di.c
2025-10-31T05:25:16.8604589Z patching file drivers/media/platform/sunxi/sun8i-rotate/sun8i_rotate.c
2025-10-31T05:25:16.8606054Z patching file drivers/media/platform/ti-vpe/cal.c
2025-10-31T05:25:16.8606942Z patching file drivers/media/platform/ti-vpe/cal.h
2025-10-31T05:25:16.8607886Z patching file drivers/media/platform/video-mux.c
2025-10-31T05:25:16.8609354Z patching file drivers/media/platform/vsp1/vsp1_drm.c
2025-10-31T05:25:16.8610796Z patching file drivers/media/platform/vsp1/vsp1_drv.c
2025-10-31T05:25:16.8612193Z patching file drivers/media/platform/vsp1/vsp1_histo.c
2025-10-31T05:25:16.8613603Z patching file drivers/media/platform/vsp1/vsp1_pipe.h
2025-10-31T05:25:16.8614448Z patching file drivers/media/platform/vsp1/vsp1_rpf.c
2025-10-31T05:25:16.8615769Z patching file drivers/media/platform/xilinx/xilinx-vipp.c
2025-10-31T05:25:16.8616781Z patching file drivers/media/radio/radio-isa.c
2025-10-31T05:25:16.8617783Z patching file drivers/media/radio/radio-shark.c
2025-10-31T05:25:16.8618818Z patching file drivers/media/radio/radio-shark2.c
2025-10-31T05:25:16.8620356Z patching file drivers/media/radio/radio-wl1273.c
2025-10-31T05:25:16.8622325Z patching file drivers/media/radio/si470x/radio-si470x-i2c.c
2025-10-31T05:25:16.8623585Z patching file drivers/media/radio/si470x/radio-si470x-usb.c
2025-10-31T05:25:16.8625187Z patching file drivers/media/radio/wl128x/fmdrv_common.c
2025-10-31T05:25:16.8626706Z patching file drivers/media/rc/Makefile
2025-10-31T05:25:16.8627382Z patching file drivers/media/rc/bpf-lirc.c
2025-10-31T05:25:16.8628771Z patching file drivers/media/rc/ene_ir.c
2025-10-31T05:25:16.8630103Z patching file drivers/media/rc/gpio-ir-recv.c
2025-10-31T05:25:16.8630891Z patching file drivers/media/rc/gpio-ir-tx.c
2025-10-31T05:25:16.8631912Z patching file drivers/media/rc/igorplugusb.c
2025-10-31T05:25:16.8633067Z patching file drivers/media/rc/iguanair.c
2025-10-31T05:25:16.8634838Z patching file drivers/media/rc/imon.c
2025-10-31T05:25:16.8637650Z patching file drivers/media/rc/ir-mce_kbd-decoder.c
2025-10-31T05:25:16.8638495Z patching file drivers/media/rc/ir-sharp-decoder.c
2025-10-31T05:25:16.8639475Z patching file drivers/media/rc/ir_toy.c
2025-10-31T05:25:16.8641089Z patching file drivers/media/rc/ite-cir.c
2025-10-31T05:25:16.8642914Z patching file drivers/media/rc/keymaps/Makefile
2025-10-31T05:25:16.8643666Z patching file drivers/media/rc/keymaps/rc-cec.c
2025-10-31T05:25:16.8644938Z patching file drivers/media/rc/lirc_dev.c
2025-10-31T05:25:16.8646652Z patching file drivers/media/rc/mceusb.c
2025-10-31T05:25:16.8648603Z patching file drivers/media/rc/rc-core-priv.h
2025-10-31T05:25:16.8649451Z patching file drivers/media/rc/rc-loopback.c
2025-10-31T05:25:16.8650891Z patching file drivers/media/rc/rc-main.c
2025-10-31T05:25:16.8653109Z patching file drivers/media/rc/redrat3.c
2025-10-31T05:25:16.8654826Z patching file drivers/media/rc/serial_ir.c
2025-10-31T05:25:16.8656013Z patching file drivers/media/rc/streamzap.c
2025-10-31T05:25:16.8657730Z patching file drivers/media/rc/sunxi-cir.c
2025-10-31T05:25:16.8658771Z patching file drivers/media/spi/cxd2880-spi.c
2025-10-31T05:25:16.8660239Z patching file drivers/media/test-drivers/vidtv/vidtv_bridge.c
2025-10-31T05:25:16.8661324Z patching file drivers/media/test-drivers/vidtv/vidtv_channel.c
2025-10-31T05:25:16.8662573Z patching file drivers/media/test-drivers/vidtv/vidtv_mux.c
2025-10-31T05:25:16.8664192Z patching file drivers/media/test-drivers/vidtv/vidtv_psi.c
2025-10-31T05:25:16.8666131Z patching file drivers/media/test-drivers/vidtv/vidtv_s302m.c
2025-10-31T05:25:16.8667437Z patching file drivers/media/test-drivers/vim2m.c
2025-10-31T05:25:16.8669025Z patching file drivers/media/test-drivers/vimc/vimc-core.c
2025-10-31T05:25:16.8670543Z patching file drivers/media/test-drivers/vivid/vivid-core.c
2025-10-31T05:25:16.8672737Z patching file drivers/media/test-drivers/vivid/vivid-core.h
2025-10-31T05:25:16.8673722Z patching file drivers/media/test-drivers/vivid/vivid-rds-gen.c
2025-10-31T05:25:16.8675168Z patching file drivers/media/test-drivers/vivid/vivid-vid-cap.c
2025-10-31T05:25:16.8677453Z patching file drivers/media/test-drivers/vivid/vivid-vid-out.c
2025-10-31T05:25:16.8679195Z patching file drivers/media/tuners/fc0011.c
2025-10-31T05:25:16.8679995Z patching file drivers/media/tuners/fc0012.c
2025-10-31T05:25:16.8681060Z patching file drivers/media/tuners/fc0013.c
2025-10-31T05:25:16.8682440Z patching file drivers/media/tuners/m88rs6000t.c
2025-10-31T05:25:16.8683775Z patching file drivers/media/tuners/max2165.c
2025-10-31T05:25:16.8684717Z patching file drivers/media/tuners/mc44s803.c
2025-10-31T05:25:16.8685716Z patching file drivers/media/tuners/msi001.c
2025-10-31T05:25:16.8686794Z patching file drivers/media/tuners/mt2060.c
2025-10-31T05:25:16.8687866Z patching file drivers/media/tuners/mt2131.c
2025-10-31T05:25:16.8688797Z patching file drivers/media/tuners/mt2266.c
2025-10-31T05:25:16.8690795Z patching file drivers/media/tuners/mxl5005s.c
2025-10-31T05:25:16.8693545Z patching file drivers/media/tuners/qm1d1c0042.c
2025-10-31T05:25:16.8694470Z patching file drivers/media/tuners/qt1010.c
2025-10-31T05:25:16.8695886Z patching file drivers/media/tuners/si2157.c
2025-10-31T05:25:16.8697085Z patching file drivers/media/tuners/tda18218.c
2025-10-31T05:25:16.8698497Z patching file drivers/media/tuners/xc4000.c
2025-10-31T05:25:16.8700440Z patching file drivers/media/tuners/xc5000.c
2025-10-31T05:25:16.8702399Z patching file drivers/media/usb/au0828/au0828-core.c
2025-10-31T05:25:16.8703786Z patching file drivers/media/usb/b2c2/flexcop-usb.c
2025-10-31T05:25:16.8704890Z patching file drivers/media/usb/b2c2/flexcop-usb.h
2025-10-31T05:25:16.8705735Z patching file drivers/media/usb/cpia2/cpia2.h
2025-10-31T05:25:16.8707402Z patching file drivers/media/usb/cpia2/cpia2_core.c
2025-10-31T05:25:16.8709398Z patching file drivers/media/usb/cpia2/cpia2_usb.c
2025-10-31T05:25:16.8711169Z patching file drivers/media/usb/cx231xx/cx231xx-417.c
2025-10-31T05:25:16.8713282Z patching file drivers/media/usb/cx231xx/cx231xx-cards.c
2025-10-31T05:25:16.8715183Z patching file drivers/media/usb/cx231xx/cx231xx-core.c
2025-10-31T05:25:16.8717234Z patching file drivers/media/usb/dvb-usb-v2/af9035.c
2025-10-31T05:25:16.8719284Z patching file drivers/media/usb/dvb-usb-v2/anysee.c
2025-10-31T05:25:16.8720785Z patching file drivers/media/usb/dvb-usb-v2/az6007.c
2025-10-31T05:25:16.8722152Z patching file drivers/media/usb/dvb-usb-v2/ce6230.c
2025-10-31T05:25:16.8723108Z patching file drivers/media/usb/dvb-usb-v2/ec168.c
2025-10-31T05:25:16.8724325Z patching file drivers/media/usb/dvb-usb-v2/gl861.c
2025-10-31T05:25:16.8725669Z patching file drivers/media/usb/dvb-usb-v2/lmedm04.c
2025-10-31T05:25:16.8727325Z patching file drivers/media/usb/dvb-usb-v2/mxl111sf.c
2025-10-31T05:25:16.8729321Z patching file drivers/media/usb/dvb-usb-v2/rtl28xxu.c
2025-10-31T05:25:16.8731376Z patching file drivers/media/usb/dvb-usb/af9005.c
2025-10-31T05:25:16.8732972Z patching file drivers/media/usb/dvb-usb/az6027.c
2025-10-31T05:25:16.8734424Z patching file drivers/media/usb/dvb-usb/cinergyT2-core.c
2025-10-31T05:25:16.8735796Z patching file drivers/media/usb/dvb-usb/cxusb.c
2025-10-31T05:25:16.8737794Z patching file drivers/media/usb/dvb-usb/dib0700_core.c
2025-10-31T05:25:16.8740227Z patching file drivers/media/usb/dvb-usb/dib0700_devices.c
2025-10-31T05:25:16.8743297Z patching file drivers/media/usb/dvb-usb/dibusb-common.c
2025-10-31T05:25:16.8744125Z patching file drivers/media/usb/dvb-usb/digitv.c
2025-10-31T05:25:16.8745081Z patching file drivers/media/usb/dvb-usb/dtv5100.c
2025-10-31T05:25:16.8746042Z patching file drivers/media/usb/dvb-usb/dvb-usb-i2c.c
2025-10-31T05:25:16.8746886Z patching file drivers/media/usb/dvb-usb/dvb-usb-init.c
2025-10-31T05:25:16.8748384Z patching file drivers/media/usb/dvb-usb/dvb-usb.h
2025-10-31T05:25:16.8749908Z patching file drivers/media/usb/dvb-usb/dw2102.c
2025-10-31T05:25:16.8752853Z patching file drivers/media/usb/dvb-usb/gp8psk.c
2025-10-31T05:25:16.8753956Z patching file drivers/media/usb/dvb-usb/m920x.c
2025-10-31T05:25:16.8755484Z patching file drivers/media/usb/dvb-usb/nova-t-usb2.c
2025-10-31T05:25:16.8756388Z patching file drivers/media/usb/dvb-usb/vp702x.c
2025-10-31T05:25:16.8758650Z patching file drivers/media/usb/em28xx/em28xx-cards.c
2025-10-31T05:25:16.8761420Z patching file drivers/media/usb/em28xx/em28xx-core.c
2025-10-31T05:25:16.8763395Z patching file drivers/media/usb/em28xx/em28xx-dvb.c
2025-10-31T05:25:16.8765171Z patching file drivers/media/usb/em28xx/em28xx-input.c
2025-10-31T05:25:16.8766631Z patching file drivers/media/usb/go7007/go7007-driver.c
2025-10-31T05:25:16.8767718Z patching file drivers/media/usb/go7007/go7007-i2c.c
2025-10-31T05:25:16.8768790Z patching file drivers/media/usb/go7007/go7007-usb.c
2025-10-31T05:25:16.8770359Z patching file drivers/media/usb/go7007/s2250-board.c
2025-10-31T05:25:16.8772122Z patching file drivers/media/usb/gspca/cpia1.c
2025-10-31T05:25:16.8774080Z patching file drivers/media/usb/gspca/gl860/gl860.c
2025-10-31T05:25:16.8775556Z patching file drivers/media/usb/gspca/gspca.c
2025-10-31T05:25:16.8777082Z patching file drivers/media/usb/gspca/gspca.h
2025-10-31T05:25:16.8778079Z patching file drivers/media/usb/gspca/m5602/m5602_mt9m111.c
2025-10-31T05:25:16.8779219Z patching file drivers/media/usb/gspca/m5602/m5602_po1030.c
2025-10-31T05:25:16.8780720Z patching file drivers/media/usb/gspca/ov534.c
2025-10-31T05:25:16.8782417Z patching file drivers/media/usb/gspca/sq905.c
2025-10-31T05:25:16.8783731Z patching file drivers/media/usb/gspca/stv06xx/stv06xx.c
2025-10-31T05:25:16.8784794Z patching file drivers/media/usb/gspca/stv06xx/stv06xx_hdcs.c
2025-10-31T05:25:16.8786092Z patching file drivers/media/usb/gspca/sunplus.c
2025-10-31T05:25:16.8787507Z patching file drivers/media/usb/gspca/vicam.c
2025-10-31T05:25:16.8788439Z patching file drivers/media/usb/hdpvr/hdpvr-i2c.c
2025-10-31T05:25:16.8789551Z patching file drivers/media/usb/hdpvr/hdpvr-video.c
2025-10-31T05:25:16.8791265Z patching file drivers/media/usb/msi2500/msi2500.c
2025-10-31T05:25:16.8792688Z patching file drivers/media/usb/pvrusb2/pvrusb2-context.c
2025-10-31T05:25:16.8793996Z patching file drivers/media/usb/pvrusb2/pvrusb2-dvb.c
2025-10-31T05:25:16.8796220Z patching file drivers/media/usb/pvrusb2/pvrusb2-hdw.c
2025-10-31T05:25:16.8799595Z patching file drivers/media/usb/pvrusb2/pvrusb2-v4l2.c
2025-10-31T05:25:16.8801274Z patching file drivers/media/usb/pwc/pwc-if.c
2025-10-31T05:25:16.8803530Z patching file drivers/media/usb/s2255/s2255drv.c
2025-10-31T05:25:16.8805757Z patching file drivers/media/usb/siano/smsusb.c
2025-10-31T05:25:16.8807179Z patching file drivers/media/usb/stk1160/stk1160-core.c
2025-10-31T05:25:16.8808296Z patching file drivers/media/usb/stk1160/stk1160-v4l.c
2025-10-31T05:25:16.8809722Z patching file drivers/media/usb/stk1160/stk1160-video.c
2025-10-31T05:25:16.8810734Z patching file drivers/media/usb/stk1160/stk1160.h
2025-10-31T05:25:16.8812199Z patching file drivers/media/usb/stkwebcam/stk-webcam.c
2025-10-31T05:25:16.8813747Z patching file drivers/media/usb/tm6000/tm6000-dvb.c
2025-10-31T05:25:16.8815079Z patching file drivers/media/usb/tm6000/tm6000-video.c
2025-10-31T05:25:16.8816935Z patching file drivers/media/usb/ttusb-dec/ttusb_dec.c
2025-10-31T05:25:16.8818463Z patching file drivers/media/usb/usbtv/usbtv-audio.c
2025-10-31T05:25:16.8819473Z patching file drivers/media/usb/usbtv/usbtv-video.c
2025-10-31T05:25:16.8821338Z patching file drivers/media/usb/uvc/uvc_ctrl.c
2025-10-31T05:25:16.8824680Z patching file drivers/media/usb/uvc/uvc_driver.c
2025-10-31T05:25:16.8827438Z patching file drivers/media/usb/uvc/uvc_entity.c
2025-10-31T05:25:16.8828130Z patching file drivers/media/usb/uvc/uvc_queue.c
2025-10-31T05:25:16.8829179Z patching file drivers/media/usb/uvc/uvc_status.c
2025-10-31T05:25:16.8830665Z patching file drivers/media/usb/uvc/uvc_v4l2.c
2025-10-31T05:25:16.8833073Z patching file drivers/media/usb/uvc/uvc_video.c
2025-10-31T05:25:16.8835611Z patching file drivers/media/usb/uvc/uvcvideo.h
2025-10-31T05:25:16.8837349Z patching file drivers/media/usb/zr364xx/zr364xx.c
2025-10-31T05:25:16.8839417Z patching file drivers/media/v4l2-core/v4l2-async.c
2025-10-31T05:25:16.8841700Z patching file drivers/media/v4l2-core/v4l2-ctrls.c
2025-10-31T05:25:16.8845885Z patching file drivers/media/v4l2-core/v4l2-dev.c
2025-10-31T05:25:16.8847345Z patching file drivers/media/v4l2-core/v4l2-dv-timings.c
2025-10-31T05:25:16.8849173Z patching file drivers/media/v4l2-core/v4l2-fh.c
2025-10-31T05:25:16.8850141Z patching file drivers/media/v4l2-core/v4l2-fwnode.c
2025-10-31T05:25:16.8852616Z patching file drivers/media/v4l2-core/v4l2-ioctl.c
2025-10-31T05:25:16.8855478Z patching file drivers/media/v4l2-core/v4l2-mc.c
2025-10-31T05:25:16.8856916Z patching file drivers/media/v4l2-core/v4l2-mem2mem.c
2025-10-31T05:25:16.8858772Z patching file drivers/media/v4l2-core/v4l2-subdev.c
2025-10-31T05:25:16.8860037Z patching file drivers/media/v4l2-core/videobuf-dma-contig.c
2025-10-31T05:25:16.8861065Z patching file drivers/memory/Kconfig
2025-10-31T05:25:16.8862150Z patching file drivers/memory/atmel-ebi.c
2025-10-31T05:25:16.8863364Z patching file drivers/memory/atmel-sdramc.c
2025-10-31T05:25:16.8864312Z patching file drivers/memory/brcmstb_dpfe.c
2025-10-31T05:25:16.8866085Z patching file drivers/memory/emif.c
2025-10-31T05:25:16.8867804Z patching file drivers/memory/fsl_ifc.c
2025-10-31T05:25:16.8868873Z patching file drivers/memory/jz4780-nemc.c
2025-10-31T05:25:16.8869923Z patching file drivers/memory/mtk-smi.c
2025-10-31T05:25:16.8870940Z patching file drivers/memory/mvebu-devbus.c
2025-10-31T05:25:16.8871909Z patching file drivers/memory/of_memory.c
2025-10-31T05:25:16.8873749Z patching file drivers/memory/omap-gpmc.c
2025-10-31T05:25:16.8875642Z patching file drivers/memory/pl172.c
2025-10-31T05:25:16.8876517Z patching file drivers/memory/pl353-smc.c
2025-10-31T05:25:16.8877873Z patching file drivers/memory/renesas-rpc-if.c
2025-10-31T05:25:16.8879550Z patching file drivers/memory/samsung/exynos-srom.c
2025-10-31T05:25:16.8880674Z patching file drivers/memory/samsung/exynos5422-dmc.c
2025-10-31T05:25:16.8882667Z patching file drivers/memory/stm32-fmc2-ebi.c
2025-10-31T05:25:16.8884981Z patching file drivers/memory/tegra/tegra124-emc.c
2025-10-31T05:25:16.8886511Z patching file drivers/memory/tegra/tegra30-emc.c
2025-10-31T05:25:16.8887901Z patching file drivers/memory/ti-aemif.c
2025-10-31T05:25:16.8889116Z patching file drivers/memstick/core/memstick.c
2025-10-31T05:25:16.8890837Z patching file drivers/memstick/core/ms_block.c
2025-10-31T05:25:16.8893031Z patching file drivers/memstick/host/jmb38x_ms.c
2025-10-31T05:25:16.8894406Z patching file drivers/memstick/host/r592.c
2025-10-31T05:25:16.8895882Z patching file drivers/memstick/host/rtsx_usb_ms.c
2025-10-31T05:25:16.8897589Z patching file drivers/message/fusion/mptlan.c
2025-10-31T05:25:16.8900351Z patching file drivers/message/fusion/mptsas.c
2025-10-31T05:25:16.8904008Z patching file drivers/mfd/Kconfig
2025-10-31T05:25:16.8906142Z patching file drivers/mfd/ab8500-core.c
2025-10-31T05:25:16.8907560Z patching file drivers/mfd/altera-sysmgr.c
2025-10-31T05:25:16.8908830Z patching file drivers/mfd/arizona-core.c
2025-10-31T05:25:16.8910274Z patching file drivers/mfd/arizona-irq.c
2025-10-31T05:25:16.8911526Z patching file drivers/mfd/asic3.c
2025-10-31T05:25:16.8913121Z patching file drivers/mfd/atmel-flexcom.c
2025-10-31T05:25:16.8914149Z patching file drivers/mfd/axp20x.c
2025-10-31T05:25:16.8915701Z patching file drivers/mfd/bd9571mwv.c
2025-10-31T05:25:16.8916595Z patching file drivers/mfd/da9052-i2c.c
2025-10-31T05:25:16.8917437Z patching file drivers/mfd/da9052-spi.c
2025-10-31T05:25:16.8918363Z patching file drivers/mfd/da9063-i2c.c
2025-10-31T05:25:16.8919425Z patching file drivers/mfd/davinci_voicecodec.c
2025-10-31T05:25:16.8921113Z patching file drivers/mfd/db8500-prcmu.c
2025-10-31T05:25:16.8923532Z patching file drivers/mfd/dln2.c
2025-10-31T05:25:16.8924823Z patching file drivers/mfd/ene-kb3930.c
2025-10-31T05:25:16.8925585Z patching file drivers/mfd/exynos-lpass.c
2025-10-31T05:25:16.8926559Z patching file drivers/mfd/fsl-imx25-tsadc.c
2025-10-31T05:25:16.8927593Z patching file drivers/mfd/gateworks-gsc.c
2025-10-31T05:25:16.8928632Z patching file drivers/mfd/htc-i2cpld.c
2025-10-31T05:25:16.8930105Z patching file drivers/mfd/intel-lpss-acpi.c
2025-10-31T05:25:16.8930946Z patching file drivers/mfd/intel_soc_pmic_bxtwc.c
2025-10-31T05:25:16.8932676Z patching file drivers/mfd/intel_soc_pmic_chtdc_ti.c
2025-10-31T05:25:16.8933581Z patching file drivers/mfd/intel_soc_pmic_core.c
2025-10-31T05:25:16.8934534Z patching file drivers/mfd/ipaq-micro.c
2025-10-31T05:25:16.8935554Z patching file drivers/mfd/lp8788-irq.c
2025-10-31T05:25:16.8936511Z patching file drivers/mfd/lp8788.c
2025-10-31T05:25:16.8937799Z patching file drivers/mfd/lpc_ich.c
2025-10-31T05:25:16.8939387Z patching file drivers/mfd/lpc_sch.c
2025-10-31T05:25:16.8940716Z patching file drivers/mfd/max14577.c
2025-10-31T05:25:16.8941784Z patching file drivers/mfd/max77620.c
2025-10-31T05:25:16.8943395Z patching file drivers/mfd/mc13xxx-core.c
2025-10-31T05:25:16.8944418Z patching file drivers/mfd/mfd-core.c
2025-10-31T05:25:16.8945693Z patching file drivers/mfd/motorola-cpcap.c
2025-10-31T05:25:16.8946727Z patching file drivers/mfd/omap-usb-tll.c
2025-10-31T05:25:16.8947785Z patching file drivers/mfd/pcf50633-adc.c
2025-10-31T05:25:16.8948825Z patching file drivers/mfd/rn5t618.c
2025-10-31T05:25:16.8949793Z patching file drivers/mfd/rt5033.c
2025-10-31T05:25:16.8951177Z patching file drivers/mfd/sm501.c
2025-10-31T05:25:16.8953045Z patching file drivers/mfd/stm32-timers.c
2025-10-31T05:25:16.8954041Z patching file drivers/mfd/stmfx.c
2025-10-31T05:25:16.8955265Z patching file drivers/mfd/stmpe-i2c.c
2025-10-31T05:25:16.8956006Z patching file drivers/mfd/stmpe-spi.c
2025-10-31T05:25:16.8957318Z patching file drivers/mfd/stmpe.c
2025-10-31T05:25:16.8958856Z patching file drivers/mfd/syscon.c
2025-10-31T05:25:16.8959851Z patching file drivers/mfd/t7l66xb.c
2025-10-31T05:25:16.8961137Z patching file drivers/mfd/tc3589x.c
2025-10-31T05:25:16.8962422Z patching file drivers/mfd/tps65010.c
2025-10-31T05:25:16.8963969Z patching file drivers/mfd/tqmx86.c
2025-10-31T05:25:16.8965353Z patching file drivers/mfd/vexpress-sysreg.c
2025-10-31T05:25:16.8966148Z patching file drivers/mfd/wm831x-auxadc.c
2025-10-31T05:25:16.8967145Z patching file drivers/mfd/wm8994-irq.c
2025-10-31T05:25:16.8968481Z patching file drivers/misc/apds990x.c
2025-10-31T05:25:16.8969982Z patching file drivers/misc/atmel-ssc.c
2025-10-31T05:25:16.8970836Z patching file drivers/misc/cardreader/alcor_pci.c
2025-10-31T05:25:16.8972299Z patching file drivers/misc/cardreader/rts5227.c
2025-10-31T05:25:16.8973736Z patching file drivers/misc/cardreader/rtsx_pcr.c
2025-10-31T05:25:16.8975329Z patching file drivers/misc/cardreader/rtsx_usb.c
2025-10-31T05:25:16.8976671Z patching file drivers/misc/cb710/sgbuf2.c
2025-10-31T05:25:16.8977625Z patching file drivers/misc/cxl/guest.c
2025-10-31T05:25:16.8979156Z patching file drivers/misc/cxl/irq.c
2025-10-31T05:25:16.8980626Z patching file drivers/misc/cxl/pci.c
2025-10-31T05:25:16.8982641Z patching file drivers/misc/eeprom/Kconfig
2025-10-31T05:25:16.8983577Z patching file drivers/misc/eeprom/at24.c
2025-10-31T05:25:16.8985087Z patching file drivers/misc/eeprom/digsy_mtc_eeprom.c
2025-10-31T05:25:16.8985633Z patching file drivers/misc/eeprom/ee1004.c
2025-10-31T05:25:16.8986622Z patching file drivers/misc/eeprom/eeprom_93cx6.c
2025-10-31T05:25:16.8987644Z patching file drivers/misc/eeprom/eeprom_93xx46.c
2025-10-31T05:25:16.8989153Z patching file drivers/misc/eeprom/idt_89hpesx.c
2025-10-31T05:25:16.8991042Z patching file drivers/misc/fastrpc.c
2025-10-31T05:25:16.8993715Z patching file drivers/misc/genwqe/card_ddcb.c
2025-10-31T05:25:16.8995559Z patching file drivers/misc/habanalabs/common/debugfs.c
2025-10-31T05:25:16.8997233Z patching file drivers/misc/habanalabs/common/device.c
2025-10-31T05:25:16.8998844Z patching file drivers/misc/habanalabs/common/firmware_if.c
2025-10-31T05:25:16.8999972Z patching file drivers/misc/habanalabs/common/habanalabs_drv.c
2025-10-31T05:25:16.9001100Z patching file drivers/misc/habanalabs/common/habanalabs_ioctl.c
2025-10-31T05:25:16.9002245Z patching file drivers/misc/habanalabs/common/pci.c
2025-10-31T05:25:16.9005346Z patching file drivers/misc/habanalabs/gaudi/gaudi.c
2025-10-31T05:25:16.9009046Z patching file drivers/misc/habanalabs/gaudi/gaudi_coresight.c
2025-10-31T05:25:16.9013285Z patching file drivers/misc/habanalabs/gaudi/gaudi_security.c
2025-10-31T05:25:16.9021685Z patching file drivers/misc/habanalabs/goya/goya.c
2025-10-31T05:25:16.9024863Z patching file drivers/misc/ibmasm/module.c
2025-10-31T05:25:16.9025775Z patching file drivers/misc/ics932s401.c
2025-10-31T05:25:16.9027105Z patching file drivers/misc/kgdbts.c
2025-10-31T05:25:16.9028564Z patching file drivers/misc/lattice-ecp3-config.c
2025-10-31T05:25:16.9029900Z patching file drivers/misc/lis3lv02d/lis3lv02d.c
2025-10-31T05:25:16.9031285Z patching file drivers/misc/lis3lv02d/lis3lv02d.h
2025-10-31T05:25:16.9032145Z patching file drivers/misc/lkdtm/Makefile
2025-10-31T05:25:16.9033050Z patching file drivers/misc/lkdtm/bugs.c
2025-10-31T05:25:16.9034089Z patching file drivers/misc/lkdtm/core.c
2025-10-31T05:25:16.9035140Z patching file drivers/misc/lkdtm/rodata.c
2025-10-31T05:25:16.9035861Z patching file drivers/misc/lkdtm/usercopy.c
2025-10-31T05:25:16.9037168Z patching file drivers/misc/mei/bus-fixup.c
2025-10-31T05:25:16.9038626Z patching file drivers/misc/mei/client.c
2025-10-31T05:25:16.9040508Z patching file drivers/misc/mei/hbm.c
2025-10-31T05:25:16.9041894Z patching file drivers/misc/mei/hw-me-regs.h
2025-10-31T05:25:16.9043029Z patching file drivers/misc/mei/interrupt.c
2025-10-31T05:25:16.9044707Z patching file drivers/misc/mei/main.c
2025-10-31T05:25:16.9046070Z patching file drivers/misc/mei/pci-me.c
2025-10-31T05:25:16.9047441Z patching file drivers/misc/ocxl/config.c
2025-10-31T05:25:16.9048800Z patching file drivers/misc/ocxl/file.c
2025-10-31T05:25:16.9050192Z patching file drivers/misc/pci_endpoint_test.c
2025-10-31T05:25:16.9051817Z patching file drivers/misc/pvpanic.c
2025-10-31T05:25:16.9052953Z patching file drivers/misc/sgi-gru/grufault.c
2025-10-31T05:25:16.9054558Z patching file drivers/misc/sgi-gru/grukservices.c
2025-10-31T05:25:16.9056047Z patching file drivers/misc/sgi-gru/grumain.c
2025-10-31T05:25:16.9057475Z patching file drivers/misc/sgi-gru/grutables.h
2025-10-31T05:25:16.9058492Z patching file drivers/misc/sgi-gru/grutlbpurge.c
2025-10-31T05:25:16.9059478Z patching file drivers/misc/sram.c
2025-10-31T05:25:16.9060803Z patching file drivers/misc/ti-st/st_core.c
2025-10-31T05:25:16.9062297Z patching file drivers/misc/tifm_7xx1.c
2025-10-31T05:25:16.9063268Z patching file drivers/misc/uacce/uacce.c
2025-10-31T05:25:16.9065230Z patching file drivers/misc/vmw_vmci/vmci_context.c
2025-10-31T05:25:16.9066610Z patching file drivers/misc/vmw_vmci/vmci_datagram.c
2025-10-31T05:25:16.9067618Z patching file drivers/misc/vmw_vmci/vmci_doorbell.c
2025-10-31T05:25:16.9068610Z patching file drivers/misc/vmw_vmci/vmci_event.c
2025-10-31T05:25:16.9069636Z patching file drivers/misc/vmw_vmci/vmci_guest.c
2025-10-31T05:25:16.9071124Z patching file drivers/misc/vmw_vmci/vmci_host.c
2025-10-31T05:25:16.9073335Z patching file drivers/misc/vmw_vmci/vmci_queue_pair.c
2025-10-31T05:25:16.9075650Z patching file drivers/misc/vmw_vmci/vmci_resource.c
2025-10-31T05:25:16.9077406Z patching file drivers/mmc/core/block.c
2025-10-31T05:25:16.9080806Z patching file drivers/mmc/core/bus.c
2025-10-31T05:25:16.9081704Z patching file drivers/mmc/core/card.h
2025-10-31T05:25:16.9083402Z patching file drivers/mmc/core/core.c
2025-10-31T05:25:16.9085561Z patching file drivers/mmc/core/core.h
2025-10-31T05:25:16.9086632Z patching file drivers/mmc/core/host.c
2025-10-31T05:25:16.9088631Z patching file drivers/mmc/core/mmc.c
2025-10-31T05:25:16.9091117Z patching file drivers/mmc/core/mmc_ops.c
2025-10-31T05:25:16.9092525Z patching file drivers/mmc/core/mmc_ops.h
2025-10-31T05:25:16.9093988Z patching file drivers/mmc/core/mmc_test.c
2025-10-31T05:25:16.9096133Z patching file drivers/mmc/core/queue.c
2025-10-31T05:25:16.9097003Z patching file drivers/mmc/core/quirks.h
2025-10-31T05:25:16.9097960Z patching file drivers/mmc/core/regulator.c
2025-10-31T05:25:16.9099529Z patching file drivers/mmc/core/sd.c
2025-10-31T05:25:16.9101240Z patching file drivers/mmc/core/sdio.c
2025-10-31T05:25:16.9102966Z patching file drivers/mmc/core/sdio_bus.c
2025-10-31T05:25:16.9104056Z patching file drivers/mmc/core/sdio_cis.c
2025-10-31T05:25:16.9105087Z patching file drivers/mmc/core/slot-gpio.c
2025-10-31T05:25:16.9106499Z patching file drivers/mmc/host/Kconfig
2025-10-31T05:25:16.9108222Z patching file drivers/mmc/host/alcor.c
2025-10-31T05:25:16.9110222Z patching file drivers/mmc/host/atmel-mci.c
2025-10-31T05:25:16.9112661Z patching file drivers/mmc/host/au1xmmc.c
2025-10-31T05:25:16.9114339Z patching file drivers/mmc/host/bcm2835.c
2025-10-31T05:25:16.9115883Z patching file drivers/mmc/host/cavium-octeon.c
2025-10-31T05:25:16.9116826Z patching file drivers/mmc/host/cavium-thunderx.c
2025-10-31T05:25:16.9118072Z patching file drivers/mmc/host/cqhci.c
2025-10-31T05:25:16.9119994Z patching file drivers/mmc/host/davinci_mmc.c
2025-10-31T05:25:16.9121715Z patching file drivers/mmc/host/dw_mmc-exynos.c
2025-10-31T05:25:16.9123904Z patching file drivers/mmc/host/dw_mmc.c
2025-10-31T05:25:16.9126571Z patching file drivers/mmc/host/jz4740_mmc.c
2025-10-31T05:25:16.9128268Z patching file drivers/mmc/host/meson-gx-mmc.c
2025-10-31T05:25:16.9130550Z patching file drivers/mmc/host/meson-mx-sdhc-mmc.c
2025-10-31T05:25:16.9132273Z patching file drivers/mmc/host/meson-mx-sdio.c
2025-10-31T05:25:16.9133641Z patching file drivers/mmc/host/mmc_hsq.c
2025-10-31T05:25:16.9134950Z patching file drivers/mmc/host/mmc_spi.c
2025-10-31T05:25:16.9137947Z patching file drivers/mmc/host/mmci.c
2025-10-31T05:25:16.9140033Z patching file drivers/mmc/host/mmci_stm32_sdmmc.c
2025-10-31T05:25:16.9141808Z patching file drivers/mmc/host/moxart-mmc.c
2025-10-31T05:25:16.9144153Z patching file drivers/mmc/host/mtk-sd.c
2025-10-31T05:25:16.9146878Z patching file drivers/mmc/host/mvsdio.c
2025-10-31T05:25:16.9148386Z patching file drivers/mmc/host/mxcmmc.c
2025-10-31T05:25:16.9149871Z patching file drivers/mmc/host/mxs-mmc.c
2025-10-31T05:25:16.9151420Z patching file drivers/mmc/host/omap.c
2025-10-31T05:25:16.9153547Z patching file drivers/mmc/host/omap_hsmmc.c
2025-10-31T05:25:16.9155499Z patching file drivers/mmc/host/owl-mmc.c
2025-10-31T05:25:16.9156877Z patching file drivers/mmc/host/pxamci.c
2025-10-31T05:25:16.9158437Z patching file drivers/mmc/host/renesas_sdhi_core.c
2025-10-31T05:25:16.9160343Z patching file drivers/mmc/host/renesas_sdhi_internal_dmac.c
2025-10-31T05:25:16.9161679Z patching file drivers/mmc/host/rtsx_pci_sdmmc.c
2025-10-31T05:25:16.9163956Z patching file drivers/mmc/host/rtsx_usb_sdmmc.c
2025-10-31T05:25:16.9165649Z patching file drivers/mmc/host/sdhci-acpi.c
2025-10-31T05:25:16.9167332Z patching file drivers/mmc/host/sdhci-brcmstb.c
2025-10-31T05:25:16.9168867Z patching file drivers/mmc/host/sdhci-cqhci.h
2025-10-31T05:25:16.9170644Z patching file drivers/mmc/host/sdhci-esdhc-imx.c
2025-10-31T05:25:16.9173412Z patching file drivers/mmc/host/sdhci-iproc.c
2025-10-31T05:25:16.9175249Z patching file drivers/mmc/host/sdhci-msm.c
2025-10-31T05:25:16.9178234Z patching file drivers/mmc/host/sdhci-of-arasan.c
2025-10-31T05:25:16.9180071Z patching file drivers/mmc/host/sdhci-of-aspeed.c
2025-10-31T05:25:16.9181024Z patching file drivers/mmc/host/sdhci-of-at91.c
2025-10-31T05:25:16.9182517Z patching file drivers/mmc/host/sdhci-of-dwcmshc.c
2025-10-31T05:25:16.9184005Z patching file drivers/mmc/host/sdhci-of-esdhc.c
2025-10-31T05:25:16.9185899Z patching file drivers/mmc/host/sdhci-omap.c
2025-10-31T05:25:16.9188797Z patching file drivers/mmc/host/sdhci-pci-core.c
2025-10-31T05:25:16.9191455Z patching file drivers/mmc/host/sdhci-pci-gli.c
2025-10-31T05:25:16.9193132Z patching file drivers/mmc/host/sdhci-pci-o2micro.c
2025-10-31T05:25:16.9194476Z patching file drivers/mmc/host/sdhci-pci.h
2025-10-31T05:25:16.9195297Z patching file drivers/mmc/host/sdhci-pltfm.h
2025-10-31T05:25:16.9196246Z patching file drivers/mmc/host/sdhci-pxav3.c
2025-10-31T05:25:16.9197608Z patching file drivers/mmc/host/sdhci-sprd.c
2025-10-31T05:25:16.9199671Z patching file drivers/mmc/host/sdhci-tegra.c
2025-10-31T05:25:16.9201772Z patching file drivers/mmc/host/sdhci-xenon-phy.c
2025-10-31T05:25:16.9203492Z patching file drivers/mmc/host/sdhci-xenon.c
2025-10-31T05:25:16.9205731Z patching file drivers/mmc/host/sdhci.c
2025-10-31T05:25:16.9209373Z patching file drivers/mmc/host/sdhci.h
2025-10-31T05:25:16.9210916Z patching file drivers/mmc/host/sdhci_am654.c
2025-10-31T05:25:16.9213319Z patching file drivers/mmc/host/sdhci_f_sdh30.c
2025-10-31T05:25:16.9214869Z patching file drivers/mmc/host/sh_mmcif.c
2025-10-31T05:25:16.9216697Z patching file drivers/mmc/host/sunxi-mmc.c
2025-10-31T05:25:16.9218334Z patching file drivers/mmc/host/tmio_mmc.h
2025-10-31T05:25:16.9219653Z patching file drivers/mmc/host/tmio_mmc_core.c
2025-10-31T05:25:16.9221230Z patching file drivers/mmc/host/toshsd.c
2025-10-31T05:25:16.9222706Z patching file drivers/mmc/host/uniphier-sd.c
2025-10-31T05:25:16.9224331Z patching file drivers/mmc/host/usdhi6rol0.c
2025-10-31T05:25:16.9226331Z patching file drivers/mmc/host/via-sdmmc.c
2025-10-31T05:25:16.9228248Z patching file drivers/mmc/host/vub300.c
2025-10-31T05:25:16.9230868Z patching file drivers/mmc/host/wbsd.c
2025-10-31T05:25:16.9232606Z patching file drivers/mmc/host/wmt-sdmmc.c
2025-10-31T05:25:16.9234232Z patching file drivers/most/core.c
2025-10-31T05:25:16.9236015Z patching file drivers/most/most_usb.c
2025-10-31T05:25:16.9237372Z patching file drivers/mtd/chips/Kconfig
2025-10-31T05:25:16.9238924Z patching file drivers/mtd/chips/cfi_cmdset_0001.c
2025-10-31T05:25:16.9241767Z patching file drivers/mtd/chips/cfi_cmdset_0002.c
2025-10-31T05:25:16.9245295Z patching file drivers/mtd/devices/docg3.c
2025-10-31T05:25:16.9246986Z patching file drivers/mtd/devices/powernv_flash.c
2025-10-31T05:25:16.9253827Z patching file drivers/mtd/devices/slram.c
2025-10-31T05:25:16.9254810Z patching file drivers/mtd/devices/st_spi_fsm.c
2025-10-31T05:25:16.9255659Z patching file drivers/mtd/ftl.c
2025-10-31T05:25:16.9256381Z patching file drivers/mtd/hyperbus/hbmc-am654.c
2025-10-31T05:25:16.9257272Z patching file drivers/mtd/hyperbus/rpc-if.c
2025-10-31T05:25:16.9258099Z patching file drivers/mtd/inftlcore.c
2025-10-31T05:25:16.9258824Z patching file drivers/mtd/lpddr/lpddr2_nvm.c
2025-10-31T05:25:16.9259632Z patching file drivers/mtd/maps/Kconfig
2025-10-31T05:25:16.9260483Z patching file drivers/mtd/maps/physmap-bt1-rom.c
2025-10-31T05:25:16.9261388Z patching file drivers/mtd/maps/physmap-core.c
2025-10-31T05:25:16.9262419Z patching file drivers/mtd/maps/physmap-versatile.c
2025-10-31T05:25:16.9263172Z patching file drivers/mtd/maps/pxa2xx-flash.c
2025-10-31T05:25:16.9263922Z patching file drivers/mtd/mtd_blkdevs.c
2025-10-31T05:25:16.9264559Z patching file drivers/mtd/mtdblock.c
2025-10-31T05:25:16.9265211Z patching file drivers/mtd/mtdchar.c
2025-10-31T05:25:16.9265894Z patching file drivers/mtd/mtdconcat.c
2025-10-31T05:25:16.9266969Z patching file drivers/mtd/mtdcore.c
2025-10-31T05:25:16.9268959Z patching file drivers/mtd/mtdpart.c
2025-10-31T05:25:16.9270094Z patching file drivers/mtd/mtdpstore.c
2025-10-31T05:25:16.9271109Z patching file drivers/mtd/nand/bbt.c
2025-10-31T05:25:16.9271918Z patching file drivers/mtd/nand/onenand/generic.c
2025-10-31T05:25:16.9274021Z patching file drivers/mtd/nand/onenand/onenand_base.c
2025-10-31T05:25:16.9276569Z patching file drivers/mtd/nand/raw/ams-delta.c
2025-10-31T05:25:16.9277853Z patching file drivers/mtd/nand/raw/arasan-nand-controller.c
2025-10-31T05:25:16.9280347Z patching file drivers/mtd/nand/raw/atmel/nand-controller.c
2025-10-31T05:25:16.9282723Z patching file drivers/mtd/nand/raw/atmel/pmecc.c
2025-10-31T05:25:16.9283915Z patching file drivers/mtd/nand/raw/atmel/pmecc.h
2025-10-31T05:25:16.9284791Z patching file drivers/mtd/nand/raw/au1550nd.c
2025-10-31T05:25:16.9286652Z patching file drivers/mtd/nand/raw/brcmnand/brcmnand.c
2025-10-31T05:25:16.9289424Z patching file drivers/mtd/nand/raw/brcmnand/brcmnand.h
2025-10-31T05:25:16.9291005Z patching file drivers/mtd/nand/raw/cadence-nand-controller.c
2025-10-31T05:25:16.9293895Z patching file drivers/mtd/nand/raw/cafe_nand.c
2025-10-31T05:25:16.9294986Z patching file drivers/mtd/nand/raw/davinci_nand.c
2025-10-31T05:25:16.9296213Z patching file drivers/mtd/nand/raw/denali_pci.c
2025-10-31T05:25:16.9297485Z patching file drivers/mtd/nand/raw/diskonchip.c
2025-10-31T05:25:16.9299254Z patching file drivers/mtd/nand/raw/fsl_elbc_nand.c
2025-10-31T05:25:16.9300702Z patching file drivers/mtd/nand/raw/fsl_ifc_nand.c
2025-10-31T05:25:16.9302063Z patching file drivers/mtd/nand/raw/fsl_upm.c
2025-10-31T05:25:16.9303368Z patching file drivers/mtd/nand/raw/fsmc_nand.c
2025-10-31T05:25:16.9305154Z patching file drivers/mtd/nand/raw/gpio.c
2025-10-31T05:25:16.9306912Z patching file drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c
2025-10-31T05:25:16.9309354Z patching file drivers/mtd/nand/raw/ingenic/ingenic_ecc.h
2025-10-31T05:25:16.9310317Z patching file drivers/mtd/nand/raw/lpc32xx_mlc.c
2025-10-31T05:25:16.9312559Z patching file drivers/mtd/nand/raw/marvell_nand.c
2025-10-31T05:25:16.9315300Z patching file drivers/mtd/nand/raw/meson_nand.c
2025-10-31T05:25:16.9317239Z patching file drivers/mtd/nand/raw/mpc5121_nfc.c
2025-10-31T05:25:16.9318468Z patching file drivers/mtd/nand/raw/mtk_ecc.c
2025-10-31T05:25:16.9320117Z patching file drivers/mtd/nand/raw/mtk_nand.c
2025-10-31T05:25:16.9323207Z patching file drivers/mtd/nand/raw/nand_base.c
2025-10-31T05:25:16.9326949Z patching file drivers/mtd/nand/raw/nand_hynix.c
2025-10-31T05:25:16.9328019Z patching file drivers/mtd/nand/raw/nand_timings.c
2025-10-31T05:25:16.9330093Z patching file drivers/mtd/nand/raw/nandsim.c
2025-10-31T05:25:16.9332169Z patching file drivers/mtd/nand/raw/omap_elm.c
2025-10-31T05:25:16.9333384Z patching file drivers/mtd/nand/raw/orion_nand.c
2025-10-31T05:25:16.9334450Z patching file drivers/mtd/nand/raw/pasemi_nand.c
2025-10-31T05:25:16.9335535Z patching file drivers/mtd/nand/raw/plat_nand.c
2025-10-31T05:25:16.9337269Z patching file drivers/mtd/nand/raw/qcom_nandc.c
2025-10-31T05:25:16.9339619Z patching file drivers/mtd/nand/raw/r852.c
2025-10-31T05:25:16.9340986Z patching file drivers/mtd/nand/raw/sh_flctl.c
2025-10-31T05:25:16.9342594Z patching file drivers/mtd/nand/raw/socrates_nand.c
2025-10-31T05:25:16.9344094Z patching file drivers/mtd/nand/raw/stm32_fmc2_nand.c
2025-10-31T05:25:16.9346603Z patching file drivers/mtd/nand/raw/sunxi_nand.c
2025-10-31T05:25:16.9348431Z patching file drivers/mtd/nand/raw/xway_nand.c
2025-10-31T05:25:16.9349508Z patching file drivers/mtd/nand/spi/core.c
2025-10-31T05:25:16.9350811Z patching file drivers/mtd/nand/spi/gigadevice.c
2025-10-31T05:25:16.9352259Z patching file drivers/mtd/nand/spi/macronix.c
2025-10-31T05:25:16.9353671Z patching file drivers/mtd/nand/spi/micron.c
2025-10-31T05:25:16.9354496Z patching file drivers/mtd/nand/spi/toshiba.c
2025-10-31T05:25:16.9355510Z patching file drivers/mtd/parsers/afs.c
2025-10-31T05:25:16.9356500Z patching file drivers/mtd/parsers/bcm47xxpart.c
2025-10-31T05:25:16.9357406Z patching file drivers/mtd/parsers/cmdlinepart.c
2025-10-31T05:25:16.9358513Z patching file drivers/mtd/parsers/parser_imagetag.c
2025-10-31T05:25:16.9359448Z patching file drivers/mtd/parsers/redboot.c
2025-10-31T05:25:16.9360667Z patching file drivers/mtd/sm_ftl.c
2025-10-31T05:25:16.9362086Z patching file drivers/mtd/spi-nor/atmel.c
2025-10-31T05:25:16.9363381Z patching file drivers/mtd/spi-nor/controllers/hisi-sfc.c
2025-10-31T05:25:16.9364428Z patching file drivers/mtd/spi-nor/controllers/intel-spi-pci.c
2025-10-31T05:25:16.9365381Z patching file drivers/mtd/spi-nor/controllers/intel-spi.c
2025-10-31T05:25:16.9367678Z patching file drivers/mtd/spi-nor/core.c
2025-10-31T05:25:16.9370510Z patching file drivers/mtd/spi-nor/core.h
2025-10-31T05:25:16.9371372Z patching file drivers/mtd/spi-nor/macronix.c
2025-10-31T05:25:16.9372423Z patching file drivers/mtd/spi-nor/sfdp.c
2025-10-31T05:25:16.9373836Z patching file drivers/mtd/spi-nor/sst.c
2025-10-31T05:25:16.9374633Z patching file drivers/mtd/tests/Makefile
2025-10-31T05:25:16.9375444Z patching file drivers/mtd/tests/mtd_test.c
2025-10-31T05:25:16.9376974Z patching file drivers/mtd/ubi/attach.c
2025-10-31T05:25:16.9378895Z patching file drivers/mtd/ubi/build.c
2025-10-31T05:25:16.9380892Z patching file drivers/mtd/ubi/eba.c
2025-10-31T05:25:16.9382647Z patching file drivers/mtd/ubi/fastmap-wl.c
2025-10-31T05:25:16.9384108Z patching file drivers/mtd/ubi/fastmap.c
2025-10-31T05:25:16.9386065Z patching file drivers/mtd/ubi/ubi.h
2025-10-31T05:25:16.9387501Z patching file drivers/mtd/ubi/vmt.c
2025-10-31T05:25:16.9389179Z patching file drivers/mtd/ubi/vtbl.c
2025-10-31T05:25:16.9390620Z patching file drivers/mtd/ubi/wl.c
2025-10-31T05:25:16.9393207Z patching file drivers/net/Kconfig
2025-10-31T05:25:16.9394189Z patching file drivers/net/Makefile
2025-10-31T05:25:16.9395220Z patching file drivers/net/appletalk/cops.c
2025-10-31T05:25:16.9396533Z patching file drivers/net/arcnet/arc-rimi.c
2025-10-31T05:25:16.9397589Z patching file drivers/net/arcnet/arcdevice.h
2025-10-31T05:25:16.9398831Z patching file drivers/net/arcnet/arcnet.c
2025-10-31T05:25:16.9400459Z patching file drivers/net/arcnet/com20020-isa.c
2025-10-31T05:25:16.9401340Z patching file drivers/net/arcnet/com20020-pci.c
2025-10-31T05:25:16.9402950Z patching file drivers/net/arcnet/com20020_cs.c
2025-10-31T05:25:16.9403913Z patching file drivers/net/arcnet/com90io.c
2025-10-31T05:25:16.9404935Z patching file drivers/net/arcnet/com90xx.c
2025-10-31T05:25:16.9406124Z patching file drivers/net/bareudp.c
2025-10-31T05:25:16.9408677Z patching file drivers/net/bonding/bond_3ad.c
2025-10-31T05:25:16.9411518Z patching file drivers/net/bonding/bond_alb.c
2025-10-31T05:25:16.9413523Z patching file drivers/net/bonding/bond_debugfs.c
2025-10-31T05:25:16.9415617Z patching file drivers/net/bonding/bond_main.c
2025-10-31T05:25:16.9420470Z patching file drivers/net/bonding/bond_options.c
2025-10-31T05:25:16.9421865Z patching file drivers/net/bonding/bond_sysfs_slave.c
2025-10-31T05:25:16.9422942Z patching file drivers/net/caif/caif_serial.c
2025-10-31T05:25:16.9424088Z patching file drivers/net/caif/caif_virtio.c
2025-10-31T05:25:16.9425281Z patching file drivers/net/can/Kconfig
2025-10-31T05:25:16.9426067Z patching file drivers/net/can/Makefile
2025-10-31T05:25:16.9427170Z patching file drivers/net/can/c_can/c_can.c
2025-10-31T05:25:16.9428802Z patching file drivers/net/can/c_can/c_can_pci.c
2025-10-31T05:25:16.9429722Z patching file drivers/net/can/c_can/c_can_platform.c
2025-10-31T05:25:16.9430890Z patching file drivers/net/can/cc770/cc770_isa.c
2025-10-31T05:25:16.9432215Z patching file drivers/net/can/dev.c
2025-10-31T05:25:16.9435746Z patching file drivers/net/can/dev/Makefile
2025-10-31T05:25:16.9436684Z patching file drivers/net/can/dev/dev.c
2025-10-31T05:25:16.9439965Z patching file drivers/net/can/dev/rx-offload.c
2025-10-31T05:25:16.9442312Z patching file drivers/net/can/flexcan.c
2025-10-31T05:25:16.9445663Z patching file drivers/net/can/grcan.c
2025-10-31T05:25:16.9448027Z patching file drivers/net/can/kvaser_pciefd.c
2025-10-31T05:25:16.9450677Z patching file drivers/net/can/m_can/m_can.c
2025-10-31T05:25:16.9452736Z patching file drivers/net/can/m_can/m_can.h
2025-10-31T05:25:16.9453592Z patching file drivers/net/can/m_can/m_can_platform.c
2025-10-31T05:25:16.9454424Z patching file drivers/net/can/m_can/tcan4x5x.c
2025-10-31T05:25:16.9455714Z patching file drivers/net/can/mscan/mpc5xxx_can.c
2025-10-31T05:25:16.9456995Z patching file drivers/net/can/pch_can.c
2025-10-31T05:25:16.9458642Z patching file drivers/net/can/peak_canfd/peak_canfd.c
2025-10-31T05:25:16.9459857Z patching file drivers/net/can/rcar/rcar_can.c
2025-10-31T05:25:16.9461746Z patching file drivers/net/can/rcar/rcar_canfd.c
2025-10-31T05:25:16.9463667Z patching file drivers/net/can/rx-offload.c
2025-10-31T05:25:16.9465072Z patching file drivers/net/can/sja1000/ems_pcmcia.c
2025-10-31T05:25:16.9466090Z patching file drivers/net/can/sja1000/peak_pci.c
2025-10-31T05:25:16.9467267Z patching file drivers/net/can/sja1000/sja1000.c
2025-10-31T05:25:16.9468353Z patching file drivers/net/can/sja1000/sja1000_isa.c
2025-10-31T05:25:16.9469572Z patching file drivers/net/can/slcan.c
2025-10-31T05:25:16.9470592Z patching file drivers/net/can/softing/softing_cs.c
2025-10-31T05:25:16.9471522Z patching file drivers/net/can/softing/softing_fw.c
2025-10-31T05:25:16.9473062Z patching file drivers/net/can/spi/hi311x.c
2025-10-31T05:25:16.9474866Z patching file drivers/net/can/spi/mcp251x.c
2025-10-31T05:25:16.9477600Z patching file drivers/net/can/spi/mcp251xfd/mcp251xfd-core.c
2025-10-31T05:25:16.9479931Z patching file drivers/net/can/spi/mcp251xfd/mcp251xfd.h
2025-10-31T05:25:16.9481004Z patching file drivers/net/can/sun4i_can.c
2025-10-31T05:25:16.9482507Z patching file drivers/net/can/usb/ems_usb.c
2025-10-31T05:25:16.9484419Z patching file drivers/net/can/usb/esd_usb2.c
2025-10-31T05:25:16.9486149Z patching file drivers/net/can/usb/gs_usb.c
2025-10-31T05:25:16.9487702Z patching file drivers/net/can/usb/kvaser_usb/kvaser_usb.h
2025-10-31T05:25:16.9489048Z patching file drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c
2025-10-31T05:25:16.9492342Z patching file drivers/net/can/usb/kvaser_usb/kvaser_usb_hydra.c
2025-10-31T05:25:16.9495588Z patching file drivers/net/can/usb/kvaser_usb/kvaser_usb_leaf.c
2025-10-31T05:25:16.9499252Z patching file drivers/net/can/usb/mcba_usb.c
2025-10-31T05:25:16.9501121Z patching file drivers/net/can/usb/peak_usb/pcan_usb.c
2025-10-31T05:25:16.9502584Z patching file drivers/net/can/usb/peak_usb/pcan_usb_core.c
2025-10-31T05:25:16.9504079Z patching file drivers/net/can/usb/peak_usb/pcan_usb_fd.c
2025-10-31T05:25:16.9505555Z patching file drivers/net/can/usb/usb_8dev.c
2025-10-31T05:25:16.9506895Z patching file drivers/net/can/vcan.c
2025-10-31T05:25:16.9507688Z patching file drivers/net/can/vxcan.c
2025-10-31T05:25:16.9509378Z patching file drivers/net/can/xilinx_can.c
2025-10-31T05:25:16.9511118Z patching file drivers/net/dsa/Kconfig
2025-10-31T05:25:16.9512512Z patching file drivers/net/dsa/b53/b53_common.c
2025-10-31T05:25:16.9515796Z patching file drivers/net/dsa/b53/b53_mmap.c
2025-10-31T05:25:16.9516664Z patching file drivers/net/dsa/b53/b53_priv.h
2025-10-31T05:25:16.9517650Z patching file drivers/net/dsa/b53/b53_regs.h
2025-10-31T05:25:16.9519056Z patching file drivers/net/dsa/bcm_sf2.c
2025-10-31T05:25:16.9521148Z patching file drivers/net/dsa/bcm_sf2_cfp.c
2025-10-31T05:25:16.9522555Z patching file drivers/net/dsa/dsa_loop.c
2025-10-31T05:25:16.9523975Z patching file drivers/net/dsa/lan9303-core.c
2025-10-31T05:25:16.9525987Z patching file drivers/net/dsa/lan9303_mdio.c
2025-10-31T05:25:16.9527195Z patching file drivers/net/dsa/lantiq_gswip.c
2025-10-31T05:25:16.9530205Z patching file drivers/net/dsa/microchip/ksz8795.c
2025-10-31T05:25:16.9531727Z patching file drivers/net/dsa/microchip/ksz8795_spi.c
2025-10-31T05:25:16.9533005Z patching file drivers/net/dsa/microchip/ksz9477.c
2025-10-31T05:25:16.9534545Z patching file drivers/net/dsa/microchip/ksz9477_spi.c
2025-10-31T05:25:16.9535470Z patching file drivers/net/dsa/microchip/ksz_common.c
2025-10-31T05:25:16.9536322Z patching file drivers/net/dsa/microchip/ksz_common.h
2025-10-31T05:25:16.9538086Z patching file drivers/net/dsa/mt7530.c
2025-10-31T05:25:16.9540473Z patching file drivers/net/dsa/mv88e6060.c
2025-10-31T05:25:16.9541308Z patching file drivers/net/dsa/mv88e6xxx/Makefile
2025-10-31T05:25:16.9543566Z patching file drivers/net/dsa/mv88e6xxx/chip.c
2025-10-31T05:25:16.9548215Z patching file drivers/net/dsa/mv88e6xxx/chip.h
2025-10-31T05:25:16.9549296Z patching file drivers/net/dsa/mv88e6xxx/global1.c
2025-10-31T05:25:16.9550377Z patching file drivers/net/dsa/mv88e6xxx/global1.h
2025-10-31T05:25:16.9551439Z patching file drivers/net/dsa/mv88e6xxx/global1_atu.c
2025-10-31T05:25:16.9552905Z patching file drivers/net/dsa/mv88e6xxx/global1_vtu.c
2025-10-31T05:25:16.9554124Z patching file drivers/net/dsa/mv88e6xxx/global2.c
2025-10-31T05:25:16.9555349Z patching file drivers/net/dsa/mv88e6xxx/global2.h
2025-10-31T05:25:16.9556351Z patching file drivers/net/dsa/mv88e6xxx/phy.c
2025-10-31T05:25:16.9557452Z patching file drivers/net/dsa/mv88e6xxx/port.c
2025-10-31T05:25:16.9559080Z patching file drivers/net/dsa/mv88e6xxx/serdes.c
2025-10-31T05:25:16.9560153Z patching file drivers/net/dsa/mv88e6xxx/serdes.h
2025-10-31T05:25:16.9561066Z patching file drivers/net/dsa/mv88e6xxx/trace.c
2025-10-31T05:25:16.9562071Z patching file drivers/net/dsa/mv88e6xxx/trace.h
2025-10-31T05:25:16.9563509Z patching file drivers/net/dsa/ocelot/felix.c
2025-10-31T05:25:16.9565048Z patching file drivers/net/dsa/ocelot/felix_vsc9959.c
2025-10-31T05:25:16.9566905Z patching file drivers/net/dsa/ocelot/seville_vsc9953.c
2025-10-31T05:25:16.9568344Z patching file drivers/net/dsa/qca/ar9331.c
2025-10-31T05:25:16.9569847Z patching file drivers/net/dsa/realtek-smi-core.c
2025-10-31T05:25:16.9571068Z patching file drivers/net/dsa/rtl8366rb.c
2025-10-31T05:25:16.9572783Z patching file drivers/net/dsa/sja1105/sja1105_devlink.c
2025-10-31T05:25:16.9573924Z patching file drivers/net/dsa/sja1105/sja1105_dynamic_config.c
2025-10-31T05:25:16.9576256Z patching file drivers/net/dsa/sja1105/sja1105_main.c
2025-10-31T05:25:16.9579946Z patching file drivers/net/dsa/vitesse-vsc73xx-core.c
2025-10-31T05:25:16.9581681Z patching file drivers/net/dummy.c
2025-10-31T05:25:16.9582925Z patching file drivers/net/ethernet/3com/3c589_cs.c
2025-10-31T05:25:16.9584285Z patching file drivers/net/ethernet/8390/mcf8390.c
2025-10-31T05:25:16.9585308Z patching file drivers/net/ethernet/Kconfig
2025-10-31T05:25:16.9586553Z patching file drivers/net/ethernet/aeroflex/greth.c
2025-10-31T05:25:16.9589199Z patching file drivers/net/ethernet/agere/et131x.c
2025-10-31T05:25:16.9592248Z patching file drivers/net/ethernet/allwinner/sun4i-emac.c
2025-10-31T05:25:16.9594103Z patching file drivers/net/ethernet/altera/altera_tse_main.c
2025-10-31T05:25:16.9596353Z patching file drivers/net/ethernet/amazon/ena/ena_com.c
2025-10-31T05:25:16.9598520Z patching file drivers/net/ethernet/amazon/ena/ena_eth_com.c
2025-10-31T05:25:16.9599536Z patching file drivers/net/ethernet/amazon/ena/ena_ethtool.c
2025-10-31T05:25:16.9601914Z patching file drivers/net/ethernet/amazon/ena/ena_netdev.c
2025-10-31T05:25:16.9605692Z patching file drivers/net/ethernet/amd/atarilance.c
2025-10-31T05:25:16.9607147Z patching file drivers/net/ethernet/amd/lance.c
2025-10-31T05:25:16.9608471Z patching file drivers/net/ethernet/amd/mvme147.c
2025-10-31T05:25:16.9609686Z patching file drivers/net/ethernet/amd/nmclan_cs.c
2025-10-31T05:25:16.9612127Z patching file drivers/net/ethernet/amd/pcnet32.c
2025-10-31T05:25:16.9614789Z patching file drivers/net/ethernet/amd/xgbe/xgbe-common.h
2025-10-31T05:25:16.9616628Z patching file drivers/net/ethernet/amd/xgbe/xgbe-desc.c
2025-10-31T05:25:16.9618561Z patching file drivers/net/ethernet/amd/xgbe/xgbe-dev.c
2025-10-31T05:25:16.9621743Z patching file drivers/net/ethernet/amd/xgbe/xgbe-drv.c
2025-10-31T05:25:16.9624289Z patching file drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
2025-10-31T05:25:16.9625381Z patching file drivers/net/ethernet/amd/xgbe/xgbe-i2c.c
2025-10-31T05:25:16.9626799Z patching file drivers/net/ethernet/amd/xgbe/xgbe-mdio.c
2025-10-31T05:25:16.9628831Z patching file drivers/net/ethernet/amd/xgbe/xgbe-pci.c
2025-10-31T05:25:16.9630673Z patching file drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c
2025-10-31T05:25:16.9633784Z patching file drivers/net/ethernet/amd/xgbe/xgbe.h
2025-10-31T05:25:16.9635283Z patching file drivers/net/ethernet/apm/xgene-v2/main.c
2025-10-31T05:25:16.9636906Z patching file drivers/net/ethernet/apm/xgene/xgene_enet_main.c
2025-10-31T05:25:16.9639002Z patching file drivers/net/ethernet/apple/bmac.c
2025-10-31T05:25:16.9640422Z patching file drivers/net/ethernet/apple/mace.c
2025-10-31T05:25:16.9641687Z patching file drivers/net/ethernet/aquantia/atlantic/aq_common.h
2025-10-31T05:25:16.9642905Z patching file drivers/net/ethernet/aquantia/atlantic/aq_ethtool.c
2025-10-31T05:25:16.9644308Z patching file drivers/net/ethernet/aquantia/atlantic/aq_hw.h
2025-10-31T05:25:16.9645634Z patching file drivers/net/ethernet/aquantia/atlantic/aq_macsec.c
2025-10-31T05:25:16.9647814Z patching file drivers/net/ethernet/aquantia/atlantic/aq_macsec.h
2025-10-31T05:25:16.9648824Z patching file drivers/net/ethernet/aquantia/atlantic/aq_main.c
2025-10-31T05:25:16.9649862Z patching file drivers/net/ethernet/aquantia/atlantic/aq_main.h
2025-10-31T05:25:16.9650749Z patching file drivers/net/ethernet/aquantia/atlantic/aq_nic.c
2025-10-31T05:25:16.9652537Z patching file drivers/net/ethernet/aquantia/atlantic/aq_nic.h
2025-10-31T05:25:16.9653551Z patching file drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c
2025-10-31T05:25:16.9654814Z patching file drivers/net/ethernet/aquantia/atlantic/aq_ring.c
2025-10-31T05:25:16.9656049Z patching file drivers/net/ethernet/aquantia/atlantic/aq_vec.c
2025-10-31T05:25:16.9657633Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c
2025-10-31T05:25:16.9665141Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c
2025-10-31T05:25:16.9666214Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c
2025-10-31T05:25:16.9667321Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c
2025-10-31T05:25:16.9668082Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.h
2025-10-31T05:25:16.9669284Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils.h
2025-10-31T05:25:16.9670234Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils_fw.c
2025-10-31T05:25:16.9671050Z patching file drivers/net/ethernet/aquantia/atlantic/macsec/macsec_api.c
2025-10-31T05:25:16.9672121Z patching file drivers/net/ethernet/arc/Kconfig
2025-10-31T05:25:16.9672653Z patching file drivers/net/ethernet/arc/emac_main.c
2025-10-31T05:25:16.9673327Z patching file drivers/net/ethernet/atheros/ag71xx.c
2025-10-31T05:25:16.9674187Z patching file drivers/net/ethernet/atheros/alx/ethtool.c
2025-10-31T05:25:16.9675306Z patching file drivers/net/ethernet/atheros/alx/main.c
2025-10-31T05:25:16.9677396Z patching file drivers/net/ethernet/atheros/atl1c/atl1c_main.c
2025-10-31T05:25:16.9680032Z patching file drivers/net/ethernet/atheros/atl1e/atl1e_main.c
2025-10-31T05:25:16.9682882Z patching file drivers/net/ethernet/atheros/atlx/atl1.c
2025-10-31T05:25:16.9685590Z patching file drivers/net/ethernet/broadcom/Makefile
2025-10-31T05:25:16.9686808Z patching file drivers/net/ethernet/broadcom/b44.c
2025-10-31T05:25:16.9689375Z patching file drivers/net/ethernet/broadcom/bcmsysport.c
2025-10-31T05:25:16.9691785Z patching file drivers/net/ethernet/broadcom/bcmsysport.h
2025-10-31T05:25:16.9692977Z patching file drivers/net/ethernet/broadcom/bgmac-bcma.c
2025-10-31T05:25:16.9693993Z patching file drivers/net/ethernet/broadcom/bgmac-platform.c
2025-10-31T05:25:16.9695149Z patching file drivers/net/ethernet/broadcom/bgmac.c
2025-10-31T05:25:16.9696885Z patching file drivers/net/ethernet/broadcom/bgmac.h
2025-10-31T05:25:16.9700004Z patching file drivers/net/ethernet/broadcom/bnx2.c
2025-10-31T05:25:16.9705017Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x.h
2025-10-31T05:25:16.9708218Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
2025-10-31T05:25:16.9711511Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.h
2025-10-31T05:25:16.9713058Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_fw_defs.h
2025-10-31T05:25:16.9715337Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_hsi.h
2025-10-31T05:25:16.9718803Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_init_ops.h
2025-10-31T05:25:16.9724781Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
2025-10-31T05:25:16.9733300Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c
2025-10-31T05:25:16.9738712Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt.c
2025-10-31T05:25:16.9747746Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt.h
2025-10-31T05:25:16.9749816Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.c
2025-10-31T05:25:16.9750932Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_devlink.c
2025-10-31T05:25:16.9753269Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c
2025-10-31T05:25:16.9756442Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c
2025-10-31T05:25:16.9757894Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c
2025-10-31T05:25:16.9759845Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c
2025-10-31T05:25:16.9760848Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c
2025-10-31T05:25:16.9763347Z patching file drivers/net/ethernet/broadcom/cnic.c
2025-10-31T05:25:16.9767443Z patching file drivers/net/ethernet/broadcom/genet/bcmgenet.c
2025-10-31T05:25:16.9771089Z patching file drivers/net/ethernet/broadcom/genet/bcmgenet.h
2025-10-31T05:25:16.9772420Z patching file drivers/net/ethernet/broadcom/genet/bcmgenet_wol.c
2025-10-31T05:25:16.9773541Z patching file drivers/net/ethernet/broadcom/genet/bcmmii.c
2025-10-31T05:25:16.9779558Z patching file drivers/net/ethernet/broadcom/tg3.c
2025-10-31T05:25:16.9788709Z patching file drivers/net/ethernet/broadcom/tg3.h
2025-10-31T05:25:16.9791333Z patching file drivers/net/ethernet/brocade/bna/bna_types.h
2025-10-31T05:25:16.9793505Z patching file drivers/net/ethernet/brocade/bna/bnad.c
2025-10-31T05:25:16.9796739Z patching file drivers/net/ethernet/brocade/bna/bnad_debugfs.c
2025-10-31T05:25:16.9797912Z patching file drivers/net/ethernet/cadence/macb.h
2025-10-31T05:25:16.9800539Z patching file drivers/net/ethernet/cadence/macb_main.c
2025-10-31T05:25:16.9804194Z patching file drivers/net/ethernet/cadence/macb_pci.c
2025-10-31T05:25:16.9805124Z patching file drivers/net/ethernet/cadence/macb_ptp.c
2025-10-31T05:25:16.9806555Z patching file drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.c
2025-10-31T05:25:16.9808028Z patching file drivers/net/ethernet/cavium/liquidio/cn23xx_pf_regs.h
2025-10-31T05:25:16.9809186Z patching file drivers/net/ethernet/cavium/liquidio/cn66xx_regs.h
2025-10-31T05:25:16.9811447Z patching file drivers/net/ethernet/cavium/liquidio/lio_main.c
2025-10-31T05:25:16.9815136Z patching file drivers/net/ethernet/cavium/liquidio/lio_vf_main.c
2025-10-31T05:25:16.9817219Z patching file drivers/net/ethernet/cavium/liquidio/lio_vf_rep.c
2025-10-31T05:25:16.9818401Z patching file drivers/net/ethernet/cavium/liquidio/request_manager.c
2025-10-31T05:25:16.9819818Z patching file drivers/net/ethernet/cavium/thunder/nic_main.c
2025-10-31T05:25:16.9821884Z patching file drivers/net/ethernet/cavium/thunder/nicvf_main.c
2025-10-31T05:25:16.9824348Z patching file drivers/net/ethernet/cavium/thunder/nicvf_queues.c
2025-10-31T05:25:16.9826265Z patching file drivers/net/ethernet/cavium/thunder/thunder_bgx.c
2025-10-31T05:25:16.9828240Z patching file drivers/net/ethernet/chelsio/cxgb/cxgb2.c
2025-10-31T05:25:16.9830479Z patching file drivers/net/ethernet/chelsio/cxgb3/cxgb3_main.c
2025-10-31T05:25:16.9833801Z patching file drivers/net/ethernet/chelsio/cxgb3/t3_hw.c
2025-10-31T05:25:16.9837111Z patching file drivers/net/ethernet/chelsio/cxgb4/cudbg_lib.c
2025-10-31T05:25:16.9840037Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4.h
2025-10-31T05:25:16.9843119Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_debugfs.c
2025-10-31T05:25:16.9846014Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c
2025-10-31T05:25:16.9848458Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c
2025-10-31T05:25:16.9852285Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2025-10-31T05:25:16.9856678Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.c
2025-10-31T05:25:16.9857987Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_mqprio.c
2025-10-31T05:25:16.9859216Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
2025-10-31T05:25:16.9860451Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.h
2025-10-31T05:25:16.9862959Z patching file drivers/net/ethernet/chelsio/cxgb4/sge.c
2025-10-31T05:25:16.9868610Z patching file drivers/net/ethernet/chelsio/cxgb4/t4_hw.c
2025-10-31T05:25:16.9874306Z patching file drivers/net/ethernet/chelsio/cxgb4/t4_hw.h
2025-10-31T05:25:16.9875545Z patching file drivers/net/ethernet/chelsio/cxgb4/t4_pci_id_tbl.h
2025-10-31T05:25:16.9876598Z patching file drivers/net/ethernet/chelsio/cxgb4/t4_tcb.h
2025-10-31T05:25:16.9877954Z patching file drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c
2025-10-31T05:25:16.9880932Z patching file drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.c
2025-10-31T05:25:16.9883778Z patching file drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.h
2025-10-31T05:25:16.9884935Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls.h
2025-10-31T05:25:16.9886043Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c
2025-10-31T05:25:16.9888552Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.h
2025-10-31T05:25:16.9889971Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_hw.c
2025-10-31T05:25:16.9891178Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_io.c
2025-10-31T05:25:16.9892971Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_main.c
2025-10-31T05:25:16.9894212Z patching file drivers/net/ethernet/chelsio/libcxgb/libcxgb_cm.c
2025-10-31T05:25:16.9895962Z patching file drivers/net/ethernet/cisco/enic/enic_main.c
2025-10-31T05:25:16.9898767Z patching file drivers/net/ethernet/cortina/gemini.c
2025-10-31T05:25:16.9901519Z patching file drivers/net/ethernet/cortina/gemini.h
2025-10-31T05:25:16.9903148Z patching file drivers/net/ethernet/davicom/dm9000.c
2025-10-31T05:25:16.9906311Z patching file drivers/net/ethernet/dec/tulip/de4x5.c
2025-10-31T05:25:16.9910065Z patching file drivers/net/ethernet/dec/tulip/tulip_core.c
2025-10-31T05:25:16.9912224Z patching file drivers/net/ethernet/dec/tulip/winbond-840.c
2025-10-31T05:25:16.9914218Z patching file drivers/net/ethernet/dlink/dl2k.c
2025-10-31T05:25:16.9916086Z patching file drivers/net/ethernet/dlink/dl2k.h
2025-10-31T05:25:16.9917195Z patching file drivers/net/ethernet/dnet.c
2025-10-31T05:25:16.9918416Z patching file drivers/net/ethernet/ec_bhf.c
2025-10-31T05:25:16.9919698Z patching file drivers/net/ethernet/emulex/benet/be.h
2025-10-31T05:25:16.9922288Z patching file drivers/net/ethernet/emulex/benet/be_cmds.c
2025-10-31T05:25:16.9927858Z patching file drivers/net/ethernet/emulex/benet/be_cmds.h
2025-10-31T05:25:16.9929904Z patching file drivers/net/ethernet/emulex/benet/be_ethtool.c
2025-10-31T05:25:16.9932884Z patching file drivers/net/ethernet/emulex/benet/be_main.c
2025-10-31T05:25:16.9936642Z patching file drivers/net/ethernet/ethoc.c
2025-10-31T05:25:16.9938057Z patching file drivers/net/ethernet/ezchip/nps_enet.c
2025-10-31T05:25:16.9939615Z patching file drivers/net/ethernet/faraday/ftgmac100.c
2025-10-31T05:25:16.9941719Z patching file drivers/net/ethernet/faraday/ftgmac100.h
2025-10-31T05:25:16.9942789Z patching file drivers/net/ethernet/freescale/Makefile
2025-10-31T05:25:16.9944265Z patching file drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
2025-10-31T05:25:16.9946666Z patching file drivers/net/ethernet/freescale/dpaa/dpaa_ethtool.c
2025-10-31T05:25:16.9948986Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c
2025-10-31T05:25:16.9952987Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h
2025-10-31T05:25:16.9954377Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-ethtool.c
2025-10-31T05:25:16.9955763Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c
2025-10-31T05:25:16.9956896Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.h
2025-10-31T05:25:16.9957926Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp.c
2025-10-31T05:25:16.9958834Z patching file drivers/net/ethernet/freescale/dpaa2/dpni-cmd.h
2025-10-31T05:25:16.9960233Z patching file drivers/net/ethernet/freescale/dpaa2/dpni.c
2025-10-31T05:25:16.9962377Z patching file drivers/net/ethernet/freescale/dpaa2/dpni.h
2025-10-31T05:25:16.9964236Z patching file drivers/net/ethernet/freescale/enetc/enetc.c
2025-10-31T05:25:16.9966976Z patching file drivers/net/ethernet/freescale/enetc/enetc.h
2025-10-31T05:25:16.9968505Z patching file drivers/net/ethernet/freescale/enetc/enetc_ethtool.c
2025-10-31T05:25:16.9969521Z patching file drivers/net/ethernet/freescale/enetc/enetc_hw.h
2025-10-31T05:25:16.9971038Z patching file drivers/net/ethernet/freescale/enetc/enetc_pf.c
2025-10-31T05:25:16.9973314Z patching file drivers/net/ethernet/freescale/enetc/enetc_ptp.c
2025-10-31T05:25:16.9974350Z patching file drivers/net/ethernet/freescale/enetc/enetc_qos.c
2025-10-31T05:25:16.9976655Z patching file drivers/net/ethernet/freescale/enetc/enetc_vf.c
2025-10-31T05:25:16.9977640Z patching file drivers/net/ethernet/freescale/fec.h
2025-10-31T05:25:16.9979724Z patching file drivers/net/ethernet/freescale/fec_main.c
2025-10-31T05:25:16.9983467Z patching file drivers/net/ethernet/freescale/fec_mpc52xx_phy.c
2025-10-31T05:25:16.9984449Z patching file drivers/net/ethernet/freescale/fec_ptp.c
2025-10-31T05:25:16.9986186Z patching file drivers/net/ethernet/freescale/fman/fman_port.c
2025-10-31T05:25:16.9988043Z patching file drivers/net/ethernet/freescale/fman/mac.c
2025-10-31T05:25:16.9989468Z patching file drivers/net/ethernet/freescale/fs_enet/mac-fec.c
2025-10-31T05:25:16.9990545Z patching file drivers/net/ethernet/freescale/fs_enet/mii-bitbang.c
2025-10-31T05:25:16.9991620Z patching file drivers/net/ethernet/freescale/fs_enet/mii-fec.c
2025-10-31T05:25:16.9992783Z patching file drivers/net/ethernet/freescale/fsl_pq_mdio.c
2025-10-31T05:25:16.9994392Z patching file drivers/net/ethernet/freescale/gianfar.c
2025-10-31T05:25:16.9997038Z patching file drivers/net/ethernet/freescale/gianfar_ethtool.c
2025-10-31T05:25:16.9999383Z patching file drivers/net/ethernet/freescale/ucc_geth.c
2025-10-31T05:25:17.0002266Z patching file drivers/net/ethernet/freescale/ucc_geth.h
2025-10-31T05:25:17.0003690Z patching file drivers/net/ethernet/freescale/xgmac_mdio.c
2025-10-31T05:25:17.0005096Z patching file drivers/net/ethernet/fujitsu/fmvj18x_cs.c
2025-10-31T05:25:17.0006523Z patching file drivers/net/ethernet/google/gve/gve.h
2025-10-31T05:25:17.0007723Z patching file drivers/net/ethernet/google/gve/gve_adminq.c
2025-10-31T05:25:17.0008860Z patching file drivers/net/ethernet/google/gve/gve_adminq.h
2025-10-31T05:25:17.0009876Z patching file drivers/net/ethernet/google/gve/gve_ethtool.c
2025-10-31T05:25:17.0011241Z patching file drivers/net/ethernet/google/gve/gve_main.c
2025-10-31T05:25:17.0013674Z patching file drivers/net/ethernet/google/gve/gve_tx.c
2025-10-31T05:25:17.0014919Z patching file drivers/net/ethernet/hisilicon/hip04_eth.c
2025-10-31T05:25:17.0016294Z patching file drivers/net/ethernet/hisilicon/hisi_femac.c
2025-10-31T05:25:17.0017655Z patching file drivers/net/ethernet/hisilicon/hix5hd2_gmac.c
2025-10-31T05:25:17.0019073Z patching file drivers/net/ethernet/hisilicon/hns/hnae.c
2025-10-31T05:25:17.0020293Z patching file drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c
2025-10-31T05:25:17.0021770Z patching file drivers/net/ethernet/hisilicon/hns/hns_dsaf_misc.c
2025-10-31T05:25:17.0023509Z patching file drivers/net/ethernet/hisilicon/hns/hns_enet.c
2025-10-31T05:25:17.0025898Z patching file drivers/net/ethernet/hisilicon/hns/hns_ethtool.c
2025-10-31T05:25:17.0027127Z patching file drivers/net/ethernet/hisilicon/hns3/hclge_mbx.h
2025-10-31T05:25:17.0028120Z patching file drivers/net/ethernet/hisilicon/hns3/hnae3.c
2025-10-31T05:25:17.0029295Z patching file drivers/net/ethernet/hisilicon/hns3/hnae3.h
2025-10-31T05:25:17.0030595Z patching file drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c
2025-10-31T05:25:17.0032915Z patching file drivers/net/ethernet/hisilicon/hns3/hns3_enet.c
2025-10-31T05:25:17.0037213Z patching file drivers/net/ethernet/hisilicon/hns3/hns3_enet.h
2025-10-31T05:25:17.0038533Z patching file drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c
2025-10-31T05:25:17.0040622Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.c
2025-10-31T05:25:17.0041686Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h
2025-10-31T05:25:17.0043200Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c
2025-10-31T05:25:17.0045048Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c
2025-10-31T05:25:17.0046839Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_err.c
2025-10-31T05:25:17.0048364Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_err.h
2025-10-31T05:25:17.0052259Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
2025-10-31T05:25:17.0059008Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h
2025-10-31T05:25:17.0060206Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c
2025-10-31T05:25:17.0061818Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mdio.c
2025-10-31T05:25:17.0063118Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c
2025-10-31T05:25:17.0065297Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h
2025-10-31T05:25:17.0066402Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h
2025-10-31T05:25:17.0067483Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_cmd.c
2025-10-31T05:25:17.0068566Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_cmd.h
2025-10-31T05:25:17.0069869Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c
2025-10-31T05:25:17.0073346Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h
2025-10-31T05:25:17.0074515Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c
2025-10-31T05:25:17.0075682Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h
2025-10-31T05:25:17.0076704Z patching file drivers/net/ethernet/hisilicon/hns_mdio.c
2025-10-31T05:25:17.0077657Z patching file drivers/net/ethernet/huawei/hinic/hinic_debugfs.c
2025-10-31T05:25:17.0078605Z patching file drivers/net/ethernet/huawei/hinic/hinic_dev.h
2025-10-31T05:25:17.0079818Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_api_cmd.c
2025-10-31T05:25:17.0080808Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_cmdq.c
2025-10-31T05:25:17.0082475Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_dev.c
2025-10-31T05:25:17.0084054Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_eqs.c
2025-10-31T05:25:17.0085353Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_mgmt.c
2025-10-31T05:25:17.0086582Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_wq.c
2025-10-31T05:25:17.0088175Z patching file drivers/net/ethernet/huawei/hinic/hinic_main.c
2025-10-31T05:25:17.0090275Z patching file drivers/net/ethernet/huawei/hinic/hinic_rx.c
2025-10-31T05:25:17.0091534Z patching file drivers/net/ethernet/huawei/hinic/hinic_sriov.c
2025-10-31T05:25:17.0093167Z patching file drivers/net/ethernet/huawei/hinic/hinic_tx.c
2025-10-31T05:25:17.0094907Z patching file drivers/net/ethernet/i825xx/82596.c
2025-10-31T05:25:17.0096266Z patching file drivers/net/ethernet/i825xx/sni_82596.c
2025-10-31T05:25:17.0097323Z patching file drivers/net/ethernet/i825xx/sun3_82586.c
2025-10-31T05:25:17.0099646Z patching file drivers/net/ethernet/ibm/ehea/ehea_main.c
2025-10-31T05:25:17.0102191Z patching file drivers/net/ethernet/ibm/emac/mal.c
2025-10-31T05:25:17.0103630Z patching file drivers/net/ethernet/ibm/ibmveth.c
2025-10-31T05:25:17.0106579Z patching file drivers/net/ethernet/ibm/ibmvnic.c
2025-10-31T05:25:17.0112332Z patching file drivers/net/ethernet/ibm/ibmvnic.h
2025-10-31T05:25:17.0114585Z patching file drivers/net/ethernet/intel/e100.c
2025-10-31T05:25:17.0118131Z patching file drivers/net/ethernet/intel/e1000e/82571.c
2025-10-31T05:25:17.0119723Z patching file drivers/net/ethernet/intel/e1000e/defines.h
2025-10-31T05:25:17.0120976Z patching file drivers/net/ethernet/intel/e1000e/e1000.h
2025-10-31T05:25:17.0122618Z patching file drivers/net/ethernet/intel/e1000e/ethtool.c
2025-10-31T05:25:17.0126194Z patching file drivers/net/ethernet/intel/e1000e/ich8lan.c
2025-10-31T05:25:17.0129728Z patching file drivers/net/ethernet/intel/e1000e/ich8lan.h
2025-10-31T05:25:17.0132674Z patching file drivers/net/ethernet/intel/e1000e/netdev.c
2025-10-31T05:25:17.0137815Z patching file drivers/net/ethernet/intel/e1000e/nvm.c
2025-10-31T05:25:17.0138736Z patching file drivers/net/ethernet/intel/fm10k/fm10k.h
2025-10-31T05:25:17.0140234Z patching file drivers/net/ethernet/intel/fm10k/fm10k_main.c
2025-10-31T05:25:17.0142739Z patching file drivers/net/ethernet/intel/fm10k/fm10k_pci.c
2025-10-31T05:25:17.0144826Z patching file drivers/net/ethernet/intel/i40e/i40e.h
2025-10-31T05:25:17.0147064Z patching file drivers/net/ethernet/intel/i40e/i40e_adminq_cmd.h
2025-10-31T05:25:17.0148630Z patching file drivers/net/ethernet/intel/i40e/i40e_alloc.h
2025-10-31T05:25:17.0149627Z patching file drivers/net/ethernet/intel/i40e/i40e_client.c
2025-10-31T05:25:17.0152486Z patching file drivers/net/ethernet/intel/i40e/i40e_common.c
2025-10-31T05:25:17.0157014Z patching file drivers/net/ethernet/intel/i40e/i40e_debugfs.c
2025-10-31T05:25:17.0158721Z patching file drivers/net/ethernet/intel/i40e/i40e_diag.c
2025-10-31T05:25:17.0159693Z patching file drivers/net/ethernet/intel/i40e/i40e_diag.h
2025-10-31T05:25:17.0161722Z patching file drivers/net/ethernet/intel/i40e/i40e_ethtool.c
2025-10-31T05:25:17.0171331Z patching file drivers/net/ethernet/intel/i40e/i40e_main.c
2025-10-31T05:25:17.0182756Z patching file drivers/net/ethernet/intel/i40e/i40e_nvm.c
2025-10-31T05:25:17.0184564Z patching file drivers/net/ethernet/intel/i40e/i40e_ptp.c
2025-10-31T05:25:17.0185894Z patching file drivers/net/ethernet/intel/i40e/i40e_register.h
2025-10-31T05:25:17.0188324Z patching file drivers/net/ethernet/intel/i40e/i40e_txrx.c
2025-10-31T05:25:17.0191354Z patching file drivers/net/ethernet/intel/i40e/i40e_txrx.h
2025-10-31T05:25:17.0192796Z patching file drivers/net/ethernet/intel/i40e/i40e_type.h
2025-10-31T05:25:17.0195489Z patching file drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
2025-10-31T05:25:17.0201096Z patching file drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h
2025-10-31T05:25:17.0202422Z patching file drivers/net/ethernet/intel/i40e/i40e_xsk.c
2025-10-31T05:25:17.0203723Z patching file drivers/net/ethernet/intel/i40e/i40e_xsk.h
2025-10-31T05:25:17.0204554Z patching file drivers/net/ethernet/intel/iavf/iavf.h
2025-10-31T05:25:17.0206025Z patching file drivers/net/ethernet/intel/iavf/iavf_adminq.c
2025-10-31T05:25:17.0207553Z patching file drivers/net/ethernet/intel/iavf/iavf_common.c
2025-10-31T05:25:17.0209047Z patching file drivers/net/ethernet/intel/iavf/iavf_ethtool.c
2025-10-31T05:25:17.0211612Z patching file drivers/net/ethernet/intel/iavf/iavf_main.c
2025-10-31T05:25:17.0215777Z patching file drivers/net/ethernet/intel/iavf/iavf_register.h
2025-10-31T05:25:17.0217168Z patching file drivers/net/ethernet/intel/iavf/iavf_txrx.c
2025-10-31T05:25:17.0219504Z patching file drivers/net/ethernet/intel/iavf/iavf_virtchnl.c
2025-10-31T05:25:17.0221295Z patching file drivers/net/ethernet/intel/ice/ice.h
2025-10-31T05:25:17.0223213Z patching file drivers/net/ethernet/intel/ice/ice_adminq_cmd.h
2025-10-31T05:25:17.0225077Z patching file drivers/net/ethernet/intel/ice/ice_arfs.c
2025-10-31T05:25:17.0226648Z patching file drivers/net/ethernet/intel/ice/ice_base.c
2025-10-31T05:25:17.0228949Z patching file drivers/net/ethernet/intel/ice/ice_common.c
2025-10-31T05:25:17.0231780Z patching file drivers/net/ethernet/intel/ice/ice_controlq.h
2025-10-31T05:25:17.0232892Z patching file drivers/net/ethernet/intel/ice/ice_dcb.c
2025-10-31T05:25:17.0235099Z patching file drivers/net/ethernet/intel/ice/ice_dcb_lib.c
2025-10-31T05:25:17.0236913Z patching file drivers/net/ethernet/intel/ice/ice_dcb_nl.c
2025-10-31T05:25:17.0244925Z patching file drivers/net/ethernet/intel/ice/ice_devids.h
2025-10-31T05:25:17.0245402Z patching file drivers/net/ethernet/intel/ice/ice_devlink.c
2025-10-31T05:25:17.0245833Z patching file drivers/net/ethernet/intel/ice/ice_ethtool.c
2025-10-31T05:25:17.0246108Z patching file drivers/net/ethernet/intel/ice/ice_ethtool_fdir.c
2025-10-31T05:25:17.0248428Z patching file drivers/net/ethernet/intel/ice/ice_flex_pipe.c
2025-10-31T05:25:17.0251271Z patching file drivers/net/ethernet/intel/ice/ice_fltr.c
2025-10-31T05:25:17.0252552Z patching file drivers/net/ethernet/intel/ice/ice_hw_autogen.h
2025-10-31T05:25:17.0253633Z patching file drivers/net/ethernet/intel/ice/ice_lan_tx_rx.h
2025-10-31T05:25:17.0255725Z patching file drivers/net/ethernet/intel/ice/ice_lib.c
2025-10-31T05:25:17.0260355Z patching file drivers/net/ethernet/intel/ice/ice_main.c
2025-10-31T05:25:17.0266141Z patching file drivers/net/ethernet/intel/ice/ice_sched.c
2025-10-31T05:25:17.0269042Z patching file drivers/net/ethernet/intel/ice/ice_switch.c
2025-10-31T05:25:17.0271903Z patching file drivers/net/ethernet/intel/ice/ice_txrx.c
2025-10-31T05:25:17.0274345Z patching file drivers/net/ethernet/intel/ice/ice_txrx.h
2025-10-31T05:25:17.0275443Z patching file drivers/net/ethernet/intel/ice/ice_type.h
2025-10-31T05:25:17.0277879Z patching file drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c
2025-10-31T05:25:17.0281181Z patching file drivers/net/ethernet/intel/ice/ice_virtchnl_pf.h
2025-10-31T05:25:17.0282268Z patching file drivers/net/ethernet/intel/ice/ice_xsk.c
2025-10-31T05:25:17.0284351Z patching file drivers/net/ethernet/intel/igb/e1000_mac.c
2025-10-31T05:25:17.0285930Z patching file drivers/net/ethernet/intel/igb/igb.h
2025-10-31T05:25:17.0287996Z patching file drivers/net/ethernet/intel/igb/igb_ethtool.c
2025-10-31T05:25:17.0292935Z patching file drivers/net/ethernet/intel/igb/igb_main.c
2025-10-31T05:25:17.0299660Z patching file drivers/net/ethernet/intel/igb/igb_ptp.c
2025-10-31T05:25:17.0301409Z patching file drivers/net/ethernet/intel/igbvf/igbvf.h
2025-10-31T05:25:17.0303134Z patching file drivers/net/ethernet/intel/igbvf/netdev.c
2025-10-31T05:25:17.0305268Z patching file drivers/net/ethernet/intel/igbvf/vf.c
2025-10-31T05:25:17.0306330Z patching file drivers/net/ethernet/intel/igc/igc.h
2025-10-31T05:25:17.0307847Z patching file drivers/net/ethernet/intel/igc/igc_base.c
2025-10-31T05:25:17.0308802Z patching file drivers/net/ethernet/intel/igc/igc_defines.h
2025-10-31T05:25:17.0310437Z patching file drivers/net/ethernet/intel/igc/igc_ethtool.c
2025-10-31T05:25:17.0312386Z patching file drivers/net/ethernet/intel/igc/igc_hw.h
2025-10-31T05:25:17.0313285Z patching file drivers/net/ethernet/intel/igc/igc_i225.c
2025-10-31T05:25:17.0314784Z patching file drivers/net/ethernet/intel/igc/igc_mac.c
2025-10-31T05:25:17.0317198Z patching file drivers/net/ethernet/intel/igc/igc_main.c
2025-10-31T05:25:17.0321815Z patching file drivers/net/ethernet/intel/igc/igc_phy.c
2025-10-31T05:25:17.0323404Z patching file drivers/net/ethernet/intel/igc/igc_ptp.c
2025-10-31T05:25:17.0325103Z patching file drivers/net/ethernet/intel/igc/igc_regs.h
2025-10-31T05:25:17.0325844Z patching file drivers/net/ethernet/intel/igc/igc_tsn.c
2025-10-31T05:25:17.0327085Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe.h
2025-10-31T05:25:17.0328788Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c
2025-10-31T05:25:17.0331526Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c
2025-10-31T05:25:17.0335197Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_common.c
2025-10-31T05:25:17.0340288Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c
2025-10-31T05:25:17.0343059Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c
2025-10-31T05:25:17.0347423Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
2025-10-31T05:25:17.0353997Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c
2025-10-31T05:25:17.0355154Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h
2025-10-31T05:25:17.0356712Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c
2025-10-31T05:25:17.0359674Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h
2025-10-31T05:25:17.0360727Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
2025-10-31T05:25:17.0363622Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c
2025-10-31T05:25:17.0366782Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_type.h
2025-10-31T05:25:17.0370830Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c
2025-10-31T05:25:17.0374551Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
2025-10-31T05:25:17.0380111Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c
2025-10-31T05:25:17.0381659Z patching file drivers/net/ethernet/intel/ixgbevf/ipsec.c
2025-10-31T05:25:17.0384671Z patching file drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
2025-10-31T05:25:17.0390370Z patching file drivers/net/ethernet/jme.c
2025-10-31T05:25:17.0393767Z patching file drivers/net/ethernet/korina.c
2025-10-31T05:25:17.0394583Z patching file drivers/net/ethernet/lantiq_etop.c
2025-10-31T05:25:17.0396136Z patching file drivers/net/ethernet/lantiq_xrx200.c
2025-10-31T05:25:17.0398345Z patching file drivers/net/ethernet/marvell/mv643xx_eth.c
2025-10-31T05:25:17.0402546Z patching file drivers/net/ethernet/marvell/mvneta.c
2025-10-31T05:25:17.0407280Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2.h
2025-10-31T05:25:17.0409630Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_cls.c
2025-10-31T05:25:17.0411605Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_debugfs.c
2025-10-31T05:25:17.0414865Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
2025-10-31T05:25:17.0421714Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c
2025-10-31T05:25:17.0424382Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.h
2025-10-31T05:25:17.0425597Z patching file drivers/net/ethernet/marvell/octeontx2/af/cgx.c
2025-10-31T05:25:17.0427815Z patching file drivers/net/ethernet/marvell/octeontx2/af/cgx.h
2025-10-31T05:25:17.0428630Z patching file drivers/net/ethernet/marvell/octeontx2/af/cgx_fw_if.h
2025-10-31T05:25:17.0430057Z patching file drivers/net/ethernet/marvell/octeontx2/af/mbox.h
2025-10-31T05:25:17.0432215Z patching file drivers/net/ethernet/marvell/octeontx2/af/npc.h
2025-10-31T05:25:17.0435431Z patching file drivers/net/ethernet/marvell/octeontx2/af/npc_profile.h
2025-10-31T05:25:17.0446638Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu.c
2025-10-31T05:25:17.0447244Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu.h
2025-10-31T05:25:17.0449309Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c
2025-10-31T05:25:17.0450940Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_debugfs.c
2025-10-31T05:25:17.0454817Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c
2025-10-31T05:25:17.0458181Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c
2025-10-31T05:25:17.0460806Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_reg.c
2025-10-31T05:25:17.0462146Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_struct.h
2025-10-31T05:25:17.0464258Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c
2025-10-31T05:25:17.0466327Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h
2025-10-31T05:25:17.0467995Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_ethtool.c
2025-10-31T05:25:17.0470539Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c
2025-10-31T05:25:17.0473452Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c
2025-10-31T05:25:17.0474853Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c
2025-10-31T05:25:17.0479274Z patching file drivers/net/ethernet/marvell/prestera/prestera_main.c
2025-10-31T05:25:17.0480773Z patching file drivers/net/ethernet/marvell/prestera/prestera_rxtx.c
2025-10-31T05:25:17.0481436Z patching file drivers/net/ethernet/marvell/prestera/prestera_switchdev.c
2025-10-31T05:25:17.0481887Z patching file drivers/net/ethernet/marvell/pxa168_eth.c
2025-10-31T05:25:17.0484868Z patching file drivers/net/ethernet/marvell/sky2.c
2025-10-31T05:25:17.0488880Z patching file drivers/net/ethernet/marvell/sky2.h
2025-10-31T05:25:17.0491494Z patching file drivers/net/ethernet/mediatek/mtk_eth_soc.c
2025-10-31T05:25:17.0495073Z patching file drivers/net/ethernet/mediatek/mtk_eth_soc.h
2025-10-31T05:25:17.0496287Z patching file drivers/net/ethernet/mediatek/mtk_sgmii.c
2025-10-31T05:25:17.0497615Z patching file drivers/net/ethernet/mediatek/mtk_star_emac.c
2025-10-31T05:25:17.0499574Z patching file drivers/net/ethernet/mellanox/mlx4/alloc.c
2025-10-31T05:25:17.0500875Z patching file drivers/net/ethernet/mellanox/mlx4/en_clock.c
2025-10-31T05:25:17.0502638Z patching file drivers/net/ethernet/mellanox/mlx4/en_ethtool.c
2025-10-31T05:25:17.0508767Z patching file drivers/net/ethernet/mellanox/mlx4/en_netdev.c
2025-10-31T05:25:17.0511134Z patching file drivers/net/ethernet/mellanox/mlx4/en_tx.c
2025-10-31T05:25:17.0511583Z patching file drivers/net/ethernet/mellanox/mlx4/fw.c
2025-10-31T05:25:17.0516224Z patching file drivers/net/ethernet/mellanox/mlx4/fw.h
2025-10-31T05:25:17.0516665Z patching file drivers/net/ethernet/mellanox/mlx4/main.c
2025-10-31T05:25:17.0519081Z patching file drivers/net/ethernet/mellanox/mlx4/mlx4_en.h
2025-10-31T05:25:17.0519757Z patching file drivers/net/ethernet/mellanox/mlx4/port.c
2025-10-31T05:25:17.0522303Z patching file drivers/net/ethernet/mellanox/mlx4/qp.c
2025-10-31T05:25:17.0525248Z patching file drivers/net/ethernet/mellanox/mlx4/resource_tracker.c
2025-10-31T05:25:17.0528930Z patching file drivers/net/ethernet/mellanox/mlx5/core/cmd.c
2025-10-31T05:25:17.0531436Z patching file drivers/net/ethernet/mellanox/mlx5/core/cq.c
2025-10-31T05:25:17.0532487Z patching file drivers/net/ethernet/mellanox/mlx5/core/debugfs.c
2025-10-31T05:25:17.0534036Z patching file drivers/net/ethernet/mellanox/mlx5/core/devlink.c
2025-10-31T05:25:17.0535600Z patching file drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
2025-10-31T05:25:17.0537829Z patching file drivers/net/ethernet/mellanox/mlx5/core/diag/rsc_dump.c
2025-10-31T05:25:17.0539100Z patching file drivers/net/ethernet/mellanox/mlx5/core/en.h
2025-10-31T05:25:17.0542108Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/fs.h
2025-10-31T05:25:17.0542853Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/health.c
2025-10-31T05:25:17.0548220Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/port.c
2025-10-31T05:25:17.0549069Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/port_buffer.c
2025-10-31T05:25:17.0549572Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/rep/bond.c
2025-10-31T05:25:17.0550086Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/rep/neigh.c
2025-10-31T05:25:17.0550559Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/rep/tc.c
2025-10-31T05:25:17.0551086Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/reporter_tx.c
2025-10-31T05:25:17.0551539Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c
2025-10-31T05:25:17.0554821Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_geneve.c
2025-10-31T05:25:17.0555476Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_vxlan.c
2025-10-31T05:25:17.0556491Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/txrx.h
2025-10-31T05:25:17.0557514Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/xdp.h
2025-10-31T05:25:17.0558526Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/xsk/pool.c
2025-10-31T05:25:17.0559549Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/xsk/setup.c
2025-10-31T05:25:17.0560591Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/en_accel.h
2025-10-31T05:25:17.0561746Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/fs_tcp.c
2025-10-31T05:25:17.0563234Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.c
2025-10-31T05:25:17.0564809Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.c
2025-10-31T05:25:17.0569092Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_stats.c
2025-10-31T05:25:17.0569796Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls.c
2025-10-31T05:25:17.0570326Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_rx.c
2025-10-31T05:25:17.0570859Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_tx.c
2025-10-31T05:25:17.0571335Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_arfs.c
2025-10-31T05:25:17.0573054Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.c
2025-10-31T05:25:17.0574657Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c
2025-10-31T05:25:17.0582946Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_fs.c
2025-10-31T05:25:17.0583464Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_fs_ethtool.c
2025-10-31T05:25:17.0583929Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_main.c
2025-10-31T05:25:17.0586749Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
2025-10-31T05:25:17.0589225Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_rx.c
2025-10-31T05:25:17.0596308Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_selftest.c
2025-10-31T05:25:17.0596789Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_stats.c
2025-10-31T05:25:17.0597245Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
2025-10-31T05:25:17.0599715Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_tc.h
2025-10-31T05:25:17.0601461Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_tx.c
2025-10-31T05:25:17.0603015Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_txrx.c
2025-10-31T05:25:17.0610694Z patching file drivers/net/ethernet/mellanox/mlx5/core/eq.c
2025-10-31T05:25:17.0611235Z patching file drivers/net/ethernet/mellanox/mlx5/core/esw/acl/egress_lgcy.c
2025-10-31T05:25:17.0611773Z patching file drivers/net/ethernet/mellanox/mlx5/core/esw/acl/egress_ofld.c
2025-10-31T05:25:17.0612427Z patching file drivers/net/ethernet/mellanox/mlx5/core/esw/acl/ingress_lgcy.c
2025-10-31T05:25:17.0612972Z patching file drivers/net/ethernet/mellanox/mlx5/core/esw/acl/ingress_ofld.c
2025-10-31T05:25:17.0613431Z patching file drivers/net/ethernet/mellanox/mlx5/core/eswitch.c
2025-10-31T05:25:17.0613884Z patching file drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
2025-10-31T05:25:17.0615606Z patching file drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
2025-10-31T05:25:17.0616206Z patching file drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_termtbl.c
2025-10-31T05:25:17.0617054Z patching file drivers/net/ethernet/mellanox/mlx5/core/events.c
2025-10-31T05:25:17.0618472Z patching file drivers/net/ethernet/mellanox/mlx5/core/fpga/conn.c
2025-10-31T05:25:17.0620269Z patching file drivers/net/ethernet/mellanox/mlx5/core/fpga/ipsec.c
2025-10-31T05:25:17.0622965Z patching file drivers/net/ethernet/mellanox/mlx5/core/fs_core.c
2025-10-31T05:25:17.0632875Z patching file drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c
2025-10-31T05:25:17.0635135Z patching file drivers/net/ethernet/mellanox/mlx5/core/health.c
2025-10-31T05:25:17.0637365Z patching file drivers/net/ethernet/mellanox/mlx5/core/ipoib/ethtool.c
2025-10-31T05:25:17.0637855Z patching file drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c
2025-10-31T05:25:17.0638453Z patching file drivers/net/ethernet/mellanox/mlx5/core/lag.c
2025-10-31T05:25:17.0640326Z patching file drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c
2025-10-31T05:25:17.0640827Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/clock.c
2025-10-31T05:25:17.0644692Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/clock.h
2025-10-31T05:25:17.0647066Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.c
2025-10-31T05:25:17.0647665Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.h
2025-10-31T05:25:17.0648119Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/eq.h
2025-10-31T05:25:17.0649175Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/fs_chains.c
2025-10-31T05:25:17.0650106Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/geneve.c
2025-10-31T05:25:17.0650763Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/mlx5.h
2025-10-31T05:25:17.0651214Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/mpfs.c
2025-10-31T05:25:17.0651840Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/mpfs.h
2025-10-31T05:25:17.0652468Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/pci_vsc.c
2025-10-31T05:25:17.0653137Z patching file drivers/net/ethernet/mellanox/mlx5/core/main.c
2025-10-31T05:25:17.0653468Z patching file drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.h
2025-10-31T05:25:17.0653729Z patching file drivers/net/ethernet/mellanox/mlx5/core/mr.c
2025-10-31T05:25:17.0654093Z patching file drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
2025-10-31T05:25:17.0654361Z patching file drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c
2025-10-31T05:25:17.0654610Z patching file drivers/net/ethernet/mellanox/mlx5/core/rdma.c
2025-10-31T05:25:17.0654866Z patching file drivers/net/ethernet/mellanox/mlx5/core/rdma.h
2025-10-31T05:25:17.0655123Z patching file drivers/net/ethernet/mellanox/mlx5/core/sriov.c
2025-10-31T05:25:17.0655814Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c
2025-10-31T05:25:17.0657899Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_cmd.c
2025-10-31T05:25:17.0659378Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_domain.c
2025-10-31T05:25:17.0660235Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_fw.c
2025-10-31T05:25:17.0661559Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_rule.c
2025-10-31T05:25:17.0663951Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_send.c
2025-10-31T05:25:17.0665910Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste.c
2025-10-31T05:25:17.0668281Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.c
2025-10-31T05:25:17.0670096Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_types.h
2025-10-31T05:25:17.0671703Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c
2025-10-31T05:25:17.0672874Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/mlx5dr.h
2025-10-31T05:25:17.0674258Z patching file drivers/net/ethernet/mellanox/mlx5/core/transobj.c
2025-10-31T05:25:17.0675660Z patching file drivers/net/ethernet/mellanox/mlx5/core/vport.c
2025-10-31T05:25:17.0677257Z patching file drivers/net/ethernet/mellanox/mlxfw/mlxfw_fsm.c
2025-10-31T05:25:17.0678288Z patching file drivers/net/ethernet/mellanox/mlxfw/mlxfw_mfa2_tlv_multi.c
2025-10-31T05:25:17.0679801Z patching file drivers/net/ethernet/mellanox/mlxsw/cmd.h
2025-10-31T05:25:17.0682401Z patching file drivers/net/ethernet/mellanox/mlxsw/core.c
2025-10-31T05:25:17.0685135Z patching file drivers/net/ethernet/mellanox/mlxsw/core_thermal.c
2025-10-31T05:25:17.0687144Z patching file drivers/net/ethernet/mellanox/mlxsw/i2c.c
2025-10-31T05:25:17.0688524Z patching file drivers/net/ethernet/mellanox/mlxsw/minimal.c
2025-10-31T05:25:17.0690705Z patching file drivers/net/ethernet/mellanox/mlxsw/pci.c
2025-10-31T05:25:17.0693044Z patching file drivers/net/ethernet/mellanox/mlxsw/pci_hw.h
2025-10-31T05:25:17.0696985Z patching file drivers/net/ethernet/mellanox/mlxsw/reg.h
2025-10-31T05:25:17.0705614Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum.c
2025-10-31T05:25:17.0709162Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum.h
2025-10-31T05:25:17.0710994Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_atcam.c
2025-10-31T05:25:17.0712986Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.c
2025-10-31T05:25:17.0714593Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_erp.c
2025-10-31T05:25:17.0716913Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.c
2025-10-31T05:25:17.0720038Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.h
2025-10-31T05:25:17.0721847Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.c
2025-10-31T05:25:17.0722564Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.h
2025-10-31T05:25:17.0723445Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_dcb.c
2025-10-31T05:25:17.0725371Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_ethtool.c
2025-10-31T05:25:17.0727725Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_ipip.c
2025-10-31T05:25:17.0728865Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_mr.c
2025-10-31T05:25:17.0730827Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_nve.c
2025-10-31T05:25:17.0732514Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.c
2025-10-31T05:25:17.0734061Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_ptp.c
2025-10-31T05:25:17.0737607Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c
2025-10-31T05:25:17.0744403Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c
2025-10-31T05:25:17.0746073Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_span.h
2025-10-31T05:25:17.0748589Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c
2025-10-31T05:25:17.0751389Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_trap.c
2025-10-31T05:25:17.0754123Z patching file drivers/net/ethernet/mellanox/mlxsw/switchx2.c
2025-10-31T05:25:17.0755631Z patching file drivers/net/ethernet/mellanox/mlxsw/trap.h
2025-10-31T05:25:17.0757225Z patching file drivers/net/ethernet/micrel/Makefile
2025-10-31T05:25:17.0757668Z patching file drivers/net/ethernet/micrel/ks8842.c
2025-10-31T05:25:17.0758845Z patching file drivers/net/ethernet/micrel/ks8851.h
2025-10-31T05:25:17.0760447Z patching file drivers/net/ethernet/micrel/ks8851_common.c
2025-10-31T05:25:17.0762325Z patching file drivers/net/ethernet/micrel/ks8851_par.c
2025-10-31T05:25:17.0763222Z patching file drivers/net/ethernet/micrel/ks8851_spi.c
2025-10-31T05:25:17.0766423Z patching file drivers/net/ethernet/micrel/ksz884x.c
2025-10-31T05:25:17.0771600Z patching file drivers/net/ethernet/microchip/encx24j600-regmap.c
2025-10-31T05:25:17.0773589Z patching file drivers/net/ethernet/microchip/encx24j600.c
2025-10-31T05:25:17.0774267Z patching file drivers/net/ethernet/microchip/encx24j600_hw.h
2025-10-31T05:25:17.0775013Z patching file drivers/net/ethernet/microchip/lan743x_ethtool.c
2025-10-31T05:25:17.0777102Z patching file drivers/net/ethernet/microchip/lan743x_main.c
2025-10-31T05:25:17.0782090Z patching file drivers/net/ethernet/microchip/lan743x_main.h
2025-10-31T05:25:17.0783086Z patching file drivers/net/ethernet/moxa/moxart_ether.c
2025-10-31T05:25:17.0785243Z patching file drivers/net/ethernet/mscc/ocelot.c
2025-10-31T05:25:17.0787693Z patching file drivers/net/ethernet/mscc/ocelot_flower.c
2025-10-31T05:25:17.0789191Z patching file drivers/net/ethernet/mscc/ocelot_io.c
2025-10-31T05:25:17.0790513Z patching file drivers/net/ethernet/mscc/ocelot_net.c
2025-10-31T05:25:17.0792381Z patching file drivers/net/ethernet/mscc/ocelot_vcap.c
2025-10-31T05:25:17.0794322Z patching file drivers/net/ethernet/mscc/ocelot_vsc7514.c
2025-10-31T05:25:17.0796812Z patching file drivers/net/ethernet/myricom/myri10ge/myri10ge.c
2025-10-31T05:25:17.0799972Z patching file drivers/net/ethernet/natsemi/macsonic.c
2025-10-31T05:25:17.0801910Z patching file drivers/net/ethernet/natsemi/natsemi.c
2025-10-31T05:25:17.0805449Z patching file drivers/net/ethernet/natsemi/ns83820.c
2025-10-31T05:25:17.0807690Z patching file drivers/net/ethernet/natsemi/sonic.c
2025-10-31T05:25:17.0808993Z patching file drivers/net/ethernet/natsemi/xtsonic.c
2025-10-31T05:25:17.0812343Z patching file drivers/net/ethernet/neterion/s2io.c
2025-10-31T05:25:17.0819572Z patching file drivers/net/ethernet/neterion/vxge/vxge-config.c
2025-10-31T05:25:17.0824033Z patching file drivers/net/ethernet/neterion/vxge/vxge-main.c
2025-10-31T05:25:17.0827744Z patching file drivers/net/ethernet/netronome/nfp/bpf/cmsg.c
2025-10-31T05:25:17.0828712Z patching file drivers/net/ethernet/netronome/nfp/bpf/main.c
2025-10-31T05:25:17.0829997Z patching file drivers/net/ethernet/netronome/nfp/bpf/main.h
2025-10-31T05:25:17.0831083Z patching file drivers/net/ethernet/netronome/nfp/bpf/offload.c
2025-10-31T05:25:17.0832947Z patching file drivers/net/ethernet/netronome/nfp/flower/lag_conf.c
2025-10-31T05:25:17.0833985Z patching file drivers/net/ethernet/netronome/nfp/flower/main.c
2025-10-31T05:25:17.0835851Z patching file drivers/net/ethernet/netronome/nfp/flower/main.h
2025-10-31T05:25:17.0836730Z patching file drivers/net/ethernet/netronome/nfp/flower/metadata.c
2025-10-31T05:25:17.0838623Z patching file drivers/net/ethernet/netronome/nfp/flower/offload.c
2025-10-31T05:25:17.0841082Z patching file drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c
2025-10-31T05:25:17.0843617Z patching file drivers/net/ethernet/netronome/nfp/nfp_asm.c
2025-10-31T05:25:17.0844387Z patching file drivers/net/ethernet/netronome/nfp/nfp_devlink.c
2025-10-31T05:25:17.0845615Z patching file drivers/net/ethernet/netronome/nfp/nfp_net.h
2025-10-31T05:25:17.0847705Z patching file drivers/net/ethernet/netronome/nfp/nfp_net_common.c
2025-10-31T05:25:17.0851697Z patching file drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c
2025-10-31T05:25:17.0854503Z patching file drivers/net/ethernet/netronome/nfp/nfpcore/nfp6000_pcie.c
2025-10-31T05:25:17.0855941Z patching file drivers/net/ethernet/netronome/nfp/nfpcore/nfp_cppcore.c
2025-10-31T05:25:17.0857917Z patching file drivers/net/ethernet/ni/nixge.c
2025-10-31T05:25:17.0861180Z patching file drivers/net/ethernet/nvidia/forcedeth.c
2025-10-31T05:25:17.0870703Z patching file drivers/net/ethernet/nxp/lpc_eth.c
2025-10-31T05:25:17.0873315Z patching file drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c
2025-10-31T05:25:17.0876482Z patching file drivers/net/ethernet/pasemi/pasemi_mac.c
2025-10-31T05:25:17.0878329Z patching file drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c
2025-10-31T05:25:17.0879822Z patching file drivers/net/ethernet/pensando/ionic/ionic_dev.c
2025-10-31T05:25:17.0880569Z patching file drivers/net/ethernet/pensando/ionic/ionic_dev.h
2025-10-31T05:25:17.0881483Z patching file drivers/net/ethernet/pensando/ionic/ionic_devlink.c
2025-10-31T05:25:17.0882565Z patching file drivers/net/ethernet/pensando/ionic/ionic_ethtool.c
2025-10-31T05:25:17.0884838Z patching file drivers/net/ethernet/pensando/ionic/ionic_lif.c
2025-10-31T05:25:17.0888527Z patching file drivers/net/ethernet/pensando/ionic/ionic_main.c
2025-10-31T05:25:17.0890002Z patching file drivers/net/ethernet/pensando/ionic/ionic_txrx.c
2025-10-31T05:25:17.0893102Z patching file drivers/net/ethernet/qlogic/Kconfig
2025-10-31T05:25:17.0895960Z patching file drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c
2025-10-31T05:25:17.0898180Z patching file drivers/net/ethernet/qlogic/qed/qed_cxt.c
2025-10-31T05:25:17.0900806Z patching file drivers/net/ethernet/qlogic/qed/qed_dcbx.c
2025-10-31T05:25:17.0904945Z patching file drivers/net/ethernet/qlogic/qed/qed_debug.c
2025-10-31T05:25:17.0911591Z patching file drivers/net/ethernet/qlogic/qed/qed_dev.c
2025-10-31T05:25:17.0916140Z patching file drivers/net/ethernet/qlogic/qed/qed_iwarp.c
2025-10-31T05:25:17.0919480Z patching file drivers/net/ethernet/qlogic/qed/qed_l2.c
2025-10-31T05:25:17.0922842Z patching file drivers/net/ethernet/qlogic/qed/qed_ll2.c
2025-10-31T05:25:17.0925801Z patching file drivers/net/ethernet/qlogic/qed/qed_ll2.h
2025-10-31T05:25:17.0927129Z patching file drivers/net/ethernet/qlogic/qed/qed_main.c
2025-10-31T05:25:17.0930727Z patching file drivers/net/ethernet/qlogic/qed/qed_mcp.c
2025-10-31T05:25:17.0934621Z patching file drivers/net/ethernet/qlogic/qed/qed_mng_tlv.c
2025-10-31T05:25:17.0937157Z patching file drivers/net/ethernet/qlogic/qed/qed_rdma.c
2025-10-31T05:25:17.0938789Z patching file drivers/net/ethernet/qlogic/qed/qed_roce.c
2025-10-31T05:25:17.0942324Z patching file drivers/net/ethernet/qlogic/qed/qed_sriov.c
2025-10-31T05:25:17.0946195Z patching file drivers/net/ethernet/qlogic/qed/qed_sriov.h
2025-10-31T05:25:17.0947460Z patching file drivers/net/ethernet/qlogic/qed/qed_vf.c
2025-10-31T05:25:17.0949430Z patching file drivers/net/ethernet/qlogic/qede/qede.h
2025-10-31T05:25:17.0951052Z patching file drivers/net/ethernet/qlogic/qede/qede_ethtool.c
2025-10-31T05:25:17.0953819Z patching file drivers/net/ethernet/qlogic/qede/qede_filter.c
2025-10-31T05:25:17.0957009Z patching file drivers/net/ethernet/qlogic/qede/qede_fp.c
2025-10-31T05:25:17.0959461Z patching file drivers/net/ethernet/qlogic/qede/qede_main.c
2025-10-31T05:25:17.0963009Z patching file drivers/net/ethernet/qlogic/qla3xxx.c
2025-10-31T05:25:17.0968619Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c
2025-10-31T05:25:17.0972518Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c
2025-10-31T05:25:17.0975283Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_ctx.c
2025-10-31T05:25:17.0977210Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_dcb.h
2025-10-31T05:25:17.0978191Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_ethtool.c
2025-10-31T05:25:17.0980523Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_init.c
2025-10-31T05:25:17.0982504Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c
2025-10-31T05:25:17.0985798Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c
2025-10-31T05:25:17.0989504Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_minidump.c
2025-10-31T05:25:17.0991105Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov.h
2025-10-31T05:25:17.0992819Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.c
2025-10-31T05:25:17.0995663Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_pf.c
2025-10-31T05:25:17.0997982Z patching file drivers/net/ethernet/qualcomm/emac/emac-mac.c
2025-10-31T05:25:17.0999876Z patching file drivers/net/ethernet/qualcomm/emac/emac.c
2025-10-31T05:25:17.1001840Z patching file drivers/net/ethernet/qualcomm/qca_debug.c
2025-10-31T05:25:17.1002708Z patching file drivers/net/ethernet/qualcomm/qca_spi.c
2025-10-31T05:25:17.1004748Z patching file drivers/net/ethernet/qualcomm/qca_spi.h
2025-10-31T05:25:17.1005695Z patching file drivers/net/ethernet/qualcomm/qca_uart.c
2025-10-31T05:25:17.1006846Z patching file drivers/net/ethernet/qualcomm/rmnet/rmnet_config.c
2025-10-31T05:25:17.1008054Z patching file drivers/net/ethernet/qualcomm/rmnet/rmnet_config.h
2025-10-31T05:25:17.1008794Z patching file drivers/net/ethernet/qualcomm/rmnet/rmnet_vnd.c
2025-10-31T05:25:17.1010452Z patching file drivers/net/ethernet/qualcomm/rmnet/rmnet_vnd.h
2025-10-31T05:25:17.1011393Z patching file drivers/net/ethernet/rdc/r6040.c
2025-10-31T05:25:17.1014708Z patching file drivers/net/ethernet/realtek/r8169_main.c
2025-10-31T05:25:17.1021382Z patching file drivers/net/ethernet/realtek/r8169_phy_config.c
2025-10-31T05:25:17.1023713Z patching file drivers/net/ethernet/renesas/ravb_main.c
2025-10-31T05:25:17.1026822Z patching file drivers/net/ethernet/renesas/sh_eth.c
2025-10-31T05:25:17.1029704Z patching file drivers/net/ethernet/rocker/rocker_main.c
2025-10-31T05:25:17.1032264Z patching file drivers/net/ethernet/rocker/rocker_ofdpa.c
2025-10-31T05:25:17.1034826Z patching file drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c
2025-10-31T05:25:17.1036496Z patching file drivers/net/ethernet/seeq/ether3.c
2025-10-31T05:25:17.1038580Z patching file drivers/net/ethernet/sfc/ef10.c
2025-10-31T05:25:17.1041491Z patching file drivers/net/ethernet/sfc/ef100_netdev.c
2025-10-31T05:25:17.1042570Z patching file drivers/net/ethernet/sfc/ef100_nic.c
2025-10-31T05:25:17.1043969Z patching file drivers/net/ethernet/sfc/ef100_tx.c
2025-10-31T05:25:17.1044787Z patching file drivers/net/ethernet/sfc/ef10_sriov.c
2025-10-31T05:25:17.1046288Z patching file drivers/net/ethernet/sfc/efx.c
2025-10-31T05:25:17.1048103Z patching file drivers/net/ethernet/sfc/efx_channels.c
2025-10-31T05:25:17.1049777Z patching file drivers/net/ethernet/sfc/efx_common.c
2025-10-31T05:25:17.1051038Z patching file drivers/net/ethernet/sfc/efx_common.h
2025-10-31T05:25:17.1051853Z patching file drivers/net/ethernet/sfc/ethtool_common.c
2025-10-31T05:25:17.1053775Z patching file drivers/net/ethernet/sfc/falcon/rx.c
2025-10-31T05:25:17.1055618Z patching file drivers/net/ethernet/sfc/farch.c
2025-10-31T05:25:17.1057566Z patching file drivers/net/ethernet/sfc/filter.h
2025-10-31T05:25:17.1058878Z patching file drivers/net/ethernet/sfc/mcdi.c
2025-10-31T05:25:17.1060784Z patching file drivers/net/ethernet/sfc/mcdi_port_common.c
2025-10-31T05:25:17.1062931Z patching file drivers/net/ethernet/sfc/net_driver.h
2025-10-31T05:25:17.1064531Z patching file drivers/net/ethernet/sfc/nic.c
2025-10-31T05:25:17.1065866Z patching file drivers/net/ethernet/sfc/ptp.c
2025-10-31T05:25:17.1067650Z patching file drivers/net/ethernet/sfc/ptp.h
2025-10-31T05:25:17.1068416Z patching file drivers/net/ethernet/sfc/rx_common.c
2025-10-31T05:25:17.1070209Z patching file drivers/net/ethernet/sfc/siena_sriov.c
2025-10-31T05:25:17.1071551Z patching file drivers/net/ethernet/sfc/tx.c
2025-10-31T05:25:17.1072649Z patching file drivers/net/ethernet/sfc/tx_tso.c
2025-10-31T05:25:17.1074000Z patching file drivers/net/ethernet/sgi/ioc3-eth.c
2025-10-31T05:25:17.1075675Z patching file drivers/net/ethernet/sis/sis900.c
2025-10-31T05:25:17.1077836Z patching file drivers/net/ethernet/smsc/epic100.c
2025-10-31T05:25:17.1079526Z patching file drivers/net/ethernet/smsc/smc911x.c
2025-10-31T05:25:17.1081169Z patching file drivers/net/ethernet/smsc/smc91x.h
2025-10-31T05:25:17.1083102Z patching file drivers/net/ethernet/smsc/smsc911x.c
2025-10-31T05:25:17.1085174Z patching file drivers/net/ethernet/socionext/netsec.c
2025-10-31T05:25:17.1086929Z patching file drivers/net/ethernet/stmicro/stmmac/altr_tse_pcs.c
2025-10-31T05:25:17.1087511Z patching file drivers/net/ethernet/stmicro/stmmac/altr_tse_pcs.h
2025-10-31T05:25:17.1088205Z patching file drivers/net/ethernet/stmicro/stmmac/common.h
2025-10-31T05:25:17.1089235Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
2025-10-31T05:25:17.1089912Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-generic.c
2025-10-31T05:25:17.1090606Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-intel-plat.c
2025-10-31T05:25:17.1091495Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-intel.c
2025-10-31T05:25:17.1092962Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c
2025-10-31T05:25:17.1094393Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-meson8b.c
2025-10-31T05:25:17.1095676Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
2025-10-31T05:25:17.1097093Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c
2025-10-31T05:25:17.1098833Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
2025-10-31T05:25:17.1100248Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c
2025-10-31T05:25:17.1101685Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c
2025-10-31T05:25:17.1104299Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-sunxi.c
2025-10-31T05:25:17.1105129Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac1000.h
2025-10-31T05:25:17.1106435Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac1000_dma.c
2025-10-31T05:25:17.1107706Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c
2025-10-31T05:25:17.1109708Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac4_descs.c
2025-10-31T05:25:17.1111190Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.c
2025-10-31T05:25:17.1112755Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.c
2025-10-31T05:25:17.1113645Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac5.c
2025-10-31T05:25:17.1115175Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac_dma.h
2025-10-31T05:25:17.1116293Z patching file drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h
2025-10-31T05:25:17.1118201Z patching file drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c
2025-10-31T05:25:17.1120587Z patching file drivers/net/ethernet/stmicro/stmmac/dwxgmac2_descs.c
2025-10-31T05:25:17.1121558Z patching file drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c
2025-10-31T05:25:17.1123175Z patching file drivers/net/ethernet/stmicro/stmmac/enh_desc.c
2025-10-31T05:25:17.1124414Z patching file drivers/net/ethernet/stmicro/stmmac/hwif.h
2025-10-31T05:25:17.1126328Z patching file drivers/net/ethernet/stmicro/stmmac/mmc_core.c
2025-10-31T05:25:17.1127465Z patching file drivers/net/ethernet/stmicro/stmmac/norm_desc.c
2025-10-31T05:25:17.1128649Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac.h
2025-10-31T05:25:17.1130122Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c
2025-10-31T05:25:17.1131867Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c
2025-10-31T05:25:17.1134556Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
2025-10-31T05:25:17.1140387Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
2025-10-31T05:25:17.1142604Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c
2025-10-31T05:25:17.1143613Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
2025-10-31T05:25:17.1145655Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_ptp.h
2025-10-31T05:25:17.1147446Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c
2025-10-31T05:25:17.1149138Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c
2025-10-31T05:25:17.1150760Z patching file drivers/net/ethernet/sun/Kconfig
2025-10-31T05:25:17.1152982Z patching file drivers/net/ethernet/sun/cassini.c
2025-10-31T05:25:17.1156382Z patching file drivers/net/ethernet/sun/ldmvsw.c
2025-10-31T05:25:17.1159533Z patching file drivers/net/ethernet/sun/niu.c
2025-10-31T05:25:17.1166468Z patching file drivers/net/ethernet/sun/niu.h
2025-10-31T05:25:17.1170006Z patching file drivers/net/ethernet/sun/sungem.c
2025-10-31T05:25:17.1173733Z patching file drivers/net/ethernet/sun/sunhme.c
2025-10-31T05:25:17.1177090Z patching file drivers/net/ethernet/sun/sunvnet.c
2025-10-31T05:25:17.1178470Z patching file drivers/net/ethernet/tehuti/tehuti.c
2025-10-31T05:25:17.1181304Z patching file drivers/net/ethernet/ti/am65-cpsw-nuss.c
2025-10-31T05:25:17.1185190Z patching file drivers/net/ethernet/ti/am65-cpts.c
2025-10-31T05:25:17.1186908Z patching file drivers/net/ethernet/ti/cpsw.c
2025-10-31T05:25:17.1188989Z patching file drivers/net/ethernet/ti/cpsw_ale.c
2025-10-31T05:25:17.1191190Z patching file drivers/net/ethernet/ti/cpsw_new.c
2025-10-31T05:25:17.1193950Z patching file drivers/net/ethernet/ti/cpsw_priv.c
2025-10-31T05:25:17.1195639Z patching file drivers/net/ethernet/ti/cpsw_priv.h
2025-10-31T05:25:17.1197002Z patching file drivers/net/ethernet/ti/cpts.c
2025-10-31T05:25:17.1198799Z patching file drivers/net/ethernet/ti/davinci_emac.c
2025-10-31T05:25:17.1201532Z patching file drivers/net/ethernet/ti/netcp_core.c
2025-10-31T05:25:17.1204916Z patching file drivers/net/ethernet/ti/tlan.c
2025-10-31T05:25:17.1208020Z patching file drivers/net/ethernet/toshiba/ps3_gelic_net.c
2025-10-31T05:25:17.1210523Z patching file drivers/net/ethernet/toshiba/ps3_gelic_net.h
2025-10-31T05:25:17.1211914Z patching file drivers/net/ethernet/toshiba/ps3_gelic_wireless.c
2025-10-31T05:25:17.1215080Z patching file drivers/net/ethernet/toshiba/spider_net.c
2025-10-31T05:25:17.1217855Z patching file drivers/net/ethernet/tundra/tsi108_eth.c
2025-10-31T05:25:17.1219996Z patching file drivers/net/ethernet/wiznet/w5100.c
2025-10-31T05:25:17.1222344Z patching file drivers/net/ethernet/xilinx/ll_temac_main.c
2025-10-31T05:25:17.1224713Z patching file drivers/net/ethernet/xilinx/xilinx_axienet.h
2025-10-31T05:25:17.1226549Z patching file drivers/net/ethernet/xilinx/xilinx_axienet_main.c
2025-10-31T05:25:17.1230969Z patching file drivers/net/ethernet/xilinx/xilinx_emaclite.c
2025-10-31T05:25:17.1233583Z patching file drivers/net/ethernet/xircom/xirc2ps_cs.c
2025-10-31T05:25:17.1236007Z patching file drivers/net/ethernet/xscale/ixp4xx_eth.c
2025-10-31T05:25:17.1237659Z patching file drivers/net/fddi/Kconfig
2025-10-31T05:25:17.1239445Z patching file drivers/net/fddi/defxx.c
2025-10-31T05:25:17.1244179Z patching file drivers/net/fddi/defza.c
2025-10-31T05:25:17.1245508Z patching file drivers/net/fjes/fjes_hw.c
2025-10-31T05:25:17.1247563Z patching file drivers/net/fjes/fjes_main.c
2025-10-31T05:25:17.1249917Z patching file drivers/net/geneve.c
2025-10-31T05:25:17.1254031Z patching file drivers/net/gtp.c
2025-10-31T05:25:17.1256684Z patching file drivers/net/hamradio/6pack.c
2025-10-31T05:25:17.1258238Z patching file drivers/net/hamradio/baycom_epp.c
2025-10-31T05:25:17.1260316Z patching file drivers/net/hamradio/bpqether.c
2025-10-31T05:25:17.1261133Z patching file drivers/net/hamradio/mkiss.c
2025-10-31T05:25:17.1263194Z patching file drivers/net/hamradio/scc.c
2025-10-31T05:25:17.1265600Z patching file drivers/net/hamradio/yam.c
2025-10-31T05:25:17.1267361Z patching file drivers/net/hippi/rrunner.c
2025-10-31T05:25:17.1269060Z patching file drivers/net/hyperv/Kconfig
2025-10-31T05:25:17.1270129Z patching file drivers/net/hyperv/hyperv_net.h
2025-10-31T05:25:17.1272655Z patching file drivers/net/hyperv/netvsc.c
2025-10-31T05:25:17.1275856Z patching file drivers/net/hyperv/netvsc_drv.c
2025-10-31T05:25:17.1283131Z patching file drivers/net/hyperv/rndis_filter.c
2025-10-31T05:25:17.1283484Z patching file drivers/net/ieee802154/Kconfig
2025-10-31T05:25:17.1283818Z patching file drivers/net/ieee802154/adf7242.c
2025-10-31T05:25:17.1285063Z patching file drivers/net/ieee802154/at86rf230.c
2025-10-31T05:25:17.1287073Z patching file drivers/net/ieee802154/atusb.c
2025-10-31T05:25:17.1290134Z patching file drivers/net/ieee802154/ca8210.c
2025-10-31T05:25:17.1293796Z patching file drivers/net/ieee802154/cc2520.c
2025-10-31T05:25:17.1295485Z patching file drivers/net/ieee802154/mac802154_hwsim.c
2025-10-31T05:25:17.1297379Z patching file drivers/net/ieee802154/mcr20a.c
2025-10-31T05:25:17.1299052Z patching file drivers/net/ifb.c
2025-10-31T05:25:17.1300627Z patching file drivers/net/ipa/gsi.c
2025-10-31T05:25:17.1303182Z patching file drivers/net/ipa/gsi_private.h
2025-10-31T05:25:17.1306158Z patching file drivers/net/ipa/gsi_reg.h
2025-10-31T05:25:17.1306674Z patching file drivers/net/ipa/gsi_trans.c
2025-10-31T05:25:17.1307486Z patching file drivers/net/ipa/ipa.h
2025-10-31T05:25:17.1308079Z patching file drivers/net/ipa/ipa_cmd.c
2025-10-31T05:25:17.1309164Z patching file drivers/net/ipa/ipa_data.h
2025-10-31T05:25:17.1310888Z patching file drivers/net/ipa/ipa_endpoint.c
2025-10-31T05:25:17.1313120Z patching file drivers/net/ipa/ipa_endpoint.h
2025-10-31T05:25:17.1314811Z patching file drivers/net/ipa/ipa_main.c
2025-10-31T05:25:17.1315661Z patching file drivers/net/ipa/ipa_mem.c
2025-10-31T05:25:17.1317563Z patching file drivers/net/ipa/ipa_modem.c
2025-10-31T05:25:17.1318018Z patching file drivers/net/ipa/ipa_qmi.c
2025-10-31T05:25:17.1327101Z patching file drivers/net/ipa/ipa_qmi_msg.c
2025-10-31T05:25:17.1327537Z patching file drivers/net/ipa/ipa_qmi_msg.h
2025-10-31T05:25:17.1327902Z patching file drivers/net/ipa/ipa_table.c
2025-10-31T05:25:17.1328246Z patching file drivers/net/ipa/ipa_table.h
2025-10-31T05:25:17.1328616Z patching file drivers/net/ipvlan/ipvlan_core.c
2025-10-31T05:25:17.1328966Z patching file drivers/net/ipvlan/ipvlan_l3s.c
2025-10-31T05:25:17.1329342Z patching file drivers/net/ipvlan/ipvlan_main.c
2025-10-31T05:25:17.1329689Z patching file drivers/net/ipvlan/ipvtap.c
2025-10-31T05:25:17.1330495Z patching file drivers/net/loopback.c
2025-10-31T05:25:17.1332902Z patching file drivers/net/macsec.c
2025-10-31T05:25:17.1339142Z patching file drivers/net/macvlan.c
2025-10-31T05:25:17.1341180Z patching file drivers/net/macvtap.c
2025-10-31T05:25:17.1342187Z patching file drivers/net/mdio/mdio-aspeed.c
2025-10-31T05:25:17.1343324Z patching file drivers/net/mdio/mdio-bcm-unimac.c
2025-10-31T05:25:17.1344392Z patching file drivers/net/mdio/mdio-bitbang.c
2025-10-31T05:25:17.1345298Z patching file drivers/net/mdio/mdio-cavium.c
2025-10-31T05:25:17.1346073Z patching file drivers/net/mdio/mdio-gpio.c
2025-10-31T05:25:17.1347115Z patching file drivers/net/mdio/mdio-ipq4019.c
2025-10-31T05:25:17.1347964Z patching file drivers/net/mdio/mdio-ipq8064.c
2025-10-31T05:25:17.1349253Z patching file drivers/net/mdio/mdio-mscc-miim.c
2025-10-31T05:25:17.1350194Z patching file drivers/net/mdio/mdio-mux-bcm-iproc.c
2025-10-31T05:25:17.1351185Z patching file drivers/net/mdio/mdio-mux-gpio.c
2025-10-31T05:25:17.1352286Z patching file drivers/net/mdio/mdio-mux-meson-g12a.c
2025-10-31T05:25:17.1353326Z patching file drivers/net/mdio/mdio-mux-mmioreg.c
2025-10-31T05:25:17.1354346Z patching file drivers/net/mdio/mdio-mux-multiplexer.c
2025-10-31T05:25:17.1354910Z patching file drivers/net/mdio/mdio-mux.c
2025-10-31T05:25:17.1356168Z patching file drivers/net/mdio/mdio-mvusb.c
2025-10-31T05:25:17.1358275Z patching file drivers/net/mdio/mdio-octeon.c
2025-10-31T05:25:17.1359363Z patching file drivers/net/mdio/mdio-thunder.c
2025-10-31T05:25:17.1360089Z patching file drivers/net/mdio/mdio-xgene.c
2025-10-31T05:25:17.1360771Z patching file drivers/net/mdio/of_mdio.c
2025-10-31T05:25:17.1361267Z patching file drivers/net/net_failover.c
2025-10-31T05:25:17.1363857Z patching file drivers/net/netconsole.c
2025-10-31T05:25:17.1364607Z patching file drivers/net/netdevsim/bpf.c
2025-10-31T05:25:17.1366085Z patching file drivers/net/netdevsim/dev.c
2025-10-31T05:25:17.1367905Z patching file drivers/net/netdevsim/health.c
2025-10-31T05:25:17.1368972Z patching file drivers/net/netdevsim/ipsec.c
2025-10-31T05:25:17.1370239Z patching file drivers/net/netdevsim/netdev.c
2025-10-31T05:25:17.1371376Z patching file drivers/net/netdevsim/netdevsim.h
2025-10-31T05:25:17.1372561Z patching file drivers/net/netdevsim/udp_tunnels.c
2025-10-31T05:25:17.1373482Z patching file drivers/net/ntb_netdev.c
2025-10-31T05:25:17.1374978Z patching file drivers/net/phy/aquantia_main.c
2025-10-31T05:25:17.1376459Z patching file drivers/net/phy/at803x.c
2025-10-31T05:25:17.1377703Z patching file drivers/net/phy/bcm-phy-lib.c
2025-10-31T05:25:17.1378759Z patching file drivers/net/phy/bcm7xxx.c
2025-10-31T05:25:17.1379969Z patching file drivers/net/phy/bcm84881.c
2025-10-31T05:25:17.1380792Z patching file drivers/net/phy/broadcom.c
2025-10-31T05:25:17.1382957Z patching file drivers/net/phy/dp83640.c
2025-10-31T05:25:17.1384362Z patching file drivers/net/phy/dp83640_reg.h
2025-10-31T05:25:17.1385155Z patching file drivers/net/phy/dp83822.c
2025-10-31T05:25:17.1386849Z patching file drivers/net/phy/dp83848.c
2025-10-31T05:25:17.1387559Z patching file drivers/net/phy/dp83867.c
2025-10-31T05:25:17.1388792Z patching file drivers/net/phy/dp83869.c
2025-10-31T05:25:17.1390055Z patching file drivers/net/phy/dp83tc811.c
2025-10-31T05:25:17.1390984Z patching file drivers/net/phy/intel-xway.c
2025-10-31T05:25:17.1391848Z patching file drivers/net/phy/lxt.c
2025-10-31T05:25:17.1393494Z patching file drivers/net/phy/marvell.c
2025-10-31T05:25:17.1395948Z patching file drivers/net/phy/marvell10g.c
2025-10-31T05:25:17.1397068Z patching file drivers/net/phy/mdio_bus.c
2025-10-31T05:25:17.1398340Z patching file drivers/net/phy/mdio_device.c
2025-10-31T05:25:17.1398916Z patching file drivers/net/phy/mdio_devres.c
2025-10-31T05:25:17.1399679Z patching file drivers/net/phy/meson-gxl.c
2025-10-31T05:25:17.1400852Z patching file drivers/net/phy/micrel.c
2025-10-31T05:25:17.1402645Z patching file drivers/net/phy/microchip.c
2025-10-31T05:25:17.1403941Z patching file drivers/net/phy/microchip_t1.c
2025-10-31T05:25:17.1405039Z patching file drivers/net/phy/mscc/mscc.h
2025-10-31T05:25:17.1406810Z patching file drivers/net/phy/mscc/mscc_macsec.c
2025-10-31T05:25:17.1408210Z patching file drivers/net/phy/mscc/mscc_macsec.h
2025-10-31T05:25:17.1409884Z patching file drivers/net/phy/mscc/mscc_main.c
2025-10-31T05:25:17.1413610Z patching file drivers/net/phy/mscc/mscc_ptp.c
2025-10-31T05:25:17.1415577Z patching file drivers/net/phy/mscc/mscc_ptp.h
2025-10-31T05:25:17.1416719Z patching file drivers/net/phy/phy-core.c
2025-10-31T05:25:17.1418625Z patching file drivers/net/phy/phy.c
2025-10-31T05:25:17.1421893Z patching file drivers/net/phy/phy_device.c
2025-10-31T05:25:17.1425115Z patching file drivers/net/phy/phy_led_triggers.c
2025-10-31T05:25:17.1426775Z patching file drivers/net/phy/phylink.c
2025-10-31T05:25:17.1429458Z patching file drivers/net/phy/realtek.c
2025-10-31T05:25:17.1430796Z patching file drivers/net/phy/sfp-bus.c
2025-10-31T05:25:17.1433212Z patching file drivers/net/phy/sfp.c
2025-10-31T05:25:17.1436343Z patching file drivers/net/phy/smsc.c
2025-10-31T05:25:17.1437908Z patching file drivers/net/phy/vitesse.c
2025-10-31T05:25:17.1439324Z patching file drivers/net/phy/xilinx_gmii2rgmii.c
2025-10-31T05:25:17.1440229Z patching file drivers/net/plip/plip.c
2025-10-31T05:25:17.1442598Z patching file drivers/net/ppp/ppp_async.c
2025-10-31T05:25:17.1444783Z patching file drivers/net/ppp/ppp_generic.c
2025-10-31T05:25:17.1447800Z patching file drivers/net/ppp/ppp_synctty.c
2025-10-31T05:25:17.1449021Z patching file drivers/net/ppp/pptp.c
2025-10-31T05:25:17.1450914Z patching file drivers/net/slip/slhc.c
2025-10-31T05:25:17.1452729Z patching file drivers/net/slip/slip.c
2025-10-31T05:25:17.1454829Z patching file drivers/net/sungem_phy.c
2025-10-31T05:25:17.1456629Z patching file drivers/net/tap.c
2025-10-31T05:25:17.1459127Z patching file drivers/net/team/team.c
2025-10-31T05:25:17.1462544Z patching file drivers/net/thunderbolt.c
2025-10-31T05:25:17.1465101Z patching file drivers/net/tun.c
2025-10-31T05:25:17.1469032Z patching file drivers/net/usb/Kconfig
2025-10-31T05:25:17.1470629Z patching file drivers/net/usb/aqc111.c
2025-10-31T05:25:17.1472786Z patching file drivers/net/usb/ax88172a.c
2025-10-31T05:25:17.1474154Z patching file drivers/net/usb/ax88179_178a.c
2025-10-31T05:25:17.1476744Z patching file drivers/net/usb/cdc-phonet.c
2025-10-31T05:25:17.1477513Z patching file drivers/net/usb/cdc_eem.c
2025-10-31T05:25:17.1479081Z patching file drivers/net/usb/cdc_ether.c
2025-10-31T05:25:17.1481049Z patching file drivers/net/usb/cdc_mbim.c
2025-10-31T05:25:17.1483115Z patching file drivers/net/usb/cdc_ncm.c
2025-10-31T05:25:17.1485682Z patching file drivers/net/usb/ch9200.c
2025-10-31T05:25:17.1486690Z patching file drivers/net/usb/cx82310_eth.c
2025-10-31T05:25:17.1487860Z patching file drivers/net/usb/dm9601.c
2025-10-31T05:25:17.1489045Z patching file drivers/net/usb/gl620a.c
2025-10-31T05:25:17.1490980Z patching file drivers/net/usb/hso.c
2025-10-31T05:25:17.1494459Z patching file drivers/net/usb/ipheth.c
2025-10-31T05:25:17.1495623Z patching file drivers/net/usb/kalmia.c
2025-10-31T05:25:17.1497233Z patching file drivers/net/usb/kaweth.c
2025-10-31T05:25:17.1499829Z patching file drivers/net/usb/lan78xx.c
2025-10-31T05:25:17.1506563Z patching file drivers/net/usb/mcs7830.c
2025-10-31T05:25:17.1508296Z patching file drivers/net/usb/pegasus.c
2025-10-31T05:25:17.1510831Z patching file drivers/net/usb/plusb.c
2025-10-31T05:25:17.1511825Z patching file drivers/net/usb/qmi_wwan.c
2025-10-31T05:25:17.1516076Z patching file drivers/net/usb/r8152.c
2025-10-31T05:25:17.1520517Z patching file drivers/net/usb/rndis_host.c
2025-10-31T05:25:17.1522147Z patching file drivers/net/usb/rtl8150.c
2025-10-31T05:25:17.1524214Z patching file drivers/net/usb/sierra_net.c
2025-10-31T05:25:17.1526209Z patching file drivers/net/usb/smsc75xx.c
2025-10-31T05:25:17.1528867Z patching file drivers/net/usb/smsc95xx.c
2025-10-31T05:25:17.1532243Z patching file drivers/net/usb/sr9700.c
2025-10-31T05:25:17.1533611Z patching file drivers/net/usb/sr9800.c
2025-10-31T05:25:17.1535652Z patching file drivers/net/usb/usbnet.c
2025-10-31T05:25:17.1538473Z patching file drivers/net/usb/zaurus.c
2025-10-31T05:25:17.1539936Z patching file drivers/net/veth.c
2025-10-31T05:25:17.1542722Z patching file drivers/net/virtio_net.c
2025-10-31T05:25:17.1548107Z patching file drivers/net/vmxnet3/vmxnet3_drv.c
2025-10-31T05:25:17.1551574Z patching file drivers/net/vmxnet3/vmxnet3_ethtool.c
2025-10-31T05:25:17.1553814Z patching file drivers/net/vrf.c
2025-10-31T05:25:17.1557350Z patching file drivers/net/vxlan.c
2025-10-31T05:25:17.1566657Z patching file drivers/net/vxlan/Makefile
2025-10-31T05:25:17.1567374Z patching file drivers/net/vxlan/vxlan_core.c
2025-10-31T05:25:17.1577729Z patching file drivers/net/wan/Kconfig
2025-10-31T05:25:17.1579450Z patching file drivers/net/wan/farsync.c
2025-10-31T05:25:17.1582234Z patching file drivers/net/wan/fsl_ucc_hdlc.c
2025-10-31T05:25:17.1584285Z patching file drivers/net/wan/hdlc_ppp.c
2025-10-31T05:25:17.1585271Z patching file drivers/net/wan/hdlc_x25.c
2025-10-31T05:25:17.1586992Z patching file drivers/net/wan/lapbether.c
2025-10-31T05:25:17.1589125Z patching file drivers/net/wan/lmc/lmc_main.c
2025-10-31T05:25:17.1591426Z patching file drivers/net/wimax/i2400m/op-rfkill.c
2025-10-31T05:25:17.1591863Z patching file drivers/net/wireguard/Makefile
2025-10-31T05:25:17.1592857Z patching file drivers/net/wireguard/allowedips.c
2025-10-31T05:25:17.1594798Z patching file drivers/net/wireguard/allowedips.h
2025-10-31T05:25:17.1595556Z patching file drivers/net/wireguard/device.c
2025-10-31T05:25:17.1597278Z patching file drivers/net/wireguard/device.h
2025-10-31T05:25:17.1598037Z patching file drivers/net/wireguard/main.c
2025-10-31T05:25:17.1599122Z patching file drivers/net/wireguard/netlink.c
2025-10-31T05:25:17.1600995Z patching file drivers/net/wireguard/noise.c
2025-10-31T05:25:17.1602587Z patching file drivers/net/wireguard/peer.c
2025-10-31T05:25:17.1604195Z patching file drivers/net/wireguard/peer.h
2025-10-31T05:25:17.1604858Z patching file drivers/net/wireguard/queueing.c
2025-10-31T05:25:17.1606136Z patching file drivers/net/wireguard/queueing.h
2025-10-31T05:25:17.1607417Z patching file drivers/net/wireguard/ratelimiter.c
2025-10-31T05:25:17.1608291Z patching file drivers/net/wireguard/receive.c
2025-10-31T05:25:17.1610347Z patching file drivers/net/wireguard/selftest/allowedips.c
2025-10-31T05:25:17.1612460Z patching file drivers/net/wireguard/selftest/ratelimiter.c
2025-10-31T05:25:17.1613267Z patching file drivers/net/wireguard/send.c
2025-10-31T05:25:17.1615256Z patching file drivers/net/wireguard/socket.c
2025-10-31T05:25:17.1616767Z patching file drivers/net/wireguard/timers.c
2025-10-31T05:25:17.1618016Z patching file drivers/net/wireless/admtek/adm8211.c
2025-10-31T05:25:17.1620981Z patching file drivers/net/wireless/ath/ar5523/ar5523.c
2025-10-31T05:25:17.1622960Z patching file drivers/net/wireless/ath/ath.h
2025-10-31T05:25:17.1624632Z patching file drivers/net/wireless/ath/ath10k/ahb.c
2025-10-31T05:25:17.1626806Z patching file drivers/net/wireless/ath/ath10k/core.c
2025-10-31T05:25:17.1630706Z patching file drivers/net/wireless/ath/ath10k/core.h
2025-10-31T05:25:17.1633450Z patching file drivers/net/wireless/ath/ath10k/debug.c
2025-10-31T05:25:17.1635796Z patching file drivers/net/wireless/ath/ath10k/debugfs_sta.c
2025-10-31T05:25:17.1637473Z patching file drivers/net/wireless/ath/ath10k/htc.c
2025-10-31T05:25:17.1639708Z patching file drivers/net/wireless/ath/ath10k/htt.h
2025-10-31T05:25:17.1643106Z patching file drivers/net/wireless/ath/ath10k/htt_rx.c
2025-10-31T05:25:17.1647716Z patching file drivers/net/wireless/ath/ath10k/htt_tx.c
2025-10-31T05:25:17.1649554Z patching file drivers/net/wireless/ath/ath10k/hw.h
2025-10-31T05:25:17.1655003Z patching file drivers/net/wireless/ath/ath10k/mac.c
2025-10-31T05:25:17.1662488Z patching file drivers/net/wireless/ath/ath10k/pci.c
2025-10-31T05:25:17.1665955Z patching file drivers/net/wireless/ath/ath10k/rx_desc.h
2025-10-31T05:25:17.1668119Z patching file drivers/net/wireless/ath/ath10k/sdio.c
2025-10-31T05:25:17.1671579Z patching file drivers/net/wireless/ath/ath10k/snoc.c
2025-10-31T05:25:17.1673708Z patching file drivers/net/wireless/ath/ath10k/targaddrs.h
2025-10-31T05:25:17.1675081Z patching file drivers/net/wireless/ath/ath10k/txrx.c
2025-10-31T05:25:17.1676239Z patching file drivers/net/wireless/ath/ath10k/usb.c
2025-10-31T05:25:17.1679245Z patching file drivers/net/wireless/ath/ath10k/wmi-tlv.c
2025-10-31T05:25:17.1685673Z patching file drivers/net/wireless/ath/ath10k/wmi.c
2025-10-31T05:25:17.1693507Z patching file drivers/net/wireless/ath/ath10k/wmi.h
2025-10-31T05:25:17.1698438Z patching file drivers/net/wireless/ath/ath10k/wow.c
2025-10-31T05:25:17.1700139Z patching file drivers/net/wireless/ath/ath11k/ahb.c
2025-10-31T05:25:17.1701495Z patching file drivers/net/wireless/ath/ath11k/core.c
2025-10-31T05:25:17.1703584Z patching file drivers/net/wireless/ath/ath11k/core.h
2025-10-31T05:25:17.1705276Z patching file drivers/net/wireless/ath/ath11k/dbring.c
2025-10-31T05:25:17.1706791Z patching file drivers/net/wireless/ath/ath11k/debug.h
2025-10-31T05:25:17.1707733Z patching file drivers/net/wireless/ath/ath11k/debugfs.c
2025-10-31T05:25:17.1710009Z patching file drivers/net/wireless/ath/ath11k/dp.h
2025-10-31T05:25:17.1713582Z patching file drivers/net/wireless/ath/ath11k/dp_rx.c
2025-10-31T05:25:17.1717847Z patching file drivers/net/wireless/ath/ath11k/dp_rx.h
2025-10-31T05:25:17.1719359Z patching file drivers/net/wireless/ath/ath11k/dp_tx.c
2025-10-31T05:25:17.1720936Z patching file drivers/net/wireless/ath/ath11k/hal.c
2025-10-31T05:25:17.1723524Z patching file drivers/net/wireless/ath/ath11k/hal.h
2025-10-31T05:25:17.1725065Z patching file drivers/net/wireless/ath/ath11k/hw.c
2025-10-31T05:25:17.1728379Z patching file drivers/net/wireless/ath/ath11k/mac.c
2025-10-31T05:25:17.1734077Z patching file drivers/net/wireless/ath/ath11k/mhi.c
2025-10-31T05:25:17.1735460Z patching file drivers/net/wireless/ath/ath11k/pci.c
2025-10-31T05:25:17.1737204Z patching file drivers/net/wireless/ath/ath11k/peer.c
2025-10-31T05:25:17.1738318Z patching file drivers/net/wireless/ath/ath11k/peer.h
2025-10-31T05:25:17.1739903Z patching file drivers/net/wireless/ath/ath11k/qmi.c
2025-10-31T05:25:17.1742719Z patching file drivers/net/wireless/ath/ath11k/qmi.h
2025-10-31T05:25:17.1744836Z patching file drivers/net/wireless/ath/ath11k/reg.c
2025-10-31T05:25:17.1745891Z patching file drivers/net/wireless/ath/ath11k/reg.h
2025-10-31T05:25:17.1747154Z patching file drivers/net/wireless/ath/ath11k/spectral.c
2025-10-31T05:25:17.1750505Z patching file drivers/net/wireless/ath/ath11k/wmi.c
2025-10-31T05:25:17.1757125Z patching file drivers/net/wireless/ath/ath11k/wmi.h
2025-10-31T05:25:17.1760887Z patching file drivers/net/wireless/ath/ath5k/Kconfig
2025-10-31T05:25:17.1762476Z patching file drivers/net/wireless/ath/ath5k/eeprom.c
2025-10-31T05:25:17.1765155Z patching file drivers/net/wireless/ath/ath5k/led.c
2025-10-31T05:25:17.1767046Z patching file drivers/net/wireless/ath/ath5k/mac80211-ops.c
2025-10-31T05:25:17.1767952Z patching file drivers/net/wireless/ath/ath5k/pci.c
2025-10-31T05:25:17.1768884Z patching file drivers/net/wireless/ath/ath6kl/bmi.c
2025-10-31T05:25:17.1770581Z patching file drivers/net/wireless/ath/ath6kl/debug.c
2025-10-31T05:25:17.1772787Z patching file drivers/net/wireless/ath/ath6kl/htc.h
2025-10-31T05:25:17.1774828Z patching file drivers/net/wireless/ath/ath6kl/htc_mbox.c
2025-10-31T05:25:17.1777911Z patching file drivers/net/wireless/ath/ath6kl/htc_pipe.c
2025-10-31T05:25:17.1780135Z patching file drivers/net/wireless/ath/ath6kl/usb.c
2025-10-31T05:25:17.1782822Z patching file drivers/net/wireless/ath/ath6kl/wmi.c
2025-10-31T05:25:17.1785817Z patching file drivers/net/wireless/ath/ath9k/Kconfig
2025-10-31T05:25:17.1786825Z patching file drivers/net/wireless/ath/ath9k/ahb.c
2025-10-31T05:25:17.1793033Z patching file drivers/net/wireless/ath/ath9k/antenna.c
2025-10-31T05:25:17.1793670Z patching file drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
2025-10-31T05:25:17.1794121Z patching file drivers/net/wireless/ath/ath9k/ar9003_hw.c
2025-10-31T05:25:17.1806155Z patching file drivers/net/wireless/ath/ath9k/ar9003_phy.h
2025-10-31T05:25:17.1806587Z patching file drivers/net/wireless/ath/ath9k/ath9k.h
2025-10-31T05:25:17.1806999Z patching file drivers/net/wireless/ath/ath9k/debug.c
2025-10-31T05:25:17.1807415Z patching file drivers/net/wireless/ath/ath9k/hif_usb.c
2025-10-31T05:25:17.1807808Z patching file drivers/net/wireless/ath/ath9k/htc.h
2025-10-31T05:25:17.1808261Z patching file drivers/net/wireless/ath/ath9k/htc_drv_beacon.c
2025-10-31T05:25:17.1808700Z patching file drivers/net/wireless/ath/ath9k/htc_drv_debug.c
2025-10-31T05:25:17.1809137Z patching file drivers/net/wireless/ath/ath9k/htc_drv_init.c
2025-10-31T05:25:17.1809577Z patching file drivers/net/wireless/ath/ath9k/htc_drv_main.c
2025-10-31T05:25:17.1810277Z patching file drivers/net/wireless/ath/ath9k/htc_drv_txrx.c
2025-10-31T05:25:17.1812415Z patching file drivers/net/wireless/ath/ath9k/htc_hst.c
2025-10-31T05:25:17.1820747Z patching file drivers/net/wireless/ath/ath9k/hw.c
2025-10-31T05:25:17.1821154Z patching file drivers/net/wireless/ath/ath9k/hw.h
2025-10-31T05:25:17.1821805Z patching file drivers/net/wireless/ath/ath9k/mac.h
2025-10-31T05:25:17.1822376Z patching file drivers/net/wireless/ath/ath9k/main.c
2025-10-31T05:25:17.1823151Z patching file drivers/net/wireless/ath/ath9k/pci.c
2025-10-31T05:25:17.1824868Z patching file drivers/net/wireless/ath/ath9k/wmi.c
2025-10-31T05:25:17.1827090Z patching file drivers/net/wireless/ath/ath9k/xmit.c
2025-10-31T05:25:17.1829651Z patching file drivers/net/wireless/ath/carl9170/Kconfig
2025-10-31T05:25:17.1830731Z patching file drivers/net/wireless/ath/carl9170/main.c
2025-10-31T05:25:17.1833334Z patching file drivers/net/wireless/ath/carl9170/tx.c
2025-10-31T05:25:17.1835290Z patching file drivers/net/wireless/ath/carl9170/usb.c
2025-10-31T05:25:17.1836988Z patching file drivers/net/wireless/ath/dfs_pattern_detector.c
2025-10-31T05:25:17.1837878Z patching file drivers/net/wireless/ath/key.c
2025-10-31T05:25:17.1839702Z patching file drivers/net/wireless/ath/regd.c
2025-10-31T05:25:17.1841360Z patching file drivers/net/wireless/ath/wcn36xx/dxe.c
2025-10-31T05:25:17.1843886Z patching file drivers/net/wireless/ath/wcn36xx/main.c
2025-10-31T05:25:17.1846010Z patching file drivers/net/wireless/ath/wcn36xx/pmc.c
2025-10-31T05:25:17.1847382Z patching file drivers/net/wireless/ath/wcn36xx/smd.c
2025-10-31T05:25:17.1850136Z patching file drivers/net/wireless/ath/wcn36xx/txrx.c
2025-10-31T05:25:17.1852573Z patching file drivers/net/wireless/ath/wcn36xx/txrx.h
2025-10-31T05:25:17.1853227Z patching file drivers/net/wireless/ath/wcn36xx/wcn36xx.h
2025-10-31T05:25:17.1853818Z patching file drivers/net/wireless/ath/wil6210/Kconfig
2025-10-31T05:25:17.1855907Z patching file drivers/net/wireless/ath/wil6210/debugfs.c
2025-10-31T05:25:17.1858151Z patching file drivers/net/wireless/ath/wil6210/txrx.c
2025-10-31T05:25:17.1860855Z patching file drivers/net/wireless/ath/wil6210/txrx.h
2025-10-31T05:25:17.1862677Z patching file drivers/net/wireless/ath/wil6210/txrx_edma.c
2025-10-31T05:25:17.1864305Z patching file drivers/net/wireless/ath/wil6210/txrx_edma.h
2025-10-31T05:25:17.1866200Z patching file drivers/net/wireless/atmel/at76c50x-usb.c
2025-10-31T05:25:17.1868067Z patching file drivers/net/wireless/atmel/atmel_cs.c
2025-10-31T05:25:17.1869165Z patching file drivers/net/wireless/broadcom/b43/b43.h
2025-10-31T05:25:17.1871431Z patching file drivers/net/wireless/broadcom/b43/dma.c
2025-10-31T05:25:17.1874961Z patching file drivers/net/wireless/broadcom/b43/main.c
2025-10-31T05:25:17.1879251Z patching file drivers/net/wireless/broadcom/b43/phy_g.c
2025-10-31T05:25:17.1883856Z patching file drivers/net/wireless/broadcom/b43/phy_n.c
2025-10-31T05:25:17.1892767Z patching file drivers/net/wireless/broadcom/b43/pio.c
2025-10-31T05:25:17.1893619Z patching file drivers/net/wireless/broadcom/b43legacy/b43legacy.h
2025-10-31T05:25:17.1895065Z patching file drivers/net/wireless/broadcom/b43legacy/phy.c
2025-10-31T05:25:17.1895797Z patching file drivers/net/wireless/broadcom/b43legacy/radio.c
2025-10-31T05:25:17.1896900Z patching file drivers/net/wireless/broadcom/brcm80211/Kconfig
2025-10-31T05:25:17.1897695Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.c
2025-10-31T05:25:17.1899008Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/bus.h
2025-10-31T05:25:17.1901410Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
2025-10-31T05:25:17.1906027Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/common.c
2025-10-31T05:25:17.1907599Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/core.c
2025-10-31T05:25:17.1909094Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/dmi.c
2025-10-31T05:25:17.1909973Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/firmware.c
2025-10-31T05:25:17.1911198Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/fweh.c
2025-10-31T05:25:17.1913212Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/msgbuf.c
2025-10-31T05:25:17.1915538Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c
2025-10-31T05:25:17.1918365Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.h
2025-10-31T05:25:17.1919579Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/pno.c
2025-10-31T05:25:17.1933904Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c
2025-10-31T05:25:17.1935247Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.c
2025-10-31T05:25:17.1935794Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/mac80211_if.c
2025-10-31T05:25:17.1936344Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_cmn.c
2025-10-31T05:25:17.1936888Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_lcn.c
2025-10-31T05:25:17.1943853Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c
2025-10-31T05:25:17.1957779Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy_shim.c
2025-10-31T05:25:17.1958418Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy_shim.h
2025-10-31T05:25:17.1960991Z patching file drivers/net/wireless/cisco/airo.c
2025-10-31T05:25:17.1969383Z patching file drivers/net/wireless/intel/ipw2x00/ipw2200.c
2025-10-31T05:25:17.1976773Z patching file drivers/net/wireless/intel/ipw2x00/libipw_rx.c
2025-10-31T05:25:17.1978405Z patching file drivers/net/wireless/intel/ipw2x00/libipw_tx.c
2025-10-31T05:25:17.1979237Z patching file drivers/net/wireless/intel/ipw2x00/libipw_wx.c
2025-10-31T05:25:17.1981382Z patching file drivers/net/wireless/intel/iwlegacy/3945-mac.c
2025-10-31T05:25:17.1985649Z patching file drivers/net/wireless/intel/iwlegacy/4965-mac.c
2025-10-31T05:25:17.1989668Z patching file drivers/net/wireless/intel/iwlegacy/4965-rs.c
2025-10-31T05:25:17.1993521Z patching file drivers/net/wireless/intel/iwlegacy/common.c
2025-10-31T05:25:17.1996059Z patching file drivers/net/wireless/intel/iwlwifi/cfg/22000.c
2025-10-31T05:25:17.1997433Z patching file drivers/net/wireless/intel/iwlwifi/dvm/mac80211.c
2025-10-31T05:25:17.1999223Z patching file drivers/net/wireless/intel/iwlwifi/dvm/main.c
2025-10-31T05:25:17.2016898Z patching file drivers/net/wireless/intel/iwlwifi/dvm/rs.c
2025-10-31T05:25:17.2017588Z patching file drivers/net/wireless/intel/iwlwifi/dvm/sta.c
2025-10-31T05:25:17.2018039Z patching file drivers/net/wireless/intel/iwlwifi/fw/acpi.c
2025-10-31T05:25:17.2018474Z patching file drivers/net/wireless/intel/iwlwifi/fw/acpi.h
2025-10-31T05:25:17.2018972Z patching file drivers/net/wireless/intel/iwlwifi/fw/api/commands.h
2025-10-31T05:25:17.2019455Z patching file drivers/net/wireless/intel/iwlwifi/fw/api/nvm-reg.h
2025-10-31T05:25:17.2019917Z patching file drivers/net/wireless/intel/iwlwifi/fw/api/scan.h
2025-10-31T05:25:17.2020348Z patching file drivers/net/wireless/intel/iwlwifi/fw/dbg.c
2025-10-31T05:25:17.2020800Z patching file drivers/net/wireless/intel/iwlwifi/fw/debugfs.c
2025-10-31T05:25:17.2021284Z patching file drivers/net/wireless/intel/iwlwifi/fw/error-dump.h
2025-10-31T05:25:17.2021718Z patching file drivers/net/wireless/intel/iwlwifi/fw/file.h
2025-10-31T05:25:17.2022332Z patching file drivers/net/wireless/intel/iwlwifi/fw/pnvm.c
2025-10-31T05:25:17.2022767Z patching file drivers/net/wireless/intel/iwlwifi/fw/pnvm.h
2025-10-31T05:25:17.2023218Z patching file drivers/net/wireless/intel/iwlwifi/fw/runtime.h
2025-10-31T05:25:17.2023668Z patching file drivers/net/wireless/intel/iwlwifi/iwl-config.h
2025-10-31T05:25:17.2024120Z patching file drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c
2025-10-31T05:25:17.2024554Z patching file drivers/net/wireless/intel/iwlwifi/iwl-drv.c
2025-10-31T05:25:17.2026316Z patching file drivers/net/wireless/intel/iwlwifi/iwl-drv.h
2025-10-31T05:25:17.2027326Z patching file drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c
2025-10-31T05:25:17.2029547Z patching file drivers/net/wireless/intel/iwlwifi/iwl-prph.h
2025-10-31T05:25:17.2030792Z patching file drivers/net/wireless/intel/iwlwifi/mvm/debugfs-vif.c
2025-10-31T05:25:17.2032688Z patching file drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c
2025-10-31T05:25:17.2043219Z patching file drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.c
2025-10-31T05:25:17.2043865Z patching file drivers/net/wireless/intel/iwlwifi/mvm/fw.c
2025-10-31T05:25:17.2045244Z patching file drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c
2025-10-31T05:25:17.2045717Z patching file drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
2025-10-31T05:25:17.2046893Z patching file drivers/net/wireless/intel/iwlwifi/mvm/mvm.h
2025-10-31T05:25:17.2049670Z patching file drivers/net/wireless/intel/iwlwifi/mvm/nvm.c
2025-10-31T05:25:17.2050971Z patching file drivers/net/wireless/intel/iwlwifi/mvm/ops.c
2025-10-31T05:25:17.2053849Z patching file drivers/net/wireless/intel/iwlwifi/mvm/power.c
2025-10-31T05:25:17.2062524Z patching file drivers/net/wireless/intel/iwlwifi/mvm/rs.c
2025-10-31T05:25:17.2062965Z patching file drivers/net/wireless/intel/iwlwifi/mvm/rs.h
2025-10-31T05:25:17.2063417Z patching file drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c
2025-10-31T05:25:17.2063852Z patching file drivers/net/wireless/intel/iwlwifi/mvm/scan.c
2025-10-31T05:25:17.2067175Z patching file drivers/net/wireless/intel/iwlwifi/mvm/sta.c
2025-10-31T05:25:17.2070729Z patching file drivers/net/wireless/intel/iwlwifi/mvm/time-event.c
2025-10-31T05:25:17.2073257Z patching file drivers/net/wireless/intel/iwlwifi/mvm/tx.c
2025-10-31T05:25:17.2075995Z patching file drivers/net/wireless/intel/iwlwifi/mvm/utils.c
2025-10-31T05:25:17.2084122Z patching file drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c
2025-10-31T05:25:17.2084622Z patching file drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info.c
2025-10-31T05:25:17.2085069Z patching file drivers/net/wireless/intel/iwlwifi/pcie/drv.c
2025-10-31T05:25:17.2085539Z patching file drivers/net/wireless/intel/iwlwifi/pcie/internal.h
2025-10-31T05:25:17.2085986Z patching file drivers/net/wireless/intel/iwlwifi/pcie/rx.c
2025-10-31T05:25:17.2087094Z patching file drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c
2025-10-31T05:25:17.2089422Z patching file drivers/net/wireless/intel/iwlwifi/pcie/trans.c
2025-10-31T05:25:17.2092568Z patching file drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c
2025-10-31T05:25:17.2094803Z patching file drivers/net/wireless/intel/iwlwifi/pcie/tx.c
2025-10-31T05:25:17.2097103Z patching file drivers/net/wireless/intel/iwlwifi/queue/tx.c
2025-10-31T05:25:17.2099259Z patching file drivers/net/wireless/intersil/orinoco/hw.c
2025-10-31T05:25:17.2100895Z patching file drivers/net/wireless/intersil/orinoco/orinoco_cs.c
2025-10-31T05:25:17.2102562Z patching file drivers/net/wireless/intersil/orinoco/orinoco_usb.c
2025-10-31T05:25:17.2112865Z patching file drivers/net/wireless/intersil/orinoco/spectrum_cs.c
2025-10-31T05:25:17.2114010Z patching file drivers/net/wireless/intersil/p54/fwio.c
2025-10-31T05:25:17.2114864Z patching file drivers/net/wireless/intersil/p54/main.c
2025-10-31T05:25:17.2115493Z patching file drivers/net/wireless/intersil/p54/p54.h
2025-10-31T05:25:17.2116882Z patching file drivers/net/wireless/intersil/p54/p54spi.c
2025-10-31T05:25:17.2117752Z patching file drivers/net/wireless/intersil/p54/txrx.c
2025-10-31T05:25:17.2118593Z patching file drivers/net/wireless/mac80211_hwsim.c
2025-10-31T05:25:17.2119694Z patching file drivers/net/wireless/marvell/libertas/Kconfig
2025-10-31T05:25:17.2120338Z patching file drivers/net/wireless/marvell/libertas/cfg.c
2025-10-31T05:25:17.2122405Z patching file drivers/net/wireless/marvell/libertas/cmd.c
2025-10-31T05:25:17.2123212Z patching file drivers/net/wireless/marvell/libertas/cmdresp.c
2025-10-31T05:25:17.2123912Z patching file drivers/net/wireless/marvell/libertas/if_usb.c
2025-10-31T05:25:17.2124925Z patching file drivers/net/wireless/marvell/libertas/main.c
2025-10-31T05:25:17.2126284Z patching file drivers/net/wireless/marvell/libertas/mesh.c
2025-10-31T05:25:17.2127660Z patching file drivers/net/wireless/marvell/libertas_tf/if_usb.c
2025-10-31T05:25:17.2128668Z patching file drivers/net/wireless/marvell/mwifiex/11h.c
2025-10-31T05:25:17.2129738Z patching file drivers/net/wireless/marvell/mwifiex/11n.c
2025-10-31T05:25:17.2131364Z patching file drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c
2025-10-31T05:25:17.2133560Z patching file drivers/net/wireless/marvell/mwifiex/cfg80211.c
2025-10-31T05:25:17.2137141Z patching file drivers/net/wireless/marvell/mwifiex/debugfs.c
2025-10-31T05:25:17.2139208Z patching file drivers/net/wireless/marvell/mwifiex/fw.h
2025-10-31T05:25:17.2141928Z patching file drivers/net/wireless/marvell/mwifiex/ioctl.h
2025-10-31T05:25:17.2143827Z patching file drivers/net/wireless/marvell/mwifiex/join.c
2025-10-31T05:25:17.2144295Z patching file drivers/net/wireless/marvell/mwifiex/main.c
2025-10-31T05:25:17.2147335Z patching file drivers/net/wireless/marvell/mwifiex/main.h
2025-10-31T05:25:17.2149365Z patching file drivers/net/wireless/marvell/mwifiex/pcie.c
2025-10-31T05:25:17.2153320Z patching file drivers/net/wireless/marvell/mwifiex/pcie.h
2025-10-31T05:25:17.2155377Z patching file drivers/net/wireless/marvell/mwifiex/scan.c
2025-10-31T05:25:17.2157820Z patching file drivers/net/wireless/marvell/mwifiex/sdio.c
2025-10-31T05:25:17.2160147Z patching file drivers/net/wireless/marvell/mwifiex/sta_event.c
2025-10-31T05:25:17.2161683Z patching file drivers/net/wireless/marvell/mwifiex/sta_rx.c
2025-10-31T05:25:17.2162704Z patching file drivers/net/wireless/marvell/mwifiex/tdls.c
2025-10-31T05:25:17.2164377Z patching file drivers/net/wireless/marvell/mwifiex/uap_cmd.c
2025-10-31T05:25:17.2165884Z patching file drivers/net/wireless/marvell/mwifiex/uap_txrx.c
2025-10-31T05:25:17.2167412Z patching file drivers/net/wireless/marvell/mwifiex/usb.c
2025-10-31T05:25:17.2168773Z patching file drivers/net/wireless/marvell/mwifiex/util.c
2025-10-31T05:25:17.2171505Z patching file drivers/net/wireless/marvell/mwl8k.c
2025-10-31T05:25:17.2176711Z patching file drivers/net/wireless/mediatek/mt76/dma.c
2025-10-31T05:25:17.2178443Z patching file drivers/net/wireless/mediatek/mt76/mac80211.c
2025-10-31T05:25:17.2180574Z patching file drivers/net/wireless/mediatek/mt76/mt76.h
2025-10-31T05:25:17.2181694Z patching file drivers/net/wireless/mediatek/mt76/mt7603/core.c
2025-10-31T05:25:17.2182602Z patching file drivers/net/wireless/mediatek/mt76/mt7603/eeprom.c
2025-10-31T05:25:17.2183826Z patching file drivers/net/wireless/mediatek/mt76/mt7603/mac.c
2025-10-31T05:25:17.2185291Z patching file drivers/net/wireless/mediatek/mt76/mt7603/main.c
2025-10-31T05:25:17.2186358Z patching file drivers/net/wireless/mediatek/mt76/mt7603/pci.c
2025-10-31T05:25:17.2187184Z patching file drivers/net/wireless/mediatek/mt76/mt7603/soc.c
2025-10-31T05:25:17.2187649Z patching file drivers/net/wireless/mediatek/mt76/mt7615/dma.c
2025-10-31T05:25:17.2188503Z patching file drivers/net/wireless/mediatek/mt76/mt7615/eeprom.c
2025-10-31T05:25:17.2190256Z patching file drivers/net/wireless/mediatek/mt76/mt7615/mac.c
2025-10-31T05:25:17.2192686Z patching file drivers/net/wireless/mediatek/mt76/mt7615/main.c
2025-10-31T05:25:17.2195328Z patching file drivers/net/wireless/mediatek/mt76/mt7615/mcu.c
2025-10-31T05:25:17.2198190Z patching file drivers/net/wireless/mediatek/mt76/mt7615/mmio.c
2025-10-31T05:25:17.2198869Z patching file drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h
2025-10-31T05:25:17.2201014Z patching file drivers/net/wireless/mediatek/mt76/mt7615/pci_init.c
2025-10-31T05:25:17.2201484Z patching file drivers/net/wireless/mediatek/mt76/mt7615/pci_mac.c
2025-10-31T05:25:17.2202434Z patching file drivers/net/wireless/mediatek/mt76/mt7615/sdio_txrx.c
2025-10-31T05:25:17.2203705Z patching file drivers/net/wireless/mediatek/mt76/mt7615/usb_sdio.c
2025-10-31T05:25:17.2205080Z patching file drivers/net/wireless/mediatek/mt76/mt76x0/eeprom.c
2025-10-31T05:25:17.2205986Z patching file drivers/net/wireless/mediatek/mt76/mt76x0/init.c
2025-10-31T05:25:17.2206689Z patching file drivers/net/wireless/mediatek/mt76/mt76x0/pci.c
2025-10-31T05:25:17.2207723Z patching file drivers/net/wireless/mediatek/mt76/mt76x0/phy.c
2025-10-31T05:25:17.2209497Z patching file drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.c
2025-10-31T05:25:17.2210574Z patching file drivers/net/wireless/mediatek/mt76/mt76x02_mac.c
2025-10-31T05:25:17.2212593Z patching file drivers/net/wireless/mediatek/mt76/mt76x02_usb_mcu.c
2025-10-31T05:25:17.2213437Z patching file drivers/net/wireless/mediatek/mt76/mt76x02_util.c
2025-10-31T05:25:17.2215161Z patching file drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.c
2025-10-31T05:25:17.2219576Z patching file drivers/net/wireless/mediatek/mt76/mt76x2/pci.c
2025-10-31T05:25:17.2220063Z patching file drivers/net/wireless/mediatek/mt76/mt76x2/usb.c
2025-10-31T05:25:17.2220550Z patching file drivers/net/wireless/mediatek/mt76/mt76x2/usb_init.c
2025-10-31T05:25:17.2221021Z patching file drivers/net/wireless/mediatek/mt76/mt7915/debugfs.c
2025-10-31T05:25:17.2221487Z patching file drivers/net/wireless/mediatek/mt76/mt7915/eeprom.c
2025-10-31T05:25:17.2221932Z patching file drivers/net/wireless/mediatek/mt76/mt7915/init.c
2025-10-31T05:25:17.2223404Z patching file drivers/net/wireless/mediatek/mt76/mt7915/mac.c
2025-10-31T05:25:17.2225745Z patching file drivers/net/wireless/mediatek/mt76/mt7915/main.c
2025-10-31T05:25:17.2233324Z patching file drivers/net/wireless/mediatek/mt76/mt7915/mcu.c
2025-10-31T05:25:17.2234453Z patching file drivers/net/wireless/mediatek/mt76/mt7915/mt7915.h
2025-10-31T05:25:17.2235119Z patching file drivers/net/wireless/mediatek/mt76/mt7915/pci.c
2025-10-31T05:25:17.2235834Z patching file drivers/net/wireless/mediatek/mt76/sdio.c
2025-10-31T05:25:17.2236927Z patching file drivers/net/wireless/mediatek/mt76/testmode.c
2025-10-31T05:25:17.2237814Z patching file drivers/net/wireless/mediatek/mt76/tx.c
2025-10-31T05:25:17.2238567Z patching file drivers/net/wireless/mediatek/mt76/usb.c
2025-10-31T05:25:17.2239272Z patching file drivers/net/wireless/mediatek/mt7601u/dma.c
2025-10-31T05:25:17.2239868Z patching file drivers/net/wireless/mediatek/mt7601u/eeprom.c
2025-10-31T05:25:17.2240708Z patching file drivers/net/wireless/mediatek/mt7601u/usb.c
2025-10-31T05:25:17.2242499Z patching file drivers/net/wireless/microchip/wilc1000/cfg80211.c
2025-10-31T05:25:17.2243986Z patching file drivers/net/wireless/microchip/wilc1000/hif.c
2025-10-31T05:25:17.2245667Z patching file drivers/net/wireless/microchip/wilc1000/netdev.c
2025-10-31T05:25:17.2247109Z patching file drivers/net/wireless/microchip/wilc1000/sdio.c
2025-10-31T05:25:17.2248231Z patching file drivers/net/wireless/quantenna/qtnfmac/core.c
2025-10-31T05:25:17.2249521Z patching file drivers/net/wireless/quantenna/qtnfmac/event.c
2025-10-31T05:25:17.2250337Z patching file drivers/net/wireless/quantenna/qtnfmac/pcie/pcie.c
2025-10-31T05:25:17.2252096Z patching file drivers/net/wireless/ralink/rt2x00/rt2400pci.c
2025-10-31T05:25:17.2253733Z patching file drivers/net/wireless/ralink/rt2x00/rt2400pci.h
2025-10-31T05:25:17.2255624Z patching file drivers/net/wireless/ralink/rt2x00/rt2500pci.c
2025-10-31T05:25:17.2257137Z patching file drivers/net/wireless/ralink/rt2x00/rt2500pci.h
2025-10-31T05:25:17.2258820Z patching file drivers/net/wireless/ralink/rt2x00/rt2500usb.c
2025-10-31T05:25:17.2260512Z patching file drivers/net/wireless/ralink/rt2x00/rt2500usb.h
2025-10-31T05:25:17.2264357Z patching file drivers/net/wireless/ralink/rt2x00/rt2800lib.c
2025-10-31T05:25:17.2269792Z patching file drivers/net/wireless/ralink/rt2x00/rt2800lib.h
2025-10-31T05:25:17.2271136Z patching file drivers/net/wireless/ralink/rt2x00/rt2x00dev.c
2025-10-31T05:25:17.2272548Z patching file drivers/net/wireless/ralink/rt2x00/rt2x00mac.c
2025-10-31T05:25:17.2274157Z patching file drivers/net/wireless/ralink/rt2x00/rt2x00usb.c
2025-10-31T05:25:17.2606838Z patching file drivers/net/wireless/ralink/rt2x00/rt61pci.c
2025-10-31T05:25:17.2609432Z patching file drivers/net/wireless/ralink/rt2x00/rt61pci.h
2025-10-31T05:25:17.2611762Z patching file drivers/net/wireless/ralink/rt2x00/rt73usb.c
2025-10-31T05:25:17.2614606Z patching file drivers/net/wireless/ralink/rt2x00/rt73usb.h
2025-10-31T05:25:17.2621053Z patching file drivers/net/wireless/ray_cs.c
2025-10-31T05:25:17.2621556Z patching file drivers/net/wireless/realtek/rtl818x/rtl8180/dev.c
2025-10-31T05:25:17.2623002Z patching file drivers/net/wireless/realtek/rtl818x/rtl8187/dev.c
2025-10-31T05:25:17.2625104Z patching file drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8225.c
2025-10-31T05:25:17.2627016Z patching file drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h
2025-10-31T05:25:17.2629220Z patching file drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192e.c
2025-10-31T05:25:17.2633179Z patching file drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
2025-10-31T05:25:17.2639823Z patching file drivers/net/wireless/realtek/rtlwifi/base.c
2025-10-31T05:25:17.2642375Z patching file drivers/net/wireless/realtek/rtlwifi/base.h
2025-10-31T05:25:17.2648901Z patching file drivers/net/wireless/realtek/rtlwifi/core.c
2025-10-31T05:25:17.2649373Z patching file drivers/net/wireless/realtek/rtlwifi/debug.c
2025-10-31T05:25:17.2649826Z patching file drivers/net/wireless/realtek/rtlwifi/pci.c
2025-10-31T05:25:17.2650247Z patching file drivers/net/wireless/realtek/rtlwifi/pci.h
2025-10-31T05:25:17.2650759Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c
2025-10-31T05:25:17.2653477Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8188ee/hw.c
2025-10-31T05:25:17.2656194Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8188ee/phy.c
2025-10-31T05:25:17.2658855Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c
2025-10-31T05:25:17.2660948Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.c
2025-10-31T05:25:17.2663024Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.h
2025-10-31T05:25:17.2663952Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.c
2025-10-31T05:25:17.2665980Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.h
2025-10-31T05:25:17.2666946Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192cu/hw.c
2025-10-31T05:25:17.2669672Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192cu/phy.c
2025-10-31T05:25:17.2670720Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.c
2025-10-31T05:25:17.2673603Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c
2025-10-31T05:25:17.2677157Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192de/trx.c
2025-10-31T05:25:17.2679322Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192de/trx.h
2025-10-31T05:25:17.2681160Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c
2025-10-31T05:25:17.2684572Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.c
2025-10-31T05:25:17.2694675Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192se/sw.c
2025-10-31T05:25:17.2695499Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c
2025-10-31T05:25:17.2696112Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8723ae/phy.c
2025-10-31T05:25:17.2696687Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.c
2025-10-31T05:25:17.2697316Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8723be/phy.c
2025-10-31T05:25:17.2698350Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/fw.h
2025-10-31T05:25:17.2700613Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
2025-10-31T05:25:17.2704918Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c
2025-10-31T05:25:17.2708887Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/table.c
2025-10-31T05:25:17.2713136Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/table.h
2025-10-31T05:25:17.2713976Z patching file drivers/net/wireless/realtek/rtlwifi/usb.c
2025-10-31T05:25:17.2716246Z patching file drivers/net/wireless/realtek/rtlwifi/wifi.h
2025-10-31T05:25:17.2734370Z patching file drivers/net/wireless/realtek/rtw88/Kconfig
2025-10-31T05:25:17.2734818Z patching file drivers/net/wireless/realtek/rtw88/Makefile
2025-10-31T05:25:17.2735245Z patching file drivers/net/wireless/realtek/rtw88/debug.c
2025-10-31T05:25:17.2735663Z patching file drivers/net/wireless/realtek/rtw88/fw.c
2025-10-31T05:25:17.2736064Z patching file drivers/net/wireless/realtek/rtw88/fw.h
2025-10-31T05:25:17.2736732Z patching file drivers/net/wireless/realtek/rtw88/mac.c
2025-10-31T05:25:17.2737182Z patching file drivers/net/wireless/realtek/rtw88/mac80211.c
2025-10-31T05:25:17.2737602Z patching file drivers/net/wireless/realtek/rtw88/main.c
2025-10-31T05:25:17.2738004Z patching file drivers/net/wireless/realtek/rtw88/main.h
2025-10-31T05:25:17.2738412Z patching file drivers/net/wireless/realtek/rtw88/phy.c
2025-10-31T05:25:17.2738816Z patching file drivers/net/wireless/realtek/rtw88/phy.h
2025-10-31T05:25:17.2739216Z patching file drivers/net/wireless/realtek/rtw88/reg.h
2025-10-31T05:25:17.2739652Z patching file drivers/net/wireless/realtek/rtw88/rtw8821c.c
2025-10-31T05:25:17.2741570Z patching file drivers/net/wireless/realtek/rtw88/rtw8821c.h
2025-10-31T05:25:17.2743286Z patching file drivers/net/wireless/realtek/rtw88/rtw8822b.c
2025-10-31T05:25:17.2747006Z patching file drivers/net/wireless/realtek/rtw88/rtw8822c.c
2025-10-31T05:25:17.2750447Z patching file drivers/net/wireless/realtek/rtw88/util.c
2025-10-31T05:25:17.2751279Z patching file drivers/net/wireless/realtek/rtw88/wow.c
2025-10-31T05:25:17.2753860Z patching file drivers/net/wireless/rndis_wlan.c
2025-10-31T05:25:17.2762885Z patching file drivers/net/wireless/rsi/rsi_91x_coex.c
2025-10-31T05:25:17.2763761Z patching file drivers/net/wireless/rsi/rsi_91x_core.c
2025-10-31T05:25:17.2764189Z patching file drivers/net/wireless/rsi/rsi_91x_hal.c
2025-10-31T05:25:17.2764625Z patching file drivers/net/wireless/rsi/rsi_91x_mac80211.c
2025-10-31T05:25:17.2765044Z patching file drivers/net/wireless/rsi/rsi_91x_main.c
2025-10-31T05:25:17.2765596Z patching file drivers/net/wireless/rsi/rsi_91x_mgmt.c
2025-10-31T05:25:17.2768357Z patching file drivers/net/wireless/rsi/rsi_91x_sdio.c
2025-10-31T05:25:17.2770740Z patching file drivers/net/wireless/rsi/rsi_91x_sdio_ops.c
2025-10-31T05:25:17.2771603Z patching file drivers/net/wireless/rsi/rsi_91x_usb.c
2025-10-31T05:25:17.2773502Z patching file drivers/net/wireless/rsi/rsi_hal.h
2025-10-31T05:25:17.2774526Z patching file drivers/net/wireless/rsi/rsi_main.h
2025-10-31T05:25:17.2775771Z patching file drivers/net/wireless/rsi/rsi_sdio.h
2025-10-31T05:25:17.2776660Z patching file drivers/net/wireless/rsi/rsi_usb.h
2025-10-31T05:25:17.2792889Z patching file drivers/net/wireless/st/cw1200/bh.c
2025-10-31T05:25:17.2793524Z patching file drivers/net/wireless/st/cw1200/cw1200_sdio.c
2025-10-31T05:25:17.2794700Z patching file drivers/net/wireless/st/cw1200/main.c
2025-10-31T05:25:17.2795315Z patching file drivers/net/wireless/st/cw1200/scan.c
2025-10-31T05:25:17.2795708Z patching file drivers/net/wireless/st/cw1200/sta.c
2025-10-31T05:25:17.2796092Z patching file drivers/net/wireless/st/cw1200/txrx.c
2025-10-31T05:25:17.2796472Z patching file drivers/net/wireless/ti/wl1251/cmd.c
2025-10-31T05:25:17.2796852Z patching file drivers/net/wireless/ti/wl1251/tx.c
2025-10-31T05:25:17.2797251Z patching file drivers/net/wireless/ti/wl12xx/main.c
2025-10-31T05:25:17.2797635Z patching file drivers/net/wireless/ti/wlcore/boot.c
2025-10-31T05:25:17.2798046Z patching file drivers/net/wireless/ti/wlcore/debugfs.h
2025-10-31T05:25:17.2798434Z patching file drivers/net/wireless/ti/wlcore/main.c
2025-10-31T05:25:17.2798831Z patching file drivers/net/wireless/ti/wlcore/wlcore.h
2025-10-31T05:25:17.2799633Z patching file drivers/net/wireless/virt_wifi.c
2025-10-31T05:25:17.2801391Z patching file drivers/net/wireless/wl3501.h
2025-10-31T05:25:17.2803377Z patching file drivers/net/wireless/wl3501_cs.c
2025-10-31T05:25:17.2806371Z patching file drivers/net/wireless/zydas/zd1211rw/zd_mac.c
2025-10-31T05:25:17.2807995Z patching file drivers/net/xen-netback/common.h
2025-10-31T05:25:17.2809378Z patching file drivers/net/xen-netback/hash.c
2025-10-31T05:25:17.2810516Z patching file drivers/net/xen-netback/interface.c
2025-10-31T05:25:17.2812764Z patching file drivers/net/xen-netback/netback.c
2025-10-31T05:25:17.2815849Z patching file drivers/net/xen-netback/rx.c
2025-10-31T05:25:17.2817662Z patching file drivers/net/xen-netback/xenbus.c
2025-10-31T05:25:17.2820113Z patching file drivers/net/xen-netfront.c
2025-10-31T05:25:17.2824836Z patching file drivers/nfc/fdp/fdp.c
2025-10-31T05:25:17.2825813Z patching file drivers/nfc/fdp/fdp.h
2025-10-31T05:25:17.2826571Z patching file drivers/nfc/fdp/i2c.c
2025-10-31T05:25:17.2827848Z patching file drivers/nfc/nfcmrvl/i2c.c
2025-10-31T05:25:17.2828572Z patching file drivers/nfc/nfcmrvl/main.c
2025-10-31T05:25:17.2829549Z patching file drivers/nfc/nfcmrvl/spi.c
2025-10-31T05:25:17.2830430Z patching file drivers/nfc/nfcmrvl/usb.c
2025-10-31T05:25:17.2853299Z patching file drivers/nfc/nfcsim.c
2025-10-31T05:25:17.2853642Z patching file drivers/nfc/nxp-nci/core.c
2025-10-31T05:25:17.2853960Z patching file drivers/nfc/nxp-nci/i2c.c
2025-10-31T05:25:17.2854289Z patching file drivers/nfc/pn533/pn533.c
2025-10-31T05:25:17.2854639Z patching file drivers/nfc/pn533/uart.c
2025-10-31T05:25:17.2854910Z patching file drivers/nfc/pn533/usb.c
2025-10-31T05:25:17.2855106Z patching file drivers/nfc/pn544/i2c.c
2025-10-31T05:25:17.2855310Z patching file drivers/nfc/port100.c
2025-10-31T05:25:17.2855509Z patching file drivers/nfc/s3fwrn5/core.c
2025-10-31T05:25:17.2855716Z patching file drivers/nfc/s3fwrn5/firmware.c
2025-10-31T05:25:17.2855911Z patching file drivers/nfc/st-nci/ndlc.c
2025-10-31T05:25:17.2856100Z patching file drivers/nfc/st-nci/se.c
2025-10-31T05:25:17.2856362Z patching file drivers/nfc/st21nfca/i2c.c
2025-10-31T05:25:17.2856688Z patching file drivers/nfc/st21nfca/se.c
2025-10-31T05:25:17.2857042Z patching file drivers/nfc/st21nfca/st21nfca.h
2025-10-31T05:25:17.2857278Z patching file drivers/nfc/trf7970a.c
2025-10-31T05:25:17.2857501Z patching file drivers/ntb/hw/amd/ntb_hw_amd.c
2025-10-31T05:25:17.2858866Z patching file drivers/ntb/hw/idt/ntb_hw_idt.c
2025-10-31T05:25:17.2861473Z patching file drivers/ntb/hw/intel/ntb_hw_gen1.c
2025-10-31T05:25:17.2863508Z patching file drivers/ntb/hw/intel/ntb_hw_gen3.c
2025-10-31T05:25:17.2864447Z patching file drivers/ntb/hw/intel/ntb_hw_gen4.c
2025-10-31T05:25:17.2865406Z patching file drivers/ntb/hw/intel/ntb_hw_gen4.h
2025-10-31T05:25:17.2866747Z patching file drivers/ntb/hw/mscc/ntb_hw_switchtec.c
2025-10-31T05:25:17.2868725Z patching file drivers/ntb/ntb_transport.c
2025-10-31T05:25:17.2870692Z patching file drivers/ntb/test/ntb_msi_test.c
2025-10-31T05:25:17.2872095Z patching file drivers/ntb/test/ntb_perf.c
2025-10-31T05:25:17.2873961Z patching file drivers/ntb/test/ntb_tool.c
2025-10-31T05:25:17.2875401Z patching file drivers/nubus/proc.c
2025-10-31T05:25:17.2876668Z patching file drivers/nvdimm/bus.c
2025-10-31T05:25:17.2877989Z patching file drivers/nvdimm/core.c
2025-10-31T05:25:17.2879024Z patching file drivers/nvdimm/dax_devs.c
2025-10-31T05:25:17.2879960Z patching file drivers/nvdimm/dimm_devs.c
2025-10-31T05:25:17.2881541Z patching file drivers/nvdimm/label.c
2025-10-31T05:25:17.2883814Z patching file drivers/nvdimm/namespace_devs.c
2025-10-31T05:25:17.2885759Z patching file drivers/nvdimm/nd.h
2025-10-31T05:25:17.2886626Z patching file drivers/nvdimm/nd_virtio.c
2025-10-31T05:25:17.2887334Z patching file drivers/nvdimm/of_pmem.c
2025-10-31T05:25:17.2888189Z patching file drivers/nvdimm/pmem.c
2025-10-31T05:25:17.2889580Z patching file drivers/nvdimm/region_devs.c
2025-10-31T05:25:17.2891047Z patching file drivers/nvdimm/security.c
2025-10-31T05:25:17.2892109Z patching file drivers/nvme/host/Kconfig
2025-10-31T05:25:17.2894150Z patching file drivers/nvme/host/core.c
2025-10-31T05:25:17.2899454Z patching file drivers/nvme/host/fabrics.c
2025-10-31T05:25:17.2900689Z patching file drivers/nvme/host/fabrics.h
2025-10-31T05:25:17.2902592Z patching file drivers/nvme/host/fc.c
2025-10-31T05:25:17.2905599Z patching file drivers/nvme/host/hwmon.c
2025-10-31T05:25:17.2907009Z patching file drivers/nvme/host/lightnvm.c
2025-10-31T05:25:17.2908483Z patching file drivers/nvme/host/multipath.c
2025-10-31T05:25:17.2910210Z patching file drivers/nvme/host/nvme.h
2025-10-31T05:25:17.2912707Z patching file drivers/nvme/host/pci.c
2025-10-31T05:25:17.2917820Z patching file drivers/nvme/host/rdma.c
2025-10-31T05:25:17.2921012Z patching file drivers/nvme/host/tcp.c
2025-10-31T05:25:17.2924501Z patching file drivers/nvme/host/trace.h
2025-10-31T05:25:17.2925578Z patching file drivers/nvme/target/admin-cmd.c
2025-10-31T05:25:17.2927399Z patching file drivers/nvme/target/configfs.c
2025-10-31T05:25:17.2929149Z patching file drivers/nvme/target/core.c
2025-10-31T05:25:17.2931130Z patching file drivers/nvme/target/discovery.c
2025-10-31T05:25:17.2932143Z patching file drivers/nvme/target/fabrics-cmd.c
2025-10-31T05:25:17.2933974Z patching file drivers/nvme/target/fc.c
2025-10-31T05:25:17.2936393Z patching file drivers/nvme/target/fcloop.c
2025-10-31T05:25:17.2938286Z patching file drivers/nvme/target/io-cmd-bdev.c
2025-10-31T05:25:17.2939216Z patching file drivers/nvme/target/io-cmd-file.c
2025-10-31T05:25:17.2940267Z patching file drivers/nvme/target/loop.c
2025-10-31T05:25:17.2941668Z patching file drivers/nvme/target/nvmet.h
2025-10-31T05:25:17.2943189Z patching file drivers/nvme/target/passthru.c
2025-10-31T05:25:17.2944787Z patching file drivers/nvme/target/rdma.c
2025-10-31T05:25:17.2947152Z patching file drivers/nvme/target/tcp.c
2025-10-31T05:25:17.2949780Z patching file drivers/nvme/target/trace.c
2025-10-31T05:25:17.2950470Z patching file drivers/nvme/target/trace.h
2025-10-31T05:25:17.2952208Z patching file drivers/nvmem/core.c
2025-10-31T05:25:17.2954262Z patching file drivers/nvmem/imx-ocotp.c
2025-10-31T05:25:17.2955245Z patching file drivers/nvmem/meson-efuse.c
2025-10-31T05:25:17.2956118Z patching file drivers/nvmem/qcom-spmi-sdam.c
2025-10-31T05:25:17.2957177Z patching file drivers/nvmem/qfprom.c
2025-10-31T05:25:17.2958563Z patching file drivers/of/address.c
2025-10-31T05:25:17.2960528Z patching file drivers/of/base.c
2025-10-31T05:25:17.2964371Z patching file drivers/of/device.c
2025-10-31T05:25:17.2965507Z patching file drivers/of/dynamic.c
2025-10-31T05:25:17.2967467Z patching file drivers/of/fdt.c
2025-10-31T05:25:17.2969228Z patching file drivers/of/irq.c
2025-10-31T05:25:17.2970870Z patching file drivers/of/kobj.c
2025-10-31T05:25:17.2971541Z patching file drivers/of/of_reserved_mem.c
2025-10-31T05:25:17.2973055Z patching file drivers/of/overlay.c
2025-10-31T05:25:17.2974826Z patching file drivers/of/platform.c
2025-10-31T05:25:17.2976354Z patching file drivers/of/property.c
2025-10-31T05:25:17.2978489Z patching file drivers/of/unittest-data/tests-phandle.dtsi
2025-10-31T05:25:17.2979963Z patching file drivers/of/unittest.c
2025-10-31T05:25:17.2983757Z patching file drivers/opp/core.c
2025-10-31T05:25:17.2985551Z patching file drivers/opp/debugfs.c
2025-10-31T05:25:17.2986606Z patching file drivers/opp/of.c
2025-10-31T05:25:17.2988678Z patching file drivers/parisc/ccio-dma.c
2025-10-31T05:25:17.2990492Z patching file drivers/parisc/dino.c
2025-10-31T05:25:17.2992077Z patching file drivers/parisc/gsc.c
2025-10-31T05:25:17.2992859Z patching file drivers/parisc/gsc.h
2025-10-31T05:25:17.2993930Z patching file drivers/parisc/iosapic.c
2025-10-31T05:25:17.2995293Z patching file drivers/parisc/iosapic_private.h
2025-10-31T05:25:17.2995980Z patching file drivers/parisc/lasi.c
2025-10-31T05:25:17.2997532Z patching file drivers/parisc/lba_pci.c
2025-10-31T05:25:17.2999162Z patching file drivers/parisc/led.c
2025-10-31T05:25:17.3000504Z patching file drivers/parisc/pdc_stable.c
2025-10-31T05:25:17.3002351Z patching file drivers/parisc/sba_iommu.c
2025-10-31T05:25:17.3004108Z patching file drivers/parisc/wax.c
2025-10-31T05:25:17.3005095Z patching file drivers/parport/ieee1284_ops.c
2025-10-31T05:25:17.3007060Z patching file drivers/parport/parport_pc.c
2025-10-31T05:25:17.3009422Z patching file drivers/parport/parport_serial.c
2025-10-31T05:25:17.3010752Z patching file drivers/parport/procfs.c
2025-10-31T05:25:17.3012336Z patching file drivers/pci/access.c
2025-10-31T05:25:17.3013701Z patching file drivers/pci/controller/cadence/pci-j721e.c
2025-10-31T05:25:17.3015260Z patching file drivers/pci/controller/cadence/pcie-cadence-ep.c
2025-10-31T05:25:17.3016614Z patching file drivers/pci/controller/cadence/pcie-cadence-host.c
2025-10-31T05:25:17.3017763Z patching file drivers/pci/controller/cadence/pcie-cadence-plat.c
2025-10-31T05:25:17.3018486Z patching file drivers/pci/controller/cadence/pcie-cadence.c
2025-10-31T05:25:17.3019469Z patching file drivers/pci/controller/cadence/pcie-cadence.h
2025-10-31T05:25:17.3020968Z patching file drivers/pci/controller/dwc/pci-exynos.c
2025-10-31T05:25:17.3022322Z patching file drivers/pci/controller/dwc/pci-imx6.c
2025-10-31T05:25:17.3024236Z patching file drivers/pci/controller/dwc/pci-keystone.c
2025-10-31T05:25:17.3026102Z patching file drivers/pci/controller/dwc/pcie-al.c
2025-10-31T05:25:17.3027251Z patching file drivers/pci/controller/dwc/pcie-designware-ep.c
2025-10-31T05:25:17.3028715Z patching file drivers/pci/controller/dwc/pcie-designware-host.c
2025-10-31T05:25:17.3029696Z patching file drivers/pci/controller/dwc/pcie-designware.c
2025-10-31T05:25:17.3031047Z patching file drivers/pci/controller/dwc/pcie-intel-gw.c
2025-10-31T05:25:17.3032551Z patching file drivers/pci/controller/dwc/pcie-qcom.c
2025-10-31T05:25:17.3034710Z patching file drivers/pci/controller/dwc/pcie-tegra194.c
2025-10-31T05:25:17.3037221Z patching file drivers/pci/controller/dwc/pcie-uniphier.c
2025-10-31T05:25:17.3038568Z patching file drivers/pci/controller/pci-aardvark.c
2025-10-31T05:25:17.3042701Z patching file drivers/pci/controller/pci-ftpci100.c
2025-10-31T05:25:17.3045021Z patching file drivers/pci/controller/pci-hyperv.c
2025-10-31T05:25:17.3048544Z patching file drivers/pci/controller/pci-loongson.c
2025-10-31T05:25:17.3049973Z patching file drivers/pci/controller/pci-mvebu.c
2025-10-31T05:25:17.3051910Z patching file drivers/pci/controller/pci-tegra.c
2025-10-31T05:25:17.3054440Z patching file drivers/pci/controller/pci-thunder-ecam.c
2025-10-31T05:25:17.3055522Z patching file drivers/pci/controller/pci-thunder-pem.c
2025-10-31T05:25:17.3056678Z patching file drivers/pci/controller/pci-xgene-msi.c
2025-10-31T05:25:17.3059328Z patching file drivers/pci/controller/pci-xgene.c
2025-10-31T05:25:17.3059730Z patching file drivers/pci/controller/pcie-brcmstb.c
2025-10-31T05:25:17.3061665Z patching file drivers/pci/controller/pcie-iproc-bcma.c
2025-10-31T05:25:17.3062469Z patching file drivers/pci/controller/pcie-iproc-msi.c
2025-10-31T05:25:17.3064585Z patching file drivers/pci/controller/pcie-iproc.c
2025-10-31T05:25:17.3066861Z patching file drivers/pci/controller/pcie-mediatek.c
2025-10-31T05:25:17.3068334Z patching file drivers/pci/controller/pcie-rcar-ep.c
2025-10-31T05:25:17.3070001Z patching file drivers/pci/controller/pcie-rcar-host.c
2025-10-31T05:25:17.3071148Z patching file drivers/pci/controller/pcie-rockchip-ep.c
2025-10-31T05:25:17.3073676Z patching file drivers/pci/controller/pcie-rockchip-host.c
2025-10-31T05:25:17.3075374Z patching file drivers/pci/controller/pcie-rockchip.c
2025-10-31T05:25:17.3076212Z patching file drivers/pci/controller/pcie-rockchip.h
2025-10-31T05:25:17.3077771Z patching file drivers/pci/controller/pcie-xilinx-cpm.c
2025-10-31T05:25:17.3078928Z patching file drivers/pci/controller/pcie-xilinx-nwl.c
2025-10-31T05:25:17.3081060Z patching file drivers/pci/endpoint/functions/pci-epf-test.c
2025-10-31T05:25:17.3082512Z patching file drivers/pci/endpoint/pci-ep-cfs.c
2025-10-31T05:25:17.3083633Z patching file drivers/pci/endpoint/pci-epc-core.c
2025-10-31T05:25:17.3084685Z patching file drivers/pci/endpoint/pci-epf-core.c
2025-10-31T05:25:17.3085404Z patching file drivers/pci/hotplug/TODO
2025-10-31T05:25:17.3086261Z patching file drivers/pci/hotplug/acpiphp_glue.c
2025-10-31T05:25:17.3087661Z patching file drivers/pci/hotplug/cpqphp_pci.c
2025-10-31T05:25:17.3089178Z patching file drivers/pci/hotplug/ibmphp_ebda.c
2025-10-31T05:25:17.3090250Z patching file drivers/pci/hotplug/pciehp.h
2025-10-31T05:25:17.3091110Z patching file drivers/pci/hotplug/pciehp_core.c
2025-10-31T05:25:17.3092479Z patching file drivers/pci/hotplug/pciehp_ctrl.c
2025-10-31T05:25:17.3093385Z patching file drivers/pci/hotplug/pciehp_hpc.c
2025-10-31T05:25:17.3095338Z patching file drivers/pci/hotplug/pciehp_pci.c
2025-10-31T05:25:17.3096741Z patching file drivers/pci/hotplug/pnv_php.c
2025-10-31T05:25:17.3099093Z patching file drivers/pci/hotplug/rpadlpar_sysfs.c
2025-10-31T05:25:17.3099731Z patching file drivers/pci/hotplug/s390_pci_hpc.c
2025-10-31T05:25:17.3100733Z patching file drivers/pci/iov.c
2025-10-31T05:25:17.3101839Z patching file drivers/pci/irq.c
2025-10-31T05:25:17.3102957Z patching file drivers/pci/msi.c
2025-10-31T05:25:17.3105373Z patching file drivers/pci/of.c
2025-10-31T05:25:17.3106301Z patching file drivers/pci/p2pdma.c
2025-10-31T05:25:17.3108180Z patching file drivers/pci/pci-acpi.c
2025-10-31T05:25:17.3109451Z patching file drivers/pci/pci-bridge-emul.c
2025-10-31T05:25:17.3111109Z patching file drivers/pci/pci-bridge-emul.h
2025-10-31T05:25:17.3112383Z patching file drivers/pci/pci-driver.c
2025-10-31T05:25:17.3114525Z patching file drivers/pci/pci-label.c
2025-10-31T05:25:17.3115320Z patching file drivers/pci/pci-sysfs.c
2025-10-31T05:25:17.3119659Z patching file drivers/pci/pci.c
2025-10-31T05:25:17.3126214Z patching file drivers/pci/pci.h
2025-10-31T05:25:17.3127738Z patching file drivers/pci/pcie/Kconfig
2025-10-31T05:25:17.3128337Z patching file drivers/pci/pcie/Makefile
2025-10-31T05:25:17.3128881Z patching file drivers/pci/pcie/aer.c
2025-10-31T05:25:17.3130902Z patching file drivers/pci/pcie/aspm.c
2025-10-31T05:25:17.3132949Z patching file drivers/pci/pcie/bw_notification.c
2025-10-31T05:25:17.3133667Z patching file drivers/pci/pcie/dpc.c
2025-10-31T05:25:17.3135412Z patching file drivers/pci/pcie/edr.c
2025-10-31T05:25:17.3136271Z patching file drivers/pci/pcie/err.c
2025-10-31T05:25:17.3137107Z patching file drivers/pci/pcie/portdrv.h
2025-10-31T05:25:17.3138230Z patching file drivers/pci/pcie/portdrv_core.c
2025-10-31T05:25:17.3139456Z patching file drivers/pci/pcie/portdrv_pci.c
2025-10-31T05:25:17.3140729Z patching file drivers/pci/pcie/rcec.c
2025-10-31T05:25:17.3142450Z patching file drivers/pci/probe.c
2025-10-31T05:25:17.3146971Z patching file drivers/pci/quirks.c
2025-10-31T05:25:17.3152296Z patching file drivers/pci/remove.c
2025-10-31T05:25:17.3153698Z patching file drivers/pci/setup-bus.c
2025-10-31T05:25:17.3156445Z patching file drivers/pci/setup-res.c
2025-10-31T05:25:17.3157422Z patching file drivers/pci/slot.c
2025-10-31T05:25:17.3167593Z patching file drivers/pci/switch/switchtec.c
2025-10-31T05:25:17.3167966Z patching file drivers/pci/syscall.c
2025-10-31T05:25:17.3168321Z patching file drivers/pci/vpd.c
2025-10-31T05:25:17.3168669Z patching file drivers/pcmcia/Kconfig
2025-10-31T05:25:17.3169008Z patching file drivers/pcmcia/cs.c
2025-10-31T05:25:17.3169345Z patching file drivers/pcmcia/ds.c
2025-10-31T05:25:17.3169692Z patching file drivers/pcmcia/i82092.c
2025-10-31T05:25:17.3170048Z patching file drivers/pcmcia/omap_cf.c
2025-10-31T05:25:17.3170420Z patching file drivers/pcmcia/rsrc_iodyn.c
2025-10-31T05:25:17.3170812Z patching file drivers/pcmcia/rsrc_nonstatic.c
2025-10-31T05:25:17.3171174Z patching file drivers/pcmcia/yenta_socket.c
2025-10-31T05:25:17.3172443Z patching file drivers/perf/arm-cmn.c
2025-10-31T05:25:17.3174870Z patching file drivers/perf/arm_dsu_pmu.c
2025-10-31T05:25:17.3179846Z patching file drivers/perf/arm_pmu.c
2025-10-31T05:25:17.3180488Z patching file drivers/perf/arm_pmu_platform.c
2025-10-31T05:25:17.3180869Z patching file drivers/perf/arm_smmuv3_pmu.c
2025-10-31T05:25:17.3181231Z patching file drivers/perf/arm_spe_pmu.c
2025-10-31T05:25:17.3181662Z patching file drivers/perf/fsl_imx8_ddr_perf.c
2025-10-31T05:25:17.3182886Z patching file drivers/perf/qcom_l2_pmu.c
2025-10-31T05:25:17.3184501Z patching file drivers/phy/Kconfig
2025-10-31T05:25:17.3185383Z patching file drivers/phy/amlogic/phy-meson8b-usb2.c
2025-10-31T05:25:17.3186477Z patching file drivers/phy/broadcom/phy-bcm-cygnus-pcie.c
2025-10-31T05:25:17.3187378Z patching file drivers/phy/broadcom/phy-bcm-kona-usb2.c
2025-10-31T05:25:17.3188214Z patching file drivers/phy/broadcom/phy-bcm-ns-usb2.c
2025-10-31T05:25:17.3189120Z patching file drivers/phy/broadcom/phy-bcm-ns-usb3.c
2025-10-31T05:25:17.3201724Z patching file drivers/phy/broadcom/phy-bcm-ns2-usbdrd.c
2025-10-31T05:25:17.3202388Z patching file drivers/phy/broadcom/phy-bcm-sr-pcie.c
2025-10-31T05:25:17.3202810Z patching file drivers/phy/broadcom/phy-bcm-sr-usb.c
2025-10-31T05:25:17.3203219Z patching file drivers/phy/broadcom/phy-brcm-sata.c
2025-10-31T05:25:17.3203704Z patching file drivers/phy/broadcom/phy-brcm-usb-init-synopsys.c
2025-10-31T05:25:17.3204135Z patching file drivers/phy/broadcom/phy-brcm-usb-init.h
2025-10-31T05:25:17.3204535Z patching file drivers/phy/broadcom/phy-brcm-usb.c
2025-10-31T05:25:17.3204969Z patching file drivers/phy/cadence/phy-cadence-sierra.c
2025-10-31T05:25:17.3205397Z patching file drivers/phy/cadence/phy-cadence-torrent.c
2025-10-31T05:25:17.3205838Z patching file drivers/phy/hisilicon/phy-hisi-inno-usb2.c
2025-10-31T05:25:17.3206291Z patching file drivers/phy/intel/phy-intel-keembay-emmc.c
2025-10-31T05:25:17.3206723Z patching file drivers/phy/lantiq/phy-lantiq-rcu-usb2.c
2025-10-31T05:25:17.3207104Z patching file drivers/phy/marvell/Kconfig
2025-10-31T05:25:17.3207510Z patching file drivers/phy/marvell/phy-berlin-usb.c
2025-10-31T05:25:17.3207886Z patching file drivers/phy/mediatek/Kconfig
2025-10-31T05:25:17.3208274Z patching file drivers/phy/mediatek/phy-mtk-hdmi.c
2025-10-31T05:25:17.3209055Z patching file drivers/phy/mediatek/phy-mtk-tphy.c
2025-10-31T05:25:17.3210989Z patching file drivers/phy/motorola/phy-cpcap-usb.c
2025-10-31T05:25:17.3212344Z patching file drivers/phy/motorola/phy-mapphone-mdm6600.c
2025-10-31T05:25:17.3214234Z patching file drivers/phy/phy-core-mipi-dphy.c
2025-10-31T05:25:17.3214973Z patching file drivers/phy/phy-core.c
2025-10-31T05:25:17.3218045Z patching file drivers/phy/qualcomm/phy-qcom-qmp.c
2025-10-31T05:25:17.3229507Z patching file drivers/phy/qualcomm/phy-qcom-qusb2.c
2025-10-31T05:25:17.3230725Z patching file drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c
2025-10-31T05:25:17.3231155Z patching file drivers/phy/qualcomm/phy-qcom-usb-hsic.c
2025-10-31T05:25:17.3231555Z patching file drivers/phy/ralink/phy-ralink-usb.c
2025-10-31T05:25:17.3232100Z patching file drivers/phy/renesas/phy-rcar-gen3-usb2.c
2025-10-31T05:25:17.3232501Z patching file drivers/phy/rockchip/phy-rockchip-emmc.c
2025-10-31T05:25:17.3232951Z patching file drivers/phy/rockchip/phy-rockchip-inno-hdmi.c
2025-10-31T05:25:17.3233388Z patching file drivers/phy/rockchip/phy-rockchip-inno-usb2.c
2025-10-31T05:25:17.3233804Z patching file drivers/phy/rockchip/phy-rockchip-pcie.c
2025-10-31T05:25:17.3234222Z patching file drivers/phy/rockchip/phy-rockchip-typec.c
2025-10-31T05:25:17.3234627Z patching file drivers/phy/rockchip/phy-rockchip-usb.c
2025-10-31T05:25:17.3235043Z patching file drivers/phy/samsung/phy-exynos5-usbdrd.c
2025-10-31T05:25:17.3235938Z patching file drivers/phy/samsung/phy-exynos5250-sata.c
2025-10-31T05:25:17.3237272Z patching file drivers/phy/socionext/phy-uniphier-pcie.c
2025-10-31T05:25:17.3238422Z patching file drivers/phy/socionext/phy-uniphier-usb3ss.c
2025-10-31T05:25:17.3240046Z patching file drivers/phy/st/phy-miphy28lp.c
2025-10-31T05:25:17.3241591Z patching file drivers/phy/st/phy-stm32-usbphyc.c
2025-10-31T05:25:17.3243215Z patching file drivers/phy/tegra/xusb-tegra186.c
2025-10-31T05:25:17.3245483Z patching file drivers/phy/tegra/xusb.c
2025-10-31T05:25:17.3247113Z patching file drivers/phy/ti/Kconfig
2025-10-31T05:25:17.3248099Z patching file drivers/phy/ti/phy-am654-serdes.c
2025-10-31T05:25:17.3249388Z patching file drivers/phy/ti/phy-dm816x-usb.c
2025-10-31T05:25:17.3250429Z patching file drivers/phy/ti/phy-gmii-sel.c
2025-10-31T05:25:17.3251595Z patching file drivers/phy/ti/phy-j721e-wiz.c
2025-10-31T05:25:17.3253387Z patching file drivers/phy/ti/phy-omap-control.c
2025-10-31T05:25:17.3260598Z patching file drivers/phy/ti/phy-omap-usb2.c
2025-10-31T05:25:17.3261276Z patching file drivers/phy/ti/phy-ti-pipe3.c
2025-10-31T05:25:17.3261662Z patching file drivers/phy/ti/phy-twl4030-usb.c
2025-10-31T05:25:17.3262183Z patching file drivers/phy/xilinx/phy-zynqmp.c
2025-10-31T05:25:17.3262757Z patching file drivers/pinctrl/Kconfig
2025-10-31T05:25:17.3263169Z patching file drivers/pinctrl/actions/pinctrl-owl.c
2025-10-31T05:25:17.3263604Z patching file drivers/pinctrl/aspeed/pinctrl-aspeed-g6.c
2025-10-31T05:25:17.3266038Z patching file drivers/pinctrl/aspeed/pinctrl-aspeed.c
2025-10-31T05:25:17.3267447Z patching file drivers/pinctrl/bcm/pinctrl-bcm281xx.c
2025-10-31T05:25:17.3270308Z patching file drivers/pinctrl/bcm/pinctrl-bcm2835.c
2025-10-31T05:25:17.3272274Z patching file drivers/pinctrl/bcm/pinctrl-ns.c
2025-10-31T05:25:17.3273423Z patching file drivers/pinctrl/cirrus/Kconfig
2025-10-31T05:25:17.3275020Z patching file drivers/pinctrl/core.c
2025-10-31T05:25:17.3286860Z patching file drivers/pinctrl/devicetree.c
2025-10-31T05:25:17.3287253Z patching file drivers/pinctrl/freescale/Kconfig
2025-10-31T05:25:17.3287714Z patching file drivers/pinctrl/freescale/pinctrl-imx1-core.c
2025-10-31T05:25:17.3288122Z patching file drivers/pinctrl/freescale/pinctrl-mxs.c
2025-10-31T05:25:17.3288557Z patching file drivers/pinctrl/intel/pinctrl-cherryview.c
2025-10-31T05:25:17.3289429Z patching file drivers/pinctrl/intel/pinctrl-intel.c
2025-10-31T05:25:17.3289856Z patching file drivers/pinctrl/intel/pinctrl-lewisburg.c
2025-10-31T05:25:17.3290267Z patching file drivers/pinctrl/intel/pinctrl-tigerlake.c
2025-10-31T05:25:17.3290638Z patching file drivers/pinctrl/mediatek/Kconfig
2025-10-31T05:25:17.3291026Z patching file drivers/pinctrl/mediatek/mtk-eint.c
2025-10-31T05:25:17.3292775Z patching file drivers/pinctrl/mediatek/pinctrl-mt8192.c
2025-10-31T05:25:17.3294943Z patching file drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c
2025-10-31T05:25:17.3297397Z patching file drivers/pinctrl/mediatek/pinctrl-mtk-common.c
2025-10-31T05:25:17.3297983Z patching file drivers/pinctrl/mediatek/pinctrl-paris.c
2025-10-31T05:25:17.3301096Z patching file drivers/pinctrl/meson/pinctrl-meson-a1.c
2025-10-31T05:25:17.3302120Z patching file drivers/pinctrl/meson/pinctrl-meson-axg.c
2025-10-31T05:25:17.3304266Z patching file drivers/pinctrl/meson/pinctrl-meson-gxl.c
2025-10-31T05:25:17.3305097Z patching file drivers/pinctrl/meson/pinctrl-meson.c
2025-10-31T05:25:17.3306025Z patching file drivers/pinctrl/mvebu/pinctrl-armada-37xx.c
2025-10-31T05:25:17.3307604Z patching file drivers/pinctrl/mvebu/pinctrl-dove.c
2025-10-31T05:25:17.3309332Z patching file drivers/pinctrl/nomadik/pinctrl-nomadik.c
2025-10-31T05:25:17.3311773Z patching file drivers/pinctrl/nuvoton/pinctrl-npcm7xx.c
2025-10-31T05:25:17.3315745Z patching file drivers/pinctrl/pinconf-generic.c
2025-10-31T05:25:17.3317289Z patching file drivers/pinctrl/pinctrl-amd.c
2025-10-31T05:25:17.3319049Z patching file drivers/pinctrl/pinctrl-amd.h
2025-10-31T05:25:17.3320395Z patching file drivers/pinctrl/pinctrl-at91-pio4.c
2025-10-31T05:25:17.3322614Z patching file drivers/pinctrl/pinctrl-at91.c
2025-10-31T05:25:17.3325060Z patching file drivers/pinctrl/pinctrl-equilibrium.c
2025-10-31T05:25:17.3326376Z patching file drivers/pinctrl/pinctrl-falcon.c
2025-10-31T05:25:17.3327669Z patching file drivers/pinctrl/pinctrl-ingenic.c
2025-10-31T05:25:17.3330333Z patching file drivers/pinctrl/pinctrl-mcp23s08.c
2025-10-31T05:25:17.3332343Z patching file drivers/pinctrl/pinctrl-mcp23s08_spi.c
2025-10-31T05:25:17.3333031Z patching file drivers/pinctrl/pinctrl-ocelot.c
2025-10-31T05:25:17.3335087Z patching file drivers/pinctrl/pinctrl-pistachio.c
2025-10-31T05:25:17.3338090Z patching file drivers/pinctrl/pinctrl-rockchip.c
2025-10-31T05:25:17.3345021Z patching file drivers/pinctrl/pinctrl-rockchip.h
2025-10-31T05:25:17.3347198Z patching file drivers/pinctrl/pinctrl-single.c
2025-10-31T05:25:17.3350028Z patching file drivers/pinctrl/pinctrl-st.c
2025-10-31T05:25:17.3352245Z patching file drivers/pinctrl/pinctrl-stmfx.c
2025-10-31T05:25:17.3353848Z patching file drivers/pinctrl/pinctrl-sx150x.c
2025-10-31T05:25:17.3355620Z patching file drivers/pinctrl/pinmux.c
2025-10-31T05:25:17.3357318Z patching file drivers/pinctrl/qcom/pinctrl-msm.c
2025-10-31T05:25:17.3359944Z patching file drivers/pinctrl/qcom/pinctrl-msm.h
2025-10-31T05:25:17.3360599Z patching file drivers/pinctrl/qcom/pinctrl-msm8916.c
2025-10-31T05:25:17.3362703Z patching file drivers/pinctrl/qcom/pinctrl-msm8976.c
2025-10-31T05:25:17.3364392Z patching file drivers/pinctrl/qcom/pinctrl-sdm845.c
2025-10-31T05:25:17.3366182Z patching file drivers/pinctrl/qcom/pinctrl-sm8250.c
2025-10-31T05:25:17.3368058Z patching file drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
2025-10-31T05:25:17.3369689Z patching file drivers/pinctrl/qcom/pinctrl-ssbi-mpp.c
2025-10-31T05:25:17.3370824Z patching file drivers/pinctrl/renesas/Kconfig
2025-10-31T05:25:17.3372184Z patching file drivers/pinctrl/renesas/core.c
2025-10-31T05:25:17.3374922Z patching file drivers/pinctrl/renesas/pfc-r8a77470.c
2025-10-31T05:25:17.3378768Z patching file drivers/pinctrl/renesas/pfc-r8a77950.c
2025-10-31T05:25:17.3383799Z patching file drivers/pinctrl/renesas/pfc-r8a77951.c
2025-10-31T05:25:17.3389136Z patching file drivers/pinctrl/renesas/pfc-r8a7796.c
2025-10-31T05:25:17.3394017Z patching file drivers/pinctrl/renesas/pfc-r8a77965.c
2025-10-31T05:25:17.3398692Z patching file drivers/pinctrl/renesas/pfc-r8a77990.c
2025-10-31T05:25:17.3402168Z patching file drivers/pinctrl/renesas/pinctrl-rza2.c
2025-10-31T05:25:17.3403772Z patching file drivers/pinctrl/renesas/pinctrl-rzn1.c
2025-10-31T05:25:17.3405346Z patching file drivers/pinctrl/renesas/pinctrl.c
2025-10-31T05:25:17.3406500Z patching file drivers/pinctrl/samsung/Kconfig
2025-10-31T05:25:17.3407600Z patching file drivers/pinctrl/samsung/pinctrl-exynos.c
2025-10-31T05:25:17.3409439Z patching file drivers/pinctrl/samsung/pinctrl-samsung.c
2025-10-31T05:25:17.3411674Z patching file drivers/pinctrl/stm32/pinctrl-stm32.c
2025-10-31T05:25:17.3414177Z patching file drivers/pinctrl/sunxi/pinctrl-sun50i-a100-r.c
2025-10-31T05:25:17.3414874Z patching file drivers/pinctrl/sunxi/pinctrl-sun50i-a100.c
2025-10-31T05:25:17.3416123Z patching file drivers/pinctrl/sunxi/pinctrl-sun50i-h6-r.c
2025-10-31T05:25:17.3417150Z patching file drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c
2025-10-31T05:25:17.3418598Z patching file drivers/pinctrl/sunxi/pinctrl-suniv-f1c100s.c
2025-10-31T05:25:17.3419970Z patching file drivers/pinctrl/sunxi/pinctrl-sunxi.c
2025-10-31T05:25:17.3422490Z patching file drivers/pinctrl/tegra/pinctrl-tegra.c
2025-10-31T05:25:17.3424132Z patching file drivers/pinctrl/ti/pinctrl-ti-iodelay.c
2025-10-31T05:25:17.3425482Z patching file drivers/platform/Kconfig
2025-10-31T05:25:17.3426103Z patching file drivers/platform/Makefile
2025-10-31T05:25:17.3427012Z patching file drivers/platform/chrome/Makefile
2025-10-31T05:25:17.3428025Z patching file drivers/platform/chrome/chromeos_laptop.c
2025-10-31T05:25:17.3429769Z patching file drivers/platform/chrome/cros_ec.c
2025-10-31T05:25:17.3431071Z patching file drivers/platform/chrome/cros_ec.h
2025-10-31T05:25:17.3431938Z patching file drivers/platform/chrome/cros_ec_chardev.c
2025-10-31T05:25:17.3433399Z patching file drivers/platform/chrome/cros_ec_debugfs.c
2025-10-31T05:25:17.3434980Z patching file drivers/platform/chrome/cros_ec_i2c.c
2025-10-31T05:25:17.3435951Z patching file drivers/platform/chrome/cros_ec_lpc.c
2025-10-31T05:25:17.3437316Z patching file drivers/platform/chrome/cros_ec_proto.c
2025-10-31T05:25:17.3439650Z patching file drivers/platform/chrome/cros_ec_sensorhub_ring.c
2025-10-31T05:25:17.3441260Z patching file drivers/platform/chrome/cros_ec_sensorhub_trace.h
2025-10-31T05:25:17.3443221Z patching file drivers/platform/chrome/cros_ec_spi.c
2025-10-31T05:25:17.3444429Z patching file drivers/platform/chrome/cros_ec_trace.h
2025-10-31T05:25:17.3445384Z patching file drivers/platform/chrome/cros_ec_typec.c
2025-10-31T05:25:17.3447087Z patching file drivers/platform/chrome/cros_usbpd_notify.c
2025-10-31T05:25:17.3447779Z patching file drivers/platform/mellanox/Kconfig
2025-10-31T05:25:17.3448579Z patching file drivers/platform/mellanox/mlxbf-bootctl.c
2025-10-31T05:25:17.3450160Z patching file drivers/platform/mellanox/mlxbf-tmfifo.c
2025-10-31T05:25:17.3452599Z patching file drivers/platform/mellanox/mlxreg-io.c
2025-10-31T05:25:17.3453189Z patching file drivers/platform/mips/Kconfig
2025-10-31T05:25:17.3454070Z patching file drivers/platform/mips/cpu_hwmon.c
2025-10-31T05:25:17.3455766Z patching file drivers/platform/olpc/olpc-ec.c
2025-10-31T05:25:17.3457562Z patching file drivers/platform/surface/Kconfig
2025-10-31T05:25:17.3458359Z patching file drivers/platform/surface/Makefile
2025-10-31T05:25:17.3460093Z patching file drivers/platform/x86/Kconfig
2025-10-31T05:25:17.3462634Z patching file drivers/platform/x86/acer-wmi.c
2025-10-31T05:25:17.3465816Z patching file drivers/platform/x86/apple-gmux.c
2025-10-31T05:25:17.3467654Z patching file drivers/platform/x86/asus-laptop.c
2025-10-31T05:25:17.3469753Z patching file drivers/platform/x86/asus-nb-wmi.c
2025-10-31T05:25:17.3472482Z patching file drivers/platform/x86/asus-wmi.c
2025-10-31T05:25:17.3475592Z patching file drivers/platform/x86/asus-wmi.h
2025-10-31T05:25:17.3476317Z patching file drivers/platform/x86/dell-smbios-base.c
2025-10-31T05:25:17.3477784Z patching file drivers/platform/x86/dell-smbios-wmi.c
2025-10-31T05:25:17.3479078Z patching file drivers/platform/x86/dell-wmi.c
2025-10-31T05:25:17.3480355Z patching file drivers/platform/x86/dell_rbu.c
2025-10-31T05:25:17.3481886Z patching file drivers/platform/x86/fujitsu-laptop.c
2025-10-31T05:25:17.3483762Z patching file drivers/platform/x86/hp-wireless.c
2025-10-31T05:25:17.3484867Z patching file drivers/platform/x86/hp-wmi.c
2025-10-31T05:25:17.3486559Z patching file drivers/platform/x86/hp_accel.c
2025-10-31T05:25:17.3488290Z patching file drivers/platform/x86/huawei-wmi.c
2025-10-31T05:25:17.3489847Z patching file drivers/platform/x86/i2c-multi-instantiate.c
2025-10-31T05:25:17.3491059Z patching file drivers/platform/x86/ideapad-laptop.c
2025-10-31T05:25:17.3493259Z patching file drivers/platform/x86/intel-hid.c
2025-10-31T05:25:17.3494689Z patching file drivers/platform/x86/intel-vbtn.c
2025-10-31T05:25:17.3495940Z patching file drivers/platform/x86/intel_bxtwc_tmu.c
2025-10-31T05:25:17.3497037Z patching file drivers/platform/x86/intel_int0002_vgpio.c
2025-10-31T05:25:17.3499069Z patching file drivers/platform/x86/intel_pmc_core.c
2025-10-31T05:25:17.3501151Z patching file drivers/platform/x86/intel_pmc_core_pltdrv.c
2025-10-31T05:25:17.3502192Z patching file drivers/platform/x86/intel_punit_ipc.c
2025-10-31T05:25:17.3503606Z patching file drivers/platform/x86/intel_scu_ipc.c
2025-10-31T05:25:17.3505766Z patching file drivers/platform/x86/intel_speed_select_if/isst_if_common.c
2025-10-31T05:25:17.3507588Z patching file drivers/platform/x86/intel_speed_select_if/isst_if_mbox_pci.c
2025-10-31T05:25:17.3508715Z patching file drivers/platform/x86/intel_telemetry_core.c
2025-10-31T05:25:17.3510760Z patching file drivers/platform/x86/mlx-platform.c
2025-10-31T05:25:17.3513964Z patching file drivers/platform/x86/msi-laptop.c
2025-10-31T05:25:17.3515624Z patching file drivers/platform/x86/mxm-wmi.c
2025-10-31T05:25:17.3516579Z patching file drivers/platform/x86/pcengines-apuv2.c
2025-10-31T05:25:17.3517718Z patching file drivers/platform/x86/pmc_atom.c
2025-10-31T05:25:17.3519605Z patching file drivers/platform/x86/samsung-laptop.c
2025-10-31T05:25:17.3522540Z patching file drivers/platform/x86/sony-laptop.c
2025-10-31T05:25:17.3525933Z patching file drivers/platform/x86/surface3_power.c
2025-10-31T05:25:17.3529811Z patching file drivers/platform/x86/thinkpad_acpi.c
2025-10-31T05:25:17.3536541Z patching file drivers/platform/x86/toshiba_acpi.c
2025-10-31T05:25:17.3539318Z patching file drivers/platform/x86/touchscreen_dmi.c
2025-10-31T05:25:17.3542783Z patching file drivers/platform/x86/wmi.c
2025-10-31T05:25:17.3546107Z patching file drivers/pnp/core.c
2025-10-31T05:25:17.3546748Z patching file drivers/pnp/pnpacpi/rsparser.c
2025-10-31T05:25:17.3552934Z patching file drivers/power/reset/arm-versatile-reboot.c
2025-10-31T05:25:17.3553745Z patching file drivers/power/reset/at91-reset.c
2025-10-31T05:25:17.3554869Z patching file drivers/power/reset/at91-sama5d2_shdwc.c
2025-10-31T05:25:17.3562889Z patching file drivers/power/reset/brcmstb-reboot.c
2025-10-31T05:25:17.3563364Z patching file drivers/power/reset/gemini-poweroff.c
2025-10-31T05:25:17.3563787Z patching file drivers/power/reset/gpio-poweroff.c
2025-10-31T05:25:17.3564203Z patching file drivers/power/reset/ltc2952-poweroff.c
2025-10-31T05:25:17.3564598Z patching file drivers/power/reset/mt6323-poweroff.c
2025-10-31T05:25:17.3564967Z patching file drivers/power/supply/Kconfig
2025-10-31T05:25:17.3565353Z patching file drivers/power/supply/ab8500_btemp.c
2025-10-31T05:25:17.3565748Z patching file drivers/power/supply/ab8500_charger.c
2025-10-31T05:25:17.3566127Z patching file drivers/power/supply/ab8500_fg.c
2025-10-31T05:25:17.3566511Z patching file drivers/power/supply/adp5061.c
2025-10-31T05:25:17.3567444Z patching file drivers/power/supply/axp20x_battery.c
2025-10-31T05:25:17.3569429Z patching file drivers/power/supply/axp20x_usb_power.c
2025-10-31T05:25:17.3570709Z patching file drivers/power/supply/axp288_charger.c
2025-10-31T05:25:17.3573493Z patching file drivers/power/supply/axp288_fuel_gauge.c
2025-10-31T05:25:17.3574576Z patching file drivers/power/supply/bq24190_charger.c
2025-10-31T05:25:17.3577468Z patching file drivers/power/supply/bq25890_charger.c
2025-10-31T05:25:17.3579238Z patching file drivers/power/supply/bq25980_charger.c
2025-10-31T05:25:17.3581611Z patching file drivers/power/supply/bq27xxx_battery.c
2025-10-31T05:25:17.3593433Z patching file drivers/power/supply/bq27xxx_battery_i2c.c
2025-10-31T05:25:17.3594227Z patching file drivers/power/supply/charger-manager.c
2025-10-31T05:25:17.3595338Z patching file drivers/power/supply/cpcap-battery.c
2025-10-31T05:25:17.3595760Z patching file drivers/power/supply/cpcap-charger.c
2025-10-31T05:25:17.3596185Z patching file drivers/power/supply/cros_usbpd-charger.c
2025-10-31T05:25:17.3596838Z patching file drivers/power/supply/cw2015_battery.c
2025-10-31T05:25:17.3597235Z patching file drivers/power/supply/da9150-charger.c
2025-10-31T05:25:17.3597625Z patching file drivers/power/supply/da9150-fg.c
2025-10-31T05:25:17.3598060Z patching file drivers/power/supply/generic-adc-battery.c
2025-10-31T05:25:17.3598459Z patching file drivers/power/supply/gpio-charger.c
2025-10-31T05:25:17.3598848Z patching file drivers/power/supply/lp8788-charger.c
2025-10-31T05:25:17.3599257Z patching file drivers/power/supply/max14577_charger.c
2025-10-31T05:25:17.3599948Z patching file drivers/power/supply/max17040_battery.c
2025-10-31T05:25:17.3601524Z patching file drivers/power/supply/max17042_battery.c
2025-10-31T05:25:17.3603907Z patching file drivers/power/supply/max77693_charger.c
2025-10-31T05:25:17.3605116Z patching file drivers/power/supply/pm2301_charger.c
2025-10-31T05:25:17.3606784Z patching file drivers/power/supply/power_supply_core.c
2025-10-31T05:25:17.3609480Z patching file drivers/power/supply/power_supply_leds.c
2025-10-31T05:25:17.3610056Z patching file drivers/power/supply/power_supply_sysfs.c
2025-10-31T05:25:17.3611357Z patching file drivers/power/supply/rt5033_battery.c
2025-10-31T05:25:17.3613262Z patching file drivers/power/supply/rt9455_charger.c
2025-10-31T05:25:17.3615354Z patching file drivers/power/supply/s3c_adc_battery.c
2025-10-31T05:25:17.3616182Z patching file drivers/power/supply/sbs-charger.c
2025-10-31T05:25:17.3617635Z patching file drivers/power/supply/sc2731_charger.c
2025-10-31T05:25:17.3619120Z patching file drivers/power/supply/sc27xx_fuel_gauge.c
2025-10-31T05:25:17.3621119Z patching file drivers/power/supply/smb347-charger.c
2025-10-31T05:25:17.3623336Z patching file drivers/power/supply/tps65090-charger.c
2025-10-31T05:25:17.3625124Z patching file drivers/power/supply/tps65217_charger.c
2025-10-31T05:25:17.3626105Z patching file drivers/power/supply/ucs1002_power.c
2025-10-31T05:25:17.3627635Z patching file drivers/power/supply/wm8350_power.c
2025-10-31T05:25:17.3629129Z patching file drivers/powercap/Kconfig
2025-10-31T05:25:17.3630085Z patching file drivers/powercap/intel_rapl_common.c
2025-10-31T05:25:17.3631906Z patching file drivers/powercap/intel_rapl_msr.c
2025-10-31T05:25:17.3633105Z patching file drivers/powercap/powercap_sys.c
2025-10-31T05:25:17.3635218Z patching file drivers/pps/clients/pps-gpio.c
2025-10-31T05:25:17.3635637Z patching file drivers/pps/clients/pps-ktimer.c
2025-10-31T05:25:17.3643496Z patching file drivers/pps/clients/pps-ldisc.c
2025-10-31T05:25:17.3644080Z patching file drivers/pps/clients/pps_parport.c
2025-10-31T05:25:17.3645142Z patching file drivers/pps/kapi.c
2025-10-31T05:25:17.3646082Z patching file drivers/pps/kc.c
2025-10-31T05:25:17.3646682Z patching file drivers/pps/pps.c
2025-10-31T05:25:17.3647305Z patching file drivers/ps3/ps3stor_lib.c
2025-10-31T05:25:17.3647813Z patching file drivers/ptp/Kconfig
2025-10-31T05:25:17.3648196Z patching file drivers/ptp/ptp_chardev.c
2025-10-31T05:25:17.3648556Z patching file drivers/ptp/ptp_clock.c
2025-10-31T05:25:17.3648918Z patching file drivers/ptp/ptp_pch.c
2025-10-31T05:25:17.3649286Z patching file drivers/ptp/ptp_private.h
2025-10-31T05:25:17.3649649Z patching file drivers/ptp/ptp_qoriq.c
2025-10-31T05:25:17.3649998Z patching file drivers/ptp/ptp_sysfs.c
2025-10-31T05:25:17.3650841Z patching file drivers/pwm/pwm-atmel.c
2025-10-31T05:25:17.3652120Z patching file drivers/pwm/pwm-berlin.c
2025-10-31T05:25:17.3653401Z patching file drivers/pwm/pwm-brcmstb.c
2025-10-31T05:25:17.3654213Z patching file drivers/pwm/pwm-cros-ec.c
2025-10-31T05:25:17.3655223Z patching file drivers/pwm/pwm-fsl-ftm.c
2025-10-31T05:25:17.3656520Z patching file drivers/pwm/pwm-hibvt.c
2025-10-31T05:25:17.3657418Z patching file drivers/pwm/pwm-img.c
2025-10-31T05:25:17.3658358Z patching file drivers/pwm/pwm-imx-tpm.c
2025-10-31T05:25:17.3659286Z patching file drivers/pwm/pwm-imx1.c
2025-10-31T05:25:17.3660002Z patching file drivers/pwm/pwm-imx27.c
2025-10-31T05:25:17.3661153Z patching file drivers/pwm/pwm-iqs620a.c
2025-10-31T05:25:17.3662347Z patching file drivers/pwm/pwm-jz4740.c
2025-10-31T05:25:17.3662956Z patching file drivers/pwm/pwm-lp3943.c
2025-10-31T05:25:17.3664066Z patching file drivers/pwm/pwm-lpc18xx-sct.c
2025-10-31T05:25:17.3665268Z patching file drivers/pwm/pwm-lpc32xx.c
2025-10-31T05:25:17.3666518Z patching file drivers/pwm/pwm-mediatek.c
2025-10-31T05:25:17.3668203Z patching file drivers/pwm/pwm-meson.c
2025-10-31T05:25:17.3669923Z patching file drivers/pwm/pwm-mtk-disp.c
2025-10-31T05:25:17.3671365Z patching file drivers/pwm/pwm-mxs.c
2025-10-31T05:25:17.3672358Z patching file drivers/pwm/pwm-rcar.c
2025-10-31T05:25:17.3673618Z patching file drivers/pwm/pwm-rockchip.c
2025-10-31T05:25:17.3674856Z patching file drivers/pwm/pwm-sifive.c
2025-10-31T05:25:17.3675964Z patching file drivers/pwm/pwm-spear.c
2025-10-31T05:25:17.3676820Z patching file drivers/pwm/pwm-sprd.c
2025-10-31T05:25:17.3677712Z patching file drivers/pwm/pwm-sti.c
2025-10-31T05:25:17.3678860Z patching file drivers/pwm/pwm-stm32-lp.c
2025-10-31T05:25:17.3679700Z patching file drivers/pwm/pwm-stm32.c
2025-10-31T05:25:17.3681177Z patching file drivers/pwm/pwm-sun4i.c
2025-10-31T05:25:17.3682098Z patching file drivers/pwm/pwm-tegra.c
2025-10-31T05:25:17.3683572Z patching file drivers/pwm/pwm-tiehrpwm.c
2025-10-31T05:25:17.3684412Z patching file drivers/pwm/pwm-zx.c
2025-10-31T05:25:17.3685535Z patching file drivers/pwm/sysfs.c
2025-10-31T05:25:17.3687364Z patching file drivers/rapidio/devices/rio_mport_cdev.c
2025-10-31T05:25:17.3689310Z patching file drivers/rapidio/rio-scan.c
2025-10-31T05:25:17.3690944Z patching file drivers/rapidio/rio.c
2025-10-31T05:25:17.3693190Z patching file drivers/rapidio/rio_cm.c
2025-10-31T05:25:17.3695241Z patching file drivers/ras/cec.c
2025-10-31T05:25:17.3696335Z patching file drivers/regulator/ad5398.c
2025-10-31T05:25:17.3697759Z patching file drivers/regulator/axp20x-regulator.c
2025-10-31T05:25:17.3699906Z patching file drivers/regulator/bd71828-regulator.c
2025-10-31T05:25:17.3702339Z patching file drivers/regulator/bd718x7-regulator.c
2025-10-31T05:25:17.3705278Z patching file drivers/regulator/bd9571mwv-regulator.c
2025-10-31T05:25:17.3706991Z patching file drivers/regulator/bd9576-regulator.c
2025-10-31T05:25:17.3709220Z patching file drivers/regulator/core.c
2025-10-31T05:25:17.3714847Z patching file drivers/regulator/cros-ec-regulator.c
2025-10-31T05:25:17.3715461Z patching file drivers/regulator/da9052-regulator.c
2025-10-31T05:25:17.3716980Z patching file drivers/regulator/da9211-regulator.c
2025-10-31T05:25:17.3717605Z patching file drivers/regulator/fan53555.c
2025-10-31T05:25:17.3719011Z patching file drivers/regulator/fan53880.c
2025-10-31T05:25:17.3720006Z patching file drivers/regulator/fixed.c
2025-10-31T05:25:17.3721259Z patching file drivers/regulator/gpio-regulator.c
2025-10-31T05:25:17.3722316Z patching file drivers/regulator/helpers.c
2025-10-31T05:25:17.3724091Z patching file drivers/regulator/hi6421-regulator.c
2025-10-31T05:25:17.3725385Z patching file drivers/regulator/hi655x-regulator.c
2025-10-31T05:25:17.3726529Z patching file drivers/regulator/max14577-regulator.c
2025-10-31T05:25:17.3727962Z patching file drivers/regulator/max77620-regulator.c
2025-10-31T05:25:17.3729389Z patching file drivers/regulator/max77802-regulator.c
2025-10-31T05:25:17.3730735Z patching file drivers/regulator/mt6358-regulator.c
2025-10-31T05:25:17.3731573Z patching file drivers/regulator/mt6360-regulator.c
2025-10-31T05:25:17.3732913Z patching file drivers/regulator/of_regulator.c
2025-10-31T05:25:17.3734143Z patching file drivers/regulator/pca9450-regulator.c
2025-10-31T05:25:17.3735633Z patching file drivers/regulator/pfuze100-regulator.c
2025-10-31T05:25:17.3736765Z patching file drivers/regulator/pwm-regulator.c
2025-10-31T05:25:17.3737772Z patching file drivers/regulator/qcom-rpmh-regulator.c
2025-10-31T05:25:17.3739376Z patching file drivers/regulator/qcom_rpm-regulator.c
2025-10-31T05:25:17.3740927Z patching file drivers/regulator/qcom_smd-regulator.c
2025-10-31T05:25:17.3743819Z patching file drivers/regulator/rk808-regulator.c
2025-10-31T05:25:17.3745283Z patching file drivers/regulator/rohm-regulator.c
2025-10-31T05:25:17.3746992Z patching file drivers/regulator/rpi-panel-attiny-regulator.c
2025-10-31T05:25:17.3747996Z patching file drivers/regulator/rt4801-regulator.c
2025-10-31T05:25:17.3748892Z patching file drivers/regulator/rtmv20-regulator.c
2025-10-31T05:25:17.3750710Z patching file drivers/regulator/s5m8767.c
2025-10-31T05:25:17.3752166Z patching file drivers/regulator/slg51000-regulator.c
2025-10-31T05:25:17.3753893Z patching file drivers/regulator/stm32-pwr.c
2025-10-31T05:25:17.3755236Z patching file drivers/regulator/tps65910-regulator.c
2025-10-31T05:25:17.3757019Z patching file drivers/regulator/twl6030-regulator.c
2025-10-31T05:25:17.3759507Z patching file drivers/regulator/uniphier-regulator.c
2025-10-31T05:25:17.3760122Z patching file drivers/regulator/vctrl-regulator.c
2025-10-31T05:25:17.3762376Z patching file drivers/regulator/vqmmc-ipq4019-regulator.c
2025-10-31T05:25:17.3763361Z patching file drivers/regulator/wm8994-regulator.c
2025-10-31T05:25:17.3764057Z patching file drivers/remoteproc/Kconfig
2025-10-31T05:25:17.3764546Z patching file drivers/remoteproc/imx_rproc.c
2025-10-31T05:25:17.3765615Z patching file drivers/remoteproc/mtk_common.h
2025-10-31T05:25:17.3766634Z patching file drivers/remoteproc/mtk_scp.c
2025-10-31T05:25:17.3768133Z patching file drivers/remoteproc/mtk_scp_ipi.c
2025-10-31T05:25:17.3768744Z patching file drivers/remoteproc/qcom_pil_info.c
2025-10-31T05:25:17.3769984Z patching file drivers/remoteproc/qcom_q6v5.c
2025-10-31T05:25:17.3770606Z patching file drivers/remoteproc/qcom_q6v5_adsp.c
2025-10-31T05:25:17.3772737Z patching file drivers/remoteproc/qcom_q6v5_mss.c
2025-10-31T05:25:17.3774547Z patching file drivers/remoteproc/qcom_q6v5_pas.c
2025-10-31T05:25:17.3775734Z patching file drivers/remoteproc/qcom_sysmon.c
2025-10-31T05:25:17.3777041Z patching file drivers/remoteproc/qcom_wcnss.c
2025-10-31T05:25:17.3777939Z patching file drivers/remoteproc/remoteproc_cdev.c
2025-10-31T05:25:17.3779604Z patching file drivers/remoteproc/remoteproc_core.c
2025-10-31T05:25:17.3781845Z patching file drivers/remoteproc/remoteproc_debugfs.c
2025-10-31T05:25:17.3783473Z patching file drivers/remoteproc/remoteproc_internal.h
2025-10-31T05:25:17.3784420Z patching file drivers/remoteproc/st_remoteproc.c
2025-10-31T05:25:17.3785198Z patching file drivers/remoteproc/stm32_rproc.c
2025-10-31T05:25:17.3787304Z patching file drivers/remoteproc/ti_k3_dsp_remoteproc.c
2025-10-31T05:25:17.3789052Z patching file drivers/remoteproc/ti_k3_r5_remoteproc.c
2025-10-31T05:25:17.3790792Z patching file drivers/reset/Kconfig
2025-10-31T05:25:17.3791745Z patching file drivers/reset/core.c
2025-10-31T05:25:17.3793066Z patching file drivers/reset/hisilicon/hi6220_reset.c
2025-10-31T05:25:17.3793914Z patching file drivers/reset/reset-a10sr.c
2025-10-31T05:25:17.3794610Z patching file drivers/reset/reset-berlin.c
2025-10-31T05:25:17.3795600Z patching file drivers/reset/reset-brcmstb-rescal.c
2025-10-31T05:25:17.3796572Z patching file drivers/reset/reset-brcmstb.c
2025-10-31T05:25:17.3797281Z patching file drivers/reset/reset-imx7.c
2025-10-31T05:25:17.3797993Z patching file drivers/reset/reset-socfpga.c
2025-10-31T05:25:17.3798709Z patching file drivers/reset/reset-ti-syscon.c
2025-10-31T05:25:17.3799369Z patching file drivers/reset/reset-zynqmp.c
2025-10-31T05:25:17.3800001Z patching file drivers/reset/tegra/reset-bpmp.c
2025-10-31T05:25:17.3801120Z patching file drivers/rpmsg/mtk_rpmsg.c
2025-10-31T05:25:17.3802521Z patching file drivers/rpmsg/qcom_glink_native.c
2025-10-31T05:25:17.3805997Z patching file drivers/rpmsg/qcom_smd.c
2025-10-31T05:25:17.3807531Z patching file drivers/rpmsg/rpmsg_char.c
2025-10-31T05:25:17.3808307Z patching file drivers/rpmsg/rpmsg_core.c
2025-10-31T05:25:17.3809719Z patching file drivers/rpmsg/rpmsg_internal.h
2025-10-31T05:25:17.3810626Z patching file drivers/rpmsg/virtio_rpmsg_bus.c
2025-10-31T05:25:17.3812403Z patching file drivers/rtc/Kconfig
2025-10-31T05:25:17.3814765Z patching file drivers/rtc/Makefile
2025-10-31T05:25:17.3815787Z patching file drivers/rtc/class.c
2025-10-31T05:25:17.3816442Z patching file drivers/rtc/interface.c
2025-10-31T05:25:17.3818323Z patching file drivers/rtc/lib.c
2025-10-31T05:25:17.3819759Z patching file drivers/rtc/lib_test.c
2025-10-31T05:25:17.3820894Z patching file drivers/rtc/proc.c
2025-10-31T05:25:17.3821808Z patching file drivers/rtc/rtc-ab-eoz9.c
2025-10-31T05:25:17.3823010Z patching file drivers/rtc/rtc-abx80x.c
2025-10-31T05:25:17.3824852Z patching file drivers/rtc/rtc-at91sam9.c
2025-10-31T05:25:17.3826473Z patching file drivers/rtc/rtc-cmos.c
2025-10-31T05:25:17.3830383Z patching file drivers/rtc/rtc-ds1307.c
2025-10-31T05:25:17.3831876Z patching file drivers/rtc/rtc-ds1347.c
2025-10-31T05:25:17.3833365Z patching file drivers/rtc/rtc-ds1685.c
2025-10-31T05:25:17.3834443Z patching file drivers/rtc/rtc-ep93xx.c
2025-10-31T05:25:17.3835259Z patching file drivers/rtc/rtc-fsl-ftm-alarm.c
2025-10-31T05:25:17.3836169Z patching file drivers/rtc/rtc-hym8563.c
2025-10-31T05:25:17.3837231Z patching file drivers/rtc/rtc-isl1208.c
2025-10-31T05:25:17.3838445Z patching file drivers/rtc/rtc-max77686.c
2025-10-31T05:25:17.3839542Z patching file drivers/rtc/rtc-mc146818-lib.c
2025-10-31T05:25:17.3840920Z patching file drivers/rtc/rtc-meson-vrtc.c
2025-10-31T05:25:17.3841596Z patching file drivers/rtc/rtc-mt6397.c
2025-10-31T05:25:17.3842474Z patching file drivers/rtc/rtc-mxc_v2.c
2025-10-31T05:25:17.3843517Z patching file drivers/rtc/rtc-omap.c
2025-10-31T05:25:17.3844850Z patching file drivers/rtc/rtc-pcf2127.c
2025-10-31T05:25:17.3846222Z patching file drivers/rtc/rtc-pcf85063.c
2025-10-31T05:25:17.3847338Z patching file drivers/rtc/rtc-pcf85363.c
2025-10-31T05:25:17.3848282Z patching file drivers/rtc/rtc-pcf8563.c
2025-10-31T05:25:17.3849187Z patching file drivers/rtc/rtc-pic32.c
2025-10-31T05:25:17.3850056Z patching file drivers/rtc/rtc-pl030.c
2025-10-31T05:25:17.3850806Z patching file drivers/rtc/rtc-pl031.c
2025-10-31T05:25:17.3851712Z patching file drivers/rtc/rtc-pm8xxx.c
2025-10-31T05:25:17.3853066Z patching file drivers/rtc/rtc-pxa.c
2025-10-31T05:25:17.3854166Z patching file drivers/rtc/rtc-rv3028.c
2025-10-31T05:25:17.3855493Z patching file drivers/rtc/rtc-rv3032.c
2025-10-31T05:25:17.3856663Z patching file drivers/rtc/rtc-sh.c
2025-10-31T05:25:17.3857386Z patching file drivers/rtc/rtc-snvs.c
2025-10-31T05:25:17.3858298Z patching file drivers/rtc/rtc-st-lpc.c
2025-10-31T05:25:17.3859369Z patching file drivers/rtc/rtc-stm32.c
2025-10-31T05:25:17.3860610Z patching file drivers/rtc/rtc-sun6i.c
2025-10-31T05:25:17.3861825Z patching file drivers/rtc/rtc-tps65910.c
2025-10-31T05:25:17.3862986Z patching file drivers/rtc/rtc-wm8350.c
2025-10-31T05:25:17.3863935Z patching file drivers/rtc/rtc-x1205.c
2025-10-31T05:25:17.3866005Z patching file drivers/s390/block/dasd.c
2025-10-31T05:25:17.3869742Z patching file drivers/s390/block/dasd_3990_erp.c
2025-10-31T05:25:17.3871592Z patching file drivers/s390/block/dasd_alias.c
2025-10-31T05:25:17.3873144Z patching file drivers/s390/block/dasd_diag.c
2025-10-31T05:25:17.3875680Z patching file drivers/s390/block/dasd_eckd.c
2025-10-31T05:25:17.3880055Z patching file drivers/s390/block/dasd_fba.c
2025-10-31T05:25:17.3881136Z patching file drivers/s390/block/dasd_int.h
2025-10-31T05:25:17.3882882Z patching file drivers/s390/block/dasd_ioctl.c
2025-10-31T05:25:17.3883661Z patching file drivers/s390/block/scm_blk.c
2025-10-31T05:25:17.3884657Z patching file drivers/s390/char/keyboard.h
2025-10-31T05:25:17.3885561Z patching file drivers/s390/char/sclp.c
2025-10-31T05:25:17.3886828Z patching file drivers/s390/char/sclp_early.c
2025-10-31T05:25:17.3887438Z patching file drivers/s390/char/sclp_sd.c
2025-10-31T05:25:17.3888655Z patching file drivers/s390/char/sclp_vt220.c
2025-10-31T05:25:17.3889757Z patching file drivers/s390/char/tape_std.c
2025-10-31T05:25:17.3890689Z patching file drivers/s390/char/zcore.c
2025-10-31T05:25:17.3891927Z patching file drivers/s390/cio/chp.c
2025-10-31T05:25:17.3893351Z patching file drivers/s390/cio/chsc.c
2025-10-31T05:25:17.3894831Z patching file drivers/s390/cio/css.c
2025-10-31T05:25:17.3896525Z patching file drivers/s390/cio/device.c
2025-10-31T05:25:17.3898286Z patching file drivers/s390/cio/device_ops.c
2025-10-31T05:25:17.3899258Z patching file drivers/s390/cio/idset.c
2025-10-31T05:25:17.3899959Z patching file drivers/s390/cio/qdio.h
2025-10-31T05:25:17.3901340Z patching file drivers/s390/cio/qdio_main.c
2025-10-31T05:25:17.3903332Z patching file drivers/s390/cio/trace.h
2025-10-31T05:25:17.3904127Z patching file drivers/s390/cio/vfio_ccw_cp.c
2025-10-31T05:25:17.3905212Z patching file drivers/s390/cio/vfio_ccw_drv.c
2025-10-31T05:25:17.3906164Z patching file drivers/s390/cio/vfio_ccw_fsm.c
2025-10-31T05:25:17.3906988Z patching file drivers/s390/cio/vfio_ccw_ops.c
2025-10-31T05:25:17.3908456Z patching file drivers/s390/crypto/ap_bus.c
2025-10-31T05:25:17.3909977Z patching file drivers/s390/crypto/ap_bus.h
2025-10-31T05:25:17.3910818Z patching file drivers/s390/crypto/ap_queue.c
2025-10-31T05:25:17.3912957Z patching file drivers/s390/crypto/pkey_api.c
2025-10-31T05:25:17.3914499Z patching file drivers/s390/crypto/vfio_ap_drv.c
2025-10-31T05:25:17.3915340Z patching file drivers/s390/crypto/vfio_ap_ops.c
2025-10-31T05:25:17.3917014Z patching file drivers/s390/crypto/vfio_ap_private.h
2025-10-31T05:25:17.3917895Z patching file drivers/s390/crypto/zcrypt_api.c
2025-10-31T05:25:17.3919691Z patching file drivers/s390/crypto/zcrypt_card.c
2025-10-31T05:25:17.3920673Z patching file drivers/s390/crypto/zcrypt_ccamisc.c
2025-10-31T05:25:17.3922569Z patching file drivers/s390/crypto/zcrypt_ep11misc.c
2025-10-31T05:25:17.3923948Z patching file drivers/s390/crypto/zcrypt_ep11misc.h
2025-10-31T05:25:17.3924424Z patching file drivers/s390/crypto/zcrypt_queue.c
2025-10-31T05:25:17.3925752Z patching file drivers/s390/net/ctcm_main.c
2025-10-31T05:25:17.3927559Z patching file drivers/s390/net/ctcm_mpc.c
2025-10-31T05:25:17.3929092Z patching file drivers/s390/net/ctcm_sysfs.c
2025-10-31T05:25:17.3930147Z patching file drivers/s390/net/lcs.c
2025-10-31T05:25:17.3932440Z patching file drivers/s390/net/netiucv.c
2025-10-31T05:25:17.3934173Z patching file drivers/s390/net/qeth_core.h
2025-10-31T05:25:17.3937312Z patching file drivers/s390/net/qeth_core_main.c
2025-10-31T05:25:17.3942387Z patching file drivers/s390/net/qeth_l2_main.c
2025-10-31T05:25:17.3944481Z patching file drivers/s390/net/qeth_l3_main.c
2025-10-31T05:25:17.3946179Z patching file drivers/s390/net/qeth_l3_sys.c
2025-10-31T05:25:17.3946993Z patching file drivers/s390/scsi/zfcp_aux.c
2025-10-31T05:25:17.3948336Z patching file drivers/s390/scsi/zfcp_fc.c
2025-10-31T05:25:17.3949651Z patching file drivers/s390/scsi/zfcp_fc.h
2025-10-31T05:25:17.3951067Z patching file drivers/s390/scsi/zfcp_fsf.c
2025-10-31T05:25:17.3953360Z patching file drivers/s390/scsi/zfcp_sysfs.c
2025-10-31T05:25:17.3954741Z patching file drivers/s390/virtio/virtio_ccw.c
2025-10-31T05:25:17.3957392Z patching file drivers/scsi/3w-9xxx.c
2025-10-31T05:25:17.3959622Z patching file drivers/scsi/3w-xxxx.c
2025-10-31T05:25:17.3961861Z patching file drivers/scsi/53c700.c
2025-10-31T05:25:17.3964716Z patching file drivers/scsi/BusLogic.c
2025-10-31T05:25:17.3967412Z patching file drivers/scsi/BusLogic.h
2025-10-31T05:25:17.3970233Z patching file drivers/scsi/FlashPoint.c
2025-10-31T05:25:17.3974578Z patching file drivers/scsi/Kconfig
2025-10-31T05:25:17.3976552Z patching file drivers/scsi/aacraid/aacraid.h
2025-10-31T05:25:17.3978427Z patching file drivers/scsi/aacraid/commctrl.c
2025-10-31T05:25:17.3979529Z patching file drivers/scsi/aacraid/comminit.c
2025-10-31T05:25:17.3980959Z patching file drivers/scsi/aacraid/linit.c
2025-10-31T05:25:17.3985723Z patching file drivers/scsi/advansys.c
2025-10-31T05:25:17.3992223Z patching file drivers/scsi/aha152x.c
2025-10-31T05:25:17.3996159Z patching file drivers/scsi/aic7xxx/aic7xxx_core.c
2025-10-31T05:25:17.4000908Z patching file drivers/scsi/aic94xx/aic94xx_init.c
2025-10-31T05:25:17.4002260Z patching file drivers/scsi/aic94xx/aic94xx_scb.c
2025-10-31T05:25:17.4004422Z patching file drivers/scsi/aic94xx/aic94xx_task.c
2025-10-31T05:25:17.4005972Z patching file drivers/scsi/arcmsr/arcmsr.h
2025-10-31T05:25:17.4008789Z patching file drivers/scsi/arcmsr/arcmsr_hba.c
2025-10-31T05:25:17.4012602Z patching file drivers/scsi/be2iscsi/be_iscsi.c
2025-10-31T05:25:17.4015975Z patching file drivers/scsi/be2iscsi/be_main.c
2025-10-31T05:25:17.4019760Z patching file drivers/scsi/bfa/bfa.h
2025-10-31T05:25:17.4021301Z patching file drivers/scsi/bfa/bfa_core.c
2025-10-31T05:25:17.4023673Z patching file drivers/scsi/bfa/bfa_ioc.h
2025-10-31T05:25:17.4025597Z patching file drivers/scsi/bfa/bfad.c
2025-10-31T05:25:17.4027682Z patching file drivers/scsi/bfa/bfad_attr.c
2025-10-31T05:25:17.4030327Z patching file drivers/scsi/bfa/bfad_bsg.c
2025-10-31T05:25:17.4033247Z patching file drivers/scsi/bfa/bfad_debugfs.c
2025-10-31T05:25:17.4034768Z patching file drivers/scsi/bfa/bfad_im.c
2025-10-31T05:25:17.4036298Z patching file drivers/scsi/bnx2fc/Kconfig
2025-10-31T05:25:17.4037884Z patching file drivers/scsi/bnx2fc/bnx2fc_fcoe.c
2025-10-31T05:25:17.4041112Z patching file drivers/scsi/bnx2fc/bnx2fc_io.c
2025-10-31T05:25:17.4043405Z patching file drivers/scsi/bnx2fc/bnx2fc_tgt.c
2025-10-31T05:25:17.4045477Z patching file drivers/scsi/bnx2i/bnx2i_iscsi.c
2025-10-31T05:25:17.4047886Z patching file drivers/scsi/csiostor/csio_defs.h
2025-10-31T05:25:17.4048743Z patching file drivers/scsi/csiostor/csio_init.c
2025-10-31T05:25:17.4050904Z patching file drivers/scsi/csiostor/csio_lnode.c
2025-10-31T05:25:17.4053204Z patching file drivers/scsi/csiostor/csio_lnode.h
2025-10-31T05:25:17.4054360Z patching file drivers/scsi/cxgbi/cxgb3i/cxgb3i.c
2025-10-31T05:25:17.4056201Z patching file drivers/scsi/cxgbi/cxgb4i/Kconfig
2025-10-31T05:25:17.4057428Z patching file drivers/scsi/cxgbi/cxgb4i/cxgb4i.c
2025-10-31T05:25:17.4060494Z patching file drivers/scsi/cxgbi/libcxgbi.c
2025-10-31T05:25:17.4064341Z patching file drivers/scsi/dc395x.c
2025-10-31T05:25:17.4068097Z patching file drivers/scsi/device_handler/scsi_dh_alua.c
2025-10-31T05:25:17.4069932Z patching file drivers/scsi/device_handler/scsi_dh_emc.c
2025-10-31T05:25:17.4070955Z patching file drivers/scsi/device_handler/scsi_dh_rdac.c
2025-10-31T05:25:17.4073681Z patching file drivers/scsi/dpt_i2o.c
2025-10-31T05:25:17.4076726Z patching file drivers/scsi/dpti.h
2025-10-31T05:25:17.4078448Z patching file drivers/scsi/fcoe/fcoe.c
2025-10-31T05:25:17.4081478Z patching file drivers/scsi/fcoe/fcoe_ctlr.c
2025-10-31T05:25:17.4084433Z patching file drivers/scsi/fcoe/fcoe_sysfs.c
2025-10-31T05:25:17.4086331Z patching file drivers/scsi/fnic/fnic_debugfs.c
2025-10-31T05:25:17.4087727Z patching file drivers/scsi/fnic/fnic_main.c
2025-10-31T05:25:17.4089591Z patching file drivers/scsi/fnic/vnic_dev.c
2025-10-31T05:25:17.4092231Z patching file drivers/scsi/hisi_sas/hisi_sas_main.c
2025-10-31T05:25:17.4095685Z patching file drivers/scsi/hisi_sas/hisi_sas_v1_hw.c
2025-10-31T05:25:17.4098750Z patching file drivers/scsi/hisi_sas/hisi_sas_v2_hw.c
2025-10-31T05:25:17.4102658Z patching file drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
2025-10-31T05:25:17.4106291Z patching file drivers/scsi/hosts.c
2025-10-31T05:25:17.4110756Z patching file drivers/scsi/hpsa.c
2025-10-31T05:25:17.4117611Z patching file drivers/scsi/ibmvscsi/ibmvfc.c
2025-10-31T05:25:17.4122511Z patching file drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c
2025-10-31T05:25:17.4125347Z patching file drivers/scsi/ibmvscsi_tgt/libsrp.c
2025-10-31T05:25:17.4129124Z patching file drivers/scsi/ipr.c
2025-10-31T05:25:17.4135832Z patching file drivers/scsi/isci/init.c
2025-10-31T05:25:17.4137471Z patching file drivers/scsi/isci/port.c
2025-10-31T05:25:17.4140405Z patching file drivers/scsi/isci/request.c
2025-10-31T05:25:17.4143635Z patching file drivers/scsi/isci/task.c
2025-10-31T05:25:17.4145044Z patching file drivers/scsi/iscsi_tcp.c
2025-10-31T05:25:17.4147301Z patching file drivers/scsi/iscsi_tcp.h
2025-10-31T05:25:17.4147942Z patching file drivers/scsi/jazz_esp.c
2025-10-31T05:25:17.4149956Z patching file drivers/scsi/libfc/fc_exch.c
2025-10-31T05:25:17.4153043Z patching file drivers/scsi/libfc/fc_fcp.c
2025-10-31T05:25:17.4155681Z patching file drivers/scsi/libfc/fc_lport.c
2025-10-31T05:25:17.4158150Z patching file drivers/scsi/libfc/fc_rport.c
2025-10-31T05:25:17.4161209Z patching file drivers/scsi/libiscsi.c
2025-10-31T05:25:17.4166182Z patching file drivers/scsi/libsas/sas_ata.c
2025-10-31T05:25:17.4167404Z patching file drivers/scsi/libsas/sas_event.c
2025-10-31T05:25:17.4169367Z patching file drivers/scsi/libsas/sas_expander.c
2025-10-31T05:25:17.4171425Z patching file drivers/scsi/libsas/sas_init.c
2025-10-31T05:25:17.4172832Z patching file drivers/scsi/libsas/sas_internal.h
2025-10-31T05:25:17.4173936Z patching file drivers/scsi/libsas/sas_port.c
2025-10-31T05:25:17.4175508Z patching file drivers/scsi/libsas/sas_scsi_host.c
2025-10-31T05:25:17.4176665Z patching file drivers/scsi/libsas/sas_task.c
2025-10-31T05:25:17.4178103Z patching file drivers/scsi/lpfc/lpfc.h
2025-10-31T05:25:17.4193058Z patching file drivers/scsi/lpfc/lpfc_attr.c
2025-10-31T05:25:17.4194536Z patching file drivers/scsi/lpfc/lpfc_crtn.h
2025-10-31T05:25:17.4195253Z patching file drivers/scsi/lpfc/lpfc_debugfs.c
2025-10-31T05:25:17.4195893Z patching file drivers/scsi/lpfc/lpfc_disc.h
2025-10-31T05:25:17.4199768Z patching file drivers/scsi/lpfc/lpfc_els.c
2025-10-31T05:25:17.4208080Z patching file drivers/scsi/lpfc/lpfc_hbadisc.c
2025-10-31T05:25:17.4213468Z patching file drivers/scsi/lpfc/lpfc_hw4.h
2025-10-31T05:25:17.4221449Z patching file drivers/scsi/lpfc/lpfc_init.c
2025-10-31T05:25:17.4229603Z patching file drivers/scsi/lpfc/lpfc_mbox.c
2025-10-31T05:25:17.4231681Z patching file drivers/scsi/lpfc/lpfc_mem.c
2025-10-31T05:25:17.4233463Z patching file drivers/scsi/lpfc/lpfc_nportdisc.c
2025-10-31T05:25:17.4237518Z patching file drivers/scsi/lpfc/lpfc_nvme.c
2025-10-31T05:25:17.4240363Z patching file drivers/scsi/lpfc/lpfc_nvmet.c
2025-10-31T05:25:17.4245350Z patching file drivers/scsi/lpfc/lpfc_scsi.c
2025-10-31T05:25:17.4255728Z patching file drivers/scsi/lpfc/lpfc_sli.c
2025-10-31T05:25:17.4268868Z patching file drivers/scsi/lpfc/lpfc_sli4.h
2025-10-31T05:25:17.4271294Z patching file drivers/scsi/megaraid.c
2025-10-31T05:25:17.4274828Z patching file drivers/scsi/megaraid/megaraid_mm.c
2025-10-31T05:25:17.4277297Z patching file drivers/scsi/megaraid/megaraid_sas.h
2025-10-31T05:25:17.4280846Z patching file drivers/scsi/megaraid/megaraid_sas_base.c
2025-10-31T05:25:17.4286843Z patching file drivers/scsi/megaraid/megaraid_sas_fp.c
2025-10-31T05:25:17.4289661Z patching file drivers/scsi/megaraid/megaraid_sas_fusion.c
2025-10-31T05:25:17.4295965Z patching file drivers/scsi/mpt3sas/mpt3sas_base.c
2025-10-31T05:25:17.4304202Z patching file drivers/scsi/mpt3sas/mpt3sas_base.h
2025-10-31T05:25:17.4319890Z patching file drivers/scsi/mpt3sas/mpt3sas_ctl.c
2025-10-31T05:25:17.4320878Z patching file drivers/scsi/mpt3sas/mpt3sas_scsih.c
2025-10-31T05:25:17.4321882Z patching file drivers/scsi/mpt3sas/mpt3sas_transport.c
2025-10-31T05:25:17.4324575Z patching file drivers/scsi/mvsas/mv_defs.h
2025-10-31T05:25:17.4325500Z patching file drivers/scsi/mvsas/mv_init.c
2025-10-31T05:25:17.4327761Z patching file drivers/scsi/mvsas/mv_sas.c
2025-10-31T05:25:17.4330486Z patching file drivers/scsi/mvsas/mv_sas.h
2025-10-31T05:25:17.4342457Z patching file drivers/scsi/myrb.c
2025-10-31T05:25:17.4343273Z patching file drivers/scsi/myrs.c
2025-10-31T05:25:17.4344096Z patching file drivers/scsi/pcmcia/fdomain_cs.c
2025-10-31T05:25:17.4344985Z patching file drivers/scsi/pm8001/pm8001_ctl.c
2025-10-31T05:25:17.4345858Z patching file drivers/scsi/pm8001/pm8001_hwi.c
2025-10-31T05:25:17.4353505Z patching file drivers/scsi/pm8001/pm8001_init.c
2025-10-31T05:25:17.4356614Z patching file drivers/scsi/pm8001/pm8001_sas.c
2025-10-31T05:25:17.4359829Z patching file drivers/scsi/pm8001/pm8001_sas.h
2025-10-31T05:25:17.4362611Z patching file drivers/scsi/pm8001/pm80xx_hwi.c
2025-10-31T05:25:17.4375086Z patching file drivers/scsi/pm8001/pm80xx_hwi.h
2025-10-31T05:25:17.4378146Z patching file drivers/scsi/pmcraid.c
2025-10-31T05:25:17.4381549Z patching file drivers/scsi/qedf/qedf_dbg.h
2025-10-31T05:25:17.4383774Z patching file drivers/scsi/qedf/qedf_debugfs.c
2025-10-31T05:25:17.4400992Z patching file drivers/scsi/qedf/qedf_io.c
2025-10-31T05:25:17.4401848Z patching file drivers/scsi/qedf/qedf_main.c
2025-10-31T05:25:17.4403033Z patching file drivers/scsi/qedi/qedi.h
2025-10-31T05:25:17.4403893Z patching file drivers/scsi/qedi/qedi_debugfs.c
2025-10-31T05:25:17.4404771Z patching file drivers/scsi/qedi/qedi_fw.c
2025-10-31T05:25:17.4405619Z patching file drivers/scsi/qedi/qedi_iscsi.c
2025-10-31T05:25:17.4406483Z patching file drivers/scsi/qedi/qedi_main.c
2025-10-31T05:25:17.4407315Z patching file drivers/scsi/qla1280.c
2025-10-31T05:25:17.4408116Z patching file drivers/scsi/qla1280.h
2025-10-31T05:25:17.4410080Z patching file drivers/scsi/qla2xxx/qla_attr.c
2025-10-31T05:25:17.4411129Z patching file drivers/scsi/qla2xxx/qla_bsg.c
2025-10-31T05:25:17.4412174Z patching file drivers/scsi/qla2xxx/qla_dbg.c
2025-10-31T05:25:17.4415525Z patching file drivers/scsi/qla2xxx/qla_def.h
2025-10-31T05:25:17.4418747Z patching file drivers/scsi/qla2xxx/qla_dfs.c
2025-10-31T05:25:17.4421603Z patching file drivers/scsi/qla2xxx/qla_gbl.h
2025-10-31T05:25:17.4424165Z patching file drivers/scsi/qla2xxx/qla_gs.c
2025-10-31T05:25:17.4429748Z patching file drivers/scsi/qla2xxx/qla_init.c
2025-10-31T05:25:17.4437684Z patching file drivers/scsi/qla2xxx/qla_inline.h
2025-10-31T05:25:17.4439625Z patching file drivers/scsi/qla2xxx/qla_iocb.c
2025-10-31T05:25:17.4444005Z patching file drivers/scsi/qla2xxx/qla_isr.c
2025-10-31T05:25:17.4447446Z patching file drivers/scsi/qla2xxx/qla_mbx.c
2025-10-31T05:25:17.4451862Z patching file drivers/scsi/qla2xxx/qla_mid.c
2025-10-31T05:25:17.4453919Z patching file drivers/scsi/qla2xxx/qla_mr.c
2025-10-31T05:25:17.4464226Z patching file drivers/scsi/qla2xxx/qla_nvme.c
2025-10-31T05:25:17.4465277Z patching file drivers/scsi/qla2xxx/qla_nx.c
2025-10-31T05:25:17.4466282Z patching file drivers/scsi/qla2xxx/qla_os.c
2025-10-31T05:25:17.4472588Z patching file drivers/scsi/qla2xxx/qla_sup.c
2025-10-31T05:25:17.4476977Z patching file drivers/scsi/qla2xxx/qla_target.c
2025-10-31T05:25:17.4481365Z patching file drivers/scsi/qla2xxx/qla_target.h
2025-10-31T05:25:17.4485447Z patching file drivers/scsi/qla2xxx/qla_tmpl.c
2025-10-31T05:25:17.4486366Z patching file drivers/scsi/qla2xxx/qla_tmpl.h
2025-10-31T05:25:17.4488233Z patching file drivers/scsi/qla2xxx/tcm_qla2xxx.c
2025-10-31T05:25:17.4489095Z patching file drivers/scsi/qla4xxx/ql4_os.c
2025-10-31T05:25:17.4493305Z patching file drivers/scsi/raid_class.c
2025-10-31T05:25:17.4494321Z patching file drivers/scsi/scsi.c
2025-10-31T05:25:17.4497421Z patching file drivers/scsi/scsi_debug.c
2025-10-31T05:25:17.4502382Z patching file drivers/scsi/scsi_debugfs.c
2025-10-31T05:25:17.4503331Z patching file drivers/scsi/scsi_devinfo.c
2025-10-31T05:25:17.4505227Z patching file drivers/scsi/scsi_error.c
2025-10-31T05:25:17.4508638Z patching file drivers/scsi/scsi_lib.c
2025-10-31T05:25:17.4511664Z patching file drivers/scsi/scsi_pm.c
2025-10-31T05:25:17.4512717Z patching file drivers/scsi/scsi_priv.h
2025-10-31T05:25:17.4513795Z patching file drivers/scsi/scsi_proc.c
2025-10-31T05:25:17.4515503Z patching file drivers/scsi/scsi_scan.c
2025-10-31T05:25:17.4517655Z patching file drivers/scsi/scsi_sysfs.c
2025-10-31T05:25:17.4520604Z patching file drivers/scsi/scsi_transport_iscsi.c
2025-10-31T05:25:17.4527165Z patching file drivers/scsi/scsi_transport_sas.c
2025-10-31T05:25:17.4529228Z patching file drivers/scsi/scsi_transport_spi.c
2025-10-31T05:25:17.4531087Z patching file drivers/scsi/scsi_transport_srp.c
2025-10-31T05:25:17.4533383Z patching file drivers/scsi/sd.c
2025-10-31T05:25:17.4536560Z patching file drivers/scsi/sd_zbc.c
2025-10-31T05:25:17.4537909Z patching file drivers/scsi/ses.c
2025-10-31T05:25:17.4540330Z patching file drivers/scsi/sg.c
2025-10-31T05:25:17.4544927Z patching file drivers/scsi/smartpqi/smartpqi_init.c
2025-10-31T05:25:17.4549760Z patching file drivers/scsi/sni_53c710.c
2025-10-31T05:25:17.4550820Z patching file drivers/scsi/snic/snic_disc.c
2025-10-31T05:25:17.4552139Z patching file drivers/scsi/sr.c
2025-10-31T05:25:17.4553773Z patching file drivers/scsi/sr_vendor.c
2025-10-31T05:25:17.4555957Z patching file drivers/scsi/st.c
2025-10-31T05:25:17.4559193Z patching file drivers/scsi/st.h
2025-10-31T05:25:17.4560450Z patching file drivers/scsi/stex.c
2025-10-31T05:25:17.4562982Z patching file drivers/scsi/storvsc_drv.c
2025-10-31T05:25:17.4565396Z patching file drivers/scsi/sun3x_esp.c
2025-10-31T05:25:17.4566190Z patching file drivers/scsi/ufs/Kconfig
2025-10-31T05:25:17.4567144Z patching file drivers/scsi/ufs/cdns-pltfrm.c
2025-10-31T05:25:17.4568036Z patching file drivers/scsi/ufs/tc-dwc-g210-pci.c
2025-10-31T05:25:17.4568913Z patching file drivers/scsi/ufs/ti-j721e-ufs.c
2025-10-31T05:25:17.4569893Z patching file drivers/scsi/ufs/ufs-exynos.c
2025-10-31T05:25:17.4571598Z patching file drivers/scsi/ufs/ufs-exynos.h
2025-10-31T05:25:17.4572586Z patching file drivers/scsi/ufs/ufs-hisi.c
2025-10-31T05:25:17.4573890Z patching file drivers/scsi/ufs/ufs-mediatek.c
2025-10-31T05:25:17.4575604Z patching file drivers/scsi/ufs/ufs-qcom.c
2025-10-31T05:25:17.4577398Z patching file drivers/scsi/ufs/ufs-qcom.h
2025-10-31T05:25:17.4578545Z patching file drivers/scsi/ufs/ufs-sysfs.c
2025-10-31T05:25:17.4579902Z patching file drivers/scsi/ufs/ufs.h
2025-10-31T05:25:17.4580934Z patching file drivers/scsi/ufs/ufs_bsg.c
2025-10-31T05:25:17.4581804Z patching file drivers/scsi/ufs/ufshcd-pci.c
2025-10-31T05:25:17.4583374Z patching file drivers/scsi/ufs/ufshcd-pltfrm.c
2025-10-31T05:25:17.4586800Z patching file drivers/scsi/ufs/ufshcd.c
2025-10-31T05:25:17.4593339Z patching file drivers/scsi/ufs/ufshcd.h
2025-10-31T05:25:17.4594984Z patching file drivers/scsi/ufs/ufshci.h
2025-10-31T05:25:17.4596161Z patching file drivers/scsi/virtio_scsi.c
2025-10-31T05:25:17.4597945Z patching file drivers/scsi/vmw_pvscsi.c
2025-10-31T05:25:17.4599400Z patching file drivers/scsi/vmw_pvscsi.h
2025-10-31T05:25:17.4600680Z patching file drivers/scsi/xen-scsifront.c
2025-10-31T05:25:17.4602123Z patching file drivers/scsi/zorro7xx.c
2025-10-31T05:25:17.4603159Z patching file drivers/sh/clk/core.c
2025-10-31T05:25:17.4604471Z patching file drivers/sh/intc/core.c
2025-10-31T05:25:17.4605436Z patching file drivers/sh/maple/maple.c
2025-10-31T05:25:17.4606740Z patching file drivers/siox/siox-core.c
2025-10-31T05:25:17.4607992Z patching file drivers/slimbus/core.c
2025-10-31T05:25:17.4609038Z patching file drivers/slimbus/messaging.c
2025-10-31T05:25:17.4610140Z patching file drivers/slimbus/qcom-ctrl.c
2025-10-31T05:25:17.4611523Z patching file drivers/slimbus/qcom-ngd-ctrl.c
2025-10-31T05:25:17.4613164Z patching file drivers/slimbus/stream.c
2025-10-31T05:25:17.4614247Z patching file drivers/soc/amlogic/meson-canvas.c
2025-10-31T05:25:17.4615162Z patching file drivers/soc/amlogic/meson-mx-socinfo.c
2025-10-31T05:25:17.4616119Z patching file drivers/soc/amlogic/meson-secure-pwrc.c
2025-10-31T05:25:17.4617078Z patching file drivers/soc/aspeed/aspeed-lpc-ctrl.c
2025-10-31T05:25:17.4617979Z patching file drivers/soc/aspeed/aspeed-lpc-snoop.c
2025-10-31T05:25:17.4619259Z patching file drivers/soc/aspeed/aspeed-p2a-ctrl.c
2025-10-31T05:25:17.4620135Z patching file drivers/soc/atmel/soc.c
2025-10-31T05:25:17.4621448Z patching file drivers/soc/bcm/brcmstb/pm/pm-arm.c
2025-10-31T05:25:17.4622882Z patching file drivers/soc/fsl/Kconfig
2025-10-31T05:25:17.4623744Z patching file drivers/soc/fsl/dpaa2-console.c
2025-10-31T05:25:17.4624811Z patching file drivers/soc/fsl/dpio/dpio-service.c
2025-10-31T05:25:17.4626313Z patching file drivers/soc/fsl/dpio/qbman-portal.c
2025-10-31T05:25:17.4627795Z patching file drivers/soc/fsl/guts.c
2025-10-31T05:25:17.4629649Z patching file drivers/soc/fsl/qbman/qman.c
2025-10-31T05:25:17.4632082Z patching file drivers/soc/fsl/qe/Kconfig
2025-10-31T05:25:17.4632883Z patching file drivers/soc/fsl/qe/qe_io.c
2025-10-31T05:25:17.4633684Z patching file drivers/soc/imx/Kconfig
2025-10-31T05:25:17.4634686Z patching file drivers/soc/imx/soc-imx.c
2025-10-31T05:25:17.4635445Z patching file drivers/soc/ixp4xx/ixp4xx-npe.c
2025-10-31T05:25:17.4636524Z patching file drivers/soc/ixp4xx/ixp4xx-qmgr.c
2025-10-31T05:25:17.4637608Z patching file drivers/soc/mediatek/mtk-cmdq-helper.c
2025-10-31T05:25:17.4638518Z patching file drivers/soc/mediatek/mtk-mmsys.c
2025-10-31T05:25:17.4639647Z patching file drivers/soc/mediatek/mtk-scpsys.c
2025-10-31T05:25:17.4640838Z patching file drivers/soc/qcom/Kconfig
2025-10-31T05:25:17.4641749Z patching file drivers/soc/qcom/apr.c
2025-10-31T05:25:17.4644093Z patching file drivers/soc/qcom/cmd-db.c
2025-10-31T05:25:17.4645250Z patching file drivers/soc/qcom/cpr.c
2025-10-31T05:25:17.4646983Z patching file drivers/soc/qcom/llcc-qcom.c
2025-10-31T05:25:17.4647948Z patching file drivers/soc/qcom/mdt_loader.c
2025-10-31T05:25:17.4649124Z patching file drivers/soc/qcom/ocmem.c
2025-10-31T05:25:17.4650325Z patching file drivers/soc/qcom/pdr_interface.c
2025-10-31T05:25:17.4651781Z patching file drivers/soc/qcom/qcom-geni-se.c
2025-10-31T05:25:17.4653712Z patching file drivers/soc/qcom/qcom_aoss.c
2025-10-31T05:25:17.4654847Z patching file drivers/soc/qcom/qmi_encdec.c
2025-10-31T05:25:17.4656133Z patching file drivers/soc/qcom/rpmh-rsc.c
2025-10-31T05:25:17.4657444Z patching file drivers/soc/qcom/rpmh.c
2025-10-31T05:25:17.4658558Z patching file drivers/soc/qcom/rpmhpd.c
2025-10-31T05:25:17.4659790Z patching file drivers/soc/qcom/rpmpd.c
2025-10-31T05:25:17.4660739Z patching file drivers/soc/qcom/smem_state.c
2025-10-31T05:25:17.4661687Z patching file drivers/soc/qcom/smp2p.c
2025-10-31T05:25:17.4673038Z patching file drivers/soc/qcom/smsm.c
2025-10-31T05:25:17.4675114Z patching file drivers/soc/qcom/socinfo.c
2025-10-31T05:25:17.4676752Z patching file drivers/soc/renesas/r8a77980-sysc.c
2025-10-31T05:25:17.4677790Z patching file drivers/soc/renesas/r8a779a0-sysc.c
2025-10-31T05:25:17.4678720Z patching file drivers/soc/renesas/rmobile-sysc.c
2025-10-31T05:25:17.4679634Z patching file drivers/soc/rockchip/Kconfig
2025-10-31T05:25:17.4680483Z patching file drivers/soc/rockchip/grf.c
2025-10-31T05:25:17.4681346Z patching file drivers/soc/rockchip/io-domain.c
2025-10-31T05:25:17.4682583Z patching file drivers/soc/samsung/Kconfig
2025-10-31T05:25:17.4683450Z patching file drivers/soc/samsung/Makefile
2025-10-31T05:25:17.4684298Z patching file drivers/soc/samsung/exynos-asv.c
2025-10-31T05:25:17.4685193Z patching file drivers/soc/samsung/exynos-asv.h
2025-10-31T05:25:17.4686098Z patching file drivers/soc/samsung/exynos-chipid.c
2025-10-31T05:25:17.4687400Z patching file drivers/soc/sunxi/sunxi_sram.c
2025-10-31T05:25:17.4689385Z patching file drivers/soc/tegra/Kconfig
2025-10-31T05:25:17.4690271Z patching file drivers/soc/tegra/fuse/fuse-tegra.c
2025-10-31T05:25:17.4691227Z patching file drivers/soc/tegra/fuse/fuse-tegra30.c
2025-10-31T05:25:17.4692280Z patching file drivers/soc/tegra/fuse/fuse.h
2025-10-31T05:25:17.4693168Z patching file drivers/soc/tegra/fuse/speedo-tegra210.c
2025-10-31T05:25:17.4694108Z patching file drivers/soc/tegra/pmc.c
2025-10-31T05:25:17.4694983Z patching file drivers/soc/tegra/regulators-tegra30.c
2025-10-31T05:25:17.4696341Z patching file drivers/soc/ti/k3-socinfo.c
2025-10-31T05:25:17.4697188Z patching file drivers/soc/ti/knav_dma.c
2025-10-31T05:25:17.4698029Z patching file drivers/soc/ti/knav_qmss_queue.c
2025-10-31T05:25:17.4698893Z patching file drivers/soc/ti/omap_prm.c
2025-10-31T05:25:17.4699718Z patching file drivers/soc/ti/pm33xx.c
2025-10-31T05:25:17.4700524Z patching file drivers/soc/ti/pruss.c
2025-10-31T05:25:17.4701340Z patching file drivers/soc/ti/smartreflex.c
2025-10-31T05:25:17.4702462Z patching file drivers/soc/ti/ti_sci_pm_domains.c
2025-10-31T05:25:17.4703380Z patching file drivers/soc/ti/wkup_m3_ipc.c
2025-10-31T05:25:17.4704234Z patching file drivers/soc/ux500/ux500-soc-id.c
2025-10-31T05:25:17.4705159Z patching file drivers/soc/versatile/soc-integrator.c
2025-10-31T05:25:17.4706117Z patching file drivers/soc/versatile/soc-realview.c
2025-10-31T05:25:17.4707267Z patching file drivers/soc/xilinx/zynqmp_pm_domains.c
2025-10-31T05:25:17.4708218Z patching file drivers/soc/xilinx/zynqmp_power.c
2025-10-31T05:25:17.4709112Z patching file drivers/soundwire/bus.c
2025-10-31T05:25:17.4709946Z patching file drivers/soundwire/bus_type.c
2025-10-31T05:25:17.4710820Z patching file drivers/soundwire/cadence_master.c
2025-10-31T05:25:17.4711733Z patching file drivers/soundwire/cadence_master.h
2025-10-31T05:25:17.4712792Z patching file drivers/soundwire/debugfs.c
2025-10-31T05:25:17.4713630Z patching file drivers/soundwire/intel.c
2025-10-31T05:25:17.4714508Z patching file drivers/soundwire/intel_init.c
2025-10-31T05:25:17.4715520Z patching file drivers/soundwire/master.c
2025-10-31T05:25:17.4716630Z patching file drivers/soundwire/qcom.c
2025-10-31T05:25:17.4718712Z patching file drivers/soundwire/stream.c
2025-10-31T05:25:17.4720791Z patching file drivers/soundwire/sysfs_slave_dpn.c
2025-10-31T05:25:17.4732860Z patching file drivers/spi/Kconfig
2025-10-31T05:25:17.4734968Z patching file drivers/spi/atmel-quadspi.c
2025-10-31T05:25:17.4736580Z patching file drivers/spi/spi-altera.c
2025-10-31T05:25:17.4737705Z patching file drivers/spi/spi-amd.c
2025-10-31T05:25:17.4738532Z patching file drivers/spi/spi-ar934x.c
2025-10-31T05:25:17.4739369Z patching file drivers/spi/spi-armada-3700.c
2025-10-31T05:25:17.4740215Z patching file drivers/spi/spi-ath79.c
2025-10-31T05:25:17.4741026Z patching file drivers/spi/spi-atmel.c
2025-10-31T05:25:17.4741830Z patching file drivers/spi/spi-bcm-qspi.c
2025-10-31T05:25:17.4742828Z patching file drivers/spi/spi-bcm2835.c
2025-10-31T05:25:17.4743868Z patching file drivers/spi/spi-bcm63xx-hsspi.c
2025-10-31T05:25:17.4745160Z patching file drivers/spi/spi-bcm63xx.c
2025-10-31T05:25:17.4745976Z patching file drivers/spi/spi-bitbang.c
2025-10-31T05:25:17.4746823Z patching file drivers/spi/spi-cadence-quadspi.c
2025-10-31T05:25:17.4747709Z patching file drivers/spi/spi-cadence.c
2025-10-31T05:25:17.4748555Z patching file drivers/spi/spi-coldfire-qspi.c
2025-10-31T05:25:17.4749437Z patching file drivers/spi/spi-davinci.c
2025-10-31T05:25:17.4750932Z patching file drivers/spi/spi-dln2.c
2025-10-31T05:25:17.4752909Z patching file drivers/spi/spi-dw-bt1.c
2025-10-31T05:25:17.4754161Z patching file drivers/spi/spi-dw-core.c
2025-10-31T05:25:17.4756005Z patching file drivers/spi/spi-dw-dma.c
2025-10-31T05:25:17.4757025Z patching file drivers/spi/spi-fsl-cpm.c
2025-10-31T05:25:17.4758864Z patching file drivers/spi/spi-fsl-dspi.c
2025-10-31T05:25:17.4763908Z patching file drivers/spi/spi-fsl-lpspi.c
2025-10-31T05:25:17.4764811Z patching file drivers/spi/spi-fsl-qspi.c
2025-10-31T05:25:17.4765735Z patching file drivers/spi/spi-fsl-spi.c
2025-10-31T05:25:17.4767921Z patching file drivers/spi/spi-geni-qcom.c
2025-10-31T05:25:17.4769536Z patching file drivers/spi/spi-gpio.c
2025-10-31T05:25:17.4771057Z patching file drivers/spi/spi-hisi-sfc-v3xx.c
2025-10-31T05:25:17.4773908Z patching file drivers/spi/spi-img-spfi.c
2025-10-31T05:25:17.4774944Z patching file drivers/spi/spi-imx.c
2025-10-31T05:25:17.4780934Z patching file drivers/spi/spi-loopback-test.c
2025-10-31T05:25:17.4781839Z patching file drivers/spi/spi-mem.c
2025-10-31T05:25:17.4782914Z patching file drivers/spi/spi-meson-spicc.c
2025-10-31T05:25:17.4784012Z patching file drivers/spi/spi-meson-spifc.c
2025-10-31T05:25:17.4785126Z patching file drivers/spi/spi-mpc52xx.c
2025-10-31T05:25:17.4786471Z patching file drivers/spi/spi-mt65xx.c
2025-10-31T05:25:17.4788127Z patching file drivers/spi/spi-mt7621.c
2025-10-31T05:25:17.4789548Z patching file drivers/spi/spi-mtk-nor.c
2025-10-31T05:25:17.4791010Z patching file drivers/spi/spi-mux.c
2025-10-31T05:25:17.4792309Z patching file drivers/spi/spi-mxic.c
2025-10-31T05:25:17.4793866Z patching file drivers/spi/spi-mxs.c
2025-10-31T05:25:17.4795370Z patching file drivers/spi/spi-npcm-fiu.c
2025-10-31T05:25:17.4797026Z patching file drivers/spi/spi-nxp-fspi.c
2025-10-31T05:25:17.4798859Z patching file drivers/spi/spi-omap-100k.c
2025-10-31T05:25:17.4800190Z patching file drivers/spi/spi-omap-uwire.c
2025-10-31T05:25:17.4813634Z patching file drivers/spi/spi-omap2-mcspi.c
2025-10-31T05:25:17.4814543Z patching file drivers/spi/spi-pic32.c
2025-10-31T05:25:17.4815388Z patching file drivers/spi/spi-pl022.c
2025-10-31T05:25:17.4816217Z patching file drivers/spi/spi-ppc4xx.c
2025-10-31T05:25:17.4817076Z patching file drivers/spi/spi-pxa2xx-pci.c
2025-10-31T05:25:17.4817934Z patching file drivers/spi/spi-pxa2xx.c
2025-10-31T05:25:17.4818788Z patching file drivers/spi/spi-qcom-qspi.c
2025-10-31T05:25:17.4819671Z patching file drivers/spi/spi-qup.c
2025-10-31T05:25:17.4820493Z patching file drivers/spi/spi-rb4xx.c
2025-10-31T05:25:17.4821330Z patching file drivers/spi/spi-rockchip.c
2025-10-31T05:25:17.4822330Z patching file drivers/spi/spi-rpc-if.c
2025-10-31T05:25:17.4823169Z patching file drivers/spi/spi-rspi.c
2025-10-31T05:25:17.4823992Z patching file drivers/spi/spi-s3c64xx.c
2025-10-31T05:25:17.4824841Z patching file drivers/spi/spi-sc18is602.c
2025-10-31T05:25:17.4825697Z patching file drivers/spi/spi-sh-msiof.c
2025-10-31T05:25:17.4826555Z patching file drivers/spi/spi-sh.c
2025-10-31T05:25:17.4827386Z patching file drivers/spi/spi-sprd-adi.c
2025-10-31T05:25:17.4828740Z patching file drivers/spi/spi-sprd.c
2025-10-31T05:25:17.4830350Z patching file drivers/spi/spi-st-ssc4.c
2025-10-31T05:25:17.4842939Z patching file drivers/spi/spi-stm32-qspi.c
2025-10-31T05:25:17.4844970Z patching file drivers/spi/spi-stm32.c
2025-10-31T05:25:17.4845813Z patching file drivers/spi/spi-sun4i.c
2025-10-31T05:25:17.4846645Z patching file drivers/spi/spi-sun6i.c
2025-10-31T05:25:17.4847763Z patching file drivers/spi/spi-synquacer.c
2025-10-31T05:25:17.4849627Z patching file drivers/spi/spi-tegra114.c
2025-10-31T05:25:17.4850522Z patching file drivers/spi/spi-tegra20-sflash.c
2025-10-31T05:25:17.4852169Z patching file drivers/spi/spi-tegra20-slink.c
2025-10-31T05:25:17.4853053Z patching file drivers/spi/spi-ti-qspi.c
2025-10-31T05:25:17.4853929Z patching file drivers/spi/spi-topcliff-pch.c
2025-10-31T05:25:17.4854794Z patching file drivers/spi/spi-uniphier.c
2025-10-31T05:25:17.4855652Z patching file drivers/spi/spi-zynq-qspi.c
2025-10-31T05:25:17.4856671Z patching file drivers/spi/spi-zynqmp-gqspi.c
2025-10-31T05:25:17.4857542Z patching file drivers/spi/spi.c
2025-10-31T05:25:17.4860417Z patching file drivers/spi/spidev.c
2025-10-31T05:25:17.4862206Z patching file drivers/spmi/spmi-pmic-arb.c
2025-10-31T05:25:17.4873220Z patching file drivers/spmi/spmi.c
2025-10-31T05:25:17.4874056Z patching file drivers/ssb/main.c
2025-10-31T05:25:17.4874838Z patching file drivers/ssb/scan.c
2025-10-31T05:25:17.4875611Z patching file drivers/ssb/sdio.c
2025-10-31T05:25:17.4876427Z patching file drivers/staging/android/ion/ion.c
2025-10-31T05:25:17.4877354Z patching file drivers/staging/axis-fifo/axis-fifo.c
2025-10-31T05:25:17.4878268Z patching file drivers/staging/board/board.c
2025-10-31T05:25:17.4879163Z patching file drivers/staging/clocking-wizard/Kconfig
2025-10-31T05:25:17.4880113Z patching file drivers/staging/comedi/comedi_buf.c
2025-10-31T05:25:17.4881063Z patching file drivers/staging/comedi/comedi_fops.c
2025-10-31T05:25:17.4882165Z patching file drivers/staging/comedi/comedi_internal.h
2025-10-31T05:25:17.4883131Z patching file drivers/staging/comedi/drivers.c
2025-10-31T05:25:17.4884403Z patching file drivers/staging/comedi/drivers/addi_apci_1032.c
2025-10-31T05:25:17.4895213Z patching file drivers/staging/comedi/drivers/addi_apci_1500.c
2025-10-31T05:25:17.4896329Z patching file drivers/staging/comedi/drivers/adv_pci1710.c
2025-10-31T05:25:17.4898071Z patching file drivers/staging/comedi/drivers/adv_pci1760.c
2025-10-31T05:25:17.4899103Z patching file drivers/staging/comedi/drivers/aio_iiro_16.c
2025-10-31T05:25:17.4901409Z patching file drivers/staging/comedi/drivers/cb_pcidas.c
2025-10-31T05:25:17.4902968Z patching file drivers/staging/comedi/drivers/cb_pcidas64.c
2025-10-31T05:25:17.4904026Z patching file drivers/staging/comedi/drivers/comedi_test.c
2025-10-31T05:25:17.4905039Z patching file drivers/staging/comedi/drivers/das16m1.c
2025-10-31T05:25:17.4906278Z patching file drivers/staging/comedi/drivers/das6402.c
2025-10-31T05:25:17.4907274Z patching file drivers/staging/comedi/drivers/das800.c
2025-10-31T05:25:17.4908263Z patching file drivers/staging/comedi/drivers/dmm32at.c
2025-10-31T05:25:17.4909240Z patching file drivers/staging/comedi/drivers/dt9812.c
2025-10-31T05:25:17.4910206Z patching file drivers/staging/comedi/drivers/jr3_pci.c
2025-10-31T05:25:17.4912148Z patching file drivers/staging/comedi/drivers/me4000.c
2025-10-31T05:25:17.4913383Z patching file drivers/staging/comedi/drivers/mf6x4.c
2025-10-31T05:25:17.4914392Z patching file drivers/staging/comedi/drivers/ni_usb6501.c
2025-10-31T05:25:17.4915403Z patching file drivers/staging/comedi/drivers/pcl711.c
2025-10-31T05:25:17.4916523Z patching file drivers/staging/comedi/drivers/pcl812.c
2025-10-31T05:25:17.4917497Z patching file drivers/staging/comedi/drivers/pcl818.c
2025-10-31T05:25:17.4918886Z patching file drivers/staging/comedi/drivers/tests/ni_routes_test.c
2025-10-31T05:25:17.4920141Z patching file drivers/staging/comedi/drivers/vmk80xx.c
2025-10-31T05:25:17.4921278Z patching file drivers/staging/emxx_udc/emxx_udc.c
2025-10-31T05:25:17.4922564Z patching file drivers/staging/fbtft/fb_agm1264k-fl.c
2025-10-31T05:25:17.4924038Z patching file drivers/staging/fbtft/fb_bd663474.c
2025-10-31T05:25:17.4925104Z patching file drivers/staging/fbtft/fb_ili9163.c
2025-10-31T05:25:17.4926232Z patching file drivers/staging/fbtft/fb_ili9320.c
2025-10-31T05:25:17.4927577Z patching file drivers/staging/fbtft/fb_ili9325.c
2025-10-31T05:25:17.4928690Z patching file drivers/staging/fbtft/fb_ili9340.c
2025-10-31T05:25:17.4929797Z patching file drivers/staging/fbtft/fb_s6d1121.c
2025-10-31T05:25:17.4931018Z patching file drivers/staging/fbtft/fb_sh1106.c
2025-10-31T05:25:17.4932951Z patching file drivers/staging/fbtft/fb_ssd1289.c
2025-10-31T05:25:17.4934011Z patching file drivers/staging/fbtft/fb_ssd1325.c
2025-10-31T05:25:17.4935368Z patching file drivers/staging/fbtft/fb_ssd1331.c
2025-10-31T05:25:17.4936301Z patching file drivers/staging/fbtft/fb_ssd1351.c
2025-10-31T05:25:17.4937222Z patching file drivers/staging/fbtft/fb_st7789v.c
2025-10-31T05:25:17.4938335Z patching file drivers/staging/fbtft/fb_upd161704.c
2025-10-31T05:25:17.4939291Z patching file drivers/staging/fbtft/fb_watterott.c
2025-10-31T05:25:17.4940221Z patching file drivers/staging/fbtft/fbtft-bus.c
2025-10-31T05:25:17.4941134Z patching file drivers/staging/fbtft/fbtft-core.c
2025-10-31T05:25:17.4942668Z patching file drivers/staging/fbtft/fbtft-io.c
2025-10-31T05:25:17.4943597Z patching file drivers/staging/fbtft/fbtft.h
2025-10-31T05:25:17.4944521Z patching file drivers/staging/fieldbus/anybuss/host.c
2025-10-31T05:25:17.4945511Z patching file drivers/staging/fwserial/fwserial.c
2025-10-31T05:25:17.4946501Z patching file drivers/staging/gasket/gasket_interrupt.c
2025-10-31T05:25:17.4947473Z patching file drivers/staging/gdm724x/gdm_lte.c
2025-10-31T05:25:17.4953081Z patching file drivers/staging/gdm724x/gdm_usb.c
2025-10-31T05:25:17.4954300Z patching file drivers/staging/greybus/arche-apb-ctrl.c
2025-10-31T05:25:17.4956485Z patching file drivers/staging/greybus/arche-platform.c
2025-10-31T05:25:17.4958119Z patching file drivers/staging/greybus/audio_codec.c
2025-10-31T05:25:17.4960107Z patching file drivers/staging/greybus/audio_helper.c
2025-10-31T05:25:17.4961824Z patching file drivers/staging/greybus/audio_topology.c
2025-10-31T05:25:17.4963386Z patching file drivers/staging/greybus/light.c
2025-10-31T05:25:17.4964308Z patching file drivers/staging/greybus/uart.c
2025-10-31T05:25:17.4965268Z patching file drivers/staging/hikey9xx/hi6421-spmi-pmic.c
2025-10-31T05:25:17.4966318Z patching file drivers/staging/hikey9xx/hisi-spmi-controller.c
2025-10-31T05:25:17.4968052Z patching file drivers/staging/iio/accel/adis16203.c
2025-10-31T05:25:17.4969876Z patching file drivers/staging/iio/accel/adis16240.c
2025-10-31T05:25:17.4971613Z patching file drivers/staging/iio/adc/ad7280a.c
2025-10-31T05:25:17.4974821Z patching file drivers/staging/iio/adc/ad7816.c
2025-10-31T05:25:17.4975767Z patching file drivers/staging/iio/cdc/ad7746.c
2025-10-31T05:25:17.4976735Z patching file drivers/staging/iio/frequency/ad9832.c
2025-10-31T05:25:17.4977724Z patching file drivers/staging/iio/frequency/ad9834.c
2025-10-31T05:25:17.4978747Z patching file drivers/staging/iio/impedance-analyzer/ad5933.c
2025-10-31T05:25:17.4981361Z patching file drivers/staging/iio/resolver/ad2s1210.c
2025-10-31T05:25:17.4982627Z patching file drivers/staging/ks7010/Kconfig
2025-10-31T05:25:17.4983535Z patching file drivers/staging/ks7010/ks7010_sdio.c
2025-10-31T05:25:17.4984482Z patching file drivers/staging/ks7010/ks_wlan_net.c
2025-10-31T05:25:17.4985534Z patching file drivers/staging/media/allegro-dvt/allegro-core.c
2025-10-31T05:25:17.4989420Z patching file drivers/staging/media/atomisp/Kconfig
2025-10-31T05:25:17.4990690Z patching file drivers/staging/media/atomisp/i2c/atomisp-lm3554.c
2025-10-31T05:25:17.4991811Z patching file drivers/staging/media/atomisp/i2c/atomisp-mt9m114.c
2025-10-31T05:25:17.4993445Z patching file drivers/staging/media/atomisp/i2c/ov2680.h
2025-10-31T05:25:17.4994542Z patching file drivers/staging/media/atomisp/pci/atomisp_acc.c
2025-10-31T05:25:17.4997118Z patching file drivers/staging/media/atomisp/pci/atomisp_cmd.c
2025-10-31T05:25:17.5001869Z patching file drivers/staging/media/atomisp/pci/atomisp_fops.c
2025-10-31T05:25:17.5005049Z patching file drivers/staging/media/atomisp/pci/atomisp_gmin_platform.c
2025-10-31T05:25:17.5006726Z patching file drivers/staging/media/atomisp/pci/atomisp_ioctl.c
2025-10-31T05:25:17.5010597Z patching file drivers/staging/media/atomisp/pci/atomisp_subdev.c
2025-10-31T05:25:17.5013834Z patching file drivers/staging/media/atomisp/pci/atomisp_subdev.h
2025-10-31T05:25:17.5015159Z patching file drivers/staging/media/atomisp/pci/atomisp_v4l2.c
2025-10-31T05:25:17.5017850Z patching file drivers/staging/media/atomisp/pci/atomisp_v4l2.h
2025-10-31T05:25:17.5019326Z patching file drivers/staging/media/atomisp/pci/hive_isp_css_include/math_support.h
2025-10-31T05:25:17.5020584Z patching file drivers/staging/media/atomisp/pci/hmm/hmm.c
2025-10-31T05:25:17.5023565Z patching file drivers/staging/media/atomisp/pci/hmm/hmm_bo.c
2025-10-31T05:25:17.5024835Z patching file drivers/staging/media/atomisp/pci/isp/kernels/bh/bh_2/ia_css_bh.host.c
2025-10-31T05:25:17.5026454Z patching file drivers/staging/media/atomisp/pci/isp/kernels/raw_aa_binning/raw_aa_binning_1.0/ia_css_raa.host.c
2025-10-31T05:25:17.5029295Z patching file drivers/staging/media/atomisp/pci/isp/kernels/s3a/s3a_1.0/ia_css_s3a.host.c
2025-10-31T05:25:17.5030660Z patching file drivers/staging/media/atomisp/pci/runtime/binary/src/binary.c
2025-10-31T05:25:17.5032289Z patching file drivers/staging/media/atomisp/pci/sh_css.c
2025-10-31T05:25:17.5038709Z patching file drivers/staging/media/atomisp/pci/sh_css_frac.h
2025-10-31T05:25:17.5040997Z patching file drivers/staging/media/atomisp/pci/sh_css_mipi.c
2025-10-31T05:25:17.5043175Z patching file drivers/staging/media/atomisp/pci/sh_css_params.c
2025-10-31T05:25:17.5046959Z patching file drivers/staging/media/hantro/hantro_drv.c
2025-10-31T05:25:17.5049487Z patching file drivers/staging/media/hantro/hantro_g1_vp8_dec.c
2025-10-31T05:25:17.5051883Z patching file drivers/staging/media/hantro/hantro_h1_jpeg_enc.c
2025-10-31T05:25:17.5054425Z patching file drivers/staging/media/hantro/hantro_h1_regs.h
2025-10-31T05:25:17.5055686Z patching file drivers/staging/media/hantro/hantro_v4l2.c
2025-10-31T05:25:17.5056771Z patching file drivers/staging/media/hantro/rk3399_vpu_hw_vp8_dec.c
2025-10-31T05:25:17.5057859Z patching file drivers/staging/media/imx/imx-media-capture.c
2025-10-31T05:25:17.5060122Z patching file drivers/staging/media/imx/imx-media-csc-scaler.c
2025-10-31T05:25:17.5061625Z patching file drivers/staging/media/imx/imx-media-csi.c
2025-10-31T05:25:17.5063177Z patching file drivers/staging/media/imx/imx-media-dev-common.c
2025-10-31T05:25:17.5064433Z patching file drivers/staging/media/imx/imx-media-dev.c
2025-10-31T05:25:17.5065876Z patching file drivers/staging/media/imx/imx-media-of.c
2025-10-31T05:25:17.5066890Z patching file drivers/staging/media/imx/imx6-mipi-csi2.c
2025-10-31T05:25:17.5068108Z patching file drivers/staging/media/imx/imx7-media-csi.c
2025-10-31T05:25:17.5069111Z patching file drivers/staging/media/imx/imx7-mipi-csis.c
2025-10-31T05:25:17.5070339Z patching file drivers/staging/media/ipu3/ipu3-css-fw.c
2025-10-31T05:25:17.5072749Z patching file drivers/staging/media/ipu3/ipu3-css-fw.h
2025-10-31T05:25:17.5073764Z patching file drivers/staging/media/ipu3/ipu3-v4l2.c
2025-10-31T05:25:17.5075002Z patching file drivers/staging/media/meson/vdec/esparser.c
2025-10-31T05:25:17.5077483Z patching file drivers/staging/media/meson/vdec/vdec.c
2025-10-31T05:25:17.5078746Z patching file drivers/staging/media/meson/vdec/vdec_helpers.c
2025-10-31T05:25:17.5079842Z patching file drivers/staging/media/meson/vdec/vdec_helpers.h
2025-10-31T05:25:17.5082360Z patching file drivers/staging/media/meson/vdec/vdec_hevc.c
2025-10-31T05:25:17.5083395Z patching file drivers/staging/media/omap4iss/iss.c
2025-10-31T05:25:17.5085662Z patching file drivers/staging/media/rkisp1/rkisp1-capture.c
2025-10-31T05:25:17.5086941Z patching file drivers/staging/media/rkisp1/rkisp1-dev.c
2025-10-31T05:25:17.5087992Z patching file drivers/staging/media/rkisp1/rkisp1-params.c
2025-10-31T05:25:17.5090528Z patching file drivers/staging/media/rkisp1/rkisp1-resizer.c
2025-10-31T05:25:17.5091591Z patching file drivers/staging/media/rkvdec/rkvdec-h264.c
2025-10-31T05:25:17.5094047Z patching file drivers/staging/media/rkvdec/rkvdec.c
2025-10-31T05:25:17.5096054Z patching file drivers/staging/media/sunxi/cedrus/cedrus.c
2025-10-31T05:25:17.5098222Z patching file drivers/staging/media/sunxi/cedrus/cedrus_h264.c
2025-10-31T05:25:17.5100512Z patching file drivers/staging/media/sunxi/cedrus/cedrus_h265.c
2025-10-31T05:25:17.5102765Z patching file drivers/staging/media/sunxi/cedrus/cedrus_hw.c
2025-10-31T05:25:17.5105049Z patching file drivers/staging/media/sunxi/cedrus/cedrus_regs.h
2025-10-31T05:25:17.5107522Z patching file drivers/staging/media/sunxi/cedrus/cedrus_video.c
2025-10-31T05:25:17.5108816Z patching file drivers/staging/media/tegra-video/csi.c
2025-10-31T05:25:17.5109807Z patching file drivers/staging/media/tegra-video/csi.h
2025-10-31T05:25:17.5110779Z patching file drivers/staging/media/zoran/zoran.h
2025-10-31T05:25:17.5113353Z patching file drivers/staging/media/zoran/zoran_card.c
2025-10-31T05:25:17.5114383Z patching file drivers/staging/media/zoran/zoran_device.c
2025-10-31T05:25:17.5115386Z patching file drivers/staging/media/zoran/zoran_driver.c
2025-10-31T05:25:17.5116359Z patching file drivers/staging/most/dim2/Makefile
2025-10-31T05:25:17.5118577Z patching file drivers/staging/most/dim2/dim2.c
2025-10-31T05:25:17.5119792Z patching file drivers/staging/most/dim2/sysfs.c
2025-10-31T05:25:17.5120887Z patching file drivers/staging/most/dim2/sysfs.h
2025-10-31T05:25:17.5121787Z patching file drivers/staging/most/sound/sound.c
2025-10-31T05:25:17.5122894Z patching file drivers/staging/mt7621-dma/Makefile
2025-10-31T05:25:17.5124114Z patching file drivers/staging/mt7621-dma/hsdma-mt7621.c
2025-10-31T05:25:17.5125108Z patching file drivers/staging/mt7621-dma/mtk-hsdma.c
2025-10-31T05:25:17.5127479Z patching file drivers/staging/mt7621-dts/gbpc1.dts
2025-10-31T05:25:17.5128653Z patching file drivers/staging/mt7621-dts/gbpc2.dts
2025-10-31T05:25:17.5129610Z patching file drivers/staging/mt7621-dts/mt7621.dtsi
2025-10-31T05:25:17.5131892Z patching file drivers/staging/mt7621-pinctrl/pinctrl-rt2880.c
2025-10-31T05:25:17.5133323Z patching file drivers/staging/nvec/nvec_power.c
2025-10-31T05:25:17.5134279Z patching file drivers/staging/rtl8188eu/core/rtw_ap.c
2025-10-31T05:25:17.5136999Z patching file drivers/staging/rtl8188eu/os_dep/ioctl_linux.c
2025-10-31T05:25:17.5139736Z patching file drivers/staging/rtl8188eu/os_dep/usb_intf.c
2025-10-31T05:25:17.5142179Z patching file drivers/staging/rtl8192e/Kconfig
2025-10-31T05:25:17.5143338Z patching file drivers/staging/rtl8192e/rtl8192e/rtl_core.c
2025-10-31T05:25:17.5145915Z patching file drivers/staging/rtl8192e/rtl8192e/rtl_dm.c
2025-10-31T05:25:17.5148110Z patching file drivers/staging/rtl8192e/rtl8192e/rtl_wx.c
2025-10-31T05:25:17.5150787Z patching file drivers/staging/rtl8192e/rtllib.h
2025-10-31T05:25:17.5153275Z patching file drivers/staging/rtl8192e/rtllib_module.c
2025-10-31T05:25:17.5154431Z patching file drivers/staging/rtl8192e/rtllib_rx.c
2025-10-31T05:25:17.5158169Z patching file drivers/staging/rtl8192e/rtllib_softmac.c
2025-10-31T05:25:17.5162413Z patching file drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c
2025-10-31T05:25:17.5166320Z patching file drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c
2025-10-31T05:25:17.5168859Z patching file drivers/staging/rtl8192u/r8192U.h
2025-10-31T05:25:17.5170168Z patching file drivers/staging/rtl8192u/r8192U_core.c
2025-10-31T05:25:17.5175419Z patching file drivers/staging/rtl8192u/r8192U_dm.c
2025-10-31T05:25:17.5178718Z patching file drivers/staging/rtl8192u/r8192U_dm.h
2025-10-31T05:25:17.5179854Z patching file drivers/staging/rtl8192u/r8192U_wx.c
2025-10-31T05:25:17.5182549Z patching file drivers/staging/rtl8712/hal_init.c
2025-10-31T05:25:17.5183559Z patching file drivers/staging/rtl8712/ieee80211.c
2025-10-31T05:25:17.5184753Z patching file drivers/staging/rtl8712/os_intfs.c
2025-10-31T05:25:17.5185868Z patching file drivers/staging/rtl8712/rtl8712_cmd.c
2025-10-31T05:25:17.5187508Z patching file drivers/staging/rtl8712/rtl8712_led.c
2025-10-31T05:25:17.5189502Z patching file drivers/staging/rtl8712/rtl871x_cmd.c
2025-10-31T05:25:17.5191595Z patching file drivers/staging/rtl8712/rtl871x_ioctl_linux.c
2025-10-31T05:25:17.5194743Z patching file drivers/staging/rtl8712/rtl871x_led.h
2025-10-31T05:25:17.5196015Z patching file drivers/staging/rtl8712/rtl871x_mlme.c
2025-10-31T05:25:17.5197510Z patching file drivers/staging/rtl8712/rtl871x_pwrctrl.c
2025-10-31T05:25:17.5199188Z patching file drivers/staging/rtl8712/rtl871x_pwrctrl.h
2025-10-31T05:25:17.5200644Z patching file drivers/staging/rtl8712/rtl871x_xmit.c
2025-10-31T05:25:17.5201794Z patching file drivers/staging/rtl8712/usb_intf.c
2025-10-31T05:25:17.5204170Z patching file drivers/staging/rtl8712/usb_ops.c
2025-10-31T05:25:17.5205895Z patching file drivers/staging/rtl8712/usb_ops_linux.c
2025-10-31T05:25:17.5207170Z patching file drivers/staging/rtl8712/wifi.h
2025-10-31T05:25:17.5208730Z patching file drivers/staging/rtl8712/xmit_linux.c
2025-10-31T05:25:17.5210372Z patching file drivers/staging/rtl8723bs/core/rtw_cmd.c
2025-10-31T05:25:17.5212606Z patching file drivers/staging/rtl8723bs/core/rtw_mlme.c
2025-10-31T05:25:17.5215708Z patching file drivers/staging/rtl8723bs/core/rtw_security.c
2025-10-31T05:25:17.5218842Z patching file drivers/staging/rtl8723bs/hal/odm.h
2025-10-31T05:25:17.5220825Z patching file drivers/staging/rtl8723bs/hal/sdio_ops.c
2025-10-31T05:25:17.5223412Z patching file drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
2025-10-31T05:25:17.5227577Z patching file drivers/staging/rtl8723bs/os_dep/ioctl_linux.c
2025-10-31T05:25:17.5231602Z patching file drivers/staging/rtl8723bs/os_dep/wifi_regd.c
2025-10-31T05:25:17.5233096Z patching file drivers/staging/rts5208/rtsx_scsi.c
2025-10-31T05:25:17.5237041Z patching file drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
2025-10-31T05:25:17.5238273Z patching file drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c
2025-10-31T05:25:17.5240083Z patching file drivers/staging/vc04_services/bcm2835-audio/bcm2835.c
2025-10-31T05:25:17.5242158Z patching file drivers/staging/vc04_services/include/linux/raspberrypi/vchiq.h
2025-10-31T05:25:17.5244172Z patching file drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
2025-10-31T05:25:17.5246542Z patching file drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.h
2025-10-31T05:25:17.5247089Z patching file drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c
2025-10-31T05:25:17.5249043Z patching file drivers/staging/vc04_services/vchiq-mmal/Kconfig
2025-10-31T05:25:17.5250235Z patching file drivers/staging/vc04_services/vchiq-mmal/mmal-vchiq.c
2025-10-31T05:25:17.5252568Z patching file drivers/staging/vt6655/device_main.c
2025-10-31T05:25:17.5254709Z patching file drivers/staging/wfx/bus_sdio.c
2025-10-31T05:25:17.5256103Z patching file drivers/staging/wfx/data_tx.c
2025-10-31T05:25:17.5257346Z patching file drivers/staging/wfx/data_tx.h
2025-10-31T05:25:17.5258322Z patching file drivers/staging/wfx/main.c
2025-10-31T05:25:17.5260603Z patching file drivers/staging/wlan-ng/hfa384x_usb.c
2025-10-31T05:25:17.5264164Z patching file drivers/target/iscsi/cxgbit/cxgbit_ddp.c
2025-10-31T05:25:17.5265894Z patching file drivers/target/iscsi/cxgbit/cxgbit_target.c
2025-10-31T05:25:17.5269417Z patching file drivers/target/iscsi/iscsi_target.c
2025-10-31T05:25:17.5273382Z patching file drivers/target/iscsi/iscsi_target_configfs.c
2025-10-31T05:25:17.5276565Z patching file drivers/target/iscsi/iscsi_target_nego.c
2025-10-31T05:25:17.5278023Z patching file drivers/target/iscsi/iscsi_target_parameters.c
2025-10-31T05:25:17.5280275Z patching file drivers/target/iscsi/iscsi_target_tpg.c
2025-10-31T05:25:17.5281750Z patching file drivers/target/loopback/tcm_loop.c
2025-10-31T05:25:17.5284166Z patching file drivers/target/target_core_alua.c
2025-10-31T05:25:17.5287431Z patching file drivers/target/target_core_configfs.c
2025-10-31T05:25:17.5290618Z patching file drivers/target/target_core_device.c
2025-10-31T05:25:17.5293201Z patching file drivers/target/target_core_file.c
2025-10-31T05:25:17.5294698Z patching file drivers/target/target_core_iblock.c
2025-10-31T05:25:17.5296213Z patching file drivers/target/target_core_internal.h
2025-10-31T05:25:17.5298306Z patching file drivers/target/target_core_pr.c
2025-10-31T05:25:17.5302286Z patching file drivers/target/target_core_pscsi.c
2025-10-31T05:25:17.5304484Z patching file drivers/target/target_core_sbc.c
2025-10-31T05:25:17.5306575Z patching file drivers/target/target_core_tmr.c
2025-10-31T05:25:17.5309308Z patching file drivers/target/target_core_transport.c
2025-10-31T05:25:17.5313613Z patching file drivers/target/target_core_user.c
2025-10-31T05:25:17.5316625Z patching file drivers/target/target_core_xcopy.c
2025-10-31T05:25:17.5330769Z patching file drivers/target/target_core_xcopy.h
2025-10-31T05:25:17.5331177Z patching file drivers/target/tcm_fc/tfc_cmd.c
2025-10-31T05:25:17.5331570Z patching file drivers/tee/amdtee/amdtee_if.h
2025-10-31T05:25:17.5332217Z patching file drivers/tee/amdtee/amdtee_private.h
2025-10-31T05:25:17.5332585Z patching file drivers/tee/amdtee/call.c
2025-10-31T05:25:17.5332940Z patching file drivers/tee/amdtee/core.c
2025-10-31T05:25:17.5333292Z patching file drivers/tee/optee/call.c
2025-10-31T05:25:17.5333998Z patching file drivers/tee/optee/core.c
2025-10-31T05:25:17.5334366Z patching file drivers/tee/optee/device.c
2025-10-31T05:25:17.5334736Z patching file drivers/tee/optee/optee_msg.h
2025-10-31T05:25:17.5335126Z patching file drivers/tee/optee/optee_private.h
2025-10-31T05:25:17.5335485Z patching file drivers/tee/optee/rpc.c
2025-10-31T05:25:17.5335848Z patching file drivers/tee/optee/shm_pool.c
2025-10-31T05:25:17.5336196Z patching file drivers/tee/optee/supp.c
2025-10-31T05:25:17.5336547Z patching file drivers/tee/tee_core.c
2025-10-31T05:25:17.5336897Z patching file drivers/tee/tee_shm.c
2025-10-31T05:25:17.5337322Z patching file drivers/thermal/broadcom/bcm2711_thermal.c
2025-10-31T05:25:17.5337721Z patching file drivers/thermal/broadcom/sr-thermal.c
2025-10-31T05:25:17.5338119Z patching file drivers/thermal/cpufreq_cooling.c
2025-10-31T05:25:17.5342878Z patching file drivers/thermal/gov_fair_share.c
2025-10-31T05:25:17.5343422Z patching file drivers/thermal/hisi_thermal.c
2025-10-31T05:25:17.5343809Z patching file drivers/thermal/imx8mm_thermal.c
2025-10-31T05:25:17.5344185Z patching file drivers/thermal/imx_sc_thermal.c
2025-10-31T05:25:17.5344561Z patching file drivers/thermal/imx_thermal.c
2025-10-31T05:25:17.5344953Z patching file drivers/thermal/intel/Kconfig
2025-10-31T05:25:17.5346006Z patching file drivers/thermal/intel/int340x_thermal/int3400_thermal.c
2025-10-31T05:25:17.5347504Z patching file drivers/thermal/intel/int340x_thermal/int3402_thermal.c
2025-10-31T05:25:17.5348232Z patching file drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c
2025-10-31T05:25:17.5349894Z patching file drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.h
2025-10-31T05:25:17.5350685Z patching file drivers/thermal/intel/int340x_thermal/processor_thermal_device.c
2025-10-31T05:25:17.5352543Z patching file drivers/thermal/intel/intel_powerclamp.c
2025-10-31T05:25:17.5354064Z patching file drivers/thermal/intel/intel_quark_dts_thermal.c
2025-10-31T05:25:17.5354927Z patching file drivers/thermal/intel/intel_soc_dts_iosf.c
2025-10-31T05:25:17.5356143Z patching file drivers/thermal/intel/x86_pkg_temp_thermal.c
2025-10-31T05:25:17.5357536Z patching file drivers/thermal/qcom/tsens-v0_1.c
2025-10-31T05:25:17.5358745Z patching file drivers/thermal/qcom/tsens-v1.c
2025-10-31T05:25:17.5360486Z patching file drivers/thermal/qcom/tsens.c
2025-10-31T05:25:17.5362463Z patching file drivers/thermal/qcom/tsens.h
2025-10-31T05:25:17.5363548Z patching file drivers/thermal/qoriq_thermal.c
2025-10-31T05:25:17.5365020Z patching file drivers/thermal/rcar_gen3_thermal.c
2025-10-31T05:25:17.5380844Z patching file drivers/thermal/rockchip_thermal.c
2025-10-31T05:25:17.5381270Z patching file drivers/thermal/samsung/exynos_tmu.c
2025-10-31T05:25:17.5381649Z patching file drivers/thermal/sprd_thermal.c
2025-10-31T05:25:17.5382183Z patching file drivers/thermal/sun8i_thermal.c
2025-10-31T05:25:17.5382602Z patching file drivers/thermal/thermal_core.c
2025-10-31T05:25:17.5382990Z patching file drivers/thermal/thermal_netlink.c
2025-10-31T05:25:17.5383352Z patching file drivers/thermal/thermal_of.c
2025-10-31T05:25:17.5383727Z patching file drivers/thermal/thermal_sysfs.c
2025-10-31T05:25:17.5384099Z patching file drivers/thunderbolt/acpi.c
2025-10-31T05:25:17.5384466Z patching file drivers/thunderbolt/ctl.c
2025-10-31T05:25:17.5384848Z patching file drivers/thunderbolt/dma_port.c
2025-10-31T05:25:17.5385217Z patching file drivers/thunderbolt/domain.c
2025-10-31T05:25:17.5386431Z patching file drivers/thunderbolt/icm.c
2025-10-31T05:25:17.5390025Z patching file drivers/thunderbolt/nhi.c
2025-10-31T05:25:17.5391896Z patching file drivers/thunderbolt/nhi.h
2025-10-31T05:25:17.5392951Z patching file drivers/thunderbolt/retimer.c
2025-10-31T05:25:17.5394988Z patching file drivers/thunderbolt/switch.c
2025-10-31T05:25:17.5398048Z patching file drivers/thunderbolt/tb.c
2025-10-31T05:25:17.5400571Z patching file drivers/thunderbolt/tb.h
2025-10-31T05:25:17.5401416Z patching file drivers/thunderbolt/tb_regs.h
2025-10-31T05:25:17.5403045Z patching file drivers/thunderbolt/test.c
2025-10-31T05:25:17.5405114Z patching file drivers/thunderbolt/tunnel.c
2025-10-31T05:25:17.5407100Z patching file drivers/thunderbolt/usb4.c
2025-10-31T05:25:17.5409685Z patching file drivers/tty/amiserial.c
2025-10-31T05:25:17.5412536Z patching file drivers/tty/cyclades.c
2025-10-31T05:25:17.5416366Z patching file drivers/tty/goldfish.c
2025-10-31T05:25:17.5417307Z patching file drivers/tty/hvc/hvc_console.c
2025-10-31T05:25:17.5419080Z patching file drivers/tty/hvc/hvc_iucv.c
2025-10-31T05:25:17.5420792Z patching file drivers/tty/hvc/hvc_xen.c
2025-10-31T05:25:17.5423617Z patching file drivers/tty/hvc/hvsi.c
2025-10-31T05:25:17.5425635Z patching file drivers/tty/moxa.c
2025-10-31T05:25:17.5428695Z patching file drivers/tty/mxser.c
2025-10-31T05:25:17.5431727Z patching file drivers/tty/n_gsm.c
2025-10-31T05:25:17.5436765Z patching file drivers/tty/n_hdlc.c
2025-10-31T05:25:17.5438508Z patching file drivers/tty/n_null.c
2025-10-31T05:25:17.5439275Z patching file drivers/tty/n_r3964.c
2025-10-31T05:25:17.5441259Z patching file drivers/tty/n_tracerouter.c
2025-10-31T05:25:17.5441898Z patching file drivers/tty/n_tracesink.c
2025-10-31T05:25:17.5443885Z patching file drivers/tty/n_tty.c
2025-10-31T05:25:17.5455231Z patching file drivers/tty/nozomi.c
2025-10-31T05:25:17.5455844Z patching file drivers/tty/pty.c
2025-10-31T05:25:17.5456235Z patching file drivers/tty/serial/8250/8250.h
2025-10-31T05:25:17.5456685Z patching file drivers/tty/serial/8250/8250_aspeed_vuart.c
2025-10-31T05:25:17.5457072Z patching file drivers/tty/serial/8250/8250_core.c
2025-10-31T05:25:17.5457461Z patching file drivers/tty/serial/8250/8250_dma.c
2025-10-31T05:25:17.5457851Z patching file drivers/tty/serial/8250/8250_dw.c
2025-10-31T05:25:17.5458240Z patching file drivers/tty/serial/8250/8250_dwlib.c
2025-10-31T05:25:17.5458955Z patching file drivers/tty/serial/8250/8250_early.c
2025-10-31T05:25:17.5459871Z patching file drivers/tty/serial/8250/8250_em.c
2025-10-31T05:25:17.5460979Z patching file drivers/tty/serial/8250/8250_exar.c
2025-10-31T05:25:17.5463724Z patching file drivers/tty/serial/8250/8250_fintek.c
2025-10-31T05:25:17.5464709Z patching file drivers/tty/serial/8250/8250_gsc.c
2025-10-31T05:25:17.5465607Z patching file drivers/tty/serial/8250/8250_lpss.c
2025-10-31T05:25:17.5467306Z patching file drivers/tty/serial/8250/8250_mid.c
2025-10-31T05:25:17.5468443Z patching file drivers/tty/serial/8250/8250_mtk.c
2025-10-31T05:25:17.5470346Z patching file drivers/tty/serial/8250/8250_of.c
2025-10-31T05:25:17.5471693Z patching file drivers/tty/serial/8250/8250_omap.c
2025-10-31T05:25:17.5476364Z patching file drivers/tty/serial/8250/8250_pci.c
2025-10-31T05:25:17.5483084Z patching file drivers/tty/serial/8250/8250_port.c
2025-10-31T05:25:17.5486843Z patching file drivers/tty/serial/8250/8250_pxa.c
2025-10-31T05:25:17.5487451Z patching file drivers/tty/serial/8250/8250_tegra.c
2025-10-31T05:25:17.5488644Z patching file drivers/tty/serial/8250/Kconfig
2025-10-31T05:25:17.5490324Z patching file drivers/tty/serial/8250/serial_cs.c
2025-10-31T05:25:17.5492535Z patching file drivers/tty/serial/Kconfig
2025-10-31T05:25:17.5494520Z patching file drivers/tty/serial/altera_uart.c
2025-10-31T05:25:17.5496144Z patching file drivers/tty/serial/amba-pl010.c
2025-10-31T05:25:17.5498202Z patching file drivers/tty/serial/amba-pl011.c
2025-10-31T05:25:17.5501814Z patching file drivers/tty/serial/ar933x_uart.c
2025-10-31T05:25:17.5503229Z patching file drivers/tty/serial/arc_uart.c
2025-10-31T05:25:17.5505793Z patching file drivers/tty/serial/atmel_serial.c
2025-10-31T05:25:17.5508581Z patching file drivers/tty/serial/cpm_uart/cpm_uart_core.c
2025-10-31T05:25:17.5510366Z patching file drivers/tty/serial/digicolor-usart.c
2025-10-31T05:25:17.5512439Z patching file drivers/tty/serial/fsl_lpuart.c
2025-10-31T05:25:17.5516242Z patching file drivers/tty/serial/icom.c
2025-10-31T05:25:17.5518662Z patching file drivers/tty/serial/imx.c
2025-10-31T05:25:17.5521575Z patching file drivers/tty/serial/jsm/jsm_driver.c
2025-10-31T05:25:17.5522921Z patching file drivers/tty/serial/jsm/jsm_neo.c
2025-10-31T05:25:17.5525073Z patching file drivers/tty/serial/jsm/jsm_tty.c
2025-10-31T05:25:17.5526432Z patching file drivers/tty/serial/kgdboc.c
2025-10-31T05:25:17.5528306Z patching file drivers/tty/serial/lantiq.c
2025-10-31T05:25:17.5529781Z patching file drivers/tty/serial/lpc32xx_hs.c
2025-10-31T05:25:17.5531346Z patching file drivers/tty/serial/max3100.c
2025-10-31T05:25:17.5533540Z patching file drivers/tty/serial/max310x.c
2025-10-31T05:25:17.5537123Z patching file drivers/tty/serial/mcf.c
2025-10-31T05:25:17.5538621Z patching file drivers/tty/serial/meson_uart.c
2025-10-31T05:25:17.5540580Z patching file drivers/tty/serial/milbeaut_usio.c
2025-10-31T05:25:17.5542378Z patching file drivers/tty/serial/msm_serial.c
2025-10-31T05:25:17.5544630Z patching file drivers/tty/serial/mvebu-uart.c
2025-10-31T05:25:17.5547099Z patching file drivers/tty/serial/mxs-auart.c
2025-10-31T05:25:17.5549413Z patching file drivers/tty/serial/omap-serial.c
2025-10-31T05:25:17.5552598Z patching file drivers/tty/serial/owl-uart.c
2025-10-31T05:25:17.5553560Z patching file drivers/tty/serial/pch_uart.c
2025-10-31T05:25:17.5556386Z patching file drivers/tty/serial/pmac_zilog.c
2025-10-31T05:25:17.5558919Z patching file drivers/tty/serial/qcom_geni_serial.c
2025-10-31T05:25:17.5561300Z patching file drivers/tty/serial/rda-uart.c
2025-10-31T05:25:17.5562700Z patching file drivers/tty/serial/rp2.c
2025-10-31T05:25:17.5564832Z patching file drivers/tty/serial/sa1100.c
2025-10-31T05:25:17.5566951Z patching file drivers/tty/serial/samsung_tty.c
2025-10-31T05:25:17.5569833Z patching file drivers/tty/serial/sc16is7xx.c
2025-10-31T05:25:17.5572967Z patching file drivers/tty/serial/serial-tegra.c
2025-10-31T05:25:17.5575838Z patching file drivers/tty/serial/serial_core.c
2025-10-31T05:25:17.5579585Z patching file drivers/tty/serial/serial_txx9.c
2025-10-31T05:25:17.5581855Z patching file drivers/tty/serial/sh-sci.c
2025-10-31T05:25:17.5585916Z patching file drivers/tty/serial/sifive.c
2025-10-31T05:25:17.5587954Z patching file drivers/tty/serial/sprd_serial.c
2025-10-31T05:25:17.5590013Z patching file drivers/tty/serial/st-asc.c
2025-10-31T05:25:17.5591788Z patching file drivers/tty/serial/stm32-usart.c
2025-10-31T05:25:17.5596919Z patching file drivers/tty/serial/stm32-usart.h
2025-10-31T05:25:17.5597984Z patching file drivers/tty/serial/sunsab.c
2025-10-31T05:25:17.5599907Z patching file drivers/tty/serial/tegra-tcu.c
2025-10-31T05:25:17.5600919Z patching file drivers/tty/serial/uartlite.c
2025-10-31T05:25:17.5603189Z patching file drivers/tty/serial/ucc_uart.c
2025-10-31T05:25:17.5605480Z patching file drivers/tty/serial/xilinx_uartps.c
2025-10-31T05:25:17.5608674Z patching file drivers/tty/synclink_gt.c
2025-10-31T05:25:17.5613015Z patching file drivers/tty/sysrq.c
2025-10-31T05:25:17.5614459Z patching file drivers/tty/tty.h
2025-10-31T05:25:17.5616179Z patching file drivers/tty/tty_audit.c
2025-10-31T05:25:17.5616888Z patching file drivers/tty/tty_baudrate.c
2025-10-31T05:25:17.5617973Z patching file drivers/tty/tty_buffer.c
2025-10-31T05:25:17.5620532Z patching file drivers/tty/tty_io.c
2025-10-31T05:25:17.5632870Z patching file drivers/tty/tty_ioctl.c
2025-10-31T05:25:17.5634301Z patching file drivers/tty/tty_jobctrl.c
2025-10-31T05:25:17.5635058Z patching file drivers/tty/tty_ldisc.c
2025-10-31T05:25:17.5636200Z patching file drivers/tty/tty_mutex.c
2025-10-31T05:25:17.5636791Z patching file drivers/tty/tty_port.c
2025-10-31T05:25:17.5637622Z patching file drivers/tty/vcc.c
2025-10-31T05:25:17.5638287Z patching file drivers/tty/vt/consolemap.c
2025-10-31T05:25:17.5639752Z patching file drivers/tty/vt/defkeymap.c_shipped
2025-10-31T05:25:17.5640966Z patching file drivers/tty/vt/keyboard.c
2025-10-31T05:25:17.5641336Z patching file drivers/tty/vt/vc_screen.c
2025-10-31T05:25:17.5641690Z patching file drivers/tty/vt/vt.c
2025-10-31T05:25:17.5644694Z patching file drivers/tty/vt/vt_ioctl.c
2025-10-31T05:25:17.5646624Z patching file drivers/uio/uio.c
2025-10-31T05:25:17.5647465Z patching file drivers/uio/uio_dmem_genirq.c
2025-10-31T05:25:17.5648879Z patching file drivers/uio/uio_hv_generic.c
2025-10-31T05:25:17.5650174Z patching file drivers/usb/atm/cxacru.c
2025-10-31T05:25:17.5652734Z patching file drivers/usb/cdns3/cdns3-imx.c
2025-10-31T05:25:17.5653983Z patching file drivers/usb/cdns3/cdns3-pci-wrap.c
2025-10-31T05:25:17.5655101Z patching file drivers/usb/cdns3/core.c
2025-10-31T05:25:17.5656235Z patching file drivers/usb/cdns3/core.h
2025-10-31T05:25:17.5657032Z patching file drivers/usb/cdns3/drd.c
2025-10-31T05:25:17.5658766Z patching file drivers/usb/cdns3/drd.h
2025-10-31T05:25:17.5659897Z patching file drivers/usb/cdns3/ep0.c
2025-10-31T05:25:17.5661778Z patching file drivers/usb/cdns3/gadget.c
2025-10-31T05:25:17.5667194Z patching file drivers/usb/cdns3/gadget.h
2025-10-31T05:25:17.5668730Z patching file drivers/usb/cdns3/host-export.h
2025-10-31T05:25:17.5669514Z patching file drivers/usb/cdns3/host.c
2025-10-31T05:25:17.5670755Z patching file drivers/usb/chipidea/ci.h
2025-10-31T05:25:17.5671367Z patching file drivers/usb/chipidea/ci_hdrc_imx.c
2025-10-31T05:25:17.5672432Z patching file drivers/usb/chipidea/core.c
2025-10-31T05:25:17.5674150Z patching file drivers/usb/chipidea/host.c
2025-10-31T05:25:17.5674918Z patching file drivers/usb/chipidea/otg.c
2025-10-31T05:25:17.5675811Z patching file drivers/usb/chipidea/otg_fsm.c
2025-10-31T05:25:17.5677140Z patching file drivers/usb/chipidea/udc.c
2025-10-31T05:25:17.5679040Z patching file drivers/usb/chipidea/usbmisc_imx.c
2025-10-31T05:25:17.5680672Z patching file drivers/usb/class/cdc-acm.c
2025-10-31T05:25:17.5683401Z patching file drivers/usb/class/cdc-acm.h
2025-10-31T05:25:17.5684214Z patching file drivers/usb/class/cdc-wdm.c
2025-10-31T05:25:17.5686094Z patching file drivers/usb/class/usblp.c
2025-10-31T05:25:17.5687975Z patching file drivers/usb/class/usbtmc.c
2025-10-31T05:25:17.5690050Z patching file drivers/usb/common/Kconfig
2025-10-31T05:25:17.5690663Z patching file drivers/usb/common/common.c
2025-10-31T05:25:17.5692466Z patching file drivers/usb/common/debug.c
2025-10-31T05:25:17.5693548Z patching file drivers/usb/common/ulpi.c
2025-10-31T05:25:17.5694496Z patching file drivers/usb/common/usb-conn-gpio.c
2025-10-31T05:25:17.5695215Z patching file drivers/usb/common/usb-otg-fsm.c
2025-10-31T05:25:17.5696989Z patching file drivers/usb/core/buffer.c
2025-10-31T05:25:17.5697678Z patching file drivers/usb/core/config.c
2025-10-31T05:25:17.5700965Z patching file drivers/usb/core/devices.c
2025-10-31T05:25:17.5702977Z patching file drivers/usb/core/devio.c
2025-10-31T05:25:17.5705778Z patching file drivers/usb/core/endpoint.c
2025-10-31T05:25:17.5707343Z patching file drivers/usb/core/hcd-pci.c
2025-10-31T05:25:17.5715383Z patching file drivers/usb/core/hcd.c
2025-10-31T05:25:17.5715750Z patching file drivers/usb/core/hub.c
2025-10-31T05:25:17.5721870Z patching file drivers/usb/core/hub.h
2025-10-31T05:25:17.5723395Z patching file drivers/usb/core/message.c
2025-10-31T05:25:17.5725639Z patching file drivers/usb/core/port.c
2025-10-31T05:25:17.5726888Z patching file drivers/usb/core/quirks.c
2025-10-31T05:25:17.5729004Z patching file drivers/usb/core/sysfs.c
2025-10-31T05:25:17.5731059Z patching file drivers/usb/core/urb.c
2025-10-31T05:25:17.5732481Z patching file drivers/usb/core/usb-acpi.c
2025-10-31T05:25:17.5733721Z patching file drivers/usb/core/usb.c
2025-10-31T05:25:17.5735111Z patching file drivers/usb/core/usb.h
2025-10-31T05:25:17.5736181Z patching file drivers/usb/dwc2/core.c
2025-10-31T05:25:17.5737897Z patching file drivers/usb/dwc2/core.h
2025-10-31T05:25:17.5739717Z patching file drivers/usb/dwc2/core_intr.c
2025-10-31T05:25:17.5740966Z patching file drivers/usb/dwc2/drd.c
2025-10-31T05:25:17.5743355Z patching file drivers/usb/dwc2/gadget.c
2025-10-31T05:25:17.5748683Z patching file drivers/usb/dwc2/hcd.c
2025-10-31T05:25:17.5753294Z patching file drivers/usb/dwc2/hcd_ddma.c
2025-10-31T05:25:17.5755901Z patching file drivers/usb/dwc2/hcd_intr.c
2025-10-31T05:25:17.5758659Z patching file drivers/usb/dwc2/hcd_queue.c
2025-10-31T05:25:17.5760556Z patching file drivers/usb/dwc2/hw.h
2025-10-31T05:25:17.5762276Z patching file drivers/usb/dwc2/platform.c
2025-10-31T05:25:17.5764595Z patching file drivers/usb/dwc3/core.c
2025-10-31T05:25:17.5768990Z patching file drivers/usb/dwc3/core.h
2025-10-31T05:25:17.5771409Z patching file drivers/usb/dwc3/debug.h
2025-10-31T05:25:17.5772475Z patching file drivers/usb/dwc3/debugfs.c
2025-10-31T05:25:17.5775151Z patching file drivers/usb/dwc3/drd.c
2025-10-31T05:25:17.5776066Z patching file drivers/usb/dwc3/dwc3-exynos.c
2025-10-31T05:25:17.5777311Z patching file drivers/usb/dwc3/dwc3-meson-g12a.c
2025-10-31T05:25:17.5779269Z patching file drivers/usb/dwc3/dwc3-omap.c
2025-10-31T05:25:17.5780319Z patching file drivers/usb/dwc3/dwc3-pci.c
2025-10-31T05:25:17.5781930Z patching file drivers/usb/dwc3/dwc3-qcom.c
2025-10-31T05:25:17.5784769Z patching file drivers/usb/dwc3/dwc3-st.c
2025-10-31T05:25:17.5785958Z patching file drivers/usb/dwc3/ep0.c
2025-10-31T05:25:17.5788535Z patching file drivers/usb/dwc3/gadget.c
2025-10-31T05:25:17.5795798Z patching file drivers/usb/dwc3/host.c
2025-10-31T05:25:17.5796397Z patching file drivers/usb/dwc3/ulpi.c
2025-10-31T05:25:17.5797429Z patching file drivers/usb/early/xhci-dbc.c
2025-10-31T05:25:17.5799228Z patching file drivers/usb/gadget/Kconfig
2025-10-31T05:25:17.5800927Z patching file drivers/usb/gadget/composite.c
2025-10-31T05:25:17.5803821Z patching file drivers/usb/gadget/config.c
2025-10-31T05:25:17.5804885Z patching file drivers/usb/gadget/configfs.c
2025-10-31T05:25:17.5807396Z patching file drivers/usb/gadget/function/f_acm.c
2025-10-31T05:25:17.5808951Z patching file drivers/usb/gadget/function/f_ecm.c
2025-10-31T05:25:17.5810495Z patching file drivers/usb/gadget/function/f_eem.c
2025-10-31T05:25:17.5813046Z patching file drivers/usb/gadget/function/f_fs.c
2025-10-31T05:25:17.5825500Z patching file drivers/usb/gadget/function/f_hid.c
2025-10-31T05:25:17.5825957Z patching file drivers/usb/gadget/function/f_loopback.c
2025-10-31T05:25:17.5826411Z patching file drivers/usb/gadget/function/f_mass_storage.c
2025-10-31T05:25:17.5826825Z patching file drivers/usb/gadget/function/f_midi.c
2025-10-31T05:25:17.5837652Z patching file drivers/usb/gadget/function/f_ncm.c
2025-10-31T05:25:17.5838083Z patching file drivers/usb/gadget/function/f_printer.c
2025-10-31T05:25:17.5838501Z patching file drivers/usb/gadget/function/f_rndis.c
2025-10-31T05:25:17.5838919Z patching file drivers/usb/gadget/function/f_serial.c
2025-10-31T05:25:17.5839362Z patching file drivers/usb/gadget/function/f_sourcesink.c
2025-10-31T05:25:17.5839767Z patching file drivers/usb/gadget/function/f_subset.c
2025-10-31T05:25:17.5840553Z patching file drivers/usb/gadget/function/f_tcm.c
2025-10-31T05:25:17.5850229Z patching file drivers/usb/gadget/function/f_uac1.c
2025-10-31T05:25:17.5850638Z patching file drivers/usb/gadget/function/f_uac2.c
2025-10-31T05:25:17.5851037Z patching file drivers/usb/gadget/function/f_uvc.c
2025-10-31T05:25:17.5851431Z patching file drivers/usb/gadget/function/rndis.c
2025-10-31T05:25:17.5851821Z patching file drivers/usb/gadget/function/rndis.h
2025-10-31T05:25:17.5852764Z patching file drivers/usb/gadget/function/storage_common.c
2025-10-31T05:25:17.5853954Z patching file drivers/usb/gadget/function/u_audio.c
2025-10-31T05:25:17.5858495Z patching file drivers/usb/gadget/function/u_ether.c
2025-10-31T05:25:17.5858956Z patching file drivers/usb/gadget/function/u_ether_configfs.h
2025-10-31T05:25:17.5859344Z patching file drivers/usb/gadget/function/u_hid.h
2025-10-31T05:25:17.5859952Z patching file drivers/usb/gadget/function/u_serial.c
2025-10-31T05:25:17.5862235Z patching file drivers/usb/gadget/function/uvc.h
2025-10-31T05:25:17.5863844Z patching file drivers/usb/gadget/function/uvc_configfs.c
2025-10-31T05:25:17.5866260Z patching file drivers/usb/gadget/function/uvc_queue.c
2025-10-31T05:25:17.5867122Z patching file drivers/usb/gadget/function/uvc_v4l2.c
2025-10-31T05:25:17.5868770Z patching file drivers/usb/gadget/function/uvc_video.c
2025-10-31T05:25:17.5870175Z patching file drivers/usb/gadget/legacy/acm_ms.c
2025-10-31T05:25:17.5870733Z patching file drivers/usb/gadget/legacy/dbgp.c
2025-10-31T05:25:17.5872092Z patching file drivers/usb/gadget/legacy/ether.c
2025-10-31T05:25:17.5874044Z patching file drivers/usb/gadget/legacy/hid.c
2025-10-31T05:25:17.5874460Z patching file drivers/usb/gadget/legacy/inode.c
2025-10-31T05:25:17.5877963Z patching file drivers/usb/gadget/legacy/raw_gadget.c
2025-10-31T05:25:17.5879688Z patching file drivers/usb/gadget/legacy/webcam.c
2025-10-31T05:25:17.5881240Z patching file drivers/usb/gadget/udc/Kconfig
2025-10-31T05:25:17.5883538Z patching file drivers/usb/gadget/udc/amd5536udc_pci.c
2025-10-31T05:25:17.5884355Z patching file drivers/usb/gadget/udc/aspeed-vhub/core.c
2025-10-31T05:25:17.5885503Z patching file drivers/usb/gadget/udc/aspeed-vhub/dev.c
2025-10-31T05:25:17.5886325Z patching file drivers/usb/gadget/udc/aspeed-vhub/epn.c
2025-10-31T05:25:17.5887473Z patching file drivers/usb/gadget/udc/aspeed-vhub/hub.c
2025-10-31T05:25:17.5889010Z patching file drivers/usb/gadget/udc/at91_udc.c
2025-10-31T05:25:17.5890407Z patching file drivers/usb/gadget/udc/bdc/Kconfig
2025-10-31T05:25:17.5891264Z patching file drivers/usb/gadget/udc/bdc/bdc_core.c
2025-10-31T05:25:17.5892286Z patching file drivers/usb/gadget/udc/bdc/bdc_udc.c
2025-10-31T05:25:17.5893899Z patching file drivers/usb/gadget/udc/core.c
2025-10-31T05:25:17.5895985Z patching file drivers/usb/gadget/udc/dummy_hcd.c
2025-10-31T05:25:17.5898549Z patching file drivers/usb/gadget/udc/fotg210-udc.c
2025-10-31T05:25:17.5900528Z patching file drivers/usb/gadget/udc/fsl_qe_udc.c
2025-10-31T05:25:17.5902777Z patching file drivers/usb/gadget/udc/fsl_udc_core.c
2025-10-31T05:25:17.5905274Z patching file drivers/usb/gadget/udc/lpc32xx_udc.c
2025-10-31T05:25:17.5907620Z patching file drivers/usb/gadget/udc/max3420_udc.c
2025-10-31T05:25:17.5909016Z patching file drivers/usb/gadget/udc/mv_u3d_core.c
2025-10-31T05:25:17.5911922Z patching file drivers/usb/gadget/udc/net2272.c
2025-10-31T05:25:17.5914999Z patching file drivers/usb/gadget/udc/pch_udc.c
2025-10-31T05:25:17.5918487Z patching file drivers/usb/gadget/udc/r8a66597-udc.c
2025-10-31T05:25:17.5921051Z patching file drivers/usb/gadget/udc/renesas_usb3.c
2025-10-31T05:25:17.5924235Z patching file drivers/usb/gadget/udc/s3c2410_udc.c
2025-10-31T05:25:17.5926308Z patching file drivers/usb/gadget/udc/snps_udc_plat.c
2025-10-31T05:25:17.5928230Z patching file drivers/usb/gadget/udc/tegra-xudc.c
2025-10-31T05:25:17.5932215Z patching file drivers/usb/gadget/udc/udc-xilinx.c
2025-10-31T05:25:17.5934744Z patching file drivers/usb/host/bcma-hcd.c
2025-10-31T05:25:17.5935896Z patching file drivers/usb/host/ehci-fsl.c
2025-10-31T05:25:17.5937689Z patching file drivers/usb/host/ehci-hcd.c
2025-10-31T05:25:17.5939900Z patching file drivers/usb/host/ehci-hub.c
2025-10-31T05:25:17.5941691Z patching file drivers/usb/host/ehci-mv.c
2025-10-31T05:25:17.5942878Z patching file drivers/usb/host/ehci-omap.c
2025-10-31T05:25:17.5943981Z patching file drivers/usb/host/ehci-orion.c
2025-10-31T05:25:17.5945185Z patching file drivers/usb/host/ehci-pci.c
2025-10-31T05:25:17.5946815Z patching file drivers/usb/host/ehci-platform.c
2025-10-31T05:25:17.5947843Z patching file drivers/usb/host/ehci-ppc-of.c
2025-10-31T05:25:17.5948833Z patching file drivers/usb/host/ehci-sh.c
2025-10-31T05:25:17.5949815Z patching file drivers/usb/host/ehci-spear.c
2025-10-31T05:25:17.5951299Z patching file drivers/usb/host/ehci.h
2025-10-31T05:25:17.5954617Z patching file drivers/usb/host/fotg210-hcd.c
2025-10-31T05:25:17.5958610Z patching file drivers/usb/host/fotg210.h
2025-10-31T05:25:17.5960452Z patching file drivers/usb/host/isp116x-hcd.c
2025-10-31T05:25:17.5962895Z patching file drivers/usb/host/max3421-hcd.c
2025-10-31T05:25:17.5965678Z patching file drivers/usb/host/ohci-at91.c
2025-10-31T05:25:17.5967394Z patching file drivers/usb/host/ohci-hcd.c
2025-10-31T05:25:17.5969164Z patching file drivers/usb/host/ohci-nxp.c
2025-10-31T05:25:17.5970040Z patching file drivers/usb/host/ohci-pci.c
2025-10-31T05:25:17.5971516Z patching file drivers/usb/host/ohci-ppc-of.c
2025-10-31T05:25:17.5972552Z patching file drivers/usb/host/ohci-tmio.c
2025-10-31T05:25:17.5975026Z patching file drivers/usb/host/oxu210hp-hcd.c
2025-10-31T05:25:17.5978261Z patching file drivers/usb/host/pci-quirks.c
2025-10-31T05:25:17.5980361Z patching file drivers/usb/host/sl811-hcd.c
2025-10-31T05:25:17.5982511Z patching file drivers/usb/host/uhci-pci.c
2025-10-31T05:25:17.5983563Z patching file drivers/usb/host/uhci-platform.c
2025-10-31T05:25:17.5984955Z patching file drivers/usb/host/xhci-dbgcap.c
2025-10-31T05:25:17.5987517Z patching file drivers/usb/host/xhci-dbgcap.h
2025-10-31T05:25:17.5988407Z patching file drivers/usb/host/xhci-dbgtty.c
2025-10-31T05:25:17.5990168Z patching file drivers/usb/host/xhci-debugfs.c
2025-10-31T05:25:17.5991719Z patching file drivers/usb/host/xhci-ext-caps.h
2025-10-31T05:25:17.5993403Z patching file drivers/usb/host/xhci-hub.c
2025-10-31T05:25:17.5997597Z patching file drivers/usb/host/xhci-mem.c
2025-10-31T05:25:17.6000857Z patching file drivers/usb/host/xhci-mtk-sch.c
2025-10-31T05:25:17.6003671Z patching file drivers/usb/host/xhci-mtk.c
2025-10-31T05:25:17.6005036Z patching file drivers/usb/host/xhci-mtk.h
2025-10-31T05:25:17.6006226Z patching file drivers/usb/host/xhci-mvebu.c
2025-10-31T05:25:17.6007283Z patching file drivers/usb/host/xhci-mvebu.h
2025-10-31T05:25:17.6008546Z patching file drivers/usb/host/xhci-pci-renesas.c
2025-10-31T05:25:17.6010436Z patching file drivers/usb/host/xhci-pci.c
2025-10-31T05:25:17.6013028Z patching file drivers/usb/host/xhci-pci.h
2025-10-31T05:25:17.6013888Z patching file drivers/usb/host/xhci-plat.c
2025-10-31T05:25:17.6015717Z patching file drivers/usb/host/xhci-plat.h
2025-10-31T05:25:17.6016350Z patching file drivers/usb/host/xhci-rcar.c
2025-10-31T05:25:17.6018870Z patching file drivers/usb/host/xhci-ring.c
2025-10-31T05:25:17.6025783Z patching file drivers/usb/host/xhci-tegra.c
2025-10-31T05:25:17.6028017Z patching file drivers/usb/host/xhci-trace.h
2025-10-31T05:25:17.6031012Z patching file drivers/usb/host/xhci.c
2025-10-31T05:25:17.6037087Z patching file drivers/usb/host/xhci.h
2025-10-31T05:25:17.6040838Z patching file drivers/usb/misc/appledisplay.c
2025-10-31T05:25:17.6041766Z patching file drivers/usb/misc/chaoskey.c
2025-10-31T05:25:17.6043689Z patching file drivers/usb/misc/cypress_cy7c63.c
2025-10-31T05:25:17.6045249Z patching file drivers/usb/misc/ftdi-elan.c
2025-10-31T05:25:17.6047672Z patching file drivers/usb/misc/idmouse.c
2025-10-31T05:25:17.6048741Z patching file drivers/usb/misc/iowarrior.c
2025-10-31T05:25:17.6050993Z patching file drivers/usb/misc/legousbtower.c
2025-10-31T05:25:17.6052301Z patching file drivers/usb/misc/sisusbvga/Kconfig
2025-10-31T05:25:17.6054066Z patching file drivers/usb/misc/sisusbvga/sisusb.c
2025-10-31T05:25:17.6056477Z patching file drivers/usb/misc/trancevibrator.c
2025-10-31T05:25:17.6057081Z patching file drivers/usb/misc/uss720.c
2025-10-31T05:25:17.6059018Z patching file drivers/usb/misc/yurex.c
2025-10-31T05:25:17.6060422Z patching file drivers/usb/mon/mon_bin.c
2025-10-31T05:25:17.6062585Z patching file drivers/usb/mtu3/mtu3_core.c
2025-10-31T05:25:17.6064220Z patching file drivers/usb/mtu3/mtu3_debugfs.c
2025-10-31T05:25:17.6065131Z patching file drivers/usb/mtu3/mtu3_dr.c
2025-10-31T05:25:17.6066264Z patching file drivers/usb/mtu3/mtu3_gadget.c
2025-10-31T05:25:17.6067965Z patching file drivers/usb/mtu3/mtu3_qmu.c
2025-10-31T05:25:17.6069535Z patching file drivers/usb/musb/Kconfig
2025-10-31T05:25:17.6070463Z patching file drivers/usb/musb/da8xx.c
2025-10-31T05:25:17.6071893Z patching file drivers/usb/musb/mediatek.c
2025-10-31T05:25:17.6074062Z patching file drivers/usb/musb/musb_core.c
2025-10-31T05:25:17.6077414Z patching file drivers/usb/musb/musb_core.h
2025-10-31T05:25:17.6078402Z patching file drivers/usb/musb/musb_debugfs.c
2025-10-31T05:25:17.6079933Z patching file drivers/usb/musb/musb_dsps.c
2025-10-31T05:25:17.6082191Z patching file drivers/usb/musb/musb_gadget.c
2025-10-31T05:25:17.6085324Z patching file drivers/usb/musb/musb_host.c
2025-10-31T05:25:17.6087843Z patching file drivers/usb/musb/musb_virthub.c
2025-10-31T05:25:17.6088936Z patching file drivers/usb/musb/omap2430.c
2025-10-31T05:25:17.6090586Z patching file drivers/usb/musb/sunxi.c
2025-10-31T05:25:17.6092361Z patching file drivers/usb/musb/tusb6010.c
2025-10-31T05:25:17.6094416Z patching file drivers/usb/phy/phy-fsl-usb.c
2025-10-31T05:25:17.6095784Z patching file drivers/usb/phy/phy-mxs-usb.c
2025-10-31T05:25:17.6097401Z patching file drivers/usb/phy/phy-tahvo.c
2025-10-31T05:25:17.6098350Z patching file drivers/usb/phy/phy-twl6030-usb.c
2025-10-31T05:25:17.6099540Z patching file drivers/usb/phy/phy.c
2025-10-31T05:25:17.6101254Z patching file drivers/usb/renesas_usbhs/common.c
2025-10-31T05:25:17.6103494Z patching file drivers/usb/renesas_usbhs/fifo.c
2025-10-31T05:25:17.6105398Z patching file drivers/usb/renesas_usbhs/mod_gadget.c
2025-10-31T05:25:17.6113106Z patching file drivers/usb/renesas_usbhs/pipe.c
2025-10-31T05:25:17.6113697Z patching file drivers/usb/renesas_usbhs/rza.c
2025-10-31T05:25:17.6114986Z patching file drivers/usb/roles/class.c
2025-10-31T05:25:17.6115339Z patching file drivers/usb/serial/Kconfig
2025-10-31T05:25:17.6115687Z patching file drivers/usb/serial/ch341.c
2025-10-31T05:25:17.6116217Z patching file drivers/usb/serial/cp210x.c
2025-10-31T05:25:17.6116843Z patching file drivers/usb/serial/digi_acceleport.c
2025-10-31T05:25:17.6118373Z patching file drivers/usb/serial/f81232.c
2025-10-31T05:25:17.6120926Z patching file drivers/usb/serial/f81534.c
2025-10-31T05:25:17.6122978Z patching file drivers/usb/serial/ftdi_sio.c
2025-10-31T05:25:17.6127101Z patching file drivers/usb/serial/ftdi_sio_ids.h
2025-10-31T05:25:17.6129991Z patching file drivers/usb/serial/io_edgeport.c
2025-10-31T05:25:17.6133407Z patching file drivers/usb/serial/io_ti.c
2025-10-31T05:25:17.6135896Z patching file drivers/usb/serial/io_usbvend.h
2025-10-31T05:25:17.6137524Z patching file drivers/usb/serial/iuu_phoenix.c
2025-10-31T05:25:17.6139909Z patching file drivers/usb/serial/keyspan.c
2025-10-31T05:25:17.6142968Z patching file drivers/usb/serial/keyspan_pda.c
2025-10-31T05:25:17.6145866Z patching file drivers/usb/serial/mos7720.c
2025-10-31T05:25:17.6155340Z patching file drivers/usb/serial/mos7840.c
2025-10-31T05:25:17.6155728Z patching file drivers/usb/serial/omninet.c
2025-10-31T05:25:17.6156080Z patching file drivers/usb/serial/option.c
2025-10-31T05:25:17.6158983Z patching file drivers/usb/serial/pl2303.c
2025-10-31T05:25:17.6161055Z patching file drivers/usb/serial/pl2303.h
2025-10-31T05:25:17.6161436Z patching file drivers/usb/serial/qcserial.c
2025-10-31T05:25:17.6162572Z patching file drivers/usb/serial/quatech2.c
2025-10-31T05:25:17.6172703Z patching file drivers/usb/serial/sierra.c
2025-10-31T05:25:17.6173352Z patching file drivers/usb/serial/ti_usb_3410_5052.c
2025-10-31T05:25:17.6173780Z patching file drivers/usb/serial/usb-serial-simple.c
2025-10-31T05:25:17.6174164Z patching file drivers/usb/serial/usb-serial.c
2025-10-31T05:25:17.6174527Z patching file drivers/usb/serial/usb_debug.c
2025-10-31T05:25:17.6174889Z patching file drivers/usb/serial/usb_wwan.c
2025-10-31T05:25:17.6175271Z patching file drivers/usb/serial/whiteheat.c
2025-10-31T05:25:17.6175807Z patching file drivers/usb/storage/alauda.c
2025-10-31T05:25:17.6178446Z patching file drivers/usb/storage/ene_ub6250.c
2025-10-31T05:25:17.6194430Z patching file drivers/usb/storage/isd200.c
2025-10-31T05:25:17.6194978Z patching file drivers/usb/storage/karma.c
2025-10-31T05:25:17.6195644Z patching file drivers/usb/storage/realtek_cr.c
2025-10-31T05:25:17.6196048Z patching file drivers/usb/storage/scsiglue.c
2025-10-31T05:25:17.6196425Z patching file drivers/usb/storage/transport.c
2025-10-31T05:25:17.6196799Z patching file drivers/usb/storage/uas-detect.h
2025-10-31T05:25:17.6197150Z patching file drivers/usb/storage/uas.c
2025-10-31T05:25:17.6197556Z patching file drivers/usb/storage/unusual_cypress.h
2025-10-31T05:25:17.6197937Z patching file drivers/usb/storage/unusual_devs.h
2025-10-31T05:25:17.6198321Z patching file drivers/usb/storage/unusual_uas.h
2025-10-31T05:25:17.6198690Z patching file drivers/usb/storage/usb.c
2025-10-31T05:25:17.6200965Z patching file drivers/usb/typec/Kconfig
2025-10-31T05:25:17.6201356Z patching file drivers/usb/typec/altmodes/Kconfig
2025-10-31T05:25:17.6201785Z patching file drivers/usb/typec/altmodes/displayport.c
2025-10-31T05:25:17.6203162Z patching file drivers/usb/typec/bus.c
2025-10-31T05:25:17.6204841Z patching file drivers/usb/typec/class.c
2025-10-31T05:25:17.6212705Z patching file drivers/usb/typec/mux.c
2025-10-31T05:25:17.6213477Z patching file drivers/usb/typec/mux/intel_pmc_mux.c
2025-10-31T05:25:17.6214745Z patching file drivers/usb/typec/stusb160x.c
2025-10-31T05:25:17.6215419Z patching file drivers/usb/typec/tcpm/Kconfig
2025-10-31T05:25:17.6216069Z patching file drivers/usb/typec/tcpm/fusb302.c
2025-10-31T05:25:17.6216653Z patching file drivers/usb/typec/tcpm/tcpci.c
2025-10-31T05:25:17.6218244Z patching file drivers/usb/typec/tcpm/tcpci.h
2025-10-31T05:25:17.6218639Z patching file drivers/usb/typec/tcpm/tcpci_maxim.c
2025-10-31T05:25:17.6219039Z patching file drivers/usb/typec/tcpm/tcpci_mt6360.c
2025-10-31T05:25:17.6219437Z patching file drivers/usb/typec/tcpm/tcpci_rt1711h.c
2025-10-31T05:25:17.6220086Z patching file drivers/usb/typec/tcpm/tcpm.c
2025-10-31T05:25:17.6225573Z patching file drivers/usb/typec/tcpm/wcove.c
2025-10-31T05:25:17.6226263Z patching file drivers/usb/typec/tps6598x.c
2025-10-31T05:25:17.6227381Z patching file drivers/usb/typec/ucsi/displayport.c
2025-10-31T05:25:17.6228311Z patching file drivers/usb/typec/ucsi/psy.c
2025-10-31T05:25:17.6229491Z patching file drivers/usb/typec/ucsi/ucsi.c
2025-10-31T05:25:17.6232393Z patching file drivers/usb/typec/ucsi/ucsi.h
2025-10-31T05:25:17.6233499Z patching file drivers/usb/typec/ucsi/ucsi_acpi.c
2025-10-31T05:25:17.6234502Z patching file drivers/usb/typec/ucsi/ucsi_ccg.c
2025-10-31T05:25:17.6236196Z patching file drivers/usb/usbip/stub_dev.c
2025-10-31T05:25:17.6237663Z patching file drivers/usb/usbip/stub_rx.c
2025-10-31T05:25:17.6238742Z patching file drivers/usb/usbip/usbip_common.h
2025-10-31T05:25:17.6239740Z patching file drivers/usb/usbip/usbip_event.c
2025-10-31T05:25:17.6240926Z patching file drivers/usb/usbip/vhci_hcd.c
2025-10-31T05:25:17.6242769Z patching file drivers/usb/usbip/vhci_sysfs.c
2025-10-31T05:25:17.6243972Z patching file drivers/usb/usbip/vudc_dev.c
2025-10-31T05:25:17.6244933Z patching file drivers/usb/usbip/vudc_sysfs.c
2025-10-31T05:25:17.6246040Z patching file drivers/vdpa/ifcvf/ifcvf_base.c
2025-10-31T05:25:17.6247248Z patching file drivers/vdpa/mlx5/core/mlx5_vdpa.h
2025-10-31T05:25:17.6248467Z patching file drivers/vdpa/mlx5/core/mr.c
2025-10-31T05:25:17.6249615Z patching file drivers/vdpa/mlx5/net/mlx5_vnet.c
2025-10-31T05:25:17.6253346Z patching file drivers/vdpa/vdpa_sim/vdpa_sim.c
2025-10-31T05:25:17.6255220Z patching file drivers/vfio/Kconfig
2025-10-31T05:25:17.6255980Z patching file drivers/vfio/fsl-mc/vfio_fsl_mc.c
2025-10-31T05:25:17.6256905Z patching file drivers/vfio/fsl-mc/vfio_fsl_mc_intr.c
2025-10-31T05:25:17.6257492Z patching file drivers/vfio/mdev/mdev_private.h
2025-10-31T05:25:17.6258247Z patching file drivers/vfio/mdev/mdev_sysfs.c
2025-10-31T05:25:17.6259061Z patching file drivers/vfio/pci/Kconfig
2025-10-31T05:25:17.6259928Z patching file drivers/vfio/pci/vfio_pci.c
2025-10-31T05:25:17.6262487Z patching file drivers/vfio/pci/vfio_pci_config.c
2025-10-31T05:25:17.6264372Z patching file drivers/vfio/pci/vfio_pci_intrs.c
2025-10-31T05:25:17.6265817Z patching file drivers/vfio/pci/vfio_pci_nvlink2.c
2025-10-31T05:25:17.6266510Z patching file drivers/vfio/pci/vfio_pci_rdwr.c
2025-10-31T05:25:17.6267259Z patching file drivers/vfio/pci/vfio_pci_zdev.c
2025-10-31T05:25:17.6268162Z patching file drivers/vfio/platform/vfio_amba.c
2025-10-31T05:25:17.6268953Z patching file drivers/vfio/platform/vfio_platform_common.c
2025-10-31T05:25:17.6270606Z patching file drivers/vfio/platform/vfio_platform_irq.c
2025-10-31T05:25:17.6272259Z patching file drivers/vfio/vfio.c
2025-10-31T05:25:17.6276046Z patching file drivers/vfio/vfio_iommu_type1.c
2025-10-31T05:25:17.6279498Z patching file drivers/vfio/virqfd.c
2025-10-31T05:25:17.6280825Z patching file drivers/vhost/net.c
2025-10-31T05:25:17.6283153Z patching file drivers/vhost/scsi.c
2025-10-31T05:25:17.6285171Z patching file drivers/vhost/vdpa.c
2025-10-31T05:25:17.6287329Z patching file drivers/vhost/vhost.c
2025-10-31T05:25:17.6289283Z patching file drivers/vhost/vhost.h
2025-10-31T05:25:17.6290379Z patching file drivers/vhost/vringh.c
2025-10-31T05:25:17.6291772Z patching file drivers/vhost/vsock.c
2025-10-31T05:25:17.6293406Z patching file drivers/video/backlight/backlight.c
2025-10-31T05:25:17.6294400Z patching file drivers/video/backlight/bd6107.c
2025-10-31T05:25:17.6295063Z patching file drivers/video/backlight/da9052_bl.c
2025-10-31T05:25:17.6295764Z patching file drivers/video/backlight/gpio_backlight.c
2025-10-31T05:25:17.6296535Z patching file drivers/video/backlight/ktd253-backlight.c
2025-10-31T05:25:17.6297355Z patching file drivers/video/backlight/led_bl.c
2025-10-31T05:25:17.6298076Z patching file drivers/video/backlight/lm3630a_bl.c
2025-10-31T05:25:17.6299352Z patching file drivers/video/backlight/lm3639_bl.c
2025-10-31T05:25:17.6299939Z patching file drivers/video/backlight/lp8788_bl.c
2025-10-31T05:25:17.6301017Z patching file drivers/video/backlight/lv5207lp.c
2025-10-31T05:25:17.6301629Z patching file drivers/video/backlight/pwm_bl.c
2025-10-31T05:25:17.6302675Z patching file drivers/video/backlight/qcom-wled.c
2025-10-31T05:25:17.6304760Z patching file drivers/video/console/Kconfig
2025-10-31T05:25:17.6305485Z patching file drivers/video/console/sticon.c
2025-10-31T05:25:17.6306537Z patching file drivers/video/console/sticore.c
2025-10-31T05:25:17.6308065Z patching file drivers/video/console/vgacon.c
2025-10-31T05:25:17.6310107Z patching file drivers/video/fbdev/Kconfig
2025-10-31T05:25:17.6312145Z patching file drivers/video/fbdev/amba-clcd.c
2025-10-31T05:25:17.6313755Z patching file drivers/video/fbdev/arcfb.c
2025-10-31T05:25:17.6314804Z patching file drivers/video/fbdev/arkfb.c
2025-10-31T05:25:17.6316055Z patching file drivers/video/fbdev/asiliantfb.c
2025-10-31T05:25:17.6317803Z patching file drivers/video/fbdev/atafb.c
2025-10-31T05:25:17.6320143Z patching file drivers/video/fbdev/atmel_lcdfb.c
2025-10-31T05:25:17.6322371Z patching file drivers/video/fbdev/aty/atyfb_base.c
2025-10-31T05:25:17.6325059Z patching file drivers/video/fbdev/au1100fb.c
2025-10-31T05:25:17.6326922Z patching file drivers/video/fbdev/au1200fb.c
2025-10-31T05:25:17.6327840Z patching file drivers/video/fbdev/chipsfb.c
2025-10-31T05:25:17.6329388Z patching file drivers/video/fbdev/cirrusfb.c
2025-10-31T05:25:17.6331450Z patching file drivers/video/fbdev/controlfb.c
2025-10-31T05:25:17.6332815Z patching file drivers/video/fbdev/core/bitblit.c
2025-10-31T05:25:17.6333563Z patching file drivers/video/fbdev/core/fb_defio.c
2025-10-31T05:25:17.6334257Z patching file drivers/video/fbdev/core/fbcmap.c
2025-10-31T05:25:17.6335945Z patching file drivers/video/fbdev/core/fbcon.c
2025-10-31T05:25:17.6338497Z patching file drivers/video/fbdev/core/fbcon.h
2025-10-31T05:25:17.6339267Z patching file drivers/video/fbdev/core/fbcon_ccw.c
2025-10-31T05:25:17.6340972Z patching file drivers/video/fbdev/core/fbcon_cw.c
2025-10-31T05:25:17.6341615Z patching file drivers/video/fbdev/core/fbcon_rotate.h
2025-10-31T05:25:17.6342425Z patching file drivers/video/fbdev/core/fbcon_ud.c
2025-10-31T05:25:17.6343942Z patching file drivers/video/fbdev/core/fbcvt.c
2025-10-31T05:25:17.6344900Z patching file drivers/video/fbdev/core/fbmem.c
2025-10-31T05:25:17.6346752Z patching file drivers/video/fbdev/core/fbmon.c
2025-10-31T05:25:17.6348176Z patching file drivers/video/fbdev/core/modedb.c
2025-10-31T05:25:17.6349198Z patching file drivers/video/fbdev/core/sysimgblt.c
2025-10-31T05:25:17.6350009Z patching file drivers/video/fbdev/core/tileblit.c
2025-10-31T05:25:17.6351038Z patching file drivers/video/fbdev/ep93xx-fb.c
2025-10-31T05:25:17.6352627Z patching file drivers/video/fbdev/fsl-diu-fb.c
2025-10-31T05:25:17.6354390Z patching file drivers/video/fbdev/gbefb.c
2025-10-31T05:25:17.6355726Z patching file drivers/video/fbdev/geode/lxfb_core.c
2025-10-31T05:25:17.6356473Z patching file drivers/video/fbdev/hgafb.c
2025-10-31T05:25:17.6357838Z patching file drivers/video/fbdev/hpfb.c
2025-10-31T05:25:17.6358767Z patching file drivers/video/fbdev/hyperv_fb.c
2025-10-31T05:25:17.6360749Z patching file drivers/video/fbdev/i740fb.c
2025-10-31T05:25:17.6362468Z patching file drivers/video/fbdev/imsttfb.c
2025-10-31T05:25:17.6364404Z patching file drivers/video/fbdev/imxfb.c
2025-10-31T05:25:17.6365954Z patching file drivers/video/fbdev/intelfb/intelfbdrv.c
2025-10-31T05:25:17.6367322Z patching file drivers/video/fbdev/kyro/fbdev.c
2025-10-31T05:25:17.6368915Z patching file drivers/video/fbdev/matrox/matroxfb_base.c
2025-10-31T05:25:17.6370703Z patching file drivers/video/fbdev/mmp/hw/mmp_ctrl.c
2025-10-31T05:25:17.6371283Z patching file drivers/video/fbdev/nvidia/nv_i2c.c
2025-10-31T05:25:17.6372430Z patching file drivers/video/fbdev/nvidia/nvidia.c
2025-10-31T05:25:17.6374043Z patching file drivers/video/fbdev/omap/lcd_mipid.c
2025-10-31T05:25:17.6374959Z patching file drivers/video/fbdev/omap2/omapfb/displays/connector-dvi.c
2025-10-31T05:25:17.6381803Z patching file drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.c
2025-10-31T05:25:17.6383106Z patching file drivers/video/fbdev/omap2/omapfb/displays/panel-sony-acx565akm.c
2025-10-31T05:25:17.6383709Z patching file drivers/video/fbdev/omap2/omapfb/displays/panel-tpo-td043mtea1.c
2025-10-31T05:25:17.6383994Z patching file drivers/video/fbdev/omap2/omapfb/dss/dispc.c
2025-10-31T05:25:17.6384259Z patching file drivers/video/fbdev/omap2/omapfb/dss/dss-of.c
2025-10-31T05:25:17.6384469Z patching file drivers/video/fbdev/pm2fb.c
2025-10-31T05:25:17.6385180Z patching file drivers/video/fbdev/pxa3xx-gcu.c
2025-10-31T05:25:17.6387117Z patching file drivers/video/fbdev/pxafb.c
2025-10-31T05:25:17.6389458Z patching file drivers/video/fbdev/riva/fbdev.c
2025-10-31T05:25:17.6391528Z patching file drivers/video/fbdev/s3fb.c
2025-10-31T05:25:17.6393899Z patching file drivers/video/fbdev/savage/savagefb_driver.c
2025-10-31T05:25:17.6395805Z patching file drivers/video/fbdev/sh7760fb.c
2025-10-31T05:25:17.6397634Z patching file drivers/video/fbdev/sh_mobile_lcdcfb.c
2025-10-31T05:25:17.6400389Z patching file drivers/video/fbdev/sis/init.c
2025-10-31T05:25:17.6405804Z patching file drivers/video/fbdev/sis/init301.c
2025-10-31T05:25:17.6413127Z patching file drivers/video/fbdev/sis/sis_main.c
2025-10-31T05:25:17.6417180Z patching file drivers/video/fbdev/sm501fb.c
2025-10-31T05:25:17.6419253Z patching file drivers/video/fbdev/sm712fb.c
2025-10-31T05:25:17.6421392Z patching file drivers/video/fbdev/smscufx.c
2025-10-31T05:25:17.6424027Z patching file drivers/video/fbdev/sticore.h
2025-10-31T05:25:17.6430595Z patching file drivers/video/fbdev/stifb.c
2025-10-31T05:25:17.6432990Z patching file drivers/video/fbdev/tgafb.c
2025-10-31T05:25:17.6435005Z patching file drivers/video/fbdev/udlfb.c
2025-10-31T05:25:17.6437411Z patching file drivers/video/fbdev/uvesafb.c
2025-10-31T05:25:17.6439577Z patching file drivers/video/fbdev/vermilion/vermilion.c
2025-10-31T05:25:17.6441322Z patching file drivers/video/fbdev/vga16fb.c
2025-10-31T05:25:17.6443182Z patching file drivers/video/fbdev/via/accel.c
2025-10-31T05:25:17.6444267Z patching file drivers/video/fbdev/via/via-core.c
2025-10-31T05:25:17.6445968Z patching file drivers/video/fbdev/vt8623fb.c
2025-10-31T05:25:17.6447450Z patching file drivers/video/fbdev/w100fb.c
2025-10-31T05:25:17.6449499Z patching file drivers/virt/nitro_enclaves/ne_misc_dev.c
2025-10-31T05:25:17.6451515Z patching file drivers/virt/vboxguest/vboxguest_linux.c
2025-10-31T05:25:17.6452761Z patching file drivers/virt/vboxguest/vboxguest_utils.c
2025-10-31T05:25:17.6454155Z patching file drivers/virtio/virtio.c
2025-10-31T05:25:17.6455595Z patching file drivers/virtio/virtio_balloon.c
2025-10-31T05:25:17.6457041Z patching file drivers/virtio/virtio_mmio.c
2025-10-31T05:25:17.6458643Z patching file drivers/virtio/virtio_pci_common.c
2025-10-31T05:25:17.6460376Z patching file drivers/virtio/virtio_ring.c
2025-10-31T05:25:17.6462624Z patching file drivers/virtio/virtio_vdpa.c
2025-10-31T05:25:17.6464117Z patching file drivers/visorbus/visorchipset.c
2025-10-31T05:25:17.6465925Z patching file drivers/vme/bridges/vme_fake.c
2025-10-31T05:25:17.6467753Z patching file drivers/vme/bridges/vme_tsi148.c
2025-10-31T05:25:17.6469731Z patching file drivers/w1/slaves/w1_ds2438.c
2025-10-31T05:25:17.6470635Z patching file drivers/w1/slaves/w1_ds28e04.c
2025-10-31T05:25:17.6472326Z patching file drivers/w1/slaves/w1_therm.c
2025-10-31T05:25:17.6474448Z patching file drivers/w1/w1.c
2025-10-31T05:25:17.6475784Z patching file drivers/w1/w1_int.c
2025-10-31T05:25:17.6477310Z patching file drivers/watchdog/Kconfig
2025-10-31T05:25:17.6479249Z patching file drivers/watchdog/armada_37xx_wdt.c
2025-10-31T05:25:17.6480203Z patching file drivers/watchdog/aspeed_wdt.c
2025-10-31T05:25:17.6481274Z patching file drivers/watchdog/at91sam9_wdt.c
2025-10-31T05:25:17.6483380Z patching file drivers/watchdog/bcm2835_wdt.c
2025-10-31T05:25:17.6484207Z patching file drivers/watchdog/da9052_wdt.c
2025-10-31T05:25:17.6485250Z patching file drivers/watchdog/diag288_wdt.c
2025-10-31T05:25:17.6486334Z patching file drivers/watchdog/dw_wdt.c
2025-10-31T05:25:17.6487782Z patching file drivers/watchdog/f71808e_wdt.c
2025-10-31T05:25:17.6489016Z patching file drivers/watchdog/hpwdt.c
2025-10-31T05:25:17.6490037Z patching file drivers/watchdog/iTCO_wdt.c
2025-10-31T05:25:17.6491498Z patching file drivers/watchdog/imx_sc_wdt.c
2025-10-31T05:25:17.6492558Z patching file drivers/watchdog/intel-mid_wdt.c
2025-10-31T05:25:17.6493581Z patching file drivers/watchdog/it87_wdt.c
2025-10-31T05:25:17.6494877Z patching file drivers/watchdog/jz4740_wdt.c
2025-10-31T05:25:17.6495690Z patching file drivers/watchdog/lpc18xx_wdt.c
2025-10-31T05:25:17.6496738Z patching file drivers/watchdog/mei_wdt.c
2025-10-31T05:25:17.6497784Z patching file drivers/watchdog/menz69_wdt.c
2025-10-31T05:25:17.6498714Z patching file drivers/watchdog/mpc8xxx_wdt.c
2025-10-31T05:25:17.6499634Z patching file drivers/watchdog/mtk_wdt.c
2025-10-31T05:25:17.6500694Z patching file drivers/watchdog/omap_wdt.c
2025-10-31T05:25:17.6502094Z patching file drivers/watchdog/pcwd_usb.c
2025-10-31T05:25:17.6503476Z patching file drivers/watchdog/qcom-wdt.c
2025-10-31T05:25:17.6504460Z patching file drivers/watchdog/rti_wdt.c
2025-10-31T05:25:17.6505915Z patching file drivers/watchdog/sbc60xxwdt.c
2025-10-31T05:25:17.6506767Z patching file drivers/watchdog/sbsa_gwdt.c
2025-10-31T05:25:17.6507794Z patching file drivers/watchdog/sc520_wdt.c
2025-10-31T05:25:17.6508877Z patching file drivers/watchdog/sp5100_tco.c
2025-10-31T05:25:17.6509916Z patching file drivers/watchdog/sp805_wdt.c
2025-10-31T05:25:17.6510936Z patching file drivers/watchdog/sprd_wdt.c
2025-10-31T05:25:17.6512143Z patching file drivers/watchdog/stm32_iwdg.c
2025-10-31T05:25:17.6513172Z patching file drivers/watchdog/ts4800_wdt.c
2025-10-31T05:25:17.6514130Z patching file drivers/watchdog/w83877f_wdt.c
2025-10-31T05:25:17.6515421Z patching file drivers/watchdog/watchdog_core.c
2025-10-31T05:25:17.6516752Z patching file drivers/watchdog/watchdog_dev.c
2025-10-31T05:25:17.6518223Z patching file drivers/watchdog/wdat_wdt.c
2025-10-31T05:25:17.6519317Z patching file drivers/watchdog/ziirave_wdt.c
2025-10-31T05:25:17.6520583Z patching file drivers/xen/Kconfig
2025-10-31T05:25:17.6521747Z patching file drivers/xen/balloon.c
2025-10-31T05:25:17.6523766Z patching file drivers/xen/events/events_2l.c
2025-10-31T05:25:17.6525292Z patching file drivers/xen/events/events_base.c
2025-10-31T05:25:17.6528339Z patching file drivers/xen/events/events_fifo.c
2025-10-31T05:25:17.6529107Z patching file drivers/xen/events/events_internal.h
2025-10-31T05:25:17.6529932Z patching file drivers/xen/features.c
2025-10-31T05:25:17.6530773Z patching file drivers/xen/gntalloc.c
2025-10-31T05:25:17.6532119Z patching file drivers/xen/gntdev-common.h
2025-10-31T05:25:17.6533104Z patching file drivers/xen/gntdev-dmabuf.c
2025-10-31T05:25:17.6534815Z patching file drivers/xen/gntdev.c
2025-10-31T05:25:17.6537710Z patching file drivers/xen/grant-table.c
2025-10-31T05:25:17.6539467Z patching file drivers/xen/manage.c
2025-10-31T05:25:17.6540325Z patching file drivers/xen/pcpu.c
2025-10-31T05:25:17.6541347Z patching file drivers/xen/platform-pci.c
2025-10-31T05:25:17.6542517Z patching file drivers/xen/privcmd.c
2025-10-31T05:25:17.6544449Z patching file drivers/xen/pvcalls-back.c
2025-10-31T05:25:17.6546164Z patching file drivers/xen/pvcalls-front.c
2025-10-31T05:25:17.6547667Z patching file drivers/xen/swiotlb-xen.c
2025-10-31T05:25:17.6548715Z patching file drivers/xen/unpopulated-alloc.c
2025-10-31T05:25:17.6549755Z patching file drivers/xen/xen-pciback/conf_space.c
2025-10-31T05:25:17.6550825Z patching file drivers/xen/xen-pciback/conf_space_capability.c
2025-10-31T05:25:17.6551834Z patching file drivers/xen/xen-pciback/conf_space_header.c
2025-10-31T05:25:17.6552961Z patching file drivers/xen/xen-pciback/vpci.c
2025-10-31T05:25:17.6554051Z patching file drivers/xen/xen-pciback/xenbus.c
2025-10-31T05:25:17.6555785Z patching file drivers/xen/xen-scsiback.c
2025-10-31T05:25:17.6557362Z patching file drivers/xen/xenbus/xenbus.h
2025-10-31T05:25:17.6558299Z patching file drivers/xen/xenbus/xenbus_client.c
2025-10-31T05:25:17.6559737Z patching file drivers/xen/xenbus/xenbus_comms.c
2025-10-31T05:25:17.6560846Z patching file drivers/xen/xenbus/xenbus_dev_frontend.c
2025-10-31T05:25:17.6562265Z patching file drivers/xen/xenbus/xenbus_probe.c
2025-10-31T05:25:17.6564015Z patching file drivers/xen/xenbus/xenbus_probe_backend.c
2025-10-31T05:25:17.6564933Z patching file drivers/xen/xenbus/xenbus_xs.c
2025-10-31T05:25:17.6566498Z patching file drivers/xen/xenfs/xensyms.c
2025-10-31T05:25:17.6567205Z patching file drivers/xen/xlate_mmu.c
2025-10-31T05:25:17.6568460Z patching file fs/9p/vfs_file.c
2025-10-31T05:25:17.6569844Z patching file fs/9p/vfs_inode.c
2025-10-31T05:25:17.6571423Z patching file fs/9p/vfs_inode_dotl.c
2025-10-31T05:25:17.6572936Z patching file fs/9p/vfs_super.c
2025-10-31T05:25:17.6573882Z patching file fs/Kconfig
2025-10-31T05:25:17.6574868Z patching file fs/Makefile
2025-10-31T05:25:17.6576050Z patching file fs/affs/file.c
2025-10-31T05:25:17.6577459Z patching file fs/affs/namei.c
2025-10-31T05:25:17.6578427Z patching file fs/afs/afs.h
2025-10-31T05:25:17.6579178Z patching file fs/afs/afs_vl.h
2025-10-31T05:25:17.6592941Z patching file fs/afs/callback.c
2025-10-31T05:25:17.6593412Z patching file fs/afs/cell.c
2025-10-31T05:25:17.6594023Z patching file fs/afs/cmservice.c
2025-10-31T05:25:17.6594980Z patching file fs/afs/dir.c
2025-10-31T05:25:17.6595917Z patching file fs/afs/dir_edit.c
2025-10-31T05:25:17.6596364Z patching file fs/afs/dir_silly.c
2025-10-31T05:25:17.6596791Z patching file fs/afs/dynroot.c
2025-10-31T05:25:17.6597215Z patching file fs/afs/file.c
2025-10-31T05:25:17.6597575Z patching file fs/afs/flock.c
2025-10-31T05:25:17.6616081Z patching file fs/afs/fs_operation.c
2025-10-31T05:25:17.6616447Z patching file fs/afs/fs_probe.c
2025-10-31T05:25:17.6618647Z patching file fs/afs/fsclient.c
2025-10-31T05:25:17.6619243Z patching file fs/afs/inode.c
2025-10-31T05:25:17.6619592Z patching file fs/afs/internal.h
2025-10-31T05:25:17.6619921Z patching file fs/afs/main.c
2025-10-31T05:25:17.6620253Z patching file fs/afs/misc.c
2025-10-31T05:25:17.6620580Z patching file fs/afs/mntpt.c
2025-10-31T05:25:17.6621081Z patching file fs/afs/rxrpc.c
2025-10-31T05:25:17.6621419Z patching file fs/afs/server.c
2025-10-31T05:25:17.6621763Z patching file fs/afs/server_list.c
2025-10-31T05:25:17.6622253Z patching file fs/afs/super.c
2025-10-31T05:25:17.6622592Z patching file fs/afs/vl_alias.c
2025-10-31T05:25:17.6622923Z patching file fs/afs/vl_probe.c
2025-10-31T05:25:17.6623256Z patching file fs/afs/vl_rotate.c
2025-10-31T05:25:17.6623587Z patching file fs/afs/vlclient.c
2025-10-31T05:25:17.6623915Z patching file fs/afs/volume.c
2025-10-31T05:25:17.6624249Z patching file fs/afs/write.c
2025-10-31T05:25:17.6624584Z patching file fs/afs/xattr.c
2025-10-31T05:25:17.6624912Z patching file fs/afs/xdr_fs.h
2025-10-31T05:25:17.6626472Z patching file fs/afs/yfsclient.c
2025-10-31T05:25:17.6627753Z patching file fs/aio.c
2025-10-31T05:25:17.6630329Z patching file fs/attr.c
2025-10-31T05:25:17.6630812Z patching file fs/autofs/dev-ioctl.c
2025-10-31T05:25:17.6631279Z patching file fs/autofs/waitq.c
2025-10-31T05:25:17.6631636Z patching file fs/bfs/inode.c
2025-10-31T05:25:17.6632114Z patching file fs/binfmt_elf.c
2025-10-31T05:25:17.6640747Z patching file fs/binfmt_elf_fdpic.c
2025-10-31T05:25:17.6641477Z patching file fs/binfmt_flat.c
2025-10-31T05:25:17.6641929Z patching file fs/binfmt_misc.c
2025-10-31T05:25:17.6642576Z patching file fs/block_dev.c
2025-10-31T05:25:17.6644398Z patching file fs/btrfs/Kconfig
2025-10-31T05:25:17.6644967Z patching file fs/btrfs/async-thread.c
2025-10-31T05:25:17.6647034Z patching file fs/btrfs/backref.c
2025-10-31T05:25:17.6650767Z patching file fs/btrfs/backref.h
2025-10-31T05:25:17.6653058Z patching file fs/btrfs/block-group.c
2025-10-31T05:25:17.6656863Z patching file fs/btrfs/block-group.h
2025-10-31T05:25:17.6658076Z patching file fs/btrfs/block-rsv.c
2025-10-31T05:25:17.6659264Z patching file fs/btrfs/btrfs_inode.h
2025-10-31T05:25:17.6661119Z patching file fs/btrfs/compression.c
2025-10-31T05:25:17.6663464Z patching file fs/btrfs/ctree.c
2025-10-31T05:25:17.6668952Z patching file fs/btrfs/ctree.h
2025-10-31T05:25:17.6671717Z patching file fs/btrfs/delalloc-space.c
2025-10-31T05:25:17.6673038Z patching file fs/btrfs/delayed-inode.c
2025-10-31T05:25:17.6675707Z patching file fs/btrfs/delayed-ref.c
2025-10-31T05:25:17.6677656Z patching file fs/btrfs/delayed-ref.h
2025-10-31T05:25:17.6679663Z patching file fs/btrfs/dev-replace.c
2025-10-31T05:25:17.6680594Z patching file fs/btrfs/dir-item.c
2025-10-31T05:25:17.6683016Z patching file fs/btrfs/discard.c
2025-10-31T05:25:17.6692768Z patching file fs/btrfs/disk-io.c
2025-10-31T05:25:17.6693466Z patching file fs/btrfs/disk-io.h
2025-10-31T05:25:17.6694379Z patching file fs/btrfs/export.c
2025-10-31T05:25:17.6694940Z patching file fs/btrfs/export.h
2025-10-31T05:25:17.6695443Z patching file fs/btrfs/extent-tree.c
2025-10-31T05:25:17.6702674Z patching file fs/btrfs/extent_io.c
2025-10-31T05:25:17.6707074Z patching file fs/btrfs/extent_io.h
2025-10-31T05:25:17.6708874Z patching file fs/btrfs/file-item.c
2025-10-31T05:25:17.6710689Z patching file fs/btrfs/file.c
2025-10-31T05:25:17.6714994Z patching file fs/btrfs/free-space-cache.c
2025-10-31T05:25:17.6718316Z patching file fs/btrfs/free-space-tree.c
2025-10-31T05:25:17.6719625Z patching file fs/btrfs/inode-map.c
2025-10-31T05:25:17.6721062Z patching file fs/btrfs/inode-map.h
2025-10-31T05:25:17.6724613Z patching file fs/btrfs/inode.c
2025-10-31T05:25:17.6733682Z patching file fs/btrfs/ioctl.c
2025-10-31T05:25:17.6737440Z patching file fs/btrfs/locking.c
2025-10-31T05:25:17.6739326Z patching file fs/btrfs/locking.h
2025-10-31T05:25:17.6740049Z patching file fs/btrfs/misc.h
2025-10-31T05:25:17.6740654Z patching file fs/btrfs/print-tree.c
2025-10-31T05:25:17.6741453Z patching file fs/btrfs/print-tree.h
2025-10-31T05:25:17.6743303Z patching file fs/btrfs/qgroup.c
2025-10-31T05:25:17.6747031Z patching file fs/btrfs/qgroup.h
2025-10-31T05:25:17.6748477Z patching file fs/btrfs/raid56.c
2025-10-31T05:25:17.6750778Z patching file fs/btrfs/rcu-string.h
2025-10-31T05:25:17.6751646Z patching file fs/btrfs/ref-verify.c
2025-10-31T05:25:17.6753441Z patching file fs/btrfs/reflink.c
2025-10-31T05:25:17.6755833Z patching file fs/btrfs/relocation.c
2025-10-31T05:25:17.6758470Z patching file fs/btrfs/root-tree.c
2025-10-31T05:25:17.6760376Z patching file fs/btrfs/scrub.c
2025-10-31T05:25:17.6764923Z patching file fs/btrfs/send.c
2025-10-31T05:25:17.6769584Z patching file fs/btrfs/space-info.c
2025-10-31T05:25:17.6771559Z patching file fs/btrfs/space-info.h
2025-10-31T05:25:17.6773098Z patching file fs/btrfs/super.c
2025-10-31T05:25:17.6775586Z patching file fs/btrfs/sysfs.c
2025-10-31T05:25:17.6777038Z patching file fs/btrfs/tests/btrfs-tests.c
2025-10-31T05:25:17.6777601Z patching file fs/btrfs/tests/qgroup-tests.c
2025-10-31T05:25:17.6779454Z patching file fs/btrfs/transaction.c
2025-10-31T05:25:17.6781796Z patching file fs/btrfs/transaction.h
2025-10-31T05:25:17.6783006Z patching file fs/btrfs/tree-checker.c
2025-10-31T05:25:17.6785982Z patching file fs/btrfs/tree-defrag.c
2025-10-31T05:25:17.6788274Z patching file fs/btrfs/tree-log.c
2025-10-31T05:25:17.6795757Z patching file fs/btrfs/volumes.c
2025-10-31T05:25:17.6801424Z patching file fs/btrfs/volumes.h
2025-10-31T05:25:17.6803155Z patching file fs/btrfs/xattr.c
2025-10-31T05:25:17.6804624Z patching file fs/btrfs/zlib.c
2025-10-31T05:25:17.6806628Z patching file fs/buffer.c
2025-10-31T05:25:17.6809276Z patching file fs/cachefiles/bind.c
2025-10-31T05:25:17.6810278Z patching file fs/cachefiles/namei.c
2025-10-31T05:25:17.6812155Z patching file fs/cachefiles/rdwr.c
2025-10-31T05:25:17.6814093Z patching file fs/ceph/addr.c
2025-10-31T05:25:17.6817349Z patching file fs/ceph/caps.c
2025-10-31T05:25:17.6822271Z patching file fs/ceph/dir.c
2025-10-31T05:25:17.6824429Z patching file fs/ceph/export.c
2025-10-31T05:25:17.6826215Z patching file fs/ceph/file.c
2025-10-31T05:25:17.6829475Z patching file fs/ceph/inode.c
2025-10-31T05:25:17.6832231Z patching file fs/ceph/locks.c
2025-10-31T05:25:17.6834565Z patching file fs/ceph/mds_client.c
2025-10-31T05:25:17.6839049Z patching file fs/ceph/mds_client.h
2025-10-31T05:25:17.6840179Z patching file fs/ceph/mdsmap.c
2025-10-31T05:25:17.6841310Z patching file fs/ceph/metric.c
2025-10-31T05:25:17.6842912Z patching file fs/ceph/snap.c
2025-10-31T05:25:17.6845352Z patching file fs/ceph/strings.c
2025-10-31T05:25:17.6846151Z patching file fs/ceph/super.c
2025-10-31T05:25:17.6848553Z patching file fs/ceph/super.h
2025-10-31T05:25:17.6850683Z patching file fs/ceph/xattr.c
2025-10-31T05:25:17.6852462Z patching file fs/char_dev.c
2025-10-31T05:25:17.6854190Z patching file fs/cifs/cifs_debug.c
2025-10-31T05:25:17.6855790Z patching file fs/cifs/cifs_dfs_ref.c
2025-10-31T05:25:17.6856725Z patching file fs/cifs/cifs_spnego.c
2025-10-31T05:25:17.6857764Z patching file fs/cifs/cifs_unicode.c
2025-10-31T05:25:17.6859575Z patching file fs/cifs/cifsfs.c
2025-10-31T05:25:17.6861663Z patching file fs/cifs/cifsfs.h
2025-10-31T05:25:17.6863272Z patching file fs/cifs/cifsglob.h
2025-10-31T05:25:17.6866622Z patching file fs/cifs/cifspdu.h
2025-10-31T05:25:17.6869193Z patching file fs/cifs/cifsproto.h
2025-10-31T05:25:17.6872394Z patching file fs/cifs/cifssmb.c
2025-10-31T05:25:17.6877590Z patching file fs/cifs/connect.c
2025-10-31T05:25:17.6881625Z patching file fs/cifs/dfs_cache.c
2025-10-31T05:25:17.6883698Z patching file fs/cifs/dir.c
2025-10-31T05:25:17.6886291Z patching file fs/cifs/file.c
2025-10-31T05:25:17.6890512Z patching file fs/cifs/inode.c
2025-10-31T05:25:17.6893139Z patching file fs/cifs/ioctl.c
2025-10-31T05:25:17.6894254Z patching file fs/cifs/link.c
2025-10-31T05:25:17.6895982Z patching file fs/cifs/misc.c
2025-10-31T05:25:17.6897965Z patching file fs/cifs/readdir.c
2025-10-31T05:25:17.6899868Z patching file fs/cifs/sess.c
2025-10-31T05:25:17.6901893Z patching file fs/cifs/smb2file.c
2025-10-31T05:25:17.6902822Z patching file fs/cifs/smb2glob.h
2025-10-31T05:25:17.6903820Z patching file fs/cifs/smb2inode.c
2025-10-31T05:25:17.6905504Z patching file fs/cifs/smb2misc.c
2025-10-31T05:25:17.6908530Z patching file fs/cifs/smb2ops.c
2025-10-31T05:25:17.6916387Z patching file fs/cifs/smb2pdu.c
2025-10-31T05:25:17.6921178Z patching file fs/cifs/smb2pdu.h
2025-10-31T05:25:17.6923930Z patching file fs/cifs/smb2proto.h
2025-10-31T05:25:17.6925141Z patching file fs/cifs/smb2transport.c
2025-10-31T05:25:17.6927690Z patching file fs/cifs/smbdirect.c
2025-10-31T05:25:17.6930603Z patching file fs/cifs/transport.c
2025-10-31T05:25:17.6933511Z patching file fs/cifs/xattr.c
2025-10-31T05:25:17.6934659Z patching file fs/coda/upcall.c
2025-10-31T05:25:17.6936641Z patching file fs/configfs/dir.c
2025-10-31T05:25:17.6938907Z patching file fs/configfs/file.c
2025-10-31T05:25:17.6940464Z patching file fs/coredump.c
2025-10-31T05:25:17.6943407Z patching file fs/cramfs/inode.c
2025-10-31T05:25:17.6944605Z patching file fs/crypto/fname.c
2025-10-31T05:25:17.6946062Z patching file fs/crypto/fscrypt_private.h
2025-10-31T05:25:17.6947901Z patching file fs/crypto/hkdf.c
2025-10-31T05:25:17.6948608Z patching file fs/crypto/hooks.c
2025-10-31T05:25:17.6950250Z patching file fs/crypto/keyring.c
2025-10-31T05:25:17.6953644Z patching file fs/crypto/keysetup.c
2025-10-31T05:25:17.6956012Z patching file fs/crypto/policy.c
2025-10-31T05:25:17.6957753Z patching file fs/dax.c
2025-10-31T05:25:17.6960815Z patching file fs/dcache.c
2025-10-31T05:25:17.6963828Z patching file fs/debugfs/file.c
2025-10-31T05:25:17.6965838Z patching file fs/debugfs/inode.c
2025-10-31T05:25:17.6967560Z patching file fs/debugfs/internal.h
2025-10-31T05:25:17.6968309Z patching file fs/devpts/inode.c
2025-10-31T05:25:17.6970120Z patching file fs/direct-io.c
2025-10-31T05:25:17.6971906Z patching file fs/dlm/ast.c
2025-10-31T05:25:17.6973065Z patching file fs/dlm/config.c
2025-10-31T05:25:17.6975005Z patching file fs/dlm/debug_fs.c
2025-10-31T05:25:17.6977681Z patching file fs/dlm/lock.c
2025-10-31T05:25:17.6982113Z patching file fs/dlm/lockspace.c
2025-10-31T05:25:17.6983614Z patching file fs/dlm/lowcomms.c
2025-10-31T05:25:17.6985798Z patching file fs/dlm/midcomms.c
2025-10-31T05:25:17.6986411Z patching file fs/dlm/plock.c
2025-10-31T05:25:17.6988978Z patching file fs/dlm/recover.c
2025-10-31T05:25:17.6991053Z patching file fs/ecryptfs/crypto.c
2025-10-31T05:25:17.6993563Z patching file fs/ecryptfs/inode.c
2025-10-31T05:25:17.6995955Z patching file fs/ecryptfs/keystore.c
2025-10-31T05:25:17.6998412Z patching file fs/ecryptfs/main.c
2025-10-31T05:25:17.6999595Z patching file fs/efivarfs/inode.c
2025-10-31T05:25:17.7000229Z patching file fs/efivarfs/internal.h
2025-10-31T05:25:17.7001016Z patching file fs/efivarfs/super.c
2025-10-31T05:25:17.7002348Z patching file fs/erofs/data.c
2025-10-31T05:25:17.7003521Z patching file fs/erofs/decompressor.c
2025-10-31T05:25:17.7005140Z patching file fs/erofs/erofs_fs.h
2025-10-31T05:25:17.7006093Z patching file fs/erofs/inode.c
2025-10-31T05:25:17.7007242Z patching file fs/erofs/internal.h
2025-10-31T05:25:17.7008403Z patching file fs/erofs/super.c
2025-10-31T05:25:17.7009542Z patching file fs/erofs/utils.c
2025-10-31T05:25:17.7010704Z patching file fs/erofs/xattr.c
2025-10-31T05:25:17.7012641Z patching file fs/erofs/zdata.c
2025-10-31T05:25:17.7014539Z patching file fs/erofs/zdata.h
2025-10-31T05:25:17.7015145Z patching file fs/erofs/zmap.c
2025-10-31T05:25:17.7016482Z patching file fs/erofs/zpvec.h
2025-10-31T05:25:17.7017450Z patching file fs/eventfd.c
2025-10-31T05:25:17.7019631Z patching file fs/eventpoll.c
2025-10-31T05:25:17.7023011Z patching file fs/exec.c
2025-10-31T05:25:17.7025867Z patching file fs/exfat/balloc.c
2025-10-31T05:25:17.7027027Z patching file fs/exfat/dir.c
2025-10-31T05:25:17.7029578Z patching file fs/exfat/exfat_fs.h
2025-10-31T05:25:17.7030583Z patching file fs/exfat/exfat_raw.h
2025-10-31T05:25:17.7031475Z patching file fs/exfat/fatent.c
2025-10-31T05:25:17.7032711Z patching file fs/exfat/file.c
2025-10-31T05:25:17.7034280Z patching file fs/exfat/inode.c
2025-10-31T05:25:17.7036014Z patching file fs/exfat/namei.c
2025-10-31T05:25:17.7038087Z patching file fs/exfat/nls.c
2025-10-31T05:25:17.7039719Z patching file fs/exfat/super.c
2025-10-31T05:25:17.7041552Z patching file fs/exportfs/expfs.c
2025-10-31T05:25:17.7043482Z patching file fs/ext2/balloc.c
2025-10-31T05:25:17.7045644Z patching file fs/ext2/ext2.h
2025-10-31T05:25:17.7047440Z patching file fs/ext2/super.c
2025-10-31T05:25:17.7049682Z patching file fs/ext2/xattr.c
2025-10-31T05:25:17.7051324Z patching file fs/ext4/Kconfig
2025-10-31T05:25:17.7052169Z patching file fs/ext4/acl.c
2025-10-31T05:25:17.7053201Z patching file fs/ext4/acl.h
2025-10-31T05:25:17.7054259Z patching file fs/ext4/balloc.c
2025-10-31T05:25:17.7056508Z patching file fs/ext4/block_validity.c
2025-10-31T05:25:17.7057631Z patching file fs/ext4/dir.c
2025-10-31T05:25:17.7060064Z patching file fs/ext4/ext4.h
2025-10-31T05:25:17.7066143Z patching file fs/ext4/ext4_jbd2.c
2025-10-31T05:25:17.7072918Z patching file fs/ext4/extents.c
2025-10-31T05:25:17.7075876Z patching file fs/ext4/extents_status.c
2025-10-31T05:25:17.7080129Z patching file fs/ext4/extents_status.h
2025-10-31T05:25:17.7081829Z patching file fs/ext4/fast_commit.c
2025-10-31T05:25:17.7086638Z patching file fs/ext4/fast_commit.h
2025-10-31T05:25:17.7087754Z patching file fs/ext4/file.c
2025-10-31T05:25:17.7089975Z patching file fs/ext4/fsmap.c
2025-10-31T05:25:17.7092121Z patching file fs/ext4/ialloc.c
2025-10-31T05:25:17.7094766Z patching file fs/ext4/indirect.c
2025-10-31T05:25:17.7096418Z patching file fs/ext4/inline.c
2025-10-31T05:25:17.7101310Z patching file fs/ext4/inode.c
2025-10-31T05:25:17.7109627Z patching file fs/ext4/ioctl.c
2025-10-31T05:25:17.7113291Z patching file fs/ext4/mballoc.c
2025-10-31T05:25:17.7119911Z patching file fs/ext4/mballoc.h
2025-10-31T05:25:17.7120624Z patching file fs/ext4/migrate.c
2025-10-31T05:25:17.7122892Z patching file fs/ext4/mmp.c
2025-10-31T05:25:17.7124031Z patching file fs/ext4/move_extent.c
2025-10-31T05:25:17.7125997Z patching file fs/ext4/namei.c
2025-10-31T05:25:17.7132642Z patching file fs/ext4/page-io.c
2025-10-31T05:25:17.7134999Z patching file fs/ext4/resize.c
2025-10-31T05:25:17.7138855Z patching file fs/ext4/super.c
2025-10-31T05:25:17.7145683Z patching file fs/ext4/symlink.c
2025-10-31T05:25:17.7146352Z patching file fs/ext4/sysfs.c
2025-10-31T05:25:17.7160856Z patching file fs/ext4/verity.c
2025-10-31T05:25:17.7161329Z patching file fs/ext4/xattr.c
2025-10-31T05:25:17.7161668Z patching file fs/ext4/xattr.h
2025-10-31T05:25:17.7162150Z patching file fs/f2fs/acl.c
2025-10-31T05:25:17.7162493Z patching file fs/f2fs/checkpoint.c
2025-10-31T05:25:17.7162828Z patching file fs/f2fs/compress.c
2025-10-31T05:25:17.7163152Z patching file fs/f2fs/data.c
2025-10-31T05:25:17.7164813Z patching file fs/f2fs/debug.c
2025-10-31T05:25:17.7166310Z patching file fs/f2fs/dir.c
2025-10-31T05:25:17.7168058Z patching file fs/f2fs/extent_cache.c
2025-10-31T05:25:17.7170424Z patching file fs/f2fs/f2fs.h
2025-10-31T05:25:17.7176461Z patching file fs/f2fs/file.c
2025-10-31T05:25:17.7182352Z patching file fs/f2fs/gc.c
2025-10-31T05:25:17.7185757Z patching file fs/f2fs/inline.c
2025-10-31T05:25:17.7187265Z patching file fs/f2fs/inode.c
2025-10-31T05:25:17.7189381Z patching file fs/f2fs/namei.c
2025-10-31T05:25:17.7203919Z patching file fs/f2fs/node.c
2025-10-31T05:25:17.7204447Z patching file fs/f2fs/node.h
2025-10-31T05:25:17.7204787Z patching file fs/f2fs/recovery.c
2025-10-31T05:25:17.7205107Z patching file fs/f2fs/segment.c
2025-10-31T05:25:17.7205435Z patching file fs/f2fs/segment.h
2025-10-31T05:25:17.7205773Z patching file fs/f2fs/shrinker.c
2025-10-31T05:25:17.7206106Z patching file fs/f2fs/super.c
2025-10-31T05:25:17.7210552Z patching file fs/f2fs/sysfs.c
2025-10-31T05:25:17.7212194Z patching file fs/f2fs/verity.c
2025-10-31T05:25:17.7213783Z patching file fs/f2fs/xattr.c
2025-10-31T05:25:17.7218108Z patching file fs/fat/fatent.c
2025-10-31T05:25:17.7218470Z patching file fs/fat/namei_vfat.c
2025-10-31T05:25:17.7218895Z patching file fs/fat/nfs.c
2025-10-31T05:25:17.7224843Z patching file fs/fcntl.c
2025-10-31T05:25:17.7225181Z patching file fs/fhandle.c
2025-10-31T05:25:17.7225496Z patching file fs/file.c
2025-10-31T05:25:17.7227541Z patching file fs/file_table.c
2025-10-31T05:25:17.7228619Z patching file fs/filesystems.c
2025-10-31T05:25:17.7230565Z patching file fs/fs-writeback.c
2025-10-31T05:25:17.7233728Z patching file fs/fs_context.c
2025-10-31T05:25:17.7235283Z patching file fs/fscache/cookie.c
2025-10-31T05:25:17.7236746Z patching file fs/fscache/internal.h
2025-10-31T05:25:17.7237607Z patching file fs/fscache/main.c
2025-10-31T05:25:17.7239548Z patching file fs/fsopen.c
2025-10-31T05:25:17.7240069Z patching file fs/fuse/acl.c
2025-10-31T05:25:17.7241032Z patching file fs/fuse/control.c
2025-10-31T05:25:17.7242661Z patching file fs/fuse/cuse.c
2025-10-31T05:25:17.7244196Z patching file fs/fuse/dax.c
2025-10-31T05:25:17.7246163Z patching file fs/fuse/dev.c
2025-10-31T05:25:17.7248800Z patching file fs/fuse/dir.c
2025-10-31T05:25:17.7252184Z patching file fs/fuse/file.c
2025-10-31T05:25:17.7255989Z patching file fs/fuse/fuse_i.h
2025-10-31T05:25:17.7257847Z patching file fs/fuse/inode.c
2025-10-31T05:25:17.7260322Z patching file fs/fuse/readdir.c
2025-10-31T05:25:17.7262196Z patching file fs/fuse/virtio_fs.c
2025-10-31T05:25:17.7264423Z patching file fs/fuse/xattr.c
2025-10-31T05:25:17.7265498Z patching file fs/gfs2/aops.c
2025-10-31T05:25:17.7267614Z patching file fs/gfs2/bmap.c
2025-10-31T05:25:17.7270287Z patching file fs/gfs2/file.c
2025-10-31T05:25:17.7272743Z patching file fs/gfs2/glock.c
2025-10-31T05:25:17.7275438Z patching file fs/gfs2/glops.c
2025-10-31T05:25:17.7277420Z patching file fs/gfs2/inode.c
2025-10-31T05:25:17.7279777Z patching file fs/gfs2/lock_dlm.c
2025-10-31T05:25:17.7281813Z patching file fs/gfs2/log.c
2025-10-31T05:25:17.7284099Z patching file fs/gfs2/lops.c
2025-10-31T05:25:17.7285939Z patching file fs/gfs2/ops_fstype.c
2025-10-31T05:25:17.7288420Z patching file fs/gfs2/quota.c
2025-10-31T05:25:17.7290499Z patching file fs/gfs2/recovery.c
2025-10-31T05:25:17.7292565Z patching file fs/gfs2/rgrp.c
2025-10-31T05:25:17.7295188Z patching file fs/gfs2/rgrp.h
2025-10-31T05:25:17.7296165Z patching file fs/gfs2/super.c
2025-10-31T05:25:17.7298795Z patching file fs/gfs2/trans.c
2025-10-31T05:25:17.7299668Z patching file fs/gfs2/util.c
2025-10-31T05:25:17.7301394Z patching file fs/gfs2/util.h
2025-10-31T05:25:17.7302480Z patching file fs/hfs/bfind.c
2025-10-31T05:25:17.7303535Z patching file fs/hfs/bnode.c
2025-10-31T05:25:17.7305499Z patching file fs/hfs/brec.c
2025-10-31T05:25:17.7306490Z patching file fs/hfs/btree.h
2025-10-31T05:25:17.7307526Z patching file fs/hfs/inode.c
2025-10-31T05:25:17.7309251Z patching file fs/hfs/mdb.c
2025-10-31T05:25:17.7310106Z patching file fs/hfs/super.c
2025-10-31T05:25:17.7311320Z patching file fs/hfs/trans.c
2025-10-31T05:25:17.7312388Z patching file fs/hfsplus/bfind.c
2025-10-31T05:25:17.7313561Z patching file fs/hfsplus/bnode.c
2025-10-31T05:25:17.7315316Z patching file fs/hfsplus/btree.c
2025-10-31T05:25:17.7316326Z patching file fs/hfsplus/extents.c
2025-10-31T05:25:17.7317928Z patching file fs/hfsplus/hfsplus_fs.h
2025-10-31T05:25:17.7319493Z patching file fs/hfsplus/inode.c
2025-10-31T05:25:17.7321192Z patching file fs/hfsplus/options.c
2025-10-31T05:25:17.7322145Z patching file fs/hfsplus/super.c
2025-10-31T05:25:17.7323901Z patching file fs/hfsplus/unicode.c
2025-10-31T05:25:17.7324895Z patching file fs/hfsplus/wrapper.c
2025-10-31T05:25:17.7326025Z patching file fs/hfsplus/xattr.c
2025-10-31T05:25:17.7327784Z patching file fs/hostfs/hostfs_kern.c
2025-10-31T05:25:17.7329572Z patching file fs/hugetlbfs/inode.c
2025-10-31T05:25:17.7332259Z patching file fs/init.c
2025-10-31T05:25:17.7333919Z patching file fs/inode.c
2025-10-31T05:25:17.7336973Z patching file fs/internal.h
2025-10-31T05:25:17.7338430Z patching file fs/io-wq.c
2025-10-31T05:25:17.7341808Z patching file fs/io-wq.h
2025-10-31T05:25:17.7345665Z patching file fs/io_uring.c
2025-10-31T05:25:17.7363218Z patching file fs/ioctl.c
2025-10-31T05:25:17.7364290Z patching file fs/iomap/apply.c
2025-10-31T05:25:17.7366023Z patching file fs/iomap/buffered-io.c
2025-10-31T05:25:17.7367961Z patching file fs/iomap/direct-io.c
2025-10-31T05:25:17.7369195Z patching file fs/iomap/seek.c
2025-10-31T05:25:17.7370049Z patching file fs/iomap/swapfile.c
2025-10-31T05:25:17.7371030Z patching file fs/iomap/trace.h
2025-10-31T05:25:17.7372500Z patching file fs/isofs/dir.c
2025-10-31T05:25:17.7373410Z patching file fs/isofs/export.c
2025-10-31T05:25:17.7374575Z patching file fs/isofs/inode.c
2025-10-31T05:25:17.7376971Z patching file fs/isofs/isofs.h
2025-10-31T05:25:17.7377470Z patching file fs/isofs/joliet.c
2025-10-31T05:25:17.7378198Z patching file fs/isofs/namei.c
2025-10-31T05:25:17.7379531Z patching file fs/jbd2/checkpoint.c
2025-10-31T05:25:17.7381396Z patching file fs/jbd2/commit.c
2025-10-31T05:25:17.7384294Z patching file fs/jbd2/journal.c
2025-10-31T05:25:17.7387119Z patching file fs/jbd2/recovery.c
2025-10-31T05:25:17.7389239Z patching file fs/jbd2/transaction.c
2025-10-31T05:25:17.7392667Z patching file fs/jffs2/build.c
2025-10-31T05:25:17.7393874Z patching file fs/jffs2/compr_rtime.c
2025-10-31T05:25:17.7401814Z patching file fs/jffs2/erase.c
2025-10-31T05:25:17.7402391Z patching file fs/jffs2/file.c
2025-10-31T05:25:17.7402739Z patching file fs/jffs2/fs.c
2025-10-31T05:25:17.7403079Z patching file fs/jffs2/jffs2_fs_sb.h
2025-10-31T05:25:17.7403434Z patching file fs/jffs2/readinode.c
2025-10-31T05:25:17.7403769Z patching file fs/jffs2/scan.c
2025-10-31T05:25:17.7404113Z patching file fs/jffs2/summary.c
2025-10-31T05:25:17.7405169Z patching file fs/jffs2/super.c
2025-10-31T05:25:17.7406976Z patching file fs/jffs2/xattr.c
2025-10-31T05:25:17.7408757Z patching file fs/jffs2/xattr.h
2025-10-31T05:25:17.7409618Z patching file fs/jfs/file.c
2025-10-31T05:25:17.7410561Z patching file fs/jfs/inode.c
2025-10-31T05:25:17.7411592Z patching file fs/jfs/jfs_discard.c
2025-10-31T05:25:17.7413850Z patching file fs/jfs/jfs_dmap.c
2025-10-31T05:25:17.7417905Z patching file fs/jfs/jfs_dmap.h
2025-10-31T05:25:17.7419831Z patching file fs/jfs/jfs_dtree.c
2025-10-31T05:25:17.7423344Z patching file fs/jfs/jfs_extent.c
2025-10-31T05:25:17.7424352Z patching file fs/jfs/jfs_filsys.h
2025-10-31T05:25:17.7426326Z patching file fs/jfs/jfs_imap.c
2025-10-31T05:25:17.7429394Z patching file fs/jfs/jfs_logmgr.c
2025-10-31T05:25:17.7431529Z patching file fs/jfs/jfs_mount.c
2025-10-31T05:25:17.7433929Z patching file fs/jfs/jfs_txnmgr.c
2025-10-31T05:25:17.7436644Z patching file fs/jfs/namei.c
2025-10-31T05:25:17.7438490Z patching file fs/jfs/xattr.c
2025-10-31T05:25:17.7440345Z patching file fs/kernel_read_file.c
2025-10-31T05:25:17.7441444Z patching file fs/kernfs/dir.c
2025-10-31T05:25:17.7444010Z patching file fs/kernfs/file.c
2025-10-31T05:25:17.7446287Z patching file fs/libfs.c
2025-10-31T05:25:17.7448230Z patching file fs/lockd/clnt4xdr.c
2025-10-31T05:25:17.7449362Z patching file fs/lockd/clntproc.c
2025-10-31T05:25:17.7450951Z patching file fs/lockd/host.c
2025-10-31T05:25:17.7452433Z patching file fs/lockd/mon.c
2025-10-31T05:25:17.7453621Z patching file fs/lockd/svc.c
2025-10-31T05:25:17.7456143Z patching file fs/lockd/svc4proc.c
2025-10-31T05:25:17.7458426Z patching file fs/lockd/svclock.c
2025-10-31T05:25:17.7460725Z patching file fs/lockd/svcproc.c
2025-10-31T05:25:17.7463170Z patching file fs/lockd/svcsubs.c
2025-10-31T05:25:17.7464852Z patching file fs/lockd/svcxdr.h
2025-10-31T05:25:17.7466277Z patching file fs/lockd/xdr.c
2025-10-31T05:25:17.7468491Z patching file fs/lockd/xdr4.c
2025-10-31T05:25:17.7471469Z patching file fs/locks.c
2025-10-31T05:25:17.7474993Z patching file fs/mbcache.c
2025-10-31T05:25:17.7476919Z patching file fs/minix/inode.c
2025-10-31T05:25:17.7479466Z patching file fs/namei.c
2025-10-31T05:25:17.7485579Z patching file fs/namespace.c
2025-10-31T05:25:17.7489322Z patching file fs/nfs/Kconfig
2025-10-31T05:25:17.7490420Z patching file fs/nfs/blocklayout/blocklayout.c
2025-10-31T05:25:17.7492226Z patching file fs/nfs/blocklayout/dev.c
2025-10-31T05:25:17.7493466Z patching file fs/nfs/blocklayout/extent_tree.c
2025-10-31T05:25:17.7495003Z patching file fs/nfs/callback.c
2025-10-31T05:25:17.7496873Z patching file fs/nfs/callback.h
2025-10-31T05:25:17.7497984Z patching file fs/nfs/callback_proc.c
2025-10-31T05:25:17.7499789Z patching file fs/nfs/callback_xdr.c
2025-10-31T05:25:17.7501866Z patching file fs/nfs/client.c
2025-10-31T05:25:17.7504516Z patching file fs/nfs/delegation.c
2025-10-31T05:25:17.7506983Z patching file fs/nfs/delegation.h
2025-10-31T05:25:17.7508468Z patching file fs/nfs/dir.c
2025-10-31T05:25:17.7511508Z patching file fs/nfs/direct.c
2025-10-31T05:25:17.7513989Z patching file fs/nfs/export.c
2025-10-31T05:25:17.7514961Z patching file fs/nfs/file.c
2025-10-31T05:25:17.7517074Z patching file fs/nfs/filelayout/filelayout.c
2025-10-31T05:25:17.7518733Z patching file fs/nfs/filelayout/filelayoutdev.c
2025-10-31T05:25:17.7520477Z patching file fs/nfs/flexfilelayout/flexfilelayout.c
2025-10-31T05:25:17.7524294Z patching file fs/nfs/flexfilelayout/flexfilelayoutdev.c
2025-10-31T05:25:17.7525959Z patching file fs/nfs/fs_context.c
2025-10-31T05:25:17.7528268Z patching file fs/nfs/inode.c
2025-10-31T05:25:17.7531257Z patching file fs/nfs/internal.h
2025-10-31T05:25:17.7533461Z patching file fs/nfs/namespace.c
2025-10-31T05:25:17.7534125Z patching file fs/nfs/netns.h
2025-10-31T05:25:17.7535288Z patching file fs/nfs/nfs2xdr.c
2025-10-31T05:25:17.7537034Z patching file fs/nfs/nfs3client.c
2025-10-31T05:25:17.7538007Z patching file fs/nfs/nfs3proc.c
2025-10-31T05:25:17.7540161Z patching file fs/nfs/nfs3xdr.c
2025-10-31T05:25:17.7542648Z patching file fs/nfs/nfs42.h
2025-10-31T05:25:17.7543557Z patching file fs/nfs/nfs42proc.c
2025-10-31T05:25:17.7546196Z patching file fs/nfs/nfs42xdr.c
2025-10-31T05:25:17.7562866Z patching file fs/nfs/nfs4_fs.h
2025-10-31T05:25:17.7563596Z patching file fs/nfs/nfs4client.c
2025-10-31T05:25:17.7564780Z patching file fs/nfs/nfs4file.c
2025-10-31T05:25:17.7565372Z patching file fs/nfs/nfs4idmap.c
2025-10-31T05:25:17.7566053Z patching file fs/nfs/nfs4namespace.c
2025-10-31T05:25:17.7566860Z patching file fs/nfs/nfs4proc.c
2025-10-31T05:25:17.7568297Z patching file fs/nfs/nfs4session.h
2025-10-31T05:25:17.7568633Z patching file fs/nfs/nfs4state.c
2025-10-31T05:25:17.7570633Z patching file fs/nfs/nfs4super.c
2025-10-31T05:25:17.7572783Z patching file fs/nfs/nfs4trace.h
2025-10-31T05:25:17.7577494Z patching file fs/nfs/nfs4xdr.c
2025-10-31T05:25:17.7582182Z patching file fs/nfs/nfsroot.c
2025-10-31T05:25:17.7583939Z patching file fs/nfs/pagelist.c
2025-10-31T05:25:17.7586642Z patching file fs/nfs/pnfs.c
2025-10-31T05:25:17.7591319Z patching file fs/nfs/pnfs.h
2025-10-31T05:25:17.7593436Z patching file fs/nfs/pnfs_dev.c
2025-10-31T05:25:17.7596312Z patching file fs/nfs/pnfs_nfs.c
2025-10-31T05:25:17.7596882Z patching file fs/nfs/read.c
2025-10-31T05:25:17.7598471Z patching file fs/nfs/super.c
2025-10-31T05:25:17.7601794Z patching file fs/nfs/sysfs.c
2025-10-31T05:25:17.7602276Z patching file fs/nfs/write.c
2025-10-31T05:25:17.7605243Z patching file fs/nfs_common/Makefile
2025-10-31T05:25:17.7605796Z patching file fs/nfs_common/grace.c
2025-10-31T05:25:17.7606617Z patching file fs/nfs_common/nfs_ssc.c
2025-10-31T05:25:17.7607400Z patching file fs/nfs_common/nfsacl.c
2025-10-31T05:25:17.7612316Z patching file fs/nfsd/Kconfig
2025-10-31T05:25:17.7612684Z patching file fs/nfsd/Makefile
2025-10-31T05:25:17.7613018Z patching file fs/nfsd/acl.h
2025-10-31T05:25:17.7613360Z patching file fs/nfsd/blocklayout.c
2025-10-31T05:25:17.7613713Z patching file fs/nfsd/blocklayoutxdr.c
2025-10-31T05:25:17.7614234Z patching file fs/nfsd/cache.h
2025-10-31T05:25:17.7614574Z patching file fs/nfsd/export.c
2025-10-31T05:25:17.7618042Z patching file fs/nfsd/export.h
2025-10-31T05:25:17.7618394Z patching file fs/nfsd/filecache.c
2025-10-31T05:25:17.7623745Z patching file fs/nfsd/filecache.h
2025-10-31T05:25:17.7624125Z patching file fs/nfsd/flexfilelayout.c
2025-10-31T05:25:17.7624499Z patching file fs/nfsd/flexfilelayoutxdr.c
2025-10-31T05:25:17.7624828Z patching file fs/nfsd/lockd.c
2025-10-31T05:25:17.7625423Z patching file fs/nfsd/netns.h
2025-10-31T05:25:17.7627050Z patching file fs/nfsd/nfs2acl.c
2025-10-31T05:25:17.7629044Z patching file fs/nfsd/nfs3acl.c
2025-10-31T05:25:17.7631023Z patching file fs/nfsd/nfs3proc.c
2025-10-31T05:25:17.7638534Z patching file fs/nfsd/nfs3xdr.c
2025-10-31T05:25:17.7639247Z patching file fs/nfsd/nfs4acl.c
2025-10-31T05:25:17.7641466Z patching file fs/nfsd/nfs4callback.c
2025-10-31T05:25:17.7644510Z patching file fs/nfsd/nfs4idmap.c
2025-10-31T05:25:17.7645697Z patching file fs/nfsd/nfs4layouts.c
2025-10-31T05:25:17.7648407Z patching file fs/nfsd/nfs4proc.c
2025-10-31T05:25:17.7656131Z patching file fs/nfsd/nfs4recover.c
2025-10-31T05:25:17.7661400Z patching file fs/nfsd/nfs4state.c
2025-10-31T05:25:17.7673691Z patching file fs/nfsd/nfs4xdr.c
2025-10-31T05:25:17.7687008Z patching file fs/nfsd/nfscache.c
2025-10-31T05:25:17.7689503Z patching file fs/nfsd/nfsctl.c
2025-10-31T05:25:17.7692497Z patching file fs/nfsd/nfsd.h
2025-10-31T05:25:17.7694418Z patching file fs/nfsd/nfsfh.c
2025-10-31T05:25:17.7696641Z patching file fs/nfsd/nfsfh.h
2025-10-31T05:25:17.7698537Z patching file fs/nfsd/nfsproc.c
2025-10-31T05:25:17.7701405Z patching file fs/nfsd/nfssvc.c
2025-10-31T05:25:17.7704961Z patching file fs/nfsd/nfsxdr.c
2025-10-31T05:25:17.7708110Z patching file fs/nfsd/state.h
2025-10-31T05:25:17.7709988Z patching file fs/nfsd/stats.c
2025-10-31T05:25:17.7711864Z patching file fs/nfsd/stats.h
2025-10-31T05:25:17.7712773Z patching file fs/nfsd/trace.c
2025-10-31T05:25:17.7713869Z patching file fs/nfsd/trace.h
2025-10-31T05:25:17.7719009Z patching file fs/nfsd/vfs.c
2025-10-31T05:25:17.7725707Z patching file fs/nfsd/vfs.h
2025-10-31T05:25:17.7727011Z patching file fs/nfsd/xdr.h
2025-10-31T05:25:17.7728386Z patching file fs/nfsd/xdr3.h
2025-10-31T05:25:17.7730166Z patching file fs/nfsd/xdr4.h
2025-10-31T05:25:17.7732595Z patching file fs/nfsd/xdr4cb.h
2025-10-31T05:25:17.7733601Z patching file fs/nilfs2/alloc.c
2025-10-31T05:25:17.7735213Z patching file fs/nilfs2/alloc.h
2025-10-31T05:25:17.8034000Z patching file fs/nilfs2/bmap.c
2025-10-31T05:25:17.8034299Z patching file fs/nilfs2/btnode.c
2025-10-31T05:25:17.8034580Z patching file fs/nilfs2/btnode.h
2025-10-31T05:25:17.8034948Z patching file fs/nilfs2/btree.c
2025-10-31T05:25:17.8035385Z patching file fs/nilfs2/dat.c
2025-10-31T05:25:17.8035810Z patching file fs/nilfs2/dir.c
2025-10-31T05:25:17.8036277Z patching file fs/nilfs2/direct.c
2025-10-31T05:25:17.8036739Z patching file fs/nilfs2/file.c
2025-10-31T05:25:17.8037197Z patching file fs/nilfs2/gcinode.c
2025-10-31T05:25:17.8037633Z patching file fs/nilfs2/ifile.c
2025-10-31T05:25:17.8038052Z patching file fs/nilfs2/inode.c
2025-10-31T05:25:17.8038474Z patching file fs/nilfs2/ioctl.c
2025-10-31T05:25:17.8038939Z patching file fs/nilfs2/mdt.c
2025-10-31T05:25:17.8039402Z patching file fs/nilfs2/mdt.h
2025-10-31T05:25:17.8039858Z patching file fs/nilfs2/namei.c
2025-10-31T05:25:17.8040289Z patching file fs/nilfs2/nilfs.h
2025-10-31T05:25:17.8040736Z patching file fs/nilfs2/page.c
2025-10-31T05:25:17.8041089Z patching file fs/nilfs2/page.h
2025-10-31T05:25:17.8041461Z patching file fs/nilfs2/recovery.c
2025-10-31T05:25:17.8041878Z patching file fs/nilfs2/segbuf.c
2025-10-31T05:25:17.8042431Z patching file fs/nilfs2/segment.c
2025-10-31T05:25:17.8044282Z patching file fs/nilfs2/sufile.c
2025-10-31T05:25:17.8044651Z patching file fs/nilfs2/super.c
2025-10-31T05:25:17.8044984Z patching file fs/nilfs2/sysfs.c
2025-10-31T05:25:17.8045311Z patching file fs/nilfs2/sysfs.h
2025-10-31T05:25:17.8045643Z patching file fs/nilfs2/the_nilfs.c
2025-10-31T05:25:17.8045970Z patching file fs/nilfs2/the_nilfs.h
2025-10-31T05:25:17.8046296Z patching file fs/nls/nls_base.c
2025-10-31T05:25:17.8046656Z patching file fs/notify/dnotify/dnotify.c
2025-10-31T05:25:17.8047009Z patching file fs/notify/fanotify/fanotify.c
2025-10-31T05:25:17.8047372Z patching file fs/notify/fanotify/fanotify.h
2025-10-31T05:25:17.8047764Z patching file fs/notify/fanotify/fanotify_user.c
2025-10-31T05:25:17.8048107Z patching file fs/notify/fdinfo.c
2025-10-31T05:25:17.8048442Z patching file fs/notify/fsnotify.c
2025-10-31T05:25:17.8048766Z patching file fs/notify/fsnotify.h
2025-10-31T05:25:17.8049091Z patching file fs/notify/group.c
2025-10-31T05:25:17.8049660Z patching file fs/notify/inotify/inotify.h
2025-10-31T05:25:17.8050046Z patching file fs/notify/inotify/inotify_fsnotify.c
2025-10-31T05:25:17.8050405Z patching file fs/notify/inotify/inotify_user.c
2025-10-31T05:25:17.8050729Z patching file fs/notify/mark.c
2025-10-31T05:25:17.8051082Z patching file fs/notify/notification.c
2025-10-31T05:25:17.8051401Z patching file fs/ntfs/attrib.c
2025-10-31T05:25:17.8051712Z patching file fs/ntfs/inode.c
2025-10-31T05:25:17.8052155Z patching file fs/ntfs/super.c
2025-10-31T05:25:17.8052444Z patching file fs/ocfs2/alloc.c
2025-10-31T05:25:17.8052728Z patching file fs/ocfs2/aops.c
2025-10-31T05:25:17.8053043Z patching file fs/ocfs2/aops.h
2025-10-31T05:25:17.8053381Z patching file fs/ocfs2/buffer_head_io.c
2025-10-31T05:25:17.8053732Z patching file fs/ocfs2/cluster/heartbeat.c
2025-10-31T05:25:17.8054041Z patching file fs/ocfs2/dir.c
2025-10-31T05:25:17.8054374Z patching file fs/ocfs2/dlmfs/userdlm.c
2025-10-31T05:25:17.8054695Z patching file fs/ocfs2/dlmglue.c
2025-10-31T05:25:17.8055014Z patching file fs/ocfs2/extent_map.c
2025-10-31T05:25:17.8055322Z patching file fs/ocfs2/file.c
2025-10-31T05:25:17.8055636Z patching file fs/ocfs2/filecheck.c
2025-10-31T05:25:17.8055947Z patching file fs/ocfs2/journal.c
2025-10-31T05:25:17.8056256Z patching file fs/ocfs2/journal.h
2025-10-31T05:25:17.8056588Z patching file fs/ocfs2/move_extents.c
2025-10-31T05:25:17.8056915Z patching file fs/ocfs2/namei.c
2025-10-31T05:25:17.8057224Z patching file fs/ocfs2/ocfs2.h
2025-10-31T05:25:17.8057533Z patching file fs/ocfs2/ocfs2_trace.h
2025-10-31T05:25:17.8057859Z patching file fs/ocfs2/quota_global.c
2025-10-31T05:25:17.8058173Z patching file fs/ocfs2/quota_local.c
2025-10-31T05:25:17.8058494Z patching file fs/ocfs2/refcounttree.c
2025-10-31T05:25:17.8058994Z patching file fs/ocfs2/resize.c
2025-10-31T05:25:17.8059301Z patching file fs/ocfs2/slot_map.c
2025-10-31T05:25:17.8059593Z patching file fs/ocfs2/stack_user.c
2025-10-31T05:25:17.8059916Z patching file fs/ocfs2/stackglue.c
2025-10-31T05:25:17.8060231Z patching file fs/ocfs2/suballoc.c
2025-10-31T05:25:17.8060538Z patching file fs/ocfs2/super.c
2025-10-31T05:25:17.8060856Z patching file fs/ocfs2/symlink.c
2025-10-31T05:25:17.8061162Z patching file fs/ocfs2/xattr.c
2025-10-31T05:25:17.8061671Z patching file fs/open.c
2025-10-31T05:25:17.8073187Z patching file fs/openpromfs/inode.c
2025-10-31T05:25:17.8073541Z patching file fs/orangefs/dcache.c
2025-10-31T05:25:17.8073887Z patching file fs/orangefs/inode.c
2025-10-31T05:25:17.8074262Z patching file fs/orangefs/orangefs-bufmap.c
2025-10-31T05:25:17.8074644Z patching file fs/orangefs/orangefs-debugfs.c
2025-10-31T05:25:17.8075006Z patching file fs/orangefs/orangefs-mod.c
2025-10-31T05:25:17.8075340Z patching file fs/orangefs/super.c
2025-10-31T05:25:17.8075701Z patching file fs/overlayfs/copy_up.c
2025-10-31T05:25:17.8076028Z patching file fs/overlayfs/dir.c
2025-10-31T05:25:17.8076372Z patching file fs/overlayfs/export.c
2025-10-31T05:25:17.8076719Z patching file fs/overlayfs/file.c
2025-10-31T05:25:17.8077053Z patching file fs/overlayfs/inode.c
2025-10-31T05:25:17.8077386Z patching file fs/overlayfs/namei.c
2025-10-31T05:25:17.8077730Z patching file fs/overlayfs/overlayfs.h
2025-10-31T05:25:17.8078076Z patching file fs/overlayfs/ovl_entry.h
2025-10-31T05:25:17.8078416Z patching file fs/overlayfs/readdir.c
2025-10-31T05:25:17.8078747Z patching file fs/overlayfs/super.c
2025-10-31T05:25:17.8079094Z patching file fs/overlayfs/util.c
2025-10-31T05:25:17.8079417Z patching file fs/pipe.c
2025-10-31T05:25:17.8079746Z patching file fs/pnode.c
2025-10-31T05:25:17.8081519Z patching file fs/pnode.h
2025-10-31T05:25:17.8083385Z patching file fs/proc/array.c
2025-10-31T05:25:17.8085277Z patching file fs/proc/base.c
2025-10-31T05:25:17.8088595Z patching file fs/proc/bootconfig.c
2025-10-31T05:25:17.8089270Z patching file fs/proc/fd.c
2025-10-31T05:25:17.8091070Z patching file fs/proc/generic.c
2025-10-31T05:25:17.8092921Z patching file fs/proc/inode.c
2025-10-31T05:25:17.8094256Z patching file fs/proc/internal.h
2025-10-31T05:25:17.8095180Z patching file fs/proc/kcore.c
2025-10-31T05:25:17.8096690Z patching file fs/proc/proc_net.c
2025-10-31T05:25:17.8098133Z patching file fs/proc/proc_sysctl.c
2025-10-31T05:25:17.8100330Z patching file fs/proc/self.c
2025-10-31T05:25:17.8100847Z patching file fs/proc/softirqs.c
2025-10-31T05:25:17.8101767Z patching file fs/proc/stat.c
2025-10-31T05:25:17.8103465Z patching file fs/proc/task_mmu.c
2025-10-31T05:25:17.8106058Z patching file fs/proc/task_nommu.c
2025-10-31T05:25:17.8106879Z patching file fs/proc/uptime.c
2025-10-31T05:25:17.8108262Z patching file fs/proc/vmcore.c
2025-10-31T05:25:17.8110263Z patching file fs/proc_namespace.c
2025-10-31T05:25:17.8111128Z patching file fs/pstore/Kconfig
2025-10-31T05:25:17.8112328Z patching file fs/pstore/inode.c
2025-10-31T05:25:17.8113762Z patching file fs/pstore/platform.c
2025-10-31T05:25:17.8115609Z patching file fs/pstore/ram.c
2025-10-31T05:25:17.8117063Z patching file fs/pstore/ram_core.c
2025-10-31T05:25:17.8118536Z patching file fs/pstore/zone.c
2025-10-31T05:25:17.8120106Z patching file fs/qnx4/dir.c
2025-10-31T05:25:17.8121893Z patching file fs/quota/dquot.c
2025-10-31T05:25:17.8126839Z patching file fs/quota/quota_tree.c
2025-10-31T05:25:17.8128445Z patching file fs/quota/quota_v2.c
2025-10-31T05:25:17.8129495Z patching file fs/ramfs/inode.c
2025-10-31T05:25:17.8131071Z patching file fs/read_write.c
2025-10-31T05:25:17.8133417Z patching file fs/readdir.c
2025-10-31T05:25:17.8135654Z patching file fs/reiserfs/journal.c
2025-10-31T05:25:17.8138902Z patching file fs/reiserfs/namei.c
2025-10-31T05:25:17.8141219Z patching file fs/reiserfs/stree.c
2025-10-31T05:25:17.8144055Z patching file fs/reiserfs/super.c
2025-10-31T05:25:17.8146210Z patching file fs/reiserfs/xattr.h
2025-10-31T05:25:17.8146896Z patching file fs/reiserfs/xattr_security.c
2025-10-31T05:25:17.8148187Z patching file fs/remap_range.c
2025-10-31T05:25:17.8149770Z patching file fs/select.c
2025-10-31T05:25:17.8152285Z patching file fs/seq_file.c
2025-10-31T05:25:17.8153904Z patching file fs/signalfd.c
2025-10-31T05:25:17.8155428Z patching file fs/splice.c
2025-10-31T05:25:17.8157224Z patching file fs/squashfs/block.c
2025-10-31T05:25:17.8157913Z patching file fs/squashfs/export.c
2025-10-31T05:25:17.8159370Z patching file fs/squashfs/file.c
2025-10-31T05:25:17.8160204Z patching file fs/squashfs/id.c
2025-10-31T05:25:17.8161434Z patching file fs/squashfs/inode.c
2025-10-31T05:25:17.8163500Z patching file fs/squashfs/squashfs_fs.h
2025-10-31T05:25:17.8164208Z patching file fs/squashfs/squashfs_fs_i.h
2025-10-31T05:25:17.8164986Z patching file fs/squashfs/squashfs_fs_sb.h
2025-10-31T05:25:17.8165982Z patching file fs/squashfs/super.c
2025-10-31T05:25:17.8167315Z patching file fs/squashfs/xattr.h
2025-10-31T05:25:17.8168039Z patching file fs/squashfs/xattr_id.c
2025-10-31T05:25:17.8169597Z patching file fs/stat.c
2025-10-31T05:25:17.8171271Z patching file fs/statfs.c
2025-10-31T05:25:17.8173143Z patching file fs/super.c
2025-10-31T05:25:17.8175500Z patching file fs/sync.c
2025-10-31T05:25:17.8176890Z patching file fs/sysfs/file.c
2025-10-31T05:25:17.8178195Z patching file fs/sysv/itree.c
2025-10-31T05:25:17.8179619Z patching file fs/tracefs/inode.c
2025-10-31T05:25:17.8181462Z patching file fs/ubifs/auth.c
2025-10-31T05:25:17.8182773Z patching file fs/ubifs/budget.c
2025-10-31T05:25:17.8184903Z patching file fs/ubifs/debug.c
2025-10-31T05:25:17.8187481Z patching file fs/ubifs/dir.c
2025-10-31T05:25:17.8190161Z patching file fs/ubifs/file.c
2025-10-31T05:25:17.8192470Z patching file fs/ubifs/gc.c
2025-10-31T05:25:17.8194315Z patching file fs/ubifs/io.c
2025-10-31T05:25:17.8196045Z patching file fs/ubifs/ioctl.c
2025-10-31T05:25:17.8197471Z patching file fs/ubifs/journal.c
2025-10-31T05:25:17.8199587Z patching file fs/ubifs/replay.c
2025-10-31T05:25:17.8202191Z patching file fs/ubifs/super.c
2025-10-31T05:25:17.8205144Z patching file fs/ubifs/tnc.c
2025-10-31T05:25:17.8208178Z patching file fs/ubifs/tnc_commit.c
2025-10-31T05:25:17.8210161Z patching file fs/ubifs/ubifs.h
2025-10-31T05:25:17.8212308Z patching file fs/ubifs/xattr.c
2025-10-31T05:25:17.8214257Z patching file fs/udf/balloc.c
2025-10-31T05:25:17.8215852Z patching file fs/udf/dir.c
2025-10-31T05:25:17.8216870Z patching file fs/udf/file.c
2025-10-31T05:25:17.8217953Z patching file fs/udf/ialloc.c
2025-10-31T05:25:17.8219547Z patching file fs/udf/inode.c
2025-10-31T05:25:17.8223002Z patching file fs/udf/misc.c
2025-10-31T05:25:17.8223993Z patching file fs/udf/namei.c
2025-10-31T05:25:17.8226355Z patching file fs/udf/super.c
2025-10-31T05:25:17.8229186Z patching file fs/udf/truncate.c
2025-10-31T05:25:17.8230052Z patching file fs/udf/udf_i.h
2025-10-31T05:25:17.8230829Z patching file fs/udf/udf_sb.h
2025-10-31T05:25:17.8231718Z patching file fs/udf/udftime.c
2025-10-31T05:25:17.8232733Z patching file fs/udf/unicode.c
2025-10-31T05:25:17.8234320Z patching file fs/ufs/util.h
2025-10-31T05:25:17.8236098Z patching file fs/userfaultfd.c
2025-10-31T05:25:17.8238700Z patching file fs/vboxsf/dir.c
2025-10-31T05:25:17.8240100Z patching file fs/vboxsf/file.c
2025-10-31T05:25:17.8241454Z patching file fs/vboxsf/super.c
2025-10-31T05:25:17.8242702Z patching file fs/vboxsf/vfsmod.h
2025-10-31T05:25:17.8243780Z patching file fs/verity/enable.c
2025-10-31T05:25:17.8245227Z patching file fs/verity/open.c
2025-10-31T05:25:17.8245965Z patching file fs/verity/signature.c
2025-10-31T05:25:17.8246917Z patching file fs/verity/verify.c
2025-10-31T05:25:17.8249271Z patching file fs/xattr.c
2025-10-31T05:25:17.8250915Z patching file fs/xfs/libxfs/xfs_attr.c
2025-10-31T05:25:17.8252462Z patching file fs/xfs/libxfs/xfs_attr_remote.c
2025-10-31T05:25:17.8255119Z patching file fs/xfs/libxfs/xfs_bmap.c
2025-10-31T05:25:17.8259437Z patching file fs/xfs/libxfs/xfs_btree.c
2025-10-31T05:25:17.8263183Z patching file fs/xfs/libxfs/xfs_da_btree.c
2025-10-31T05:25:17.8265079Z patching file fs/xfs/libxfs/xfs_dir2.h
2025-10-31T05:25:17.8266130Z patching file fs/xfs/libxfs/xfs_dir2_sf.c
2025-10-31T05:25:17.8267672Z patching file fs/xfs/libxfs/xfs_inode_buf.c
2025-10-31T05:25:17.8268986Z patching file fs/xfs/libxfs/xfs_log_format.h
2025-10-31T05:25:17.8270442Z patching file fs/xfs/libxfs/xfs_sb.c
2025-10-31T05:25:17.8271790Z patching file fs/xfs/libxfs/xfs_types.h
2025-10-31T05:25:17.8272879Z patching file fs/xfs/scrub/bitmap.c
2025-10-31T05:25:17.8273907Z patching file fs/xfs/scrub/trace.h
2025-10-31T05:25:17.8275318Z patching file fs/xfs/xfs_aops.c
2025-10-31T05:25:17.8276896Z patching file fs/xfs/xfs_bmap_item.c
2025-10-31T05:25:17.8278338Z patching file fs/xfs/xfs_bmap_util.c
2025-10-31T05:25:17.8280324Z patching file fs/xfs/xfs_buf.c
2025-10-31T05:25:17.8282365Z patching file fs/xfs/xfs_buf_item.c
2025-10-31T05:25:17.8284292Z patching file fs/xfs/xfs_buf_item_recover.c
2025-10-31T05:25:17.8285818Z patching file fs/xfs/xfs_dquot.c
2025-10-31T05:25:17.8287315Z patching file fs/xfs/xfs_dquot_item.c
2025-10-31T05:25:17.8288282Z patching file fs/xfs/xfs_error.c
2025-10-31T05:25:17.8289367Z patching file fs/xfs/xfs_extent_busy.c
2025-10-31T05:25:17.8290389Z patching file fs/xfs/xfs_extent_busy.h
2025-10-31T05:25:17.8291291Z patching file fs/xfs/xfs_extfree_item.c
2025-10-31T05:25:17.8293003Z patching file fs/xfs/xfs_file.c
2025-10-31T05:25:17.8294886Z patching file fs/xfs/xfs_filestream.c
2025-10-31T05:25:17.8295836Z patching file fs/xfs/xfs_fsops.c
2025-10-31T05:25:17.8297458Z patching file fs/xfs/xfs_icache.c
2025-10-31T05:25:17.8299734Z patching file fs/xfs/xfs_inode.c
2025-10-31T05:25:17.8302819Z patching file fs/xfs/xfs_inode_item.c
2025-10-31T05:25:17.8304070Z patching file fs/xfs/xfs_inode_item.h
2025-10-31T05:25:17.8304865Z patching file fs/xfs/xfs_inode_item_recover.c
2025-10-31T05:25:17.8306606Z patching file fs/xfs/xfs_ioctl.c
2025-10-31T05:25:17.8308302Z patching file fs/xfs/xfs_ioctl.h
2025-10-31T05:25:17.8309231Z patching file fs/xfs/xfs_iomap.c
2025-10-31T05:25:17.8310948Z patching file fs/xfs/xfs_iops.c
2025-10-31T05:25:17.8312678Z patching file fs/xfs/xfs_iops.h
2025-10-31T05:25:17.8313408Z patching file fs/xfs/xfs_iwalk.c
2025-10-31T05:25:17.8315696Z patching file fs/xfs/xfs_log.c
2025-10-31T05:25:17.8318121Z patching file fs/xfs/xfs_log.h
2025-10-31T05:25:17.8319183Z patching file fs/xfs/xfs_log_cil.c
2025-10-31T05:25:17.8321143Z patching file fs/xfs/xfs_log_priv.h
2025-10-31T05:25:17.8323394Z patching file fs/xfs/xfs_log_recover.c
2025-10-31T05:25:17.8325988Z patching file fs/xfs/xfs_mount.c
2025-10-31T05:25:17.8327775Z patching file fs/xfs/xfs_mount.h
2025-10-31T05:25:17.8328708Z patching file fs/xfs/xfs_pnfs.c
2025-10-31T05:25:17.8330141Z patching file fs/xfs/xfs_qm.c
2025-10-31T05:25:17.8332402Z patching file fs/xfs/xfs_refcount_item.c
2025-10-31T05:25:17.8334937Z patching file fs/xfs/xfs_reflink.c
2025-10-31T05:25:17.8336489Z patching file fs/xfs/xfs_rmap_item.c
2025-10-31T05:25:17.8338059Z patching file fs/xfs/xfs_super.c
2025-10-31T05:25:17.8340511Z patching file fs/xfs/xfs_symlink.c
2025-10-31T05:25:17.8341672Z patching file fs/xfs/xfs_trans.c
2025-10-31T05:25:17.8343575Z patching file fs/xfs/xfs_trans.h
2025-10-31T05:25:17.8344865Z patching file fs/xfs/xfs_trans_dquot.c
2025-10-31T05:25:17.8346027Z patching file fs/zonefs/Kconfig
2025-10-31T05:25:17.8347045Z patching file fs/zonefs/super.c
2025-10-31T05:25:17.8350401Z patching file include/acpi/acexcep.h
2025-10-31T05:25:17.8351474Z patching file include/acpi/acpi_bus.h
2025-10-31T05:25:17.8353286Z patching file include/acpi/actypes.h
2025-10-31T05:25:17.8354677Z patching file include/acpi/apei.h
2025-10-31T05:25:17.8355273Z patching file include/acpi/cppc_acpi.h
2025-10-31T05:25:17.8356063Z patching file include/acpi/ghes.h
2025-10-31T05:25:17.8357633Z patching file include/asm-generic/Kbuild
2025-10-31T05:25:17.8357981Z patching file include/asm-generic/barrier.h
2025-10-31T05:25:17.8358906Z patching file include/asm-generic/bitops/atomic.h
2025-10-31T05:25:17.8359770Z patching file include/asm-generic/bugs.h
2025-10-31T05:25:17.8360849Z patching file include/asm-generic/io.h
2025-10-31T05:25:17.8362374Z patching file include/asm-generic/pgtable-nop4d.h
2025-10-31T05:25:17.8363114Z patching file include/asm-generic/pgtable-nopmd.h
2025-10-31T05:25:17.8363974Z patching file include/asm-generic/pgtable-nopud.h
2025-10-31T05:25:17.8364683Z patching file include/asm-generic/preempt.h
2025-10-31T05:25:17.8365552Z patching file include/asm-generic/qspinlock.h
2025-10-31T05:25:17.8366339Z patching file include/asm-generic/sections.h
2025-10-31T05:25:17.8367662Z patching file include/asm-generic/tlb.h
2025-10-31T05:25:17.8369150Z patching file include/asm-generic/vmlinux.lds.h
2025-10-31T05:25:17.8370756Z patching file include/asm-generic/word-at-a-time.h
2025-10-31T05:25:17.8371399Z patching file include/clocksource/hyperv_timer.h
2025-10-31T05:25:17.8372387Z patching file include/clocksource/timer-ti-dm.h
2025-10-31T05:25:17.8373448Z patching file include/crypto/acompress.h
2025-10-31T05:25:17.8374414Z patching file include/crypto/aead.h
2025-10-31T05:25:17.8375474Z patching file include/crypto/akcipher.h
2025-10-31T05:25:17.8376462Z patching file include/crypto/algapi.h
2025-10-31T05:25:17.8377322Z patching file include/crypto/blake2s.h
2025-10-31T05:25:17.8378324Z patching file include/crypto/chacha.h
2025-10-31T05:25:17.8379100Z patching file include/crypto/drbg.h
2025-10-31T05:25:17.8380512Z patching file include/crypto/hash.h
2025-10-31T05:25:17.8381883Z patching file include/crypto/if_alg.h
2025-10-31T05:25:17.8382909Z patching file include/crypto/internal/blake2s.h
2025-10-31T05:25:17.8383950Z patching file include/crypto/internal/hash.h
2025-10-31T05:25:17.8384820Z patching file include/crypto/internal/poly1305.h
2025-10-31T05:25:17.8385592Z patching file include/crypto/kpp.h
2025-10-31T05:25:17.8386524Z patching file include/crypto/poly1305.h
2025-10-31T05:25:17.8387234Z patching file include/crypto/public_key.h
2025-10-31T05:25:17.8388047Z patching file include/crypto/rng.h
2025-10-31T05:25:17.8389031Z patching file include/crypto/skcipher.h
2025-10-31T05:25:17.8390520Z patching file include/drm/drm_atomic.h
2025-10-31T05:25:17.8392125Z patching file include/drm/drm_auth.h
2025-10-31T05:25:17.8393245Z patching file include/drm/drm_bridge.h
2025-10-31T05:25:17.8394311Z patching file include/drm/drm_color_mgmt.h
2025-10-31T05:25:17.8395505Z patching file include/drm/drm_connector.h
2025-10-31T05:25:17.8397724Z patching file include/drm/drm_dp_helper.h
2025-10-31T05:25:17.8399554Z patching file include/drm/drm_dp_mst_helper.h
2025-10-31T05:25:17.8400813Z patching file include/drm/drm_edid.h
2025-10-31T05:25:17.8401833Z patching file include/drm/drm_file.h
2025-10-31T05:25:17.8403292Z patching file include/drm/drm_fixed.h
2025-10-31T05:25:17.8404046Z patching file include/drm/drm_ioctl.h
2025-10-31T05:25:17.8405055Z patching file include/drm/drm_mipi_dsi.h
2025-10-31T05:25:17.8406372Z patching file include/drm/drm_print.h
2025-10-31T05:25:17.8407439Z patching file include/drm/drm_probe_helper.h
2025-10-31T05:25:17.8408124Z patching file include/drm/spsc_queue.h
2025-10-31T05:25:17.8409114Z patching file include/drm/ttm/ttm_bo_api.h
2025-10-31T05:25:17.8410725Z patching file include/dt-bindings/clock/imx8mp-clock.h
2025-10-31T05:25:17.8411734Z patching file include/dt-bindings/clock/imx8mq-clock.h
2025-10-31T05:25:17.8412974Z patching file include/dt-bindings/clock/qcom,videocc-sm8150.h
2025-10-31T05:25:17.8414407Z patching file include/dt-bindings/iio/addac/adi,ad74413r.h
2025-10-31T05:25:17.8415321Z patching file include/dt-bindings/sound/apq8016-lpass.h
2025-10-31T05:25:17.8416010Z patching file include/dt-bindings/sound/qcom,lpass.h
2025-10-31T05:25:17.8416901Z patching file include/dt-bindings/sound/sc7180-lpass.h
2025-10-31T05:25:17.8417587Z patching file include/keys/system_keyring.h
2025-10-31T05:25:17.8418346Z patching file include/keys/trusted-type.h
2025-10-31T05:25:17.8419161Z patching file include/kvm/arm_vgic.h
2025-10-31T05:25:17.8420765Z patching file include/linux/acpi.h
2025-10-31T05:25:17.8422697Z patching file include/linux/acpi_iort.h
2025-10-31T05:25:17.8423459Z patching file include/linux/amba/bus.h
2025-10-31T05:25:17.8424511Z patching file include/linux/arm-smccc.h
2025-10-31T05:25:17.8425521Z patching file include/linux/arm_sdei.h
2025-10-31T05:25:17.8426407Z patching file include/linux/async.h
2025-10-31T05:25:17.8427827Z patching file include/linux/ata.h
2025-10-31T05:25:17.8429396Z patching file include/linux/atmdev.h
2025-10-31T05:25:17.8430485Z patching file include/linux/avf/virtchnl.h
2025-10-31T05:25:17.8431918Z patching file include/linux/backing-dev.h
2025-10-31T05:25:17.8433101Z patching file include/linux/binfmts.h
2025-10-31T05:25:17.8434538Z patching file include/linux/bio.h
2025-10-31T05:25:17.8435726Z patching file include/linux/bitfield.h
2025-10-31T05:25:17.8436901Z patching file include/linux/bitmap.h
2025-10-31T05:25:17.8438253Z patching file include/linux/bits.h
2025-10-31T05:25:17.8439136Z patching file include/linux/blk-cgroup.h
2025-10-31T05:25:17.8440594Z patching file include/linux/blk-crypto.h
2025-10-31T05:25:17.8441523Z patching file include/linux/blk-mq.h
2025-10-31T05:25:17.8442742Z patching file include/linux/blk-pm.h
2025-10-31T05:25:17.8443726Z patching file include/linux/blk_types.h
2025-10-31T05:25:17.8445397Z patching file include/linux/blkdev.h
2025-10-31T05:25:17.8448077Z patching file include/linux/blktrace_api.h
2025-10-31T05:25:17.8448919Z patching file include/linux/bootconfig.h
2025-10-31T05:25:17.8449910Z patching file include/linux/bpf-cgroup.h
2025-10-31T05:25:17.8451851Z patching file include/linux/bpf.h
2025-10-31T05:25:17.8454840Z patching file include/linux/bpf_types.h
2025-10-31T05:25:17.8455821Z patching file include/linux/bpf_verifier.h
2025-10-31T05:25:17.8457374Z patching file include/linux/brcmphy.h
2025-10-31T05:25:17.8458332Z patching file include/linux/btf_ids.h
2025-10-31T05:25:17.8459353Z patching file include/linux/buffer_head.h
2025-10-31T05:25:17.8460600Z patching file include/linux/cacheinfo.h
2025-10-31T05:25:17.8461298Z patching file include/linux/can/can-ml.h
2025-10-31T05:25:17.8462358Z patching file include/linux/can/platform/sja1000.h
2025-10-31T05:25:17.8463064Z patching file include/linux/can/skb.h
2025-10-31T05:25:17.8464214Z patching file include/linux/cc_platform.h
2025-10-31T05:25:17.8471394Z patching file include/linux/ceph/ceph_fs.h
2025-10-31T05:25:17.8471914Z patching file include/linux/ceph/msgr.h
2025-10-31T05:25:17.8472460Z patching file include/linux/ceph/osd_client.h
2025-10-31T05:25:17.8472816Z patching file include/linux/cgroup-defs.h
2025-10-31T05:25:17.8473097Z patching file include/linux/cgroup.h
2025-10-31T05:25:17.8473311Z patching file include/linux/cleanup.h
2025-10-31T05:25:17.8474663Z patching file include/linux/clk-provider.h
2025-10-31T05:25:17.8476873Z patching file include/linux/clk.h
2025-10-31T05:25:17.8478811Z patching file include/linux/clocksource.h
2025-10-31T05:25:17.8480141Z patching file include/linux/compat.h
2025-10-31T05:25:17.8481479Z patching file include/linux/compiler-clang.h
2025-10-31T05:25:17.8482562Z patching file include/linux/compiler-gcc.h
2025-10-31T05:25:17.8483864Z patching file include/linux/compiler.h
2025-10-31T05:25:17.8485181Z patching file include/linux/compiler_attributes.h
2025-10-31T05:25:17.8486462Z patching file include/linux/compiler_types.h
2025-10-31T05:25:17.8487381Z patching file include/linux/console.h
2025-10-31T05:25:17.8488326Z patching file include/linux/console_struct.h
2025-10-31T05:25:17.8489191Z patching file include/linux/const.h
2025-10-31T05:25:17.8490109Z patching file include/linux/context_tracking.h
2025-10-31T05:25:17.8491067Z patching file include/linux/coredump.h
2025-10-31T05:25:17.8492128Z patching file include/linux/cpu.h
2025-10-31T05:25:17.8493424Z patching file include/linux/cpuhotplug.h
2025-10-31T05:25:17.8494796Z patching file include/linux/cpumask.h
2025-10-31T05:25:17.8496090Z patching file include/linux/cpuset.h
2025-10-31T05:25:17.8497289Z patching file include/linux/cred.h
2025-10-31T05:25:17.8498716Z patching file include/linux/crypto.h
2025-10-31T05:25:17.8500084Z patching file include/linux/debug_locks.h
2025-10-31T05:25:17.8500829Z patching file include/linux/debugfs.h
2025-10-31T05:25:17.8502474Z patching file include/linux/devfreq.h
2025-10-31T05:25:17.8503918Z patching file include/linux/device-mapper.h
2025-10-31T05:25:17.8505361Z patching file include/linux/device.h
2025-10-31T05:25:17.8507160Z patching file include/linux/device/driver.h
2025-10-31T05:25:17.8508119Z patching file include/linux/dim.h
2025-10-31T05:25:17.8509176Z patching file include/linux/dm-bufio.h
2025-10-31T05:25:17.8510197Z patching file include/linux/dma-map-ops.h
2025-10-31T05:25:17.8511442Z patching file include/linux/dma-mapping.h
2025-10-31T05:25:17.8513237Z patching file include/linux/dmaengine.h
2025-10-31T05:25:17.8514890Z patching file include/linux/dnotify.h
2025-10-31T05:25:17.8515694Z patching file include/linux/dynamic_debug.h
2025-10-31T05:25:17.8516705Z patching file include/linux/eeprom_93cx6.h
2025-10-31T05:25:17.8517585Z patching file include/linux/eeprom_93xx46.h
2025-10-31T05:25:17.8518829Z patching file include/linux/efi.h
2025-10-31T05:25:17.8520542Z patching file include/linux/elevator.h
2025-10-31T05:25:17.8521372Z patching file include/linux/elfcore.h
2025-10-31T05:25:17.8522527Z patching file include/linux/energy_model.h
2025-10-31T05:25:17.8523804Z patching file include/linux/entry-common.h
2025-10-31T05:25:17.8524974Z patching file include/linux/entry-kvm.h
2025-10-31T05:25:17.8525745Z patching file include/linux/errno.h
2025-10-31T05:25:17.8526703Z patching file include/linux/etherdevice.h
2025-10-31T05:25:17.8528183Z patching file include/linux/ethtool.h
2025-10-31T05:25:17.8529258Z patching file include/linux/ethtool_netlink.h
2025-10-31T05:25:17.8530044Z patching file include/linux/eventfd.h
2025-10-31T05:25:17.8531076Z patching file include/linux/eventpoll.h
2025-10-31T05:25:17.8531934Z patching file include/linux/exportfs.h
2025-10-31T05:25:17.8533394Z patching file include/linux/extcon.h
2025-10-31T05:25:17.8534459Z patching file include/linux/f2fs_fs.h
2025-10-31T05:25:17.8535714Z patching file include/linux/fanotify.h
2025-10-31T05:25:17.8536951Z patching file include/linux/fbcon.h
2025-10-31T05:25:17.8537888Z patching file include/linux/fcntl.h
2025-10-31T05:25:17.8538578Z patching file include/linux/fdtable.h
2025-10-31T05:25:17.8540351Z patching file include/linux/file.h
2025-10-31T05:25:17.8541665Z patching file include/linux/filter.h
2025-10-31T05:25:17.8543857Z patching file include/linux/firmware/intel/stratix10-svc-client.h
2025-10-31T05:25:17.8544532Z patching file include/linux/firmware/xlnx-zynqmp.h
2025-10-31T05:25:17.8545967Z patching file include/linux/font.h
2025-10-31T05:25:17.8546599Z patching file include/linux/fpga/fpga-region.h
2025-10-31T05:25:17.8549111Z patching file include/linux/fs.h
2025-10-31T05:25:17.8553159Z patching file include/linux/fs_context.h
2025-10-31T05:25:17.8554218Z patching file include/linux/fscrypt.h
2025-10-31T05:25:17.8555754Z patching file include/linux/fsl/enetc_mdio.h
2025-10-31T05:25:17.8556475Z patching file include/linux/fsnotify.h
2025-10-31T05:25:17.8558212Z patching file include/linux/fsnotify_backend.h
2025-10-31T05:25:17.8561018Z patching file include/linux/ftrace.h
2025-10-31T05:25:17.8562409Z patching file include/linux/genhd.h
2025-10-31T05:25:17.8563827Z patching file include/linux/gfp.h
2025-10-31T05:25:17.8565170Z patching file include/linux/gpio/consumer.h
2025-10-31T05:25:17.8566250Z patching file include/linux/gpio/driver.h
2025-10-31T05:25:17.8568059Z patching file include/linux/hid.h
2025-10-31T05:25:17.8569761Z patching file include/linux/highmem.h
2025-10-31T05:25:17.8570774Z patching file include/linux/host1x.h
2025-10-31T05:25:17.8572193Z patching file include/linux/hrtimer.h
2025-10-31T05:25:17.8573553Z patching file include/linux/huge_mm.h
2025-10-31T05:25:17.8575468Z patching file include/linux/hugetlb.h
2025-10-31T05:25:17.8577193Z patching file include/linux/hugetlb_cgroup.h
2025-10-31T05:25:17.8578192Z patching file include/linux/hw_random.h
2025-10-31T05:25:17.8579073Z patching file include/linux/hwspinlock.h
2025-10-31T05:25:17.8580615Z patching file include/linux/hyperv.h
2025-10-31T05:25:17.8582689Z patching file include/linux/i2c.h
2025-10-31T05:25:17.8584341Z patching file include/linux/i3c/master.h
2025-10-31T05:25:17.8585515Z patching file include/linux/i8253.h
2025-10-31T05:25:17.8586167Z patching file include/linux/icmpv6.h
2025-10-31T05:25:17.8587435Z patching file include/linux/idr.h
2025-10-31T05:25:17.8588361Z patching file include/linux/if_arp.h
2025-10-31T05:25:17.8589272Z patching file include/linux/if_macvlan.h
2025-10-31T05:25:17.8590119Z patching file include/linux/if_team.h
2025-10-31T05:25:17.8591399Z patching file include/linux/if_vlan.h
2025-10-31T05:25:17.8593102Z patching file include/linux/igmp.h
2025-10-31T05:25:17.8593943Z patching file include/linux/iio/adc/ad_sigma_delta.h
2025-10-31T05:25:17.8594782Z patching file include/linux/iio/adc/adi-axi-adc.h
2025-10-31T05:25:17.8595600Z patching file include/linux/iio/common/cros_ec_sensors_core.h
2025-10-31T05:25:17.8596334Z patching file include/linux/iio/common/st_sensors.h
2025-10-31T05:25:17.8597317Z patching file include/linux/iio/frequency/adf4350.h
2025-10-31T05:25:17.8598236Z patching file include/linux/iio/imu/adis.h
2025-10-31T05:25:17.8599986Z patching file include/linux/ima.h
2025-10-31T05:25:17.8600886Z patching file include/linux/indirect_call_wrapper.h
2025-10-31T05:25:17.8601759Z patching file include/linux/inetdevice.h
2025-10-31T05:25:17.8603358Z patching file include/linux/intel-iommu.h
2025-10-31T05:25:17.8604909Z patching file include/linux/interrupt.h
2025-10-31T05:25:17.8606549Z patching file include/linux/io_uring.h
2025-10-31T05:25:17.8607567Z patching file include/linux/iomap.h
2025-10-31T05:25:17.8608988Z patching file include/linux/iommu.h
2025-10-31T05:25:17.8610401Z patching file include/linux/iopoll.h
2025-10-31T05:25:17.8611332Z patching file include/linux/ioport.h
2025-10-31T05:25:17.8612394Z patching file include/linux/iova.h
2025-10-31T05:25:17.8613475Z patching file include/linux/ipc_namespace.h
2025-10-31T05:25:17.8614462Z patching file include/linux/ipv6.h
2025-10-31T05:25:17.8615914Z patching file include/linux/irq.h
2025-10-31T05:25:17.8617755Z patching file include/linux/irqchip/arm-gic-v4.h
2025-10-31T05:25:17.8618257Z patching file include/linux/irqdesc.h
2025-10-31T05:25:17.8619458Z patching file include/linux/irqdomain.h
2025-10-31T05:25:17.8620800Z patching file include/linux/irqflags.h
2025-10-31T05:25:17.8621785Z patching file include/linux/iversion.h
2025-10-31T05:25:17.8623536Z patching file include/linux/jbd2.h
2025-10-31T05:25:17.8625222Z patching file include/linux/jiffies.h
2025-10-31T05:25:17.8626253Z patching file include/linux/jump_label.h
2025-10-31T05:25:17.8627429Z patching file include/linux/kallsyms.h
2025-10-31T05:25:17.8628413Z patching file include/linux/kasan.h
2025-10-31T05:25:17.8629405Z patching file include/linux/kcov.h
2025-10-31T05:25:17.8630172Z patching file include/linux/kd.h
2025-10-31T05:25:17.8631151Z patching file include/linux/kdev_t.h
2025-10-31T05:25:17.8632786Z patching file include/linux/kernel.h
2025-10-31T05:25:17.8634486Z patching file include/linux/kernel_stat.h
2025-10-31T05:25:17.8635279Z patching file include/linux/kexec.h
2025-10-31T05:25:17.8636753Z patching file include/linux/key-type.h
2025-10-31T05:25:17.8637573Z patching file include/linux/key.h
2025-10-31T05:25:17.8639047Z patching file include/linux/kfifo.h
2025-10-31T05:25:17.8640336Z patching file include/linux/kgdb.h
2025-10-31T05:25:17.8641348Z patching file include/linux/khugepaged.h
2025-10-31T05:25:17.8642544Z patching file include/linux/kprobes.h
2025-10-31T05:25:17.8643831Z patching file include/linux/kstrtox.h
2025-10-31T05:25:17.8645552Z patching file include/linux/kthread.h
2025-10-31T05:25:17.8646868Z patching file include/linux/kvm_host.h
2025-10-31T05:25:17.8648997Z patching file include/linux/leds.h
2025-10-31T05:25:17.8650591Z patching file include/linux/libata.h
2025-10-31T05:25:17.8652635Z patching file include/linux/linkage.h
2025-10-31T05:25:17.8653663Z patching file include/linux/list_sort.h
2025-10-31T05:25:17.8654420Z patching file include/linux/local_lock_internal.h
2025-10-31T05:25:17.8655334Z patching file include/linux/lockd/bind.h
2025-10-31T05:25:17.8656071Z patching file include/linux/lockd/lockd.h
2025-10-31T05:25:17.8657087Z patching file include/linux/lockd/xdr.h
2025-10-31T05:25:17.8657855Z patching file include/linux/lockd/xdr4.h
2025-10-31T05:25:17.8659143Z patching file include/linux/lockdep.h
2025-10-31T05:25:17.8660626Z patching file include/linux/lockdep_types.h
2025-10-31T05:25:17.8661640Z patching file include/linux/lsm_hook_defs.h
2025-10-31T05:25:17.8663681Z patching file include/linux/lsm_hooks.h
2025-10-31T05:25:17.8665555Z patching file include/linux/mailbox/zynqmp-ipi-message.h
2025-10-31T05:25:17.8666198Z patching file include/linux/mailbox_controller.h
2025-10-31T05:25:17.8667124Z patching file include/linux/marvell_phy.h
2025-10-31T05:25:17.8667989Z patching file include/linux/mbcache.h
2025-10-31T05:25:17.8668978Z patching file include/linux/mc146818rtc.h
2025-10-31T05:25:17.8669978Z patching file include/linux/mcb.h
2025-10-31T05:25:17.8671198Z patching file include/linux/mdio.h
2025-10-31T05:25:17.8673596Z patching file include/linux/memblock.h
2025-10-31T05:25:17.8675106Z patching file include/linux/memcontrol.h
2025-10-31T05:25:17.8677177Z patching file include/linux/memfd.h
2025-10-31T05:25:17.8677832Z patching file include/linux/memory.h
2025-10-31T05:25:17.8679187Z patching file include/linux/memory_hotplug.h
2025-10-31T05:25:17.8679936Z patching file include/linux/memregion.h
2025-10-31T05:25:17.8680894Z patching file include/linux/memremap.h
2025-10-31T05:25:17.8681916Z patching file include/linux/mfd/abx500/ux500_chargalg.h
2025-10-31T05:25:17.8682999Z patching file include/linux/mfd/core.h
2025-10-31T05:25:17.8684147Z patching file include/linux/mfd/da9063/registers.h
2025-10-31T05:25:17.8685482Z patching file include/linux/mfd/intel-m10-bmc.h
2025-10-31T05:25:17.8686301Z patching file include/linux/mfd/rohm-bd70528.h
2025-10-31T05:25:17.8687617Z patching file include/linux/mfd/rohm-bd71828.h
2025-10-31T05:25:17.8688674Z patching file include/linux/mfd/rohm-generic.h
2025-10-31T05:25:17.8689900Z patching file include/linux/mfd/rt5033-private.h
2025-10-31T05:25:17.8690689Z patching file include/linux/mfd/t7l66xb.h
2025-10-31T05:25:17.8691885Z patching file include/linux/mhi.h
2025-10-31T05:25:17.8693498Z patching file include/linux/minmax.h
2025-10-31T05:25:17.8696007Z patching file include/linux/mlx4/device.h
2025-10-31T05:25:17.8697972Z patching file include/linux/mlx5/device.h
2025-10-31T05:25:17.8699707Z patching file include/linux/mlx5/driver.h
2025-10-31T05:25:17.8701586Z patching file include/linux/mlx5/fs.h
2025-10-31T05:25:17.8704990Z patching file include/linux/mlx5/mlx5_ifc.h
2025-10-31T05:25:17.8710008Z patching file include/linux/mlx5/mpfs.h
2025-10-31T05:25:17.8710881Z patching file include/linux/mlx5/qp.h
2025-10-31T05:25:17.8712184Z patching file include/linux/mlx5/transobj.h
2025-10-31T05:25:17.8714190Z patching file include/linux/mm.h
2025-10-31T05:25:17.8717535Z patching file include/linux/mm_types.h
2025-10-31T05:25:17.8719158Z patching file include/linux/mman.h
2025-10-31T05:25:17.8720117Z patching file include/linux/mmc/card.h
2025-10-31T05:25:17.8721159Z patching file include/linux/mmc/host.h
2025-10-31T05:25:17.8722751Z patching file include/linux/mmc/mmc.h
2025-10-31T05:25:17.8723873Z patching file include/linux/mmc/slot-gpio.h
2025-10-31T05:25:17.8724769Z patching file include/linux/mmdebug.h
2025-10-31T05:25:17.8725927Z patching file include/linux/mmu_notifier.h
2025-10-31T05:25:17.8727906Z patching file include/linux/mmzone.h
2025-10-31T05:25:17.8730495Z patching file include/linux/mod_devicetable.h
2025-10-31T05:25:17.8731829Z patching file include/linux/module.h
2025-10-31T05:25:17.8733885Z patching file include/linux/moduleloader.h
2025-10-31T05:25:17.8734791Z patching file include/linux/moduleparam.h
2025-10-31T05:25:17.8736418Z patching file include/linux/mroute.h
2025-10-31T05:25:17.8737321Z patching file include/linux/msi.h
2025-10-31T05:25:17.8738852Z patching file include/linux/mtd/cfi.h
2025-10-31T05:25:17.8739851Z patching file include/linux/mtd/mtd.h
2025-10-31T05:25:17.8741738Z patching file include/linux/mtd/rawnand.h
2025-10-31T05:25:17.8744752Z patching file include/linux/mutex.h
2025-10-31T05:25:17.8745705Z patching file include/linux/namei.h
2025-10-31T05:25:17.8746686Z patching file include/linux/net.h
2025-10-31T05:25:17.8747876Z patching file include/linux/netdev_features.h
2025-10-31T05:25:17.8750604Z patching file include/linux/netdevice.h
2025-10-31T05:25:17.8755331Z patching file include/linux/netfilter.h
2025-10-31T05:25:17.8756520Z patching file include/linux/netfilter/ipset/ip_set.h
2025-10-31T05:25:17.8757748Z patching file include/linux/netfilter/nf_conntrack_common.h
2025-10-31T05:25:17.8758655Z patching file include/linux/netfilter/nf_conntrack_sctp.h
2025-10-31T05:25:17.8759416Z patching file include/linux/netfilter/nfnetlink.h
2025-10-31T05:25:17.8760414Z patching file include/linux/netfilter/x_tables.h
2025-10-31T05:25:17.8761648Z patching file include/linux/netfilter_arp/arp_tables.h
2025-10-31T05:25:17.8762649Z patching file include/linux/netfilter_bridge/ebtables.h
2025-10-31T05:25:17.8763741Z patching file include/linux/netfilter_defs.h
2025-10-31T05:25:17.8764598Z patching file include/linux/netpoll.h
2025-10-31T05:25:17.8765616Z patching file include/linux/nfs.h
2025-10-31T05:25:17.8766775Z patching file include/linux/nfs4.h
2025-10-31T05:25:17.8768530Z patching file include/linux/nfs_fs.h
2025-10-31T05:25:17.8769949Z patching file include/linux/nfs_fs_sb.h
2025-10-31T05:25:17.8770920Z patching file include/linux/nfs_page.h
2025-10-31T05:25:17.8771909Z patching file include/linux/nfs_ssc.h
2025-10-31T05:25:17.8773607Z patching file include/linux/nfs_xdr.h
2025-10-31T05:25:17.8775569Z patching file include/linux/nfsacl.h
2025-10-31T05:25:17.8776190Z patching file include/linux/nls.h
2025-10-31T05:25:17.8777152Z patching file include/linux/nmi.h
2025-10-31T05:25:17.8778413Z patching file include/linux/nodemask.h
2025-10-31T05:25:17.8780012Z patching file include/linux/nospec.h
2025-10-31T05:25:17.8780854Z patching file include/linux/nvme-tcp.h
2025-10-31T05:25:17.8782368Z patching file include/linux/nvme.h
2025-10-31T05:25:17.8784671Z patching file include/linux/nvmem-provider.h
2025-10-31T05:25:17.8785376Z patching file include/linux/objagg.h
2025-10-31T05:25:17.8786274Z patching file include/linux/objtool.h
2025-10-31T05:25:17.8788004Z patching file include/linux/of.h
2025-10-31T05:25:17.8790569Z patching file include/linux/of_device.h
2025-10-31T05:25:17.8791495Z patching file include/linux/of_mdio.h
2025-10-31T05:25:17.8792877Z patching file include/linux/once.h
2025-10-31T05:25:17.8794013Z patching file include/linux/overflow.h
2025-10-31T05:25:17.8796422Z patching file include/linux/padata.h
2025-10-31T05:25:17.8797399Z patching file include/linux/pagemap.h
2025-10-31T05:25:17.8799345Z patching file include/linux/pci-epc.h
2025-10-31T05:25:17.8800055Z patching file include/linux/pci-epf.h
2025-10-31T05:25:17.8801683Z patching file include/linux/pci.h
2025-10-31T05:25:17.8805137Z patching file include/linux/pci_ids.h
2025-10-31T05:25:17.8808079Z patching file include/linux/percpu.h
2025-10-31T05:25:17.8809285Z patching file include/linux/perf_event.h
2025-10-31T05:25:17.8812213Z patching file include/linux/pgtable.h
2025-10-31T05:25:17.8814470Z patching file include/linux/phy.h
2025-10-31T05:25:17.8816609Z patching file include/linux/phy/tegra/xusb.h
2025-10-31T05:25:17.8817197Z patching file include/linux/pid.h
2025-10-31T05:25:17.8818442Z patching file include/linux/pipe_fs_i.h
2025-10-31T05:25:17.8820154Z patching file include/linux/platform_data/cros_ec_proto.h
2025-10-31T05:25:17.8821185Z patching file include/linux/platform_data/gpio-omap.h
2025-10-31T05:25:17.8822379Z patching file include/linux/platform_data/intel-spi.h
2025-10-31T05:25:17.8823375Z patching file include/linux/platform_data/ti-sysc.h
2025-10-31T05:25:17.8824378Z patching file include/linux/platform_data/x86/asus-wmi.h
2025-10-31T05:25:17.8825288Z patching file include/linux/platform_data/x86/pmc_atom.h
2025-10-31T05:25:17.8826187Z patching file include/linux/platform_data/x86/soc.h
2025-10-31T05:25:17.8827406Z patching file include/linux/platform_device.h
2025-10-31T05:25:17.8829100Z patching file include/linux/pm.h
2025-10-31T05:25:17.8830780Z patching file include/linux/pm_runtime.h
2025-10-31T05:25:17.8832534Z patching file include/linux/pm_wakeirq.h
2025-10-31T05:25:17.8833258Z patching file include/linux/poll.h
2025-10-31T05:25:17.8834615Z patching file include/linux/posix-timers.h
2025-10-31T05:25:17.8835476Z patching file include/linux/power/bq27xxx_battery.h
2025-10-31T05:25:17.8836304Z patching file include/linux/power/max17042_battery.h
2025-10-31T05:25:17.8837525Z patching file include/linux/power_supply.h
2025-10-31T05:25:17.8838667Z patching file include/linux/pps_kernel.h
2025-10-31T05:25:17.8839599Z patching file include/linux/prandom.h
2025-10-31T05:25:17.8841065Z patching file include/linux/preempt.h
2025-10-31T05:25:17.8842316Z patching file include/linux/printk.h
2025-10-31T05:25:17.8844056Z patching file include/linux/proc_fs.h
2025-10-31T05:25:17.8845197Z patching file include/linux/property.h
2025-10-31T05:25:17.8846381Z patching file include/linux/psi.h
2025-10-31T05:25:17.8847288Z patching file include/linux/psi_types.h
2025-10-31T05:25:17.8848323Z patching file include/linux/pstore.h
2025-10-31T05:25:17.8849699Z patching file include/linux/ptp_clock_kernel.h
2025-10-31T05:25:17.8850699Z patching file include/linux/ptrace.h
2025-10-31T05:25:17.8852486Z patching file include/linux/pwm.h
2025-10-31T05:25:17.8853666Z patching file include/linux/qcom-geni-se.h
2025-10-31T05:25:17.8855013Z patching file include/linux/qed/qed_eth_if.h
2025-10-31T05:25:17.8856527Z patching file include/linux/quota.h
2025-10-31T05:25:17.8857773Z patching file include/linux/quotaops.h
2025-10-31T05:25:17.8858842Z patching file include/linux/raid_class.h
2025-10-31T05:25:17.8859695Z patching file include/linux/ramfs.h
2025-10-31T05:25:17.8860647Z patching file include/linux/random.h
2025-10-31T05:25:17.8862506Z patching file include/linux/ratelimit_types.h
2025-10-31T05:25:17.8863652Z patching file include/linux/rcupdate.h
2025-10-31T05:25:17.8865865Z patching file include/linux/rcutree.h
2025-10-31T05:25:17.8867017Z patching file include/linux/regmap.h
2025-10-31T05:25:17.8869608Z patching file include/linux/regulator/consumer.h
2025-10-31T05:25:17.8870763Z patching file include/linux/regulator/driver.h
2025-10-31T05:25:17.8872216Z patching file include/linux/regulator/pca9450.h
2025-10-31T05:25:17.8873689Z patching file include/linux/remoteproc.h
2025-10-31T05:25:17.8875303Z patching file include/linux/ring_buffer.h
2025-10-31T05:25:17.8876031Z patching file include/linux/rmap.h
2025-10-31T05:25:17.8877377Z patching file include/linux/rpmsg.h
2025-10-31T05:25:17.8878829Z patching file include/linux/rtsx_usb.h
2025-10-31T05:25:17.8879841Z patching file include/linux/rwsem.h
2025-10-31T05:25:17.8881772Z patching file include/linux/sched.h
2025-10-31T05:25:17.8884882Z patching file include/linux/sched/jobctl.h
2025-10-31T05:25:17.8885365Z patching file include/linux/sched/mm.h
2025-10-31T05:25:17.8886955Z patching file include/linux/sched/signal.h
2025-10-31T05:25:17.8888018Z patching file include/linux/sched/smt.h
2025-10-31T05:25:17.8888803Z patching file include/linux/sched/task.h
2025-10-31T05:25:17.8890054Z patching file include/linux/sched/task_stack.h
2025-10-31T05:25:17.8890931Z patching file include/linux/sched/user.h
2025-10-31T05:25:17.8891847Z patching file include/linux/seccomp.h
2025-10-31T05:25:17.8893476Z patching file include/linux/security.h
2025-10-31T05:25:17.8896422Z patching file include/linux/seq_buf.h
2025-10-31T05:25:17.8896865Z patching file include/linux/seq_file.h
2025-10-31T05:25:17.8898294Z patching file include/linux/seqlock.h
2025-10-31T05:25:17.8900885Z patching file include/linux/serial_8250.h
2025-10-31T05:25:17.8901686Z patching file include/linux/serial_core.h
2025-10-31T05:25:17.8903693Z patching file include/linux/sh_intc.h
2025-10-31T05:25:17.8904599Z patching file include/linux/siphash.h
2025-10-31T05:25:17.8907127Z patching file include/linux/skbuff.h
2025-10-31T05:25:17.8910853Z patching file include/linux/skmsg.h
2025-10-31T05:25:17.8912545Z patching file include/linux/slab.h
2025-10-31T05:25:17.8914098Z patching file include/linux/smp.h
2025-10-31T05:25:17.8915061Z patching file include/linux/soc/mediatek/mtk-mmsys.h
2025-10-31T05:25:17.8915910Z patching file include/linux/soc/qcom/apr.h
2025-10-31T05:25:17.8916919Z patching file include/linux/soc/samsung/exynos-chipid.h
2025-10-31T05:25:17.8917879Z patching file include/linux/soc/ti/ti_sci_protocol.h
2025-10-31T05:25:17.8919513Z patching file include/linux/socket.h
2025-10-31T05:25:17.8920574Z patching file include/linux/sockptr.h
2025-10-31T05:25:17.8921675Z patching file include/linux/soundwire/sdw.h
2025-10-31T05:25:17.8923939Z patching file include/linux/spi/spi.h
2025-10-31T05:25:17.8926240Z patching file include/linux/spinlock.h
2025-10-31T05:25:17.8927360Z patching file include/linux/srcu.h
2025-10-31T05:25:17.8928454Z patching file include/linux/srcutiny.h
2025-10-31T05:25:17.8929553Z patching file include/linux/static_call.h
2025-10-31T05:25:17.8931280Z patching file include/linux/static_call_types.h
2025-10-31T05:25:17.8932223Z patching file include/linux/stddef.h
2025-10-31T05:25:17.8933350Z patching file include/linux/stmmac.h
2025-10-31T05:25:17.8934452Z patching file include/linux/stop_machine.h
2025-10-31T05:25:17.8935572Z patching file include/linux/string.h
2025-10-31T05:25:17.8937103Z patching file include/linux/sunrpc/cache.h
2025-10-31T05:25:17.8937979Z patching file include/linux/sunrpc/clnt.h
2025-10-31T05:25:17.8939080Z patching file include/linux/sunrpc/msg_prot.h
2025-10-31T05:25:17.8940034Z patching file include/linux/sunrpc/rpc_pipe_fs.h
2025-10-31T05:25:17.8940886Z patching file include/linux/sunrpc/sched.h
2025-10-31T05:25:17.8942163Z patching file include/linux/sunrpc/svc.h
2025-10-31T05:25:17.8944523Z patching file include/linux/sunrpc/svc_rdma.h
2025-10-31T05:25:17.8945196Z patching file include/linux/sunrpc/svc_xprt.h
2025-10-31T05:25:17.8946467Z patching file include/linux/sunrpc/svcauth.h
2025-10-31T05:25:17.8947094Z patching file include/linux/sunrpc/svcsock.h
2025-10-31T05:25:17.8947995Z patching file include/linux/sunrpc/xdr.h
2025-10-31T05:25:17.8950027Z patching file include/linux/sunrpc/xprt.h
2025-10-31T05:25:17.8951050Z patching file include/linux/sunrpc/xprtsock.h
2025-10-31T05:25:17.8952239Z patching file include/linux/suspend.h
2025-10-31T05:25:17.8954085Z patching file include/linux/swap.h
2025-10-31T05:25:17.8955274Z patching file include/linux/swapops.h
2025-10-31T05:25:17.8956459Z patching file include/linux/swiotlb.h
2025-10-31T05:25:17.8957911Z patching file include/linux/syscalls.h
2025-10-31T05:25:17.8960658Z patching file include/linux/sysctl.h
2025-10-31T05:25:17.8961752Z patching file include/linux/task_work.h
2025-10-31T05:25:17.8962889Z patching file include/linux/tcp.h
2025-10-31T05:25:17.8964565Z patching file include/linux/tee_drv.h
2025-10-31T05:25:17.8966215Z patching file include/linux/thermal.h
2025-10-31T05:25:17.8967434Z patching file include/linux/thread_info.h
2025-10-31T05:25:17.8968549Z patching file include/linux/tick.h
2025-10-31T05:25:17.8969668Z patching file include/linux/timer.h
2025-10-31T05:25:17.8970715Z patching file include/linux/timerqueue.h
2025-10-31T05:25:17.8971691Z patching file include/linux/timex.h
2025-10-31T05:25:17.8973000Z patching file include/linux/topology.h
2025-10-31T05:25:17.8974051Z patching file include/linux/tpm.h
2025-10-31T05:25:17.8975611Z patching file include/linux/tpm_eventlog.h
2025-10-31T05:25:17.8976707Z patching file include/linux/trace_events.h
2025-10-31T05:25:17.8978654Z patching file include/linux/trace_seq.h
2025-10-31T05:25:17.8979404Z patching file include/linux/tracehook.h
2025-10-31T05:25:17.8980823Z patching file include/linux/tracepoint.h
2025-10-31T05:25:17.8982733Z patching file include/linux/tty.h
2025-10-31T05:25:17.8984990Z patching file include/linux/tty_driver.h
2025-10-31T05:25:17.8986072Z patching file include/linux/tty_flip.h
2025-10-31T05:25:17.8987020Z patching file include/linux/tty_ldisc.h
2025-10-31T05:25:17.8988125Z patching file include/linux/types.h
2025-10-31T05:25:17.8989275Z patching file include/linux/u64_stats_sync.h
2025-10-31T05:25:17.8990261Z patching file include/linux/uacce.h
2025-10-31T05:25:17.8991362Z patching file include/linux/uaccess.h
2025-10-31T05:25:17.8992607Z patching file include/linux/udp.h
2025-10-31T05:25:17.8994271Z patching file include/linux/uio.h
2025-10-31T05:25:17.8995411Z patching file include/linux/units.h
2025-10-31T05:25:17.8997143Z patching file include/linux/usb.h
2025-10-31T05:25:17.8999687Z patching file include/linux/usb/ch9.h
2025-10-31T05:25:17.9000711Z patching file include/linux/usb/gadget.h
2025-10-31T05:25:17.9002709Z patching file include/linux/usb/hcd.h
2025-10-31T05:25:17.9004517Z patching file include/linux/usb/otg-fsm.h
2025-10-31T05:25:17.9005338Z patching file include/linux/usb/pd.h
2025-10-31T05:25:17.9006466Z patching file include/linux/usb/role.h
2025-10-31T05:25:17.9007406Z patching file include/linux/usb/typec_altmode.h
2025-10-31T05:25:17.9008285Z patching file include/linux/usb/typec_dp.h
2025-10-31T05:25:17.9009298Z patching file include/linux/usb/usbnet.h
2025-10-31T05:25:17.9010357Z patching file include/linux/usb_usual.h
2025-10-31T05:25:17.9011353Z patching file include/linux/user_namespace.h
2025-10-31T05:25:17.9012581Z patching file include/linux/usermode_driver.h
2025-10-31T05:25:17.9013514Z patching file include/linux/util_macros.h
2025-10-31T05:25:17.9014954Z patching file include/linux/vdpa.h
2025-10-31T05:25:17.9015977Z patching file include/linux/vfio.h
2025-10-31T05:25:17.9017315Z patching file include/linux/virtio.h
2025-10-31T05:25:17.9018474Z patching file include/linux/virtio_config.h
2025-10-31T05:25:17.9019959Z patching file include/linux/virtio_net.h
2025-10-31T05:25:17.9021176Z patching file include/linux/vmalloc.h
2025-10-31T05:25:17.9022771Z patching file include/linux/vmstat.h
2025-10-31T05:25:17.9023770Z patching file include/linux/vt_buffer.h
2025-10-31T05:25:17.9025228Z patching file include/linux/wait.h
2025-10-31T05:25:17.9027149Z patching file include/linux/watch_queue.h
2025-10-31T05:25:17.9028097Z patching file include/linux/workqueue.h
2025-10-31T05:25:17.9029986Z patching file include/linux/ww_mutex.h
2025-10-31T05:25:17.9031623Z patching file include/linux/xarray.h
2025-10-31T05:25:17.9034229Z patching file include/linux/zsmalloc.h
2025-10-31T05:25:17.9034897Z patching file include/media/cec.h
2025-10-31T05:25:17.9036525Z patching file include/media/dvb_net.h
2025-10-31T05:25:17.9037229Z patching file include/media/dvbdev.h
2025-10-31T05:25:17.9038710Z patching file include/media/hevc-ctrls.h
2025-10-31T05:25:17.9039492Z patching file include/media/media-dev-allocator.h
2025-10-31T05:25:17.9040286Z patching file include/media/rc-map.h
2025-10-31T05:25:17.9041553Z patching file include/media/v4l2-async.h
2025-10-31T05:25:17.9042956Z patching file include/media/v4l2-common.h
2025-10-31T05:25:17.9044439Z patching file include/media/v4l2-ctrls.h
2025-10-31T05:25:17.9046187Z patching file include/media/v4l2-dv-timings.h
2025-10-31T05:25:17.9047397Z patching file include/media/v4l2-fwnode.h
2025-10-31T05:25:17.9048595Z patching file include/media/v4l2-h264.h
2025-10-31T05:25:17.9049482Z patching file include/media/v4l2-jpeg.h
2025-10-31T05:25:17.9050493Z patching file include/media/v4l2-mediabus.h
2025-10-31T05:25:17.9051748Z patching file include/media/v4l2-mem2mem.h
2025-10-31T05:25:17.9053933Z patching file include/media/v4l2-subdev.h
2025-10-31T05:25:17.9055744Z patching file include/memory/renesas-rpc-if.h
2025-10-31T05:25:17.9056641Z patching file include/net/act_api.h
2025-10-31T05:25:17.9058092Z patching file include/net/addrconf.h
2025-10-31T05:25:17.9059676Z patching file include/net/af_unix.h
2025-10-31T05:25:17.9061832Z patching file include/net/af_vsock.h
2025-10-31T05:25:17.9062649Z patching file include/net/arp.h
2025-10-31T05:25:17.9063715Z patching file include/net/ax25.h
2025-10-31T05:25:17.9065259Z patching file include/net/bluetooth/bluetooth.h
2025-10-31T05:25:17.9067086Z patching file include/net/bluetooth/hci.h
2025-10-31T05:25:17.9069693Z patching file include/net/bluetooth/hci_core.h
2025-10-31T05:25:17.9072147Z patching file include/net/bluetooth/hci_mon.h
2025-10-31T05:25:17.9072757Z patching file include/net/bluetooth/l2cap.h
2025-10-31T05:25:17.9074351Z patching file include/net/bluetooth/mgmt.h
2025-10-31T05:25:17.9076048Z patching file include/net/bond_3ad.h
2025-10-31T05:25:17.9076746Z patching file include/net/bond_alb.h
2025-10-31T05:25:17.9078043Z patching file include/net/bonding.h
2025-10-31T05:25:17.9079769Z patching file include/net/busy_poll.h
2025-10-31T05:25:17.9080316Z patching file include/net/caif/caif_dev.h
2025-10-31T05:25:17.9081117Z patching file include/net/caif/cfcnfg.h
2025-10-31T05:25:17.9082150Z patching file include/net/caif/cfserl.h
2025-10-31T05:25:17.9085267Z patching file include/net/cfg80211.h
2025-10-31T05:25:17.9091048Z patching file include/net/cfg802154.h
2025-10-31T05:25:17.9091927Z patching file include/net/checksum.h
2025-10-31T05:25:17.9093878Z patching file include/net/compat.h
2025-10-31T05:25:17.9094534Z patching file include/net/dn.h
2025-10-31T05:25:17.9096230Z patching file include/net/dn_dev.h
2025-10-31T05:25:17.9097780Z patching file include/net/dn_fib.h
2025-10-31T05:25:17.9098854Z patching file include/net/dn_neigh.h
2025-10-31T05:25:17.9099867Z patching file include/net/dn_nsp.h
2025-10-31T05:25:17.9101466Z patching file include/net/dn_route.h
2025-10-31T05:25:17.9102977Z patching file include/net/dst.h
2025-10-31T05:25:17.9104675Z patching file include/net/dst_cache.h
2025-10-31T05:25:17.9105348Z patching file include/net/dst_metadata.h
2025-10-31T05:25:17.9106532Z patching file include/net/dst_ops.h
2025-10-31T05:25:17.9107367Z patching file include/net/fib_rules.h
2025-10-31T05:25:17.9108461Z patching file include/net/flow.h
2025-10-31T05:25:17.9110137Z patching file include/net/flow_dissector.h
2025-10-31T05:25:17.9111176Z patching file include/net/flow_offload.h
2025-10-31T05:25:17.9113201Z patching file include/net/genetlink.h
2025-10-31T05:25:17.9114111Z patching file include/net/icmp.h
2025-10-31T05:25:17.9115093Z patching file include/net/ieee802154_netdev.h
2025-10-31T05:25:17.9116630Z patching file include/net/if_inet6.h
2025-10-31T05:25:17.9117590Z patching file include/net/inet6_hashtables.h
2025-10-31T05:25:17.9118765Z patching file include/net/inet_connection_sock.h
2025-10-31T05:25:17.9120308Z patching file include/net/inet_frag.h
2025-10-31T05:25:17.9121325Z patching file include/net/inet_hashtables.h
2025-10-31T05:25:17.9123272Z patching file include/net/inet_sock.h
2025-10-31T05:25:17.9124794Z patching file include/net/ip.h
2025-10-31T05:25:17.9126774Z patching file include/net/ip6_fib.h
2025-10-31T05:25:17.9127880Z patching file include/net/ip6_route.h
2025-10-31T05:25:17.9129278Z patching file include/net/ip6_tunnel.h
2025-10-31T05:25:17.9130394Z patching file include/net/ip_fib.h
2025-10-31T05:25:17.9132259Z patching file include/net/ip_tunnels.h
2025-10-31T05:25:17.9134377Z patching file include/net/ip_vs.h
2025-10-31T05:25:17.9136502Z patching file include/net/ipv6.h
2025-10-31T05:25:17.9138490Z patching file include/net/ipv6_frag.h
2025-10-31T05:25:17.9139107Z patching file include/net/ipv6_stubs.h
2025-10-31T05:25:17.9140080Z patching file include/net/kcm.h
2025-10-31T05:25:17.9141100Z patching file include/net/l3mdev.h
2025-10-31T05:25:17.9142316Z patching file include/net/lapb.h
2025-10-31T05:25:17.9143366Z patching file include/net/llc.h
2025-10-31T05:25:17.9144431Z patching file include/net/llc_pdu.h
2025-10-31T05:25:17.9146140Z patching file include/net/lwtunnel.h
2025-10-31T05:25:17.9148934Z patching file include/net/mac80211.h
2025-10-31T05:25:17.9153818Z patching file include/net/macsec.h
2025-10-31T05:25:17.9154612Z patching file include/net/mptcp.h
2025-10-31T05:25:17.9164731Z patching file include/net/mrp.h
2025-10-31T05:25:17.9172821Z patching file include/net/neighbour.h
2025-10-31T05:25:17.9173653Z patching file include/net/net_namespace.h
2025-10-31T05:25:17.9174855Z patching file include/net/netfilter/ipv4/nf_reject.h
2025-10-31T05:25:17.9175494Z patching file include/net/netfilter/ipv6/nf_reject.h
2025-10-31T05:25:17.9176657Z patching file include/net/netfilter/nf_conntrack.h
2025-10-31T05:25:17.9177324Z patching file include/net/netfilter/nf_conntrack_core.h
2025-10-31T05:25:17.9178860Z patching file include/net/netfilter/nf_flow_table.h
2025-10-31T05:25:17.9179621Z patching file include/net/netfilter/nf_nat_redirect.h
2025-10-31T05:25:17.9180313Z patching file include/net/netfilter/nf_queue.h
2025-10-31T05:25:17.9181019Z patching file include/net/netfilter/nf_tables.h
2025-10-31T05:25:17.9182399Z patching file include/net/netfilter/nf_tables_core.h
2025-10-31T05:25:17.9182965Z patching file include/net/netfilter/nf_tables_offload.h
2025-10-31T05:25:17.9184469Z patching file include/net/netfilter/nf_tproxy.h
2025-10-31T05:25:17.9184880Z patching file include/net/netfilter/nft_fib.h
2025-10-31T05:25:17.9185266Z patching file include/net/netfilter/nft_meta.h
2025-10-31T05:25:17.9185629Z patching file include/net/netns/ipv4.h
2025-10-31T05:25:17.9185978Z patching file include/net/netns/ipv6.h
2025-10-31T05:25:17.9186348Z patching file include/net/netns/netfilter.h
2025-10-31T05:25:17.9186717Z patching file include/net/netns/nftables.h
2025-10-31T05:25:17.9187194Z patching file include/net/netns/xfrm.h
2025-10-31T05:25:17.9187639Z patching file include/net/nexthop.h
2025-10-31T05:25:17.9187992Z patching file include/net/nfc/nci_core.h
2025-10-31T05:25:17.9188326Z patching file include/net/nfc/nfc.h
2025-10-31T05:25:17.9188669Z patching file include/net/nl802154.h
2025-10-31T05:25:17.9189027Z patching file include/net/page_pool.h
2025-10-31T05:25:17.9189374Z patching file include/net/pkt_cls.h
2025-10-31T05:25:17.9190568Z patching file include/net/pkt_sched.h
2025-10-31T05:25:17.9190932Z patching file include/net/protocol.h
2025-10-31T05:25:17.9191844Z patching file include/net/psample.h
2025-10-31T05:25:17.9192792Z patching file include/net/raw.h
2025-10-31T05:25:17.9193329Z patching file include/net/red.h
2025-10-31T05:25:17.9193668Z patching file include/net/route.h
2025-10-31T05:25:17.9194068Z patching file include/net/rpl.h
2025-10-31T05:25:17.9201178Z patching file include/net/rtnetlink.h
2025-10-31T05:25:17.9201531Z patching file include/net/sch_generic.h
2025-10-31T05:25:17.9201855Z patching file include/net/scm.h
2025-10-31T05:25:17.9202439Z patching file include/net/sctp/constants.h
2025-10-31T05:25:17.9202781Z patching file include/net/sctp/sctp.h
2025-10-31T05:25:17.9203144Z patching file include/net/sctp/stream_sched.h
2025-10-31T05:25:17.9203487Z patching file include/net/sctp/structs.h
2025-10-31T05:25:17.9203824Z patching file include/net/secure_seq.h
2025-10-31T05:25:17.9204145Z patching file include/net/sock.h
2025-10-31T05:25:17.9207506Z patching file include/net/sock_reuseport.h
2025-10-31T05:25:17.9208185Z patching file include/net/strparser.h
2025-10-31T05:25:17.9209273Z patching file include/net/switchdev.h
2025-10-31T05:25:17.9210612Z patching file include/net/tc_act/tc_ctinfo.h
2025-10-31T05:25:17.9211159Z patching file include/net/tc_act/tc_pedit.h
2025-10-31T05:25:17.9211865Z patching file include/net/tc_act/tc_vlan.h
2025-10-31T05:25:17.9213814Z patching file include/net/tcp.h
2025-10-31T05:25:17.9217244Z patching file include/net/tls.h
2025-10-31T05:25:17.9219017Z patching file include/net/udp.h
2025-10-31T05:25:17.9220692Z patching file include/net/udp_tunnel.h
2025-10-31T05:25:17.9221516Z patching file include/net/udplite.h
2025-10-31T05:25:17.9222967Z patching file include/net/vxlan.h
2025-10-31T05:25:17.9224415Z patching file include/net/xdp.h
2025-10-31T05:25:17.9225199Z patching file include/net/xdp_sock.h
2025-10-31T05:25:17.9226815Z patching file include/net/xfrm.h
2025-10-31T05:25:17.9229593Z patching file include/net/xsk_buff_pool.h
2025-10-31T05:25:17.9230444Z patching file include/rdma/ib_addr.h
2025-10-31T05:25:17.9232861Z patching file include/rdma/ib_verbs.h
2025-10-31T05:25:17.9236347Z patching file include/rdma/rdma_netlink.h
2025-10-31T05:25:17.9237091Z patching file include/rdma/uverbs_ioctl.h
2025-10-31T05:25:17.9238836Z patching file include/scsi/fc/fc_ms.h
2025-10-31T05:25:17.9239536Z patching file include/scsi/libfcoe.h
2025-10-31T05:25:17.9241011Z patching file include/scsi/libiscsi.h
2025-10-31T05:25:17.9242250Z patching file include/scsi/libsas.h
2025-10-31T05:25:17.9243923Z patching file include/scsi/scsi.h
2025-10-31T05:25:17.9244677Z patching file include/scsi/scsi_cmnd.h
2025-10-31T05:25:17.9245947Z patching file include/scsi/scsi_dh.h
2025-10-31T05:25:17.9246533Z patching file include/scsi/scsi_eh.h
2025-10-31T05:25:17.9247886Z patching file include/scsi/scsi_host.h
2025-10-31T05:25:17.9249435Z patching file include/scsi/scsi_transport_iscsi.h
2025-10-31T05:25:17.9251175Z patching file include/soc/bcm2835/raspberrypi-firmware.h
2025-10-31T05:25:17.9252422Z patching file include/soc/fsl/qman.h
2025-10-31T05:25:17.9254352Z patching file include/soc/mscc/ocelot.h
2025-10-31T05:25:17.9255874Z patching file include/sound/control.h
2025-10-31T05:25:17.9256895Z patching file include/sound/core.h
2025-10-31T05:25:17.9258357Z patching file include/sound/dmaengine_pcm.h
2025-10-31T05:25:17.9259359Z patching file include/sound/hda_codec.h
2025-10-31T05:25:17.9260892Z patching file include/sound/hdaudio.h
2025-10-31T05:25:17.9262418Z patching file include/sound/hdaudio_ext.h
2025-10-31T05:25:17.9272360Z patching file include/sound/intel-nhlt.h
2025-10-31T05:25:17.9273201Z patching file include/sound/jack.h
2025-10-31T05:25:17.9273986Z patching file include/sound/pcm.h
2025-10-31T05:25:17.9274522Z patching file include/sound/soc-acpi.h
2025-10-31T05:25:17.9275012Z patching file include/sound/soc-card.h
2025-10-31T05:25:17.9275485Z patching file include/sound/soc-dai.h
2025-10-31T05:25:17.9275953Z patching file include/sound/soc-dapm.h
2025-10-31T05:25:17.9276415Z patching file include/sound/soc-dpcm.h
2025-10-31T05:25:17.9276870Z patching file include/sound/soc.h
2025-10-31T05:25:17.9277858Z patching file include/target/target_core_backend.h
2025-10-31T05:25:17.9278981Z patching file include/target/target_core_base.h
2025-10-31T05:25:17.9280776Z patching file include/trace/events/afs.h
2025-10-31T05:25:17.9282665Z patching file include/trace/events/asoc.h
2025-10-31T05:25:17.9283714Z patching file include/trace/events/block.h
2025-10-31T05:25:17.9285642Z patching file include/trace/events/btrfs.h
2025-10-31T05:25:17.9287432Z patching file include/trace/events/cgroup.h
2025-10-31T05:25:17.9288423Z patching file include/trace/events/erofs.h
2025-10-31T05:25:17.9290185Z patching file include/trace/events/ext4.h
2025-10-31T05:25:17.9292952Z patching file include/trace/events/f2fs.h
2025-10-31T05:25:17.9294778Z patching file include/trace/events/filelock.h
2025-10-31T05:25:17.9295687Z patching file include/trace/events/io_uring.h
2025-10-31T05:25:17.9297508Z patching file include/trace/events/jbd2.h
2025-10-31T05:25:17.9298925Z patching file include/trace/events/libata.h
2025-10-31T05:25:17.9299916Z patching file include/trace/events/neigh.h
2025-10-31T05:25:17.9300892Z patching file include/trace/events/oom.h
2025-10-31T05:25:17.9302108Z patching file include/trace/events/qdisc.h
2025-10-31T05:25:17.9303078Z patching file include/trace/events/qrtr.h
2025-10-31T05:25:17.9304065Z patching file include/trace/events/random.h
2025-10-31T05:25:17.9305774Z patching file include/trace/events/rcu.h
2025-10-31T05:25:17.9306924Z patching file include/trace/events/rpcgss.h
2025-10-31T05:25:17.9308290Z patching file include/trace/events/rxrpc.h
2025-10-31T05:25:17.9310077Z patching file include/trace/events/sched.h
2025-10-31T05:25:17.9311307Z patching file include/trace/events/sock.h
2025-10-31T05:25:17.9312421Z patching file include/trace/events/spmi.h
2025-10-31T05:25:17.9314123Z patching file include/trace/events/sunrpc.h
2025-10-31T05:25:17.9316259Z patching file include/trace/events/timer.h
2025-10-31T05:25:17.9317312Z patching file include/trace/events/vmscan.h
2025-10-31T05:25:17.9318602Z patching file include/trace/events/writeback.h
2025-10-31T05:25:17.9319785Z patching file include/trace/trace_events.h
2025-10-31T05:25:17.9321097Z patching file include/uapi/asm-generic/hugetlb_encode.h
2025-10-31T05:25:17.9322179Z patching file include/uapi/asm-generic/poll.h
2025-10-31T05:25:17.9323034Z patching file include/uapi/asm-generic/unistd.h
2025-10-31T05:25:17.9324451Z patching file include/uapi/drm/drm_fourcc.h
2025-10-31T05:25:17.9326193Z patching file include/uapi/linux/affs_hardblocks.h
2025-10-31T05:25:17.9327131Z patching file include/uapi/linux/android/binder.h
2025-10-31T05:25:17.9328356Z patching file include/uapi/linux/audit.h
2025-10-31T05:25:17.9329524Z patching file include/uapi/linux/auto_dev-ioctl.h
2025-10-31T05:25:17.9330399Z patching file include/uapi/linux/bcache.h
2025-10-31T05:25:17.9331486Z patching file include/uapi/linux/binfmts.h
2025-10-31T05:25:17.9332466Z patching file include/uapi/linux/blkzoned.h
2025-10-31T05:25:17.9334760Z patching file include/uapi/linux/bpf.h
2025-10-31T05:25:17.9338534Z patching file include/uapi/linux/btrfs.h
2025-10-31T05:25:17.9339748Z patching file include/uapi/linux/can/error.h
2025-10-31T05:25:17.9340605Z patching file include/uapi/linux/can/isotp.h
2025-10-31T05:25:17.9341688Z patching file include/uapi/linux/capability.h
2025-10-31T05:25:17.9343269Z patching file include/uapi/linux/cec.h
2025-10-31T05:25:17.9344681Z patching file include/uapi/linux/const.h
2025-10-31T05:25:17.9345567Z patching file include/uapi/linux/devlink.h
2025-10-31T05:25:17.9346641Z patching file include/uapi/linux/dma-buf.h
2025-10-31T05:25:17.9347462Z patching file include/uapi/linux/dn.h
2025-10-31T05:25:17.9349207Z patching file include/uapi/linux/ethtool.h
2025-10-31T05:25:17.9351227Z patching file include/uapi/linux/ethtool_netlink.h
2025-10-31T05:25:17.9352301Z patching file include/uapi/linux/eventpoll.h
2025-10-31T05:25:17.9353326Z patching file include/uapi/linux/f2fs.h
2025-10-31T05:25:17.9354695Z patching file include/uapi/linux/fanotify.h
2025-10-31T05:25:17.9355967Z patching file include/uapi/linux/fscrypt.h
2025-10-31T05:25:17.9357078Z patching file include/uapi/linux/gtp.h
2025-10-31T05:25:17.9357899Z patching file include/uapi/linux/idxd.h
2025-10-31T05:25:17.9358698Z patching file include/uapi/linux/if_alg.h
2025-10-31T05:25:17.9359752Z patching file include/uapi/linux/if_link.h
2025-10-31T05:25:17.9361013Z patching file include/uapi/linux/if_packet.h
2025-10-31T05:25:17.9362147Z patching file include/uapi/linux/in.h
2025-10-31T05:25:17.9363437Z patching file include/uapi/linux/in6.h
2025-10-31T05:25:17.9364699Z patching file include/uapi/linux/input-event-codes.h
2025-10-31T05:25:17.9366001Z patching file include/uapi/linux/io_uring.h
2025-10-31T05:25:17.9367378Z patching file include/uapi/linux/ip.h
2025-10-31T05:25:17.9368321Z patching file include/uapi/linux/ipv6.h
2025-10-31T05:25:17.9369280Z patching file include/uapi/linux/kernel.h
2025-10-31T05:25:17.9370235Z patching file include/uapi/linux/kfd_ioctl.h
2025-10-31T05:25:17.9371288Z patching file include/uapi/linux/l2tp.h
2025-10-31T05:25:17.9372330Z patching file include/uapi/linux/lightnvm.h
2025-10-31T05:25:17.9373357Z patching file include/uapi/linux/mount.h
2025-10-31T05:25:17.9374211Z patching file include/uapi/linux/mroute6.h
2025-10-31T05:25:17.9375163Z patching file include/uapi/linux/neighbour.h
2025-10-31T05:25:17.9376240Z patching file include/uapi/linux/netfilter/nf_conntrack_common.h
2025-10-31T05:25:17.9377305Z patching file include/uapi/linux/netfilter/nf_conntrack_sctp.h
2025-10-31T05:25:17.9378141Z patching file include/uapi/linux/netfilter/nf_tables.h
2025-10-31T05:25:17.9380021Z patching file include/uapi/linux/netfilter/nfnetlink_cthelper.h
2025-10-31T05:25:17.9381113Z patching file include/uapi/linux/netfilter/nfnetlink_cttimeout.h
2025-10-31T05:25:17.9382263Z patching file include/uapi/linux/netfilter/x_tables.h
2025-10-31T05:25:17.9383245Z patching file include/uapi/linux/netfilter/xt_IDLETIMER.h
2025-10-31T05:25:17.9384427Z patching file include/uapi/linux/netfilter/xt_SECMARK.h
2025-10-31T05:25:17.9385418Z patching file include/uapi/linux/netfilter_bridge/ebtables.h
2025-10-31T05:25:17.9386324Z patching file include/uapi/linux/netfilter_decnet.h
2025-10-31T05:25:17.9387135Z patching file include/uapi/linux/netlink.h
2025-10-31T05:25:17.9387965Z patching file include/uapi/linux/nfc.h
2025-10-31T05:25:17.9388769Z patching file include/uapi/linux/nfs3.h
2025-10-31T05:25:17.9389535Z patching file include/uapi/linux/nfsd/nfsfh.h
2025-10-31T05:25:17.9390337Z patching file include/uapi/linux/openat2.h
2025-10-31T05:25:17.9391193Z patching file include/uapi/linux/pci_regs.h
2025-10-31T05:25:17.9393471Z patching file include/uapi/linux/perf_event.h
2025-10-31T05:25:17.9394975Z patching file include/uapi/linux/pkt_cls.h
2025-10-31T05:25:17.9396303Z patching file include/uapi/linux/pkt_sched.h
2025-10-31T05:25:17.9397581Z patching file include/uapi/linux/psample.h
2025-10-31T05:25:17.9398425Z patching file include/uapi/linux/ptrace.h
2025-10-31T05:25:17.9399328Z patching file include/uapi/linux/rpl.h
2025-10-31T05:25:17.9400123Z patching file include/uapi/linux/rseq.h
2025-10-31T05:25:17.9401232Z patching file include/uapi/linux/rtnetlink.h
2025-10-31T05:25:17.9402538Z patching file include/uapi/linux/serial_reg.h
2025-10-31T05:25:17.9403686Z patching file include/uapi/linux/stddef.h
2025-10-31T05:25:17.9404624Z patching file include/uapi/linux/swab.h
2025-10-31T05:25:17.9405489Z patching file include/uapi/linux/sync_file.h
2025-10-31T05:25:17.9406509Z patching file include/uapi/linux/sysctl.h
2025-10-31T05:25:17.9407744Z patching file include/uapi/linux/tcp.h
2025-10-31T05:25:17.9408714Z patching file include/uapi/linux/termios.h
2025-10-31T05:25:17.9409553Z patching file include/uapi/linux/tty_flags.h
2025-10-31T05:25:17.9410501Z patching file include/uapi/linux/types.h
2025-10-31T05:25:17.9411569Z patching file include/uapi/linux/usb/ch9.h
2025-10-31T05:25:17.9413082Z patching file include/uapi/linux/usb/video.h
2025-10-31T05:25:17.9414246Z patching file include/uapi/linux/uvcvideo.h
2025-10-31T05:25:17.9415108Z patching file include/uapi/linux/v4l2-subdev.h
2025-10-31T05:25:17.9417205Z patching file include/uapi/linux/videodev2.h
2025-10-31T05:25:17.9419590Z patching file include/uapi/linux/virtio_crypto.h
2025-10-31T05:25:17.9420881Z patching file include/uapi/linux/vm_sockets.h
2025-10-31T05:25:17.9422082Z patching file include/uapi/linux/xfrm.h
2025-10-31T05:25:17.9423410Z patching file include/uapi/linux/zorro_ids.h
2025-10-31T05:25:17.9424637Z patching file include/uapi/rdma/vmw_pvrdma-abi.h
2025-10-31T05:25:17.9425743Z patching file include/uapi/scsi/fc/fc_els.h
2025-10-31T05:25:17.9427565Z patching file include/uapi/sound/asequencer.h
2025-10-31T05:25:17.9428571Z patching file include/uapi/sound/skl-tplg-interface.h
2025-10-31T05:25:17.9429507Z patching file include/video/of_display_timing.h
2025-10-31T05:25:17.9430387Z patching file include/xen/grant_table.h
2025-10-31T05:25:17.9431538Z patching file include/xen/interface/io/ring.h
2025-10-31T05:25:17.9434026Z patching file include/xen/interface/xen-mca.h
2025-10-31T05:25:17.9434846Z patching file include/xen/xen.h
2025-10-31T05:25:17.9435618Z patching file include/xen/xenbus.h
2025-10-31T05:25:17.9436999Z patching file init/Kconfig
2025-10-31T05:25:17.9439265Z patching file init/do_mounts.c
2025-10-31T05:25:17.9440207Z patching file init/init_task.c
2025-10-31T05:25:17.9441155Z patching file init/initramfs.c
2025-10-31T05:25:17.9442515Z patching file init/main.c
2025-10-31T05:25:17.9445013Z patching file io_uring/Makefile
2025-10-31T05:25:17.9445747Z patching file io_uring/io-wq.c
2025-10-31T05:25:17.9448794Z patching file io_uring/io-wq.h
2025-10-31T05:25:17.9449868Z patching file io_uring/io_uring.c
2025-10-31T05:25:17.9471922Z patching file ipc/mqueue.c
2025-10-31T05:25:17.9474028Z patching file ipc/msg.c
2025-10-31T05:25:17.9475838Z patching file ipc/sem.c
2025-10-31T05:25:17.9478106Z patching file ipc/shm.c
2025-10-31T05:25:17.9480377Z patching file ipc/util.c
2025-10-31T05:25:17.9481542Z patching file kernel/.gitignore
2025-10-31T05:25:17.9482440Z patching file kernel/Makefile
2025-10-31T05:25:17.9483536Z patching file kernel/acct.c
2025-10-31T05:25:17.9485336Z patching file kernel/async.c
2025-10-31T05:25:17.9487087Z patching file kernel/audit.c
2025-10-31T05:25:17.9489682Z patching file kernel/audit.h
2025-10-31T05:25:17.9490624Z patching file kernel/audit_fsnotify.c
2025-10-31T05:25:17.9491821Z patching file kernel/audit_tree.c
2025-10-31T05:25:17.9493502Z patching file kernel/audit_watch.c
2025-10-31T05:25:17.9494884Z patching file kernel/auditfilter.c
2025-10-31T05:25:17.9497081Z patching file kernel/auditsc.c
2025-10-31T05:25:17.9499290Z patching file kernel/bounds.c
2025-10-31T05:25:17.9500287Z patching file kernel/bpf/arraymap.c
2025-10-31T05:25:17.9502127Z patching file kernel/bpf/bpf_inode_storage.c
2025-10-31T05:25:17.9503125Z patching file kernel/bpf/bpf_iter.c
2025-10-31T05:25:17.9504253Z patching file kernel/bpf/bpf_local_storage.c
2025-10-31T05:25:17.9505545Z patching file kernel/bpf/bpf_lru_list.c
2025-10-31T05:25:17.9506771Z patching file kernel/bpf/bpf_lru_list.h
2025-10-31T05:25:17.9507792Z patching file kernel/bpf/bpf_struct_ops.c
2025-10-31T05:25:17.9510275Z patching file kernel/bpf/btf.c
2025-10-31T05:25:17.9514282Z patching file kernel/bpf/cgroup.c
2025-10-31T05:25:17.9516717Z patching file kernel/bpf/core.c
2025-10-31T05:25:17.9519236Z patching file kernel/bpf/cpumap.c
2025-10-31T05:25:17.9520426Z patching file kernel/bpf/devmap.c
2025-10-31T05:25:17.9521686Z patching file kernel/bpf/disasm.c
2025-10-31T05:25:17.9523208Z patching file kernel/bpf/hashtab.c
2025-10-31T05:25:17.9525329Z patching file kernel/bpf/helpers.c
2025-10-31T05:25:17.9527012Z patching file kernel/bpf/inode.c
2025-10-31T05:25:17.9528176Z patching file kernel/bpf/local_storage.c
2025-10-31T05:25:17.9529294Z patching file kernel/bpf/lpm_trie.c
2025-10-31T05:25:17.9530535Z patching file kernel/bpf/map_in_map.c
2025-10-31T05:25:17.9531323Z patching file kernel/bpf/map_in_map.h
2025-10-31T05:25:17.9532284Z patching file kernel/bpf/percpu_freelist.c
2025-10-31T05:25:17.9533250Z patching file kernel/bpf/preload/Makefile
2025-10-31T05:25:17.9534281Z patching file kernel/bpf/preload/bpf_preload_kern.c
2025-10-31T05:25:17.9535176Z patching file kernel/bpf/queue_stack_maps.c
2025-10-31T05:25:17.9535931Z patching file kernel/bpf/ringbuf.c
2025-10-31T05:25:17.9537232Z patching file kernel/bpf/stackmap.c
2025-10-31T05:25:17.9539831Z patching file kernel/bpf/syscall.c
2025-10-31T05:25:17.9543737Z patching file kernel/bpf/task_iter.c
2025-10-31T05:25:17.9544845Z patching file kernel/bpf/trampoline.c
2025-10-31T05:25:17.9551029Z patching file kernel/bpf/verifier.c
2025-10-31T05:25:17.9565427Z patching file kernel/cgroup/cgroup-internal.h
2025-10-31T05:25:17.9566513Z patching file kernel/cgroup/cgroup-v1.c
2025-10-31T05:25:17.9569961Z patching file kernel/cgroup/cgroup.c
2025-10-31T05:25:17.9576696Z patching file kernel/cgroup/cpuset.c
2025-10-31T05:25:17.9581119Z patching file kernel/cgroup/namespace.c
2025-10-31T05:25:17.9581915Z patching file kernel/cgroup/rstat.c
2025-10-31T05:25:17.9583121Z patching file kernel/compat.c
2025-10-31T05:25:17.9584804Z patching file kernel/cpu.c
2025-10-31T05:25:17.9587069Z patching file kernel/cpu_pm.c
2025-10-31T05:25:17.9588179Z patching file kernel/crash_core.c
2025-10-31T05:25:17.9589388Z patching file kernel/cred.c
2025-10-31T05:25:17.9591444Z patching file kernel/debug/debug_core.c
2025-10-31T05:25:17.9593184Z patching file kernel/debug/kdb/kdb_io.c
2025-10-31T05:25:17.9595406Z patching file kernel/debug/kdb/kdb_main.c
2025-10-31T05:25:17.9597556Z patching file kernel/debug/kdb/kdb_private.h
2025-10-31T05:25:17.9605318Z patching file kernel/debug/kdb/kdb_support.c
2025-10-31T05:25:17.9606168Z patching file kernel/dma/coherent.c
2025-10-31T05:25:17.9606905Z patching file kernel/dma/contiguous.c
2025-10-31T05:25:17.9607685Z patching file kernel/dma/debug.c
2025-10-31T05:25:17.9608430Z patching file kernel/dma/direct.c
2025-10-31T05:25:17.9609416Z patching file kernel/dma/direct.h
2025-10-31T05:25:17.9610078Z patching file kernel/dma/mapping.c
2025-10-31T05:25:17.9610562Z patching file kernel/dma/ops_helpers.c
2025-10-31T05:25:17.9611104Z patching file kernel/dma/pool.c
2025-10-31T05:25:17.9611860Z patching file kernel/dma/remap.c
2025-10-31T05:25:17.9612821Z patching file kernel/dma/swiotlb.c
2025-10-31T05:25:17.9613415Z patching file kernel/entry/common.c
2025-10-31T05:25:17.9613867Z patching file kernel/entry/kvm.c
2025-10-31T05:25:17.9616647Z patching file kernel/events/core.c
2025-10-31T05:25:17.9626354Z patching file kernel/events/internal.h
2025-10-31T05:25:17.9627310Z patching file kernel/events/ring_buffer.c
2025-10-31T05:25:17.9629125Z patching file kernel/events/uprobes.c
2025-10-31T05:25:17.9631314Z patching file kernel/exit.c
2025-10-31T05:25:17.9633436Z patching file kernel/fail_function.c
2025-10-31T05:25:17.9635082Z patching file kernel/fork.c
2025-10-31T05:25:17.9639083Z patching file kernel/futex.c
2025-10-31T05:25:17.9646921Z patching file kernel/futex/Makefile
2025-10-31T05:25:17.9647697Z patching file kernel/futex/core.c
2025-10-31T05:25:17.9656440Z patching file kernel/gcov/clang.c
2025-10-31T05:25:17.9658065Z patching file kernel/gcov/gcc_4_7.c
2025-10-31T05:25:17.9659237Z patching file kernel/gen_kheaders.sh
2025-10-31T05:25:17.9660002Z patching file kernel/irq/Kconfig
2025-10-31T05:25:17.9660878Z patching file kernel/irq/affinity.c
2025-10-31T05:25:17.9662386Z patching file kernel/irq/chip.c
2025-10-31T05:25:17.9664450Z patching file kernel/irq/cpuhotplug.c
2025-10-31T05:25:17.9665248Z patching file kernel/irq/dummychip.c
2025-10-31T05:25:17.9666071Z patching file kernel/irq/generic-chip.c
2025-10-31T05:25:17.9667153Z patching file kernel/irq/handle.c
2025-10-31T05:25:17.9668019Z patching file kernel/irq/internals.h
2025-10-31T05:25:17.9669292Z patching file kernel/irq/irqdesc.c
2025-10-31T05:25:17.9671143Z patching file kernel/irq/irqdomain.c
2025-10-31T05:25:17.9674732Z patching file kernel/irq/manage.c
2025-10-31T05:25:17.9677490Z patching file kernel/irq/matrix.c
2025-10-31T05:25:17.9678487Z patching file kernel/irq/msi.c
2025-10-31T05:25:17.9679776Z patching file kernel/irq/proc.c
2025-10-31T05:25:17.9681131Z patching file kernel/irq/timings.c
2025-10-31T05:25:17.9682540Z patching file kernel/jump_label.c
2025-10-31T05:25:17.9683946Z patching file kernel/kallsyms.c
2025-10-31T05:25:17.9685092Z patching file kernel/kcmp.c
2025-10-31T05:25:17.9686428Z patching file kernel/kcov.c
2025-10-31T05:25:17.9687600Z patching file kernel/kcsan/Makefile
2025-10-31T05:25:17.9688553Z patching file kernel/kcsan/core.c
2025-10-31T05:25:17.9690217Z patching file kernel/kcsan/debugfs.c
2025-10-31T05:25:17.9691580Z patching file kernel/kcsan/kcsan-test.c
2025-10-31T05:25:17.9693008Z patching file kernel/kcsan/kcsan.h
2025-10-31T05:25:17.9693853Z patching file kernel/kcsan/report.c
2025-10-31T05:25:17.9695016Z patching file kernel/kexec.c
2025-10-31T05:25:17.9696338Z patching file kernel/kexec_core.c
2025-10-31T05:25:17.9698098Z patching file kernel/kexec_elf.c
2025-10-31T05:25:17.9699226Z patching file kernel/kexec_file.c
2025-10-31T05:25:17.9700941Z patching file kernel/kexec_internal.h
2025-10-31T05:25:17.9701712Z patching file kernel/kheaders.c
2025-10-31T05:25:17.9703570Z patching file kernel/kprobes.c
2025-10-31T05:25:17.9706375Z patching file kernel/ksysfs.c
2025-10-31T05:25:17.9707495Z patching file kernel/kthread.c
2025-10-31T05:25:17.9710011Z patching file kernel/livepatch/core.c
2025-10-31T05:25:17.9711475Z patching file kernel/livepatch/transition.c
2025-10-31T05:25:17.9714377Z patching file kernel/locking/lockdep.c
2025-10-31T05:25:17.9719294Z patching file kernel/locking/lockdep_internals.h
2025-10-31T05:25:17.9720204Z patching file kernel/locking/lockdep_proc.c
2025-10-31T05:25:17.9721526Z patching file kernel/locking/mutex-debug.c
2025-10-31T05:25:17.9722487Z patching file kernel/locking/mutex-debug.h
2025-10-31T05:25:17.9723496Z patching file kernel/locking/mutex.c
2025-10-31T05:25:17.9725393Z patching file kernel/locking/mutex.h
2025-10-31T05:25:17.9726416Z patching file kernel/locking/qrwlock.c
2025-10-31T05:25:17.9727246Z patching file kernel/locking/rtmutex.c
2025-10-31T05:25:17.9729064Z patching file kernel/locking/rtmutex_common.h
2025-10-31T05:25:17.9730106Z patching file kernel/locking/rwsem.c
2025-10-31T05:25:17.9731839Z patching file kernel/locking/semaphore.c
2025-10-31T05:25:17.9733002Z patching file kernel/locking/test-ww_mutex.c
2025-10-31T05:25:17.9735322Z patching file kernel/module.c
2025-10-31T05:25:17.9739221Z patching file kernel/module_signature.c
2025-10-31T05:25:17.9740004Z patching file kernel/module_signing.c
2025-10-31T05:25:17.9740913Z patching file kernel/padata.c
2025-10-31T05:25:17.9743497Z patching file kernel/panic.c
2025-10-31T05:25:17.9745202Z patching file kernel/params.c
2025-10-31T05:25:17.9746502Z patching file kernel/pid.c
2025-10-31T05:25:17.9747849Z patching file kernel/pid_namespace.c
2025-10-31T05:25:17.9748985Z patching file kernel/power/console.c
2025-10-31T05:25:17.9749798Z patching file kernel/power/energy_model.c
2025-10-31T05:25:17.9751115Z patching file kernel/power/hibernate.c
2025-10-31T05:25:17.9752978Z patching file kernel/power/main.c
2025-10-31T05:25:17.9754041Z patching file kernel/power/process.c
2025-10-31T05:25:17.9755447Z patching file kernel/power/snapshot.c
2025-10-31T05:25:17.9757735Z patching file kernel/power/suspend.c
2025-10-31T05:25:17.9758675Z patching file kernel/power/suspend_test.c
2025-10-31T05:25:17.9759823Z patching file kernel/power/swap.c
2025-10-31T05:25:17.9761822Z patching file kernel/power/user.c
2025-10-31T05:25:17.9762942Z patching file kernel/power/wakelock.c
2025-10-31T05:25:17.9764845Z patching file kernel/printk/printk.c
2025-10-31T05:25:17.9768348Z patching file kernel/printk/printk_ringbuffer.c
2025-10-31T05:25:17.9770069Z patching file kernel/printk/printk_safe.c
2025-10-31T05:25:17.9771156Z patching file kernel/profile.c
2025-10-31T05:25:17.9773004Z patching file kernel/ptrace.c
2025-10-31T05:25:17.9774757Z patching file kernel/rcu/Kconfig
2025-10-31T05:25:17.9775565Z patching file kernel/rcu/rcu.h
2025-10-31T05:25:17.9776755Z patching file kernel/rcu/rcuscale.c
2025-10-31T05:25:17.9779144Z patching file kernel/rcu/rcutorture.c
2025-10-31T05:25:17.9781722Z patching file kernel/rcu/refscale.c
2025-10-31T05:25:17.9782636Z patching file kernel/rcu/srcutiny.c
2025-10-31T05:25:17.9784041Z patching file kernel/rcu/srcutree.c
2025-10-31T05:25:17.9786132Z patching file kernel/rcu/tasks.h
2025-10-31T05:25:17.9789516Z patching file kernel/rcu/tree.c
2025-10-31T05:25:17.9794007Z patching file kernel/rcu/tree.h
2025-10-31T05:25:17.9795252Z patching file kernel/rcu/tree_exp.h
2025-10-31T05:25:17.9797312Z patching file kernel/rcu/tree_plugin.h
2025-10-31T05:25:17.9799849Z patching file kernel/rcu/tree_stall.h
2025-10-31T05:25:17.9801217Z patching file kernel/rcu/update.c
2025-10-31T05:25:17.9802529Z patching file kernel/reboot.c
2025-10-31T05:25:17.9803870Z patching file kernel/relay.c
2025-10-31T05:25:17.9805881Z patching file kernel/resource.c
2025-10-31T05:25:17.9807862Z patching file kernel/rseq.c
2025-10-31T05:25:17.9809146Z patching file kernel/scftorture.c
2025-10-31T05:25:17.9812378Z patching file kernel/sched/core.c
2025-10-31T05:25:17.9818460Z patching file kernel/sched/cpuacct.c
2025-10-31T05:25:17.9819801Z patching file kernel/sched/cpufreq_schedutil.c
2025-10-31T05:25:17.9821568Z patching file kernel/sched/cputime.c
2025-10-31T05:25:17.9823692Z patching file kernel/sched/deadline.c
2025-10-31T05:25:17.9826399Z patching file kernel/sched/debug.c
2025-10-31T05:25:17.9830636Z patching file kernel/sched/fair.c
2025-10-31T05:25:17.9839535Z patching file kernel/sched/features.h
2025-10-31T05:25:17.9840307Z patching file kernel/sched/idle.c
2025-10-31T05:25:17.9841313Z patching file kernel/sched/membarrier.c
2025-10-31T05:25:17.9842520Z patching file kernel/sched/pelt.h
2025-10-31T05:25:17.9843821Z patching file kernel/sched/psi.c
2025-10-31T05:25:17.9846332Z patching file kernel/sched/rt.c
2025-10-31T05:25:17.9849331Z patching file kernel/sched/sched.h
2025-10-31T05:25:17.9852522Z patching file kernel/sched/topology.c
2025-10-31T05:25:17.9854717Z patching file kernel/sched/wait.c
2025-10-31T05:25:17.9856380Z patching file kernel/seccomp.c
2025-10-31T05:25:17.9859359Z patching file kernel/signal.c
2025-10-31T05:25:17.9862854Z patching file kernel/smp.c
2025-10-31T05:25:17.9864566Z patching file kernel/smpboot.c
2025-10-31T05:25:17.9865574Z patching file kernel/stackleak.c
2025-10-31T05:25:17.9866551Z patching file kernel/static_call.c
2025-10-31T05:25:17.9868716Z patching file kernel/sys.c
2025-10-31T05:25:17.9871190Z patching file kernel/sys_ni.c
2025-10-31T05:25:17.9873096Z patching file kernel/sysctl.c
2025-10-31T05:25:17.9876849Z patching file kernel/task_work.c
2025-10-31T05:25:17.9878104Z patching file kernel/time/alarmtimer.c
2025-10-31T05:25:17.9879822Z patching file kernel/time/clocksource.c
2025-10-31T05:25:17.9882564Z patching file kernel/time/hrtimer.c
2025-10-31T05:25:17.9885534Z patching file kernel/time/jiffies.c
2025-10-31T05:25:17.9886401Z patching file kernel/time/ntp.c
2025-10-31T05:25:17.9887621Z patching file kernel/time/posix-clock.c
2025-10-31T05:25:17.9888838Z patching file kernel/time/posix-cpu-timers.c
2025-10-31T05:25:17.9890876Z patching file kernel/time/posix-stubs.c
2025-10-31T05:25:17.9892089Z patching file kernel/time/posix-timers.c
2025-10-31T05:25:17.9894196Z patching file kernel/time/tick-broadcast.c
2025-10-31T05:25:17.9895415Z patching file kernel/time/tick-common.c
2025-10-31T05:25:17.9896600Z patching file kernel/time/tick-internal.h
2025-10-31T05:25:17.9897721Z patching file kernel/time/tick-sched.c
2025-10-31T05:25:17.9899901Z patching file kernel/time/tick-sched.h
2025-10-31T05:25:17.9900732Z patching file kernel/time/time.c
2025-10-31T05:25:17.9902628Z patching file kernel/time/timekeeping.c
2025-10-31T05:25:17.9905305Z patching file kernel/time/timer.c
2025-10-31T05:25:17.9908892Z patching file kernel/torture.c
2025-10-31T05:25:17.9910146Z patching file kernel/trace/Kconfig
2025-10-31T05:25:17.9912134Z patching file kernel/trace/blktrace.c
2025-10-31T05:25:17.9914621Z patching file kernel/trace/bpf_trace.c
2025-10-31T05:25:17.9917157Z patching file kernel/trace/fgraph.c
2025-10-31T05:25:17.9920597Z patching file kernel/trace/ftrace.c
2025-10-31T05:25:17.9925918Z patching file kernel/trace/kprobe_event_gen_test.c
2025-10-31T05:25:17.9927066Z patching file kernel/trace/preemptirq_delay_test.c
2025-10-31T05:25:17.9929447Z patching file kernel/trace/ring_buffer.c
2025-10-31T05:25:17.9935432Z patching file kernel/trace/synth_event_gen_test.c
2025-10-31T05:25:17.9938689Z patching file kernel/trace/trace.c
2025-10-31T05:25:17.9947618Z patching file kernel/trace/trace.h
2025-10-31T05:25:17.9950037Z patching file kernel/trace/trace_boot.c
2025-10-31T05:25:17.9950881Z patching file kernel/trace/trace_clock.c
2025-10-31T05:25:17.9952163Z patching file kernel/trace/trace_dynevent.c
2025-10-31T05:25:17.9953306Z patching file kernel/trace/trace_event_perf.c
2025-10-31T05:25:17.9955294Z patching file kernel/trace/trace_events.c
2025-10-31T05:25:17.9958593Z patching file kernel/trace/trace_events_filter.c
2025-10-31T05:25:17.9962167Z patching file kernel/trace/trace_events_hist.c
2025-10-31T05:25:17.9966211Z patching file kernel/trace/trace_events_inject.c
2025-10-31T05:25:17.9967423Z patching file kernel/trace/trace_events_synth.c
2025-10-31T05:25:17.9970017Z patching file kernel/trace/trace_events_trigger.c
2025-10-31T05:25:17.9971759Z patching file kernel/trace/trace_functions.c
2025-10-31T05:25:17.9973219Z patching file kernel/trace/trace_functions_graph.c
2025-10-31T05:25:17.9974662Z patching file kernel/trace/trace_irqsoff.c
2025-10-31T05:25:17.9976359Z patching file kernel/trace/trace_kprobe.c
2025-10-31T05:25:17.9978967Z patching file kernel/trace/trace_output.c
2025-10-31T05:25:17.9980244Z patching file kernel/trace/trace_preemptirq.c
2025-10-31T05:25:17.9981258Z patching file kernel/trace/trace_probe.c
2025-10-31T05:25:17.9982835Z patching file kernel/trace/trace_probe.h
2025-10-31T05:25:17.9984039Z patching file kernel/trace/trace_probe_tmpl.h
2025-10-31T05:25:17.9985304Z patching file kernel/trace/trace_selftest.c
2025-10-31T05:25:17.9986454Z patching file kernel/trace/trace_synth.h
2025-10-31T05:25:17.9987597Z patching file kernel/trace/trace_uprobe.c
2025-10-31T05:25:17.9989606Z patching file kernel/trace/tracing_map.c
2025-10-31T05:25:17.9991429Z patching file kernel/tracepoint.c
2025-10-31T05:25:17.9993612Z patching file kernel/tsacct.c
2025-10-31T05:25:17.9994354Z patching file kernel/ucount.c
2025-10-31T05:25:17.9995256Z patching file kernel/up.c
2025-10-31T05:25:17.9996347Z patching file kernel/user_namespace.c
2025-10-31T05:25:17.9998033Z patching file kernel/usermode_driver.c
2025-10-31T05:25:17.9998894Z patching file kernel/watch_queue.c
2025-10-31T05:25:18.0000840Z patching file kernel/watchdog.c
2025-10-31T05:25:18.0002643Z patching file kernel/watchdog_hld.c
2025-10-31T05:25:18.0005170Z patching file kernel/workqueue.c
2025-10-31T05:25:18.0009805Z patching file lib/842/842_compress.c
2025-10-31T05:25:18.0010861Z patching file lib/Kconfig
2025-10-31T05:25:18.0012842Z patching file lib/Kconfig.debug
2025-10-31T05:25:18.0015226Z patching file lib/Makefile
2025-10-31T05:25:18.0016500Z patching file lib/assoc_array.c
2025-10-31T05:25:18.0018696Z patching file lib/bitmap.c
2025-10-31T05:25:18.0020341Z patching file lib/btree.c
2025-10-31T05:25:18.0021340Z patching file lib/bug.c
2025-10-31T05:25:18.0022458Z patching file lib/clz_ctz.c
2025-10-31T05:25:18.0023346Z patching file lib/cpu_rmap.c
2025-10-31T05:25:18.0024328Z patching file lib/cpumask.c
2025-10-31T05:25:18.0025288Z patching file lib/crypto/Kconfig
2025-10-31T05:25:18.0026245Z patching file lib/crypto/Makefile
2025-10-31T05:25:18.0027047Z patching file lib/crypto/blake2s-generic.c
2025-10-31T05:25:18.0027953Z patching file lib/crypto/blake2s-selftest.c
2025-10-31T05:25:18.0029142Z patching file lib/crypto/blake2s.c
2025-10-31T05:25:18.0030114Z patching file lib/crypto/poly1305-donna32.c
2025-10-31T05:25:18.0030938Z patching file lib/crypto/poly1305-donna64.c
2025-10-31T05:25:18.0031752Z patching file lib/crypto/poly1305.c
2025-10-31T05:25:18.0032656Z patching file lib/debug_locks.c
2025-10-31T05:25:18.0033736Z patching file lib/debugobjects.c
2025-10-31T05:25:18.0036861Z patching file lib/decompress_bunzip2.c
2025-10-31T05:25:18.0037763Z patching file lib/decompress_unlz4.c
2025-10-31T05:25:18.0038832Z patching file lib/decompress_unlzma.c
2025-10-31T05:25:18.0039972Z patching file lib/decompress_unxz.c
2025-10-31T05:25:18.0040916Z patching file lib/dim/dim.c
2025-10-31T05:25:18.0041640Z patching file lib/dim/net_dim.c
2025-10-31T05:25:18.0042851Z patching file lib/dim/rdma_dim.c
2025-10-31T05:25:18.0043951Z patching file lib/dynamic_debug.c
2025-10-31T05:25:18.0045520Z patching file lib/dynamic_queue_limits.c
2025-10-31T05:25:18.0046299Z patching file lib/errname.c
2025-10-31T05:25:18.0047292Z patching file lib/fonts/fonts.c
2025-10-31T05:25:18.0048351Z patching file lib/genalloc.c
2025-10-31T05:25:18.0049899Z patching file lib/generic-radix-tree.c
2025-10-31T05:25:18.0050751Z patching file lib/hexdump.c
2025-10-31T05:25:18.0052127Z patching file lib/idr.c
2025-10-31T05:25:18.0053949Z patching file lib/iov_iter.c
2025-10-31T05:25:18.0056835Z patching file lib/kobject.c
2025-10-31T05:25:18.0058471Z patching file lib/kobject_uevent.c
2025-10-31T05:25:18.0059623Z patching file lib/kstrtox.c
2025-10-31T05:25:18.0060761Z patching file lib/kstrtox.h
2025-10-31T05:25:18.0061539Z patching file lib/kunit/try-catch.c
2025-10-31T05:25:18.0062497Z patching file lib/list_debug.c
2025-10-31T05:25:18.0063561Z patching file lib/list_sort.c
2025-10-31T05:25:18.0064726Z patching file lib/livepatch/test_klp_callbacks_busy.c
2025-10-31T05:25:18.0066014Z patching file lib/locking-selftest.c
2025-10-31T05:25:18.0073374Z patching file lib/lockref.c
2025-10-31T05:25:18.0074048Z patching file lib/logic_pio.c
2025-10-31T05:25:18.0074537Z patching file lib/lz4/lz4_decompress.c
2025-10-31T05:25:18.0075223Z patching file lib/lz4/lz4defs.h
2025-10-31T05:25:18.0075876Z patching file lib/math/div64.c
2025-10-31T05:25:18.0076855Z patching file lib/math/prime_numbers.c
2025-10-31T05:25:18.0077637Z patching file lib/math/rational.c
2025-10-31T05:25:18.0078391Z patching file lib/memneq.c
2025-10-31T05:25:18.0079101Z patching file lib/mpi/ec.c
2025-10-31T05:25:18.0079753Z patching file lib/mpi/mpi-cmp.c
2025-10-31T05:25:18.0080448Z patching file lib/mpi/mpi-mod.c
2025-10-31T05:25:18.0081057Z patching file lib/mpi/mpicoder.c
2025-10-31T05:25:18.0081700Z patching file lib/mpi/mpiutil.c
2025-10-31T05:25:18.0082573Z patching file lib/nlattr.c
2025-10-31T05:25:18.0083188Z patching file lib/nodemask.c
2025-10-31T05:25:18.0083847Z patching file lib/notifier-error-inject.c
2025-10-31T05:25:18.0084533Z patching file lib/objagg.c
2025-10-31T05:25:18.0085150Z patching file lib/once.c
2025-10-31T05:25:18.0086169Z patching file lib/parser.c
2025-10-31T05:25:18.0087217Z patching file lib/percpu-refcount.c
2025-10-31T05:25:18.0088612Z patching file lib/radix-tree.c
2025-10-31T05:25:18.0090264Z patching file lib/raid6/Makefile
2025-10-31T05:25:18.0091032Z patching file lib/raid6/test/Makefile
2025-10-31T05:25:18.0091816Z patching file lib/raid6/test/test.c
2025-10-31T05:25:18.0092900Z patching file lib/random32.c
2025-10-31T05:25:18.0094124Z patching file lib/ratelimit.c
2025-10-31T05:25:18.0095115Z patching file lib/seq_buf.c
2025-10-31T05:25:18.0096165Z patching file lib/sg_split.c
2025-10-31T05:25:18.0097094Z patching file lib/sha1.c
2025-10-31T05:25:18.0098304Z patching file lib/siphash.c
2025-10-31T05:25:18.0099629Z patching file lib/smp_processor_id.c
2025-10-31T05:25:18.0100469Z patching file lib/stackdepot.c
2025-10-31T05:25:18.0101667Z patching file lib/string_helpers.c
2025-10-31T05:25:18.0102924Z patching file lib/test_blackhole_dev.c
2025-10-31T05:25:18.0105244Z patching file lib/test_bpf.c
2025-10-31T05:25:18.0108678Z patching file lib/test_firmware.c
2025-10-31T05:25:18.0110835Z patching file lib/test_hmm.c
2025-10-31T05:25:18.0112199Z patching file lib/test_ida.c
2025-10-31T05:25:18.0113446Z patching file lib/test_kasan.c
2025-10-31T05:25:18.0115218Z patching file lib/test_kmod.c
2025-10-31T05:25:18.0116539Z patching file lib/test_list_sort.c
2025-10-31T05:25:18.0117470Z patching file lib/test_lockup.c
2025-10-31T05:25:18.0118728Z patching file lib/test_meminit.c
2025-10-31T05:25:18.0119792Z patching file lib/test_objagg.c
2025-10-31T05:25:18.0121207Z patching file lib/test_overflow.c
2025-10-31T05:25:18.0122885Z patching file lib/test_stackinit.c
2025-10-31T05:25:18.0124827Z patching file lib/test_ubsan.c
2025-10-31T05:25:18.0125630Z patching file lib/test_xarray.c
2025-10-31T05:25:18.0128290Z patching file lib/ts_bm.c
2025-10-31T05:25:18.0128950Z patching file lib/ubsan.c
2025-10-31T05:25:18.0133384Z patching file lib/ubsan.h
2025-10-31T05:25:18.0133749Z patching file lib/usercopy.c
2025-10-31T05:25:18.0134092Z patching file lib/vdso/Makefile
2025-10-31T05:25:18.0134449Z patching file lib/vdso/gettimeofday.c
2025-10-31T05:25:18.0135621Z patching file lib/vsprintf.c
2025-10-31T05:25:18.0139878Z patching file lib/xarray.c
2025-10-31T05:25:18.0142307Z patching file lib/xz/xz_crc32.c
2025-10-31T05:25:18.0143113Z patching file lib/xz/xz_dec_lzma2.c
2025-10-31T05:25:18.0145073Z patching file lib/xz/xz_dec_stream.c
2025-10-31T05:25:18.0146082Z patching file lib/xz/xz_private.h
2025-10-31T05:25:18.0146974Z patching file lib/zlib_dfltcc/Makefile
2025-10-31T05:25:18.0147605Z patching file lib/zlib_dfltcc/dfltcc.c
2025-10-31T05:25:18.0148532Z patching file lib/zlib_dfltcc/dfltcc_deflate.c
2025-10-31T05:25:18.0149553Z patching file lib/zlib_dfltcc/dfltcc_inflate.c
2025-10-31T05:25:18.0150408Z patching file lib/zlib_dfltcc/dfltcc_syms.c
2025-10-31T05:25:18.0151402Z patching file lib/zstd/zstd_internal.h
2025-10-31T05:25:18.0153223Z patching file mm/backing-dev.c
2025-10-31T05:25:18.0154915Z patching file mm/cma.c
2025-10-31T05:25:18.0156829Z patching file mm/compaction.c
2025-10-31T05:25:18.0159930Z patching file mm/debug_vm_pgtable.c
2025-10-31T05:25:18.0163467Z patching file mm/filemap.c
2025-10-31T05:25:18.0166344Z patching file mm/frame_vector.c
2025-10-31T05:25:18.0168182Z patching file mm/gup.c
2025-10-31T05:25:18.0171937Z patching file mm/hmm.c
2025-10-31T05:25:18.0174280Z patching file mm/huge_memory.c
2025-10-31T05:25:18.0179131Z patching file mm/hugetlb.c
2025-10-31T05:25:18.0185997Z patching file mm/hugetlb_cgroup.c
2025-10-31T05:25:18.0187111Z patching file mm/init-mm.c
2025-10-31T05:25:18.0188204Z patching file mm/internal.h
2025-10-31T05:25:18.0190168Z patching file mm/kasan/init.c
2025-10-31T05:25:18.0191056Z patching file mm/kasan/quarantine.c
2025-10-31T05:25:18.0192563Z patching file mm/kasan/report.c
2025-10-31T05:25:18.0194756Z patching file mm/khugepaged.c
2025-10-31T05:25:18.0197961Z patching file mm/kmemleak.c
2025-10-31T05:25:18.0203377Z patching file mm/ksm.c
2025-10-31T05:25:18.0203705Z patching file mm/maccess.c
2025-10-31T05:25:18.0204405Z patching file mm/madvise.c
2025-10-31T05:25:18.0212770Z patching file mm/memblock.c
2025-10-31T05:25:18.0213791Z patching file mm/memcontrol.c
2025-10-31T05:25:18.0217068Z patching file mm/memfd.c
2025-10-31T05:25:18.0219033Z patching file mm/memory-failure.c
2025-10-31T05:25:18.0223405Z patching file mm/memory.c
2025-10-31T05:25:18.0229011Z patching file mm/memory_hotplug.c
2025-10-31T05:25:18.0232552Z patching file mm/mempolicy.c
2025-10-31T05:25:18.0235156Z patching file mm/memremap.c
2025-10-31T05:25:18.0236087Z patching file mm/memtest.c
2025-10-31T05:25:18.0238032Z patching file mm/migrate.c
2025-10-31T05:25:18.0240655Z patching file mm/mincore.c
2025-10-31T05:25:18.0242724Z patching file mm/mmap.c
2025-10-31T05:25:18.0245951Z patching file mm/mmu_gather.c
2025-10-31T05:25:18.0247207Z patching file mm/mmu_notifier.c
2025-10-31T05:25:18.0248680Z patching file mm/mmzone.c
2025-10-31T05:25:18.0249630Z patching file mm/mprotect.c
2025-10-31T05:25:18.0251046Z patching file mm/mremap.c
2025-10-31T05:25:18.0252875Z patching file mm/nommu.c
2025-10-31T05:25:18.0254795Z patching file mm/oom_kill.c
2025-10-31T05:25:18.0257278Z patching file mm/page-writeback.c
2025-10-31T05:25:18.0261673Z patching file mm/page_alloc.c
2025-10-31T05:25:18.0268365Z patching file mm/page_io.c
2025-10-31T05:25:18.0269564Z patching file mm/page_vma_mapped.c
2025-10-31T05:25:18.0271169Z patching file mm/pagewalk.c
2025-10-31T05:25:18.0272924Z patching file mm/percpu-internal.h
2025-10-31T05:25:18.0273585Z patching file mm/percpu-stats.c
2025-10-31T05:25:18.0275534Z patching file mm/percpu.c
2025-10-31T05:25:18.0277870Z patching file mm/pgtable-generic.c
2025-10-31T05:25:18.0278722Z patching file mm/process_vm_access.c
2025-10-31T05:25:18.0279702Z patching file mm/ptdump.c
2025-10-31T05:25:18.0280714Z patching file mm/readahead.c
2025-10-31T05:25:18.0282397Z patching file mm/rmap.c
2025-10-31T05:25:18.0285884Z patching file mm/shmem.c
2025-10-31T05:25:18.0289913Z patching file mm/slab.c
2025-10-31T05:25:18.0292525Z patching file mm/slab.h
2025-10-31T05:25:18.0294237Z patching file mm/slab_common.c
2025-10-31T05:25:18.0295885Z patching file mm/slob.c
2025-10-31T05:25:18.0298347Z patching file mm/slub.c
2025-10-31T05:25:18.0302612Z patching file mm/sparse.c
2025-10-31T05:25:18.0304152Z patching file mm/swap_state.c
2025-10-31T05:25:18.0306230Z patching file mm/swapfile.c
2025-10-31T05:25:18.0309845Z patching file mm/truncate.c
2025-10-31T05:25:18.0311261Z patching file mm/usercopy.c
2025-10-31T05:25:18.0313538Z patching file mm/userfaultfd.c
2025-10-31T05:25:18.0314100Z patching file mm/util.c
2025-10-31T05:25:18.0316620Z patching file mm/vmalloc.c
2025-10-31T05:25:18.0319996Z patching file mm/vmscan.c
2025-10-31T05:25:18.0323947Z patching file mm/vmstat.c
2025-10-31T05:25:18.0325966Z patching file mm/z3fold.c
2025-10-31T05:25:18.0329068Z patching file mm/zsmalloc.c
2025-10-31T05:25:18.0331523Z patching file net/6lowpan/debugfs.c
2025-10-31T05:25:18.0332410Z patching file net/802/garp.c
2025-10-31T05:25:18.0333852Z patching file net/802/mrp.c
2025-10-31T05:25:18.0335166Z patching file net/802/psnap.c
2025-10-31T05:25:18.0336021Z patching file net/8021q/vlan.c
2025-10-31T05:25:18.0337317Z patching file net/8021q/vlan.h
2025-10-31T05:25:18.0338220Z patching file net/8021q/vlan_core.c
2025-10-31T05:25:18.0339558Z patching file net/8021q/vlan_dev.c
2025-10-31T05:25:18.0340972Z patching file net/8021q/vlan_netlink.c
2025-10-31T05:25:18.0342512Z patching file net/9p/client.c
2025-10-31T05:25:18.0344504Z patching file net/9p/protocol.c
2025-10-31T05:25:18.0345797Z patching file net/9p/trans_fd.c
2025-10-31T05:25:18.0347351Z patching file net/9p/trans_rdma.c
2025-10-31T05:25:18.0348620Z patching file net/9p/trans_virtio.c
2025-10-31T05:25:18.0349692Z patching file net/9p/trans_xen.c
2025-10-31T05:25:18.0351368Z patching file net/Kconfig
2025-10-31T05:25:18.0352477Z patching file net/Makefile
2025-10-31T05:25:18.0353440Z patching file net/appletalk/aarp.c
2025-10-31T05:25:18.0355306Z patching file net/appletalk/ddp.c
2025-10-31T05:25:18.0357286Z patching file net/atm/clip.c
2025-10-31T05:25:18.0358946Z patching file net/atm/common.c
2025-10-31T05:25:18.0359995Z patching file net/atm/ioctl.c
2025-10-31T05:25:18.0361503Z patching file net/atm/lec.c
2025-10-31T05:25:18.0363965Z patching file net/atm/mpc.c
2025-10-31T05:25:18.0365393Z patching file net/atm/mpoa_proc.c
2025-10-31T05:25:18.0366034Z patching file net/atm/raw.c
2025-10-31T05:25:18.0366823Z patching file net/atm/resources.c
2025-10-31T05:25:18.0368400Z patching file net/ax25/af_ax25.c
2025-10-31T05:25:18.0370357Z patching file net/ax25/ax25_dev.c
2025-10-31T05:25:18.0371299Z patching file net/ax25/ax25_in.c
2025-10-31T05:25:18.0372345Z patching file net/ax25/ax25_route.c
2025-10-31T05:25:18.0373750Z patching file net/ax25/ax25_subr.c
2025-10-31T05:25:18.0375416Z patching file net/batman-adv/bat_iv_ogm.c
2025-10-31T05:25:18.0377642Z patching file net/batman-adv/bat_v.c
2025-10-31T05:25:18.0378982Z patching file net/batman-adv/bat_v_elp.c
2025-10-31T05:25:18.0380630Z patching file net/batman-adv/bat_v_elp.h
2025-10-31T05:25:18.0381488Z patching file net/batman-adv/bat_v_ogm.c
2025-10-31T05:25:18.0383967Z patching file net/batman-adv/bridge_loop_avoidance.c
2025-10-31T05:25:18.0386336Z patching file net/batman-adv/distributed-arp-table.c
2025-10-31T05:25:18.0388042Z patching file net/batman-adv/fragmentation.c
2025-10-31T05:25:18.0389350Z patching file net/batman-adv/gateway_client.c
2025-10-31T05:25:18.0390551Z patching file net/batman-adv/gateway_client.h
2025-10-31T05:25:18.0391224Z patching file net/batman-adv/gateway_common.c
2025-10-31T05:25:18.0392495Z patching file net/batman-adv/hard-interface.c
2025-10-31T05:25:18.0394110Z patching file net/batman-adv/hard-interface.h
2025-10-31T05:25:18.0394827Z patching file net/batman-adv/icmp_socket.c
2025-10-31T05:25:18.0395890Z patching file net/batman-adv/main.c
2025-10-31T05:25:18.0397936Z patching file net/batman-adv/multicast.c
2025-10-31T05:25:18.0399999Z patching file net/batman-adv/multicast.h
2025-10-31T05:25:18.0401195Z patching file net/batman-adv/netlink.c
2025-10-31T05:25:18.0403652Z patching file net/batman-adv/network-coding.c
2025-10-31T05:25:18.0405712Z patching file net/batman-adv/originator.c
2025-10-31T05:25:18.0407639Z patching file net/batman-adv/originator.h
2025-10-31T05:25:18.0409135Z patching file net/batman-adv/soft-interface.c
2025-10-31T05:25:18.0410593Z patching file net/batman-adv/soft-interface.h
2025-10-31T05:25:18.0411652Z patching file net/batman-adv/tp_meter.c
2025-10-31T05:25:18.0414575Z patching file net/batman-adv/translation-table.c
2025-10-31T05:25:18.0417856Z patching file net/batman-adv/translation-table.h
2025-10-31T05:25:18.0418660Z patching file net/batman-adv/tvlv.c
2025-10-31T05:25:18.0420395Z patching file net/batman-adv/types.h
2025-10-31T05:25:18.0422783Z patching file net/bluetooth/6lowpan.c
2025-10-31T05:25:18.0424328Z patching file net/bluetooth/a2mp.c
2025-10-31T05:25:18.0425701Z patching file net/bluetooth/af_bluetooth.c
2025-10-31T05:25:18.0426997Z patching file net/bluetooth/amp.c
2025-10-31T05:25:18.0428071Z patching file net/bluetooth/bnep/core.c
2025-10-31T05:25:18.0429257Z patching file net/bluetooth/cmtp/cmtp.h
2025-10-31T05:25:18.0429949Z patching file net/bluetooth/cmtp/core.c
2025-10-31T05:25:18.0430973Z patching file net/bluetooth/ecdh_helper.h
2025-10-31T05:25:18.0432338Z patching file net/bluetooth/hci_conn.c
2025-10-31T05:25:18.0435607Z patching file net/bluetooth/hci_core.c
2025-10-31T05:25:18.0439586Z patching file net/bluetooth/hci_debugfs.c
2025-10-31T05:25:18.0442658Z patching file net/bluetooth/hci_event.c
2025-10-31T05:25:18.0448548Z patching file net/bluetooth/hci_request.c
2025-10-31T05:25:18.0452422Z patching file net/bluetooth/hci_sock.c
2025-10-31T05:25:18.0454669Z patching file net/bluetooth/hci_sysfs.c
2025-10-31T05:25:18.0456040Z patching file net/bluetooth/hidp/core.c
2025-10-31T05:25:18.0459402Z patching file net/bluetooth/l2cap_core.c
2025-10-31T05:25:18.0466205Z patching file net/bluetooth/l2cap_sock.c
2025-10-31T05:25:18.0470573Z patching file net/bluetooth/mgmt.c
2025-10-31T05:25:18.0475518Z patching file net/bluetooth/mgmt_config.c
2025-10-31T05:25:18.0476937Z patching file net/bluetooth/rfcomm/core.c
2025-10-31T05:25:18.0478861Z patching file net/bluetooth/rfcomm/sock.c
2025-10-31T05:25:18.0480576Z patching file net/bluetooth/sco.c
2025-10-31T05:25:18.0483642Z patching file net/bluetooth/smp.c
2025-10-31T05:25:18.0488224Z patching file net/bluetooth/smp.h
2025-10-31T05:25:18.0489205Z patching file net/bpf/test_run.c
2025-10-31T05:25:18.0491158Z patching file net/bpfilter/main.c
2025-10-31T05:25:18.0491875Z patching file net/bridge/br.c
2025-10-31T05:25:18.0493089Z patching file net/bridge/br_arp_nd_proxy.c
2025-10-31T05:25:18.0494066Z patching file net/bridge/br_device.c
2025-10-31T05:25:18.0496044Z patching file net/bridge/br_fdb.c
2025-10-31T05:25:18.0497576Z patching file net/bridge/br_forward.c
2025-10-31T05:25:18.0498558Z patching file net/bridge/br_if.c
2025-10-31T05:25:18.0499950Z patching file net/bridge/br_input.c
2025-10-31T05:25:18.0501238Z patching file net/bridge/br_mrp.c
2025-10-31T05:25:18.0502754Z patching file net/bridge/br_mrp_switchdev.c
2025-10-31T05:25:18.0504647Z patching file net/bridge/br_multicast.c
2025-10-31T05:25:18.0507406Z patching file net/bridge/br_netfilter_hooks.c
2025-10-31T05:25:18.0508958Z patching file net/bridge/br_netfilter_ipv6.c
2025-10-31T05:25:18.0510204Z patching file net/bridge/br_netlink.c
2025-10-31T05:25:18.0512086Z patching file net/bridge/br_nf_core.c
2025-10-31T05:25:18.0512983Z patching file net/bridge/br_private.h
2025-10-31T05:25:18.0514592Z patching file net/bridge/br_private_mrp.h
2025-10-31T05:25:18.0515172Z patching file net/bridge/br_private_tunnel.h
2025-10-31T05:25:18.0516044Z patching file net/bridge/br_stp_if.c
2025-10-31T05:25:18.0516924Z patching file net/bridge/br_switchdev.c
2025-10-31T05:25:18.0517830Z patching file net/bridge/br_sysfs_if.c
2025-10-31T05:25:18.0519349Z patching file net/bridge/br_vlan.c
2025-10-31T05:25:18.0521166Z patching file net/bridge/br_vlan_tunnel.c
2025-10-31T05:25:18.0522357Z patching file net/bridge/netfilter/ebtable_broute.c
2025-10-31T05:25:18.0523232Z patching file net/bridge/netfilter/ebtable_filter.c
2025-10-31T05:25:18.0524138Z patching file net/bridge/netfilter/ebtable_nat.c
2025-10-31T05:25:18.0525627Z patching file net/bridge/netfilter/ebtables.c
2025-10-31T05:25:18.0527760Z patching file net/bridge/netfilter/nf_conntrack_bridge.c
2025-10-31T05:25:18.0528647Z patching file net/bridge/netfilter/nft_meta_bridge.c
2025-10-31T05:25:18.0529525Z patching file net/bridge/netfilter/nft_reject_bridge.c
2025-10-31T05:25:18.0530688Z patching file net/caif/caif_dev.c
2025-10-31T05:25:18.0532221Z patching file net/caif/caif_socket.c
2025-10-31T05:25:18.0533561Z patching file net/caif/caif_usb.c
2025-10-31T05:25:18.0534486Z patching file net/caif/cfcnfg.c
2025-10-31T05:25:18.0535778Z patching file net/caif/cfctrl.c
2025-10-31T05:25:18.0537319Z patching file net/caif/cfserl.c
2025-10-31T05:25:18.0538042Z patching file net/caif/chnl_net.c
2025-10-31T05:25:18.0539528Z patching file net/can/af_can.c
2025-10-31T05:25:18.0541022Z patching file net/can/af_can.h
2025-10-31T05:25:18.0542168Z patching file net/can/bcm.c
2025-10-31T05:25:18.0545173Z patching file net/can/gw.c
2025-10-31T05:25:18.0547528Z patching file net/can/isotp.c
2025-10-31T05:25:18.0551235Z patching file net/can/j1939/address-claim.c
2025-10-31T05:25:18.0552137Z patching file net/can/j1939/bus.c
2025-10-31T05:25:18.0553124Z patching file net/can/j1939/j1939-priv.h
2025-10-31T05:25:18.0554056Z patching file net/can/j1939/main.c
2025-10-31T05:25:18.0555830Z patching file net/can/j1939/socket.c
2025-10-31T05:25:18.0557928Z patching file net/can/j1939/transport.c
2025-10-31T05:25:18.0560552Z patching file net/can/proc.c
2025-10-31T05:25:18.0562169Z patching file net/can/raw.c
2025-10-31T05:25:18.0564792Z patching file net/ceph/messenger.c
2025-10-31T05:25:18.0567945Z patching file net/ceph/mon_client.c
2025-10-31T05:25:18.0570234Z patching file net/ceph/osd_client.c
2025-10-31T05:25:18.0574603Z patching file net/compat.c
2025-10-31T05:25:18.0575522Z patching file net/core/Makefile
2025-10-31T05:25:18.0576490Z patching file net/core/bpf_sk_storage.c
2025-10-31T05:25:18.0578105Z patching file net/core/datagram.c
2025-10-31T05:25:18.0582179Z patching file net/core/dev.c
2025-10-31T05:25:18.0589476Z patching file net/core/dev_ioctl.c
2025-10-31T05:25:18.0593432Z patching file net/core/devlink.c
2025-10-31T05:25:18.0599293Z patching file net/core/drop_monitor.c
2025-10-31T05:25:18.0601279Z patching file net/core/dst.c
2025-10-31T05:25:18.0602856Z patching file net/core/dst_cache.c
2025-10-31T05:25:18.0603998Z patching file net/core/fib_rules.c
2025-10-31T05:25:18.0607896Z patching file net/core/filter.c
2025-10-31T05:25:18.0616124Z patching file net/core/flow_dissector.c
2025-10-31T05:25:18.0618232Z patching file net/core/flow_offload.c
2025-10-31T05:25:18.0619718Z patching file net/core/gen_estimator.c
2025-10-31T05:25:18.0620480Z patching file net/core/gro_cells.c
2025-10-31T05:25:18.0621373Z patching file net/core/link_watch.c
2025-10-31T05:25:18.0622544Z patching file net/core/lwt_bpf.c
2025-10-31T05:25:18.0630900Z patching file net/core/lwtunnel.c
2025-10-31T05:25:18.0631230Z patching file net/core/neighbour.c
2025-10-31T05:25:18.0631562Z patching file net/core/net-procfs.c
2025-10-31T05:25:18.0632363Z patching file net/core/net-sysfs.c
2025-10-31T05:25:18.0635596Z patching file net/core/net_namespace.c
2025-10-31T05:25:18.0638394Z patching file net/core/netclassid_cgroup.c
2025-10-31T05:25:18.0639046Z patching file net/core/netpoll.c
2025-10-31T05:25:18.0640913Z patching file net/core/netprio_cgroup.c
2025-10-31T05:25:18.0642102Z patching file net/core/page_pool.c
2025-10-31T05:25:18.0644425Z patching file net/core/pktgen.c
2025-10-31T05:25:18.0647646Z patching file net/core/request_sock.c
2025-10-31T05:25:18.0649811Z patching file net/core/rtnetlink.c
2025-10-31T05:25:18.0656112Z patching file net/core/scm.c
2025-10-31T05:25:18.0657126Z patching file net/core/secure_seq.c
2025-10-31T05:25:18.0659940Z patching file net/core/skbuff.c
2025-10-31T05:25:18.0665393Z patching file net/core/skmsg.c
2025-10-31T05:25:18.0668631Z patching file net/core/sock.c
2025-10-31T05:25:18.0673380Z patching file net/core/sock_destructor.h
2025-10-31T05:25:18.0674420Z patching file net/core/sock_diag.c
2025-10-31T05:25:18.0676117Z patching file net/core/sock_map.c
2025-10-31T05:25:18.0678413Z patching file net/core/sock_reuseport.c
2025-10-31T05:25:18.0679300Z patching file net/core/stream.c
2025-10-31T05:25:18.0680809Z patching file net/core/sysctl_net_core.c
2025-10-31T05:25:18.0682308Z patching file net/core/utils.c
2025-10-31T05:25:18.0683875Z patching file net/core/xdp.c
2025-10-31T05:25:18.0686120Z patching file net/dcb/dcbnl.c
2025-10-31T05:25:18.0688418Z patching file net/dccp/dccp.h
2025-10-31T05:25:18.0689911Z patching file net/dccp/feat.c
2025-10-31T05:25:18.0692113Z patching file net/dccp/ipv4.c
2025-10-31T05:25:18.0693987Z patching file net/dccp/ipv6.c
2025-10-31T05:25:18.0696144Z patching file net/dccp/minisocks.c
2025-10-31T05:25:18.0696903Z patching file net/dccp/output.c
2025-10-31T05:25:18.0698616Z patching file net/dccp/proto.c
2025-10-31T05:25:18.0700815Z patching file net/decnet/Kconfig
2025-10-31T05:25:18.0701352Z patching file net/decnet/Makefile
2025-10-31T05:25:18.0702211Z patching file net/decnet/README
2025-10-31T05:25:18.0703574Z patching file net/decnet/af_decnet.c
2025-10-31T05:25:18.0708163Z patching file net/decnet/dn_dev.c
2025-10-31T05:25:18.0711612Z patching file net/decnet/dn_fib.c
2025-10-31T05:25:18.0714305Z patching file net/decnet/dn_neigh.c
2025-10-31T05:25:18.0716574Z patching file net/decnet/dn_nsp_in.c
2025-10-31T05:25:18.0719186Z patching file net/decnet/dn_nsp_out.c
2025-10-31T05:25:18.0721823Z patching file net/decnet/dn_route.c
2025-10-31T05:25:18.0726159Z patching file net/decnet/dn_rules.c
2025-10-31T05:25:18.0727471Z patching file net/decnet/dn_table.c
2025-10-31T05:25:18.0730062Z patching file net/decnet/dn_timer.c
2025-10-31T05:25:18.0730934Z patching file net/decnet/netfilter/Kconfig
2025-10-31T05:25:18.0731648Z patching file net/decnet/netfilter/Makefile
2025-10-31T05:25:18.0732578Z patching file net/decnet/netfilter/dn_rtmsg.c
2025-10-31T05:25:18.0733782Z patching file net/decnet/sysctl_net_decnet.c
2025-10-31T05:25:18.0735651Z patching file net/dns_resolver/dns_key.c
2025-10-31T05:25:18.0737115Z patching file net/dsa/dsa2.c
2025-10-31T05:25:18.0738901Z patching file net/dsa/master.c
2025-10-31T05:25:18.0739991Z patching file net/dsa/port.c
2025-10-31T05:25:18.0741846Z patching file net/dsa/slave.c
2025-10-31T05:25:18.0744500Z patching file net/dsa/switch.c
2025-10-31T05:25:18.0745141Z patching file net/dsa/tag_8021q.c
2025-10-31T05:25:18.0746238Z patching file net/dsa/tag_ar9331.c
2025-10-31T05:25:18.0747037Z patching file net/dsa/tag_brcm.c
2025-10-31T05:25:18.0747954Z patching file net/dsa/tag_dsa.c
2025-10-31T05:25:18.0748841Z patching file net/dsa/tag_edsa.c
2025-10-31T05:25:18.0749714Z patching file net/dsa/tag_gswip.c
2025-10-31T05:25:18.0750541Z patching file net/dsa/tag_ksz.c
2025-10-31T05:25:18.0752338Z patching file net/dsa/tag_lan9303.c
2025-10-31T05:25:18.0752939Z patching file net/dsa/tag_mtk.c
2025-10-31T05:25:18.0754038Z patching file net/dsa/tag_ocelot.c
2025-10-31T05:25:18.0754972Z patching file net/dsa/tag_qca.c
2025-10-31T05:25:18.0755841Z patching file net/dsa/tag_rtl4_a.c
2025-10-31T05:25:18.0756815Z patching file net/dsa/tag_sja1105.c
2025-10-31T05:25:18.0758050Z patching file net/dsa/tag_trailer.c
2025-10-31T05:25:18.0758876Z patching file net/ethernet/eth.c
2025-10-31T05:25:18.0760633Z patching file net/ethtool/bitset.c
2025-10-31T05:25:18.0762332Z patching file net/ethtool/channels.c
2025-10-31T05:25:18.0763536Z patching file net/ethtool/common.c
2025-10-31T05:25:18.0764524Z patching file net/ethtool/eee.c
2025-10-31T05:25:18.0765450Z patching file net/ethtool/features.c
2025-10-31T05:25:18.0767428Z patching file net/ethtool/ioctl.c
2025-10-31T05:25:18.0770437Z patching file net/ethtool/linkstate.c
2025-10-31T05:25:18.0771567Z patching file net/ethtool/netlink.c
2025-10-31T05:25:18.0773468Z patching file net/ethtool/netlink.h
2025-10-31T05:25:18.0774424Z patching file net/ethtool/pause.c
2025-10-31T05:25:18.0775451Z patching file net/ethtool/strset.c
2025-10-31T05:25:18.0776870Z patching file net/hsr/hsr_device.c
2025-10-31T05:25:18.0778826Z patching file net/hsr/hsr_forward.c
2025-10-31T05:25:18.0780614Z patching file net/hsr/hsr_forward.h
2025-10-31T05:25:18.0781219Z patching file net/hsr/hsr_framereg.c
2025-10-31T05:25:18.0783196Z patching file net/hsr/hsr_framereg.h
2025-10-31T05:25:18.0783746Z patching file net/hsr/hsr_main.c
2025-10-31T05:25:18.0784538Z patching file net/hsr/hsr_main.h
2025-10-31T05:25:18.0785845Z patching file net/hsr/hsr_slave.c
2025-10-31T05:25:18.0787022Z patching file net/ieee802154/nl-mac.c
2025-10-31T05:25:18.0788605Z patching file net/ieee802154/nl-phy.c
2025-10-31T05:25:18.0790273Z patching file net/ieee802154/nl802154.c
2025-10-31T05:25:18.0793399Z patching file net/ieee802154/socket.c
2025-10-31T05:25:18.0795284Z patching file net/ife/ife.c
2025-10-31T05:25:18.0796273Z patching file net/ipv4/Kconfig
2025-10-31T05:25:18.0797901Z patching file net/ipv4/Makefile
2025-10-31T05:25:18.0799073Z patching file net/ipv4/af_inet.c
2025-10-31T05:25:18.0802431Z patching file net/ipv4/ah4.c
2025-10-31T05:25:18.0803985Z patching file net/ipv4/arp.c
2025-10-31T05:25:18.0806392Z patching file net/ipv4/cipso_ipv4.c
2025-10-31T05:25:18.0808951Z patching file net/ipv4/datagram.c
2025-10-31T05:25:18.0810345Z patching file net/ipv4/devinet.c
2025-10-31T05:25:18.0813783Z patching file net/ipv4/esp4.c
2025-10-31T05:25:18.0815614Z patching file net/ipv4/esp4_offload.c
2025-10-31T05:25:18.0817227Z patching file net/ipv4/fib_frontend.c
2025-10-31T05:25:18.0819550Z patching file net/ipv4/fib_rules.c
2025-10-31T05:25:18.0821225Z patching file net/ipv4/fib_semantics.c
2025-10-31T05:25:18.0825440Z patching file net/ipv4/fib_trie.c
2025-10-31T05:25:18.0828245Z patching file net/ipv4/fou.c
2025-10-31T05:25:18.0830241Z patching file net/ipv4/gre_demux.c
2025-10-31T05:25:18.0830970Z patching file net/ipv4/gre_offload.c
2025-10-31T05:25:18.0832608Z patching file net/ipv4/icmp.c
2025-10-31T05:25:18.0835507Z patching file net/ipv4/igmp.c
2025-10-31T05:25:18.0839329Z patching file net/ipv4/inet_connection_sock.c
2025-10-31T05:25:18.0841865Z patching file net/ipv4/inet_diag.c
2025-10-31T05:25:18.0844103Z patching file net/ipv4/inet_fragment.c
2025-10-31T05:25:18.0846168Z patching file net/ipv4/inet_hashtables.c
2025-10-31T05:25:18.0848916Z patching file net/ipv4/inet_timewait_sock.c
2025-10-31T05:25:18.0849847Z patching file net/ipv4/inetpeer.c
2025-10-31T05:25:18.0850976Z patching file net/ipv4/ip_forward.c
2025-10-31T05:25:18.0852258Z patching file net/ipv4/ip_fragment.c
2025-10-31T05:25:18.0854248Z patching file net/ipv4/ip_gre.c
2025-10-31T05:25:18.0856812Z patching file net/ipv4/ip_input.c
2025-10-31T05:25:18.0858740Z patching file net/ipv4/ip_output.c
2025-10-31T05:25:18.0861598Z patching file net/ipv4/ip_sockglue.c
2025-10-31T05:25:18.0864785Z patching file net/ipv4/ip_tunnel.c
2025-10-31T05:25:18.0867291Z patching file net/ipv4/ip_tunnel_core.c
2025-10-31T05:25:18.0869118Z patching file net/ipv4/ip_vti.c
2025-10-31T05:25:18.0870839Z patching file net/ipv4/ipconfig.c
2025-10-31T05:25:18.0873846Z patching file net/ipv4/ipmr.c
2025-10-31T05:25:18.0876932Z patching file net/ipv4/ipmr_base.c
2025-10-31T05:25:18.0877796Z patching file net/ipv4/metrics.c
2025-10-31T05:25:18.0879520Z patching file net/ipv4/netfilter/arp_tables.c
2025-10-31T05:25:18.0881607Z patching file net/ipv4/netfilter/arptable_filter.c
2025-10-31T05:25:18.0882770Z patching file net/ipv4/netfilter/ip_tables.c
2025-10-31T05:25:18.0885463Z patching file net/ipv4/netfilter/ipt_CLUSTERIP.c
2025-10-31T05:25:18.0886542Z patching file net/ipv4/netfilter/ipt_REJECT.c
2025-10-31T05:25:18.0887384Z patching file net/ipv4/netfilter/ipt_rpfilter.c
2025-10-31T05:25:18.0888232Z patching file net/ipv4/netfilter/nf_dup_ipv4.c
2025-10-31T05:25:18.0889188Z patching file net/ipv4/netfilter/nf_reject_ipv4.c
2025-10-31T05:25:18.0890225Z patching file net/ipv4/netfilter/nf_tproxy_ipv4.c
2025-10-31T05:25:18.0891071Z patching file net/ipv4/netfilter/nft_dup_ipv4.c
2025-10-31T05:25:18.0892180Z patching file net/ipv4/netfilter/nft_fib_ipv4.c
2025-10-31T05:25:18.0893138Z patching file net/ipv4/netfilter/nft_reject_ipv4.c
2025-10-31T05:25:18.0894568Z patching file net/ipv4/nexthop.c
2025-10-31T05:25:18.0897695Z patching file net/ipv4/ping.c
2025-10-31T05:25:18.0899648Z patching file net/ipv4/proc.c
2025-10-31T05:25:18.0901049Z patching file net/ipv4/raw.c
2025-10-31T05:25:18.0903879Z patching file net/ipv4/route.c
2025-10-31T05:25:18.0908142Z patching file net/ipv4/syncookies.c
2025-10-31T05:25:18.0910035Z patching file net/ipv4/sysctl_net_ipv4.c
2025-10-31T05:25:18.0914239Z patching file net/ipv4/tcp.c
2025-10-31T05:25:18.0919735Z patching file net/ipv4/tcp_bbr.c
2025-10-31T05:25:18.0921472Z patching file net/ipv4/tcp_bpf.c
2025-10-31T05:25:18.0923691Z patching file net/ipv4/tcp_cdg.c
2025-10-31T05:25:18.0924704Z patching file net/ipv4/tcp_cong.c
2025-10-31T05:25:18.0926238Z patching file net/ipv4/tcp_cubic.c
2025-10-31T05:25:18.0927252Z patching file net/ipv4/tcp_dctcp.c
2025-10-31T05:25:18.0928573Z patching file net/ipv4/tcp_fastopen.c
2025-10-31T05:25:18.0932287Z patching file net/ipv4/tcp_input.c
2025-10-31T05:25:18.0939937Z patching file net/ipv4/tcp_ipv4.c
2025-10-31T05:25:18.0951729Z patching file net/ipv4/tcp_metrics.c
2025-10-31T05:25:18.0952415Z patching file net/ipv4/tcp_minisocks.c
2025-10-31T05:25:18.0952780Z patching file net/ipv4/tcp_offload.c
2025-10-31T05:25:18.0953120Z patching file net/ipv4/tcp_output.c
2025-10-31T05:25:18.0956242Z patching file net/ipv4/tcp_rate.c
2025-10-31T05:25:18.0957208Z patching file net/ipv4/tcp_recovery.c
2025-10-31T05:25:18.0958766Z patching file net/ipv4/tcp_timer.c
2025-10-31T05:25:18.0960915Z patching file net/ipv4/tcp_ulp.c
2025-10-31T05:25:18.0962695Z patching file net/ipv4/udp.c
2025-10-31T05:25:18.0966410Z patching file net/ipv4/udp_bpf.c
2025-10-31T05:25:18.0967249Z patching file net/ipv4/udp_offload.c
2025-10-31T05:25:18.0970360Z patching file net/ipv4/udp_tunnel_core.c
2025-10-31T05:25:18.0971346Z patching file net/ipv4/udp_tunnel_nic.c
2025-10-31T05:25:18.0973271Z patching file net/ipv4/udplite.c
2025-10-31T05:25:18.0974060Z patching file net/ipv4/xfrm4_input.c
2025-10-31T05:25:18.0975171Z patching file net/ipv4/xfrm4_policy.c
2025-10-31T05:25:18.0976341Z patching file net/ipv4/xfrm4_protocol.c
2025-10-31T05:25:18.0977456Z patching file net/ipv6/Kconfig
2025-10-31T05:25:18.0980359Z patching file net/ipv6/addrconf.c
2025-10-31T05:25:18.0985838Z patching file net/ipv6/addrconf_core.c
2025-10-31T05:25:18.0986848Z patching file net/ipv6/addrlabel.c
2025-10-31T05:25:18.0988437Z patching file net/ipv6/af_inet6.c
2025-10-31T05:25:18.0990698Z patching file net/ipv6/ah6.c
2025-10-31T05:25:18.0992475Z patching file net/ipv6/calipso.c
2025-10-31T05:25:18.0994728Z patching file net/ipv6/datagram.c
2025-10-31T05:25:18.0996369Z patching file net/ipv6/esp6.c
2025-10-31T05:25:18.0998259Z patching file net/ipv6/esp6_offload.c
2025-10-31T05:25:18.0999866Z patching file net/ipv6/exthdrs.c
2025-10-31T05:25:18.1001734Z patching file net/ipv6/exthdrs_core.c
2025-10-31T05:25:18.1002746Z patching file net/ipv6/fib6_rules.c
2025-10-31T05:25:18.1004560Z patching file net/ipv6/icmp.c
2025-10-31T05:25:18.1006417Z patching file net/ipv6/ila/ila.h
2025-10-31T05:25:18.1006957Z patching file net/ipv6/ila/ila_common.c
2025-10-31T05:25:18.1008049Z patching file net/ipv6/ila/ila_lwt.c
2025-10-31T05:25:18.1008806Z patching file net/ipv6/ila/ila_main.c
2025-10-31T05:25:18.1009608Z patching file net/ipv6/ila/ila_xlat.c
2025-10-31T05:25:18.1011121Z patching file net/ipv6/inet6_connection_sock.c
2025-10-31T05:25:18.1011852Z patching file net/ipv6/inet6_hashtables.c
2025-10-31T05:25:18.1014134Z patching file net/ipv6/ip6_fib.c
2025-10-31T05:25:18.1016749Z patching file net/ipv6/ip6_flowlabel.c
2025-10-31T05:25:18.1018450Z patching file net/ipv6/ip6_gre.c
2025-10-31T05:25:18.1021250Z patching file net/ipv6/ip6_icmp.c
2025-10-31T05:25:18.1022340Z patching file net/ipv6/ip6_input.c
2025-10-31T05:25:18.1023958Z patching file net/ipv6/ip6_offload.c
2025-10-31T05:25:18.1025759Z patching file net/ipv6/ip6_output.c
2025-10-31T05:25:18.1029316Z patching file net/ipv6/ip6_tunnel.c
2025-10-31T05:25:18.1032513Z patching file net/ipv6/ip6_vti.c
2025-10-31T05:25:18.1034767Z patching file net/ipv6/ip6mr.c
2025-10-31T05:25:18.1037400Z patching file net/ipv6/ipv6_sockglue.c
2025-10-31T05:25:18.1040215Z patching file net/ipv6/mcast.c
2025-10-31T05:25:18.1042745Z patching file net/ipv6/mcast_snoop.c
2025-10-31T05:25:18.1044375Z patching file net/ipv6/ndisc.c
2025-10-31T05:25:18.1046862Z patching file net/ipv6/netfilter.c
2025-10-31T05:25:18.1048227Z patching file net/ipv6/netfilter/ip6_tables.c
2025-10-31T05:25:18.1050693Z patching file net/ipv6/netfilter/ip6t_REJECT.c
2025-10-31T05:25:18.1051100Z patching file net/ipv6/netfilter/ip6t_rpfilter.c
2025-10-31T05:25:18.1052142Z patching file net/ipv6/netfilter/ip6t_rt.c
2025-10-31T05:25:18.1053718Z patching file net/ipv6/netfilter/nf_conntrack_reasm.c
2025-10-31T05:25:18.1055620Z patching file net/ipv6/netfilter/nf_dup_ipv6.c
2025-10-31T05:25:18.1056483Z patching file net/ipv6/netfilter/nf_reject_ipv6.c
2025-10-31T05:25:18.1057701Z patching file net/ipv6/netfilter/nf_socket_ipv6.c
2025-10-31T05:25:18.1058757Z patching file net/ipv6/netfilter/nf_tproxy_ipv6.c
2025-10-31T05:25:18.1059575Z patching file net/ipv6/netfilter/nft_dup_ipv6.c
2025-10-31T05:25:18.1060509Z patching file net/ipv6/netfilter/nft_fib_ipv6.c
2025-10-31T05:25:18.1061707Z patching file net/ipv6/netfilter/nft_reject_ipv6.c
2025-10-31T05:25:18.1062783Z patching file net/ipv6/output_core.c
2025-10-31T05:25:18.1063901Z patching file net/ipv6/ping.c
2025-10-31T05:25:18.1064939Z patching file net/ipv6/proc.c
2025-10-31T05:25:18.1066514Z patching file net/ipv6/raw.c
2025-10-31T05:25:18.1068575Z patching file net/ipv6/reassembly.c
2025-10-31T05:25:18.1071359Z patching file net/ipv6/route.c
2025-10-31T05:25:18.1076789Z patching file net/ipv6/rpl.c
2025-10-31T05:25:18.1077388Z patching file net/ipv6/rpl_iptunnel.c
2025-10-31T05:25:18.1079538Z patching file net/ipv6/seg6.c
2025-10-31T05:25:18.1080523Z patching file net/ipv6/seg6_hmac.c
2025-10-31T05:25:18.1082482Z patching file net/ipv6/seg6_iptunnel.c
2025-10-31T05:25:18.1084400Z patching file net/ipv6/seg6_local.c
2025-10-31T05:25:18.1086235Z patching file net/ipv6/sit.c
2025-10-31T05:25:18.1088603Z patching file net/ipv6/syncookies.c
2025-10-31T05:25:18.1090193Z patching file net/ipv6/tcp_ipv6.c
2025-10-31T05:25:18.1093943Z patching file net/ipv6/udp.c
2025-10-31T05:25:18.1096669Z patching file net/ipv6/udp_impl.h
2025-10-31T05:25:18.1097154Z patching file net/ipv6/udp_offload.c
2025-10-31T05:25:18.1098375Z patching file net/ipv6/udplite.c
2025-10-31T05:25:18.1099368Z patching file net/ipv6/xfrm6_input.c
2025-10-31T05:25:18.1100413Z patching file net/ipv6/xfrm6_output.c
2025-10-31T05:25:18.1101424Z patching file net/ipv6/xfrm6_policy.c
2025-10-31T05:25:18.1103607Z patching file net/iucv/af_iucv.c
2025-10-31T05:25:18.1106201Z patching file net/iucv/iucv.c
2025-10-31T05:25:18.1108700Z patching file net/kcm/kcmsock.c
2025-10-31T05:25:18.1112392Z patching file net/key/af_key.c
2025-10-31T05:25:18.1116062Z patching file net/l2tp/l2tp_core.c
2025-10-31T05:25:18.1118928Z patching file net/l2tp/l2tp_core.h
2025-10-31T05:25:18.1119557Z patching file net/l2tp/l2tp_eth.c
2025-10-31T05:25:18.1120729Z patching file net/l2tp/l2tp_ip6.c
2025-10-31T05:25:18.1122703Z patching file net/l2tp/l2tp_netlink.c
2025-10-31T05:25:18.1124675Z patching file net/l2tp/l2tp_ppp.c
2025-10-31T05:25:18.1127154Z patching file net/l3mdev/l3mdev.c
2025-10-31T05:25:18.1127997Z patching file net/lapb/lapb_out.c
2025-10-31T05:25:18.1129316Z patching file net/llc/af_llc.c
2025-10-31T05:25:18.1131791Z patching file net/llc/llc_core.c
2025-10-31T05:25:18.1132451Z patching file net/llc/llc_input.c
2025-10-31T05:25:18.1133580Z patching file net/llc/llc_s_ac.c
2025-10-31T05:25:18.1134822Z patching file net/llc/llc_station.c
2025-10-31T05:25:18.1135784Z patching file net/mac80211/Kconfig
2025-10-31T05:25:18.1136831Z patching file net/mac80211/aead_api.c
2025-10-31T05:25:18.1137769Z patching file net/mac80211/aes_gmac.c
2025-10-31T05:25:18.1138753Z patching file net/mac80211/agg-rx.c
2025-10-31T05:25:18.1140457Z patching file net/mac80211/agg-tx.c
2025-10-31T05:25:18.1142555Z patching file net/mac80211/airtime.c
2025-10-31T05:25:18.1144834Z patching file net/mac80211/cfg.c
2025-10-31T05:25:18.1148443Z patching file net/mac80211/chan.c
2025-10-31T05:25:18.1150448Z patching file net/mac80211/debugfs.c
2025-10-31T05:25:18.1151923Z patching file net/mac80211/driver-ops.c
2025-10-31T05:25:18.1153520Z patching file net/mac80211/driver-ops.h
2025-10-31T05:25:18.1155243Z patching file net/mac80211/he.c
2025-10-31T05:25:18.1156657Z patching file net/mac80211/ibss.c
2025-10-31T05:25:18.1159223Z patching file net/mac80211/ieee80211_i.h
2025-10-31T05:25:18.1162650Z patching file net/mac80211/iface.c
2025-10-31T05:25:18.1165385Z patching file net/mac80211/key.c
2025-10-31T05:25:18.1167282Z patching file net/mac80211/key.h
2025-10-31T05:25:18.1168372Z patching file net/mac80211/main.c
2025-10-31T05:25:18.1170829Z patching file net/mac80211/mesh.c
2025-10-31T05:25:18.1172971Z patching file net/mac80211/mesh.h
2025-10-31T05:25:18.1174370Z patching file net/mac80211/mesh_hwmp.c
2025-10-31T05:25:18.1176524Z patching file net/mac80211/mesh_pathtbl.c
2025-10-31T05:25:18.1178913Z patching file net/mac80211/mesh_plink.c
2025-10-31T05:25:18.1180767Z patching file net/mac80211/mesh_ps.c
2025-10-31T05:25:18.1183696Z patching file net/mac80211/mlme.c
2025-10-31T05:25:18.1188407Z patching file net/mac80211/rate.c
2025-10-31T05:25:18.1191035Z patching file net/mac80211/rx.c
2025-10-31T05:25:18.1195830Z patching file net/mac80211/scan.c
2025-10-31T05:25:18.1197990Z patching file net/mac80211/spectmgmt.c
2025-10-31T05:25:18.1199601Z patching file net/mac80211/sta_info.c
2025-10-31T05:25:18.1202620Z patching file net/mac80211/sta_info.h
2025-10-31T05:25:18.1205006Z patching file net/mac80211/trace.h
2025-10-31T05:25:18.1208427Z patching file net/mac80211/tx.c
2025-10-31T05:25:18.1213726Z patching file net/mac80211/util.c
2025-10-31T05:25:18.1217628Z patching file net/mac80211/vht.c
2025-10-31T05:25:18.1218721Z patching file net/mac80211/wme.c
2025-10-31T05:25:18.1220267Z patching file net/mac80211/wpa.c
2025-10-31T05:25:18.1222475Z patching file net/mac802154/iface.c
2025-10-31T05:25:18.1223851Z patching file net/mac802154/llsec.c
2025-10-31T05:25:18.1225500Z patching file net/mac802154/rx.c
2025-10-31T05:25:18.1226271Z patching file net/mac802154/tx.c
2025-10-31T05:25:18.1228113Z patching file net/mpls/af_mpls.c
2025-10-31T05:25:18.1230594Z patching file net/mpls/mpls_gso.c
2025-10-31T05:25:18.1231237Z patching file net/mptcp/diag.c
2025-10-31T05:25:18.1232363Z patching file net/mptcp/mib.c
2025-10-31T05:25:18.1233218Z patching file net/mptcp/mib.h
2025-10-31T05:25:18.1234145Z patching file net/mptcp/mptcp_diag.c
2025-10-31T05:25:18.1235251Z patching file net/mptcp/options.c
2025-10-31T05:25:18.1237561Z patching file net/mptcp/pm.c
2025-10-31T05:25:18.1239173Z patching file net/mptcp/pm_netlink.c
2025-10-31T05:25:18.1242565Z patching file net/mptcp/protocol.c
2025-10-31T05:25:18.1246559Z patching file net/mptcp/protocol.h
2025-10-31T05:25:18.1248324Z patching file net/mptcp/subflow.c
2025-10-31T05:25:18.1251741Z patching file net/mptcp/syncookies.c
2025-10-31T05:25:18.1252445Z patching file net/mptcp/token.c
2025-10-31T05:25:18.1254022Z patching file net/mptcp/token_test.c
2025-10-31T05:25:18.1254761Z patching file net/ncsi/Kconfig
2025-10-31T05:25:18.1255612Z patching file net/ncsi/internal.h
2025-10-31T05:25:18.1257450Z patching file net/ncsi/ncsi-aen.c
2025-10-31T05:25:18.1258176Z patching file net/ncsi/ncsi-cmd.c
2025-10-31T05:25:18.1259957Z patching file net/ncsi/ncsi-manage.c
2025-10-31T05:25:18.1262566Z patching file net/ncsi/ncsi-netlink.c
2025-10-31T05:25:18.1263829Z patching file net/ncsi/ncsi-pkt.h
2025-10-31T05:25:18.1265455Z patching file net/ncsi/ncsi-rsp.c
2025-10-31T05:25:18.1267625Z patching file net/netfilter/Kconfig
2025-10-31T05:25:18.1269653Z patching file net/netfilter/core.c
2025-10-31T05:25:18.1271176Z patching file net/netfilter/ipset/ip_set_bitmap_gen.h
2025-10-31T05:25:18.1272373Z patching file net/netfilter/ipset/ip_set_bitmap_ip.c
2025-10-31T05:25:18.1274256Z patching file net/netfilter/ipset/ip_set_core.c
2025-10-31T05:25:18.1277382Z patching file net/netfilter/ipset/ip_set_hash_gen.h
2025-10-31T05:25:18.1279635Z patching file net/netfilter/ipset/ip_set_hash_ip.c
2025-10-31T05:25:18.1280559Z patching file net/netfilter/ipset/ip_set_hash_ipmark.c
2025-10-31T05:25:18.1281723Z patching file net/netfilter/ipset/ip_set_hash_ipport.c
2025-10-31T05:25:18.1283262Z patching file net/netfilter/ipset/ip_set_hash_ipportip.c
2025-10-31T05:25:18.1284424Z patching file net/netfilter/ipset/ip_set_hash_ipportnet.c
2025-10-31T05:25:18.1285606Z patching file net/netfilter/ipset/ip_set_hash_net.c
2025-10-31T05:25:18.1286770Z patching file net/netfilter/ipset/ip_set_hash_netiface.c
2025-10-31T05:25:18.1287964Z patching file net/netfilter/ipset/ip_set_hash_netnet.c
2025-10-31T05:25:18.1289382Z patching file net/netfilter/ipset/ip_set_hash_netport.c
2025-10-31T05:25:18.1290548Z patching file net/netfilter/ipset/ip_set_hash_netportnet.c
2025-10-31T05:25:18.1291908Z patching file net/netfilter/ipset/ip_set_list_set.c
2025-10-31T05:25:18.1294205Z patching file net/netfilter/ipvs/ip_vs_app.c
2025-10-31T05:25:18.1295650Z patching file net/netfilter/ipvs/ip_vs_conn.c
2025-10-31T05:25:18.1298233Z patching file net/netfilter/ipvs/ip_vs_core.c
2025-10-31T05:25:18.1301425Z patching file net/netfilter/ipvs/ip_vs_ctl.c
2025-10-31T05:25:18.1304894Z patching file net/netfilter/ipvs/ip_vs_ftp.c
2025-10-31T05:25:18.1305927Z patching file net/netfilter/ipvs/ip_vs_proto.c
2025-10-31T05:25:18.1307486Z patching file net/netfilter/ipvs/ip_vs_proto_sctp.c
2025-10-31T05:25:18.1309124Z patching file net/netfilter/ipvs/ip_vs_sync.c
2025-10-31T05:25:18.1311666Z patching file net/netfilter/ipvs/ip_vs_xmit.c
2025-10-31T05:25:18.1313962Z patching file net/netfilter/nf_conncount.c
2025-10-31T05:25:18.1316065Z patching file net/netfilter/nf_conntrack_core.c
2025-10-31T05:25:18.1319607Z patching file net/netfilter/nf_conntrack_expect.c
2025-10-31T05:25:18.1321038Z patching file net/netfilter/nf_conntrack_h323_asn1.c
2025-10-31T05:25:18.1322785Z patching file net/netfilter/nf_conntrack_helper.c
2025-10-31T05:25:18.1324170Z patching file net/netfilter/nf_conntrack_irc.c
2025-10-31T05:25:18.1326478Z patching file net/netfilter/nf_conntrack_netlink.c
2025-10-31T05:25:18.1330590Z patching file net/netfilter/nf_conntrack_proto.c
2025-10-31T05:25:18.1331818Z patching file net/netfilter/nf_conntrack_proto_dccp.c
2025-10-31T05:25:18.1333962Z patching file net/netfilter/nf_conntrack_proto_gre.c
2025-10-31T05:25:18.1334968Z patching file net/netfilter/nf_conntrack_proto_icmpv6.c
2025-10-31T05:25:18.1336597Z patching file net/netfilter/nf_conntrack_proto_sctp.c
2025-10-31T05:25:18.1339106Z patching file net/netfilter/nf_conntrack_proto_tcp.c
2025-10-31T05:25:18.1341175Z patching file net/netfilter/nf_conntrack_proto_udp.c
2025-10-31T05:25:18.1342608Z patching file net/netfilter/nf_conntrack_sip.c
2025-10-31T05:25:18.1345132Z patching file net/netfilter/nf_conntrack_standalone.c
2025-10-31T05:25:18.1347232Z patching file net/netfilter/nf_flow_table_core.c
2025-10-31T05:25:18.1348920Z patching file net/netfilter/nf_flow_table_offload.c
2025-10-31T05:25:18.1350944Z patching file net/netfilter/nf_log.c
2025-10-31T05:25:18.1352257Z patching file net/netfilter/nf_nat_core.c
2025-10-31T05:25:18.1354434Z patching file net/netfilter/nf_nat_masquerade.c
2025-10-31T05:25:18.1356204Z patching file net/netfilter/nf_nat_proto.c
2025-10-31T05:25:18.1357874Z patching file net/netfilter/nf_nat_redirect.c
2025-10-31T05:25:18.1359089Z patching file net/netfilter/nf_queue.c
2025-10-31T05:25:18.1360948Z patching file net/netfilter/nf_synproxy_core.c
2025-10-31T05:25:18.1364804Z patching file net/netfilter/nf_tables_api.c
2025-10-31T05:25:18.1379792Z patching file net/netfilter/nf_tables_core.c
2025-10-31T05:25:18.1381290Z patching file net/netfilter/nf_tables_offload.c
2025-10-31T05:25:18.1383523Z patching file net/netfilter/nf_tables_trace.c
2025-10-31T05:25:18.1384584Z patching file net/netfilter/nfnetlink.c
2025-10-31T05:25:18.1386257Z patching file net/netfilter/nfnetlink_acct.c
2025-10-31T05:25:18.1387778Z patching file net/netfilter/nfnetlink_cthelper.c
2025-10-31T05:25:18.1389381Z patching file net/netfilter/nfnetlink_cttimeout.c
2025-10-31T05:25:18.1391049Z patching file net/netfilter/nfnetlink_log.c
2025-10-31T05:25:18.1392987Z patching file net/netfilter/nfnetlink_osf.c
2025-10-31T05:25:18.1394749Z patching file net/netfilter/nfnetlink_queue.c
2025-10-31T05:25:18.1396848Z patching file net/netfilter/nft_bitwise.c
2025-10-31T05:25:18.1398522Z patching file net/netfilter/nft_byteorder.c
2025-10-31T05:25:18.1399728Z patching file net/netfilter/nft_chain_filter.c
2025-10-31T05:25:18.1401283Z patching file net/netfilter/nft_cmp.c
2025-10-31T05:25:18.1403540Z patching file net/netfilter/nft_compat.c
2025-10-31T05:25:18.1405242Z patching file net/netfilter/nft_connlimit.c
2025-10-31T05:25:18.1406130Z patching file net/netfilter/nft_counter.c
2025-10-31T05:25:18.1407738Z patching file net/netfilter/nft_ct.c
2025-10-31T05:25:18.1410087Z patching file net/netfilter/nft_dup_netdev.c
2025-10-31T05:25:18.1410795Z patching file net/netfilter/nft_dynset.c
2025-10-31T05:25:18.1412549Z patching file net/netfilter/nft_exthdr.c
2025-10-31T05:25:18.1414782Z patching file net/netfilter/nft_fib.c
2025-10-31T05:25:18.1415658Z patching file net/netfilter/nft_flow_offload.c
2025-10-31T05:25:18.1416929Z patching file net/netfilter/nft_fwd_netdev.c
2025-10-31T05:25:18.1418130Z patching file net/netfilter/nft_hash.c
2025-10-31T05:25:18.1419340Z patching file net/netfilter/nft_immediate.c
2025-10-31T05:25:18.1420873Z patching file net/netfilter/nft_limit.c
2025-10-31T05:25:18.1421783Z patching file net/netfilter/nft_lookup.c
2025-10-31T05:25:18.1423233Z patching file net/netfilter/nft_masq.c
2025-10-31T05:25:18.1424709Z patching file net/netfilter/nft_meta.c
2025-10-31T05:25:18.1426494Z patching file net/netfilter/nft_nat.c
2025-10-31T05:25:18.1427691Z patching file net/netfilter/nft_numgen.c
2025-10-31T05:25:18.1428928Z patching file net/netfilter/nft_objref.c
2025-10-31T05:25:18.1430095Z patching file net/netfilter/nft_osf.c
2025-10-31T05:25:18.1431477Z patching file net/netfilter/nft_payload.c
2025-10-31T05:25:18.1434113Z patching file net/netfilter/nft_queue.c
2025-10-31T05:25:18.1434775Z patching file net/netfilter/nft_range.c
2025-10-31T05:25:18.1436042Z patching file net/netfilter/nft_redir.c
2025-10-31T05:25:18.1437845Z patching file net/netfilter/nft_reject.c
2025-10-31T05:25:18.1438625Z patching file net/netfilter/nft_reject_inet.c
2025-10-31T05:25:18.1439986Z patching file net/netfilter/nft_rt.c
2025-10-31T05:25:18.1441057Z patching file net/netfilter/nft_set_bitmap.c
2025-10-31T05:25:18.1442459Z patching file net/netfilter/nft_set_hash.c
2025-10-31T05:25:18.1445531Z patching file net/netfilter/nft_set_pipapo.c
2025-10-31T05:25:18.1449398Z patching file net/netfilter/nft_set_pipapo.h
2025-10-31T05:25:18.1450676Z patching file net/netfilter/nft_set_pipapo_avx2.c
2025-10-31T05:25:18.1453017Z patching file net/netfilter/nft_set_rbtree.c
2025-10-31T05:25:18.1455933Z patching file net/netfilter/nft_socket.c
2025-10-31T05:25:18.1457185Z patching file net/netfilter/nft_synproxy.c
2025-10-31T05:25:18.1458904Z patching file net/netfilter/nft_tproxy.c
2025-10-31T05:25:18.1460131Z patching file net/netfilter/nft_tunnel.c
2025-10-31T05:25:18.1462142Z patching file net/netfilter/nft_xfrm.c
2025-10-31T05:25:18.1463744Z patching file net/netfilter/x_tables.c
2025-10-31T05:25:18.1466333Z patching file net/netfilter/xt_CT.c
2025-10-31T05:25:18.1467409Z patching file net/netfilter/xt_IDLETIMER.c
2025-10-31T05:25:18.1468873Z patching file net/netfilter/xt_LED.c
2025-10-31T05:25:18.1469749Z patching file net/netfilter/xt_RATEEST.c
2025-10-31T05:25:18.1470745Z patching file net/netfilter/xt_REDIRECT.c
2025-10-31T05:25:18.1471722Z patching file net/netfilter/xt_SECMARK.c
2025-10-31T05:25:18.1473573Z patching file net/netfilter/xt_connmark.c
2025-10-31T05:25:18.1474581Z patching file net/netfilter/xt_nfacct.c
2025-10-31T05:25:18.1475486Z patching file net/netfilter/xt_osf.c
2025-10-31T05:25:18.1476426Z patching file net/netfilter/xt_owner.c
2025-10-31T05:25:18.1477979Z patching file net/netfilter/xt_recent.c
2025-10-31T05:25:18.1479407Z patching file net/netfilter/xt_sctp.c
2025-10-31T05:25:18.1480489Z patching file net/netfilter/xt_u32.c
2025-10-31T05:25:18.1481645Z patching file net/netlabel/netlabel_calipso.c
2025-10-31T05:25:18.1483648Z patching file net/netlabel/netlabel_cipso_v4.c
2025-10-31T05:25:18.1485532Z patching file net/netlabel/netlabel_kapi.c
2025-10-31T05:25:18.1487398Z patching file net/netlabel/netlabel_mgmt.c
2025-10-31T05:25:18.1489407Z patching file net/netlabel/netlabel_unlabeled.c
2025-10-31T05:25:18.1491187Z patching file net/netlabel/netlabel_user.h
2025-10-31T05:25:18.1492960Z patching file net/netlink/af_netlink.c
2025-10-31T05:25:18.1496753Z patching file net/netlink/af_netlink.h
2025-10-31T05:25:18.1497285Z patching file net/netlink/diag.c
2025-10-31T05:25:18.1498880Z patching file net/netlink/genetlink.c
2025-10-31T05:25:18.1500968Z patching file net/netlink/policy.c
2025-10-31T05:25:18.1502372Z patching file net/netrom/af_netrom.c
2025-10-31T05:25:18.1504572Z patching file net/netrom/nr_dev.c
2025-10-31T05:25:18.1505051Z patching file net/netrom/nr_in.c
2025-10-31T05:25:18.1506073Z patching file net/netrom/nr_out.c
2025-10-31T05:25:18.1507111Z patching file net/netrom/nr_route.c
2025-10-31T05:25:18.1509054Z patching file net/netrom/nr_subr.c
2025-10-31T05:25:18.1509901Z patching file net/netrom/nr_timer.c
2025-10-31T05:25:18.1511385Z patching file net/nfc/af_nfc.c
2025-10-31T05:25:18.1512361Z patching file net/nfc/core.c
2025-10-31T05:25:18.1514780Z patching file net/nfc/digital_core.c
2025-10-31T05:25:18.1516342Z patching file net/nfc/digital_dep.c
2025-10-31T05:25:18.1518211Z patching file net/nfc/digital_technology.c
2025-10-31T05:25:18.1519883Z patching file net/nfc/hci/llc_shdlc.c
2025-10-31T05:25:18.1521069Z patching file net/nfc/llcp.h
2025-10-31T05:25:18.1522330Z patching file net/nfc/llcp_commands.c
2025-10-31T05:25:18.1524667Z patching file net/nfc/llcp_core.c
2025-10-31T05:25:18.1527579Z patching file net/nfc/llcp_sock.c
2025-10-31T05:25:18.1529614Z patching file net/nfc/nci/core.c
2025-10-31T05:25:18.1531683Z patching file net/nfc/nci/data.c
2025-10-31T05:25:18.1532637Z patching file net/nfc/nci/hci.c
2025-10-31T05:25:18.1534443Z patching file net/nfc/nci/ntf.c
2025-10-31T05:25:18.1535637Z patching file net/nfc/nci/rsp.c
2025-10-31T05:25:18.1536613Z patching file net/nfc/nci/spi.c
2025-10-31T05:25:18.1537567Z patching file net/nfc/nci/uart.c
2025-10-31T05:25:18.1539344Z patching file net/nfc/netlink.c
2025-10-31T05:25:18.1541730Z patching file net/nfc/nfc.h
2025-10-31T05:25:18.1542465Z patching file net/nfc/rawsock.c
2025-10-31T05:25:18.1543696Z patching file net/nsh/nsh.c
2025-10-31T05:25:18.1544992Z patching file net/openvswitch/actions.c
2025-10-31T05:25:18.1547524Z patching file net/openvswitch/conntrack.c
2025-10-31T05:25:18.1550465Z patching file net/openvswitch/datapath.c
2025-10-31T05:25:18.1553164Z patching file net/openvswitch/flow.c
2025-10-31T05:25:18.1555523Z patching file net/openvswitch/flow_netlink.c
2025-10-31T05:25:18.1559657Z patching file net/openvswitch/meter.c
2025-10-31T05:25:18.1561608Z patching file net/openvswitch/vport.c
2025-10-31T05:25:18.1562986Z patching file net/packet/af_packet.c
2025-10-31T05:25:18.1569788Z patching file net/packet/diag.c
2025-10-31T05:25:18.1570320Z patching file net/packet/internal.h
2025-10-31T05:25:18.1571882Z patching file net/phonet/pep.c
2025-10-31T05:25:18.1573299Z patching file net/phonet/pn_netlink.c
2025-10-31T05:25:18.1574405Z patching file net/psample/psample.c
2025-10-31T05:25:18.1575507Z patching file net/qrtr/Makefile
2025-10-31T05:25:18.1576198Z patching file net/qrtr/af_qrtr.c
2025-10-31T05:25:18.1580433Z patching file net/qrtr/mhi.c
2025-10-31T05:25:18.1581351Z patching file net/qrtr/ns.c
2025-10-31T05:25:18.1583660Z patching file net/qrtr/qrtr.c
2025-10-31T05:25:18.1586826Z patching file net/qrtr/qrtr.h
2025-10-31T05:25:18.1587454Z patching file net/qrtr/tun.c
2025-10-31T05:25:18.1589317Z patching file net/rds/af_rds.c
2025-10-31T05:25:18.1590156Z patching file net/rds/connection.c
2025-10-31T05:25:18.1591534Z patching file net/rds/ib.c
2025-10-31T05:25:18.1592830Z patching file net/rds/ib.h
2025-10-31T05:25:18.1594195Z patching file net/rds/ib_cm.c
2025-10-31T05:25:18.1596046Z patching file net/rds/ib_frmr.c
2025-10-31T05:25:18.1597261Z patching file net/rds/ib_recv.c
2025-10-31T05:25:18.1599030Z patching file net/rds/ib_send.c
2025-10-31T05:25:18.1600428Z patching file net/rds/message.c
2025-10-31T05:25:18.1601760Z patching file net/rds/rdma.c
2025-10-31T05:25:18.1603265Z patching file net/rds/rdma_transport.c
2025-10-31T05:25:18.1604240Z patching file net/rds/recv.c
2025-10-31T05:25:18.1605965Z patching file net/rds/send.c
2025-10-31T05:25:18.1607595Z patching file net/rds/tcp.c
2025-10-31T05:25:18.1608641Z patching file net/rds/tcp.h
2025-10-31T05:25:18.1609358Z patching file net/rds/tcp_connect.c
2025-10-31T05:25:18.1610335Z patching file net/rds/tcp_listen.c
2025-10-31T05:25:18.1611330Z patching file net/rfkill/rfkill-gpio.c
2025-10-31T05:25:18.1612995Z patching file net/rose/af_rose.c
2025-10-31T05:25:18.1614915Z patching file net/rose/rose_link.c
2025-10-31T05:25:18.1615565Z patching file net/rose/rose_loopback.c
2025-10-31T05:25:18.1616621Z patching file net/rose/rose_route.c
2025-10-31T05:25:18.1618064Z patching file net/rose/rose_timer.c
2025-10-31T05:25:18.1619523Z patching file net/rxrpc/af_rxrpc.c
2025-10-31T05:25:18.1621090Z patching file net/rxrpc/ar-internal.h
2025-10-31T05:25:18.1623164Z patching file net/rxrpc/call_accept.c
2025-10-31T05:25:18.1624207Z patching file net/rxrpc/call_event.c
2025-10-31T05:25:18.1625612Z patching file net/rxrpc/call_object.c
2025-10-31T05:25:18.1627471Z patching file net/rxrpc/conn_client.c
2025-10-31T05:25:18.1629202Z patching file net/rxrpc/conn_event.c
2025-10-31T05:25:18.1630176Z patching file net/rxrpc/conn_object.c
2025-10-31T05:25:18.1631666Z patching file net/rxrpc/conn_service.c
2025-10-31T05:25:18.1633142Z patching file net/rxrpc/input.c
2025-10-31T05:25:18.1635166Z patching file net/rxrpc/key.c
2025-10-31T05:25:18.1636532Z patching file net/rxrpc/local_object.c
2025-10-31T05:25:18.1637881Z patching file net/rxrpc/net_ns.c
2025-10-31T05:25:18.1639417Z patching file net/rxrpc/output.c
2025-10-31T05:25:18.1640708Z patching file net/rxrpc/peer_object.c
2025-10-31T05:25:18.1642228Z patching file net/rxrpc/proc.c
2025-10-31T05:25:18.1643628Z patching file net/rxrpc/recvmsg.c
2025-10-31T05:25:18.1644654Z patching file net/rxrpc/rtt.c
2025-10-31T05:25:18.1645937Z patching file net/rxrpc/rxkad.c
2025-10-31T05:25:18.1647390Z patching file net/rxrpc/sendmsg.c
2025-10-31T05:25:18.1648969Z patching file net/rxrpc/skbuff.c
2025-10-31T05:25:18.1649547Z patching file net/rxrpc/sysctl.c
2025-10-31T05:25:18.1650824Z patching file net/sched/Kconfig
2025-10-31T05:25:18.1652471Z patching file net/sched/Makefile
2025-10-31T05:25:18.1653521Z patching file net/sched/act_api.c
2025-10-31T05:25:18.1656097Z patching file net/sched/act_bpf.c
2025-10-31T05:25:18.1656915Z patching file net/sched/act_connmark.c
2025-10-31T05:25:18.1658287Z patching file net/sched/act_ct.c
2025-10-31T05:25:18.1660250Z patching file net/sched/act_ctinfo.c
2025-10-31T05:25:18.1661741Z patching file net/sched/act_gate.c
2025-10-31T05:25:18.1662849Z patching file net/sched/act_ife.c
2025-10-31T05:25:18.1664189Z patching file net/sched/act_ipt.c
2025-10-31T05:25:18.1665137Z patching file net/sched/act_mirred.c
2025-10-31T05:25:18.1666646Z patching file net/sched/act_mpls.c
2025-10-31T05:25:18.1667663Z patching file net/sched/act_nat.c
2025-10-31T05:25:18.1668620Z patching file net/sched/act_pedit.c
2025-10-31T05:25:18.1669975Z patching file net/sched/act_police.c
2025-10-31T05:25:18.1670931Z patching file net/sched/act_sample.c
2025-10-31T05:25:18.1671927Z patching file net/sched/act_simple.c
2025-10-31T05:25:18.1673070Z patching file net/sched/act_skbedit.c
2025-10-31T05:25:18.1674035Z patching file net/sched/act_skbmod.c
2025-10-31T05:25:18.1675406Z patching file net/sched/act_tunnel_key.c
2025-10-31T05:25:18.1676481Z patching file net/sched/act_vlan.c
2025-10-31T05:25:18.1678511Z patching file net/sched/cls_api.c
2025-10-31T05:25:18.1681625Z patching file net/sched/cls_flow.c
2025-10-31T05:25:18.1683653Z patching file net/sched/cls_flower.c
2025-10-31T05:25:18.1686764Z patching file net/sched/cls_fw.c
2025-10-31T05:25:18.1687837Z patching file net/sched/cls_route.c
2025-10-31T05:25:18.1688888Z patching file net/sched/cls_rsvp.c
2025-10-31T05:25:18.1689889Z patching file net/sched/cls_rsvp.h
2025-10-31T05:25:18.1691875Z patching file net/sched/cls_rsvp6.c
2025-10-31T05:25:18.1693043Z patching file net/sched/cls_tcindex.c
2025-10-31T05:25:18.1695467Z patching file net/sched/cls_u32.c
2025-10-31T05:25:18.1697360Z patching file net/sched/em_text.c
2025-10-31T05:25:18.1698271Z patching file net/sched/ematch.c
2025-10-31T05:25:18.1699913Z patching file net/sched/sch_api.c
2025-10-31T05:25:18.1703066Z patching file net/sched/sch_atm.c
2025-10-31T05:25:18.1705827Z patching file net/sched/sch_cake.c
2025-10-31T05:25:18.1709083Z patching file net/sched/sch_cbq.c
2025-10-31T05:25:18.1712848Z patching file net/sched/sch_cbs.c
2025-10-31T05:25:18.1713909Z patching file net/sched/sch_choke.c
2025-10-31T05:25:18.1715232Z patching file net/sched/sch_codel.c
2025-10-31T05:25:18.1716174Z patching file net/sched/sch_drr.c
2025-10-31T05:25:18.1717513Z patching file net/sched/sch_dsmark.c
2025-10-31T05:25:18.1719286Z patching file net/sched/sch_etf.c
2025-10-31T05:25:18.1720328Z patching file net/sched/sch_ets.c
2025-10-31T05:25:18.1722210Z patching file net/sched/sch_fifo.c
2025-10-31T05:25:18.1723394Z patching file net/sched/sch_fq.c
2025-10-31T05:25:18.1724875Z patching file net/sched/sch_fq_codel.c
2025-10-31T05:25:18.1726193Z patching file net/sched/sch_fq_pie.c
2025-10-31T05:25:18.1727863Z patching file net/sched/sch_generic.c
2025-10-31T05:25:18.1730000Z patching file net/sched/sch_gred.c
2025-10-31T05:25:18.1731494Z patching file net/sched/sch_hfsc.c
2025-10-31T05:25:18.1733923Z patching file net/sched/sch_hhf.c
2025-10-31T05:25:18.1735439Z patching file net/sched/sch_htb.c
2025-10-31T05:25:18.1737183Z patching file net/sched/sch_ingress.c
2025-10-31T05:25:18.1738150Z patching file net/sched/sch_mq.c
2025-10-31T05:25:18.1739225Z patching file net/sched/sch_mqprio.c
2025-10-31T05:25:18.1740947Z patching file net/sched/sch_multiq.c
2025-10-31T05:25:18.1742375Z patching file net/sched/sch_netem.c
2025-10-31T05:25:18.1744698Z patching file net/sched/sch_pie.c
2025-10-31T05:25:18.1745654Z patching file net/sched/sch_plug.c
2025-10-31T05:25:18.1746621Z patching file net/sched/sch_prio.c
2025-10-31T05:25:18.1748188Z patching file net/sched/sch_qfq.c
2025-10-31T05:25:18.1750615Z patching file net/sched/sch_red.c
2025-10-31T05:25:18.1752118Z patching file net/sched/sch_sfb.c
2025-10-31T05:25:18.1753622Z patching file net/sched/sch_sfq.c
2025-10-31T05:25:18.1755488Z patching file net/sched/sch_skbprio.c
2025-10-31T05:25:18.1756967Z patching file net/sched/sch_taprio.c
2025-10-31T05:25:18.1759274Z patching file net/sched/sch_tbf.c
2025-10-31T05:25:18.1760612Z patching file net/sched/sch_teql.c
2025-10-31T05:25:18.1762245Z patching file net/sctp/associola.c
2025-10-31T05:25:18.1764296Z patching file net/sctp/auth.c
2025-10-31T05:25:18.1765315Z patching file net/sctp/bind_addr.c
2025-10-31T05:25:18.1766504Z patching file net/sctp/diag.c
2025-10-31T05:25:18.1767775Z patching file net/sctp/endpointola.c
2025-10-31T05:25:18.1768952Z patching file net/sctp/input.c
2025-10-31T05:25:18.1770704Z patching file net/sctp/inqueue.c
2025-10-31T05:25:18.1771705Z patching file net/sctp/ipv6.c
2025-10-31T05:25:18.1773931Z patching file net/sctp/outqueue.c
2025-10-31T05:25:18.1775603Z patching file net/sctp/proc.c
2025-10-31T05:25:18.1777104Z patching file net/sctp/protocol.c
2025-10-31T05:25:18.1779575Z patching file net/sctp/sm_make_chunk.c
2025-10-31T05:25:18.1782714Z patching file net/sctp/sm_sideeffect.c
2025-10-31T05:25:18.1786035Z patching file net/sctp/sm_statefuns.c
2025-10-31T05:25:18.1792981Z patching file net/sctp/socket.c
2025-10-31T05:25:18.1798879Z patching file net/sctp/stream.c
2025-10-31T05:25:18.1800576Z patching file net/sctp/stream_interleave.c
2025-10-31T05:25:18.1801853Z patching file net/sctp/stream_sched.c
2025-10-31T05:25:18.1803009Z patching file net/sctp/stream_sched_prio.c
2025-10-31T05:25:18.1804277Z patching file net/sctp/stream_sched_rr.c
2025-10-31T05:25:18.1805080Z patching file net/sctp/sysctl.c
2025-10-31T05:25:18.1806675Z patching file net/sctp/transport.c
2025-10-31T05:25:18.1808473Z patching file net/smc/af_smc.c
2025-10-31T05:25:18.1811070Z patching file net/smc/smc.h
2025-10-31T05:25:18.1812115Z patching file net/smc/smc_cdc.c
2025-10-31T05:25:18.1813647Z patching file net/smc/smc_cdc.h
2025-10-31T05:25:18.1814604Z patching file net/smc/smc_clc.c
2025-10-31T05:25:18.1815935Z patching file net/smc/smc_clc.h
2025-10-31T05:25:18.1816767Z patching file net/smc/smc_close.c
2025-10-31T05:25:18.1818444Z patching file net/smc/smc_core.c
2025-10-31T05:25:18.1820896Z patching file net/smc/smc_core.h
2025-10-31T05:25:18.1821856Z patching file net/smc/smc_diag.c
2025-10-31T05:25:18.1823047Z patching file net/smc/smc_ib.c
2025-10-31T05:25:18.1823960Z patching file net/smc/smc_ib.h
2025-10-31T05:25:18.1824677Z patching file net/smc/smc_ism.c
2025-10-31T05:25:18.1826263Z patching file net/smc/smc_llc.c
2025-10-31T05:25:18.1828726Z patching file net/smc/smc_pnet.c
2025-10-31T05:25:18.1830482Z patching file net/smc/smc_pnet.h
2025-10-31T05:25:18.1831137Z patching file net/smc/smc_rx.c
2025-10-31T05:25:18.1838817Z patching file net/smc/smc_rx.h
2025-10-31T05:25:18.1839277Z patching file net/smc/smc_tx.c
2025-10-31T05:25:18.1839603Z patching file net/smc/smc_wr.c
2025-10-31T05:25:18.1839913Z patching file net/smc/smc_wr.h
2025-10-31T05:25:18.1840222Z patching file net/socket.c
2025-10-31T05:25:18.1840690Z patching file net/strparser/strparser.c
2025-10-31T05:25:18.1841706Z patching file net/sunrpc/addr.c
2025-10-31T05:25:18.1843362Z patching file net/sunrpc/auth.c
2025-10-31T05:25:18.1845088Z patching file net/sunrpc/auth_gss/auth_gss.c
2025-10-31T05:25:18.1847023Z patching file net/sunrpc/auth_gss/auth_gss_internal.h
2025-10-31T05:25:18.1847950Z patching file net/sunrpc/auth_gss/gss_krb5_keys.c
2025-10-31T05:25:18.1849011Z patching file net/sunrpc/auth_gss/gss_krb5_mech.c
2025-10-31T05:25:18.1850124Z patching file net/sunrpc/auth_gss/gss_rpc_upcall.c
2025-10-31T05:25:18.1851147Z patching file net/sunrpc/auth_gss/gss_rpc_xdr.c
2025-10-31T05:25:18.1853005Z patching file net/sunrpc/auth_gss/svcauth_gss.c
2025-10-31T05:25:18.1855351Z patching file net/sunrpc/backchannel_rqst.c
2025-10-31T05:25:18.1856695Z patching file net/sunrpc/cache.c
2025-10-31T05:25:18.1859055Z patching file net/sunrpc/clnt.c
2025-10-31T05:25:18.1861830Z patching file net/sunrpc/debugfs.c
2025-10-31T05:25:18.1863240Z patching file net/sunrpc/rpc_pipe.c
2025-10-31T05:25:18.1864861Z patching file net/sunrpc/rpcb_clnt.c
2025-10-31T05:25:18.1866338Z patching file net/sunrpc/sched.c
2025-10-31T05:25:18.1868138Z patching file net/sunrpc/stats.c
2025-10-31T05:25:18.1869482Z patching file net/sunrpc/svc.c
2025-10-31T05:25:18.1872967Z patching file net/sunrpc/svc_xprt.c
2025-10-31T05:25:18.1874986Z patching file net/sunrpc/svcauth.c
2025-10-31T05:25:18.1876170Z patching file net/sunrpc/svcauth_unix.c
2025-10-31T05:25:18.1877677Z patching file net/sunrpc/svcsock.c
2025-10-31T05:25:18.1879863Z patching file net/sunrpc/xdr.c
2025-10-31T05:25:18.1882296Z patching file net/sunrpc/xprt.c
2025-10-31T05:25:18.1885097Z patching file net/sunrpc/xprtmultipath.c
2025-10-31T05:25:18.1886347Z patching file net/sunrpc/xprtrdma/frwr_ops.c
2025-10-31T05:25:18.1887328Z patching file net/sunrpc/xprtrdma/module.c
2025-10-31T05:25:18.1888401Z patching file net/sunrpc/xprtrdma/rpc_rdma.c
2025-10-31T05:25:18.1890193Z patching file net/sunrpc/xprtrdma/svc_rdma_backchannel.c
2025-10-31T05:25:18.1891110Z patching file net/sunrpc/xprtrdma/svc_rdma_rw.c
2025-10-31T05:25:18.1892983Z patching file net/sunrpc/xprtrdma/svc_rdma_sendto.c
2025-10-31T05:25:18.1894478Z patching file net/sunrpc/xprtrdma/svc_rdma_transport.c
2025-10-31T05:25:18.1895819Z patching file net/sunrpc/xprtrdma/transport.c
2025-10-31T05:25:18.1897419Z patching file net/sunrpc/xprtrdma/verbs.c
2025-10-31T05:25:18.1899412Z patching file net/sunrpc/xprtrdma/xprt_rdma.h
2025-10-31T05:25:18.1901210Z patching file net/sunrpc/xprtsock.c
2025-10-31T05:25:18.1904550Z patching file net/switchdev/switchdev.c
2025-10-31T05:25:18.1905866Z patching file net/tipc/bcast.c
2025-10-31T05:25:18.1907279Z patching file net/tipc/bearer.c
2025-10-31T05:25:18.1909282Z patching file net/tipc/bearer.h
2025-10-31T05:25:18.1910211Z patching file net/tipc/core.c
2025-10-31T05:25:18.1911081Z patching file net/tipc/core.h
2025-10-31T05:25:18.1912899Z patching file net/tipc/crypto.c
2025-10-31T05:25:18.1915120Z patching file net/tipc/crypto.h
2025-10-31T05:25:18.1916071Z patching file net/tipc/discover.c
2025-10-31T05:25:18.1917847Z patching file net/tipc/link.c
2025-10-31T05:25:18.1920284Z patching file net/tipc/link.h
2025-10-31T05:25:18.1921082Z patching file net/tipc/monitor.c
2025-10-31T05:25:18.1922736Z patching file net/tipc/msg.c
2025-10-31T05:25:18.1924302Z patching file net/tipc/msg.h
2025-10-31T05:25:18.1925668Z patching file net/tipc/name_distr.c
2025-10-31T05:25:18.1926460Z patching file net/tipc/name_distr.h
2025-10-31T05:25:18.1927448Z patching file net/tipc/name_table.c
2025-10-31T05:25:18.1928845Z patching file net/tipc/name_table.h
2025-10-31T05:25:18.1929616Z patching file net/tipc/net.c
2025-10-31T05:25:18.1930622Z patching file net/tipc/netlink.c
2025-10-31T05:25:18.1932145Z patching file net/tipc/netlink_compat.c
2025-10-31T05:25:18.1934300Z patching file net/tipc/node.c
2025-10-31T05:25:18.1937630Z patching file net/tipc/socket.c
2025-10-31T05:25:18.1940592Z patching file net/tipc/subscr.h
2025-10-31T05:25:18.1941454Z patching file net/tipc/topsrv.c
2025-10-31T05:25:18.1943337Z patching file net/tipc/udp_media.c
2025-10-31T05:25:18.1945032Z patching file net/tls/tls_device.c
2025-10-31T05:25:18.1946895Z patching file net/tls/tls_device_fallback.c
2025-10-31T05:25:18.1947896Z patching file net/tls/tls_main.c
2025-10-31T05:25:18.1949684Z patching file net/tls/tls_proc.c
2025-10-31T05:25:18.1950977Z patching file net/tls/tls_sw.c
2025-10-31T05:25:18.1954513Z patching file net/unix/af_unix.c
2025-10-31T05:25:18.1957540Z patching file net/unix/diag.c
2025-10-31T05:25:18.1958711Z patching file net/unix/garbage.c
2025-10-31T05:25:18.1959966Z patching file net/unix/scm.c
2025-10-31T05:25:18.1961454Z patching file net/vmw_vsock/af_vsock.c
2025-10-31T05:25:18.1964815Z patching file net/vmw_vsock/hyperv_transport.c
2025-10-31T05:25:18.1965929Z patching file net/vmw_vsock/virtio_transport.c
2025-10-31T05:25:18.1967455Z patching file net/vmw_vsock/virtio_transport_common.c
2025-10-31T05:25:18.1969641Z patching file net/vmw_vsock/vmci_transport.c
2025-10-31T05:25:18.1971468Z patching file net/wireless/Kconfig
2025-10-31T05:25:18.1972250Z patching file net/wireless/Makefile
2025-10-31T05:25:18.1973078Z patching file net/wireless/certs/wens.hex
2025-10-31T05:25:18.1974737Z patching file net/wireless/core.c
2025-10-31T05:25:18.1976373Z patching file net/wireless/core.h
2025-10-31T05:25:18.1977330Z patching file net/wireless/debugfs.c
2025-10-31T05:25:18.1978502Z patching file net/wireless/mlme.c
2025-10-31T05:25:18.1985581Z patching file net/wireless/nl80211.c
2025-10-31T05:25:18.1994325Z patching file net/wireless/pmsr.c
2025-10-31T05:25:18.1996605Z patching file net/wireless/reg.c
2025-10-31T05:25:18.2000005Z patching file net/wireless/scan.c
2025-10-31T05:25:18.2004015Z patching file net/wireless/sme.c
2025-10-31T05:25:18.2006329Z patching file net/wireless/trace.h
2025-10-31T05:25:18.2008987Z patching file net/wireless/util.c
2025-10-31T05:25:18.2011310Z patching file net/wireless/wext-core.c
2025-10-31T05:25:18.2012545Z patching file net/wireless/wext-spy.c
2025-10-31T05:25:18.2014006Z patching file net/x25/af_x25.c
2025-10-31T05:25:18.2015574Z patching file net/x25/x25_dev.c
2025-10-31T05:25:18.2016349Z patching file net/xdp/xdp_umem.c
2025-10-31T05:25:18.2017530Z patching file net/xdp/xsk.c
2025-10-31T05:25:18.2019230Z patching file net/xdp/xsk_buff_pool.c
2025-10-31T05:25:18.2020226Z patching file net/xdp/xsk_queue.h
2025-10-31T05:25:18.2021159Z patching file net/xfrm/Makefile
2025-10-31T05:25:18.2021863Z patching file net/xfrm/espintcp.c
2025-10-31T05:25:18.2023377Z patching file net/xfrm/xfrm_compat.c
2025-10-31T05:25:18.2024969Z patching file net/xfrm/xfrm_device.c
2025-10-31T05:25:18.2026298Z patching file net/xfrm/xfrm_input.c
2025-10-31T05:25:18.2027739Z patching file net/xfrm/xfrm_interface.c
2025-10-31T05:25:18.2029890Z patching file net/xfrm/xfrm_interface_core.c
2025-10-31T05:25:18.2032844Z patching file net/xfrm/xfrm_ipcomp.c
2025-10-31T05:25:18.2033841Z patching file net/xfrm/xfrm_output.c
2025-10-31T05:25:18.2036116Z patching file net/xfrm/xfrm_policy.c
2025-10-31T05:25:18.2040135Z patching file net/xfrm/xfrm_replay.c
2025-10-31T05:25:18.2041818Z patching file net/xfrm/xfrm_state.c
2025-10-31T05:25:18.2045228Z patching file net/xfrm/xfrm_user.c
2025-10-31T05:25:18.2048180Z patching file samples/Kconfig
2025-10-31T05:25:18.2048847Z patching file samples/Makefile
2025-10-31T05:25:18.2050015Z patching file samples/bpf/hbm.c
2025-10-31T05:25:18.2051050Z patching file samples/bpf/lwt_len_hist.sh
2025-10-31T05:25:18.2051905Z patching file samples/bpf/tcp_basertt_kern.c
2025-10-31T05:25:18.2052970Z patching file samples/bpf/test_cgrp2_sock.c
2025-10-31T05:25:18.2053983Z patching file samples/bpf/test_lwt_bpf.sh
2025-10-31T05:25:18.2054944Z patching file samples/bpf/test_override_return.sh
2025-10-31T05:25:18.2055609Z patching file samples/bpf/tracex1_kern.c
2025-10-31T05:25:18.2056495Z patching file samples/bpf/tracex6_kern.c
2025-10-31T05:25:18.2057351Z patching file samples/bpf/tracex7_user.c
2025-10-31T05:25:18.2058224Z patching file samples/bpf/xdp_adjust_tail_kern.c
2025-10-31T05:25:18.2060070Z patching file samples/bpf/xdp_redirect_cpu_user.c
2025-10-31T05:25:18.2061203Z patching file samples/bpf/xdp_redirect_user.c
2025-10-31T05:25:18.2062711Z patching file samples/bpf/xdpsock_user.c
2025-10-31T05:25:18.2064571Z patching file samples/fanotify/.gitignore
2025-10-31T05:25:18.2065220Z patching file samples/fanotify/Makefile
2025-10-31T05:25:18.2066003Z patching file samples/fanotify/fs-monitor.c
2025-10-31T05:25:18.2067369Z patching file samples/ftrace/ftrace-direct-modify.c
2025-10-31T05:25:18.2067985Z patching file samples/ftrace/ftrace-direct-too.c
2025-10-31T05:25:18.2068762Z patching file samples/ftrace/ftrace-direct.c
2025-10-31T05:25:18.2069500Z patching file samples/ftrace/sample-trace-array.c
2025-10-31T05:25:18.2070401Z patching file samples/hw_breakpoint/data_breakpoint.c
2025-10-31T05:25:18.2071084Z patching file samples/kfifo/bytestream-example.c
2025-10-31T05:25:18.2071927Z patching file samples/kfifo/inttype-example.c
2025-10-31T05:25:18.2072854Z patching file samples/kfifo/record-example.c
2025-10-31T05:25:18.2073802Z patching file samples/kprobes/kretprobe_example.c
2025-10-31T05:25:18.2074621Z patching file samples/mei/mei-amt-version.c
2025-10-31T05:25:18.2075785Z patching file samples/pktgen/pktgen_sample04_many_flows.sh
2025-10-31T05:25:18.2076572Z patching file samples/pktgen/pktgen_sample05_flow_per_thread.sh
2025-10-31T05:25:18.2077586Z patching file samples/vfio-mdev/mdpy-fb.c
2025-10-31T05:25:18.2078435Z patching file samples/watch_queue/watch_test.c
2025-10-31T05:25:18.2079338Z patching file scripts/Kbuild.include
2025-10-31T05:25:18.2080423Z patching file scripts/Kconfig.include
2025-10-31T05:25:18.2081294Z patching file scripts/Makefile
2025-10-31T05:25:18.2082484Z patching file scripts/Makefile.build
2025-10-31T05:25:18.2083768Z patching file scripts/Makefile.dtbinst
2025-10-31T05:25:18.2084411Z patching file scripts/Makefile.extrawarn
2025-10-31T05:25:18.2085258Z patching file scripts/Makefile.gcc-plugins
2025-10-31T05:25:18.2086005Z patching file scripts/Makefile.kasan
2025-10-31T05:25:18.2086930Z patching file scripts/Makefile.modpost
2025-10-31T05:25:18.2087868Z patching file scripts/Makefile.ubsan
2025-10-31T05:25:18.2088547Z patching file scripts/as-version.sh
2025-10-31T05:25:18.2090259Z patching file scripts/asn1_compiler.c
2025-10-31T05:25:18.2091626Z patching file scripts/bloat-o-meter
2025-10-31T05:25:18.2092654Z patching file scripts/bpf_helpers_doc.py
2025-10-31T05:25:18.2094087Z patching file scripts/checkkconfigsymbols.py
2025-10-31T05:25:18.2096974Z patching file scripts/checkpatch.pl
2025-10-31T05:25:18.2100815Z patching file scripts/checkstack.pl
2025-10-31T05:25:18.2101654Z patching file scripts/clang-tools/gen_compile_commands.py
2025-10-31T05:25:18.2102546Z patching file scripts/clang-tools/run-clang-tools.py
2025-10-31T05:25:18.2103537Z patching file scripts/config
2025-10-31T05:25:18.2104638Z patching file scripts/decode_stacktrace.sh
2025-10-31T05:25:18.2105957Z patching file scripts/depmod.sh
2025-10-31T05:25:18.2106618Z patching file scripts/diffconfig
2025-10-31T05:25:18.2107636Z patching file scripts/dtc/Makefile
2025-10-31T05:25:18.2108330Z patching file scripts/dtc/dtx_diff
2025-10-31T05:25:18.2110353Z patching file scripts/dummy-tools/dummy-plugin-dir/include/plugin-version.h
2025-10-31T05:25:18.2110694Z patching file scripts/dummy-tools/gcc
2025-10-31T05:25:18.2111668Z patching file scripts/extract-cert.c
2025-10-31T05:25:18.2112628Z patching file scripts/faddr2line
2025-10-31T05:25:18.2115098Z patching file scripts/gcc-plugin.sh
2025-10-31T05:25:18.2115871Z patching file scripts/gcc-plugins/Kconfig
2025-10-31T05:25:18.2116626Z patching file scripts/gcc-plugins/Makefile
2025-10-31T05:25:18.2117608Z patching file scripts/gcc-plugins/gcc-common.h
2025-10-31T05:25:18.2119245Z patching file scripts/gcc-plugins/latent_entropy_plugin.c
2025-10-31T05:25:18.2120716Z patching file scripts/gcc-plugins/randomize_layout_plugin.c
2025-10-31T05:25:18.2122355Z patching file scripts/gcc-plugins/stackleak_plugin.c
2025-10-31T05:25:18.2123706Z patching file scripts/gcc-x86_32-has-stack-protector.sh
2025-10-31T05:25:18.2124344Z patching file scripts/gcc-x86_64-has-stack-protector.sh
2025-10-31T05:25:18.2125130Z patching file scripts/gdb/linux/clk.py
2025-10-31T05:25:18.2125808Z patching file scripts/gdb/linux/config.py
2025-10-31T05:25:18.2126590Z patching file scripts/gdb/linux/genpd.py
2025-10-31T05:25:18.2127339Z patching file scripts/gdb/linux/timerlist.py
2025-10-31T05:25:18.2128214Z patching file scripts/gdb/linux/utils.py
2025-10-31T05:25:18.2129068Z patching file scripts/gen_autoksyms.sh
2025-10-31T05:25:18.2129797Z patching file scripts/gen_ksymdeps.sh
2025-10-31T05:25:18.2130801Z patching file scripts/genksyms/genksyms.c
2025-10-31T05:25:18.2132237Z patching file scripts/genksyms/genksyms.h
2025-10-31T05:25:18.2132970Z patching file scripts/genksyms/parse.y
2025-10-31T05:25:18.2134374Z patching file scripts/get_abi.pl
2025-10-31T05:25:18.2135764Z patching file scripts/kallsyms.c
2025-10-31T05:25:18.2137186Z patching file scripts/kconfig/confdata.c
2025-10-31T05:25:18.2138683Z patching file scripts/kconfig/expr.c
2025-10-31T05:25:18.2140014Z patching file scripts/kconfig/expr.h
2025-10-31T05:25:18.2141283Z patching file scripts/kconfig/gconf.c
2025-10-31T05:25:18.2143053Z patching file scripts/kconfig/lexer.l
2025-10-31T05:25:18.2144007Z patching file scripts/kconfig/lxdialog/inputbox.c
2025-10-31T05:25:18.2145012Z patching file scripts/kconfig/lxdialog/menubox.c
2025-10-31T05:25:18.2145906Z patching file scripts/kconfig/menu.c
2025-10-31T05:25:18.2146989Z patching file scripts/kconfig/merge_config.sh
2025-10-31T05:25:18.2148253Z patching file scripts/kconfig/nconf.c
2025-10-31T05:25:18.2149814Z patching file scripts/kconfig/nconf.gui.c
2025-10-31T05:25:18.2150769Z patching file scripts/kconfig/preprocess.c
2025-10-31T05:25:18.2152353Z patching file scripts/kconfig/qconf.cc
2025-10-31T05:25:18.2154300Z patching file scripts/kconfig/symbol.c
2025-10-31T05:25:18.2156385Z patching file scripts/kernel-doc
2025-10-31T05:25:18.2159073Z patching file scripts/leaking_addresses.pl
2025-10-31T05:25:18.2160063Z patching file scripts/link-vmlinux.sh
2025-10-31T05:25:18.2161064Z patching file scripts/lld-version.sh
2025-10-31T05:25:18.2161914Z patching file scripts/mkcompile_h
2025-10-31T05:25:18.2162962Z patching file scripts/mksysmap
2025-10-31T05:25:18.2164245Z patching file scripts/mod/file2alias.c
2025-10-31T05:25:18.2166401Z patching file scripts/mod/modpost.c
2025-10-31T05:25:18.2168525Z patching file scripts/mod/sumversion.c
2025-10-31T05:25:18.2169350Z patching file scripts/module.lds.S
2025-10-31T05:25:18.2170217Z patching file scripts/package/mkdebian
2025-10-31T05:25:18.2170971Z patching file scripts/package/mkspec
2025-10-31T05:25:18.2171918Z patching file scripts/pahole-flags.sh
2025-10-31T05:25:18.2173431Z patching file scripts/recordmcount.c
2025-10-31T05:25:18.2174692Z patching file scripts/recordmcount.h
2025-10-31T05:25:18.2175987Z patching file scripts/recordmcount.pl
2025-10-31T05:25:18.2177083Z patching file scripts/selinux/install_policy.sh
2025-10-31T05:25:18.2177970Z patching file scripts/show_delta
2025-10-31T05:25:18.2178734Z patching file scripts/sign-file.c
2025-10-31T05:25:18.2180848Z patching file scripts/sorttable.h
2025-10-31T05:25:18.2182645Z patching file scripts/sphinx-pre-install
2025-10-31T05:25:18.2183301Z patching file scripts/split-man.pl
2025-10-31T05:25:18.2183735Z patching file scripts/tags.sh
2025-10-31T05:25:18.2185231Z patching file scripts/tools-support-relr.sh
2025-10-31T05:25:18.2185787Z patching file scripts/tracing/draw_functrace.py
2025-10-31T05:25:18.2186544Z patching file scripts/tracing/ftrace-bisect.sh
2025-10-31T05:25:18.2187476Z patching file security/Kconfig
2025-10-31T05:25:18.2189289Z patching file security/Kconfig.hardening
2025-10-31T05:25:18.2190854Z patching file security/apparmor/apparmorfs.c
2025-10-31T05:25:18.2192926Z patching file security/apparmor/audit.c
2025-10-31T05:25:18.2193791Z patching file security/apparmor/capability.c
2025-10-31T05:25:18.2195080Z patching file security/apparmor/domain.c
2025-10-31T05:25:18.2197064Z patching file security/apparmor/include/audit.h
2025-10-31T05:25:18.2197665Z patching file security/apparmor/include/lib.h
2025-10-31T05:25:18.2199113Z patching file security/apparmor/include/match.h
2025-10-31T05:25:18.2199780Z patching file security/apparmor/include/policy.h
2025-10-31T05:25:18.2200813Z patching file security/apparmor/label.c
2025-10-31T05:25:18.2203640Z patching file security/apparmor/lsm.c
2025-10-31T05:25:18.2206363Z patching file security/apparmor/match.c
2025-10-31T05:25:18.2207011Z patching file security/apparmor/mount.c
2025-10-31T05:25:18.2208583Z patching file security/apparmor/policy.c
2025-10-31T05:25:18.2210077Z patching file security/apparmor/policy_ns.c
2025-10-31T05:25:18.2211328Z patching file security/apparmor/policy_unpack.c
2025-10-31T05:25:18.2213277Z patching file security/apparmor/policy_unpack_test.c
2025-10-31T05:25:18.2215024Z patching file security/commoncap.c
2025-10-31T05:25:18.2216714Z patching file security/device_cgroup.c
2025-10-31T05:25:18.2218874Z patching file security/inode.c
2025-10-31T05:25:18.2219478Z patching file security/integrity/digsig.c
2025-10-31T05:25:18.2220298Z patching file security/integrity/evm/evm_main.c
2025-10-31T05:25:18.2222179Z patching file security/integrity/evm/evm_secfs.c
2025-10-31T05:25:18.2222774Z patching file security/integrity/iint.c
2025-10-31T05:25:18.2225239Z patching file security/integrity/ima/Kconfig
2025-10-31T05:25:18.2225985Z patching file security/integrity/ima/ima.h
2025-10-31T05:25:18.2227122Z patching file security/integrity/ima/ima_api.c
2025-10-31T05:25:18.2228541Z patching file security/integrity/ima/ima_appraise.c
2025-10-31T05:25:18.2229850Z patching file security/integrity/ima/ima_crypto.c
2025-10-31T05:25:18.2231057Z patching file security/integrity/ima/ima_fs.c
2025-10-31T05:25:18.2232351Z patching file security/integrity/ima/ima_kexec.c
2025-10-31T05:25:18.2233774Z patching file security/integrity/ima/ima_main.c
2025-10-31T05:25:18.2234914Z patching file security/integrity/ima/ima_modsig.c
2025-10-31T05:25:18.2235640Z patching file security/integrity/ima/ima_mok.c
2025-10-31T05:25:18.2237023Z patching file security/integrity/ima/ima_policy.c
2025-10-31T05:25:18.2240181Z patching file security/integrity/ima/ima_template.c
2025-10-31T05:25:18.2241617Z patching file security/integrity/ima/ima_template_lib.c
2025-10-31T05:25:18.2242750Z patching file security/integrity/integrity.h
2025-10-31T05:25:18.2243887Z patching file security/integrity/integrity_audit.c
2025-10-31T05:25:18.2244704Z patching file security/integrity/platform_certs/keyring_handler.c
2025-10-31T05:25:18.2245656Z patching file security/integrity/platform_certs/keyring_handler.h
2025-10-31T05:25:18.2246467Z patching file security/integrity/platform_certs/load_uefi.c
2025-10-31T05:25:18.2247320Z patching file security/keys/Kconfig
2025-10-31T05:25:18.2247977Z patching file security/keys/gc.c
2025-10-31T05:25:18.2249068Z patching file security/keys/internal.h
2025-10-31T05:25:18.2250222Z patching file security/keys/key.c
2025-10-31T05:25:18.2252090Z patching file security/keys/keyctl.c
2025-10-31T05:25:18.2253887Z patching file security/keys/keyctl_pkey.c
2025-10-31T05:25:18.2255154Z patching file security/keys/keyring.c
2025-10-31T05:25:18.2256642Z patching file security/keys/proc.c
2025-10-31T05:25:18.2257599Z patching file security/keys/request_key.c
2025-10-31T05:25:18.2259229Z patching file security/keys/trusted-keys/trusted_tpm1.c
2025-10-31T05:25:18.2260714Z patching file security/keys/trusted-keys/trusted_tpm2.c
2025-10-31T05:25:18.2261779Z patching file security/loadpin/loadpin.c
2025-10-31T05:25:18.2263050Z patching file security/lsm_audit.c
2025-10-31T05:25:18.2264122Z patching file security/safesetid/securityfs.c
2025-10-31T05:25:18.2265481Z patching file security/security.c
2025-10-31T05:25:18.2267723Z patching file security/selinux/Makefile
2025-10-31T05:25:18.2268711Z patching file security/selinux/avc.c
2025-10-31T05:25:18.2272213Z patching file security/selinux/hooks.c
2025-10-31T05:25:18.2276550Z patching file security/selinux/include/audit.h
2025-10-31T05:25:18.2277213Z patching file security/selinux/include/classmap.h
2025-10-31T05:25:18.2278061Z patching file security/selinux/include/policycap.h
2025-10-31T05:25:18.2278699Z patching file security/selinux/include/policycap_names.h
2025-10-31T05:25:18.2279479Z patching file security/selinux/include/security.h
2025-10-31T05:25:18.2280395Z patching file security/selinux/include/xfrm.h
2025-10-31T05:25:18.2281084Z patching file security/selinux/nlmsgtab.c
2025-10-31T05:25:18.2282801Z patching file security/selinux/selinuxfs.c
2025-10-31T05:25:18.2284856Z patching file security/selinux/ss/avtab.c
2025-10-31T05:25:18.2286681Z patching file security/selinux/ss/avtab.h
2025-10-31T05:25:18.2287407Z patching file security/selinux/ss/conditional.c
2025-10-31T05:25:18.2289021Z patching file security/selinux/ss/hashtab.c
2025-10-31T05:25:18.2290867Z patching file security/selinux/ss/policydb.c
2025-10-31T05:25:18.2293830Z patching file security/selinux/ss/policydb.h
2025-10-31T05:25:18.2295652Z patching file security/selinux/ss/services.c
2025-10-31T05:25:18.2300082Z patching file security/selinux/ss/sidtab.c
2025-10-31T05:25:18.2301089Z patching file security/selinux/ss/sidtab.h
2025-10-31T05:25:18.2302247Z patching file security/selinux/xfrm.c
2025-10-31T05:25:18.2303897Z patching file security/smack/smack.h
2025-10-31T05:25:18.2305116Z patching file security/smack/smack_access.c
2025-10-31T05:25:18.2307547Z patching file security/smack/smack_lsm.c
2025-10-31T05:25:18.2311832Z patching file security/smack/smackfs.c
2025-10-31T05:25:18.2314585Z patching file security/tomoyo/Makefile
2025-10-31T05:25:18.2315972Z patching file security/tomoyo/common.c
2025-10-31T05:25:18.2318554Z patching file security/tomoyo/domain.c
2025-10-31T05:25:18.2320138Z patching file security/tomoyo/file.c
2025-10-31T05:25:18.2321858Z patching file security/tomoyo/load_policy.c
2025-10-31T05:25:18.2322688Z patching file security/tomoyo/network.c
2025-10-31T05:25:18.2324231Z patching file security/tomoyo/tomoyo.c
2025-10-31T05:25:18.2325669Z patching file security/tomoyo/util.c
2025-10-31T05:25:18.2327368Z patching file sound/Kconfig
2025-10-31T05:25:18.2328181Z patching file sound/ac97/bus.c
2025-10-31T05:25:18.2329787Z patching file sound/aoa/soundbus/i2sbus/core.c
2025-10-31T05:25:18.2330951Z patching file sound/arm/aaci.c
2025-10-31T05:25:18.2332793Z patching file sound/core/Makefile
2025-10-31T05:25:18.2334176Z patching file sound/core/control.c
2025-10-31T05:25:18.2335695Z patching file sound/core/control_compat.c
2025-10-31T05:25:18.2337160Z patching file sound/core/info.c
2025-10-31T05:25:18.2338907Z patching file sound/core/init.c
2025-10-31T05:25:18.2340643Z patching file sound/core/jack.c
2025-10-31T05:25:18.2342433Z patching file sound/core/memalloc.c
2025-10-31T05:25:18.2343246Z patching file sound/core/misc.c
2025-10-31T05:25:18.2345248Z patching file sound/core/oss/mixer_oss.c
2025-10-31T05:25:18.2347943Z patching file sound/core/oss/pcm_oss.c
2025-10-31T05:25:18.2351348Z patching file sound/core/oss/pcm_plugin.c
2025-10-31T05:25:18.2352240Z patching file sound/core/oss/pcm_plugin.h
2025-10-31T05:25:18.2353773Z patching file sound/core/pcm.c
2025-10-31T05:25:18.2355619Z patching file sound/core/pcm_compat.c
2025-10-31T05:25:18.2357216Z patching file sound/core/pcm_dmaengine.c
2025-10-31T05:25:18.2359221Z patching file sound/core/pcm_lib.c
2025-10-31T05:25:18.2361485Z patching file sound/core/pcm_local.h
2025-10-31T05:25:18.2362143Z patching file sound/core/pcm_memory.c
2025-10-31T05:25:18.2363810Z patching file sound/core/pcm_misc.c
2025-10-31T05:25:18.2365980Z patching file sound/core/pcm_native.c
2025-10-31T05:25:18.2370227Z patching file sound/core/rawmidi.c
2025-10-31T05:25:18.2373029Z patching file sound/core/seq/oss/seq_oss_midi.c
2025-10-31T05:25:18.2374677Z patching file sound/core/seq/oss/seq_oss_synth.c
2025-10-31T05:25:18.2376542Z patching file sound/core/seq/seq_clientmgr.c
2025-10-31T05:25:18.2378879Z patching file sound/core/seq/seq_memory.c
2025-10-31T05:25:18.2379834Z patching file sound/core/seq/seq_midi.c
2025-10-31T05:25:18.2381211Z patching file sound/core/seq/seq_ports.c
2025-10-31T05:25:18.2383280Z patching file sound/core/seq/seq_queue.c
2025-10-31T05:25:18.2384827Z patching file sound/core/seq/seq_queue.h
2025-10-31T05:25:18.2385448Z patching file sound/core/seq/seq_timer.c
2025-10-31T05:25:18.2386652Z patching file sound/core/seq/seq_virmidi.c
2025-10-31T05:25:18.2387848Z patching file sound/core/seq_device.c
2025-10-31T05:25:18.2388903Z patching file sound/core/sound_oss.c
2025-10-31T05:25:18.2390638Z patching file sound/core/timer.c
2025-10-31T05:25:18.2393790Z patching file sound/drivers/aloop.c
2025-10-31T05:25:18.2395949Z patching file sound/drivers/mts64.c
2025-10-31T05:25:18.2397736Z patching file sound/drivers/opl3/opl3_midi.c
2025-10-31T05:25:18.2398834Z patching file sound/firewire/Kconfig
2025-10-31T05:25:18.2399844Z patching file sound/firewire/amdtp-stream-trace.h
2025-10-31T05:25:18.2401007Z patching file sound/firewire/amdtp-stream.c
2025-10-31T05:25:18.2403693Z patching file sound/firewire/amdtp-stream.h
2025-10-31T05:25:18.2404623Z patching file sound/firewire/bebob/bebob.c
2025-10-31T05:25:18.2406303Z patching file sound/firewire/bebob/bebob_stream.c
2025-10-31T05:25:18.2407600Z patching file sound/firewire/dice/dice-alesis.c
2025-10-31T05:25:18.2408503Z patching file sound/firewire/dice/dice-stream.c
2025-10-31T05:25:18.2409972Z patching file sound/firewire/dice/dice-tcelectronic.c
2025-10-31T05:25:18.2410565Z patching file sound/firewire/digi00x/digi00x-stream.c
2025-10-31T05:25:18.2411666Z patching file sound/firewire/fcp.c
2025-10-31T05:25:18.2412987Z patching file sound/firewire/fireface/ff-protocol-latter.c
2025-10-31T05:25:18.2414649Z patching file sound/firewire/fireface/ff-transaction.c
2025-10-31T05:25:18.2415612Z patching file sound/firewire/fireworks/fireworks_hwdep.c
2025-10-31T05:25:18.2416613Z patching file sound/firewire/motu/motu-hwdep.c
2025-10-31T05:25:18.2417599Z patching file sound/firewire/motu/motu-protocol-v2.c
2025-10-31T05:25:18.2418738Z patching file sound/firewire/oxfw/oxfw.c
2025-10-31T05:25:18.2419960Z patching file sound/firewire/tascam/amdtp-tascam.c
2025-10-31T05:25:18.2420934Z patching file sound/firewire/tascam/tascam-stream.c
2025-10-31T05:25:18.2422354Z patching file sound/firewire/tascam/tascam-transaction.c
2025-10-31T05:25:18.2423493Z patching file sound/hda/ext/hdac_ext_stream.c
2025-10-31T05:25:18.2425412Z patching file sound/hda/hdac_controller.c
2025-10-31T05:25:18.2426583Z patching file sound/hda/hdac_device.c
2025-10-31T05:25:18.2428415Z patching file sound/hda/hdac_regmap.c
2025-10-31T05:25:18.2429456Z patching file sound/hda/hdac_stream.c
2025-10-31T05:25:18.2431302Z patching file sound/hda/hdac_sysfs.c
2025-10-31T05:25:18.2432393Z patching file sound/hda/hdmi_chmap.c
2025-10-31T05:25:18.2434147Z patching file sound/hda/intel-dsp-config.c
2025-10-31T05:25:18.2435640Z patching file sound/hda/intel-nhlt.c
2025-10-31T05:25:18.2436660Z patching file sound/i2c/cs8427.c
2025-10-31T05:25:18.2438238Z patching file sound/isa/Kconfig
2025-10-31T05:25:18.2439300Z patching file sound/isa/cmi8330.c
2025-10-31T05:25:18.2440955Z patching file sound/isa/cs423x/cs4236.c
2025-10-31T05:25:18.2442310Z patching file sound/isa/gus/gus_dma.c
2025-10-31T05:25:18.2443327Z patching file sound/isa/gus/gus_main.c
2025-10-31T05:25:18.2445075Z patching file sound/isa/sb/emu8000.c
2025-10-31T05:25:18.2446943Z patching file sound/isa/sb/sb16_csp.c
2025-10-31T05:25:18.2448872Z patching file sound/isa/sb/sb16_main.c
2025-10-31T05:25:18.2450011Z patching file sound/isa/sb/sb8.c
2025-10-31T05:25:18.2451841Z patching file sound/isa/wavefront/wavefront_synth.c
2025-10-31T05:25:18.2454170Z patching file sound/oss/dmasound/dmasound.h
2025-10-31T05:25:18.2455230Z patching file sound/oss/dmasound/dmasound_core.c
2025-10-31T05:25:18.2457631Z patching file sound/pci/Kconfig
2025-10-31T05:25:18.2459793Z patching file sound/pci/ac97/ac97_codec.c
2025-10-31T05:25:18.2463232Z patching file sound/pci/asihpi/hpi6205.c
2025-10-31T05:25:18.2465512Z patching file sound/pci/asihpi/hpimsgx.c
2025-10-31T05:25:18.2466601Z patching file sound/pci/asihpi/hpioctl.c
2025-10-31T05:25:18.2467790Z patching file sound/pci/au88x0/au88x0.h
2025-10-31T05:25:18.2469754Z patching file sound/pci/au88x0/au88x0_core.c
2025-10-31T05:25:18.2473117Z patching file sound/pci/cmipci.c
2025-10-31T05:25:18.2475863Z patching file sound/pci/ctxfi/ctamixer.c
2025-10-31T05:25:18.2477333Z patching file sound/pci/ctxfi/ctatc.c
2025-10-31T05:25:18.2479287Z patching file sound/pci/ctxfi/ctdaio.c
2025-10-31T05:25:18.2480431Z patching file sound/pci/ctxfi/cthardware.h
2025-10-31T05:25:18.2482197Z patching file sound/pci/ctxfi/cthw20k2.c
2025-10-31T05:25:18.2484339Z patching file sound/pci/ctxfi/ctresource.c
2025-10-31T05:25:18.2484968Z patching file sound/pci/ctxfi/ctresource.h
2025-10-31T05:25:18.2485978Z patching file sound/pci/ctxfi/ctsrc.c
2025-10-31T05:25:18.2488200Z patching file sound/pci/emu10k1/emufx.c
2025-10-31T05:25:18.2491433Z patching file sound/pci/emu10k1/emupcm.c
2025-10-31T05:25:18.2494212Z patching file sound/pci/es1968.c
2025-10-31T05:25:18.2497040Z patching file sound/pci/hda/hda_auto_parser.c
2025-10-31T05:25:18.2498386Z patching file sound/pci/hda/hda_beep.c
2025-10-31T05:25:18.2499415Z patching file sound/pci/hda/hda_beep.h
2025-10-31T05:25:18.2500269Z patching file sound/pci/hda/hda_bind.c
2025-10-31T05:25:18.2502772Z patching file sound/pci/hda/hda_codec.c
2025-10-31T05:25:18.2506556Z patching file sound/pci/hda/hda_controller.c
2025-10-31T05:25:18.2507761Z patching file sound/pci/hda/hda_controller.h
2025-10-31T05:25:18.2510470Z patching file sound/pci/hda/hda_generic.c
2025-10-31T05:25:18.2514988Z patching file sound/pci/hda/hda_generic.h
2025-10-31T05:25:18.2516681Z patching file sound/pci/hda/hda_intel.c
2025-10-31T05:25:18.2520359Z patching file sound/pci/hda/hda_intel.h
2025-10-31T05:25:18.2521111Z patching file sound/pci/hda/hda_local.h
2025-10-31T05:25:18.2522756Z patching file sound/pci/hda/hda_sysfs.c
2025-10-31T05:25:18.2524173Z patching file sound/pci/hda/hda_tegra.c
2025-10-31T05:25:18.2526058Z patching file sound/pci/hda/ideapad_s740_helper.c
2025-10-31T05:25:18.2530924Z patching file sound/pci/hda/patch_ca0132.c
2025-10-31T05:25:18.2536768Z patching file sound/pci/hda/patch_cirrus.c
2025-10-31T05:25:18.2538460Z patching file sound/pci/hda/patch_conexant.c
2025-10-31T05:25:18.2542232Z patching file sound/pci/hda/patch_hdmi.c
2025-10-31T05:25:18.2548838Z patching file sound/pci/hda/patch_realtek.c
2025-10-31T05:25:18.2564251Z patching file sound/pci/hda/patch_sigmatel.c
2025-10-31T05:25:18.2567720Z patching file sound/pci/hda/patch_via.c
2025-10-31T05:25:18.2570018Z patching file sound/pci/ice1712/aureon.c
2025-10-31T05:25:18.2572943Z patching file sound/pci/intel8x0.c
2025-10-31T05:25:18.2575942Z patching file sound/pci/lx6464es/lx_core.c
2025-10-31T05:25:18.2577818Z patching file sound/pci/oxygen/oxygen_mixer.c
2025-10-31T05:25:18.2580565Z patching file sound/pci/rme9652/hdsp.c
2025-10-31T05:25:18.2586033Z patching file sound/pci/rme9652/hdspm.c
2025-10-31T05:25:18.2591084Z patching file sound/pci/rme9652/rme9652.c
2025-10-31T05:25:18.2593843Z patching file sound/pci/ymfpci/ymfpci.c
2025-10-31T05:25:18.2595991Z patching file sound/pci/ymfpci/ymfpci_main.c
2025-10-31T05:25:18.2598867Z patching file sound/ppc/powermac.c
2025-10-31T05:25:18.2599429Z patching file sound/sh/Kconfig
2025-10-31T05:25:18.2600371Z patching file sound/sh/aica.c
2025-10-31T05:25:18.2602408Z patching file sound/soc/amd/acp-da7219-max98357a.c
2025-10-31T05:25:18.2603612Z patching file sound/soc/amd/acp-pcm-dma.c
2025-10-31T05:25:18.2605609Z patching file sound/soc/amd/raven/acp3x-pcm-dma.c
2025-10-31T05:25:18.2606629Z patching file sound/soc/amd/raven/acp3x.h
2025-10-31T05:25:18.2607594Z patching file sound/soc/amd/raven/pci-acp3x.c
2025-10-31T05:25:18.2608974Z patching file sound/soc/amd/renoir/acp3x-pdm-dma.c
2025-10-31T05:25:18.2610035Z patching file sound/soc/amd/renoir/rn-pci-acp3x.c
2025-10-31T05:25:18.2611533Z patching file sound/soc/atmel/Kconfig
2025-10-31T05:25:18.2612587Z patching file sound/soc/atmel/atmel-classd.c
2025-10-31T05:25:18.2614140Z patching file sound/soc/atmel/atmel-i2s.c
2025-10-31T05:25:18.2615883Z patching file sound/soc/atmel/atmel-pdmic.c
2025-10-31T05:25:18.2617105Z patching file sound/soc/atmel/atmel_ssc_dai.c
2025-10-31T05:25:18.2618785Z patching file sound/soc/atmel/mchp-spdifrx.c
2025-10-31T05:25:18.2621780Z patching file sound/soc/atmel/mchp-spdiftx.c
2025-10-31T05:25:18.2623118Z patching file sound/soc/atmel/sam9g20_wm8731.c
2025-10-31T05:25:18.2624072Z patching file sound/soc/atmel/sam9x5_wm8731.c
2025-10-31T05:25:18.2625188Z patching file sound/soc/atmel/tse850-pcm5142.c
2025-10-31T05:25:18.2626285Z patching file sound/soc/au1x/db1200.c
2025-10-31T05:25:18.2627891Z patching file sound/soc/codecs/Kconfig
2025-10-31T05:25:18.2630270Z patching file sound/soc/codecs/adau7118.c
2025-10-31T05:25:18.2631607Z patching file sound/soc/codecs/ak4458.c
2025-10-31T05:25:18.2633624Z patching file sound/soc/codecs/ak5558.c
2025-10-31T05:25:18.2635514Z patching file sound/soc/codecs/arizona.c
2025-10-31T05:25:18.2638370Z patching file sound/soc/codecs/cpcap.c
2025-10-31T05:25:18.2640514Z patching file sound/soc/codecs/cros_ec_codec.c
2025-10-31T05:25:18.2642456Z patching file sound/soc/codecs/cs35l33.c
2025-10-31T05:25:18.2644470Z patching file sound/soc/codecs/cs35l34.c
2025-10-31T05:25:18.2646607Z patching file sound/soc/codecs/cs35l36.c
2025-10-31T05:25:18.2648891Z patching file sound/soc/codecs/cs4265.c
2025-10-31T05:25:18.2650500Z patching file sound/soc/codecs/cs42l42.c
2025-10-31T05:25:18.2654693Z patching file sound/soc/codecs/cs42l42.h
2025-10-31T05:25:18.2656835Z patching file sound/soc/codecs/cs42l51-i2c.c
2025-10-31T05:25:18.2665757Z patching file sound/soc/codecs/cs42l51.c
2025-10-31T05:25:18.2666599Z patching file sound/soc/codecs/cs42l51.h
2025-10-31T05:25:18.2667187Z patching file sound/soc/codecs/cs42l52.c
2025-10-31T05:25:18.2668285Z patching file sound/soc/codecs/cs42l56.c
2025-10-31T05:25:18.2668658Z patching file sound/soc/codecs/cs43130.c
2025-10-31T05:25:18.2669028Z patching file sound/soc/codecs/cs47l15.c
2025-10-31T05:25:18.2669386Z patching file sound/soc/codecs/cs53l30.c
2025-10-31T05:25:18.2672724Z patching file sound/soc/codecs/cx2072x.c
2025-10-31T05:25:18.2674618Z patching file sound/soc/codecs/da7210.c
2025-10-31T05:25:18.2683163Z patching file sound/soc/codecs/da7219-aad.c
2025-10-31T05:25:18.2683697Z patching file sound/soc/codecs/da7219.c
2025-10-31T05:25:18.2684697Z patching file sound/soc/codecs/es8316.c
2025-10-31T05:25:18.2685280Z patching file sound/soc/codecs/es8328.c
2025-10-31T05:25:18.2685636Z patching file sound/soc/codecs/hdac_hda.c
2025-10-31T05:25:18.2685972Z patching file sound/soc/codecs/hdac_hda.h
2025-10-31T05:25:18.2686457Z patching file sound/soc/codecs/hdac_hdmi.c
2025-10-31T05:25:18.2689311Z patching file sound/soc/codecs/hdmi-codec.c
2025-10-31T05:25:18.2691501Z patching file sound/soc/codecs/jz4725b.c
2025-10-31T05:25:18.2694292Z patching file sound/soc/codecs/madera.c
2025-10-31T05:25:18.2698294Z patching file sound/soc/codecs/max9759.c
2025-10-31T05:25:18.2700146Z patching file sound/soc/codecs/max98088.c
2025-10-31T05:25:18.2703323Z patching file sound/soc/codecs/max98090.c
2025-10-31T05:25:18.2707043Z patching file sound/soc/codecs/max98373-i2c.c
2025-10-31T05:25:18.2708147Z patching file sound/soc/codecs/max98373-sdw.c
2025-10-31T05:25:18.2719247Z patching file sound/soc/codecs/max98373.c
2025-10-31T05:25:18.2719652Z patching file sound/soc/codecs/max98373.h
2025-10-31T05:25:18.2720012Z patching file sound/soc/codecs/max98390.c
2025-10-31T05:25:18.2720407Z patching file sound/soc/codecs/msm8916-wcd-analog.c
2025-10-31T05:25:18.2720819Z patching file sound/soc/codecs/msm8916-wcd-digital.c
2025-10-31T05:25:18.2721170Z patching file sound/soc/codecs/mt6358.c
2025-10-31T05:25:18.2721512Z patching file sound/soc/codecs/mt6660.c
2025-10-31T05:25:18.2721873Z patching file sound/soc/codecs/nau8822.c
2025-10-31T05:25:18.2722418Z patching file sound/soc/codecs/nau8822.h
2025-10-31T05:25:18.2723139Z patching file sound/soc/codecs/nau8824.c
2025-10-31T05:25:18.2726245Z patching file sound/soc/codecs/pcm512x.c
2025-10-31T05:25:18.2728554Z patching file sound/soc/codecs/rk3328_codec.c
2025-10-31T05:25:18.2729930Z patching file sound/soc/codecs/rt1015.c
2025-10-31T05:25:18.2731792Z patching file sound/soc/codecs/rt1308-sdw.c
2025-10-31T05:25:18.2733398Z patching file sound/soc/codecs/rt1308-sdw.h
2025-10-31T05:25:18.2734675Z patching file sound/soc/codecs/rt286.c
2025-10-31T05:25:18.2736740Z patching file sound/soc/codecs/rt298.c
2025-10-31T05:25:18.2738891Z patching file sound/soc/codecs/rt5514.c
2025-10-31T05:25:18.2740986Z patching file sound/soc/codecs/rt5631.c
2025-10-31T05:25:18.2744066Z patching file sound/soc/codecs/rt5640.c
2025-10-31T05:25:18.2747641Z patching file sound/soc/codecs/rt5645.c
2025-10-31T05:25:18.2752400Z patching file sound/soc/codecs/rt5651.c
2025-10-31T05:25:18.2755258Z patching file sound/soc/codecs/rt5659.c
2025-10-31T05:25:18.2758662Z patching file sound/soc/codecs/rt5663.c
2025-10-31T05:25:18.2762179Z patching file sound/soc/codecs/rt5665.c
2025-10-31T05:25:18.2765683Z patching file sound/soc/codecs/rt5668.c
2025-10-31T05:25:18.2768229Z patching file sound/soc/codecs/rt5670.c
2025-10-31T05:25:18.2770511Z patching file sound/soc/codecs/rt5682-i2c.c
2025-10-31T05:25:18.2772125Z patching file sound/soc/codecs/rt5682-sdw.c
2025-10-31T05:25:18.2774180Z patching file sound/soc/codecs/rt5682.c
2025-10-31T05:25:18.2776815Z patching file sound/soc/codecs/rt700-sdw.c
2025-10-31T05:25:18.2777821Z patching file sound/soc/codecs/rt700.c
2025-10-31T05:25:18.2779339Z patching file sound/soc/codecs/rt711-sdw.c
2025-10-31T05:25:18.2780315Z patching file sound/soc/codecs/rt711-sdw.h
2025-10-31T05:25:18.2781618Z patching file sound/soc/codecs/rt711.c
2025-10-31T05:25:18.2783479Z patching file sound/soc/codecs/rt711.h
2025-10-31T05:25:18.2784509Z patching file sound/soc/codecs/rt715-sdw.c
2025-10-31T05:25:18.2785873Z patching file sound/soc/codecs/rt715.c
2025-10-31T05:25:18.2787521Z patching file sound/soc/codecs/sgtl5000.c
2025-10-31T05:25:18.2789259Z patching file sound/soc/codecs/sgtl5000.h
2025-10-31T05:25:18.2790325Z patching file sound/soc/codecs/ssm2602.c
2025-10-31T05:25:18.2791617Z patching file sound/soc/codecs/sti-sas.c
2025-10-31T05:25:18.2793081Z patching file sound/soc/codecs/tas2552.c
2025-10-31T05:25:18.2794451Z patching file sound/soc/codecs/tas2562.h
2025-10-31T05:25:18.2795448Z patching file sound/soc/codecs/tas2764.c
2025-10-31T05:25:18.2797381Z patching file sound/soc/codecs/tas2764.h
2025-10-31T05:25:18.2798361Z patching file sound/soc/codecs/tas2770.c
2025-10-31T05:25:18.2800265Z patching file sound/soc/codecs/tas2770.h
2025-10-31T05:25:18.2801290Z patching file sound/soc/codecs/tda7419.c
2025-10-31T05:25:18.2802928Z patching file sound/soc/codecs/tlv320adcx140.c
2025-10-31T05:25:18.2804767Z patching file sound/soc/codecs/tlv320aic31xx.c
2025-10-31T05:25:18.2806387Z patching file sound/soc/codecs/tlv320aic31xx.h
2025-10-31T05:25:18.2807638Z patching file sound/soc/codecs/tlv320aic32x4.c
2025-10-31T05:25:18.2809916Z patching file sound/soc/codecs/tscs454.c
2025-10-31T05:25:18.2813542Z patching file sound/soc/codecs/wcd9335.c
2025-10-31T05:25:18.2818047Z patching file sound/soc/codecs/wcd934x.c
2025-10-31T05:25:18.2822142Z patching file sound/soc/codecs/wm0010.c
2025-10-31T05:25:18.2823723Z patching file sound/soc/codecs/wm2000.c
2025-10-31T05:25:18.2825527Z patching file sound/soc/codecs/wm5110.c
2025-10-31T05:25:18.2828016Z patching file sound/soc/codecs/wm8350.c
2025-10-31T05:25:18.2829880Z patching file sound/soc/codecs/wm8731.c
2025-10-31T05:25:18.2831743Z patching file sound/soc/codecs/wm8904.c
2025-10-31T05:25:18.2834036Z patching file sound/soc/codecs/wm8940.c
2025-10-31T05:25:18.2835502Z patching file sound/soc/codecs/wm8958-dsp2.c
2025-10-31T05:25:18.2837152Z patching file sound/soc/codecs/wm8960.c
2025-10-31T05:25:18.2839596Z patching file sound/soc/codecs/wm8962.c
2025-10-31T05:25:18.2842757Z patching file sound/soc/codecs/wm8974.c
2025-10-31T05:25:18.2845190Z patching file sound/soc/codecs/wm8994.c
2025-10-31T05:25:18.2848258Z patching file sound/soc/codecs/wm8997.c
2025-10-31T05:25:18.2850027Z patching file sound/soc/codecs/wm8998.c
2025-10-31T05:25:18.2852574Z patching file sound/soc/codecs/wm_adsp.c
2025-10-31T05:25:18.2855795Z patching file sound/soc/codecs/wsa881x.c
2025-10-31T05:25:18.2857458Z patching file sound/soc/dwc/dwc-i2s.c
2025-10-31T05:25:18.2858927Z patching file sound/soc/fsl/eukrea-tlv320.c
2025-10-31T05:25:18.2859967Z patching file sound/soc/fsl/fsl-asoc-card.c
2025-10-31T05:25:18.2861563Z patching file sound/soc/fsl/fsl_asrc.c
2025-10-31T05:25:18.2863554Z patching file sound/soc/fsl/fsl_asrc_dma.c
2025-10-31T05:25:18.2865060Z patching file sound/soc/fsl/fsl_easrc.c
2025-10-31T05:25:18.2866944Z patching file sound/soc/fsl/fsl_easrc.h
2025-10-31T05:25:18.2868290Z patching file sound/soc/fsl/fsl_esai.c
2025-10-31T05:25:18.2869713Z patching file sound/soc/fsl/fsl_micfil.c
2025-10-31T05:25:18.2871627Z patching file sound/soc/fsl/fsl_micfil.h
2025-10-31T05:25:18.2873574Z patching file sound/soc/fsl/fsl_mqs.c
2025-10-31T05:25:18.2874870Z patching file sound/soc/fsl/fsl_sai.c
2025-10-31T05:25:18.2876462Z patching file sound/soc/fsl/fsl_sai.h
2025-10-31T05:25:18.2877811Z patching file sound/soc/fsl/fsl_spdif.c
2025-10-31T05:25:18.2879755Z patching file sound/soc/fsl/fsl_ssi.c
2025-10-31T05:25:18.2881419Z patching file sound/soc/fsl/imx-audmix.c
2025-10-31T05:25:18.2882679Z patching file sound/soc/fsl/imx-es8328.c
2025-10-31T05:25:18.2883411Z patching file sound/soc/fsl/imx-sgtl5000.c
2025-10-31T05:25:18.2884467Z patching file sound/soc/fsl/mpc5200_dma.c
2025-10-31T05:25:18.2885476Z patching file sound/soc/fsl/pcm030-audio-fabric.c
2025-10-31T05:25:18.2886257Z patching file sound/soc/generic/Kconfig
2025-10-31T05:25:18.2887199Z patching file sound/soc/generic/audio-graph-card.c
2025-10-31T05:25:18.2888544Z patching file sound/soc/generic/simple-card-utils.c
2025-10-31T05:25:18.2889557Z patching file sound/soc/generic/simple-card.c
2025-10-31T05:25:18.2890969Z patching file sound/soc/hisilicon/hi6210-i2s.c
2025-10-31T05:25:18.2892298Z patching file sound/soc/img/img-i2s-in.c
2025-10-31T05:25:18.2893319Z patching file sound/soc/intel/Kconfig
2025-10-31T05:25:18.2894063Z patching file sound/soc/intel/Makefile
2025-10-31T05:25:18.2895122Z patching file sound/soc/intel/atom/sst-mfld-platform-pcm.c
2025-10-31T05:25:18.2896594Z patching file sound/soc/intel/boards/Kconfig
2025-10-31T05:25:18.2897964Z patching file sound/soc/intel/boards/bxt_da7219_max98357a.c
2025-10-31T05:25:18.2899238Z patching file sound/soc/intel/boards/bxt_rt298.c
2025-10-31T05:25:18.2900343Z patching file sound/soc/intel/boards/bytcht_es8316.c
2025-10-31T05:25:18.2902188Z patching file sound/soc/intel/boards/bytcr_rt5640.c
2025-10-31T05:25:18.2905075Z patching file sound/soc/intel/boards/bytcr_rt5651.c
2025-10-31T05:25:18.2906976Z patching file sound/soc/intel/boards/glk_rt5682_max98357a.c
2025-10-31T05:25:18.2907958Z patching file sound/soc/intel/boards/haswell.c
2025-10-31T05:25:18.2909019Z patching file sound/soc/intel/boards/kbl_da7219_max98357a.c
2025-10-31T05:25:18.2910473Z patching file sound/soc/intel/boards/kbl_da7219_max98927.c
2025-10-31T05:25:18.2912329Z patching file sound/soc/intel/boards/kbl_rt5660.c
2025-10-31T05:25:18.2913619Z patching file sound/soc/intel/boards/kbl_rt5663_max98927.c
2025-10-31T05:25:18.2915118Z patching file sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c
2025-10-31T05:25:18.2916103Z patching file sound/soc/intel/boards/skl_hda_dsp_generic.c
2025-10-31T05:25:18.2917076Z patching file sound/soc/intel/boards/skl_nau88l25_max98357a.c
2025-10-31T05:25:18.2918146Z patching file sound/soc/intel/boards/skl_rt286.c
2025-10-31T05:25:18.2919230Z patching file sound/soc/intel/boards/sof_da7219_max98373.c
2025-10-31T05:25:18.2920278Z patching file sound/soc/intel/boards/sof_maxim_common.c
2025-10-31T05:25:18.2921117Z patching file sound/soc/intel/boards/sof_pcm512x.c
2025-10-31T05:25:18.2922620Z patching file sound/soc/intel/boards/sof_rt5682.c
2025-10-31T05:25:18.2924238Z patching file sound/soc/intel/boards/sof_sdw.c
2025-10-31T05:25:18.2926389Z patching file sound/soc/intel/boards/sof_sdw_common.h
2025-10-31T05:25:18.2927118Z patching file sound/soc/intel/boards/sof_wm8804.c
2025-10-31T05:25:18.2928189Z patching file sound/soc/intel/catpt/dsp.c
2025-10-31T05:25:18.2929392Z patching file sound/soc/intel/common/soc-acpi-intel-bxt-match.c
2025-10-31T05:25:18.2930111Z patching file sound/soc/intel/common/soc-acpi-intel-cml-match.c
2025-10-31T05:25:18.2931002Z patching file sound/soc/intel/common/soc-acpi-intel-glk-match.c
2025-10-31T05:25:18.2931726Z patching file sound/soc/intel/common/soc-acpi-intel-jsl-match.c
2025-10-31T05:25:18.2932522Z patching file sound/soc/intel/common/soc-acpi-intel-kbl-match.c
2025-10-31T05:25:18.2933514Z patching file sound/soc/intel/common/soc-acpi-intel-tgl-match.c
2025-10-31T05:25:18.2934454Z patching file sound/soc/intel/common/soc-intel-quirks.h
2025-10-31T05:25:18.2935528Z patching file sound/soc/intel/keembay/kmb_platform.c
2025-10-31T05:25:18.2936536Z patching file sound/soc/intel/skylake/Makefile
2025-10-31T05:25:18.2937305Z patching file sound/soc/intel/skylake/cnl-sst.c
2025-10-31T05:25:18.2938769Z patching file sound/soc/intel/skylake/skl-messages.c
2025-10-31T05:25:18.2940221Z patching file sound/soc/intel/skylake/skl-nhlt.c
2025-10-31T05:25:18.2941733Z patching file sound/soc/intel/skylake/skl-pcm.c
2025-10-31T05:25:18.2943826Z patching file sound/soc/intel/skylake/skl-sst-ipc.c
2025-10-31T05:25:18.2945234Z patching file sound/soc/intel/skylake/skl-sst-utils.c
2025-10-31T05:25:18.2946952Z patching file sound/soc/intel/skylake/skl-topology.c
2025-10-31T05:25:18.2949594Z patching file sound/soc/intel/skylake/skl.c
2025-10-31T05:25:18.2950981Z patching file sound/soc/jz4740/jz4740-i2s.c
2025-10-31T05:25:18.2952444Z patching file sound/soc/kirkwood/kirkwood-dma.c
2025-10-31T05:25:18.2953499Z patching file sound/soc/mediatek/common/mtk-afe-platform-driver.c
2025-10-31T05:25:18.2954455Z patching file sound/soc/mediatek/common/mtk-btcvsd.c
2025-10-31T05:25:18.2956171Z patching file sound/soc/mediatek/mt2701/mt2701-wm8960.c
2025-10-31T05:25:18.2957029Z patching file sound/soc/mediatek/mt6797/mt6797-mt6351.c
2025-10-31T05:25:18.2958354Z patching file sound/soc/mediatek/mt8173/mt8173-afe-pcm.c
2025-10-31T05:25:18.2959837Z patching file sound/soc/mediatek/mt8173/mt8173-max98090.c
2025-10-31T05:25:18.2960552Z patching file sound/soc/mediatek/mt8173/mt8173-rt5650-rt5514.c
2025-10-31T05:25:18.2961532Z patching file sound/soc/mediatek/mt8173/mt8173-rt5650-rt5676.c
2025-10-31T05:25:18.2962569Z patching file sound/soc/mediatek/mt8173/mt8173-rt5650.c
2025-10-31T05:25:18.2964068Z patching file sound/soc/mediatek/mt8183/mt8183-afe-pcm.c
2025-10-31T05:25:18.2965845Z patching file sound/soc/mediatek/mt8183/mt8183-da7219-max98357.c
2025-10-31T05:25:18.2967277Z patching file sound/soc/mediatek/mt8183/mt8183-mt6358-ts3a227-max98357.c
2025-10-31T05:25:18.2968228Z patching file sound/soc/meson/Kconfig
2025-10-31T05:25:18.2969037Z patching file sound/soc/meson/aiu-acodec-ctrl.c
2025-10-31T05:25:18.2969875Z patching file sound/soc/meson/aiu-codec-ctrl.c
2025-10-31T05:25:18.2970685Z patching file sound/soc/meson/aiu-encoder-i2s.c
2025-10-31T05:25:18.2971691Z patching file sound/soc/meson/aiu-fifo-i2s.c
2025-10-31T05:25:18.2972746Z patching file sound/soc/meson/aiu-fifo.c
2025-10-31T05:25:18.2973721Z patching file sound/soc/meson/aiu.c
2025-10-31T05:25:18.2974942Z patching file sound/soc/meson/aiu.h
2025-10-31T05:25:18.2975652Z patching file sound/soc/meson/axg-card.c
2025-10-31T05:25:18.2976621Z patching file sound/soc/meson/axg-fifo.c
2025-10-31T05:25:18.2977652Z patching file sound/soc/meson/axg-pdm.c
2025-10-31T05:25:18.2978967Z patching file sound/soc/meson/axg-spdifin.c
2025-10-31T05:25:18.2980263Z patching file sound/soc/meson/axg-spdifout.c
2025-10-31T05:25:18.2981233Z patching file sound/soc/meson/axg-tdm-formatter.c
2025-10-31T05:25:18.2982673Z patching file sound/soc/meson/axg-tdm-interface.c
2025-10-31T05:25:18.2984079Z patching file sound/soc/meson/axg-tdmin.c
2025-10-31T05:25:18.2984926Z patching file sound/soc/meson/g12a-toacodec.c
2025-10-31T05:25:18.2985849Z patching file sound/soc/meson/g12a-tohdmitx.c
2025-10-31T05:25:18.2986919Z patching file sound/soc/meson/meson-card-utils.c
2025-10-31T05:25:18.2987834Z patching file sound/soc/meson/t9015.c
2025-10-31T05:25:18.2989193Z patching file sound/soc/mxs/mxs-saif.c
2025-10-31T05:25:18.2990221Z patching file sound/soc/mxs/mxs-sgtl5000.c
2025-10-31T05:25:18.2991061Z patching file sound/soc/pxa/Kconfig
2025-10-31T05:25:18.2991897Z patching file sound/soc/pxa/mmp-pcm.c
2025-10-31T05:25:18.2993058Z patching file sound/soc/pxa/pxa-ssp.c
2025-10-31T05:25:18.2994408Z patching file sound/soc/pxa/spitz.c
2025-10-31T05:25:18.2995824Z patching file sound/soc/qcom/Kconfig
2025-10-31T05:25:18.2996423Z patching file sound/soc/qcom/common.c
2025-10-31T05:25:18.2997389Z patching file sound/soc/qcom/lpass-apq8016.c
2025-10-31T05:25:18.2998413Z patching file sound/soc/qcom/lpass-cpu.c
2025-10-31T05:25:18.3000396Z patching file sound/soc/qcom/lpass-hdmi.c
2025-10-31T05:25:18.3001083Z patching file sound/soc/qcom/lpass-ipq806x.c
2025-10-31T05:25:18.3002207Z patching file sound/soc/qcom/lpass-lpaif-reg.h
2025-10-31T05:25:18.3003265Z patching file sound/soc/qcom/lpass-platform.c
2025-10-31T05:25:18.3004811Z patching file sound/soc/qcom/lpass-sc7180.c
2025-10-31T05:25:18.3005708Z patching file sound/soc/qcom/lpass.h
2025-10-31T05:25:18.3006771Z patching file sound/soc/qcom/qdsp6/q6adm.c
2025-10-31T05:25:18.3007960Z patching file sound/soc/qcom/qdsp6/q6afe-clocks.c
2025-10-31T05:25:18.3009672Z patching file sound/soc/qcom/qdsp6/q6afe.c
2025-10-31T05:25:18.3011146Z patching file sound/soc/qcom/qdsp6/q6afe.h
2025-10-31T05:25:18.3012355Z patching file sound/soc/qcom/qdsp6/q6asm-dai.c
2025-10-31T05:25:18.3014517Z patching file sound/soc/qcom/qdsp6/q6routing.c
2025-10-31T05:25:18.3016035Z patching file sound/soc/qcom/sdm845.c
2025-10-31T05:25:18.3017355Z patching file sound/soc/rockchip/rockchip_i2s.c
2025-10-31T05:25:18.3018764Z patching file sound/soc/rockchip/rockchip_pdm.c
2025-10-31T05:25:18.3019714Z patching file sound/soc/rockchip/rockchip_spdif.c
2025-10-31T05:25:18.3020634Z patching file sound/soc/samsung/Kconfig
2025-10-31T05:25:18.3021657Z patching file sound/soc/samsung/aries_wm8994.c
2025-10-31T05:25:18.3023139Z patching file sound/soc/samsung/arndale.c
2025-10-31T05:25:18.3023885Z patching file sound/soc/samsung/h1940_uda1380.c
2025-10-31T05:25:18.3024787Z patching file sound/soc/samsung/idma.c
2025-10-31T05:25:18.3025759Z patching file sound/soc/samsung/littlemill.c
2025-10-31T05:25:18.3026666Z patching file sound/soc/samsung/lowland.c
2025-10-31T05:25:18.3027528Z patching file sound/soc/samsung/odroid.c
2025-10-31T05:25:18.3028475Z patching file sound/soc/samsung/rx1950_uda1380.c
2025-10-31T05:25:18.3029325Z patching file sound/soc/samsung/smdk_wm8994.c
2025-10-31T05:25:18.3030254Z patching file sound/soc/samsung/smdk_wm8994pcm.c
2025-10-31T05:25:18.3030998Z patching file sound/soc/samsung/snow.c
2025-10-31T05:25:18.3032085Z patching file sound/soc/samsung/speyside.c
2025-10-31T05:25:18.3033162Z patching file sound/soc/samsung/tm2_wm5110.c
2025-10-31T05:25:18.3034224Z patching file sound/soc/samsung/tobermory.c
2025-10-31T05:25:18.3035705Z patching file sound/soc/sh/fsi.c
2025-10-31T05:25:18.3038011Z patching file sound/soc/sh/rcar/adg.c
2025-10-31T05:25:18.3039415Z patching file sound/soc/sh/rcar/core.c
2025-10-31T05:25:18.3041143Z patching file sound/soc/sh/rcar/ctu.c
2025-10-31T05:25:18.3042100Z patching file sound/soc/sh/rcar/dvc.c
2025-10-31T05:25:18.3043097Z patching file sound/soc/sh/rcar/mix.c
2025-10-31T05:25:18.3044122Z patching file sound/soc/sh/rcar/rsnd.h
2025-10-31T05:25:18.3045465Z patching file sound/soc/sh/rcar/src.c
2025-10-31T05:25:18.3046815Z patching file sound/soc/sh/rcar/ssi.c
2025-10-31T05:25:18.3048246Z patching file sound/soc/sh/siu.h
2025-10-31T05:25:18.3048987Z patching file sound/soc/sh/siu_pcm.c
2025-10-31T05:25:18.3050357Z patching file sound/soc/soc-component.c
2025-10-31T05:25:18.3051906Z patching file sound/soc/soc-compress.c
2025-10-31T05:25:18.3053977Z patching file sound/soc/soc-core.c
2025-10-31T05:25:18.3056349Z patching file sound/soc/soc-dai.c
2025-10-31T05:25:18.3058598Z patching file sound/soc/soc-dapm.c
2025-10-31T05:25:18.3061836Z patching file sound/soc/soc-generic-dmaengine-pcm.c
2025-10-31T05:25:18.3063038Z patching file sound/soc/soc-ops.c
2025-10-31T05:25:18.3065463Z patching file sound/soc/soc-pcm.c
2025-10-31T05:25:18.3068361Z patching file sound/soc/soc-topology.c
2025-10-31T05:25:18.3070581Z patching file sound/soc/soc-utils.c
2025-10-31T05:25:18.3071349Z patching file sound/soc/sof/core.c
2025-10-31T05:25:18.3072485Z patching file sound/soc/sof/debug.c
2025-10-31T05:25:18.3073826Z patching file sound/soc/sof/imx/imx8m.c
2025-10-31T05:25:18.3074761Z patching file sound/soc/sof/intel/Kconfig
2025-10-31T05:25:18.3075777Z patching file sound/soc/sof/intel/hda-codec.c
2025-10-31T05:25:18.3076802Z patching file sound/soc/sof/intel/hda-dai.c
2025-10-31T05:25:18.3078287Z patching file sound/soc/sof/intel/hda-dsp.c
2025-10-31T05:25:18.3079634Z patching file sound/soc/sof/intel/hda-ipc.c
2025-10-31T05:25:18.3080397Z patching file sound/soc/sof/intel/hda-loader.c
2025-10-31T05:25:18.3081849Z patching file sound/soc/sof/intel/hda-stream.c
2025-10-31T05:25:18.3083417Z patching file sound/soc/sof/intel/hda.c
2025-10-31T05:25:18.3084914Z patching file sound/soc/sof/loader.c
2025-10-31T05:25:18.3086186Z patching file sound/soc/sof/sof-pci-dev.c
2025-10-31T05:25:18.3088447Z patching file sound/soc/sof/topology.c
2025-10-31T05:25:18.3090907Z patching file sound/soc/sti/uniperif_player.c
2025-10-31T05:25:18.3092387Z patching file sound/soc/sti/uniperif_reader.c
2025-10-31T05:25:18.3093754Z patching file sound/soc/stm/stm32_sai_sub.c
2025-10-31T05:25:18.3095452Z patching file sound/soc/stm/stm32_spdifrx.c
2025-10-31T05:25:18.3097137Z patching file sound/soc/sunxi/sun4i-codec.c
2025-10-31T05:25:18.3099097Z patching file sound/soc/sunxi/sun4i-i2s.c
2025-10-31T05:25:18.3100501Z patching file sound/soc/sunxi/sun4i-spdif.c
2025-10-31T05:25:18.3101814Z patching file sound/soc/tegra/tegra186_dspk.c
2025-10-31T05:25:18.3103767Z patching file sound/soc/tegra/tegra210_admaif.c
2025-10-31T05:25:18.3105376Z patching file sound/soc/tegra/tegra210_ahub.c
2025-10-31T05:25:18.3106418Z patching file sound/soc/tegra/tegra210_dmic.c
2025-10-31T05:25:18.3108093Z patching file sound/soc/tegra/tegra210_i2s.c
2025-10-31T05:25:18.3109953Z patching file sound/soc/tegra/tegra_alc5632.c
2025-10-31T05:25:18.3110696Z patching file sound/soc/tegra/tegra_max98090.c
2025-10-31T05:25:18.3111572Z patching file sound/soc/tegra/tegra_rt5640.c
2025-10-31T05:25:18.3112527Z patching file sound/soc/tegra/tegra_rt5677.c
2025-10-31T05:25:18.3113579Z patching file sound/soc/tegra/tegra_sgtl5000.c
2025-10-31T05:25:18.3114400Z patching file sound/soc/tegra/tegra_wm8753.c
2025-10-31T05:25:18.3115276Z patching file sound/soc/tegra/tegra_wm8903.c
2025-10-31T05:25:18.3116252Z patching file sound/soc/tegra/tegra_wm9712.c
2025-10-31T05:25:18.3117026Z patching file sound/soc/tegra/trimslice.c
2025-10-31T05:25:18.3118027Z patching file sound/soc/ti/ams-delta.c
2025-10-31T05:25:18.3119347Z patching file sound/soc/ti/davinci-i2s.c
2025-10-31T05:25:18.3121046Z patching file sound/soc/ti/davinci-mcasp.c
2025-10-31T05:25:18.3123275Z patching file sound/soc/ti/j721e-evm.c
2025-10-31T05:25:18.3124864Z patching file sound/soc/ti/omap-hdmi.c
2025-10-31T05:25:18.3126133Z patching file sound/soc/ti/omap-mcbsp.c
2025-10-31T05:25:18.3127573Z patching file sound/soc/uniphier/Kconfig
2025-10-31T05:25:18.3128209Z patching file sound/soc/uniphier/aio-dma.c
2025-10-31T05:25:18.3129462Z patching file sound/soc/xilinx/xlnx_formatter_pcm.c
2025-10-31T05:25:18.3131026Z patching file sound/spi/at73c213.c
2025-10-31T05:25:18.3132620Z patching file sound/synth/emux/emux.c
2025-10-31T05:25:18.3133418Z patching file sound/synth/emux/emux_nrpn.c
2025-10-31T05:25:18.3134790Z patching file sound/synth/emux/soundfont.c
2025-10-31T05:25:18.3136945Z patching file sound/usb/6fire/chip.c
2025-10-31T05:25:18.3137281Z patching file sound/usb/6fire/comm.c
2025-10-31T05:25:18.3138219Z patching file sound/usb/6fire/firmware.c
2025-10-31T05:25:18.3139286Z patching file sound/usb/bcd2000/bcd2000.c
2025-10-31T05:25:18.3140491Z patching file sound/usb/caiaq/audio.c
2025-10-31T05:25:18.3141510Z patching file sound/usb/caiaq/audio.h
2025-10-31T05:25:18.3142443Z patching file sound/usb/caiaq/device.c
2025-10-31T05:25:18.3152978Z patching file sound/usb/caiaq/input.c
2025-10-31T05:25:18.3154016Z patching file sound/usb/caiaq/input.h
2025-10-31T05:25:18.3154612Z patching file sound/usb/card.c
2025-10-31T05:25:18.3154958Z patching file sound/usb/clock.c
2025-10-31T05:25:18.3155309Z patching file sound/usb/endpoint.c
2025-10-31T05:25:18.3155653Z patching file sound/usb/format.c
2025-10-31T05:25:18.3156224Z patching file sound/usb/line6/driver.c
2025-10-31T05:25:18.3156581Z patching file sound/usb/line6/driver.h
2025-10-31T05:25:18.3156928Z patching file sound/usb/line6/midi.c
2025-10-31T05:25:18.3157589Z patching file sound/usb/line6/midibuf.c
2025-10-31T05:25:18.3159137Z patching file sound/usb/line6/midibuf.h
2025-10-31T05:25:18.3160118Z patching file sound/usb/line6/pod.c
2025-10-31T05:25:18.3160641Z patching file sound/usb/line6/podhd.c
2025-10-31T05:25:18.3162216Z patching file sound/usb/line6/toneport.c
2025-10-31T05:25:18.3163054Z patching file sound/usb/line6/variax.c
2025-10-31T05:25:18.3164543Z patching file sound/usb/midi.c
2025-10-31T05:25:18.3168435Z patching file sound/usb/misc/ua101.c
2025-10-31T05:25:18.3170287Z patching file sound/usb/mixer.c
2025-10-31T05:25:18.3173530Z patching file sound/usb/mixer.h
2025-10-31T05:25:18.3174177Z patching file sound/usb/mixer_maps.c
2025-10-31T05:25:18.3177020Z patching file sound/usb/mixer_quirks.c
2025-10-31T05:25:18.3183621Z patching file sound/usb/mixer_scarlett_gen2.c
2025-10-31T05:25:18.3186308Z patching file sound/usb/mixer_scarlett_gen2.h
2025-10-31T05:25:18.3187932Z patching file sound/usb/mixer_us16x08.c
2025-10-31T05:25:18.3189401Z patching file sound/usb/pcm.c
2025-10-31T05:25:18.3191747Z patching file sound/usb/quirks-table.h
2025-10-31T05:25:18.3196227Z patching file sound/usb/quirks.c
2025-10-31T05:25:18.3198924Z patching file sound/usb/stream.c
2025-10-31T05:25:18.3200130Z patching file sound/usb/usbaudio.h
2025-10-31T05:25:18.3201139Z patching file sound/usb/usx2y/us122l.c
2025-10-31T05:25:18.3203548Z patching file sound/usb/usx2y/us122l.h
2025-10-31T05:25:18.3204415Z patching file sound/usb/usx2y/usX2Yhwdep.c
2025-10-31T05:25:18.3206132Z patching file sound/usb/usx2y/usX2Yhwdep.h
2025-10-31T05:25:18.3206888Z patching file sound/usb/usx2y/usb_stream.c
2025-10-31T05:25:18.3208573Z patching file sound/usb/usx2y/usb_stream.h
2025-10-31T05:25:18.3209210Z patching file sound/usb/usx2y/usbus428ctldefs.h
2025-10-31T05:25:18.3210034Z patching file sound/usb/usx2y/usbusx2y.c
2025-10-31T05:25:18.3211831Z patching file sound/usb/usx2y/usbusx2y.h
2025-10-31T05:25:18.3215530Z patching file sound/usb/usx2y/usbusx2yaudio.c
2025-10-31T05:25:18.3218025Z patching file sound/usb/usx2y/usx2yhwdeppcm.c
2025-10-31T05:25:18.3221289Z patching file sound/usb/usx2y/usx2yhwdeppcm.h
2025-10-31T05:25:18.3222109Z patching file sound/usb/validate.c
2025-10-31T05:25:18.3223611Z patching file sound/x86/intel_hdmi_audio.c
2025-10-31T05:25:18.3225279Z patching file tools/arch/ia64/include/asm/barrier.h
2025-10-31T05:25:18.3226565Z patching file tools/arch/parisc/include/uapi/asm/errno.h
2025-10-31T05:25:18.3232952Z patching file tools/arch/parisc/include/uapi/asm/mman.h
2025-10-31T05:25:18.3233560Z patching file tools/arch/x86/include/asm/cpufeatures.h
2025-10-31T05:25:18.3234904Z patching file tools/arch/x86/include/asm/disabled-features.h
2025-10-31T05:25:18.3235295Z patching file tools/arch/x86/include/asm/inat.h
2025-10-31T05:25:18.3235662Z patching file tools/arch/x86/include/asm/insn.h
2025-10-31T05:25:18.3236052Z patching file tools/arch/x86/include/asm/msr-index.h
2025-10-31T05:25:18.3236487Z patching file tools/arch/x86/include/asm/required-features.h
2025-10-31T05:25:18.3237081Z patching file tools/arch/x86/lib/inat.c
2025-10-31T05:25:18.3237535Z patching file tools/arch/x86/lib/insn.c
2025-10-31T05:25:18.3238041Z patching file tools/arch/x86/lib/memcpy_64.S
2025-10-31T05:25:18.3238534Z patching file tools/arch/x86/lib/memset_64.S
2025-10-31T05:25:18.3239754Z patching file tools/arch/x86/lib/x86-opcode-map.txt
2025-10-31T05:25:18.3240418Z patching file tools/bootconfig/main.c
2025-10-31T05:25:18.3242765Z patching file tools/bootconfig/scripts/bconf2ftrace.sh
2025-10-31T05:25:18.3243208Z patching file tools/bootconfig/scripts/ftrace2bconf.sh
2025-10-31T05:25:18.3244711Z patching file tools/bootconfig/test-bootconfig.sh
2025-10-31T05:25:18.3245052Z patching file tools/bpf/Makefile
2025-10-31T05:25:18.3245717Z patching file tools/bpf/bpftool/Documentation/Makefile
2025-10-31T05:25:18.3246478Z patching file tools/bpf/bpftool/Documentation/bpftool-cgroup.rst
2025-10-31T05:25:18.3247201Z patching file tools/bpf/bpftool/Documentation/bpftool-prog.rst
2025-10-31T05:25:18.3248041Z patching file tools/bpf/bpftool/Makefile
2025-10-31T05:25:18.3248718Z patching file tools/bpf/bpftool/bash-completion/bpftool
2025-10-31T05:25:18.3249959Z patching file tools/bpf/bpftool/btf.c
2025-10-31T05:25:18.3251475Z patching file tools/bpf/bpftool/btf_dumper.c
2025-10-31T05:25:18.3252616Z patching file tools/bpf/bpftool/cgroup.c
2025-10-31T05:25:18.3253676Z patching file tools/bpf/bpftool/common.c
2025-10-31T05:25:18.3255002Z patching file tools/bpf/bpftool/feature.c
2025-10-31T05:25:18.3256432Z patching file tools/bpf/bpftool/jit_disasm.c
2025-10-31T05:25:18.3257304Z patching file tools/bpf/bpftool/json_writer.c
2025-10-31T05:25:18.3257889Z patching file tools/bpf/bpftool/main.c
2025-10-31T05:25:18.3259033Z patching file tools/bpf/bpftool/map.c
2025-10-31T05:25:18.3260833Z patching file tools/bpf/bpftool/net.c
2025-10-31T05:25:18.3262779Z patching file tools/bpf/bpftool/prog.c
2025-10-31T05:25:18.3265238Z patching file tools/bpf/bpftool/skeleton/profiler.bpf.c
2025-10-31T05:25:18.3266533Z patching file tools/bpf/bpftool/xlated_dumper.c
2025-10-31T05:25:18.3267367Z patching file tools/bpf/resolve_btfids/.gitignore
2025-10-31T05:25:18.3268026Z patching file tools/bpf/resolve_btfids/Makefile
2025-10-31T05:25:18.3269052Z patching file tools/bpf/resolve_btfids/main.c
2025-10-31T05:25:18.3270420Z patching file tools/build/Makefile
2025-10-31T05:25:18.3270995Z patching file tools/build/Makefile.build
2025-10-31T05:25:18.3272104Z patching file tools/build/Makefile.feature
2025-10-31T05:25:18.3273367Z patching file tools/build/feature/Makefile
2025-10-31T05:25:18.3274435Z patching file tools/build/feature/test-all.c
2025-10-31T05:25:18.3275328Z patching file tools/build/feature/test-libcrypto.c
2025-10-31T05:25:18.3276045Z patching file tools/build/feature/test-libpython-version.c
2025-10-31T05:25:18.3276900Z patching file tools/cgroup/memcg_slabinfo.py
2025-10-31T05:25:18.3277505Z patching file tools/gpio/gpio-event-mon.c
2025-10-31T05:25:18.3278236Z patching file tools/gpio/gpio-watch.c
2025-10-31T05:25:18.3279176Z patching file tools/gpio/lsgpio.c
2025-10-31T05:25:18.3280626Z patching file tools/hv/vmbus_testing
2025-10-31T05:25:18.3281433Z patching file tools/iio/iio_generic_buffer.c
2025-10-31T05:25:18.3283479Z patching file tools/iio/iio_utils.c
2025-10-31T05:25:18.3285681Z patching file tools/include/asm-generic/hugetlb_encode.h
2025-10-31T05:25:18.3286485Z patching file tools/include/asm/alternative-asm.h
2025-10-31T05:25:18.3286899Z patching file tools/include/asm/alternative.h
2025-10-31T05:25:18.3288055Z patching file tools/include/linux/align.h
2025-10-31T05:25:18.3289220Z patching file tools/include/linux/bitmap.h
2025-10-31T05:25:18.3290290Z patching file tools/include/linux/bits.h
2025-10-31T05:25:18.3291112Z patching file tools/include/linux/btf_ids.h
2025-10-31T05:25:18.3292186Z patching file tools/include/linux/compiler-gcc.h
2025-10-31T05:25:18.3292982Z patching file tools/include/linux/const.h
2025-10-31T05:25:18.3293867Z patching file tools/include/linux/kconfig.h
2025-10-31T05:25:18.3295091Z patching file tools/include/linux/objtool.h
2025-10-31T05:25:18.3296370Z patching file tools/include/linux/overflow.h
2025-10-31T05:25:18.3297532Z patching file tools/include/linux/sched/mm.h
2025-10-31T05:25:18.3298364Z patching file tools/include/linux/static_call_types.h
2025-10-31T05:25:18.3299328Z patching file tools/include/linux/string.h
2025-10-31T05:25:18.3301041Z patching file tools/include/nolibc/nolibc.h
2025-10-31T05:25:18.3303920Z patching file tools/include/uapi/asm/errno.h
2025-10-31T05:25:18.3306521Z patching file tools/include/uapi/linux/bpf.h
2025-10-31T05:25:18.3322261Z patching file tools/include/uapi/linux/const.h
2025-10-31T05:25:18.3322653Z patching file tools/include/uapi/linux/fscrypt.h
2025-10-31T05:25:18.3323002Z patching file tools/include/uapi/linux/in.h
2025-10-31T05:25:18.3323384Z patching file tools/include/uapi/linux/openat2.h
2025-10-31T05:25:18.3323788Z patching file tools/include/uapi/linux/perf_event.h
2025-10-31T05:25:18.3324156Z patching file tools/include/uapi/linux/tcp.h
2025-10-31T05:25:18.3324502Z patching file tools/kvm/kvm_stat/kvm_stat
2025-10-31T05:25:18.3324887Z patching file tools/kvm/kvm_stat/kvm_stat.service
2025-10-31T05:25:18.3325217Z patching file tools/lib/api/io.h
2025-10-31T05:25:18.3325550Z patching file tools/lib/bpf/Makefile
2025-10-31T05:25:18.3325891Z patching file tools/lib/bpf/bpf.h
2025-10-31T05:25:18.3326242Z patching file tools/lib/bpf/bpf_core_read.h
2025-10-31T05:25:18.3326598Z patching file tools/lib/bpf/bpf_helpers.h
2025-10-31T05:25:18.3327162Z patching file tools/lib/bpf/bpf_tracing.h
2025-10-31T05:25:18.3327522Z patching file tools/lib/bpf/btf.c
2025-10-31T05:25:18.3327860Z patching file tools/lib/bpf/btf.h
2025-10-31T05:25:18.3328781Z patching file tools/lib/bpf/btf_dump.c
2025-10-31T05:25:18.3334637Z patching file tools/lib/bpf/libbpf.c
2025-10-31T05:25:18.3348927Z patching file tools/lib/bpf/libbpf.h
2025-10-31T05:25:18.3349320Z patching file tools/lib/bpf/libbpf_probes.c
2025-10-31T05:25:18.3349681Z patching file tools/lib/bpf/netlink.c
2025-10-31T05:25:18.3351548Z patching file tools/lib/bpf/nlattr.c
2025-10-31T05:25:18.3352233Z patching file tools/lib/bpf/ringbuf.c
2025-10-31T05:25:18.3352590Z patching file tools/lib/bpf/xsk.c
2025-10-31T05:25:18.3352940Z patching file tools/lib/perf/evlist.c
2025-10-31T05:25:18.3353384Z patching file tools/lib/perf/include/internal/evlist.h
2025-10-31T05:25:18.3353780Z patching file tools/lib/perf/include/perf/event.h
2025-10-31T05:25:18.3354198Z patching file tools/lib/perf/tests/test-cpumap.c
2025-10-31T05:25:18.3354580Z patching file tools/lib/perf/tests/test-evlist.c
2025-10-31T05:25:18.3354966Z patching file tools/lib/perf/tests/test-evsel.c
2025-10-31T05:25:18.3355366Z patching file tools/lib/perf/tests/test-threadmap.c
2025-10-31T05:25:18.3355696Z patching file tools/lib/string.c
2025-10-31T05:25:18.3356188Z patching file tools/lib/subcmd/help.c
2025-10-31T05:25:18.3356680Z patching file tools/lib/subcmd/parse-options.c
2025-10-31T05:25:18.3357422Z patching file tools/lib/subcmd/subcmd-util.h
2025-10-31T05:25:18.3358285Z patching file tools/memory-model/lock.cat
2025-10-31T05:25:18.3359585Z patching file tools/objtool/Documentation/stack-validation.txt
2025-10-31T05:25:18.3360499Z patching file tools/objtool/Makefile
2025-10-31T05:25:18.3361341Z patching file tools/objtool/arch.h
2025-10-31T05:25:18.3362584Z patching file tools/objtool/arch/x86/decode.c
2025-10-31T05:25:18.3364164Z patching file tools/objtool/arch/x86/include/arch_special.h
2025-10-31T05:25:18.3364850Z patching file tools/objtool/arch/x86/special.c
2025-10-31T05:25:18.3365685Z patching file tools/objtool/builtin-check.c
2025-10-31T05:25:18.3366577Z patching file tools/objtool/builtin-orc.c
2025-10-31T05:25:18.3367262Z patching file tools/objtool/builtin.h
2025-10-31T05:25:18.3368012Z patching file tools/objtool/cfi.h
2025-10-31T05:25:18.3369459Z patching file tools/objtool/check.c
2025-10-31T05:25:18.3376115Z patching file tools/objtool/check.h
2025-10-31T05:25:18.3377082Z patching file tools/objtool/elf.c
2025-10-31T05:25:18.3379739Z patching file tools/objtool/elf.h
2025-10-31T05:25:18.3380618Z patching file tools/objtool/objtool.c
2025-10-31T05:25:18.3381390Z patching file tools/objtool/objtool.h
2025-10-31T05:25:18.3382454Z patching file tools/objtool/orc_gen.c
2025-10-31T05:25:18.3384500Z patching file tools/objtool/special.c
2025-10-31T05:25:18.3385319Z patching file tools/objtool/sync-check.sh
2025-10-31T05:25:18.3386179Z patching file tools/objtool/weak.c
2025-10-31T05:25:18.3387435Z patching file tools/perf/Makefile.config
2025-10-31T05:25:18.3389847Z patching file tools/perf/Makefile.perf
2025-10-31T05:25:18.3391673Z patching file tools/perf/arch/arm/include/perf_regs.h
2025-10-31T05:25:18.3392377Z patching file tools/perf/arch/arm64/include/perf_regs.h
2025-10-31T05:25:18.3393188Z patching file tools/perf/arch/arm64/util/Build
2025-10-31T05:25:18.3393918Z patching file tools/perf/arch/arm64/util/arm-spe.c
2025-10-31T05:25:18.3394745Z patching file tools/perf/arch/arm64/util/machine.c
2025-10-31T05:25:18.3396146Z patching file tools/perf/arch/csky/include/perf_regs.h
2025-10-31T05:25:18.3396925Z patching file tools/perf/arch/powerpc/include/perf_regs.h
2025-10-31T05:25:18.3397811Z patching file tools/perf/arch/riscv/include/perf_regs.h
2025-10-31T05:25:18.3406418Z patching file tools/perf/arch/s390/include/perf_regs.h
2025-10-31T05:25:18.3406881Z patching file tools/perf/arch/s390/util/machine.c
2025-10-31T05:25:18.3407312Z patching file tools/perf/arch/x86/include/perf_regs.h
2025-10-31T05:25:18.3407851Z patching file tools/perf/bench/bench.h
2025-10-31T05:25:18.3408225Z patching file tools/perf/bench/epoll-wait.c
2025-10-31T05:25:18.3408612Z patching file tools/perf/bench/futex-lock-pi.c
2025-10-31T05:25:18.3408987Z patching file tools/perf/bench/futex-requeue.c
2025-10-31T05:25:18.3409400Z patching file tools/perf/bench/futex-wake-parallel.c
2025-10-31T05:25:18.3409764Z patching file tools/perf/bench/futex-wake.c
2025-10-31T05:25:18.3410149Z patching file tools/perf/bench/inject-buildid.c
2025-10-31T05:25:18.3410506Z patching file tools/perf/bench/numa.c
2025-10-31T05:25:18.3410842Z patching file tools/perf/builtin-bench.c
2025-10-31T05:25:18.3412806Z patching file tools/perf/builtin-c2c.c
2025-10-31T05:25:18.3415208Z patching file tools/perf/builtin-ftrace.c
2025-10-31T05:25:18.3416951Z patching file tools/perf/builtin-inject.c
2025-10-31T05:25:18.3419090Z patching file tools/perf/builtin-record.c
2025-10-31T05:25:18.3421861Z patching file tools/perf/builtin-report.c
2025-10-31T05:25:18.3425127Z patching file tools/perf/builtin-sched.c
2025-10-31T05:25:18.3428685Z patching file tools/perf/builtin-script.c
2025-10-31T05:25:18.3432318Z patching file tools/perf/builtin-top.c
2025-10-31T05:25:18.3435400Z patching file tools/perf/builtin-trace.c
2025-10-31T05:25:18.3439049Z patching file tools/perf/check-headers.sh
2025-10-31T05:25:18.3439924Z patching file tools/perf/perf-completion.sh
2025-10-31T05:25:18.3441020Z patching file tools/perf/perf.c
2025-10-31T05:25:18.3442281Z patching file tools/perf/pmu-events/Build
2025-10-31T05:25:18.3443481Z patching file tools/perf/pmu-events/arch/arm64/ampere/emag/cache.json
2025-10-31T05:25:18.3445262Z patching file tools/perf/pmu-events/arch/powerpc/power9/other.json
2025-10-31T05:25:18.3447649Z patching file tools/perf/pmu-events/arch/powerpc/power9/pipeline.json
2025-10-31T05:25:18.3448763Z patching file tools/perf/pmu-events/arch/x86/amdzen1/cache.json
2025-10-31T05:25:18.3449859Z patching file tools/perf/pmu-events/arch/x86/amdzen1/recommended.json
2025-10-31T05:25:18.3450815Z patching file tools/perf/pmu-events/arch/x86/amdzen2/cache.json
2025-10-31T05:25:18.3451882Z patching file tools/perf/pmu-events/arch/x86/amdzen2/recommended.json
2025-10-31T05:25:18.3453077Z patching file tools/perf/pmu-events/jevents.c
2025-10-31T05:25:18.3455135Z patching file tools/perf/python/tracepoint.py
2025-10-31T05:25:18.3455556Z patching file tools/perf/python/twatch.py
2025-10-31T05:25:18.3457904Z patching file tools/perf/scripts/python/exported-sql-viewer.py
2025-10-31T05:25:18.3461136Z patching file tools/perf/tests/bp_account.c
2025-10-31T05:25:18.3462226Z patching file tools/perf/tests/bpf.c
2025-10-31T05:25:18.3463902Z patching file tools/perf/tests/builtin-test.c
2025-10-31T05:25:18.3465001Z patching file tools/perf/tests/event_update.c
2025-10-31T05:25:18.3465973Z patching file tools/perf/tests/expand-cgroup.c
2025-10-31T05:25:18.3466907Z patching file tools/perf/tests/maps.c
2025-10-31T05:25:18.3467934Z patching file tools/perf/tests/pmu-events.c
2025-10-31T05:25:18.3469201Z patching file tools/perf/tests/sample-parsing.c
2025-10-31T05:25:18.3470209Z patching file tools/perf/tests/shell/record+zstd_comp_decomp.sh
2025-10-31T05:25:18.3471212Z patching file tools/perf/tests/shell/test_uprobe_from_different_cu.sh
2025-10-31T05:25:18.3472565Z patching file tools/perf/tests/switch-tracking.c
2025-10-31T05:25:18.3473715Z patching file tools/perf/tests/topology.c
2025-10-31T05:25:18.3474675Z patching file tools/perf/trace/beauty/fsconfig.sh
2025-10-31T05:25:18.3475725Z patching file tools/perf/trace/beauty/include/linux/socket.h
2025-10-31T05:25:18.3477958Z patching file tools/perf/ui/browsers/hists.c
2025-10-31T05:25:18.3480994Z patching file tools/perf/ui/hist.c
2025-10-31T05:25:18.3482757Z patching file tools/perf/util/Build
2025-10-31T05:25:18.3484998Z patching file tools/perf/util/annotate.c
2025-10-31T05:25:18.3487728Z patching file tools/perf/util/annotate.h
2025-10-31T05:25:18.3488822Z patching file tools/perf/util/arm-spe.c
2025-10-31T05:25:18.3491066Z patching file tools/perf/util/auxtrace.c
2025-10-31T05:25:18.3494043Z patching file tools/perf/util/block-info.c
2025-10-31T05:25:18.3495055Z patching file tools/perf/util/bpf-event.c
2025-10-31T05:25:18.3496756Z patching file tools/perf/util/bpf-event.h
2025-10-31T05:25:18.3497938Z patching file tools/perf/util/bpf-loader.c
2025-10-31T05:25:18.3500614Z patching file tools/perf/util/cs-etm.c
2025-10-31T05:25:18.3503313Z patching file tools/perf/util/data.c
2025-10-31T05:25:18.3504457Z patching file tools/perf/util/data.h
2025-10-31T05:25:18.3505422Z patching file tools/perf/util/debug.c
2025-10-31T05:25:18.3507038Z patching file tools/perf/util/dso.c
2025-10-31T05:25:18.3509074Z patching file tools/perf/util/dsos.c
2025-10-31T05:25:18.3510557Z patching file tools/perf/util/dwarf-aux.c
2025-10-31T05:25:18.3512748Z patching file tools/perf/util/env.c
2025-10-31T05:25:18.3514502Z patching file tools/perf/util/env.h
2025-10-31T05:25:18.3515626Z patching file tools/perf/util/event.c
2025-10-31T05:25:18.3517640Z patching file tools/perf/util/evlist.c
2025-10-31T05:25:18.3519608Z patching file tools/perf/util/evlist.h
2025-10-31T05:25:18.3521465Z patching file tools/perf/util/evsel.c
2025-10-31T05:25:18.3524163Z patching file tools/perf/util/genelf.c
2025-10-31T05:25:18.3525269Z patching file tools/perf/util/genelf.h
2025-10-31T05:25:18.3526339Z patching file tools/perf/util/get_current_dir_name.c
2025-10-31T05:25:18.3528306Z patching file tools/perf/util/header.c
2025-10-31T05:25:18.3531499Z patching file tools/perf/util/hist.h
2025-10-31T05:25:18.3533855Z patching file tools/perf/util/intel-pt-decoder/intel-pt-decoder.c
2025-10-31T05:25:18.3537078Z patching file tools/perf/util/intel-pt-decoder/intel-pt-decoder.h
2025-10-31T05:25:18.3538839Z patching file tools/perf/util/intel-pt.c
2025-10-31T05:25:18.3541900Z patching file tools/perf/util/jitdump.c
2025-10-31T05:25:18.3543621Z patching file tools/perf/util/llvm-utils.c
2025-10-31T05:25:18.3545115Z patching file tools/perf/util/lzma.c
2025-10-31T05:25:18.3547031Z patching file tools/perf/util/machine.c
2025-10-31T05:25:18.3549786Z patching file tools/perf/util/map.c
2025-10-31T05:25:18.3552224Z patching file tools/perf/util/parse-events.c
2025-10-31T05:25:18.3554865Z patching file tools/perf/util/parse-regs-options.c
2025-10-31T05:25:18.3555473Z patching file tools/perf/util/perf_regs.h
2025-10-31T05:25:18.3557018Z patching file tools/perf/util/pmu.c
2025-10-31T05:25:18.3559693Z patching file tools/perf/util/pmu.h
2025-10-31T05:25:18.3560324Z patching file tools/perf/util/pmu.l
2025-10-31T05:25:18.3561269Z patching file tools/perf/util/pmu.y
2025-10-31T05:25:18.3563461Z patching file tools/perf/util/probe-event.c
2025-10-31T05:25:18.3566431Z patching file tools/perf/util/probe-file.c
2025-10-31T05:25:18.3568562Z patching file tools/perf/util/probe-finder.c
2025-10-31T05:25:18.3570743Z patching file tools/perf/util/probe-finder.h
2025-10-31T05:25:18.3571840Z patching file tools/perf/util/python.c
2025-10-31T05:25:18.3574666Z patching file tools/perf/util/scripting-engines/trace-event-python.c
2025-10-31T05:25:18.3577693Z patching file tools/perf/util/session.c
2025-10-31T05:25:18.3580373Z patching file tools/perf/util/setup.py
2025-10-31T05:25:18.3581094Z patching file tools/perf/util/smt.c
2025-10-31T05:25:18.3583212Z patching file tools/perf/util/sort.c
2025-10-31T05:25:18.3586009Z patching file tools/perf/util/sort.h
2025-10-31T05:25:18.3587022Z patching file tools/perf/util/stat-display.c
2025-10-31T05:25:18.3589476Z patching file tools/perf/util/symbol-elf.c
2025-10-31T05:25:18.3592625Z patching file tools/perf/util/symbol.c
2025-10-31T05:25:18.3595207Z patching file tools/perf/util/symbol.h
2025-10-31T05:25:18.3596173Z patching file tools/perf/util/symbol_fprintf.c
2025-10-31T05:25:18.3597824Z patching file tools/perf/util/synthetic-events.c
2025-10-31T05:25:18.3599901Z patching file tools/perf/util/thread_map.c
2025-10-31T05:25:18.3601044Z patching file tools/perf/util/time-utils.c
2025-10-31T05:25:18.3602801Z patching file tools/perf/util/trace-event-read.c
2025-10-31T05:25:18.3603929Z patching file tools/perf/util/units.c
2025-10-31T05:25:18.3604800Z patching file tools/perf/util/unwind-libdw.c
2025-10-31T05:25:18.3606361Z patching file tools/perf/util/util.c
2025-10-31T05:25:18.3607368Z patching file tools/perf/util/util.h
2025-10-31T05:25:18.3608405Z patching file tools/perf/util/vdso.c
2025-10-31T05:25:18.3609456Z patching file tools/perf/util/zlib.c
2025-10-31T05:25:18.3610403Z patching file tools/power/acpi/Makefile.config
2025-10-31T05:25:18.3611313Z patching file tools/power/cpupower/Makefile
2025-10-31T05:25:18.3612648Z patching file tools/power/cpupower/bench/Makefile
2025-10-31T05:25:18.3613536Z patching file tools/power/cpupower/bench/parse.c
2025-10-31T05:25:18.3616307Z patching file tools/power/cpupower/utils/idle_monitor/mperf_monitor.c
2025-10-31T05:25:18.3633344Z patching file tools/power/x86/intel-speed-select/isst-config.c
2025-10-31T05:25:18.3633896Z patching file tools/power/x86/intel-speed-select/isst-display.c
2025-10-31T05:25:18.3634424Z patching file tools/power/x86/intel_pstate_tracer/intel_pstate_tracer.py
2025-10-31T05:25:18.3634819Z patching file tools/power/x86/turbostat/turbostat.8
2025-10-31T05:25:18.3635205Z patching file tools/power/x86/turbostat/turbostat.c
2025-10-31T05:25:18.3635744Z patching file tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
2025-10-31T05:25:18.3636117Z patching file tools/scripts/Makefile.include
2025-10-31T05:25:18.3636540Z patching file tools/testing/ktest/compare-ktest-sample.pl
2025-10-31T05:25:18.3636895Z patching file tools/testing/ktest/ktest.pl
2025-10-31T05:25:18.3637264Z patching file tools/testing/ktest/sample.conf
2025-10-31T05:25:18.3637622Z patching file tools/testing/kunit/kunit.py
2025-10-31T05:25:18.3638007Z patching file tools/testing/kunit/kunit_config.py
2025-10-31T05:25:18.3638407Z patching file tools/testing/kunit/kunit_tool_test.py
2025-10-31T05:25:18.3653477Z patching file tools/testing/radix-tree/idr-test.c
2025-10-31T05:25:18.3653877Z patching file tools/testing/radix-tree/multiorder.c
2025-10-31T05:25:18.3654282Z patching file tools/testing/radix-tree/regression1.c
2025-10-31T05:25:18.3654653Z patching file tools/testing/radix-tree/xarray.c
2025-10-31T05:25:18.3655026Z patching file tools/testing/selftests/Makefile
2025-10-31T05:25:18.3655458Z patching file tools/testing/selftests/arm64/fp/sve-ptrace.c
2025-10-31T05:25:18.3655881Z patching file tools/testing/selftests/arm64/fp/sve-test.S
2025-10-31T05:25:18.3656291Z patching file tools/testing/selftests/arm64/mte/Makefile
2025-10-31T05:25:18.3656775Z patching file tools/testing/selftests/arm64/mte/check_tags_inclusion.c
2025-10-31T05:25:18.3657233Z patching file tools/testing/selftests/arm64/mte/mte_common_util.c
2025-10-31T05:25:18.3657672Z patching file tools/testing/selftests/arm64/pauth/exec_target.c
2025-10-31T05:25:18.3658076Z patching file tools/testing/selftests/arm64/pauth/pac.c
2025-10-31T05:25:18.3658546Z patching file tools/testing/selftests/arm64/signal/test_signals.h
2025-10-31T05:25:18.3659046Z patching file tools/testing/selftests/arm64/signal/test_signals_utils.c
2025-10-31T05:25:18.3659547Z patching file tools/testing/selftests/arm64/signal/testcases/testcases.c
2025-10-31T05:25:18.3659963Z patching file tools/testing/selftests/arm64/tags/tags_test.c
2025-10-31T05:25:18.3660366Z patching file tools/testing/selftests/bpf/.gitignore
2025-10-31T05:25:18.3660747Z patching file tools/testing/selftests/bpf/Makefile
2025-10-31T05:25:18.3661120Z patching file tools/testing/selftests/bpf/bench.c
2025-10-31T05:25:18.3661597Z patching file tools/testing/selftests/bpf/benchs/run_bench_rename.sh
2025-10-31T05:25:18.3662264Z patching file tools/testing/selftests/bpf/map_tests/sk_storage_map.c
2025-10-31T05:25:18.3662709Z patching file tools/testing/selftests/bpf/prog_tests/align.c
2025-10-31T05:25:18.3675456Z patching file tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
2025-10-31T05:25:18.3676069Z patching file tools/testing/selftests/bpf/prog_tests/btf.c
2025-10-31T05:25:18.3676565Z patching file tools/testing/selftests/bpf/prog_tests/btf_map_in_map.c
2025-10-31T05:25:18.3677272Z patching file tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c
2025-10-31T05:25:18.3677780Z patching file tools/testing/selftests/bpf/prog_tests/cg_storage_multi.c
2025-10-31T05:25:18.3678253Z patching file tools/testing/selftests/bpf/prog_tests/cls_redirect.c
2025-10-31T05:25:18.3678731Z patching file tools/testing/selftests/bpf/prog_tests/core_reloc.c
2025-10-31T05:25:18.3679212Z patching file tools/testing/selftests/bpf/prog_tests/flow_dissector.c
2025-10-31T05:25:18.3679664Z patching file tools/testing/selftests/bpf/prog_tests/kfree_skb.c
2025-10-31T05:25:18.3680133Z patching file tools/testing/selftests/bpf/prog_tests/perf_buffer.c
2025-10-31T05:25:18.3680589Z patching file tools/testing/selftests/bpf/prog_tests/send_signal.c
2025-10-31T05:25:18.3681421Z patching file tools/testing/selftests/bpf/prog_tests/sk_assign.c
2025-10-31T05:25:18.3686129Z patching file tools/testing/selftests/bpf/prog_tests/sk_lookup.c
2025-10-31T05:25:18.3686744Z patching file tools/testing/selftests/bpf/prog_tests/skb_ctx.c
2025-10-31T05:25:18.3687662Z patching file tools/testing/selftests/bpf/prog_tests/sock_fields.c
2025-10-31T05:25:18.3688167Z patching file tools/testing/selftests/bpf/prog_tests/sockmap_basic.c
2025-10-31T05:25:18.3692547Z patching file tools/testing/selftests/bpf/prog_tests/sockopt_inherit.c
2025-10-31T05:25:18.3693181Z patching file tools/testing/selftests/bpf/prog_tests/sockopt_sk.c
2025-10-31T05:25:18.3693639Z patching file tools/testing/selftests/bpf/prog_tests/tcp_rtt.c
2025-10-31T05:25:18.3694098Z patching file tools/testing/selftests/bpf/progs/bpf_iter_task.c
2025-10-31T05:25:18.3694558Z patching file tools/testing/selftests/bpf/progs/bpf_iter_tcp4.c
2025-10-31T05:25:18.3695235Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_arr_kind.c
2025-10-31T05:25:18.3696148Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_arr_value_type.c
2025-10-31T05:25:18.3696833Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_int_kind.c
2025-10-31T05:25:18.3697501Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_int_sz.c
2025-10-31T05:25:18.3698172Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_int_type.c
2025-10-31T05:25:18.3698867Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_struct_type.c
2025-10-31T05:25:18.3699890Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___wrong_field_defs.c
2025-10-31T05:25:18.3700987Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_bitfields.c
2025-10-31T05:25:18.3701823Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_multidim.c
2025-10-31T05:25:18.3709662Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_packing.c
2025-10-31T05:25:18.3710680Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_padding.c
2025-10-31T05:25:18.3711232Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_syntax.c
2025-10-31T05:25:18.3711728Z patching file tools/testing/selftests/bpf/progs/cg_storage_multi.h
2025-10-31T05:25:18.3712365Z patching file tools/testing/selftests/bpf/progs/connect4_prog.c
2025-10-31T05:25:18.3712848Z patching file tools/testing/selftests/bpf/progs/core_reloc_types.h
2025-10-31T05:25:18.3713315Z patching file tools/testing/selftests/bpf/progs/local_storage.c
2025-10-31T05:25:18.3713818Z patching file tools/testing/selftests/bpf/progs/netif_receive_skb.c
2025-10-31T05:25:18.3714274Z patching file tools/testing/selftests/bpf/progs/profiler.inc.h
2025-10-31T05:25:18.3714711Z patching file tools/testing/selftests/bpf/progs/pyperf180.c
2025-10-31T05:25:18.3715154Z patching file tools/testing/selftests/bpf/progs/sockopt_sk.c
2025-10-31T05:25:18.3715607Z patching file tools/testing/selftests/bpf/progs/strobemeta.h
2025-10-31T05:25:18.3716855Z patching file tools/testing/selftests/bpf/progs/test_cls_redirect.h
2025-10-31T05:25:18.3717863Z patching file tools/testing/selftests/bpf/progs/test_core_autosize.c
2025-10-31T05:25:18.3718779Z patching file tools/testing/selftests/bpf/progs/test_global_func10.c
2025-10-31T05:25:18.3719892Z patching file tools/testing/selftests/bpf/progs/test_sk_assign.c
2025-10-31T05:25:18.3734062Z patching file tools/testing/selftests/bpf/progs/test_sk_assign_libbpf.c
2025-10-31T05:25:18.3734535Z patching file tools/testing/selftests/bpf/progs/test_sk_lookup.c
2025-10-31T05:25:18.3735017Z patching file tools/testing/selftests/bpf/progs/test_sock_fields.c
2025-10-31T05:25:18.3735506Z patching file tools/testing/selftests/bpf/progs/test_sockmap_kern.h
2025-10-31T05:25:18.3735982Z patching file tools/testing/selftests/bpf/progs/test_tunnel_kern.c
2025-10-31T05:25:18.3736406Z patching file tools/testing/selftests/bpf/progs/xdp_tx.c
2025-10-31T05:25:18.3736826Z patching file tools/testing/selftests/bpf/test_cpp.cpp
2025-10-31T05:25:18.3737262Z patching file tools/testing/selftests/bpf/test_lirc_mode2.sh
2025-10-31T05:25:18.3737691Z patching file tools/testing/selftests/bpf/test_lru_map.c
2025-10-31T05:25:18.3738139Z patching file tools/testing/selftests/bpf/test_lwt_ip_encap.sh
2025-10-31T05:25:18.3738537Z patching file tools/testing/selftests/bpf/test_maps.c
2025-10-31T05:25:18.3738967Z patching file tools/testing/selftests/bpf/test_offload.py
2025-10-31T05:25:18.3739374Z patching file tools/testing/selftests/bpf/test_progs.c
2025-10-31T05:25:18.3739789Z patching file tools/testing/selftests/bpf/test_progs.h
2025-10-31T05:25:18.3740658Z patching file tools/testing/selftests/bpf/test_sockmap.c
2025-10-31T05:25:18.3744626Z patching file tools/testing/selftests/bpf/test_tc_tunnel.sh
2025-10-31T05:25:18.3745805Z patching file tools/testing/selftests/bpf/test_tunnel.sh
2025-10-31T05:25:18.3756254Z patching file tools/testing/selftests/bpf/test_verifier.c
2025-10-31T05:25:18.3758104Z patching file tools/testing/selftests/bpf/test_xdp_redirect.sh
2025-10-31T05:25:18.3758737Z patching file tools/testing/selftests/bpf/test_xdp_veth.sh
2025-10-31T05:25:18.3759739Z patching file tools/testing/selftests/bpf/verifier/and.c
2025-10-31T05:25:18.3760592Z patching file tools/testing/selftests/bpf/verifier/array_access.c
2025-10-31T05:25:18.3761757Z patching file tools/testing/selftests/bpf/verifier/basic_stack.c
2025-10-31T05:25:18.3762786Z patching file tools/testing/selftests/bpf/verifier/bounds.c
2025-10-31T05:25:18.3764659Z patching file tools/testing/selftests/bpf/verifier/bounds_deduction.c
2025-10-31T05:25:18.3765823Z patching file tools/testing/selftests/bpf/verifier/bounds_mix_sign_unsign.c
2025-10-31T05:25:18.3768535Z patching file tools/testing/selftests/bpf/verifier/calls.c
2025-10-31T05:25:18.3770318Z patching file tools/testing/selftests/bpf/verifier/const_or.c
2025-10-31T05:25:18.3771195Z patching file tools/testing/selftests/bpf/verifier/ctx_sk_lookup.c
2025-10-31T05:25:18.3782982Z patching file tools/testing/selftests/bpf/verifier/dead_code.c
2025-10-31T05:25:18.3783720Z patching file tools/testing/selftests/bpf/verifier/helper_access_var_len.c
2025-10-31T05:25:18.3785140Z patching file tools/testing/selftests/bpf/verifier/int_ptr.c
2025-10-31T05:25:18.3785574Z patching file tools/testing/selftests/bpf/verifier/jmp32.c
2025-10-31T05:25:18.3785999Z patching file tools/testing/selftests/bpf/verifier/jset.c
2025-10-31T05:25:18.3786438Z patching file tools/testing/selftests/bpf/verifier/map_ptr.c
2025-10-31T05:25:18.3786946Z patching file tools/testing/selftests/bpf/verifier/raw_stack.c
2025-10-31T05:25:18.3787407Z patching file tools/testing/selftests/bpf/verifier/ref_tracking.c
2025-10-31T05:25:18.3787885Z patching file tools/testing/selftests/bpf/verifier/search_pruning.c
2025-10-31T05:25:18.3788299Z patching file tools/testing/selftests/bpf/verifier/sock.c
2025-10-31T05:25:18.3788952Z patching file tools/testing/selftests/bpf/verifier/spill_fill.c
2025-10-31T05:25:18.3789526Z patching file tools/testing/selftests/bpf/verifier/stack_ptr.c
2025-10-31T05:25:18.3790082Z patching file tools/testing/selftests/bpf/verifier/unpriv.c
2025-10-31T05:25:18.3790873Z patching file tools/testing/selftests/bpf/verifier/value_ptr_arith.c
2025-10-31T05:25:18.3792349Z patching file tools/testing/selftests/bpf/verifier/var_off.c
2025-10-31T05:25:18.3792915Z patching file tools/testing/selftests/bpf/verifier/xdp_direct_packet_access.c
2025-10-31T05:25:18.3797285Z patching file tools/testing/selftests/breakpoints/step_after_suspend_test.c
2025-10-31T05:25:18.3797738Z patching file tools/testing/selftests/cgroup/cgroup_util.c
2025-10-31T05:25:18.3798801Z patching file tools/testing/selftests/cgroup/test_core.c
2025-10-31T05:25:18.3799627Z patching file tools/testing/selftests/cgroup/test_stress.sh
2025-10-31T05:25:18.3800156Z patching file tools/testing/selftests/clone3/clone3.c
2025-10-31T05:25:18.3801151Z patching file tools/testing/selftests/core/close_range_test.c
2025-10-31T05:25:18.3802385Z patching file tools/testing/selftests/dmabuf-heaps/Makefile
2025-10-31T05:25:18.3803239Z patching file tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c
2025-10-31T05:25:18.3804933Z patching file tools/testing/selftests/drivers/net/mlxsw/devlink_trap_l3_drops.sh
2025-10-31T05:25:18.3806118Z patching file tools/testing/selftests/drivers/net/mlxsw/devlink_trap_l3_exceptions.sh
2025-10-31T05:25:18.3806899Z patching file tools/testing/selftests/drivers/net/mlxsw/mirror_gre_scale.sh
2025-10-31T05:25:18.3807657Z patching file tools/testing/selftests/drivers/net/mlxsw/qos_dscp_bridge.sh
2025-10-31T05:25:18.3808590Z patching file tools/testing/selftests/drivers/net/mlxsw/qos_pfc.sh
2025-10-31T05:25:18.3810346Z patching file tools/testing/selftests/drivers/net/mlxsw/sch_red_core.sh
2025-10-31T05:25:18.3811690Z patching file tools/testing/selftests/drivers/net/mlxsw/sharedbuffer.sh
2025-10-31T05:25:18.3812740Z patching file tools/testing/selftests/drivers/net/mlxsw/sharedbuffer_configuration.py
2025-10-31T05:25:18.3813788Z patching file tools/testing/selftests/drivers/net/mlxsw/spectrum-2/tc_flower.sh
2025-10-31T05:25:18.3815693Z patching file tools/testing/selftests/drivers/net/mlxsw/tc_flower_scale.sh
2025-10-31T05:25:18.3816704Z patching file tools/testing/selftests/drivers/net/mlxsw/tc_police_scale.sh
2025-10-31T05:25:18.3817471Z patching file tools/testing/selftests/drivers/net/mlxsw/vxlan_flooding.sh
2025-10-31T05:25:18.3818243Z patching file tools/testing/selftests/drivers/net/netdevsim/devlink.sh
2025-10-31T05:25:18.3819888Z patching file tools/testing/selftests/drivers/net/netdevsim/udp_tunnel_nic.sh
2025-10-31T05:25:18.3821534Z patching file tools/testing/selftests/drivers/net/ocelot/tc_flower_chains.sh
2025-10-31T05:25:18.3822401Z patching file tools/testing/selftests/efivarfs/create-read.c
2025-10-31T05:25:18.3822886Z patching file tools/testing/selftests/efivarfs/efivarfs.sh
2025-10-31T05:25:18.3823779Z patching file tools/testing/selftests/exec/Makefile
2025-10-31T05:25:18.3824855Z patching file tools/testing/selftests/filesystems/binderfs/Makefile
2025-10-31T05:25:18.3825670Z patching file tools/testing/selftests/firmware/fw_namespace.c
2025-10-31T05:25:18.3826630Z patching file tools/testing/selftests/ftrace/ftracetest
2025-10-31T05:25:18.3827926Z patching file tools/testing/selftests/ftrace/test.d/event/event-no-pid.tc
2025-10-31T05:25:18.3828823Z patching file tools/testing/selftests/ftrace/test.d/event/subsystem-enable.tc
2025-10-31T05:25:18.3829981Z patching file tools/testing/selftests/ftrace/test.d/ftrace/func-filter-glob.tc
2025-10-31T05:25:18.3830675Z patching file tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
2025-10-31T05:25:18.3831453Z patching file tools/testing/selftests/ftrace/test.d/functions
2025-10-31T05:25:18.3832703Z patching file tools/testing/selftests/ftrace/test.d/instances/instance-event.tc
2025-10-31T05:25:18.3833751Z patching file tools/testing/selftests/ftrace/test.d/kprobe/kprobe_eventname.tc
2025-10-31T05:25:18.3834759Z patching file tools/testing/selftests/ftrace/test.d/kprobe/kprobe_non_uniq_symbol.tc
2025-10-31T05:25:18.3835789Z patching file tools/testing/selftests/ftrace/test.d/kprobe/kprobe_syntax_errors.tc
2025-10-31T05:25:18.3836699Z patching file tools/testing/selftests/ftrace/test.d/kprobe/profile.tc
2025-10-31T05:25:18.3837219Z patching file tools/testing/selftests/futex/Makefile
2025-10-31T05:25:18.3838141Z patching file tools/testing/selftests/futex/functional/Makefile
2025-10-31T05:25:18.3839126Z patching file tools/testing/selftests/futex/include/futextest.h
2025-10-31T05:25:18.3840009Z patching file tools/testing/selftests/gpio/Makefile
2025-10-31T05:25:18.3840927Z patching file tools/testing/selftests/intel_pstate/Makefile
2025-10-31T05:25:18.3841647Z patching file tools/testing/selftests/intel_pstate/aperf.c
2025-10-31T05:25:18.3842949Z patching file tools/testing/selftests/kcmp/kcmp_test.c
2025-10-31T05:25:18.3843908Z patching file tools/testing/selftests/kselftest/prefix.pl
2025-10-31T05:25:18.3844482Z patching file tools/testing/selftests/kselftest/runner.sh
2025-10-31T05:25:18.3845684Z patching file tools/testing/selftests/kselftest_deps.sh
2025-10-31T05:25:18.3847262Z patching file tools/testing/selftests/kselftest_harness.h
2025-10-31T05:25:18.3848818Z patching file tools/testing/selftests/kvm/kvm_create_max_vcpus.c
2025-10-31T05:25:18.3849809Z patching file tools/testing/selftests/kvm/lib/aarch64/ucall.c
2025-10-31T05:25:18.3851081Z patching file tools/testing/selftests/kvm/lib/kvm_util.c
2025-10-31T05:25:18.3854096Z patching file tools/testing/selftests/kvm/lib/x86_64/processor.c
2025-10-31T05:25:18.3855008Z patching file tools/testing/selftests/kvm/lib/x86_64/svm.c
2025-10-31T05:25:18.3856097Z patching file tools/testing/selftests/kvm/steal_time.c
2025-10-31T05:25:18.3857218Z patching file tools/testing/selftests/kvm/x86_64/mmio_warning_test.c
2025-10-31T05:25:18.3858021Z patching file tools/testing/selftests/lib.mk
2025-10-31T05:25:18.3859082Z patching file tools/testing/selftests/lkdtm/run.sh
2025-10-31T05:25:18.3859979Z patching file tools/testing/selftests/lkdtm/tests.txt
2025-10-31T05:25:18.3860856Z patching file tools/testing/selftests/memfd/fuse_test.c
2025-10-31T05:25:18.3862133Z patching file tools/testing/selftests/memfd/memfd_test.c
2025-10-31T05:25:18.3864461Z patching file tools/testing/selftests/mincore/mincore_selftest.c
2025-10-31T05:25:18.3865284Z patching file tools/testing/selftests/mqueue/mq_perf_tests.c
2025-10-31T05:25:18.3867026Z patching file tools/testing/selftests/mqueue/setting
2025-10-31T05:25:18.3867894Z patching file tools/testing/selftests/net/altnames.sh
2025-10-31T05:25:18.3868854Z patching file tools/testing/selftests/net/devlink_port_split.py
2025-10-31T05:25:18.3871167Z patching file tools/testing/selftests/net/fcnal-test.sh
2025-10-31T05:25:18.3874808Z patching file tools/testing/selftests/net/fib_nexthop_multiprefix.sh
2025-10-31T05:25:18.3875887Z patching file tools/testing/selftests/net/fib_nexthops.sh
2025-10-31T05:25:18.3878502Z patching file tools/testing/selftests/net/fib_tests.sh
2025-10-31T05:25:18.3881004Z patching file tools/testing/selftests/net/forwarding/Makefile
2025-10-31T05:25:18.3881617Z patching file tools/testing/selftests/net/forwarding/devlink_lib.sh
2025-10-31T05:25:18.3883050Z patching file tools/testing/selftests/net/forwarding/ethtool.sh
2025-10-31T05:25:18.3884089Z patching file tools/testing/selftests/net/forwarding/ethtool_extended_state.sh
2025-10-31T05:25:18.3884924Z patching file tools/testing/selftests/net/forwarding/forwarding.config.sample
2025-10-31T05:25:18.3885942Z patching file tools/testing/selftests/net/forwarding/ip6_forward_instats_vrf.sh
2025-10-31T05:25:18.3887832Z patching file tools/testing/selftests/net/forwarding/lib.sh
2025-10-31T05:25:18.3889785Z patching file tools/testing/selftests/net/forwarding/mirror_gre_bridge_1d_vlan.sh
2025-10-31T05:25:18.3890404Z patching file tools/testing/selftests/net/forwarding/mirror_gre_bridge_1q.sh
2025-10-31T05:25:18.3891477Z patching file tools/testing/selftests/net/forwarding/mirror_gre_changes.sh
2025-10-31T05:25:18.3892811Z patching file tools/testing/selftests/net/forwarding/mirror_gre_vlan_bridge_1q.sh
2025-10-31T05:25:18.3893913Z patching file tools/testing/selftests/net/forwarding/mirror_lib.sh
2025-10-31T05:25:18.3894791Z patching file tools/testing/selftests/net/forwarding/pedit_dsfield.sh
2025-10-31T05:25:18.3895894Z patching file tools/testing/selftests/net/forwarding/pedit_l4port.sh
2025-10-31T05:25:18.3896927Z patching file tools/testing/selftests/net/forwarding/router_mpath_nh.sh
2025-10-31T05:25:18.3897978Z patching file tools/testing/selftests/net/forwarding/router_multipath.sh
2025-10-31T05:25:18.3899060Z patching file tools/testing/selftests/net/forwarding/sch_red.sh
2025-10-31T05:25:18.3900220Z patching file tools/testing/selftests/net/forwarding/settings
2025-10-31T05:25:18.3901472Z patching file tools/testing/selftests/net/forwarding/skbedit_priority.sh
2025-10-31T05:25:18.3902519Z patching file tools/testing/selftests/net/forwarding/tc_actions.sh
2025-10-31T05:25:18.3903785Z patching file tools/testing/selftests/net/forwarding/tc_flower.sh
2025-10-31T05:25:18.3905423Z patching file tools/testing/selftests/net/forwarding/tc_police.sh
2025-10-31T05:25:18.3906722Z patching file tools/testing/selftests/net/forwarding/vxlan_bridge_1d.sh
2025-10-31T05:25:18.3908187Z patching file tools/testing/selftests/net/icmp_redirect.sh
2025-10-31T05:25:18.3910005Z patching file tools/testing/selftests/net/ipsec.c
2025-10-31T05:25:18.3912261Z patching file tools/testing/selftests/net/mptcp/Makefile
2025-10-31T05:25:18.3912757Z patching file tools/testing/selftests/net/mptcp/config
2025-10-31T05:25:18.3913675Z patching file tools/testing/selftests/net/mptcp/diag.sh
2025-10-31T05:25:18.3914674Z patching file tools/testing/selftests/net/mptcp/mptcp_connect.c
2025-10-31T05:25:18.3916355Z patching file tools/testing/selftests/net/mptcp/mptcp_connect.sh
2025-10-31T05:25:18.3917621Z patching file tools/testing/selftests/net/mptcp/mptcp_connect_mmap.sh
2025-10-31T05:25:18.3918609Z patching file tools/testing/selftests/net/mptcp/mptcp_join.sh
2025-10-31T05:25:18.3920461Z patching file tools/testing/selftests/net/mptcp/mptcp_lib.sh
2025-10-31T05:25:18.3921511Z patching file tools/testing/selftests/net/mptcp/pm_netlink.sh
2025-10-31T05:25:18.3922697Z patching file tools/testing/selftests/net/mptcp/simult_flows.sh
2025-10-31T05:25:18.3923909Z patching file tools/testing/selftests/net/msg_zerocopy.c
2025-10-31T05:25:18.3926116Z patching file tools/testing/selftests/net/pmtu.sh
2025-10-31T05:25:18.3928512Z patching file tools/testing/selftests/net/reuseaddr_conflict.c
2025-10-31T05:25:18.3929036Z patching file tools/testing/selftests/net/reuseaddr_ports_exhausted.c
2025-10-31T05:25:18.3930163Z patching file tools/testing/selftests/net/reuseport_bpf.c
2025-10-31T05:25:18.3931617Z patching file tools/testing/selftests/net/rtnetlink.sh
2025-10-31T05:25:18.3933417Z patching file tools/testing/selftests/net/test_vxlan_under_vrf.sh
2025-10-31T05:25:18.3934562Z patching file tools/testing/selftests/net/tls.c
2025-10-31T05:25:18.3936339Z patching file tools/testing/selftests/net/txtimestamp.c
2025-10-31T05:25:18.3937672Z patching file tools/testing/selftests/net/udpgro.sh
2025-10-31T05:25:18.3939022Z patching file tools/testing/selftests/net/udpgso.c
2025-10-31T05:25:18.3940416Z patching file tools/testing/selftests/net/udpgso_bench.sh
2025-10-31T05:25:18.3941301Z patching file tools/testing/selftests/net/udpgso_bench_rx.c
2025-10-31T05:25:18.3942919Z patching file tools/testing/selftests/net/udpgso_bench_tx.c
2025-10-31T05:25:18.3944535Z patching file tools/testing/selftests/net/vrf-xfrm-tests.sh
2025-10-31T05:25:18.3945838Z patching file tools/testing/selftests/net/xfrm_policy.sh
2025-10-31T05:25:18.3947175Z patching file tools/testing/selftests/netfilter/Makefile
2025-10-31T05:25:18.3947862Z patching file tools/testing/selftests/netfilter/conntrack_icmp_related.sh
2025-10-31T05:25:18.3949078Z patching file tools/testing/selftests/netfilter/conntrack_vrf.sh
2025-10-31T05:25:18.3950886Z patching file tools/testing/selftests/netfilter/nft_concat_range.sh
2025-10-31T05:25:18.3952972Z patching file tools/testing/selftests/netfilter/nft_conntrack_helper.sh
2025-10-31T05:25:18.3954108Z patching file tools/testing/selftests/netfilter/nft_flowtable.sh
2025-10-31T05:25:18.3954988Z patching file tools/testing/selftests/netfilter/nft_meta.sh
2025-10-31T05:25:18.3955913Z patching file tools/testing/selftests/netfilter/nft_nat.sh
2025-10-31T05:25:18.3957527Z patching file tools/testing/selftests/openat2/Makefile
2025-10-31T05:25:18.3958099Z patching file tools/testing/selftests/openat2/helpers.h
2025-10-31T05:25:18.3959096Z patching file tools/testing/selftests/openat2/openat2_test.c
2025-10-31T05:25:18.3960135Z patching file tools/testing/selftests/pidfd/pidfd.h
2025-10-31T05:25:18.3961091Z patching file tools/testing/selftests/pidfd/pidfd_fdinfo_test.c
2025-10-31T05:25:18.3962507Z patching file tools/testing/selftests/pidfd/pidfd_test.c
2025-10-31T05:25:18.3964026Z patching file tools/testing/selftests/pidfd/pidfd_wait.c
2025-10-31T05:25:18.3965269Z patching file tools/testing/selftests/powerpc/alignment/alignment_handler.c
2025-10-31T05:25:18.3966557Z patching file tools/testing/selftests/powerpc/dscr/dscr_sysfs_test.c
2025-10-31T05:25:18.3967450Z patching file tools/testing/selftests/powerpc/eeh/eeh-basic.sh
2025-10-31T05:25:18.3968360Z patching file tools/testing/selftests/powerpc/math/fpu_preempt.c
2025-10-31T05:25:18.3969215Z patching file tools/testing/selftests/powerpc/math/vmx_preempt.c
2025-10-31T05:25:18.3970175Z patching file tools/testing/selftests/powerpc/mm/pkey_exec_prot.c
2025-10-31T05:25:18.3971113Z patching file tools/testing/selftests/powerpc/mm/pkey_siginfo.c
2025-10-31T05:25:18.3972540Z patching file tools/testing/selftests/powerpc/pmu/ebb/no_handler_test.c
2025-10-31T05:25:18.3973414Z patching file tools/testing/selftests/powerpc/security/entry_flush.c
2025-10-31T05:25:18.3974154Z patching file tools/testing/selftests/powerpc/security/flush_utils.h
2025-10-31T05:25:18.3974972Z patching file tools/testing/selftests/powerpc/security/rfi_flush.c
2025-10-31T05:25:18.3975838Z patching file tools/testing/selftests/powerpc/security/spectre_v2.c
2025-10-31T05:25:18.3976850Z patching file tools/testing/selftests/proc/proc-uptime-002.c
2025-10-31T05:25:18.3977775Z patching file tools/testing/selftests/ptp/testptp.c
2025-10-31T05:25:18.3979033Z patching file tools/testing/selftests/rcutorture/bin/console-badness.sh
2025-10-31T05:25:18.3979759Z patching file tools/testing/selftests/resctrl/Makefile
2025-10-31T05:25:18.3980322Z patching file tools/testing/selftests/resctrl/README
2025-10-31T05:25:18.3981146Z patching file tools/testing/selftests/resctrl/cache.c
2025-10-31T05:25:18.3982623Z patching file tools/testing/selftests/resctrl/cat_test.c
2025-10-31T05:25:18.3983554Z patching file tools/testing/selftests/resctrl/cqm_test.c
2025-10-31T05:25:18.3984526Z patching file tools/testing/selftests/resctrl/fill_buf.c
2025-10-31T05:25:18.3985649Z patching file tools/testing/selftests/resctrl/mba_test.c
2025-10-31T05:25:18.3986632Z patching file tools/testing/selftests/resctrl/mbm_test.c
2025-10-31T05:25:18.3987481Z patching file tools/testing/selftests/resctrl/resctrl.h
2025-10-31T05:25:18.3988431Z patching file tools/testing/selftests/resctrl/resctrl_tests.c
2025-10-31T05:25:18.3989960Z patching file tools/testing/selftests/resctrl/resctrl_val.c
2025-10-31T05:25:18.3992282Z patching file tools/testing/selftests/resctrl/resctrlfs.c
2025-10-31T05:25:18.3993523Z patching file tools/testing/selftests/rseq/Makefile
2025-10-31T05:25:18.3994436Z patching file tools/testing/selftests/rseq/basic_percpu_ops_test.c
2025-10-31T05:25:18.3995372Z patching file tools/testing/selftests/rseq/compiler.h
2025-10-31T05:25:18.3996877Z patching file tools/testing/selftests/rseq/param_test.c
2025-10-31T05:25:18.3998697Z patching file tools/testing/selftests/rseq/rseq-abi.h
2025-10-31T05:25:18.4000357Z patching file tools/testing/selftests/rseq/rseq-arm.h
2025-10-31T05:25:18.4003088Z patching file tools/testing/selftests/rseq/rseq-arm64.h
2025-10-31T05:25:18.4005240Z patching file tools/testing/selftests/rseq/rseq-generic-thread-pointer.h
2025-10-31T05:25:18.4006045Z patching file tools/testing/selftests/rseq/rseq-mips.h
2025-10-31T05:25:18.4008850Z patching file tools/testing/selftests/rseq/rseq-ppc-thread-pointer.h
2025-10-31T05:25:18.4009317Z patching file tools/testing/selftests/rseq/rseq-ppc.h
2025-10-31T05:25:18.4012214Z patching file tools/testing/selftests/rseq/rseq-s390.h
2025-10-31T05:25:18.4014257Z patching file tools/testing/selftests/rseq/rseq-skip.h
2025-10-31T05:25:18.4014880Z patching file tools/testing/selftests/rseq/rseq-thread-pointer.h
2025-10-31T05:25:18.4016087Z patching file tools/testing/selftests/rseq/rseq-x86-thread-pointer.h
2025-10-31T05:25:18.4017275Z patching file tools/testing/selftests/rseq/rseq-x86.h
2025-10-31T05:25:18.4020943Z patching file tools/testing/selftests/rseq/rseq.c
2025-10-31T05:25:18.4022238Z patching file tools/testing/selftests/rseq/rseq.h
2025-10-31T05:25:18.4023351Z patching file tools/testing/selftests/rtc/settings
2025-10-31T05:25:18.4024223Z patching file tools/testing/selftests/run_kselftest.sh
2025-10-31T05:25:18.4025100Z patching file tools/testing/selftests/seccomp/Makefile
2025-10-31T05:25:18.4025749Z patching file tools/testing/selftests/seccomp/config
2025-10-31T05:25:18.4027814Z patching file tools/testing/selftests/seccomp/seccomp_bpf.c
2025-10-31T05:25:18.4031136Z patching file tools/testing/selftests/sigaltstack/current_stack_pointer.h
2025-10-31T05:25:18.4031573Z patching file tools/testing/selftests/sigaltstack/sas.c
2025-10-31T05:25:18.4032759Z patching file tools/testing/selftests/splice/short_splice_read.sh
2025-10-31T05:25:18.4034068Z patching file tools/testing/selftests/tc-testing/config
2025-10-31T05:25:18.4035007Z patching file tools/testing/selftests/tc-testing/plugin-lib/scapyPlugin.py
2025-10-31T05:25:18.4035776Z patching file tools/testing/selftests/tc-testing/settings
2025-10-31T05:25:18.4036946Z patching file tools/testing/selftests/tc-testing/tc-tests/qdiscs/fq_pie.json
2025-10-31T05:25:18.4037854Z patching file tools/testing/selftests/tc-testing/tdc.py
2025-10-31T05:25:18.4039115Z patching file tools/testing/selftests/tc-testing/tdc_batch.py
2025-10-31T05:25:18.4040027Z patching file tools/testing/selftests/tc-testing/tdc_multibatch.py
2025-10-31T05:25:18.4040868Z patching file tools/testing/selftests/timers/clocksource-switch.c
2025-10-31T05:25:18.4041682Z patching file tools/testing/selftests/timers/posix_timers.c
2025-10-31T05:25:18.4042758Z patching file tools/testing/selftests/timers/rtcpie.c
2025-10-31T05:25:18.4043787Z patching file tools/testing/selftests/timers/valid-adjtimex.c
2025-10-31T05:25:18.4045217Z patching file tools/testing/selftests/tpm2/tpm2.py
2025-10-31T05:25:18.4047482Z patching file tools/testing/selftests/ublk/test_stripe_04.sh
2025-10-31T05:25:18.4048084Z patching file tools/testing/selftests/vDSO/parse_vdso.c
2025-10-31T05:25:18.4049139Z patching file tools/testing/selftests/vDSO/vdso_standalone_test_x86.c
2025-10-31T05:25:18.4050032Z patching file tools/testing/selftests/vm/Makefile
2025-10-31T05:25:18.4051516Z patching file tools/testing/selftests/vm/charge_reserved_hugetlb.sh
2025-10-31T05:25:18.4053045Z patching file tools/testing/selftests/vm/compaction_test.c
2025-10-31T05:25:18.4054778Z patching file tools/testing/selftests/vm/hmm-tests.c
2025-10-31T05:25:18.4056471Z patching file tools/testing/selftests/vm/hugetlb_reparenting_test.sh
2025-10-31T05:25:18.4057219Z patching file tools/testing/selftests/vm/map_fixed_noreplace.c
2025-10-31T05:25:18.4058967Z patching file tools/testing/selftests/vm/protection_keys.c
2025-10-31T05:25:18.4060960Z patching file tools/testing/selftests/vm/userfaultfd.c
2025-10-31T05:25:18.4063082Z patching file tools/testing/selftests/vm/write_hugetlb_memory.sh
2025-10-31T05:25:18.4063517Z patching file tools/testing/selftests/vm/write_to_hugetlbfs.c
2025-10-31T05:25:18.4064872Z patching file tools/testing/selftests/watchdog/watchdog-test.c
2025-10-31T05:25:18.4065935Z patching file tools/testing/selftests/wireguard/netns.sh
2025-10-31T05:25:18.4067837Z patching file tools/testing/selftests/wireguard/qemu/debug.config
2025-10-31T05:25:18.4068561Z patching file tools/testing/selftests/wireguard/qemu/kernel.config
2025-10-31T05:25:18.4069547Z patching file tools/testing/selftests/x86/Makefile
2025-10-31T05:25:18.4070256Z patching file tools/testing/selftests/x86/check_cc.sh
2025-10-31T05:25:18.4071069Z patching file tools/testing/selftests/x86/iopl.c
2025-10-31T05:25:18.4072602Z patching file tools/testing/selftests/x86/test_vsyscall.c
2025-10-31T05:25:18.4073848Z patching file tools/testing/selftests/zram/zram.sh
2025-10-31T05:25:18.4074639Z patching file tools/testing/selftests/zram/zram01.sh
2025-10-31T05:25:18.4075540Z patching file tools/testing/selftests/zram/zram02.sh
2025-10-31T05:25:18.4076308Z patching file tools/testing/selftests/zram/zram_lib.sh
2025-10-31T05:25:18.4077999Z patching file tools/thermal/tmon/Makefile
2025-10-31T05:25:18.4078848Z patching file tools/thermal/tmon/sysfs.c
2025-10-31T05:25:18.4080311Z patching file tools/thermal/tmon/tmon.h
2025-10-31T05:25:18.4081329Z patching file tools/usb/testusb.c
2025-10-31T05:25:18.4082786Z patching file tools/usb/usbip/src/usbip_detach.c
2025-10-31T05:25:18.4083596Z patching file tools/virtio/Makefile
2025-10-31T05:25:18.4084470Z patching file tools/virtio/linux/bug.h
2025-10-31T05:25:18.4085296Z patching file tools/virtio/linux/build_bug.h
2025-10-31T05:25:18.4086254Z patching file tools/virtio/linux/cpumask.h
2025-10-31T05:25:18.4087185Z patching file tools/virtio/linux/gfp.h
2025-10-31T05:25:18.4088160Z patching file tools/virtio/linux/kernel.h
2025-10-31T05:25:18.4088958Z patching file tools/virtio/linux/kmsan.h
2025-10-31T05:25:18.4090053Z patching file tools/virtio/linux/scatterlist.h
2025-10-31T05:25:18.4090899Z patching file tools/virtio/linux/spinlock.h
2025-10-31T05:25:18.4091928Z patching file tools/virtio/linux/topology.h
2025-10-31T05:25:18.4093092Z patching file tools/virtio/linux/virtio.h
2025-10-31T05:25:18.4094000Z patching file tools/virtio/virtio_test.c
2025-10-31T05:25:18.4095174Z patching file tools/virtio/vringh_test.c
2025-10-31T05:25:18.4096844Z patching file tools/vm/page-types.c
2025-10-31T05:25:18.4107064Z patching file tools/vm/slabinfo-gnuplot.sh
2025-10-31T05:25:18.4107507Z patching file tools/vm/slabinfo.c
2025-10-31T05:25:18.4107867Z patching file usr/include/Makefile
2025-10-31T05:25:18.4108451Z patching file virt/kvm/async_pf.c
2025-10-31T05:25:18.4109960Z patching file virt/kvm/coalesced_mmio.c
2025-10-31T05:25:18.4110294Z patching file virt/kvm/eventfd.c
2025-10-31T05:25:18.4110625Z patching file virt/kvm/kvm_main.c
2025-10-31T05:25:18.4113592Z patching file virt/lib/irqbypass.c
2025-10-31T05:25:21.0969697Z -> Applying patch: 0001-linux-5.10.246-gcc15.patch...
2025-10-31T05:25:21.0980344Z patching file arch/x86/Makefile
2025-10-31T05:25:21.0984208Z -> Applying patch: 0002-linux-5.10.246-gcc15.patch...
2025-10-31T05:25:21.0994729Z patching file arch/parisc/boot/compressed/Makefile
2025-10-31T05:25:21.0995754Z patching file arch/s390/Makefile
2025-10-31T05:25:21.0996673Z patching file arch/s390/purgatory/Makefile
2025-10-31T05:25:21.0997587Z patching file arch/x86/Makefile
2025-10-31T05:25:21.0998512Z patching file arch/x86/boot/compressed/Makefile
2025-10-31T05:25:21.0999395Z patching file drivers/firmware/efi/libstub/Makefile
2025-10-31T05:25:21.1057401Z -> Applying patch: 0003-linux-5.10.246-gcc15.patch...
2025-10-31T05:25:21.1067606Z patching file kernel/trace/trace_events_synth.c
2025-10-31T05:25:21.1073275Z -> Applying patch: 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-CLONE_NEWUSER.patch...
2025-10-31T05:25:21.1082576Z patching file include/linux/sysctl.h
2025-10-31T05:25:21.1083426Z Hunk #1 succeeded at 216 (offset 12 lines).
2025-10-31T05:25:21.1091468Z patching file init/Kconfig
2025-10-31T05:25:21.1093317Z Hunk #1 succeeded at 1189 (offset 98 lines).
2025-10-31T05:25:21.1094727Z patching file kernel/fork.c
2025-10-31T05:25:21.1095528Z Hunk #1 succeeded at 107 (offset 1 line).
2025-10-31T05:25:21.1096383Z Hunk #2 succeeded at 1975 (offset 182 lines).
2025-10-31T05:25:21.1097278Z Hunk #3 succeeded at 3066 (offset 238 lines).
2025-10-31T05:25:21.1098487Z patching file kernel/sysctl.c
2025-10-31T05:25:21.1100323Z Hunk #1 succeeded at 2039 (offset 1494 lines).
2025-10-31T05:25:21.1102148Z patching file kernel/user_namespace.c
2025-10-31T05:25:21.1110032Z -> Applying patch: 0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_special_driver-list.patch...
2025-10-31T05:25:21.1119631Z patching file drivers/hid/hid-quirks.c
2025-10-31T05:25:21.1120464Z Hunk #1 succeeded at 492 (offset 14 lines).
2025-10-31T05:25:21.1125050Z -> Applying patch: 0101-i2c-nuvoton-nc677x-hwmon-driver.patch...
2025-10-31T05:25:21.1134896Z patching file drivers/i2c/busses/Kconfig
2025-10-31T05:25:21.1135614Z Hunk #1 succeeded at 219 (offset 2 lines).
2025-10-31T05:25:21.1136297Z patching file drivers/i2c/busses/Makefile
2025-10-31T05:25:21.1137234Z patching file drivers/i2c/busses/i2c-nct6775.c
2025-10-31T05:25:21.1139858Z patching file drivers/i2c/busses/i2c-piix4.c
2025-10-31T05:25:21.1146282Z -> Applying patch: 0102-iomap-iomap_bmap-should-accept-unwritten-maps.patch...
2025-10-31T05:25:21.1155584Z patching file fs/iomap/fiemap.c
2025-10-31T05:25:21.1156310Z Hunk #1 succeeded at 110 (offset -5 lines).
2025-10-31T05:25:21.1159335Z -> Applying patch: 0104-revert-xhci-Add-support-for-Renesas-controller-with-memory.patch...
2025-10-31T05:25:21.1168456Z patching file drivers/usb/host/xhci-pci.c
2025-10-31T05:25:21.1169300Z Hunk #1 succeeded at 730 (offset 94 lines).
2025-10-31T05:25:21.1171109Z patching file drivers/usb/host/xhci-pci.c
2025-10-31T05:25:21.1171939Z Hunk #2 succeeded at 107 (offset 16 lines).
2025-10-31T05:25:21.1172917Z Hunk #3 succeeded at 451 (offset 115 lines).
2025-10-31T05:25:21.1173744Z Hunk #4 succeeded at 693 (offset 133 lines).
2025-10-31T05:25:21.1176171Z -> Applying patch: 0107-quirk-kernel-org-bug-210681-firmware_rome_error.patch...
2025-10-31T05:25:21.1187006Z patching file drivers/bluetooth/btusb.c
2025-10-31T05:25:21.1189988Z Hunk #1 succeeded at 3821 with fuzz 2 (offset -249 lines).
2025-10-31T05:25:21.1194165Z -> Applying patch: 0999-patch_realtek.patch...
2025-10-31T05:25:21.1209285Z patching file sound/pci/hda/patch_realtek.c
2025-10-31T05:25:21.1213720Z Hunk #1 succeeded at 9300 (offset -932 lines).
2025-10-31T05:25:21.1218628Z -> add config.anbox to config
2025-10-31T05:25:21.1316308Z ==> set extraversion to pkgrel
2025-10-31T05:25:21.1342398Z ==> don't run depmod on 'make install'
2025-10-31T05:25:21.1364512Z ==> get kernel version
2025-10-31T05:25:22.4951546Z SYNC include/config/auto.conf
2025-10-31T05:25:23.1087207Z HOSTCC scripts/basic/fixdep
2025-10-31T05:25:23.3006394Z HOSTCC scripts/kconfig/conf.o
2025-10-31T05:25:23.4709359Z HOSTCC scripts/kconfig/confdata.o
2025-10-31T05:25:23.8054231Z HOSTCC scripts/kconfig/expr.o
2025-10-31T05:25:24.0743735Z LEX scripts/kconfig/lexer.lex.c
2025-10-31T05:25:24.0845881Z YACC scripts/kconfig/parser.tab.[ch]
2025-10-31T05:25:24.1638902Z HOSTCC scripts/kconfig/lexer.lex.o
2025-10-31T05:25:24.4915706Z HOSTCC scripts/kconfig/parser.tab.o
2025-10-31T05:25:24.9728576Z HOSTCC scripts/kconfig/preprocess.o
2025-10-31T05:25:25.1117384Z HOSTCC scripts/kconfig/symbol.o
2025-10-31T05:25:25.4846955Z HOSTCC scripts/kconfig/util.o
2025-10-31T05:25:25.5451314Z HOSTLD scripts/kconfig/conf
2025-10-31T05:25:26.4785133Z .config:10208:warning: override: reassigning to symbol ASHMEM
2025-10-31T05:25:26.4785942Z .config:10209:warning: override: reassigning to symbol ION
2025-10-31T05:25:26.4786666Z .config:10210:warning: override: reassigning to symbol ANDROID
2025-10-31T05:25:26.4787423Z .config:10211:warning: override: reassigning to symbol ANDROID_BINDER_IPC
2025-10-31T05:25:26.4788229Z .config:10212:warning: override: reassigning to symbol ANDROID_BINDERFS
2025-10-31T05:25:26.4789041Z .config:10213:warning: override: reassigning to symbol ANDROID_BINDER_DEVICES
2025-10-31T05:25:26.4789940Z .config:10214:warning: override: reassigning to symbol ANDROID_BINDER_IPC_SELFTEST
2025-10-31T05:25:29.1421783Z SYSTBL arch/x86/include/generated/asm/syscalls_32.h
2025-10-31T05:25:29.7893410Z SYSHDR arch/x86/include/generated/asm/unistd_32_ia32.h
2025-10-31T05:25:29.8153651Z SYSHDR arch/x86/include/generated/asm/unistd_64_x32.h
2025-10-31T05:25:29.8287148Z SYSTBL arch/x86/include/generated/asm/syscalls_64.h
2025-10-31T05:25:30.3985384Z HYPERCALLS arch/x86/include/generated/asm/xen-hypercalls.h
2025-10-31T05:25:30.4451491Z SYSHDR arch/x86/include/generated/uapi/asm/unistd_32.h
2025-10-31T05:25:30.4710851Z SYSHDR arch/x86/include/generated/uapi/asm/unistd_64.h
2025-10-31T05:25:30.4939109Z SYSHDR arch/x86/include/generated/uapi/asm/unistd_x32.h
2025-10-31T05:25:30.6398180Z HOSTCC arch/x86/tools/relocs_32.o
2025-10-31T05:25:30.8408834Z HOSTCC arch/x86/tools/relocs_64.o
2025-10-31T05:25:31.0482480Z HOSTCC arch/x86/tools/relocs_common.o
2025-10-31T05:25:31.1074085Z HOSTLD arch/x86/tools/relocs
2025-10-31T05:25:31.2884501Z HOSTCC scripts/selinux/genheaders/genheaders
2025-10-31T05:25:31.3943993Z HOSTCC scripts/selinux/mdp/mdp
2025-10-31T05:25:31.4947448Z HOSTCC scripts/bin2c
2025-10-31T05:25:31.5435029Z HOSTCC scripts/kallsyms
2025-10-31T05:25:31.7652686Z HOSTCC scripts/recordmcount
2025-10-31T05:25:32.1887044Z HOSTCC scripts/sorttable
2025-10-31T05:25:32.4531312Z HOSTCC scripts/asn1_compiler
2025-10-31T05:25:32.8097306Z HOSTCC scripts/sign-file
2025-10-31T05:25:33.0246878Z HOSTCC scripts/extract-cert
2025-10-31T05:25:33.2294873Z WRAP arch/x86/include/generated/uapi/asm/bpf_perf_event.h
2025-10-31T05:25:33.2318704Z WRAP arch/x86/include/generated/uapi/asm/errno.h
2025-10-31T05:25:33.2343027Z WRAP arch/x86/include/generated/uapi/asm/fcntl.h
2025-10-31T05:25:33.2367105Z WRAP arch/x86/include/generated/uapi/asm/ioctl.h
2025-10-31T05:25:33.2391916Z WRAP arch/x86/include/generated/uapi/asm/ioctls.h
2025-10-31T05:25:33.2416374Z WRAP arch/x86/include/generated/uapi/asm/ipcbuf.h
2025-10-31T05:25:33.2441272Z WRAP arch/x86/include/generated/uapi/asm/param.h
2025-10-31T05:25:33.2465836Z WRAP arch/x86/include/generated/uapi/asm/poll.h
2025-10-31T05:25:33.2489781Z WRAP arch/x86/include/generated/uapi/asm/resource.h
2025-10-31T05:25:33.2514229Z WRAP arch/x86/include/generated/uapi/asm/socket.h
2025-10-31T05:25:33.2538343Z WRAP arch/x86/include/generated/uapi/asm/sockios.h
2025-10-31T05:25:33.2563062Z WRAP arch/x86/include/generated/uapi/asm/termbits.h
2025-10-31T05:25:33.2587017Z WRAP arch/x86/include/generated/uapi/asm/termios.h
2025-10-31T05:25:33.2610764Z WRAP arch/x86/include/generated/uapi/asm/types.h
2025-10-31T05:25:33.3218083Z WRAP arch/x86/include/generated/asm/early_ioremap.h
2025-10-31T05:25:33.3241567Z WRAP arch/x86/include/generated/asm/export.h
2025-10-31T05:25:33.3265850Z WRAP arch/x86/include/generated/asm/mcs_spinlock.h
2025-10-31T05:25:33.3289747Z WRAP arch/x86/include/generated/asm/irq_regs.h
2025-10-31T05:25:33.3314286Z WRAP arch/x86/include/generated/asm/local64.h
2025-10-31T05:25:33.3338454Z WRAP arch/x86/include/generated/asm/mm-arch-hooks.h
2025-10-31T05:25:33.3363255Z WRAP arch/x86/include/generated/asm/mmiowb.h
2025-10-31T05:25:33.3387370Z WRAP arch/x86/include/generated/asm/module.lds.h
2025-10-31T05:25:33.3411281Z WRAP arch/x86/include/generated/asm/rwonce.h
2025-10-31T05:25:33.4223229Z UPD include/config/kernel.release
2025-10-31T05:25:33.5986286Z UPD include/generated/uapi/linux/version.h
2025-10-31T05:25:33.6957320Z UPD include/generated/utsrelease.h
2025-10-31T05:25:33.7630709Z CC scripts/mod/empty.o
2025-10-31T05:25:33.7993898Z HOSTCC scripts/mod/mk_elfconfig
2025-10-31T05:25:33.8541706Z MKELF scripts/mod/elfconfig.h
2025-10-31T05:25:33.8580530Z HOSTCC scripts/mod/modpost.o
2025-10-31T05:25:34.4107925Z CC scripts/mod/devicetable-offsets.s
2025-10-31T05:25:34.4524774Z UPD scripts/mod/devicetable-offsets.h
2025-10-31T05:25:34.4575379Z HOSTCC scripts/mod/file2alias.o
2025-10-31T05:25:34.9268123Z HOSTCC scripts/mod/sumversion.o
2025-10-31T05:25:35.0710388Z HOSTLD scripts/mod/modpost
2025-10-31T05:25:35.1030158Z CC kernel/bounds.s
2025-10-31T05:25:35.1461170Z UPD include/generated/bounds.h
2025-10-31T05:25:35.1537115Z UPD include/generated/timeconst.h
2025-10-31T05:25:35.1586707Z CC arch/x86/kernel/asm-offsets.s
2025-10-31T05:25:35.4722724Z UPD include/generated/asm-offsets.h
2025-10-31T05:25:35.4772646Z CALL scripts/checksyscalls.sh
2025-10-31T05:25:35.5132115Z CALL scripts/atomic/check-atomics.sh
2025-10-31T05:25:35.6131580Z DESCEND objtool
2025-10-31T05:25:35.7570000Z gcc -o /build/linux510/src/linux-5.10/tools/objtool/fixdep /build/linux510/src/linux-5.10/tools/objtool/fixdep-in.o
2025-10-31T05:25:36.8499845Z rm -f /build/linux510/src/linux-5.10/tools/objtool/libsubcmd.a && ar rcs /build/linux510/src/linux-5.10/tools/objtool/libsubcmd.a /build/linux510/src/linux-5.10/tools/objtool/libsubcmd-in.o
2025-10-31T05:25:39.7230305Z gcc /build/linux510/src/linux-5.10/tools/objtool/objtool-in.o -lelf /build/linux510/src/linux-5.10/tools/objtool/libsubcmd.a -o /build/linux510/src/linux-5.10/tools/objtool/objtool
2025-10-31T05:25:39.8285482Z DESCEND bpf/resolve_btfids
2025-10-31T05:25:40.1740451Z
2025-10-31T05:25:40.1741188Z Auto-detecting system features:
2025-10-31T05:25:40.1754785Z ... libelf: [ ^[[32mon^[[m ]
2025-10-31T05:25:40.1767994Z ... zlib: [ ^[[32mon^[[m ]
2025-10-31T05:25:40.1781253Z ... bpf: [ ^[[32mon^[[m ]
2025-10-31T05:25:40.1781579Z
2025-10-31T05:25:40.1894219Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py --header \
2025-10-31T05:25:40.1895669Z --file /build/linux510/src/linux-5.10/tools/include/uapi/linux/bpf.h > /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libbpf/bpf_helper_defs.h
2025-10-31T05:25:40.2124581Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:42: SyntaxWarning: invalid escape sequence '\w'
2025-10-31T05:25:40.2126093Z arg_re = re.compile('((\w+ )*?(\w+|...))( (\**)(\w+))?$')
2025-10-31T05:25:40.2127521Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:44: SyntaxWarning: invalid escape sequence '\*'
2025-10-31T05:25:40.2128949Z proto_re = re.compile('(.+) (\**)(\w+)\(((([^,]+)(, )?){1,5})\)$')
2025-10-31T05:25:40.2130118Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:90: SyntaxWarning: invalid escape sequence '\*'
2025-10-31T05:25:40.2131113Z p = re.compile(' \* ?((.+) \**\w+\((((const )?(struct )?(\w+|\.\.\.)( \**\w+)?)(, )?){1,5}\))$')
2025-10-31T05:25:40.2132617Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:98: SyntaxWarning: invalid escape sequence '\*'
2025-10-31T05:25:40.2133818Z p = re.compile(' \* ?(?:\t| {5,8})Description$')
2025-10-31T05:25:40.2134767Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:112: SyntaxWarning: invalid escape sequence '\*'
2025-10-31T05:25:40.2135640Z p = re.compile(' \* ?(?:\t| {5,8})(?:\t| {8})(.*)')
2025-10-31T05:25:40.2136530Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:121: SyntaxWarning: invalid escape sequence '\*'
2025-10-31T05:25:40.2137412Z p = re.compile(' \* ?(?:\t| {5,8})Return$')
2025-10-31T05:25:40.2138263Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:135: SyntaxWarning: invalid escape sequence '\*'
2025-10-31T05:25:40.2139124Z p = re.compile(' \* ?(?:\t| {5,8})(?:\t| {8})(.*)')
2025-10-31T05:25:40.2139992Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:290: SyntaxWarning: invalid escape sequence '\ '
2025-10-31T05:25:40.2140963Z license string passed (via **attr**) to the **bpf**\ () system call, and this
2025-10-31T05:25:40.2142077Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:372: SyntaxWarning: invalid escape sequence '\ '
2025-10-31T05:25:40.2142796Z one_arg += ' {}**\ '.format(a['star'].replace('*', '\\*'))
2025-10-31T05:25:45.8821877Z rm -f -f /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libbpf/libbpf.a; ar rcs /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libbpf/libbpf.a /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libbpf/staticobjs/libbpf-in.o
2025-10-31T05:25:45.9789256Z gcc -o /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/fixdep /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/fixdep-in.o
2025-10-31T05:25:47.0437509Z rm -f /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libsubcmd/libsubcmd.a && ar rcs /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libsubcmd/libsubcmd.a /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libsubcmd/libsubcmd-in.o
2025-10-31T05:25:47.3634072Z ==> rewrite configuration
2025-10-31T05:25:48.9793322Z yes: standard output: Broken pipe
2025-10-31T05:25:48.9856864Z ==> Starting build()...
2025-10-31T05:25:48.9857593Z ==> build
2025-10-31T05:25:52.0413800Z DESCEND objtool
2025-10-31T05:25:52.1075888Z DESCEND bpf/resolve_btfids
2025-10-31T05:25:52.2271205Z CALL scripts/atomic/check-atomics.sh
2025-10-31T05:25:52.2394894Z CALL scripts/checksyscalls.sh
2025-10-31T05:25:52.3404999Z CHK include/generated/compile.h
2025-10-31T05:25:52.3432706Z CC init/main.o
2025-10-31T05:25:52.3443994Z CC init/do_mounts.o
2025-10-31T05:25:52.3524870Z CC init/do_mounts_initrd.o
2025-10-31T05:25:52.3830568Z UPD include/generated/compile.h
2025-10-31T05:25:52.3948721Z CC init/initramfs.o
2025-10-31T05:25:52.4830966Z HOSTCC usr/gen_init_cpio
2025-10-31T05:25:52.8650935Z GEN usr/initramfs_data.cpio
2025-10-31T05:25:52.9058367Z SHIPPED usr/initramfs_inc_data
2025-10-31T05:25:52.9201456Z AS usr/initramfs_data.o
2025-10-31T05:25:53.0051865Z AR usr/built-in.a
2025-10-31T05:25:53.1804296Z CC init/calibrate.o
2025-10-31T05:25:53.3593610Z CC arch/x86/entry/vdso/vma.o
2025-10-31T05:25:53.5586127Z CC arch/x86/events/amd/core.o
2025-10-31T05:25:53.6600355Z CC arch/x86/events/intel/core.o
2025-10-31T05:25:53.7590530Z CC kernel/sched/core.o
2025-10-31T05:25:53.8953906Z CC init/init_task.o
2025-10-31T05:25:54.4062492Z CC arch/x86/entry/vdso/vdso32-setup.o
2025-10-31T05:25:54.5266270Z CC arch/x86/events/amd/uncore.o
2025-10-31T05:25:54.7032127Z CC init/version.o
2025-10-31T05:25:54.7951229Z LDS arch/x86/entry/vdso/vdso.lds
2025-10-31T05:25:54.8512316Z AS arch/x86/entry/vdso/vdso-note.o
2025-10-31T05:25:54.9299909Z CC arch/x86/entry/vdso/vclock_gettime.o
2025-10-31T05:25:55.0713011Z AR init/built-in.a
2025-10-31T05:25:55.1226027Z CC kernel/locking/mutex.o
2025-10-31T05:25:55.5946142Z CC arch/x86/entry/vdso/vgetcpu.o
2025-10-31T05:25:55.6274522Z CC arch/x86/events/amd/ibs.o
2025-10-31T05:25:56.0317974Z HOSTCC arch/x86/entry/vdso/vdso2c
2025-10-31T05:25:56.1383061Z CC kernel/locking/semaphore.o
2025-10-31T05:25:56.1723841Z CC arch/x86/events/intel/bts.o
2025-10-31T05:25:56.5118278Z LDS arch/x86/entry/vdso/vdso32/vdso32.lds
2025-10-31T05:25:56.5395849Z AS arch/x86/entry/vdso/vdso32/note.o
2025-10-31T05:25:56.5788132Z AS arch/x86/entry/vdso/vdso32/system_call.o
2025-10-31T05:25:56.6200890Z AS arch/x86/entry/vdso/vdso32/sigreturn.o
2025-10-31T05:25:56.6590261Z CC arch/x86/entry/vdso/vdso32/vclock_gettime.o
2025-10-31T05:25:56.8638841Z CC kernel/locking/rwsem.o
2025-10-31T05:25:56.9280917Z CC arch/x86/events/amd/iommu.o
2025-10-31T05:25:57.2870180Z CC arch/x86/events/intel/ds.o
2025-10-31T05:25:57.4662473Z VDSO arch/x86/entry/vdso/vdso64.so.dbg
2025-10-31T05:25:57.5470111Z VDSO arch/x86/entry/vdso/vdso32.so.dbg
2025-10-31T05:25:57.6171560Z OBJCOPY arch/x86/entry/vdso/vdso64.so
2025-10-31T05:25:57.6297962Z OBJCOPY arch/x86/entry/vdso/vdso32.so
2025-10-31T05:25:57.6511125Z VDSO2C arch/x86/entry/vdso/vdso-image-64.c
2025-10-31T05:25:57.6661148Z VDSO2C arch/x86/entry/vdso/vdso-image-32.c
2025-10-31T05:25:57.6789145Z CC arch/x86/entry/vdso/vdso-image-64.o
2025-10-31T05:25:57.7626462Z CC kernel/locking/percpu-rwsem.o
2025-10-31T05:25:57.8547687Z CC [M] arch/x86/events/amd/power.o
2025-10-31T05:25:58.0203957Z CC arch/x86/entry/vdso/vdso-image-32.o
2025-10-31T05:25:58.1668904Z CC kernel/locking/spinlock.o
2025-10-31T05:25:58.3462912Z AR arch/x86/entry/vdso/built-in.a
2025-10-31T05:25:58.3976026Z CC arch/x86/entry/vsyscall/vsyscall_64.o
2025-10-31T05:25:58.5568839Z CC kernel/locking/osq_lock.o
2025-10-31T05:25:58.6451706Z AR arch/x86/events/amd/built-in.a
2025-10-31T05:25:58.7006951Z CC kernel/locking/qspinlock.o
2025-10-31T05:25:59.0516255Z AS arch/x86/entry/vsyscall/vsyscall_emu_64.o
2025-10-31T05:25:59.2571386Z CC arch/x86/events/intel/knc.o
2025-10-31T05:25:59.3199574Z CC certs/system_keyring.o
2025-10-31T05:25:59.5015490Z CC kernel/locking/rtmutex.o
2025-10-31T05:25:59.5703436Z CC kernel/sched/loadavg.o
2025-10-31T05:25:59.5731884Z AR arch/x86/entry/vsyscall/built-in.a
2025-10-31T05:25:59.5918782Z AS arch/x86/entry/entry.o
2025-10-31T05:25:59.6957513Z AS arch/x86/entry/entry_64.o
2025-10-31T05:25:59.7204871Z EXTRACT_CERTS
2025-10-31T05:25:59.7290174Z Generating X.509 key generation config
2025-10-31T05:25:59.8806569Z CC arch/x86/entry/syscall_64.o
2025-10-31T05:25:59.8809852Z CC certs/common.o
2025-10-31T05:26:00.1209646Z CC certs/blacklist.o
2025-10-31T05:26:00.2030386Z CC arch/x86/events/intel/lbr.o
2025-10-31T05:26:00.3513530Z CC kernel/locking/qrwlock.o
2025-10-31T05:26:00.4893563Z CC arch/x86/entry/common.o
2025-10-31T05:26:00.5832243Z CC kernel/locking/lock_events.o
2025-10-31T05:26:00.8071533Z CC kernel/sched/clock.o
2025-10-31T05:26:00.8183431Z EXTRACT_CERTS
2025-10-31T05:26:00.8367335Z CC certs/blacklist_nohashes.o
2025-10-31T05:26:01.1837147Z ###
2025-10-31T05:26:01.1865964Z AR kernel/locking/built-in.a
2025-10-31T05:26:01.1884431Z ### Now generating an X.509 key pair to be used for signing modules.
2025-10-31T05:26:01.2017767Z AS certs/revocation_certificates.o
2025-10-31T05:26:01.2023836Z ###
2025-10-31T05:26:01.2111588Z ### If this takes a long time, you might wish to run rngd in the
2025-10-31T05:26:01.2175031Z ### background to keep the supply of entropy topped up. It
2025-10-31T05:26:01.2267230Z ### needs to be run as root, and uses a hardware random
2025-10-31T05:26:01.2341008Z ### number generator if one is available.
2025-10-31T05:26:01.2431062Z ###
2025-10-31T05:26:01.3150268Z ..+.+..+......+.+..............+....+..+.+........+++++++++++++++++++++++++++++++++++++++++++++*......+.....+....+...+........+....+........+............+.+.........+.....+......+...+....+..+..........+...+..+++++++++++++++++++++++++++++++++++++++++++++*...+......+...+...............+.+.........+...........+.......+.........+ CC kernel/power/qos.o
2025-10-31T05:26:01.5499148Z .....+.+........+.+........+......+.+...+..+................+..+..........+.....+................+...........+................+..+.+..+.........................+.....+.........+...+...+.......+..+..........+.............................+.+.....+.........+.........+...+.......+...+.....+...+....+...+.....+....+.........+............+...............+..+.......+.........+..+....+........+...+..................................+.....+......+.......+...+...+..+...+.+.....................+.....+.......+ AS arch/x86/entry/thunk_64.o
2025-10-31T05:26:01.6479582Z ...+..+..........+..+...............+..................+.......+...+...............+.....+.+...........+.............+...+.........+ AS arch/x86/entry/entry_64_compat.o
2025-10-31T05:26:01.8075609Z .........+..+..........+..+..........+...............+...........+...............+.+.....+.+.....+............+...+.......+..+.........+......+...+...+.............+......+...............+.........+.................+....+......+........+............+...+....+..+....+.........+...........+................+...+.....................+..+.........+...+......+.+...+..+......+...+.........+ CC arch/x86/entry/syscall_32.o
2025-10-31T05:26:01.8674914Z .+.....................+......+.........+......+..+.............+.................+...+....+.....+....+..............+..........+..+++++
2025-10-31T05:26:01.8824593Z ....+.+++++++++++++++++++++++++++++++++++++++++++++*.+..................+++++++++++++++++++++++++++++++++++++++++++++*.....................+.....+.............+..+ CC arch/x86/events/intel/p4.o
2025-10-31T05:26:01.9380188Z .........+....+.....+..........+......+.....+....+......+..+............+.............+..+.......+......+........+.......+ CC kernel/sched/cputime.o
2025-10-31T05:26:02.0693000Z ...............+...+..+....+...+..+...+...+....+...............+.....................+...+.........+........+.........+....+...........+.+.....+.............+.....+....+......+..............................+.....+.+........+...+....+...........+...+....+........+.............+++++
2025-10-31T05:26:02.0947826Z -----
2025-10-31T05:26:02.1091609Z ###
2025-10-31T05:26:02.1128591Z ### Key pair generated.
2025-10-31T05:26:02.1163339Z ###
2025-10-31T05:26:02.1215643Z EXTRACT_CERTS certs/signing_key.pem
2025-10-31T05:26:02.1312422Z AS certs/system_certificates.o
2025-10-31T05:26:02.1753163Z AR certs/built-in.a
2025-10-31T05:26:02.2029134Z CC arch/x86/events/zhaoxin/core.o
2025-10-31T05:26:02.4750093Z CC kernel/power/main.o
2025-10-31T05:26:02.5300127Z AR arch/x86/entry/built-in.a
2025-10-31T05:26:02.5596159Z CC arch/x86/events/intel/p6.o
2025-10-31T05:26:03.0688453Z CC kernel/sched/idle.o
2025-10-31T05:26:03.1048752Z AR arch/x86/events/zhaoxin/built-in.a
2025-10-31T05:26:03.1249915Z CC kernel/power/console.o
2025-10-31T05:26:03.2944644Z CC arch/x86/events/intel/pt.o
2025-10-31T05:26:03.3352379Z CC kernel/printk/printk.o
2025-10-31T05:26:03.7491422Z CC kernel/irq/irqdesc.o
2025-10-31T05:26:04.0211244Z CC kernel/power/process.o
2025-10-31T05:26:04.5659136Z CC kernel/sched/fair.o
2025-10-31T05:26:04.6439943Z CC kernel/irq/handle.o
2025-10-31T05:26:04.7828560Z CC [M] arch/x86/events/intel/uncore.o
2025-10-31T05:26:05.1686332Z CC kernel/power/suspend.o
2025-10-31T05:26:05.2354407Z CC kernel/irq/manage.o
2025-10-31T05:26:05.5163990Z CC kernel/printk/printk_safe.o
2025-10-31T05:26:06.2395377Z CC kernel/power/hibernate.o
2025-10-31T05:26:06.3897691Z CC kernel/printk/braille.o
2025-10-31T05:26:06.5488469Z CC kernel/printk/printk_ringbuffer.o
2025-10-31T05:26:06.6191571Z CC [M] arch/x86/events/intel/uncore_nhmex.o
2025-10-31T05:26:06.7076536Z CC kernel/irq/spurious.o
2025-10-31T05:26:07.3061142Z AR kernel/printk/built-in.a
2025-10-31T05:26:07.3098977Z CC kernel/irq/resend.o
2025-10-31T05:26:07.4308528Z CC mm/filemap.o
2025-10-31T05:26:07.7304509Z CC kernel/power/snapshot.o
2025-10-31T05:26:07.7637175Z CC kernel/irq/chip.o
2025-10-31T05:26:08.1243914Z CC [M] arch/x86/events/intel/uncore_snb.o
2025-10-31T05:26:08.9679472Z CC kernel/irq/dummychip.o
2025-10-31T05:26:09.2078344Z CC [M] arch/x86/events/intel/uncore_snbep.o
2025-10-31T05:26:09.5693786Z CC kernel/irq/devres.o
2025-10-31T05:26:09.6911285Z CC kernel/power/swap.o
2025-10-31T05:26:10.1512691Z CC kernel/irq/generic-chip.o
2025-10-31T05:26:11.1429342Z CC mm/mempool.o
2025-10-31T05:26:11.1856589Z CC [M] arch/x86/events/intel/cstate.o
2025-10-31T05:26:11.1882579Z CC kernel/irq/autoprobe.o
2025-10-31T05:26:11.2001527Z CC kernel/power/user.o
2025-10-31T05:26:11.5048828Z CC kernel/sched/rt.o
2025-10-31T05:26:11.8275417Z CC kernel/irq/irqdomain.o
2025-10-31T05:26:12.0877388Z CC mm/oom_kill.o
2025-10-31T05:26:12.0878296Z CC kernel/power/poweroff.o
2025-10-31T05:26:12.0951904Z LD [M] arch/x86/events/intel/intel-uncore.o
2025-10-31T05:26:12.1190306Z LD [M] arch/x86/events/intel/intel-cstate.o
2025-10-31T05:26:12.1317458Z AR arch/x86/events/intel/built-in.a
2025-10-31T05:26:12.1639937Z CC arch/x86/events/core.o
2025-10-31T05:26:12.4258311Z CC kernel/power/energy_model.o
2025-10-31T05:26:13.1849438Z CC kernel/irq/irq_sim.o
2025-10-31T05:26:13.1884165Z AR kernel/power/built-in.a
2025-10-31T05:26:13.3405637Z CC fs/notify/dnotify/dnotify.o
2025-10-31T05:26:13.6593649Z CC kernel/sched/deadline.o
2025-10-31T05:26:13.7343723Z CC kernel/irq/proc.o
2025-10-31T05:26:13.9882975Z CC mm/fadvise.o
2025-10-31T05:26:14.4295460Z CC arch/x86/events/probe.o
2025-10-31T05:26:14.4306598Z AR fs/notify/dnotify/built-in.a
2025-10-31T05:26:14.4594384Z CC fs/notify/inotify/inotify_fsnotify.o
2025-10-31T05:26:14.6826269Z CC kernel/irq/migration.o
2025-10-31T05:26:14.8691386Z CC mm/maccess.o
2025-10-31T05:26:14.9044051Z CC arch/x86/events/msr.o
2025-10-31T05:26:15.1153608Z CC fs/notify/inotify/inotify_user.o
2025-10-31T05:26:15.2100990Z CC kernel/irq/cpuhotplug.o
2025-10-31T05:26:15.4558584Z CC mm/page-writeback.o
2025-10-31T05:26:15.7256498Z CC [M] arch/x86/events/rapl.o
2025-10-31T05:26:15.9075706Z CC kernel/irq/pm.o
2025-10-31T05:26:16.2053737Z CC kernel/sched/wait.o
2025-10-31T05:26:16.5660429Z AR fs/notify/inotify/built-in.a
2025-10-31T05:26:16.6187316Z CC fs/notify/fanotify/fanotify.o
2025-10-31T05:26:16.7142696Z AR arch/x86/events/built-in.a
2025-10-31T05:26:16.7824293Z CC arch/x86/xen/enlighten.o
2025-10-31T05:26:16.7963660Z CC kernel/irq/msi.o
2025-10-31T05:26:17.4718501Z CC kernel/sched/wait_bit.o
2025-10-31T05:26:17.6955108Z CC kernel/irq/affinity.o
2025-10-31T05:26:17.8031682Z CC arch/x86/xen/mmu.o
2025-10-31T05:26:17.9961247Z CC mm/readahead.o
2025-10-31T05:26:18.0241809Z CC fs/notify/fanotify/fanotify_user.o
2025-10-31T05:26:18.3724933Z CC kernel/irq/matrix.o
2025-10-31T05:26:18.6844018Z CC arch/x86/xen/time.o
2025-10-31T05:26:18.8115156Z CC kernel/sched/swait.o
2025-10-31T05:26:19.2063211Z CC mm/swap.o
2025-10-31T05:26:19.7024124Z AR kernel/irq/built-in.a
2025-10-31T05:26:19.7318970Z CC arch/x86/xen/grant-table.o
2025-10-31T05:26:19.7410602Z CC arch/x86/xen/suspend.o
2025-10-31T05:26:20.0214484Z AR fs/notify/fanotify/built-in.a
2025-10-31T05:26:20.0343858Z CC fs/notify/fsnotify.o
2025-10-31T05:26:20.1129652Z CC kernel/sched/completion.o
2025-10-31T05:26:20.6033691Z CC kernel/sched/cpupri.o
2025-10-31T05:26:20.6154614Z CC arch/x86/xen/enlighten_hvm.o
2025-10-31T05:26:20.9675318Z CC fs/notify/notification.o
2025-10-31T05:26:21.6159287Z CC fs/notify/group.o
2025-10-31T05:26:21.6165536Z CC arch/x86/xen/mmu_hvm.o
2025-10-31T05:26:21.6709419Z CC fs/crypto/crypto.o
2025-10-31T05:26:21.7210551Z CC mm/truncate.o
2025-10-31T05:26:22.0977109Z CC kernel/sched/cpudeadline.o
2025-10-31T05:26:22.4357078Z CC arch/x86/xen/suspend_hvm.o
2025-10-31T05:26:22.5005947Z CC fs/notify/mark.o
2025-10-31T05:26:22.6340163Z CC fs/crypto/fname.o
2025-10-31T05:26:23.0730362Z CC arch/x86/xen/platform-pci-unplug.o
2025-10-31T05:26:23.2709836Z CC mm/vmscan.o
2025-10-31T05:26:23.3369237Z CC kernel/sched/topology.o
2025-10-31T05:26:23.6304319Z CC fs/crypto/hkdf.o
2025-10-31T05:26:23.6766761Z CC arch/x86/xen/setup.o
2025-10-31T05:26:23.8324957Z CC fs/notify/fdinfo.o
2025-10-31T05:26:24.4050683Z CC fs/crypto/hooks.o
2025-10-31T05:26:24.6472728Z AR fs/notify/built-in.a
2025-10-31T05:26:24.6738599Z CC arch/x86/xen/apic.o
2025-10-31T05:26:24.9905831Z CC mm/shmem.o
2025-10-31T05:26:25.3448918Z CC fs/crypto/keyring.o
2025-10-31T05:26:25.5163618Z CC arch/x86/xen/pmu.o
2025-10-31T05:26:25.9593538Z CC kernel/sched/stop_task.o
2025-10-31T05:26:26.6178910Z CC fs/crypto/keysetup.o
2025-10-31T05:26:26.6806021Z CC arch/x86/xen/suspend_pv.o
2025-10-31T05:26:27.2648450Z CC kernel/sched/pelt.o
2025-10-31T05:26:27.4947952Z CC arch/x86/xen/p2m.o
2025-10-31T05:26:27.5801916Z CC fs/crypto/keysetup_v1.o
2025-10-31T05:26:27.8234156Z CC fs/verity/enable.o
2025-10-31T05:26:28.4032361Z CC fs/crypto/policy.o
2025-10-31T05:26:28.7340857Z CC mm/util.o
2025-10-31T05:26:28.8151438Z CC arch/x86/xen/enlighten_pv.o
2025-10-31T05:26:28.9067995Z CC kernel/sched/autogroup.o
2025-10-31T05:26:29.1544841Z CC fs/verity/hash_algs.o
2025-10-31T05:26:29.5205221Z CC fs/crypto/bio.o
2025-10-31T05:26:30.0105537Z CC mm/mmzone.o
2025-10-31T05:26:30.1704103Z CC fs/verity/init.o
2025-10-31T05:26:30.3602278Z CC kernel/sched/stats.o
2025-10-31T05:26:30.4318124Z CC fs/crypto/inline_crypt.o
2025-10-31T05:26:30.5396031Z CC arch/x86/xen/mmu_pv.o
2025-10-31T05:26:30.6201101Z CC mm/vmstat.o
2025-10-31T05:26:30.6919569Z CC fs/verity/measure.o
2025-10-31T05:26:31.3038662Z CC fs/verity/open.o
2025-10-31T05:26:31.3398841Z AR fs/crypto/built-in.a
2025-10-31T05:26:31.3940867Z CC fs/nfs_common/nfs_ssc.o
2025-10-31T05:26:31.5271024Z CC kernel/sched/debug.o
2025-10-31T05:26:31.9817332Z CC fs/verity/verify.o
2025-10-31T05:26:32.3947590Z CC mm/backing-dev.o
2025-10-31T05:26:32.5640551Z CC [M] fs/nfs_common/nfsacl.o
2025-10-31T05:26:33.0290500Z CC fs/verity/signature.o
2025-10-31T05:26:33.2122145Z CC [M] fs/nfs_common/grace.o
2025-10-31T05:26:33.6919291Z AR fs/verity/built-in.a
2025-10-31T05:26:33.8098069Z CC mm/mm_init.o
2025-10-31T05:26:33.8333568Z CC ipc/compat.o
2025-10-31T05:26:33.9311554Z CC arch/x86/xen/irq.o
2025-10-31T05:26:34.0118433Z LD [M] fs/nfs_common/nfs_acl.o
2025-10-31T05:26:34.0341739Z AR fs/nfs_common/built-in.a
2025-10-31T05:26:34.0817548Z CC kernel/sched/cpuacct.o
2025-10-31T05:26:34.1207981Z CC fs/iomap/trace.o
2025-10-31T05:26:34.4537080Z CC mm/percpu.o
2025-10-31T05:26:34.6220559Z CC ipc/util.o
2025-10-31T05:26:34.7861238Z CC arch/x86/xen/multicalls.o
2025-10-31T05:26:35.2694799Z CC fs/iomap/apply.o
2025-10-31T05:26:35.3680652Z CC kernel/sched/cpufreq.o
2025-10-31T05:26:35.7768215Z AS arch/x86/xen/xen-asm.o
2025-10-31T05:26:35.8751034Z CC ipc/msgutil.o
2025-10-31T05:26:35.8840970Z CC arch/x86/xen/enlighten_pvh.o
2025-10-31T05:26:36.2497974Z CC fs/iomap/buffered-io.o
2025-10-31T05:26:36.4818008Z CC kernel/sched/cpufreq_schedutil.o
2025-10-31T05:26:36.5654786Z CC ipc/msg.o
2025-10-31T05:26:36.6080481Z CC arch/x86/xen/trace.o
2025-10-31T05:26:37.2295398Z CC mm/slab_common.o
2025-10-31T05:26:38.0779498Z CC ipc/sem.o
2025-10-31T05:26:38.2165547Z CC kernel/sched/membarrier.o
2025-10-31T05:26:38.4022546Z CC arch/x86/xen/smp.o
2025-10-31T05:26:38.6646407Z CC fs/iomap/direct-io.o
2025-10-31T05:26:39.2244209Z CC mm/compaction.o
2025-10-31T05:26:39.2781115Z CC arch/x86/xen/smp_pv.o
2025-10-31T05:26:39.6264575Z CC kernel/sched/isolation.o
2025-10-31T05:26:39.7926452Z CC fs/iomap/fiemap.o
2025-10-31T05:26:40.5668181Z CC fs/iomap/seek.o
2025-10-31T05:26:40.6304745Z CC arch/x86/xen/smp_hvm.o
2025-10-31T05:26:40.9076282Z CC kernel/sched/psi.o
2025-10-31T05:26:40.9111289Z CC ipc/shm.o
2025-10-31T05:26:41.2455168Z CC fs/iomap/swapfile.o
2025-10-31T05:26:41.4187935Z CC arch/x86/xen/spinlock.o
2025-10-31T05:26:42.0136230Z AR fs/iomap/built-in.a
2025-10-31T05:26:42.0629130Z CC fs/quota/dquot.o
2025-10-31T05:26:42.4567424Z CC arch/x86/xen/vga.o
2025-10-31T05:26:42.5417078Z CC mm/vmacache.o
2025-10-31T05:26:42.7091285Z CC ipc/syscall.o
2025-10-31T05:26:42.9896099Z CC arch/x86/xen/pci-swiotlb-xen.o
2025-10-31T05:26:43.3075285Z CC mm/interval_tree.o
2025-10-31T05:26:43.4582739Z CC ipc/ipc_sysctl.o
2025-10-31T05:26:43.6683697Z AR kernel/sched/built-in.a
2025-10-31T05:26:43.7313555Z CC kernel/rcu/update.o
2025-10-31T05:26:43.8280305Z CC arch/x86/xen/efi.o
2025-10-31T05:26:44.3412850Z CC ipc/mqueue.o
2025-10-31T05:26:44.4931472Z AR arch/x86/xen/built-in.a
2025-10-31T05:26:44.5220121Z CC arch/x86/platform/pvh/enlighten.o
2025-10-31T05:26:44.7222574Z CC fs/quota/quota.o
2025-10-31T05:26:44.7697254Z CC mm/list_lru.o
2025-10-31T05:26:45.1565592Z AS arch/x86/platform/pvh/head.o
2025-10-31T05:26:45.2840840Z AR arch/x86/platform/pvh/built-in.a
2025-10-31T05:26:45.3315015Z CC arch/x86/hyperv/hv_init.o
2025-10-31T05:26:45.8906360Z CC kernel/rcu/sync.o
2025-10-31T05:26:46.0483719Z CC mm/workingset.o
2025-10-31T05:26:46.2387292Z CC kernel/rcu/srcutree.o
2025-10-31T05:26:46.4183908Z CC fs/quota/kqid.o
2025-10-31T05:26:46.6502230Z CC arch/x86/hyperv/mmu.o
2025-10-31T05:26:46.8097539Z CC ipc/namespace.o
2025-10-31T05:26:46.8793545Z CC fs/quota/netlink.o
2025-10-31T05:26:47.1953554Z CC kernel/rcu/tree.o
2025-10-31T05:26:47.1963787Z CC mm/debug.o
2025-10-31T05:26:47.5033434Z CC ipc/mq_sysctl.o
2025-10-31T05:26:47.6483245Z CC [M] fs/quota/quota_v1.o
2025-10-31T05:26:47.9229127Z AR ipc/built-in.a
2025-10-31T05:26:47.9482203Z CC kernel/rcu/rcu_segcblist.o
2025-10-31T05:26:48.1055987Z CC mm/gup.o
2025-10-31T05:26:48.1238876Z CC arch/x86/hyperv/nested.o
2025-10-31T05:26:48.3353442Z CC [M] fs/quota/quota_v2.o
2025-10-31T05:26:48.4570913Z CC mm/highmem.o
2025-10-31T05:26:48.9553799Z CC arch/x86/hyperv/hv_apic.o
2025-10-31T05:26:49.0990368Z CC [M] fs/quota/quota_tree.o
2025-10-31T05:26:49.1850064Z AR fs/quota/built-in.a
2025-10-31T05:26:49.2125794Z CC mm/memory.o
2025-10-31T05:26:49.8078880Z CC arch/x86/hyperv/hv_spinlock.o
2025-10-31T05:26:50.2341075Z AR arch/x86/hyperv/built-in.a
2025-10-31T05:26:50.2755991Z CC arch/x86/realmode/init.o
2025-10-31T05:26:50.3024353Z CC fs/proc/task_mmu.o
2025-10-31T05:26:50.7399976Z AR kernel/rcu/built-in.a
2025-10-31T05:26:50.7652927Z AR kernel/livepatch/built-in.a
2025-10-31T05:26:50.8017408Z CC kernel/dma/mapping.o
2025-10-31T05:26:51.1397556Z AS arch/x86/realmode/rm/header.o
2025-10-31T05:26:51.2146000Z AS arch/x86/realmode/rm/trampoline_64.o
2025-10-31T05:26:51.2752532Z CC fs/kernfs/mount.o
2025-10-31T05:26:51.3003250Z AS arch/x86/realmode/rm/stack.o
2025-10-31T05:26:51.3803265Z AS arch/x86/realmode/rm/reboot.o
2025-10-31T05:26:51.4692721Z AS arch/x86/realmode/rm/wakeup_asm.o
2025-10-31T05:26:51.5632686Z CC arch/x86/realmode/rm/wakemain.o
2025-10-31T05:26:51.7434711Z CC arch/x86/realmode/rm/video-mode.o
2025-10-31T05:26:51.7898459Z CC kernel/dma/direct.o
2025-10-31T05:26:51.9430912Z AS arch/x86/realmode/rm/copy.o
2025-10-31T05:26:52.0087823Z AS arch/x86/realmode/rm/bioscall.o
2025-10-31T05:26:52.0681693Z CC arch/x86/realmode/rm/regs.o
2025-10-31T05:26:52.0862587Z CC fs/kernfs/inode.o
2025-10-31T05:26:52.2253581Z CC arch/x86/realmode/rm/video-vga.o
2025-10-31T05:26:52.2651758Z CC fs/proc/inode.o
2025-10-31T05:26:52.3958001Z CC arch/x86/realmode/rm/video-vesa.o
2025-10-31T05:26:52.5923701Z CC arch/x86/realmode/rm/video-bios.o
2025-10-31T05:26:52.8077801Z PASYMS arch/x86/realmode/rm/pasyms.h
2025-10-31T05:26:52.8386590Z LDS arch/x86/realmode/rm/realmode.lds
2025-10-31T05:26:52.8865955Z LD arch/x86/realmode/rm/realmode.elf
2025-10-31T05:26:52.9047077Z RELOCS arch/x86/realmode/rm/realmode.relocs
2025-10-31T05:26:52.9108579Z OBJCOPY arch/x86/realmode/rm/realmode.bin
2025-10-31T05:26:52.9279440Z CC kernel/dma/ops_helpers.o
2025-10-31T05:26:52.9365297Z AS arch/x86/realmode/rmpiggy.o
2025-10-31T05:26:52.9816311Z AR arch/x86/realmode/built-in.a
2025-10-31T05:26:52.9963095Z CC fs/kernfs/dir.o
2025-10-31T05:26:53.0520592Z CC arch/x86/kernel/fpu/init.o
2025-10-31T05:26:53.3027714Z CC fs/proc/root.o
2025-10-31T05:26:53.5862159Z CC kernel/dma/dummy.o
2025-10-31T05:26:53.8739060Z CC arch/x86/kernel/fpu/bugs.o
2025-10-31T05:26:54.1037406Z CC fs/proc/base.o
2025-10-31T05:26:54.1777236Z CC kernel/dma/contiguous.o
2025-10-31T05:26:54.4320093Z CC fs/kernfs/file.o
2025-10-31T05:26:54.4581895Z CC arch/x86/kernel/fpu/core.o
2025-10-31T05:26:54.5396660Z CC mm/mincore.o
2025-10-31T05:26:54.8460394Z CC kernel/dma/swiotlb.o
2025-10-31T05:26:55.4284277Z CC fs/kernfs/symlink.o
2025-10-31T05:26:55.5888748Z CC mm/mlock.o
2025-10-31T05:26:55.9865075Z CC arch/x86/kernel/fpu/regset.o
2025-10-31T05:26:56.0905112Z AR fs/kernfs/built-in.a
2025-10-31T05:26:56.3833611Z CC [M] security/keys/trusted-keys/trusted_tpm1.o
2025-10-31T05:26:56.4121235Z CC kernel/dma/pool.o
2025-10-31T05:26:56.6429712Z CC fs/proc/generic.o
2025-10-31T05:26:56.8671440Z CC arch/x86/kernel/fpu/signal.o
2025-10-31T05:26:56.9551650Z CC mm/mmap.o
2025-10-31T05:26:57.4290686Z AR kernel/dma/built-in.a
2025-10-31T05:26:57.4884023Z CC kernel/entry/common.o
2025-10-31T05:26:57.6923709Z CC fs/proc/array.o
2025-10-31T05:26:57.7973318Z CC [M] security/keys/trusted-keys/trusted_tpm2.o
2025-10-31T05:26:57.9875092Z CC arch/x86/kernel/fpu/xstate.o
2025-10-31T05:26:58.7440060Z CC kernel/entry/kvm.o
2025-10-31T05:26:58.8788895Z LD [M] security/keys/trusted-keys/trusted.o
2025-10-31T05:26:58.9078906Z CC fs/proc/fd.o
2025-10-31T05:26:58.9713076Z CC [M] security/keys/encrypted-keys/encrypted.o
2025-10-31T05:26:59.3913287Z AR arch/x86/kernel/fpu/built-in.a
2025-10-31T05:26:59.4796031Z CC arch/x86/kernel/cpu/mce/core.o
2025-10-31T05:26:59.6190566Z AR kernel/entry/built-in.a
2025-10-31T05:26:59.6439908Z CC kernel/time/time.o
2025-10-31T05:26:59.6488017Z CC mm/mmu_gather.o
2025-10-31T05:26:59.7017568Z CC fs/proc/proc_tty.o
2025-10-31T05:27:00.3752507Z CC [M] security/keys/encrypted-keys/ecryptfs_format.o
2025-10-31T05:27:00.3904584Z CC fs/proc/cmdline.o
2025-10-31T05:27:00.4724033Z CC [M] security/keys/encrypted-keys/masterkey_trusted.o
2025-10-31T05:27:00.5555899Z CC mm/mprotect.o
2025-10-31T05:27:00.7375847Z CC kernel/time/timer.o
2025-10-31T05:27:00.8792998Z CC fs/proc/consoles.o
2025-10-31T05:27:01.1361558Z LD [M] security/keys/encrypted-keys/encrypted-keys.o
2025-10-31T05:27:01.1946634Z CC security/keys/gc.o
2025-10-31T05:27:01.4269691Z CC fs/proc/cpuinfo.o
2025-10-31T05:27:01.7030061Z CC arch/x86/kernel/cpu/mce/severity.o
2025-10-31T05:27:01.8706931Z CC fs/proc/devices.o
2025-10-31T05:27:02.0306357Z CC security/keys/key.o
2025-10-31T05:27:02.1471291Z CC mm/mremap.o
2025-10-31T05:27:02.6134943Z CC fs/proc/interrupts.o
2025-10-31T05:27:02.8371172Z CC arch/x86/kernel/cpu/mce/genpool.o
2025-10-31T05:27:03.0493845Z CC kernel/time/hrtimer.o
2025-10-31T05:27:03.0828309Z CC security/keys/keyring.o
2025-10-31T05:27:03.0974764Z CC fs/proc/loadavg.o
2025-10-31T05:27:03.5289609Z CC mm/msync.o
2025-10-31T05:27:03.5591292Z CC arch/x86/kernel/cpu/mce/intel.o
2025-10-31T05:27:03.6964170Z CC fs/proc/meminfo.o
2025-10-31T05:27:04.2738864Z CC arch/x86/kernel/cpu/mce/amd.o
2025-10-31T05:27:04.2841053Z CC mm/page_vma_mapped.o
2025-10-31T05:27:04.5588880Z CC fs/proc/stat.o
2025-10-31T05:27:04.6120786Z CC security/keys/keyctl.o
2025-10-31T05:27:04.6353159Z CC kernel/time/timekeeping.o
2025-10-31T05:27:05.2530665Z CC fs/proc/uptime.o
2025-10-31T05:27:05.5732476Z CC mm/pagewalk.o
2025-10-31T05:27:05.7343277Z CC fs/proc/util.o
2025-10-31T05:27:05.9803579Z CC arch/x86/kernel/cpu/mce/threshold.o
2025-10-31T05:27:06.1251228Z CC fs/proc/version.o
2025-10-31T05:27:06.2124691Z CC kernel/time/ntp.o
2025-10-31T05:27:06.3660746Z CC security/keys/permission.o
2025-10-31T05:27:06.5936388Z CC fs/proc/softirqs.o
2025-10-31T05:27:06.6721455Z CC mm/pgtable-generic.o
2025-10-31T05:27:07.0475226Z CC kernel/time/clocksource.o
2025-10-31T05:27:07.0589628Z CC fs/proc/namespaces.o
2025-10-31T05:27:07.0827563Z CC security/keys/process_keys.o
2025-10-31T05:27:07.0899272Z CC arch/x86/kernel/cpu/mce/therm_throt.o
2025-10-31T05:27:07.7060727Z CC mm/rmap.o
2025-10-31T05:27:07.8069238Z CC fs/proc/self.o
2025-10-31T05:27:08.0763787Z CC kernel/time/jiffies.o
2025-10-31T05:27:08.2917824Z CC security/keys/request_key.o
2025-10-31T05:27:08.3873199Z CC fs/proc/thread_self.o
2025-10-31T05:27:08.4692902Z CC kernel/time/timer_list.o
2025-10-31T05:27:08.6595153Z CC arch/x86/kernel/cpu/mce/apei.o
2025-10-31T05:27:09.0381772Z CC fs/proc/proc_sysctl.o
2025-10-31T05:27:09.2349053Z CC [M] arch/x86/kernel/cpu/mce/inject.o
2025-10-31T05:27:09.2759843Z CC security/keys/request_key_auth.o
2025-10-31T05:27:09.4195412Z CC kernel/time/timeconv.o
2025-10-31T05:27:09.9103083Z CC kernel/time/timecounter.o
2025-10-31T05:27:10.0330066Z CC security/keys/user_defined.o
2025-10-31T05:27:10.0823284Z CC mm/vmalloc.o
2025-10-31T05:27:10.0849725Z CC kernel/time/alarmtimer.o
2025-10-31T05:27:10.1060846Z AR arch/x86/kernel/cpu/mce/built-in.a
2025-10-31T05:27:10.1292967Z LD [M] arch/x86/kernel/cpu/mce/mce-inject.o
2025-10-31T05:27:10.2161493Z CC arch/x86/kernel/cpu/mtrr/mtrr.o
2025-10-31T05:27:10.6441481Z CC fs/proc/proc_net.o
2025-10-31T05:27:10.7618881Z CC security/keys/compat.o
2025-10-31T05:27:11.2160805Z CC arch/x86/kernel/cpu/mtrr/if.o
2025-10-31T05:27:11.4174195Z CC kernel/time/posix-timers.o
2025-10-31T05:27:11.4179081Z CC security/keys/compat_dh.o
2025-10-31T05:27:11.6107266Z CC fs/proc/kcore.o
2025-10-31T05:27:12.0072325Z CC arch/x86/kernel/cpu/mtrr/generic.o
2025-10-31T05:27:12.0515291Z CC security/keys/proc.o
2025-10-31T05:27:12.7776862Z CC security/keys/sysctl.o
2025-10-31T05:27:12.8657897Z CC fs/proc/vmcore.o
2025-10-31T05:27:12.8880301Z CC kernel/time/posix-cpu-timers.o
2025-10-31T05:27:13.0791408Z CC mm/ioremap.o
2025-10-31T05:27:13.1704217Z CC arch/x86/kernel/cpu/mtrr/cleanup.o
2025-10-31T05:27:13.2963644Z CC security/keys/persistent.o
2025-10-31T05:27:13.7474013Z CC mm/process_vm_access.o
2025-10-31T05:27:14.1076540Z CC kernel/time/posix-clock.o
2025-10-31T05:27:14.1533124Z CC security/keys/dh.o
2025-10-31T05:27:14.2331229Z CC fs/proc/kmsg.o
2025-10-31T05:27:14.2727415Z AR arch/x86/kernel/cpu/mtrr/built-in.a
2025-10-31T05:27:14.2999244Z CC arch/x86/kernel/cpu/microcode/core.o
2025-10-31T05:27:14.5044986Z CC mm/page_alloc.o
2025-10-31T05:27:14.8890495Z CC fs/proc/page.o
2025-10-31T05:27:14.9356369Z CC kernel/time/itimer.o
2025-10-31T05:27:15.0302875Z CC security/keys/keyctl_pkey.o
2025-10-31T05:27:15.1986804Z CC arch/x86/kernel/cpu/microcode/intel.o
2025-10-31T05:27:15.7816863Z AR security/keys/built-in.a
2025-10-31T05:27:15.8099077Z GEN security/selinux/flask.h security/selinux/av_permissions.h
2025-10-31T05:27:15.8286305Z CC security/selinux/avc.o
2025-10-31T05:27:15.9214752Z CC kernel/time/clockevents.o
2025-10-31T05:27:15.9964277Z CC fs/proc/bootconfig.o
2025-10-31T05:27:16.3994623Z CC arch/x86/kernel/cpu/microcode/amd.o
2025-10-31T05:27:16.6642375Z AR fs/proc/built-in.a
2025-10-31T05:27:16.7136734Z CC fs/sysfs/file.o
2025-10-31T05:27:16.7477184Z CC kernel/time/tick-common.o
2025-10-31T05:27:17.3900341Z AR arch/x86/kernel/cpu/microcode/built-in.a
2025-10-31T05:27:17.4180591Z CC arch/x86/kernel/cpu/resctrl/core.o
2025-10-31T05:27:17.6807172Z CC fs/sysfs/dir.o
2025-10-31T05:27:17.9008282Z CC security/selinux/hooks.o
2025-10-31T05:27:17.9423746Z CC kernel/time/tick-broadcast.o
2025-10-31T05:27:18.2493950Z CC fs/sysfs/symlink.o
2025-10-31T05:27:18.6383812Z CC arch/x86/kernel/cpu/resctrl/rdtgroup.o
2025-10-31T05:27:18.7196926Z CC kernel/time/tick-broadcast-hrtimer.o
2025-10-31T05:27:18.9993445Z CC fs/sysfs/mount.o
2025-10-31T05:27:19.1209490Z CC kernel/time/tick-oneshot.o
2025-10-31T05:27:19.5675589Z CC kernel/time/tick-sched.o
2025-10-31T05:27:19.9289035Z CC fs/sysfs/group.o
2025-10-31T05:27:20.0433795Z CC mm/shuffle.o
2025-10-31T05:27:20.6563361Z AR fs/sysfs/built-in.a
2025-10-31T05:27:20.6611883Z CC kernel/time/vsyscall.o
2025-10-31T05:27:20.6872184Z CC fs/configfs/inode.o
2025-10-31T05:27:20.8389389Z CC mm/init-mm.o
2025-10-31T05:27:20.8897266Z CC arch/x86/kernel/cpu/resctrl/monitor.o
2025-10-31T05:27:21.0629516Z CC kernel/time/timekeeping_debug.o
2025-10-31T05:27:21.4063810Z CC mm/memblock.o
2025-10-31T05:27:21.6746645Z CC fs/configfs/file.o
2025-10-31T05:27:21.7335965Z CC arch/x86/kernel/cpu/resctrl/ctrlmondata.o
2025-10-31T05:27:22.0541134Z CC kernel/time/namespace.o
2025-10-31T05:27:22.2495105Z CC fs/configfs/dir.o
2025-10-31T05:27:22.4334062Z CC arch/x86/kernel/cpu/resctrl/pseudo_lock.o
2025-10-31T05:27:22.7734907Z CC mm/madvise.o
2025-10-31T05:27:22.9012116Z CC security/selinux/selinuxfs.o
2025-10-31T05:27:23.3280820Z AR kernel/time/built-in.a
2025-10-31T05:27:23.3846988Z CC kernel/futex/core.o
2025-10-31T05:27:23.6683128Z CC fs/configfs/symlink.o
2025-10-31T05:27:23.7935592Z AR arch/x86/kernel/cpu/resctrl/built-in.a
2025-10-31T05:27:23.8065355Z CC arch/x86/kernel/cpu/cacheinfo.o
2025-10-31T05:27:24.2891143Z CC fs/configfs/mount.o
2025-10-31T05:27:24.6930960Z CC mm/page_io.o
2025-10-31T05:27:24.9646024Z CC arch/x86/kernel/cpu/scattered.o
2025-10-31T05:27:25.0253887Z CC fs/configfs/item.o
2025-10-31T05:27:25.4139161Z CC arch/x86/kernel/cpu/topology.o
2025-10-31T05:27:25.4205052Z CC security/selinux/netlink.o
2025-10-31T05:27:25.6287599Z AR fs/configfs/built-in.a
2025-10-31T05:27:25.6431082Z CC mm/swap_state.o
2025-10-31T05:27:25.6631538Z CC fs/devpts/inode.o
2025-10-31T05:27:25.9662536Z AR kernel/futex/built-in.a
2025-10-31T05:27:26.0082596Z CC kernel/cgroup/cgroup.o
2025-10-31T05:27:26.0237405Z CC arch/x86/kernel/cpu/common.o
2025-10-31T05:27:26.0259959Z CC security/selinux/nlmsgtab.o
2025-10-31T05:27:26.3886109Z AR fs/devpts/built-in.a
2025-10-31T05:27:26.4158010Z CC fs/ramfs/inode.o
2025-10-31T05:27:27.1629403Z CC mm/swapfile.o
2025-10-31T05:27:27.2372831Z CC fs/ramfs/file-mmu.o
2025-10-31T05:27:27.2608679Z CC security/selinux/netif.o
2025-10-31T05:27:27.4939252Z CC arch/x86/kernel/cpu/rdrand.o
2025-10-31T05:27:27.7137449Z CC arch/x86/kernel/cpu/match.o
2025-10-31T05:27:27.9494883Z AR fs/ramfs/built-in.a
2025-10-31T05:27:27.9750719Z CC fs/hugetlbfs/inode.o
2025-10-31T05:27:28.2378920Z CC arch/x86/kernel/cpu/bugs.o
2025-10-31T05:27:28.5486956Z CC security/selinux/netnode.o
2025-10-31T05:27:29.4040087Z AR fs/hugetlbfs/built-in.a
2025-10-31T05:27:29.4563863Z CC fs/exportfs/expfs.o
2025-10-31T05:27:30.0573418Z CC security/selinux/netport.o
2025-10-31T05:27:30.0997996Z CC arch/x86/kernel/cpu/aperfmperf.o
2025-10-31T05:27:30.2523782Z AR fs/exportfs/built-in.a
2025-10-31T05:27:30.3048198Z CC fs/nls/nls_base.o
2025-10-31T05:27:30.4909791Z CC mm/swap_slots.o
2025-10-31T05:27:30.6708705Z CC arch/x86/kernel/cpu/cpuid-deps.o
2025-10-31T05:27:30.9903118Z CC fs/nls/nls_cp437.o
2025-10-31T05:27:31.1436294Z CC arch/x86/kernel/cpu/umwait.o
2025-10-31T05:27:31.2157879Z CC security/selinux/status.o
2025-10-31T05:27:31.3076406Z CC kernel/cgroup/rstat.o
2025-10-31T05:27:31.3911578Z CC mm/frontswap.o
2025-10-31T05:27:31.4507208Z CC fs/nls/nls_ascii.o
2025-10-31T05:27:31.8974298Z CC [M] fs/nls/nls_cp737.o
2025-10-31T05:27:32.0567466Z CC kernel/cgroup/namespace.o
2025-10-31T05:27:32.0676662Z CC arch/x86/kernel/cpu/proc.o
2025-10-31T05:27:32.3458009Z CC security/selinux/ss/ebitmap.o
2025-10-31T05:27:32.3760616Z CC mm/zswap.o
2025-10-31T05:27:32.4388092Z CC [M] fs/nls/nls_cp775.o
2025-10-31T05:27:32.7288508Z MKCAP arch/x86/kernel/cpu/capflags.c
2025-10-31T05:27:32.8367424Z CC kernel/cgroup/cgroup-v1.o
2025-10-31T05:27:32.8422440Z CC [M] fs/nls/nls_cp850.o
2025-10-31T05:27:33.2935213Z CC [M] fs/nls/nls_cp852.o
2025-10-31T05:27:33.6624029Z CC security/selinux/ss/hashtab.o
2025-10-31T05:27:33.6811528Z CC mm/dmapool.o
2025-10-31T05:27:33.7189069Z CC [M] fs/nls/nls_cp855.o
2025-10-31T05:27:34.1329481Z CC [M] fs/nls/nls_cp857.o
2025-10-31T05:27:34.1365041Z CC kernel/cgroup/freezer.o
2025-10-31T05:27:34.1903032Z CC security/selinux/ss/symtab.o
2025-10-31T05:27:34.4629058Z CC mm/hugetlb.o
2025-10-31T05:27:34.5272415Z CC [M] fs/nls/nls_cp860.o
2025-10-31T05:27:34.5559536Z CC security/selinux/ss/sidtab.o
2025-10-31T05:27:34.9501108Z CC [M] fs/nls/nls_cp861.o
2025-10-31T05:27:34.9538220Z CC kernel/cgroup/legacy_freezer.o
2025-10-31T05:27:35.3888146Z CC [M] fs/nls/nls_cp862.o
2025-10-31T05:27:35.7844883Z CC kernel/cgroup/pids.o
2025-10-31T05:27:35.8255891Z CC [M] fs/nls/nls_cp863.o
2025-10-31T05:27:36.1418991Z CC security/selinux/ss/avtab.o
2025-10-31T05:27:36.2279756Z CC [M] fs/nls/nls_cp864.o
2025-10-31T05:27:36.5288242Z CC kernel/cgroup/rdma.o
2025-10-31T05:27:36.6609470Z CC [M] fs/nls/nls_cp865.o
2025-10-31T05:27:37.1144692Z CC [M] fs/nls/nls_cp866.o
2025-10-31T05:27:37.3685721Z CC kernel/cgroup/cpuset.o
2025-10-31T05:27:37.4283139Z CC security/selinux/ss/policydb.o
2025-10-31T05:27:37.4933487Z CC [M] fs/nls/nls_cp869.o
2025-10-31T05:27:37.9792253Z CC [M] fs/nls/nls_cp874.o
2025-10-31T05:27:38.4251935Z CC [M] fs/nls/nls_cp932.o
2025-10-31T05:27:38.8038149Z CC mm/mempolicy.o
2025-10-31T05:27:38.8788693Z CC [M] fs/nls/nls_euc-jp.o
2025-10-31T05:27:39.4544971Z CC [M] fs/nls/nls_cp936.o
2025-10-31T05:27:39.5005398Z AR kernel/cgroup/built-in.a
2025-10-31T05:27:39.5387092Z CC kernel/trace/trace_clock.o
2025-10-31T05:27:40.0193463Z CC kernel/trace/ftrace.o
2025-10-31T05:27:40.0278598Z CC [M] fs/nls/nls_cp949.o
2025-10-31T05:27:40.2180380Z CC security/selinux/ss/services.o
2025-10-31T05:27:40.6057340Z CC [M] fs/nls/nls_cp950.o
2025-10-31T05:27:41.1390672Z CC [M] fs/nls/nls_cp1250.o
2025-10-31T05:27:41.1727736Z CC mm/sparse.o
2025-10-31T05:27:41.6041809Z CC [M] fs/nls/nls_cp1251.o
2025-10-31T05:27:42.0867451Z CC [M] fs/nls/nls_iso8859-1.o
2025-10-31T05:27:42.3831730Z CC mm/sparse-vmemmap.o
2025-10-31T05:27:42.5213288Z CC [M] fs/nls/nls_iso8859-2.o
2025-10-31T05:27:42.9122866Z CC [M] fs/nls/nls_iso8859-3.o
2025-10-31T05:27:42.9665530Z CC security/selinux/ss/conditional.o
2025-10-31T05:27:43.2158836Z CC mm/mmu_notifier.o
2025-10-31T05:27:43.3047807Z CC [M] fs/nls/nls_iso8859-4.o
2025-10-31T05:27:43.7617558Z CC [M] fs/nls/nls_iso8859-5.o
2025-10-31T05:27:43.8003791Z CC kernel/trace/ring_buffer.o
2025-10-31T05:27:43.8325634Z CC arch/x86/kernel/cpu/powerflags.o
2025-10-31T05:27:44.1071660Z CC arch/x86/kernel/cpu/feat_ctl.o
2025-10-31T05:27:44.2103938Z CC security/selinux/ss/mls.o
2025-10-31T05:27:44.2659619Z CC mm/ksm.o
2025-10-31T05:27:44.3378031Z CC [M] fs/nls/nls_iso8859-6.o
2025-10-31T05:27:44.6792707Z CC arch/x86/kernel/cpu/intel.o
2025-10-31T05:27:44.8416200Z CC [M] fs/nls/nls_iso8859-7.o
2025-10-31T05:27:45.4368224Z CC [M] fs/nls/nls_cp1255.o
2025-10-31T05:27:45.4666256Z CC security/selinux/ss/context.o
2025-10-31T05:27:45.9494671Z CC arch/x86/kernel/cpu/intel_pconfig.o
2025-10-31T05:27:46.1484740Z CC [M] fs/nls/nls_iso8859-9.o
2025-10-31T05:27:46.2046893Z CC arch/x86/kernel/cpu/tsx.o
2025-10-31T05:27:46.3705177Z CC security/selinux/xfrm.o
2025-10-31T05:27:46.4498713Z CC kernel/trace/trace.o
2025-10-31T05:27:46.5298240Z CC arch/x86/kernel/cpu/intel_epb.o
2025-10-31T05:27:46.7532267Z CC [M] fs/nls/nls_iso8859-13.o
2025-10-31T05:27:46.9989781Z CC arch/x86/kernel/cpu/amd.o
2025-10-31T05:27:47.0141872Z CC mm/page_poison.o
2025-10-31T05:27:47.3324181Z CC [M] fs/nls/nls_iso8859-14.o
2025-10-31T05:27:47.6199623Z CC mm/slub.o
2025-10-31T05:27:47.7631492Z CC security/selinux/netlabel.o
2025-10-31T05:27:47.8390169Z CC [M] fs/nls/nls_iso8859-15.o
2025-10-31T05:27:48.1568711Z CC arch/x86/kernel/cpu/hygon.o
2025-10-31T05:27:48.4053575Z CC [M] fs/nls/nls_koi8-r.o
2025-10-31T05:27:48.8894191Z CC arch/x86/kernel/cpu/centaur.o
2025-10-31T05:27:48.9569110Z CC [M] fs/nls/nls_koi8-u.o
2025-10-31T05:27:49.2575007Z CC security/selinux/ibpkey.o
2025-10-31T05:27:49.3946648Z CC [M] fs/nls/nls_koi8-ru.o
2025-10-31T05:27:49.4731814Z CC arch/x86/kernel/cpu/zhaoxin.o
2025-10-31T05:27:49.8609017Z CC [M] fs/nls/nls_utf8.o
2025-10-31T05:27:49.9978091Z CC arch/x86/kernel/cpu/perfctr-watchdog.o
2025-10-31T05:27:50.3972978Z CC [M] fs/nls/mac-celtic.o
2025-10-31T05:27:50.6013283Z AR security/selinux/built-in.a
2025-10-31T05:27:50.6311856Z CC security/smack/smack_lsm.o
2025-10-31T05:27:50.6333483Z CC arch/x86/kernel/cpu/vmware.o
2025-10-31T05:27:50.7423158Z CC kernel/trace/trace_output.o
2025-10-31T05:27:50.9385761Z CC [M] fs/nls/mac-centeuro.o
2025-10-31T05:27:51.2317536Z CC arch/x86/kernel/cpu/hypervisor.o
2025-10-31T05:27:51.4054262Z CC [M] fs/nls/mac-croatian.o
2025-10-31T05:27:51.5490433Z CC arch/x86/kernel/cpu/mshyperv.o
2025-10-31T05:27:51.9387143Z CC [M] fs/nls/mac-cyrillic.o
2025-10-31T05:27:52.2769254Z CC [M] fs/nls/mac-gaelic.o
2025-10-31T05:27:52.3720156Z CC mm/memory_hotplug.o
2025-10-31T05:27:52.3903363Z CC kernel/trace/trace_seq.o
2025-10-31T05:27:52.6201760Z CC [M] fs/nls/mac-greek.o
2025-10-31T05:27:52.8733379Z CC arch/x86/kernel/cpu/acrn.o
2025-10-31T05:27:52.9464612Z CC kernel/trace/trace_stat.o
2025-10-31T05:27:53.0026516Z CC [M] fs/nls/mac-iceland.o
2025-10-31T05:27:53.4608015Z CC [M] fs/nls/mac-inuit.o
2025-10-31T05:27:53.7093538Z CC arch/x86/kernel/cpu/capflags.o
2025-10-31T05:27:53.8011716Z CC security/smack/smack_access.o
2025-10-31T05:27:53.8073358Z CC [M] fs/nls/mac-romanian.o
2025-10-31T05:27:53.8165475Z AR arch/x86/kernel/cpu/built-in.a
2025-10-31T05:27:53.8836896Z CC arch/x86/kernel/acpi/boot.o
2025-10-31T05:27:53.9611736Z CC kernel/trace/trace_printk.o
2025-10-31T05:27:54.1529316Z CC [M] fs/nls/mac-roman.o
2025-10-31T05:27:54.2018478Z CC mm/migrate.o
2025-10-31T05:27:54.6155422Z CC [M] fs/nls/mac-turkish.o
2025-10-31T05:27:54.9065872Z CC kernel/trace/tracing_map.o
2025-10-31T05:27:54.9836043Z AR fs/nls/built-in.a
2025-10-31T05:27:55.1071241Z CC arch/x86/kernel/acpi/sleep.o
2025-10-31T05:27:55.2705687Z SHIPPED fs/unicode/utf8data.h
2025-10-31T05:27:55.2781135Z CC fs/unicode/utf8-core.o
2025-10-31T05:27:55.4937966Z CC security/smack/smackfs.o
2025-10-31T05:27:55.9158894Z AS arch/x86/kernel/acpi/wakeup_64.o
2025-10-31T05:27:55.9482780Z CC fs/unicode/utf8-norm.o
2025-10-31T05:27:55.9988252Z CC arch/x86/kernel/acpi/apei.o
2025-10-31T05:27:56.0551867Z CC kernel/trace/trace_sched_switch.o
2025-10-31T05:27:56.6698199Z AR fs/unicode/built-in.a
2025-10-31T05:27:56.7018531Z CC arch/x86/kernel/acpi/cppc_msr.o
2025-10-31T05:27:56.7200911Z CC fs/autofs/init.o
2025-10-31T05:27:56.8431633Z CC kernel/trace/trace_functions.o
2025-10-31T05:27:57.1148885Z CC arch/x86/kernel/acpi/cstate.o
2025-10-31T05:27:57.4075816Z CC fs/autofs/inode.o
2025-10-31T05:27:57.7317773Z AR arch/x86/kernel/acpi/built-in.a
2025-10-31T05:27:57.7573248Z CC arch/x86/kernel/apic/apic.o
2025-10-31T05:27:57.7812441Z CC kernel/trace/trace_sched_wakeup.o
2025-10-31T05:27:58.0064882Z CC security/smack/smack_netfilter.o
2025-10-31T05:27:58.3187538Z CC fs/autofs/root.o
2025-10-31T05:27:58.4049684Z CC mm/huge_memory.o
2025-10-31T05:27:58.8648983Z CC kernel/trace/trace_hwlat.o
2025-10-31T05:27:59.2290552Z AR security/smack/built-in.a
2025-10-31T05:27:59.2863645Z CC security/tomoyo/audit.o
2025-10-31T05:27:59.3426418Z CC fs/autofs/symlink.o
2025-10-31T05:27:59.7735367Z CC arch/x86/kernel/apic/apic_common.o
2025-10-31T05:27:59.7792133Z CC kernel/trace/trace_nop.o
2025-10-31T05:27:59.8394503Z CC fs/autofs/waitq.o
2025-10-31T05:28:00.1741819Z CC arch/x86/kernel/apic/apic_noop.o
2025-10-31T05:28:00.4648431Z CC arch/x86/kernel/apic/ipi.o
2025-10-31T05:28:00.5702868Z CC kernel/trace/trace_stack.o
2025-10-31T05:28:00.6845151Z CC fs/autofs/expire.o
2025-10-31T05:28:00.7529154Z POLICY security/tomoyo/builtin-policy.h
2025-10-31T05:28:00.7827583Z CC security/tomoyo/condition.o
2025-10-31T05:28:00.8818088Z CC arch/x86/kernel/apic/vector.o
2025-10-31T05:28:01.5484214Z CC fs/autofs/dev-ioctl.o
2025-10-31T05:28:01.5826504Z CC kernel/trace/trace_mmiotrace.o
2025-10-31T05:28:02.2669070Z AR fs/autofs/built-in.a
2025-10-31T05:28:02.2935203Z CC fs/debugfs/inode.o
2025-10-31T05:28:02.5253842Z CC mm/khugepaged.o
2025-10-31T05:28:02.5400013Z CC kernel/trace/trace_functions_graph.o
2025-10-31T05:28:02.6639566Z CC arch/x86/kernel/apic/hw_nmi.o
2025-10-31T05:28:02.7056019Z CC security/tomoyo/domain.o
2025-10-31T05:28:03.1807928Z CC fs/debugfs/file.o
2025-10-31T05:28:03.3876682Z CC arch/x86/kernel/apic/io_apic.o
2025-10-31T05:28:03.9746175Z CC kernel/trace/blktrace.o
2025-10-31T05:28:04.3530508Z AR fs/debugfs/built-in.a
2025-10-31T05:28:04.4076845Z CC fs/tracefs/inode.o
2025-10-31T05:28:04.4254931Z CC security/tomoyo/environ.o
2025-10-31T05:28:05.4269858Z AR fs/tracefs/built-in.a
2025-10-31T05:28:05.4352790Z CC arch/x86/kernel/apic/msi.o
2025-10-31T05:28:05.4665121Z CC fs/pstore/inode.o
2025-10-31T05:28:05.5806567Z CC security/tomoyo/file.o
2025-10-31T05:28:05.7967939Z CC kernel/trace/fgraph.o
2025-10-31T05:28:05.9330196Z CC mm/page_counter.o
2025-10-31T05:28:06.1982630Z CC arch/x86/kernel/apic/x2apic_phys.o
2025-10-31T05:28:06.3708823Z CC mm/memcontrol.o
2025-10-31T05:28:06.4011832Z CC fs/pstore/platform.o
2025-10-31T05:28:06.7996108Z CC arch/x86/kernel/apic/x2apic_cluster.o
2025-10-31T05:28:06.9713426Z CC kernel/trace/trace_events.o
2025-10-31T05:28:07.2413433Z CC [M] fs/pstore/ram.o
2025-10-31T05:28:07.2748597Z CC security/tomoyo/gc.o
2025-10-31T05:28:07.5106346Z CC arch/x86/kernel/apic/apic_flat_64.o
2025-10-31T05:28:08.1119211Z CC arch/x86/kernel/apic/probe_64.o
2025-10-31T05:28:08.3596096Z CC [M] fs/pstore/ram_core.o
2025-10-31T05:28:08.5440475Z AR arch/x86/kernel/apic/built-in.a
2025-10-31T05:28:08.6014489Z CC arch/x86/kernel/kprobes/core.o
2025-10-31T05:28:08.9599019Z CC security/tomoyo/group.o
2025-10-31T05:28:09.2576393Z CC kernel/trace/trace_export.o
2025-10-31T05:28:09.4575441Z AR fs/pstore/built-in.a
2025-10-31T05:28:09.4780406Z LD [M] fs/pstore/ramoops.o
2025-10-31T05:28:09.5676134Z CC fs/efivarfs/inode.o
2025-10-31T05:28:09.7683527Z CC arch/x86/kernel/kprobes/opt.o
2025-10-31T05:28:10.0119796Z CC kernel/trace/trace_syscalls.o
2025-10-31T05:28:10.1166821Z CC security/tomoyo/load_policy.o
2025-10-31T05:28:10.3159224Z CC fs/efivarfs/file.o
2025-10-31T05:28:10.6314458Z CC arch/x86/kernel/kprobes/ftrace.o
2025-10-31T05:28:11.0759540Z CC fs/efivarfs/super.o
2025-10-31T05:28:11.1871020Z CC kernel/trace/trace_event_perf.o
2025-10-31T05:28:11.2184103Z CC mm/vmpressure.o
2025-10-31T05:28:11.3516997Z AR arch/x86/kernel/kprobes/built-in.a
2025-10-31T05:28:11.3641296Z AS arch/x86/kernel/head_64.o
2025-10-31T05:28:11.3712952Z CC security/tomoyo/memory.o
2025-10-31T05:28:11.4358842Z CC arch/x86/kernel/head64.o
2025-10-31T05:28:12.0026577Z AR fs/efivarfs/built-in.a
2025-10-31T05:28:12.0281248Z CC [M] fs/dlm/ast.o
2025-10-31T05:28:12.1275146Z CC mm/swap_cgroup.o
2025-10-31T05:28:12.1749761Z CC arch/x86/kernel/ebda.o
2025-10-31T05:28:12.1913608Z CC kernel/trace/trace_events_filter.o
2025-10-31T05:28:12.6655345Z CC [M] fs/dlm/config.o
2025-10-31T05:28:12.7477569Z CC arch/x86/kernel/platform-quirks.o
2025-10-31T05:28:12.8042155Z CC security/tomoyo/mount.o
2025-10-31T05:28:13.0018209Z LDS arch/x86/kernel/vmlinux.lds
2025-10-31T05:28:13.0560614Z CC mm/hugetlb_cgroup.o
2025-10-31T05:28:13.0571610Z CC arch/x86/kernel/process_64.o
2025-10-31T05:28:14.0017474Z CC kernel/trace/trace_events_trigger.o
2025-10-31T05:28:14.0206086Z CC [M] fs/dlm/dir.o
2025-10-31T05:28:14.1944322Z CC security/tomoyo/network.o
2025-10-31T05:28:14.2970865Z CC mm/memory-failure.o
2025-10-31T05:28:14.3332860Z CC arch/x86/kernel/signal.o
2025-10-31T05:28:14.6689595Z CC [M] fs/dlm/lock.o
2025-10-31T05:28:15.4278665Z CC kernel/trace/trace_events_synth.o
2025-10-31T05:28:15.5423013Z CC security/tomoyo/realpath.o
2025-10-31T05:28:15.5855531Z CC arch/x86/kernel/signal_compat.o
2025-10-31T05:28:16.2442869Z CC arch/x86/kernel/traps.o
2025-10-31T05:28:16.3134733Z CC mm/rodata_test.o
2025-10-31T05:28:16.8234112Z CC mm/cleancache.o
2025-10-31T05:28:16.9701564Z CC security/tomoyo/securityfs_if.o
2025-10-31T05:28:17.2070835Z CC kernel/trace/trace_events_hist.o
2025-10-31T05:28:17.5070674Z CC arch/x86/kernel/idt.o
2025-10-31T05:28:17.5367799Z CC mm/page_isolation.o
2025-10-31T05:28:18.1177353Z CC security/tomoyo/tomoyo.o
2025-10-31T05:28:18.5263868Z CC arch/x86/kernel/irq.o
2025-10-31T05:28:18.6094068Z CC mm/zpool.o
2025-10-31T05:28:18.7254955Z CC [M] fs/dlm/lockspace.o
2025-10-31T05:28:19.2560079Z CC security/tomoyo/util.o
2025-10-31T05:28:19.6058464Z CC mm/zbud.o
2025-10-31T05:28:19.8188420Z CC [M] fs/dlm/main.o
2025-10-31T05:28:20.3399103Z CC [M] fs/dlm/member.o
2025-10-31T05:28:20.4060744Z CC mm/zsmalloc.o
2025-10-31T05:28:20.5210452Z CC arch/x86/kernel/irq_64.o
2025-10-31T05:28:20.8653650Z CC security/tomoyo/common.o
2025-10-31T05:28:21.1126790Z CC arch/x86/kernel/dumpstack_64.o
2025-10-31T05:28:21.1735434Z CC [M] fs/dlm/memory.o
2025-10-31T05:28:21.6917601Z CC [M] fs/dlm/midcomms.o
2025-10-31T05:28:21.7744810Z CC arch/x86/kernel/time.o
2025-10-31T05:28:22.1908755Z CC [M] fs/dlm/netlink.o
2025-10-31T05:28:22.2418643Z CC arch/x86/kernel/ioport.o
2025-10-31T05:28:22.3809221Z CC kernel/trace/bpf_trace.o
2025-10-31T05:28:22.5933936Z CC mm/z3fold.o
2025-10-31T05:28:23.0721536Z CC [M] fs/dlm/lowcomms.o
2025-10-31T05:28:23.0760664Z CC arch/x86/kernel/dumpstack.o
2025-10-31T05:28:23.8105280Z AR security/tomoyo/built-in.a
2025-10-31T05:28:23.8676154Z CC security/apparmor/apparmorfs.o
2025-10-31T05:28:23.9370119Z CC arch/x86/kernel/nmi.o
2025-10-31T05:28:24.4762513Z CC mm/early_ioremap.o
2025-10-31T05:28:24.6936391Z CC kernel/trace/trace_kprobe.o
2025-10-31T05:28:25.0793809Z CC [M] fs/dlm/plock.o
2025-10-31T05:28:25.2118052Z CC arch/x86/kernel/ldt.o
2025-10-31T05:28:25.3295463Z CC mm/cma.o
2025-10-31T05:28:25.8751789Z CC [M] fs/dlm/rcom.o
2025-10-31T05:28:26.4218158Z CC mm/balloon_compaction.o
2025-10-31T05:28:26.6164057Z CC arch/x86/kernel/setup.o
2025-10-31T05:28:26.6315795Z CC kernel/trace/power-traces.o
2025-10-31T05:28:26.6881576Z CC [M] fs/dlm/recover.o
2025-10-31T05:28:27.0351921Z CC security/apparmor/audit.o
2025-10-31T05:28:27.3314375Z CC mm/cma_debug.o
2025-10-31T05:28:27.8115019Z CC arch/x86/kernel/x86_init.o
2025-10-31T05:28:27.8617425Z CC [M] fs/dlm/recoverd.o
2025-10-31T05:28:28.0028718Z CC mm/userfaultfd.o
2025-10-31T05:28:28.2405792Z GEN security/apparmor/capability_names.h
2025-10-31T05:28:28.2759516Z CC security/apparmor/task.o
2025-10-31T05:28:28.3982688Z CC arch/x86/kernel/i8259.o
2025-10-31T05:28:28.4404696Z CC kernel/trace/rpm-traces.o
2025-10-31T05:28:28.4930343Z CC [M] fs/dlm/requestqueue.o
2025-10-31T05:28:29.1283869Z CC arch/x86/kernel/irqinit.o
2025-10-31T05:28:29.1965525Z CC [M] fs/dlm/user.o
2025-10-31T05:28:29.2702764Z CC kernel/trace/trace_dynevent.o
2025-10-31T05:28:29.4874562Z CC mm/frame_vector.o
2025-10-31T05:28:29.7563617Z CC security/apparmor/ipc.o
2025-10-31T05:28:30.1085605Z CC arch/x86/kernel/jump_label.o
2025-10-31T05:28:30.1423672Z CC [M] fs/dlm/util.o
2025-10-31T05:28:30.1737462Z CC kernel/trace/trace_probe.o
2025-10-31T05:28:30.2684290Z CC mm/usercopy.o
2025-10-31T05:28:30.5757471Z CC [M] fs/dlm/debug_fs.o
2025-10-31T05:28:30.7080224Z CC arch/x86/kernel/irq_work.o
2025-10-31T05:28:30.9987356Z CC security/apparmor/lib.o
2025-10-31T05:28:31.0723438Z CC mm/memremap.o
2025-10-31T05:28:31.5905328Z CC arch/x86/kernel/probe_roms.o
2025-10-31T05:28:31.6869425Z LD [M] fs/dlm/dlm.o
2025-10-31T05:28:31.8357432Z CC [M] fs/fscache/cache.o
2025-10-31T05:28:31.9319071Z CC kernel/trace/trace_uprobe.o
2025-10-31T05:28:32.0106549Z CC mm/hmm.o
2025-10-31T05:28:32.3892260Z CC arch/x86/kernel/sys_ia32.o
2025-10-31T05:28:32.4515000Z CC security/apparmor/match.o
2025-10-31T05:28:32.9260197Z CC [M] fs/fscache/cookie.o
2025-10-31T05:28:33.1665586Z CC mm/memfd.o
2025-10-31T05:28:33.3774017Z CC arch/x86/kernel/sys_x86_64.o
2025-10-31T05:28:33.5272702Z CC security/apparmor/path.o
2025-10-31T05:28:33.8495371Z CC kernel/trace/trace_boot.o
2025-10-31T05:28:34.3205637Z CC mm/mapping_dirty_helpers.o
2025-10-31T05:28:34.3412707Z CC [M] fs/fscache/fsdef.o
2025-10-31T05:28:34.3709515Z CC arch/x86/kernel/espfix_64.o
2025-10-31T05:28:34.7040999Z AR kernel/trace/built-in.a
2025-10-31T05:28:34.7787022Z CC security/apparmor/domain.o
2025-10-31T05:28:34.9130819Z CC kernel/bpf/core.o
2025-10-31T05:28:35.1162416Z CC [M] fs/fscache/main.o
2025-10-31T05:28:35.1477757Z CC mm/ptdump.o
2025-10-31T05:28:35.2132648Z CC arch/x86/kernel/ksysfs.o
2025-10-31T05:28:35.8129600Z CC mm/page_reporting.o
2025-10-31T05:28:35.9749465Z CC arch/x86/kernel/bootflag.o
2025-10-31T05:28:36.6156107Z CC [M] mm/hwpoison-inject.o
2025-10-31T05:28:36.7234893Z CC arch/x86/kernel/e820.o
2025-10-31T05:28:36.7607735Z CC [M] fs/fscache/netfs.o
2025-10-31T05:28:37.3909569Z CC kernel/bpf/syscall.o
2025-10-31T05:28:37.5614568Z CC [M] fs/fscache/object.o
2025-10-31T05:28:37.5810101Z AR mm/built-in.a
2025-10-31T05:28:37.6442811Z CC [M] fs/fscache/operation.o
2025-10-31T05:28:37.7731084Z CC security/apparmor/policy.o
2025-10-31T05:28:37.9604269Z CC arch/x86/kernel/pci-dma.o
2025-10-31T05:28:38.7015930Z CC arch/x86/kernel/quirks.o
2025-10-31T05:28:39.0448612Z CC [M] fs/fscache/page.o
2025-10-31T05:28:39.2875933Z CC crypto/asymmetric_keys/asymmetric_type.o
2025-10-31T05:28:39.4656524Z CC arch/x86/kernel/topology.o
2025-10-31T05:28:39.8561064Z CC security/apparmor/policy_unpack.o
2025-10-31T05:28:39.9339794Z CC arch/x86/kernel/kdebugfs.o
2025-10-31T05:28:40.2579463Z CC crypto/asymmetric_keys/restrict.o
2025-10-31T05:28:40.5941006Z CC arch/x86/kernel/alternative.o
2025-10-31T05:28:40.6009176Z CC [M] fs/fscache/proc.o
2025-10-31T05:28:40.7373942Z CC crypto/asymmetric_keys/signature.o
2025-10-31T05:28:41.0136708Z CC kernel/bpf/verifier.o
2025-10-31T05:28:41.2254805Z CC crypto/asymmetric_keys/public_key.o
2025-10-31T05:28:41.2573615Z CC [M] fs/fscache/stats.o
2025-10-31T05:28:41.7823250Z CC security/apparmor/procattr.o
2025-10-31T05:28:42.0711635Z ASN.1 crypto/asymmetric_keys/x509.asn1.[ch]
2025-10-31T05:28:42.0856415Z ASN.1 crypto/asymmetric_keys/x509_akid.asn1.[ch]
2025-10-31T05:28:42.0958243Z CC crypto/asymmetric_keys/x509_public_key.o
2025-10-31T05:28:42.1226415Z CC [M] fs/fscache/object-list.o
2025-10-31T05:28:42.4384473Z CC arch/x86/kernel/i8253.o
2025-10-31T05:28:42.8552429Z CC arch/x86/kernel/hw_breakpoint.o
2025-10-31T05:28:42.9321653Z LD [M] fs/fscache/fscache.o
2025-10-31T05:28:42.9423765Z ASN.1 crypto/asymmetric_keys/pkcs7.asn1.[ch]
2025-10-31T05:28:42.9580701Z CC crypto/asymmetric_keys/pkcs7_trust.o
2025-10-31T05:28:43.0402922Z CC [M] fs/reiserfs/bitmap.o
2025-10-31T05:28:43.2572699Z CC security/apparmor/lsm.o
2025-10-31T05:28:43.4081083Z CC crypto/asymmetric_keys/pkcs7_verify.o
2025-10-31T05:28:43.6804239Z CC arch/x86/kernel/tsc.o
2025-10-31T05:28:44.0763179Z CC crypto/asymmetric_keys/verify_pefile.o
2025-10-31T05:28:44.6776173Z CC [M] fs/reiserfs/do_balan.o
2025-10-31T05:28:44.8508810Z ASN.1 crypto/asymmetric_keys/mscode.asn1.[ch]
2025-10-31T05:28:44.8581340Z CC [M] crypto/asymmetric_keys/asym_tpm.o
2025-10-31T05:28:44.9258911Z CC arch/x86/kernel/tsc_msr.o
2025-10-31T05:28:45.2367426Z CC arch/x86/kernel/io_delay.o
2025-10-31T05:28:45.7353801Z CC arch/x86/kernel/rtc.o
2025-10-31T05:28:45.9376419Z ASN.1 crypto/asymmetric_keys/pkcs8.asn1.[ch]
2025-10-31T05:28:45.9446813Z ASN.1 crypto/asymmetric_keys/tpm.asn1.[ch]
2025-10-31T05:28:45.9518647Z CC [M] crypto/asymmetric_keys/pkcs8.asn1.o
2025-10-31T05:28:46.0190499Z CC [M] crypto/asymmetric_keys/pkcs8_parser.o
2025-10-31T05:28:46.1846976Z CC [M] fs/reiserfs/namei.o
2025-10-31T05:28:46.6306372Z CC arch/x86/kernel/pci-iommu_table.o
2025-10-31T05:28:46.7147246Z CC [M] crypto/asymmetric_keys/tpm.asn1.o
2025-10-31T05:28:46.7909652Z GEN security/apparmor/rlim_names.h
2025-10-31T05:28:46.7969353Z CC [M] crypto/asymmetric_keys/tpm_parser.o
2025-10-31T05:28:46.8293915Z CC security/apparmor/secid.o
2025-10-31T05:28:47.2106357Z CC arch/x86/kernel/resource.o
2025-10-31T05:28:47.3177409Z AS arch/x86/kernel/irqflags.o
2025-10-31T05:28:47.3863080Z CC arch/x86/kernel/static_call.o
2025-10-31T05:28:47.4683420Z CC crypto/asymmetric_keys/x509.asn1.o
2025-10-31T05:28:47.6042527Z CC crypto/asymmetric_keys/x509_akid.asn1.o
2025-10-31T05:28:47.6393738Z CC [M] fs/reiserfs/inode.o
2025-10-31T05:28:47.7403763Z CC crypto/asymmetric_keys/x509_cert_parser.o
2025-10-31T05:28:47.8060321Z CC arch/x86/kernel/process.o
2025-10-31T05:28:47.9115346Z CC security/apparmor/file.o
2025-10-31T05:28:48.3109691Z CC kernel/bpf/inode.o
2025-10-31T05:28:48.4907298Z CC crypto/asymmetric_keys/pkcs7.asn1.o
2025-10-31T05:28:48.5596100Z CC crypto/asymmetric_keys/pkcs7_parser.o
2025-10-31T05:28:49.2031020Z CC crypto/asymmetric_keys/mscode_parser.o
2025-10-31T05:28:49.2813809Z CC arch/x86/kernel/ptrace.o
2025-10-31T05:28:49.5121488Z CC crypto/asymmetric_keys/mscode.asn1.o
2025-10-31T05:28:49.5539187Z CC kernel/bpf/helpers.o
2025-10-31T05:28:49.5641847Z CC security/apparmor/policy_ns.o
2025-10-31T05:28:49.5977925Z LD [M] crypto/asymmetric_keys/pkcs8_key_parser.o
2025-10-31T05:28:49.6231295Z LD [M] crypto/asymmetric_keys/tpm_key_parser.o
2025-10-31T05:28:49.6465148Z AR crypto/asymmetric_keys/built-in.a
2025-10-31T05:28:49.7442855Z CC [M] crypto/async_tx/async_tx.o
2025-10-31T05:28:50.5113108Z CC [M] fs/reiserfs/file.o
2025-10-31T05:28:50.5437754Z CC [M] crypto/async_tx/async_memcpy.o
2025-10-31T05:28:50.7537451Z CC kernel/bpf/tnum.o
2025-10-31T05:28:50.8118312Z CC arch/x86/kernel/tls.o
2025-10-31T05:28:50.9183396Z CC security/apparmor/label.o
2025-10-31T05:28:51.1190331Z CC kernel/bpf/bpf_iter.o
2025-10-31T05:28:51.3919211Z CC [M] crypto/async_tx/async_xor.o
2025-10-31T05:28:51.4989206Z CC [M] fs/reiserfs/dir.o
2025-10-31T05:28:51.6469685Z CC arch/x86/kernel/step.o
2025-10-31T05:28:52.2720364Z CC [M] crypto/async_tx/async_pq.o
2025-10-31T05:28:52.3141077Z CC kernel/bpf/map_iter.o
2025-10-31T05:28:52.4499943Z CC [M] fs/reiserfs/fix_node.o
2025-10-31T05:28:52.4710093Z CC arch/x86/kernel/i8237.o
2025-10-31T05:28:52.9830636Z CC arch/x86/kernel/stacktrace.o
2025-10-31T05:28:53.1990110Z CC [M] crypto/async_tx/async_raid6_recov.o
2025-10-31T05:28:53.3059506Z CC kernel/bpf/task_iter.o
2025-10-31T05:28:53.6377778Z CC arch/x86/kernel/reboot.o
2025-10-31T05:28:53.6830032Z CC security/apparmor/mount.o
2025-10-31T05:28:54.2821540Z CC [M] crypto/async_tx/raid6test.o
2025-10-31T05:28:54.3253292Z CC [M] fs/reiserfs/super.o
2025-10-31T05:28:54.3344816Z CC kernel/bpf/prog_iter.o
2025-10-31T05:28:54.7095788Z CC arch/x86/kernel/msr.o
2025-10-31T05:28:55.1521027Z CC crypto/api.o
2025-10-31T05:28:55.3804322Z CC kernel/bpf/hashtab.o
2025-10-31T05:28:55.5146699Z CC arch/x86/kernel/cpuid.o
2025-10-31T05:28:55.6393158Z GEN security/apparmor/net_names.h
2025-10-31T05:28:55.6666019Z GEN security/apparmor/net_names.h
2025-10-31T05:28:55.6893473Z CC security/apparmor/crypto.o
2025-10-31T05:28:55.9561848Z CC crypto/cipher.o
2025-10-31T05:28:56.0930496Z CC arch/x86/kernel/early-quirks.o
2025-10-31T05:28:56.3467369Z CC [M] fs/reiserfs/prints.o
2025-10-31T05:28:56.4054245Z CC crypto/compress.o
2025-10-31T05:28:56.8050967Z CC crypto/algapi.o
2025-10-31T05:28:57.1511488Z CC security/apparmor/capability.o
2025-10-31T05:28:57.1535347Z CC arch/x86/kernel/smp.o
2025-10-31T05:28:57.2523986Z CC kernel/bpf/arraymap.o
2025-10-31T05:28:57.5235048Z CC [M] fs/reiserfs/objectid.o
2025-10-31T05:28:58.2183641Z CC crypto/scatterwalk.o
2025-10-31T05:28:58.2491597Z CC [M] fs/reiserfs/lbalance.o
2025-10-31T05:28:58.3555977Z CC arch/x86/kernel/smpboot.o
2025-10-31T05:28:58.4641625Z CC security/apparmor/resource.o
2025-10-31T05:28:59.0370193Z CC crypto/proc.o
2025-10-31T05:28:59.1569451Z CC kernel/bpf/percpu_freelist.o
2025-10-31T05:28:59.4904449Z CC [M] fs/reiserfs/ibalance.o
2025-10-31T05:28:59.5531330Z CC kernel/bpf/bpf_lru_list.o
2025-10-31T05:28:59.7124392Z CC crypto/aead.o
2025-10-31T05:28:59.7308211Z CC security/apparmor/net.o
2025-10-31T05:28:59.9839303Z CC arch/x86/kernel/tsc_sync.o
2025-10-31T05:29:00.2957151Z CC kernel/bpf/lpm_trie.o
2025-10-31T05:29:00.4869319Z CC [M] fs/reiserfs/stree.o
2025-10-31T05:29:00.5629855Z CC arch/x86/kernel/setup_percpu.o
2025-10-31T05:29:00.6017453Z CC crypto/geniv.o
2025-10-31T05:29:01.1491336Z AR security/apparmor/built-in.a
2025-10-31T05:29:01.2019372Z CC security/yama/yama_lsm.o
2025-10-31T05:29:01.2616606Z CC arch/x86/kernel/mpparse.o
2025-10-31T05:29:01.6687096Z CC crypto/skcipher.o
2025-10-31T05:29:01.7430416Z CC kernel/bpf/map_in_map.o
2025-10-31T05:29:02.0140092Z AR security/yama/built-in.a
2025-10-31T05:29:02.0633820Z CC security/loadpin/loadpin.o
2025-10-31T05:29:02.2240173Z CC [M] fs/reiserfs/hashes.o
2025-10-31T05:29:02.3805593Z CC arch/x86/kernel/ftrace.o
2025-10-31T05:29:02.5298699Z CC kernel/bpf/local_storage.o
2025-10-31T05:29:02.9314073Z AR security/loadpin/built-in.a
2025-10-31T05:29:02.9590666Z CC security/safesetid/lsm.o
2025-10-31T05:29:02.9624449Z CC [M] fs/reiserfs/tail_conversion.o
2025-10-31T05:29:02.9818264Z CC crypto/ahash.o
2025-10-31T05:29:03.3926415Z AS arch/x86/kernel/ftrace_64.o
2025-10-31T05:29:03.4997080Z CC arch/x86/kernel/trace_clock.o
2025-10-31T05:29:03.6733974Z CC [M] fs/reiserfs/journal.o
2025-10-31T05:29:03.7472805Z CC arch/x86/kernel/crash_core_64.o
2025-10-31T05:29:03.8004415Z CC kernel/bpf/queue_stack_maps.o
2025-10-31T05:29:03.8104660Z CC security/safesetid/securityfs.o
2025-10-31T05:29:03.9313735Z CC crypto/shash.o
2025-10-31T05:29:04.4263867Z CC arch/x86/kernel/machine_kexec_64.o
2025-10-31T05:29:04.4649180Z CC kernel/bpf/ringbuf.o
2025-10-31T05:29:04.5151189Z AR security/safesetid/built-in.a
2025-10-31T05:29:04.5691357Z CC security/lockdown/lockdown.o
2025-10-31T05:29:05.0029228Z CC crypto/akcipher.o
2025-10-31T05:29:05.2620140Z AR security/lockdown/built-in.a
2025-10-31T05:29:05.3153654Z CC security/bpf/hooks.o
2025-10-31T05:29:05.6475359Z CC crypto/kpp.o
2025-10-31T05:29:05.6529496Z AS arch/x86/kernel/relocate_kernel_64.o
2025-10-31T05:29:05.7497675Z CC arch/x86/kernel/crash.o
2025-10-31T05:29:05.7799141Z CC kernel/bpf/bpf_inode_storage.o
2025-10-31T05:29:06.1112397Z AR security/bpf/built-in.a
2025-10-31T05:29:06.1359019Z CC security/commoncap.o
2025-10-31T05:29:06.3960954Z CC crypto/dh.o
2025-10-31T05:29:06.4429347Z CC arch/x86/kernel/kexec-bzimage64.o
2025-10-31T05:29:06.8810867Z CC kernel/bpf/disasm.o
2025-10-31T05:29:06.9086244Z CC [M] fs/reiserfs/resize.o
2025-10-31T05:29:07.0381509Z CC crypto/dh_helper.o
2025-10-31T05:29:07.4751157Z ASN.1 crypto/rsapubkey.asn1.[ch]
2025-10-31T05:29:07.4815580Z ASN.1 crypto/rsaprivkey.asn1.[ch]
2025-10-31T05:29:07.4880779Z CC crypto/rsa.o
2025-10-31T05:29:07.5853507Z CC security/min_addr.o
2025-10-31T05:29:07.6220306Z CC [M] fs/reiserfs/item_ops.o
2025-10-31T05:29:07.6471210Z CC kernel/bpf/trampoline.o
2025-10-31T05:29:07.7004673Z CC arch/x86/kernel/crash_dump_64.o
2025-10-31T05:29:08.0554760Z CC crypto/rsa_helper.o
2025-10-31T05:29:08.2034805Z CC crypto/rsa-pkcs1pad.o
2025-10-31T05:29:08.2953692Z CC security/security.o
2025-10-31T05:29:08.3405234Z CC arch/x86/kernel/module.o
2025-10-31T05:29:08.4815329Z CC [M] fs/reiserfs/ioctl.o
2025-10-31T05:29:09.0253997Z CC kernel/bpf/btf.o
2025-10-31T05:29:09.0729881Z CC arch/x86/kernel/early_printk.o
2025-10-31T05:29:09.1415870Z CC [M] fs/reiserfs/xattr.o
2025-10-31T05:29:09.1856320Z CC crypto/acompress.o
2025-10-31T05:29:09.8148674Z CC arch/x86/kernel/hpet.o
2025-10-31T05:29:09.9327609Z CC crypto/scompress.o
2025-10-31T05:29:10.4598746Z CC [M] fs/reiserfs/lock.o
2025-10-31T05:29:10.7992769Z CC crypto/algboss.o
2025-10-31T05:29:11.0513654Z CC arch/x86/kernel/amd_nb.o
2025-10-31T05:29:11.1846298Z CC [M] fs/reiserfs/procfs.o
2025-10-31T05:29:11.5046474Z CC security/inode.o
2025-10-31T05:29:11.9655109Z CC [M] fs/reiserfs/xattr_user.o
2025-10-31T05:29:11.9744793Z CC arch/x86/kernel/kvm.o
2025-10-31T05:29:11.9840890Z CC crypto/testmgr.o
2025-10-31T05:29:12.1513612Z CC security/lsm_audit.o
2025-10-31T05:29:12.5934115Z CC [M] fs/reiserfs/xattr_trusted.o
2025-10-31T05:29:12.6894855Z CC crypto/hmac.o
2025-10-31T05:29:12.9940279Z CC kernel/bpf/dispatcher.o
2025-10-31T05:29:13.3760516Z CC [M] fs/reiserfs/xattr_security.o
2025-10-31T05:29:13.4167928Z CC security/device_cgroup.o
2025-10-31T05:29:13.4629356Z CC arch/x86/kernel/kvmclock.o
2025-10-31T05:29:13.5114069Z CC crypto/crypto_null.o
2025-10-31T05:29:13.9934860Z CC [M] fs/reiserfs/xattr_acl.o
2025-10-31T05:29:14.0748776Z CC crypto/md5.o
2025-10-31T05:29:14.0857307Z CC kernel/bpf/devmap.o
2025-10-31T05:29:14.1901494Z CC arch/x86/kernel/paravirt.o
2025-10-31T05:29:14.4641626Z AR security/built-in.a
2025-10-31T05:29:14.5026771Z CC kernel/bpf/cpumap.o
2025-10-31T05:29:14.6278977Z CC crypto/sha1_generic.o
2025-10-31T05:29:14.9952575Z LD [M] fs/reiserfs/reiserfs.o
2025-10-31T05:29:15.1744966Z CC [M] fs/ext4/balloc.o
2025-10-31T05:29:15.2077313Z CC arch/x86/kernel/paravirt_patch.o
2025-10-31T05:29:15.2718414Z CC crypto/sha256_generic.o
2025-10-31T05:29:15.3726191Z CC arch/x86/kernel/paravirt-spinlocks.o
2025-10-31T05:29:15.5954854Z CC arch/x86/kernel/pvclock.o
2025-10-31T05:29:15.7744668Z CC [M] fs/jbd2/transaction.o
2025-10-31T05:29:15.8469493Z CC crypto/sha512_generic.o
2025-10-31T05:29:16.1395013Z CC kernel/bpf/bpf_local_storage.o
2025-10-31T05:29:16.3031154Z CC arch/x86/kernel/pmem.o
2025-10-31T05:29:16.8093723Z CC arch/x86/kernel/jailhouse.o
2025-10-31T05:29:16.8938015Z CC crypto/ctr.o
2025-10-31T05:29:16.9099144Z CC [M] fs/ext4/bitmap.o
2025-10-31T05:29:17.3893004Z CC kernel/bpf/offload.o
2025-10-31T05:29:17.5050036Z CC arch/x86/kernel/pcspeaker.o
2025-10-31T05:29:17.5678869Z CC crypto/aes_generic.o
2025-10-31T05:29:17.6565684Z CC [M] fs/jbd2/commit.o
2025-10-31T05:29:17.7849293Z CC [M] fs/ext4/block_validity.o
2025-10-31T05:29:17.8823988Z CC arch/x86/kernel/check.o
2025-10-31T05:29:18.5265944Z CC arch/x86/kernel/pci-swiotlb.o
2025-10-31T05:29:18.5300012Z CC crypto/crct10dif_common.o
2025-10-31T05:29:18.8699021Z CC kernel/bpf/net_namespace.o
2025-10-31T05:29:18.9459500Z CC [M] fs/ext4/dir.o
2025-10-31T05:29:18.9704509Z CC crypto/crct10dif_generic.o
2025-10-31T05:29:19.0857953Z CC arch/x86/kernel/uprobes.o
2025-10-31T05:29:19.4453667Z CC [M] fs/jbd2/recovery.o
2025-10-31T05:29:19.4585547Z CC crypto/lz4.o
2025-10-31T05:29:19.8440385Z CC arch/x86/kernel/sysfb.o
2025-10-31T05:29:19.8496071Z CC crypto/rng.o
2025-10-31T05:29:20.1953967Z CC [M] fs/ext4/ext4_jbd2.o
2025-10-31T05:29:20.2551659Z CC kernel/bpf/stackmap.o
2025-10-31T05:29:20.4953664Z CC arch/x86/kernel/sysfb_efi.o
2025-10-31T05:29:20.5823405Z CC crypto/jitterentropy.o
2025-10-31T05:29:20.7610946Z CC crypto/jitterentropy-kcapi.o
2025-10-31T05:29:20.7904058Z CC [M] fs/jbd2/checkpoint.o
2025-10-31T05:29:21.2678779Z CC crypto/zstd.o
2025-10-31T05:29:21.4556988Z CC [M] fs/ext4/extents.o
2025-10-31T05:29:21.5631514Z CC arch/x86/kernel/perf_regs.o
2025-10-31T05:29:21.7192312Z CC [M] fs/jbd2/revoke.o
2025-10-31T05:29:21.7842125Z CC kernel/bpf/cgroup.o
2025-10-31T05:29:22.0673833Z CC crypto/hash_info.o
2025-10-31T05:29:22.2184723Z CC [M] crypto/crypto_engine.o
2025-10-31T05:29:22.2457447Z CC arch/x86/kernel/tracepoint.o
2025-10-31T05:29:22.7829061Z CC [M] fs/jbd2/journal.o
2025-10-31T05:29:22.8351902Z CC [M] crypto/seqiv.o
2025-10-31T05:29:22.8431457Z CC arch/x86/kernel/itmt.o
2025-10-31T05:29:23.4383509Z CC [M] crypto/echainiv.o
2025-10-31T05:29:23.6811807Z CC arch/x86/kernel/umip.o
2025-10-31T05:29:24.1364577Z ASN.1 crypto/sm2signature.asn1.[ch]
2025-10-31T05:29:24.1487826Z CC [M] crypto/crypto_user_base.o
2025-10-31T05:29:24.3806118Z CC kernel/bpf/reuseport_array.o
2025-10-31T05:29:24.5135689Z CC arch/x86/kernel/unwind_orc.o
2025-10-31T05:29:25.4005932Z CC kernel/bpf/sysfs_btf.o
2025-10-31T05:29:25.4515379Z CC arch/x86/kernel/sev-es.o
2025-10-31T05:29:25.5253560Z CC [M] crypto/crypto_user_stat.o
2025-10-31T05:29:25.7314044Z CC kernel/bpf/bpf_struct_ops.o
2025-10-31T05:29:25.8662784Z LD [M] fs/jbd2/jbd2.o
2025-10-31T05:29:26.0608291Z CC block/partitions/core.o
2025-10-31T05:29:26.2816714Z CC [M] fs/ext4/extents_status.o
2025-10-31T05:29:26.7902943Z CC [M] crypto/cmac.o
2025-10-31T05:29:27.0931737Z CC kernel/bpf/bpf_lsm.o
2025-10-31T05:29:27.1901008Z CC block/partitions/aix.o
2025-10-31T05:29:27.2558740Z CC arch/x86/kernel/cc_platform.o
2025-10-31T05:29:27.3694873Z CC [M] crypto/vmac.o
2025-10-31T05:29:27.4769505Z CC arch/x86/kernel/audit_64.o
2025-10-31T05:29:27.9754399Z CC arch/x86/kernel/mmconf-fam10h_64.o
2025-10-31T05:29:28.0375539Z CC block/partitions/mac.o
2025-10-31T05:29:28.2686939Z CC [M] fs/ext4/file.o
2025-10-31T05:29:28.6643391Z AR kernel/bpf/built-in.a
2025-10-31T05:29:28.6967402Z CC kernel/events/core.o
2025-10-31T05:29:28.7308882Z CC block/partitions/ldm.o
2025-10-31T05:29:28.7584163Z CC [M] crypto/xcbc.o
2025-10-31T05:29:28.7796641Z CC arch/x86/kernel/vsmp_64.o
2025-10-31T05:29:29.3163310Z AR arch/x86/kernel/built-in.a
2025-10-31T05:29:29.3666177Z CC [M] crypto/md4.o
2025-10-31T05:29:29.4146650Z CC arch/x86/mm/pat/set_memory.o
2025-10-31T05:29:29.4939177Z CC [M] fs/ext4/fsmap.o
2025-10-31T05:29:30.0351569Z CC [M] crypto/rmd128.o
2025-10-31T05:29:30.0704992Z CC block/partitions/msdos.o
2025-10-31T05:29:31.0329911Z CC [M] crypto/rmd160.o
2025-10-31T05:29:31.0813634Z CC [M] fs/ext4/fsync.o
2025-10-31T05:29:31.2187020Z CC block/partitions/efi.o
2025-10-31T05:29:31.6139850Z CC arch/x86/mm/pat/memtype.o
2025-10-31T05:29:31.9977295Z CC [M] crypto/rmd256.o
2025-10-31T05:29:32.4657487Z CC [M] fs/ext4/hash.o
2025-10-31T05:29:32.4835040Z CC block/partitions/karma.o
2025-10-31T05:29:32.7402649Z CC arch/x86/mm/pat/memtype_interval.o
2025-10-31T05:29:32.7988682Z CC [M] crypto/rmd320.o
2025-10-31T05:29:33.0736508Z AR block/partitions/built-in.a
2025-10-31T05:29:33.0863784Z CC block/bio.o
2025-10-31T05:29:33.4495131Z CC [M] fs/ext4/ialloc.o
2025-10-31T05:29:33.7312733Z AR arch/x86/mm/pat/built-in.a
2025-10-31T05:29:33.7553192Z CC arch/x86/mm/init.o
2025-10-31T05:29:33.8419298Z CC [M] crypto/sha3_generic.o
2025-10-31T05:29:34.4394635Z CC [M] crypto/sm3_generic.o
2025-10-31T05:29:35.0066869Z CC block/elevator.o
2025-10-31T05:29:35.0966924Z CC arch/x86/mm/init_64.o
2025-10-31T05:29:35.2085605Z CC [M] crypto/streebog_generic.o
2025-10-31T05:29:35.7282797Z CC [M] fs/ext4/indirect.o
2025-10-31T05:29:35.8692423Z CC [M] crypto/wp512.o
2025-10-31T05:29:35.9632869Z CC kernel/events/ring_buffer.o
2025-10-31T05:29:36.5895732Z CC block/blk-core.o
2025-10-31T05:29:36.8053036Z CC [M] crypto/tgr192.o
2025-10-31T05:29:37.4401929Z CC [M] fs/ext4/inline.o
2025-10-31T05:29:37.4684960Z CC arch/x86/mm/fault.o
2025-10-31T05:29:37.4708365Z CC kernel/events/callchain.o
2025-10-31T05:29:37.7451177Z CC [M] crypto/blake2b_generic.o
2025-10-31T05:29:38.2419809Z CC kernel/events/hw_breakpoint.o
2025-10-31T05:29:38.8822966Z CC [M] crypto/blake2s_generic.o
2025-10-31T05:29:39.0267834Z CC arch/x86/mm/ioremap.o
2025-10-31T05:29:39.2072711Z CC kernel/events/uprobes.o
2025-10-31T05:29:39.3894790Z CC block/blk-sysfs.o
2025-10-31T05:29:39.4239773Z CC [M] crypto/gf128mul.o
2025-10-31T05:29:39.9656837Z CC [M] fs/ext4/inode.o
2025-10-31T05:29:40.1379650Z CC [M] crypto/ecb.o
2025-10-31T05:29:40.2279427Z CC arch/x86/mm/extable.o
2025-10-31T05:29:40.5131370Z CC block/blk-flush.o
2025-10-31T05:29:40.7860654Z CC [M] crypto/cbc.o
2025-10-31T05:29:41.2119670Z CC arch/x86/mm/mmap.o
2025-10-31T05:29:41.3272497Z CC [M] crypto/cfb.o
2025-10-31T05:29:41.3273358Z AR kernel/events/built-in.a
2025-10-31T05:29:41.3474396Z CC kernel/fork.o
2025-10-31T05:29:41.4339156Z CC block/blk-settings.o
2025-10-31T05:29:41.8983202Z CC arch/x86/mm/pgtable.o
2025-10-31T05:29:41.9255338Z CC [M] crypto/pcbc.o
2025-10-31T05:29:42.4659492Z CC [M] crypto/cts.o
2025-10-31T05:29:42.5966348Z CC block/blk-ioc.o
2025-10-31T05:29:43.1218055Z CC arch/x86/mm/physaddr.o
2025-10-31T05:29:43.3175866Z CC [M] crypto/lrw.o
2025-10-31T05:29:43.5313245Z CC block/blk-map.o
2025-10-31T05:29:43.6756491Z CC arch/x86/mm/setup_nx.o
2025-10-31T05:29:44.0301767Z CC arch/x86/mm/tlb.o
2025-10-31T05:29:44.1001174Z CC [M] crypto/xts.o
2025-10-31T05:29:44.1031847Z CC kernel/exec_domain.o
2025-10-31T05:29:44.8453158Z CC block/blk-exec.o
2025-10-31T05:29:44.9038806Z CC kernel/panic.o
2025-10-31T05:29:45.0374963Z CC [M] crypto/keywrap.o
2025-10-31T05:29:45.2292280Z CC arch/x86/mm/cpu_entry_area.o
2025-10-31T05:29:45.4645578Z CC [M] fs/ext4/ioctl.o
2025-10-31T05:29:45.6380634Z CC block/blk-merge.o
2025-10-31T05:29:45.7522910Z CC [M] crypto/adiantum.o
2025-10-31T05:29:45.8278851Z CC kernel/cpu.o
2025-10-31T05:29:45.8565558Z CC arch/x86/mm/maccess.o
2025-10-31T05:29:46.2253394Z CC arch/x86/mm/hugetlbpage.o
2025-10-31T05:29:46.6897898Z CC [M] crypto/nhpoly1305.o
2025-10-31T05:29:46.9743073Z CC arch/x86/mm/dump_pagetables.o
2025-10-31T05:29:47.1653455Z CC [M] fs/ext4/mballoc.o
2025-10-31T05:29:47.3431161Z CC [M] crypto/gcm.o
2025-10-31T05:29:47.6983849Z CC block/blk-timeout.o
2025-10-31T05:29:47.9351187Z CC arch/x86/mm/kmmio.o
2025-10-31T05:29:48.0334508Z CC kernel/exit.o
2025-10-31T05:29:48.4105350Z CC block/blk-lib.o
2025-10-31T05:29:48.7201435Z CC arch/x86/mm/pf_in.o
2025-10-31T05:29:48.7496598Z CC [M] crypto/ccm.o
2025-10-31T05:29:49.2222917Z CC block/blk-mq.o
2025-10-31T05:29:49.4835252Z CC arch/x86/mm/mmio-mod.o
2025-10-31T05:29:49.9940653Z CC [M] crypto/chacha20poly1305.o
2025-10-31T05:29:50.3359672Z CC kernel/softirq.o
2025-10-31T05:29:50.3700293Z CC arch/x86/mm/numa.o
2025-10-31T05:29:51.1897423Z CC [M] crypto/aegis128-core.o
2025-10-31T05:29:51.6703263Z CC kernel/resource.o
2025-10-31T05:29:51.7614374Z CC arch/x86/mm/numa_64.o
2025-10-31T05:29:52.2439509Z CC [M] crypto/pcrypt.o
2025-10-31T05:29:52.2654842Z CC arch/x86/mm/amdtopology.o
2025-10-31T05:29:52.3889101Z CC block/blk-mq-tag.o
2025-10-31T05:29:52.4583899Z CC [M] fs/ext4/migrate.o
2025-10-31T05:29:52.8898429Z CC [M] crypto/cryptd.o
2025-10-31T05:29:53.1674851Z CC kernel/sysctl.o
2025-10-31T05:29:53.1981614Z CC arch/x86/mm/srat.o
2025-10-31T05:29:53.3803111Z CC [M] fs/ext4/mmp.o
2025-10-31T05:29:53.5840925Z CC block/blk-stat.o
2025-10-31T05:29:54.0010331Z CC arch/x86/mm/pkeys.o
2025-10-31T05:29:54.1841332Z CC [M] crypto/des_generic.o
2025-10-31T05:29:54.2776112Z CC [M] fs/ext4/move_extent.o
2025-10-31T05:29:54.4440806Z CC block/blk-mq-sysfs.o
2025-10-31T05:29:54.6586347Z CC [M] crypto/fcrypt.o
2025-10-31T05:29:54.8165086Z CC arch/x86/mm/kaslr.o
2025-10-31T05:29:55.0586819Z CC kernel/capability.o
2025-10-31T05:29:55.2721107Z CC [M] crypto/blowfish_generic.o
2025-10-31T05:29:55.3166022Z CC block/blk-mq-cpumap.o
2025-10-31T05:29:55.5384922Z CC arch/x86/mm/pti.o
2025-10-31T05:29:55.6063658Z CC [M] fs/ext4/namei.o
2025-10-31T05:29:55.9140854Z CC kernel/ptrace.o
2025-10-31T05:29:55.9427182Z CC block/blk-mq-sched.o
2025-10-31T05:29:56.1469622Z CC [M] crypto/blowfish_common.o
2025-10-31T05:29:56.6407362Z CC arch/x86/mm/mem_encrypt.o
2025-10-31T05:29:56.9176712Z CC [M] crypto/twofish_generic.o
2025-10-31T05:29:57.0928317Z CC block/ioctl.o
2025-10-31T05:29:57.4021548Z CC kernel/user.o
2025-10-31T05:29:57.4778426Z CC arch/x86/mm/mem_encrypt_identity.o
2025-10-31T05:29:57.7141487Z CC [M] crypto/twofish_common.o
2025-10-31T05:29:57.9665142Z CC kernel/signal.o
2025-10-31T05:29:58.2333501Z AS arch/x86/mm/mem_encrypt_boot.o
2025-10-31T05:29:58.3043148Z CC block/genhd.o
2025-10-31T05:29:58.3598556Z AR arch/x86/mm/built-in.a
2025-10-31T05:29:58.4264118Z AS arch/x86/crypto/blake2s-core.o
2025-10-31T05:29:58.5042314Z CC arch/x86/crypto/blake2s-glue.o
2025-10-31T05:29:58.5821051Z CC [M] crypto/serpent_generic.o
2025-10-31T05:29:58.9704348Z CC [M] arch/x86/crypto/glue_helper.o
2025-10-31T05:29:59.0745669Z CC [M] fs/ext4/page-io.o
2025-10-31T05:29:59.8869764Z AS [M] arch/x86/crypto/twofish-x86_64-asm_64.o
2025-10-31T05:29:59.9267699Z CC [M] arch/x86/crypto/twofish_glue.o
2025-10-31T05:29:59.9624135Z CC block/ioprio.o
2025-10-31T05:30:00.2656204Z AS [M] arch/x86/crypto/twofish-x86_64-asm_64-3way.o
2025-10-31T05:30:00.3523461Z CC [M] arch/x86/crypto/twofish_glue_3way.o
2025-10-31T05:30:00.3753042Z CC [M] fs/ext4/readpage.o
2025-10-31T05:30:00.3930368Z CC [M] crypto/sm4_generic.o
2025-10-31T05:30:00.8626088Z AS [M] arch/x86/crypto/twofish-avx-x86_64-asm_64.o
2025-10-31T05:30:00.8776166Z CC block/badblocks.o
2025-10-31T05:30:00.9813041Z CC [M] arch/x86/crypto/twofish_avx_glue.o
2025-10-31T05:30:01.0085911Z CC [M] crypto/aes_ti.o
2025-10-31T05:30:01.4477599Z CC [M] crypto/camellia_generic.o
2025-10-31T05:30:01.4723819Z CC [M] fs/ext4/resize.o
2025-10-31T05:30:01.5010190Z AS [M] arch/x86/crypto/serpent-sse2-x86_64-asm_64.o
2025-10-31T05:30:01.5744453Z CC [M] arch/x86/crypto/serpent_sse2_glue.o
2025-10-31T05:30:01.6279177Z CC block/blk-rq-qos.o
2025-10-31T05:30:01.8126847Z CC kernel/sys.o
2025-10-31T05:30:02.1100809Z AS [M] arch/x86/crypto/serpent-avx-x86_64-asm_64.o
2025-10-31T05:30:02.2592799Z CC [M] arch/x86/crypto/serpent_avx_glue.o
2025-10-31T05:30:02.4433262Z CC block/bounce.o
2025-10-31T05:30:02.7968775Z AS [M] arch/x86/crypto/serpent-avx2-asm_64.o
2025-10-31T05:30:02.8512903Z CC [M] crypto/cast_common.o
2025-10-31T05:30:02.8698333Z CC [M] arch/x86/crypto/serpent_avx2_glue.o
2025-10-31T05:30:03.2539374Z CC [M] crypto/cast5_generic.o
2025-10-31T05:30:03.3061042Z AS [M] arch/x86/crypto/des3_ede-asm_64.o
2025-10-31T05:30:03.4587413Z CC [M] arch/x86/crypto/des3_ede_glue.o
2025-10-31T05:30:03.6925374Z CC block/scsi_ioctl.o
2025-10-31T05:30:03.7836663Z CC [M] fs/ext4/super.o
2025-10-31T05:30:03.8922493Z CC [M] crypto/cast6_generic.o
2025-10-31T05:30:04.1249162Z AS [M] arch/x86/crypto/camellia-x86_64-asm_64.o
2025-10-31T05:30:04.1876183Z CC [M] arch/x86/crypto/camellia_glue.o
2025-10-31T05:30:04.5221926Z CC [M] crypto/salsa20_generic.o
2025-10-31T05:30:04.5995576Z CC kernel/umh.o
2025-10-31T05:30:04.8389824Z CC block/bsg.o
2025-10-31T05:30:05.0568851Z CC [M] crypto/chacha_generic.o
2025-10-31T05:30:05.1124703Z AS [M] arch/x86/crypto/camellia-aesni-avx-asm_64.o
2025-10-31T05:30:05.2265964Z CC [M] arch/x86/crypto/camellia_aesni_avx_glue.o
2025-10-31T05:30:05.6048919Z CC [M] crypto/poly1305_generic.o
2025-10-31T05:30:05.6442661Z CC kernel/workqueue.o
2025-10-31T05:30:05.7243503Z CC block/bsg-lib.o
2025-10-31T05:30:05.7278019Z AS [M] arch/x86/crypto/camellia-aesni-avx2-asm_64.o
2025-10-31T05:30:05.7850134Z CC [M] arch/x86/crypto/camellia_aesni_avx2_glue.o
2025-10-31T05:30:06.2646329Z CC [M] crypto/deflate.o
2025-10-31T05:30:06.2717762Z AS [M] arch/x86/crypto/blowfish-x86_64-asm_64.o
2025-10-31T05:30:06.3209364Z CC [M] arch/x86/crypto/blowfish_glue.o
2025-10-31T05:30:06.6724088Z CC block/blk-cgroup.o
2025-10-31T05:30:06.9800487Z AS [M] arch/x86/crypto/cast5-avx-x86_64-asm_64.o
2025-10-31T05:30:07.1324940Z CC [M] arch/x86/crypto/cast5_avx_glue.o
2025-10-31T05:30:07.2165742Z CC [M] crypto/michael_mic.o
2025-10-31T05:30:07.7586113Z AS [M] arch/x86/crypto/cast6-avx-x86_64-asm_64.o
2025-10-31T05:30:07.9293695Z CC [M] crypto/crc32c_generic.o
2025-10-31T05:30:07.9504395Z CC [M] arch/x86/crypto/cast6_avx_glue.o
2025-10-31T05:30:08.3776442Z CC [M] crypto/crc32_generic.o
2025-10-31T05:30:08.4565539Z CC block/blk-cgroup-rwstat.o
2025-10-31T05:30:08.5853989Z AS [M] arch/x86/crypto/aegis128-aesni-asm.o
2025-10-31T05:30:08.6825939Z CC [M] arch/x86/crypto/aegis128-aesni-glue.o
2025-10-31T05:30:08.7923640Z CC kernel/pid.o
2025-10-31T05:30:08.8213207Z CC [M] crypto/authenc.o
2025-10-31T05:30:09.2391626Z CC block/blk-throttle.o
2025-10-31T05:30:09.5699738Z AS [M] arch/x86/crypto/chacha-avx2-x86_64.o
2025-10-31T05:30:09.6632902Z AS [M] arch/x86/crypto/chacha-ssse3-x86_64.o
2025-10-31T05:30:09.7466861Z CC [M] arch/x86/crypto/chacha_glue.o
2025-10-31T05:30:09.9395368Z CC [M] crypto/authencesn.o
2025-10-31T05:30:10.2890301Z AS [M] arch/x86/crypto/chacha-avx512vl-x86_64.o
2025-10-31T05:30:10.3534508Z AS [M] arch/x86/crypto/aesni-intel_asm.o
2025-10-31T05:30:10.4780211Z CC [M] arch/x86/crypto/aesni-intel_glue.o
2025-10-31T05:30:10.5598862Z CC kernel/task_work.o
2025-10-31T05:30:11.1372761Z CC [M] crypto/lzo.o
2025-10-31T05:30:11.3346350Z CC kernel/extable.o
2025-10-31T05:30:11.4507672Z CC block/blk-iolatency.o
2025-10-31T05:30:11.4861270Z AS [M] arch/x86/crypto/aesni-intel_avx-x86_64.o
2025-10-31T05:30:11.8141717Z CC [M] crypto/lzo-rle.o
2025-10-31T05:30:11.8771389Z AS [M] arch/x86/crypto/aes_ctrby8_avx-x86_64.o
2025-10-31T05:30:12.0112419Z AS [M] arch/x86/crypto/sha1_avx2_x86_64_asm.o
2025-10-31T05:30:12.1330565Z AS [M] arch/x86/crypto/sha1_ssse3_asm.o
2025-10-31T05:30:12.2413207Z CC [M] arch/x86/crypto/sha1_ssse3_glue.o
2025-10-31T05:30:12.2419820Z CC kernel/params.o
2025-10-31T05:30:12.4463835Z CC [M] crypto/lz4hc.o
2025-10-31T05:30:12.6773265Z CC block/blk-iocost.o
2025-10-31T05:30:12.9893220Z CC [M] crypto/xxhash_generic.o
2025-10-31T05:30:13.1918685Z AS [M] arch/x86/crypto/sha1_ni_asm.o
2025-10-31T05:30:13.2437732Z CC kernel/kthread.o
2025-10-31T05:30:13.2745652Z AS [M] arch/x86/crypto/sha256-ssse3-asm.o
2025-10-31T05:30:13.3643449Z AS [M] arch/x86/crypto/sha256-avx-asm.o
2025-10-31T05:30:13.4398790Z AS [M] arch/x86/crypto/sha256-avx2-asm.o
2025-10-31T05:30:13.4550910Z CC [M] crypto/842.o
2025-10-31T05:30:13.5199455Z CC [M] arch/x86/crypto/sha256_ssse3_glue.o
2025-10-31T05:30:13.8895117Z CC [M] crypto/ansi_cprng.o
2025-10-31T05:30:14.0401576Z CC [M] fs/ext4/symlink.o
2025-10-31T05:30:14.3757108Z AS [M] arch/x86/crypto/sha256_ni_asm.o
2025-10-31T05:30:14.3889833Z CC [M] crypto/drbg.o
2025-10-31T05:30:14.4479810Z AS [M] arch/x86/crypto/sha512-ssse3-asm.o
2025-10-31T05:30:14.5356929Z AS [M] arch/x86/crypto/sha512-avx-asm.o
2025-10-31T05:30:14.5843308Z AS [M] arch/x86/crypto/sha512-avx2-asm.o
2025-10-31T05:30:14.6474873Z CC [M] arch/x86/crypto/sha512_ssse3_glue.o
2025-10-31T05:30:14.7063726Z CC kernel/sys_ni.o
2025-10-31T05:30:14.7064912Z CC [M] fs/ext4/sysfs.o
2025-10-31T05:30:15.4983638Z CC [M] arch/x86/crypto/blake2s-shash.o
2025-10-31T05:30:15.5169491Z CC kernel/nsproxy.o
2025-10-31T05:30:15.6080312Z CC block/mq-deadline.o
2025-10-31T05:30:15.8202778Z CC [M] fs/ext4/xattr.o
2025-10-31T05:30:16.0567914Z AS [M] arch/x86/crypto/ghash-clmulni-intel_asm.o
2025-10-31T05:30:16.1381869Z CC [M] arch/x86/crypto/ghash-clmulni-intel_glue.o
2025-10-31T05:30:16.2143001Z CC [M] crypto/tcrypt.o
2025-10-31T05:30:16.6240434Z CC block/kyber-iosched.o
2025-10-31T05:30:16.7248776Z CC kernel/notifier.o
2025-10-31T05:30:16.7916312Z CC [M] arch/x86/crypto/crc32c-intel_glue.o
2025-10-31T05:30:17.3732896Z AS [M] arch/x86/crypto/crc32c-pcl-intel-asm_64.o
2025-10-31T05:30:17.4775840Z AS [M] arch/x86/crypto/crc32-pclmul_asm.o
2025-10-31T05:30:17.5098173Z CC kernel/ksysfs.o
2025-10-31T05:30:17.5643132Z CC [M] arch/x86/crypto/crc32-pclmul_glue.o
2025-10-31T05:30:18.1054655Z CC kernel/cred.o
2025-10-31T05:30:18.1160593Z AS [M] arch/x86/crypto/crct10dif-pcl-asm_64.o
2025-10-31T05:30:18.1598496Z CC [M] arch/x86/crypto/crct10dif-pclmul_glue.o
2025-10-31T05:30:18.2773559Z CC block/bfq-iosched.o
2025-10-31T05:30:18.5716966Z CC [M] fs/ext4/xattr_hurd.o
2025-10-31T05:30:18.7563095Z CC [M] crypto/ghash-generic.o
2025-10-31T05:30:18.8161003Z PERLASM arch/x86/crypto/poly1305-x86_64-cryptogams.S
2025-10-31T05:30:18.8770036Z CC [M] arch/x86/crypto/poly1305_glue.o
2025-10-31T05:30:19.0615429Z CC kernel/reboot.o
2025-10-31T05:30:19.2035692Z CC [M] fs/ext4/xattr_trusted.o
2025-10-31T05:30:19.2523558Z CC [M] crypto/af_alg.o
2025-10-31T05:30:19.3972959Z AS [M] arch/x86/crypto/nh-sse2-x86_64.o
2025-10-31T05:30:19.4376940Z CC [M] arch/x86/crypto/nhpoly1305-sse2-glue.o
2025-10-31T05:30:19.8501513Z CC [M] fs/ext4/xattr_user.o
2025-10-31T05:30:19.8903510Z AS [M] arch/x86/crypto/nh-avx2-x86_64.o
2025-10-31T05:30:19.9298471Z CC [M] arch/x86/crypto/nhpoly1305-avx2-glue.o
2025-10-31T05:30:20.2942241Z CC kernel/async.o
2025-10-31T05:30:20.4044109Z CC [M] arch/x86/crypto/curve25519-x86_64.o
2025-10-31T05:30:20.5146445Z CC [M] fs/ext4/fast_commit.o
2025-10-31T05:30:20.9905697Z CC kernel/range.o
2025-10-31T05:30:21.2430018Z CC [M] crypto/algif_hash.o
2025-10-31T05:30:21.3122494Z LD [M] arch/x86/crypto/twofish-x86_64.o
2025-10-31T05:30:21.3202698Z CC kernel/smpboot.o
2025-10-31T05:30:21.3321585Z LD [M] arch/x86/crypto/twofish-x86_64-3way.o
2025-10-31T05:30:21.3556078Z LD [M] arch/x86/crypto/twofish-avx-x86_64.o
2025-10-31T05:30:21.3777980Z LD [M] arch/x86/crypto/serpent-sse2-x86_64.o
2025-10-31T05:30:21.3986537Z LD [M] arch/x86/crypto/serpent-avx-x86_64.o
2025-10-31T05:30:21.4247220Z LD [M] arch/x86/crypto/serpent-avx2.o
2025-10-31T05:30:21.4371265Z CC block/bfq-wf2q.o
2025-10-31T05:30:21.4433611Z LD [M] arch/x86/crypto/des3_ede-x86_64.o
2025-10-31T05:30:21.4623625Z LD [M] arch/x86/crypto/camellia-x86_64.o
2025-10-31T05:30:21.4870104Z LD [M] arch/x86/crypto/camellia-aesni-avx-x86_64.o
2025-10-31T05:30:21.5104796Z LD [M] arch/x86/crypto/camellia-aesni-avx2.o
2025-10-31T05:30:21.5336735Z LD [M] arch/x86/crypto/blowfish-x86_64.o
2025-10-31T05:30:21.5609998Z LD [M] arch/x86/crypto/cast5-avx-x86_64.o
2025-10-31T05:30:21.5869355Z LD [M] arch/x86/crypto/cast6-avx-x86_64.o
2025-10-31T05:30:21.6149630Z LD [M] arch/x86/crypto/aegis128-aesni.o
2025-10-31T05:30:21.6368550Z LD [M] arch/x86/crypto/chacha-x86_64.o
2025-10-31T05:30:21.6639580Z LD [M] arch/x86/crypto/aesni-intel.o
2025-10-31T05:30:21.6973995Z LD [M] arch/x86/crypto/sha1-ssse3.o
2025-10-31T05:30:21.7219508Z LD [M] arch/x86/crypto/sha256-ssse3.o
2025-10-31T05:30:21.7499637Z LD [M] arch/x86/crypto/sha512-ssse3.o
2025-10-31T05:30:21.7804054Z LD [M] arch/x86/crypto/blake2s-x86_64.o
2025-10-31T05:30:21.8019442Z LD [M] arch/x86/crypto/ghash-clmulni-intel.o
2025-10-31T05:30:21.8259068Z LD [M] arch/x86/crypto/crc32c-intel.o
2025-10-31T05:30:21.8440226Z LD [M] arch/x86/crypto/crc32-pclmul.o
2025-10-31T05:30:21.8585832Z LD [M] arch/x86/crypto/crct10dif-pclmul.o
2025-10-31T05:30:21.8828138Z AS [M] arch/x86/crypto/poly1305-x86_64-cryptogams.o
2025-10-31T05:30:21.9098625Z CC kernel/ucount.o
2025-10-31T05:30:21.9484202Z LD [M] arch/x86/crypto/nhpoly1305-sse2.o
2025-10-31T05:30:21.9601612Z LD [M] arch/x86/crypto/nhpoly1305-avx2.o
2025-10-31T05:30:21.9718187Z AR arch/x86/crypto/built-in.a
2025-10-31T05:30:22.1022399Z LD [M] arch/x86/crypto/poly1305-x86_64.o
2025-10-31T05:30:22.1580516Z CC arch/x86/ia32/ia32_signal.o
2025-10-31T05:30:22.5736061Z CC [M] crypto/algif_skcipher.o
2025-10-31T05:30:22.6632897Z CC block/bfq-cgroup.o
2025-10-31T05:30:22.6776228Z CC kernel/regset.o
2025-10-31T05:30:22.8541306Z CC [M] fs/ext4/acl.o
2025-10-31T05:30:23.1040438Z CC arch/x86/ia32/audit.o
2025-10-31T05:30:23.1999244Z CC kernel/kmod.o
2025-10-31T05:30:23.2176263Z AR arch/x86/ia32/built-in.a
2025-10-31T05:30:23.2566503Z AR arch/x86/platform/atom/built-in.a
2025-10-31T05:30:23.2916156Z AR arch/x86/platform/ce4100/built-in.a
2025-10-31T05:30:23.3264033Z CC arch/x86/platform/efi/memmap.o
2025-10-31T05:30:23.6258436Z CC block/bio-integrity.o
2025-10-31T05:30:23.8846697Z CC [M] crypto/algif_rng.o
2025-10-31T05:30:24.0004547Z CC [M] fs/ext4/xattr_security.o
2025-10-31T05:30:24.1501294Z CC arch/x86/platform/efi/quirks.o
2025-10-31T05:30:24.3083672Z CC kernel/groups.o
2025-10-31T05:30:24.6699827Z CC block/blk-integrity.o
2025-10-31T05:30:24.8542168Z CC [M] fs/ext4/verity.o
2025-10-31T05:30:24.9197845Z CC [M] crypto/algif_aead.o
2025-10-31T05:30:25.0716897Z CC arch/x86/platform/efi/efi.o
2025-10-31T05:30:25.1958899Z CC kernel/kcmp.o
2025-10-31T05:30:25.8924741Z LD [M] fs/ext4/ext4.o
2025-10-31T05:30:25.8941247Z CC block/t10-pi.o
2025-10-31T05:30:25.9612748Z CC kernel/freezer.o
2025-10-31T05:30:26.1648760Z CC [M] fs/cramfs/inode.o
2025-10-31T05:30:26.2035994Z CC arch/x86/platform/efi/efi_64.o
2025-10-31T05:30:26.2302479Z CC [M] crypto/ofb.o
2025-10-31T05:30:26.6411021Z CC [M] crypto/ecc.o
2025-10-31T05:30:26.7258436Z CC kernel/profile.o
2025-10-31T05:30:26.9570467Z CC block/blk-mq-pci.o
2025-10-31T05:30:27.5333485Z CC [M] fs/cramfs/uncompress.o
2025-10-31T05:30:27.6925052Z AS arch/x86/platform/efi/efi_stub_64.o
2025-10-31T05:30:27.7164871Z CC block/blk-mq-virtio.o
2025-10-31T05:30:27.7436065Z AS arch/x86/platform/efi/efi_thunk_64.o
2025-10-31T05:30:27.7785146Z CC kernel/stacktrace.o
2025-10-31T05:30:27.8094783Z AR arch/x86/platform/efi/built-in.a
2025-10-31T05:30:27.8444173Z AR arch/x86/platform/geode/built-in.a
2025-10-31T05:30:27.8615493Z LD [M] fs/cramfs/cramfs.o
2025-10-31T05:30:27.8900644Z AR arch/x86/platform/goldfish/built-in.a
2025-10-31T05:30:27.9442581Z CC [M] fs/squashfs/block.o
2025-10-31T05:30:27.9444758Z AR arch/x86/platform/iris/built-in.a
2025-10-31T05:30:27.9815187Z CC arch/x86/platform/intel/iosf_mbi.o
2025-10-31T05:30:28.3743889Z CC kernel/dma.o
2025-10-31T05:30:28.4439618Z CC block/blk-mq-rdma.o
2025-10-31T05:30:28.7481679Z AR arch/x86/platform/intel/built-in.a
2025-10-31T05:30:28.7673565Z CC [M] crypto/essiv.o
2025-10-31T05:30:28.7871933Z AR arch/x86/platform/intel-mid/built-in.a
2025-10-31T05:30:28.8098555Z CC [M] fs/squashfs/cache.o
2025-10-31T05:30:28.8215364Z CC kernel/smp.o
2025-10-31T05:30:28.8440962Z AR arch/x86/platform/intel-quark/built-in.a
2025-10-31T05:30:28.9152328Z AR arch/x86/platform/olpc/built-in.a
2025-10-31T05:30:28.9862424Z AR arch/x86/platform/scx200/built-in.a
2025-10-31T05:30:29.0582873Z AR arch/x86/platform/sfi/built-in.a
2025-10-31T05:30:29.1288119Z AR arch/x86/platform/ts5500/built-in.a
2025-10-31T05:30:29.2032435Z AR arch/x86/platform/uv/built-in.a
2025-10-31T05:30:29.2463727Z AR arch/x86/platform/built-in.a
2025-10-31T05:30:29.3540554Z CC arch/x86/net/bpf_jit_comp.o
2025-10-31T05:30:29.5496977Z CC kernel/uid16.o
2025-10-31T05:30:29.6402796Z CC [M] fs/squashfs/dir.o
2025-10-31T05:30:29.6480407Z CC [M] crypto/curve25519-generic.o
2025-10-31T05:30:29.7163790Z CC block/blk-zoned.o
2025-10-31T05:30:30.1989696Z CC [M] fs/squashfs/export.o
2025-10-31T05:30:30.4116652Z CC [M] crypto/ecdh.o
2025-10-31T05:30:30.6710572Z CC [M] fs/squashfs/file.o
2025-10-31T05:30:30.7111315Z CC kernel/module.o
2025-10-31T05:30:30.8082291Z CC block/blk-wbt.o
2025-10-31T05:30:31.2766013Z CC [M] crypto/ecdh_helper.o
2025-10-31T05:30:31.6567456Z CC [M] fs/squashfs/fragment.o
2025-10-31T05:30:31.6950925Z ASN.1 crypto/ecrdsa_params.asn1.[ch]
2025-10-31T05:30:31.7051385Z ASN.1 crypto/ecrdsa_pub_key.asn1.[ch]
2025-10-31T05:30:31.7181573Z CC [M] crypto/ecrdsa_params.asn1.o
2025-10-31T05:30:31.8250906Z AR arch/x86/net/built-in.a
2025-10-31T05:30:31.8520466Z CC [M] crypto/ecrdsa_pub_key.asn1.o
2025-10-31T05:30:31.8681147Z CC arch/x86/purgatory/purgatory.o
2025-10-31T05:30:31.9193343Z CC [M] crypto/xor.o
2025-10-31T05:30:32.0797878Z AS arch/x86/purgatory/stack.o
2025-10-31T05:30:32.0854054Z CC [M] fs/squashfs/id.o
2025-10-31T05:30:32.1199226Z AS arch/x86/purgatory/setup-x86_64.o
2025-10-31T05:30:32.1587565Z CC arch/x86/purgatory/sha256.o
2025-10-31T05:30:32.4117104Z CC [M] crypto/simd.o
2025-10-31T05:30:32.5156669Z CC block/blk-mq-debugfs.o
2025-10-31T05:30:32.6013456Z CC [M] fs/squashfs/inode.o
2025-10-31T05:30:32.9605499Z AS arch/x86/purgatory/entry64.o
2025-10-31T05:30:33.0099096Z CC arch/x86/purgatory/string.o
2025-10-31T05:30:33.2456953Z LD arch/x86/purgatory/purgatory.ro
2025-10-31T05:30:33.2560394Z LD arch/x86/purgatory/purgatory.chk
2025-10-31T05:30:33.2663340Z BIN2C arch/x86/purgatory/kexec-purgatory.c
2025-10-31T05:30:33.2785102Z CC arch/x86/purgatory/kexec-purgatory.o
2025-10-31T05:30:33.3321263Z CC [M] fs/squashfs/namei.o
2025-10-31T05:30:33.3550361Z AR arch/x86/purgatory/built-in.a
2025-10-31T05:30:33.3845318Z CC [M] crypto/sm2signature.asn1.o
2025-10-31T05:30:33.4074822Z CC [M] arch/x86/kvm/../../../virt/kvm/kvm_main.o
2025-10-31T05:30:33.5122789Z CC [M] crypto/sm2.o
2025-10-31T05:30:33.5689504Z CC block/blk-mq-debugfs-zoned.o
2025-10-31T05:30:33.9252127Z CC kernel/module_signing.o
2025-10-31T05:30:34.0093503Z CC [M] fs/squashfs/super.o
2025-10-31T05:30:34.2714534Z CC block/sed-opal.o
2025-10-31T05:30:34.3838972Z CC kernel/module_signature.o
2025-10-31T05:30:34.3878952Z LD [M] crypto/crypto_user.o
2025-10-31T05:30:34.4023736Z LD [M] crypto/aegis128.o
2025-10-31T05:30:34.4160576Z LD [M] crypto/ecdh_generic.o
2025-10-31T05:30:34.4289779Z CC [M] crypto/ecrdsa.o
2025-10-31T05:30:34.5761149Z CC kernel/kallsyms.o
2025-10-31T05:30:34.9096345Z CC [M] fs/squashfs/symlink.o
2025-10-31T05:30:35.2221191Z LD [M] crypto/crypto_simd.o
2025-10-31T05:30:35.2492671Z CC crypto/rsapubkey.asn1.o
2025-10-31T05:30:35.3972431Z CC crypto/rsaprivkey.asn1.o
2025-10-31T05:30:35.5639736Z LD [M] crypto/sm2_generic.o
2025-10-31T05:30:35.6815564Z CC [M] fs/squashfs/decompressor.o
2025-10-31T05:30:35.7920888Z CC block/blk-pm.o
2025-10-31T05:30:35.8251312Z CC kernel/acct.o
2025-10-31T05:30:36.1020916Z LD [M] crypto/ecrdsa_generic.o
2025-10-31T05:30:36.1689496Z AR crypto/built-in.a
2025-10-31T05:30:36.2208492Z CC block/keyslot-manager.o
2025-10-31T05:30:36.2779124Z CC [M] fs/squashfs/file_direct.o
2025-10-31T05:30:36.3935810Z CC [M] arch/x86/kvm/../../../virt/kvm/coalesced_mmio.o
2025-10-31T05:30:37.0451597Z CC [M] fs/squashfs/page_actor.o
2025-10-31T05:30:37.0488131Z CC kernel/crash_core.o
2025-10-31T05:30:37.1208135Z CC block/blk-crypto.o
2025-10-31T05:30:37.3389526Z CC [M] arch/x86/kvm/../../../virt/kvm/eventfd.o
2025-10-31T05:30:37.5755796Z CC [M] fs/squashfs/decompressor_multi_percpu.o
2025-10-31T05:30:37.8787243Z CC block/blk-crypto-fallback.o
2025-10-31T05:30:37.9537605Z CC kernel/kexec_core.o
2025-10-31T05:30:38.1595854Z CC [M] fs/squashfs/xattr.o
2025-10-31T05:30:38.3506536Z CC [M] fs/coda/psdev.o
2025-10-31T05:30:38.8046990Z CC [M] fs/squashfs/xattr_id.o
2025-10-31T05:30:39.0114305Z CC [M] arch/x86/kvm/../../../virt/kvm/irqchip.o
2025-10-31T05:30:39.2187553Z AR block/built-in.a
2025-10-31T05:30:39.2354665Z AR arch/x86/built-in.a
2025-10-31T05:30:39.2671015Z CC [M] fs/squashfs/lz4_wrapper.o
2025-10-31T05:30:39.3156201Z CC kernel/kexec.o
2025-10-31T05:30:39.3594601Z CC [M] fs/coda/cache.o
2025-10-31T05:30:39.5492697Z CC io_uring/io_uring.o
2025-10-31T05:30:39.9205718Z CC [M] fs/squashfs/lzo_wrapper.o
2025-10-31T05:30:40.1275409Z CC [M] fs/coda/cnode.o
2025-10-31T05:30:40.1803275Z CC [M] arch/x86/kvm/../../../virt/kvm/vfio.o
2025-10-31T05:30:40.2344258Z CC kernel/kexec_file.o
2025-10-31T05:30:40.5569694Z CC [M] fs/squashfs/xz_wrapper.o
2025-10-31T05:30:40.9914921Z CC [M] fs/coda/inode.o
2025-10-31T05:30:41.0648089Z CC [M] arch/x86/kvm/../../../virt/kvm/async_pf.o
2025-10-31T05:30:41.2045469Z CC [M] fs/squashfs/zlib_wrapper.o
2025-10-31T05:30:41.7212214Z CC kernel/compat.o
2025-10-31T05:30:41.9135658Z CC [M] fs/squashfs/zstd_wrapper.o
2025-10-31T05:30:41.9819117Z CC [M] fs/coda/dir.o
2025-10-31T05:30:41.9969091Z CC [M] arch/x86/kvm/x86.o
2025-10-31T05:30:42.6109640Z CC kernel/utsname.o
2025-10-31T05:30:42.6727172Z LD [M] fs/squashfs/squashfs.o
2025-10-31T05:30:42.7284201Z CC [M] fs/coda/file.o
2025-10-31T05:30:42.8832926Z CC [M] arch/x86/kvm/emulate.o
2025-10-31T05:30:43.3063839Z CC kernel/user_namespace.o
2025-10-31T05:30:43.5978208Z CC [M] fs/coda/upcall.o
2025-10-31T05:30:44.4314248Z CC kernel/pid_namespace.o
2025-10-31T05:30:44.9855309Z CC [M] fs/coda/coda_linux.o
2025-10-31T05:30:45.2973564Z UPD kernel/config_data
2025-10-31T05:30:45.3061016Z CC kernel/stop_machine.o
2025-10-31T05:30:46.0166272Z CC [M] fs/coda/symlink.o
2025-10-31T05:30:46.2070893Z CC kernel/audit.o
2025-10-31T05:30:46.8263196Z CC [M] fs/coda/pioctl.o
2025-10-31T05:30:47.2541749Z AR drivers/irqchip/built-in.a
2025-10-31T05:30:47.2734911Z CC [M] drivers/irqchip/irq-madera.o
2025-10-31T05:30:47.6813285Z CC [M] fs/coda/sysctl.o
2025-10-31T05:30:47.9703106Z LD [M] fs/coda/coda.o
2025-10-31T05:30:48.0617988Z CC io_uring/io-wq.o
2025-10-31T05:30:48.0884442Z CC [M] fs/minix/bitmap.o
2025-10-31T05:30:48.2455746Z CC kernel/auditfilter.o
2025-10-31T05:30:48.3886919Z AR drivers/bus/mhi/host/built-in.a
2025-10-31T05:30:48.4127953Z CC [M] drivers/bus/mhi/host/init.o
2025-10-31T05:30:48.8579876Z CC [M] fs/minix/itree_v1.o
2025-10-31T05:30:49.6894125Z CC [M] drivers/bus/mhi/host/main.o
2025-10-31T05:30:49.8051204Z AR io_uring/built-in.a
2025-10-31T05:30:49.8291423Z CC [M] drivers/bus/mhi/host/pm.o
2025-10-31T05:30:49.8374280Z CC [M] fs/minix/itree_v2.o
2025-10-31T05:30:49.9845577Z CC kernel/auditsc.o
2025-10-31T05:30:50.7804916Z CC [M] fs/minix/namei.o
2025-10-31T05:30:51.2796283Z CC [M] arch/x86/kvm/i8259.o
2025-10-31T05:30:51.4186065Z CC [M] drivers/bus/mhi/host/boot.o
2025-10-31T05:30:51.4808831Z CC [M] fs/minix/inode.o
2025-10-31T05:30:52.2925867Z CC kernel/audit_watch.o
2025-10-31T05:30:52.5638697Z CC [M] fs/fat/cache.o
2025-10-31T05:30:52.5836214Z CC [M] arch/x86/kvm/irq.o
2025-10-31T05:30:52.6399030Z CC [M] fs/minix/file.o
2025-10-31T05:30:52.7720928Z LD [M] drivers/bus/mhi/host/mhi.o
2025-10-31T05:30:52.8428779Z AR drivers/bus/mhi/built-in.a
2025-10-31T05:30:52.8844410Z AR drivers/bus/built-in.a
2025-10-31T05:30:52.9927437Z AR drivers/phy/allwinner/built-in.a
2025-10-31T05:30:53.0454424Z AR drivers/phy/amlogic/built-in.a
2025-10-31T05:30:53.0943612Z AR drivers/phy/broadcom/built-in.a
2025-10-31T05:30:53.1163017Z CC [M] drivers/phy/broadcom/phy-bcm-kona-usb2.o
2025-10-31T05:30:53.1540911Z CC [M] fs/minix/dir.o
2025-10-31T05:30:53.2642937Z CC [M] fs/fat/dir.o
2025-10-31T05:30:53.2744850Z CC kernel/audit_fsnotify.o
2025-10-31T05:30:53.5545391Z CC [M] arch/x86/kvm/lapic.o
2025-10-31T05:30:53.8301790Z AR drivers/phy/cadence/built-in.a
2025-10-31T05:30:53.8645998Z AR drivers/phy/freescale/built-in.a
2025-10-31T05:30:53.9337041Z AR drivers/phy/hisilicon/built-in.a
2025-10-31T05:30:54.0021669Z AR drivers/phy/intel/built-in.a
2025-10-31T05:30:54.0233401Z CC [M] drivers/phy/intel/phy-intel-lgm-emmc.o
2025-10-31T05:30:54.1128052Z CC kernel/audit_tree.o
2025-10-31T05:30:54.2717447Z LD [M] fs/minix/minix.o
2025-10-31T05:30:54.3536753Z CC kernel/kprobes.o
2025-10-31T05:30:54.9010825Z AR drivers/phy/lantiq/built-in.a
2025-10-31T05:30:54.9403483Z AR drivers/phy/marvell/built-in.a
2025-10-31T05:30:54.9481592Z CC [M] drivers/phy/marvell/phy-pxa-28nm-hsic.o
2025-10-31T05:30:55.1406512Z CC [M] fs/fat/fatent.o
2025-10-31T05:30:55.5010009Z CC [M] drivers/phy/marvell/phy-pxa-28nm-usb2.o
2025-10-31T05:30:55.9732408Z CC [M] sound/core/oss/mixer_oss.o
2025-10-31T05:30:56.4467743Z AR drivers/phy/mediatek/built-in.a
2025-10-31T05:30:56.4637969Z CC [M] fs/fat/file.o
2025-10-31T05:30:56.4869076Z CC [M] arch/x86/kvm/i8254.o
2025-10-31T05:30:56.5178789Z AR drivers/phy/motorola/built-in.a
2025-10-31T05:30:56.5392756Z CC [M] drivers/phy/motorola/phy-cpcap-usb.o
2025-10-31T05:30:56.6013611Z CC kernel/hung_task.o
2025-10-31T05:30:57.1939532Z CC [M] sound/core/oss/pcm_oss.o
2025-10-31T05:30:57.5612895Z CC kernel/watchdog.o
2025-10-31T05:30:57.6171783Z AR drivers/phy/mscc/built-in.a
2025-10-31T05:30:57.6181220Z CC [M] fs/fat/inode.o
2025-10-31T05:30:57.6693244Z AR drivers/phy/qualcomm/built-in.a
2025-10-31T05:30:57.6925574Z CC [M] drivers/phy/qualcomm/phy-qcom-usb-hs.o
2025-10-31T05:30:57.7117863Z CC [M] arch/x86/kvm/ioapic.o
2025-10-31T05:30:58.4293988Z CC kernel/watchdog_hld.o
2025-10-31T05:30:58.6483698Z CC [M] drivers/phy/qualcomm/phy-qcom-usb-hsic.o
2025-10-31T05:30:58.8629141Z CC [M] arch/x86/kvm/irq_comm.o
2025-10-31T05:30:59.2665440Z CC [M] fs/fat/misc.o
2025-10-31T05:30:59.4554087Z CC kernel/seccomp.o
2025-10-31T05:30:59.4959639Z CC [M] sound/core/oss/pcm_plugin.o
2025-10-31T05:30:59.6635623Z AR drivers/phy/ralink/built-in.a
2025-10-31T05:30:59.7360716Z AR drivers/phy/renesas/built-in.a
2025-10-31T05:30:59.8090234Z AR drivers/phy/rockchip/built-in.a
2025-10-31T05:30:59.8810456Z AR drivers/phy/samsung/built-in.a
2025-10-31T05:30:59.9372397Z AR drivers/phy/socionext/built-in.a
2025-10-31T05:30:59.9647524Z CC [M] arch/x86/kvm/cpuid.o
2025-10-31T05:30:59.9703400Z AR drivers/phy/st/built-in.a
2025-10-31T05:31:00.0237360Z CC [M] fs/fat/nfs.o
2025-10-31T05:31:00.0292230Z AR drivers/phy/tegra/built-in.a
2025-10-31T05:31:00.1051702Z AR drivers/phy/ti/built-in.a
2025-10-31T05:31:00.1240163Z CC [M] drivers/phy/ti/phy-tusb1210.o
2025-10-31T05:31:00.7074500Z CC [M] sound/core/oss/io.o
2025-10-31T05:31:00.7284266Z CC [M] fs/fat/namei_vfat.o
2025-10-31T05:31:01.0195807Z AR drivers/phy/xilinx/built-in.a
2025-10-31T05:31:01.0415968Z CC drivers/phy/phy-core.o
2025-10-31T05:31:01.3899713Z CC kernel/relay.o
2025-10-31T05:31:01.4197270Z CC [M] sound/core/oss/copy.o
2025-10-31T05:31:02.0679982Z CC [M] sound/core/oss/linear.o
2025-10-31T05:31:02.1094428Z CC [M] fs/fat/namei_msdos.o
2025-10-31T05:31:02.1756300Z CC [M] arch/x86/kvm/pmu.o
2025-10-31T05:31:02.2424671Z CC [M] drivers/phy/phy-lgm-usb.o
2025-10-31T05:31:02.5649164Z CC kernel/utsname_sysctl.o
2025-10-31T05:31:02.8943353Z CC [M] sound/core/oss/mulaw.o
2025-10-31T05:31:02.9612817Z CC kernel/delayacct.o
2025-10-31T05:31:03.0155639Z LD [M] fs/fat/fat.o
2025-10-31T05:31:03.0435716Z LD [M] fs/fat/vfat.o
2025-10-31T05:31:03.0572481Z LD [M] fs/fat/msdos.o
2025-10-31T05:31:03.1389010Z CC [M] fs/exfat/inode.o
2025-10-31T05:31:03.2214436Z AR drivers/phy/built-in.a
2025-10-31T05:31:03.3223278Z CC [M] arch/x86/kvm/mtrr.o
2025-10-31T05:31:03.3834859Z AR drivers/pinctrl/actions/built-in.a
2025-10-31T05:31:03.4403223Z AR drivers/pinctrl/bcm/built-in.a
2025-10-31T05:31:03.4810512Z CC kernel/taskstats.o
2025-10-31T05:31:03.5077937Z AR drivers/pinctrl/freescale/built-in.a
2025-10-31T05:31:03.5726639Z CC drivers/pinctrl/intel/pinctrl-baytrail.o
2025-10-31T05:31:03.6009453Z CC [M] sound/core/oss/route.o
2025-10-31T05:31:04.3311935Z CC [M] sound/core/oss/rate.o
2025-10-31T05:31:04.3889642Z CC [M] fs/exfat/namei.o
2025-10-31T05:31:04.4197719Z CC [M] arch/x86/kvm/hyperv.o
2025-10-31T05:31:04.4773534Z CC kernel/tsacct.o
2025-10-31T05:31:04.8099322Z CC drivers/pinctrl/intel/pinctrl-cherryview.o
2025-10-31T05:31:05.0440089Z LD [M] sound/core/oss/snd-mixer-oss.o
2025-10-31T05:31:05.0585199Z LD [M] sound/core/oss/snd-pcm-oss.o
2025-10-31T05:31:05.1397584Z CC [M] sound/core/seq/oss/seq_oss.o
2025-10-31T05:31:05.2243891Z CC kernel/tracepoint.o
2025-10-31T05:31:05.7218359Z CC [M] sound/core/seq/oss/seq_oss_init.o
2025-10-31T05:31:05.7578593Z CC [M] fs/exfat/dir.o
2025-10-31T05:31:06.2064833Z CC drivers/pinctrl/intel/pinctrl-lynxpoint.o
2025-10-31T05:31:06.2435208Z CC kernel/latencytop.o
2025-10-31T05:31:06.4362288Z CC [M] sound/core/seq/oss/seq_oss_timer.o
2025-10-31T05:31:06.5263861Z CC [M] arch/x86/kvm/debugfs.o
2025-10-31T05:31:07.0309847Z CC [M] sound/core/seq/oss/seq_oss_ioctl.o
2025-10-31T05:31:07.0817111Z CC kernel/irq_work.o
2025-10-31T05:31:07.1219260Z CC [M] fs/exfat/super.o
2025-10-31T05:31:07.1920963Z CC drivers/pinctrl/intel/pinctrl-intel.o
2025-10-31T05:31:07.3522533Z CC [M] arch/x86/kvm/mmu/mmu.o
2025-10-31T05:31:07.6626919Z CC kernel/static_call.o
2025-10-31T05:31:07.7489870Z CC [M] sound/core/seq/oss/seq_oss_event.o
2025-10-31T05:31:08.1091045Z CC [M] fs/exfat/fatent.o
2025-10-31T05:31:08.4191577Z CC kernel/user-return-notifier.o
2025-10-31T05:31:08.4363010Z CC [M] sound/core/seq/oss/seq_oss_rw.o
2025-10-31T05:31:08.8459413Z CC [M] fs/exfat/cache.o
2025-10-31T05:31:08.9307634Z CC drivers/pinctrl/intel/pinctrl-broxton.o
2025-10-31T05:31:08.9448675Z CC kernel/padata.o
2025-10-31T05:31:09.1077053Z CC [M] sound/core/seq/oss/seq_oss_synth.o
2025-10-31T05:31:09.4965536Z CC drivers/pinctrl/intel/pinctrl-cannonlake.o
2025-10-31T05:31:09.6969943Z CC [M] fs/exfat/nls.o
2025-10-31T05:31:09.9697542Z CC kernel/crash_dump.o
2025-10-31T05:31:10.0262812Z CC drivers/pinctrl/intel/pinctrl-cedarfork.o
2025-10-31T05:31:10.2303535Z CC [M] sound/core/seq/oss/seq_oss_midi.o
2025-10-31T05:31:10.5561631Z CC [M] fs/exfat/misc.o
2025-10-31T05:31:10.6323239Z CC kernel/jump_label.o
2025-10-31T05:31:10.6641239Z CC drivers/pinctrl/intel/pinctrl-denverton.o
2025-10-31T05:31:11.0983433Z CC [M] sound/core/seq/oss/seq_oss_readq.o
2025-10-31T05:31:11.2728037Z CC drivers/pinctrl/intel/pinctrl-emmitsburg.o
2025-10-31T05:31:11.2772296Z CC [M] fs/exfat/file.o
2025-10-31T05:31:11.6732639Z CC kernel/iomem.o
2025-10-31T05:31:11.7731031Z CC [M] sound/core/seq/oss/seq_oss_writeq.o
2025-10-31T05:31:11.8784708Z CC drivers/pinctrl/intel/pinctrl-geminilake.o
2025-10-31T05:31:12.2857262Z CC [M] fs/exfat/balloc.o
2025-10-31T05:31:12.3743923Z CC kernel/rseq.o
2025-10-31T05:31:12.4605161Z LD [M] sound/core/seq/oss/snd-seq-oss.o
2025-10-31T05:31:12.5138310Z CC drivers/pinctrl/intel/pinctrl-icelake.o
2025-10-31T05:31:12.5210034Z CC [M] sound/core/seq/seq.o
2025-10-31T05:31:13.0612812Z CC [M] sound/core/seq/seq_lock.o
2025-10-31T05:31:13.1290245Z CC drivers/pinctrl/intel/pinctrl-jasperlake.o
2025-10-31T05:31:13.2553311Z LD [M] fs/exfat/exfat.o
2025-10-31T05:31:13.3349809Z CC kernel/watch_queue.o
2025-10-31T05:31:13.3532448Z CC [M] fs/isofs/namei.o
2025-10-31T05:31:13.5109548Z CC [M] sound/core/seq/seq_clientmgr.o
2025-10-31T05:31:13.7933369Z CC drivers/pinctrl/intel/pinctrl-lewisburg.o
2025-10-31T05:31:13.9236241Z CC [M] fs/isofs/inode.o
2025-10-31T05:31:14.3789019Z CC [M] arch/x86/kvm/mmu/page_track.o
2025-10-31T05:31:14.3963098Z CC drivers/pinctrl/intel/pinctrl-sunrisepoint.o
2025-10-31T05:31:14.4680483Z CHK kernel/kheaders_data.tar.xz
2025-10-31T05:31:14.7745687Z GEN kernel/kheaders_data.tar.xz
2025-10-31T05:31:15.0235842Z CC drivers/pinctrl/intel/pinctrl-tigerlake.o
2025-10-31T05:31:15.1491737Z CC [M] sound/core/seq/seq_memory.o
2025-10-31T05:31:15.3010970Z CC [M] fs/isofs/dir.o
2025-10-31T05:31:15.3034388Z CC [M] arch/x86/kvm/mmu/spte.o
2025-10-31T05:31:15.6801784Z AR drivers/pinctrl/intel/built-in.a
2025-10-31T05:31:15.7331044Z AR drivers/pinctrl/mvebu/built-in.a
2025-10-31T05:31:15.7992738Z AR drivers/pinctrl/nomadik/built-in.a
2025-10-31T05:31:15.8518135Z AR drivers/pinctrl/sprd/built-in.a
2025-10-31T05:31:15.8848142Z AR drivers/pinctrl/ti/built-in.a
2025-10-31T05:31:15.9177796Z AR drivers/pinctrl/mediatek/built-in.a
2025-10-31T05:31:15.9549380Z AR drivers/pinctrl/cirrus/built-in.a
2025-10-31T05:31:15.9649287Z CC [M] drivers/pinctrl/cirrus/pinctrl-madera-core.o
2025-10-31T05:31:16.1357953Z CC [M] fs/isofs/util.o
2025-10-31T05:31:16.1907111Z CC [M] sound/core/seq/seq_queue.o
2025-10-31T05:31:16.4792189Z CC [M] arch/x86/kvm/mmu/tdp_iter.o
2025-10-31T05:31:16.6663717Z CC [M] fs/isofs/rock.o
2025-10-31T05:31:17.2760037Z CC [M] sound/core/seq/seq_fifo.o
2025-10-31T05:31:17.3474344Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l15.o
2025-10-31T05:31:17.5437397Z CC [M] arch/x86/kvm/mmu/tdp_mmu.o
2025-10-31T05:31:17.8863414Z CC [M] fs/isofs/export.o
2025-10-31T05:31:18.0934025Z CC [M] sound/core/seq/seq_prioq.o
2025-10-31T05:31:18.2413496Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l35.o
2025-10-31T05:31:18.6726218Z CC [M] fs/isofs/joliet.o
2025-10-31T05:31:18.9290278Z CC [M] sound/core/seq/seq_timer.o
2025-10-31T05:31:19.1541505Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l85.o
2025-10-31T05:31:19.3873274Z CC [M] fs/isofs/compress.o
2025-10-31T05:31:19.7296075Z CC [M] arch/x86/kvm/vmx/vmx.o
2025-10-31T05:31:19.9122638Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l90.o
2025-10-31T05:31:19.9163213Z CC [M] sound/core/seq/seq_system.o
2025-10-31T05:31:20.6193622Z LD [M] fs/isofs/isofs.o
2025-10-31T05:31:20.6297874Z CC [M] sound/core/seq/seq_ports.o
2025-10-31T05:31:20.7289761Z CC [M] fs/hfsplus/super.o
2025-10-31T05:31:20.8241334Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l92.o
2025-10-31T05:31:21.7664433Z LD [M] drivers/pinctrl/cirrus/pinctrl-madera.o
2025-10-31T05:31:21.7888233Z CC [M] sound/core/seq/seq_info.o
2025-10-31T05:31:21.8299164Z CC drivers/pinctrl/core.o
2025-10-31T05:31:22.1515160Z CC [M] fs/hfsplus/options.o
2025-10-31T05:31:22.4502173Z CC [M] sound/core/seq/seq_dummy.o
2025-10-31T05:31:23.1573375Z CC [M] fs/hfsplus/inode.o
2025-10-31T05:31:23.2858545Z CC [M] sound/core/seq/seq_midi.o
2025-10-31T05:31:23.6061037Z CC drivers/pinctrl/pinctrl-utils.o
2025-10-31T05:31:24.2719626Z CC [M] sound/core/seq/seq_midi_emul.o
2025-10-31T05:31:24.3736469Z CC drivers/pinctrl/pinmux.o
2025-10-31T05:31:24.4256287Z CC [M] fs/hfsplus/ioctl.o
2025-10-31T05:31:25.2367983Z CC [M] sound/core/seq/seq_midi_event.o
2025-10-31T05:31:25.3584788Z CC drivers/pinctrl/pinconf.o
2025-10-31T05:31:25.3598734Z CC [M] fs/hfsplus/extents.o
2025-10-31T05:31:26.0252431Z CC [M] sound/core/seq/seq_virmidi.o
2025-10-31T05:31:26.2046286Z CC drivers/pinctrl/pinconf-generic.o
2025-10-31T05:31:26.5966463Z CC [M] fs/hfsplus/catalog.o
2025-10-31T05:31:26.9000624Z LD [M] sound/core/seq/snd-seq.o
2025-10-31T05:31:26.9383179Z LD [M] sound/core/seq/snd-seq-dummy.o
2025-10-31T05:31:26.9507117Z CC drivers/pinctrl/pinctrl-sx150x.o
2025-10-31T05:31:26.9595989Z LD [M] sound/core/seq/snd-seq-midi.o
2025-10-31T05:31:26.9961772Z LD [M] sound/core/seq/snd-seq-midi-emul.o
2025-10-31T05:31:27.0121207Z LD [M] sound/core/seq/snd-seq-midi-event.o
2025-10-31T05:31:27.0354451Z LD [M] sound/core/seq/snd-seq-virmidi.o
2025-10-31T05:31:27.1554465Z CC [M] sound/core/sound.o
2025-10-31T05:31:27.7294700Z CC [M] fs/hfsplus/dir.o
2025-10-31T05:31:28.0326289Z CC [M] sound/core/init.o
2025-10-31T05:31:28.1626700Z CC [M] drivers/pinctrl/pinctrl-amd.o
2025-10-31T05:31:28.9773688Z CC [M] fs/hfsplus/btree.o
2025-10-31T05:31:29.2991095Z CC [M] drivers/pinctrl/pinctrl-da9062.o
2025-10-31T05:31:29.4549812Z CC [M] sound/core/memory.o
2025-10-31T05:31:29.6974947Z AS [M] arch/x86/kvm/vmx/vmenter.o
2025-10-31T05:31:29.8244647Z CC [M] arch/x86/kvm/vmx/pmu_intel.o
2025-10-31T05:31:29.9387171Z CC [M] drivers/pinctrl/pinctrl-mcp23s08_i2c.o
2025-10-31T05:31:29.9917526Z CC [M] sound/core/control.o
2025-10-31T05:31:29.9984480Z CC [M] fs/hfsplus/bnode.o
2025-10-31T05:31:30.7080886Z CC [M] drivers/pinctrl/pinctrl-mcp23s08_spi.o
2025-10-31T05:31:31.3708787Z CC [M] arch/x86/kvm/vmx/vmcs12.o
2025-10-31T05:31:31.6369220Z CC [M] drivers/pinctrl/pinctrl-mcp23s08.o
2025-10-31T05:31:31.8349187Z CC [M] fs/hfsplus/brec.o
2025-10-31T05:31:32.1383399Z CC [M] sound/core/misc.o
2025-10-31T05:31:32.2234160Z CC [M] arch/x86/kvm/vmx/evmcs.o
2025-10-31T05:31:32.5442533Z AR drivers/pinctrl/built-in.a
2025-10-31T05:31:32.7196781Z CC drivers/gpio/gpiolib.o
2025-10-31T05:31:32.8802519Z CC [M] fs/hfsplus/bfind.o
2025-10-31T05:31:32.9905892Z CC [M] sound/core/device.o
2025-10-31T05:31:33.4183732Z CC [M] arch/x86/kvm/vmx/nested.o
2025-10-31T05:31:33.7481724Z CC [M] sound/core/info.o
2025-10-31T05:31:33.7921760Z CC [M] fs/hfsplus/tables.o
2025-10-31T05:31:34.6023342Z CC [M] fs/hfsplus/unicode.o
2025-10-31T05:31:35.1724913Z CC [M] sound/core/info_oss.o
2025-10-31T05:31:35.7631777Z CC [M] fs/hfsplus/wrapper.o
2025-10-31T05:31:35.9488933Z CC [M] sound/core/isadma.o
2025-10-31T05:31:36.4932813Z CC drivers/gpio/gpiolib-devres.o
2025-10-31T05:31:36.5842356Z CC [M] sound/core/sound_oss.o
2025-10-31T05:31:36.8254192Z CC [M] fs/hfsplus/bitmap.o
2025-10-31T05:31:37.1861520Z CC drivers/gpio/gpiolib-legacy.o
2025-10-31T05:31:37.3305633Z CC [M] sound/core/vmaster.o
2025-10-31T05:31:37.7469618Z CC [M] fs/hfsplus/part_tbl.o
2025-10-31T05:31:37.9347487Z CC drivers/gpio/gpiolib-cdev.o
2025-10-31T05:31:38.1383659Z CC [M] sound/core/ctljack.o
2025-10-31T05:31:38.5953772Z CC [M] fs/hfsplus/attributes.o
2025-10-31T05:31:38.7591038Z CC [M] sound/core/jack.o
2025-10-31T05:31:39.5727760Z CC [M] fs/hfsplus/xattr.o
2025-10-31T05:31:39.8013581Z CC [M] sound/core/hwdep.o
2025-10-31T05:31:39.9410694Z CC [M] arch/x86/kvm/vmx/posted_intr.o
2025-10-31T05:31:40.1095251Z CC drivers/gpio/gpiolib-sysfs.o
2025-10-31T05:31:40.6801319Z CC [M] sound/core/timer.o
2025-10-31T05:31:40.7223383Z CC [M] fs/hfsplus/xattr_user.o
2025-10-31T05:31:41.2272920Z CC drivers/gpio/gpiolib-acpi.o
2025-10-31T05:31:41.3733337Z CC [M] arch/x86/kvm/svm/svm.o
2025-10-31T05:31:41.5791363Z CC [M] fs/hfsplus/xattr_security.o
2025-10-31T05:31:42.5996853Z CC drivers/gpio/gpio-msic.o
2025-10-31T05:31:42.6124928Z CC [M] fs/hfsplus/xattr_trusted.o
2025-10-31T05:31:42.7901745Z CC [M] sound/core/hrtimer.o
2025-10-31T05:31:43.4122937Z LD [M] fs/hfsplus/hfsplus.o
2025-10-31T05:31:43.4380517Z CC drivers/gpio/gpio-palmas.o
2025-10-31T05:31:43.4939088Z CC [M] sound/core/pcm.o
2025-10-31T05:31:43.5244703Z CC [M] fs/hfs/bitmap.o
2025-10-31T05:31:44.4397006Z CC drivers/gpio/gpio-rc5t583.o
2025-10-31T05:31:44.5467030Z CC [M] fs/hfs/bfind.o
2025-10-31T05:31:44.7922141Z CC [M] sound/core/pcm_native.o
2025-10-31T05:31:45.2048162Z CC drivers/gpio/gpio-tps6586x.o
2025-10-31T05:31:45.2863517Z CC [M] fs/hfs/bnode.o
2025-10-31T05:31:45.5450998Z AS [M] arch/x86/kvm/svm/vmenter.o
2025-10-31T05:31:45.6756163Z CC [M] arch/x86/kvm/svm/pmu.o
2025-10-31T05:31:45.8940148Z CC drivers/gpio/gpio-tps65910.o
2025-10-31T05:31:46.6909609Z CC drivers/gpio/gpio-tps68470.o
2025-10-31T05:31:46.7307407Z CC [M] fs/hfs/brec.o
2025-10-31T05:31:47.0539127Z CC [M] arch/x86/kvm/svm/nested.o
2025-10-31T05:31:47.4574072Z CC [M] drivers/gpio/gpio-mmio.o
2025-10-31T05:31:48.0237517Z CC [M] fs/hfs/btree.o
2025-10-31T05:31:48.3014310Z CC [M] drivers/gpio/gpio-adp5520.o
2025-10-31T05:31:48.8165109Z CC [M] sound/core/pcm_lib.o
2025-10-31T05:31:48.9752300Z CC [M] fs/hfs/catalog.o
2025-10-31T05:31:49.0321699Z CC [M] arch/x86/kvm/svm/avic.o
2025-10-31T05:31:49.1323797Z CC [M] drivers/gpio/gpio-adp5588.o
2025-10-31T05:31:49.8167910Z CC [M] fs/hfs/dir.o
2025-10-31T05:31:49.9735062Z CC [M] drivers/gpio/gpio-aggregator.o
2025-10-31T05:31:50.8023190Z CC [M] fs/hfs/extent.o
2025-10-31T05:31:50.8863565Z CC [M] arch/x86/kvm/svm/sev.o
2025-10-31T05:31:50.9647276Z CC [M] sound/core/pcm_misc.o
2025-10-31T05:31:51.1261177Z CC [M] drivers/gpio/gpio-amd8111.o
2025-10-31T05:31:51.6805552Z CC [M] sound/core/pcm_memory.o
2025-10-31T05:31:51.9769592Z CC [M] fs/hfs/inode.o
2025-10-31T05:31:52.1046495Z CC [M] drivers/gpio/gpio-amd-fch.o
2025-10-31T05:31:52.6745850Z CC [M] sound/core/memalloc.o
2025-10-31T05:31:52.7373975Z LD [M] arch/x86/kvm/kvm.o
2025-10-31T05:31:52.8100348Z CC [M] drivers/gpio/gpio-amdpt.o
2025-10-31T05:31:52.9099045Z LD [M] arch/x86/kvm/kvm-intel.o
2025-10-31T05:31:53.0303725Z LD [M] arch/x86/kvm/kvm-amd.o
2025-10-31T05:31:53.0304913Z CC [M] fs/hfs/attr.o
2025-10-31T05:31:53.1115639Z CC [M] drivers/gpio/gpio-arizona.o
2025-10-31T05:31:53.3686258Z CC [M] sound/core/pcm_timer.o
2025-10-31T05:31:53.6518765Z CC [M] sound/i2c/other/ak4117.o
2025-10-31T05:31:53.7295196Z CC [M] fs/hfs/mdb.o
2025-10-31T05:31:53.8401103Z CC [M] drivers/gpio/gpio-bd9571mwv.o
2025-10-31T05:31:54.0824389Z CC [M] sound/core/sgbuf.o
2025-10-31T05:31:54.2925765Z CC [M] drivers/gpio/gpio-crystalcove.o
2025-10-31T05:31:54.5547257Z CC [M] sound/i2c/other/ak4xxx-adda.o
2025-10-31T05:31:54.7737967Z CC [M] fs/hfs/part_tbl.o
2025-10-31T05:31:54.8293891Z CC [M] sound/core/pcm_drm_eld.o
2025-10-31T05:31:55.1493379Z CC [M] drivers/gpio/gpio-da9052.o
2025-10-31T05:31:55.2450882Z CC [M] fs/hfs/string.o
2025-10-31T05:31:55.4930690Z CC [M] sound/i2c/other/ak4114.o
2025-10-31T05:31:55.6642849Z CC [M] sound/core/pcm_iec958.o
2025-10-31T05:31:55.7315054Z CC [M] fs/hfs/super.o
2025-10-31T05:31:56.1635702Z CC [M] drivers/gpio/gpio-da9055.o
2025-10-31T05:31:56.2806475Z CC [M] sound/core/pcm_dmaengine.o
2025-10-31T05:31:56.4546344Z CC [M] sound/i2c/other/ak4113.o
2025-10-31T05:31:56.7373105Z CC [M] fs/hfs/sysdep.o
2025-10-31T05:31:56.8914703Z CC [M] drivers/gpio/gpio-dln2.o
2025-10-31T05:31:57.1751641Z CC [M] sound/core/seq_device.o
2025-10-31T05:31:57.2805986Z CC [M] fs/hfs/trans.o
2025-10-31T05:31:57.3684843Z LD [M] sound/i2c/other/snd-ak4xxx-adda.o
2025-10-31T05:31:57.4002616Z CC [M] sound/i2c/other/pt2258.o
2025-10-31T05:31:57.7171085Z CC [M] drivers/gpio/gpio-dwapb.o
2025-10-31T05:31:57.8656645Z LD [M] sound/i2c/other/snd-ak4117.o
2025-10-31T05:31:57.8876692Z LD [M] sound/i2c/other/snd-ak4114.o
2025-10-31T05:31:57.9015858Z LD [M] fs/hfs/hfs.o
2025-10-31T05:31:57.9020616Z LD [M] sound/i2c/other/snd-ak4113.o
2025-10-31T05:31:57.9169011Z LD [M] sound/i2c/other/snd-pt2258.o
2025-10-31T05:31:57.9513255Z CC [M] sound/core/rawmidi.o
2025-10-31T05:31:57.9742725Z CC [M] fs/ecryptfs/dentry.o
2025-10-31T05:31:57.9753875Z CC [M] sound/i2c/cs8427.o
2025-10-31T05:31:58.7163642Z CC [M] fs/ecryptfs/file.o
2025-10-31T05:31:58.8115711Z CC [M] drivers/gpio/gpio-exar.o
2025-10-31T05:31:58.8703580Z CC [M] sound/i2c/i2c.o
2025-10-31T05:31:59.3970642Z GZIP kernel/config_data.gz
2025-10-31T05:31:59.4272998Z CC [M] kernel/kheaders.o
2025-10-31T05:31:59.5989960Z CC [M] sound/core/compress_offload.o
2025-10-31T05:31:59.6044907Z CC [M] fs/ecryptfs/inode.o
2025-10-31T05:31:59.6150479Z LD [M] sound/i2c/snd-cs8427.o
2025-10-31T05:31:59.6379719Z LD [M] sound/i2c/snd-i2c.o
2025-10-31T05:31:59.6943708Z CC kernel/configs.o
2025-10-31T05:31:59.6959199Z CC [M] drivers/gpio/gpio-f7188x.o
2025-10-31T05:31:59.7933719Z CC drivers/pwm/core.o
2025-10-31T05:32:00.2928988Z AR kernel/built-in.a
2025-10-31T05:32:00.3971685Z CC [M] sound/drivers/opl3/opl3_lib.o
2025-10-31T05:32:00.4277076Z CC [M] drivers/gpio/gpio-ich.o
2025-10-31T05:32:00.6173759Z LD [M] sound/core/snd.o
2025-10-31T05:32:00.6506338Z LD [M] sound/core/snd-hwdep.o
2025-10-31T05:32:00.6635884Z LD [M] sound/core/snd-timer.o
2025-10-31T05:32:00.6783244Z LD [M] sound/core/snd-hrtimer.o
2025-10-31T05:32:00.6901432Z LD [M] sound/core/snd-pcm.o
2025-10-31T05:32:00.7236346Z LD [M] sound/core/snd-pcm-dmaengine.o
2025-10-31T05:32:00.7363978Z LD [M] sound/core/snd-seq-device.o
2025-10-31T05:32:00.7491239Z LD [M] sound/core/snd-rawmidi.o
2025-10-31T05:32:00.7637376Z LD [M] sound/core/snd-compress.o
2025-10-31T05:32:00.9603559Z CC [M] fs/nfs/filelayout/filelayout.o
2025-10-31T05:32:00.9684331Z CC [M] fs/ecryptfs/main.o
2025-10-31T05:32:01.0217679Z CC [M] sound/drivers/opl3/opl3_synth.o
2025-10-31T05:32:01.3286988Z CC drivers/pwm/sysfs.o
2025-10-31T05:32:01.3635985Z CC [M] drivers/gpio/gpio-it87.o
2025-10-31T05:32:01.8733182Z CC [M] sound/drivers/opl3/opl3_seq.o
2025-10-31T05:32:01.9669992Z CC drivers/pwm/pwm-crc.o
2025-10-31T05:32:02.0311018Z CC [M] fs/ecryptfs/super.o
2025-10-31T05:32:02.0962339Z CC [M] drivers/gpio/gpio-janz-ttl.o
2025-10-31T05:32:02.5165952Z CC [M] drivers/pwm/pwm-cros-ec.o
2025-10-31T05:32:02.5666916Z CC [M] sound/drivers/opl3/opl3_midi.o
2025-10-31T05:32:02.7741208Z CC [M] drivers/gpio/gpio-kempld.o
2025-10-31T05:32:02.8442154Z CC [M] fs/nfs/filelayout/filelayoutdev.o
2025-10-31T05:32:02.9385388Z CC [M] fs/ecryptfs/mmap.o
2025-10-31T05:32:03.1843474Z CC [M] drivers/pwm/pwm-iqs620a.o
2025-10-31T05:32:03.3148388Z CC [M] sound/drivers/opl3/opl3_drums.o
2025-10-31T05:32:03.5550708Z CC [M] drivers/gpio/gpio-lp3943.o
2025-10-31T05:32:03.7947664Z CC [M] sound/drivers/opl3/opl3_oss.o
2025-10-31T05:32:03.8823677Z CC [M] drivers/pwm/pwm-lp3943.o
2025-10-31T05:32:04.0379662Z CC [M] fs/ecryptfs/read_write.o
2025-10-31T05:32:04.0380714Z LD [M] fs/nfs/filelayout/nfs_layout_nfsv41_files.o
2025-10-31T05:32:04.1370759Z CC [M] fs/nfs/blocklayout/blocklayout.o
2025-10-31T05:32:04.2410905Z CC [M] drivers/gpio/gpio-lp873x.o
2025-10-31T05:32:04.3226109Z LD [M] sound/drivers/opl3/snd-opl3-lib.o
2025-10-31T05:32:04.3368527Z LD [M] sound/drivers/opl3/snd-opl3-synth.o
2025-10-31T05:32:04.3887908Z CC [M] sound/drivers/mpu401/mpu401_uart.o
2025-10-31T05:32:04.7495147Z CC [M] drivers/pwm/pwm-lpss.o
2025-10-31T05:32:05.0273943Z CC [M] fs/ecryptfs/crypto.o
2025-10-31T05:32:05.0958610Z CC [M] sound/drivers/mpu401/mpu401.o
2025-10-31T05:32:05.2839323Z CC [M] drivers/gpio/gpio-madera.o
2025-10-31T05:32:05.3433980Z CC [M] drivers/pwm/pwm-lpss-pci.o
2025-10-31T05:32:05.6735123Z CC [M] fs/nfs/blocklayout/dev.o
2025-10-31T05:32:05.7257948Z LD [M] sound/drivers/mpu401/snd-mpu401-uart.o
2025-10-31T05:32:05.7524163Z LD [M] sound/drivers/mpu401/snd-mpu401.o
2025-10-31T05:32:05.8463486Z CC [M] sound/drivers/vx/vx_core.o
2025-10-31T05:32:06.0518385Z CC [M] drivers/pwm/pwm-lpss-platform.o
2025-10-31T05:32:06.2457610Z CC [M] drivers/gpio/gpio-max3191x.o
2025-10-31T05:32:06.6163671Z CC [M] fs/ecryptfs/keystore.o
2025-10-31T05:32:06.8040083Z CC [M] drivers/pwm/pwm-pca9685.o
2025-10-31T05:32:06.8769816Z CC [M] sound/drivers/vx/vx_hwdep.o
2025-10-31T05:32:07.0878096Z CC [M] drivers/gpio/gpio-max7300.o
2025-10-31T05:32:07.2254688Z CC [M] fs/nfs/blocklayout/extent_tree.o
2025-10-31T05:32:07.5452776Z CC [M] drivers/pwm/pwm-twl.o
2025-10-31T05:32:07.5535099Z CC [M] sound/drivers/vx/vx_pcm.o
2025-10-31T05:32:07.7840266Z CC [M] drivers/gpio/gpio-max7301.o
2025-10-31T05:32:08.2363165Z CC [M] drivers/pwm/pwm-twl-led.o
2025-10-31T05:32:08.4103507Z CC [M] fs/ecryptfs/kthread.o
2025-10-31T05:32:08.4825457Z CC [M] drivers/gpio/gpio-max730x.o
2025-10-31T05:32:08.6648366Z CC [M] sound/drivers/vx/vx_mixer.o
2025-10-31T05:32:08.7954370Z AR drivers/pwm/built-in.a
2025-10-31T05:32:08.8779630Z CC [M] fs/nfs/blocklayout/rpc_pipefs.o
2025-10-31T05:32:09.0987655Z CC [M] drivers/gpio/gpio-max732x.o
2025-10-31T05:32:09.1436307Z CC net/core/sock.o
2025-10-31T05:32:09.1594020Z CC [M] fs/ecryptfs/debug.o
2025-10-31T05:32:09.7753766Z CC [M] sound/drivers/vx/vx_cmd.o
2025-10-31T05:32:09.8409757Z CC [M] drivers/gpio/gpio-mb86s7x.o
2025-10-31T05:32:09.9584578Z LD [M] fs/ecryptfs/ecryptfs.o
2025-10-31T05:32:10.0589812Z CC [M] drivers/gpio/gpio-mc33880.o
2025-10-31T05:32:10.1950734Z LD [M] fs/nfs/blocklayout/blocklayoutdriver.o
2025-10-31T05:32:10.2537192Z CC [M] fs/nfs/flexfilelayout/flexfilelayout.o
2025-10-31T05:32:10.4345899Z CC [M] sound/drivers/vx/vx_uer.o
2025-10-31T05:32:10.5085636Z CC [M] fs/nfs/client.o
2025-10-31T05:32:10.7297937Z CC [M] drivers/gpio/gpio-menz127.o
2025-10-31T05:32:11.3670955Z LD [M] sound/drivers/vx/snd-vx-lib.o
2025-10-31T05:32:11.4639904Z CC [M] drivers/gpio/gpio-ml-ioh.o
2025-10-31T05:32:11.4865404Z CC [M] sound/drivers/dummy.o
2025-10-31T05:32:12.3573931Z CC [M] drivers/gpio/gpio-mockup.o
2025-10-31T05:32:12.5081239Z CC net/core/request_sock.o
2025-10-31T05:32:12.7313619Z CC [M] sound/drivers/aloop.o
2025-10-31T05:32:12.8623249Z CC [M] fs/nfs/flexfilelayout/flexfilelayoutdev.o
2025-10-31T05:32:12.9155695Z CC net/ethernet/eth.o
2025-10-31T05:32:13.0893873Z CC [M] drivers/gpio/gpio-pca953x.o
2025-10-31T05:32:13.6268869Z CC net/core/skbuff.o
2025-10-31T05:32:14.1416245Z AR net/ethernet/built-in.a
2025-10-31T05:32:14.1832808Z CC drivers/pci/pcie/portdrv_core.o
2025-10-31T05:32:14.4381024Z LD [M] fs/nfs/flexfilelayout/nfs_layout_flexfiles.o
2025-10-31T05:32:14.4756556Z CC [M] fs/nfs/dir.o
2025-10-31T05:32:14.4852521Z CC [M] drivers/gpio/gpio-pca9570.o
2025-10-31T05:32:14.5476292Z CC [M] sound/drivers/virmidi.o
2025-10-31T05:32:15.0886729Z CC drivers/pci/pcie/portdrv_pci.o
2025-10-31T05:32:15.0975747Z CC [M] drivers/gpio/gpio-pcf857x.o
2025-10-31T05:32:15.1111161Z CC [M] sound/drivers/serial-u16550.o
2025-10-31T05:32:15.8995481Z CC drivers/pci/pcie/err.o
2025-10-31T05:32:15.9329073Z CC [M] drivers/gpio/gpio-pcie-idio-24.o
2025-10-31T05:32:16.0128954Z CC [M] sound/drivers/mtpav.o
2025-10-31T05:32:16.6940831Z CC [M] sound/drivers/mts64.o
2025-10-31T05:32:16.7764460Z CC drivers/pci/pcie/rcec.o
2025-10-31T05:32:16.8568799Z CC [M] drivers/gpio/gpio-pci-idio-16.o
2025-10-31T05:32:17.3530434Z CC [M] fs/nfs/file.o
2025-10-31T05:32:17.5087232Z CC [M] sound/drivers/portman2x4.o
2025-10-31T05:32:17.5654575Z CC drivers/pci/pcie/aspm.o
2025-10-31T05:32:17.8013263Z CC [M] drivers/gpio/gpio-pisosr.o
2025-10-31T05:32:18.3991351Z LD [M] sound/drivers/snd-dummy.o
2025-10-31T05:32:18.4258796Z LD [M] sound/drivers/snd-aloop.o
2025-10-31T05:32:18.4490392Z LD [M] sound/drivers/snd-virmidi.o
2025-10-31T05:32:18.4714629Z LD [M] sound/drivers/snd-serial-u16550.o
2025-10-31T05:32:18.4946835Z LD [M] sound/drivers/snd-mtpav.o
2025-10-31T05:32:18.5210173Z LD [M] sound/drivers/snd-mts64.o
2025-10-31T05:32:18.5510826Z LD [M] sound/drivers/snd-portman2x4.o
2025-10-31T05:32:18.5694381Z CC [M] drivers/gpio/gpio-rdc321x.o
2025-10-31T05:32:18.8873009Z CC [M] sound/isa/sb/sb_common.o
2025-10-31T05:32:19.0533831Z CC drivers/pci/pcie/aer.o
2025-10-31T05:32:19.1714119Z CC [M] fs/nfs/getroot.o
2025-10-31T05:32:19.2798464Z CC [M] drivers/gpio/gpio-sch311x.o
2025-10-31T05:32:19.3570102Z CC net/core/datagram.o
2025-10-31T05:32:19.6765002Z CC [M] sound/isa/sb/sb_mixer.o
2025-10-31T05:32:20.1978513Z CC [M] drivers/gpio/gpio-sch.o
2025-10-31T05:32:20.2729900Z CC drivers/pci/pcie/pme.o
2025-10-31T05:32:20.3629384Z CC [M] fs/nfs/inode.o
2025-10-31T05:32:20.6829806Z LD [M] sound/isa/sb/snd-sb-common.o
2025-10-31T05:32:20.8691202Z CC [M] drivers/gpio/gpio-siox.o
2025-10-31T05:32:20.9073452Z CC [M] sound/pci/ac97/ac97_codec.o
2025-10-31T05:32:21.0373731Z CC net/core/stream.o
2025-10-31T05:32:21.1701773Z CC drivers/pci/pcie/dpc.o
2025-10-31T05:32:21.5810929Z CC [M] drivers/gpio/gpio-tpic2810.o
2025-10-31T05:32:21.9612414Z CC drivers/pci/pcie/ptm.o
2025-10-31T05:32:22.3752542Z CC [M] drivers/gpio/gpio-tps65086.o
2025-10-31T05:32:22.4520771Z CC net/core/scm.o
2025-10-31T05:32:22.7757152Z CC drivers/pci/pcie/edr.o
2025-10-31T05:32:22.9398035Z CC [M] drivers/gpio/gpio-tps65912.o
2025-10-31T05:32:23.1972677Z CC [M] fs/nfs/super.o
2025-10-31T05:32:23.5947355Z CC [M] drivers/gpio/gpio-tqmx86.o
2025-10-31T05:32:23.6943849Z CC [M] drivers/pci/pcie/aer_inject.o
2025-10-31T05:32:24.0224459Z CC net/core/gen_stats.o
2025-10-31T05:32:24.2910076Z CC [M] drivers/gpio/gpio-twl4030.o
2025-10-31T05:32:24.5989172Z AR drivers/pci/pcie/built-in.a
2025-10-31T05:32:24.6696883Z CC drivers/pci/hotplug/pci_hotplug_core.o
2025-10-31T05:32:24.8323986Z CC [M] fs/nfs/io.o
2025-10-31T05:32:24.9473000Z CC [M] sound/pci/ac97/ac97_pcm.o
2025-10-31T05:32:25.1079852Z CC [M] drivers/gpio/gpio-twl6040.o
2025-10-31T05:32:25.1343063Z CC net/core/gen_estimator.o
2025-10-31T05:32:25.6957227Z CC drivers/pci/hotplug/cpci_hotplug_core.o
2025-10-31T05:32:25.8970001Z CC [M] drivers/gpio/gpio-ucb1400.o
2025-10-31T05:32:25.9289114Z CC [M] fs/nfs/direct.o
2025-10-31T05:32:26.0974861Z CC [M] sound/pci/ac97/ac97_proc.o
2025-10-31T05:32:26.1921572Z CC net/core/net_namespace.o
2025-10-31T05:32:26.6679474Z CC [M] drivers/gpio/gpio-viperboard.o
2025-10-31T05:32:26.7732757Z CC drivers/pci/hotplug/cpci_hotplug_pci.o
2025-10-31T05:32:27.1108364Z LD [M] sound/pci/ac97/snd-ac97-codec.o
2025-10-31T05:32:27.2153516Z CC [M] sound/pci/ali5451/ali5451.o
2025-10-31T05:32:27.5160522Z CC [M] drivers/gpio/gpio-vx855.o
2025-10-31T05:32:27.6283020Z CC drivers/pci/hotplug/acpi_pcihp.o
2025-10-31T05:32:27.8326911Z CC [M] fs/nfs/pagelist.o
2025-10-31T05:32:27.8724821Z CC net/core/secure_seq.o
2025-10-31T05:32:28.3370222Z CC drivers/pci/hotplug/pciehp_core.o
2025-10-31T05:32:28.5305975Z CC [M] drivers/gpio/gpio-wcove.o
2025-10-31T05:32:28.8103379Z LD [M] sound/pci/ali5451/snd-ali5451.o
2025-10-31T05:32:28.9002648Z CC [M] sound/pci/asihpi/asihpi.o
2025-10-31T05:32:29.0163033Z CC net/core/flow_dissector.o
2025-10-31T05:32:29.2523351Z CC [M] drivers/gpio/gpio-winbond.o
2025-10-31T05:32:29.2725759Z CC drivers/pci/hotplug/pciehp_ctrl.o
2025-10-31T05:32:30.0324340Z CC [M] fs/nfs/read.o
2025-10-31T05:32:30.0605855Z CC [M] drivers/gpio/gpio-wm831x.o
2025-10-31T05:32:30.0996325Z CC drivers/pci/hotplug/pciehp_pci.o
2025-10-31T05:32:30.7754009Z CC [M] drivers/gpio/gpio-wm8350.o
2025-10-31T05:32:30.8903407Z CC drivers/pci/hotplug/pciehp_hpc.o
2025-10-31T05:32:30.9790279Z CC [M] sound/pci/asihpi/hpioctl.o
2025-10-31T05:32:31.0706026Z CC net/core/sysctl_net_core.o
2025-10-31T05:32:31.5469136Z CC [M] drivers/gpio/gpio-wm8994.o
2025-10-31T05:32:31.8563506Z CC [M] fs/nfs/symlink.o
2025-10-31T05:32:32.0523926Z CC drivers/pci/hotplug/shpchp_core.o
2025-10-31T05:32:32.1035261Z CC [M] sound/pci/asihpi/hpimsginit.o
2025-10-31T05:32:32.2856302Z CC [M] drivers/gpio/gpio-ws16c48.o
2025-10-31T05:32:32.5163818Z CC net/core/dev.o
2025-10-31T05:32:32.7288448Z CC [M] sound/pci/asihpi/hpicmn.o
2025-10-31T05:32:32.8108980Z CC [M] fs/nfs/unlink.o
2025-10-31T05:32:33.0855795Z CC drivers/pci/hotplug/shpchp_ctrl.o
2025-10-31T05:32:33.2683743Z CC [M] drivers/gpio/gpio-xilinx.o
2025-10-31T05:32:33.5745970Z CC [M] sound/pci/asihpi/hpifunc.o
2025-10-31T05:32:34.0404322Z CC [M] drivers/gpio/gpio-xra1403.o
2025-10-31T05:32:34.2433942Z CC drivers/pci/hotplug/shpchp_pci.o
2025-10-31T05:32:34.2549480Z CC [M] fs/nfs/write.o
2025-10-31T05:32:34.8202739Z LD [M] drivers/gpio/gpio-generic.o
2025-10-31T05:32:34.8438938Z AR drivers/gpio/built-in.a
2025-10-31T05:32:34.9614570Z CC drivers/pci/hotplug/shpchp_sysfs.o
2025-10-31T05:32:35.6029943Z AR virt/lib/built-in.a
2025-10-31T05:32:35.6211349Z CC [M] virt/lib/irqbypass.o
2025-10-31T05:32:35.6695342Z CC [M] sound/pci/asihpi/hpidebug.o
2025-10-31T05:32:35.6966419Z CC drivers/pci/hotplug/shpchp_hpc.o
2025-10-31T05:32:36.1396338Z AR virt/built-in.a
2025-10-31T05:32:36.1769404Z CC [M] fs/nfsd/trace.o
2025-10-31T05:32:36.4544135Z CC [M] sound/pci/asihpi/hpidspcd.o
2025-10-31T05:32:36.7358411Z CC drivers/pci/hotplug/acpiphp_core.o
2025-10-31T05:32:37.2102562Z CC [M] fs/nfs/namespace.o
2025-10-31T05:32:37.3431222Z CC [M] sound/pci/asihpi/hpios.o
2025-10-31T05:32:37.4632424Z CC drivers/pci/hotplug/acpiphp_glue.o
2025-10-31T05:32:38.0238769Z CC [M] sound/pci/asihpi/hpi6000.o
2025-10-31T05:32:38.7506246Z CC [M] drivers/pci/hotplug/cpcihp_zt5550.o
2025-10-31T05:32:38.7950133Z CC [M] fs/nfs/mount_clnt.o
2025-10-31T05:32:39.4009116Z CC [M] sound/pci/asihpi/hpi6205.o
2025-10-31T05:32:39.6464404Z CC [M] drivers/pci/hotplug/cpcihp_generic.o
2025-10-31T05:32:39.9821598Z CC [M] fs/nfs/nfstrace.o
2025-10-31T05:32:40.6219940Z CC [M] fs/nfsd/nfssvc.o
2025-10-31T05:32:40.6412850Z CC [M] drivers/pci/hotplug/acpiphp_ibm.o
2025-10-31T05:32:40.7450252Z CC net/core/dev_addr_lists.o
2025-10-31T05:32:40.8573625Z CC [M] sound/pci/asihpi/hpimsgx.o
2025-10-31T05:32:41.5073471Z AR drivers/pci/hotplug/built-in.a
2025-10-31T05:32:41.5740621Z CC drivers/pci/controller/dwc/pcie-designware.o
2025-10-31T05:32:41.9805030Z CC net/core/dst.o
2025-10-31T05:32:42.1013127Z LD [M] sound/pci/asihpi/snd-asihpi.o
2025-10-31T05:32:42.1713853Z CC [M] sound/pci/au88x0/au8810.o
2025-10-31T05:32:42.6752726Z CC [M] fs/nfsd/nfsctl.o
2025-10-31T05:32:42.7776813Z CC drivers/pci/controller/dwc/pcie-designware-host.o
2025-10-31T05:32:43.2907265Z CC net/core/netevent.o
2025-10-31T05:32:43.6813935Z CC drivers/pci/controller/dwc/pcie-designware-plat.o
2025-10-31T05:32:43.9127234Z CC [M] fs/nfs/export.o
2025-10-31T05:32:44.2244837Z CC net/core/neighbour.o
2025-10-31T05:32:44.3799749Z CC drivers/pci/controller/dwc/pci-meson.o
2025-10-31T05:32:44.5076092Z CC [M] fs/nfsd/nfsfh.o
2025-10-31T05:32:45.1747331Z CC [M] sound/pci/au88x0/au8820.o
2025-10-31T05:32:45.2524929Z CC [M] fs/nfs/sysfs.o
2025-10-31T05:32:45.5218191Z AR drivers/pci/controller/dwc/built-in.a
2025-10-31T05:32:45.5488698Z AR drivers/pci/controller/mobiveil/built-in.a
2025-10-31T05:32:45.5709529Z CC [M] drivers/pci/controller/pci-hyperv.o
2025-10-31T05:32:46.3407505Z CC [M] fs/nfsd/vfs.o
2025-10-31T05:32:46.5670545Z CC [M] fs/nfs/fs_context.o
2025-10-31T05:32:47.5388228Z CC [M] sound/pci/au88x0/au8830.o
2025-10-31T05:32:47.5832223Z CC [M] drivers/pci/controller/pci-hyperv-intf.o
2025-10-31T05:32:47.9549454Z CC net/core/rtnetlink.o
2025-10-31T05:32:48.1214727Z CC [M] drivers/pci/controller/vmd.o
2025-10-31T05:32:48.3774420Z CC [M] fs/nfs/sysctl.o
2025-10-31T05:32:49.1087758Z CC [M] fs/nfsd/export.o
2025-10-31T05:32:49.1258856Z AR drivers/pci/controller/built-in.a
2025-10-31T05:32:49.2222362Z AR drivers/pci/switch/built-in.a
2025-10-31T05:32:49.2467862Z CC [M] drivers/pci/switch/switchtec.o
2025-10-31T05:32:49.5815752Z CC [M] fs/nfs/fscache.o
2025-10-31T05:32:50.7306990Z CC drivers/pci/access.o
2025-10-31T05:32:50.7849080Z LD [M] sound/pci/au88x0/snd-au8810.o
2025-10-31T05:32:50.8143485Z LD [M] sound/pci/au88x0/snd-au8820.o
2025-10-31T05:32:50.8466672Z LD [M] sound/pci/au88x0/snd-au8830.o
2025-10-31T05:32:50.9560643Z CC [M] sound/pci/aw2/aw2-alsa.o
2025-10-31T05:32:51.2435161Z CC [M] fs/nfs/fscache-index.o
2025-10-31T05:32:51.3959934Z CC [M] fs/nfsd/auth.o
2025-10-31T05:32:51.6760402Z CC drivers/pci/bus.o
2025-10-31T05:32:51.8280967Z CC [M] sound/pci/aw2/aw2-saa7146.o
2025-10-31T05:32:52.1423788Z CC net/core/utils.o
2025-10-31T05:32:52.5007298Z LD [M] sound/pci/aw2/snd-aw2.o
2025-10-31T05:32:52.5100773Z CC [M] fs/nfs/nfs2super.o
2025-10-31T05:32:52.5621723Z CC [M] sound/pci/ctxfi/xfi.o
2025-10-31T05:32:52.5828610Z CC drivers/pci/probe.o
2025-10-31T05:32:52.6475207Z CC [M] fs/nfsd/lockd.o
2025-10-31T05:32:53.2177667Z CC [M] sound/pci/ctxfi/ctatc.o
2025-10-31T05:32:53.5732854Z CC [M] fs/nfs/proc.o
2025-10-31T05:32:53.7428066Z CC [M] fs/nfsd/nfscache.o
2025-10-31T05:32:53.7498428Z CC net/core/link_watch.o
2025-10-31T05:32:54.7175684Z CC [M] sound/pci/ctxfi/ctvmem.o
2025-10-31T05:32:54.8424384Z CC drivers/pci/host-bridge.o
2025-10-31T05:32:54.9742449Z CC net/core/filter.o
2025-10-31T05:32:55.0950310Z CC [M] fs/nfs/nfs2xdr.o
2025-10-31T05:32:55.4869791Z CC [M] fs/nfsd/stats.o
2025-10-31T05:32:55.5941538Z CC drivers/pci/remove.o
2025-10-31T05:32:55.6647270Z CC [M] sound/pci/ctxfi/ctpcm.o
2025-10-31T05:32:56.3319927Z CC drivers/pci/pci.o
2025-10-31T05:32:56.4794138Z CC [M] sound/pci/ctxfi/ctmixer.o
2025-10-31T05:32:56.7409348Z CC [M] fs/nfsd/filecache.o
2025-10-31T05:32:56.8186522Z CC [M] fs/nfs/nfs3super.o
2025-10-31T05:32:57.6009830Z CC [M] sound/pci/ctxfi/ctresource.o
2025-10-31T05:32:57.9177651Z CC [M] fs/nfs/nfs3client.o
2025-10-31T05:32:58.3887821Z CC [M] sound/pci/ctxfi/ctsrc.o
2025-10-31T05:32:59.1881517Z CC [M] fs/nfs/nfs3proc.o
2025-10-31T05:32:59.3499738Z CC [M] sound/pci/ctxfi/ctamixer.o
2025-10-31T05:32:59.6736366Z CC drivers/pci/pci-driver.o
2025-10-31T05:32:59.7878792Z CC [M] fs/nfsd/nfs3proc.o
2025-10-31T05:33:00.0626148Z CC [M] sound/pci/ctxfi/ctdaio.o
2025-10-31T05:33:00.7555689Z CC [M] fs/nfs/nfs3xdr.o
2025-10-31T05:33:01.0914508Z CC [M] sound/pci/ctxfi/ctimap.o
2025-10-31T05:33:01.3618038Z CC drivers/pci/search.o
2025-10-31T05:33:01.4013720Z CC [M] fs/nfsd/nfs3xdr.o
2025-10-31T05:33:01.4207247Z CC [M] sound/pci/ctxfi/cthardware.o
2025-10-31T05:33:02.0412772Z CC [M] sound/pci/ctxfi/cttimer.o
2025-10-31T05:33:02.2213639Z CC drivers/pci/pci-sysfs.o
2025-10-31T05:33:02.8246378Z CC net/core/sock_diag.o
2025-10-31T05:33:02.9378961Z CC [M] sound/pci/ctxfi/cthw20k2.o
2025-10-31T05:33:02.9888196Z CC [M] fs/nfsd/nfs3acl.o
2025-10-31T05:33:03.1258962Z CC [M] fs/nfs/nfs3acl.o
2025-10-31T05:33:03.4386219Z CC drivers/pci/rom.o
2025-10-31T05:33:03.9833513Z CC net/core/dev_ioctl.o
2025-10-31T05:33:04.2489728Z CC [M] fs/nfsd/nfs4proc.o
2025-10-31T05:33:04.3046349Z CC drivers/pci/setup-res.o
2025-10-31T05:33:04.4095498Z CC [M] sound/pci/ctxfi/cthw20k1.o
2025-10-31T05:33:04.7012686Z CC [M] fs/nfs/nfs4proc.o
2025-10-31T05:33:05.1871874Z CC net/core/tso.o
2025-10-31T05:33:05.2955040Z CC drivers/pci/irq.o
2025-10-31T05:33:06.0655921Z CC drivers/pci/vpd.o
2025-10-31T05:33:06.1868341Z LD [M] sound/pci/ctxfi/snd-ctxfi.o
2025-10-31T05:33:06.3258095Z CC [M] sound/pci/ca0106/ca0106_main.o
2025-10-31T05:33:06.3529789Z CC net/core/sock_reuseport.o
2025-10-31T05:33:07.0532154Z CC drivers/pci/setup-bus.o
2025-10-31T05:33:07.2626597Z CC [M] fs/nfsd/nfs4xdr.o
2025-10-31T05:33:07.7595170Z CC net/core/fib_notifier.o
2025-10-31T05:33:07.8646067Z CC [M] sound/pci/ca0106/ca0106_mixer.o
2025-10-31T05:33:08.8615039Z CC [M] sound/pci/ca0106/ca_midi.o
2025-10-31T05:33:08.8666639Z CC drivers/pci/vc.o
2025-10-31T05:33:09.0234155Z CC net/core/xdp.o
2025-10-31T05:33:09.5473532Z CC [M] sound/pci/ca0106/ca0106_proc.o
2025-10-31T05:33:09.6867396Z CC drivers/pci/mmap.o
2025-10-31T05:33:10.3467942Z CC drivers/pci/setup-irq.o
2025-10-31T05:33:10.4758567Z LD [M] sound/pci/ca0106/snd-ca0106.o
2025-10-31T05:33:10.5622148Z CC [M] sound/pci/cs46xx/cs46xx.o
2025-10-31T05:33:10.6630251Z CC net/core/flow_offload.o
2025-10-31T05:33:10.9840945Z CC drivers/pci/proc.o
2025-10-31T05:33:11.3095954Z CC [M] sound/pci/cs46xx/cs46xx_lib.o
2025-10-31T05:33:11.4656613Z CC [M] fs/nfsd/nfs4state.o
2025-10-31T05:33:11.8176310Z CC [M] fs/nfs/nfs4xdr.o
2025-10-31T05:33:11.8823681Z CC drivers/pci/slot.o
2025-10-31T05:33:11.9813806Z CC net/core/net-sysfs.o
2025-10-31T05:33:12.9430262Z CC drivers/pci/pci-acpi.o
2025-10-31T05:33:13.4474116Z CC [M] sound/pci/cs46xx/dsp_spos.o
2025-10-31T05:33:14.0846940Z CC drivers/pci/quirks.o
2025-10-31T05:33:14.3414698Z CC net/core/page_pool.o
2025-10-31T05:33:15.2780190Z CC [M] sound/pci/cs46xx/dsp_spos_scb_lib.o
2025-10-31T05:33:15.4718339Z CC net/core/net-procfs.o
2025-10-31T05:33:16.5451099Z CC drivers/pci/msi.o
2025-10-31T05:33:16.5819680Z LD [M] sound/pci/cs46xx/snd-cs46xx.o
2025-10-31T05:33:16.6047369Z CC net/core/netpoll.o
2025-10-31T05:33:16.7250265Z CC [M] sound/pci/lola/lola.o
2025-10-31T05:33:17.7529236Z CC [M] fs/nfs/nfs4state.o
2025-10-31T05:33:17.9245679Z CC [M] sound/pci/lola/lola_pcm.o
2025-10-31T05:33:18.0838014Z CC [M] fs/nfsd/nfs4idmap.o
2025-10-31T05:33:18.1812837Z CC drivers/pci/ats.o
2025-10-31T05:33:18.5365759Z CC net/core/fib_rules.o
2025-10-31T05:33:18.9571280Z CC [M] sound/pci/lola/lola_clock.o
2025-10-31T05:33:19.1264045Z CC drivers/pci/iov.o
2025-10-31T05:33:19.6498082Z CC [M] fs/nfsd/nfs4acl.o
2025-10-31T05:33:19.7157043Z CC [M] sound/pci/lola/lola_mixer.o
2025-10-31T05:33:20.1586613Z CC drivers/pci/pci-label.o
2025-10-31T05:33:20.6051571Z CC net/core/net-traces.o
2025-10-31T05:33:20.6056753Z CC [M] fs/nfs/nfs4renewd.o
2025-10-31T05:33:20.7668910Z CC [M] sound/pci/lola/lola_proc.o
2025-10-31T05:33:20.8533296Z CC drivers/pci/pci-stub.o
2025-10-31T05:33:21.4425877Z CC [M] fs/nfsd/nfs4callback.o
2025-10-31T05:33:21.4994543Z CC drivers/pci/p2pdma.o
2025-10-31T05:33:21.5627141Z LD [M] sound/pci/lola/snd-lola.o
2025-10-31T05:33:21.6121001Z CC [M] sound/pci/lx6464es/lx6464es.o
2025-10-31T05:33:21.7363407Z CC [M] fs/nfs/nfs4super.o
2025-10-31T05:33:22.6918787Z CC [M] drivers/pci/pci-pf-stub.o
2025-10-31T05:33:22.7610337Z CC [M] sound/pci/lx6464es/lx_core.o
2025-10-31T05:33:22.9962418Z CC [M] fs/nfs/nfs4file.o
2025-10-31T05:33:23.4609124Z CC [M] fs/nfsd/nfs4recover.o
2025-10-31T05:33:23.5659453Z CC [M] drivers/pci/xen-pcifront.o
2025-10-31T05:33:23.9531020Z LD [M] sound/pci/lx6464es/snd-lx6464es.o
2025-10-31T05:33:24.0429963Z CC [M] sound/pci/echoaudio/darla20.o
2025-10-31T05:33:24.3840376Z CC [M] fs/nfs/delegation.o
2025-10-31T05:33:24.9669669Z CC net/core/drop_monitor.o
2025-10-31T05:33:24.9983293Z AR drivers/pci/built-in.a
2025-10-31T05:33:25.1376335Z CC drivers/video/console/dummycon.o
2025-10-31T05:33:25.6404842Z CC [M] fs/nfsd/nfs4layouts.o
2025-10-31T05:33:25.6665553Z CC [M] sound/pci/echoaudio/gina20.o
2025-10-31T05:33:25.9070753Z CC drivers/video/console/vgacon.o
2025-10-31T05:33:26.6237185Z CC net/core/timestamping.o
2025-10-31T05:33:26.8113957Z CC [M] fs/nfs/nfs4idmap.o
2025-10-31T05:33:27.2463433Z AR drivers/video/console/built-in.a
2025-10-31T05:33:27.2753242Z CC drivers/video/backlight/backlight.o
2025-10-31T05:33:27.7150024Z CC net/core/ptp_classifier.o
2025-10-31T05:33:27.7511137Z CC [M] fs/nfsd/blocklayout.o
2025-10-31T05:33:27.8487068Z CC [M] sound/pci/echoaudio/layla20.o
2025-10-31T05:33:28.0714931Z CC [M] drivers/video/backlight/ams369fg06.o
2025-10-31T05:33:28.5962396Z CC net/core/netprio_cgroup.o
2025-10-31T05:33:28.6889619Z CC [M] fs/nfs/callback.o
2025-10-31T05:33:28.8505267Z CC [M] drivers/video/backlight/lcd.o
2025-10-31T05:33:29.0326334Z CC [M] fs/nfsd/blocklayoutxdr.o
2025-10-31T05:33:29.6282156Z CC [M] drivers/video/backlight/hx8357.o
2025-10-31T05:33:30.0792392Z CC net/core/netclassid_cgroup.o
2025-10-31T05:33:30.1245441Z CC [M] sound/pci/echoaudio/darla24.o
2025-10-31T05:33:30.1650357Z CC [M] fs/nfs/callback_xdr.o
2025-10-31T05:33:30.3402290Z LD [M] fs/nfsd/nfsd.o
2025-10-31T05:33:30.4282624Z CC [M] drivers/video/backlight/ili922x.o
2025-10-31T05:33:30.7025020Z CC drivers/video/fbdev/core/fb_cmdline.o
2025-10-31T05:33:31.3036298Z CC [M] drivers/video/backlight/ili9320.o
2025-10-31T05:33:31.3968448Z CC net/core/lwtunnel.o
2025-10-31T05:33:31.4728722Z CC drivers/video/fbdev/core/fb_notify.o
2025-10-31T05:33:31.7828072Z CC [M] fs/nfs/callback_proc.o
2025-10-31T05:33:31.9383923Z CC [M] sound/pci/echoaudio/gina24.o
2025-10-31T05:33:32.1635620Z CC [M] drivers/video/backlight/l4f00242t03.o
2025-10-31T05:33:32.2538685Z CC drivers/video/fbdev/core/fbmem.o
2025-10-31T05:33:32.7963705Z CC net/core/lwt_bpf.o
2025-10-31T05:33:33.1670420Z CC [M] drivers/video/backlight/lms283gf05.o
2025-10-31T05:33:33.3330230Z CC [M] fs/nfs/nfs4namespace.o
2025-10-31T05:33:33.9310538Z CC drivers/video/fbdev/core/fbmon.o
2025-10-31T05:33:34.0557688Z CC [M] drivers/video/backlight/lms501kf03.o
2025-10-31T05:33:34.1559118Z CC [M] sound/pci/echoaudio/layla24.o
2025-10-31T05:33:34.3893245Z CC net/core/dst_cache.o
2025-10-31T05:33:34.7344911Z CC drivers/video/fbdev/core/fbcmap.o
2025-10-31T05:33:34.8191933Z CC [M] fs/nfs/nfs4getroot.o
2025-10-31T05:33:34.8198335Z CC [M] drivers/video/backlight/ltv350qv.o
2025-10-31T05:33:35.6354095Z CC net/core/devlink.o
2025-10-31T05:33:35.6619692Z CC drivers/video/fbdev/core/fbsysfs.o
2025-10-31T05:33:35.7115646Z CC [M] drivers/video/backlight/otm3225a.o
2025-10-31T05:33:35.8517469Z CC [M] fs/nfs/nfs4client.o
2025-10-31T05:33:36.6431793Z CC [M] drivers/video/backlight/platform_lcd.o
2025-10-31T05:33:36.6724218Z CC [M] sound/pci/echoaudio/mona.o
2025-10-31T05:33:36.7903652Z CC drivers/video/fbdev/core/modedb.o
2025-10-31T05:33:37.5054301Z CC [M] drivers/video/backlight/tdo24m.o
2025-10-31T05:33:37.5703098Z CC [M] fs/nfs/nfs4session.o
2025-10-31T05:33:37.8431345Z CC drivers/video/fbdev/core/fbcvt.o
2025-10-31T05:33:38.4981858Z CC [M] drivers/video/backlight/vgg2432a4.o
2025-10-31T05:33:38.6549915Z CC drivers/video/fbdev/core/fb_defio.o
2025-10-31T05:33:38.8789409Z CC [M] sound/pci/echoaudio/mia.o
2025-10-31T05:33:39.0059388Z CC [M] fs/nfs/dns_resolve.o
2025-10-31T05:33:39.3314079Z CC [M] drivers/video/backlight/88pm860x_bl.o
2025-10-31T05:33:39.4631730Z CC drivers/video/fbdev/core/fbcon.o
2025-10-31T05:33:40.0028380Z CC [M] drivers/video/backlight/aat2870_bl.o
2025-10-31T05:33:40.2988842Z CC [M] fs/nfs/nfs4trace.o
2025-10-31T05:33:40.6270974Z CC [M] drivers/video/backlight/adp5520_bl.o
2025-10-31T05:33:41.0000379Z CC [M] sound/pci/echoaudio/echo3g.o
2025-10-31T05:33:41.6894481Z CC [M] drivers/video/backlight/adp8860_bl.o
2025-10-31T05:33:42.2508072Z CC drivers/video/fbdev/core/bitblit.o
2025-10-31T05:33:42.9503871Z CC net/core/gro_cells.o
2025-10-31T05:33:43.0284582Z CC [M] drivers/video/backlight/adp8870_bl.o
2025-10-31T05:33:43.2109277Z CC drivers/video/fbdev/core/softcursor.o
2025-10-31T05:33:43.2412227Z CC [M] sound/pci/echoaudio/indigo.o
2025-10-31T05:33:43.9295387Z CC drivers/video/fbdev/core/tileblit.o
2025-10-31T05:33:43.9833797Z CC net/core/skmsg.o
2025-10-31T05:33:44.3154073Z CC [M] drivers/video/backlight/apple_bl.o
2025-10-31T05:33:44.7759580Z CC drivers/video/fbdev/core/fbcon_rotate.o
2025-10-31T05:33:44.9093957Z CC [M] fs/nfs/nfs4sysctl.o
2025-10-31T05:33:45.0237604Z CC [M] sound/pci/echoaudio/indigoio.o
2025-10-31T05:33:45.3195999Z CC [M] drivers/video/backlight/as3711_bl.o
2025-10-31T05:33:45.7836164Z CC drivers/video/fbdev/core/fbcon_cw.o
2025-10-31T05:33:46.0609109Z CC [M] fs/nfs/pnfs.o
2025-10-31T05:33:46.1860526Z CC net/core/sock_map.o
2025-10-31T05:33:46.2730695Z CC [M] drivers/video/backlight/bd6107.o
2025-10-31T05:33:46.8115834Z CC [M] sound/pci/echoaudio/indigodj.o
2025-10-31T05:33:46.8487023Z CC drivers/video/fbdev/core/fbcon_ud.o
2025-10-31T05:33:47.0420935Z CC [M] drivers/video/backlight/da903x_bl.o
2025-10-31T05:33:47.7825784Z CC [M] drivers/video/backlight/da9052_bl.o
2025-10-31T05:33:48.1664395Z CC drivers/video/fbdev/core/fbcon_ccw.o
2025-10-31T05:33:48.4192372Z CC net/core/bpf_sk_storage.o
2025-10-31T05:33:48.5854373Z CC [M] sound/pci/echoaudio/indigoiox.o
2025-10-31T05:33:48.6203755Z CC [M] drivers/video/backlight/gpio_backlight.o
2025-10-31T05:33:49.3459455Z CC [M] drivers/video/backlight/ktd253-backlight.o
2025-10-31T05:33:49.3724856Z CC drivers/video/fbdev/core/cfbfillrect.o
2025-10-31T05:33:49.6737703Z CC [M] fs/nfs/pnfs_dev.o
2025-10-31T05:33:49.9264443Z CC [M] net/core/pktgen.o
2025-10-31T05:33:50.2452128Z CC drivers/video/fbdev/core/cfbcopyarea.o
2025-10-31T05:33:50.2619546Z CC [M] drivers/video/backlight/lm3533_bl.o
2025-10-31T05:33:50.4677973Z CC [M] sound/pci/echoaudio/indigodjx.o
2025-10-31T05:33:50.9052975Z CC [M] fs/nfs/pnfs_nfs.o
2025-10-31T05:33:51.2429320Z CC [M] drivers/video/backlight/lm3630a_bl.o
2025-10-31T05:33:51.2770146Z CC drivers/video/fbdev/core/cfbimgblt.o
2025-10-31T05:33:52.2056029Z CC [M] drivers/video/fbdev/core/sysfillrect.o
2025-10-31T05:33:52.2720936Z CC [M] drivers/video/backlight/lm3639_bl.o
2025-10-31T05:33:52.3442935Z LD [M] sound/pci/echoaudio/snd-darla20.o
2025-10-31T05:33:52.3738963Z LD [M] sound/pci/echoaudio/snd-gina20.o
2025-10-31T05:33:52.3990549Z LD [M] sound/pci/echoaudio/snd-layla20.o
2025-10-31T05:33:52.4299916Z LD [M] sound/pci/echoaudio/snd-darla24.o
2025-10-31T05:33:52.4611412Z LD [M] sound/pci/echoaudio/snd-gina24.o
2025-10-31T05:33:52.4921158Z LD [M] sound/pci/echoaudio/snd-layla24.o
2025-10-31T05:33:52.5240713Z LD [M] sound/pci/echoaudio/snd-mona.o
2025-10-31T05:33:52.5521097Z LD [M] sound/pci/echoaudio/snd-mia.o
2025-10-31T05:33:52.5830823Z LD [M] sound/pci/echoaudio/snd-echo3g.o
2025-10-31T05:33:52.6139152Z LD [M] sound/pci/echoaudio/snd-indigo.o
2025-10-31T05:33:52.6387332Z LD [M] sound/pci/echoaudio/snd-indigoio.o
2025-10-31T05:33:52.6647255Z LD [M] sound/pci/echoaudio/snd-indigodj.o
2025-10-31T05:33:52.6725783Z CC [M] fs/nfs/nfs42proc.o
2025-10-31T05:33:52.6870166Z LD [M] sound/pci/echoaudio/snd-indigoiox.o
2025-10-31T05:33:52.7138931Z LD [M] sound/pci/echoaudio/snd-indigodjx.o
2025-10-31T05:33:52.8740607Z CC [M] sound/pci/emu10k1/emu10k1.o
2025-10-31T05:33:53.0574981Z CC [M] drivers/video/fbdev/core/syscopyarea.o
2025-10-31T05:33:53.0940766Z CC [M] drivers/video/backlight/lp855x_bl.o
2025-10-31T05:33:53.1283364Z CC [M] net/core/failover.o
2025-10-31T05:33:53.6959728Z CC [M] sound/pci/emu10k1/emu10k1_main.o
2025-10-31T05:33:53.9859427Z CC [M] drivers/video/fbdev/core/sysimgblt.o
2025-10-31T05:33:54.2018543Z AR net/core/built-in.a
2025-10-31T05:33:54.2331042Z CC [M] drivers/video/backlight/lp8788_bl.o
2025-10-31T05:33:54.2715461Z CC net/802/fc.o
2025-10-31T05:33:54.7449979Z CC [M] drivers/video/fbdev/core/fb_sys_fops.o
2025-10-31T05:33:55.0400884Z CC [M] fs/nfs/nfs42xattr.o
2025-10-31T05:33:55.0683867Z CC [M] sound/pci/emu10k1/irq.o
2025-10-31T05:33:55.1133820Z CC [M] net/802/p8022.o
2025-10-31T05:33:55.1186748Z CC [M] drivers/video/backlight/lv5207lp.o
2025-10-31T05:33:55.4331174Z AR drivers/video/fbdev/core/built-in.a
2025-10-31T05:33:55.5593805Z AR drivers/video/fbdev/omap2/omapfb/dss/built-in.a
2025-10-31T05:33:55.6282743Z AR drivers/video/fbdev/omap2/omapfb/displays/built-in.a
2025-10-31T05:33:55.6693206Z AR drivers/video/fbdev/omap2/omapfb/built-in.a
2025-10-31T05:33:55.7098477Z AR drivers/video/fbdev/omap2/built-in.a
2025-10-31T05:33:55.7484793Z CC drivers/video/fbdev/vesafb.o
2025-10-31T05:33:55.8795834Z CC [M] sound/pci/emu10k1/memory.o
2025-10-31T05:33:55.9549020Z CC [M] net/802/psnap.o
2025-10-31T05:33:56.0735706Z CC [M] drivers/video/backlight/max8925_bl.o
2025-10-31T05:33:56.5820391Z CC drivers/video/fbdev/efifb.o
2025-10-31T05:33:56.7829916Z LD [M] fs/nfs/nfs.o
2025-10-31T05:33:56.8364320Z CC [M] drivers/video/backlight/pandora_bl.o
2025-10-31T05:33:56.8967450Z LD [M] fs/nfs/nfsv2.o
2025-10-31T05:33:56.9201259Z LD [M] fs/nfs/nfsv3.o
2025-10-31T05:33:56.9523332Z LD [M] fs/nfs/nfsv4.o
2025-10-31T05:33:56.9732347Z CC [M] net/802/fddi.o
2025-10-31T05:33:57.0093654Z CC [M] sound/pci/emu10k1/voice.o
2025-10-31T05:33:57.1929365Z CC [M] fs/lockd/clntlock.o
2025-10-31T05:33:57.5329904Z CC [M] drivers/video/backlight/pcf50633-backlight.o
2025-10-31T05:33:57.6846076Z CC [M] sound/pci/emu10k1/emumpu401.o
2025-10-31T05:33:57.8184021Z CC drivers/video/fbdev/simplefb.o
2025-10-31T05:33:57.9773143Z CC [M] net/802/stp.o
2025-10-31T05:33:58.4714644Z CC [M] sound/pci/emu10k1/emupcm.o
2025-10-31T05:33:58.4987927Z CC [M] drivers/video/backlight/pwm_bl.o
2025-10-31T05:33:58.6278701Z CC [M] fs/lockd/clntproc.o
2025-10-31T05:33:58.7765241Z CC [M] net/802/garp.o
2025-10-31T05:33:59.0450928Z CC [M] drivers/video/fbdev/xen-fbfront.o
2025-10-31T05:33:59.4810400Z CC [M] drivers/video/backlight/qcom-wled.o
2025-10-31T05:34:00.1003259Z CC [M] net/802/mrp.o
2025-10-31T05:34:00.1428718Z CC [M] fs/lockd/clntxdr.o
2025-10-31T05:34:00.1568515Z CC [M] sound/pci/emu10k1/io.o
2025-10-31T05:34:00.2128043Z CC [M] drivers/video/fbdev/hyperv_fb.o
2025-10-31T05:34:00.2137027Z CC [M] drivers/video/backlight/kb3886_bl.o
2025-10-31T05:34:00.9061223Z CC [M] drivers/video/backlight/sky81452-backlight.o
2025-10-31T05:34:01.1794585Z CC [M] sound/pci/emu10k1/emumixer.o
2025-10-31T05:34:01.3201795Z CC [M] fs/lockd/host.o
2025-10-31T05:34:01.3940090Z AR net/802/built-in.a
2025-10-31T05:34:01.4569623Z CC net/sched/sch_generic.o
2025-10-31T05:34:01.6986112Z AR drivers/video/fbdev/built-in.a
2025-10-31T05:34:01.7696376Z CC [M] drivers/video/backlight/wm831x_bl.o
2025-10-31T05:34:01.7813505Z CC net/netlink/af_netlink.o
2025-10-31T05:34:02.5442177Z CC [M] drivers/video/backlight/arcxcnn_bl.o
2025-10-31T05:34:02.6964475Z CC [M] sound/pci/emu10k1/emufx.o
2025-10-31T05:34:03.0983975Z CC [M] fs/lockd/svc.o
2025-10-31T05:34:03.3150206Z CC [M] drivers/video/backlight/rave-sp-backlight.o
2025-10-31T05:34:03.4724503Z CC net/sched/sch_mq.o
2025-10-31T05:34:03.9840744Z AR drivers/video/backlight/built-in.a
2025-10-31T05:34:04.1869052Z CC drivers/video/hdmi.o
2025-10-31T05:34:04.7387523Z CC net/sched/sch_api.o
2025-10-31T05:34:04.7988837Z CC net/netlink/genetlink.o
2025-10-31T05:34:04.8350431Z CC [M] fs/lockd/svclock.o
2025-10-31T05:34:05.0368410Z CC drivers/video/display_timing.o
2025-10-31T05:34:05.2900886Z CC [M] sound/pci/emu10k1/timer.o
2025-10-31T05:34:05.5697862Z CC drivers/video/videomode.o
2025-10-31T05:34:05.6805083Z AR drivers/video/built-in.a
2025-10-31T05:34:05.7097262Z CC drivers/idle/intel_idle.o
2025-10-31T05:34:05.9405339Z CC [M] sound/pci/emu10k1/p16v.o
2025-10-31T05:34:06.6446351Z CC [M] fs/lockd/svcshare.o
2025-10-31T05:34:06.7969798Z CC net/netlink/policy.o
2025-10-31T05:34:06.8212340Z AR drivers/idle/built-in.a
2025-10-31T05:34:06.8746450Z CC drivers/char/ipmi/ipmi_dmi.o
2025-10-31T05:34:07.0936944Z CC [M] sound/pci/emu10k1/emuproc.o
2025-10-31T05:34:07.2511544Z CC net/sched/sch_blackhole.o
2025-10-31T05:34:07.4562326Z CC drivers/char/ipmi/ipmi_plat_data.o
2025-10-31T05:34:07.6819043Z CC [M] net/netlink/diag.o
2025-10-31T05:34:07.7325487Z CC [M] fs/lockd/svcproc.o
2025-10-31T05:34:08.1133020Z CC [M] drivers/char/ipmi/ipmi_msghandler.o
2025-10-31T05:34:08.2293863Z CC net/sched/cls_api.o
2025-10-31T05:34:08.3846752Z CC [M] sound/pci/emu10k1/emu10k1_synth.o
2025-10-31T05:34:08.7998609Z AR net/netlink/built-in.a
2025-10-31T05:34:08.8230417Z LD [M] net/netlink/netlink_diag.o
2025-10-31T05:34:08.8800822Z CC [M] fs/lockd/svcsubs.o
2025-10-31T05:34:09.0903958Z CC [M] drivers/char/ipmi/ipmi_devintf.o
2025-10-31T05:34:09.1149070Z CC [M] sound/pci/emu10k1/emu10k1_callback.o
2025-10-31T05:34:10.0187256Z CC net/sched/act_api.o
2025-10-31T05:34:10.0407634Z CC [M] sound/pci/emu10k1/emu10k1_patch.o
2025-10-31T05:34:10.2182667Z CC [M] fs/lockd/mon.o
2025-10-31T05:34:10.8424648Z CC [M] sound/pci/emu10k1/emu10k1x.o
2025-10-31T05:34:11.0686232Z CC [M] drivers/char/ipmi/ipmi_si_intf.o
2025-10-31T05:34:11.6571523Z CC [M] fs/lockd/xdr.o
2025-10-31T05:34:11.9261342Z CC drivers/acpi/acpica/dsargs.o
2025-10-31T05:34:12.0053523Z CC net/sched/sch_fifo.o
2025-10-31T05:34:12.1727969Z LD [M] sound/pci/emu10k1/snd-emu10k1.o
2025-10-31T05:34:12.2119137Z LD [M] sound/pci/emu10k1/snd-emu10k1-synth.o
2025-10-31T05:34:12.2269700Z LD [M] sound/pci/emu10k1/snd-emu10k1x.o
2025-10-31T05:34:12.2809831Z CC [M] sound/pci/hda/hda_bind.o
2025-10-31T05:34:12.3111120Z CC drivers/acpi/acpica/dscontrol.o
2025-10-31T05:34:12.7148785Z CC drivers/acpi/acpica/dsdebug.o
2025-10-31T05:34:12.8547400Z CC [M] drivers/char/ipmi/ipmi_kcs_sm.o
2025-10-31T05:34:13.0446560Z CC [M] sound/pci/hda/hda_codec.o
2025-10-31T05:34:13.1353412Z CC net/sched/sch_fq_codel.o
2025-10-31T05:34:13.1803344Z CC drivers/acpi/acpica/dsfield.o
2025-10-31T05:34:13.2215644Z CC [M] fs/lockd/clnt4xdr.o
2025-10-31T05:34:13.5944669Z CC [M] drivers/char/ipmi/ipmi_smic_sm.o
2025-10-31T05:34:13.9645899Z CC drivers/acpi/acpica/dsinit.o
2025-10-31T05:34:14.4702268Z CC drivers/acpi/acpica/dsmethod.o
2025-10-31T05:34:14.4787289Z CC [M] drivers/char/ipmi/ipmi_bt_sm.o
2025-10-31T05:34:14.6124340Z CC [M] fs/lockd/xdr4.o
2025-10-31T05:34:14.7150286Z CC net/sched/ematch.o
2025-10-31T05:34:15.1930123Z CC drivers/acpi/acpica/dsmthdat.o
2025-10-31T05:34:15.5393166Z CC [M] drivers/char/ipmi/ipmi_si_hotmod.o
2025-10-31T05:34:15.6789858Z CC [M] sound/pci/hda/hda_jack.o
2025-10-31T05:34:15.7570903Z CC drivers/acpi/acpica/dsobject.o
2025-10-31T05:34:15.8685023Z CC [M] fs/lockd/svc4proc.o
2025-10-31T05:34:15.9470182Z CC [M] net/sched/act_police.o
2025-10-31T05:34:16.1296108Z CC [M] drivers/char/ipmi/ipmi_si_hardcode.o
2025-10-31T05:34:16.3913632Z CC drivers/acpi/acpica/dsopcode.o
2025-10-31T05:34:16.7019157Z CC [M] drivers/char/ipmi/ipmi_si_platform.o
2025-10-31T05:34:16.9357858Z CC [M] sound/pci/hda/hda_auto_parser.o
2025-10-31T05:34:17.0320495Z CC [M] fs/lockd/procfs.o
2025-10-31T05:34:17.1362475Z CC drivers/acpi/acpica/dspkginit.o
2025-10-31T05:34:17.3140757Z CC [M] drivers/char/ipmi/ipmi_si_port_io.o
2025-10-31T05:34:17.3248523Z CC [M] net/sched/act_gact.o
2025-10-31T05:34:17.7263247Z LD [M] fs/lockd/lockd.o
2025-10-31T05:34:17.7376734Z CC drivers/acpi/acpica/dsutils.o
2025-10-31T05:34:17.8403179Z CC [M] fs/cifs/trace.o
2025-10-31T05:34:17.9874347Z CC [M] drivers/char/ipmi/ipmi_si_mem_io.o
2025-10-31T05:34:18.3346151Z CC [M] sound/pci/hda/hda_sysfs.o
2025-10-31T05:34:18.3373959Z CC drivers/acpi/acpica/dswexec.o
2025-10-31T05:34:18.4212935Z CC [M] net/sched/act_mirred.o
2025-10-31T05:34:18.7562687Z CC [M] drivers/char/ipmi/ipmi_si_pci.o
2025-10-31T05:34:19.0941323Z CC drivers/acpi/acpica/dswload.o
2025-10-31T05:34:19.2806216Z CC [M] sound/pci/hda/hda_controller.o
2025-10-31T05:34:19.4590451Z CC [M] drivers/char/ipmi/ipmi_ssif.o
2025-10-31T05:34:19.7397507Z CC [M] net/sched/act_sample.o
2025-10-31T05:34:19.8206029Z CC drivers/acpi/acpica/dswload2.o
2025-10-31T05:34:20.2497428Z CC [M] fs/cifs/cifsfs.o
2025-10-31T05:34:20.4523769Z CC drivers/acpi/acpica/dswscope.o
2025-10-31T05:34:20.7118311Z CC [M] drivers/char/ipmi/ipmi_watchdog.o
2025-10-31T05:34:21.0777325Z CC [M] net/sched/act_ipt.o
2025-10-31T05:34:21.0854072Z CC drivers/acpi/acpica/dswstate.o
2025-10-31T05:34:21.1372299Z CC [M] sound/pci/hda/hda_proc.o
2025-10-31T05:34:21.7434282Z CC [M] drivers/char/ipmi/ipmi_poweroff.o
2025-10-31T05:34:21.8007881Z CC drivers/acpi/acpica/evevent.o
2025-10-31T05:34:22.2067022Z CC [M] net/sched/act_nat.o
2025-10-31T05:34:22.2690883Z CC [M] fs/cifs/cifssmb.o
2025-10-31T05:34:22.3598257Z CC drivers/acpi/acpica/evgpe.o
2025-10-31T05:34:22.4883652Z CC [M] sound/pci/hda/hda_hwdep.o
2025-10-31T05:34:22.5956692Z CC [M] drivers/char/ipmi/ipmb_dev_int.o
2025-10-31T05:34:22.9581229Z CC drivers/acpi/acpica/evgpeblk.o
2025-10-31T05:34:23.1345205Z CC [M] sound/pci/hda/hda_beep.o
2025-10-31T05:34:23.5021320Z CC drivers/acpi/acpica/evgpeinit.o
2025-10-31T05:34:23.5608801Z LD [M] drivers/char/ipmi/ipmi_si.o
2025-10-31T05:34:23.6136162Z AR drivers/char/ipmi/built-in.a
2025-10-31T05:34:23.6578072Z CC [M] net/sched/act_pedit.o
2025-10-31T05:34:23.7206933Z CC [M] fs/cifs/cifs_debug.o
2025-10-31T05:34:23.9085936Z CC [M] sound/pci/hda/hda_generic.o
2025-10-31T05:34:23.9410462Z CC drivers/acpi/acpica/evgpeutil.o
2025-10-31T05:34:24.5634204Z CC drivers/acpi/acpica/evglock.o
2025-10-31T05:34:25.0604009Z CC drivers/acpi/acpica/evhandler.o
2025-10-31T05:34:25.1354660Z CC [M] net/sched/act_simple.o
2025-10-31T05:34:25.2937963Z CC net/bpf/test_run.o
2025-10-31T05:34:25.6394298Z CC drivers/acpi/acpica/evmisc.o
2025-10-31T05:34:26.1599153Z CC [M] net/sched/act_skbedit.o
2025-10-31T05:34:26.1973881Z CC drivers/acpi/acpica/evregion.o
2025-10-31T05:34:26.9321844Z CC drivers/acpi/acpica/evrgnini.o
2025-10-31T05:34:27.3579222Z AR net/bpf/built-in.a
2025-10-31T05:34:27.3776146Z CC [M] net/sched/act_csum.o
2025-10-31T05:34:27.4000789Z CC [M] fs/cifs/connect.o
2025-10-31T05:34:27.5612289Z CC drivers/acpi/acpica/evsci.o
2025-10-31T05:34:27.6466700Z CC [M] fs/cifs/dir.o
2025-10-31T05:34:27.9101186Z CC drivers/acpi/acpica/evxface.o
2025-10-31T05:34:28.1755748Z CC [M] sound/pci/hda/patch_realtek.o
2025-10-31T05:34:28.5387634Z CC drivers/acpi/acpica/evxfevnt.o
2025-10-31T05:34:28.9621496Z CC drivers/acpi/acpica/evxfgpe.o
2025-10-31T05:34:28.9878764Z CC [M] net/sched/act_mpls.o
2025-10-31T05:34:29.6268443Z CC drivers/acpi/acpica/evxfregn.o
2025-10-31T05:34:29.6548693Z CC [M] fs/ufs/balloc.o
2025-10-31T05:34:30.0609934Z CC drivers/acpi/acpica/exconcat.o
2025-10-31T05:34:30.4148456Z CC [M] net/sched/act_vlan.o
2025-10-31T05:34:30.6285447Z CC drivers/acpi/acpica/exconfig.o
2025-10-31T05:34:31.2824400Z CC drivers/acpi/acpica/exconvrt.o
2025-10-31T05:34:31.5227703Z CC [M] net/sched/act_bpf.o
2025-10-31T05:34:31.6041059Z CC [M] fs/ufs/cylinder.o
2025-10-31T05:34:31.6588279Z CC [M] sound/pci/hda/patch_cmedia.o
2025-10-31T05:34:31.9131292Z CC drivers/acpi/acpica/excreate.o
2025-10-31T05:34:32.2219547Z CC [M] fs/ufs/dir.o
2025-10-31T05:34:32.2723524Z CC [M] sound/pci/hda/patch_analog.o
2025-10-31T05:34:32.4086976Z CC [M] fs/cifs/file.o
2025-10-31T05:34:32.5074800Z CC drivers/acpi/acpica/exdebug.o
2025-10-31T05:34:32.9378178Z CC drivers/acpi/acpica/exdump.o
2025-10-31T05:34:33.0665537Z CC [M] net/sched/act_connmark.o
2025-10-31T05:34:33.3562461Z CC [M] sound/pci/hda/patch_sigmatel.o
2025-10-31T05:34:33.5574689Z CC drivers/acpi/acpica/exfield.o
2025-10-31T05:34:33.7487617Z CC [M] fs/ufs/file.o
2025-10-31T05:34:34.1872787Z CC drivers/acpi/acpica/exfldio.o
2025-10-31T05:34:34.2220842Z CC [M] fs/ufs/ialloc.o
2025-10-31T05:34:34.3737737Z CC [M] net/sched/act_ctinfo.o
2025-10-31T05:34:34.7973109Z CC [M] sound/pci/hda/patch_si3054.o
2025-10-31T05:34:34.9476185Z CC drivers/acpi/acpica/exmisc.o
2025-10-31T05:34:35.1094726Z CC [M] fs/ufs/inode.o
2025-10-31T05:34:35.3787482Z CC drivers/acpi/acpica/exmutex.o
2025-10-31T05:34:35.5055635Z CC [M] sound/pci/hda/patch_cirrus.o
2025-10-31T05:34:35.8875489Z CC drivers/acpi/acpica/exnames.o
2025-10-31T05:34:35.9866087Z CC [M] net/sched/act_skbmod.o
2025-10-31T05:34:36.4406018Z CC drivers/acpi/acpica/exoparg1.o
2025-10-31T05:34:36.5583874Z CC [M] sound/pci/hda/patch_ca0110.o
2025-10-31T05:34:36.9214608Z CC [M] fs/ufs/namei.o
2025-10-31T05:34:37.0563836Z CC drivers/acpi/acpica/exoparg2.o
2025-10-31T05:34:37.2653014Z CC [M] net/sched/act_ife.o
2025-10-31T05:34:37.3544108Z CC [M] sound/pci/hda/patch_ca0132.o
2025-10-31T05:34:37.6125193Z CC drivers/acpi/acpica/exoparg3.o
2025-10-31T05:34:37.6525769Z CC [M] fs/ufs/super.o
2025-10-31T05:34:38.1871368Z CC drivers/acpi/acpica/exoparg6.o
2025-10-31T05:34:38.2089701Z CC [M] fs/cifs/inode.o
2025-10-31T05:34:38.6236065Z CC drivers/acpi/acpica/exprep.o
2025-10-31T05:34:38.7893227Z CC [M] net/sched/act_meta_mark.o
2025-10-31T05:34:39.0490891Z CC [M] fs/ufs/util.o
2025-10-31T05:34:39.1647927Z CC drivers/acpi/acpica/exregion.o
2025-10-31T05:34:39.6875379Z CC [M] net/sched/act_meta_skbprio.o
2025-10-31T05:34:39.7311104Z CC drivers/acpi/acpica/exresnte.o
2025-10-31T05:34:39.9469760Z LD [M] fs/ufs/ufs.o
2025-10-31T05:34:40.0354476Z CC [M] net/sched/act_meta_skbtcindex.o
2025-10-31T05:34:40.3462801Z CC drivers/acpi/acpica/exresolv.o
2025-10-31T05:34:40.5782447Z CC drivers/pnp/pnpacpi/core.o
2025-10-31T05:34:40.9675476Z CC [M] net/sched/act_tunnel_key.o
2025-10-31T05:34:41.0280472Z CC drivers/acpi/acpica/exresop.o
2025-10-31T05:34:41.2190293Z CC drivers/pnp/pnpacpi/rsparser.o
2025-10-31T05:34:41.3547195Z CC [M] fs/cifs/link.o
2025-10-31T05:34:41.5953228Z CC drivers/acpi/acpica/exserial.o
2025-10-31T05:34:41.7977708Z CC [M] sound/pci/hda/patch_conexant.o
2025-10-31T05:34:42.0824218Z CC drivers/acpi/acpica/exstore.o
2025-10-31T05:34:42.3394307Z AR drivers/pnp/pnpacpi/built-in.a
2025-10-31T05:34:42.3625461Z CC drivers/pnp/core.o
2025-10-31T05:34:42.5608829Z CC drivers/acpi/acpica/exstoren.o
2025-10-31T05:34:42.6470149Z CC [M] net/sched/act_ct.o
2025-10-31T05:34:43.0258571Z CC drivers/acpi/acpica/exstorob.o
2025-10-31T05:34:43.0379748Z CC [M] fs/cifs/misc.o
2025-10-31T05:34:43.0849986Z CC [M] sound/pci/hda/patch_via.o
2025-10-31T05:34:43.1416072Z CC drivers/pnp/card.o
2025-10-31T05:34:43.4966263Z CC drivers/acpi/acpica/exsystem.o
2025-10-31T05:34:43.9737246Z CC drivers/acpi/acpica/extrace.o
2025-10-31T05:34:44.0969645Z CC drivers/pnp/driver.o
2025-10-31T05:34:44.3144956Z CC [M] sound/pci/hda/patch_hdmi.o
2025-10-31T05:34:44.3571570Z CC drivers/acpi/acpica/exutils.o
2025-10-31T05:34:44.7718797Z CC drivers/pnp/resource.o
2025-10-31T05:34:44.8797009Z CC drivers/acpi/acpica/hwacpi.o
2025-10-31T05:34:45.0998090Z CC [M] fs/cifs/netmisc.o
2025-10-31T05:34:45.1840076Z CC [M] net/sched/act_gate.o
2025-10-31T05:34:45.5027103Z CC drivers/acpi/acpica/hwesleep.o
2025-10-31T05:34:45.8073684Z CC drivers/pnp/manager.o
2025-10-31T05:34:46.1220805Z CC drivers/acpi/acpica/hwgpe.o
2025-10-31T05:34:46.4183233Z CC [M] net/sched/sch_htb.o
2025-10-31T05:34:46.4754233Z CC drivers/pnp/support.o
2025-10-31T05:34:46.6073373Z CC drivers/acpi/acpica/hwregs.o
2025-10-31T05:34:46.6799733Z CC [M] fs/cifs/smbencrypt.o
2025-10-31T05:34:46.9228499Z CC [M] sound/pci/hda/hda_eld.o
2025-10-31T05:34:47.1108614Z CC drivers/pnp/interface.o
2025-10-31T05:34:47.1970328Z CC drivers/acpi/acpica/hwsleep.o
2025-10-31T05:34:47.6631619Z CC drivers/acpi/acpica/hwvalid.o
2025-10-31T05:34:47.8814981Z CC drivers/pnp/quirks.o
2025-10-31T05:34:47.9423489Z CC [M] sound/pci/hda/hda_intel.o
2025-10-31T05:34:48.0206364Z CC [M] fs/cifs/transport.o
2025-10-31T05:34:48.1535514Z CC drivers/acpi/acpica/hwxface.o
2025-10-31T05:34:48.2456649Z CC [M] net/sched/sch_hfsc.o
2025-10-31T05:34:48.6958331Z CC drivers/acpi/acpica/hwxfsleep.o
2025-10-31T05:34:48.8514295Z CC drivers/pnp/system.o
2025-10-31T05:34:49.1434425Z CC drivers/acpi/acpica/hwpci.o
2025-10-31T05:34:49.3093819Z AR drivers/pnp/built-in.a
2025-10-31T05:34:49.3873968Z CC net/ethtool/ioctl.o
2025-10-31T05:34:49.5596361Z CC drivers/acpi/acpica/nsaccess.o
2025-10-31T05:34:50.0366760Z LD [M] sound/pci/hda/snd-hda-codec.o
2025-10-31T05:34:50.0793178Z CC drivers/acpi/acpica/nsalloc.o
2025-10-31T05:34:50.1033934Z LD [M] sound/pci/hda/snd-hda-codec-generic.o
2025-10-31T05:34:50.1399281Z LD [M] sound/pci/hda/snd-hda-codec-realtek.o
2025-10-31T05:34:50.1763896Z LD [M] sound/pci/hda/snd-hda-codec-cmedia.o
2025-10-31T05:34:50.1973181Z CC [M] net/sched/sch_red.o
2025-10-31T05:34:50.2023471Z LD [M] sound/pci/hda/snd-hda-codec-analog.o
2025-10-31T05:34:50.2280775Z LD [M] sound/pci/hda/snd-hda-codec-idt.o
2025-10-31T05:34:50.2560546Z LD [M] sound/pci/hda/snd-hda-codec-si3054.o
2025-10-31T05:34:50.2813271Z LD [M] sound/pci/hda/snd-hda-codec-cirrus.o
2025-10-31T05:34:50.3064268Z LD [M] sound/pci/hda/snd-hda-codec-ca0110.o
2025-10-31T05:34:50.3325546Z LD [M] sound/pci/hda/snd-hda-codec-ca0132.o
2025-10-31T05:34:50.3722996Z LD [M] sound/pci/hda/snd-hda-codec-conexant.o
2025-10-31T05:34:50.4012378Z LD [M] sound/pci/hda/snd-hda-codec-via.o
2025-10-31T05:34:50.4054916Z CC [M] fs/cifs/asn1.o
2025-10-31T05:34:50.4218858Z LD [M] sound/pci/hda/snd-hda-codec-hdmi.o
2025-10-31T05:34:50.4592204Z LD [M] sound/pci/hda/snd-hda-intel.o
2025-10-31T05:34:50.5378764Z CC drivers/acpi/acpica/nsarguments.o
2025-10-31T05:34:50.6707084Z CC [M] sound/pci/ice1712/ice1712.o
2025-10-31T05:34:51.0161338Z CC drivers/acpi/acpica/nsconvert.o
2025-10-31T05:34:51.5647816Z CC [M] net/sched/sch_gred.o
2025-10-31T05:34:51.6935418Z CC drivers/acpi/acpica/nsdump.o
2025-10-31T05:34:52.1622353Z CC net/ethtool/common.o
2025-10-31T05:34:52.1909103Z CC [M] fs/cifs/cifs_unicode.o
2025-10-31T05:34:52.3220826Z CC drivers/acpi/acpica/nseval.o
2025-10-31T05:34:52.5663143Z CC [M] sound/pci/ice1712/delta.o
2025-10-31T05:34:52.9019167Z CC drivers/acpi/acpica/nsinit.o
2025-10-31T05:34:53.1170700Z CC net/ethtool/netlink.o
2025-10-31T05:34:53.4698342Z CC [M] net/sched/sch_ingress.o
2025-10-31T05:34:53.4998870Z CC drivers/acpi/acpica/nsload.o
2025-10-31T05:34:53.5196798Z CC [M] fs/cifs/nterr.o
2025-10-31T05:34:53.5850522Z CC [M] sound/pci/ice1712/hoontech.o
2025-10-31T05:34:53.8906846Z CC drivers/acpi/acpica/nsnames.o
2025-10-31T05:34:54.0908604Z CC [M] fs/cifs/cifsencrypt.o
2025-10-31T05:34:54.3305181Z CC [M] sound/pci/ice1712/ews.o
2025-10-31T05:34:54.4734040Z CC drivers/acpi/acpica/nsobject.o
2025-10-31T05:34:54.5019356Z CC [M] net/sched/sch_sfb.o
2025-10-31T05:34:54.5465853Z CC net/ethtool/bitset.o
2025-10-31T05:34:55.0008180Z CC drivers/acpi/acpica/nsparse.o
2025-10-31T05:34:55.4743683Z CC drivers/acpi/acpica/nspredef.o
2025-10-31T05:34:55.5436323Z CC [M] sound/pci/ice1712/ak4xxx.o
2025-10-31T05:34:55.9338676Z CC [M] fs/cifs/readdir.o
2025-10-31T05:34:55.9755442Z CC drivers/acpi/acpica/nsprepkg.o
2025-10-31T05:34:56.0335601Z CC [M] net/sched/sch_sfq.o
2025-10-31T05:34:56.1183037Z CC net/ethtool/strset.o
2025-10-31T05:34:56.4255234Z CC [M] sound/pci/ice1712/ice1724.o
2025-10-31T05:34:56.6544452Z CC drivers/acpi/acpica/nsrepair.o
2025-10-31T05:34:57.2295181Z CC drivers/acpi/acpica/nsrepair2.o
2025-10-31T05:34:57.4483327Z CC net/ethtool/linkinfo.o
2025-10-31T05:34:57.5922422Z CC [M] fs/cifs/ioctl.o
2025-10-31T05:34:57.8103759Z CC drivers/acpi/acpica/nssearch.o
2025-10-31T05:34:57.9075475Z CC [M] net/sched/sch_tbf.o
2025-10-31T05:34:58.4622917Z CC drivers/acpi/acpica/nsutils.o
2025-10-31T05:34:58.5107700Z CC [M] sound/pci/ice1712/amp.o
2025-10-31T05:34:58.5700107Z CC net/ethtool/linkmodes.o
2025-10-31T05:34:59.0443716Z CC [M] net/sched/sch_teql.o
2025-10-31T05:34:59.0559044Z CC [M] fs/cifs/sess.o
2025-10-31T05:34:59.0762987Z CC [M] sound/pci/ice1712/revo.o
2025-10-31T05:34:59.2911375Z CC drivers/acpi/acpica/nswalk.o
2025-10-31T05:34:59.7214813Z CC drivers/acpi/acpica/nsxfeval.o
2025-10-31T05:34:59.8163926Z CC net/ethtool/linkstate.o
2025-10-31T05:35:00.1225958Z CC [M] sound/pci/ice1712/aureon.o
2025-10-31T05:35:00.1888282Z CC [M] net/sched/sch_prio.o
2025-10-31T05:35:00.4143222Z CC drivers/acpi/acpica/nsxfname.o
2025-10-31T05:35:00.9562928Z CC net/ethtool/debug.o
2025-10-31T05:35:01.0615640Z CC drivers/acpi/acpica/nsxfobj.o
2025-10-31T05:35:01.3771806Z CC [M] net/sched/sch_multiq.o
2025-10-31T05:35:01.4566930Z CC drivers/acpi/acpica/psargs.o
2025-10-31T05:35:01.5177612Z CC [M] fs/cifs/export.o
2025-10-31T05:35:01.6596904Z CC [M] sound/pci/ice1712/vt1720_mobo.o
2025-10-31T05:35:02.0593799Z CC net/ethtool/wol.o
2025-10-31T05:35:02.1498124Z CC drivers/acpi/acpica/psloop.o
2025-10-31T05:35:02.3979316Z CC [M] sound/pci/ice1712/pontis.o
2025-10-31T05:35:02.4366370Z CC [M] fs/cifs/smb1ops.o
2025-10-31T05:35:02.4921633Z CC [M] net/sched/sch_netem.o
2025-10-31T05:35:02.7095189Z CC drivers/acpi/acpica/psobject.o
2025-10-31T05:35:03.1280409Z CC net/ethtool/features.o
2025-10-31T05:35:03.3431814Z CC [M] sound/pci/ice1712/prodigy192.o
2025-10-31T05:35:03.4110438Z CC drivers/acpi/acpica/psopcode.o
2025-10-31T05:35:03.8424988Z CC drivers/acpi/acpica/psopinfo.o
2025-10-31T05:35:04.2187472Z CC [M] net/sched/sch_drr.o
2025-10-31T05:35:04.2845333Z CC drivers/acpi/acpica/psparse.o
2025-10-31T05:35:04.2884074Z CC [M] sound/pci/ice1712/prodigy_hifi.o
2025-10-31T05:35:04.3672284Z CC [M] fs/cifs/winucase.o
2025-10-31T05:35:04.3716065Z CC net/ethtool/privflags.o
2025-10-31T05:35:04.5160386Z CC [M] fs/cifs/smb2ops.o
2025-10-31T05:35:04.7559994Z CC drivers/acpi/acpica/psscope.o
2025-10-31T05:35:05.1508780Z CC drivers/acpi/acpica/pstree.o
2025-10-31T05:35:05.4566271Z CC net/ethtool/rings.o
2025-10-31T05:35:05.5415345Z CC [M] sound/pci/ice1712/juli.o
2025-10-31T05:35:05.6053960Z CC drivers/acpi/acpica/psutils.o
2025-10-31T05:35:05.7150554Z CC [M] net/sched/sch_plug.o
2025-10-31T05:35:06.1301864Z CC drivers/acpi/acpica/pswalk.o
2025-10-31T05:35:06.3263714Z CC [M] sound/pci/ice1712/phase.o
2025-10-31T05:35:06.5910357Z CC drivers/acpi/acpica/psxface.o
2025-10-31T05:35:06.6635896Z CC [M] net/sched/sch_ets.o
2025-10-31T05:35:06.7420649Z CC net/ethtool/channels.o
2025-10-31T05:35:07.1718133Z CC drivers/acpi/acpica/rsaddr.o
2025-10-31T05:35:07.2763896Z CC [M] sound/pci/ice1712/wtm.o
2025-10-31T05:35:07.7403386Z CC drivers/acpi/acpica/rscalc.o
2025-10-31T05:35:07.8281830Z CC net/ethtool/coalesce.o
2025-10-31T05:35:08.1224034Z CC [M] sound/pci/ice1712/se.o
2025-10-31T05:35:08.3705380Z CC [M] net/sched/sch_mqprio.o
2025-10-31T05:35:08.4903738Z CC drivers/acpi/acpica/rscreate.o
2025-10-31T05:35:08.8405536Z CC [M] sound/pci/ice1712/maya44.o
2025-10-31T05:35:09.0615620Z CC net/ethtool/pause.o
2025-10-31T05:35:09.0776523Z CC drivers/acpi/acpica/rsdumpinfo.o
2025-10-31T05:35:09.4873837Z CC drivers/acpi/acpica/rsinfo.o
2025-10-31T05:35:09.5539815Z CC [M] fs/cifs/smb2maperror.o
2025-10-31T05:35:09.7271103Z CC [M] sound/pci/ice1712/quartet.o
2025-10-31T05:35:09.7976331Z CC [M] net/sched/sch_skbprio.o
2025-10-31T05:35:09.9418933Z CC drivers/acpi/acpica/rsio.o
2025-10-31T05:35:10.1625468Z CC net/ethtool/eee.o
2025-10-31T05:35:10.3918938Z CC drivers/acpi/acpica/rsirq.o
2025-10-31T05:35:10.7731130Z CC [M] sound/pci/ice1712/psc724.o
2025-10-31T05:35:10.8220341Z CC drivers/acpi/acpica/rslist.o
2025-10-31T05:35:11.0014610Z CC [M] net/sched/sch_choke.o
2025-10-31T05:35:11.0368497Z CC [M] fs/cifs/smb2transport.o
2025-10-31T05:35:11.2657525Z CC drivers/acpi/acpica/rsmemory.o
2025-10-31T05:35:11.3795857Z CC net/ethtool/tsinfo.o
2025-10-31T05:35:11.5240202Z CC [M] sound/pci/ice1712/wm8766.o
2025-10-31T05:35:11.7775161Z CC drivers/acpi/acpica/rsmisc.o
2025-10-31T05:35:12.1062709Z CC [M] sound/pci/ice1712/wm8776.o
2025-10-31T05:35:12.3266404Z CC drivers/acpi/acpica/rsserial.o
2025-10-31T05:35:12.5485475Z CC [M] net/sched/sch_qfq.o
2025-10-31T05:35:12.6258230Z CC net/ethtool/cabletest.o
2025-10-31T05:35:12.6823447Z LD [M] sound/pci/ice1712/snd-ice17xx-ak4xxx.o
2025-10-31T05:35:12.6854508Z CC drivers/acpi/acpica/rsutils.o
2025-10-31T05:35:12.6923073Z LD [M] sound/pci/ice1712/snd-ice1712.o
2025-10-31T05:35:12.7213870Z LD [M] sound/pci/ice1712/snd-ice1724.o
2025-10-31T05:35:12.7798351Z CC [M] fs/cifs/smb2misc.o
2025-10-31T05:35:12.8371570Z CC [M] sound/pci/korg1212/korg1212.o
2025-10-31T05:35:13.3300664Z CC drivers/acpi/acpica/rsxface.o
2025-10-31T05:35:13.8429101Z CC net/ethtool/tunnels.o
2025-10-31T05:35:13.9695794Z CC drivers/acpi/acpica/tbdata.o
2025-10-31T05:35:14.2377961Z LD [M] sound/pci/korg1212/snd-korg1212.o
2025-10-31T05:35:14.3085828Z CC [M] sound/pci/mixart/mixart.o
2025-10-31T05:35:14.3220310Z CC [M] net/sched/sch_codel.o
2025-10-31T05:35:14.6522423Z CC [M] fs/cifs/smb2pdu.o
2025-10-31T05:35:14.8899465Z CC drivers/acpi/acpica/tbfadt.o
2025-10-31T05:35:15.2640923Z AR net/ethtool/built-in.a
2025-10-31T05:35:15.2897191Z CC [M] net/sched/sch_cake.o
2025-10-31T05:35:15.4195974Z CC [M] sound/pci/mixart/mixart_core.o
2025-10-31T05:35:15.4823870Z CC drivers/acpi/acpica/tbfind.o
2025-10-31T05:35:15.9718524Z CC arch/x86/pci/i386.o
2025-10-31T05:35:15.9750154Z CC drivers/acpi/acpica/tbinstal.o
2025-10-31T05:35:16.3770331Z CC drivers/acpi/acpica/tbprint.o
2025-10-31T05:35:16.4926603Z CC [M] sound/pci/mixart/mixart_hwdep.o
2025-10-31T05:35:16.8142422Z CC drivers/acpi/acpica/tbutils.o
2025-10-31T05:35:16.8994453Z CC arch/x86/pci/init.o
2025-10-31T05:35:17.4331916Z CC drivers/acpi/acpica/tbxface.o
2025-10-31T05:35:17.4950244Z CC [M] sound/pci/mixart/mixart_mixer.o
2025-10-31T05:35:17.5069168Z CC arch/x86/pci/mmconfig_64.o
2025-10-31T05:35:17.9524896Z CC drivers/acpi/acpica/tbxfload.o
2025-10-31T05:35:18.1752516Z CC arch/x86/pci/direct.o
2025-10-31T05:35:18.4421896Z LD [M] sound/pci/mixart/snd-mixart.o
2025-10-31T05:35:18.4722853Z CC drivers/acpi/acpica/tbxfroot.o
2025-10-31T05:35:18.4965371Z CC [M] sound/pci/nm256/nm256.o
2025-10-31T05:35:18.5340785Z CC [M] net/sched/sch_fq.o
2025-10-31T05:35:18.9200128Z CC arch/x86/pci/mmconfig-shared.o
2025-10-31T05:35:19.0923800Z CC drivers/acpi/acpica/utaddress.o
2025-10-31T05:35:19.1348465Z CC [M] fs/cifs/smb2inode.o
2025-10-31T05:35:19.6784838Z CC drivers/acpi/acpica/utalloc.o
2025-10-31T05:35:19.9012977Z LD [M] sound/pci/nm256/snd-nm256.o
2025-10-31T05:35:19.9019212Z CC arch/x86/pci/xen.o
2025-10-31T05:35:19.9857235Z CC [M] sound/pci/oxygen/oxygen_io.o
2025-10-31T05:35:20.1559321Z CC drivers/acpi/acpica/utascii.o
2025-10-31T05:35:20.2115764Z CC [M] net/sched/sch_hhf.o
2025-10-31T05:35:20.5141764Z CC drivers/acpi/acpica/utbuffer.o
2025-10-31T05:35:20.6475600Z CC [M] sound/pci/oxygen/oxygen_lib.o
2025-10-31T05:35:20.9918410Z CC drivers/acpi/acpica/utcopy.o
2025-10-31T05:35:21.0494731Z CC [M] fs/cifs/smb2file.o
2025-10-31T05:35:21.2273581Z CC arch/x86/pci/fixup.o
2025-10-31T05:35:21.5344794Z CC [M] net/sched/sch_pie.o
2025-10-31T05:35:21.5889113Z CC drivers/acpi/acpica/utexcep.o
2025-10-31T05:35:21.9057401Z CC [M] sound/pci/oxygen/oxygen_mixer.o
2025-10-31T05:35:22.0106233Z CC drivers/acpi/acpica/utdebug.o
2025-10-31T05:35:22.0937144Z CC arch/x86/pci/acpi.o
2025-10-31T05:35:22.5253184Z CC drivers/acpi/acpica/utdecode.o
2025-10-31T05:35:22.7714418Z CC [M] fs/cifs/cifsacl.o
2025-10-31T05:35:22.8982288Z CC arch/x86/pci/legacy.o
2025-10-31T05:35:22.9128898Z CC drivers/acpi/acpica/utdelete.o
2025-10-31T05:35:22.9514265Z CC [M] sound/pci/oxygen/oxygen_pcm.o
2025-10-31T05:35:23.1057781Z CC [M] net/sched/sch_fq_pie.o
2025-10-31T05:35:23.5207212Z CC arch/x86/pci/irq.o
2025-10-31T05:35:23.5516392Z CC drivers/acpi/acpica/uterror.o
2025-10-31T05:35:24.0549474Z CC drivers/acpi/acpica/uteval.o
2025-10-31T05:35:24.1294148Z CC [M] sound/pci/oxygen/oxygen.o
2025-10-31T05:35:24.5661706Z CC [M] net/sched/sch_cbs.o
2025-10-31T05:35:24.6552335Z CC drivers/acpi/acpica/utglobal.o
2025-10-31T05:35:24.7297290Z CC [M] fs/cifs/fs_context.o
2025-10-31T05:35:24.7429750Z CC arch/x86/pci/common.o
2025-10-31T05:35:24.9709252Z CC drivers/acpi/acpica/uthex.o
2025-10-31T05:35:25.3025946Z CC [M] sound/pci/oxygen/xonar_dg_mixer.o
2025-10-31T05:35:25.3885476Z CC drivers/acpi/acpica/utids.o
2025-10-31T05:35:25.7237279Z CC arch/x86/pci/early.o
2025-10-31T05:35:25.8387356Z CC [M] fs/cifs/xattr.o
2025-10-31T05:35:25.8594079Z CC [M] net/sched/sch_etf.o
2025-10-31T05:35:25.9949945Z CC drivers/acpi/acpica/utinit.o
2025-10-31T05:35:26.1868611Z CC [M] sound/pci/oxygen/xonar_dg.o
2025-10-31T05:35:26.4836094Z CC arch/x86/pci/bus_numa.o
2025-10-31T05:35:26.5335255Z CC drivers/acpi/acpica/utlock.o
2025-10-31T05:35:26.9201752Z CC [M] sound/pci/oxygen/virtuoso.o
2025-10-31T05:35:27.0289951Z CC drivers/acpi/acpica/utmath.o
2025-10-31T05:35:27.0333900Z CC [M] net/sched/sch_taprio.o
2025-10-31T05:35:27.2103592Z CC arch/x86/pci/amd_bus.o
2025-10-31T05:35:27.4511181Z CC [M] fs/cifs/cifs_spnego.o
2025-10-31T05:35:27.4693396Z CC drivers/acpi/acpica/utmisc.o
2025-10-31T05:35:27.7570437Z CC [M] sound/pci/oxygen/xonar_lib.o
2025-10-31T05:35:27.8399739Z CC drivers/acpi/acpica/utmutex.o
2025-10-31T05:35:28.0878777Z AR arch/x86/pci/built-in.a
2025-10-31T05:35:28.1614399Z CC [M] sound/pci/oxygen/xonar_pcm179x.o
2025-10-31T05:35:28.4120740Z CC drivers/acpi/acpica/utnonansi.o
2025-10-31T05:35:28.4795400Z CC [M] fs/jffs2/compr.o
2025-10-31T05:35:28.8228652Z CC drivers/acpi/acpica/utobject.o
2025-10-31T05:35:28.9242203Z CC [M] fs/cifs/dns_resolve.o
2025-10-31T05:35:29.0094751Z CC [M] net/sched/cls_u32.o
2025-10-31T05:35:29.2758368Z CC [M] sound/pci/oxygen/xonar_cs43xx.o
2025-10-31T05:35:29.3987956Z CC [M] fs/jffs2/dir.o
2025-10-31T05:35:29.4416702Z CC drivers/acpi/acpica/utosi.o
2025-10-31T05:35:30.0920190Z CC drivers/acpi/acpica/utownerid.o
2025-10-31T05:35:30.1778557Z CC [M] sound/pci/oxygen/xonar_wm87x6.o
2025-10-31T05:35:30.2613173Z CC [M] fs/cifs/cifs_dfs_ref.o
2025-10-31T05:35:30.2634503Z CC [M] fs/jffs2/file.o
2025-10-31T05:35:30.6572996Z CC drivers/acpi/acpica/utpredef.o
2025-10-31T05:35:30.9365023Z CC [M] net/sched/cls_route.o
2025-10-31T05:35:31.0572182Z CC [M] fs/jffs2/ioctl.o
2025-10-31T05:35:31.1461485Z CC drivers/acpi/acpica/utresdecode.o
2025-10-31T05:35:31.3985855Z CC [M] sound/pci/oxygen/xonar_hdmi.o
2025-10-31T05:35:31.4688463Z CC drivers/acpi/acpica/utresrc.o
2025-10-31T05:35:31.7224498Z CC [M] fs/jffs2/nodelist.o
2025-10-31T05:35:31.7502855Z CC [M] fs/cifs/dfs_cache.o
2025-10-31T05:35:31.8634273Z CC drivers/acpi/acpica/utstate.o
2025-10-31T05:35:32.2592477Z LD [M] sound/pci/oxygen/snd-oxygen-lib.o
2025-10-31T05:35:32.2977081Z LD [M] sound/pci/oxygen/snd-oxygen.o
2025-10-31T05:35:32.2982398Z CC drivers/acpi/acpica/utstring.o
2025-10-31T05:35:32.3183429Z LD [M] sound/pci/oxygen/snd-virtuoso.o
2025-10-31T05:35:32.4031338Z CC [M] sound/pci/pcxhr/pcxhr.o
2025-10-31T05:35:32.6532308Z CC [M] net/sched/cls_fw.o
2025-10-31T05:35:32.7023289Z CC [M] fs/jffs2/malloc.o
2025-10-31T05:35:32.7795112Z CC drivers/acpi/acpica/utstrsuppt.o
2025-10-31T05:35:33.3192660Z CC drivers/acpi/acpica/utstrtoul64.o
2025-10-31T05:35:33.4503765Z CC [M] fs/jffs2/read.o
2025-10-31T05:35:33.7463524Z CC drivers/acpi/acpica/utxface.o
2025-10-31T05:35:33.7683902Z CC [M] sound/pci/pcxhr/pcxhr_hwdep.o
2025-10-31T05:35:33.9088397Z CC [M] net/sched/cls_basic.o
2025-10-31T05:35:34.1553769Z CC [M] fs/jffs2/nodemgmt.o
2025-10-31T05:35:34.2946368Z CC [M] fs/cifs/fscache.o
2025-10-31T05:35:34.3716898Z CC drivers/acpi/acpica/utxfinit.o
2025-10-31T05:35:34.4757050Z CC [M] sound/pci/pcxhr/pcxhr_mixer.o
2025-10-31T05:35:34.9265401Z CC drivers/acpi/acpica/utxferror.o
2025-10-31T05:35:35.0644584Z CC [M] fs/jffs2/readinode.o
2025-10-31T05:35:35.1522775Z CC [M] net/sched/cls_flow.o
2025-10-31T05:35:35.3237718Z CC drivers/acpi/acpica/utxfmutex.o
2025-10-31T05:35:35.6791927Z AR drivers/acpi/acpica/built-in.a
2025-10-31T05:35:35.7254605Z CC drivers/acpi/numa/srat.o
2025-10-31T05:35:35.7428014Z CC [M] sound/pci/pcxhr/pcxhr_core.o
2025-10-31T05:35:35.7768612Z CC [M] fs/cifs/cache.o
2025-10-31T05:35:36.2810297Z CC [M] fs/jffs2/write.o
2025-10-31T05:35:36.7354427Z CC drivers/acpi/numa/hmat.o
2025-10-31T05:35:36.9457595Z CC [M] sound/pci/pcxhr/pcxhr_mix22.o
2025-10-31T05:35:36.9923274Z LD [M] fs/cifs/cifs.o
2025-10-31T05:35:37.0221735Z CC [M] net/sched/cls_cgroup.o
2025-10-31T05:35:37.1864488Z CC [M] fs/jffs2/scan.o
2025-10-31T05:35:37.3012965Z CC [M] sound/pci/riptide/riptide.o
2025-10-31T05:35:37.7847817Z AR drivers/acpi/numa/built-in.a
2025-10-31T05:35:37.8363789Z CC drivers/acpi/apei/apei-base.o
2025-10-31T05:35:37.9350654Z LD [M] sound/pci/pcxhr/snd-pcxhr.o
2025-10-31T05:35:38.0363305Z CC [M] fs/ubifs/shrinker.o
2025-10-31T05:35:38.3208915Z CC [M] net/sched/cls_bpf.o
2025-10-31T05:35:38.4996188Z CC [M] fs/jffs2/gc.o
2025-10-31T05:35:38.7587074Z LD [M] sound/pci/riptide/snd-riptide.o
2025-10-31T05:35:38.8405002Z CC [M] sound/pci/rme9652/rme9652.o
2025-10-31T05:35:38.8626055Z CC drivers/acpi/apei/hest.o
2025-10-31T05:35:39.0284355Z CC [M] fs/ubifs/journal.o
2025-10-31T05:35:39.8043599Z CC drivers/acpi/apei/erst.o
2025-10-31T05:35:39.8554277Z CC [M] fs/jffs2/symlink.o
2025-10-31T05:35:40.0503817Z CC [M] net/sched/cls_flower.o
2025-10-31T05:35:40.4523621Z CC [M] fs/jffs2/build.o
2025-10-31T05:35:40.5162543Z CC [M] sound/pci/rme9652/hdsp.o
2025-10-31T05:35:40.6612423Z CC [M] fs/ubifs/file.o
2025-10-31T05:35:40.8654765Z CC drivers/acpi/apei/bert.o
2025-10-31T05:35:41.4024882Z CC [M] fs/jffs2/erase.o
2025-10-31T05:35:41.6155285Z CC drivers/acpi/apei/ghes.o
2025-10-31T05:35:42.2670995Z CC [M] fs/ubifs/dir.o
2025-10-31T05:35:42.2729248Z CC [M] fs/jffs2/background.o
2025-10-31T05:35:42.8952130Z CC [M] fs/jffs2/fs.o
2025-10-31T05:35:43.1242927Z CC [M] drivers/acpi/apei/einj.o
2025-10-31T05:35:43.3992774Z CC [M] net/sched/cls_matchall.o
2025-10-31T05:35:43.7633703Z CC [M] sound/pci/rme9652/hdspm.o
2025-10-31T05:35:43.7664543Z CC [M] fs/jffs2/writev.o
2025-10-31T05:35:44.1749493Z CC [M] drivers/acpi/apei/erst-dbg.o
2025-10-31T05:35:44.1824134Z CC [M] fs/ubifs/super.o
2025-10-31T05:35:44.2797974Z CC [M] fs/jffs2/super.o
2025-10-31T05:35:44.7893997Z CC [M] net/sched/em_cmp.o
2025-10-31T05:35:44.9406209Z AR drivers/acpi/apei/built-in.a
2025-10-31T05:35:45.0318678Z CC drivers/acpi/pmic/intel_pmic.o
2025-10-31T05:35:45.0876712Z CC [M] fs/jffs2/debug.o
2025-10-31T05:35:45.6903857Z CC drivers/acpi/pmic/intel_pmic_bytcrc.o
2025-10-31T05:35:45.8231188Z CC [M] net/sched/em_nbyte.o
2025-10-31T05:35:45.8939853Z CC [M] fs/jffs2/wbuf.o
2025-10-31T05:35:46.1517497Z CC [M] fs/ubifs/sb.o
2025-10-31T05:35:46.3035627Z CC drivers/acpi/pmic/intel_pmic_chtcrc.o
2025-10-31T05:35:46.5907875Z LD [M] sound/pci/rme9652/snd-rme9652.o
2025-10-31T05:35:46.6210492Z LD [M] sound/pci/rme9652/snd-hdsp.o
2025-10-31T05:35:46.6495118Z LD [M] sound/pci/rme9652/snd-hdspm.o
2025-10-31T05:35:46.6883325Z CC [M] net/sched/em_u32.o
2025-10-31T05:35:46.7310094Z CC [M] sound/pci/trident/trident.o
2025-10-31T05:35:46.7430725Z CC drivers/acpi/pmic/intel_pmic_xpower.o
2025-10-31T05:35:47.2345750Z CC drivers/acpi/pmic/intel_pmic_bxtwc.o
2025-10-31T05:35:47.4066586Z CC [M] fs/jffs2/xattr.o
2025-10-31T05:35:47.4696201Z CC [M] fs/ubifs/io.o
2025-10-31T05:35:47.5654190Z CC [M] net/sched/em_meta.o
2025-10-31T05:35:47.5954107Z CC [M] sound/pci/trident/trident_main.o
2025-10-31T05:35:47.8851466Z CC drivers/acpi/pmic/intel_pmic_chtwc.o
2025-10-31T05:35:48.4814412Z CC drivers/acpi/pmic/intel_pmic_chtdc_ti.o
2025-10-31T05:35:48.8503251Z CC [M] fs/ubifs/tnc.o
2025-10-31T05:35:48.9375532Z CC [M] fs/jffs2/xattr_trusted.o
2025-10-31T05:35:49.2326856Z CC [M] net/sched/em_text.o
2025-10-31T05:35:49.2565437Z CC drivers/acpi/pmic/tps68470_pmic.o
2025-10-31T05:35:49.5107799Z CC [M] sound/pci/trident/trident_memory.o
2025-10-31T05:35:49.6385884Z CC [M] fs/jffs2/xattr_user.o
2025-10-31T05:35:49.7742457Z AR drivers/acpi/pmic/built-in.a
2025-10-31T05:35:49.8018259Z CC drivers/acpi/dptf/int340x_thermal.o
2025-10-31T05:35:50.2204713Z CC [M] net/sched/em_canid.o
2025-10-31T05:35:50.2362722Z CC [M] fs/jffs2/security.o
2025-10-31T05:35:50.3013897Z CC [M] drivers/acpi/dptf/dptf_power.o
2025-10-31T05:35:50.5470696Z LD [M] sound/pci/trident/snd-trident.o
2025-10-31T05:35:50.6410612Z CC [M] sound/pci/ymfpci/ymfpci.o
2025-10-31T05:35:50.8474292Z CC [M] fs/jffs2/acl.o
2025-10-31T05:35:50.9393161Z CC [M] drivers/acpi/dptf/dptf_pch_fivr.o
2025-10-31T05:35:51.0681054Z CC [M] fs/ubifs/master.o
2025-10-31T05:35:51.2605189Z CC [M] net/sched/em_ipset.o
2025-10-31T05:35:51.4820855Z CC [M] sound/pci/ymfpci/ymfpci_main.o
2025-10-31T05:35:51.5295050Z AR drivers/acpi/dptf/built-in.a
2025-10-31T05:35:51.5999803Z CC [M] fs/jffs2/compr_rtime.o
2025-10-31T05:35:51.6032261Z CC [M] drivers/acpi/nfit/core.o
2025-10-31T05:35:52.1524684Z CC [M] fs/ubifs/scan.o
2025-10-31T05:35:52.3405819Z CC [M] fs/jffs2/compr_zlib.o
2025-10-31T05:35:52.5458605Z CC [M] net/sched/em_ipt.o
2025-10-31T05:35:53.0733927Z CC [M] fs/ubifs/replay.o
2025-10-31T05:35:53.1685946Z CC [M] fs/jffs2/summary.o
2025-10-31T05:35:53.2344583Z LD [M] sound/pci/ymfpci/snd-ymfpci.o
2025-10-31T05:35:53.2810064Z CC [M] sound/pci/vx222/vx222.o
2025-10-31T05:35:53.8886819Z AR net/sched/built-in.a
2025-10-31T05:35:54.1158827Z LD [M] fs/jffs2/jffs2.o
2025-10-31T05:35:54.2043266Z CC [M] sound/pci/vx222/vx222_ops.o
2025-10-31T05:35:54.2873192Z CC [M] drivers/acpi/nfit/intel.o
2025-10-31T05:35:54.2943020Z CC [M] net/netfilter/ipset/ip_set_core.o
2025-10-31T05:35:54.2976476Z CC arch/x86/power/cpu.o
2025-10-31T05:35:54.6161644Z CC [M] fs/ubifs/log.o
2025-10-31T05:35:55.2597808Z CC [M] drivers/acpi/nfit/mce.o
2025-10-31T05:35:55.2929935Z LD [M] sound/pci/vx222/snd-vx222.o
2025-10-31T05:35:55.3529442Z CC [M] sound/pci/ad1889.o
2025-10-31T05:35:55.4929522Z CC arch/x86/power/hibernate_64.o
2025-10-31T05:35:55.7848562Z CC [M] fs/ubifs/commit.o
2025-10-31T05:35:55.9438719Z LD [M] drivers/acpi/nfit/nfit.o
2025-10-31T05:35:55.9822365Z CC drivers/acpi/tables.o
2025-10-31T05:35:56.4365152Z AS arch/x86/power/hibernate_asm_64.o
2025-10-31T05:35:56.4963512Z CC arch/x86/power/hibernate.o
2025-10-31T05:35:56.5398468Z CC [M] sound/pci/als300.o
2025-10-31T05:35:56.7276947Z CC [M] net/netfilter/ipset/ip_set_getport.o
2025-10-31T05:35:56.9032403Z CC [M] fs/ubifs/gc.o
2025-10-31T05:35:56.9231709Z CC drivers/acpi/blacklist.o
2025-10-31T05:35:57.2593700Z AR arch/x86/power/built-in.a
2025-10-31T05:35:57.2889325Z CC [M] net/netfilter/ipvs/ip_vs_conn.o
2025-10-31T05:35:57.4077194Z CC drivers/acpi/osi.o
2025-10-31T05:35:57.6996664Z CC [M] sound/pci/als4000.o
2025-10-31T05:35:57.9983363Z CC drivers/acpi/osl.o
2025-10-31T05:35:58.0281301Z CC [M] net/netfilter/ipset/pfxlen.o
2025-10-31T05:35:58.2420640Z CC [M] fs/ubifs/orphan.o
2025-10-31T05:35:58.7733401Z CC [M] sound/pci/atiixp.o
2025-10-31T05:35:59.0081528Z CC [M] net/netfilter/ipset/ip_set_bitmap_ip.o
2025-10-31T05:35:59.1322160Z CC [M] net/netfilter/ipvs/ip_vs_core.o
2025-10-31T05:35:59.4870230Z CC drivers/acpi/utils.o
2025-10-31T05:35:59.8023278Z CC [M] fs/ubifs/budget.o
2025-10-31T05:36:00.2051152Z CC [M] sound/pci/atiixp_modem.o
2025-10-31T05:36:00.3313311Z CC drivers/acpi/reboot.o
2025-10-31T05:36:00.6111671Z CC [M] net/netfilter/ipset/ip_set_bitmap_ipmac.o
2025-10-31T05:36:01.0406598Z CC drivers/acpi/nvs.o
2025-10-31T05:36:01.1408534Z CC [M] fs/ubifs/find.o
2025-10-31T05:36:01.3698823Z CC [M] sound/pci/azt3328.o
2025-10-31T05:36:01.4839849Z CC [M] net/netfilter/ipvs/ip_vs_ctl.o
2025-10-31T05:36:01.8359915Z CC drivers/acpi/wakeup.o
2025-10-31T05:36:02.1971253Z CC [M] net/netfilter/ipset/ip_set_bitmap_port.o
2025-10-31T05:36:02.4074480Z CC [M] fs/ubifs/tnc_commit.o
2025-10-31T05:36:02.4725297Z CC drivers/acpi/sleep.o
2025-10-31T05:36:02.6688675Z CC [M] sound/pci/bt87x.o
2025-10-31T05:36:03.6541882Z CC [M] sound/pci/cmipci.o
2025-10-31T05:36:03.9042593Z CC [M] net/netfilter/ipset/ip_set_hash_ip.o
2025-10-31T05:36:03.9303061Z CC [M] fs/ubifs/compress.o
2025-10-31T05:36:03.9441566Z CC drivers/acpi/device_sysfs.o
2025-10-31T05:36:04.6631878Z CC [M] net/netfilter/ipvs/ip_vs_sched.o
2025-10-31T05:36:04.6656518Z CC drivers/acpi/device_pm.o
2025-10-31T05:36:05.0084218Z CC [M] fs/ubifs/lpt.o
2025-10-31T05:36:05.7691933Z CC [M] sound/pci/cs4281.o
2025-10-31T05:36:05.8718884Z CC [M] net/netfilter/ipvs/ip_vs_xmit.o
2025-10-31T05:36:05.9180662Z CC drivers/acpi/proc.o
2025-10-31T05:36:06.8438737Z CC drivers/acpi/bus.o
2025-10-31T05:36:06.9901721Z CC [M] sound/pci/ens1370.o
2025-10-31T05:36:07.2132625Z CC [M] net/netfilter/ipset/ip_set_hash_ipmac.o
2025-10-31T05:36:07.3926920Z CC [M] fs/ubifs/lprops.o
2025-10-31T05:36:08.0247762Z CC drivers/acpi/glue.o
2025-10-31T05:36:08.2566290Z CC [M] net/netfilter/ipvs/ip_vs_app.o
2025-10-31T05:36:08.3035002Z CC [M] sound/pci/ak4531_codec.o
2025-10-31T05:36:08.7900471Z CC [M] fs/ubifs/recovery.o
2025-10-31T05:36:08.8558643Z CC drivers/acpi/scan.o
2025-10-31T05:36:09.3000033Z CC [M] sound/pci/ens1371.o
2025-10-31T05:36:09.6891841Z CC [M] net/netfilter/ipvs/ip_vs_sync.o
2025-10-31T05:36:10.2263129Z CC [M] fs/ubifs/ioctl.o
2025-10-31T05:36:10.5249338Z CC [M] net/netfilter/ipset/ip_set_hash_ipmark.o
2025-10-31T05:36:10.6673864Z CC drivers/acpi/resource.o
2025-10-31T05:36:10.8534330Z CC [M] sound/pci/es1938.o
2025-10-31T05:36:11.1813153Z CC [M] fs/ubifs/lpt_commit.o
2025-10-31T05:36:11.5955233Z CC drivers/acpi/acpi_processor.o
2025-10-31T05:36:11.8104444Z CC [M] net/netfilter/ipvs/ip_vs_est.o
2025-10-31T05:36:12.4387005Z CC [M] sound/pci/es1968.o
2025-10-31T05:36:12.6978766Z CC drivers/acpi/processor_core.o
2025-10-31T05:36:13.0775228Z CC [M] net/netfilter/ipvs/ip_vs_proto.o
2025-10-31T05:36:13.1198903Z CC [M] fs/ubifs/tnc_misc.o
2025-10-31T05:36:13.3562786Z CC drivers/acpi/processor_pdc.o
2025-10-31T05:36:13.7778362Z CC [M] net/netfilter/ipset/ip_set_hash_ipport.o
2025-10-31T05:36:13.9695015Z CC drivers/acpi/ec.o
2025-10-31T05:36:14.1523615Z CC [M] fs/ubifs/debug.o
2025-10-31T05:36:14.3767945Z CC [M] net/netfilter/ipvs/ip_vs_pe.o
2025-10-31T05:36:14.6641494Z CC [M] sound/pci/fm801.o
2025-10-31T05:36:15.6984309Z CC [M] net/netfilter/ipvs/ip_vs_proto_tcp.o
2025-10-31T05:36:15.7311067Z CC drivers/acpi/dock.o
2025-10-31T05:36:16.1518419Z CC [M] fs/ubifs/misc.o
2025-10-31T05:36:16.2364750Z CC [M] sound/pci/intel8x0.o
2025-10-31T05:36:16.4738916Z CC drivers/acpi/pci_root.o
2025-10-31T05:36:16.9960807Z CC [M] fs/ubifs/crypto.o
2025-10-31T05:36:17.0385930Z CC [M] net/netfilter/ipset/ip_set_hash_ipportip.o
2025-10-31T05:36:17.2875207Z CC [M] net/netfilter/ipvs/ip_vs_proto_udp.o
2025-10-31T05:36:17.5884168Z CC drivers/acpi/pci_link.o
2025-10-31T05:36:17.9355417Z CC [M] fs/ubifs/xattr.o
2025-10-31T05:36:18.0858352Z CC [M] sound/pci/intel8x0m.o
2025-10-31T05:36:18.7449660Z CC [M] net/netfilter/ipvs/ip_vs_proto_ah_esp.o
2025-10-31T05:36:18.8587663Z CC drivers/acpi/pci_irq.o
2025-10-31T05:36:19.1836421Z CC [M] sound/pci/maestro3.o
2025-10-31T05:36:19.2013631Z CC [M] fs/ubifs/auth.o
2025-10-31T05:36:19.7130128Z CC drivers/acpi/acpi_lpss.o
2025-10-31T05:36:20.0867549Z CC [M] net/netfilter/ipvs/ip_vs_proto_sctp.o
2025-10-31T05:36:20.2040089Z LD [M] fs/ubifs/ubifs.o
2025-10-31T05:36:20.2244660Z CC [M] net/netfilter/ipset/ip_set_hash_ipportnet.o
2025-10-31T05:36:20.3417971Z CC [M] fs/affs/super.o
2025-10-31T05:36:20.6519982Z CC [M] sound/pci/rme32.o
2025-10-31T05:36:21.3085613Z CC drivers/acpi/acpi_apd.o
2025-10-31T05:36:21.5227686Z CC [M] net/netfilter/ipvs/ip_vs_nfct.o
2025-10-31T05:36:21.5401629Z CC [M] fs/affs/namei.o
2025-10-31T05:36:21.8514112Z CC drivers/acpi/acpi_platform.o
2025-10-31T05:36:22.2990737Z CC [M] sound/pci/rme96.o
2025-10-31T05:36:22.3810040Z CC [M] fs/affs/inode.o
2025-10-31T05:36:22.5341686Z CC drivers/acpi/acpi_pnp.o
2025-10-31T05:36:22.9185634Z CC [M] net/netfilter/ipvs/ip_vs_rr.o
2025-10-31T05:36:23.1966004Z CC drivers/acpi/power.o
2025-10-31T05:36:23.2499995Z CC [M] fs/affs/file.o
2025-10-31T05:36:23.8374397Z CC [M] net/netfilter/ipset/ip_set_hash_mac.o
2025-10-31T05:36:24.0739709Z CC [M] sound/pci/sonicvibes.o
2025-10-31T05:36:24.1763936Z CC drivers/acpi/event.o
2025-10-31T05:36:24.2261512Z CC [M] net/netfilter/ipvs/ip_vs_wrr.o
2025-10-31T05:36:24.6911327Z CC [M] fs/affs/dir.o
2025-10-31T05:36:24.9611449Z CC drivers/acpi/evged.o
2025-10-31T05:36:25.3590104Z CC [M] fs/affs/amigaffs.o
2025-10-31T05:36:25.5218615Z CC [M] sound/pci/via82xx.o
2025-10-31T05:36:25.5454657Z CC [M] net/netfilter/ipvs/ip_vs_lc.o
2025-10-31T05:36:25.7773535Z CC drivers/acpi/sysfs.o
2025-10-31T05:36:25.8597768Z CC [M] net/netfilter/ipset/ip_set_hash_net.o
2025-10-31T05:36:26.2789455Z CC [M] fs/affs/bitmap.o
2025-10-31T05:36:26.7433089Z CC [M] net/netfilter/ipvs/ip_vs_wlc.o
2025-10-31T05:36:26.8404620Z CC drivers/acpi/property.o
2025-10-31T05:36:27.0294799Z CC [M] sound/pci/via82xx_modem.o
2025-10-31T05:36:27.1343022Z CC [M] fs/affs/symlink.o
2025-10-31T05:36:27.8880821Z LD [M] fs/affs/affs.o
2025-10-31T05:36:27.9641462Z CC [M] fs/romfs/storage.o
2025-10-31T05:36:27.9780283Z CC drivers/acpi/acpi_cmos_rtc.o
2025-10-31T05:36:28.0470395Z CC [M] net/netfilter/ipvs/ip_vs_fo.o
2025-10-31T05:36:28.1647229Z LD [M] sound/pci/snd-ad1889.o
2025-10-31T05:36:28.1910513Z LD [M] sound/pci/snd-als300.o
2025-10-31T05:36:28.2201036Z LD [M] sound/pci/snd-als4000.o
2025-10-31T05:36:28.2456452Z LD [M] sound/pci/snd-atiixp.o
2025-10-31T05:36:28.2761831Z LD [M] sound/pci/snd-atiixp-modem.o
2025-10-31T05:36:28.3009708Z LD [M] sound/pci/snd-azt3328.o
2025-10-31T05:36:28.3300147Z LD [M] sound/pci/snd-bt87x.o
2025-10-31T05:36:28.3539492Z LD [M] sound/pci/snd-cmipci.o
2025-10-31T05:36:28.3849231Z LD [M] sound/pci/snd-cs4281.o
2025-10-31T05:36:28.4099869Z LD [M] sound/pci/snd-ens1370.o
2025-10-31T05:36:28.4443550Z LD [M] sound/pci/snd-ens1371.o
2025-10-31T05:36:28.4740505Z LD [M] sound/pci/snd-es1938.o
2025-10-31T05:36:28.5000158Z LD [M] sound/pci/snd-es1968.o
2025-10-31T05:36:28.5338359Z LD [M] sound/pci/snd-fm801.o
2025-10-31T05:36:28.5584851Z LD [M] sound/pci/snd-intel8x0.o
2025-10-31T05:36:28.5786780Z LD [M] sound/pci/snd-intel8x0m.o
2025-10-31T05:36:28.5920527Z LD [M] sound/pci/snd-maestro3.o
2025-10-31T05:36:28.6060190Z LD [M] sound/pci/snd-rme32.o
2025-10-31T05:36:28.6198747Z LD [M] sound/pci/snd-rme96.o
2025-10-31T05:36:28.6322823Z LD [M] sound/pci/snd-sonicvibes.o
2025-10-31T05:36:28.6341840Z CC drivers/acpi/x86/apple.o
2025-10-31T05:36:28.6594372Z LD [M] sound/pci/snd-via82xx.o
2025-10-31T05:36:28.6846880Z LD [M] sound/pci/snd-via82xx-modem.o
2025-10-31T05:36:28.6951305Z CC [M] fs/romfs/super.o
2025-10-31T05:36:29.0164847Z CC [M] sound/synth/emux/emux.o
2025-10-31T05:36:29.1893787Z CC [M] net/netfilter/ipvs/ip_vs_ovf.o
2025-10-31T05:36:29.1930510Z CC drivers/acpi/x86/utils.o
2025-10-31T05:36:29.4794377Z CC [M] sound/synth/emux/emux_synth.o
2025-10-31T05:36:29.6373486Z CC drivers/acpi/debugfs.o
2025-10-31T05:36:29.6698725Z CC [M] net/netfilter/ipset/ip_set_hash_netport.o
2025-10-31T05:36:29.7138675Z LD [M] fs/romfs/romfs.o
2025-10-31T05:36:29.7970506Z CC [M] fs/fuse/dev.o
2025-10-31T05:36:30.2393210Z CC drivers/acpi/acpi_lpat.o
2025-10-31T05:36:30.3441843Z CC [M] net/netfilter/ipvs/ip_vs_lblc.o
2025-10-31T05:36:30.3876447Z CC [M] sound/synth/emux/emux_seq.o
2025-10-31T05:36:30.8761459Z CC drivers/acpi/acpi_lpit.o
2025-10-31T05:36:31.0671753Z CC [M] sound/synth/emux/emux_nrpn.o
2025-10-31T05:36:31.5905705Z CC [M] sound/synth/emux/emux_effect.o
2025-10-31T05:36:31.6188206Z CC drivers/acpi/acpi_watchdog.o
2025-10-31T05:36:31.8549451Z CC [M] net/netfilter/ipvs/ip_vs_lblcr.o
2025-10-31T05:36:31.9777435Z CC [M] fs/fuse/dir.o
2025-10-31T05:36:32.2381812Z CC [M] sound/synth/emux/emux_hwdep.o
2025-10-31T05:36:32.3315522Z CC drivers/acpi/acpi_adxl.o
2025-10-31T05:36:32.9053849Z CC drivers/acpi/ac.o
2025-10-31T05:36:33.0098976Z CC [M] sound/synth/emux/soundfont.o
2025-10-31T05:36:33.2923302Z CC [M] net/netfilter/ipset/ip_set_hash_netiface.o
2025-10-31T05:36:33.5190431Z CC [M] net/netfilter/ipvs/ip_vs_dh.o
2025-10-31T05:36:33.7190588Z CC drivers/acpi/button.o
2025-10-31T05:36:33.8718229Z CC [M] fs/fuse/file.o
2025-10-31T05:36:34.0500872Z CC [M] sound/synth/emux/emux_proc.o
2025-10-31T05:36:34.5653577Z CC drivers/acpi/fan.o
2025-10-31T05:36:34.6188628Z CC [M] net/netfilter/ipvs/ip_vs_sh.o
2025-10-31T05:36:34.6711738Z CC [M] sound/synth/emux/emux_oss.o
2025-10-31T05:36:35.2371189Z CC drivers/acpi/pci_slot.o
2025-10-31T05:36:35.6090309Z LD [M] sound/synth/emux/snd-emux-synth.o
2025-10-31T05:36:35.6796413Z CC [M] sound/synth/util_mem.o
2025-10-31T05:36:36.0614380Z CC drivers/acpi/processor_driver.o
2025-10-31T05:36:36.1436420Z CC [M] net/netfilter/ipvs/ip_vs_mh.o
2025-10-31T05:36:36.2547133Z LD [M] sound/synth/snd-util-mem.o
2025-10-31T05:36:36.3739890Z CC [M] sound/usb/misc/ua101.o
2025-10-31T05:36:36.5172349Z CC [M] net/netfilter/ipset/ip_set_hash_netnet.o
2025-10-31T05:36:36.7173016Z CC drivers/acpi/processor_idle.o
2025-10-31T05:36:37.1303366Z CC [M] fs/fuse/inode.o
2025-10-31T05:36:37.7128665Z CC [M] net/netfilter/ipvs/ip_vs_sed.o
2025-10-31T05:36:37.8887462Z CC drivers/acpi/processor_throttling.o
2025-10-31T05:36:37.9183890Z LD [M] sound/usb/misc/snd-ua101.o
2025-10-31T05:36:37.9626304Z CC [M] sound/usb/usx2y/usbusx2y.o
2025-10-31T05:36:38.7710378Z CC [M] fs/fuse/control.o
2025-10-31T05:36:38.7851587Z CC [M] sound/usb/usx2y/usX2Yhwdep.o
2025-10-31T05:36:38.9059521Z CC drivers/acpi/processor_thermal.o
2025-10-31T05:36:39.2238797Z CC [M] net/netfilter/ipvs/ip_vs_nq.o
2025-10-31T05:36:39.4177011Z CC [M] sound/usb/usx2y/usx2yhwdeppcm.o
2025-10-31T05:36:39.5848827Z CC drivers/acpi/processor_perflib.o
2025-10-31T05:36:39.8268555Z CC [M] fs/fuse/xattr.o
2025-10-31T05:36:40.0836209Z CC [M] net/netfilter/ipset/ip_set_hash_netportnet.o
2025-10-31T05:36:40.3325822Z CC [M] net/netfilter/ipvs/ip_vs_ftp.o
2025-10-31T05:36:40.5128842Z CC drivers/acpi/container.o
2025-10-31T05:36:40.6774202Z CC [M] fs/fuse/acl.o
2025-10-31T05:36:40.9370816Z CC [M] sound/usb/usx2y/us122l.o
2025-10-31T05:36:41.1494484Z CC drivers/acpi/thermal.o
2025-10-31T05:36:41.5025779Z CC [M] fs/fuse/readdir.o
2025-10-31T05:36:41.7471425Z CC [M] net/netfilter/ipvs/ip_vs_pe_sip.o
2025-10-31T05:36:42.3099655Z LD [M] sound/usb/usx2y/snd-usb-usx2y.o
2025-10-31T05:36:42.3351791Z LD [M] sound/usb/usx2y/snd-usb-us122l.o
2025-10-31T05:36:42.4032239Z CC drivers/acpi/acpi_memhotplug.o
2025-10-31T05:36:42.4185330Z CC [M] sound/usb/caiaq/device.o
2025-10-31T05:36:42.6295324Z CC [M] fs/fuse/dax.o
2025-10-31T05:36:43.0543321Z CC drivers/acpi/ioapic.o
2025-10-31T05:36:43.1151687Z LD [M] net/netfilter/ipvs/ip_vs.o
2025-10-31T05:36:43.2811731Z AR drivers/amba/built-in.a
2025-10-31T05:36:43.3346911Z AR net/ipv4/netfilter/built-in.a
2025-10-31T05:36:43.3456244Z CC [M] net/ipv4/netfilter/nf_defrag_ipv4.o
2025-10-31T05:36:43.5043232Z CC [M] sound/usb/caiaq/audio.o
2025-10-31T05:36:43.8763479Z CC [M] net/netfilter/ipset/ip_set_list_set.o
2025-10-31T05:36:43.9403563Z CC drivers/acpi/battery.o
2025-10-31T05:36:44.1465121Z CC [M] fs/fuse/cuse.o
2025-10-31T05:36:44.6308159Z CC [M] net/ipv4/netfilter/nf_socket_ipv4.o
2025-10-31T05:36:44.6708758Z CC [M] sound/usb/caiaq/midi.o
2025-10-31T05:36:45.1968864Z CC [M] fs/fuse/virtio_fs.o
2025-10-31T05:36:45.3549912Z LD [M] net/netfilter/ipset/ip_set.o
2025-10-31T05:36:45.3954862Z CC [M] sound/usb/caiaq/control.o
2025-10-31T05:36:45.4999504Z CC drivers/acpi/hed.o
2025-10-31T05:36:45.5204328Z CC net/netfilter/core.o
2025-10-31T05:36:46.0030033Z CC drivers/acpi/bgrt.o
2025-10-31T05:36:46.0370650Z CC [M] net/ipv4/netfilter/nf_tproxy_ipv4.o
2025-10-31T05:36:46.2564600Z CC [M] sound/usb/caiaq/input.o
2025-10-31T05:36:46.4535979Z CC drivers/acpi/cppc_acpi.o
2025-10-31T05:36:46.6513712Z LD [M] fs/fuse/fuse.o
2025-10-31T05:36:46.6940197Z LD [M] fs/fuse/virtiofs.o
2025-10-31T05:36:46.7491383Z CC [M] fs/overlayfs/super.o
2025-10-31T05:36:47.2369963Z CC net/netfilter/nf_log.o
2025-10-31T05:36:47.3278727Z CC [M] net/ipv4/netfilter/nf_log_arp.o
2025-10-31T05:36:47.4240191Z LD [M] sound/usb/caiaq/snd-usb-caiaq.o
2025-10-31T05:36:47.4867916Z CC drivers/acpi/spcr.o
2025-10-31T05:36:47.4997128Z CC [M] sound/usb/6fire/chip.o
2025-10-31T05:36:48.1261365Z CC [M] drivers/acpi/acpi_ipmi.o
2025-10-31T05:36:48.2366301Z CC [M] sound/usb/6fire/comm.o
2025-10-31T05:36:48.5319384Z CC [M] net/ipv4/netfilter/nf_log_ipv4.o
2025-10-31T05:36:48.5702744Z CC [M] fs/overlayfs/namei.o
2025-10-31T05:36:48.5838448Z CC net/netfilter/nf_queue.o
2025-10-31T05:36:48.8687972Z CC [M] drivers/acpi/acpi_video.o
2025-10-31T05:36:49.0606905Z CC [M] sound/usb/6fire/midi.o
2025-10-31T05:36:49.6202318Z CC [M] fs/overlayfs/util.o
2025-10-31T05:36:49.9793148Z CC [M] sound/usb/6fire/control.o
2025-10-31T05:36:50.0013691Z CC net/netfilter/nf_sockopt.o
2025-10-31T05:36:50.0053325Z CC [M] net/ipv4/netfilter/nf_reject_ipv4.o
2025-10-31T05:36:50.4612230Z CC [M] drivers/acpi/video_detect.o
2025-10-31T05:36:50.8653813Z CC [M] fs/overlayfs/inode.o
2025-10-31T05:36:50.8689470Z CC [M] sound/usb/6fire/firmware.o
2025-10-31T05:36:51.1639805Z CC net/netfilter/utils.o
2025-10-31T05:36:51.1695389Z CC [M] net/ipv4/netfilter/nf_nat_h323.o
2025-10-31T05:36:51.2254026Z CC [M] drivers/acpi/acpi_tad.o
2025-10-31T05:36:51.7131067Z CC [M] sound/usb/6fire/pcm.o
2025-10-31T05:36:51.9667923Z CC [M] fs/overlayfs/file.o
2025-10-31T05:36:52.2689309Z CC [M] drivers/acpi/sbshc.o
2025-10-31T05:36:52.4824480Z CC [M] net/netfilter/nfnetlink.o
2025-10-31T05:36:52.6521342Z CC [M] net/ipv4/netfilter/nf_nat_pptp.o
2025-10-31T05:36:52.8166070Z LD [M] sound/usb/6fire/snd-usb-6fire.o
2025-10-31T05:36:52.8683090Z CC [M] sound/usb/hiface/chip.o
2025-10-31T05:36:52.9744007Z CC [M] fs/overlayfs/dir.o
2025-10-31T05:36:53.1073810Z CC [M] drivers/acpi/sbs.o
2025-10-31T05:36:53.5626839Z CC [M] sound/usb/hiface/pcm.o
2025-10-31T05:36:53.8251717Z CC [M] net/netfilter/nfnetlink_acct.o
2025-10-31T05:36:53.8510095Z ASN.1 net/ipv4/netfilter/nf_nat_snmp_basic.asn1.[ch]
2025-10-31T05:36:53.8579633Z CC [M] net/ipv4/netfilter/nft_reject_ipv4.o
2025-10-31T05:36:54.2497044Z CC [M] drivers/acpi/ec_sys.o
2025-10-31T05:36:54.3183320Z CC [M] fs/overlayfs/readdir.o
2025-10-31T05:36:54.4666618Z LD [M] sound/usb/hiface/snd-usb-hiface.o
2025-10-31T05:36:54.5124005Z CC [M] sound/usb/bcd2000/bcd2000.o
2025-10-31T05:36:54.8927777Z CC [M] drivers/acpi/custom_method.o
2025-10-31T05:36:54.9272620Z CC [M] net/ipv4/netfilter/nft_fib_ipv4.o
2025-10-31T05:36:55.1832718Z CC [M] net/netfilter/nfnetlink_queue.o
2025-10-31T05:36:55.2729801Z LD [M] sound/usb/bcd2000/snd-bcd2000.o
2025-10-31T05:36:55.3539288Z CC [M] sound/usb/line6/capture.o
2025-10-31T05:36:55.5324660Z CC [M] drivers/acpi/acpi_pad.o
2025-10-31T05:36:55.8744036Z CC [M] fs/overlayfs/copy_up.o
2025-10-31T05:36:56.2126884Z CC [M] sound/usb/line6/driver.o
2025-10-31T05:36:56.2602571Z CC [M] net/ipv4/netfilter/nft_dup_ipv4.o
2025-10-31T05:36:56.2914055Z CC [M] drivers/acpi/acpi_extlog.o
2025-10-31T05:36:57.1159519Z CC [M] fs/overlayfs/export.o
2025-10-31T05:36:57.2001146Z CC [M] net/ipv4/netfilter/nf_flow_table_ipv4.o
2025-10-31T05:36:57.2383443Z CC [M] net/netfilter/nfnetlink_log.o
2025-10-31T05:36:57.2531345Z CC [M] sound/usb/line6/midi.o
2025-10-31T05:36:57.3158534Z CC [M] drivers/acpi/acpi_configfs.o
2025-10-31T05:36:58.0560604Z CC [M] sound/usb/line6/midibuf.o
2025-10-31T05:36:58.0937406Z LD [M] drivers/acpi/video.o
2025-10-31T05:36:58.1151258Z AR drivers/acpi/built-in.a
2025-10-31T05:36:58.1192945Z LD [M] fs/overlayfs/overlay.o
2025-10-31T05:36:58.1404055Z CC [M] net/ipv4/netfilter/ip_tables.o
2025-10-31T05:36:58.1847041Z CC [M] fs/orangefs/acl.o
2025-10-31T05:36:58.3534956Z AR drivers/clk/actions/built-in.a
2025-10-31T05:36:58.4209683Z AR drivers/clk/analogbits/built-in.a
2025-10-31T05:36:58.4970576Z AR drivers/clk/bcm/built-in.a
2025-10-31T05:36:58.5306599Z CC [M] sound/usb/line6/pcm.o
2025-10-31T05:36:58.5501377Z AR drivers/clk/imgtec/built-in.a
2025-10-31T05:36:58.6230940Z AR drivers/clk/imx/built-in.a
2025-10-31T05:36:58.6931320Z AR drivers/clk/ingenic/built-in.a
2025-10-31T05:36:58.7600354Z AR drivers/clk/mediatek/built-in.a
2025-10-31T05:36:58.8338207Z AR drivers/clk/mvebu/built-in.a
2025-10-31T05:36:58.9051663Z AR drivers/clk/renesas/built-in.a
2025-10-31T05:36:58.9604559Z AR drivers/clk/sprd/built-in.a
2025-10-31T05:36:58.9728602Z CC [M] net/netfilter/nfnetlink_osf.o
2025-10-31T05:36:59.0048011Z CC [M] fs/orangefs/file.o
2025-10-31T05:36:59.0197094Z AR drivers/clk/ti/built-in.a
2025-10-31T05:36:59.0799415Z AR drivers/clk/versatile/built-in.a
2025-10-31T05:36:59.1556314Z CC drivers/clk/x86/clk-pmc-atom.o
2025-10-31T05:36:59.5532403Z CC [M] sound/usb/line6/playback.o
2025-10-31T05:36:59.8613800Z CC drivers/clk/x86/clk-fch.o
2025-10-31T05:37:00.0270476Z CC [M] fs/orangefs/orangefs-cache.o
2025-10-31T05:37:00.3688649Z CC drivers/clk/x86/clk-lpt.o
2025-10-31T05:37:00.3952293Z CC [M] sound/usb/line6/pod.o
2025-10-31T05:37:00.4395146Z CC [M] net/netfilter/nf_conntrack_core.o
2025-10-31T05:37:00.4608018Z CC [M] net/ipv4/netfilter/iptable_filter.o
2025-10-31T05:37:00.7960196Z AR drivers/clk/x86/built-in.a
2025-10-31T05:37:00.8079288Z CC drivers/clk/clk-devres.o
2025-10-31T05:37:00.9343211Z CC [M] fs/orangefs/orangefs-utils.o
2025-10-31T05:37:01.0989243Z CC [M] sound/usb/line6/podhd.o
2025-10-31T05:37:01.2542182Z CC drivers/clk/clk-bulk.o
2025-10-31T05:37:01.5931726Z CC [M] net/ipv4/netfilter/iptable_mangle.o
2025-10-31T05:37:01.8534667Z CC drivers/clk/clkdev.o
2025-10-31T05:37:01.9941276Z CC [M] fs/orangefs/xattr.o
2025-10-31T05:37:02.0461902Z CC [M] sound/usb/line6/toneport.o
2025-10-31T05:37:02.5593779Z CC drivers/clk/clk.o
2025-10-31T05:37:02.6648645Z CC [M] net/ipv4/netfilter/iptable_nat.o
2025-10-31T05:37:02.9765554Z CC [M] sound/usb/line6/variax.o
2025-10-31T05:37:03.0589996Z CC [M] fs/orangefs/dcache.o
2025-10-31T05:37:03.5455305Z CC [M] net/netfilter/nf_conntrack_standalone.o
2025-10-31T05:37:03.7159431Z LD [M] sound/usb/line6/snd-usb-line6.o
2025-10-31T05:37:03.7589709Z LD [M] sound/usb/line6/snd-usb-pod.o
2025-10-31T05:37:03.7840704Z LD [M] sound/usb/line6/snd-usb-podhd.o
2025-10-31T05:37:03.8068591Z LD [M] sound/usb/line6/snd-usb-toneport.o
2025-10-31T05:37:03.8320650Z LD [M] sound/usb/line6/snd-usb-variax.o
2025-10-31T05:37:03.8590003Z CC [M] fs/orangefs/inode.o
2025-10-31T05:37:03.9341199Z CC [M] sound/usb/card.o
2025-10-31T05:37:03.9378911Z CC [M] net/ipv4/netfilter/iptable_raw.o
2025-10-31T05:37:05.0184081Z CC [M] net/ipv4/netfilter/iptable_security.o
2025-10-31T05:37:05.0679523Z CC [M] net/netfilter/nf_conntrack_expect.o
2025-10-31T05:37:05.1140748Z CC [M] sound/usb/clock.o
2025-10-31T05:37:05.5674173Z CC [M] fs/orangefs/orangefs-sysfs.o
2025-10-31T05:37:05.8207110Z CC drivers/clk/clk-divider.o
2025-10-31T05:37:06.1074946Z CC [M] sound/usb/endpoint.o
2025-10-31T05:37:06.1712185Z CC [M] net/ipv4/netfilter/ipt_ah.o
2025-10-31T05:37:06.7235881Z CC drivers/clk/clk-fixed-factor.o
2025-10-31T05:37:06.7928582Z CC [M] net/netfilter/nf_conntrack_helper.o
2025-10-31T05:37:06.8172229Z CC [M] fs/orangefs/orangefs-mod.o
2025-10-31T05:37:07.0444810Z CC [M] net/ipv4/netfilter/ipt_rpfilter.o
2025-10-31T05:37:07.3019535Z CC drivers/clk/clk-fixed-rate.o
2025-10-31T05:37:07.3414780Z CC [M] sound/usb/format.o
2025-10-31T05:37:07.7905978Z CC [M] fs/orangefs/super.o
2025-10-31T05:37:07.8894767Z CC drivers/clk/clk-gate.o
2025-10-31T05:37:08.1809766Z CC [M] net/netfilter/nf_conntrack_proto.o
2025-10-31T05:37:08.2991095Z CC [M] net/ipv4/netfilter/ipt_CLUSTERIP.o
2025-10-31T05:37:08.3593658Z CC [M] sound/usb/helper.o
2025-10-31T05:37:08.5114195Z CC drivers/clk/clk-multiplier.o
2025-10-31T05:37:08.8835559Z CC [M] fs/orangefs/devorangefs-req.o
2025-10-31T05:37:09.0484144Z CC drivers/clk/clk-mux.o
2025-10-31T05:37:09.0823173Z CC [M] sound/usb/mixer.o
2025-10-31T05:37:09.6196863Z CC drivers/clk/clk-composite.o
2025-10-31T05:37:09.6813627Z CC [M] net/netfilter/nf_conntrack_proto_generic.o
2025-10-31T05:37:09.9061403Z CC [M] net/ipv4/netfilter/ipt_ECN.o
2025-10-31T05:37:09.9069584Z CC [M] fs/orangefs/namei.o
2025-10-31T05:37:10.1731927Z CC drivers/clk/clk-fractional-divider.o
2025-10-31T05:37:10.7379819Z CC [M] net/netfilter/nf_conntrack_proto_tcp.o
2025-10-31T05:37:10.7801725Z CC drivers/clk/clk-gpio.o
2025-10-31T05:37:10.9275285Z CC [M] fs/orangefs/symlink.o
2025-10-31T05:37:11.1914945Z CC [M] net/ipv4/netfilter/ipt_REJECT.o
2025-10-31T05:37:11.3833482Z CC [M] drivers/clk/clk-cdce706.o
2025-10-31T05:37:11.4851455Z CC [M] sound/usb/mixer_quirks.o
2025-10-31T05:37:11.6443880Z CC [M] fs/orangefs/dir.o
2025-10-31T05:37:12.3532436Z CC [M] drivers/clk/clk-cs2000-cp.o
2025-10-31T05:37:12.4168752Z CC [M] net/ipv4/netfilter/ipt_SYNPROXY.o
2025-10-31T05:37:12.5791786Z CC [M] net/netfilter/nf_conntrack_proto_udp.o
2025-10-31T05:37:12.6801650Z CC [M] fs/orangefs/orangefs-bufmap.o
2025-10-31T05:37:13.0094867Z CC [M] drivers/clk/clk-max9485.o
2025-10-31T05:37:13.1176164Z CC [M] sound/usb/mixer_scarlett.o
2025-10-31T05:37:13.7127961Z CC [M] net/ipv4/netfilter/arp_tables.o
2025-10-31T05:37:13.7451376Z CC [M] fs/orangefs/orangefs-debugfs.o
2025-10-31T05:37:13.8484325Z CC [M] net/netfilter/nf_conntrack_proto_icmp.o
2025-10-31T05:37:13.9828531Z CC [M] drivers/clk/clk-palmas.o
2025-10-31T05:37:13.9909125Z CC [M] sound/usb/mixer_scarlett_gen2.o
2025-10-31T05:37:14.8369311Z CC [M] drivers/clk/clk-pwm.o
2025-10-31T05:37:15.0314357Z CC [M] fs/orangefs/waitqueue.o
2025-10-31T05:37:15.1191467Z CC [M] net/netfilter/nf_conntrack_extend.o
2025-10-31T05:37:15.3422931Z CC [M] sound/usb/mixer_us16x08.o
2025-10-31T05:37:15.3626219Z CC [M] drivers/clk/clk-s2mps11.o
2025-10-31T05:37:15.7969820Z CC [M] net/ipv4/netfilter/arpt_mangle.o
2025-10-31T05:37:15.8723013Z CC [M] drivers/clk/clk-si5341.o
2025-10-31T05:37:15.9836424Z LD [M] fs/orangefs/orangefs.o
2025-10-31T05:37:16.0963456Z CC [M] fs/udf/balloc.o
2025-10-31T05:37:16.3083022Z CC [M] net/netfilter/nf_conntrack_acct.o
2025-10-31T05:37:16.4046368Z CC [M] sound/usb/mixer_s1810c.o
2025-10-31T05:37:16.9062312Z CC [M] net/ipv4/netfilter/arptable_filter.o
2025-10-31T05:37:17.1366434Z CC [M] fs/udf/dir.o
2025-10-31T05:37:17.1891875Z CC [M] sound/usb/pcm.o
2025-10-31T05:37:17.2181845Z CC [M] drivers/clk/clk-si5351.o
2025-10-31T05:37:17.3250195Z CC [M] net/netfilter/nf_conntrack_seqadj.o
2025-10-31T05:37:17.9003380Z CC [M] net/ipv4/netfilter/nf_dup_ipv4.o
2025-10-31T05:37:18.0878637Z CC [M] fs/udf/file.o
2025-10-31T05:37:18.3245628Z CC [M] drivers/clk/clk-si544.o
2025-10-31T05:37:18.7169231Z CC [M] sound/usb/power.o
2025-10-31T05:37:18.7949688Z CC [M] net/netfilter/nf_conntrack_proto_icmpv6.o
2025-10-31T05:37:18.8513707Z CC [M] fs/udf/ialloc.o
2025-10-31T05:37:19.0156522Z CC [M] drivers/clk/clk-twl6040.o
2025-10-31T05:37:19.2423835Z CC [M] net/ipv4/netfilter/nf_nat_snmp_basic.asn1.o
2025-10-31T05:37:19.2864277Z CC [M] sound/usb/proc.o
2025-10-31T05:37:19.3720715Z CC [M] net/ipv4/netfilter/nf_nat_snmp_basic_main.o
2025-10-31T05:37:19.4655325Z CC [M] fs/udf/inode.o
2025-10-31T05:37:19.8953884Z CC [M] drivers/clk/clk-wm831x.o
2025-10-31T05:37:20.0672314Z CC [M] net/netfilter/nf_conntrack_timeout.o
2025-10-31T05:37:20.0916695Z CC [M] sound/usb/quirks.o
2025-10-31T05:37:20.4673917Z AR drivers/clk/built-in.a
2025-10-31T05:37:20.5950534Z CC drivers/dma/dw/core.o
2025-10-31T05:37:20.9372267Z LD [M] net/ipv4/netfilter/nf_nat_snmp_basic.o
2025-10-31T05:37:21.2021465Z CC net/ipv4/route.o
2025-10-31T05:37:21.4473729Z CC [M] net/netfilter/nf_conntrack_timestamp.o
2025-10-31T05:37:21.4854024Z CC [M] fs/udf/lowlevel.o
2025-10-31T05:37:21.5066022Z CC [M] sound/usb/stream.o
2025-10-31T05:37:21.8327498Z CC drivers/dma/dw/dw.o
2025-10-31T05:37:22.1896185Z CC [M] fs/udf/namei.o
2025-10-31T05:37:22.6765536Z CC drivers/dma/dw/idma32.o
2025-10-31T05:37:22.6948096Z CC [M] net/netfilter/nf_conntrack_ecache.o
2025-10-31T05:37:22.8080638Z CC [M] sound/usb/validate.o
2025-10-31T05:37:23.3093491Z CC drivers/dma/dw/acpi.o
2025-10-31T05:37:23.5302650Z CC [M] sound/usb/media.o
2025-10-31T05:37:23.6252828Z CC [M] fs/udf/partition.o
2025-10-31T05:37:23.9353179Z CC [M] net/netfilter/nf_conntrack_labels.o
2025-10-31T05:37:23.9384508Z CC drivers/dma/dw/pci.o
2025-10-31T05:37:24.3124077Z CC [M] fs/udf/super.o
2025-10-31T05:37:24.5811224Z CC [M] drivers/dma/dw/platform.o
2025-10-31T05:37:24.6708200Z CC [M] sound/usb/midi.o
2025-10-31T05:37:24.7590848Z CC net/ipv4/inetpeer.o
2025-10-31T05:37:25.1208838Z CC [M] net/netfilter/nf_conntrack_proto_dccp.o
2025-10-31T05:37:25.4668818Z AR drivers/dma/dw/built-in.a
2025-10-31T05:37:25.4914125Z LD [M] drivers/dma/dw/dw_dmac.o
2025-10-31T05:37:25.5713344Z CC drivers/dma/hsu/hsu.o
2025-10-31T05:37:25.9986642Z CC net/ipv4/protocol.o
2025-10-31T05:37:26.0470065Z CC [M] fs/udf/truncate.o
2025-10-31T05:37:26.4376692Z LD [M] sound/usb/snd-usb-audio.o
2025-10-31T05:37:26.4847488Z LD [M] sound/usb/snd-usbmidi-lib.o
2025-10-31T05:37:26.4901495Z CC [M] net/netfilter/nf_conntrack_proto_sctp.o
2025-10-31T05:37:26.5527668Z CC [M] sound/firewire/dice/dice-transaction.o
2025-10-31T05:37:26.8286025Z CC [M] fs/udf/symlink.o
2025-10-31T05:37:27.0665311Z AR drivers/dma/hsu/built-in.a
2025-10-31T05:37:27.1031071Z CC net/ipv4/ip_input.o
2025-10-31T05:37:27.1147628Z AR drivers/dma/mediatek/built-in.a
2025-10-31T05:37:27.1849840Z AR drivers/dma/qcom/built-in.a
2025-10-31T05:37:27.2071800Z CC [M] drivers/dma/qcom/hidma_mgmt.o
2025-10-31T05:37:27.3556184Z CC [M] sound/firewire/dice/dice-stream.o
2025-10-31T05:37:27.5294702Z CC [M] fs/udf/directory.o
2025-10-31T05:37:27.8754260Z CC [M] net/netfilter/nf_conntrack_proto_gre.o
2025-10-31T05:37:28.0628962Z CC [M] drivers/dma/qcom/hidma_mgmt_sys.o
2025-10-31T05:37:28.4333385Z CC [M] sound/firewire/dice/dice-proc.o
2025-10-31T05:37:28.4659016Z CC [M] fs/udf/misc.o
2025-10-31T05:37:28.6772575Z CC [M] drivers/dma/qcom/hidma_ll.o
2025-10-31T05:37:28.6892291Z CC net/ipv4/ip_fragment.o
2025-10-31T05:37:29.1451349Z CC [M] fs/udf/udftime.o
2025-10-31T05:37:29.3513744Z CC [M] sound/firewire/dice/dice-midi.o
2025-10-31T05:37:29.3679835Z CC [M] net/netfilter/nf_conntrack_netlink.o
2025-10-31T05:37:29.7128081Z CC [M] drivers/dma/qcom/hidma.o
2025-10-31T05:37:29.8607134Z CC [M] fs/udf/unicode.o
2025-10-31T05:37:30.1096069Z CC [M] sound/firewire/dice/dice-pcm.o
2025-10-31T05:37:30.1166735Z CC net/ipv4/ip_forward.o
2025-10-31T05:37:30.7065460Z LD [M] fs/udf/udf.o
2025-10-31T05:37:30.7756747Z CC [M] fs/omfs/bitmap.o
2025-10-31T05:37:31.0275071Z CC [M] sound/firewire/dice/dice-hwdep.o
2025-10-31T05:37:31.0968256Z CC [M] drivers/dma/qcom/hidma_dbg.o
2025-10-31T05:37:31.5387698Z CC [M] fs/omfs/dir.o
2025-10-31T05:37:31.5773131Z CC net/ipv4/ip_options.o
2025-10-31T05:37:31.7239636Z LD [M] drivers/dma/qcom/hdma_mgmt.o
2025-10-31T05:37:31.7450256Z LD [M] drivers/dma/qcom/hdma.o
2025-10-31T05:37:31.8169370Z CC [M] sound/firewire/dice/dice.o
2025-10-31T05:37:31.8239412Z AR drivers/dma/ti/built-in.a
2025-10-31T05:37:31.8603281Z AR drivers/dma/xilinx/built-in.a
2025-10-31T05:37:31.8942228Z CC [M] drivers/dma/dw-edma/dw-edma-core.o
2025-10-31T05:37:32.2127864Z CC [M] net/netfilter/nfnetlink_cttimeout.o
2025-10-31T05:37:32.4708646Z CC [M] fs/omfs/file.o
2025-10-31T05:37:32.7732959Z CC [M] sound/firewire/dice/dice-tcelectronic.o
2025-10-31T05:37:33.0071839Z CC [M] drivers/dma/dw-edma/dw-edma-v0-core.o
2025-10-31T05:37:33.2641374Z CC [M] fs/omfs/inode.o
2025-10-31T05:37:33.4542641Z CC net/ipv4/ip_output.o
2025-10-31T05:37:33.5912807Z CC [M] sound/firewire/dice/dice-alesis.o
2025-10-31T05:37:33.6501859Z CC [M] net/netfilter/nfnetlink_cthelper.o
2025-10-31T05:37:33.7436914Z CC [M] drivers/dma/dw-edma/dw-edma-v0-debugfs.o
2025-10-31T05:37:34.2938298Z CC [M] sound/firewire/dice/dice-extension.o
2025-10-31T05:37:34.4026945Z LD [M] fs/omfs/omfs.o
2025-10-31T05:37:34.4522738Z CC [M] drivers/dma/dw-edma/dw-edma-pcie.o
2025-10-31T05:37:34.4920897Z CC [M] fs/jfs/super.o
2025-10-31T05:37:35.1353447Z CC [M] sound/firewire/dice/dice-mytek.o
2025-10-31T05:37:35.3404340Z CC [M] net/netfilter/nf_conntrack_amanda.o
2025-10-31T05:37:35.4022938Z LD [M] drivers/dma/dw-edma/dw-edma.o
2025-10-31T05:37:35.5033980Z CC [M] drivers/dma/ioat/init.o
2025-10-31T05:37:35.6874820Z CC [M] fs/jfs/file.o
2025-10-31T05:37:35.7228233Z CC [M] sound/firewire/dice/dice-presonus.o
2025-10-31T05:37:36.1979278Z CC net/ipv4/ip_sockglue.o
2025-10-31T05:37:36.2525940Z CC [M] fs/jfs/inode.o
2025-10-31T05:37:36.5216889Z LD [M] sound/firewire/dice/snd-dice.o
2025-10-31T05:37:36.5260717Z CC [M] net/netfilter/nf_conntrack_ftp.o
2025-10-31T05:37:36.6404811Z CC [M] sound/firewire/oxfw/oxfw-command.o
2025-10-31T05:37:36.8440539Z CC [M] drivers/dma/ioat/dma.o
2025-10-31T05:37:37.1504503Z CC [M] fs/jfs/namei.o
2025-10-31T05:37:37.5763047Z CC [M] sound/firewire/oxfw/oxfw-stream.o
2025-10-31T05:37:38.1460037Z CC [M] net/netfilter/nf_conntrack_h323_main.o
2025-10-31T05:37:38.1577806Z CC [M] drivers/dma/ioat/prep.o
2025-10-31T05:37:38.5204662Z CC net/ipv4/inet_hashtables.o
2025-10-31T05:37:38.5547485Z CC [M] fs/jfs/jfs_mount.o
2025-10-31T05:37:38.5828413Z CC [M] sound/firewire/oxfw/oxfw-pcm.o
2025-10-31T05:37:39.3775292Z CC [M] fs/jfs/jfs_umount.o
2025-10-31T05:37:39.4735721Z CC [M] drivers/dma/ioat/dca.o
2025-10-31T05:37:39.6585928Z CC [M] sound/firewire/oxfw/oxfw-proc.o
2025-10-31T05:37:39.8880645Z CC [M] fs/jfs/jfs_xtree.o
2025-10-31T05:37:40.2194991Z CC [M] net/netfilter/nf_conntrack_h323_asn1.o
2025-10-31T05:37:40.2705955Z CC [M] drivers/dma/ioat/sysfs.o
2025-10-31T05:37:40.4332759Z CC net/ipv4/inet_timewait_sock.o
2025-10-31T05:37:40.4632292Z CC [M] sound/firewire/oxfw/oxfw-midi.o
2025-10-31T05:37:40.9143988Z LD [M] drivers/dma/ioat/ioatdma.o
2025-10-31T05:37:40.9583973Z CC [M] net/netfilter/nf_conntrack_irc.o
2025-10-31T05:37:40.9633754Z CC [M] drivers/dma/idxd/init.o
2025-10-31T05:37:41.3695185Z CC [M] sound/firewire/oxfw/oxfw-hwdep.o
2025-10-31T05:37:41.7925631Z CC [M] fs/jfs/jfs_imap.o
2025-10-31T05:37:41.9989842Z CC net/ipv4/inet_connection_sock.o
2025-10-31T05:37:42.0778210Z CC [M] sound/firewire/oxfw/oxfw-spkr.o
2025-10-31T05:37:42.0840892Z CC [M] drivers/dma/idxd/irq.o
2025-10-31T05:37:42.1562996Z CC [M] net/netfilter/nf_conntrack_broadcast.o
2025-10-31T05:37:42.8753556Z CC [M] sound/firewire/oxfw/oxfw-scs1x.o
2025-10-31T05:37:42.9335293Z CC [M] drivers/dma/idxd/device.o
2025-10-31T05:37:43.3128725Z CC [M] net/netfilter/nf_conntrack_netbios_ns.o
2025-10-31T05:37:43.4714125Z CC [M] fs/jfs/jfs_debug.o
2025-10-31T05:37:43.5673374Z CC [M] sound/firewire/oxfw/oxfw.o
2025-10-31T05:37:44.0434768Z CC [M] fs/jfs/jfs_dmap.o
2025-10-31T05:37:44.1810684Z CC net/ipv4/tcp.o
2025-10-31T05:37:44.2833956Z CC [M] drivers/dma/idxd/sysfs.o
2025-10-31T05:37:44.4581802Z LD [M] sound/firewire/oxfw/snd-oxfw.o
2025-10-31T05:37:44.5557441Z CC [M] net/netfilter/nf_conntrack_snmp.o
2025-10-31T05:37:44.5601282Z CC [M] sound/firewire/fireworks/fireworks_transaction.o
2025-10-31T05:37:45.4727307Z CC [M] sound/firewire/fireworks/fireworks_command.o
2025-10-31T05:37:45.7034653Z CC [M] drivers/dma/idxd/submit.o
2025-10-31T05:37:45.9200908Z CC [M] net/netfilter/nf_conntrack_pptp.o
2025-10-31T05:37:45.9865314Z CC [M] fs/jfs/jfs_unicode.o
2025-10-31T05:37:46.2951900Z CC [M] drivers/dma/idxd/dma.o
2025-10-31T05:37:46.3374965Z CC [M] sound/firewire/fireworks/fireworks_stream.o
2025-10-31T05:37:46.7795749Z CC [M] fs/jfs/jfs_dtree.o
2025-10-31T05:37:46.9902272Z CC [M] drivers/dma/idxd/cdev.o
2025-10-31T05:37:47.3513656Z CC [M] sound/firewire/fireworks/fireworks_proc.o
2025-10-31T05:37:47.4559916Z CC [M] net/netfilter/nf_conntrack_sane.o
2025-10-31T05:37:47.6763072Z LD [M] drivers/dma/idxd/idxd.o
2025-10-31T05:37:47.7342283Z CC [M] drivers/dma/sf-pdma/sf-pdma.o
2025-10-31T05:37:48.2115353Z CC [M] sound/firewire/fireworks/fireworks_midi.o
2025-10-31T05:37:48.4287935Z CC net/ipv4/tcp_input.o
2025-10-31T05:37:48.6821155Z CC [M] net/netfilter/nf_conntrack_sip.o
2025-10-31T05:37:49.0348834Z CC drivers/dma/dmaengine.o
2025-10-31T05:37:49.0924556Z CC [M] sound/firewire/fireworks/fireworks_pcm.o
2025-10-31T05:37:49.2507813Z CC [M] fs/jfs/jfs_inode.o
2025-10-31T05:37:49.9203065Z CC [M] fs/jfs/jfs_discard.o
2025-10-31T05:37:50.0223707Z CC [M] sound/firewire/fireworks/fireworks_hwdep.o
2025-10-31T05:37:50.5375868Z CC drivers/dma/virt-dma.o
2025-10-31T05:37:50.5976719Z CC [M] net/netfilter/nf_conntrack_tftp.o
2025-10-31T05:37:50.6123241Z CC [M] fs/jfs/jfs_extent.o
2025-10-31T05:37:51.1168646Z CC [M] sound/firewire/fireworks/fireworks.o
2025-10-31T05:37:51.2647121Z CC [M] fs/jfs/symlink.o
2025-10-31T05:37:51.3482245Z CC drivers/dma/acpi-dma.o
2025-10-31T05:37:51.8743804Z CC [M] net/netfilter/nf_log_common.o
2025-10-31T05:37:51.8939380Z CC [M] fs/jfs/jfs_metapage.o
2025-10-31T05:37:52.0376720Z LD [M] sound/firewire/fireworks/snd-fireworks.o
2025-10-31T05:37:52.0940110Z CC [M] sound/firewire/bebob/bebob_command.o
2025-10-31T05:37:52.1925750Z CC [M] drivers/dma/altera-msgdma.o
2025-10-31T05:37:52.9230988Z CC [M] sound/firewire/bebob/bebob_stream.o
2025-10-31T05:37:53.0114223Z CC [M] fs/jfs/jfs_logmgr.o
2025-10-31T05:37:53.1930400Z CC [M] net/netfilter/nf_log_netdev.o
2025-10-31T05:37:53.2410261Z CC [M] drivers/dma/idma64.o
2025-10-31T05:37:53.5614208Z CC net/ipv4/tcp_output.o
2025-10-31T05:37:53.9302262Z CC [M] sound/firewire/bebob/bebob_proc.o
2025-10-31T05:37:54.3040574Z CC [M] drivers/dma/plx_dma.o
2025-10-31T05:37:54.4286485Z CC [M] fs/jfs/jfs_txnmgr.o
2025-10-31T05:37:54.4749302Z CC [M] net/netfilter/nf_nat_core.o
2025-10-31T05:37:54.7327368Z CC [M] sound/firewire/bebob/bebob_midi.o
2025-10-31T05:37:55.3706083Z AR drivers/dma/built-in.a
2025-10-31T05:37:55.4728454Z CC [M] sound/firewire/bebob/bebob_pcm.o
2025-10-31T05:37:55.5250971Z AR drivers/soc/bcm/built-in.a
2025-10-31T05:37:55.6003375Z AR drivers/soc/fsl/built-in.a
2025-10-31T05:37:55.6785737Z AR drivers/soc/imx/built-in.a
2025-10-31T05:37:55.7573013Z AR drivers/soc/mediatek/built-in.a
2025-10-31T05:37:55.8313888Z AR drivers/soc/amlogic/built-in.a
2025-10-31T05:37:55.8974453Z AR drivers/soc/qcom/built-in.a
2025-10-31T05:37:55.9197515Z CC [M] drivers/soc/qcom/qmi_encdec.o
2025-10-31T05:37:56.0465884Z CC [M] fs/jfs/jfs_uniupr.o
2025-10-31T05:37:56.2632498Z CC [M] sound/firewire/bebob/bebob_hwdep.o
2025-10-31T05:37:56.4040568Z CC [M] net/netfilter/nf_nat_proto.o
2025-10-31T05:37:56.5324415Z CC [M] fs/jfs/resize.o
2025-10-31T05:37:56.8834692Z CC [M] drivers/soc/qcom/qmi_interface.o
2025-10-31T05:37:57.0109826Z CC [M] sound/firewire/bebob/bebob_terratec.o
2025-10-31T05:37:57.3183518Z CC net/ipv4/tcp_timer.o
2025-10-31T05:37:57.4038987Z CC [M] fs/jfs/xattr.o
2025-10-31T05:37:57.5617113Z CC [M] sound/firewire/bebob/bebob_yamaha_terratec.o
2025-10-31T05:37:58.1688312Z CC [M] net/netfilter/nf_nat_helper.o
2025-10-31T05:37:58.1693574Z CC [M] sound/firewire/bebob/bebob_focusrite.o
2025-10-31T05:37:58.2378759Z LD [M] drivers/soc/qcom/qmi_helpers.o
2025-10-31T05:37:58.3309731Z AR drivers/soc/renesas/built-in.a
2025-10-31T05:37:58.4018689Z AR drivers/soc/sunxi/built-in.a
2025-10-31T05:37:58.4714460Z AR drivers/soc/ti/built-in.a
2025-10-31T05:37:58.5481148Z AR drivers/soc/xilinx/built-in.a
2025-10-31T05:37:58.5765636Z CC [M] drivers/soc/xilinx/xlnx_vcu.o
2025-10-31T05:37:58.6688219Z CC [M] fs/jfs/ioctl.o
2025-10-31T05:37:58.8443772Z CC [M] sound/firewire/bebob/bebob_maudio.o
2025-10-31T05:37:59.1953173Z CC net/ipv4/tcp_ipv4.o
2025-10-31T05:37:59.3318373Z CC [M] net/netfilter/nf_nat_redirect.o
2025-10-31T05:37:59.3523453Z CC [M] fs/jfs/acl.o
2025-10-31T05:37:59.4018439Z AR drivers/soc/built-in.a
2025-10-31T05:37:59.4502876Z CC drivers/virtio/virtio.o
2025-10-31T05:37:59.6583308Z CC [M] sound/firewire/bebob/bebob.o
2025-10-31T05:38:00.1665240Z LD [M] fs/jfs/jfs.o
2025-10-31T05:38:00.3186048Z CC drivers/virtio/virtio_ring.o
2025-10-31T05:38:00.3458206Z CC [M] fs/xfs/xfs_trace.o
2025-10-31T05:38:00.4204057Z CC [M] net/netfilter/nf_nat_masquerade.o
2025-10-31T05:38:00.4652805Z LD [M] sound/firewire/bebob/snd-bebob.o
2025-10-31T05:38:00.5263212Z CC [M] sound/firewire/digi00x/amdtp-dot.o
2025-10-31T05:38:01.5241153Z CC [M] sound/firewire/digi00x/digi00x-stream.o
2025-10-31T05:38:01.7827255Z CC [M] net/netfilter/nf_nat_amanda.o
2025-10-31T05:38:02.2147745Z CC [M] drivers/virtio/virtio_mmio.o
2025-10-31T05:38:02.4247568Z CC net/ipv4/tcp_minisocks.o
2025-10-31T05:38:02.6256709Z CC [M] sound/firewire/digi00x/digi00x-proc.o
2025-10-31T05:38:02.7833744Z CC [M] net/netfilter/nf_nat_ftp.o
2025-10-31T05:38:03.3407387Z CC [M] sound/firewire/digi00x/digi00x-pcm.o
2025-10-31T05:38:03.3584256Z CC [M] drivers/virtio/virtio_pci_modern.o
2025-10-31T05:38:03.9924904Z CC net/ipv4/tcp_cong.o
2025-10-31T05:38:04.0019679Z CC [M] net/netfilter/nf_nat_irc.o
2025-10-31T05:38:04.1168375Z CC [M] sound/firewire/digi00x/digi00x-hwdep.o
2025-10-31T05:38:04.6134867Z CC [M] drivers/virtio/virtio_pci_common.o
2025-10-31T05:38:04.8205351Z CC [M] sound/firewire/digi00x/digi00x-transaction.o
2025-10-31T05:38:05.1847491Z CC [M] net/netfilter/nf_nat_sip.o
2025-10-31T05:38:05.4326172Z CC [M] sound/firewire/digi00x/digi00x-midi.o
2025-10-31T05:38:05.5928559Z CC net/ipv4/tcp_metrics.o
2025-10-31T05:38:05.8216860Z CC [M] drivers/virtio/virtio_pci_legacy.o
2025-10-31T05:38:06.1766808Z CC [M] sound/firewire/digi00x/digi00x.o
2025-10-31T05:38:06.5646591Z CC [M] drivers/virtio/virtio_balloon.o
2025-10-31T05:38:06.8028571Z LD [M] sound/firewire/digi00x/snd-firewire-digi00x.o
2025-10-31T05:38:06.9072850Z CC [M] sound/firewire/tascam/tascam-proc.o
2025-10-31T05:38:06.9248909Z CC [M] net/netfilter/nf_nat_tftp.o
2025-10-31T05:38:07.3522876Z CC net/ipv4/tcp_fastopen.o
2025-10-31T05:38:07.7424445Z CC [M] sound/firewire/tascam/amdtp-tascam.o
2025-10-31T05:38:08.1025637Z CC [M] net/netfilter/nf_synproxy_core.o
2025-10-31T05:38:08.2124738Z CC [M] drivers/virtio/virtio_input.o
2025-10-31T05:38:08.6188017Z CC [M] sound/firewire/tascam/tascam-stream.o
2025-10-31T05:38:09.0090479Z CC net/ipv4/tcp_rate.o
2025-10-31T05:38:09.0811832Z CC [M] drivers/virtio/virtio_vdpa.o
2025-10-31T05:38:09.6587611Z CC [M] sound/firewire/tascam/tascam-pcm.o
2025-10-31T05:38:09.9374363Z CC [M] drivers/virtio/virtio_mem.o
2025-10-31T05:38:10.1722430Z CC [M] net/netfilter/nf_conncount.o
2025-10-31T05:38:10.3033196Z CC net/ipv4/tcp_recovery.o
2025-10-31T05:38:10.4681352Z CC [M] sound/firewire/tascam/tascam-hwdep.o
2025-10-31T05:38:11.2408414Z CC [M] fs/xfs/libxfs/xfs_ag.o
2025-10-31T05:38:11.2597671Z CC [M] sound/firewire/tascam/tascam-transaction.o
2025-10-31T05:38:11.6433367Z CC [M] drivers/virtio/virtio_dma_buf.o
2025-10-31T05:38:11.6608125Z CC [M] net/netfilter/nf_dup_netdev.o
2025-10-31T05:38:11.8294625Z CC net/ipv4/tcp_ulp.o
2025-10-31T05:38:12.0936197Z CC [M] sound/firewire/tascam/tascam-midi.o
2025-10-31T05:38:12.1679654Z LD [M] drivers/virtio/virtio_pci.o
2025-10-31T05:38:12.1835282Z AR drivers/virtio/built-in.a
2025-10-31T05:38:12.1946088Z CC [M] fs/xfs/libxfs/xfs_alloc.o
2025-10-31T05:38:12.2649783Z CC drivers/xen/events/events_base.o
2025-10-31T05:38:12.7678512Z CC [M] net/netfilter/nf_tables_core.o
2025-10-31T05:38:12.8735180Z CC [M] sound/firewire/tascam/tascam.o
2025-10-31T05:38:13.2134654Z CC net/ipv4/tcp_offload.o
2025-10-31T05:38:13.6911711Z LD [M] sound/firewire/tascam/snd-firewire-tascam.o
2025-10-31T05:38:13.8028496Z CC [M] sound/firewire/motu/motu.o
2025-10-31T05:38:13.8744448Z CC [M] net/netfilter/nf_tables_api.o
2025-10-31T05:38:14.5346086Z CC [M] sound/firewire/motu/amdtp-motu.o
2025-10-31T05:38:14.6006133Z CC net/ipv4/datagram.o
2025-10-31T05:38:14.6653647Z CC drivers/xen/events/events_2l.o
2025-10-31T05:38:15.5182161Z CC drivers/xen/events/events_fifo.o
2025-10-31T05:38:15.8117602Z CC [M] sound/firewire/motu/motu-transaction.o
2025-10-31T05:38:15.8612145Z CC net/ipv4/raw.o
2025-10-31T05:38:15.9424514Z CC [M] fs/xfs/libxfs/xfs_alloc_btree.o
2025-10-31T05:38:16.3715236Z AR drivers/xen/events/built-in.a
2025-10-31T05:38:16.4084122Z CC drivers/xen/xenbus/xenbus_client.o
2025-10-31T05:38:16.5936137Z CC [M] sound/firewire/motu/motu-stream.o
2025-10-31T05:38:17.3283792Z CC [M] sound/firewire/motu/motu-proc.o
2025-10-31T05:38:17.9405448Z CC drivers/xen/xenbus/xenbus_comms.o
2025-10-31T05:38:17.9929989Z CC [M] sound/firewire/motu/motu-pcm.o
2025-10-31T05:38:17.9974150Z CC [M] fs/xfs/libxfs/xfs_attr.o
2025-10-31T05:38:18.0042977Z CC net/ipv4/udp.o
2025-10-31T05:38:18.7951562Z CC [M] sound/firewire/motu/motu-midi.o
2025-10-31T05:38:19.0925049Z CC drivers/xen/xenbus/xenbus_xs.o
2025-10-31T05:38:19.3957682Z CC [M] sound/firewire/motu/motu-hwdep.o
2025-10-31T05:38:20.1629108Z CC [M] sound/firewire/motu/motu-protocol-v2.o
2025-10-31T05:38:20.2313830Z CC drivers/xen/xenbus/xenbus_probe.o
2025-10-31T05:38:20.6856557Z CC [M] fs/xfs/libxfs/xfs_attr_leaf.o
2025-10-31T05:38:20.9986910Z CC [M] sound/firewire/motu/motu-protocol-v3.o
2025-10-31T05:38:21.3887831Z CC drivers/xen/xenbus/xenbus_probe_backend.o
2025-10-31T05:38:21.6828799Z CC net/ipv4/udplite.o
2025-10-31T05:38:21.8105659Z LD [M] sound/firewire/motu/snd-firewire-motu.o
2025-10-31T05:38:21.9084268Z CC [M] sound/firewire/fireface/ff.o
2025-10-31T05:38:21.9589980Z CC drivers/xen/xenbus/xenbus_dev_frontend.o
2025-10-31T05:38:22.0331495Z CC [M] net/netfilter/nft_chain_filter.o
2025-10-31T05:38:22.5266843Z CC [M] sound/firewire/fireface/ff-transaction.o
2025-10-31T05:38:22.8938693Z CC net/ipv4/udp_offload.o
2025-10-31T05:38:23.0385230Z CC drivers/xen/xenbus/xenbus_dev_backend.o
2025-10-31T05:38:23.2885134Z CC [M] sound/firewire/fireface/ff-midi.o
2025-10-31T05:38:23.4181087Z CC [M] net/netfilter/nf_tables_trace.o
2025-10-31T05:38:23.8846552Z CC drivers/xen/xenbus/xenbus_probe_frontend.o
2025-10-31T05:38:24.2179794Z CC [M] sound/firewire/fireface/ff-proc.o
2025-10-31T05:38:24.4212805Z CC [M] net/netfilter/nft_immediate.o
2025-10-31T05:38:24.5224437Z CC [M] fs/xfs/libxfs/xfs_attr_remote.o
2025-10-31T05:38:24.5692950Z CC net/ipv4/arp.o
2025-10-31T05:38:24.7019681Z AR drivers/xen/xenbus/built-in.a
2025-10-31T05:38:24.7297224Z CC [M] drivers/xen/xenfs/super.o
2025-10-31T05:38:24.9670263Z CC [M] sound/firewire/fireface/amdtp-ff.o
2025-10-31T05:38:25.3571377Z CC [M] drivers/xen/xenfs/xenstored.o
2025-10-31T05:38:25.4730379Z CC [M] net/netfilter/nft_cmp.o
2025-10-31T05:38:26.0195754Z CC [M] sound/firewire/fireface/ff-stream.o
2025-10-31T05:38:26.0456740Z CC [M] drivers/xen/xenfs/xensyms.o
2025-10-31T05:38:26.3623139Z CC net/ipv4/icmp.o
2025-10-31T05:38:26.6200110Z CC [M] net/netfilter/nft_range.o
2025-10-31T05:38:26.7419401Z CC [M] sound/firewire/fireface/ff-pcm.o
2025-10-31T05:38:26.8175619Z LD [M] drivers/xen/xenfs/xenfs.o
2025-10-31T05:38:26.8591659Z CC [M] drivers/xen/xen-pciback/pci_stub.o
2025-10-31T05:38:26.8659627Z CC [M] fs/xfs/libxfs/xfs_bit.o
2025-10-31T05:38:27.6281238Z CC [M] fs/xfs/libxfs/xfs_bmap.o
2025-10-31T05:38:27.6752332Z CC [M] net/netfilter/nft_bitwise.o
2025-10-31T05:38:27.6911532Z CC [M] sound/firewire/fireface/ff-hwdep.o
2025-10-31T05:38:28.2214850Z CC net/ipv4/devinet.o
2025-10-31T05:38:28.4258685Z CC [M] sound/firewire/fireface/ff-protocol-former.o
2025-10-31T05:38:28.4732325Z CC [M] drivers/xen/xen-pciback/pciback_ops.o
2025-10-31T05:38:28.7079118Z CC [M] net/netfilter/nft_byteorder.o
2025-10-31T05:38:29.4738247Z CC [M] sound/firewire/fireface/ff-protocol-latter.o
2025-10-31T05:38:29.5713799Z CC [M] drivers/xen/xen-pciback/xenbus.o
2025-10-31T05:38:29.7038649Z CC [M] net/netfilter/nft_payload.o
2025-10-31T05:38:30.3695517Z LD [M] sound/firewire/fireface/snd-fireface.o
2025-10-31T05:38:30.4137130Z CC [M] sound/firewire/lib.o
2025-10-31T05:38:30.8132559Z CC [M] drivers/xen/xen-pciback/conf_space.o
2025-10-31T05:38:30.8857845Z CC net/ipv4/af_inet.o
2025-10-31T05:38:31.0890694Z CC [M] sound/firewire/iso-resources.o
2025-10-31T05:38:31.2148727Z CC [M] net/netfilter/nft_lookup.o
2025-10-31T05:38:31.7009414Z CC [M] drivers/xen/xen-pciback/conf_space_header.o
2025-10-31T05:38:31.8519211Z CC [M] sound/firewire/packets-buffer.o
2025-10-31T05:38:32.0887960Z CC [M] net/netfilter/nft_dynset.o
2025-10-31T05:38:32.5523003Z CC [M] sound/firewire/fcp.o
2025-10-31T05:38:32.8187939Z CC [M] drivers/xen/xen-pciback/conf_space_capability.o
2025-10-31T05:38:33.0675458Z CC [M] net/netfilter/nft_meta.o
2025-10-31T05:38:33.0785494Z CC [M] fs/xfs/libxfs/xfs_bmap_btree.o
2025-10-31T05:38:33.2613708Z CC net/ipv4/igmp.o
2025-10-31T05:38:33.3633905Z CC [M] sound/firewire/cmp.o
2025-10-31T05:38:33.6643637Z CC [M] drivers/xen/xen-pciback/conf_space_quirks.o
2025-10-31T05:38:34.2581655Z CC [M] sound/firewire/amdtp-stream.o
2025-10-31T05:38:34.4343005Z CC [M] drivers/xen/xen-pciback/vpci.o
2025-10-31T05:38:34.5883506Z CC [M] net/netfilter/nft_rt.o
2025-10-31T05:38:35.2427335Z CC [M] fs/xfs/libxfs/xfs_btree.o
2025-10-31T05:38:35.3945453Z CC [M] drivers/xen/xen-pciback/passthrough.o
2025-10-31T05:38:35.7533708Z CC [M] sound/firewire/amdtp-am824.o
2025-10-31T05:38:35.8021075Z CC [M] net/netfilter/nft_exthdr.o
2025-10-31T05:38:36.2135554Z LD [M] drivers/xen/xen-pciback/xen-pciback.o
2025-10-31T05:38:36.2795286Z CC drivers/xen/cpu_hotplug.o
2025-10-31T05:38:36.4973336Z CC net/ipv4/fib_frontend.o
2025-10-31T05:38:36.6901382Z CC [M] sound/firewire/isight.o
2025-10-31T05:38:36.9053449Z CC drivers/xen/grant-table.o
2025-10-31T05:38:37.4044894Z CC [M] net/netfilter/nft_chain_route.o
2025-10-31T05:38:37.6281669Z LD [M] sound/firewire/snd-firewire-lib.o
2025-10-31T05:38:37.6744349Z LD [M] sound/firewire/snd-isight.o
2025-10-31T05:38:37.9546714Z CC [M] sound/pcmcia/vx/vxpocket.o
2025-10-31T05:38:38.5504453Z CC drivers/xen/features.o
2025-10-31T05:38:38.5532888Z CC net/ipv4/fib_semantics.o
2025-10-31T05:38:38.7654771Z CC [M] sound/pcmcia/vx/vxp_ops.o
2025-10-31T05:38:38.7815182Z CC [M] net/netfilter/nf_tables_offload.o
2025-10-31T05:38:39.1443285Z CC drivers/xen/balloon.o
2025-10-31T05:38:39.6345030Z CC [M] fs/xfs/libxfs/xfs_btree_staging.o
2025-10-31T05:38:39.8193479Z CC [M] sound/pcmcia/vx/vxp_mixer.o
2025-10-31T05:38:40.1649337Z CC [M] net/netfilter/nft_set_hash.o
2025-10-31T05:38:40.4044778Z CC drivers/xen/manage.o
2025-10-31T05:38:40.6401268Z LD [M] sound/pcmcia/vx/snd-vxpocket.o
2025-10-31T05:38:40.7290253Z CC [M] sound/pcmcia/pdaudiocf/pdaudiocf.o
2025-10-31T05:38:41.1665062Z CC net/ipv4/fib_trie.o
2025-10-31T05:38:41.2359269Z CC drivers/xen/time.o
2025-10-31T05:38:41.4506005Z CC [M] sound/pcmcia/pdaudiocf/pdaudiocf_core.o
2025-10-31T05:38:41.9521824Z CC [M] fs/xfs/libxfs/xfs_da_btree.o
2025-10-31T05:38:42.0405094Z CC [M] net/netfilter/nft_set_bitmap.o
2025-10-31T05:38:42.1734060Z CC drivers/xen/mem-reservation.o
2025-10-31T05:38:42.3143243Z CC [M] sound/pcmcia/pdaudiocf/pdaudiocf_irq.o
2025-10-31T05:38:43.0167622Z CC [M] net/netfilter/nft_set_rbtree.o
2025-10-31T05:38:43.0848493Z CC [M] sound/pcmcia/pdaudiocf/pdaudiocf_pcm.o
2025-10-31T05:38:43.1795089Z CC drivers/xen/pci.o
2025-10-31T05:38:43.7561593Z CC net/ipv4/fib_notifier.o
2025-10-31T05:38:43.9662906Z LD [M] sound/pcmcia/pdaudiocf/snd-pdaudiocf.o
2025-10-31T05:38:44.1851527Z CC [M] sound/soc/codecs/ac97.o
2025-10-31T05:38:44.2085046Z CC drivers/xen/dbgp.o
2025-10-31T05:38:44.4661918Z CC [M] net/netfilter/nft_set_pipapo.o
2025-10-31T05:38:44.9251043Z CC net/ipv4/inet_fragment.o
2025-10-31T05:38:45.0082953Z CC [M] sound/soc/codecs/adau-utils.o
2025-10-31T05:38:45.0928059Z CC drivers/xen/acpi.o
2025-10-31T05:38:45.1849987Z CC [M] fs/xfs/libxfs/xfs_defer.o
2025-10-31T05:38:45.3646270Z CC [M] sound/soc/codecs/adau1701.o
2025-10-31T05:38:45.9551878Z CC drivers/xen/xen-acpi-pad.o
2025-10-31T05:38:46.4884582Z CC [M] sound/soc/codecs/adau17x1.o
2025-10-31T05:38:46.7292706Z CC [M] net/netfilter/nft_set_pipapo_avx2.o
2025-10-31T05:38:46.8307253Z CC drivers/xen/pcpu.o
2025-10-31T05:38:46.8530009Z CC net/ipv4/ping.o
2025-10-31T05:38:47.4998477Z CC [M] sound/soc/codecs/adau1761.o
2025-10-31T05:38:47.5918438Z CC [M] fs/xfs/libxfs/xfs_dir2.o
2025-10-31T05:38:47.8919146Z CC drivers/xen/biomerge.o
2025-10-31T05:38:48.2287179Z CC [M] sound/soc/codecs/adau1761-i2c.o
2025-10-31T05:38:48.3479994Z CC [M] net/netfilter/nft_compat.o
2025-10-31T05:38:48.6323987Z CC drivers/xen/xen-balloon.o
2025-10-31T05:38:48.9460063Z CC [M] sound/soc/codecs/adau1761-spi.o
2025-10-31T05:38:49.1036626Z CC net/ipv4/ip_tunnel_core.o
2025-10-31T05:38:49.2037549Z CC drivers/xen/sys-hypervisor.o
2025-10-31T05:38:49.8921725Z CC [M] fs/xfs/libxfs/xfs_dir2_block.o
2025-10-31T05:38:49.8966724Z CC [M] sound/soc/codecs/adau7002.o
2025-10-31T05:38:49.9774314Z CC drivers/xen/platform-pci.o
2025-10-31T05:38:50.0484152Z CC [M] net/netfilter/nft_connlimit.o
2025-10-31T05:38:50.6835704Z CC [M] sound/soc/codecs/adau7118.o
2025-10-31T05:38:50.8723972Z CC drivers/xen/swiotlb-xen.o
2025-10-31T05:38:51.0483708Z CC net/ipv4/gre_offload.o
2025-10-31T05:38:51.5150402Z CC [M] net/netfilter/nft_numgen.o
2025-10-31T05:38:51.5855283Z CC [M] sound/soc/codecs/adau7118-i2c.o
2025-10-31T05:38:52.1000093Z CC [M] sound/soc/codecs/adau7118-hw.o
2025-10-31T05:38:52.3645886Z CC drivers/xen/mcelog.o
2025-10-31T05:38:52.4529888Z CC [M] sound/soc/codecs/ak4104.o
2025-10-31T05:38:52.5246572Z CC [M] net/netfilter/nft_ct.o
2025-10-31T05:38:52.5801367Z CC net/ipv4/metrics.o
2025-10-31T05:38:52.6032715Z CC [M] fs/xfs/libxfs/xfs_dir2_data.o
2025-10-31T05:38:53.2049363Z CC drivers/xen/efi.o
2025-10-31T05:38:53.4627565Z CC [M] sound/soc/codecs/ak4118.o
2025-10-31T05:38:53.6717746Z CC net/ipv4/netlink.o
2025-10-31T05:38:53.8321077Z CC drivers/xen/xlate_mmu.o
2025-10-31T05:38:54.1889883Z CC [M] fs/xfs/libxfs/xfs_dir2_leaf.o
2025-10-31T05:38:54.3336175Z CC [M] net/netfilter/nft_flow_offload.o
2025-10-31T05:38:54.6813267Z CC net/ipv4/nexthop.o
2025-10-31T05:38:54.7150390Z CC drivers/xen/pvcalls-back.o
2025-10-31T05:38:54.7216112Z CC [M] sound/soc/codecs/ak4458.o
2025-10-31T05:38:55.5484605Z CC [M] net/netfilter/nft_limit.o
2025-10-31T05:38:55.8166018Z CC [M] sound/soc/codecs/ak4554.o
2025-10-31T05:38:56.5090154Z CC drivers/xen/unpopulated-alloc.o
2025-10-31T05:38:56.6237772Z CC [M] net/netfilter/nft_nat.o
2025-10-31T05:38:56.6644303Z CC [M] sound/soc/codecs/ak4613.o
2025-10-31T05:38:56.8722498Z CC [M] fs/xfs/libxfs/xfs_dir2_node.o
2025-10-31T05:38:57.0850924Z CC net/ipv4/udp_tunnel_stub.o
2025-10-31T05:38:57.1330948Z CC [M] drivers/xen/evtchn.o
2025-10-31T05:38:57.7213030Z CC [M] sound/soc/codecs/ak4642.o
2025-10-31T05:38:57.9221890Z CC [M] net/netfilter/nft_objref.o
2025-10-31T05:38:58.1468609Z CC net/ipv4/sysctl_net_ipv4.o
2025-10-31T05:38:58.2664398Z CC [M] drivers/xen/gntdev.o
2025-10-31T05:38:58.4421776Z CC [M] sound/soc/codecs/ak5386.o
2025-10-31T05:38:59.0193341Z CC [M] net/netfilter/nft_queue.o
2025-10-31T05:38:59.3570906Z CC [M] sound/soc/codecs/ak5558.o
2025-10-31T05:38:59.7057738Z CC net/ipv4/proc.o
2025-10-31T05:38:59.7943656Z CC [M] drivers/xen/gntdev-dmabuf.o
2025-10-31T05:38:59.7944985Z CC [M] fs/xfs/libxfs/xfs_dir2_sf.o
2025-10-31T05:39:00.2973488Z CC [M] net/netfilter/nft_quota.o
2025-10-31T05:39:00.3600937Z CC [M] sound/soc/codecs/alc5623.o
2025-10-31T05:39:01.0572486Z CC [M] drivers/xen/gntalloc.o
2025-10-31T05:39:01.1445822Z CC net/ipv4/fib_rules.o
2025-10-31T05:39:01.3762455Z CC [M] sound/soc/codecs/bd28623.o
2025-10-31T05:39:01.4116476Z CC [M] net/netfilter/nft_reject.o
2025-10-31T05:39:02.2737614Z CC [M] sound/soc/codecs/cros_ec_codec.o
2025-10-31T05:39:02.3154454Z CC [M] drivers/xen/privcmd.o
2025-10-31T05:39:02.3955799Z CC net/ipv4/ipmr.o
2025-10-31T05:39:02.5375563Z CC [M] net/netfilter/nft_reject_inet.o
2025-10-31T05:39:02.5475404Z CC [M] fs/xfs/libxfs/xfs_dquot_buf.o
2025-10-31T05:39:03.4961820Z CC [M] fs/xfs/libxfs/xfs_ialloc.o
2025-10-31T05:39:03.5676800Z CC [M] sound/soc/codecs/cs35l32.o
2025-10-31T05:39:03.6350927Z CC [M] drivers/xen/privcmd-buf.o
2025-10-31T05:39:03.8373781Z CC [M] net/netfilter/nft_tunnel.o
2025-10-31T05:39:04.3071202Z CC [M] drivers/xen/xen-acpi-processor.o
2025-10-31T05:39:04.6569381Z CC [M] sound/soc/codecs/cs35l33.o
2025-10-31T05:39:05.3284798Z CC [M] drivers/xen/xen-scsiback.o
2025-10-31T05:39:05.5463139Z CC net/ipv4/ipmr_base.o
2025-10-31T05:39:05.5489569Z CC [M] net/netfilter/nft_counter.o
2025-10-31T05:39:05.9286866Z CC [M] sound/soc/codecs/cs35l34.o
2025-10-31T05:39:06.6826874Z CC [M] net/netfilter/nft_log.o
2025-10-31T05:39:06.7134972Z CC [M] fs/xfs/libxfs/xfs_ialloc_btree.o
2025-10-31T05:39:07.0870839Z CC net/ipv4/syncookies.o
2025-10-31T05:39:07.1104469Z CC [M] drivers/xen/pvcalls-front.o
2025-10-31T05:39:07.1128986Z CC [M] sound/soc/codecs/cs35l35.o
2025-10-31T05:39:07.9954545Z CC [M] net/netfilter/nft_masq.o
2025-10-31T05:39:08.6425605Z CC [M] sound/soc/codecs/cs35l36.o
2025-10-31T05:39:08.6820245Z CC net/ipv4/netfilter.o
2025-10-31T05:39:08.8281518Z CC [M] fs/xfs/libxfs/xfs_iext_tree.o
2025-10-31T05:39:09.0756133Z CC [M] drivers/xen/xen-front-pgdir-shbuf.o
2025-10-31T05:39:09.2275251Z CC [M] net/netfilter/nft_redir.o
2025-10-31T05:39:10.0348988Z LD [M] drivers/xen/xen-evtchn.o
2025-10-31T05:39:10.0566281Z CC [M] sound/soc/codecs/cs42l42.o
2025-10-31T05:39:10.0607893Z LD [M] drivers/xen/xen-gntdev.o
2025-10-31T05:39:10.0809490Z LD [M] drivers/xen/xen-gntalloc.o
2025-10-31T05:39:10.1104966Z LD [M] drivers/xen/xen-privcmd.o
2025-10-31T05:39:10.1423011Z AR drivers/xen/built-in.a
2025-10-31T05:39:10.3208345Z CC drivers/regulator/core.o
2025-10-31T05:39:10.3439148Z CC net/ipv4/tcp_cubic.o
2025-10-31T05:39:10.4294884Z CC [M] net/netfilter/nft_hash.o
2025-10-31T05:39:11.3901594Z CC [M] sound/soc/codecs/cs42l51.o
2025-10-31T05:39:11.4082948Z CC [M] fs/xfs/libxfs/xfs_inode_fork.o
2025-10-31T05:39:11.4990145Z CC [M] net/netfilter/nft_fib.o
2025-10-31T05:39:11.8622895Z CC net/ipv4/tcp_bpf.o
2025-10-31T05:39:12.2635179Z CC [M] sound/soc/codecs/cs42l51-i2c.o
2025-10-31T05:39:12.3869455Z CC [M] net/netfilter/nft_fib_inet.o
2025-10-31T05:39:12.8947864Z CC [M] sound/soc/codecs/cs42l52.o
2025-10-31T05:39:13.2790397Z CC [M] net/netfilter/nft_fib_netdev.o
2025-10-31T05:39:13.9482160Z CC [M] sound/soc/codecs/cs42l56.o
2025-10-31T05:39:14.0001903Z CC net/ipv4/udp_bpf.o
2025-10-31T05:39:14.0083257Z CC [M] fs/xfs/libxfs/xfs_inode_buf.o
2025-10-31T05:39:14.2796419Z CC drivers/regulator/dummy.o
2025-10-31T05:39:14.4053242Z CC [M] net/netfilter/nft_socket.o
2025-10-31T05:39:14.9944444Z CC net/ipv4/cipso_ipv4.o
2025-10-31T05:39:15.0606309Z CC drivers/regulator/fixed-helper.o
2025-10-31T05:39:15.1220107Z CC [M] fs/xfs/libxfs/xfs_log_rlimit.o
2025-10-31T05:39:15.3693872Z CC [M] sound/soc/codecs/cs42l73.o
2025-10-31T05:39:15.7877221Z CC [M] net/netfilter/nft_osf.o
2025-10-31T05:39:15.8696004Z CC drivers/regulator/helpers.o
2025-10-31T05:39:15.9364669Z CC [M] fs/xfs/libxfs/xfs_ag_resv.o
2025-10-31T05:39:16.3422346Z CC [M] sound/soc/codecs/cs4234.o
2025-10-31T05:39:16.9538617Z CC [M] net/netfilter/nft_tproxy.o
2025-10-31T05:39:17.0395275Z CC drivers/regulator/devres.o
2025-10-31T05:39:17.2080035Z CC net/ipv4/xfrm4_policy.o
2025-10-31T05:39:17.5780653Z CC [M] sound/soc/codecs/cs4265.o
2025-10-31T05:39:17.9770421Z CC [M] drivers/regulator/fixed.o
2025-10-31T05:39:18.1993488Z CC [M] net/netfilter/nft_xfrm.o
2025-10-31T05:39:18.3073737Z CC [M] fs/xfs/libxfs/xfs_rmap.o
2025-10-31T05:39:18.3365557Z CC [M] sound/soc/codecs/cs4270.o
2025-10-31T05:39:18.5105231Z CC net/ipv4/xfrm4_state.o
2025-10-31T05:39:18.9423772Z CC [M] drivers/regulator/virtual.o
2025-10-31T05:39:19.1747941Z CC [M] sound/soc/codecs/cs4271.o
2025-10-31T05:39:19.5296997Z CC [M] net/netfilter/nft_synproxy.o
2025-10-31T05:39:19.7239576Z CC net/ipv4/xfrm4_input.o
2025-10-31T05:39:19.8172881Z CC [M] drivers/regulator/userspace-consumer.o
2025-10-31T05:39:20.1212602Z CC [M] sound/soc/codecs/cs4271-i2c.o
2025-10-31T05:39:20.7669793Z CC [M] drivers/regulator/88pg86x.o
2025-10-31T05:39:20.8353907Z CC [M] net/netfilter/nft_chain_nat.o
2025-10-31T05:39:20.9253312Z CC [M] sound/soc/codecs/cs4271-spi.o
2025-10-31T05:39:20.9467113Z CC net/ipv4/xfrm4_output.o
2025-10-31T05:39:21.5752946Z CC [M] drivers/regulator/88pm800-regulator.o
2025-10-31T05:39:21.5759307Z CC [M] sound/soc/codecs/cs42xx8.o
2025-10-31T05:39:22.0396885Z CC [M] fs/xfs/libxfs/xfs_rmap_btree.o
2025-10-31T05:39:22.0811300Z CC [M] net/netfilter/nft_dup_netdev.o
2025-10-31T05:39:22.2634073Z CC net/ipv4/xfrm4_protocol.o
2025-10-31T05:39:22.3505763Z CC [M] drivers/regulator/88pm8607.o
2025-10-31T05:39:22.5701006Z CC [M] sound/soc/codecs/cs42xx8-i2c.o
2025-10-31T05:39:23.1650106Z CC [M] net/netfilter/nft_fwd_netdev.o
2025-10-31T05:39:23.2213399Z CC [M] sound/soc/codecs/cs43130.o
2025-10-31T05:39:23.3331717Z CC [M] drivers/regulator/aat2870-regulator.o
2025-10-31T05:39:23.5051603Z CC net/ipv4/bpf_tcp_ca.o
2025-10-31T05:39:24.1339290Z CC [M] fs/xfs/libxfs/xfs_refcount.o
2025-10-31T05:39:24.1937576Z CC [M] drivers/regulator/ab3100.o
2025-10-31T05:39:24.5483990Z CC [M] net/netfilter/nf_flow_table_core.o
2025-10-31T05:39:24.7294554Z CC [M] net/ipv4/ip_tunnel.o
2025-10-31T05:39:24.9790734Z CC [M] sound/soc/codecs/cs4341.o
2025-10-31T05:39:25.2303744Z CC [M] drivers/regulator/act8865-regulator.o
2025-10-31T05:39:25.8441086Z CC [M] sound/soc/codecs/cs4349.o
2025-10-31T05:39:26.2142136Z CC [M] drivers/regulator/ad5398.o
2025-10-31T05:39:26.2508106Z CC [M] net/netfilter/nf_flow_table_ip.o
2025-10-31T05:39:26.8198658Z CC [M] sound/soc/codecs/cs53l30.o
2025-10-31T05:39:26.9453400Z CC [M] net/ipv4/ipip.o
2025-10-31T05:39:27.0318832Z CC [M] fs/xfs/libxfs/xfs_refcount_btree.o
2025-10-31T05:39:27.2924723Z CC [M] drivers/regulator/arizona-ldo1.o
2025-10-31T05:39:27.8134720Z CC [M] net/netfilter/nf_flow_table_offload.o
2025-10-31T05:39:28.0814438Z CC [M] drivers/regulator/arizona-micsupp.o
2025-10-31T05:39:28.1896210Z CC [M] sound/soc/codecs/cx2072x.o
2025-10-31T05:39:28.4159121Z CC [M] net/ipv4/fou.o
2025-10-31T05:39:28.8934012Z CC [M] drivers/regulator/as3711-regulator.o
2025-10-31T05:39:29.1100172Z CC [M] fs/xfs/libxfs/xfs_sb.o
2025-10-31T05:39:29.5493177Z CC [M] sound/soc/codecs/da7213.o
2025-10-31T05:39:29.5963131Z CC [M] net/netfilter/nf_flow_table_inet.o
2025-10-31T05:39:29.7493517Z CC [M] drivers/regulator/axp20x-regulator.o
2025-10-31T05:39:30.3157432Z CC [M] net/ipv4/gre_demux.o
2025-10-31T05:39:30.6463437Z CC [M] net/netfilter/x_tables.o
2025-10-31T05:39:30.8190537Z CC [M] drivers/regulator/bcm590xx-regulator.o
2025-10-31T05:39:31.0088878Z CC [M] sound/soc/codecs/da7219.o
2025-10-31T05:39:31.5419745Z CC [M] net/ipv4/ip_gre.o
2025-10-31T05:39:31.6044834Z CC [M] fs/xfs/libxfs/xfs_symlink_remote.o
2025-10-31T05:39:31.8115971Z CC [M] drivers/regulator/bd9571mwv-regulator.o
2025-10-31T05:39:32.5950612Z CC [M] fs/xfs/libxfs/xfs_trans_inode.o
2025-10-31T05:39:32.6234116Z CC [M] drivers/regulator/da903x-regulator.o
2025-10-31T05:39:32.7324039Z CC [M] sound/soc/codecs/da7219-aad.o
2025-10-31T05:39:32.9088980Z CC [M] net/netfilter/xt_tcpudp.o
2025-10-31T05:39:33.3777102Z CC [M] drivers/regulator/da9052-regulator.o
2025-10-31T05:39:33.6510649Z CC [M] net/ipv4/udp_tunnel_core.o
2025-10-31T05:39:33.6996528Z CC [M] fs/xfs/libxfs/xfs_trans_resv.o
2025-10-31T05:39:34.0054701Z CC [M] sound/soc/codecs/dmic.o
2025-10-31T05:39:34.2548958Z CC [M] drivers/regulator/da9055-regulator.o
2025-10-31T05:39:34.2800820Z CC [M] net/netfilter/xt_mark.o
2025-10-31T05:39:34.7002758Z CC [M] fs/xfs/libxfs/xfs_types.o
2025-10-31T05:39:34.7834213Z CC [M] sound/soc/codecs/es7134.o
2025-10-31T05:39:35.0160882Z CC [M] net/ipv4/udp_tunnel_nic.o
2025-10-31T05:39:35.0489024Z CC [M] drivers/regulator/da9062-regulator.o
2025-10-31T05:39:35.1263673Z CC [M] net/netfilter/xt_connmark.o
2025-10-31T05:39:35.5460100Z CC [M] sound/soc/codecs/es7241.o
2025-10-31T05:39:35.7292165Z CC [M] fs/xfs/libxfs/xfs_rtbitmap.o
2025-10-31T05:39:36.0866974Z CC [M] drivers/regulator/da9210-regulator.o
2025-10-31T05:39:36.1680148Z CC [M] sound/soc/codecs/es8316.o
2025-10-31T05:39:36.3115986Z CC [M] net/netfilter/xt_set.o
2025-10-31T05:39:36.8045129Z CC [M] net/ipv4/ip_vti.o
2025-10-31T05:39:36.9452926Z CC [M] fs/xfs/xfs_aops.o
2025-10-31T05:39:36.9717624Z CC [M] drivers/regulator/da9211-regulator.o
2025-10-31T05:39:37.2033810Z CC [M] sound/soc/codecs/es8328.o
2025-10-31T05:39:37.8092456Z CC [M] net/netfilter/xt_nat.o
2025-10-31T05:39:37.8982517Z CC [M] drivers/regulator/fan53555.o
2025-10-31T05:39:38.1840989Z CC [M] sound/soc/codecs/es8328-i2c.o
2025-10-31T05:39:38.4668451Z CC [M] net/ipv4/ah4.o
2025-10-31T05:39:38.8161513Z CC [M] drivers/regulator/gpio-regulator.o
2025-10-31T05:39:38.8963675Z CC [M] sound/soc/codecs/es8328-spi.o
2025-10-31T05:39:38.9465368Z CC [M] net/netfilter/xt_AUDIT.o
2025-10-31T05:39:39.2239986Z CC [M] fs/xfs/xfs_attr_inactive.o
2025-10-31T05:39:39.6204502Z CC [M] drivers/regulator/isl6271a-regulator.o
2025-10-31T05:39:39.6237318Z CC [M] sound/soc/codecs/gtm601.o
2025-10-31T05:39:40.0432363Z CC [M] net/ipv4/esp4.o
2025-10-31T05:39:40.2125495Z CC [M] fs/xfs/xfs_attr_list.o
2025-10-31T05:39:40.2474228Z CC [M] net/netfilter/xt_CHECKSUM.o
2025-10-31T05:39:40.3105233Z CC [M] sound/soc/codecs/hdac_hdmi.o
2025-10-31T05:39:40.5122975Z CC [M] drivers/regulator/isl9305.o
2025-10-31T05:39:41.3203055Z CC [M] drivers/regulator/lm363x-regulator.o
2025-10-31T05:39:41.5675793Z CC [M] net/netfilter/xt_CLASSIFY.o
2025-10-31T05:39:42.0703049Z CC [M] net/ipv4/esp4_offload.o
2025-10-31T05:39:42.1044562Z CC [M] drivers/regulator/lp3971.o
2025-10-31T05:39:42.2493433Z CC [M] sound/soc/codecs/hdac_hda.o
2025-10-31T05:39:42.4193341Z CC [M] fs/xfs/xfs_bmap_util.o
2025-10-31T05:39:42.8212526Z CC [M] net/netfilter/xt_CONNSECMARK.o
2025-10-31T05:39:43.0693318Z CC [M] drivers/regulator/lp3972.o
2025-10-31T05:39:43.1729068Z CC [M] sound/soc/codecs/inno_rk3036.o
2025-10-31T05:39:43.5764542Z CC [M] net/ipv4/ipcomp.o
2025-10-31T05:39:44.0141203Z CC [M] sound/soc/codecs/max9759.o
2025-10-31T05:39:44.0335005Z CC [M] drivers/regulator/lp872x.o
2025-10-31T05:39:44.2102277Z CC [M] net/netfilter/xt_CT.o
2025-10-31T05:39:44.7108282Z CC [M] sound/soc/codecs/max98088.o
2025-10-31T05:39:44.7363367Z CC [M] net/ipv4/xfrm4_tunnel.o
2025-10-31T05:39:45.1002507Z CC [M] drivers/regulator/lp8788-buck.o
2025-10-31T05:39:45.3039023Z CC [M] fs/xfs/xfs_bio_io.o
2025-10-31T05:39:45.6500938Z CC [M] net/netfilter/xt_DSCP.o
2025-10-31T05:39:45.8821843Z CC [M] net/ipv4/tunnel4.o
2025-10-31T05:39:45.9035770Z CC [M] sound/soc/codecs/max98090.o
2025-10-31T05:39:45.9495571Z CC [M] drivers/regulator/lp8788-ldo.o
2025-10-31T05:39:46.2027245Z CC [M] fs/xfs/xfs_buf.o
2025-10-31T05:39:46.8680711Z CC [M] net/netfilter/xt_HL.o
2025-10-31T05:39:46.8986003Z CC [M] drivers/regulator/lp8755.o
2025-10-31T05:39:47.1593224Z CC [M] net/ipv4/inet_diag.o
2025-10-31T05:39:47.1881677Z CC [M] sound/soc/codecs/max98357a.o
2025-10-31T05:39:47.7782453Z CC [M] drivers/regulator/ltc3589.o
2025-10-31T05:39:47.9937643Z CC [M] sound/soc/codecs/max9867.o
2025-10-31T05:39:48.1203407Z CC [M] net/netfilter/xt_HMARK.o
2025-10-31T05:39:48.7268789Z CC [M] drivers/regulator/ltc3676.o
2025-10-31T05:39:48.9333045Z CC [M] sound/soc/codecs/max98927.o
2025-10-31T05:39:49.2325872Z CC [M] net/ipv4/tcp_diag.o
2025-10-31T05:39:49.5447931Z CC [M] net/netfilter/xt_LED.o
2025-10-31T05:39:49.6313456Z CC [M] drivers/regulator/max14577-regulator.o
2025-10-31T05:39:49.6723843Z CC [M] fs/xfs/xfs_dir2_readdir.o
2025-10-31T05:39:49.9976811Z CC [M] sound/soc/codecs/max98373.o
2025-10-31T05:39:50.4601419Z CC [M] net/ipv4/udp_diag.o
2025-10-31T05:39:50.4950373Z CC [M] net/netfilter/xt_LOG.o
2025-10-31T05:39:50.7182685Z CC [M] drivers/regulator/max1586.o
2025-10-31T05:39:50.7902668Z CC [M] sound/soc/codecs/max98373-i2c.o
2025-10-31T05:39:51.5803250Z CC [M] drivers/regulator/max8649.o
2025-10-31T05:39:51.6790834Z CC [M] sound/soc/codecs/max98373-sdw.o
2025-10-31T05:39:51.7764156Z CC [M] net/netfilter/xt_NETMAP.o
2025-10-31T05:39:51.7798656Z CC [M] net/ipv4/raw_diag.o
2025-10-31T05:39:51.9231697Z CC [M] fs/xfs/xfs_discard.o
2025-10-31T05:39:52.4630385Z CC [M] drivers/regulator/max8660.o
2025-10-31T05:39:52.5752684Z CC [M] sound/soc/codecs/max98390.o
2025-10-31T05:39:52.9911900Z CC [M] net/ipv4/tcp_bbr.o
2025-10-31T05:39:53.1917455Z CC [M] net/netfilter/xt_NFLOG.o
2025-10-31T05:39:53.6112875Z CC [M] drivers/regulator/max8907-regulator.o
2025-10-31T05:39:53.6281691Z CC [M] sound/soc/codecs/max9860.o
2025-10-31T05:39:53.8406773Z CC [M] fs/xfs/xfs_error.o
2025-10-31T05:39:54.1163712Z CC [M] net/netfilter/xt_NFQUEUE.o
2025-10-31T05:39:54.5748783Z CC [M] drivers/regulator/max8925-regulator.o
2025-10-31T05:39:54.5777962Z CC [M] sound/soc/codecs/msm8916-wcd-digital.o
2025-10-31T05:39:54.5843952Z CC [M] net/ipv4/tcp_bic.o
2025-10-31T05:39:54.6730978Z CC [M] fs/xfs/xfs_export.o
2025-10-31T05:39:55.3682940Z CC [M] net/netfilter/xt_RATEEST.o
2025-10-31T05:39:55.4047077Z CC [M] drivers/regulator/max8952.o
2025-10-31T05:39:55.5584059Z CC [M] sound/soc/codecs/mt6351.o
2025-10-31T05:39:55.7319455Z CC [M] net/ipv4/tcp_cdg.o
2025-10-31T05:39:55.7565691Z CC [M] fs/xfs/xfs_extent_busy.o
2025-10-31T05:39:56.3294629Z CC [M] net/netfilter/xt_REDIRECT.o
2025-10-31T05:39:56.3488601Z CC [M] drivers/regulator/max8997-regulator.o
2025-10-31T05:39:56.4585892Z CC [M] sound/soc/codecs/mt6358.o
2025-10-31T05:39:57.4392603Z CC [M] net/ipv4/tcp_dctcp.o
2025-10-31T05:39:57.4747335Z CC [M] net/netfilter/xt_MASQUERADE.o
2025-10-31T05:39:57.7354781Z CC [M] drivers/regulator/max8998.o
2025-10-31T05:39:57.8485941Z CC [M] sound/soc/codecs/mt6660.o
2025-10-31T05:39:57.8856031Z CC [M] fs/xfs/xfs_file.o
2025-10-31T05:39:58.6493644Z CC [M] net/netfilter/xt_SECMARK.o
2025-10-31T05:39:58.6671390Z CC [M] sound/soc/codecs/nau8540.o
2025-10-31T05:39:58.7183790Z CC [M] net/ipv4/tcp_westwood.o
2025-10-31T05:39:58.9636206Z CC [M] drivers/regulator/max77693-regulator.o
2025-10-31T05:39:59.5453753Z CC [M] net/netfilter/xt_TPROXY.o
2025-10-31T05:39:59.7816618Z CC [M] sound/soc/codecs/nau8810.o
2025-10-31T05:39:59.7914695Z CC [M] drivers/regulator/max77826-regulator.o
2025-10-31T05:39:59.9194695Z CC [M] net/ipv4/tcp_highspeed.o
2025-10-31T05:40:00.6192945Z CC [M] drivers/regulator/mc13783-regulator.o
2025-10-31T05:40:00.7624566Z CC [M] sound/soc/codecs/nau8822.o
2025-10-31T05:40:00.8449457Z CC [M] net/netfilter/xt_TCPMSS.o
2025-10-31T05:40:00.8695420Z CC [M] fs/xfs/xfs_filestream.o
2025-10-31T05:40:01.0781401Z CC [M] net/ipv4/tcp_hybla.o
2025-10-31T05:40:01.2877530Z CC [M] drivers/regulator/mc13892-regulator.o
2025-10-31T05:40:02.0322821Z CC [M] sound/soc/codecs/nau8824.o
2025-10-31T05:40:02.1239445Z CC [M] net/netfilter/xt_TCPOPTSTRIP.o
2025-10-31T05:40:02.1574343Z CC [M] drivers/regulator/mc13xxx-regulator-core.o
2025-10-31T05:40:02.2490657Z CC [M] net/ipv4/tcp_htcp.o
2025-10-31T05:40:03.1421372Z CC [M] drivers/regulator/mp8859.o
2025-10-31T05:40:03.2267256Z CC [M] fs/xfs/xfs_fsmap.o
2025-10-31T05:40:03.2908491Z CC [M] sound/soc/codecs/nau8825.o
2025-10-31T05:40:03.3183960Z CC [M] net/netfilter/xt_TEE.o
2025-10-31T05:40:03.4014358Z CC [M] net/ipv4/tcp_vegas.o
2025-10-31T05:40:03.8873174Z CC [M] drivers/regulator/mt6311-regulator.o
2025-10-31T05:40:04.5937494Z CC [M] net/netfilter/xt_TRACE.o
2025-10-31T05:40:04.6511722Z CC [M] net/ipv4/tcp_nv.o
2025-10-31T05:40:04.7370625Z CC [M] drivers/regulator/mt6323-regulator.o
2025-10-31T05:40:04.8753740Z CC [M] sound/soc/codecs/hdmi-codec.o
2025-10-31T05:40:05.5014618Z CC [M] net/netfilter/xt_IDLETIMER.o
2025-10-31T05:40:05.6253547Z CC [M] drivers/regulator/mt6358-regulator.o
2025-10-31T05:40:05.7842630Z CC [M] fs/xfs/xfs_fsops.o
2025-10-31T05:40:05.9276098Z CC [M] net/ipv4/tcp_veno.o
2025-10-31T05:40:06.1781792Z CC [M] sound/soc/codecs/pcm1681.o
2025-10-31T05:40:06.3846845Z CC [M] drivers/regulator/mt6360-regulator.o
2025-10-31T05:40:06.6797692Z CC [M] net/netfilter/xt_addrtype.o
2025-10-31T05:40:06.7396369Z CC [M] fs/xfs/xfs_globals.o
2025-10-31T05:40:06.9366735Z CC [M] sound/soc/codecs/pcm179x.o
2025-10-31T05:40:07.2038994Z CC [M] drivers/regulator/mt6397-regulator.o
2025-10-31T05:40:07.2366420Z CC [M] net/ipv4/tcp_scalable.o
2025-10-31T05:40:07.3275593Z CC [M] fs/xfs/xfs_health.o
2025-10-31T05:40:07.7734453Z CC [M] sound/soc/codecs/pcm1789-i2c.o
2025-10-31T05:40:07.9824413Z CC [M] drivers/regulator/palmas-regulator.o
2025-10-31T05:40:08.1403819Z CC [M] net/netfilter/xt_bpf.o
2025-10-31T05:40:08.2998914Z CC [M] sound/soc/codecs/pcm1789.o
2025-10-31T05:40:08.3231414Z CC [M] net/ipv4/tcp_lp.o
2025-10-31T05:40:09.2508816Z CC [M] net/netfilter/xt_cluster.o
2025-10-31T05:40:09.3138975Z CC [M] drivers/regulator/pca9450-regulator.o
2025-10-31T05:40:09.3614556Z CC [M] sound/soc/codecs/pcm179x-i2c.o
2025-10-31T05:40:09.4403969Z CC [M] net/ipv4/tcp_yeah.o
2025-10-31T05:40:09.5179454Z CC [M] fs/xfs/xfs_icache.o
2025-10-31T05:40:09.9306645Z CC [M] sound/soc/codecs/pcm179x-spi.o
2025-10-31T05:40:10.3313214Z CC [M] drivers/regulator/pfuze100-regulator.o
2025-10-31T05:40:10.4616004Z CC [M] sound/soc/codecs/pcm186x.o
2025-10-31T05:40:10.5335611Z CC [M] net/ipv4/tcp_illinois.o
2025-10-31T05:40:10.5376284Z CC [M] net/netfilter/xt_comment.o
2025-10-31T05:40:11.4060985Z CC [M] drivers/regulator/pv88060-regulator.o
2025-10-31T05:40:11.4557780Z CC [M] net/netfilter/xt_connbytes.o
2025-10-31T05:40:11.4960515Z CC [M] sound/soc/codecs/pcm186x-i2c.o
2025-10-31T05:40:11.6907549Z LD [M] net/ipv4/gre.o
2025-10-31T05:40:11.7158011Z LD [M] net/ipv4/udp_tunnel.o
2025-10-31T05:40:11.7540126Z AR net/ipv4/built-in.a
2025-10-31T05:40:12.0531094Z CC arch/x86/video/fbdev.o
2025-10-31T05:40:12.1049902Z CC [M] sound/soc/codecs/pcm186x-spi.o
2025-10-31T05:40:12.1977664Z CC [M] fs/xfs/xfs_ioctl.o
2025-10-31T05:40:12.4398523Z CC [M] drivers/regulator/pv88080-regulator.o
2025-10-31T05:40:12.5331732Z CC [M] net/netfilter/xt_connlabel.o
2025-10-31T05:40:12.8393065Z CC [M] sound/soc/codecs/pcm3060.o
2025-10-31T05:40:12.8825152Z AR arch/x86/video/built-in.a
2025-10-31T05:40:12.9087926Z CC [M] net/netfilter/xt_connlimit.o
2025-10-31T05:40:13.3704687Z CC [M] drivers/regulator/pv88090-regulator.o
2025-10-31T05:40:13.5757468Z CC [M] sound/soc/codecs/pcm3060-i2c.o
2025-10-31T05:40:13.6305034Z CC [M] drivers/regulator/pwm-regulator.o
2025-10-31T05:40:14.0389059Z CC [M] net/netfilter/xt_conntrack.o
2025-10-31T05:40:14.2771470Z CC [M] sound/soc/codecs/pcm3060-spi.o
2025-10-31T05:40:14.2882798Z CC [M] net/netfilter/xt_cpu.o
2025-10-31T05:40:14.3455588Z CC [M] drivers/regulator/tps51632-regulator.o
2025-10-31T05:40:14.9714247Z CC [M] sound/soc/codecs/pcm3168a.o
2025-10-31T05:40:15.2459324Z CC [M] drivers/regulator/pcap-regulator.o
2025-10-31T05:40:15.3133827Z CC [M] net/netfilter/xt_dccp.o
2025-10-31T05:40:15.3930242Z AR arch/x86/oprofile/built-in.a
2025-10-31T05:40:15.4118575Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/oprof.o
2025-10-31T05:40:15.5851196Z CC [M] fs/xfs/xfs_iomap.o
2025-10-31T05:40:16.0901184Z CC [M] drivers/regulator/pcf50633-regulator.o
2025-10-31T05:40:16.1498332Z CC [M] sound/soc/codecs/pcm3168a-i2c.o
2025-10-31T05:40:16.1519021Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/cpu_buffer.o
2025-10-31T05:40:16.5906192Z CC [M] net/netfilter/xt_devgroup.o
2025-10-31T05:40:16.7397024Z CC [M] sound/soc/codecs/pcm3168a-spi.o
2025-10-31T05:40:16.9448851Z CC [M] drivers/regulator/rpi-panel-attiny-regulator.o
2025-10-31T05:40:17.1480610Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/buffer_sync.o
2025-10-31T05:40:17.3497991Z CC [M] sound/soc/codecs/pcm512x.o
2025-10-31T05:40:17.5822615Z CC [M] net/netfilter/xt_dscp.o
2025-10-31T05:40:17.9027790Z CC [M] drivers/regulator/rc5t583-regulator.o
2025-10-31T05:40:18.1192866Z CC [M] fs/xfs/xfs_iops.o
2025-10-31T05:40:18.1701523Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/event_buffer.o
2025-10-31T05:40:18.6275781Z CC [M] net/netfilter/xt_ecn.o
2025-10-31T05:40:18.6885963Z CC [M] drivers/regulator/rt4801-regulator.o
2025-10-31T05:40:18.7179104Z CC [M] sound/soc/codecs/pcm512x-i2c.o
2025-10-31T05:40:18.7739757Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.o
2025-10-31T05:40:19.1936579Z CC [M] sound/soc/codecs/pcm512x-spi.o
2025-10-31T05:40:19.3544008Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/oprofilefs.o
2025-10-31T05:40:19.5740795Z CC [M] drivers/regulator/rt5033-regulator.o
2025-10-31T05:40:19.7163315Z CC [M] net/netfilter/xt_esp.o
2025-10-31T05:40:19.7993828Z CC [M] sound/soc/codecs/rk3328_codec.o
2025-10-31T05:40:20.1034384Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/oprofile_stats.o
2025-10-31T05:40:20.3329846Z CC [M] drivers/regulator/rtmv20-regulator.o
2025-10-31T05:40:20.7661081Z CC [M] sound/soc/codecs/rl6231.o
2025-10-31T05:40:20.7819895Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/timer_int.o
2025-10-31T05:40:20.8062796Z CC [M] net/netfilter/xt_hashlimit.o
2025-10-31T05:40:21.0019088Z CC [M] fs/xfs/xfs_inode.o
2025-10-31T05:40:21.1524129Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/nmi_timer_int.o
2025-10-31T05:40:21.4086128Z CC [M] drivers/regulator/s2mpa01.o
2025-10-31T05:40:21.4726049Z CC [M] sound/soc/codecs/rl6347a.o
2025-10-31T05:40:21.8281328Z CC [M] arch/x86/oprofile/init.o
2025-10-31T05:40:22.0373243Z CC [M] arch/x86/oprofile/backtrace.o
2025-10-31T05:40:22.0622795Z CC [M] sound/soc/codecs/rt1011.o
2025-10-31T05:40:22.3444761Z CC [M] drivers/regulator/s2mps11.o
2025-10-31T05:40:22.7044194Z CC [M] net/netfilter/xt_helper.o
2025-10-31T05:40:22.8816738Z CC [M] arch/x86/oprofile/nmi_int.o
2025-10-31T05:40:23.2630766Z CC [M] sound/soc/codecs/rt1015.o
2025-10-31T05:40:23.3612585Z CC [M] drivers/regulator/s5m8767.o
2025-10-31T05:40:23.7521777Z CC [M] arch/x86/oprofile/op_model_amd.o
2025-10-31T05:40:23.9794834Z CC [M] net/netfilter/xt_hl.o
2025-10-31T05:40:24.3543358Z CC [M] sound/soc/codecs/rt1308.o
2025-10-31T05:40:24.4063468Z CC [M] drivers/regulator/sky81452-regulator.o
2025-10-31T05:40:24.5291228Z CC [M] fs/xfs/xfs_itable.o
2025-10-31T05:40:24.8656260Z CC [M] arch/x86/oprofile/op_model_ppro.o
2025-10-31T05:40:24.9857769Z CC [M] net/netfilter/xt_ipcomp.o
2025-10-31T05:40:25.2951587Z CC [M] drivers/regulator/slg51000-regulator.o
2025-10-31T05:40:25.3498096Z CC [M] sound/soc/codecs/rt1308-sdw.o
2025-10-31T05:40:25.4254690Z CC [M] fs/xfs/xfs_iwalk.o
2025-10-31T05:40:25.6494166Z CC [M] arch/x86/oprofile/op_model_p4.o
2025-10-31T05:40:25.8145339Z CC [M] net/netfilter/xt_iprange.o
2025-10-31T05:40:26.2335631Z CC [M] sound/soc/codecs/rt286.o
2025-10-31T05:40:26.2611541Z CC [M] drivers/regulator/tps6105x-regulator.o
2025-10-31T05:40:26.4841771Z LD [M] arch/x86/oprofile/oprofile.o
2025-10-31T05:40:26.5755086Z CC [M] net/netfilter/xt_ipvs.o
2025-10-31T05:40:27.0167700Z CC [M] drivers/regulator/tps62360-regulator.o
2025-10-31T05:40:27.2353466Z AR drivers/reset/hisilicon/built-in.a
2025-10-31T05:40:27.2733050Z CC drivers/reset/core.o
2025-10-31T05:40:27.2777300Z CC [M] sound/soc/codecs/rt298.o
2025-10-31T05:40:27.5885855Z CC [M] fs/xfs/xfs_message.o
2025-10-31T05:40:27.8319116Z CC [M] net/netfilter/xt_l2tp.o
2025-10-31T05:40:27.9846226Z CC [M] drivers/regulator/tps65023-regulator.o
2025-10-31T05:40:28.2473294Z CC [M] drivers/reset/reset-ti-syscon.o
2025-10-31T05:40:28.4238590Z CC [M] fs/xfs/xfs_mount.o
2025-10-31T05:40:28.5065069Z CC [M] sound/soc/codecs/rt5514.o
2025-10-31T05:40:28.7599554Z CC [M] drivers/regulator/tps6507x-regulator.o
2025-10-31T05:40:28.8301460Z AR drivers/reset/built-in.a
2025-10-31T05:40:28.8819411Z CC [M] fs/xfs/xfs_mru_cache.o
2025-10-31T05:40:29.1778411Z CC [M] net/netfilter/xt_length.o
2025-10-31T05:40:29.6038576Z CC [M] sound/soc/codecs/rt5514-spi.o
2025-10-31T05:40:29.7533998Z CC [M] fs/9p/vfs_super.o
2025-10-31T05:40:29.8055702Z CC [M] drivers/regulator/tps65086-regulator.o
2025-10-31T05:40:30.2967782Z CC [M] net/netfilter/xt_limit.o
2025-10-31T05:40:30.6319736Z CC [M] drivers/regulator/tps65090-regulator.o
2025-10-31T05:40:30.6580608Z CC [M] sound/soc/codecs/rt5616.o
2025-10-31T05:40:30.7548854Z CC [M] fs/9p/vfs_inode.o
2025-10-31T05:40:31.0884638Z CC [M] fs/xfs/xfs_pwork.o
2025-10-31T05:40:31.1340594Z CC [M] net/netfilter/xt_mac.o
2025-10-31T05:40:31.5334482Z CC [M] drivers/regulator/tps6524x-regulator.o
2025-10-31T05:40:31.5803318Z CC [M] sound/soc/codecs/rt5631.o
2025-10-31T05:40:32.1467190Z CC [M] fs/9p/vfs_inode_dotl.o
2025-10-31T05:40:32.3754832Z CC [M] net/netfilter/xt_multiport.o
2025-10-31T05:40:32.5934038Z CC [M] drivers/regulator/tps6586x-regulator.o
2025-10-31T05:40:32.6504002Z CC [M] sound/soc/codecs/rt5640.o
2025-10-31T05:40:33.2449451Z CC [M] fs/xfs/xfs_reflink.o
2025-10-31T05:40:33.4034029Z CC [M] fs/9p/vfs_addr.o
2025-10-31T05:40:33.4918802Z CC [M] net/netfilter/xt_nfacct.o
2025-10-31T05:40:33.5383555Z CC [M] drivers/regulator/tps65910-regulator.o
2025-10-31T05:40:33.8939408Z CC [M] sound/soc/codecs/rt5645.o
2025-10-31T05:40:34.3687499Z CC [M] net/netfilter/xt_osf.o
2025-10-31T05:40:34.4593870Z CC [M] fs/9p/vfs_file.o
2025-10-31T05:40:34.7799652Z CC [M] drivers/regulator/tps65912-regulator.o
2025-10-31T05:40:35.5164408Z CC [M] sound/soc/codecs/rt5651.o
2025-10-31T05:40:35.5814562Z CC [M] net/netfilter/xt_owner.o
2025-10-31T05:40:35.6440963Z CC [M] fs/9p/vfs_dir.o
2025-10-31T05:40:35.7413223Z CC [M] drivers/regulator/tps80031-regulator.o
2025-10-31T05:40:35.8616166Z CC [M] fs/xfs/xfs_stats.o
2025-10-31T05:40:36.5953205Z CC [M] fs/9p/vfs_dentry.o
2025-10-31T05:40:36.6853114Z CC [M] net/netfilter/xt_cgroup.o
2025-10-31T05:40:36.7558063Z CC [M] drivers/regulator/tps65132-regulator.o
2025-10-31T05:40:36.8088821Z CC [M] sound/soc/codecs/rt5660.o
2025-10-31T05:40:36.8788887Z CC [M] fs/xfs/xfs_super.o
2025-10-31T05:40:37.3687303Z CC [M] fs/9p/v9fs.o
2025-10-31T05:40:37.7928705Z CC [M] sound/soc/codecs/rt5663.o
2025-10-31T05:40:37.7996283Z CC [M] net/netfilter/xt_physdev.o
2025-10-31T05:40:37.8208341Z CC [M] drivers/regulator/twl-regulator.o
2025-10-31T05:40:38.3828522Z CC [M] fs/9p/fid.o
2025-10-31T05:40:38.6343106Z CC [M] drivers/regulator/twl6030-regulator.o
2025-10-31T05:40:38.8203195Z CC [M] net/netfilter/xt_pkttype.o
2025-10-31T05:40:39.4674351Z CC [M] fs/9p/xattr.o
2025-10-31T05:40:39.5297824Z CC [M] sound/soc/codecs/rt5670.o
2025-10-31T05:40:39.5602337Z CC [M] fs/xfs/xfs_symlink.o
2025-10-31T05:40:39.6293779Z CC [M] drivers/regulator/wm831x-dcdc.o
2025-10-31T05:40:39.8135423Z CC [M] net/netfilter/xt_policy.o
2025-10-31T05:40:40.1239205Z CC [M] fs/9p/cache.o
2025-10-31T05:40:40.7442521Z CC [M] drivers/regulator/wm831x-isink.o
2025-10-31T05:40:40.8181254Z CC [M] sound/soc/codecs/rt5677.o
2025-10-31T05:40:41.0818618Z CC [M] fs/9p/acl.o
2025-10-31T05:40:41.1148811Z CC [M] net/netfilter/xt_quota.o
2025-10-31T05:40:41.7928160Z CC [M] drivers/regulator/wm831x-ldo.o
2025-10-31T05:40:42.0006903Z CC [M] net/netfilter/xt_rateest.o
2025-10-31T05:40:42.0016599Z LD [M] fs/9p/9p.o
2025-10-31T05:40:42.1680201Z CC [M] fs/xfs/xfs_sysfs.o
2025-10-31T05:40:42.3230401Z CC lib/math/div64.o
2025-10-31T05:40:42.5357683Z CC lib/math/gcd.o
2025-10-31T05:40:42.6706652Z CC lib/math/lcm.o
2025-10-31T05:40:42.6857612Z CC [M] drivers/regulator/wm8350-regulator.o
2025-10-31T05:40:42.7624764Z CC lib/math/int_pow.o
2025-10-31T05:40:42.7817924Z CC [M] sound/soc/codecs/rt5677-spi.o
2025-10-31T05:40:42.8689239Z CC lib/math/int_sqrt.o
2025-10-31T05:40:42.9703553Z CC [M] net/netfilter/xt_realm.o
2025-10-31T05:40:43.0221116Z CC lib/math/reciprocal_div.o
2025-10-31T05:40:43.1541185Z CC [M] fs/xfs/xfs_trans.o
2025-10-31T05:40:43.2453449Z CC lib/math/rational.o
2025-10-31T05:40:43.4559193Z CC [M] lib/math/cordic.o
2025-10-31T05:40:43.8839151Z CC [M] sound/soc/codecs/rt5682.o
2025-10-31T05:40:43.8999265Z CC [M] drivers/regulator/wm8400-regulator.o
2025-10-31T05:40:43.9567122Z AR lib/math/built-in.a
2025-10-31T05:40:44.0286182Z CC [M] net/netfilter/xt_recent.o
2025-10-31T05:40:44.0414296Z CC lib/crypto/chacha.o
2025-10-31T05:40:44.3247625Z CC lib/crypto/aes.o
2025-10-31T05:40:44.5611619Z CC [M] drivers/regulator/wm8994-regulator.o
2025-10-31T05:40:45.1296161Z CC lib/crypto/blake2s.o
2025-10-31T05:40:45.4697940Z AR drivers/regulator/built-in.a
2025-10-31T05:40:45.5661126Z CC [M] sound/soc/codecs/rt5682-i2c.o
2025-10-31T05:40:45.6060439Z CC lib/crypto/blake2s-generic.o
2025-10-31T05:40:45.6265095Z CC [M] fs/xfs/xfs_xattr.o
2025-10-31T05:40:45.7873748Z CC [M] net/netfilter/xt_sctp.o
2025-10-31T05:40:46.1314106Z CC drivers/tty/vt/vt_ioctl.o
2025-10-31T05:40:46.3964321Z CC [M] sound/soc/codecs/rt5682-sdw.o
2025-10-31T05:40:46.5788268Z CC [M] fs/xfs/kmem.o
2025-10-31T05:40:46.6657451Z CC lib/crypto/sha256.o
2025-10-31T05:40:47.3049746Z CC drivers/tty/vt/vc_screen.o
2025-10-31T05:40:47.3547334Z CC [M] net/netfilter/xt_socket.o
2025-10-31T05:40:47.4951331Z CC [M] sound/soc/codecs/rt700.o
2025-10-31T05:40:47.8381223Z CC [M] lib/crypto/libchacha.o
2025-10-31T05:40:48.3650017Z CC drivers/tty/vt/selection.o
2025-10-31T05:40:48.3791512Z CC [M] lib/crypto/arc4.o
2025-10-31T05:40:48.4535454Z CC [M] net/netfilter/xt_state.o
2025-10-31T05:40:48.6367422Z CC [M] sound/soc/codecs/rt700-sdw.o
2025-10-31T05:40:48.6827973Z CC [M] fs/xfs/xfs_log.o
2025-10-31T05:40:48.8725416Z CC [M] lib/crypto/chacha20poly1305.o
2025-10-31T05:40:49.4397955Z CC drivers/tty/vt/keyboard.o
2025-10-31T05:40:49.4801384Z CC [M] sound/soc/codecs/rt711.o
2025-10-31T05:40:49.6073207Z CC [M] net/netfilter/xt_statistic.o
2025-10-31T05:40:49.6376594Z CC [M] lib/crypto/curve25519-hacl64.o
2025-10-31T05:40:50.6944841Z CC [M] net/netfilter/xt_string.o
2025-10-31T05:40:50.8204351Z CC [M] sound/soc/codecs/rt711-sdw.o
2025-10-31T05:40:51.3215023Z CC drivers/tty/vt/consolemap.o
2025-10-31T05:40:51.6614692Z CC [M] net/netfilter/xt_tcpmss.o
2025-10-31T05:40:51.7979506Z CC [M] sound/soc/codecs/rt715.o
2025-10-31T05:40:52.1263190Z CC [M] fs/xfs/xfs_log_cil.o
2025-10-31T05:40:52.5129029Z HOSTCC drivers/tty/vt/conmakehash
2025-10-31T05:40:52.7790944Z CC drivers/tty/vt/vt.o
2025-10-31T05:40:52.8843077Z CC [M] net/netfilter/xt_time.o
2025-10-31T05:40:52.9122359Z CC [M] lib/crypto/curve25519-generic.o
2025-10-31T05:40:52.9226025Z CC [M] sound/soc/codecs/rt715-sdw.o
2025-10-31T05:40:53.3339255Z CC [M] lib/crypto/curve25519.o
2025-10-31T05:40:53.8184885Z CC [M] sound/soc/codecs/sgtl5000.o
2025-10-31T05:40:53.8930749Z CC [M] lib/crypto/des.o
2025-10-31T05:40:54.0554776Z CC [M] net/netfilter/xt_u32.o
2025-10-31T05:40:54.6797322Z CC [M] fs/xfs/xfs_bmap_item.o
2025-10-31T05:40:54.8328602Z CC [M] lib/crypto/poly1305-donna64.o
2025-10-31T05:40:54.9010355Z LD [M] net/netfilter/nf_conntrack.o
2025-10-31T05:40:55.0112799Z LD [M] net/netfilter/nf_conntrack_h323.o
2025-10-31T05:40:55.0289028Z LD [M] net/netfilter/nf_nat.o
2025-10-31T05:40:55.0877341Z LD [M] net/netfilter/nf_tables.o
2025-10-31T05:40:55.1043097Z CC [M] sound/soc/codecs/sigmadsp.o
2025-10-31T05:40:55.1870849Z LD [M] net/netfilter/nf_flow_table.o
2025-10-31T05:40:55.2185926Z AR net/netfilter/built-in.a
2025-10-31T05:40:55.2361693Z CC [M] lib/crypto/poly1305.o
2025-10-31T05:40:55.7174979Z LD [M] lib/crypto/libarc4.o
2025-10-31T05:40:55.7273079Z LD [M] lib/crypto/libchacha20poly1305.o
2025-10-31T05:40:55.7310815Z CC [M] fs/xfs/xfs_buf_item.o
2025-10-31T05:40:55.7390293Z LD [M] lib/crypto/libcurve25519-generic.o
2025-10-31T05:40:55.7533714Z LD [M] lib/crypto/libcurve25519.o
2025-10-31T05:40:55.7644579Z LD [M] lib/crypto/libdes.o
2025-10-31T05:40:55.7754575Z LD [M] lib/crypto/libpoly1305.o
2025-10-31T05:40:55.7906655Z AR lib/crypto/built-in.a
2025-10-31T05:40:55.8841874Z CC lib/zlib_inflate/inffast.o
2025-10-31T05:40:55.9132407Z SHIPPED drivers/tty/vt/defkeymap.c
2025-10-31T05:40:55.9463258Z CONMK drivers/tty/vt/consolemap_deftbl.c
2025-10-31T05:40:55.9561623Z CC drivers/tty/vt/defkeymap.o
2025-10-31T05:40:56.1102665Z CC [M] sound/soc/codecs/sigmadsp-i2c.o
2025-10-31T05:40:56.1913050Z CC lib/zlib_inflate/inflate.o
2025-10-31T05:40:56.2136967Z CC drivers/tty/vt/consolemap_deftbl.o
2025-10-31T05:40:56.2899686Z AR drivers/tty/vt/built-in.a
2025-10-31T05:40:56.3333240Z CC drivers/tty/hvc/hvc_console.o
2025-10-31T05:40:56.3403274Z CC net/xfrm/xfrm_policy.o
2025-10-31T05:40:56.8570576Z CC [M] sound/soc/codecs/sigmadsp-regmap.o
2025-10-31T05:40:57.1820231Z CC drivers/tty/hvc/hvc_irq.o
2025-10-31T05:40:57.2760035Z CC lib/zlib_inflate/infutil.o
2025-10-31T05:40:57.5383153Z CC [M] sound/soc/codecs/si476x.o
2025-10-31T05:40:57.7143660Z CC lib/zlib_inflate/inftrees.o
2025-10-31T05:40:57.8383724Z CC drivers/tty/hvc/hvc_xen.o
2025-10-31T05:40:58.0188503Z CC [M] fs/xfs/xfs_buf_item_recover.o
2025-10-31T05:40:58.0217701Z CC lib/zlib_inflate/inflate_syms.o
2025-10-31T05:40:58.4752870Z AR lib/zlib_inflate/built-in.a
2025-10-31T05:40:58.4836197Z CC [M] sound/soc/codecs/spdif_receiver.o
2025-10-31T05:40:58.5099444Z CC lib/zlib_deflate/deflate.o
2025-10-31T05:40:59.2136888Z AR drivers/tty/hvc/built-in.a
2025-10-31T05:40:59.2734525Z CC drivers/tty/serial/8250/8250_core.o
2025-10-31T05:40:59.2738460Z CC [M] sound/soc/codecs/spdif_transmitter.o
2025-10-31T05:40:59.3392781Z CC lib/zlib_deflate/deftree.o
2025-10-31T05:41:00.1420952Z CC [M] sound/soc/codecs/sirf-audio-codec.o
2025-10-31T05:41:00.1723121Z CC lib/zlib_deflate/deflate_syms.o
2025-10-31T05:41:00.1893330Z CC [M] fs/xfs/xfs_dquot_item_recover.o
2025-10-31T05:41:00.4970184Z CC drivers/tty/serial/8250/8250_pnp.o
2025-10-31T05:41:00.6143186Z AR lib/zlib_deflate/built-in.a
2025-10-31T05:41:00.6651708Z CC lib/lzo/lzo1x_compress.o
2025-10-31T05:41:01.0760785Z CC [M] fs/xfs/xfs_extfree_item.o
2025-10-31T05:41:01.1362955Z CC [M] sound/soc/codecs/ssm2305.o
2025-10-31T05:41:01.2046910Z CC lib/lzo/lzo1x_decompress_safe.o
2025-10-31T05:41:01.2263684Z CC drivers/tty/serial/8250/8250_port.o
2025-10-31T05:41:01.5698955Z CC net/xfrm/xfrm_state.o
2025-10-31T05:41:01.8282642Z AR lib/lzo/built-in.a
2025-10-31T05:41:01.8694954Z CC lib/lz4/lz4_compress.o
2025-10-31T05:41:01.9033735Z CC [M] sound/soc/codecs/ssm2602.o
2025-10-31T05:41:02.8443185Z CC [M] sound/soc/codecs/ssm2602-spi.o
2025-10-31T05:41:03.4475214Z CC [M] fs/xfs/xfs_icreate_item.o
2025-10-31T05:41:03.5938913Z CC drivers/tty/serial/8250/8250_dma.o
2025-10-31T05:41:03.6247016Z CC [M] sound/soc/codecs/ssm2602-i2c.o
2025-10-31T05:41:04.0695141Z CC lib/lz4/lz4_decompress.o
2025-10-31T05:41:04.3791653Z CC [M] sound/soc/codecs/ssm4567.o
2025-10-31T05:41:04.3904895Z CC drivers/tty/serial/8250/8250_dwlib.o
2025-10-31T05:41:05.2184834Z CC [M] sound/soc/codecs/sta32x.o
2025-10-31T05:41:05.2716050Z CC net/xfrm/xfrm_hash.o
2025-10-31T05:41:05.3072431Z CC drivers/tty/serial/8250/8250_fintek.o
2025-10-31T05:41:05.5853616Z CC [M] fs/xfs/xfs_inode_item.o
2025-10-31T05:41:05.6983258Z CC [M] lib/lz4/lz4hc_compress.o
2025-10-31T05:41:05.9114944Z CC net/xfrm/xfrm_input.o
2025-10-31T05:41:06.1663272Z CC drivers/tty/serial/8250/8250_pci.o
2025-10-31T05:41:06.5037622Z CC [M] sound/soc/codecs/sta350.o
2025-10-31T05:41:07.2132841Z AR lib/lz4/built-in.a
2025-10-31T05:41:07.2920524Z CC lib/zstd/fse_compress.o
2025-10-31T05:41:07.5704070Z CC drivers/tty/serial/8250/8250_early.o
2025-10-31T05:41:07.7920692Z CC [M] sound/soc/codecs/sti-sas.o
2025-10-31T05:41:07.9513084Z CC net/xfrm/xfrm_output.o
2025-10-31T05:41:08.0757621Z CC [M] fs/xfs/xfs_inode_item_recover.o
2025-10-31T05:41:08.1516062Z CC drivers/tty/serial/8250/8250_lpss.o
2025-10-31T05:41:08.2920278Z CC lib/zstd/huf_compress.o
2025-10-31T05:41:08.6944380Z CC [M] sound/soc/codecs/tas2552.o
2025-10-31T05:41:08.9804447Z CC drivers/tty/serial/8250/8250_mid.o
2025-10-31T05:41:09.1280994Z CC lib/zstd/compress.o
2025-10-31T05:41:09.7358182Z CC net/xfrm/xfrm_sysctl.o
2025-10-31T05:41:09.8773197Z CC [M] drivers/tty/serial/8250/8250_exar.o
2025-10-31T05:41:10.1321029Z CC [M] sound/soc/codecs/tas2562.o
2025-10-31T05:41:10.1714364Z CC [M] fs/xfs/xfs_refcount_item.o
2025-10-31T05:41:10.8841424Z CC [M] drivers/tty/serial/8250/serial_cs.o
2025-10-31T05:41:10.9070830Z CC net/xfrm/xfrm_replay.o
2025-10-31T05:41:11.1829918Z CC [M] fs/xfs/xfs_rmap_item.o
2025-10-31T05:41:11.2961091Z CC [M] sound/soc/codecs/tas2764.o
2025-10-31T05:41:11.8699065Z CC [M] drivers/tty/serial/8250/8250_men_mcb.o
2025-10-31T05:41:12.2544417Z CC [M] fs/xfs/xfs_log_recover.o
2025-10-31T05:41:12.3637106Z CC [M] sound/soc/codecs/tas5086.o
2025-10-31T05:41:12.4764656Z CC net/xfrm/xfrm_device.o
2025-10-31T05:41:12.4930969Z CC [M] drivers/tty/serial/8250/8250_dw.o
2025-10-31T05:41:13.4808568Z CC [M] sound/soc/codecs/tas571x.o
2025-10-31T05:41:13.7553216Z AR drivers/tty/serial/8250/built-in.a
2025-10-31T05:41:13.8586839Z CC [M] drivers/tty/serial/jsm/jsm_driver.o
2025-10-31T05:41:13.9769415Z CC net/xfrm/xfrm_proc.o
2025-10-31T05:41:14.4821516Z CC [M] sound/soc/codecs/tas5720.o
2025-10-31T05:41:14.6690394Z CC [M] drivers/tty/serial/jsm/jsm_neo.o
2025-10-31T05:41:15.2023348Z CC net/xfrm/xfrm_algo.o
2025-10-31T05:41:15.5467573Z CC [M] fs/xfs/xfs_trans_ail.o
2025-10-31T05:41:15.6885412Z CC [M] sound/soc/codecs/tas6424.o
2025-10-31T05:41:15.9005513Z CC [M] drivers/tty/serial/jsm/jsm_tty.o
2025-10-31T05:41:16.5315430Z CC net/xfrm/xfrm_user.o
2025-10-31T05:41:16.8945019Z CC [M] sound/soc/codecs/tda7419.o
2025-10-31T05:41:17.1303768Z CC [M] drivers/tty/serial/jsm/jsm_cls.o
2025-10-31T05:41:17.8342616Z CC [M] sound/soc/codecs/tas2770.o
2025-10-31T05:41:17.9491724Z CC [M] fs/xfs/xfs_trans_buf.o
2025-10-31T05:41:18.1769430Z LD [M] drivers/tty/serial/jsm/jsm.o
2025-10-31T05:41:18.2115637Z CC drivers/tty/serial/serial_core.o
2025-10-31T05:41:18.8838214Z CC [M] sound/soc/codecs/tfa9879.o
2025-10-31T05:41:19.5497882Z CC net/xfrm/espintcp.o
2025-10-31T05:41:19.8670123Z CC [M] sound/soc/codecs/tlv320aic23.o
2025-10-31T05:41:20.3914110Z CC [M] fs/xfs/xfs_dquot.o
2025-10-31T05:41:20.5809514Z CC drivers/tty/serial/earlycon.o
2025-10-31T05:41:20.6539647Z CC [M] sound/soc/codecs/tlv320aic23-i2c.o
2025-10-31T05:41:21.2243774Z CC drivers/tty/serial/serial_mctrl_gpio.o
2025-10-31T05:41:21.3069359Z CC [M] net/xfrm/xfrm_ipcomp.o
2025-10-31T05:41:21.4013575Z CC [M] sound/soc/codecs/tlv320aic23-spi.o
2025-10-31T05:41:21.5228344Z CC lib/zstd/entropy_common.o
2025-10-31T05:41:21.7547873Z CC lib/zstd/fse_decompress.o
2025-10-31T05:41:21.9729693Z CC [M] sound/soc/codecs/tlv320aic31xx.o
2025-10-31T05:41:22.1713566Z CC [M] drivers/tty/serial/max3100.o
2025-10-31T05:41:22.2277057Z CC lib/zstd/zstd_common.o
2025-10-31T05:41:22.4636150Z CC lib/zstd/huf_decompress.o
2025-10-31T05:41:22.8075210Z CC [M] net/xfrm/xfrm_interface_core.o
2025-10-31T05:41:23.2427434Z CC [M] fs/xfs/xfs_dquot_item.o
2025-10-31T05:41:23.3460381Z CC [M] sound/soc/codecs/tlv320aic32x4.o
2025-10-31T05:41:23.3549841Z CC [M] drivers/tty/serial/max310x.o
2025-10-31T05:41:24.0831481Z CC [M] fs/xfs/xfs_trans_dquot.o
2025-10-31T05:41:24.5563224Z CC [M] sound/soc/codecs/tlv320aic32x4-clk.o
2025-10-31T05:41:24.5957858Z AR net/xfrm/built-in.a
2025-10-31T05:41:24.6328778Z LD [M] net/xfrm/xfrm_interface.o
2025-10-31T05:41:24.6904536Z CC lib/zstd/decompress.o
2025-10-31T05:41:24.7197373Z CC net/unix/af_unix.o
2025-10-31T05:41:24.8075083Z CC [M] drivers/tty/serial/sccnxp.o
2025-10-31T05:41:25.2586174Z CC [M] sound/soc/codecs/tlv320aic32x4-i2c.o
2025-10-31T05:41:26.1380733Z CC [M] sound/soc/codecs/tlv320aic32x4-spi.o
2025-10-31T05:41:26.2010776Z CC [M] drivers/tty/serial/sc16is7xx.o
2025-10-31T05:41:26.3419846Z CC [M] fs/xfs/xfs_qm_syscalls.o
2025-10-31T05:41:26.8030381Z CC [M] sound/soc/codecs/tlv320aic3x.o
2025-10-31T05:41:26.9649685Z AR lib/zstd/built-in.a
2025-10-31T05:41:26.9926335Z CC lib/xz/xz_dec_syms.o
2025-10-31T05:41:27.3123556Z CC lib/xz/xz_dec_stream.o
2025-10-31T05:41:27.4844268Z CC net/unix/garbage.o
2025-10-31T05:41:27.5539623Z CC [M] fs/xfs/xfs_qm_bhv.o
2025-10-31T05:41:27.7029620Z CC [M] drivers/tty/serial/uartlite.o
2025-10-31T05:41:27.9963746Z CC lib/xz/xz_dec_lzma2.o
2025-10-31T05:41:28.3493068Z CC [M] fs/xfs/xfs_qm.o
2025-10-31T05:41:28.4253447Z CC [M] drivers/tty/serial/altera_uart.o
2025-10-31T05:41:28.4959125Z CC [M] sound/soc/codecs/tlv320adcx140.o
2025-10-31T05:41:28.7770783Z CC net/unix/sysctl_net_unix.o
2025-10-31T05:41:28.8585039Z CC lib/xz/xz_dec_bcj.o
2025-10-31T05:41:29.2612294Z CC [M] drivers/tty/serial/altera_jtaguart.o
2025-10-31T05:41:29.5869046Z AR lib/xz/built-in.a
2025-10-31T05:41:29.6400413Z CC lib/mpi/generic_mpih-lshift.o
2025-10-31T05:41:29.7830893Z CC [M] sound/soc/codecs/tscs42xx.o
2025-10-31T05:41:29.9013651Z CC net/unix/scm.o
2025-10-31T05:41:29.9399436Z CC [M] drivers/tty/serial/ifx6x60.o
2025-10-31T05:41:30.4065973Z CC lib/mpi/generic_mpih-mul1.o
2025-10-31T05:41:30.7885740Z CC [M] sound/soc/codecs/tscs454.o
2025-10-31T05:41:30.9838137Z CC [M] net/unix/diag.o
2025-10-31T05:41:31.0055968Z CC [M] fs/xfs/xfs_quotaops.o
2025-10-31T05:41:31.1113378Z CC lib/mpi/generic_mpih-mul2.o
2025-10-31T05:41:31.2292677Z CC [M] drivers/tty/serial/arc_uart.o
2025-10-31T05:41:31.7112581Z CC lib/mpi/generic_mpih-mul3.o
2025-10-31T05:41:31.8779525Z CC [M] drivers/tty/serial/rp2.o
2025-10-31T05:41:31.9318674Z CC [M] fs/xfs/xfs_rtalloc.o
2025-10-31T05:41:32.1462569Z AR net/unix/built-in.a
2025-10-31T05:41:32.1676333Z LD [M] net/unix/unix_diag.o
2025-10-31T05:41:32.2885952Z AR net/ipv6/netfilter/built-in.a
2025-10-31T05:41:32.3079434Z CC [M] net/ipv6/netfilter/ip6_tables.o
2025-10-31T05:41:32.3456731Z CC lib/mpi/generic_mpih-rshift.o
2025-10-31T05:41:32.4269370Z CC [M] sound/soc/codecs/ts3a227e.o
2025-10-31T05:41:32.7328813Z CC [M] drivers/tty/serial/fsl_lpuart.o
2025-10-31T05:41:32.9429766Z CC lib/mpi/generic_mpih-sub1.o
2025-10-31T05:41:33.1242921Z CC [M] fs/xfs/xfs_acl.o
2025-10-31T05:41:33.4795782Z CC [M] sound/soc/codecs/uda1334.o
2025-10-31T05:41:33.5933887Z CC lib/mpi/generic_mpih-add1.o
2025-10-31T05:41:34.2296017Z CC [M] sound/soc/codecs/wcd-clsh-v2.o
2025-10-31T05:41:34.2782649Z CC lib/mpi/ec.o
2025-10-31T05:41:34.5580272Z CC [M] drivers/tty/serial/fsl_linflexuart.o
2025-10-31T05:41:34.7386825Z CC [M] net/ipv6/netfilter/ip6table_filter.o
2025-10-31T05:41:34.9677587Z CC [M] sound/soc/codecs/wcd9335.o
2025-10-31T05:41:35.3531874Z CC [M] drivers/tty/serial/men_z135_uart.o
2025-10-31T05:41:35.3733705Z CC [M] fs/xfs/xfs_sysctl.o
2025-10-31T05:41:35.5068847Z CC lib/mpi/mpicoder.o
2025-10-31T05:41:35.9310198Z CC [M] net/ipv6/netfilter/ip6table_mangle.o
2025-10-31T05:41:36.0293364Z CC [M] sound/soc/codecs/wcd934x.o
2025-10-31T05:41:36.2825664Z CC [M] fs/xfs/xfs_ioctl32.o
2025-10-31T05:41:36.3288643Z CC [M] drivers/tty/serial/sprd_serial.o
2025-10-31T05:41:36.7376462Z CC lib/mpi/mpi-add.o
2025-10-31T05:41:37.1577791Z AR drivers/tty/serial/built-in.a
2025-10-31T05:41:37.1990081Z CC [M] sound/soc/codecs/wm8510.o
2025-10-31T05:41:37.2372329Z CC [M] net/ipv6/netfilter/ip6table_raw.o
2025-10-31T05:41:37.2940865Z CC drivers/tty/serdev/core.o
2025-10-31T05:41:37.3990165Z CC lib/mpi/mpi-bit.o
2025-10-31T05:41:38.1258318Z CC drivers/tty/serdev/serdev-ttyport.o
2025-10-31T05:41:38.2113784Z CC [M] sound/soc/codecs/wm8523.o
2025-10-31T05:41:38.2776949Z CC lib/mpi/mpi-cmp.o
2025-10-31T05:41:38.3211146Z CC [M] fs/xfs/xfs_pnfs.o
2025-10-31T05:41:38.4415456Z CC [M] net/ipv6/netfilter/ip6table_security.o
2025-10-31T05:41:38.7648690Z AR drivers/tty/serdev/built-in.a
2025-10-31T05:41:38.7924895Z AR drivers/tty/ipwireless/built-in.a
2025-10-31T05:41:38.8153283Z CC [M] drivers/tty/ipwireless/hardware.o
2025-10-31T05:41:38.8492550Z CC lib/mpi/mpi-sub-ui.o
2025-10-31T05:41:39.1657562Z CC [M] sound/soc/codecs/wm8524.o
2025-10-31T05:41:39.2062844Z CC [M] fs/xfs/scrub/trace.o
2025-10-31T05:41:39.5146085Z CC lib/mpi/mpi-div.o
2025-10-31T05:41:39.8281730Z CC [M] net/ipv6/netfilter/ip6table_nat.o
2025-10-31T05:41:39.9824794Z CC [M] sound/soc/codecs/wm8580.o
2025-10-31T05:41:40.1193856Z CC lib/mpi/mpi-inv.o
2025-10-31T05:41:40.2315572Z CC [M] drivers/tty/ipwireless/main.o
2025-10-31T05:41:40.7806963Z CC lib/mpi/mpi-mod.o
2025-10-31T05:41:41.0518748Z CC [M] sound/soc/codecs/wm8711.o
2025-10-31T05:41:41.0873193Z CC [M] drivers/tty/ipwireless/network.o
2025-10-31T05:41:41.1508382Z CC [M] net/ipv6/netfilter/nf_defrag_ipv6_hooks.o
2025-10-31T05:41:41.3064082Z CC lib/mpi/mpi-mul.o
2025-10-31T05:41:41.8650961Z CC lib/mpi/mpih-cmp.o
2025-10-31T05:41:41.8964329Z CC [M] sound/soc/codecs/wm8728.o
2025-10-31T05:41:42.0549984Z CC [M] fs/xfs/scrub/agheader.o
2025-10-31T05:41:42.2150793Z CC [M] drivers/tty/ipwireless/tty.o
2025-10-31T05:41:42.4304243Z CC lib/mpi/mpih-div.o
2025-10-31T05:41:42.5275969Z CC [M] net/ipv6/netfilter/nf_conntrack_reasm.o
2025-10-31T05:41:42.8110940Z CC [M] sound/soc/codecs/wm8731.o
2025-10-31T05:41:43.0689069Z LD [M] drivers/tty/ipwireless/ipwireless.o
2025-10-31T05:41:43.1046741Z CC drivers/tty/tty_io.o
2025-10-31T05:41:43.3011257Z CC [M] fs/xfs/scrub/alloc.o
2025-10-31T05:41:43.3932797Z CC lib/mpi/mpih-mul.o
2025-10-31T05:41:44.0429757Z CC [M] net/ipv6/netfilter/nf_socket_ipv6.o
2025-10-31T05:41:44.0669355Z CC [M] sound/soc/codecs/wm8737.o
2025-10-31T05:41:44.2743879Z CC [M] fs/xfs/scrub/attr.o
2025-10-31T05:41:44.4608189Z CC lib/mpi/mpi-pow.o
2025-10-31T05:41:45.1555490Z CC [M] sound/soc/codecs/wm8741.o
2025-10-31T05:41:45.1671188Z CC drivers/tty/n_tty.o
2025-10-31T05:41:45.2319640Z CC [M] net/ipv6/netfilter/nf_tproxy_ipv6.o
2025-10-31T05:41:45.3608972Z CC lib/mpi/mpiutil.o
2025-10-31T05:41:45.4352222Z CC [M] fs/xfs/scrub/bmap.o
2025-10-31T05:41:46.1809129Z AR lib/mpi/built-in.a
2025-10-31T05:41:46.2130983Z CC [M] sound/soc/codecs/wm8750.o
2025-10-31T05:41:46.2320930Z CC lib/dim/dim.o
2025-10-31T05:41:46.4635352Z CC [M] net/ipv6/netfilter/nf_log_ipv6.o
2025-10-31T05:41:46.5866711Z CC [M] fs/xfs/scrub/btree.o
2025-10-31T05:41:46.7873157Z CC lib/dim/net_dim.o
2025-10-31T05:41:47.2353586Z CC drivers/tty/tty_ioctl.o
2025-10-31T05:41:47.2510407Z CC lib/dim/rdma_dim.o
2025-10-31T05:41:47.2954543Z CC [M] sound/soc/codecs/wm8753.o
2025-10-31T05:41:47.6685782Z AR lib/dim/built-in.a
2025-10-31T05:41:47.6703055Z CC [M] fs/xfs/scrub/common.o
2025-10-31T05:41:47.7087595Z CC lib/fonts/fonts.o
2025-10-31T05:41:47.7283585Z CC [M] net/ipv6/netfilter/nf_reject_ipv6.o
2025-10-31T05:41:48.0529826Z CC lib/fonts/font_8x16.o
2025-10-31T05:41:48.3773480Z CC drivers/tty/tty_ldisc.o
2025-10-31T05:41:48.4058843Z CC lib/fonts/font_ter16x32.o
2025-10-31T05:41:48.4682493Z CC [M] sound/soc/codecs/wm8770.o
2025-10-31T05:41:48.8583756Z AR lib/fonts/built-in.a
2025-10-31T05:41:48.9099308Z CC lib/pldmfw/pldmfw.o
2025-10-31T05:41:49.0395556Z CC [M] net/ipv6/netfilter/nf_dup_ipv6.o
2025-10-31T05:41:49.1758165Z CC [M] fs/xfs/scrub/dabtree.o
2025-10-31T05:41:49.3171095Z CC drivers/tty/tty_buffer.o
2025-10-31T05:41:49.3844948Z CC [M] sound/soc/codecs/wm8776.o
2025-10-31T05:41:50.0390177Z AR lib/pldmfw/built-in.a
2025-10-31T05:41:50.0889794Z CC [M] lib/842/842_compress.o
2025-10-31T05:41:50.1883282Z CC drivers/tty/tty_port.o
2025-10-31T05:41:50.2073490Z CC [M] net/ipv6/netfilter/nft_reject_ipv6.o
2025-10-31T05:41:50.2577841Z CC [M] sound/soc/codecs/wm8782.o
2025-10-31T05:41:50.3109510Z CC [M] fs/xfs/scrub/dir.o
2025-10-31T05:41:50.9809723Z CC drivers/tty/tty_mutex.o
2025-10-31T05:41:51.1145758Z CC [M] sound/soc/codecs/wm8804.o
2025-10-31T05:41:51.1463231Z CC [M] lib/842/842_decompress.o
2025-10-31T05:41:51.3394456Z CC [M] net/ipv6/netfilter/nft_dup_ipv6.o
2025-10-31T05:41:51.5707614Z CC [M] fs/xfs/scrub/fscounters.o
2025-10-31T05:41:51.5954853Z CC drivers/tty/tty_ldsem.o
2025-10-31T05:41:51.7772632Z CC [M] lib/reed_solomon/reed_solomon.o
2025-10-31T05:41:52.2093462Z CC [M] sound/soc/codecs/wm8804-i2c.o
2025-10-31T05:41:52.3864159Z CC drivers/tty/tty_baudrate.o
2025-10-31T05:41:52.4194038Z CC [M] net/ipv6/netfilter/nft_fib_ipv6.o
2025-10-31T05:41:52.7712752Z CC [M] lib/raid6/algos.o
2025-10-31T05:41:52.8128364Z CC [M] fs/xfs/scrub/health.o
2025-10-31T05:41:52.8480788Z CC [M] sound/soc/codecs/wm8804-spi.o
2025-10-31T05:41:52.9785047Z CC drivers/tty/tty_jobctrl.o
2025-10-31T05:41:53.5100711Z CC [M] sound/soc/codecs/wm8903.o
2025-10-31T05:41:53.5151721Z CC [M] lib/raid6/recov.o
2025-10-31T05:41:53.5585593Z CC [M] fs/xfs/scrub/ialloc.o
2025-10-31T05:41:53.5806361Z CC [M] net/ipv6/netfilter/nf_flow_table_ipv6.o
2025-10-31T05:41:53.8328219Z CC drivers/tty/n_null.o
2025-10-31T05:41:54.3458765Z CC drivers/tty/pty.o
2025-10-31T05:41:54.3745502Z CC [M] net/ipv6/netfilter/ip6t_ah.o
2025-10-31T05:41:54.3793096Z HOSTCC lib/raid6/mktables
2025-10-31T05:41:54.6861505Z CC [M] fs/xfs/scrub/inode.o
2025-10-31T05:41:54.8077969Z UNROLL lib/raid6/int1.c
2025-10-31T05:41:54.8257928Z UNROLL lib/raid6/int2.c
2025-10-31T05:41:54.8481492Z UNROLL lib/raid6/int4.c
2025-10-31T05:41:54.8680618Z UNROLL lib/raid6/int8.c
2025-10-31T05:41:54.8802479Z UNROLL lib/raid6/int16.c
2025-10-31T05:41:54.8901368Z UNROLL lib/raid6/int32.c
2025-10-31T05:41:54.9020062Z CC [M] lib/raid6/recov_ssse3.o
2025-10-31T05:41:54.9457044Z CC [M] sound/soc/codecs/wm8904.o
2025-10-31T05:41:55.2067608Z CC drivers/tty/tty_audit.o
2025-10-31T05:41:55.5747802Z CC [M] lib/raid6/recov_avx2.o
2025-10-31T05:41:55.7543642Z CC [M] fs/xfs/scrub/parent.o
2025-10-31T05:41:55.7810725Z CC [M] net/ipv6/netfilter/ip6t_eui64.o
2025-10-31T05:41:55.9300563Z CC drivers/tty/sysrq.o
2025-10-31T05:41:56.2114338Z CC [M] lib/raid6/mmx.o
2025-10-31T05:41:56.2753411Z CC [M] lib/raid6/sse1.o
2025-10-31T05:41:56.3377740Z CC [M] lib/raid6/sse2.o
2025-10-31T05:41:56.6883170Z CC [M] fs/xfs/scrub/refcount.o
2025-10-31T05:41:56.7210348Z CC [M] sound/soc/codecs/wm8960.o
2025-10-31T05:41:56.8297603Z CC [M] net/ipv6/netfilter/ip6t_frag.o
2025-10-31T05:41:56.9949090Z CC [M] lib/raid6/avx2.o
2025-10-31T05:41:57.3534840Z CC [M] drivers/tty/n_hdlc.o
2025-10-31T05:41:57.7553777Z CC [M] lib/raid6/avx512.o
2025-10-31T05:41:57.7976595Z CC [M] fs/xfs/scrub/rmap.o
2025-10-31T05:41:57.9198247Z CC [M] sound/soc/codecs/wm8962.o
2025-10-31T05:41:58.1482286Z CC [M] net/ipv6/netfilter/ip6t_ipv6header.o
2025-10-31T05:41:58.5363461Z CC [M] drivers/tty/n_tracerouter.o
2025-10-31T05:41:58.6032347Z CC [M] fs/xfs/scrub/scrub.o
2025-10-31T05:41:58.7359019Z CC [M] lib/raid6/recov_avx512.o
2025-10-31T05:41:59.1473985Z CC [M] drivers/tty/n_tracesink.o
2025-10-31T05:41:59.3780436Z CC [M] net/ipv6/netfilter/ip6t_mh.o
2025-10-31T05:41:59.4354146Z TABLE lib/raid6/tables.c
2025-10-31T05:41:59.4737046Z CC [M] lib/raid6/int1.o
2025-10-31T05:41:59.6102819Z CC [M] drivers/tty/cyclades.o
2025-10-31T05:41:59.6706967Z CC [M] sound/soc/codecs/wm8974.o
2025-10-31T05:41:59.6777838Z CC [M] fs/xfs/scrub/symlink.o
2025-10-31T05:42:00.0812915Z CC [M] lib/raid6/int2.o
2025-10-31T05:42:00.4092480Z CC [M] net/ipv6/netfilter/ip6t_hbh.o
2025-10-31T05:42:00.5344865Z CC [M] fs/xfs/scrub/rtbitmap.o
2025-10-31T05:42:00.8023116Z CC [M] lib/raid6/int4.o
2025-10-31T05:42:00.8763133Z CC [M] sound/soc/codecs/wm8978.o
2025-10-31T05:42:01.5571930Z CC [M] lib/raid6/int8.o
2025-10-31T05:42:01.6194898Z CC [M] fs/xfs/scrub/quota.o
2025-10-31T05:42:01.6799307Z CC [M] net/ipv6/netfilter/ip6t_rpfilter.o
2025-10-31T05:42:01.9010756Z CC [M] sound/soc/codecs/wm8985.o
2025-10-31T05:42:01.9674827Z CC [M] drivers/tty/isicom.o
2025-10-31T05:42:02.5365621Z CC [M] lib/raid6/int16.o
2025-10-31T05:42:02.6265636Z CC [M] fs/xfs/scrub/agheader_repair.o
2025-10-31T05:42:02.9684487Z CC [M] net/ipv6/netfilter/ip6t_rt.o
2025-10-31T05:42:02.9817928Z CC [M] sound/soc/codecs/wsa881x.o
2025-10-31T05:42:03.1876014Z CC [M] lib/raid6/int32.o
2025-10-31T05:42:03.3271628Z CC [M] drivers/tty/moxa.o
2025-10-31T05:42:03.7631811Z CC [M] sound/soc/codecs/zl38060.o
2025-10-31T05:42:03.9975782Z CC [M] lib/raid6/tables.o
2025-10-31T05:42:04.0477042Z CC [M] fs/xfs/scrub/bitmap.o
2025-10-31T05:42:04.2723192Z CC [M] net/ipv6/netfilter/ip6t_srh.o
2025-10-31T05:42:04.6332285Z CC [M] sound/soc/codecs/zx_aud96p22.o
2025-10-31T05:42:04.8327667Z LD [M] lib/raid6/raid6_pq.o
2025-10-31T05:42:04.8760910Z CC lib/argv_split.o
2025-10-31T05:42:04.9424813Z CC [M] fs/xfs/scrub/repair.o
2025-10-31T05:42:04.9498802Z CC [M] drivers/tty/mxser.o
2025-10-31T05:42:05.3827303Z CC lib/bug.o
2025-10-31T05:42:05.4035278Z CC [M] sound/soc/codecs/max98504.o
2025-10-31T05:42:05.8146074Z CC [M] net/ipv6/netfilter/ip6t_NPT.o
2025-10-31T05:42:06.0872899Z CC lib/clz_tab.o
2025-10-31T05:42:06.1508177Z CC lib/cmdline.o
2025-10-31T05:42:06.2395979Z LD [M] fs/xfs/xfs.o
2025-10-31T05:42:06.3542555Z CC lib/cpumask.o
2025-10-31T05:42:06.4250681Z CC [M] sound/soc/codecs/simple-amplifier.o
2025-10-31T05:42:06.6503381Z CC [M] fs/afs/cache.o
2025-10-31T05:42:06.8511626Z CC [M] drivers/tty/nozomi.o
2025-10-31T05:42:07.0694597Z CC lib/ctype.o
2025-10-31T05:42:07.1851405Z CC lib/dec_and_lock.o
2025-10-31T05:42:07.2233083Z CC [M] net/ipv6/netfilter/ip6t_REJECT.o
2025-10-31T05:42:07.2870949Z CC [M] sound/soc/codecs/tpa6130a2.o
2025-10-31T05:42:07.4756555Z CC lib/decompress.o
2025-10-31T05:42:07.6210863Z CC [M] fs/afs/addr_list.o
2025-10-31T05:42:07.6507492Z CC lib/decompress_bunzip2.o
2025-10-31T05:42:08.2125955Z LD [M] sound/soc/codecs/snd-soc-ac97.o
2025-10-31T05:42:08.2369239Z LD [M] sound/soc/codecs/snd-soc-adau-utils.o
2025-10-31T05:42:08.2568927Z LD [M] sound/soc/codecs/snd-soc-adau1701.o
2025-10-31T05:42:08.2828467Z LD [M] sound/soc/codecs/snd-soc-adau17x1.o
2025-10-31T05:42:08.3015967Z LD [M] sound/soc/codecs/snd-soc-adau1761.o
2025-10-31T05:42:08.3167593Z LD [M] sound/soc/codecs/snd-soc-adau1761-i2c.o
2025-10-31T05:42:08.3300969Z CC lib/decompress_inflate.o
2025-10-31T05:42:08.3321358Z LD [M] sound/soc/codecs/snd-soc-adau1761-spi.o
2025-10-31T05:42:08.3500685Z LD [M] sound/soc/codecs/snd-soc-adau7002.o
2025-10-31T05:42:08.3710597Z LD [M] sound/soc/codecs/snd-soc-adau7118.o
2025-10-31T05:42:08.3726472Z CC [M] net/ipv6/netfilter/ip6t_SYNPROXY.o
2025-10-31T05:42:08.3868708Z LD [M] sound/soc/codecs/snd-soc-adau7118-i2c.o
2025-10-31T05:42:08.3984735Z LD [M] sound/soc/codecs/snd-soc-adau7118-hw.o
2025-10-31T05:42:08.4104457Z LD [M] sound/soc/codecs/snd-soc-ak4104.o
2025-10-31T05:42:08.4244043Z LD [M] sound/soc/codecs/snd-soc-ak4118.o
2025-10-31T05:42:08.4378238Z LD [M] sound/soc/codecs/snd-soc-ak4458.o
2025-10-31T05:42:08.4524604Z LD [M] sound/soc/codecs/snd-soc-ak4554.o
2025-10-31T05:42:08.4651334Z LD [M] sound/soc/codecs/snd-soc-ak4613.o
2025-10-31T05:42:08.4776522Z LD [M] sound/soc/codecs/snd-soc-ak4642.o
2025-10-31T05:42:08.4903976Z LD [M] sound/soc/codecs/snd-soc-ak5386.o
2025-10-31T05:42:08.5053193Z LD [M] sound/soc/codecs/snd-soc-ak5558.o
2025-10-31T05:42:08.5170016Z LD [M] sound/soc/codecs/snd-soc-alc5623.o
2025-10-31T05:42:08.5304880Z LD [M] sound/soc/codecs/snd-soc-bd28623.o
2025-10-31T05:42:08.5438171Z LD [M] sound/soc/codecs/snd-soc-cros-ec-codec.o
2025-10-31T05:42:08.5576424Z LD [M] sound/soc/codecs/snd-soc-cs35l32.o
2025-10-31T05:42:08.5705193Z LD [M] sound/soc/codecs/snd-soc-cs35l33.o
2025-10-31T05:42:08.5918784Z LD [M] sound/soc/codecs/snd-soc-cs35l34.o
2025-10-31T05:42:08.6183535Z LD [M] sound/soc/codecs/snd-soc-cs35l35.o
2025-10-31T05:42:08.6429828Z CC [M] drivers/tty/ttynull.o
2025-10-31T05:42:08.6467530Z LD [M] sound/soc/codecs/snd-soc-cs35l36.o
2025-10-31T05:42:08.6605865Z LD [M] sound/soc/codecs/snd-soc-cs42l42.o
2025-10-31T05:42:08.6744796Z LD [M] sound/soc/codecs/snd-soc-cs42l51.o
2025-10-31T05:42:08.6875439Z LD [M] sound/soc/codecs/snd-soc-cs42l51-i2c.o
2025-10-31T05:42:08.6989647Z LD [M] sound/soc/codecs/snd-soc-cs42l52.o
2025-10-31T05:42:08.7123943Z LD [M] sound/soc/codecs/snd-soc-cs42l56.o
2025-10-31T05:42:08.7255456Z LD [M] sound/soc/codecs/snd-soc-cs42l73.o
2025-10-31T05:42:08.7383379Z LD [M] sound/soc/codecs/snd-soc-cs4234.o
2025-10-31T05:42:08.7511686Z LD [M] sound/soc/codecs/snd-soc-cs4265.o
2025-10-31T05:42:08.7629913Z LD [M] sound/soc/codecs/snd-soc-cs4270.o
2025-10-31T05:42:08.7757459Z LD [M] sound/soc/codecs/snd-soc-cs4271.o
2025-10-31T05:42:08.7834604Z CC lib/decompress_unlz4.o
2025-10-31T05:42:08.7880855Z LD [M] sound/soc/codecs/snd-soc-cs4271-i2c.o
2025-10-31T05:42:08.7991060Z LD [M] sound/soc/codecs/snd-soc-cs4271-spi.o
2025-10-31T05:42:08.8113880Z LD [M] sound/soc/codecs/snd-soc-cs42xx8.o
2025-10-31T05:42:08.8257041Z LD [M] sound/soc/codecs/snd-soc-cs42xx8-i2c.o
2025-10-31T05:42:08.8373908Z LD [M] sound/soc/codecs/snd-soc-cs43130.o
2025-10-31T05:42:08.8529391Z LD [M] sound/soc/codecs/snd-soc-cs4341.o
2025-10-31T05:42:08.8661284Z LD [M] sound/soc/codecs/snd-soc-cs4349.o
2025-10-31T05:42:08.8800561Z LD [M] sound/soc/codecs/snd-soc-cs53l30.o
2025-10-31T05:42:08.8948573Z LD [M] sound/soc/codecs/snd-soc-cx2072x.o
2025-10-31T05:42:08.9098795Z LD [M] sound/soc/codecs/snd-soc-da7213.o
2025-10-31T05:42:08.9247808Z LD [M] sound/soc/codecs/snd-soc-da7219.o
2025-10-31T05:42:08.9438462Z LD [M] sound/soc/codecs/snd-soc-dmic.o
2025-10-31T05:42:08.9570784Z LD [M] sound/soc/codecs/snd-soc-es7134.o
2025-10-31T05:42:08.9702486Z LD [M] sound/soc/codecs/snd-soc-es7241.o
2025-10-31T05:42:08.9835038Z LD [M] sound/soc/codecs/snd-soc-es8316.o
2025-10-31T05:42:09.0061103Z LD [M] sound/soc/codecs/snd-soc-es8328.o
2025-10-31T05:42:09.0291517Z LD [M] sound/soc/codecs/snd-soc-es8328-i2c.o
2025-10-31T05:42:09.0574833Z LD [M] sound/soc/codecs/snd-soc-es8328-spi.o
2025-10-31T05:42:09.0852398Z LD [M] sound/soc/codecs/snd-soc-gtm601.o
2025-10-31T05:42:09.1096416Z LD [M] sound/soc/codecs/snd-soc-hdac-hdmi.o
2025-10-31T05:42:09.1321077Z LD [M] sound/soc/codecs/snd-soc-hdac-hda.o
2025-10-31T05:42:09.1538452Z LD [M] sound/soc/codecs/snd-soc-inno-rk3036.o
2025-10-31T05:42:09.1582939Z CC [M] fs/afs/callback.o
2025-10-31T05:42:09.1780223Z LD [M] sound/soc/codecs/snd-soc-max9759.o
2025-10-31T05:42:09.1961643Z LD [M] sound/soc/codecs/snd-soc-max98088.o
2025-10-31T05:42:09.1994727Z CC [M] drivers/tty/rocket.o
2025-10-31T05:42:09.2110398Z LD [M] sound/soc/codecs/snd-soc-max98090.o
2025-10-31T05:42:09.2302416Z LD [M] sound/soc/codecs/snd-soc-max98357a.o
2025-10-31T05:42:09.2485458Z LD [M] sound/soc/codecs/snd-soc-max9867.o
2025-10-31T05:42:09.2491796Z CC lib/decompress_unlzma.o
2025-10-31T05:42:09.2762699Z LD [M] sound/soc/codecs/snd-soc-max98927.o
2025-10-31T05:42:09.3032999Z LD [M] sound/soc/codecs/snd-soc-max98373.o
2025-10-31T05:42:09.3313827Z LD [M] sound/soc/codecs/snd-soc-max98373-i2c.o
2025-10-31T05:42:09.3583383Z LD [M] sound/soc/codecs/snd-soc-max98373-sdw.o
2025-10-31T05:42:09.3820374Z LD [M] sound/soc/codecs/snd-soc-max98390.o
2025-10-31T05:42:09.4064035Z LD [M] sound/soc/codecs/snd-soc-max9860.o
2025-10-31T05:42:09.4313719Z LD [M] sound/soc/codecs/snd-soc-msm8916-digital.o
2025-10-31T05:42:09.4594863Z LD [M] sound/soc/codecs/snd-soc-mt6351.o
2025-10-31T05:42:09.4902940Z LD [M] sound/soc/codecs/snd-soc-mt6358.o
2025-10-31T05:42:09.5214274Z LD [M] sound/soc/codecs/snd-soc-mt6660.o
2025-10-31T05:42:09.5474163Z LD [M] sound/soc/codecs/snd-soc-nau8540.o
2025-10-31T05:42:09.5681224Z LD [M] sound/soc/codecs/snd-soc-nau8810.o
2025-10-31T05:42:09.5806832Z LD [M] sound/soc/codecs/snd-soc-nau8822.o
2025-10-31T05:42:09.5936781Z LD [M] sound/soc/codecs/snd-soc-nau8824.o
2025-10-31T05:42:09.6074085Z LD [M] sound/soc/codecs/snd-soc-nau8825.o
2025-10-31T05:42:09.6373180Z LD [M] sound/soc/codecs/snd-soc-hdmi-codec.o
2025-10-31T05:42:09.6589135Z LD [M] sound/soc/codecs/snd-soc-pcm1681.o
2025-10-31T05:42:09.6711090Z LD [M] sound/soc/codecs/snd-soc-pcm179x-codec.o
2025-10-31T05:42:09.6990071Z LD [M] sound/soc/codecs/snd-soc-pcm1789-i2c.o
2025-10-31T05:42:09.7247197Z LD [M] sound/soc/codecs/snd-soc-pcm1789-codec.o
2025-10-31T05:42:09.7429143Z LD [M] sound/soc/codecs/snd-soc-pcm179x-i2c.o
2025-10-31T05:42:09.7440169Z LD [M] net/ipv6/netfilter/nf_defrag_ipv6.o
2025-10-31T05:42:09.7648764Z LD [M] sound/soc/codecs/snd-soc-pcm179x-spi.o
2025-10-31T05:42:09.7942725Z LD [M] sound/soc/codecs/snd-soc-pcm186x.o
2025-10-31T05:42:09.8263288Z LD [M] sound/soc/codecs/snd-soc-pcm186x-i2c.o
2025-10-31T05:42:09.8465404Z LD [M] sound/soc/codecs/snd-soc-pcm186x-spi.o
2025-10-31T05:42:09.8643685Z LD [M] sound/soc/codecs/snd-soc-pcm3060.o
2025-10-31T05:42:09.8828483Z LD [M] sound/soc/codecs/snd-soc-pcm3060-i2c.o
2025-10-31T05:42:09.9050113Z LD [M] sound/soc/codecs/snd-soc-pcm3060-spi.o
2025-10-31T05:42:09.9283154Z LD [M] sound/soc/codecs/snd-soc-pcm3168a.o
2025-10-31T05:42:09.9554776Z LD [M] sound/soc/codecs/snd-soc-pcm3168a-i2c.o
2025-10-31T05:42:09.9798209Z LD [M] sound/soc/codecs/snd-soc-pcm3168a-spi.o
2025-10-31T05:42:10.0030154Z LD [M] sound/soc/codecs/snd-soc-pcm512x.o
2025-10-31T05:42:10.0040031Z CC [M] net/ipv6/ila/ila_main.o
2025-10-31T05:42:10.0325901Z LD [M] sound/soc/codecs/snd-soc-pcm512x-i2c.o
2025-10-31T05:42:10.0516143Z LD [M] sound/soc/codecs/snd-soc-pcm512x-spi.o
2025-10-31T05:42:10.0664947Z LD [M] sound/soc/codecs/snd-soc-rk3328.o
2025-10-31T05:42:10.0908793Z LD [M] sound/soc/codecs/snd-soc-rl6231.o
2025-10-31T05:42:10.0962724Z CC lib/decompress_unlzo.o
2025-10-31T05:42:10.1116450Z LD [M] sound/soc/codecs/snd-soc-rl6347a.o
2025-10-31T05:42:10.1306298Z LD [M] sound/soc/codecs/snd-soc-rt1011.o
2025-10-31T05:42:10.1595447Z LD [M] sound/soc/codecs/snd-soc-rt1015.o
2025-10-31T05:42:10.1863404Z LD [M] sound/soc/codecs/snd-soc-rt1308.o
2025-10-31T05:42:10.2130328Z LD [M] sound/soc/codecs/snd-soc-rt1308-sdw.o
2025-10-31T05:42:10.2399263Z LD [M] sound/soc/codecs/snd-soc-rt286.o
2025-10-31T05:42:10.2677504Z LD [M] sound/soc/codecs/snd-soc-rt298.o
2025-10-31T05:42:10.2843099Z LD [M] sound/soc/codecs/snd-soc-rt5514.o
2025-10-31T05:42:10.2987812Z LD [M] sound/soc/codecs/snd-soc-rt5514-spi.o
2025-10-31T05:42:10.3125820Z LD [M] sound/soc/codecs/snd-soc-rt5616.o
2025-10-31T05:42:10.3292356Z LD [M] sound/soc/codecs/snd-soc-rt5631.o
2025-10-31T05:42:10.3357386Z CC [M] fs/afs/cell.o
2025-10-31T05:42:10.3465444Z LD [M] sound/soc/codecs/snd-soc-rt5640.o
2025-10-31T05:42:10.3750601Z LD [M] sound/soc/codecs/snd-soc-rt5645.o
2025-10-31T05:42:10.4022545Z LD [M] sound/soc/codecs/snd-soc-rt5651.o
2025-10-31T05:42:10.4334911Z LD [M] sound/soc/codecs/snd-soc-rt5660.o
2025-10-31T05:42:10.4613796Z LD [M] sound/soc/codecs/snd-soc-rt5663.o
2025-10-31T05:42:10.4899473Z LD [M] sound/soc/codecs/snd-soc-rt5670.o
2025-10-31T05:42:10.5213765Z LD [M] sound/soc/codecs/snd-soc-rt5677.o
2025-10-31T05:42:10.5479033Z LD [M] sound/soc/codecs/snd-soc-rt5677-spi.o
2025-10-31T05:42:10.5759364Z LD [M] sound/soc/codecs/snd-soc-rt5682.o
2025-10-31T05:42:10.6069729Z LD [M] sound/soc/codecs/snd-soc-rt5682-i2c.o
2025-10-31T05:42:10.6336957Z LD [M] sound/soc/codecs/snd-soc-rt5682-sdw.o
2025-10-31T05:42:10.6577636Z LD [M] sound/soc/codecs/snd-soc-rt700.o
2025-10-31T05:42:10.6887461Z LD [M] sound/soc/codecs/snd-soc-rt711.o
2025-10-31T05:42:10.7006399Z CC lib/decompress_unxz.o
2025-10-31T05:42:10.7141434Z LD [M] sound/soc/codecs/snd-soc-rt715.o
2025-10-31T05:42:10.7494814Z LD [M] sound/soc/codecs/snd-soc-sgtl5000.o
2025-10-31T05:42:10.7760371Z LD [M] sound/soc/codecs/snd-soc-sigmadsp.o
2025-10-31T05:42:10.8050347Z LD [M] sound/soc/codecs/snd-soc-sigmadsp-i2c.o
2025-10-31T05:42:10.8289188Z LD [M] sound/soc/codecs/snd-soc-sigmadsp-regmap.o
2025-10-31T05:42:10.8536961Z LD [M] sound/soc/codecs/snd-soc-si476x.o
2025-10-31T05:42:10.8769796Z LD [M] sound/soc/codecs/snd-soc-spdif-rx.o
2025-10-31T05:42:10.9035030Z LD [M] sound/soc/codecs/snd-soc-spdif-tx.o
2025-10-31T05:42:10.9227252Z LD [M] sound/soc/codecs/snd-soc-ssm2305.o
2025-10-31T05:42:10.9461474Z LD [M] sound/soc/codecs/snd-soc-ssm2602.o
2025-10-31T05:42:10.9730386Z LD [M] sound/soc/codecs/snd-soc-ssm2602-spi.o
2025-10-31T05:42:10.9929868Z LD [M] sound/soc/codecs/snd-soc-ssm2602-i2c.o
2025-10-31T05:42:11.0145179Z LD [M] sound/soc/codecs/snd-soc-ssm4567.o
2025-10-31T05:42:11.0368945Z LD [M] sound/soc/codecs/snd-soc-sta32x.o
2025-10-31T05:42:11.0693433Z LD [M] sound/soc/codecs/snd-soc-sta350.o
2025-10-31T05:42:11.0694904Z CC [M] net/ipv6/ila/ila_common.o
2025-10-31T05:42:11.0957291Z LD [M] sound/soc/codecs/snd-soc-sti-sas.o
2025-10-31T05:42:11.1177027Z LD [M] sound/soc/codecs/snd-soc-tas2552.o
2025-10-31T05:42:11.1416256Z LD [M] sound/soc/codecs/snd-soc-tas2562.o
2025-10-31T05:42:11.1735472Z LD [M] sound/soc/codecs/snd-soc-tas2764.o
2025-10-31T05:42:11.1958588Z LD [M] sound/soc/codecs/snd-soc-tas5086.o
2025-10-31T05:42:11.2076009Z CC lib/decompress_unzstd.o
2025-10-31T05:42:11.2219295Z LD [M] sound/soc/codecs/snd-soc-tas571x.o
2025-10-31T05:42:11.2479313Z LD [M] sound/soc/codecs/snd-soc-tas5720.o
2025-10-31T05:42:11.2738180Z LD [M] sound/soc/codecs/snd-soc-tas6424.o
2025-10-31T05:42:11.2891344Z LD [M] sound/soc/codecs/snd-soc-tda7419.o
2025-10-31T05:42:11.3092371Z LD [M] sound/soc/codecs/snd-soc-tas2770.o
2025-10-31T05:42:11.3362273Z LD [M] sound/soc/codecs/snd-soc-tfa9879.o
2025-10-31T05:42:11.3538530Z CC [M] drivers/tty/synclink_gt.o
2025-10-31T05:42:11.3574046Z LD [M] sound/soc/codecs/snd-soc-tlv320aic23.o
2025-10-31T05:42:11.3842355Z LD [M] sound/soc/codecs/snd-soc-tlv320aic23-i2c.o
2025-10-31T05:42:11.4078863Z LD [M] sound/soc/codecs/snd-soc-tlv320aic23-spi.o
2025-10-31T05:42:11.4319920Z LD [M] sound/soc/codecs/snd-soc-tlv320aic31xx.o
2025-10-31T05:42:11.4630324Z LD [M] sound/soc/codecs/snd-soc-tlv320aic32x4.o
2025-10-31T05:42:11.4909875Z LD [M] sound/soc/codecs/snd-soc-tlv320aic32x4-i2c.o
2025-10-31T05:42:11.5163605Z LD [M] sound/soc/codecs/snd-soc-tlv320aic32x4-spi.o
2025-10-31T05:42:11.5431899Z LD [M] sound/soc/codecs/snd-soc-tlv320aic3x.o
2025-10-31T05:42:11.5743433Z LD [M] sound/soc/codecs/snd-soc-tlv320adcx140.o
2025-10-31T05:42:11.6043702Z LD [M] sound/soc/codecs/snd-soc-tscs42xx.o
2025-10-31T05:42:11.6325387Z LD [M] sound/soc/codecs/snd-soc-tscs454.o
2025-10-31T05:42:11.6597949Z LD [M] sound/soc/codecs/snd-soc-ts3a227e.o
2025-10-31T05:42:11.6816637Z LD [M] sound/soc/codecs/snd-soc-uda1334.o
2025-10-31T05:42:11.6979063Z LD [M] sound/soc/codecs/snd-soc-wcd9335.o
2025-10-31T05:42:11.7173720Z CC lib/dump_stack.o
2025-10-31T05:42:11.7223058Z LD [M] sound/soc/codecs/snd-soc-wcd934x.o
2025-10-31T05:42:11.7529908Z LD [M] sound/soc/codecs/snd-soc-wm8510.o
2025-10-31T05:42:11.7782555Z LD [M] sound/soc/codecs/snd-soc-wm8523.o
2025-10-31T05:42:11.8043805Z LD [M] sound/soc/codecs/snd-soc-wm8524.o
2025-10-31T05:42:11.8233857Z LD [M] sound/soc/codecs/snd-soc-wm8580.o
2025-10-31T05:42:11.8509916Z LD [M] sound/soc/codecs/snd-soc-wm8711.o
2025-10-31T05:42:11.8722853Z CC [M] fs/afs/cmservice.o
2025-10-31T05:42:11.8757530Z LD [M] sound/soc/codecs/snd-soc-wm8728.o
2025-10-31T05:42:11.9009569Z LD [M] sound/soc/codecs/snd-soc-wm8731.o
2025-10-31T05:42:11.9283575Z LD [M] sound/soc/codecs/snd-soc-wm8737.o
2025-10-31T05:42:11.9580649Z LD [M] sound/soc/codecs/snd-soc-wm8741.o
2025-10-31T05:42:11.9860489Z LD [M] sound/soc/codecs/snd-soc-wm8750.o
2025-10-31T05:42:12.0080816Z LD [M] sound/soc/codecs/snd-soc-wm8753.o
2025-10-31T05:42:12.0278601Z LD [M] sound/soc/codecs/snd-soc-wm8770.o
2025-10-31T05:42:12.0551408Z LD [M] sound/soc/codecs/snd-soc-wm8776.o
2025-10-31T05:42:12.0853365Z LD [M] sound/soc/codecs/snd-soc-wm8782.o
2025-10-31T05:42:12.1048253Z LD [M] sound/soc/codecs/snd-soc-wm8804.o
2025-10-31T05:42:12.1320518Z LD [M] sound/soc/codecs/snd-soc-wm8804-i2c.o
2025-10-31T05:42:12.1569825Z LD [M] sound/soc/codecs/snd-soc-wm8804-spi.o
2025-10-31T05:42:12.1780828Z LD [M] sound/soc/codecs/snd-soc-wm8903.o
2025-10-31T05:42:12.2034458Z LD [M] sound/soc/codecs/snd-soc-wm8904.o
2025-10-31T05:42:12.2310053Z LD [M] sound/soc/codecs/snd-soc-wm8960.o
2025-10-31T05:42:12.2604409Z LD [M] sound/soc/codecs/snd-soc-wm8962.o
2025-10-31T05:42:12.2605593Z CC [M] net/ipv6/ila/ila_lwt.o
2025-10-31T05:42:12.2780825Z LD [M] sound/soc/codecs/snd-soc-wm8974.o
2025-10-31T05:42:12.2919780Z LD [M] sound/soc/codecs/snd-soc-wm8978.o
2025-10-31T05:42:12.3083599Z LD [M] sound/soc/codecs/snd-soc-wm8985.o
2025-10-31T05:42:12.3144385Z CC lib/earlycpio.o
2025-10-31T05:42:12.3351434Z LD [M] sound/soc/codecs/snd-soc-wsa881x.o
2025-10-31T05:42:12.3569880Z LD [M] sound/soc/codecs/snd-soc-zl38060.o
2025-10-31T05:42:12.3857924Z LD [M] sound/soc/codecs/snd-soc-zx-aud96p22.o
2025-10-31T05:42:12.4130223Z LD [M] sound/soc/codecs/snd-soc-max98504.o
2025-10-31T05:42:12.4407244Z LD [M] sound/soc/codecs/snd-soc-simple-amplifier.o
2025-10-31T05:42:12.4671145Z LD [M] sound/soc/codecs/snd-soc-tpa6130a2.o
2025-10-31T05:42:12.5167015Z CC lib/extable.o
2025-10-31T05:42:13.1134685Z CC lib/flex_proportions.o
2025-10-31T05:42:13.3774981Z CC [M] fs/afs/dir.o
2025-10-31T05:42:13.5556075Z CC lib/idr.o
2025-10-31T05:42:13.6355010Z CC [M] net/ipv6/ila/ila_xlat.o
2025-10-31T05:42:13.6629176Z CC [M] sound/soc/generic/simple-card-utils.o
2025-10-31T05:42:14.2209605Z CC lib/irq_regs.o
2025-10-31T05:42:14.4508993Z CC lib/is_single_threaded.o
2025-10-31T05:42:14.4542325Z CC [M] drivers/tty/synclinkmp.o
2025-10-31T05:42:14.6383597Z CC [M] sound/soc/generic/simple-card.o
2025-10-31T05:42:14.9203064Z CC lib/klist.o
2025-10-31T05:42:15.4093794Z LD [M] sound/soc/generic/snd-soc-simple-card-utils.o
2025-10-31T05:42:15.4250828Z LD [M] sound/soc/generic/snd-soc-simple-card.o
2025-10-31T05:42:15.4617692Z CC [M] fs/afs/dir_edit.o
2025-10-31T05:42:15.5417654Z CC [M] sound/soc/amd/raven/pci-acp3x.o
2025-10-31T05:42:15.5457531Z CC lib/kobject.o
2025-10-31T05:42:15.5727537Z LD [M] net/ipv6/ila/ila.o
2025-10-31T05:42:15.6537662Z CC net/ipv6/af_inet6.o
2025-10-31T05:42:16.4273850Z CC [M] sound/soc/amd/raven/acp3x-pcm-dma.o
2025-10-31T05:42:16.4535173Z CC lib/kobject_uevent.o
2025-10-31T05:42:17.0642686Z CC [M] fs/afs/dir_silly.o
2025-10-31T05:42:17.3751820Z CC [M] sound/soc/amd/raven/acp3x-i2s.o
2025-10-31T05:42:17.7057982Z CC lib/logic_pio.o
2025-10-31T05:42:17.7434153Z CC net/ipv6/anycast.o
2025-10-31T05:42:17.8579405Z CC [M] drivers/tty/synclink.o
2025-10-31T05:42:18.1748056Z CC [M] fs/afs/dynroot.o
2025-10-31T05:42:18.2361473Z LD [M] sound/soc/amd/raven/snd-pci-acp3x.o
2025-10-31T05:42:18.2592842Z LD [M] sound/soc/amd/raven/snd-acp3x-pcm-dma.o
2025-10-31T05:42:18.2860244Z LD [M] sound/soc/amd/raven/snd-acp3x-i2s.o
2025-10-31T05:42:18.3818157Z CC [M] sound/soc/amd/renoir/rn-pci-acp3x.o
2025-10-31T05:42:18.3907871Z CC lib/memcat_p.o
2025-10-31T05:42:18.7833596Z CC lib/memneq.o
2025-10-31T05:42:19.1632373Z CC lib/nmi_backtrace.o
2025-10-31T05:42:19.2885526Z CC [M] sound/soc/amd/renoir/acp3x-pdm-dma.o
2025-10-31T05:42:19.2924602Z CC net/ipv6/ip6_output.o
2025-10-31T05:42:19.4198903Z CC [M] fs/afs/file.o
2025-10-31T05:42:19.9681625Z CC lib/nodemask.o
2025-10-31T05:42:20.3091079Z CC [M] sound/soc/amd/renoir/acp3x-rn.o
2025-10-31T05:42:20.3735573Z CC lib/plist.o
2025-10-31T05:42:20.6736423Z CC lib/radix-tree.o
2025-10-31T05:42:21.0388988Z LD [M] sound/soc/amd/renoir/snd-rn-pci-acp3x.o
2025-10-31T05:42:21.0521810Z LD [M] sound/soc/amd/renoir/snd-acp3x-pdm-dma.o
2025-10-31T05:42:21.0660445Z LD [M] sound/soc/amd/renoir/snd-acp3x-rn.o
2025-10-31T05:42:21.1049292Z CC [M] sound/soc/amd/acp-pcm-dma.o
2025-10-31T05:42:21.2228990Z CC [M] fs/afs/flock.o
2025-10-31T05:42:21.3168070Z AR drivers/tty/built-in.a
2025-10-31T05:42:21.5543377Z AR drivers/char/agp/built-in.a
2025-10-31T05:42:21.5796174Z CC [M] drivers/char/agp/backend.o
2025-10-31T05:42:22.0075028Z CC lib/ratelimit.o
2025-10-31T05:42:22.1079682Z CC net/ipv6/ip6_input.o
2025-10-31T05:42:22.1837255Z CC [M] sound/soc/amd/acp-da7219-max98357a.o
2025-10-31T05:42:22.3785681Z CC lib/rbtree.o
2025-10-31T05:42:22.5202735Z CC [M] drivers/char/agp/frontend.o
2025-10-31T05:42:22.8725068Z CC [M] fs/afs/fsclient.o
2025-10-31T05:42:22.8962786Z CC lib/seq_buf.o
2025-10-31T05:42:23.0891259Z CC [M] sound/soc/amd/acp-rt5645.o
2025-10-31T05:42:23.5937753Z CC lib/sha1.o
2025-10-31T05:42:23.7621289Z CC [M] drivers/char/agp/generic.o
2025-10-31T05:42:23.7626865Z CC lib/show_mem.o
2025-10-31T05:42:23.8404425Z CC [M] sound/soc/amd/acp3x-rt5682-max9836.o
2025-10-31T05:42:24.2485267Z CC net/ipv6/addrconf.o
2025-10-31T05:42:24.3099282Z CC lib/siphash.o
2025-10-31T05:42:24.8086192Z LD [M] sound/soc/amd/acp_audio_dma.o
2025-10-31T05:42:24.8216723Z LD [M] sound/soc/amd/snd-soc-acp-da7219mx98357-mach.o
2025-10-31T05:42:24.8339994Z LD [M] sound/soc/amd/snd-soc-acp-rt5645-mach.o
2025-10-31T05:42:24.8455820Z LD [M] sound/soc/amd/snd-soc-acp-rt5682-mach.o
2025-10-31T05:42:25.0073558Z CC [M] fs/afs/fs_operation.o
2025-10-31T05:42:25.0569900Z CC lib/string.o
2025-10-31T05:42:25.1251392Z CC [M] sound/soc/dwc/dwc-i2s.o
2025-10-31T05:42:25.1616408Z CC [M] drivers/char/agp/isoch.o
2025-10-31T05:42:25.7966134Z CC lib/timerqueue.o
2025-10-31T05:42:25.9975301Z CC [M] drivers/char/agp/compat_ioctl.o
2025-10-31T05:42:26.0854707Z CC lib/vsprintf.o
2025-10-31T05:42:26.2744833Z CC [M] sound/soc/dwc/dwc-pcm.o
2025-10-31T05:42:26.2779618Z CC [M] fs/afs/fs_probe.o
2025-10-31T05:42:26.7838422Z CC [M] drivers/char/agp/amd64-agp.o
2025-10-31T05:42:27.2192484Z LD [M] sound/soc/dwc/designware_i2s.o
2025-10-31T05:42:27.3584745Z CC [M] sound/soc/hisilicon/hi6210-i2s.o
2025-10-31T05:42:27.6086519Z CC [M] drivers/char/agp/intel-agp.o
2025-10-31T05:42:27.9334279Z CC [M] fs/afs/inode.o
2025-10-31T05:42:28.4458039Z CC [M] sound/soc/img/img-i2s-in.o
2025-10-31T05:42:28.5055953Z CC [M] drivers/char/agp/intel-gtt.o
2025-10-31T05:42:29.2881859Z CC lib/win_minmax.o
2025-10-31T05:42:29.3075513Z CC [M] sound/soc/img/img-i2s-out.o
2025-10-31T05:42:29.4597885Z CC [M] fs/afs/main.o
2025-10-31T05:42:29.6299456Z CC lib/xarray.o
2025-10-31T05:42:29.7500186Z CC net/ipv6/addrlabel.o
2025-10-31T05:42:29.8248191Z CC [M] drivers/char/agp/sis-agp.o
2025-10-31T05:42:30.1403569Z CC [M] sound/soc/img/img-parallel-out.o
2025-10-31T05:42:30.4186837Z CC [M] drivers/char/agp/via-agp.o
2025-10-31T05:42:30.9748767Z CC [M] sound/soc/img/img-spdif-in.o
2025-10-31T05:42:31.1295679Z LD [M] drivers/char/agp/agpgart.o
2025-10-31T05:42:31.2803684Z CC [M] drivers/char/hw_random/core.o
2025-10-31T05:42:31.3404716Z CC net/ipv6/route.o
2025-10-31T05:42:31.4056642Z CC lib/lockref.o
2025-10-31T05:42:31.7083729Z CC lib/bcd.o
2025-10-31T05:42:31.7873972Z CC lib/sort.o
2025-10-31T05:42:31.9275717Z CC lib/parser.o
2025-10-31T05:42:32.1724927Z CC [M] sound/soc/img/img-spdif-out.o
2025-10-31T05:42:32.2926504Z CC lib/debug_locks.o
2025-10-31T05:42:32.4055049Z CC [M] drivers/char/hw_random/timeriomem-rng.o
2025-10-31T05:42:32.4425300Z CC [M] fs/afs/misc.o
2025-10-31T05:42:32.5320134Z CC lib/random32.o
2025-10-31T05:42:32.9705853Z CC [M] drivers/char/hw_random/intel-rng.o
2025-10-31T05:42:33.0489935Z CC lib/bust_spinlocks.o
2025-10-31T05:42:33.1943598Z CC [M] sound/soc/img/pistachio-internal-dac.o
2025-10-31T05:42:33.6426447Z CC [M] fs/afs/mntpt.o
2025-10-31T05:42:33.6704613Z CC lib/kasprintf.o
2025-10-31T05:42:33.7508689Z CC [M] drivers/char/hw_random/amd-rng.o
2025-10-31T05:42:33.9537520Z CC lib/bitmap.o
2025-10-31T05:42:34.2270790Z CC [M] sound/soc/intel/common/sst-dsp.o
2025-10-31T05:42:34.6443701Z CC [M] drivers/char/hw_random/ba431-rng.o
2025-10-31T05:42:34.9028838Z CC [M] fs/afs/rotate.o
2025-10-31T05:42:35.2844839Z CC lib/scatterlist.o
2025-10-31T05:42:35.2907943Z CC [M] drivers/char/hw_random/via-rng.o
2025-10-31T05:42:35.3543856Z CC [M] sound/soc/intel/common/sst-ipc.o
2025-10-31T05:42:35.8693310Z CC [M] drivers/char/hw_random/virtio-rng.o
2025-10-31T05:42:36.0110640Z CC [M] sound/soc/intel/common/soc-acpi-intel-byt-match.o
2025-10-31T05:42:36.2714962Z CC [M] fs/afs/rxrpc.o
2025-10-31T05:42:36.3951393Z CC [M] sound/soc/intel/common/soc-acpi-intel-cht-match.o
2025-10-31T05:42:36.6169145Z CC net/ipv6/ip6_fib.o
2025-10-31T05:42:36.7185349Z CC lib/list_sort.o
2025-10-31T05:42:36.7264220Z CC [M] drivers/char/hw_random/xiphera-trng.o
2025-10-31T05:42:36.7739524Z CC [M] sound/soc/intel/common/soc-acpi-intel-hsw-bdw-match.o
2025-10-31T05:42:36.9409983Z CC lib/uuid.o
2025-10-31T05:42:37.1823608Z CC lib/iov_iter.o
2025-10-31T05:42:37.2221731Z LD [M] drivers/char/hw_random/rng-core.o
2025-10-31T05:42:37.2622386Z CC [M] sound/soc/intel/common/soc-acpi-intel-skl-match.o
2025-10-31T05:42:37.3486556Z CC [M] drivers/char/mwave/mwavedd.o
2025-10-31T05:42:37.8516729Z CC [M] sound/soc/intel/common/soc-acpi-intel-kbl-match.o
2025-10-31T05:42:38.2306972Z CC [M] fs/afs/security.o
2025-10-31T05:42:38.3181299Z CC [M] drivers/char/mwave/smapi.o
2025-10-31T05:42:38.4835622Z CC [M] sound/soc/intel/common/soc-acpi-intel-bxt-match.o
2025-10-31T05:42:38.9268101Z CC [M] sound/soc/intel/common/soc-acpi-intel-glk-match.o
2025-10-31T05:42:39.1470045Z CC net/ipv6/ipv6_sockglue.o
2025-10-31T05:42:39.1794823Z CC [M] drivers/char/mwave/tp3780i.o
2025-10-31T05:42:39.3251078Z CC [M] sound/soc/intel/common/soc-acpi-intel-cnl-match.o
2025-10-31T05:42:39.7521711Z CC [M] fs/afs/server.o
2025-10-31T05:42:40.0759670Z CC [M] sound/soc/intel/common/soc-acpi-intel-cfl-match.o
2025-10-31T05:42:40.1378171Z CC [M] drivers/char/mwave/3780i.o
2025-10-31T05:42:40.4728427Z CC [M] sound/soc/intel/common/soc-acpi-intel-cml-match.o
2025-10-31T05:42:40.6998581Z CC lib/clz_ctz.o
2025-10-31T05:42:40.7907880Z LD [M] drivers/char/mwave/mwave.o
2025-10-31T05:42:40.8378247Z CC lib/bsearch.o
2025-10-31T05:42:40.8628441Z CC [M] drivers/char/pcmcia/synclink_cs.o
2025-10-31T05:42:40.8727796Z CC [M] sound/soc/intel/common/soc-acpi-intel-icl-match.o
2025-10-31T05:42:41.1488017Z CC net/ipv6/ndisc.o
2025-10-31T05:42:41.5168656Z CC [M] fs/afs/server_list.o
2025-10-31T05:42:41.5289902Z CC [M] sound/soc/intel/common/soc-acpi-intel-tgl-match.o
2025-10-31T05:42:41.5999126Z CC lib/find_bit.o
2025-10-31T05:42:41.8705978Z CC lib/llist.o
2025-10-31T05:42:41.9670591Z CC [M] sound/soc/intel/common/soc-acpi-intel-ehl-match.o
2025-10-31T05:42:42.1188095Z CC lib/memweight.o
2025-10-31T05:42:42.3751375Z CC lib/kfifo.o
2025-10-31T05:42:42.8045995Z CC [M] fs/afs/super.o
2025-10-31T05:42:42.8724323Z CC [M] sound/soc/intel/common/soc-acpi-intel-jsl-match.o
2025-10-31T05:42:43.3216188Z CC [M] sound/soc/intel/common/soc-acpi-intel-hda-match.o
2025-10-31T05:42:43.4042794Z CC lib/percpu-refcount.o
2025-10-31T05:42:43.4164028Z CC [M] drivers/char/pcmcia/cm4000_cs.o
2025-10-31T05:42:43.4989481Z CC net/ipv6/udp.o
2025-10-31T05:42:43.8953729Z CC lib/rhashtable.o
2025-10-31T05:42:44.0770728Z LD [M] sound/soc/intel/common/snd-soc-sst-dsp.o
2025-10-31T05:42:44.1034097Z LD [M] sound/soc/intel/common/snd-soc-sst-ipc.o
2025-10-31T05:42:44.1249482Z LD [M] sound/soc/intel/common/snd-soc-acpi-intel-match.o
2025-10-31T05:42:44.2040378Z CC [M] fs/afs/vlclient.o
2025-10-31T05:42:44.2363423Z CC [M] sound/soc/intel/atom/sst/sst.o
2025-10-31T05:42:45.1621483Z CC [M] sound/soc/intel/atom/sst/sst_ipc.o
2025-10-31T05:42:45.5237511Z CC [M] drivers/char/pcmcia/cm4040_cs.o
2025-10-31T05:42:45.5376673Z CC lib/once.o
2025-10-31T05:42:45.8800803Z CC [M] fs/afs/vl_alias.o
2025-10-31T05:42:45.9868934Z CC [M] sound/soc/intel/atom/sst/sst_stream.o
2025-10-31T05:42:46.0751098Z CC lib/refcount.o
2025-10-31T05:42:46.2178359Z CC net/ipv6/udplite.o
2025-10-31T05:42:46.4728333Z CC lib/usercopy.o
2025-10-31T05:42:46.5593554Z CC [M] drivers/char/pcmcia/scr24x_cs.o
2025-10-31T05:42:46.7447371Z CC [M] sound/soc/intel/atom/sst/sst_drv_interface.o
2025-10-31T05:42:46.9493305Z CC lib/errseq.o
2025-10-31T05:42:47.0512463Z CC [M] fs/afs/vl_list.o
2025-10-31T05:42:47.2594451Z CC lib/bucket_locks.o
2025-10-31T05:42:47.5285804Z CC net/ipv6/raw.o
2025-10-31T05:42:47.5515406Z CC [M] sound/soc/intel/atom/sst/sst_loader.o
2025-10-31T05:42:47.6703437Z CC [M] drivers/char/tpm/st33zp24/st33zp24.o
2025-10-31T05:42:47.9804108Z CC lib/generic-radix-tree.o
2025-10-31T05:42:48.2075014Z CC [M] fs/afs/vl_probe.o
2025-10-31T05:42:48.5755636Z CC [M] sound/soc/intel/atom/sst/sst_pvt.o
2025-10-31T05:42:48.7185380Z CC [M] drivers/char/tpm/st33zp24/i2c.o
2025-10-31T05:42:49.0444285Z CC lib/string_helpers.o
2025-10-31T05:42:49.4145172Z CC [M] fs/afs/vl_rotate.o
2025-10-31T05:42:49.4592236Z CC net/ipv6/icmp.o
2025-10-31T05:42:49.5325083Z CC [M] sound/soc/intel/atom/sst/sst_pci.o
2025-10-31T05:42:49.5648827Z CC [M] drivers/char/tpm/st33zp24/spi.o
2025-10-31T05:42:50.1314348Z CC lib/hexdump.o
2025-10-31T05:42:50.2777269Z CC [M] sound/soc/intel/atom/sst/sst_acpi.o
2025-10-31T05:42:50.3914975Z LD [M] drivers/char/tpm/st33zp24/tpm_st33zp24.o
2025-10-31T05:42:50.4171529Z LD [M] drivers/char/tpm/st33zp24/tpm_st33zp24_i2c.o
2025-10-31T05:42:50.4360377Z LD [M] drivers/char/tpm/st33zp24/tpm_st33zp24_spi.o
2025-10-31T05:42:50.4571324Z CC lib/kstrtox.o
2025-10-31T05:42:50.4975379Z CC [M] drivers/char/tpm/tpm-chip.o
2025-10-31T05:42:50.8285196Z CC [M] fs/afs/volume.o
2025-10-31T05:42:51.0710639Z LD [M] sound/soc/intel/atom/sst/snd-intel-sst-core.o
2025-10-31T05:42:51.0977293Z LD [M] sound/soc/intel/atom/sst/snd-intel-sst-pci.o
2025-10-31T05:42:51.1044819Z CC lib/test-kstrtox.o
2025-10-31T05:42:51.1152748Z LD [M] sound/soc/intel/atom/sst/snd-intel-sst-acpi.o
2025-10-31T05:42:51.1975237Z CC [M] sound/soc/intel/atom/sst-mfld-platform-pcm.o
2025-10-31T05:42:51.3803306Z CC [M] drivers/char/tpm/tpm-dev-common.o
2025-10-31T05:42:51.4474993Z CC net/ipv6/mcast.o
2025-10-31T05:42:51.6209514Z CC lib/iomap.o
2025-10-31T05:42:52.1139416Z CC [M] sound/soc/intel/atom/sst-mfld-platform-compress.o
2025-10-31T05:42:52.2083131Z CC [M] fs/afs/write.o
2025-10-31T05:42:52.2424846Z CC [M] drivers/char/tpm/tpm-dev.o
2025-10-31T05:42:52.5459055Z CC lib/pci_iomap.o
2025-10-31T05:42:53.0172921Z CC [M] drivers/char/tpm/tpm-interface.o
2025-10-31T05:42:53.1772246Z CC lib/iomap_copy.o
2025-10-31T05:42:53.1863176Z CC [M] sound/soc/intel/atom/sst-atom-controls.o
2025-10-31T05:42:53.4310353Z CC lib/devres.o
2025-10-31T05:42:54.0001846Z CC [M] drivers/char/tpm/tpm1-cmd.o
2025-10-31T05:42:54.2497195Z CC [M] fs/afs/xattr.o
2025-10-31T05:42:54.3720155Z CC lib/check_signature.o
2025-10-31T05:42:54.5858224Z LD [M] sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.o
2025-10-31T05:42:54.6312582Z CC lib/btree.o
2025-10-31T05:42:54.6410878Z CC [M] sound/soc/intel/catpt/device.o
2025-10-31T05:42:54.6605025Z CC net/ipv6/reassembly.o
2025-10-31T05:42:54.8985644Z CC [M] drivers/char/tpm/tpm2-cmd.o
2025-10-31T05:42:55.5556687Z CC [M] fs/afs/yfsclient.o
2025-10-31T05:42:55.8234002Z CC lib/interval_tree.o
2025-10-31T05:42:55.8935057Z CC [M] sound/soc/intel/catpt/dsp.o
2025-10-31T05:42:56.0914006Z CC [M] drivers/char/tpm/tpmrm-dev.o
2025-10-31T05:42:56.1660013Z CC net/ipv6/tcp_ipv6.o
2025-10-31T05:42:56.2028732Z CC lib/assoc_array.o
2025-10-31T05:42:56.8053250Z CC [M] drivers/char/tpm/tpm2-space.o
2025-10-31T05:42:56.9025132Z CC [M] sound/soc/intel/catpt/loader.o
2025-10-31T05:42:57.3560764Z CC lib/list_debug.o
2025-10-31T05:42:57.7097445Z CC lib/bitrev.o
2025-10-31T05:42:57.7789611Z CC [M] sound/soc/intel/catpt/ipc.o
2025-10-31T05:42:57.8740396Z CC [M] drivers/char/tpm/tpm-sysfs.o
2025-10-31T05:42:58.0577630Z CC [M] fs/afs/proc.o
2025-10-31T05:42:58.0803574Z CC lib/linear_ranges.o
2025-10-31T05:42:58.5594604Z CC lib/packing.o
2025-10-31T05:42:58.6633685Z CC [M] sound/soc/intel/catpt/messages.o
2025-10-31T05:42:58.7333692Z CC net/ipv6/ping.o
2025-10-31T05:42:58.8545122Z CC [M] drivers/char/tpm/eventlog/common.o
2025-10-31T05:42:58.9616095Z CC lib/crc-ccitt.o
2025-10-31T05:42:59.3186660Z CC lib/crc-t10dif.o
2025-10-31T05:42:59.4446697Z CC [M] sound/soc/intel/catpt/pcm.o
2025-10-31T05:42:59.5597521Z LD [M] fs/afs/kafs.o
2025-10-31T05:42:59.6353894Z CC [M] drivers/char/tpm/eventlog/tpm1.o
2025-10-31T05:42:59.7860072Z HOSTCC lib/gen_crc32table
2025-10-31T05:42:59.7869196Z CC [M] fs/nilfs2/inode.o
2025-10-31T05:42:59.9812260Z CC lib/xxhash.o
2025-10-31T05:43:00.1426672Z CC net/ipv6/exthdrs.o
2025-10-31T05:43:00.4057187Z CC [M] drivers/char/tpm/eventlog/tpm2.o
2025-10-31T05:43:00.5065623Z CC [M] sound/soc/intel/catpt/sysfs.o
2025-10-31T05:43:00.5309777Z CC lib/genalloc.o
2025-10-31T05:43:01.1613471Z CC [M] drivers/char/tpm/tpm_ppi.o
2025-10-31T05:43:01.1865182Z LD [M] sound/soc/intel/catpt/snd-soc-catpt.o
2025-10-31T05:43:01.2462881Z CC [M] sound/soc/intel/skylake/skl.o
2025-10-31T05:43:01.3655291Z CC [M] fs/nilfs2/file.o
2025-10-31T05:43:01.3936111Z CC lib/textsearch.o
2025-10-31T05:43:01.9203307Z CC lib/percpu_counter.o
2025-10-31T05:43:01.9766346Z CC [M] drivers/char/tpm/eventlog/acpi.o
2025-10-31T05:43:02.2743381Z CC [M] fs/nilfs2/dir.o
2025-10-31T05:43:02.3692537Z CC net/ipv6/datagram.o
2025-10-31T05:43:02.4605742Z CC lib/error-inject.o
2025-10-31T05:43:02.5385619Z CC [M] sound/soc/intel/skylake/skl-pcm.o
2025-10-31T05:43:02.7034476Z CC [M] drivers/char/tpm/eventlog/efi.o
2025-10-31T05:43:03.1835822Z CC lib/syscall.o
2025-10-31T05:43:03.5489608Z CC [M] drivers/char/tpm/tpm_tis_core.o
2025-10-31T05:43:03.6295501Z CC [M] fs/nilfs2/super.o
2025-10-31T05:43:03.7153720Z CC [M] sound/soc/intel/skylake/skl-nhlt.o
2025-10-31T05:43:03.8323393Z CC lib/dynamic_debug.o
2025-10-31T05:43:04.0046737Z CC net/ipv6/ip6_flowlabel.o
2025-10-31T05:43:04.5611250Z CC [M] sound/soc/intel/skylake/skl-messages.o
2025-10-31T05:43:04.9544410Z CC [M] fs/nilfs2/namei.o
2025-10-31T05:43:05.0275172Z CC [M] drivers/char/tpm/tpm_tis.o
2025-10-31T05:43:05.6399927Z CC lib/errname.o
2025-10-31T05:43:05.7391672Z CC [M] sound/soc/intel/skylake/skl-topology.o
2025-10-31T05:43:05.7503228Z CC net/ipv6/inet6_connection_sock.o
2025-10-31T05:43:05.8387518Z CC [M] drivers/char/tpm/tpm_tis_spi_main.o
2025-10-31T05:43:05.8506202Z CC lib/nlattr.o
2025-10-31T05:43:06.1441220Z CC [M] fs/nilfs2/page.o
2025-10-31T05:43:06.7102343Z CC [M] drivers/char/tpm/tpm_tis_spi_cr50.o
2025-10-31T05:43:06.8755449Z CC net/ipv6/udp_offload.o
2025-10-31T05:43:07.1480531Z CC lib/atomic64_test.o
2025-10-31T05:43:07.4884232Z CC [M] fs/nilfs2/mdt.o
2025-10-31T05:43:07.7656822Z CC [M] drivers/char/tpm/tpm_i2c_atmel.o
2025-10-31T05:43:07.9971130Z CC [M] sound/soc/intel/skylake/skl-sst-ipc.o
2025-10-31T05:43:08.0921774Z CC net/ipv6/seg6.o
2025-10-31T05:43:08.2245069Z CC lib/cpu_rmap.o
2025-10-31T05:43:08.5374253Z CC [M] drivers/char/tpm/tpm_i2c_infineon.o
2025-10-31T05:43:08.6687061Z CC lib/dynamic_queue_limits.o
2025-10-31T05:43:08.7799331Z CC [M] fs/nilfs2/btnode.o
2025-10-31T05:43:08.9895040Z CC lib/glob.o
2025-10-31T05:43:09.2444969Z CC [M] sound/soc/intel/skylake/skl-sst-dsp.o
2025-10-31T05:43:09.4542793Z CC [M] drivers/char/tpm/tpm_i2c_nuvoton.o
2025-10-31T05:43:09.4676811Z CC net/ipv6/fib6_notifier.o
2025-10-31T05:43:09.4815613Z CC lib/strncpy_from_user.o
2025-10-31T05:43:09.8222373Z CC [M] fs/nilfs2/bmap.o
2025-10-31T05:43:10.0127389Z CC [M] sound/soc/intel/skylake/cnl-sst-dsp.o
2025-10-31T05:43:10.1925777Z CC lib/strnlen_user.o
2025-10-31T05:43:10.3506799Z CC [M] drivers/char/tpm/tpm_nsc.o
2025-10-31T05:43:10.5070858Z CC [M] sound/soc/intel/skylake/skl-sst-cldma.o
2025-10-31T05:43:10.6096376Z CC net/ipv6/rpl.o
2025-10-31T05:43:10.8404358Z CC [M] fs/nilfs2/btree.o
2025-10-31T05:43:10.9243203Z CC lib/net_utils.o
2025-10-31T05:43:11.1458898Z CC [M] sound/soc/intel/skylake/skl-sst.o
2025-10-31T05:43:11.3083320Z CC [M] drivers/char/tpm/tpm_atmel.o
2025-10-31T05:43:11.5820017Z CC net/ipv6/sysctl_net_ipv6.o
2025-10-31T05:43:11.6175033Z CC lib/sg_pool.o
2025-10-31T05:43:12.1542884Z CC [M] sound/soc/intel/skylake/bxt-sst.o
2025-10-31T05:43:12.2132276Z CC [M] drivers/char/tpm/tpm_infineon.o
2025-10-31T05:43:12.2745507Z CC lib/memregion.o
2025-10-31T05:43:12.6310746Z CC lib/irq_poll.o
2025-10-31T05:43:12.6977897Z CC net/ipv6/ip6mr.o
2025-10-31T05:43:13.0333776Z CC [M] sound/soc/intel/skylake/cnl-sst.o
2025-10-31T05:43:13.1551133Z CC [M] fs/nilfs2/direct.o
2025-10-31T05:43:13.2058223Z CC [M] drivers/char/tpm/xen-tpmfront.o
2025-10-31T05:43:13.4234982Z CC lib/bootconfig.o
2025-10-31T05:43:14.0212801Z CC [M] sound/soc/intel/skylake/skl-sst-utils.o
2025-10-31T05:43:14.1155212Z CC [M] fs/nilfs2/dat.o
2025-10-31T05:43:14.1341566Z CC [M] drivers/char/tpm/tpm_crb.o
2025-10-31T05:43:14.4590171Z CC lib/asn1_decoder.o
2025-10-31T05:43:14.8843101Z CC [M] sound/soc/intel/skylake/skl-debug.o
2025-10-31T05:43:15.0665921Z CC [M] drivers/char/tpm/tpm_vtpm_proxy.o
2025-10-31T05:43:15.2400752Z CC [M] fs/nilfs2/recovery.o
2025-10-31T05:43:15.2519622Z GEN lib/oid_registry_data.c
2025-10-31T05:43:15.2766729Z CC lib/ucs2_string.o
2025-10-31T05:43:15.5226892Z CC net/ipv6/xfrm6_policy.o
2025-10-31T05:43:15.6623442Z CC [M] sound/soc/intel/skylake/skl-ssp-clk.o
2025-10-31T05:43:15.7663598Z CC lib/sbitmap.o
2025-10-31T05:43:16.0468916Z LD [M] drivers/char/tpm/tpm.o
2025-10-31T05:43:16.1072466Z LD [M] drivers/char/tpm/tpm_tis_spi.o
2025-10-31T05:43:16.3142613Z CC [M] drivers/char/xillybus/xillybus_core.o
2025-10-31T05:43:16.5254458Z CC [M] fs/nilfs2/the_nilfs.o
2025-10-31T05:43:16.5608812Z CC [M] lib/crc16.o
2025-10-31T05:43:16.7333658Z LD [M] sound/soc/intel/skylake/snd-soc-skl.o
2025-10-31T05:43:16.8312211Z LD [M] sound/soc/intel/skylake/snd-soc-skl-ssp-clk.o
2025-10-31T05:43:16.9138076Z CC [M] lib/crc-itu-t.o
2025-10-31T05:43:16.9230291Z CC [M] sound/soc/intel/boards/sof_rt5682.o
2025-10-31T05:43:17.0701362Z CC net/ipv6/xfrm6_state.o
2025-10-31T05:43:17.3256315Z HOSTCC lib/gen_crc64table
2025-10-31T05:43:17.4709836Z CC [M] lib/crc4.o
2025-10-31T05:43:17.6443662Z CC [M] fs/nilfs2/segbuf.o
2025-10-31T05:43:17.8387046Z CC [M] drivers/char/xillybus/xillybus_pcie.o
2025-10-31T05:43:17.9843918Z CC [M] lib/crc7.o
2025-10-31T05:43:18.0659504Z CC [M] sound/soc/intel/boards/hda_dsp_common.o
2025-10-31T05:43:18.2974126Z CC net/ipv6/xfrm6_input.o
2025-10-31T05:43:18.5039679Z CC [M] lib/libcrc32c.o
2025-10-31T05:43:18.5511040Z CC [M] fs/nilfs2/segment.o
2025-10-31T05:43:18.6618208Z CC drivers/char/mem.o
2025-10-31T05:43:18.7246315Z CC [M] sound/soc/intel/boards/sof_maxim_common.o
2025-10-31T05:43:18.9870189Z CC [M] lib/crc8.o
2025-10-31T05:43:19.3964044Z CC [M] sound/soc/intel/boards/haswell.o
2025-10-31T05:43:19.4534741Z CC [M] lib/ts_kmp.o
2025-10-31T05:43:19.7507805Z CC net/ipv6/xfrm6_output.o
2025-10-31T05:43:19.8327176Z CC drivers/char/random.o
2025-10-31T05:43:20.0184154Z CC [M] sound/soc/intel/boards/bxt_da7219_max98357a.o
2025-10-31T05:43:20.2082859Z CC [M] lib/ts_bm.o
2025-10-31T05:43:20.8592728Z CC [M] lib/ts_fsm.o
2025-10-31T05:43:21.0281482Z CC [M] sound/soc/intel/boards/bxt_rt298.o
2025-10-31T05:43:21.1293256Z CC drivers/char/misc.o
2025-10-31T05:43:21.1985459Z CC net/ipv6/xfrm6_protocol.o
2025-10-31T05:43:21.5043866Z CC [M] lib/lru_cache.o
2025-10-31T05:43:21.5962928Z CC [M] fs/nilfs2/cpfile.o
2025-10-31T05:43:21.8089516Z CC drivers/char/hpet.o
2025-10-31T05:43:21.9426298Z CC [M] sound/soc/intel/boards/sof_pcm512x.o
2025-10-31T05:43:22.5463450Z CC [M] lib/parman.o
2025-10-31T05:43:22.6487042Z CC net/ipv6/netfilter.o
2025-10-31T05:43:22.7691894Z CC [M] sound/soc/intel/boards/sof_wm8804.o
2025-10-31T05:43:22.8533113Z CC [M] fs/nilfs2/sufile.o
2025-10-31T05:43:22.9717774Z CC drivers/char/nvram.o
2025-10-31T05:43:23.1570006Z CC [M] lib/objagg.o
2025-10-31T05:43:23.5335671Z CC [M] sound/soc/intel/boards/glk_rt5682_max98357a.o
2025-10-31T05:43:24.0002325Z CC net/ipv6/fib6_rules.o
2025-10-31T05:43:24.0214580Z CC [M] drivers/char/virtio_console.o
2025-10-31T05:43:24.4813599Z CC [M] fs/nilfs2/ifile.o
2025-10-31T05:43:24.4902956Z CC [M] sound/soc/intel/boards/broadwell.o
2025-10-31T05:43:25.1898528Z GEN lib/crc64table.h
2025-10-31T05:43:25.1963925Z AR lib/lib.a
2025-10-31T05:43:25.2246082Z GEN lib/crc32table.h
2025-10-31T05:43:25.2330166Z CC lib/oid_registry.o
2025-10-31T05:43:25.3203452Z CC net/ipv6/proc.o
2025-10-31T05:43:25.3265608Z CC [M] sound/soc/intel/boards/bdw-rt5650.o
2025-10-31T05:43:25.4025543Z CC [M] fs/nilfs2/alloc.o
2025-10-31T05:43:25.6988124Z CC [M] lib/crc64.o
2025-10-31T05:43:26.0843339Z CC [M] drivers/char/raw.o
2025-10-31T05:43:26.1871623Z CC [M] sound/soc/intel/boards/bdw-rt5677.o
2025-10-31T05:43:26.1902954Z CC lib/crc32.o
2025-10-31T05:43:26.5370086Z CC net/ipv6/syncookies.o
2025-10-31T05:43:26.7098620Z AR lib/built-in.a
2025-10-31T05:43:26.7626495Z CC [M] sound/hda/ext/hdac_ext_bus.o
2025-10-31T05:43:26.8162529Z CC [M] fs/nilfs2/gcinode.o
2025-10-31T05:43:26.8828777Z CC [M] drivers/char/lp.o
2025-10-31T05:43:27.0330466Z CC [M] sound/soc/intel/boards/bytcr_rt5640.o
2025-10-31T05:43:27.5493897Z CC [M] sound/hda/ext/hdac_ext_controller.o
2025-10-31T05:43:27.7463168Z CC net/ipv6/calipso.o
2025-10-31T05:43:27.7619889Z CC [M] fs/nilfs2/ioctl.o
2025-10-31T05:43:27.8351617Z CC [M] drivers/char/applicom.o
2025-10-31T05:43:28.2019074Z CC [M] sound/soc/intel/boards/bytcr_rt5651.o
2025-10-31T05:43:28.4474828Z CC [M] sound/hda/ext/hdac_ext_stream.o
2025-10-31T05:43:28.7757725Z CC [M] drivers/char/ppdev.o
2025-10-31T05:43:29.1751280Z CC [M] fs/nilfs2/sysfs.o
2025-10-31T05:43:29.2304503Z CC [M] sound/soc/intel/boards/cht_bsw_rt5672.o
2025-10-31T05:43:29.3738894Z LD [M] sound/hda/ext/snd-hda-ext-core.o
2025-10-31T05:43:29.4360842Z CC [M] sound/hda/hda_bus_type.o
2025-10-31T05:43:29.6225691Z CC [M] drivers/char/tlclk.o
2025-10-31T05:43:29.8225447Z CC net/ipv6/seg6_iptunnel.o
2025-10-31T05:43:30.0983258Z CC [M] sound/soc/intel/boards/cht_bsw_rt5645.o
2025-10-31T05:43:30.1753368Z CC [M] sound/hda/hdac_bus.o
2025-10-31T05:43:30.4727574Z CC [M] drivers/char/hangcheck-timer.o
2025-10-31T05:43:30.5797106Z LD [M] fs/nilfs2/nilfs2.o
2025-10-31T05:43:30.7473158Z CC [M] fs/befs/datastream.o
2025-10-31T05:43:30.9973005Z CC [M] sound/hda/hdac_device.o
2025-10-31T05:43:31.0026574Z CC [M] sound/soc/intel/boards/cht_bsw_max98090_ti.o
2025-10-31T05:43:31.0820682Z AR drivers/char/built-in.a
2025-10-31T05:43:31.2606854Z CC drivers/iommu/amd/iommu.o
2025-10-31T05:43:31.3617966Z CC net/ipv6/seg6_local.o
2025-10-31T05:43:31.4308512Z CC [M] fs/befs/btree.o
2025-10-31T05:43:31.7395628Z CC [M] sound/soc/intel/boards/cht_bsw_nau8824.o
2025-10-31T05:43:31.9742148Z CC [M] sound/hda/hdac_sysfs.o
2025-10-31T05:43:32.3858726Z CC [M] fs/befs/super.o
2025-10-31T05:43:32.5683251Z CC [M] sound/soc/intel/boards/bytcht_cx2072x.o
2025-10-31T05:43:32.8359882Z CC [M] sound/hda/hdac_regmap.o
2025-10-31T05:43:32.9393247Z CC [M] fs/befs/inode.o
2025-10-31T05:43:33.2306424Z CC net/ipv6/seg6_hmac.o
2025-10-31T05:43:33.4494592Z CC [M] sound/soc/intel/boards/bytcht_da7213.o
2025-10-31T05:43:33.5267463Z CC [M] fs/befs/debug.o
2025-10-31T05:43:33.7393974Z CC [M] sound/hda/hdac_controller.o
2025-10-31T05:43:33.9746441Z CC [M] fs/befs/io.o
2025-10-31T05:43:34.2639801Z CC drivers/iommu/amd/init.o
2025-10-31T05:43:34.4081462Z CC [M] sound/soc/intel/boards/bytcht_es8316.o
2025-10-31T05:43:34.4864251Z CC [M] fs/befs/linuxvfs.o
2025-10-31T05:43:34.7000836Z CC net/ipv6/rpl_iptunnel.o
2025-10-31T05:43:34.9272658Z CC [M] sound/hda/hdac_stream.o
2025-10-31T05:43:35.3291029Z CC [M] sound/soc/intel/boards/cml_rt1011_rt5682.o
2025-10-31T05:43:35.7460027Z LD [M] fs/befs/befs.o
2025-10-31T05:43:35.8465314Z CC [M] fs/cachefiles/bind.o
2025-10-31T05:43:36.0683245Z CC [M] sound/hda/array.o
2025-10-31T05:43:36.1349884Z CC net/ipv6/addrconf_core.o
2025-10-31T05:43:36.3078479Z CC [M] sound/soc/intel/boards/kbl_da7219_max98357a.o
2025-10-31T05:43:36.3310501Z CC drivers/iommu/amd/quirks.o
2025-10-31T05:43:36.5730709Z CC [M] sound/hda/hdmi_chmap.o
2025-10-31T05:43:36.7553241Z CC [M] fs/cachefiles/daemon.o
2025-10-31T05:43:36.9117860Z CC drivers/iommu/amd/iommu_v2.o
2025-10-31T05:43:37.2858906Z CC [M] sound/soc/intel/boards/kbl_da7219_max98927.o
2025-10-31T05:43:37.3932888Z CC net/ipv6/exthdrs_core.o
2025-10-31T05:43:37.7283878Z CC [M] fs/cachefiles/interface.o
2025-10-31T05:43:37.7315966Z CC [M] sound/hda/trace.o
2025-10-31T05:43:38.1147686Z AR drivers/iommu/amd/built-in.a
2025-10-31T05:43:38.1656145Z CC drivers/iommu/intel/dmar.o
2025-10-31T05:43:38.3632971Z CC [M] sound/soc/intel/boards/kbl_rt5663_max98927.o
2025-10-31T05:43:38.5182581Z CC net/ipv6/ip6_checksum.o
2025-10-31T05:43:38.5863969Z CC [M] sound/hda/hdac_component.o
2025-10-31T05:43:38.8894596Z CC [M] fs/cachefiles/key.o
2025-10-31T05:43:39.2611885Z CC [M] sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.o
2025-10-31T05:43:39.2803196Z CC [M] sound/hda/hdac_i915.o
2025-10-31T05:43:39.6820233Z CC [M] fs/cachefiles/main.o
2025-10-31T05:43:39.9643638Z CC drivers/iommu/intel/iommu.o
2025-10-31T05:43:39.9665512Z CC [M] sound/hda/intel-dsp-config.o
2025-10-31T05:43:39.9727734Z CC net/ipv6/ip6_icmp.o
2025-10-31T05:43:40.2180619Z CC [M] sound/soc/intel/boards/kbl_rt5660.o
2025-10-31T05:43:40.6755658Z CC [M] sound/hda/intel-nhlt.o
2025-10-31T05:43:40.9312948Z CC [M] fs/cachefiles/namei.o
2025-10-31T05:43:41.0260484Z CC [M] sound/soc/intel/boards/skl_rt286.o
2025-10-31T05:43:41.1422793Z CC net/ipv6/output_core.o
2025-10-31T05:43:41.2243993Z LD [M] sound/hda/snd-hda-core.o
2025-10-31T05:43:41.2633154Z LD [M] sound/hda/snd-intel-dspcfg.o
2025-10-31T05:43:41.3234427Z CC [M] fs/ocfs2/dlmfs/userdlm.o
2025-10-31T05:43:42.0114997Z CC [M] sound/soc/intel/boards/skl_nau88l25_max98357a.o
2025-10-31T05:43:42.1339439Z CC [M] fs/cachefiles/rdwr.o
2025-10-31T05:43:42.1471053Z CC [M] fs/ocfs2/dlmfs/dlmfs.o
2025-10-31T05:43:42.4010484Z CC net/ipv6/protocol.o
2025-10-31T05:43:42.7915867Z CC [M] sound/soc/intel/boards/skl_nau88l25_ssm4567.o
2025-10-31T05:43:43.1779954Z LD [M] fs/ocfs2/dlmfs/ocfs2_dlmfs.o
2025-10-31T05:43:43.2625122Z CC [M] fs/ocfs2/cluster/heartbeat.o
2025-10-31T05:43:43.5630525Z CC [M] sound/soc/intel/boards/skl_hda_dsp_generic.o
2025-10-31T05:43:43.7158924Z CC net/ipv6/ip6_offload.o
2025-10-31T05:43:43.7267548Z CC [M] fs/cachefiles/security.o
2025-10-31T05:43:44.1116908Z CC drivers/iommu/intel/pasid.o
2025-10-31T05:43:44.4739975Z CC [M] sound/soc/intel/boards/skl_hda_dsp_common.o
2025-10-31T05:43:44.5684939Z CC [M] fs/cachefiles/xattr.o
2025-10-31T05:43:45.0780681Z CC net/ipv6/tcpv6_offload.o
2025-10-31T05:43:45.3221411Z CC [M] sound/soc/intel/boards/sof_da7219_max98373.o
2025-10-31T05:43:45.3223690Z CC drivers/iommu/intel/trace.o
2025-10-31T05:43:45.3933835Z LD [M] fs/cachefiles/cachefiles.o
2025-10-31T05:43:45.4759078Z CC drivers/iommu/intel/svm.o
2025-10-31T05:43:45.5456675Z CC [M] fs/ocfs2/cluster/masklog.o
2025-10-31T05:43:46.1196857Z CC [M] fs/ocfs2/cluster/sys.o
2025-10-31T05:43:46.2995339Z CC [M] sound/soc/intel/boards/ehl_rt5660.o
2025-10-31T05:43:46.3396525Z CC net/ipv6/exthdrs_offload.o
2025-10-31T05:43:46.5293105Z AS arch/x86/lib/clear_page_64.o
2025-10-31T05:43:46.5912509Z CC arch/x86/lib/cmdline.o
2025-10-31T05:43:46.6719638Z CC [M] fs/ocfs2/cluster/nodemanager.o
2025-10-31T05:43:46.7529958Z AS arch/x86/lib/cmpxchg16b_emu.o
2025-10-31T05:43:46.7958322Z CC arch/x86/lib/copy_mc.o
2025-10-31T05:43:46.8518650Z CC drivers/iommu/intel/irq_remapping.o
2025-10-31T05:43:47.0782487Z AS arch/x86/lib/copy_mc_64.o
2025-10-31T05:43:47.1240463Z AS arch/x86/lib/copy_page_64.o
2025-10-31T05:43:47.1710346Z AS arch/x86/lib/copy_user_64.o
2025-10-31T05:43:47.2293987Z CC arch/x86/lib/cpu.o
2025-10-31T05:43:47.2630959Z CC [M] sound/soc/intel/boards/sof_sdw.o
2025-10-31T05:43:47.5618234Z CC net/ipv6/inet6_hashtables.o
2025-10-31T05:43:47.7550551Z AS arch/x86/lib/csum-copy_64.o
2025-10-31T05:43:47.8581692Z CC arch/x86/lib/csum-partial_64.o
2025-10-31T05:43:48.0723897Z AR drivers/iommu/intel/built-in.a
2025-10-31T05:43:48.1117096Z AR drivers/iommu/arm/arm-smmu/built-in.a
2025-10-31T05:43:48.1752932Z AR drivers/iommu/arm/arm-smmu-v3/built-in.a
2025-10-31T05:43:48.2132753Z AR drivers/iommu/arm/built-in.a
2025-10-31T05:43:48.2546322Z CC drivers/iommu/iommu.o
2025-10-31T05:43:48.3070972Z CC arch/x86/lib/csum-wrappers_64.o
2025-10-31T05:43:48.3163282Z CC [M] fs/ocfs2/cluster/quorum.o
2025-10-31T05:43:48.5454743Z CC [M] sound/soc/intel/boards/sof_sdw_max98373.o
2025-10-31T05:43:48.6774725Z CC arch/x86/lib/delay.o
2025-10-31T05:43:48.7534420Z CC [M] fs/ocfs2/cluster/tcp.o
2025-10-31T05:43:48.9866023Z CC arch/x86/lib/error-inject.o
2025-10-31T05:43:49.3033911Z CC net/ipv6/mcast_snoop.o
2025-10-31T05:43:49.4940062Z CC [M] sound/soc/intel/boards/sof_sdw_rt1308.o
2025-10-31T05:43:49.5692515Z AS arch/x86/lib/getuser.o
2025-10-31T05:43:49.6209564Z GEN arch/x86/lib/inat-tables.c
2025-10-31T05:43:49.6612144Z CC arch/x86/lib/insn-eval.o
2025-10-31T05:43:50.2814998Z CC drivers/iommu/iommu-traces.o
2025-10-31T05:43:50.3228121Z CC [M] sound/soc/intel/boards/sof_sdw_rt1316.o
2025-10-31T05:43:50.6067591Z CC [M] net/ipv6/ah6.o
2025-10-31T05:43:50.8240185Z CC arch/x86/lib/insn.o
2025-10-31T05:43:51.0512799Z CC [M] fs/ocfs2/cluster/netdebug.o
2025-10-31T05:43:51.1476628Z CC [M] sound/soc/intel/boards/sof_sdw_rt5682.o
2025-10-31T05:43:51.3674608Z CC arch/x86/lib/kaslr.o
2025-10-31T05:43:51.3741335Z CC drivers/iommu/iommu-sysfs.o
2025-10-31T05:43:51.7023125Z AS arch/x86/lib/memcpy_64.o
2025-10-31T05:43:51.8051685Z AS arch/x86/lib/memmove_64.o
2025-10-31T05:43:51.9158342Z AS arch/x86/lib/memset_64.o
2025-10-31T05:43:51.9574166Z CC [M] sound/soc/intel/boards/sof_sdw_rt700.o
2025-10-31T05:43:51.9663463Z CC drivers/iommu/dma-iommu.o
2025-10-31T05:43:51.9823495Z CC arch/x86/lib/misc.o
2025-10-31T05:43:52.0246945Z CC [M] net/ipv6/esp6.o
2025-10-31T05:43:52.0819638Z AS arch/x86/lib/putuser.o
2025-10-31T05:43:52.1855258Z AS arch/x86/lib/retpoline.o
2025-10-31T05:43:52.2401752Z CC arch/x86/lib/usercopy.o
2025-10-31T05:43:52.3227922Z LD [M] fs/ocfs2/cluster/ocfs2_nodemanager.o
2025-10-31T05:43:52.3865593Z CC [M] fs/ocfs2/dlm/dlmdomain.o
2025-10-31T05:43:52.8572419Z CC [M] sound/soc/intel/boards/sof_sdw_rt711.o
2025-10-31T05:43:52.9521056Z CC arch/x86/lib/usercopy_64.o
2025-10-31T05:43:53.2053616Z CC drivers/iommu/ioasid.o
2025-10-31T05:43:53.6095556Z CC [M] sound/soc/intel/boards/sof_sdw_rt711_sdca.o
2025-10-31T05:43:53.6827726Z CC arch/x86/lib/msr-smp.o
2025-10-31T05:43:53.8044923Z CC drivers/iommu/iova.o
2025-10-31T05:43:54.0256529Z CC [M] net/ipv6/esp6_offload.o
2025-10-31T05:43:54.1874975Z CC arch/x86/lib/cache-smp.o
2025-10-31T05:43:54.2894566Z CC [M] sound/soc/intel/boards/sof_sdw_rt715.o
2025-10-31T05:43:54.5703908Z CC arch/x86/lib/msr.o
2025-10-31T05:43:54.6763034Z CC [M] fs/ocfs2/dlm/dlmdebug.o
2025-10-31T05:43:54.9258218Z CC drivers/iommu/irq_remapping.o
2025-10-31T05:43:55.1263882Z CC [M] sound/soc/intel/boards/sof_sdw_rt715_sdca.o
2025-10-31T05:43:55.4299424Z CC [M] net/ipv6/ipcomp6.o
2025-10-31T05:43:55.5065443Z CC drivers/iommu/hyperv-iommu.o
2025-10-31T05:43:55.6200699Z AS arch/x86/lib/msr-reg.o
2025-10-31T05:43:55.7176663Z CC arch/x86/lib/msr-reg-export.o
2025-10-31T05:43:55.9301076Z AS arch/x86/lib/hweight.o
2025-10-31T05:43:55.9874128Z CC arch/x86/lib/iomem.o
2025-10-31T05:43:55.9931094Z CC [M] fs/ocfs2/dlm/dlmthread.o
2025-10-31T05:43:56.0145711Z CC [M] sound/soc/intel/boards/sof_sdw_dmic.o
2025-10-31T05:43:56.3364647Z AR drivers/iommu/built-in.a
2025-10-31T05:43:56.3915299Z AR drivers/gpu/drm/arm/built-in.a
2025-10-31T05:43:56.4248240Z AR drivers/gpu/drm/rcar-du/built-in.a
2025-10-31T05:43:56.4309449Z AS arch/x86/lib/iomap_copy_64.o
2025-10-31T05:43:56.4687832Z AR drivers/gpu/drm/omapdrm/dss/built-in.a
2025-10-31T05:43:56.4832958Z CC arch/x86/lib/inat.o
2025-10-31T05:43:56.5013541Z AR drivers/gpu/drm/omapdrm/displays/built-in.a
2025-10-31T05:43:56.5238811Z AR drivers/gpu/drm/omapdrm/built-in.a
2025-10-31T05:43:56.5641872Z AR drivers/gpu/drm/tilcdc/built-in.a
2025-10-31T05:43:56.5959458Z CC [M] net/ipv6/xfrm6_tunnel.o
2025-10-31T05:43:56.6105691Z AR drivers/gpu/drm/imx/built-in.a
2025-10-31T05:43:56.6270221Z AR arch/x86/lib/built-in.a
2025-10-31T05:43:56.6374449Z AR arch/x86/lib/lib.a
2025-10-31T05:43:56.6450990Z AR drivers/gpu/drm/i2c/built-in.a
2025-10-31T05:43:56.6556186Z CC [M] drivers/gpu/drm/i2c/ch7006_drv.o
2025-10-31T05:43:56.6713568Z CC drivers/gpu/vga/vgaarb.o
2025-10-31T05:43:56.7105774Z CC [M] sound/soc/intel/boards/sof_sdw_hdmi.o
2025-10-31T05:43:57.5101525Z LD [M] sound/soc/intel/boards/snd-soc-sof_rt5682.o
2025-10-31T05:43:57.5391174Z LD [M] sound/soc/intel/boards/snd-soc-sst-haswell.o
2025-10-31T05:43:57.5639154Z LD [M] sound/soc/intel/boards/snd-soc-sst-bxt-da7219_max98357a.o
2025-10-31T05:43:57.5941328Z LD [M] sound/soc/intel/boards/snd-soc-sst-bxt-rt298.o
2025-10-31T05:43:57.6098225Z LD [M] sound/soc/intel/boards/snd-soc-sst-sof-pcm512x.o
2025-10-31T05:43:57.6229300Z LD [M] sound/soc/intel/boards/snd-soc-sst-sof-wm8804.o
2025-10-31T05:43:57.6355145Z LD [M] sound/soc/intel/boards/snd-soc-sst-glk-rt5682_max98357a.o
2025-10-31T05:43:57.6472782Z CC [M] drivers/gpu/drm/i2c/ch7006_mode.o
2025-10-31T05:43:57.6499429Z LD [M] sound/soc/intel/boards/snd-soc-sst-broadwell.o
2025-10-31T05:43:57.6618330Z LD [M] sound/soc/intel/boards/snd-soc-sst-bdw-rt5650-mach.o
2025-10-31T05:43:57.6747516Z LD [M] sound/soc/intel/boards/snd-soc-sst-bdw-rt5677-mach.o
2025-10-31T05:43:57.6877912Z LD [M] sound/soc/intel/boards/snd-soc-sst-bytcr-rt5640.o
2025-10-31T05:43:57.7016666Z LD [M] sound/soc/intel/boards/snd-soc-sst-bytcr-rt5651.o
2025-10-31T05:43:57.7157112Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5672.o
2025-10-31T05:43:57.7296384Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5645.o
2025-10-31T05:43:57.7434904Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-max98090_ti.o
2025-10-31T05:43:57.7571501Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-nau8824.o
2025-10-31T05:43:57.7743781Z LD [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-cx2072x.o
2025-10-31T05:43:57.7989701Z LD [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-da7213.o
2025-10-31T05:43:57.8174261Z LD [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-es8316.o
2025-10-31T05:43:57.8236628Z CC [M] fs/ocfs2/dlm/dlmrecovery.o
2025-10-31T05:43:57.8376645Z LD [M] sound/soc/intel/boards/snd-soc-cml_rt1011_rt5682.o
2025-10-31T05:43:57.8532743Z LD [M] sound/soc/intel/boards/snd-soc-kbl_da7219_max98357a.o
2025-10-31T05:43:57.8683641Z LD [M] sound/soc/intel/boards/snd-soc-kbl_da7219_max98927.o
2025-10-31T05:43:57.8962552Z LD [M] sound/soc/intel/boards/snd-soc-kbl_rt5663_max98927.o
2025-10-31T05:43:57.9086704Z LD [M] sound/soc/intel/boards/snd-soc-kbl_rt5663_rt5514_max98927.o
2025-10-31T05:43:57.9170770Z CC [M] net/ipv6/tunnel6.o
2025-10-31T05:43:57.9248929Z LD [M] sound/soc/intel/boards/snd-soc-kbl_rt5660.o
2025-10-31T05:43:57.9381561Z LD [M] sound/soc/intel/boards/snd-soc-skl_rt286.o
2025-10-31T05:43:57.9508980Z LD [M] sound/soc/intel/boards/snd-skl_nau88l25_max98357a.o
2025-10-31T05:43:57.9640538Z LD [M] sound/soc/intel/boards/snd-soc-skl_nau88l25_ssm4567.o
2025-10-31T05:43:57.9804766Z LD [M] sound/soc/intel/boards/snd-soc-skl_hda_dsp.o
2025-10-31T05:43:57.9914564Z CC drivers/gpu/vga/vga_switcheroo.o
2025-10-31T05:43:58.0089077Z LD [M] sound/soc/intel/boards/snd-soc-sof_da7219_max98373.o
2025-10-31T05:43:58.0409791Z LD [M] sound/soc/intel/boards/snd-soc-ehl-rt5660.o
2025-10-31T05:43:58.0690915Z LD [M] sound/soc/intel/boards/snd-soc-sof-sdw.o
2025-10-31T05:43:58.6418231Z CC [M] drivers/gpu/drm/i2c/sil164_drv.o
2025-10-31T05:43:58.9414660Z CC [M] sound/soc/sof/intel/byt.o
2025-10-31T05:43:59.0732830Z AR drivers/gpu/vga/built-in.a
2025-10-31T05:43:59.1167661Z CC net/packet/af_packet.o
2025-10-31T05:43:59.2139347Z CC [M] net/ipv6/mip6.o
2025-10-31T05:43:59.6142790Z CC [M] drivers/gpu/drm/i2c/tda998x_drv.o
2025-10-31T05:43:59.9269215Z CC [M] sound/soc/sof/intel/intel-ipc.o
2025-10-31T05:44:00.5959593Z CC [M] fs/ocfs2/dlm/dlmmaster.o
2025-10-31T05:44:00.6088949Z CC [M] net/ipv6/ip6_vti.o
2025-10-31T05:44:00.8926891Z CC [M] sound/soc/sof/intel/hda.o
2025-10-31T05:44:01.1505520Z CC [M] drivers/gpu/drm/i2c/tda9950.o
2025-10-31T05:44:02.1313685Z LD [M] drivers/gpu/drm/i2c/ch7006.o
2025-10-31T05:44:02.1621451Z LD [M] drivers/gpu/drm/i2c/sil164.o
2025-10-31T05:44:02.1892740Z LD [M] drivers/gpu/drm/i2c/tda998x.o
2025-10-31T05:44:02.2493332Z CC [M] sound/soc/sof/intel/hda-loader.o
2025-10-31T05:44:02.2628769Z AR drivers/gpu/drm/panel/built-in.a
2025-10-31T05:44:02.2745363Z CC [M] drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.o
2025-10-31T05:44:02.5934689Z CC [M] net/ipv6/sit.o
2025-10-31T05:44:02.8571364Z CC [M] net/packet/diag.o
2025-10-31T05:44:03.0683998Z AR drivers/gpu/drm/bridge/analogix/built-in.a
2025-10-31T05:44:03.0915362Z CC [M] drivers/gpu/drm/bridge/analogix/analogix-anx78xx.o
2025-10-31T05:44:03.1985328Z CC [M] sound/soc/sof/intel/hda-stream.o
2025-10-31T05:44:03.9923896Z CC [M] fs/ocfs2/dlm/dlmast.o
2025-10-31T05:44:04.2319781Z AR net/packet/built-in.a
2025-10-31T05:44:04.2421813Z LD [M] net/packet/af_packet_diag.o
2025-10-31T05:44:04.2647717Z CC [M] drivers/gpu/drm/bridge/analogix/analogix_dp_core.o
2025-10-31T05:44:04.2842500Z CC [M] sound/x86/intel_hdmi_audio.o
2025-10-31T05:44:04.5135172Z CC [M] sound/soc/sof/intel/hda-trace.o
2025-10-31T05:44:04.8374991Z CC [M] net/ipv6/ip6_tunnel.o
2025-10-31T05:44:05.5025778Z CC [M] sound/soc/sof/intel/hda-dsp.o
2025-10-31T05:44:05.6071783Z CC [M] fs/ocfs2/dlm/dlmconvert.o
2025-10-31T05:44:05.7041271Z LD [M] sound/x86/snd-hdmi-lpe-audio.o
2025-10-31T05:44:05.7627050Z CC [M] fs/btrfs/super.o
2025-10-31T05:44:05.9330298Z CC [M] drivers/gpu/drm/bridge/analogix/analogix_dp_reg.o
2025-10-31T05:44:06.8399537Z CC [M] sound/soc/sof/intel/hda-ipc.o
2025-10-31T05:44:07.1134520Z CC [M] fs/ocfs2/dlm/dlmlock.o
2025-10-31T05:44:07.2740380Z CC [M] drivers/gpu/drm/bridge/analogix/analogix-i2c-dptx.o
2025-10-31T05:44:07.4329349Z CC [M] net/ipv6/ip6_gre.o
2025-10-31T05:44:07.7567272Z CC [M] sound/soc/sof/intel/hda-ctrl.o
2025-10-31T05:44:08.2720317Z LD [M] drivers/gpu/drm/bridge/analogix/analogix_dp.o
2025-10-31T05:44:08.3698637Z AR drivers/gpu/drm/bridge/cadence/built-in.a
2025-10-31T05:44:08.4397802Z AR drivers/gpu/drm/bridge/synopsys/built-in.a
2025-10-31T05:44:08.4824665Z AR drivers/gpu/drm/bridge/built-in.a
2025-10-31T05:44:08.5557116Z AR drivers/gpu/drm/hisilicon/built-in.a
2025-10-31T05:44:08.6240157Z AR drivers/gpu/drm/tiny/built-in.a
2025-10-31T05:44:08.6421188Z CC [M] drivers/gpu/drm/tiny/cirrus.o
2025-10-31T05:44:08.6591860Z CC [M] fs/ocfs2/dlm/dlmunlock.o
2025-10-31T05:44:08.7855477Z CC [M] sound/soc/sof/intel/hda-pcm.o
2025-10-31T05:44:09.5502820Z CC [M] drivers/gpu/drm/tiny/gm12u320.o
2025-10-31T05:44:09.8080441Z CC [M] sound/soc/sof/intel/hda-dai.o
2025-10-31T05:44:10.2095639Z CC [M] net/ipv6/fou6.o
2025-10-31T05:44:10.3226347Z LD [M] fs/ocfs2/dlm/ocfs2_dlm.o
2025-10-31T05:44:10.4422972Z CC [M] fs/ocfs2/alloc.o
2025-10-31T05:44:10.7078139Z CC [M] drivers/gpu/drm/tiny/hx8357d.o
2025-10-31T05:44:10.7319819Z CC [M] sound/soc/sof/intel/hda-bus.o
2025-10-31T05:44:11.4172270Z CC [M] fs/btrfs/ctree.o
2025-10-31T05:44:11.4321692Z CC [M] net/ipv6/ip6_udp_tunnel.o
2025-10-31T05:44:11.5131708Z CC [M] drivers/gpu/drm/tiny/ili9225.o
2025-10-31T05:44:11.5935910Z CC [M] sound/soc/sof/intel/apl.o
2025-10-31T05:44:12.2708357Z CC [M] sound/soc/sof/intel/cnl.o
2025-10-31T05:44:12.5660534Z CC [M] drivers/gpu/drm/tiny/ili9341.o
2025-10-31T05:44:12.7364539Z AR net/ipv6/built-in.a
2025-10-31T05:44:12.9391781Z CC net/strparser/strparser.o
2025-10-31T05:44:13.1183702Z CC [M] sound/soc/sof/intel/tgl.o
2025-10-31T05:44:13.4479281Z CC [M] drivers/gpu/drm/tiny/ili9486.o
2025-10-31T05:44:13.9868692Z CC [M] sound/soc/sof/intel/hda-codec.o
2025-10-31T05:44:14.3396914Z CC [M] drivers/gpu/drm/tiny/mi0283qt.o
2025-10-31T05:44:14.4106304Z AR net/strparser/built-in.a
2025-10-31T05:44:14.4656878Z CC net/8021q/vlan_core.o
2025-10-31T05:44:14.8984957Z LD [M] sound/soc/sof/intel/snd-sof-intel-byt.o
2025-10-31T05:44:14.9120029Z LD [M] sound/soc/sof/intel/snd-sof-intel-ipc.o
2025-10-31T05:44:14.9261844Z LD [M] sound/soc/sof/intel/snd-sof-intel-hda-common.o
2025-10-31T05:44:14.9663512Z LD [M] sound/soc/sof/intel/snd-sof-intel-hda.o
2025-10-31T05:44:15.0228629Z CC [M] sound/soc/sof/xtensa/core.o
2025-10-31T05:44:15.3770774Z CC [M] drivers/gpu/drm/tiny/repaper.o
2025-10-31T05:44:15.6373666Z CC [M] fs/btrfs/extent-tree.o
2025-10-31T05:44:15.8017469Z LD [M] sound/soc/sof/xtensa/snd-sof-xtensa-dsp.o
2025-10-31T05:44:15.8557733Z CC [M] sound/soc/sof/core.o
2025-10-31T05:44:15.9392478Z CC [M] net/8021q/vlan.o
2025-10-31T05:44:16.7309445Z CC [M] drivers/gpu/drm/tiny/st7586.o
2025-10-31T05:44:16.8846036Z CC [M] sound/soc/sof/ops.o
2025-10-31T05:44:17.0991070Z CC [M] net/8021q/vlan_dev.o
2025-10-31T05:44:17.3947439Z CC [M] fs/ocfs2/aops.o
2025-10-31T05:44:17.5954993Z CC [M] drivers/gpu/drm/tiny/st7735r.o
2025-10-31T05:44:17.9631732Z CC [M] sound/soc/sof/loader.o
2025-10-31T05:44:18.5729657Z CC [M] net/8021q/vlan_netlink.o
2025-10-31T05:44:18.6260366Z AR drivers/gpu/drm/xen/built-in.a
2025-10-31T05:44:18.6470296Z CC [M] drivers/gpu/drm/xen/xen_drm_front.o
2025-10-31T05:44:19.1778829Z CC [M] sound/soc/sof/ipc.o
2025-10-31T05:44:19.5709852Z CC [M] net/8021q/vlan_gvrp.o
2025-10-31T05:44:19.8122237Z CC [M] fs/btrfs/print-tree.o
2025-10-31T05:44:19.9946135Z CC [M] drivers/gpu/drm/xen/xen_drm_front_kms.o
2025-10-31T05:44:20.2119497Z CC [M] sound/soc/sof/pcm.o
2025-10-31T05:44:20.3653254Z CC [M] net/8021q/vlan_mvrp.o
2025-10-31T05:44:20.7189203Z CC [M] fs/ocfs2/blockcheck.o
2025-10-31T05:44:20.9220041Z CC [M] drivers/gpu/drm/xen/xen_drm_front_conn.o
2025-10-31T05:44:21.2109871Z CC [M] fs/btrfs/root-tree.o
2025-10-31T05:44:21.2533670Z CC [M] net/8021q/vlanproc.o
2025-10-31T05:44:21.3328774Z CC [M] sound/soc/sof/pm.o
2025-10-31T05:44:21.5700544Z CC [M] fs/ocfs2/buffer_head_io.o
2025-10-31T05:44:21.7767808Z CC [M] drivers/gpu/drm/xen/xen_drm_front_evtchnl.o
2025-10-31T05:44:22.0828720Z AR net/8021q/built-in.a
2025-10-31T05:44:22.0934862Z LD [M] net/8021q/8021q.o
2025-10-31T05:44:22.2034749Z CC net/wireless/wext-core.o
2025-10-31T05:44:22.2766260Z CC [M] sound/soc/sof/debug.o
2025-10-31T05:44:22.7534930Z CC [M] fs/btrfs/dir-item.o
2025-10-31T05:44:23.0322954Z CC [M] drivers/gpu/drm/xen/xen_drm_front_cfg.o
2025-10-31T05:44:23.2225544Z CC [M] fs/ocfs2/dcache.o
2025-10-31T05:44:23.3140192Z CC [M] sound/soc/sof/topology.o
2025-10-31T05:44:23.5197944Z CC net/wireless/wext-proc.o
2025-10-31T05:44:23.7985284Z CC [M] drivers/gpu/drm/xen/xen_drm_front_gem.o
2025-10-31T05:44:23.9580514Z CC [M] fs/btrfs/file-item.o
2025-10-31T05:44:24.4251364Z CC net/wireless/wext-spy.o
2025-10-31T05:44:24.8366182Z CC [M] fs/ocfs2/dir.o
2025-10-31T05:44:24.9500379Z LD [M] drivers/gpu/drm/xen/drm_xen_front.o
2025-10-31T05:44:25.0563272Z AR drivers/gpu/drm/xlnx/built-in.a
2025-10-31T05:44:25.1280291Z CC [M] drivers/gpu/drm/ttm/ttm_memory.o
2025-10-31T05:44:25.3631654Z CC net/wireless/wext-priv.o
2025-10-31T05:44:25.6608519Z CC [M] sound/soc/sof/control.o
2025-10-31T05:44:25.9713121Z CC [M] fs/btrfs/inode-item.o
2025-10-31T05:44:26.1902622Z CC [M] drivers/gpu/drm/ttm/ttm_tt.o
2025-10-31T05:44:26.4164961Z CC [M] net/wireless/core.o
2025-10-31T05:44:26.6954077Z CC [M] sound/soc/sof/trace.o
2025-10-31T05:44:27.1454765Z CC [M] fs/btrfs/inode-map.o
2025-10-31T05:44:27.3587934Z CC [M] drivers/gpu/drm/ttm/ttm_bo.o
2025-10-31T05:44:27.5840474Z CC [M] sound/soc/sof/utils.o
2025-10-31T05:44:28.5195813Z CC [M] sound/soc/sof/sof-audio.o
2025-10-31T05:44:28.6143561Z CC [M] fs/btrfs/disk-io.o
2025-10-31T05:44:28.8557791Z CC [M] net/wireless/sysfs.o
2025-10-31T05:44:28.8837165Z CC [M] drivers/gpu/drm/ttm/ttm_bo_util.o
2025-10-31T05:44:29.2666400Z CC [M] fs/ocfs2/dlmglue.o
2025-10-31T05:44:29.6525800Z CC [M] sound/soc/sof/sof-acpi-dev.o
2025-10-31T05:44:29.9148753Z CC [M] drivers/gpu/drm/ttm/ttm_bo_vm.o
2025-10-31T05:44:30.2795216Z CC [M] net/wireless/radiotap.o
2025-10-31T05:44:30.4148140Z CC [M] sound/soc/sof/sof-pci-dev.o
2025-10-31T05:44:30.7203999Z CC [M] drivers/gpu/drm/ttm/ttm_module.o
2025-10-31T05:44:31.1862346Z CC [M] drivers/gpu/drm/ttm/ttm_execbuf_util.o
2025-10-31T05:44:31.2365677Z LD [M] sound/soc/sof/snd-sof.o
2025-10-31T05:44:31.2814899Z LD [M] sound/soc/sof/snd-sof-acpi.o
2025-10-31T05:44:31.2978256Z LD [M] sound/soc/sof/snd-sof-pci.o
2025-10-31T05:44:31.3463061Z CC [M] net/wireless/util.o
2025-10-31T05:44:31.8695176Z CC [M] sound/soc/xilinx/xlnx_i2s.o
2025-10-31T05:44:31.9433142Z CC [M] drivers/gpu/drm/ttm/ttm_page_alloc.o
2025-10-31T05:44:31.9563939Z CC [M] fs/btrfs/transaction.o
2025-10-31T05:44:32.5053327Z CC [M] sound/soc/xilinx/xlnx_formatter_pcm.o
2025-10-31T05:44:32.5794577Z CC [M] fs/ocfs2/export.o
2025-10-31T05:44:33.2832893Z CC [M] drivers/gpu/drm/ttm/ttm_range_manager.o
2025-10-31T05:44:33.7378985Z CC [M] sound/soc/xilinx/xlnx_spdif.o
2025-10-31T05:44:34.0636033Z CC [M] drivers/gpu/drm/ttm/ttm_resource.o
2025-10-31T05:44:34.1555249Z CC [M] net/wireless/reg.o
2025-10-31T05:44:34.1702910Z CC [M] fs/btrfs/inode.o
2025-10-31T05:44:34.3205040Z CC [M] fs/ocfs2/extent_map.o
2025-10-31T05:44:34.3981669Z LD [M] sound/soc/xilinx/snd-soc-xlnx-i2s.o
2025-10-31T05:44:34.4278356Z LD [M] sound/soc/xilinx/snd-soc-xlnx-formatter-pcm.o
2025-10-31T05:44:34.4535035Z LD [M] sound/soc/xilinx/snd-soc-xlnx-spdif.o
2025-10-31T05:44:34.5597423Z CC [M] sound/soc/xtensa/xtfpga-i2s.o
2025-10-31T05:44:34.7722992Z CC [M] drivers/gpu/drm/ttm/ttm_page_alloc_dma.o
2025-10-31T05:44:35.5968209Z LD [M] sound/soc/xtensa/snd-soc-xtfpga-i2s.o
2025-10-31T05:44:35.6419960Z CC [M] sound/soc/zte/zx-tdm.o
2025-10-31T05:44:36.1474278Z CC [M] drivers/gpu/drm/ttm/ttm_agp_backend.o
2025-10-31T05:44:36.3171814Z CC [M] fs/ocfs2/file.o
2025-10-31T05:44:36.4269470Z CC [M] sound/soc/soc-acpi.o
2025-10-31T05:44:36.8310866Z LD [M] drivers/gpu/drm/ttm/ttm.o
2025-10-31T05:44:36.8974673Z CC [M] drivers/gpu/drm/scheduler/sched_main.o
2025-10-31T05:44:37.0174544Z CC [M] sound/soc/soc-core.o
2025-10-31T05:44:37.7027638Z CC [M] net/wireless/scan.o
2025-10-31T05:44:38.1945420Z CC [M] drivers/gpu/drm/scheduler/sched_fence.o
2025-10-31T05:44:38.8033630Z CC [M] drivers/gpu/drm/scheduler/sched_entity.o
2025-10-31T05:44:39.7148457Z LD [M] drivers/gpu/drm/scheduler/gpu-sched.o
2025-10-31T05:44:39.8130540Z CC [M] drivers/gpu/drm/radeon/radeon_drv.o
2025-10-31T05:44:39.9073559Z CC [M] sound/soc/soc-dapm.o
2025-10-31T05:44:40.3141344Z CC [M] fs/ocfs2/heartbeat.o
2025-10-31T05:44:40.8964754Z CC [M] drivers/gpu/drm/radeon/radeon_device.o
2025-10-31T05:44:41.3038136Z CC [M] fs/btrfs/file.o
2025-10-31T05:44:41.3738777Z CC [M] net/wireless/nl80211.o
2025-10-31T05:44:41.9335566Z CC [M] fs/ocfs2/inode.o
2025-10-31T05:44:42.4705544Z CC [M] drivers/gpu/drm/radeon/radeon_asic.o
2025-10-31T05:44:43.2644422Z CC [M] sound/soc/soc-jack.o
2025-10-31T05:44:43.4603526Z CC [M] drivers/gpu/drm/radeon/radeon_kms.o
2025-10-31T05:44:44.3545960Z CC [M] fs/ocfs2/ioctl.o
2025-10-31T05:44:44.3770053Z CC [M] sound/soc/soc-utils.o
2025-10-31T05:44:44.7665817Z CC [M] fs/btrfs/tree-defrag.o
2025-10-31T05:44:44.7851432Z CC [M] drivers/gpu/drm/radeon/radeon_atombios.o
2025-10-31T05:44:45.1956569Z CC [M] sound/soc/soc-dai.o
2025-10-31T05:44:45.6607361Z CC [M] fs/ocfs2/journal.o
2025-10-31T05:44:46.0360132Z CC [M] fs/btrfs/extent_map.o
2025-10-31T05:44:46.2525507Z CC [M] sound/soc/soc-component.o
2025-10-31T05:44:47.4737164Z CC [M] fs/btrfs/sysfs.o
2025-10-31T05:44:47.4831389Z CC [M] sound/soc/soc-pcm.o
2025-10-31T05:44:47.5757585Z CC [M] drivers/gpu/drm/radeon/radeon_agp.o
2025-10-31T05:44:48.5393793Z CC [M] drivers/gpu/drm/radeon/atombios_crtc.o
2025-10-31T05:44:49.1228592Z CC [M] fs/ocfs2/localalloc.o
2025-10-31T05:44:49.3613673Z CC [M] fs/btrfs/struct-funcs.o
2025-10-31T05:44:50.1762300Z CC [M] sound/soc/soc-devres.o
2025-10-31T05:44:50.4235897Z CC [M] drivers/gpu/drm/radeon/radeon_combios.o
2025-10-31T05:44:50.7637198Z CC [M] fs/btrfs/xattr.o
2025-10-31T05:44:50.9985948Z CC [M] sound/soc/soc-ops.o
2025-10-31T05:44:51.3869455Z CC [M] fs/ocfs2/locks.o
2025-10-31T05:44:52.0893564Z CC [M] sound/soc/soc-link.o
2025-10-31T05:44:52.1499776Z CC [M] fs/ocfs2/mmap.o
2025-10-31T05:44:52.3091313Z CC [M] fs/btrfs/ordered-data.o
2025-10-31T05:44:52.7121515Z CC [M] drivers/gpu/drm/radeon/atom.o
2025-10-31T05:44:52.8046072Z CC [M] sound/soc/soc-card.o
2025-10-31T05:44:53.6885406Z CC [M] fs/ocfs2/namei.o
2025-10-31T05:44:53.7580904Z CC [M] sound/soc/soc-topology.o
2025-10-31T05:44:53.9854971Z CC [M] fs/btrfs/extent_io.o
2025-10-31T05:44:54.5089955Z CC [M] net/wireless/mlme.o
2025-10-31T05:44:54.9643908Z CC [M] drivers/gpu/drm/radeon/radeon_fence.o
2025-10-31T05:44:55.9520612Z CC [M] sound/soc/soc-generic-dmaengine-pcm.o
2025-10-31T05:44:56.4321211Z CC [M] drivers/gpu/drm/radeon/radeon_ttm.o
2025-10-31T05:44:56.8323365Z CC [M] net/wireless/ibss.o
2025-10-31T05:44:57.2093313Z CC [M] sound/soc/soc-ac97.o
2025-10-31T05:44:57.8593904Z CC [M] drivers/gpu/drm/radeon/radeon_object.o
2025-10-31T05:44:57.8932866Z CC [M] fs/ocfs2/refcounttree.o
2025-10-31T05:44:58.0312615Z CC [M] sound/soc/soc-compress.o
2025-10-31T05:44:58.6341278Z CC [M] net/wireless/sme.o
2025-10-31T05:44:58.6405670Z CC [M] fs/btrfs/volumes.o
2025-10-31T05:44:59.0710598Z LD [M] sound/soc/snd-soc-acpi.o
2025-10-31T05:44:59.0982165Z LD [M] sound/soc/snd-soc-core.o
2025-10-31T05:44:59.3385998Z CC [M] sound/xen/xen_snd_front.o
2025-10-31T05:44:59.3499071Z CC [M] drivers/gpu/drm/radeon/radeon_gart.o
2025-10-31T05:44:59.9947469Z CC [M] sound/xen/xen_snd_front_cfg.o
2025-10-31T05:45:00.4414171Z CC [M] drivers/gpu/drm/radeon/radeon_legacy_crtc.o
2025-10-31T05:45:00.8995647Z CC [M] sound/xen/xen_snd_front_evtchnl.o
2025-10-31T05:45:01.2559972Z CC [M] net/wireless/chan.o
2025-10-31T05:45:01.7762719Z CC [M] drivers/gpu/drm/radeon/radeon_legacy_encoders.o
2025-10-31T05:45:01.9482762Z CC [M] sound/xen/xen_snd_front_alsa.o
2025-10-31T05:45:03.0258651Z LD [M] sound/xen/snd_xen_front.o
2025-10-31T05:45:03.0725505Z CC [M] net/wireless/ethtool.o
2025-10-31T05:45:03.0909273Z AR sound/built-in.a
2025-10-31T05:45:03.1129773Z CC [M] sound/sound_core.o
2025-10-31T05:45:03.5904194Z CC [M] fs/ocfs2/reservations.o
2025-10-31T05:45:03.6038565Z CC [M] drivers/gpu/drm/radeon/radeon_connectors.o
2025-10-31T05:45:03.8283346Z CC [M] fs/btrfs/async-thread.o
2025-10-31T05:45:04.0092386Z CC [M] sound/ac97_bus.o
2025-10-31T05:45:04.3010727Z CC [M] net/wireless/mesh.o
2025-10-31T05:45:04.7931860Z LD [M] sound/soundcore.o
2025-10-31T05:45:04.9299274Z CC [M] fs/ocfs2/move_extents.o
2025-10-31T05:45:05.1191754Z CC [M] fs/btrfs/ioctl.o
2025-10-31T05:45:05.3961304Z CC [M] drivers/gpu/drm/radeon/radeon_encoders.o
2025-10-31T05:45:05.6606421Z CC drivers/connector/cn_queue.o
2025-10-31T05:45:05.7596696Z CC [M] net/wireless/ap.o
2025-10-31T05:45:06.4819417Z CC [M] drivers/gpu/drm/radeon/radeon_display.o
2025-10-31T05:45:06.5706850Z CC [M] fs/ocfs2/resize.o
2025-10-31T05:45:06.9059663Z CC drivers/connector/connector.o
2025-10-31T05:45:07.1765017Z CC [M] net/wireless/trace.o
2025-10-31T05:45:08.0594501Z CC drivers/connector/cn_proc.o
2025-10-31T05:45:08.4085469Z CC [M] drivers/gpu/drm/radeon/radeon_cursor.o
2025-10-31T05:45:08.7348125Z CC [M] fs/ocfs2/slot_map.o
2025-10-31T05:45:08.8576418Z CC [M] fs/btrfs/locking.o
2025-10-31T05:45:09.3784392Z AR drivers/connector/built-in.a
2025-10-31T05:45:09.3992316Z CC [M] fs/ocfs2/suballoc.o
2025-10-31T05:45:09.4054772Z CC [M] drivers/gpu/drm/radeon/radeon_i2c.o
2025-10-31T05:45:10.0423625Z CC [M] fs/btrfs/orphan.o
2025-10-31T05:45:10.5276402Z CC net/netlabel/netlabel_user.o
2025-10-31T05:45:11.0168856Z CC [M] fs/btrfs/export.o
2025-10-31T05:45:11.0924333Z CC [M] drivers/gpu/drm/radeon/radeon_clocks.o
2025-10-31T05:45:11.6030402Z CC net/netlabel/netlabel_kapi.o
2025-10-31T05:45:12.2997044Z CC [M] drivers/gpu/drm/radeon/radeon_fb.o
2025-10-31T05:45:12.3091403Z CC [M] fs/btrfs/tree-log.o
2025-10-31T05:45:12.8851242Z CC [M] fs/ocfs2/super.o
2025-10-31T05:45:13.1721871Z CC net/netlabel/netlabel_domainhash.o
2025-10-31T05:45:13.4197135Z CC [M] drivers/gpu/drm/radeon/radeon_gem.o
2025-10-31T05:45:14.6706097Z CC [M] drivers/gpu/drm/radeon/radeon_ring.o
2025-10-31T05:45:14.7648463Z CC net/netlabel/netlabel_addrlist.o
2025-10-31T05:45:15.9304516Z CC [M] drivers/gpu/drm/radeon/radeon_irq_kms.o
2025-10-31T05:45:15.9918736Z CC net/netlabel/netlabel_mgmt.o
2025-10-31T05:45:16.8060373Z CC [M] fs/btrfs/free-space-cache.o
2025-10-31T05:45:17.0456254Z CC [M] drivers/gpu/drm/radeon/radeon_cs.o
2025-10-31T05:45:17.5487319Z CC net/netlabel/netlabel_unlabeled.o
2025-10-31T05:45:18.4879981Z CC [M] drivers/gpu/drm/radeon/radeon_bios.o
2025-10-31T05:45:18.9238304Z CC [M] net/wireless/ocb.o
2025-10-31T05:45:19.3607420Z CC net/netlabel/netlabel_cipso_v4.o
2025-10-31T05:45:19.7655712Z CC [M] fs/btrfs/zlib.o
2025-10-31T05:45:19.8869059Z CC [M] drivers/gpu/drm/radeon/radeon_benchmark.o
2025-10-31T05:45:20.3743195Z CC [M] net/wireless/pmsr.o
2025-10-31T05:45:20.6568789Z CC [M] fs/btrfs/lzo.o
2025-10-31T05:45:20.8789362Z HOSTCC drivers/gpu/drm/radeon/mkregtable
2025-10-31T05:45:20.9461182Z CC net/netlabel/netlabel_calipso.o
2025-10-31T05:45:21.0775638Z CC [M] drivers/gpu/drm/radeon/rs400.o
2025-10-31T05:45:21.5890091Z CC [M] fs/btrfs/zstd.o
2025-10-31T05:45:22.2850416Z CC [M] net/wireless/debugfs.o
2025-10-31T05:45:22.3183194Z AR net/netlabel/built-in.a
2025-10-31T05:45:22.3425988Z MKREG drivers/gpu/drm/radeon/rs600_reg_safe.h
2025-10-31T05:45:22.3746224Z CC net/dcb/dcbnl.o
2025-10-31T05:45:22.4224760Z CC [M] drivers/gpu/drm/radeon/rs690.o
2025-10-31T05:45:23.0650401Z CC [M] fs/btrfs/compression.o
2025-10-31T05:45:23.1041272Z CC [M] fs/ocfs2/symlink.o
2025-10-31T05:45:23.2986499Z CC [M] net/wireless/wext-compat.o
2025-10-31T05:45:23.5699600Z MKREG drivers/gpu/drm/radeon/rv515_reg_safe.h
2025-10-31T05:45:23.5801787Z CC [M] drivers/gpu/drm/radeon/r520.o
2025-10-31T05:45:23.7064373Z CC [M] fs/ocfs2/sysfile.o
2025-10-31T05:45:24.4288826Z CC [M] fs/ocfs2/uptodate.o
2025-10-31T05:45:24.4722546Z CC [M] drivers/gpu/drm/radeon/r600.o
2025-10-31T05:45:24.9403611Z CC net/dcb/dcbevent.o
2025-10-31T05:45:25.4565125Z CC [M] fs/btrfs/delayed-ref.o
2025-10-31T05:45:25.8680789Z AR net/dcb/built-in.a
2025-10-31T05:45:25.8855936Z CC [M] fs/btrfs/relocation.o
2025-10-31T05:45:25.9116318Z CC [M] net/wireless/wext-sme.o
2025-10-31T05:45:26.1761474Z CC [M] fs/ocfs2/quota_local.o
2025-10-31T05:45:27.0765141Z CC [M] drivers/gpu/drm/radeon/rv770.o
2025-10-31T05:45:27.1079625Z GEN net/wireless/shipped-certs.c
2025-10-31T05:45:27.1352913Z CC [M] net/wireless/lib80211.o
2025-10-31T05:45:27.8353510Z CC [M] fs/ocfs2/quota_global.o
2025-10-31T05:45:28.1655941Z CC [M] net/wireless/lib80211_crypt_wep.o
2025-10-31T05:45:28.8349794Z CC [M] net/wireless/lib80211_crypt_ccmp.o
2025-10-31T05:45:28.9020942Z CC [M] drivers/gpu/drm/radeon/radeon_test.o
2025-10-31T05:45:29.1562492Z CC [M] fs/btrfs/delayed-inode.o
2025-10-31T05:45:29.4152807Z AR net/mpls/built-in.a
2025-10-31T05:45:29.4410793Z CC [M] net/mpls/mpls_gso.o
2025-10-31T05:45:29.8238489Z CC [M] net/wireless/lib80211_crypt_tkip.o
2025-10-31T05:45:30.1626844Z MKREG drivers/gpu/drm/radeon/r200_reg_safe.h
2025-10-31T05:45:30.1808938Z CC [M] drivers/gpu/drm/radeon/radeon_legacy_tv.o
2025-10-31T05:45:30.2204963Z CC [M] fs/ocfs2/xattr.o
2025-10-31T05:45:30.4739580Z CC [M] net/mpls/af_mpls.o
2025-10-31T05:45:30.9446024Z CC [M] net/wireless/shipped-certs.o
2025-10-31T05:45:31.4334336Z CC [M] fs/btrfs/scrub.o
2025-10-31T05:45:31.4809359Z MKREG drivers/gpu/drm/radeon/r600_reg_safe.h
2025-10-31T05:45:31.5097517Z CC [M] drivers/gpu/drm/radeon/r600_blit_shaders.o
2025-10-31T05:45:31.7073696Z CC [M] drivers/gpu/drm/radeon/radeon_pm.o
2025-10-31T05:45:31.8280525Z AR net/wireless/built-in.a
2025-10-31T05:45:31.8555885Z LD [M] net/wireless/cfg80211.o
2025-10-31T05:45:32.3194670Z LDS scripts/module.lds
2025-10-31T05:45:32.3709653Z CC [M] fs/btrfs/reada.o
2025-10-31T05:45:33.0109286Z CC [M] net/mpls/mpls_iptunnel.o
2025-10-31T05:45:33.3874367Z CC [M] drivers/gpu/drm/radeon/atombios_dp.o
2025-10-31T05:45:34.2881183Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_drv.o
2025-10-31T05:45:34.3116741Z LD [M] net/mpls/mpls_router.o
2025-10-31T05:45:34.4181192Z CC net/switchdev/switchdev.o
2025-10-31T05:45:34.5068126Z CC [M] drivers/gpu/drm/radeon/r600_hdmi.o
2025-10-31T05:45:34.6104116Z CC [M] fs/btrfs/backref.o
2025-10-31T05:45:35.5577269Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_device.o
2025-10-31T05:45:35.7493467Z CC [M] drivers/gpu/drm/radeon/dce3_1_afmt.o
2025-10-31T05:45:35.9373355Z AR net/switchdev/built-in.a
2025-10-31T05:45:35.9931781Z CC net/l3mdev/l3mdev.o
2025-10-31T05:45:36.6516671Z CC [M] drivers/gpu/drm/radeon/evergreen.o
2025-10-31T05:45:37.0220151Z CC [M] fs/ocfs2/acl.o
2025-10-31T05:45:37.0731706Z AR net/l3mdev/built-in.a
2025-10-31T05:45:37.1326585Z CC net/ncsi/ncsi-cmd.o
2025-10-31T05:45:37.6456035Z CC [M] fs/btrfs/ulist.o
2025-10-31T05:45:38.0690853Z CC [M] fs/ocfs2/filecheck.o
2025-10-31T05:45:38.5472117Z CC net/ncsi/ncsi-rsp.o
2025-10-31T05:45:38.6822491Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_kms.o
2025-10-31T05:45:38.8990901Z CC [M] fs/btrfs/qgroup.o
2025-10-31T05:45:39.0228169Z CC [M] fs/ocfs2/stackglue.o
2025-10-31T05:45:39.9251210Z CC [M] fs/ocfs2/stack_o2cb.o
2025-10-31T05:45:40.0674429Z CC net/ncsi/ncsi-aen.o
2025-10-31T05:45:40.3954493Z MKREG drivers/gpu/drm/radeon/evergreen_reg_safe.h
2025-10-31T05:45:40.4169530Z MKREG drivers/gpu/drm/radeon/cayman_reg_safe.h
2025-10-31T05:45:40.4374574Z CC [M] drivers/gpu/drm/radeon/evergreen_blit_shaders.o
2025-10-31T05:45:40.5068903Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.o
2025-10-31T05:45:40.5410859Z CC [M] drivers/gpu/drm/radeon/evergreen_hdmi.o
2025-10-31T05:45:41.2353275Z CC net/ncsi/ncsi-manage.o
2025-10-31T05:45:41.2482445Z CC [M] fs/ocfs2/stack_user.o
2025-10-31T05:45:41.7223203Z CC [M] drivers/gpu/drm/radeon/radeon_trace_points.o
2025-10-31T05:45:42.1422967Z LD [M] fs/ocfs2/ocfs2.o
2025-10-31T05:45:42.2858068Z LD [M] fs/ocfs2/ocfs2_stackglue.o
2025-10-31T05:45:42.2989570Z LD [M] fs/ocfs2/ocfs2_stack_o2cb.o
2025-10-31T05:45:42.3132627Z LD [M] fs/ocfs2/ocfs2_stack_user.o
2025-10-31T05:45:42.3898245Z CC drivers/base/power/sysfs.o
2025-10-31T05:45:42.5062368Z CC [M] fs/btrfs/send.o
2025-10-31T05:45:42.5192146Z CC [M] drivers/gpu/drm/amd/amdgpu/atombios_crtc.o
2025-10-31T05:45:43.0844799Z CC drivers/base/power/generic_ops.o
2025-10-31T05:45:43.1270782Z CC [M] drivers/gpu/drm/radeon/ni.o
2025-10-31T05:45:43.3691745Z CC net/ncsi/ncsi-netlink.o
2025-10-31T05:45:43.5973641Z CC drivers/base/power/common.o
2025-10-31T05:45:44.1186137Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.o
2025-10-31T05:45:44.1893443Z CC drivers/base/power/qos.o
2025-10-31T05:45:44.9947673Z AR net/ncsi/built-in.a
2025-10-31T05:45:45.0496287Z CC net/xdp/xsk.o
2025-10-31T05:45:45.5600653Z CC drivers/base/power/runtime.o
2025-10-31T05:45:45.5683142Z CC [M] drivers/gpu/drm/radeon/cayman_blit_shaders.o
2025-10-31T05:45:45.6600400Z CC [M] drivers/gpu/drm/radeon/atombios_encoders.o
2025-10-31T05:45:46.0583517Z CC [M] drivers/gpu/drm/amd/amdgpu/atom.o
2025-10-31T05:45:46.8924682Z CC net/xdp/xdp_umem.o
2025-10-31T05:45:46.9746008Z CC drivers/base/power/wakeirq.o
2025-10-31T05:45:47.1097240Z CC [M] fs/btrfs/dev-replace.o
2025-10-31T05:45:47.6362936Z CC [M] drivers/gpu/drm/radeon/radeon_semaphore.o
2025-10-31T05:45:47.6374919Z CC drivers/base/power/main.o
2025-10-31T05:45:48.3109619Z CC net/xdp/xsk_queue.o
2025-10-31T05:45:48.3765401Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_fence.o
2025-10-31T05:45:48.6508229Z CC [M] drivers/gpu/drm/radeon/radeon_sa.o
2025-10-31T05:45:48.6910313Z CC [M] fs/btrfs/raid56.o
2025-10-31T05:45:49.3670078Z CC net/xdp/xskmap.o
2025-10-31T05:45:49.4747171Z CC drivers/base/power/wakeup.o
2025-10-31T05:45:49.6491061Z CC [M] drivers/gpu/drm/radeon/atombios_i2c.o
2025-10-31T05:45:49.8985600Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.o
2025-10-31T05:45:50.4235105Z CC [M] drivers/gpu/drm/radeon/si.o
2025-10-31T05:45:50.6399258Z CC drivers/base/power/wakeup_stats.o
2025-10-31T05:45:50.9549275Z CC net/xdp/xsk_buff_pool.o
2025-10-31T05:45:51.0982958Z CC drivers/base/power/trace.o
2025-10-31T05:45:51.3556293Z CC [M] fs/btrfs/uuid-tree.o
2025-10-31T05:45:51.8433840Z CC drivers/base/power/domain.o
2025-10-31T05:45:52.4101169Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_object.o
2025-10-31T05:45:52.5411328Z CC [M] fs/btrfs/props.o
2025-10-31T05:45:52.6539923Z CC [M] net/xdp/xsk_diag.o
2025-10-31T05:45:53.8165262Z CC drivers/base/power/domain_governor.o
2025-10-31T05:45:53.8529504Z AR net/xdp/built-in.a
2025-10-31T05:45:53.9236194Z CC net/mptcp/protocol.o
2025-10-31T05:45:53.9931212Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gart.o
2025-10-31T05:45:54.0288824Z CC [M] fs/btrfs/free-space-tree.o
2025-10-31T05:45:54.3065982Z CC drivers/base/power/clock_ops.o
2025-10-31T05:45:55.0071229Z AR drivers/base/power/built-in.a
2025-10-31T05:45:55.0686197Z AR drivers/base/firmware_loader/builtin/built-in.a
2025-10-31T05:45:55.0904512Z CC drivers/base/firmware_loader/main.o
2025-10-31T05:45:55.2690651Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_encoders.o
2025-10-31T05:45:55.7237959Z CC [M] fs/btrfs/tree-checker.o
2025-10-31T05:45:56.2775756Z CC drivers/base/firmware_loader/fallback_platform.o
2025-10-31T05:45:56.4745386Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_display.o
2025-10-31T05:45:56.9191795Z AR drivers/base/firmware_loader/built-in.a
2025-10-31T05:45:56.9442471Z CC drivers/base/regmap/regmap.o
2025-10-31T05:45:57.0647492Z CC net/mptcp/subflow.o
2025-10-31T05:45:57.8353349Z CC [M] fs/btrfs/space-info.o
2025-10-31T05:45:58.0875372Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_i2c.o
2025-10-31T05:45:58.7136132Z CC [M] drivers/gpu/drm/radeon/si_blit_shaders.o
2025-10-31T05:45:58.8200980Z CC [M] drivers/gpu/drm/radeon/radeon_prime.o
2025-10-31T05:45:59.0176583Z CC net/mptcp/options.o
2025-10-31T05:45:59.3410445Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_fb.o
2025-10-31T05:45:59.6761173Z CC [M] drivers/gpu/drm/radeon/cik.o
2025-10-31T05:45:59.7055427Z CC [M] fs/btrfs/block-rsv.o
2025-10-31T05:45:59.7375128Z CC drivers/base/regmap/regcache.o
2025-10-31T05:46:00.4231083Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gem.o
2025-10-31T05:46:00.9402549Z CC net/mptcp/token.o
2025-10-31T05:46:00.9540754Z CC drivers/base/regmap/regcache-rbtree.o
2025-10-31T05:46:01.1256584Z CC [M] fs/btrfs/delalloc-space.o
2025-10-31T05:46:01.9211308Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ring.o
2025-10-31T05:46:02.0163360Z CC drivers/base/regmap/regcache-flat.o
2025-10-31T05:46:02.3010382Z CC net/mptcp/crypto.o
2025-10-31T05:46:02.4101055Z CC [M] fs/btrfs/block-group.o
2025-10-31T05:46:02.7063520Z CC drivers/base/regmap/regmap-debugfs.o
2025-10-31T05:46:03.1707836Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_cs.o
2025-10-31T05:46:03.5633249Z CC net/mptcp/ctrl.o
2025-10-31T05:46:03.6584214Z CC drivers/base/regmap/regmap-i2c.o
2025-10-31T05:46:04.2342888Z CC [M] drivers/gpu/drm/radeon/cik_blit_shaders.o
2025-10-31T05:46:04.3500470Z CC [M] drivers/gpu/drm/radeon/r600_dpm.o
2025-10-31T05:46:04.3831225Z CC drivers/base/regmap/regmap-spi.o
2025-10-31T05:46:04.5760467Z CC net/mptcp/pm.o
2025-10-31T05:46:05.1810976Z CC drivers/base/regmap/regmap-mmio.o
2025-10-31T05:46:05.3179490Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_bios.o
2025-10-31T05:46:05.4597451Z CC [M] fs/btrfs/discard.o
2025-10-31T05:46:05.8643392Z CC drivers/base/regmap/regmap-irq.o
2025-10-31T05:46:05.9347235Z CC net/mptcp/diag.o
2025-10-31T05:46:06.0589658Z CC [M] drivers/gpu/drm/radeon/rs780_dpm.o
2025-10-31T05:46:06.5111490Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_benchmark.o
2025-10-31T05:46:06.6626387Z CC [M] fs/btrfs/reflink.o
2025-10-31T05:46:07.0409091Z CC [M] drivers/base/regmap/regmap-slimbus.o
2025-10-31T05:46:07.3928897Z CC [M] drivers/gpu/drm/radeon/rv6xx_dpm.o
2025-10-31T05:46:07.4678721Z CC net/mptcp/mib.o
2025-10-31T05:46:07.6313565Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_test.o
2025-10-31T05:46:07.7330780Z CC [M] drivers/base/regmap/regmap-w1.o
2025-10-31T05:46:08.1074128Z CC [M] fs/btrfs/acl.o
2025-10-31T05:46:08.4798297Z CC [M] drivers/base/regmap/regmap-sdw.o
2025-10-31T05:46:08.7624048Z CC net/mptcp/pm_netlink.o
2025-10-31T05:46:08.9311572Z CC [M] drivers/gpu/drm/amd/amdgpu/atombios_dp.o
2025-10-31T05:46:08.9848915Z CC [M] drivers/gpu/drm/radeon/rv770_dpm.o
2025-10-31T05:46:09.0521471Z CC [M] drivers/base/regmap/regmap-sccb.o
2025-10-31T05:46:09.1557472Z LD [M] fs/btrfs/btrfs.o
2025-10-31T05:46:09.5206794Z CC [M] fs/gfs2/acl.o
2025-10-31T05:46:09.7109220Z CC [M] drivers/base/regmap/regmap-spi-avmm.o
2025-10-31T05:46:10.1579817Z CC [M] fs/gfs2/bmap.o
2025-10-31T05:46:10.3967536Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.o
2025-10-31T05:46:10.5043225Z CC net/mptcp/syncookies.o
2025-10-31T05:46:10.7148190Z AR drivers/base/regmap/built-in.a
2025-10-31T05:46:10.8478572Z AR drivers/base/test/built-in.a
2025-10-31T05:46:10.8897108Z CC drivers/base/component.o
2025-10-31T05:46:10.9836272Z CC [M] drivers/gpu/drm/radeon/rv730_dpm.o
2025-10-31T05:46:11.3127820Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_trace_points.o
2025-10-31T05:46:11.8465797Z CC [M] net/mptcp/mptcp_diag.o
2025-10-31T05:46:11.8664027Z CC drivers/base/core.o
2025-10-31T05:46:11.9816565Z CC [M] drivers/gpu/drm/radeon/rv740_dpm.o
2025-10-31T05:46:12.7029529Z CC [M] fs/gfs2/dir.o
2025-10-31T05:46:12.8566462Z CC [M] drivers/gpu/drm/radeon/rv770_smc.o
2025-10-31T05:46:13.1093491Z AR net/mptcp/built-in.a
2025-10-31T05:46:13.1993592Z CC [M] net/llc/llc_core.o
2025-10-31T05:46:13.7191328Z CC [M] drivers/gpu/drm/radeon/cypress_dpm.o
2025-10-31T05:46:13.8365550Z CC [M] drivers/gpu/drm/amd/amdgpu/atombios_encoders.o
2025-10-31T05:46:14.4065041Z CC [M] net/llc/llc_input.o
2025-10-31T05:46:14.4611736Z CC [M] fs/gfs2/xattr.o
2025-10-31T05:46:14.9129327Z CC drivers/base/bus.o
2025-10-31T05:46:15.2893324Z CC [M] net/llc/llc_output.o
2025-10-31T05:46:15.5286416Z CC [M] drivers/gpu/drm/radeon/btc_dpm.o
2025-10-31T05:46:15.8222835Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_sa.o
2025-10-31T05:46:15.9085456Z CC [M] fs/gfs2/glock.o
2025-10-31T05:46:16.0295346Z CC drivers/base/dd.o
2025-10-31T05:46:16.2739646Z CC [M] net/llc/llc_if.o
2025-10-31T05:46:17.0355205Z CC [M] drivers/gpu/drm/amd/amdgpu/atombios_i2c.o
2025-10-31T05:46:17.1126620Z CC drivers/base/syscore.o
2025-10-31T05:46:17.1767524Z CC [M] drivers/gpu/drm/radeon/sumo_dpm.o
2025-10-31T05:46:17.4452977Z CC [M] net/llc/llc_c_ev.o
2025-10-31T05:46:18.0719327Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.o
2025-10-31T05:46:18.1479136Z CC drivers/base/driver.o
2025-10-31T05:46:18.8148361Z CC drivers/base/class.o
2025-10-31T05:46:18.9928051Z CC [M] net/llc/llc_c_ac.o
2025-10-31T05:46:19.0927118Z CC [M] drivers/gpu/drm/radeon/sumo_smc.o
2025-10-31T05:46:19.2986731Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vm.o
2025-10-31T05:46:19.5866725Z CC drivers/base/platform.o
2025-10-31T05:46:19.8509173Z CC [M] fs/gfs2/glops.o
2025-10-31T05:46:20.0969799Z CC [M] drivers/gpu/drm/radeon/trinity_dpm.o
2025-10-31T05:46:20.5431780Z CC [M] net/llc/llc_conn.o
2025-10-31T05:46:20.7084032Z CC drivers/base/cpu.o
2025-10-31T05:46:21.2775511Z CC [M] fs/gfs2/log.o
2025-10-31T05:46:21.5340485Z CC drivers/base/firmware.o
2025-10-31T05:46:21.6980426Z CC [M] drivers/gpu/drm/radeon/trinity_smc.o
2025-10-31T05:46:22.1594530Z CC drivers/base/init.o
2025-10-31T05:46:22.4181145Z CC [M] net/llc/llc_c_st.o
2025-10-31T05:46:22.4834924Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ib.o
2025-10-31T05:46:22.4847077Z CC [M] drivers/gpu/drm/radeon/ni_dpm.o
2025-10-31T05:46:22.5852769Z CC drivers/base/map.o
2025-10-31T05:46:22.9730655Z CC [M] fs/gfs2/lops.o
2025-10-31T05:46:23.1938580Z CC drivers/base/devres.o
2025-10-31T05:46:23.5083484Z CC [M] net/llc/llc_pdu.o
2025-10-31T05:46:23.7749278Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_pll.o
2025-10-31T05:46:24.0935403Z CC drivers/base/attribute_container.o
2025-10-31T05:46:24.4636489Z CC [M] net/llc/llc_sap.o
2025-10-31T05:46:24.5104297Z CC [M] fs/gfs2/main.o
2025-10-31T05:46:24.7738604Z CC drivers/base/transport_class.o
2025-10-31T05:46:25.0601646Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.o
2025-10-31T05:46:25.1945771Z CC [M] fs/gfs2/meta_io.o
2025-10-31T05:46:25.2238947Z CC drivers/base/topology.o
2025-10-31T05:46:25.6938984Z CC [M] net/llc/llc_s_ac.o
2025-10-31T05:46:25.7903419Z CC [M] drivers/gpu/drm/radeon/si_smc.o
2025-10-31T05:46:25.9106041Z CC drivers/base/container.o
2025-10-31T05:46:26.3846874Z CC drivers/base/property.o
2025-10-31T05:46:26.4894392Z CC [M] fs/gfs2/aops.o
2025-10-31T05:46:26.5517519Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.o
2025-10-31T05:46:26.7343624Z CC [M] net/llc/llc_s_ev.o
2025-10-31T05:46:26.8007420Z CC [M] drivers/gpu/drm/radeon/si_dpm.o
2025-10-31T05:46:27.8080970Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.o
2025-10-31T05:46:27.8152360Z CC drivers/base/cacheinfo.o
2025-10-31T05:46:27.8793492Z CC [M] net/llc/llc_s_st.o
2025-10-31T05:46:27.9283374Z CC [M] fs/gfs2/dentry.o
2025-10-31T05:46:28.5855193Z CC drivers/base/swnode.o
2025-10-31T05:46:28.6637380Z CC [M] fs/gfs2/export.o
2025-10-31T05:46:28.7497391Z CC [M] net/llc/af_llc.o
2025-10-31T05:46:29.2729162Z CC [M] fs/gfs2/file.o
2025-10-31T05:46:29.4747202Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_sync.o
2025-10-31T05:46:29.7359695Z CC drivers/base/devtmpfs.o
2025-10-31T05:46:30.4822248Z CC [M] net/llc/llc_station.o
2025-10-31T05:46:30.6453464Z CC [M] drivers/gpu/drm/radeon/kv_smc.o
2025-10-31T05:46:30.7134536Z CC drivers/base/isa.o
2025-10-31T05:46:30.9093200Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.o
2025-10-31T05:46:30.9320664Z CC [M] fs/gfs2/ops_fstype.o
2025-10-31T05:46:31.3900646Z CC drivers/base/node.o
2025-10-31T05:46:31.6078142Z CC [M] net/llc/llc_proc.o
2025-10-31T05:46:31.6360662Z CC [M] drivers/gpu/drm/radeon/kv_dpm.o
2025-10-31T05:46:32.0239259Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.o
2025-10-31T05:46:32.5211592Z CC [M] fs/gfs2/inode.o
2025-10-31T05:46:32.6496244Z CC drivers/base/memory.o
2025-10-31T05:46:32.7344475Z CC [M] net/llc/sysctl_net_llc.o
2025-10-31T05:46:33.3425131Z LD [M] net/llc/llc.o
2025-10-31T05:46:33.3598271Z LD [M] net/llc/llc2.o
2025-10-31T05:46:33.4471297Z CC [M] net/tls/tls_main.o
2025-10-31T05:46:33.6449344Z CC drivers/base/module.o
2025-10-31T05:46:33.9977722Z CC [M] drivers/gpu/drm/radeon/ci_smc.o
2025-10-31T05:46:34.0633083Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_virt.o
2025-10-31T05:46:34.0823576Z CC drivers/base/hypervisor.o
2025-10-31T05:46:34.4391198Z CC [M] fs/gfs2/quota.o
2025-10-31T05:46:34.5214229Z CC drivers/base/pinctrl.o
2025-10-31T05:46:34.7446225Z CC [M] drivers/gpu/drm/radeon/ci_dpm.o
2025-10-31T05:46:35.1172526Z CC [M] net/tls/tls_sw.o
2025-10-31T05:46:35.2046100Z CC drivers/base/devcoredump.o
2025-10-31T05:46:35.3189844Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.o
2025-10-31T05:46:36.0011498Z CC drivers/base/platform-msi.o
2025-10-31T05:46:36.5708330Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vf_error.o
2025-10-31T05:46:36.6184794Z AR drivers/base/built-in.a
2025-10-31T05:46:36.6519869Z CC [M] fs/gfs2/recovery.o
2025-10-31T05:46:36.7340284Z AR drivers/block/rnbd/built-in.a
2025-10-31T05:46:36.7560839Z CC [M] drivers/block/rnbd/rnbd-clt.o
2025-10-31T05:46:37.5780492Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_sched.o
2025-10-31T05:46:37.7848118Z CC [M] fs/gfs2/rgrp.o
2025-10-31T05:46:38.2585823Z CC [M] drivers/block/rnbd/rnbd-clt-sysfs.o
2025-10-31T05:46:38.4449044Z CC [M] net/tls/tls_proc.o
2025-10-31T05:46:38.5000472Z CC [M] drivers/gpu/drm/radeon/dce6_afmt.o
2025-10-31T05:46:38.5365119Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.o
2025-10-31T05:46:39.5688968Z CC [M] drivers/gpu/drm/radeon/radeon_vm.o
2025-10-31T05:46:39.6862875Z CC [M] drivers/block/rnbd/rnbd-common.o
2025-10-31T05:46:39.7070872Z CC [M] net/tls/trace.o
2025-10-31T05:46:39.9627985Z CC [M] fs/gfs2/super.o
2025-10-31T05:46:40.3124043Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ids.o
2025-10-31T05:46:40.4430344Z CC [M] drivers/block/rnbd/rnbd-srv.o
2025-10-31T05:46:40.7740747Z CC [M] net/tls/tls_device.o
2025-10-31T05:46:41.3627712Z CC [M] drivers/gpu/drm/radeon/radeon_ucode.o
2025-10-31T05:46:41.5729111Z CC [M] fs/gfs2/sys.o
2025-10-31T05:46:41.7705196Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.o
2025-10-31T05:46:41.8324269Z CC [M] drivers/block/rnbd/rnbd-srv-dev.o
2025-10-31T05:46:42.0621223Z CC [M] drivers/gpu/drm/radeon/radeon_ib.o
2025-10-31T05:46:42.7202582Z CC [M] fs/gfs2/trans.o
2025-10-31T05:46:42.7730376Z CC [M] drivers/block/rnbd/rnbd-srv-sysfs.o
2025-10-31T05:46:42.9099766Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_mmhub.o
2025-10-31T05:46:42.9273711Z CC [M] drivers/gpu/drm/radeon/radeon_sync.o
2025-10-31T05:46:43.0140009Z CC [M] net/tls/tls_device_fallback.o
2025-10-31T05:46:43.6554254Z LD [M] drivers/block/rnbd/rnbd-client.o
2025-10-31T05:46:43.6825787Z LD [M] drivers/block/rnbd/rnbd-server.o
2025-10-31T05:46:43.7613255Z CC [M] fs/gfs2/util.o
2025-10-31T05:46:43.7661268Z CC [M] drivers/block/xen-blkback/blkback.o
2025-10-31T05:46:43.8354207Z CC [M] drivers/gpu/drm/radeon/radeon_audio.o
2025-10-31T05:46:44.1669491Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_xgmi.o
2025-10-31T05:46:44.6380087Z CC [M] fs/gfs2/lock_dlm.o
2025-10-31T05:46:44.6645937Z LD [M] net/tls/tls.o
2025-10-31T05:46:44.7955774Z CC [M] net/key/af_key.o
2025-10-31T05:46:45.0557224Z CC [M] drivers/gpu/drm/radeon/radeon_dp_auxch.o
2025-10-31T05:46:45.4327841Z CC [M] drivers/block/xen-blkback/xenbus.o
2025-10-31T05:46:45.5621071Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_csa.o
2025-10-31T05:46:46.0420643Z CC [M] drivers/gpu/drm/radeon/radeon_dp_mst.o
2025-10-31T05:46:46.1175988Z LD [M] fs/gfs2/gfs2.o
2025-10-31T05:46:46.2384184Z CC [M] fs/f2fs/dir.o
2025-10-31T05:46:46.5751353Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ras.o
2025-10-31T05:46:47.2104507Z CC [M] drivers/gpu/drm/radeon/radeon_mn.o
2025-10-31T05:46:47.4987489Z LD [M] drivers/block/xen-blkback/xen-blkback.o
2025-10-31T05:46:47.5941138Z CC [M] drivers/block/drbd/drbd_bitmap.o
2025-10-31T05:46:47.9225601Z CC [M] net/bridge/netfilter/nft_meta_bridge.o
2025-10-31T05:46:48.0206464Z CC [M] drivers/gpu/drm/radeon/r600_dma.o
2025-10-31T05:46:48.1379851Z CC [M] fs/f2fs/file.o
2025-10-31T05:46:48.7187497Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vm_cpu.o
2025-10-31T05:46:49.0023416Z CC [M] net/bridge/netfilter/nft_reject_bridge.o
2025-10-31T05:46:49.1115103Z CC [M] drivers/gpu/drm/radeon/rv770_dma.o
2025-10-31T05:46:49.7723958Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vm_sdma.o
2025-10-31T05:46:50.0096997Z CC [M] drivers/gpu/drm/radeon/evergreen_dma.o
2025-10-31T05:46:50.2254235Z CC [M] drivers/block/drbd/drbd_proc.o
2025-10-31T05:46:50.5044781Z CC [M] net/bridge/netfilter/nf_conntrack_bridge.o
2025-10-31T05:46:50.8544392Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.o
2025-10-31T05:46:51.0072746Z CC [M] drivers/gpu/drm/radeon/ni_dma.o
2025-10-31T05:46:51.5551067Z CC [M] drivers/block/drbd/drbd_worker.o
2025-10-31T05:46:52.0036108Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.o
2025-10-31T05:46:52.1483733Z CC [M] net/bridge/netfilter/nf_log_bridge.o
2025-10-31T05:46:52.1634864Z CC [M] drivers/gpu/drm/radeon/si_dma.o
2025-10-31T05:46:53.1668395Z CC [M] net/bridge/netfilter/ebtables.o
2025-10-31T05:46:53.3364936Z CC [M] drivers/gpu/drm/radeon/cik_sdma.o
2025-10-31T05:46:53.4416738Z CC [M] fs/f2fs/inode.o
2025-10-31T05:46:53.5705137Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_nbio.o
2025-10-31T05:46:54.1685724Z CC [M] drivers/block/drbd/drbd_receiver.o
2025-10-31T05:46:54.6675304Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_umc.o
2025-10-31T05:46:54.7484333Z CC [M] drivers/gpu/drm/radeon/radeon_uvd.o
2025-10-31T05:46:55.4121815Z CC [M] fs/f2fs/namei.o
2025-10-31T05:46:55.8869941Z CC [M] drivers/gpu/drm/amd/amdgpu/smu_v11_0_i2c.o
2025-10-31T05:46:56.0452397Z CC [M] drivers/gpu/drm/radeon/uvd_v1_0.o
2025-10-31T05:46:56.0823832Z CC [M] net/bridge/netfilter/ebtable_broute.o
2025-10-31T05:46:57.2622385Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.o
2025-10-31T05:46:57.2896995Z CC [M] drivers/gpu/drm/radeon/uvd_v2_2.o
2025-10-31T05:46:57.3182254Z CC [M] net/bridge/netfilter/ebtable_filter.o
2025-10-31T05:46:57.5321402Z CC [M] fs/f2fs/hash.o
2025-10-31T05:46:58.2252952Z CC [M] drivers/gpu/drm/radeon/uvd_v3_1.o
2025-10-31T05:46:58.2817201Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_rap.o
2025-10-31T05:46:58.3526394Z CC [M] fs/f2fs/super.o
2025-10-31T05:46:58.3769260Z CC [M] net/bridge/netfilter/ebtable_nat.o
2025-10-31T05:46:59.0536085Z CC [M] drivers/gpu/drm/radeon/uvd_v4_2.o
2025-10-31T05:46:59.2323869Z CC [M] drivers/block/drbd/drbd_req.o
2025-10-31T05:46:59.3184851Z CC [M] net/bridge/netfilter/ebt_802_3.o
2025-10-31T05:46:59.3526157Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_pmu.o
2025-10-31T05:46:59.9412959Z CC [M] drivers/gpu/drm/radeon/radeon_vce.o
2025-10-31T05:47:00.4845118Z CC [M] net/bridge/netfilter/ebt_among.o
2025-10-31T05:47:00.5297940Z CC [M] drivers/gpu/drm/amd/amdgpu/cik.o
2025-10-31T05:47:01.2306297Z CC [M] drivers/gpu/drm/radeon/vce_v1_0.o
2025-10-31T05:47:01.6415010Z CC [M] drivers/block/drbd/drbd_actlog.o
2025-10-31T05:47:02.0864058Z CC [M] net/bridge/netfilter/ebt_arp.o
2025-10-31T05:47:02.2653141Z CC [M] drivers/gpu/drm/amd/amdgpu/cik_ih.o
2025-10-31T05:47:02.3525055Z CC [M] drivers/gpu/drm/radeon/vce_v2_0.o
2025-10-31T05:47:03.3201200Z CC [M] net/bridge/netfilter/ebt_ip.o
2025-10-31T05:47:03.3944334Z CC [M] drivers/gpu/drm/radeon/radeon_atpx_handler.o
2025-10-31T05:47:03.4653105Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_v8_0.o
2025-10-31T05:47:03.6911356Z CC [M] drivers/block/drbd/drbd_main.o
2025-10-31T05:47:04.1637869Z CC [M] drivers/gpu/drm/radeon/radeon_acpi.o
2025-10-31T05:47:04.4468527Z CC [M] fs/f2fs/inline.o
2025-10-31T05:47:04.5665548Z CC [M] net/bridge/netfilter/ebt_ip6.o
2025-10-31T05:47:05.1507199Z MKREG drivers/gpu/drm/radeon/r100_reg_safe.h
2025-10-31T05:47:05.1581023Z MKREG drivers/gpu/drm/radeon/rn50_reg_safe.h
2025-10-31T05:47:05.1649033Z MKREG drivers/gpu/drm/radeon/r300_reg_safe.h
2025-10-31T05:47:05.1756382Z MKREG drivers/gpu/drm/radeon/r420_reg_safe.h
2025-10-31T05:47:05.1872927Z CC [M] drivers/gpu/drm/radeon/rs600.o
2025-10-31T05:47:05.8807663Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v7_0.o
2025-10-31T05:47:05.9450930Z CC [M] net/bridge/netfilter/ebt_limit.o
2025-10-31T05:47:06.6061543Z CC [M] drivers/gpu/drm/radeon/rv515.o
2025-10-31T05:47:06.6295146Z CC [M] fs/f2fs/checkpoint.o
2025-10-31T05:47:07.1798120Z CC [M] net/bridge/netfilter/ebt_mark_m.o
2025-10-31T05:47:07.7403838Z CC [M] drivers/block/drbd/drbd_strings.o
2025-10-31T05:47:07.9220285Z CC [M] drivers/block/drbd/drbd_nl.o
2025-10-31T05:47:08.2170532Z CC [M] net/bridge/netfilter/ebt_pkttype.o
2025-10-31T05:47:09.0709459Z CC [M] drivers/gpu/drm/amd/amdgpu/cik_sdma.o
2025-10-31T05:47:09.2756001Z CC [M] fs/f2fs/gc.o
2025-10-31T05:47:09.2815170Z CC [M] net/bridge/netfilter/ebt_stp.o
2025-10-31T05:47:09.5007094Z CC [M] drivers/gpu/drm/radeon/r200.o
2025-10-31T05:47:10.5178974Z CC [M] net/bridge/netfilter/ebt_vlan.o
2025-10-31T05:47:10.6596908Z CC [M] drivers/gpu/drm/radeon/r600_cs.o
2025-10-31T05:47:11.1607583Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v4_2.o
2025-10-31T05:47:11.7527659Z CC [M] net/bridge/netfilter/ebt_arpreply.o
2025-10-31T05:47:12.3707829Z CC [M] fs/f2fs/data.o
2025-10-31T05:47:12.6284826Z CC [M] drivers/block/drbd/drbd_interval.o
2025-10-31T05:47:12.6961004Z CC [M] drivers/gpu/drm/amd/amdgpu/vce_v2_0.o
2025-10-31T05:47:12.8590384Z CC [M] net/bridge/netfilter/ebt_mark.o
2025-10-31T05:47:13.1534266Z CC [M] drivers/gpu/drm/radeon/evergreen_cs.o
2025-10-31T05:47:13.1787462Z CC [M] drivers/block/drbd/drbd_state.o
2025-10-31T05:47:13.8649998Z CC [M] drivers/gpu/drm/amd/amdgpu/si.o
2025-10-31T05:47:14.0047523Z CC [M] net/bridge/netfilter/ebt_dnat.o
2025-10-31T05:47:15.4065011Z CC [M] net/bridge/netfilter/ebt_redirect.o
2025-10-31T05:47:15.6260948Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v6_0.o
2025-10-31T05:47:16.0813393Z CC [M] drivers/block/drbd/drbd_nla.o
2025-10-31T05:47:16.3803691Z CC [M] drivers/gpu/drm/radeon/r100.o
2025-10-31T05:47:16.6068296Z CC [M] net/bridge/netfilter/ebt_snat.o
2025-10-31T05:47:16.9391822Z CC [M] drivers/block/drbd/drbd_debugfs.o
2025-10-31T05:47:17.1078766Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v6_0.o
2025-10-31T05:47:17.6162601Z CC [M] net/bridge/netfilter/ebt_log.o
2025-10-31T05:47:17.7395025Z CC [M] fs/f2fs/node.o
2025-10-31T05:47:18.6532856Z LD [M] drivers/block/drbd/drbd.o
2025-10-31T05:47:18.7924625Z CC [M] drivers/block/mtip32xx/mtip32xx.o
2025-10-31T05:47:18.8391636Z CC [M] net/bridge/netfilter/ebt_nflog.o
2025-10-31T05:47:19.7261876Z CC [M] drivers/gpu/drm/radeon/r300.o
2025-10-31T05:47:19.7959020Z CC [M] drivers/gpu/drm/amd/amdgpu/si_ih.o
2025-10-31T05:47:20.1319149Z CC [M] net/bridge/br.o
2025-10-31T05:47:21.0877630Z CC [M] drivers/gpu/drm/amd/amdgpu/si_dma.o
2025-10-31T05:47:21.4611396Z CC [M] net/bridge/br_device.o
2025-10-31T05:47:21.5714871Z CC [M] drivers/gpu/drm/radeon/r420.o
2025-10-31T05:47:21.8430939Z CC [M] drivers/block/rsxx/config.o
2025-10-31T05:47:22.0654379Z CC [M] fs/f2fs/segment.o
2025-10-31T05:47:22.6005843Z CC [M] drivers/block/rsxx/core.o
2025-10-31T05:47:22.6800212Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_v6_0.o
2025-10-31T05:47:22.7105764Z LD [M] drivers/gpu/drm/radeon/radeon.o
2025-10-31T05:47:22.9043617Z CC [M] net/bridge/br_fdb.o
2025-10-31T05:47:23.2338531Z AR drivers/misc/eeprom/built-in.a
2025-10-31T05:47:23.2456142Z CC [M] drivers/misc/eeprom/at24.o
2025-10-31T05:47:23.8260488Z CC [M] drivers/block/rsxx/cregs.o
2025-10-31T05:47:24.4629028Z CC [M] drivers/misc/eeprom/eeprom.o
2025-10-31T05:47:24.8386327Z CC [M] drivers/block/rsxx/dev.o
2025-10-31T05:47:25.1393000Z CC [M] drivers/misc/eeprom/max6875.o
2025-10-31T05:47:25.2060150Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v3_1.o
2025-10-31T05:47:25.2308945Z CC [M] net/bridge/br_forward.o
2025-10-31T05:47:25.6312413Z CC [M] drivers/block/rsxx/dma.o
2025-10-31T05:47:25.6857067Z CC [M] drivers/misc/eeprom/eeprom_93cx6.o
2025-10-31T05:47:26.1249055Z CC [M] drivers/misc/eeprom/idt_89hpesx.o
2025-10-31T05:47:26.5763614Z CC [M] drivers/gpu/drm/amd/amdgpu/vi.o
2025-10-31T05:47:26.7904604Z CC [M] net/bridge/br_if.o
2025-10-31T05:47:27.0908612Z LD [M] drivers/block/rsxx/rsxx.o
2025-10-31T05:47:27.1660640Z CC [M] drivers/misc/eeprom/ee1004.o
2025-10-31T05:47:27.1858439Z CC [M] drivers/block/zram/zcomp.o
2025-10-31T05:47:27.7667333Z CC [M] fs/f2fs/recovery.o
2025-10-31T05:47:27.8801826Z CC [M] drivers/block/zram/zram_drv.o
2025-10-31T05:47:28.0080014Z AR drivers/misc/cb710/built-in.a
2025-10-31T05:47:28.0313332Z CC [M] drivers/misc/cb710/core.o
2025-10-31T05:47:28.1326006Z CC [M] drivers/gpu/drm/amd/amdgpu/mxgpu_vi.o
2025-10-31T05:47:28.4198555Z CC [M] net/bridge/br_input.o
2025-10-31T05:47:29.0460356Z CC [M] drivers/misc/cb710/sgbuf2.o
2025-10-31T05:47:29.3070892Z CC [M] drivers/gpu/drm/amd/amdgpu/nbio_v6_1.o
2025-10-31T05:47:29.4820295Z LD [M] drivers/block/zram/zram.o
2025-10-31T05:47:29.5264100Z CC [M] drivers/block/null_blk/main.o
2025-10-31T05:47:29.6403693Z CC [M] net/bridge/br_ioctl.o
2025-10-31T05:47:29.7700746Z CC [M] fs/f2fs/shrinker.o
2025-10-31T05:47:29.9780040Z LD [M] drivers/misc/cb710/cb710.o
2025-10-31T05:47:30.0704561Z AR drivers/misc/ti-st/built-in.a
2025-10-31T05:47:30.0949363Z CC [M] drivers/misc/ti-st/st_core.o
2025-10-31T05:47:30.5272355Z CC [M] fs/f2fs/extent_cache.o
2025-10-31T05:47:30.7855035Z CC [M] drivers/gpu/drm/amd/amdgpu/soc15.o
2025-10-31T05:47:30.9808043Z CC [M] net/bridge/br_stp.o
2025-10-31T05:47:31.3904535Z CC [M] drivers/block/null_blk/trace.o
2025-10-31T05:47:31.4672494Z CC [M] drivers/misc/ti-st/st_kim.o
2025-10-31T05:47:32.0901720Z CC [M] drivers/block/null_blk/zoned.o
2025-10-31T05:47:32.1970121Z CC [M] fs/f2fs/sysfs.o
2025-10-31T05:47:32.2687168Z CC [M] net/bridge/br_stp_bpdu.o
2025-10-31T05:47:32.5027288Z CC [M] drivers/gpu/drm/amd/amdgpu/emu_soc.o
2025-10-31T05:47:32.5598555Z CC [M] drivers/misc/ti-st/st_ll.o
2025-10-31T05:47:33.3305833Z LD [M] drivers/misc/ti-st/st_drv.o
2025-10-31T05:47:33.3745933Z AR drivers/misc/lis3lv02d/built-in.a
2025-10-31T05:47:33.3928941Z CC [M] drivers/misc/lis3lv02d/lis3lv02d.o
2025-10-31T05:47:33.3980966Z CC [M] drivers/gpu/drm/amd/amdgpu/mxgpu_ai.o
2025-10-31T05:47:33.4692318Z CC [M] net/bridge/br_stp_if.o
2025-10-31T05:47:33.4880248Z LD [M] drivers/block/null_blk/null_blk.o
2025-10-31T05:47:33.5592629Z AR drivers/block/built-in.a
2025-10-31T05:47:33.5797672Z CC [M] drivers/block/floppy.o
2025-10-31T05:47:33.7006522Z CC [M] fs/f2fs/debug.o
2025-10-31T05:47:34.7221180Z CC [M] drivers/misc/lis3lv02d/lis3lv02d_i2c.o
2025-10-31T05:47:34.7506201Z CC [M] drivers/gpu/drm/amd/amdgpu/nbio_v7_0.o
2025-10-31T05:47:34.8372872Z CC [M] net/bridge/br_stp_timer.o
2025-10-31T05:47:34.9161438Z CC [M] fs/f2fs/xattr.o
2025-10-31T05:47:35.8145591Z AR drivers/misc/cardreader/built-in.a
2025-10-31T05:47:35.8426676Z CC [M] drivers/misc/cardreader/alcor_pci.o
2025-10-31T05:47:36.0395145Z CC [M] drivers/gpu/drm/amd/amdgpu/vega10_reg_init.o
2025-10-31T05:47:36.1104037Z CC [M] net/bridge/br_netlink.o
2025-10-31T05:47:36.3200540Z CC [M] fs/f2fs/acl.o
2025-10-31T05:47:36.7415056Z CC [M] drivers/misc/cardreader/rtsx_pcr.o
2025-10-31T05:47:37.0852919Z CC [M] drivers/block/brd.o
2025-10-31T05:47:37.3381072Z CC [M] drivers/gpu/drm/amd/amdgpu/vega20_reg_init.o
2025-10-31T05:47:37.4562444Z CC [M] fs/f2fs/verity.o
2025-10-31T05:47:38.0836747Z CC [M] drivers/block/loop.o
2025-10-31T05:47:38.1694440Z CC [M] net/bridge/br_netlink_tunnel.o
2025-10-31T05:47:38.3580738Z CC [M] fs/f2fs/compress.o
2025-10-31T05:47:38.4970100Z CC [M] drivers/misc/cardreader/rts5209.o
2025-10-31T05:47:38.5777498Z CC [M] drivers/gpu/drm/amd/amdgpu/nbio_v7_4.o
2025-10-31T05:47:39.2594589Z CC [M] drivers/misc/cardreader/rts5229.o
2025-10-31T05:47:39.3759708Z CC [M] net/bridge/br_arp_nd_proxy.o
2025-10-31T05:47:40.0159705Z CC [M] drivers/gpu/drm/amd/amdgpu/nbio_v2_3.o
2025-10-31T05:47:40.0604321Z CC [M] drivers/misc/cardreader/rtl8411.o
2025-10-31T05:47:40.0745846Z CC [M] drivers/block/pktcdvd.o
2025-10-31T05:47:40.6821157Z CC [M] net/bridge/br_sysfs_if.o
2025-10-31T05:47:40.7940792Z LD [M] fs/f2fs/f2fs.o
2025-10-31T05:47:40.9270426Z CC [M] drivers/misc/cardreader/rts5227.o
2025-10-31T05:47:41.0436259Z CC [M] fs/ceph/super.o
2025-10-31T05:47:41.3392966Z CC [M] drivers/gpu/drm/amd/amdgpu/nv.o
2025-10-31T05:47:41.7070672Z CC [M] drivers/misc/cardreader/rts5249.o
2025-10-31T05:47:42.0950871Z CC [M] net/bridge/br_sysfs_br.o
2025-10-31T05:47:42.1301502Z CC [M] drivers/block/skd_main.o
2025-10-31T05:47:42.7120380Z CC [M] drivers/gpu/drm/amd/amdgpu/navi10_reg_init.o
2025-10-31T05:47:42.7310084Z CC [M] fs/ceph/inode.o
2025-10-31T05:47:42.8350126Z CC [M] drivers/misc/cardreader/rts5260.o
2025-10-31T05:47:43.4734937Z CC [M] net/bridge/br_nf_core.o
2025-10-31T05:47:43.7141585Z CC [M] drivers/gpu/drm/amd/amdgpu/navi14_reg_init.o
2025-10-31T05:47:43.7272901Z CC [M] drivers/misc/cardreader/rts5261.o
2025-10-31T05:47:44.6104497Z CC [M] drivers/misc/cardreader/rts5228.o
2025-10-31T05:47:44.6309163Z CC [M] drivers/block/umem.o
2025-10-31T05:47:44.6933943Z CC [M] drivers/gpu/drm/amd/amdgpu/arct_reg_init.o
2025-10-31T05:47:44.7053367Z CC [M] net/bridge/br_multicast.o
2025-10-31T05:47:45.5524968Z CC [M] drivers/misc/cardreader/rtsx_usb.o
2025-10-31T05:47:45.7650135Z CC [M] fs/ceph/dir.o
2025-10-31T05:47:45.8057701Z CC [M] drivers/block/nbd.o
2025-10-31T05:47:45.8124558Z CC [M] drivers/gpu/drm/amd/amdgpu/navi12_reg_init.o
2025-10-31T05:47:46.6160009Z LD [M] drivers/misc/cardreader/rtsx_pci.o
2025-10-31T05:47:46.6860776Z CC [M] drivers/misc/ibmasm/module.o
2025-10-31T05:47:47.1170629Z CC [M] drivers/gpu/drm/amd/amdgpu/mxgpu_nv.o
2025-10-31T05:47:47.3340207Z CC [M] drivers/misc/ibmasm/ibmasmfs.o
2025-10-31T05:47:48.2253885Z CC [M] drivers/misc/ibmasm/event.o
2025-10-31T05:47:48.2628103Z CC [M] fs/ceph/file.o
2025-10-31T05:47:48.3707187Z CC [M] drivers/gpu/drm/amd/amdgpu/sienna_cichlid_reg_init.o
2025-10-31T05:47:48.4896087Z CC [M] net/bridge/br_mdb.o
2025-10-31T05:47:48.5067259Z CC [M] drivers/block/cryptoloop.o
2025-10-31T05:47:48.8517895Z CC [M] drivers/misc/ibmasm/command.o
2025-10-31T05:47:49.2650480Z CC [M] drivers/block/virtio_blk.o
2025-10-31T05:47:49.3595231Z CC [M] drivers/gpu/drm/amd/amdgpu/df_v1_7.o
2025-10-31T05:47:49.6521106Z CC [M] drivers/misc/ibmasm/remote.o
2025-10-31T05:47:50.3220091Z CC [M] drivers/misc/ibmasm/heartbeat.o
2025-10-31T05:47:50.3684539Z CC [M] drivers/gpu/drm/amd/amdgpu/df_v3_6.o
2025-10-31T05:47:50.4238336Z CC [M] net/bridge/br_vlan.o
2025-10-31T05:47:50.4314451Z CC [M] drivers/block/xen-blkfront.o
2025-10-31T05:47:50.8977393Z CC [M] drivers/misc/ibmasm/r_heartbeat.o
2025-10-31T05:47:51.4000648Z CC [M] fs/ceph/locks.o
2025-10-31T05:47:51.4670026Z CC [M] drivers/misc/ibmasm/dot_command.o
2025-10-31T05:47:51.6530579Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v7_0.o
2025-10-31T05:47:52.1841327Z CC [M] drivers/misc/ibmasm/lowlevel.o
2025-10-31T05:47:52.7432836Z CC [M] drivers/misc/ibmasm/uart.o
2025-10-31T05:47:52.7965171Z CC [M] fs/ceph/addr.o
2025-10-31T05:47:52.9550547Z CC [M] net/bridge/br_vlan_tunnel.o
2025-10-31T05:47:53.2013848Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v8_0.o
2025-10-31T05:47:53.2326739Z LD [M] drivers/misc/ibmasm/ibmasm.o
2025-10-31T05:47:53.2909367Z CC [M] drivers/misc/c2port/core.o
2025-10-31T05:47:53.7791118Z CC [M] drivers/block/rbd.o
2025-10-31T05:47:54.0268732Z CC [M] drivers/misc/c2port/c2port-duramar2150.o
2025-10-31T05:47:54.4810492Z CC [M] drivers/misc/altera-stapl/altera-lpt.o
2025-10-31T05:47:54.5353461Z CC [M] net/bridge/br_vlan_options.o
2025-10-31T05:47:54.7624786Z CC [M] drivers/misc/altera-stapl/altera-jtag.o
2025-10-31T05:47:54.8700865Z CC [M] drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.o
2025-10-31T05:47:55.7767785Z CC [M] drivers/misc/altera-stapl/altera-comp.o
2025-10-31T05:47:55.9377393Z CC [M] fs/ceph/ioctl.o
2025-10-31T05:47:55.9652462Z CC [M] drivers/misc/altera-stapl/altera.o
2025-10-31T05:47:56.0140889Z CC [M] net/bridge/br_switchdev.o
2025-10-31T05:47:56.3318469Z CC [M] drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.o
2025-10-31T05:47:57.1509304Z CC [M] fs/ceph/export.o
2025-10-31T05:47:57.2382564Z CC [M] net/bridge/br_mrp_switchdev.o
2025-10-31T05:47:57.6049022Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v9_0.o
2025-10-31T05:47:57.9002180Z LD [M] drivers/misc/altera-stapl/altera-stapl.o
2025-10-31T05:47:58.0053195Z CC [M] drivers/misc/mei/hdcp/mei_hdcp.o
2025-10-31T05:47:58.3254891Z CC [M] fs/ceph/caps.o
2025-10-31T05:47:58.3396848Z LD [M] drivers/block/skd.o
2025-10-31T05:47:58.4631023Z CC [M] fs/ceph/snap.o
2025-10-31T05:47:58.5598393Z CC [M] net/bridge/br_mrp.o
2025-10-31T05:47:59.1955260Z CC [M] drivers/misc/mei/init.o
2025-10-31T05:47:59.2512745Z CC [M] drivers/gpu/drm/amd/amdgpu/gfxhub_v1_1.o
2025-10-31T05:47:59.9934286Z CC [M] drivers/misc/mei/hbm.o
2025-10-31T05:48:00.1365830Z CC [M] net/dsa/dsa.o
2025-10-31T05:48:00.1562760Z CC [M] net/bridge/br_mrp_netlink.o
2025-10-31T05:48:00.2329376Z CC [M] drivers/gpu/drm/amd/amdgpu/mmhub_v9_4.o
2025-10-31T05:48:01.2240875Z CC [M] drivers/misc/mei/interrupt.o
2025-10-31T05:48:01.4737222Z CC [M] net/bridge/br_netfilter_hooks.o
2025-10-31T05:48:01.5229478Z CC [M] drivers/gpu/drm/amd/amdgpu/gfxhub_v2_0.o
2025-10-31T05:48:01.8478978Z CC [M] net/dsa/dsa2.o
2025-10-31T05:48:02.3422989Z CC [M] drivers/misc/mei/client.o
2025-10-31T05:48:02.6009552Z CC [M] fs/ceph/xattr.o
2025-10-31T05:48:02.8589912Z CC [M] drivers/gpu/drm/amd/amdgpu/mmhub_v2_0.o
2025-10-31T05:48:03.4000089Z CC [M] net/bridge/br_netfilter_ipv6.o
2025-10-31T05:48:03.5425884Z CC [M] net/dsa/master.o
2025-10-31T05:48:04.0004935Z CC [M] drivers/misc/mei/main.o
2025-10-31T05:48:04.1824207Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v10_0.o
2025-10-31T05:48:04.2376297Z CC [M] fs/ceph/quota.o
2025-10-31T05:48:04.8190503Z LD [M] net/bridge/bridge.o
2025-10-31T05:48:04.8931854Z CC [M] net/dsa/port.o
2025-10-31T05:48:04.9602473Z LD [M] net/bridge/br_netfilter.o
2025-10-31T05:48:05.0391224Z CC [M] net/dsa/slave.o
2025-10-31T05:48:05.0853520Z CC [M] drivers/misc/mei/dma-ring.o
2025-10-31T05:48:05.4929894Z CC [M] fs/ceph/io.o
2025-10-31T05:48:05.6273602Z CC [M] drivers/gpu/drm/amd/amdgpu/gfxhub_v2_1.o
2025-10-31T05:48:06.0775756Z CC [M] drivers/misc/mei/bus.o
2025-10-31T05:48:06.4200447Z CC [M] fs/ceph/mds_client.o
2025-10-31T05:48:06.4999559Z CC [M] drivers/gpu/drm/i915/i915_drv.o
2025-10-31T05:48:06.9589999Z CC [M] drivers/gpu/drm/amd/amdgpu/umc_v6_1.o
2025-10-31T05:48:07.0732375Z CC [M] drivers/misc/mei/bus-fixup.o
2025-10-31T05:48:07.3023441Z CC [M] net/dsa/switch.o
2025-10-31T05:48:07.8029655Z CC [M] drivers/misc/mei/debugfs.o
2025-10-31T05:48:08.2636318Z CC [M] drivers/gpu/drm/amd/amdgpu/umc_v6_0.o
2025-10-31T05:48:08.3872615Z CC [M] drivers/misc/mei/mei-trace.o
2025-10-31T05:48:08.4639467Z CC [M] drivers/gpu/drm/i915/i915_config.o
2025-10-31T05:48:08.7069939Z CC [M] net/dsa/tag_8021q.o
2025-10-31T05:48:09.1907378Z CC [M] drivers/gpu/drm/amd/amdgpu/umc_v8_7.o
2025-10-31T05:48:09.4394908Z CC [M] drivers/misc/mei/pci-me.o
2025-10-31T05:48:09.9462390Z CC [M] drivers/gpu/drm/i915/i915_irq.o
2025-10-31T05:48:10.0303255Z CC [M] net/dsa/tag_ar9331.o
2025-10-31T05:48:10.2888626Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_irq.o
2025-10-31T05:48:10.3333961Z CC [M] drivers/misc/mei/hw-me.o
2025-10-31T05:48:10.6492619Z CC [M] fs/ceph/mdsmap.o
2025-10-31T05:48:11.1680311Z CC [M] net/dsa/tag_brcm.o
2025-10-31T05:48:11.7246428Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ih.o
2025-10-31T05:48:11.9546416Z CC [M] fs/ceph/strings.o
2025-10-31T05:48:12.2343881Z CC [M] drivers/misc/mei/pci-txe.o
2025-10-31T05:48:12.3164943Z CC [M] fs/ceph/ceph_frag.o
2025-10-31T05:48:12.5060945Z CC [M] net/dsa/tag_dsa.o
2025-10-31T05:48:12.6456936Z CC [M] fs/ceph/debugfs.o
2025-10-31T05:48:12.9152278Z CC [M] drivers/gpu/drm/amd/amdgpu/iceland_ih.o
2025-10-31T05:48:13.1330228Z CC [M] drivers/misc/mei/hw-txe.o
2025-10-31T05:48:13.6283026Z CC [M] net/dsa/tag_edsa.o
2025-10-31T05:48:13.6455263Z CC [M] fs/ceph/util.o
2025-10-31T05:48:13.6824056Z CC [M] drivers/gpu/drm/i915/i915_getparam.o
2025-10-31T05:48:14.1130764Z CC [M] fs/ceph/metric.o
2025-10-31T05:48:14.2167941Z CC [M] drivers/gpu/drm/amd/amdgpu/tonga_ih.o
2025-10-31T05:48:14.2607512Z LD [M] drivers/misc/mei/mei.o
2025-10-31T05:48:14.2961423Z LD [M] drivers/misc/mei/mei-me.o
2025-10-31T05:48:14.3320132Z LD [M] drivers/misc/mei/mei-txe.o
2025-10-31T05:48:14.4447487Z CC [M] drivers/misc/vmw_vmci/vmci_context.o
2025-10-31T05:48:14.7902831Z CC [M] drivers/gpu/drm/i915/i915_mitigations.o
2025-10-31T05:48:14.8898162Z CC [M] net/dsa/tag_gswip.o
2025-10-31T05:48:15.3148546Z CC [M] drivers/gpu/drm/amd/amdgpu/cz_ih.o
2025-10-31T05:48:15.3177861Z CC [M] fs/ceph/cache.o
2025-10-31T05:48:15.5782281Z CC [M] drivers/misc/vmw_vmci/vmci_datagram.o
2025-10-31T05:48:15.9958814Z CC [M] drivers/gpu/drm/i915/i915_params.o
2025-10-31T05:48:16.1103968Z CC [M] net/dsa/tag_ksz.o
2025-10-31T05:48:16.1534415Z CC [M] drivers/misc/vmw_vmci/vmci_doorbell.o
2025-10-31T05:48:16.2993262Z CC [M] drivers/gpu/drm/amd/amdgpu/vega10_ih.o
2025-10-31T05:48:16.7930798Z CC [M] fs/ceph/acl.o
2025-10-31T05:48:16.9158892Z CC [M] drivers/misc/vmw_vmci/vmci_driver.o
2025-10-31T05:48:17.2625548Z CC [M] drivers/gpu/drm/i915/i915_pci.o
2025-10-31T05:48:17.3503933Z CC [M] net/dsa/tag_rtl4_a.o
2025-10-31T05:48:17.3563919Z CC [M] drivers/misc/vmw_vmci/vmci_event.o
2025-10-31T05:48:17.5537412Z CC [M] drivers/gpu/drm/amd/amdgpu/navi10_ih.o
2025-10-31T05:48:17.7767047Z LD [M] fs/ceph/ceph.o
2025-10-31T05:48:17.9164962Z CC [M] fs/erofs/super.o
2025-10-31T05:48:17.9209568Z CC [M] drivers/misc/vmw_vmci/vmci_guest.o
2025-10-31T05:48:18.4618278Z CC [M] net/dsa/tag_lan9303.o
2025-10-31T05:48:18.7209476Z CC [M] drivers/gpu/drm/i915/i915_scatterlist.o
2025-10-31T05:48:18.8405244Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_psp.o
2025-10-31T05:48:18.8498241Z CC [M] drivers/misc/vmw_vmci/vmci_handle_array.o
2025-10-31T05:48:19.2685485Z CC [M] fs/erofs/inode.o
2025-10-31T05:48:19.3135984Z CC [M] drivers/misc/vmw_vmci/vmci_host.o
2025-10-31T05:48:19.3568728Z CC [M] drivers/gpu/drm/i915/i915_suspend.o
2025-10-31T05:48:19.7283654Z CC [M] net/dsa/tag_mtk.o
2025-10-31T05:48:20.1443358Z CC [M] fs/erofs/data.o
2025-10-31T05:48:20.4629338Z CC [M] drivers/misc/vmw_vmci/vmci_queue_pair.o
2025-10-31T05:48:20.5334852Z CC [M] drivers/gpu/drm/i915/i915_switcheroo.o
2025-10-31T05:48:20.8453756Z CC [M] drivers/gpu/drm/amd/amdgpu/psp_v3_1.o
2025-10-31T05:48:20.8477312Z CC [M] net/dsa/tag_ocelot.o
2025-10-31T05:48:21.3463729Z CC [M] fs/erofs/namei.o
2025-10-31T05:48:21.7140744Z CC [M] drivers/gpu/drm/i915/i915_sysfs.o
2025-10-31T05:48:21.8411505Z CC [M] drivers/gpu/drm/amd/amdgpu/psp_v10_0.o
2025-10-31T05:48:22.1038575Z CC [M] net/dsa/tag_qca.o
2025-10-31T05:48:22.3434756Z CC [M] fs/erofs/dir.o
2025-10-31T05:48:22.4520629Z CC [M] drivers/misc/vmw_vmci/vmci_resource.o
2025-10-31T05:48:22.9018297Z CC [M] drivers/gpu/drm/amd/amdgpu/psp_v11_0.o
2025-10-31T05:48:22.9929725Z CC [M] fs/erofs/utils.o
2025-10-31T05:48:23.0336991Z CC [M] drivers/misc/vmw_vmci/vmci_route.o
2025-10-31T05:48:23.1190000Z CC [M] drivers/gpu/drm/i915/i915_utils.o
2025-10-31T05:48:23.1851241Z CC [M] net/dsa/tag_sja1105.o
2025-10-31T05:48:23.4179302Z LD [M] drivers/misc/vmw_vmci/vmw_vmci.o
2025-10-31T05:48:23.5341034Z CC [M] drivers/misc/genwqe/card_base.o
2025-10-31T05:48:23.7484294Z CC [M] fs/erofs/xattr.o
2025-10-31T05:48:24.0010452Z CC [M] drivers/gpu/drm/amd/amdgpu/psp_v12_0.o
2025-10-31T05:48:24.1302481Z CC [M] drivers/gpu/drm/i915/intel_device_info.o
2025-10-31T05:48:24.8454348Z CC [M] drivers/misc/genwqe/card_dev.o
2025-10-31T05:48:24.8719847Z CC [M] net/dsa/tag_trailer.o
2025-10-31T05:48:25.0111650Z CC [M] fs/erofs/decompressor.o
2025-10-31T05:48:25.1624008Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_v10_0.o
2025-10-31T05:48:25.5306251Z CC [M] drivers/gpu/drm/i915/intel_dram.o
2025-10-31T05:48:25.9254147Z CC [M] fs/erofs/zmap.o
2025-10-31T05:48:26.0072763Z LD [M] net/dsa/dsa_core.o
2025-10-31T05:48:26.2532621Z CC [M] net/appletalk/aarp.o
2025-10-31T05:48:26.2537514Z CC [M] drivers/misc/genwqe/card_ddcb.o
2025-10-31T05:48:26.8619944Z CC [M] fs/erofs/zdata.o
2025-10-31T05:48:27.1066312Z CC [M] drivers/gpu/drm/i915/intel_memory_region.o
2025-10-31T05:48:27.3624550Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_v11_0.o
2025-10-31T05:48:27.4864718Z CC [M] drivers/misc/genwqe/card_sysfs.o
2025-10-31T05:48:27.8258501Z CC [M] net/appletalk/ddp.o
2025-10-31T05:48:28.1264598Z CC [M] drivers/misc/genwqe/card_debugfs.o
2025-10-31T05:48:28.7690038Z CC [M] drivers/gpu/drm/i915/intel_pch.o
2025-10-31T05:48:28.8511853Z LD [M] fs/erofs/erofs.o
2025-10-31T05:48:28.9679498Z CC [M] fs/vboxsf/dir.o
2025-10-31T05:48:28.9931855Z CC [M] drivers/misc/genwqe/card_utils.o
2025-10-31T05:48:29.7853021Z CC [M] net/appletalk/dev.o
2025-10-31T05:48:29.9865573Z CC [M] drivers/gpu/drm/i915/intel_pm.o
2025-10-31T05:48:29.9996741Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_virtual.o
2025-10-31T05:48:30.1330774Z CC [M] fs/vboxsf/file.o
2025-10-31T05:48:30.4271670Z LD [M] drivers/misc/genwqe/genwqe_card.o
2025-10-31T05:48:30.5374521Z CC [M] drivers/misc/echo/echo.o
2025-10-31T05:48:30.7036557Z CC [M] net/appletalk/atalk_proc.o
2025-10-31T05:48:31.1444640Z CC [M] fs/vboxsf/utils.o
2025-10-31T05:48:31.2297298Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.o
2025-10-31T05:48:31.2945407Z CC [M] drivers/misc/habanalabs/common/habanalabs_drv.o
2025-10-31T05:48:31.7635413Z CC [M] net/appletalk/sysctl_net_atalk.o
2025-10-31T05:48:32.2873870Z CC [M] drivers/misc/habanalabs/common/device.o
2025-10-31T05:48:32.3933896Z CC [M] fs/vboxsf/vboxsf_wrappers.o
2025-10-31T05:48:32.8362310Z LD [M] net/appletalk/appletalk.o
2025-10-31T05:48:32.8928236Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_rlc.o
2025-10-31T05:48:32.9149323Z CC [M] net/netrom/af_netrom.o
2025-10-31T05:48:33.2873021Z CC [M] fs/vboxsf/super.o
2025-10-31T05:48:33.4865310Z CC [M] drivers/misc/habanalabs/common/context.o
2025-10-31T05:48:34.1002892Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v8_0.o
2025-10-31T05:48:34.2777941Z LD [M] fs/vboxsf/vboxsf.o
2025-10-31T05:48:34.3534071Z CC [M] fs/zonefs/super.o
2025-10-31T05:48:34.4224574Z CC [M] drivers/misc/habanalabs/common/asid.o
2025-10-31T05:48:34.5750426Z CC [M] net/netrom/nr_dev.o
2025-10-31T05:48:35.1741034Z CC [M] drivers/misc/habanalabs/common/habanalabs_ioctl.o
2025-10-31T05:48:35.7003841Z CC [M] net/netrom/nr_in.o
2025-10-31T05:48:35.8467726Z CC [M] drivers/gpu/drm/i915/intel_runtime_pm.o
2025-10-31T05:48:35.9671251Z LD [M] fs/zonefs/zonefs.o
2025-10-31T05:48:36.0273603Z CC fs/open.o
2025-10-31T05:48:36.3136968Z CC [M] drivers/misc/habanalabs/common/command_buffer.o
2025-10-31T05:48:36.7070803Z CC [M] net/netrom/nr_loopback.o
2025-10-31T05:48:37.1973360Z CC [M] drivers/misc/habanalabs/common/hw_queue.o
2025-10-31T05:48:37.2970559Z CC [M] drivers/gpu/drm/i915/intel_sideband.o
2025-10-31T05:48:37.8453814Z CC [M] net/netrom/nr_out.o
2025-10-31T05:48:37.9783940Z CC fs/read_write.o
2025-10-31T05:48:38.3063761Z CC [M] drivers/misc/habanalabs/common/irq.o
2025-10-31T05:48:38.7061695Z CC [M] drivers/gpu/drm/i915/intel_uncore.o
2025-10-31T05:48:38.8395434Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v9_0.o
2025-10-31T05:48:38.9673038Z CC [M] net/netrom/nr_route.o
2025-10-31T05:48:38.9980598Z CC [M] drivers/misc/habanalabs/common/sysfs.o
2025-10-31T05:48:39.8874654Z CC [M] drivers/misc/habanalabs/common/hwmon.o
2025-10-31T05:48:40.1124170Z CC fs/file_table.o
2025-10-31T05:48:40.9347259Z CC [M] net/netrom/nr_subr.o
2025-10-31T05:48:40.9893572Z CC [M] drivers/misc/habanalabs/common/memory.o
2025-10-31T05:48:41.2225700Z CC fs/super.o
2025-10-31T05:48:41.9915800Z CC [M] net/netrom/nr_timer.o
2025-10-31T05:48:42.4302621Z CC [M] drivers/gpu/drm/i915/intel_wakeref.o
2025-10-31T05:48:42.5727365Z CC [M] drivers/misc/habanalabs/common/command_submission.o
2025-10-31T05:48:42.9700883Z CC fs/char_dev.o
2025-10-31T05:48:43.1433461Z CC [M] drivers/gpu/drm/i915/vlv_suspend.o
2025-10-31T05:48:43.2776429Z CC [M] net/netrom/sysctl_net_netrom.o
2025-10-31T05:48:43.9445859Z CC [M] drivers/misc/habanalabs/common/mmu.o
2025-10-31T05:48:44.0021510Z CC fs/stat.o
2025-10-31T05:48:44.2924112Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v9_4.o
2025-10-31T05:48:44.4243375Z LD [M] net/netrom/netrom.o
2025-10-31T05:48:44.5722877Z CC [M] net/rose/af_rose.o
2025-10-31T05:48:44.6417908Z CC [M] drivers/misc/habanalabs/common/mmu_v1.o
2025-10-31T05:48:44.7771135Z CC [M] drivers/gpu/drm/i915/i915_memcpy.o
2025-10-31T05:48:45.1087820Z CC [M] drivers/gpu/drm/i915/i915_mm.o
2025-10-31T05:48:45.1341280Z CC fs/exec.o
2025-10-31T05:48:45.4949012Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v10_0.o
2025-10-31T05:48:46.2455411Z CC [M] drivers/misc/habanalabs/common/firmware_if.o
2025-10-31T05:48:46.4454479Z CC [M] drivers/gpu/drm/i915/i915_sw_fence.o
2025-10-31T05:48:46.4684792Z CC [M] net/rose/rose_dev.o
2025-10-31T05:48:47.1533282Z CC [M] drivers/gpu/drm/i915/i915_sw_fence_work.o
2025-10-31T05:48:47.2080818Z CC fs/pipe.o
2025-10-31T05:48:47.2787039Z CC [M] drivers/misc/habanalabs/common/pci.o
2025-10-31T05:48:47.5983462Z CC [M] drivers/gpu/drm/i915/i915_syncmap.o
2025-10-31T05:48:47.7632315Z CC [M] net/rose/rose_in.o
2025-10-31T05:48:48.1299303Z CC [M] drivers/gpu/drm/i915/i915_user_extensions.o
2025-10-31T05:48:48.1343689Z CC [M] drivers/misc/habanalabs/goya/goya.o
2025-10-31T05:48:48.6466318Z CC [M] drivers/gpu/drm/i915/i915_ioc32.o
2025-10-31T05:48:48.9431499Z CC fs/namei.o
2025-10-31T05:48:48.9643944Z CC [M] net/rose/rose_link.o
2025-10-31T05:48:49.8874429Z CC [M] drivers/gpu/drm/i915/i915_debugfs.o
2025-10-31T05:48:50.0944635Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_sdma.o
2025-10-31T05:48:50.3088749Z CC [M] net/rose/rose_loopback.o
2025-10-31T05:48:50.9463167Z CC [M] drivers/misc/habanalabs/goya/goya_security.o
2025-10-31T05:48:51.1318342Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v2_4.o
2025-10-31T05:48:51.4669773Z CC [M] net/rose/rose_out.o
2025-10-31T05:48:52.4583492Z CC [M] drivers/gpu/drm/i915/i915_debugfs_params.o
2025-10-31T05:48:52.6474420Z CC [M] drivers/misc/habanalabs/goya/goya_hwmgr.o
2025-10-31T05:48:52.6499439Z CC [M] net/rose/rose_route.o
2025-10-31T05:48:52.7709085Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v3_0.o
2025-10-31T05:48:52.7918668Z CC fs/fcntl.o
2025-10-31T05:48:53.3170515Z CC [M] drivers/misc/habanalabs/goya/goya_coresight.o
2025-10-31T05:48:53.7687661Z CC [M] drivers/gpu/drm/i915/display/intel_display_debugfs.o
2025-10-31T05:48:54.0791415Z CC fs/ioctl.o
2025-10-31T05:48:54.2383273Z CC [M] drivers/misc/habanalabs/gaudi/gaudi.o
2025-10-31T05:48:54.2935839Z CC [M] net/rose/rose_subr.o
2025-10-31T05:48:54.6294375Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v4_0.o
2025-10-31T05:48:55.3830693Z CC fs/readdir.o
2025-10-31T05:48:55.6380806Z CC [M] net/rose/rose_timer.o
2025-10-31T05:48:56.3421449Z CC [M] drivers/gpu/drm/i915/display/intel_pipe_crc.o
2025-10-31T05:48:56.4547675Z CC fs/select.o
2025-10-31T05:48:56.6336165Z CC [M] net/rose/sysctl_net_rose.o
2025-10-31T05:48:56.9820928Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v5_0.o
2025-10-31T05:48:57.7473822Z LD [M] net/rose/rose.o
2025-10-31T05:48:57.8193952Z CC [M] drivers/gpu/drm/i915/i915_pmu.o
2025-10-31T05:48:57.8852594Z CC [M] net/ax25/ax25_addr.o
2025-10-31T05:48:58.0001591Z CC [M] drivers/misc/habanalabs/gaudi/gaudi_hwmgr.o
2025-10-31T05:48:58.6409068Z CC fs/dcache.o
2025-10-31T05:48:58.8345813Z CC [M] drivers/misc/habanalabs/gaudi/gaudi_security.o
2025-10-31T05:48:59.0008922Z CC [M] net/ax25/ax25_dev.o
2025-10-31T05:48:59.1937295Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v5_2.o
2025-10-31T05:48:59.4807265Z CC [M] drivers/gpu/drm/i915/gt/debugfs_engines.o
2025-10-31T05:49:00.1765151Z CC [M] drivers/misc/habanalabs/gaudi/gaudi_coresight.o
2025-10-31T05:49:00.3624400Z CC [M] net/ax25/ax25_iface.o
2025-10-31T05:49:00.6951016Z CC [M] drivers/gpu/drm/i915/gt/debugfs_gt.o
2025-10-31T05:49:00.8903382Z CC fs/inode.o
2025-10-31T05:49:01.2016991Z CC [M] drivers/misc/habanalabs/common/debugfs.o
2025-10-31T05:49:01.3644592Z CC [M] drivers/gpu/drm/amd/amdgpu/mes_v10_1.o
2025-10-31T05:49:01.5194554Z CC [M] net/ax25/ax25_in.o
2025-10-31T05:49:02.1401427Z CC [M] drivers/gpu/drm/i915/gt/debugfs_gt_pm.o
2025-10-31T05:49:02.6590999Z LD [M] drivers/misc/habanalabs/habanalabs.o
2025-10-31T05:49:02.6789526Z CC [M] net/ax25/ax25_ip.o
2025-10-31T05:49:02.7616992Z CC [M] drivers/misc/uacce/uacce.o
2025-10-31T05:49:02.8159449Z CC fs/attr.o
2025-10-31T05:49:03.0445152Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.o
2025-10-31T05:49:03.6101165Z CC fs/bad_inode.o
2025-10-31T05:49:03.6808596Z AR drivers/misc/built-in.a
2025-10-31T05:49:03.6916136Z CC [M] drivers/misc/ad525x_dpot.o
2025-10-31T05:49:03.7656583Z CC [M] net/ax25/ax25_out.o
2025-10-31T05:49:03.7945462Z CC [M] drivers/gpu/drm/i915/gt/gen2_engine_cs.o
2025-10-31T05:49:04.1169289Z CC fs/file.o
2025-10-31T05:49:04.7401200Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v5_0.o
2025-10-31T05:49:04.7738217Z CC [M] drivers/misc/ad525x_dpot-i2c.o
2025-10-31T05:49:05.0976691Z CC [M] drivers/gpu/drm/i915/gt/gen6_engine_cs.o
2025-10-31T05:49:05.1227646Z CC [M] net/ax25/ax25_route.o
2025-10-31T05:49:05.2994652Z CC [M] drivers/misc/ad525x_dpot-spi.o
2025-10-31T05:49:06.0031131Z CC [M] drivers/misc/ics932s401.o
2025-10-31T05:49:06.0095186Z CC fs/filesystems.o
2025-10-31T05:49:06.1156404Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v6_0.o
2025-10-31T05:49:06.1399388Z CC [M] drivers/gpu/drm/i915/gt/gen6_ppgtt.o
2025-10-31T05:49:06.3643434Z CC [M] net/ax25/ax25_std_in.o
2025-10-31T05:49:06.7504221Z CC [M] drivers/misc/tifm_core.o
2025-10-31T05:49:06.8200034Z CC fs/namespace.o
2025-10-31T05:49:07.6278790Z CC [M] net/ax25/ax25_std_subr.o
2025-10-31T05:49:07.6675466Z CC [M] drivers/misc/tifm_7xx1.o
2025-10-31T05:49:08.0753615Z CC [M] drivers/gpu/drm/i915/gt/gen7_renderclear.o
2025-10-31T05:49:08.1648916Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v7_0.o
2025-10-31T05:49:08.4046926Z CC [M] drivers/misc/phantom.o
2025-10-31T05:49:08.7205959Z CC [M] net/ax25/ax25_std_timer.o
2025-10-31T05:49:09.3443740Z CC [M] drivers/misc/bh1770glc.o
2025-10-31T05:49:09.4245382Z CC [M] drivers/gpu/drm/i915/gt/gen8_ppgtt.o
2025-10-31T05:49:09.7400718Z CC [M] net/ax25/ax25_subr.o
2025-10-31T05:49:10.0825270Z CC fs/seq_file.o
2025-10-31T05:49:10.6058041Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vce.o
2025-10-31T05:49:10.8237578Z CC [M] net/ax25/ax25_timer.o
2025-10-31T05:49:10.9066921Z CC [M] drivers/misc/apds990x.o
2025-10-31T05:49:11.1800491Z CC fs/xattr.o
2025-10-31T05:49:11.3984779Z CC [M] drivers/gpu/drm/i915/gt/intel_breadcrumbs.o
2025-10-31T05:49:11.9574384Z CC [M] net/ax25/ax25_uid.o
2025-10-31T05:49:12.1495262Z CC [M] drivers/gpu/drm/amd/amdgpu/vce_v3_0.o
2025-10-31T05:49:12.3895325Z CC [M] drivers/misc/enclosure.o
2025-10-31T05:49:12.7963535Z CC fs/libfs.o
2025-10-31T05:49:13.0943762Z CC [M] drivers/gpu/drm/i915/gt/intel_context.o
2025-10-31T05:49:13.1352399Z CC [M] drivers/misc/hpilo.o
2025-10-31T05:49:13.1442934Z CC [M] net/ax25/af_ax25.o
2025-10-31T05:49:13.6186672Z CC [M] drivers/gpu/drm/amd/amdgpu/vce_v4_0.o
2025-10-31T05:49:14.1428118Z CC [M] drivers/misc/apds9802als.o
2025-10-31T05:49:14.2083649Z CC fs/fs-writeback.o
2025-10-31T05:49:14.6179019Z CC [M] drivers/gpu/drm/i915/gt/intel_context_param.o
2025-10-31T05:49:14.7939795Z CC [M] drivers/misc/isl29003.o
2025-10-31T05:49:15.2504267Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.o
2025-10-31T05:49:15.2507085Z CC [M] net/ax25/ax25_ds_in.o
2025-10-31T05:49:15.4187623Z CC [M] drivers/misc/isl29020.o
2025-10-31T05:49:15.9694471Z CC [M] drivers/gpu/drm/i915/gt/intel_context_sseu.o
2025-10-31T05:49:16.0025922Z CC [M] drivers/misc/tsl2550.o
2025-10-31T05:49:16.4844892Z CC [M] net/ax25/ax25_ds_subr.o
2025-10-31T05:49:16.6373516Z CC [M] drivers/misc/ds1682.o
2025-10-31T05:49:16.7979125Z CC [M] drivers/gpu/drm/amd/amdgpu/vcn_v1_0.o
2025-10-31T05:49:17.1963843Z CC [M] drivers/gpu/drm/i915/gt/intel_engine_cs.o
2025-10-31T05:49:17.2656616Z CC [M] drivers/misc/hmc6352.o
2025-10-31T05:49:17.5936625Z CC [M] net/ax25/ax25_ds_timer.o
2025-10-31T05:49:17.8378841Z CC [M] drivers/misc/vmw_balloon.o
2025-10-31T05:49:17.9671584Z CC fs/pnode.o
2025-10-31T05:49:18.6752408Z CC fs/splice.o
2025-10-31T05:49:18.8751795Z CC [M] net/ax25/sysctl_net_ax25.o
2025-10-31T05:49:18.9775863Z CC [M] drivers/gpu/drm/amd/amdgpu/vcn_v2_0.o
2025-10-31T05:49:19.2725967Z CC [M] drivers/misc/lattice-ecp3-config.o
2025-10-31T05:49:19.5968767Z CC [M] drivers/gpu/drm/i915/gt/intel_engine_heartbeat.o
2025-10-31T05:49:19.8374948Z LD [M] net/ax25/ax25.o
2025-10-31T05:49:19.9462499Z CC [M] net/can/j1939/address-claim.o
2025-10-31T05:49:20.2818833Z CC [M] drivers/misc/pci_endpoint_test.o
2025-10-31T05:49:20.3204212Z CC fs/sync.o
2025-10-31T05:49:20.8653064Z CC [M] net/can/j1939/bus.o
2025-10-31T05:49:21.0792687Z CC [M] drivers/gpu/drm/i915/gt/intel_engine_pm.o
2025-10-31T05:49:21.3843469Z CC fs/utimes.o
2025-10-31T05:49:21.5213888Z CC [M] drivers/misc/pvpanic.o
2025-10-31T05:49:22.0032852Z CC [M] drivers/gpu/drm/amd/amdgpu/vcn_v2_5.o
2025-10-31T05:49:22.2092810Z CC [M] drivers/gpu/drm/i915/gt/intel_engine_user.o
2025-10-31T05:49:22.3157050Z CC [M] net/can/j1939/main.o
2025-10-31T05:49:22.3368525Z CC [M] drivers/misc/xilinx_sdfec.o
2025-10-31T05:49:22.4407351Z CC fs/d_path.o
2025-10-31T05:49:23.4427542Z CC fs/stack.o
2025-10-31T05:49:23.4630735Z CC [M] drivers/gpu/drm/i915/gt/intel_ggtt.o
2025-10-31T05:49:23.5239195Z CC [M] net/can/j1939/socket.o
2025-10-31T05:49:23.8606896Z CC [M] drivers/gpu/drm/i915/gt/intel_ggtt_fencing.o
2025-10-31T05:49:23.8933429Z CC fs/fs_struct.o
2025-10-31T05:49:24.4155500Z CC fs/statfs.o
2025-10-31T05:49:24.8244471Z CC [M] drivers/gpu/drm/amd/amdgpu/vcn_v3_0.o
2025-10-31T05:49:25.2223137Z CC fs/fs_pin.o
2025-10-31T05:49:25.3905075Z CC [M] net/bluetooth/rfcomm/core.o
2025-10-31T05:49:25.4494017Z CC [M] net/can/j1939/transport.o
2025-10-31T05:49:25.7092841Z CC [M] drivers/gpu/drm/i915/gt/intel_gt.o
2025-10-31T05:49:25.9913482Z CC fs/nsfs.o
2025-10-31T05:49:26.8614824Z CC fs/fs_types.o
2025-10-31T05:49:27.1479305Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_buffer_pool.o
2025-10-31T05:49:27.4773794Z CC fs/fs_context.o
2025-10-31T05:49:27.6941417Z CC [M] net/bluetooth/rfcomm/sock.o
2025-10-31T05:49:27.7983145Z LD [M] net/can/j1939/can-j1939.o
2025-10-31T05:49:27.8744810Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_jpeg.o
2025-10-31T05:49:27.8826364Z CC [M] net/can/af_can.o
2025-10-31T05:49:28.5427893Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_clock_utils.o
2025-10-31T05:49:28.5559414Z CC fs/fs_parser.o
2025-10-31T05:49:29.0783257Z CC [M] drivers/gpu/drm/amd/amdgpu/jpeg_v1_0.o
2025-10-31T05:49:29.2207043Z CC [M] net/bluetooth/rfcomm/tty.o
2025-10-31T05:49:29.4706162Z CC [M] net/can/proc.o
2025-10-31T05:49:29.5244781Z CC fs/fsopen.o
2025-10-31T05:49:29.5790853Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_irq.o
2025-10-31T05:49:30.4648697Z CC [M] drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.o
2025-10-31T05:49:30.5068038Z CC [M] net/can/raw.o
2025-10-31T05:49:30.6122506Z CC fs/init.o
2025-10-31T05:49:30.9650474Z LD [M] net/bluetooth/rfcomm/rfcomm.o
2025-10-31T05:49:31.0725276Z CC [M] net/bluetooth/bnep/core.o
2025-10-31T05:49:31.1053429Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_pm.o
2025-10-31T05:49:31.4289913Z CC fs/kernel_read_file.o
2025-10-31T05:49:31.7399943Z CC [M] drivers/gpu/drm/amd/amdgpu/jpeg_v2_5.o
2025-10-31T05:49:32.0200645Z CC [M] net/can/bcm.o
2025-10-31T05:49:32.0983325Z CC fs/remap_range.o
2025-10-31T05:49:32.5507987Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_pm_irq.o
2025-10-31T05:49:32.6298851Z CC [M] net/bluetooth/bnep/sock.o
2025-10-31T05:49:32.8209078Z CC [M] drivers/gpu/drm/amd/amdgpu/jpeg_v3_0.o
2025-10-31T05:49:33.3398605Z CC fs/buffer.o
2025-10-31T05:49:33.7574169Z CC [M] net/bluetooth/bnep/netdev.o
2025-10-31T05:49:33.8617989Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_requests.o
2025-10-31T05:49:34.0445416Z CC [M] net/can/gw.o
2025-10-31T05:49:34.0581535Z CC [M] drivers/gpu/drm/amd/amdgpu/athub_v1_0.o
2025-10-31T05:49:35.1573781Z LD [M] net/bluetooth/bnep/bnep.o
2025-10-31T05:49:35.1852214Z CC [M] drivers/gpu/drm/i915/gt/intel_gtt.o
2025-10-31T05:49:35.2276838Z CC [M] drivers/gpu/drm/amd/amdgpu/athub_v2_0.o
2025-10-31T05:49:35.2310616Z CC [M] net/bluetooth/cmtp/core.o
2025-10-31T05:49:35.7354507Z CC [M] net/can/isotp.o
2025-10-31T05:49:36.2069431Z CC [M] drivers/gpu/drm/amd/amdgpu/athub_v2_1.o
2025-10-31T05:49:36.5703700Z CC fs/block_dev.o
2025-10-31T05:49:36.7075165Z CC [M] net/bluetooth/cmtp/sock.o
2025-10-31T05:49:37.0399604Z CC [M] drivers/gpu/drm/i915/gt/intel_llc.o
2025-10-31T05:49:37.2061309Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.o
2025-10-31T05:49:37.3542855Z LD [M] net/can/can.o
2025-10-31T05:49:37.3727919Z LD [M] net/can/can-raw.o
2025-10-31T05:49:37.3877174Z LD [M] net/can/can-bcm.o
2025-10-31T05:49:37.4037798Z LD [M] net/can/can-gw.o
2025-10-31T05:49:37.4190687Z LD [M] net/can/can-isotp.o
2025-10-31T05:49:37.4936465Z CC drivers/mfd/88pm860x-core.o
2025-10-31T05:49:37.9804434Z CC [M] net/bluetooth/cmtp/capi.o
2025-10-31T05:49:38.3215781Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_module.o
2025-10-31T05:49:38.4389788Z CC [M] drivers/gpu/drm/i915/gt/intel_lrc.o
2025-10-31T05:49:38.5386026Z CC fs/direct-io.o
2025-10-31T05:49:38.6222749Z CC drivers/mfd/88pm860x-i2c.o
2025-10-31T05:49:39.1169324Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device.o
2025-10-31T05:49:39.2999734Z CC drivers/mfd/htc-i2cpld.o
2025-10-31T05:49:39.3937439Z LD [M] net/bluetooth/cmtp/cmtp.o
2025-10-31T05:49:39.4958376Z CC [M] net/bluetooth/hidp/core.o
2025-10-31T05:49:39.9883753Z CC fs/mpage.o
2025-10-31T05:49:40.2949700Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_chardev.o
2025-10-31T05:49:40.3102689Z CC drivers/mfd/arizona-core.o
2025-10-31T05:49:41.1083583Z CC fs/proc_namespace.o
2025-10-31T05:49:41.4770807Z CC [M] net/bluetooth/hidp/sock.o
2025-10-31T05:49:41.6995691Z CC drivers/mfd/arizona-irq.o
2025-10-31T05:49:41.7612565Z CC fs/eventpoll.o
2025-10-31T05:49:42.1107029Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_topology.o
2025-10-31T05:49:42.2923745Z CC [M] drivers/gpu/drm/i915/gt/intel_mocs.o
2025-10-31T05:49:42.5789507Z LD [M] net/bluetooth/hidp/hidp.o
2025-10-31T05:49:42.6151119Z CC [M] net/bluetooth/af_bluetooth.o
2025-10-31T05:49:42.8603526Z CC drivers/mfd/wm5102-tables.o
2025-10-31T05:49:43.4593204Z CC [M] drivers/gpu/drm/i915/gt/intel_ppgtt.o
2025-10-31T05:49:43.7492338Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_pasid.o
2025-10-31T05:49:44.0000502Z CC drivers/mfd/wm5110-tables.o
2025-10-31T05:49:44.0162300Z CC fs/anon_inodes.o
2025-10-31T05:49:44.2724083Z CC [M] net/bluetooth/hci_core.o
2025-10-31T05:49:44.5334000Z CC fs/signalfd.o
2025-10-31T05:49:44.5813709Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_doorbell.o
2025-10-31T05:49:44.8928841Z CC [M] drivers/gpu/drm/i915/gt/intel_rc6.o
2025-10-31T05:49:45.0428849Z CC drivers/mfd/wm8997-tables.o
2025-10-31T05:49:45.5945708Z CC fs/timerfd.o
2025-10-31T05:49:45.7229872Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_flat_memory.o
2025-10-31T05:49:45.8518812Z CC drivers/mfd/wm8998-tables.o
2025-10-31T05:49:46.2973680Z CC [M] drivers/gpu/drm/i915/gt/intel_renderstate.o
2025-10-31T05:49:46.7125223Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_process.o
2025-10-31T05:49:46.7651201Z CC fs/eventfd.o
2025-10-31T05:49:46.7811899Z CC drivers/mfd/cs47l24-tables.o
2025-10-31T05:49:47.5974893Z CC drivers/mfd/wm8400-core.o
2025-10-31T05:49:47.6403744Z CC [M] drivers/gpu/drm/i915/gt/intel_reset.o
2025-10-31T05:49:47.7823584Z CC fs/userfaultfd.o
2025-10-31T05:49:48.3053805Z CC [M] net/bluetooth/hci_conn.o
2025-10-31T05:49:48.7750626Z CC drivers/mfd/wm831x-core.o
2025-10-31T05:49:48.8103195Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_queue.o
2025-10-31T05:49:49.5769499Z CC fs/aio.o
2025-10-31T05:49:49.5823970Z CC drivers/mfd/wm831x-irq.o
2025-10-31T05:49:49.6146339Z CC [M] drivers/gpu/drm/i915/gt/intel_ring.o
2025-10-31T05:49:49.6618267Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager.o
2025-10-31T05:49:50.2864365Z CC drivers/mfd/wm831x-otp.o
2025-10-31T05:49:50.5238771Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager_cik.o
2025-10-31T05:49:50.7061474Z CC [M] net/bluetooth/hci_event.o
2025-10-31T05:49:50.8112959Z CC drivers/mfd/wm831x-auxadc.o
2025-10-31T05:49:51.1610720Z CC [M] drivers/gpu/drm/i915/gt/intel_ring_submission.o
2025-10-31T05:49:51.3499150Z CC drivers/mfd/wm831x-i2c.o
2025-10-31T05:49:51.7189876Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager_vi.o
2025-10-31T05:49:51.8833923Z CC drivers/mfd/wm831x-spi.o
2025-10-31T05:49:52.1599860Z CC fs/dax.o
2025-10-31T05:49:52.5701499Z CC drivers/mfd/wm8350-core.o
2025-10-31T05:49:52.8244123Z fs/dax.c: In function ‘dax_iomap_iter’:
2025-10-31T05:49:52.8246386Z fs/dax.c:1147:58: warning: passing argument 1 of ‘dax_iomap_sector’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
2025-10-31T05:49:52.8248363Z 1147 | const sector_t sector = dax_iomap_sector(iomap, pos);
2025-10-31T05:49:52.8249979Z | ^~~~~
2025-10-31T05:49:52.8251749Z fs/dax.c:1009:48: note: expected ‘struct iomap *’ but argument is of type ‘const struct iomap *’
2025-10-31T05:49:52.8253521Z 1009 | static sector_t dax_iomap_sector(struct iomap *iomap, loff_t pos)
2025-10-31T05:49:52.8254791Z | ~~~~~~~~~~~~~~^~~~~
2025-10-31T05:49:52.8600653Z CC [M] drivers/gpu/drm/i915/gt/intel_rps.o
2025-10-31T05:49:52.9913883Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager_v9.o
2025-10-31T05:49:53.4949038Z CC drivers/mfd/wm8350-regmap.o
2025-10-31T05:49:54.1494308Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager_v10.o
2025-10-31T05:49:54.4082597Z CC drivers/mfd/wm8350-gpio.o
2025-10-31T05:49:54.4963232Z CC fs/locks.o
2025-10-31T05:49:54.9709295Z CC [M] drivers/gpu/drm/i915/gt/intel_sseu.o
2025-10-31T05:49:55.1114247Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_kernel_queue.o
2025-10-31T05:49:55.3700715Z CC drivers/mfd/wm8350-irq.o
2025-10-31T05:49:55.7361767Z CC [M] net/bluetooth/mgmt.o
2025-10-31T05:49:56.0426407Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_packet_manager.o
2025-10-31T05:49:56.2932596Z CC drivers/mfd/wm8350-i2c.o
2025-10-31T05:49:56.7941159Z CC [M] drivers/gpu/drm/i915/gt/intel_sseu_debugfs.o
2025-10-31T05:49:56.9617029Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_packet_manager_vi.o
2025-10-31T05:49:57.1243618Z CC fs/binfmt_misc.o
2025-10-31T05:49:57.2025136Z CC drivers/mfd/tps65910.o
2025-10-31T05:49:57.8915933Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_packet_manager_v9.o
2025-10-31T05:49:57.9478489Z CC drivers/mfd/tps68470.o
2025-10-31T05:49:58.1904140Z CC [M] drivers/gpu/drm/i915/gt/intel_timeline.o
2025-10-31T05:49:58.2695508Z CC fs/binfmt_script.o
2025-10-31T05:49:58.5603754Z CC drivers/mfd/tps80031.o
2025-10-31T05:49:58.8313375Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_process_queue_manager.o
2025-10-31T05:49:58.8659489Z CC fs/binfmt_elf.o
2025-10-31T05:49:59.2505803Z CC drivers/mfd/twl-core.o
2025-10-31T05:49:59.7228291Z CC [M] drivers/gpu/drm/i915/gt/intel_workarounds.o
2025-10-31T05:49:59.9276148Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager.o
2025-10-31T05:50:00.3653966Z CC drivers/mfd/twl4030-irq.o
2025-10-31T05:50:00.6823655Z CC fs/compat_binfmt_elf.o
2025-10-31T05:50:01.0989531Z CC drivers/mfd/twl6030-irq.o
2025-10-31T05:50:01.8917997Z CC drivers/mfd/twl4030-audio.o
2025-10-31T05:50:01.9576745Z CC [M] drivers/gpu/drm/i915/gt/shmem_utils.o
2025-10-31T05:50:02.0581325Z CC [M] net/bluetooth/hci_sock.o
2025-10-31T05:50:02.0722165Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager_cik.o
2025-10-31T05:50:02.4522488Z CC drivers/mfd/twl6040.o
2025-10-31T05:50:02.7433199Z CC fs/posix_acl.o
2025-10-31T05:50:02.9591709Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager_vi.o
2025-10-31T05:50:03.1012277Z CC [M] drivers/gpu/drm/i915/gt/sysfs_engines.o
2025-10-31T05:50:03.5732891Z CC drivers/mfd/mfd-core.o
2025-10-31T05:50:03.8793809Z CC fs/coredump.o
2025-10-31T05:50:03.9649996Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager_v9.o
2025-10-31T05:50:04.3135023Z CC [M] drivers/gpu/drm/i915/gt/gen6_renderstate.o
2025-10-31T05:50:04.3347825Z CC [M] net/bluetooth/hci_sysfs.o
2025-10-31T05:50:04.4618792Z CC drivers/mfd/ezx-pcap.o
2025-10-31T05:50:04.7819937Z CC [M] drivers/gpu/drm/i915/gt/gen7_renderstate.o
2025-10-31T05:50:04.9730981Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager_v10.o
2025-10-31T05:50:05.2435511Z CC [M] drivers/gpu/drm/i915/gt/gen8_renderstate.o
2025-10-31T05:50:05.3656910Z CC [M] net/bluetooth/l2cap_core.o
2025-10-31T05:50:05.4511385Z CC fs/drop_caches.o
2025-10-31T05:50:05.5384259Z CC drivers/mfd/da903x.o
2025-10-31T05:50:05.6675547Z CC [M] drivers/gpu/drm/i915/gt/gen9_renderstate.o
2025-10-31T05:50:05.9002441Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_interrupt.o
2025-10-31T05:50:06.0538268Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_busy.o
2025-10-31T05:50:06.1475966Z CC fs/fhandle.o
2025-10-31T05:50:06.1946559Z CC drivers/mfd/da9052-irq.o
2025-10-31T05:50:06.8707431Z CC drivers/mfd/da9052-core.o
2025-10-31T05:50:06.8931591Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_events.o
2025-10-31T05:50:06.9925712Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_clflush.o
2025-10-31T05:50:07.0280822Z CC fs/dcookies.o
2025-10-31T05:50:07.6265396Z CC drivers/mfd/da9052-spi.o
2025-10-31T05:50:07.9357617Z CC [M] fs/mbcache.o
2025-10-31T05:50:08.1683767Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/cik_event_interrupt.o
2025-10-31T05:50:08.2466131Z CC drivers/mfd/da9052-i2c.o
2025-10-31T05:50:08.4275433Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_client_blt.o
2025-10-31T05:50:08.7398510Z AR fs/built-in.a
2025-10-31T05:50:08.8563211Z CC drivers/mfd/lp8788.o
2025-10-31T05:50:08.9893462Z CC drivers/mfd/lp8788-irq.o
2025-10-31T05:50:09.0629069Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_int_process_v9.o
2025-10-31T05:50:09.6133726Z CC drivers/mfd/da9055-core.o
2025-10-31T05:50:09.6628920Z CC drivers/mfd/da9055-i2c.o
2025-10-31T05:50:09.9309159Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_dbgdev.o
2025-10-31T05:50:09.9579287Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_context.o
2025-10-31T05:50:10.1620683Z CC drivers/mfd/max77843.o
2025-10-31T05:50:10.1738349Z CC [M] drivers/gpu/drm/mgag200/mgag200_drv.o
2025-10-31T05:50:10.7154661Z CC drivers/mfd/max8925-core.o
2025-10-31T05:50:10.9463290Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_dbgmgr.o
2025-10-31T05:50:11.0947293Z CC [M] net/bluetooth/l2cap_sock.o
2025-10-31T05:50:11.1430406Z CC [M] drivers/gpu/drm/mgag200/mgag200_i2c.o
2025-10-31T05:50:11.8234360Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_smi_events.o
2025-10-31T05:50:11.8609334Z CC drivers/mfd/max8925-i2c.o
2025-10-31T05:50:12.0665723Z CC [M] drivers/gpu/drm/mgag200/mgag200_mm.o
2025-10-31T05:50:12.4631095Z CC drivers/mfd/max8997.o
2025-10-31T05:50:12.9810009Z CC [M] drivers/gpu/drm/mgag200/mgag200_mode.o
2025-10-31T05:50:13.0615371Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_dmabuf.o
2025-10-31T05:50:13.0999930Z CC [M] net/bluetooth/smp.o
2025-10-31T05:50:13.2828487Z CC drivers/mfd/max8997-irq.o
2025-10-31T05:50:13.3023246Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_crat.o
2025-10-31T05:50:14.2691546Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_domain.o
2025-10-31T05:50:14.3774580Z CC drivers/mfd/max8998.o
2025-10-31T05:50:14.6924835Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_iommu.o
2025-10-31T05:50:14.9784574Z LD [M] drivers/gpu/drm/mgag200/mgag200.o
2025-10-31T05:50:15.0468554Z CC [M] net/bluetooth/lib.o
2025-10-31T05:50:15.1729001Z CC drivers/mfd/max8998-irq.o
2025-10-31T05:50:15.6783339Z CC drivers/mfd/abx500-core.o
2025-10-31T05:50:15.7423785Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_debugfs.o
2025-10-31T05:50:15.8487499Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o
2025-10-31T05:50:15.9830274Z CC [M] drivers/nfc/fdp/fdp.o
2025-10-31T05:50:16.0851431Z CC [M] net/bluetooth/ecdh_helper.o
2025-10-31T05:50:16.4891214Z CC drivers/mfd/ab3100-core.o
2025-10-31T05:50:16.6453912Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.o
2025-10-31T05:50:16.7971793Z CC [M] net/bluetooth/hci_request.o
2025-10-31T05:50:17.2012131Z CC [M] drivers/nfc/fdp/i2c.o
2025-10-31T05:50:17.3170830Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.o
2025-10-31T05:50:17.6154275Z CC drivers/mfd/ab3100-otp.o
2025-10-31T05:50:18.3188910Z LD [M] drivers/nfc/fdp/fdp_i2c.o
2025-10-31T05:50:18.4001800Z CC [M] drivers/nfc/pn544/pn544.o
2025-10-31T05:50:18.4641680Z CC drivers/mfd/adp5520.o
2025-10-31T05:50:19.0872544Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_fence.o
2025-10-31T05:50:19.1772757Z CC drivers/mfd/tps6586x.o
2025-10-31T05:50:19.4145778Z CC [M] drivers/nfc/pn544/i2c.o
2025-10-31T05:50:19.6127686Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.o
2025-10-31T05:50:19.6136261Z CC [M] net/bluetooth/mgmt_util.o
2025-10-31T05:50:19.9342582Z CC drivers/mfd/tps65090.o
2025-10-31T05:50:20.3750053Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_internal.o
2025-10-31T05:50:20.4030428Z CC [M] drivers/nfc/pn544/mei.o
2025-10-31T05:50:20.5484797Z CC drivers/mfd/aat2870-core.o
2025-10-31T05:50:20.7986876Z CC [M] net/bluetooth/mgmt_config.o
2025-10-31T05:50:21.0810454Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.o
2025-10-31T05:50:21.2823103Z LD [M] drivers/nfc/pn544/pn544_i2c.o
2025-10-31T05:50:21.3061257Z LD [M] drivers/nfc/pn544/pn544_mei.o
2025-10-31T05:50:21.3997259Z CC [M] drivers/nfc/microread/microread.o
2025-10-31T05:50:21.4555692Z CC drivers/mfd/intel_msic.o
2025-10-31T05:50:21.5970891Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_object.o
2025-10-31T05:50:22.0379852Z CC [M] net/bluetooth/sco.o
2025-10-31T05:50:22.1500502Z CC drivers/mfd/palmas.o
2025-10-31T05:50:22.3346739Z CC [M] drivers/nfc/microread/i2c.o
2025-10-31T05:50:22.7763996Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_arcturus.o
2025-10-31T05:50:22.9239166Z CC drivers/mfd/rc5t583.o
2025-10-31T05:50:23.1136726Z CC [M] drivers/nfc/microread/mei.o
2025-10-31T05:50:23.4326661Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_object_blt.o
2025-10-31T05:50:23.4914288Z CC drivers/mfd/rc5t583-irq.o
2025-10-31T05:50:23.7624367Z LD [M] drivers/nfc/microread/microread_i2c.o
2025-10-31T05:50:23.7745981Z LD [M] drivers/nfc/microread/microread_mei.o
2025-10-31T05:50:23.8251663Z CC [M] drivers/nfc/pn533/pn533.o
2025-10-31T05:50:23.9270172Z CC [M] net/bluetooth/a2mp.o
2025-10-31T05:50:24.1171397Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.o
2025-10-31T05:50:24.3780517Z CC drivers/mfd/sec-core.o
2025-10-31T05:50:24.8608478Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_lmem.o
2025-10-31T05:50:24.8997609Z CC drivers/mfd/sec-irq.o
2025-10-31T05:50:25.3839045Z CC drivers/mfd/syscon.o
2025-10-31T05:50:25.6299520Z CC [M] net/bluetooth/amp.o
2025-10-31T05:50:25.7338984Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.o
2025-10-31T05:50:25.8902517Z CC drivers/mfd/as3711.o
2025-10-31T05:50:25.9609317Z CC [M] drivers/nfc/pn533/usb.o
2025-10-31T05:50:26.0013776Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_mman.o
2025-10-31T05:50:26.4044124Z CC drivers/mfd/intel_soc_pmic_core.o
2025-10-31T05:50:26.9847385Z CC drivers/mfd/intel_soc_pmic_crc.o
2025-10-31T05:50:27.1184969Z CC [M] drivers/nfc/pn533/i2c.o
2025-10-31T05:50:27.1897257Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.o
2025-10-31T05:50:27.3043709Z CC [M] net/bluetooth/leds.o
2025-10-31T05:50:27.3716664Z CC drivers/mfd/intel_soc_pmic_chtwc.o
2025-10-31T05:50:27.8397215Z CC [M] drivers/mfd/88pm800.o
2025-10-31T05:50:27.9814754Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_pages.o
2025-10-31T05:50:28.2737763Z CC [M] drivers/nfc/pn533/uart.o
2025-10-31T05:50:28.3595158Z CC [M] net/bluetooth/msft.o
2025-10-31T05:50:28.4719723Z CC [M] drivers/mfd/88pm80x.o
2025-10-31T05:50:28.6202888Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.o
2025-10-31T05:50:29.0959311Z CC [M] drivers/mfd/88pm805.o
2025-10-31T05:50:29.1924488Z LD [M] drivers/nfc/pn533/pn533_usb.o
2025-10-31T05:50:29.2058992Z LD [M] drivers/nfc/pn533/pn533_i2c.o
2025-10-31T05:50:29.2187619Z LD [M] drivers/nfc/pn533/pn532_uart.o
2025-10-31T05:50:29.2831023Z CC [M] drivers/nfc/nfcmrvl/main.o
2025-10-31T05:50:29.3807876Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_phys.o
2025-10-31T05:50:29.4459879Z CC [M] net/bluetooth/hci_debugfs.o
2025-10-31T05:50:29.6567815Z CC [M] drivers/mfd/sm501.o
2025-10-31T05:50:30.1326605Z CC [M] drivers/nfc/nfcmrvl/fw_dnld.o
2025-10-31T05:50:30.2292852Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_job.o
2025-10-31T05:50:30.8513687Z CC [M] drivers/mfd/bcm590xx.o
2025-10-31T05:50:30.9213536Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_pm.o
2025-10-31T05:50:31.0862676Z CC [M] drivers/nfc/nfcmrvl/usb.o
2025-10-31T05:50:31.1793039Z CC [M] net/bluetooth/6lowpan.o
2025-10-31T05:50:31.4205764Z CC [M] drivers/mfd/bd9571mwv.o
2025-10-31T05:50:31.5324219Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_acp.o
2025-10-31T05:50:31.9827185Z CC [M] drivers/mfd/cros_ec_dev.o
2025-10-31T05:50:32.1053715Z CC [M] drivers/nfc/nfcmrvl/uart.o
2025-10-31T05:50:32.3260233Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_region.o
2025-10-31T05:50:32.4479180Z CC [M] drivers/mfd/htc-pasic3.o
2025-10-31T05:50:32.8938708Z CC [M] drivers/gpu/drm/amd/amdgpu/../acp/acp_hw.o
2025-10-31T05:50:32.9282503Z CC [M] drivers/nfc/nfcmrvl/i2c.o
2025-10-31T05:50:33.0422360Z LD [M] net/bluetooth/bluetooth.o
2025-10-31T05:50:33.1017764Z CC [M] drivers/mfd/lp873x.o
2025-10-31T05:50:33.1846049Z LD [M] net/bluetooth/bluetooth_6lowpan.o
2025-10-31T05:50:33.2578355Z CC [M] net/sunrpc/auth_gss/auth_gss.o
2025-10-31T05:50:33.4910070Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ioc32.o
2025-10-31T05:50:33.7651697Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_shmem.o
2025-10-31T05:50:33.8155819Z CC [M] drivers/nfc/nfcmrvl/spi.o
2025-10-31T05:50:33.8722557Z CC [M] drivers/mfd/tqmx86.o
2025-10-31T05:50:34.0517501Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.o
2025-10-31T05:50:34.3301576Z CC [M] drivers/mfd/arizona-i2c.o
2025-10-31T05:50:34.8277028Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl.o
2025-10-31T05:50:34.8558009Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_usb.o
2025-10-31T05:50:34.8834450Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.o
2025-10-31T05:50:34.8842732Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_uart.o
2025-10-31T05:50:34.9023493Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_i2c.o
2025-10-31T05:50:34.9299042Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_spi.o
2025-10-31T05:50:35.0584918Z CC [M] drivers/nfc/st21nfca/core.o
2025-10-31T05:50:35.0839715Z CC [M] drivers/mfd/arizona-spi.o
2025-10-31T05:50:35.6452870Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_shrinker.o
2025-10-31T05:50:35.7580565Z CC [M] net/sunrpc/auth_gss/gss_generic_token.o
2025-10-31T05:50:36.0279139Z CC [M] drivers/mfd/wcd934x.o
2025-10-31T05:50:36.1456936Z CC [M] drivers/nfc/st21nfca/dep.o
2025-10-31T05:50:36.2283192Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_mn.o
2025-10-31T05:50:36.5657162Z CC [M] net/sunrpc/auth_gss/gss_mech_switch.o
2025-10-31T05:50:36.8129126Z CC [M] drivers/mfd/wm8994-core.o
2025-10-31T05:50:37.1225697Z CC [M] drivers/nfc/st21nfca/se.o
2025-10-31T05:50:37.1815891Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_stolen.o
2025-10-31T05:50:37.3178066Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu11/arcturus_ppt.o
2025-10-31T05:50:37.7099183Z CC [M] drivers/mfd/wm8994-irq.o
2025-10-31T05:50:38.0274895Z CC [M] net/sunrpc/auth_gss/svcauth_gss.o
2025-10-31T05:50:38.0696413Z CC [M] drivers/nfc/st21nfca/vendor_cmds.o
2025-10-31T05:50:38.3742976Z CC [M] drivers/mfd/wm8994-regmap.o
2025-10-31T05:50:38.6355270Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_throttle.o
2025-10-31T05:50:38.8363588Z CC [M] drivers/mfd/madera-core.o
2025-10-31T05:50:39.0623904Z CC [M] drivers/nfc/st21nfca/i2c.o
2025-10-31T05:50:39.4068362Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu11/navi10_ppt.o
2025-10-31T05:50:39.9082306Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_tiling.o
2025-10-31T05:50:39.9274461Z CC [M] drivers/mfd/cs47l15-tables.o
2025-10-31T05:50:40.0281120Z LD [M] drivers/nfc/st21nfca/st21nfca_hci.o
2025-10-31T05:50:40.0571141Z LD [M] drivers/nfc/st21nfca/st21nfca_i2c.o
2025-10-31T05:50:40.1029373Z CC [M] drivers/nfc/st-nci/ndlc.o
2025-10-31T05:50:40.2465654Z CC [M] net/sunrpc/auth_gss/gss_rpc_upcall.o
2025-10-31T05:50:40.6890779Z CC [M] drivers/mfd/cs47l35-tables.o
2025-10-31T05:50:40.9275392Z CC [M] drivers/nfc/st-nci/core.o
2025-10-31T05:50:41.2718095Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_userptr.o
2025-10-31T05:50:41.5533814Z CC [M] net/sunrpc/auth_gss/gss_rpc_xdr.o
2025-10-31T05:50:41.5656744Z CC [M] drivers/mfd/cs47l85-tables.o
2025-10-31T05:50:41.5798968Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu11/sienna_cichlid_ppt.o
2025-10-31T05:50:41.7503791Z CC [M] drivers/nfc/st-nci/se.o
2025-10-31T05:50:42.5333269Z CC [M] drivers/mfd/cs47l90-tables.o
2025-10-31T05:50:42.6601104Z CC [M] drivers/nfc/st-nci/vendor_cmds.o
2025-10-31T05:50:43.0044908Z CC [M] net/sunrpc/auth_gss/trace.o
2025-10-31T05:50:43.1414580Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_wait.o
2025-10-31T05:50:43.4263498Z CC [M] drivers/nfc/st-nci/i2c.o
2025-10-31T05:50:43.5753755Z CC [M] drivers/mfd/cs47l92-tables.o
2025-10-31T05:50:44.0562634Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu11/smu_v11_0.o
2025-10-31T05:50:44.3168561Z CC [M] drivers/nfc/st-nci/spi.o
2025-10-31T05:50:44.3622911Z CC [M] drivers/gpu/drm/i915/gem/i915_gemfs.o
2025-10-31T05:50:44.4004148Z CC [M] drivers/mfd/madera-i2c.o
2025-10-31T05:50:45.1990505Z LD [M] drivers/nfc/st-nci/st-nci.o
2025-10-31T05:50:45.2374403Z LD [M] drivers/nfc/st-nci/st-nci_i2c.o
2025-10-31T05:50:45.2600209Z LD [M] drivers/nfc/st-nci/st-nci_spi.o
2025-10-31T05:50:45.2732714Z CC [M] drivers/mfd/madera-spi.o
2025-10-31T05:50:45.3573775Z CC [M] drivers/nfc/nxp-nci/core.o
2025-10-31T05:50:45.4667136Z CC [M] net/sunrpc/auth_gss/gss_krb5_mech.o
2025-10-31T05:50:45.5656357Z CC [M] drivers/gpu/drm/i915/i915_active.o
2025-10-31T05:50:45.8118881Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu12/renoir_ppt.o
2025-10-31T05:50:45.9660757Z CC [M] drivers/mfd/tps6105x.o
2025-10-31T05:50:46.1994392Z CC [M] drivers/nfc/nxp-nci/firmware.o
2025-10-31T05:50:46.3545818Z CC [M] net/sunrpc/auth_gss/gss_krb5_seal.o
2025-10-31T05:50:46.8046122Z CC [M] drivers/mfd/tps65010.o
2025-10-31T05:50:47.1553509Z CC [M] drivers/nfc/nxp-nci/i2c.o
2025-10-31T05:50:47.1698256Z CC [M] net/sunrpc/auth_gss/gss_krb5_unseal.o
2025-10-31T05:50:47.4298319Z CC [M] drivers/gpu/drm/i915/i915_buddy.o
2025-10-31T05:50:47.5523349Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu12/smu_v12_0.o
2025-10-31T05:50:47.8106382Z CC [M] drivers/mfd/tps6507x.o
2025-10-31T05:50:47.9633737Z CC [M] net/sunrpc/auth_gss/gss_krb5_seqnum.o
2025-10-31T05:50:48.0263644Z LD [M] drivers/nfc/nxp-nci/nxp-nci.o
2025-10-31T05:50:48.0545998Z LD [M] drivers/nfc/nxp-nci/nxp-nci_i2c.o
2025-10-31T05:50:48.1474446Z CC [M] drivers/nfc/s3fwrn5/core.o
2025-10-31T05:50:48.2801058Z CC [M] drivers/mfd/tps65086.o
2025-10-31T05:50:48.5809002Z CC [M] net/sunrpc/auth_gss/gss_krb5_wrap.o
2025-10-31T05:50:48.7158489Z CC [M] drivers/mfd/tps65912-core.o
2025-10-31T05:50:48.9579560Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/amdgpu_smu.o
2025-10-31T05:50:49.1429855Z CC [M] drivers/mfd/tps65912-i2c.o
2025-10-31T05:50:49.1907286Z CC [M] drivers/nfc/s3fwrn5/firmware.o
2025-10-31T05:50:49.2213563Z CC [M] drivers/gpu/drm/i915/i915_cmd_parser.o
2025-10-31T05:50:49.4598910Z CC [M] net/sunrpc/auth_gss/gss_krb5_crypto.o
2025-10-31T05:50:49.8316884Z CC [M] drivers/mfd/tps65912-spi.o
2025-10-31T05:50:50.1202989Z CC [M] drivers/nfc/s3fwrn5/nci.o
2025-10-31T05:50:50.4254924Z CC [M] drivers/mfd/mc13xxx-core.o
2025-10-31T05:50:50.7334680Z CC [M] drivers/gpu/drm/i915/i915_gem_evict.o
2025-10-31T05:50:50.8504747Z CC [M] net/sunrpc/auth_gss/gss_krb5_keys.o
2025-10-31T05:50:50.9082342Z CC [M] drivers/nfc/s3fwrn5/i2c.o
2025-10-31T05:50:50.9791882Z CC [M] drivers/mfd/mc13xxx-spi.o
2025-10-31T05:50:51.0833440Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu_cmn.o
2025-10-31T05:50:51.7306172Z LD [M] net/sunrpc/auth_gss/auth_rpcgss.o
2025-10-31T05:50:51.7471304Z LD [M] drivers/nfc/s3fwrn5/s3fwrn5.o
2025-10-31T05:50:51.7748482Z LD [M] drivers/nfc/s3fwrn5/s3fwrn5_i2c.o
2025-10-31T05:50:51.7786586Z LD [M] net/sunrpc/auth_gss/rpcsec_gss_krb5.o
2025-10-31T05:50:51.8385335Z CC [M] drivers/mfd/mc13xxx-i2c.o
2025-10-31T05:50:51.8454140Z CC [M] net/sunrpc/xprtrdma/transport.o
2025-10-31T05:50:51.8743903Z CC [M] drivers/nfc/st95hf/spi.o
2025-10-31T05:50:52.2280976Z CC [M] drivers/gpu/drm/i915/i915_gem_gtt.o
2025-10-31T05:50:52.2678469Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smumgr.o
2025-10-31T05:50:52.4421634Z CC [M] drivers/mfd/ucb1400_core.o
2025-10-31T05:50:52.5786020Z CC [M] drivers/nfc/st95hf/core.o
2025-10-31T05:50:53.2516643Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smu8_smumgr.o
2025-10-31T05:50:53.3533618Z CC [M] drivers/mfd/axp20x.o
2025-10-31T05:50:53.5369813Z CC [M] net/sunrpc/xprtrdma/rpc_rdma.o
2025-10-31T05:50:53.5844505Z CC [M] drivers/gpu/drm/i915/i915_gem.o
2025-10-31T05:50:53.5943327Z LD [M] drivers/nfc/st95hf/st95hf.o
2025-10-31T05:50:53.6514319Z AR drivers/nfc/built-in.a
2025-10-31T05:50:53.6711865Z CC [M] drivers/nfc/mei_phy.o
2025-10-31T05:50:54.2994154Z CC [M] drivers/mfd/axp20x-i2c.o
2025-10-31T05:50:54.5070226Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/tonga_smumgr.o
2025-10-31T05:50:54.5798894Z CC [M] drivers/nfc/nfcsim.o
2025-10-31T05:50:54.8374150Z CC [M] drivers/mfd/lp3943.o
2025-10-31T05:50:55.4539615Z CC [M] drivers/nfc/port100.o
2025-10-31T05:50:55.5892507Z CC [M] drivers/mfd/ti-lmu.o
2025-10-31T05:50:55.6215956Z CC [M] net/sunrpc/xprtrdma/verbs.o
2025-10-31T05:50:56.0448428Z CC [M] drivers/gpu/drm/i915/i915_globals.o
2025-10-31T05:50:56.1436117Z CC [M] drivers/mfd/da9062-core.o
2025-10-31T05:50:56.7055123Z CC [M] drivers/nfc/trf7970a.o
2025-10-31T05:50:56.7154804Z CC [M] drivers/mfd/da9063-core.o
2025-10-31T05:50:57.1040561Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/fiji_smumgr.o
2025-10-31T05:50:57.1808264Z CC [M] drivers/gpu/drm/i915/i915_query.o
2025-10-31T05:50:57.4241199Z CC [M] drivers/mfd/da9063-irq.o
2025-10-31T05:50:57.9796831Z CC [M] net/sunrpc/xprtrdma/frwr_ops.o
2025-10-31T05:50:58.0033793Z CC [M] drivers/mfd/da9063-i2c.o
2025-10-31T05:50:58.3529596Z CC [M] drivers/gpu/drm/i915/i915_request.o
2025-10-31T05:50:58.4964315Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/polaris10_smumgr.o
2025-10-31T05:50:58.6234499Z CC [M] drivers/mfd/da9150-core.o
2025-10-31T05:50:59.4655371Z CC [M] net/rxrpc/af_rxrpc.o
2025-10-31T05:50:59.4801192Z CC [M] drivers/mfd/max14577.o
2025-10-31T05:50:59.7715844Z CC [M] net/sunrpc/xprtrdma/svc_rdma.o
2025-10-31T05:51:00.2953585Z CC [M] drivers/gpu/drm/i915/i915_scheduler.o
2025-10-31T05:51:00.5705446Z CC [M] drivers/mfd/max77693.o
2025-10-31T05:51:00.8260187Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/iceland_smumgr.o
2025-10-31T05:51:01.0565257Z CC [M] net/sunrpc/xprtrdma/svc_rdma_backchannel.o
2025-10-31T05:51:01.5295159Z CC [M] drivers/gpu/drm/i915/i915_trace_points.o
2025-10-31T05:51:01.5668632Z CC [M] drivers/mfd/max8907.o
2025-10-31T05:51:02.2299164Z CC [M] drivers/mfd/mp2629.o
2025-10-31T05:51:02.7548119Z CC [M] net/sunrpc/xprtrdma/svc_rdma_transport.o
2025-10-31T05:51:02.7899687Z CC [M] drivers/mfd/pcf50633-core.o
2025-10-31T05:51:03.0808797Z CC [M] net/rxrpc/call_accept.o
2025-10-31T05:51:03.2745577Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smu7_smumgr.o
2025-10-31T05:51:03.6815967Z CC [M] drivers/mfd/pcf50633-irq.o
2025-10-31T05:51:04.6286902Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/vega10_smumgr.o
2025-10-31T05:51:04.6529595Z CC [M] drivers/gpu/drm/i915/i915_vma.o
2025-10-31T05:51:04.7025546Z CC [M] net/sunrpc/xprtrdma/svc_rdma_sendto.o
2025-10-31T05:51:04.7076539Z CC [M] drivers/mfd/pcf50633-adc.o
2025-10-31T05:51:04.7366873Z CC [M] net/rxrpc/call_event.o
2025-10-31T05:51:05.8484922Z CC [M] drivers/mfd/pcf50633-gpio.o
2025-10-31T05:51:06.1471146Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smu10_smumgr.o
2025-10-31T05:51:06.4307230Z CC [M] net/rxrpc/call_object.o
2025-10-31T05:51:06.5954717Z CC [M] net/sunrpc/xprtrdma/svc_rdma_recvfrom.o
2025-10-31T05:51:06.6736948Z CC [M] drivers/mfd/kempld-core.o
2025-10-31T05:51:07.3045481Z CC [M] drivers/gpu/drm/i915/intel_region_lmem.o
2025-10-31T05:51:07.4325509Z CC [M] drivers/mfd/intel_quark_i2c_gpio.o
2025-10-31T05:51:07.4341581Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/ci_smumgr.o
2025-10-31T05:51:08.0724226Z CC [M] drivers/mfd/lpc_sch.o
2025-10-31T05:51:08.1755381Z CC [M] net/rxrpc/conn_client.o
2025-10-31T05:51:08.6119443Z CC [M] drivers/gpu/drm/i915/intel_wopcm.o
2025-10-31T05:51:08.6578218Z CC [M] net/sunrpc/xprtrdma/svc_rdma_rw.o
2025-10-31T05:51:08.7214454Z CC [M] drivers/mfd/lpc_ich.o
2025-10-31T05:51:09.5717302Z CC [M] drivers/mfd/rdc321x-southbridge.o
2025-10-31T05:51:10.0519141Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_uc.o
2025-10-31T05:51:10.1639195Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/vega12_smumgr.o
2025-10-31T05:51:10.1869627Z CC [M] drivers/mfd/janz-cmodio.o
2025-10-31T05:51:10.2190127Z CC [M] net/rxrpc/conn_event.o
2025-10-31T05:51:10.4729565Z CC [M] net/sunrpc/xprtrdma/module.o
2025-10-31T05:51:10.9664080Z CC [M] drivers/mfd/vx855.o
2025-10-31T05:51:11.3845078Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_uc_debugfs.o
2025-10-31T05:51:11.5635835Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/vegam_smumgr.o
2025-10-31T05:51:11.7210206Z CC [M] drivers/mfd/wl1273-core.o
2025-10-31T05:51:11.8193570Z CC [M] net/rxrpc/conn_object.o
2025-10-31T05:51:12.3959609Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_uc_fw.o
2025-10-31T05:51:12.4043475Z CC [M] drivers/mfd/si476x-cmd.o
2025-10-31T05:51:13.5833200Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smu9_smumgr.o
2025-10-31T05:51:13.7806935Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc.o
2025-10-31T05:51:13.8117969Z CC [M] drivers/mfd/si476x-prop.o
2025-10-31T05:51:13.8753845Z CC [M] net/rxrpc/conn_service.o
2025-10-31T05:51:14.8403518Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/vega20_smumgr.o
2025-10-31T05:51:14.9189432Z CC [M] drivers/mfd/si476x-i2c.o
2025-10-31T05:51:15.1594363Z CC [M] net/rxrpc/input.o
2025-10-31T05:51:15.1664515Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_ads.o
2025-10-31T05:51:15.5236830Z CC [M] net/sunrpc/xprtrdma/backchannel.o
2025-10-31T05:51:16.2080113Z CC [M] drivers/mfd/intel-lpss.o
2025-10-31T05:51:16.2937091Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_ct.o
2025-10-31T05:51:16.4493757Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/hwmgr.o
2025-10-31T05:51:16.8392834Z CC [M] drivers/mfd/intel-lpss-pci.o
2025-10-31T05:51:16.9831099Z LD [M] net/sunrpc/xprtrdma/rpcrdma.o
2025-10-31T05:51:17.0720572Z CC [M] net/sunrpc/clnt.o
2025-10-31T05:51:17.4568910Z CC [M] net/rxrpc/insecure.o
2025-10-31T05:51:17.4578746Z CC [M] drivers/mfd/intel-lpss-acpi.o
2025-10-31T05:51:17.7246203Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/processpptables.o
2025-10-31T05:51:17.8852170Z CC [M] drivers/mfd/intel_pmc_bxt.o
2025-10-31T05:51:17.9847105Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_debugfs.o
2025-10-31T05:51:18.4855383Z CC [M] drivers/mfd/viperboard.o
2025-10-31T05:51:18.7705478Z CC [M] net/rxrpc/key.o
2025-10-31T05:51:18.8826435Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_fw.o
2025-10-31T05:51:19.1354112Z CC [M] drivers/mfd/lm3533-core.o
2025-10-31T05:51:19.6270821Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/hardwaremanager.o
2025-10-31T05:51:19.8067005Z CC [M] net/sunrpc/xprt.o
2025-10-31T05:51:20.1213984Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_log.o
2025-10-31T05:51:20.3222816Z CC [M] drivers/mfd/lm3533-ctrlbank.o
2025-10-31T05:51:20.8127411Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu8_hwmgr.o
2025-10-31T05:51:20.9371477Z CC [M] drivers/mfd/retu-mfd.o
2025-10-31T05:51:20.9999206Z CC [M] net/rxrpc/local_event.o
2025-10-31T05:51:21.3771176Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.o
2025-10-31T05:51:21.5283677Z CC [M] drivers/mfd/iqs62x.o
2025-10-31T05:51:22.2293561Z CC [M] net/sunrpc/socklib.o
2025-10-31T05:51:22.2969147Z CC [M] drivers/mfd/menf21bmc.o
2025-10-31T05:51:22.3531451Z CC [M] net/rxrpc/local_object.o
2025-10-31T05:51:22.5623569Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_submission.o
2025-10-31T05:51:22.6593170Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/pppcielanes.o
2025-10-31T05:51:22.7579924Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/process_pptables_v1_0.o
2025-10-31T05:51:22.8245229Z CC [M] drivers/mfd/dln2.o
2025-10-31T05:51:23.4860164Z CC [M] net/sunrpc/xprtsock.o
2025-10-31T05:51:23.8075919Z CC [M] net/rxrpc/misc.o
2025-10-31T05:51:23.9554136Z CC [M] drivers/mfd/rt5033.o
2025-10-31T05:51:24.1491025Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/ppatomctrl.o
2025-10-31T05:51:24.4533712Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_huc.o
2025-10-31T05:51:24.7230321Z CC [M] net/rxrpc/net_ns.o
2025-10-31T05:51:25.0101214Z CC [M] drivers/mfd/sky81452.o
2025-10-31T05:51:25.8324683Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_huc_debugfs.o
2025-10-31T05:51:25.8453694Z CC [M] drivers/mfd/intel_soc_pmic_bxtwc.o
2025-10-31T05:51:25.9150033Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/ppatomfwctrl.o
2025-10-31T05:51:25.9677214Z CC [M] net/rxrpc/output.o
2025-10-31T05:51:26.1413644Z CC [M] net/sunrpc/sched.o
2025-10-31T05:51:26.5365052Z CC [M] drivers/mfd/intel_soc_pmic_chtdc_ti.o
2025-10-31T05:51:26.5547944Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_huc_fw.o
2025-10-31T05:51:27.0395265Z CC [M] drivers/mfd/mt6360-core.o
2025-10-31T05:51:27.1818933Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_hwmgr.o
2025-10-31T05:51:27.5579848Z CC [M] drivers/mfd/mt6397-core.o
2025-10-31T05:51:27.7722138Z CC [M] net/rxrpc/peer_event.o
2025-10-31T05:51:28.0453957Z CC [M] drivers/gpu/drm/i915/display/intel_atomic.o
2025-10-31T05:51:28.2645404Z CC [M] drivers/mfd/mt6397-irq.o
2025-10-31T05:51:29.0812202Z CC [M] drivers/mfd/mt6358-irq.o
2025-10-31T05:51:29.3299347Z CC [M] net/rxrpc/peer_object.o
2025-10-31T05:51:29.4157196Z CC [M] drivers/gpu/drm/i915/display/intel_atomic_plane.o
2025-10-31T05:51:29.5874527Z CC [M] drivers/mfd/intel_soc_pmic_mrfld.o
2025-10-31T05:51:30.0611469Z CC [M] drivers/mfd/rave-sp.o
2025-10-31T05:51:30.7084752Z CC [M] drivers/mfd/intel-m10-bmc.o
2025-10-31T05:51:31.1986571Z CC [M] drivers/gpu/drm/i915/display/intel_audio.o
2025-10-31T05:51:31.2912883Z LD [M] drivers/mfd/wm8994.o
2025-10-31T05:51:31.2948904Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_powertune.o
2025-10-31T05:51:31.3061854Z LD [M] drivers/mfd/madera.o
2025-10-31T05:51:31.3105016Z CC [M] net/rxrpc/recvmsg.o
2025-10-31T05:51:31.3488126Z LD [M] drivers/mfd/da9063.o
2025-10-31T05:51:31.3783355Z LD [M] drivers/mfd/pcf50633.o
2025-10-31T05:51:31.4059701Z LD [M] drivers/mfd/si476x-core.o
2025-10-31T05:51:31.4480355Z LD [M] drivers/mfd/mt6397.o
2025-10-31T05:51:31.4780864Z AR drivers/mfd/built-in.a
2025-10-31T05:51:32.0277936Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.o
2025-10-31T05:51:32.5894709Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_thermal.o
2025-10-31T05:51:32.6504472Z drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c: In function ‘vmw_execbuf_process’:
2025-10-31T05:51:32.6507960Z drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c:4240:25: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
2025-10-31T05:51:32.6510628Z 4240 | struct seqno_waiter_rm_context *ctx =
2025-10-31T05:51:32.6512889Z | ^~~~~~
2025-10-31T05:51:32.9318471Z CC [M] net/sunrpc/auth.o
2025-10-31T05:51:32.9704969Z CC [M] drivers/gpu/drm/i915/display/intel_bios.o
2025-10-31T05:51:33.4753752Z CC [M] net/rxrpc/rtt.o
2025-10-31T05:51:33.9694443Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_clockpowergating.o
2025-10-31T05:51:34.1872665Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_gmr.o
2025-10-31T05:51:34.9211717Z CC [M] net/rxrpc/security.o
2025-10-31T05:51:34.9927176Z CC [M] net/sunrpc/auth_null.o
2025-10-31T05:51:35.0410636Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_processpptables.o
2025-10-31T05:51:35.0476230Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_kms.o
2025-10-31T05:51:35.3445659Z CC [M] drivers/gpu/drm/i915/display/intel_bw.o
2025-10-31T05:51:36.1691621Z CC [M] net/rxrpc/sendmsg.o
2025-10-31T05:51:36.2762585Z CC [M] net/sunrpc/auth_unix.o
2025-10-31T05:51:36.6284982Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_hwmgr.o
2025-10-31T05:51:37.1442250Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_drv.o
2025-10-31T05:51:37.2191597Z CC [M] drivers/gpu/drm/i915/display/intel_cdclk.o
2025-10-31T05:51:37.3995276Z CC [M] net/sunrpc/svc.o
2025-10-31T05:51:38.0622816Z CC [M] net/rxrpc/skbuff.o
2025-10-31T05:51:38.6294776Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_fb.o
2025-10-31T05:51:39.4481625Z CC [M] net/rxrpc/utils.o
2025-10-31T05:51:39.7132969Z CC [M] net/sunrpc/svcsock.o
2025-10-31T05:51:39.9472576Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.o
2025-10-31T05:51:40.0641507Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_powertune.o
2025-10-31T05:51:40.1303564Z CC [M] drivers/gpu/drm/i915/display/intel_color.o
2025-10-31T05:51:40.5993299Z CC [M] net/rxrpc/proc.o
2025-10-31T05:51:41.2904207Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_resource.o
2025-10-31T05:51:41.4478067Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_thermal.o
2025-10-31T05:51:42.0454543Z CC [M] net/rxrpc/rxkad.o
2025-10-31T05:51:42.1211665Z CC [M] net/sunrpc/svcauth.o
2025-10-31T05:51:42.6413880Z CC [M] drivers/gpu/drm/i915/display/intel_combo_phy.o
2025-10-31T05:51:42.9439730Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu10_hwmgr.o
2025-10-31T05:51:42.9725569Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.o
2025-10-31T05:51:43.5810180Z CC [M] net/sunrpc/svcauth_unix.o
2025-10-31T05:51:43.9697916Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_fifo.o
2025-10-31T05:51:44.0851849Z CC [M] drivers/gpu/drm/i915/display/intel_connector.o
2025-10-31T05:51:44.4220223Z CC [M] net/rxrpc/sysctl.o
2025-10-31T05:51:44.8565523Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/pp_psm.o
2025-10-31T05:51:45.2661821Z CC [M] net/sunrpc/addr.o
2025-10-31T05:51:45.3142481Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_irq.o
2025-10-31T05:51:45.3799394Z CC [M] drivers/gpu/drm/i915/display/intel_csr.o
2025-10-31T05:51:45.4261679Z LD [M] net/rxrpc/rxrpc.o
2025-10-31T05:51:45.5528092Z CC [M] net/sunrpc/rpcb_clnt.o
2025-10-31T05:51:45.7285305Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega12_processpptables.o
2025-10-31T05:51:46.3900074Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_ldu.o
2025-10-31T05:51:46.7113697Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega12_hwmgr.o
2025-10-31T05:51:46.7490556Z CC [M] drivers/gpu/drm/i915/display/intel_display.o
2025-10-31T05:51:46.8923463Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_ttm_glue.o
2025-10-31T05:51:47.2694627Z CC [M] net/sunrpc/timer.o
2025-10-31T05:51:47.7638481Z CC [M] net/kcm/kcmsock.o
2025-10-31T05:51:47.8350814Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_overlay.o
2025-10-31T05:51:48.2906023Z CC [M] net/sunrpc/xdr.o
2025-10-31T05:51:48.8181270Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega12_thermal.o
2025-10-31T05:51:48.8878203Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_marker.o
2025-10-31T05:51:49.9914914Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_gmrid_manager.o
2025-10-31T05:51:50.1877219Z CC [M] net/kcm/kcmproc.o
2025-10-31T05:51:50.3328575Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/pp_overdriver.o
2025-10-31T05:51:50.5860759Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu_helper.o
2025-10-31T05:51:50.9409327Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_fence.o
2025-10-31T05:51:50.9748370Z CC [M] net/sunrpc/sunrpc_syms.o
2025-10-31T05:51:51.7238941Z LD [M] net/kcm/kcm.o
2025-10-31T05:51:51.8216898Z CC drivers/nvdimm/core.o
2025-10-31T05:51:52.0099653Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_processpptables.o
2025-10-31T05:51:52.1881268Z CC [M] net/sunrpc/cache.o
2025-10-31T05:51:52.4268843Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_bo.o
2025-10-31T05:51:52.9749317Z CC drivers/nvdimm/bus.o
2025-10-31T05:51:53.2096931Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_hwmgr.o
2025-10-31T05:51:53.9913675Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_scrn.o
2025-10-31T05:51:54.2766300Z CC drivers/nvdimm/dimm_devs.o
2025-10-31T05:51:54.7574648Z CC [M] net/sunrpc/rpc_pipe.o
2025-10-31T05:51:55.3583451Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_context.o
2025-10-31T05:51:55.4762198Z CC drivers/nvdimm/dimm.o
2025-10-31T05:51:56.1847258Z CC drivers/nvdimm/region_devs.o
2025-10-31T05:51:56.3230356Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_powertune.o
2025-10-31T05:51:56.5373911Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_surface.o
2025-10-31T05:51:56.6286785Z CC [M] net/sunrpc/svc_xprt.o
2025-10-31T05:51:57.2338699Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_thermal.o
2025-10-31T05:51:58.0973209Z CC drivers/nvdimm/region.o
2025-10-31T05:51:58.4774265Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/common_baco.o
2025-10-31T05:51:58.5107405Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_prime.o
2025-10-31T05:51:58.9519394Z CC drivers/nvdimm/namespace_devs.o
2025-10-31T05:51:59.0600986Z CC [M] net/sunrpc/xprtmultipath.o
2025-10-31T05:51:59.0931220Z CC [M] drivers/gpu/drm/i915/display/intel_display_power.o
2025-10-31T05:51:59.2931841Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_mob.o
2025-10-31T05:51:59.6141276Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_baco.o
2025-10-31T05:52:00.4545988Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_shader.o
2025-10-31T05:52:00.5375300Z CC [M] net/sunrpc/debugfs.o
2025-10-31T05:52:00.8351719Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_baco.o
2025-10-31T05:52:01.3135291Z CC drivers/nvdimm/label.o
2025-10-31T05:52:01.6227723Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf_res.o
2025-10-31T05:52:01.8609200Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega12_baco.o
2025-10-31T05:52:02.0147087Z CC [M] net/sunrpc/backchannel_rqst.o
2025-10-31T05:52:02.4073318Z CC [M] drivers/gpu/drm/i915/display/intel_dpio_phy.o
2025-10-31T05:52:02.4781808Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.o
2025-10-31T05:52:03.0979859Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu9_baco.o
2025-10-31T05:52:03.2376741Z CC drivers/nvdimm/badrange.o
2025-10-31T05:52:03.3607416Z CC [M] net/sunrpc/stats.o
2025-10-31T05:52:03.8911244Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_stdu.o
2025-10-31T05:52:04.1874536Z CC drivers/nvdimm/claim.o
2025-10-31T05:52:04.2328128Z CC [M] drivers/gpu/drm/i915/display/intel_dpll_mgr.o
2025-10-31T05:52:04.3042758Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/tonga_baco.o
2025-10-31T05:52:04.9367018Z CC [M] net/sunrpc/sysctl.o
2025-10-31T05:52:05.0898176Z CC drivers/nvdimm/btt_devs.o
2025-10-31T05:52:05.2590925Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/polaris_baco.o
2025-10-31T05:52:05.4567121Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_cotable.o
2025-10-31T05:52:05.7173385Z LD [M] net/sunrpc/sunrpc.o
2025-10-31T05:52:05.8741937Z CC [M] net/atm/addr.o
2025-10-31T05:52:06.2513785Z CC drivers/nvdimm/pfn_devs.o
2025-10-31T05:52:06.3221230Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/fiji_baco.o
2025-10-31T05:52:06.5002625Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_so.o
2025-10-31T05:52:07.1839021Z CC [M] net/atm/pvc.o
2025-10-31T05:52:07.3445800Z CC drivers/nvdimm/dax_devs.o
2025-10-31T05:52:07.4259499Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_binding.o
2025-10-31T05:52:07.5701081Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/ci_baco.o
2025-10-31T05:52:07.6567363Z CC [M] drivers/gpu/drm/i915/display/intel_dsb.o
2025-10-31T05:52:08.0681795Z CC [M] drivers/nvdimm/pmem.o
2025-10-31T05:52:08.1605187Z CC [M] net/atm/signaling.o
2025-10-31T05:52:08.5530388Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_baco.o
2025-10-31T05:52:08.7417441Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_msg.o
2025-10-31T05:52:09.1069169Z CC [M] drivers/gpu/drm/i915/display/intel_fbc.o
2025-10-31T05:52:09.3452534Z CC [M] drivers/nvdimm/btt.o
2025-10-31T05:52:09.4163892Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/amd_powerplay.o
2025-10-31T05:52:09.6561044Z CC [M] net/atm/svc.o
2025-10-31T05:52:09.8036563Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_simple_resource.o
2025-10-31T05:52:10.8257341Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_va.o
2025-10-31T05:52:11.0000260Z CC [M] net/atm/ioctl.o
2025-10-31T05:52:11.1458016Z CC [M] drivers/gpu/drm/i915/display/intel_fifo_underrun.o
2025-10-31T05:52:11.1522611Z CC [M] drivers/nvdimm/blk.o
2025-10-31T05:52:11.1738512Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/kv_dpm.o
2025-10-31T05:52:11.6415290Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_blit.o
2025-10-31T05:52:12.1203785Z CC [M] net/atm/common.o
2025-10-31T05:52:12.1467677Z CC [M] drivers/nvdimm/e820.o
2025-10-31T05:52:12.7823383Z CC [M] drivers/nvdimm/virtio_pmem.o
2025-10-31T05:52:12.8235176Z CC [M] drivers/gpu/drm/i915/display/intel_frontbuffer.o
2025-10-31T05:52:13.0014164Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_validation.o
2025-10-31T05:52:13.4052329Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/kv_smc.o
2025-10-31T05:52:13.5149718Z CC [M] drivers/nvdimm/nd_virtio.o
2025-10-31T05:52:13.8980927Z CC [M] net/atm/atm_misc.o
2025-10-31T05:52:14.2023463Z CC [M] drivers/gpu/drm/i915/display/intel_global_state.o
2025-10-31T05:52:14.3120022Z LD [M] drivers/nvdimm/nd_pmem.o
2025-10-31T05:52:14.3349214Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_page_dirty.o
2025-10-31T05:52:14.3415414Z LD [M] drivers/nvdimm/nd_btt.o
2025-10-31T05:52:14.3743743Z LD [M] drivers/nvdimm/nd_blk.o
2025-10-31T05:52:14.3982935Z LD [M] drivers/nvdimm/nd_e820.o
2025-10-31T05:52:14.4229012Z AR drivers/nvdimm/built-in.a
2025-10-31T05:52:14.4574288Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/si_dpm.o
2025-10-31T05:52:14.5823913Z AR drivers/dax/pmem/built-in.a
2025-10-31T05:52:14.6048114Z CC [M] drivers/dax/pmem/pmem.o
2025-10-31T05:52:14.9462541Z CC [M] net/atm/raw.o
2025-10-31T05:52:15.2226233Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_streamoutput.o
2025-10-31T05:52:15.2698818Z CC [M] drivers/dax/pmem/core.o
2025-10-31T05:52:15.5499385Z CC [M] drivers/gpu/drm/i915/display/intel_hdcp.o
2025-10-31T05:52:16.0303546Z CC [M] drivers/dax/pmem/compat.o
2025-10-31T05:52:16.1580970Z CC [M] net/atm/resources.o
2025-10-31T05:52:16.3199650Z CC [M] drivers/gpu/drm/vmwgfx/ttm_object.o
2025-10-31T05:52:16.6398795Z LD [M] drivers/dax/pmem/dax_pmem.o
2025-10-31T05:52:16.6638506Z LD [M] drivers/dax/pmem/dax_pmem_core.o
2025-10-31T05:52:16.6889468Z LD [M] drivers/dax/pmem/dax_pmem_compat.o
2025-10-31T05:52:16.7905406Z CC drivers/dax/hmem/device.o
2025-10-31T05:52:17.3170094Z CC [M] drivers/gpu/drm/vmwgfx/ttm_lock.o
2025-10-31T05:52:17.4758178Z CC [M] drivers/dax/hmem/hmem.o
2025-10-31T05:52:17.6568717Z CC [M] net/atm/atm_sysfs.o
2025-10-31T05:52:17.9926119Z AR drivers/dax/hmem/built-in.a
2025-10-31T05:52:18.0025770Z LD [M] drivers/dax/hmem/dax_hmem.o
2025-10-31T05:52:18.0389037Z CC [M] drivers/gpu/drm/i915/display/intel_hotplug.o
2025-10-31T05:52:18.0444595Z CC drivers/dax/super.o
2025-10-31T05:52:18.3213282Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_thp.o
2025-10-31T05:52:18.7228422Z CC [M] net/atm/proc.o
2025-10-31T05:52:18.7468088Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/si_smc.o
2025-10-31T05:52:19.1410579Z CC drivers/dax/bus.o
2025-10-31T05:52:19.1952995Z LD [M] drivers/gpu/drm/vmwgfx/vmwgfx.o
2025-10-31T05:52:19.4505525Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/amdgpu_dpm.o
2025-10-31T05:52:19.6558763Z CC [M] drivers/gpu/drm/i915/display/intel_lpe_audio.o
2025-10-31T05:52:19.7295670Z CC [M] net/l2tp/l2tp_core.o
2025-10-31T05:52:19.7953942Z CC [M] net/atm/clip.o
2025-10-31T05:52:20.7583923Z CC [M] drivers/dax/device.o
2025-10-31T05:52:20.8683998Z CC [M] drivers/gpu/drm/i915/display/intel_overlay.o
2025-10-31T05:52:21.3646353Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/amdgpu_pm.o
2025-10-31T05:52:21.4239255Z CC [M] net/atm/br2684.o
2025-10-31T05:52:21.6560422Z CC [M] drivers/dax/kmem.o
2025-10-31T05:52:22.4303656Z LD [M] drivers/dax/device_dax.o
2025-10-31T05:52:22.4427853Z AR drivers/dax/built-in.a
2025-10-31T05:52:22.4778251Z CC [M] net/l2tp/l2tp_ppp.o
2025-10-31T05:52:22.4969196Z CC [M] drivers/gpu/drm/i915/display/intel_psr.o
2025-10-31T05:52:22.8336140Z CC [M] net/atm/lec.o
2025-10-31T05:52:22.8705929Z CC [M] drivers/gpu/drm/vgem/vgem_drv.o
2025-10-31T05:52:23.9356199Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.o
2025-10-31T05:52:23.9649746Z CC [M] drivers/gpu/drm/vgem/vgem_fence.o
2025-10-31T05:52:24.3688717Z CC [M] net/l2tp/l2tp_ip.o
2025-10-31T05:52:24.4553972Z CC [M] drivers/gpu/drm/i915/display/intel_quirks.o
2025-10-31T05:52:24.9078874Z LD [M] drivers/gpu/drm/vgem/vgem.o
2025-10-31T05:52:24.9703991Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_irq.o
2025-10-31T05:52:25.3234224Z CC [M] net/atm/mpc.o
2025-10-31T05:52:25.5764902Z CC [M] drivers/gpu/drm/i915/display/intel_sprite.o
2025-10-31T05:52:25.9759214Z CC [M] net/l2tp/l2tp_netlink.o
2025-10-31T05:52:26.3954036Z CC [M] net/phonet/pn_dev.o
2025-10-31T05:52:26.9698071Z CC [M] net/atm/mpoa_caches.o
2025-10-31T05:52:27.7668446Z CC [M] net/phonet/pn_netlink.o
2025-10-31T05:52:27.8343045Z CC [M] net/l2tp/l2tp_eth.o
2025-10-31T05:52:28.1373543Z CC [M] net/atm/mpoa_proc.o
2025-10-31T05:52:28.4605927Z CC [M] drivers/gpu/drm/i915/display/intel_tc.o
2025-10-31T05:52:28.8166940Z CC [M] net/phonet/socket.o
2025-10-31T05:52:29.1196300Z CC [M] net/atm/pppoatm.o
2025-10-31T05:52:29.3043201Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_mst_types.o
2025-10-31T05:52:29.4144581Z CC [M] net/l2tp/l2tp_debugfs.o
2025-10-31T05:52:30.1360596Z CC [M] drivers/gpu/drm/i915/display/intel_vga.o
2025-10-31T05:52:30.2883164Z CC [M] net/phonet/datagram.o
2025-10-31T05:52:30.4103039Z LD [M] net/atm/atm.o
2025-10-31T05:52:30.4976566Z LD [M] net/atm/mpoa.o
2025-10-31T05:52:30.6127713Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_color.o
2025-10-31T05:52:30.7003345Z CC [M] net/l2tp/l2tp_ip6.o
2025-10-31T05:52:30.7231897Z CC [M] net/phonet/sysctl.o
2025-10-31T05:52:31.2565538Z CC [M] drivers/gpu/drm/i915/display/intel_acpi.o
2025-10-31T05:52:31.4995007Z CC [M] drivers/gpu/drm/vkms/vkms_drv.o
2025-10-31T05:52:31.7304625Z CC [M] net/phonet/af_phonet.o
2025-10-31T05:52:31.8482552Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_services.o
2025-10-31T05:52:32.5249099Z CC [M] drivers/gpu/drm/i915/display/intel_opregion.o
2025-10-31T05:52:32.5794198Z CC [M] drivers/gpu/drm/vkms/vkms_plane.o
2025-10-31T05:52:32.6825365Z CC [M] net/phonet/pep.o
2025-10-31T05:52:32.6920484Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_helpers.o
2025-10-31T05:52:33.1195394Z CC [M] drivers/gpu/drm/nouveau/nvif/object.o
2025-10-31T05:52:33.4725285Z CC [M] drivers/gpu/drm/vkms/vkms_output.o
2025-10-31T05:52:33.9810795Z CC [M] drivers/gpu/drm/i915/display/intel_fbdev.o
2025-10-31T05:52:34.0573525Z CC [M] drivers/gpu/drm/nouveau/nvif/client.o
2025-10-31T05:52:34.1431643Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_pp_smu.o
2025-10-31T05:52:34.2973091Z CC [M] drivers/gpu/drm/vkms/vkms_crtc.o
2025-10-31T05:52:34.5053488Z CC [M] net/phonet/pep-gprs.o
2025-10-31T05:52:34.9630109Z CC [M] drivers/gpu/drm/nouveau/nvif/device.o
2025-10-31T05:52:35.3904528Z CC [M] drivers/gpu/drm/i915/display/dvo_ch7017.o
2025-10-31T05:52:35.4179919Z CC [M] drivers/gpu/drm/vkms/vkms_gem.o
2025-10-31T05:52:35.4350116Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_hdcp.o
2025-10-31T05:52:35.7387701Z CC [M] drivers/gpu/drm/nouveau/nvif/disp.o
2025-10-31T05:52:35.9474550Z LD [M] net/phonet/phonet.o
2025-10-31T05:52:36.0074617Z LD [M] net/phonet/pn_pep.o
2025-10-31T05:52:36.1193058Z CC [M] net/sctp/sm_statetable.o
2025-10-31T05:52:36.3449427Z CC [M] drivers/gpu/drm/vkms/vkms_composer.o
2025-10-31T05:52:36.6088184Z CC [M] drivers/gpu/drm/nouveau/nvif/driver.o
2025-10-31T05:52:36.7607410Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_crc.o
2025-10-31T05:52:36.7853255Z CC [M] drivers/gpu/drm/i915/display/dvo_ch7xxx.o
2025-10-31T05:52:37.2359133Z CC [M] drivers/gpu/drm/vkms/vkms_writeback.o
2025-10-31T05:52:37.4082823Z CC [M] drivers/gpu/drm/nouveau/nvif/fifo.o
2025-10-31T05:52:37.5353653Z CC [M] net/sctp/sm_statefuns.o
2025-10-31T05:52:37.9156815Z CC [M] drivers/gpu/drm/i915/display/dvo_ivch.o
2025-10-31T05:52:37.9600741Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_debugfs.o
2025-10-31T05:52:38.0433446Z LD [M] drivers/gpu/drm/vkms/vkms.o
2025-10-31T05:52:38.1219861Z CC [M] drivers/gpu/drm/i915/display/dvo_ns2501.o
2025-10-31T05:52:38.3001726Z CC [M] drivers/gpu/drm/nouveau/nvif/mem.o
2025-10-31T05:52:39.1687155Z CC [M] drivers/gpu/drm/nouveau/nvif/mmu.o
2025-10-31T05:52:39.2326479Z CC [M] drivers/gpu/drm/i915/display/dvo_sil164.o
2025-10-31T05:52:39.5087623Z CC drivers/dma-buf/heaps/heap-helpers.o
2025-10-31T05:52:39.8041092Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/basics/conversion.o
2025-10-31T05:52:40.2203063Z CC drivers/dma-buf/heaps/system_heap.o
2025-10-31T05:52:40.4572893Z CC [M] drivers/gpu/drm/i915/display/dvo_tfp410.o
2025-10-31T05:52:40.4590050Z CC [M] drivers/gpu/drm/nouveau/nvif/notify.o
2025-10-31T05:52:40.5383997Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/basics/fixpt31_32.o
2025-10-31T05:52:41.0451568Z CC drivers/dma-buf/heaps/cma_heap.o
2025-10-31T05:52:41.3314303Z CC [M] drivers/gpu/drm/nouveau/nvif/timer.o
2025-10-31T05:52:41.5133944Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/basics/vector.o
2025-10-31T05:52:41.6950868Z CC [M] net/sctp/sm_sideeffect.o
2025-10-31T05:52:41.7603312Z CC [M] drivers/gpu/drm/i915/display/icl_dsi.o
2025-10-31T05:52:41.8029978Z AR drivers/dma-buf/heaps/built-in.a
2025-10-31T05:52:41.8294863Z CC drivers/dma-buf/dma-buf.o
2025-10-31T05:52:42.1847702Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/basics/dc_common.o
2025-10-31T05:52:42.2985973Z CC [M] drivers/gpu/drm/nouveau/nvif/vmm.o
2025-10-31T05:52:43.0377361Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser.o
2025-10-31T05:52:43.1726813Z CC drivers/dma-buf/dma-fence.o
2025-10-31T05:52:43.3133906Z CC [M] drivers/gpu/drm/nouveau/nvif/user.o
2025-10-31T05:52:43.7088967Z CC [M] net/sctp/protocol.o
2025-10-31T05:52:44.1380779Z CC [M] drivers/gpu/drm/nouveau/nvif/userc361.o
2025-10-31T05:52:44.4061268Z CC [M] drivers/gpu/drm/i915/display/intel_crt.o
2025-10-31T05:52:44.5130958Z CC drivers/dma-buf/dma-fence-array.o
2025-10-31T05:52:44.9238465Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser_interface.o
2025-10-31T05:52:45.1210985Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/client.o
2025-10-31T05:52:45.1555481Z CC drivers/dma-buf/dma-fence-chain.o
2025-10-31T05:52:45.5013477Z CC [M] net/sctp/endpointola.o
2025-10-31T05:52:45.5824058Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser_helper.o
2025-10-31T05:52:45.8987615Z CC drivers/dma-buf/dma-resv.o
2025-10-31T05:52:46.0332299Z CC [M] drivers/gpu/drm/i915/display/intel_ddi.o
2025-10-31T05:52:46.2105683Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/engine.o
2025-10-31T05:52:46.2139622Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/command_table.o
2025-10-31T05:52:46.8817879Z CC [M] net/sctp/associola.o
2025-10-31T05:52:47.1982425Z CC drivers/dma-buf/seqno-fence.o
2025-10-31T05:52:47.2545698Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/enum.o
2025-10-31T05:52:47.8648752Z CC drivers/dma-buf/dma-heap.o
2025-10-31T05:52:48.0787634Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/command_table_helper.o
2025-10-31T05:52:48.2374179Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/event.o
2025-10-31T05:52:48.8237853Z CC [M] net/sctp/transport.o
2025-10-31T05:52:48.8255217Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser_common.o
2025-10-31T05:52:48.8628955Z CC drivers/dma-buf/sync_file.o
2025-10-31T05:52:49.1236522Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/firmware.o
2025-10-31T05:52:49.4666983Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/command_table2.o
2025-10-31T05:52:49.8312976Z CC drivers/dma-buf/udmabuf.o
2025-10-31T05:52:49.8496500Z CC [M] drivers/gpu/drm/i915/display/intel_dp.o
2025-10-31T05:52:50.1300307Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/gpuobj.o
2025-10-31T05:52:50.3252774Z CC [M] net/sctp/chunk.o
2025-10-31T05:52:50.9254461Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/command_table_helper2.o
2025-10-31T05:52:50.9529898Z AR drivers/dma-buf/built-in.a
2025-10-31T05:52:50.9945342Z CC [M] net/rds/af_rds.o
2025-10-31T05:52:51.0134997Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/ioctl.o
2025-10-31T05:52:51.5640268Z CC [M] net/sctp/sm_make_chunk.o
2025-10-31T05:52:51.7961271Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser2.o
2025-10-31T05:52:52.1553635Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/memory.o
2025-10-31T05:52:52.8529145Z CC [M] net/rds/bind.o
2025-10-31T05:52:52.9644628Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/mm.o
2025-10-31T05:52:53.2884915Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce60/command_table_helper_dce60.o
2025-10-31T05:52:53.9262413Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/notify.o
2025-10-31T05:52:54.1182408Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce80/command_table_helper_dce80.o
2025-10-31T05:52:54.5470653Z CC [M] net/rds/cong.o
2025-10-31T05:52:54.6239882Z CC [M] net/sctp/ulpevent.o
2025-10-31T05:52:54.8827663Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce110/command_table_helper_dce110.o
2025-10-31T05:52:54.9655099Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/object.o
2025-10-31T05:52:54.9700488Z CC [M] drivers/gpu/drm/i915/display/intel_dp_aux_backlight.o
2025-10-31T05:52:55.5977515Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce112/command_table_helper_dce112.o
2025-10-31T05:52:55.7727977Z CC [M] net/rds/connection.o
2025-10-31T05:52:55.9832934Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/oproxy.o
2025-10-31T05:52:56.4514614Z CC [M] net/sctp/inqueue.o
2025-10-31T05:52:56.5001764Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce112/command_table_helper2_dce112.o
2025-10-31T05:52:56.5451060Z CC [M] drivers/gpu/drm/i915/display/intel_dp_hdcp.o
2025-10-31T05:52:56.9571188Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/option.o
2025-10-31T05:52:57.3278791Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dce_calcs.o
2025-10-31T05:52:57.5365184Z CC [M] net/rds/info.o
2025-10-31T05:52:57.7872721Z CC [M] net/sctp/outqueue.o
2025-10-31T05:52:57.8170413Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/ramht.o
2025-10-31T05:52:57.8801358Z CC [M] drivers/gpu/drm/i915/display/intel_dp_link_training.o
2025-10-31T05:52:58.8339300Z CC [M] net/rds/message.o
2025-10-31T05:52:58.8709104Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/subdev.o
2025-10-31T05:52:59.3467473Z CC [M] drivers/gpu/drm/i915/display/intel_dp_mst.o
2025-10-31T05:52:59.7723195Z CC [M] net/sctp/ulpqueue.o
2025-10-31T05:52:59.9244106Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/fw.o
2025-10-31T05:53:00.4799585Z CC [M] net/rds/recv.o
2025-10-31T05:53:00.8371347Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/hs.o
2025-10-31T05:53:01.1738204Z CC [M] drivers/gpu/drm/i915/display/intel_dsi.o
2025-10-31T05:53:01.4399030Z CC [M] net/sctp/tsnmap.o
2025-10-31T05:53:01.8641393Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/ls.o
2025-10-31T05:53:01.9094101Z CC [M] net/rds/send.o
2025-10-31T05:53:02.3120291Z CC [M] drivers/gpu/drm/i915/display/intel_dsi_dcs_backlight.o
2025-10-31T05:53:02.6740133Z CC [M] net/sctp/bind_addr.o
2025-10-31T05:53:02.7363449Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/bw_fixed.o
2025-10-31T05:53:02.8385699Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/acr.o
2025-10-31T05:53:03.4705344Z CC [M] drivers/gpu/drm/i915/display/intel_dsi_vbt.o
2025-10-31T05:53:03.5789861Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/custom_float.o
2025-10-31T05:53:03.8918547Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/flcn.o
2025-10-31T05:53:04.2073107Z CC [M] net/sctp/socket.o
2025-10-31T05:53:04.3053143Z CC [M] net/rds/stats.o
2025-10-31T05:53:04.3855343Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.o
2025-10-31T05:53:04.7673773Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/base.o
2025-10-31T05:53:04.9480477Z CC [M] drivers/gpu/drm/i915/display/intel_dvo.o
2025-10-31T05:53:05.6729186Z CC [M] net/rds/sysctl.o
2025-10-31T05:53:05.7725394Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/cmdq.o
2025-10-31T05:53:05.8338878Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calc_math.o
2025-10-31T05:53:05.9668712Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calc_auto.o
2025-10-31T05:53:06.3833315Z CC [M] drivers/gpu/drm/i915/display/intel_gmbus.o
2025-10-31T05:53:06.7993342Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/msgq.o
2025-10-31T05:53:06.8229537Z CC [M] net/rds/threads.o
2025-10-31T05:53:07.7791559Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/qmgr.o
2025-10-31T05:53:08.0882629Z CC [M] net/rds/transport.o
2025-10-31T05:53:08.1554929Z CC [M] drivers/gpu/drm/i915/display/intel_hdmi.o
2025-10-31T05:53:08.5803707Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/v1.o
2025-10-31T05:53:08.9005223Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/clk_mgr.o
2025-10-31T05:53:09.5232895Z CC [M] net/rds/loop.o
2025-10-31T05:53:09.7229086Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce60/dce60_clk_mgr.o
2025-10-31T05:53:09.7268156Z CC [M] net/sctp/primitive.o
2025-10-31T05:53:09.7575548Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/base.o
2025-10-31T05:53:10.5307265Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce100/dce_clk_mgr.o
2025-10-31T05:53:10.7055483Z CC [M] net/rds/page.o
2025-10-31T05:53:10.9930557Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/hsfw.o
2025-10-31T05:53:11.1165266Z CC [M] net/sctp/output.o
2025-10-31T05:53:11.2240063Z CC [M] drivers/gpu/drm/i915/display/intel_lspcon.o
2025-10-31T05:53:11.4301087Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce110/dce110_clk_mgr.o
2025-10-31T05:53:12.0438509Z CC [M] net/rds/rdma.o
2025-10-31T05:53:12.0616708Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/lsfw.o
2025-10-31T05:53:12.3456670Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce112/dce112_clk_mgr.o
2025-10-31T05:53:12.4762768Z CC [M] drivers/gpu/drm/i915/display/intel_lvds.o
2025-10-31T05:53:12.6076740Z CC [M] net/sctp/input.o
2025-10-31T05:53:13.2747565Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce120/dce120_clk_mgr.o
2025-10-31T05:53:13.3353577Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm200.o
2025-10-31T05:53:13.8407584Z CC [M] net/rds/rdma_transport.o
2025-10-31T05:53:14.0143189Z CC [M] drivers/gpu/drm/i915/display/intel_panel.o
2025-10-31T05:53:14.0575549Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn10/rv1_clk_mgr.o
2025-10-31T05:53:14.6243759Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm20b.o
2025-10-31T05:53:14.7998214Z CC [M] net/sctp/debug.o
2025-10-31T05:53:15.1215647Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn10/rv1_clk_mgr_vbios_smu.o
2025-10-31T05:53:15.2063807Z CC [M] net/rds/ib.o
2025-10-31T05:53:15.6326270Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp102.o
2025-10-31T05:53:15.8149950Z CC [M] net/sctp/stream.o
2025-10-31T05:53:16.0553065Z CC [M] drivers/gpu/drm/i915/display/intel_sdvo.o
2025-10-31T05:53:16.3404630Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn10/rv2_clk_mgr.o
2025-10-31T05:53:16.5951898Z CC [M] net/rds/ib_cm.o
2025-10-31T05:53:16.6128897Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp108.o
2025-10-31T05:53:17.2901399Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn20/dcn20_clk_mgr.o
2025-10-31T05:53:17.4493835Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp10b.o
2025-10-31T05:53:17.6609706Z CC [M] net/sctp/auth.o
2025-10-31T05:53:18.3682186Z CC [M] net/rds/ib_recv.o
2025-10-31T05:53:18.4298971Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/tu102.o
2025-10-31T05:53:18.5280091Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn21/rn_clk_mgr.o
2025-10-31T05:53:18.9605581Z CC [M] drivers/gpu/drm/i915/display/intel_tv.o
2025-10-31T05:53:19.2745171Z CC [M] net/sctp/offload.o
2025-10-31T05:53:19.4311106Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/base.o
2025-10-31T05:53:19.6039719Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn21/rn_clk_mgr_vbios_smu.o
2025-10-31T05:53:20.1426540Z CC [M] net/rds/ib_ring.o
2025-10-31T05:53:20.3557724Z CC [M] net/sctp/stream_sched.o
2025-10-31T05:53:20.5413191Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/nv50.o
2025-10-31T05:53:20.5987638Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn30/dcn30_clk_mgr.o
2025-10-31T05:53:20.8680376Z CC [M] drivers/gpu/drm/i915/display/intel_vdsc.o
2025-10-31T05:53:21.3085487Z CC [M] net/rds/ib_send.o
2025-10-31T05:53:21.4582499Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/g84.o
2025-10-31T05:53:21.6247838Z CC [M] net/sctp/stream_sched_prio.o
2025-10-31T05:53:21.7860201Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn30/dcn30_clk_mgr_smu_msg.o
2025-10-31T05:53:22.2752704Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/gf100.o
2025-10-31T05:53:22.5678642Z CC [M] drivers/gpu/drm/i915/display/vlv_dsi.o
2025-10-31T05:53:22.8354350Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_audio.o
2025-10-31T05:53:22.9923973Z CC [M] net/rds/ib_stats.o
2025-10-31T05:53:23.1216690Z CC [M] net/sctp/stream_sched_rr.o
2025-10-31T05:53:23.2868014Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/gk20a.o
2025-10-31T05:53:23.9159814Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_stream_encoder.o
2025-10-31T05:53:24.0127496Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/gm107.o
2025-10-31T05:53:24.1424514Z CC [M] net/rds/ib_sysctl.o
2025-10-31T05:53:24.4583487Z CC [M] net/sctp/stream_interleave.o
2025-10-31T05:53:24.8633164Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/gm20b.o
2025-10-31T05:53:25.1192670Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_link_encoder.o
2025-10-31T05:53:25.3299757Z CC [M] drivers/gpu/drm/i915/display/vlv_dsi_pll.o
2025-10-31T05:53:25.4273810Z CC [M] net/rds/ib_rdma.o
2025-10-31T05:53:25.6843255Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/tu102.o
2025-10-31T05:53:26.4884013Z CC [M] net/sctp/proc.o
2025-10-31T05:53:26.5890476Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_hwseq.o
2025-10-31T05:53:26.6983479Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/base.o
2025-10-31T05:53:26.7809313Z CC [M] drivers/gpu/drm/i915/i915_perf.o
2025-10-31T05:53:26.8771830Z CC [M] net/rds/ib_frmr.o
2025-10-31T05:53:27.5937142Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_mem_input.o
2025-10-31T05:53:27.7431262Z CC [M] net/sctp/sysctl.o
2025-10-31T05:53:28.0067109Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/bit.o
2025-10-31T05:53:28.2700840Z CC [M] net/rds/tcp.o
2025-10-31T05:53:28.8175961Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_clock_source.o
2025-10-31T05:53:28.8452506Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/boost.o
2025-10-31T05:53:28.9090854Z CC [M] net/sctp/ipv6.o
2025-10-31T05:53:29.5929198Z CC [M] drivers/gpu/drm/i915/i915_gpu_error.o
2025-10-31T05:53:29.7446416Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/conn.o
2025-10-31T05:53:29.9463774Z CC [M] net/rds/tcp_connect.o
2025-10-31T05:53:30.3571388Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_scl_filters.o
2025-10-31T05:53:30.5698203Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/cstep.o
2025-10-31T05:53:30.5937989Z CC [M] net/sctp/diag.o
2025-10-31T05:53:31.1657844Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_transform.o
2025-10-31T05:53:31.2796900Z CC [M] net/rds/tcp_listen.o
2025-10-31T05:53:31.4353805Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/dcb.o
2025-10-31T05:53:32.0015381Z LD [M] net/sctp/sctp.o
2025-10-31T05:53:32.0301105Z CC [M] drivers/gpu/drm/i915/i915_vgpu.o
2025-10-31T05:53:32.1409396Z LD [M] net/sctp/sctp_diag.o
2025-10-31T05:53:32.1915361Z CC [M] drivers/gpu/drm/gma500/accel_2d.o
2025-10-31T05:53:32.4592406Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/disp.o
2025-10-31T05:53:32.6413279Z CC [M] net/rds/tcp_recv.o
2025-10-31T05:53:32.7934514Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_opp.o
2025-10-31T05:53:32.9517710Z CC [M] drivers/gpu/drm/gma500/backlight.o
2025-10-31T05:53:33.1292578Z CC [M] drivers/gpu/drm/i915/intel_gvt.o
2025-10-31T05:53:33.5784297Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/dp.o
2025-10-31T05:53:33.6655622Z CC [M] drivers/gpu/drm/gma500/framebuffer.o
2025-10-31T05:53:34.0061102Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_dmcu.o
2025-10-31T05:53:34.2224377Z CC [M] net/rds/tcp_send.o
2025-10-31T05:53:34.4326088Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/extdev.o
2025-10-31T05:53:34.4928826Z CC [M] drivers/gpu/drm/i915/gvt/gvt.o
2025-10-31T05:53:34.5648207Z CC [M] drivers/gpu/drm/gma500/gem.o
2025-10-31T05:53:35.3609440Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/fan.o
2025-10-31T05:53:35.3907097Z CC [M] drivers/gpu/drm/gma500/gtt.o
2025-10-31T05:53:35.5303226Z CC [M] net/rds/tcp_stats.o
2025-10-31T05:53:35.5649178Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_abm.o
2025-10-31T05:53:35.8888175Z CC [M] drivers/gpu/drm/i915/gvt/aperture_gm.o
2025-10-31T05:53:36.1078895Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/gpio.o
2025-10-31T05:53:36.6236438Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_ipp.o
2025-10-31T05:53:36.6640784Z CC [M] drivers/gpu/drm/gma500/intel_bios.o
2025-10-31T05:53:36.6675045Z LD [M] net/rds/rds.o
2025-10-31T05:53:36.7773696Z LD [M] net/rds/rds_rdma.o
2025-10-31T05:53:36.8707551Z LD [M] net/rds/rds_tcp.o
2025-10-31T05:53:36.9504246Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/i2c.o
2025-10-31T05:53:36.9887918Z CC [M] net/mac80211/main.o
2025-10-31T05:53:37.2181187Z CC [M] drivers/gpu/drm/i915/gvt/handlers.o
2025-10-31T05:53:37.4971388Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_aux.o
2025-10-31T05:53:37.6025311Z CC [M] drivers/gpu/drm/gma500/intel_i2c.o
2025-10-31T05:53:37.8184464Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/iccsense.o
2025-10-31T05:53:38.4664789Z CC [M] drivers/gpu/drm/gma500/intel_gmbus.o
2025-10-31T05:53:38.7079007Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_i2c.o
2025-10-31T05:53:38.8490214Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/image.o
2025-10-31T05:53:39.3431716Z CC [M] net/mac80211/status.o
2025-10-31T05:53:39.4977943Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_i2c_hw.o
2025-10-31T05:53:39.7946162Z CC [M] drivers/gpu/drm/gma500/mmu.o
2025-10-31T05:53:39.8264903Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/init.o
2025-10-31T05:53:40.6023506Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_i2c_sw.o
2025-10-31T05:53:41.0255340Z CC [M] drivers/gpu/drm/gma500/blitter.o
2025-10-31T05:53:41.4620645Z CC [M] net/mac80211/driver-ops.o
2025-10-31T05:53:41.7489688Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dmub_psr.o
2025-10-31T05:53:41.8853356Z CC [M] drivers/gpu/drm/gma500/power.o
2025-10-31T05:53:42.5813170Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dmub_abm.o
2025-10-31T05:53:42.5890826Z CC [M] drivers/gpu/drm/i915/gvt/vgpu.o
2025-10-31T05:53:42.7364293Z CC [M] drivers/gpu/drm/gma500/psb_drv.o
2025-10-31T05:53:42.8657971Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/mxm.o
2025-10-31T05:53:43.6029225Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_panel_cntl.o
2025-10-31T05:53:43.6269410Z CC [M] net/mac80211/sta_info.o
2025-10-31T05:53:43.6748452Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/npde.o
2025-10-31T05:53:43.6950031Z CC [M] drivers/gpu/drm/gma500/gma_display.o
2025-10-31T05:53:44.2659295Z CC [M] drivers/gpu/drm/i915/gvt/trace_points.o
2025-10-31T05:53:44.6716555Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dmub_hw_lock_mgr.o
2025-10-31T05:53:44.7853563Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/pcir.o
2025-10-31T05:53:44.8438731Z CC [M] drivers/gpu/drm/gma500/gma_device.o
2025-10-31T05:53:45.4729924Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/gpio_base.o
2025-10-31T05:53:45.5946356Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/perf.o
2025-10-31T05:53:45.8340803Z CC [M] drivers/gpu/drm/gma500/psb_intel_display.o
2025-10-31T05:53:45.9053224Z CC [M] drivers/gpu/drm/i915/gvt/firmware.o
2025-10-31T05:53:46.2183951Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/gpio_service.o
2025-10-31T05:53:46.4538604Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/pll.o
2025-10-31T05:53:46.9312168Z CC [M] drivers/gpu/drm/gma500/psb_intel_lvds.o
2025-10-31T05:53:46.9484890Z CC [M] net/mac80211/wep.o
2025-10-31T05:53:47.3011089Z CC [M] drivers/gpu/drm/i915/gvt/interrupt.o
2025-10-31T05:53:47.3845466Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_factory.o
2025-10-31T05:53:47.5399118Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/pmu.o
2025-10-31T05:53:47.9677043Z CC [M] drivers/gpu/drm/gma500/psb_intel_modes.o
2025-10-31T05:53:48.0985104Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_gpio.o
2025-10-31T05:53:48.4009521Z CC [M] net/mac80211/aead_api.o
2025-10-31T05:53:48.5329074Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/power_budget.o
2025-10-31T05:53:48.6224498Z CC [M] drivers/gpu/drm/i915/gvt/gtt.o
2025-10-31T05:53:48.7222147Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_hpd.o
2025-10-31T05:53:48.7718684Z CC [M] drivers/gpu/drm/gma500/psb_intel_sdvo.o
2025-10-31T05:53:49.1844413Z CC [M] net/mac80211/wpa.o
2025-10-31T05:53:49.3712445Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_ddc.o
2025-10-31T05:53:49.5633085Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/ramcfg.o
2025-10-31T05:53:50.0051013Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_generic.o
2025-10-31T05:53:50.5552697Z CC [M] drivers/gpu/drm/gma500/psb_lid.o
2025-10-31T05:53:50.6144404Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_translate.o
2025-10-31T05:53:50.6731265Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/rammap.o
2025-10-31T05:53:51.0545500Z CC [M] net/mac80211/scan.o
2025-10-31T05:53:51.3369010Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce60/hw_translate_dce60.o
2025-10-31T05:53:51.4347171Z CC [M] drivers/gpu/drm/gma500/psb_irq.o
2025-10-31T05:53:51.7014678Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadow.o
2025-10-31T05:53:51.8464266Z CC [M] drivers/gpu/drm/i915/gvt/cfg_space.o
2025-10-31T05:53:52.1640693Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce60/hw_factory_dce60.o
2025-10-31T05:53:52.3758022Z CC [M] drivers/gpu/drm/gma500/psb_device.o
2025-10-31T05:53:52.6477354Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowacpi.o
2025-10-31T05:53:53.0133743Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce80/hw_translate_dce80.o
2025-10-31T05:53:53.2414916Z CC [M] drivers/gpu/drm/i915/gvt/opregion.o
2025-10-31T05:53:53.3536214Z CC [M] drivers/gpu/drm/gma500/mid_bios.o
2025-10-31T05:53:53.5130564Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowof.o
2025-10-31T05:53:53.6794329Z CC [M] net/mac80211/offchannel.o
2025-10-31T05:53:53.8182522Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce80/hw_factory_dce80.o
2025-10-31T05:53:54.2903529Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowpci.o
2025-10-31T05:53:54.3245718Z CC [M] drivers/gpu/drm/gma500/opregion.o
2025-10-31T05:53:54.4247744Z CC [M] drivers/gpu/drm/i915/gvt/mmio.o
2025-10-31T05:53:54.6450209Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce110/hw_translate_dce110.o
2025-10-31T05:53:55.1603483Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowramin.o
2025-10-31T05:53:55.2169254Z CC [M] drivers/gpu/drm/gma500/cdv_device.o
2025-10-31T05:53:55.3315274Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce110/hw_factory_dce110.o
2025-10-31T05:53:55.8657400Z CC [M] net/mac80211/ht.o
2025-10-31T05:53:55.8923784Z CC [M] drivers/gpu/drm/i915/gvt/display.o
2025-10-31T05:53:55.9416715Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce120/hw_translate_dce120.o
2025-10-31T05:53:56.1481188Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.o
2025-10-31T05:53:56.3544478Z CC [M] drivers/gpu/drm/gma500/cdv_intel_crt.o
2025-10-31T05:53:56.7265339Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce120/hw_factory_dce120.o
2025-10-31T05:53:57.1039984Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/timing.o
2025-10-31T05:53:57.2365418Z CC [M] drivers/gpu/drm/gma500/cdv_intel_display.o
2025-10-31T05:53:57.4335060Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn10/hw_translate_dcn10.o
2025-10-31T05:53:57.5303258Z CC [M] drivers/gpu/drm/i915/gvt/edid.o
2025-10-31T05:53:57.6825128Z CC [M] net/mac80211/agg-tx.o
2025-10-31T05:53:58.2385156Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn10/hw_factory_dcn10.o
2025-10-31T05:53:58.3110417Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/therm.o
2025-10-31T05:53:58.4855146Z CC [M] drivers/gpu/drm/gma500/cdv_intel_hdmi.o
2025-10-31T05:53:58.7830702Z CC [M] drivers/gpu/drm/i915/gvt/execlist.o
2025-10-31T05:53:59.0999375Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn20/hw_translate_dcn20.o
2025-10-31T05:53:59.2156143Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/vmap.o
2025-10-31T05:53:59.4697390Z CC [M] drivers/gpu/drm/gma500/cdv_intel_lvds.o
2025-10-31T05:53:59.7321804Z CC [M] net/mac80211/agg-rx.o
2025-10-31T05:53:59.9236360Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn20/hw_factory_dcn20.o
2025-10-31T05:54:00.1708421Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/volt.o
2025-10-31T05:54:00.3092585Z CC [M] drivers/gpu/drm/i915/gvt/scheduler.o
2025-10-31T05:54:00.3692413Z CC [M] drivers/gpu/drm/gma500/cdv_intel_dp.o
2025-10-31T05:54:00.7643928Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn21/hw_translate_dcn21.o
2025-10-31T05:54:01.1634342Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/vpstate.o
2025-10-31T05:54:01.6813347Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn21/hw_factory_dcn21.o
2025-10-31T05:54:01.7665884Z CC [M] net/mac80211/vht.o
2025-10-31T05:54:01.9777552Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/xpio.o
2025-10-31T05:54:01.9878648Z CC [M] drivers/gpu/drm/gma500/oaktrail_device.o
2025-10-31T05:54:02.4988471Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn30/hw_translate_dcn30.o
2025-10-31T05:54:02.5610582Z CC [M] drivers/gpu/drm/i915/gvt/sched_policy.o
2025-10-31T05:54:02.8832523Z CC [M] drivers/gpu/drm/gma500/oaktrail_crtc.o
2025-10-31T05:54:02.9464719Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/M0203.o
2025-10-31T05:54:03.2846111Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn30/hw_factory_dcn30.o
2025-10-31T05:54:03.7480557Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/M0205.o
2025-10-31T05:54:03.8789167Z CC [M] net/mac80211/he.o
2025-10-31T05:54:04.0513538Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/diagnostics/hw_translate_diag.o
2025-10-31T05:54:04.0753405Z CC [M] drivers/gpu/drm/i915/gvt/mmio_context.o
2025-10-31T05:54:04.3541702Z CC [M] drivers/gpu/drm/gma500/oaktrail_lvds.o
2025-10-31T05:54:04.5969349Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/M0209.o
2025-10-31T05:54:04.6601001Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/diagnostics/hw_factory_diag.o
2025-10-31T05:54:05.2562282Z CC [M] net/mac80211/s1g.o
2025-10-31T05:54:05.2850774Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/irq_service.o
2025-10-31T05:54:05.3617051Z CC [M] drivers/gpu/drm/gma500/oaktrail_lvds_i2c.o
2025-10-31T05:54:05.4512357Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/P0260.o
2025-10-31T05:54:05.5953744Z CC [M] drivers/gpu/drm/i915/gvt/cmd_parser.o
2025-10-31T05:54:06.0849689Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dce60/irq_service_dce60.o
2025-10-31T05:54:06.2691372Z CC [M] drivers/gpu/drm/gma500/oaktrail_hdmi.o
2025-10-31T05:54:06.3549709Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/base.o
2025-10-31T05:54:06.6536503Z CC [M] net/mac80211/ibss.o
2025-10-31T05:54:07.1271379Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dce80/irq_service_dce80.o
2025-10-31T05:54:07.2823947Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/hwsq.o
2025-10-31T05:54:07.4098539Z CC [M] drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.o
2025-10-31T05:54:07.8418498Z CC [M] drivers/gpu/drm/i915/gvt/debugfs.o
2025-10-31T05:54:07.9399990Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dce110/irq_service_dce110.o
2025-10-31T05:54:08.2069899Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/nv04.o
2025-10-31T05:54:08.4564030Z LD [M] drivers/gpu/drm/gma500/gma500_gfx.o
2025-10-31T05:54:08.5826674Z CC [M] net/tipc/addr.o
2025-10-31T05:54:08.9950351Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dce120/irq_service_dce120.o
2025-10-31T05:54:09.0625146Z CC [M] drivers/gpu/drm/i915/gvt/fb_decoder.o
2025-10-31T05:54:09.1686484Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/nv31.o
2025-10-31T05:54:09.1829444Z CC [M] net/mac80211/iface.o
2025-10-31T05:54:09.3758394Z CC [M] net/tipc/bcast.o
2025-10-31T05:54:09.9113906Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dcn10/irq_service_dcn10.o
2025-10-31T05:54:10.0723521Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/nv50.o
2025-10-31T05:54:10.3129261Z CC [M] drivers/gpu/drm/i915/gvt/dmabuf.o
2025-10-31T05:54:10.7025670Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dcn20/irq_service_dcn20.o
2025-10-31T05:54:11.1243101Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/g94.o
2025-10-31T05:54:11.1975002Z CC [M] net/tipc/bearer.o
2025-10-31T05:54:11.6551299Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dcn21/irq_service_dcn21.o
2025-10-31T05:54:11.8195022Z CC [M] drivers/gpu/drm/i915/gvt/page_track.o
2025-10-31T05:54:12.1030327Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/gf100.o
2025-10-31T05:54:12.1698149Z CC [M] net/mac80211/rate.o
2025-10-31T05:54:12.6318440Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dcn30/irq_service_dcn30.o
2025-10-31T05:54:12.8842742Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/base.o
2025-10-31T05:54:13.0743757Z CC [M] net/tipc/core.o
2025-10-31T05:54:13.2399436Z CC [M] drivers/gpu/drm/i915/gvt/kvmgt.o
2025-10-31T05:54:13.7452202Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/virtual/virtual_link_encoder.o
2025-10-31T05:54:14.1773405Z CC [M] net/tipc/link.o
2025-10-31T05:54:14.1884448Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv04.o
2025-10-31T05:54:14.3460547Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/virtual/virtual_stream_encoder.o
2025-10-31T05:54:14.5086388Z CC [M] net/mac80211/michael.o
2025-10-31T05:54:15.0126508Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv40.o
2025-10-31T05:54:15.1249324Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_resource.o
2025-10-31T05:54:15.6080252Z CC [M] net/mac80211/tkip.o
2025-10-31T05:54:15.6874851Z LD [M] drivers/gpu/drm/i915/i915.o
2025-10-31T05:54:16.0530357Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv50.o
2025-10-31T05:54:16.8257599Z CC [M] net/tipc/discover.o
2025-10-31T05:54:17.1797941Z CC [M] net/mac80211/aes_cmac.o
2025-10-31T05:54:17.5379899Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/g84.o
2025-10-31T05:54:17.6718490Z CC [M] net/smc/af_smc.o
2025-10-31T05:54:18.0499974Z CC [M] net/tipc/msg.o
2025-10-31T05:54:18.1159234Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_init.o
2025-10-31T05:54:18.3141049Z CC [M] net/mac80211/aes_gmac.o
2025-10-31T05:54:18.3914739Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gt215.o
2025-10-31T05:54:18.9452813Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_hwseq.o
2025-10-31T05:54:19.4332734Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/mcp77.o
2025-10-31T05:54:19.8111402Z CC [M] net/mac80211/fils_aead.o
2025-10-31T05:54:19.9676690Z CC [M] net/tipc/name_distr.o
2025-10-31T05:54:20.3147800Z CC [M] net/smc/smc_pnet.o
2025-10-31T05:54:20.4935105Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gf100.o
2025-10-31T05:54:21.0842615Z CC [M] net/tipc/subscr.o
2025-10-31T05:54:21.0911834Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dpp.o
2025-10-31T05:54:21.5400150Z CC [M] net/mac80211/cfg.o
2025-10-31T05:54:21.8142761Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gk104.o
2025-10-31T05:54:21.9860832Z CC [M] net/smc/smc_ib.o
2025-10-31T05:54:22.1580377Z CC [M] net/tipc/monitor.o
2025-10-31T05:54:22.2429517Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dpp_cm.o
2025-10-31T05:54:23.1356399Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gk20a.o
2025-10-31T05:54:23.3029568Z CC [M] net/smc/smc_clc.o
2025-10-31T05:54:23.4200341Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_hubp.o
2025-10-31T05:54:23.7773283Z CC [M] net/tipc/name_table.o
2025-10-31T05:54:24.5518408Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gm20b.o
2025-10-31T05:54:24.9230631Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_mpc.o
2025-10-31T05:54:25.0346172Z CC [M] net/smc/smc_core.o
2025-10-31T05:54:25.7788835Z CC [M] net/tipc/net.o
2025-10-31T05:54:25.8097019Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_opp.o
2025-10-31T05:54:25.8638005Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/pllnv04.o
2025-10-31T05:54:25.9863563Z CC [M] net/mac80211/ethtool.o
2025-10-31T05:54:26.6237541Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_hubbub.o
2025-10-31T05:54:27.0269716Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/pllgt215.o
2025-10-31T05:54:27.0773013Z CC [M] net/tipc/netlink.o
2025-10-31T05:54:27.5447750Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_optc.o
2025-10-31T05:54:27.7336120Z CC [M] net/smc/smc_wr.o
2025-10-31T05:54:27.8313356Z CC [M] net/mac80211/rx.o
2025-10-31T05:54:28.0777735Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/base.o
2025-10-31T05:54:28.1438240Z CC [M] net/tipc/netlink_compat.o
2025-10-31T05:54:28.4351514Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_mmhubbub.o
2025-10-31T05:54:29.2078318Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv04.o
2025-10-31T05:54:29.2286536Z CC [M] net/smc/smc_llc.o
2025-10-31T05:54:29.3303995Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_stream_encoder.o
2025-10-31T05:54:29.9901706Z CC [M] net/tipc/node.o
2025-10-31T05:54:30.3008847Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_link_encoder.o
2025-10-31T05:54:30.7825457Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv05.o
2025-10-31T05:54:31.2053694Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dccg.o
2025-10-31T05:54:31.3663912Z CC [M] net/smc/smc_cdc.o
2025-10-31T05:54:31.9558022Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_vmid.o
2025-10-31T05:54:32.0239284Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv10.o
2025-10-31T05:54:32.2313494Z CC [M] net/mac80211/spectmgmt.o
2025-10-31T05:54:32.7949670Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dwb.o
2025-10-31T05:54:32.8639811Z CC [M] net/smc/smc_tx.o
2025-10-31T05:54:33.0866013Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv1a.o
2025-10-31T05:54:33.4017963Z CC [M] net/tipc/socket.o
2025-10-31T05:54:33.6543570Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dwb_scl.o
2025-10-31T05:54:33.7173411Z CC [M] net/mac80211/tx.o
2025-10-31T05:54:34.0495347Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv20.o
2025-10-31T05:54:34.6161201Z CC [M] net/smc/smc_rx.o
2025-10-31T05:54:34.6947826Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dsc.o
2025-10-31T05:54:34.9314627Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv50.o
2025-10-31T05:54:35.8265137Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dsc/dc_dsc.o
2025-10-31T05:54:35.9266973Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/g84.o
2025-10-31T05:54:36.3361749Z CC [M] net/smc/smc_close.o
2025-10-31T05:54:36.9922592Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dsc/rc_calc.o
2025-10-31T05:54:37.0110151Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/g98.o
2025-10-31T05:54:37.5813805Z CC [M] net/tipc/eth_media.o
2025-10-31T05:54:37.8510841Z CC [M] net/smc/smc_ism.o
2025-10-31T05:54:37.8910497Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gt215.o
2025-10-31T05:54:38.1723090Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dsc/rc_calc_dpi.o
2025-10-31T05:54:38.3792677Z CC [M] net/mac80211/key.o
2025-10-31T05:54:38.4514775Z CC [M] net/tipc/topsrv.o
2025-10-31T05:54:38.7901920Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/mcp89.o
2025-10-31T05:54:38.9771656Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_init.o
2025-10-31T05:54:39.3683274Z CC [M] net/smc/smc_diag.o
2025-10-31T05:54:39.5435210Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gf100.o
2025-10-31T05:54:39.9625783Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_resource.o
2025-10-31T05:54:40.0219546Z CC [M] net/tipc/group.o
2025-10-31T05:54:40.4588425Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gm107.o
2025-10-31T05:54:40.6257547Z LD [M] net/smc/smc.o
2025-10-31T05:54:40.7351094Z CC [M] net/mac80211/util.o
2025-10-31T05:54:40.7888930Z CC [M] net/mac80211/wme.o
2025-10-31T05:54:41.2801325Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gm200.o
2025-10-31T05:54:41.6059811Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_ipp.o
2025-10-31T05:54:41.6715734Z CC [M] net/tipc/trace.o
2025-10-31T05:54:42.1968650Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gv100.o
2025-10-31T05:54:42.2673269Z CC [M] net/tipc/udp_media.o
2025-10-31T05:54:42.4118846Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_hw_sequencer.o
2025-10-31T05:54:43.1932664Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/tu102.o
2025-10-31T05:54:43.8838087Z CC [M] net/mac80211/chan.o
2025-10-31T05:54:44.1045406Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/base.o
2025-10-31T05:54:44.1297939Z CC [M] net/tipc/ib_media.o
2025-10-31T05:54:45.1197142Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/user.o
2025-10-31T05:54:45.1847340Z CC [M] net/tipc/sysctl.o
2025-10-31T05:54:45.3035064Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/gp100.o
2025-10-31T05:54:45.4278865Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_hw_sequencer_debug.o
2025-10-31T05:54:45.9042342Z CC [M] net/rfkill/core.o
2025-10-31T05:54:46.1527669Z CC [M] net/tipc/crypto.o
2025-10-31T05:54:46.4579930Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/gp10b.o
2025-10-31T05:54:46.6010129Z CC [M] net/mac80211/trace.o
2025-10-31T05:54:46.7289678Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_dpp.o
2025-10-31T05:54:46.9130522Z CC [M] net/rfkill/input.o
2025-10-31T05:54:47.4101311Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/gv100.o
2025-10-31T05:54:47.6910687Z CC [M] net/rfkill/rfkill-gpio.o
2025-10-31T05:54:47.7995346Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_opp.o
2025-10-31T05:54:48.2329062Z LD [M] net/rfkill/rfkill.o
2025-10-31T05:54:48.2857655Z CC [M] drivers/gpu/drm/udl/udl_drv.o
2025-10-31T05:54:48.6037510Z CC [M] net/tipc/diag.o
2025-10-31T05:54:48.6555079Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/tu102.o
2025-10-31T05:54:48.6847167Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_optc.o
2025-10-31T05:54:49.0408485Z CC [M] drivers/gpu/drm/udl/udl_modeset.o
2025-10-31T05:54:49.6378895Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/base.o
2025-10-31T05:54:49.7296706Z LD [M] net/tipc/tipc.o
2025-10-31T05:54:49.9508654Z AR drivers/macintosh/built-in.a
2025-10-31T05:54:49.9704217Z CC [M] drivers/macintosh/mac_hid.o
2025-10-31T05:54:50.0367330Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_hubp.o
2025-10-31T05:54:50.0525264Z CC [M] drivers/gpu/drm/udl/udl_connector.o
2025-10-31T05:54:50.5852724Z CC [M] net/mac80211/mlme.o
2025-10-31T05:54:50.6049755Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv04.o
2025-10-31T05:54:50.8824824Z CC [M] drivers/gpu/drm/udl/udl_main.o
2025-10-31T05:54:51.4103940Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_mpc.o
2025-10-31T05:54:51.5162691Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv10.o
2025-10-31T05:54:52.0663784Z CC [M] drivers/gpu/drm/udl/udl_transfer.o
2025-10-31T05:54:52.4095373Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_dpp_dscl.o
2025-10-31T05:54:52.4727925Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv1a.o
2025-10-31T05:54:52.9192717Z LD [M] drivers/gpu/drm/udl/udl.o
2025-10-31T05:54:52.9725593Z CC [M] net/9p/mod.o
2025-10-31T05:54:53.3126361Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv20.o
2025-10-31T05:54:53.5493270Z CC [M] net/9p/client.o
2025-10-31T05:54:53.6531005Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_dpp_cm.o
2025-10-31T05:54:54.3012421Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv25.o
2025-10-31T05:54:54.8935517Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_cm_common.o
2025-10-31T05:54:55.1187788Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv30.o
2025-10-31T05:54:55.4013029Z CC [M] net/9p/error.o
2025-10-31T05:54:55.5693787Z CC [M] net/mac80211/tdls.o
2025-10-31T05:54:55.9295441Z CC [M] net/9p/protocol.o
2025-10-31T05:54:55.9601757Z AR drivers/scsi/device_handler/built-in.a
2025-10-31T05:54:55.9725165Z CC [M] drivers/scsi/device_handler/scsi_dh_rdac.o
2025-10-31T05:54:55.9814273Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv35.o
2025-10-31T05:54:56.0291885Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_hubbub.o
2025-10-31T05:54:56.8258145Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv36.o
2025-10-31T05:54:56.9523107Z CC [M] net/9p/trans_fd.o
2025-10-31T05:54:57.0306818Z CC [M] drivers/scsi/device_handler/scsi_dh_hp_sw.o
2025-10-31T05:54:57.2046297Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_stream_encoder.o
2025-10-31T05:54:57.8266064Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv40.o
2025-10-31T05:54:57.9120728Z CC [M] drivers/scsi/device_handler/scsi_dh_emc.o
2025-10-31T05:54:58.1069232Z CC [M] net/mac80211/ocb.o
2025-10-31T05:54:58.4006242Z CC [M] net/9p/trans_common.o
2025-10-31T05:54:58.7293587Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv41.o
2025-10-31T05:54:58.8193850Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_link_encoder.o
2025-10-31T05:54:58.8620708Z CC [M] drivers/scsi/device_handler/scsi_dh_alua.o
2025-10-31T05:54:58.9795311Z CC [M] net/9p/trans_xen.o
2025-10-31T05:54:59.5656443Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv44.o
2025-10-31T05:54:59.8796447Z CC [M] net/mac80211/airtime.o
2025-10-31T05:55:00.0472193Z CC [M] net/9p/trans_virtio.o
2025-10-31T05:55:00.1274799Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/display_mode_lib.o
2025-10-31T05:55:00.3123287Z AR drivers/scsi/megaraid/built-in.a
2025-10-31T05:55:00.3343285Z CC [M] drivers/scsi/megaraid/megaraid_mm.o
2025-10-31T05:55:00.4003575Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv46.o
2025-10-31T05:55:01.2078870Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/display_rq_dlg_helpers.o
2025-10-31T05:55:01.3759889Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv47.o
2025-10-31T05:55:01.3957749Z CC [M] drivers/scsi/megaraid/megaraid_mbox.o
2025-10-31T05:55:01.4856807Z CC [M] net/9p/trans_rdma.o
2025-10-31T05:55:02.0143946Z CC [M] net/mac80211/led.o
2025-10-31T05:55:02.2019650Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dml1_display_rq_dlg_calc.o
2025-10-31T05:55:02.4234139Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv49.o
2025-10-31T05:55:02.9064543Z LD [M] net/9p/9pnet.o
2025-10-31T05:55:02.9596516Z LD [M] net/9p/9pnet_xen.o
2025-10-31T05:55:02.9874272Z LD [M] net/9p/9pnet_virtio.o
2025-10-31T05:55:03.0195464Z LD [M] net/9p/9pnet_rdma.o
2025-10-31T05:55:03.1114967Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/display_mode_vba.o
2025-10-31T05:55:03.2795592Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv4e.o
2025-10-31T05:55:03.4151551Z CC [M] net/mac80211/debugfs.o
2025-10-31T05:55:03.4930488Z CC [M] drivers/scsi/megaraid/megaraid_sas_base.o
2025-10-31T05:55:04.1182173Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv50.o
2025-10-31T05:55:04.2126461Z CC drivers/nvme/host/core.o
2025-10-31T05:55:04.6535145Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn20/display_rq_dlg_calc_20.o
2025-10-31T05:55:05.1965801Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/g84.o
2025-10-31T05:55:05.3444971Z CC [M] net/mac80211/debugfs_sta.o
2025-10-31T05:55:06.1358094Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gt215.o
2025-10-31T05:55:06.3310691Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn20/display_mode_vba_20.o
2025-10-31T05:55:07.0476320Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/mcp77.o
2025-10-31T05:55:07.5043767Z CC [M] drivers/scsi/megaraid/megaraid_sas_fusion.o
2025-10-31T05:55:07.8352958Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/mcp89.o
2025-10-31T05:55:08.1181699Z CC drivers/nvme/host/trace.o
2025-10-31T05:55:08.2570327Z CC [M] net/mac80211/debugfs_netdev.o
2025-10-31T05:55:08.6978253Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gf100.o
2025-10-31T05:55:09.3709276Z CC drivers/nvme/host/multipath.o
2025-10-31T05:55:09.5596198Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gf108.o
2025-10-31T05:55:10.1788121Z CC [M] drivers/scsi/megaraid/megaraid_sas_fp.o
2025-10-31T05:55:10.2897189Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gk104.o
2025-10-31T05:55:10.6772226Z CC [M] net/mac80211/debugfs_key.o
2025-10-31T05:55:10.8799612Z CC drivers/nvme/host/zns.o
2025-10-31T05:55:11.2707942Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gk110.o
2025-10-31T05:55:11.3171123Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn20/display_rq_dlg_calc_20v2.o
2025-10-31T05:55:11.7524581Z CC drivers/nvme/host/hwmon.o
2025-10-31T05:55:11.8475657Z CC [M] drivers/scsi/megaraid/megaraid_sas_debugfs.o
2025-10-31T05:55:12.0619434Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gk20a.o
2025-10-31T05:55:12.2803933Z CC [M] net/mac80211/mesh.o
2025-10-31T05:55:12.6468976Z CC drivers/nvme/host/pci.o
2025-10-31T05:55:12.7352610Z LD [M] drivers/scsi/megaraid/megaraid_sas.o
2025-10-31T05:55:12.8155418Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn20/display_mode_vba_20v2.o
2025-10-31T05:55:12.8364374Z CC [M] drivers/scsi/pcmcia/qlogic_stub.o
2025-10-31T05:55:12.8871896Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gm107.o
2025-10-31T05:55:13.7875404Z CC [M] drivers/scsi/pcmcia/fdomain_cs.o
2025-10-31T05:55:13.8567250Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gm200.o
2025-10-31T05:55:14.4700073Z CC [M] net/mac80211/mesh_pathtbl.o
2025-10-31T05:55:14.6016214Z CC [M] drivers/scsi/pcmcia/aha152x_stub.o
2025-10-31T05:55:14.9382845Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gm20b.o
2025-10-31T05:55:15.0233587Z CC [M] drivers/nvme/host/fabrics.o
2025-10-31T05:55:15.5472272Z CC [M] drivers/scsi/pcmcia/aha152x_core.o
2025-10-31T05:55:15.8412220Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gp100.o
2025-10-31T05:55:16.2070877Z CC [M] net/mac80211/mesh_plink.o
2025-10-31T05:55:16.6339175Z CC [M] drivers/nvme/host/rdma.o
2025-10-31T05:55:16.8841241Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gp102.o
2025-10-31T05:55:17.7434644Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gp10b.o
2025-10-31T05:55:17.8165212Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn21/display_rq_dlg_calc_21.o
2025-10-31T05:55:17.8377919Z CC [M] drivers/scsi/pcmcia/sym53c500_cs.o
2025-10-31T05:55:18.3514178Z CC [M] net/mac80211/mesh_hwmp.o
2025-10-31T05:55:18.5108893Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gv100.o
2025-10-31T05:55:18.8129501Z LD [M] drivers/scsi/pcmcia/qlogic_cs.o
2025-10-31T05:55:18.8249674Z LD [M] drivers/scsi/pcmcia/aha152x_cs.o
2025-10-31T05:55:18.8842619Z CC [M] drivers/scsi/libsas/sas_init.o
2025-10-31T05:55:19.3205729Z CC [M] drivers/nvme/host/fc.o
2025-10-31T05:55:19.4259465Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ram.o
2025-10-31T05:55:19.8063696Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn21/display_mode_vba_21.o
2025-10-31T05:55:20.0135973Z CC [M] net/mac80211/mesh_sync.o
2025-10-31T05:55:20.2094932Z CC [M] drivers/scsi/libsas/sas_phy.o
2025-10-31T05:55:20.5020330Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv04.o
2025-10-31T05:55:21.1408501Z CC [M] drivers/scsi/libsas/sas_port.o
2025-10-31T05:55:21.3556836Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv10.o
2025-10-31T05:55:21.8473510Z CC [M] drivers/nvme/host/tcp.o
2025-10-31T05:55:21.9818368Z CC [M] net/mac80211/mesh_ps.o
2025-10-31T05:55:22.1304473Z CC [M] drivers/scsi/libsas/sas_event.o
2025-10-31T05:55:22.1577328Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv1a.o
2025-10-31T05:55:23.0820376Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv20.o
2025-10-31T05:55:23.1184146Z CC [M] drivers/scsi/libsas/sas_discover.o
2025-10-31T05:55:23.6845417Z CC [M] net/mac80211/pm.o
2025-10-31T05:55:24.0176676Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv40.o
2025-10-31T05:55:24.3961582Z CC [M] drivers/scsi/libsas/sas_expander.o
2025-10-31T05:55:24.4210166Z LD [M] drivers/nvme/host/nvme-fabrics.o
2025-10-31T05:55:24.4501252Z LD [M] drivers/nvme/host/nvme-rdma.o
2025-10-31T05:55:24.4849800Z LD [M] drivers/nvme/host/nvme-fc.o
2025-10-31T05:55:24.5224555Z LD [M] drivers/nvme/host/nvme-tcp.o
2025-10-31T05:55:24.5573431Z AR drivers/nvme/host/built-in.a
2025-10-31T05:55:24.6660727Z AR drivers/nvme/target/built-in.a
2025-10-31T05:55:24.6914545Z CC [M] drivers/nvme/target/core.o
2025-10-31T05:55:25.0400090Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv41.o
2025-10-31T05:55:25.2699033Z CC [M] net/mac80211/rc80211_minstrel.o
2025-10-31T05:55:25.6090940Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn30/display_mode_vba_30.o
2025-10-31T05:55:25.8685555Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv44.o
2025-10-31T05:55:26.0797706Z CC [M] drivers/scsi/libsas/sas_scsi_host.o
2025-10-31T05:55:26.8422431Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv49.o
2025-10-31T05:55:26.8522681Z CC [M] drivers/nvme/target/configfs.o
2025-10-31T05:55:27.2329960Z CC [M] net/mac80211/rc80211_minstrel_ht.o
2025-10-31T05:55:27.3344439Z CC [M] drivers/scsi/libsas/sas_task.o
2025-10-31T05:55:27.9451917Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv4e.o
2025-10-31T05:55:28.1226411Z CC [M] drivers/scsi/libsas/sas_ata.o
2025-10-31T05:55:28.2404852Z CC [M] drivers/nvme/target/admin-cmd.o
2025-10-31T05:55:28.9583803Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv50.o
2025-10-31T05:55:29.4690504Z CC [M] drivers/nvme/target/fabrics-cmd.o
2025-10-31T05:55:29.5295393Z CC [M] drivers/scsi/libsas/sas_host_smp.o
2025-10-31T05:55:29.9146170Z CC [M] net/mac80211/rc80211_minstrel_debugfs.o
2025-10-31T05:55:30.3611387Z CC [M] drivers/nvme/target/discovery.o
2025-10-31T05:55:30.4028724Z LD [M] drivers/scsi/libsas/libsas.o
2025-10-31T05:55:30.5380740Z CC [M] drivers/scsi/libfc/fc_libfc.o
2025-10-31T05:55:31.0212462Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgt215.o
2025-10-31T05:55:31.2173296Z CC [M] drivers/nvme/target/io-cmd-file.o
2025-10-31T05:55:31.3882528Z CC [M] net/mac80211/rc80211_minstrel_ht_debugfs.o
2025-10-31T05:55:31.5265380Z CC [M] drivers/scsi/libfc/fc_disc.o
2025-10-31T05:55:32.1179013Z CC [M] drivers/nvme/target/io-cmd-bdev.o
2025-10-31T05:55:32.4402898Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn30/display_rq_dlg_calc_30.o
2025-10-31T05:55:32.7983703Z CC [M] drivers/scsi/libfc/fc_exch.o
2025-10-31T05:55:33.0125452Z CC [M] drivers/nvme/target/passthru.o
2025-10-31T05:55:33.0953674Z LD [M] net/mac80211/mac80211.o
2025-10-31T05:55:33.4448275Z CC [M] net/6lowpan/core.o
2025-10-31T05:55:34.1387875Z CC [M] drivers/nvme/target/trace.o
2025-10-31T05:55:34.2022996Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/rammcp77.o
2025-10-31T05:55:34.2649509Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_init.o
2025-10-31T05:55:34.6091194Z CC [M] net/6lowpan/iphc.o
2025-10-31T05:55:34.9086607Z CC [M] drivers/nvme/target/loop.o
2025-10-31T05:55:35.0204390Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgf100.o
2025-10-31T05:55:35.1086553Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_hubp.o
2025-10-31T05:55:35.3446437Z CC [M] drivers/scsi/libfc/fc_elsct.o
2025-10-31T05:55:36.2213831Z CC [M] drivers/nvme/target/rdma.o
2025-10-31T05:55:36.4270722Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_hubbub.o
2025-10-31T05:55:36.4780416Z CC [M] net/6lowpan/nhc.o
2025-10-31T05:55:36.6355475Z CC [M] drivers/scsi/libfc/fc_frame.o
2025-10-31T05:55:37.4523154Z CC [M] drivers/scsi/libfc/fc_lport.o
2025-10-31T05:55:37.5507556Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_resource.o
2025-10-31T05:55:37.5566171Z CC [M] net/6lowpan/ndisc.o
2025-10-31T05:55:37.5907679Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgf108.o
2025-10-31T05:55:38.4807444Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgk104.o
2025-10-31T05:55:38.5800582Z CC [M] drivers/nvme/target/fc.o
2025-10-31T05:55:38.7534100Z CC [M] net/6lowpan/debugfs.o
2025-10-31T05:55:39.0908446Z CC [M] drivers/scsi/libfc/fc_rport.o
2025-10-31T05:55:39.5898875Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_hwseq.o
2025-10-31T05:55:40.0008510Z CC [M] net/6lowpan/nhc_dest.o
2025-10-31T05:55:40.4434150Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_link_encoder.o
2025-10-31T05:55:40.7849045Z CC [M] drivers/nvme/target/fcloop.o
2025-10-31T05:55:41.2578093Z CC [M] net/6lowpan/nhc_fragment.o
2025-10-31T05:55:41.3252529Z CC [M] drivers/scsi/libfc/fc_fcp.o
2025-10-31T05:55:41.3472845Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_init.o
2025-10-31T05:55:42.2118372Z CC [M] drivers/nvme/target/tcp.o
2025-10-31T05:55:42.2571517Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_hubbub.o
2025-10-31T05:55:42.3639159Z CC [M] net/6lowpan/nhc_hop.o
2025-10-31T05:55:43.0681317Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_hubp.o
2025-10-31T05:55:43.4220151Z CC [M] drivers/scsi/libfc/fc_npiv.o
2025-10-31T05:55:43.5593196Z CC [M] net/6lowpan/nhc_ipv6.o
2025-10-31T05:55:43.5673229Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgm107.o
2025-10-31T05:55:43.9415018Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp.o
2025-10-31T05:55:44.2696108Z LD [M] drivers/nvme/target/nvmet.o
2025-10-31T05:55:44.3012515Z LD [M] drivers/nvme/target/nvme-loop.o
2025-10-31T05:55:44.3146559Z LD [M] drivers/nvme/target/nvmet-rdma.o
2025-10-31T05:55:44.3314023Z LD [M] drivers/nvme/target/nvmet-fc.o
2025-10-31T05:55:44.3401435Z LD [M] drivers/scsi/libfc/libfc.o
2025-10-31T05:55:44.3472924Z LD [M] drivers/nvme/target/nvme-fcloop.o
2025-10-31T05:55:44.3578506Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgm200.o
2025-10-31T05:55:44.3635153Z LD [M] drivers/nvme/target/nvmet-tcp.o
2025-10-31T05:55:44.4337504Z AR drivers/nvme/built-in.a
2025-10-31T05:55:44.4496613Z CC [M] drivers/scsi/fcoe/fcoe.o
2025-10-31T05:55:44.4504641Z drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp.c:129:6: warning: conflicting types for ‘dpp3_set_pre_degam’ due to enum/integer mismatch; have ‘void(struct dpp *, enum dc_transfer_func_predefined)’ [-Wenum-int-mismatch]
2025-10-31T05:55:44.4511017Z 129 | void dpp3_set_pre_degam(struct dpp *dpp_base, enum dc_transfer_func_predefined tr)
2025-10-31T05:55:44.4512590Z | ^~~~~~~~~~~~~~~~~~
2025-10-31T05:55:44.4529071Z In file included from drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp.c:29:
2025-10-31T05:55:44.4531778Z drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp.h:587:6: note: previous declaration of ‘dpp3_set_pre_degam’ with type ‘void(struct dpp *, uint32_t)’ {aka ‘void(struct dpp *, unsigned int)’}
2025-10-31T05:55:44.4534188Z 587 | void dpp3_set_pre_degam(struct dpp *dpp_base,
2025-10-31T05:55:44.4535376Z | ^~~~~~~~~~~~~~~~~~
2025-10-31T05:55:44.4720501Z CC [M] net/6lowpan/nhc_mobility.o
2025-10-31T05:55:45.1696512Z CC [M] net/ieee802154/6lowpan/core.o
2025-10-31T05:55:45.2305451Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgp100.o
2025-10-31T05:55:45.3233443Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_optc.o
2025-10-31T05:55:45.5953930Z CC [M] net/6lowpan/nhc_routing.o
2025-10-31T05:55:46.1487366Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/sddr2.o
2025-10-31T05:55:46.2841759Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dccg.o
2025-10-31T05:55:46.3876544Z CC [M] drivers/scsi/fcoe/fcoe_ctlr.o
2025-10-31T05:55:46.4302135Z CC [M] net/ieee802154/6lowpan/rx.o
2025-10-31T05:55:46.6130690Z CC [M] net/6lowpan/nhc_udp.o
2025-10-31T05:55:47.0367749Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/sddr3.o
2025-10-31T05:55:47.1711320Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_hwseq.o
2025-10-31T05:55:47.7939837Z CC [M] net/ieee802154/6lowpan/reassembly.o
2025-10-31T05:55:47.8805669Z CC [M] net/6lowpan/nhc_ghc_ext_hop.o
2025-10-31T05:55:48.0329314Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gddr3.o
2025-10-31T05:55:48.5542766Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_mpc.o
2025-10-31T05:55:48.9382934Z CC [M] net/6lowpan/nhc_ghc_udp.o
2025-10-31T05:55:48.9591818Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gddr5.o
2025-10-31T05:55:49.0906565Z CC [M] drivers/scsi/fcoe/fcoe_transport.o
2025-10-31T05:55:49.2005787Z CC [M] net/ieee802154/6lowpan/tx.o
2025-10-31T05:55:49.8399172Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fuse/base.o
2025-10-31T05:55:50.0005075Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_vpg.o
2025-10-31T05:55:50.0201222Z CC [M] net/6lowpan/nhc_ghc_icmpv6.o
2025-10-31T05:55:50.4638442Z LD [M] net/ieee802154/6lowpan/ieee802154_6lowpan.o
2025-10-31T05:55:50.5041777Z CC [M] net/ieee802154/netlink.o
2025-10-31T05:55:50.6441565Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_afmt.o
2025-10-31T05:55:50.7584525Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fuse/nv50.o
2025-10-31T05:55:50.8328783Z CC [M] drivers/scsi/fcoe/fcoe_sysfs.o
2025-10-31T05:55:51.1922269Z CC [M] net/ieee802154/nl-mac.o
2025-10-31T05:55:51.2345107Z CC [M] net/6lowpan/nhc_ghc_ext_dest.o
2025-10-31T05:55:51.2809554Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dio_stream_encoder.o
2025-10-31T05:55:51.5181075Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fuse/gf100.o
2025-10-31T05:55:52.3283266Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fuse/gm107.o
2025-10-31T05:55:52.3466253Z LD [M] drivers/scsi/fcoe/libfcoe.o
2025-10-31T05:55:52.3788540Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dwb.o
2025-10-31T05:55:52.4018608Z CC [M] net/6lowpan/nhc_ghc_ext_frag.o
2025-10-31T05:55:52.4021539Z CC [M] drivers/scsi/fnic/fnic_attrs.o
2025-10-31T05:55:53.0395223Z CC [M] net/ieee802154/nl-phy.o
2025-10-31T05:55:53.2337659Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/base.o
2025-10-31T05:55:53.2791800Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp_cm.o
2025-10-31T05:55:53.4083637Z CC [M] net/6lowpan/nhc_ghc_ext_route.o
2025-10-31T05:55:53.4815375Z CC [M] drivers/scsi/fnic/fnic_isr.o
2025-10-31T05:55:54.0904967Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/nv10.o
2025-10-31T05:55:54.2828678Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dwb_cm.o
2025-10-31T05:55:54.3494105Z CC [M] net/ieee802154/nl_policy.o
2025-10-31T05:55:54.4591413Z LD [M] net/6lowpan/6lowpan.o
2025-10-31T05:55:54.6043379Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_cm_common.o
2025-10-31T05:55:54.7080836Z CC [M] drivers/scsi/fnic/fnic_main.o
2025-10-31T05:55:54.9312522Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/nv50.o
2025-10-31T05:55:55.0663725Z CC [M] net/ieee802154/core.o
2025-10-31T05:55:55.2396379Z CC [M] drivers/scsi/snic/snic_attrs.o
2025-10-31T05:55:55.6946130Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_mmhubbub.o
2025-10-31T05:55:55.7904661Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/g94.o
2025-10-31T05:55:56.0861638Z CC [M] drivers/scsi/fnic/fnic_res.o
2025-10-31T05:55:56.1481460Z CC [M] drivers/scsi/snic/snic_main.o
2025-10-31T05:55:56.5482586Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dio_link_encoder.o
2025-10-31T05:55:56.6395864Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/gf119.o
2025-10-31T05:55:56.7298855Z CC [M] net/ieee802154/header_ops.o
2025-10-31T05:55:57.2471168Z CC [M] drivers/scsi/fnic/fnic_fcs.o
2025-10-31T05:55:57.4193288Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_resource.o
2025-10-31T05:55:57.4696844Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/gk104.o
2025-10-31T05:55:57.4846366Z CC [M] drivers/scsi/snic/snic_res.o
2025-10-31T05:55:57.7448863Z CC [M] net/ieee802154/sysfs.o
2025-10-31T05:55:58.4065151Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gsp/base.o
2025-10-31T05:55:58.5738024Z CC [M] drivers/scsi/snic/snic_isr.o
2025-10-31T05:55:58.8218087Z CC [M] net/ieee802154/nl802154.o
2025-10-31T05:55:58.8639557Z CC [M] drivers/scsi/fnic/fnic_scsi.o
2025-10-31T05:55:59.3585397Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gsp/gv100.o
2025-10-31T05:55:59.4980202Z CC [M] drivers/scsi/snic/snic_ctl.o
2025-10-31T05:55:59.8466265Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce120/dce120_resource.o
2025-10-31T05:56:00.3164246Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.o
2025-10-31T05:56:00.4305055Z CC [M] drivers/scsi/snic/snic_io.o
2025-10-31T05:56:01.2979923Z CC [M] net/ieee802154/trace.o
2025-10-31T05:56:01.3341850Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce120/dce120_timing_generator.o
2025-10-31T05:56:01.5204237Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/nv04.o
2025-10-31T05:56:01.6728888Z CC [M] drivers/scsi/snic/snic_scsi.o
2025-10-31T05:56:01.7180345Z CC [M] drivers/scsi/fnic/fnic_trace.o
2025-10-31T05:56:02.3333268Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/nv4e.o
2025-10-31T05:56:02.8458366Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce120/dce120_hw_sequencer.o
2025-10-31T05:56:02.9866420Z CC [M] drivers/scsi/fnic/fnic_debugfs.o
2025-10-31T05:56:03.0167471Z CC [M] net/ieee802154/socket.o
2025-10-31T05:56:03.2818178Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/nv50.o
2025-10-31T05:56:03.8629109Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce112/dce112_compressor.o
2025-10-31T05:56:03.9189381Z CC [M] drivers/scsi/snic/snic_disc.o
2025-10-31T05:56:04.1228231Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/g94.o
2025-10-31T05:56:04.2541155Z CC [M] drivers/scsi/fnic/vnic_cq.o
2025-10-31T05:56:04.5633338Z LD [M] net/ieee802154/ieee802154.o
2025-10-31T05:56:04.6371218Z LD [M] net/ieee802154/ieee802154_socket.o
2025-10-31T05:56:04.7384490Z CC [M] net/mac802154/main.o
2025-10-31T05:56:04.9120952Z CC [M] drivers/scsi/fnic/vnic_dev.o
2025-10-31T05:56:04.9420341Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce112/dce112_hw_sequencer.o
2025-10-31T05:56:05.0135859Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/gf117.o
2025-10-31T05:56:05.0863173Z CC [M] drivers/scsi/snic/vnic_cq.o
2025-10-31T05:56:05.7168604Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce112/dce112_resource.o
2025-10-31T05:56:05.8183904Z CC [M] drivers/scsi/snic/vnic_intr.o
2025-10-31T05:56:05.8729192Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/gf119.o
2025-10-31T05:56:06.0433686Z CC [M] drivers/scsi/fnic/vnic_intr.o
2025-10-31T05:56:06.0788855Z CC [M] net/mac802154/rx.o
2025-10-31T05:56:06.3741439Z CC [M] drivers/scsi/snic/vnic_dev.o
2025-10-31T05:56:06.6755987Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/gk104.o
2025-10-31T05:56:06.7813753Z CC [M] drivers/scsi/fnic/vnic_rq.o
2025-10-31T05:56:07.0179717Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_timing_generator.o
2025-10-31T05:56:07.0623306Z CC [M] net/mac802154/tx.o
2025-10-31T05:56:07.4424233Z CC [M] drivers/scsi/snic/vnic_wq.o
2025-10-31T05:56:07.5396479Z CC [M] drivers/scsi/fnic/vnic_wq_copy.o
2025-10-31T05:56:07.5622350Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/gm200.o
2025-10-31T05:56:08.0663608Z CC [M] net/mac802154/mac_cmd.o
2025-10-31T05:56:08.2058146Z CC [M] drivers/scsi/fnic/vnic_wq.o
2025-10-31T05:56:08.2151203Z LD [M] drivers/scsi/snic/snic.o
2025-10-31T05:56:08.3314460Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_compressor.o
2025-10-31T05:56:08.3714406Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/pad.o
2025-10-31T05:56:08.9990506Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padnv04.o
2025-10-31T05:56:09.0329554Z LD [M] drivers/scsi/fnic/fnic.o
2025-10-31T05:56:09.1461541Z CC [M] drivers/scsi/bnx2fc/bnx2fc_els.o
2025-10-31T05:56:09.1858379Z CC [M] net/mac802154/mib.o
2025-10-31T05:56:09.2529893Z CC [M] net/mac802154/iface.o
2025-10-31T05:56:09.2900414Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_hw_sequencer.o
2025-10-31T05:56:09.9030846Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padnv4e.o
2025-10-31T05:56:10.3414076Z CC drivers/ata/libata-core.o
2025-10-31T05:56:10.4532290Z CC [M] drivers/scsi/bnx2fc/bnx2fc_fcoe.o
2025-10-31T05:56:10.8220058Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padnv50.o
2025-10-31T05:56:10.8296022Z CC [M] net/mac802154/llsec.o
2025-10-31T05:56:11.2736210Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_resource.o
2025-10-31T05:56:11.6549977Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.o
2025-10-31T05:56:12.5813885Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.o
2025-10-31T05:56:12.5838069Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_opp_regamma_v.o
2025-10-31T05:56:12.8367206Z CC [M] drivers/scsi/bnx2fc/bnx2fc_hwi.o
2025-10-31T05:56:13.0898748Z CC [M] net/mac802154/util.o
2025-10-31T05:56:13.4747159Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_opp_csc_v.o
2025-10-31T05:56:13.6123807Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.o
2025-10-31T05:56:14.0004700Z CC [M] net/mac802154/cfg.o
2025-10-31T05:56:14.2987161Z CC drivers/ata/libata-scsi.o
2025-10-31T05:56:14.7323716Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_timing_generator_v.o
2025-10-31T05:56:14.7693285Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/bus.o
2025-10-31T05:56:14.9696660Z CC [M] drivers/scsi/bnx2fc/bnx2fc_io.o
2025-10-31T05:56:15.1232465Z CC [M] net/mac802154/trace.o
2025-10-31T05:56:15.8683245Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/busnv04.o
2025-10-31T05:56:15.9644602Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_mem_input_v.o
2025-10-31T05:56:16.6287224Z LD [M] net/mac802154/mac802154.o
2025-10-31T05:56:16.7460593Z CC [M] net/wimax/id-table.o
2025-10-31T05:56:16.8471731Z CC drivers/ata/libata-eh.o
2025-10-31T05:56:16.8876249Z CC [M] drivers/scsi/bnx2fc/bnx2fc_tgt.o
2025-10-31T05:56:17.1574862Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/busnv4e.o
2025-10-31T05:56:17.5978779Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_opp_v.o
2025-10-31T05:56:17.7061068Z CC [M] net/wimax/op-msg.o
2025-10-31T05:56:18.0827047Z CC [M] drivers/scsi/bnx2fc/bnx2fc_debug.o
2025-10-31T05:56:18.1677834Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/busnv50.o
2025-10-31T05:56:18.6655906Z CC [M] net/wimax/op-reset.o
2025-10-31T05:56:18.7226404Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_transform_v.o
2025-10-31T05:56:19.0674951Z LD [M] drivers/scsi/bnx2fc/bnx2fc.o
2025-10-31T05:56:19.1512942Z CC [M] drivers/scsi/qedf/qedf_dbg.o
2025-10-31T05:56:19.1554446Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/busgf119.o
2025-10-31T05:56:19.5829680Z CC [M] net/wimax/op-rfkill.o
2025-10-31T05:56:19.6198134Z CC drivers/ata/libata-transport.o
2025-10-31T05:56:19.8687139Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce100/dce100_resource.o
2025-10-31T05:56:20.1653734Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/bit.o
2025-10-31T05:56:20.2211855Z CC [M] drivers/scsi/qedf/qedf_main.o
2025-10-31T05:56:20.5583368Z CC [M] net/wimax/op-state-get.o
2025-10-31T05:56:20.9391335Z CC drivers/ata/libata-trace.o
2025-10-31T05:56:20.9833738Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce100/dce100_hw_sequencer.o
2025-10-31T05:56:21.0293770Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.o
2025-10-31T05:56:21.5250925Z CC [M] net/wimax/stack.o
2025-10-31T05:56:21.7235607Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_timing_generator.o
2025-10-31T05:56:21.7539254Z CC drivers/ata/libata-sata.o
2025-10-31T05:56:22.2107798Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.o
2025-10-31T05:56:22.4155662Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_hw_sequencer.o
2025-10-31T05:56:22.8852471Z CC [M] net/wimax/debugfs.o
2025-10-31T05:56:23.1085722Z CC drivers/ata/libata-sff.o
2025-10-31T05:56:23.1564424Z CC [M] drivers/scsi/qedf/qedf_io.o
2025-10-31T05:56:23.2396395Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.o
2025-10-31T05:56:23.2532460Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.o
2025-10-31T05:56:23.7667944Z LD [M] net/wimax/wimax.o
2025-10-31T05:56:23.8272188Z CC [M] net/dns_resolver/dns_key.o
2025-10-31T05:56:24.1674588Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.o
2025-10-31T05:56:24.6130390Z CC [M] net/dns_resolver/dns_query.o
2025-10-31T05:56:24.7609859Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce60/dce60_timing_generator.o
2025-10-31T05:56:24.8855279Z CC drivers/ata/libata-pmp.o
2025-10-31T05:56:25.3413963Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.o
2025-10-31T05:56:25.3532595Z LD [M] net/dns_resolver/dns_resolver.o
2025-10-31T05:56:25.4414279Z CC [M] net/ceph/ceph_common.o
2025-10-31T05:56:25.5144453Z CC [M] drivers/scsi/qedf/qedf_fip.o
2025-10-31T05:56:25.5505426Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce60/dce60_hw_sequencer.o
2025-10-31T05:56:26.0930395Z CC drivers/ata/libata-acpi.o
2025-10-31T05:56:26.3616972Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gf100.o
2025-10-31T05:56:26.4535898Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce60/dce60_resource.o
2025-10-31T05:56:26.8995577Z CC [M] drivers/scsi/qedf/qedf_attr.o
2025-10-31T05:56:27.0291203Z CC [M] net/ceph/messenger.o
2025-10-31T05:56:27.2701703Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gf117.o
2025-10-31T05:56:27.3490208Z CC drivers/ata/libata-zpodd.o
2025-10-31T05:56:27.8309410Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/hdcp/hdcp_msg.o
2025-10-31T05:56:28.1487063Z CC [M] drivers/scsi/qedf/qedf_els.o
2025-10-31T05:56:28.1907559Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gk104.o
2025-10-31T05:56:28.3147193Z CC drivers/ata/libata-pata-timings.o
2025-10-31T05:56:28.6354246Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.o
2025-10-31T05:56:29.1621875Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gk20a.o
2025-10-31T05:56:29.5489936Z CC drivers/ata/ahci.o
2025-10-31T05:56:29.6018915Z CC [M] drivers/scsi/qedf/drv_scsi_fw_funcs.o
2025-10-31T05:56:30.0124584Z CC [M] drivers/scsi/qedf/drv_fcoe_fw_funcs.o
2025-10-31T05:56:30.0774363Z CC [M] net/ceph/msgpool.o
2025-10-31T05:56:30.1478578Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gm200.o
2025-10-31T05:56:30.8269395Z CC [M] net/ceph/buffer.o
2025-10-31T05:56:30.8538131Z CC drivers/ata/libahci.o
2025-10-31T05:56:30.8826123Z CC [M] drivers/scsi/qedf/qedf_debugfs.o
2025-10-31T05:56:31.0995875Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link.o
2025-10-31T05:56:31.1685309Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gp10b.o
2025-10-31T05:56:31.6519190Z CC [M] net/ceph/pagelist.o
2025-10-31T05:56:32.0994628Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.o
2025-10-31T05:56:32.2101343Z LD [M] drivers/scsi/qedf/qedf.o
2025-10-31T05:56:32.3556405Z CC [M] drivers/scsi/arcmsr/arcmsr_attr.o
2025-10-31T05:56:32.5056089Z CC [M] net/ceph/mon_client.o
2025-10-31T05:56:32.6568904Z CC [M] drivers/ata/acard-ahci.o
2025-10-31T05:56:33.1684969Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/gf100.o
2025-10-31T05:56:33.2233780Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.o
2025-10-31T05:56:33.4705641Z CC [M] drivers/scsi/arcmsr/arcmsr_hba.o
2025-10-31T05:56:33.5525256Z CC [M] drivers/ata/ahci_platform.o
2025-10-31T05:56:34.0193381Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/base.o
2025-10-31T05:56:34.3803682Z CC [M] net/ceph/decode.o
2025-10-31T05:56:34.4501882Z CC [M] drivers/ata/libahci_platform.o
2025-10-31T05:56:34.9405564Z CC [M] net/ceph/cls_lock_client.o
2025-10-31T05:56:35.1009784Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv04.o
2025-10-31T05:56:35.4684784Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_hw_sequencer.o
2025-10-31T05:56:35.6906966Z CC [M] drivers/ata/sata_inic162x.o
2025-10-31T05:56:36.1696627Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_sink.o
2025-10-31T05:56:36.2029551Z CC [M] net/ceph/osd_client.o
2025-10-31T05:56:36.2386834Z LD [M] drivers/scsi/arcmsr/arcmsr.o
2025-10-31T05:56:36.2814815Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv40.o
2025-10-31T05:56:36.3073246Z SHIPPED drivers/scsi/aic7xxx/aic7xxx_seq.h
2025-10-31T05:56:36.3229881Z SHIPPED drivers/scsi/aic7xxx/aic7xxx_reg.h
2025-10-31T05:56:36.3358837Z SHIPPED drivers/scsi/aic7xxx/aic7xxx_reg_print.c
2025-10-31T05:56:36.3505554Z CC [M] drivers/scsi/aic7xxx/aic7xxx_osm.o
2025-10-31T05:56:36.8921866Z CC [M] drivers/ata/sata_sil24.o
2025-10-31T05:56:37.0311537Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_surface.o
2025-10-31T05:56:37.4326488Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv50.o
2025-10-31T05:56:37.9549027Z CC [M] drivers/scsi/aic7xxx/aic7xxx_proc.o
2025-10-31T05:56:38.0253457Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_hwss.o
2025-10-31T05:56:38.2155291Z CC [M] drivers/ata/sata_dwc_460ex.o
2025-10-31T05:56:38.6460457Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/gk20a.o
2025-10-31T05:56:38.8386653Z CC [M] drivers/scsi/aic7xxx/aic7xxx_osm_pci.o
2025-10-31T05:56:39.3644456Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_dp.o
2025-10-31T05:56:39.4459580Z CC [M] drivers/ata/pdc_adma.o
2025-10-31T05:56:39.6257599Z SHIPPED drivers/scsi/aic7xxx/aic79xx_seq.h
2025-10-31T05:56:39.6324451Z SHIPPED drivers/scsi/aic7xxx/aic79xx_reg.h
2025-10-31T05:56:39.6396273Z SHIPPED drivers/scsi/aic7xxx/aic79xx_reg_print.c
2025-10-31T05:56:39.6530472Z CC [M] drivers/scsi/aic7xxx/aic79xx_osm.o
2025-10-31T05:56:39.8007235Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/base.o
2025-10-31T05:56:40.6412632Z CC [M] drivers/ata/sata_qstor.o
2025-10-31T05:56:40.7690001Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gf100.o
2025-10-31T05:56:40.9328940Z CC [M] net/ceph/osdmap.o
2025-10-31T05:56:41.4912745Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_ddc.o
2025-10-31T05:56:41.7030284Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gk104.o
2025-10-31T05:56:41.7110770Z CC [M] drivers/scsi/aic7xxx/aic79xx_proc.o
2025-10-31T05:56:41.8233633Z CC [M] drivers/ata/sata_sx4.o
2025-10-31T05:56:42.4364471Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gm107.o
2025-10-31T05:56:42.6011246Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_debug.o
2025-10-31T05:56:42.7808423Z CC [M] drivers/scsi/aic7xxx/aic79xx_osm_pci.o
2025-10-31T05:56:42.9927712Z CC [M] drivers/ata/ata_piix.o
2025-10-31T05:56:43.2898793Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gm200.o
2025-10-31T05:56:43.6119310Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_stream.o
2025-10-31T05:56:43.7499774Z CC [M] drivers/scsi/aic7xxx/aic7xxx_core.o
2025-10-31T05:56:44.1665536Z CC [M] drivers/ata/sata_mv.o
2025-10-31T05:56:44.2530134Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gp100.o
2025-10-31T05:56:44.6655821Z CC [M] net/ceph/crush/crush.o
2025-10-31T05:56:44.8667357Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_vm_helper.o
2025-10-31T05:56:44.9974605Z CC [M] net/ceph/crush/mapper.o
2025-10-31T05:56:45.2489103Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gp102.o
2025-10-31T05:56:45.6484332Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dc_helper.o
2025-10-31T05:56:45.8025962Z CC [M] net/ceph/crush/hash.o
2025-10-31T05:56:46.1408280Z CC [M] net/ceph/striper.o
2025-10-31T05:56:46.1842328Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gp10b.o
2025-10-31T05:56:46.6645535Z CC [M] net/ceph/debugfs.o
2025-10-31T05:56:46.8554083Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dc_dmub_srv.o
2025-10-31T05:56:46.9714527Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.o
2025-10-31T05:56:46.9867400Z CC [M] drivers/ata/sata_nv.o
2025-10-31T05:56:47.1931266Z CC [M] drivers/scsi/aic7xxx/aic7xxx_93cx6.o
2025-10-31T05:56:47.6824142Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/freesync/freesync.o
2025-10-31T05:56:47.8027304Z CC [M] net/ceph/auth.o
2025-10-31T05:56:48.0669384Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv04.o
2025-10-31T05:56:48.0893002Z CC [M] drivers/scsi/aic7xxx/aic7xxx_pci.o
2025-10-31T05:56:48.7989858Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/color/color_gamma.o
2025-10-31T05:56:48.8253743Z CC [M] drivers/ata/sata_promise.o
2025-10-31T05:56:48.8427677Z CC [M] net/ceph/auth_none.o
2025-10-31T05:56:48.9636725Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv11.o
2025-10-31T05:56:49.5321505Z CC [M] net/ceph/crypto.o
2025-10-31T05:56:49.6821801Z CC [M] drivers/scsi/aic7xxx/aic7xxx_reg_print.o
2025-10-31T05:56:49.8573929Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv17.o
2025-10-31T05:56:50.0892496Z CC [M] drivers/ata/sata_sil.o
2025-10-31T05:56:50.3969670Z CC [M] drivers/scsi/aic7xxx/aic79xx_core.o
2025-10-31T05:56:50.5541495Z CC [M] net/ceph/armor.o
2025-10-31T05:56:50.7504120Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv44.o
2025-10-31T05:56:50.7783353Z CC [M] net/ceph/auth_x.o
2025-10-31T05:56:50.9349294Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/color/color_table.o
2025-10-31T05:56:51.0885445Z CC [M] drivers/ata/sata_sis.o
2025-10-31T05:56:51.6587390Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/info_packet/info_packet.o
2025-10-31T05:56:51.6997655Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv50.o
2025-10-31T05:56:52.0383817Z CC [M] drivers/ata/sata_svw.o
2025-10-31T05:56:52.4212383Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/power/power_helpers.o
2025-10-31T05:56:52.4733818Z CC [M] net/ceph/ceph_strings.o
2025-10-31T05:56:52.6291088Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/g84.o
2025-10-31T05:56:52.8213582Z CC [M] drivers/ata/sata_uli.o
2025-10-31T05:56:53.1779896Z CC [M] net/ceph/ceph_hash.o
2025-10-31T05:56:53.4057700Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_srv.o
2025-10-31T05:56:53.5655688Z CC [M] drivers/ata/sata_via.o
2025-10-31T05:56:53.6027789Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/g98.o
2025-10-31T05:56:53.8138050Z CC [M] net/ceph/pagevec.o
2025-10-31T05:56:54.3084868Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_reg.o
2025-10-31T05:56:54.4912953Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn20.o
2025-10-31T05:56:54.5622620Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gt215.o
2025-10-31T05:56:54.7091178Z CC [M] drivers/ata/sata_vsc.o
2025-10-31T05:56:54.9238063Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn21.o
2025-10-31T05:56:54.9934582Z CC [M] net/ceph/snapshot.o
2025-10-31T05:56:55.1433403Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn30.o
2025-10-31T05:56:55.1444501Z CC [M] drivers/scsi/aic7xxx/aic79xx_pci.o
2025-10-31T05:56:55.3781188Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gf100.o
2025-10-31T05:56:55.4949318Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp_ddc.o
2025-10-31T05:56:55.7904499Z CC [M] drivers/ata/pata_ali.o
2025-10-31T05:56:55.8571767Z CC [M] net/ceph/string_table.o
2025-10-31T05:56:56.2014947Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gk104.o
2025-10-31T05:56:56.2891514Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp_log.o
2025-10-31T05:56:56.3332663Z CC [M] drivers/scsi/aic7xxx/aic79xx_reg_print.o
2025-10-31T05:56:56.5608182Z LD [M] net/ceph/libceph.o
2025-10-31T05:56:56.6715053Z CC [M] net/batman-adv/bat_algo.o
2025-10-31T05:56:56.6790732Z CC [M] drivers/ata/pata_amd.o
2025-10-31T05:56:57.0149321Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp_psp.o
2025-10-31T05:56:57.1275240Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gk20a.o
2025-10-31T05:56:57.2090160Z LD [M] drivers/scsi/aic7xxx/aic7xxx.o
2025-10-31T05:56:57.2684396Z LD [M] drivers/scsi/aic7xxx/aic79xx.o
2025-10-31T05:56:57.3994906Z CC [M] drivers/scsi/aacraid/linit.o
2025-10-31T05:56:57.5894750Z CC [M] net/batman-adv/bat_iv_ogm.o
2025-10-31T05:56:57.6493771Z CC [M] drivers/ata/pata_artop.o
2025-10-31T05:56:57.9441266Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gp100.o
2025-10-31T05:56:58.3723548Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp.o
2025-10-31T05:56:58.6286030Z CC [M] drivers/ata/pata_atiixp.o
2025-10-31T05:56:58.9193793Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gp10b.o
2025-10-31T05:56:59.2171041Z CC [M] drivers/scsi/aacraid/aachba.o
2025-10-31T05:56:59.6162179Z CC [M] drivers/ata/pata_atp867x.o
2025-10-31T05:56:59.6871422Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/tu102.o
2025-10-31T05:56:59.7113699Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp1_execution.o
2025-10-31T05:56:59.8422764Z CC [M] net/batman-adv/bat_v.o
2025-10-31T05:57:00.4155599Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/base.o
2025-10-31T05:57:00.6027082Z CC [M] drivers/ata/pata_cmd64x.o
2025-10-31T05:57:00.6974024Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp1_transition.o
2025-10-31T05:57:01.4960982Z CC [M] net/batman-adv/bat_v_elp.o
2025-10-31T05:57:01.5287035Z CC [M] drivers/scsi/aacraid/commctrl.o
2025-10-31T05:57:01.6068981Z CC [M] drivers/ata/pata_cypress.o
2025-10-31T05:57:01.8096065Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv04.o
2025-10-31T05:57:01.9476086Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp2_execution.o
2025-10-31T05:57:02.3859673Z CC [M] drivers/ata/pata_efar.o
2025-10-31T05:57:02.6819166Z CC [M] net/batman-adv/bat_v_ogm.o
2025-10-31T05:57:02.7064419Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv41.o
2025-10-31T05:57:02.8570188Z CC [M] drivers/scsi/aacraid/comminit.o
2025-10-31T05:57:03.1443330Z CC [M] drivers/ata/pata_hpt366.o
2025-10-31T05:57:03.2078671Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp2_transition.o
2025-10-31T05:57:03.7226447Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv44.o
2025-10-31T05:57:03.8663756Z CC [M] drivers/scsi/aacraid/commsup.o
2025-10-31T05:57:04.0337723Z CC [M] drivers/ata/pata_hpt37x.o
2025-10-31T05:57:04.0755373Z CC [M] net/batman-adv/bitarray.o
2025-10-31T05:57:04.4907577Z LD [M] drivers/gpu/drm/amd/amdgpu/amdgpu.o
2025-10-31T05:57:04.6605366Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv50.o
2025-10-31T05:57:04.9467552Z CC [M] drivers/ata/pata_hpt3x2n.o
2025-10-31T05:57:05.1368187Z CC [M] net/batman-adv/bridge_loop_avoidance.o
2025-10-31T05:57:05.5424980Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/g84.o
2025-10-31T05:57:05.7723671Z CC [M] drivers/scsi/aacraid/dpcsup.o
2025-10-31T05:57:06.0952849Z CC [M] drivers/ata/pata_hpt3x3.o
2025-10-31T05:57:06.2961870Z CC [M] drivers/ata/pata_it8213.o
2025-10-31T05:57:06.3621864Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/mcp77.o
2025-10-31T05:57:06.8157800Z CC [M] drivers/scsi/aacraid/rx.o
2025-10-31T05:57:07.0695086Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gf100.o
2025-10-31T05:57:07.2025031Z CC [M] drivers/scsi/aacraid/sa.o
2025-10-31T05:57:07.2582423Z CC [M] drivers/ata/pata_it821x.o
2025-10-31T05:57:07.4465302Z CC [M] net/batman-adv/debugfs.o
2025-10-31T05:57:07.8314040Z CC [M] drivers/ata/pata_jmicron.o
2025-10-31T05:57:07.8904746Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gk104.o
2025-10-31T05:57:08.0047015Z CC [M] drivers/scsi/aacraid/rkt.o
2025-10-31T05:57:08.3654771Z CC [M] drivers/gpu/drm/ast/ast_cursor.o
2025-10-31T05:57:08.5419710Z CC [M] net/batman-adv/distributed-arp-table.o
2025-10-31T05:57:08.6856419Z CC [M] drivers/scsi/aacraid/nark.o
2025-10-31T05:57:08.7903794Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gk20a.o
2025-10-31T05:57:08.8399903Z CC [M] drivers/ata/pata_marvell.o
2025-10-31T05:57:09.3326349Z CC [M] drivers/gpu/drm/ast/ast_drv.o
2025-10-31T05:57:09.3576742Z CC [M] drivers/scsi/aacraid/src.o
2025-10-31T05:57:09.6210777Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gm200.o
2025-10-31T05:57:09.9376238Z CC [M] drivers/ata/pata_netcell.o
2025-10-31T05:57:10.2811844Z CC [M] net/batman-adv/fragmentation.o
2025-10-31T05:57:10.2861629Z CC [M] drivers/gpu/drm/ast/ast_main.o
2025-10-31T05:57:10.6043616Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gm20b.o
2025-10-31T05:57:10.6273996Z LD [M] drivers/scsi/aacraid/aacraid.o
2025-10-31T05:57:10.7213018Z CC [M] drivers/scsi/aic94xx/aic94xx_init.o
2025-10-31T05:57:10.7635132Z CC [M] drivers/ata/pata_ninja32.o
2025-10-31T05:57:11.3209411Z CC [M] drivers/gpu/drm/ast/ast_mm.o
2025-10-31T05:57:11.3254057Z CC [M] net/batman-adv/gateway_client.o
2025-10-31T05:57:11.6294238Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gp100.o
2025-10-31T05:57:11.6950776Z CC [M] drivers/ata/pata_ns87415.o
2025-10-31T05:57:12.1059519Z CC [M] drivers/gpu/drm/ast/ast_mode.o
2025-10-31T05:57:12.1654134Z CC [M] drivers/scsi/aic94xx/aic94xx_hwi.o
2025-10-31T05:57:12.4881424Z CC [M] drivers/ata/pata_oldpiix.o
2025-10-31T05:57:12.5745050Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gp10b.o
2025-10-31T05:57:12.7665952Z CC [M] net/batman-adv/gateway_common.o
2025-10-31T05:57:13.4370005Z CC [M] drivers/ata/pata_optidma.o
2025-10-31T05:57:13.5543325Z CC [M] drivers/gpu/drm/ast/ast_post.o
2025-10-31T05:57:13.6355873Z CC [M] net/batman-adv/hard-interface.o
2025-10-31T05:57:13.6434542Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gv100.o
2025-10-31T05:57:13.6989376Z CC [M] drivers/scsi/aic94xx/aic94xx_reg.o
2025-10-31T05:57:14.3937020Z CC [M] drivers/ata/pata_pdc2027x.o
2025-10-31T05:57:14.5226902Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/tu102.o
2025-10-31T05:57:14.9111379Z CC [M] drivers/scsi/aic94xx/aic94xx_sds.o
2025-10-31T05:57:15.1196883Z CC [M] drivers/gpu/drm/ast/ast_dp501.o
2025-10-31T05:57:15.1704971Z CC [M] net/batman-adv/hash.o
2025-10-31T05:57:15.4089474Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/mem.o
2025-10-31T05:57:15.4378978Z CC [M] drivers/ata/pata_pdc202xx_old.o
2025-10-31T05:57:16.1029123Z CC [M] net/batman-adv/icmp_socket.o
2025-10-31T05:57:16.2006981Z CC [M] drivers/ata/pata_radisys.o
2025-10-31T05:57:16.2127253Z LD [M] drivers/gpu/drm/ast/ast.o
2025-10-31T05:57:16.2653768Z CC [M] drivers/scsi/aic94xx/aic94xx_seq.o
2025-10-31T05:57:16.2755239Z CC [M] net/batman-adv/main.o
2025-10-31T05:57:16.3520301Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/memnv04.o
2025-10-31T05:57:16.9968486Z CC [M] drivers/ata/pata_rdc.o
2025-10-31T05:57:17.3953971Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/memnv50.o
2025-10-31T05:57:17.4444476Z CC [M] drivers/gpu/drm/qxl/qxl_drv.o
2025-10-31T05:57:17.5273150Z CC [M] net/batman-adv/multicast.o
2025-10-31T05:57:17.6629719Z CC [M] drivers/scsi/aic94xx/aic94xx_dump.o
2025-10-31T05:57:17.9291484Z CC [M] drivers/ata/pata_sch.o
2025-10-31T05:57:18.2622150Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/memgf100.o
2025-10-31T05:57:18.6011212Z CC [M] drivers/gpu/drm/qxl/qxl_kms.o
2025-10-31T05:57:18.8165824Z CC [M] drivers/ata/pata_serverworks.o
2025-10-31T05:57:18.8826158Z CC [M] drivers/scsi/aic94xx/aic94xx_scb.o
2025-10-31T05:57:19.4078186Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmm.o
2025-10-31T05:57:19.4440358Z CC [M] drivers/gpu/drm/qxl/qxl_display.o
2025-10-31T05:57:19.6789118Z CC [M] net/batman-adv/netlink.o
2025-10-31T05:57:19.8122455Z CC [M] drivers/ata/pata_sil680.o
2025-10-31T05:57:20.0086270Z CC [M] drivers/scsi/aic94xx/aic94xx_dev.o
2025-10-31T05:57:20.7322965Z CC [M] drivers/gpu/drm/qxl/qxl_ttm.o
2025-10-31T05:57:20.7662146Z CC [M] drivers/ata/pata_sis.o
2025-10-31T05:57:21.1451093Z CC [M] drivers/scsi/aic94xx/aic94xx_tmf.o
2025-10-31T05:57:21.4287525Z CC [M] net/batman-adv/network-coding.o
2025-10-31T05:57:21.5472548Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmnv04.o
2025-10-31T05:57:21.6995191Z CC [M] drivers/gpu/drm/qxl/qxl_object.o
2025-10-31T05:57:21.7311805Z CC [M] drivers/ata/pata_piccolo.o
2025-10-31T05:57:22.3460850Z CC [M] drivers/scsi/aic94xx/aic94xx_task.o
2025-10-31T05:57:22.5585973Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmnv41.o
2025-10-31T05:57:22.5646822Z CC [M] drivers/ata/pata_triflex.o
2025-10-31T05:57:22.8066010Z CC [M] drivers/gpu/drm/qxl/qxl_gem.o
2025-10-31T05:57:23.3213735Z CC [M] net/batman-adv/originator.o
2025-10-31T05:57:23.4354119Z LD [M] drivers/scsi/aic94xx/aic94xx.o
2025-10-31T05:57:23.5119224Z CC [M] drivers/scsi/pm8001/pm8001_init.o
2025-10-31T05:57:23.5393786Z CC [M] drivers/ata/pata_via.o
2025-10-31T05:57:23.5612326Z CC [M] drivers/gpu/drm/qxl/qxl_cmd.o
2025-10-31T05:57:23.6465653Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmnv44.o
2025-10-31T05:57:24.5858127Z CC [M] drivers/ata/pata_sl82c105.o
2025-10-31T05:57:24.7096908Z CC [M] drivers/gpu/drm/qxl/qxl_image.o
2025-10-31T05:57:24.8416854Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmnv50.o
2025-10-31T05:57:25.1641581Z CC [M] drivers/scsi/pm8001/pm8001_sas.o
2025-10-31T05:57:25.3541669Z CC [M] net/batman-adv/routing.o
2025-10-31T05:57:25.4996553Z CC [M] drivers/gpu/drm/qxl/qxl_draw.o
2025-10-31T05:57:25.5301055Z CC [M] drivers/ata/pata_cmd640.o
2025-10-31T05:57:26.1964994Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmmcp77.o
2025-10-31T05:57:26.3969053Z CC [M] drivers/gpu/drm/qxl/qxl_debugfs.o
2025-10-31T05:57:26.4089248Z CC [M] drivers/ata/pata_mpiix.o
2025-10-31T05:57:26.8088582Z CC [M] drivers/scsi/pm8001/pm8001_ctl.o
2025-10-31T05:57:26.8389241Z CC [M] net/batman-adv/send.o
2025-10-31T05:57:27.0930543Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgf100.o
2025-10-31T05:57:27.2644305Z CC [M] drivers/ata/pata_ns87410.o
2025-10-31T05:57:27.2967184Z CC [M] drivers/gpu/drm/qxl/qxl_irq.o
2025-10-31T05:57:28.0610079Z CC [M] drivers/scsi/pm8001/pm8001_hwi.o
2025-10-31T05:57:28.0648591Z CC [M] drivers/ata/pata_opti.o
2025-10-31T05:57:28.1464034Z CC [M] net/batman-adv/soft-interface.o
2025-10-31T05:57:28.1465448Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgk104.o
2025-10-31T05:57:28.3515858Z CC [M] drivers/gpu/drm/qxl/qxl_dumb.o
2025-10-31T05:57:28.9115945Z CC [M] drivers/ata/pata_pcmcia.o
2025-10-31T05:57:28.9799347Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgk20a.o
2025-10-31T05:57:29.1533955Z CC [M] drivers/gpu/drm/qxl/qxl_ioctl.o
2025-10-31T05:57:29.6990586Z CC [M] drivers/ata/pata_rz1000.o
2025-10-31T05:57:29.8235133Z CC [M] net/batman-adv/sysfs.o
2025-10-31T05:57:29.9784320Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgm200.o
2025-10-31T05:57:30.2378389Z CC [M] drivers/gpu/drm/qxl/qxl_release.o
2025-10-31T05:57:30.4000733Z CC [M] drivers/ata/pata_acpi.o
2025-10-31T05:57:31.1274179Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgm20b.o
2025-10-31T05:57:31.1928121Z CC [M] drivers/gpu/drm/qxl/qxl_prime.o
2025-10-31T05:57:31.2743734Z CC [M] drivers/ata/ata_generic.o
2025-10-31T05:57:31.5443983Z CC [M] net/batman-adv/tp_meter.o
2025-10-31T05:57:31.6578598Z CC [M] drivers/scsi/pm8001/pm80xx_hwi.o
2025-10-31T05:57:31.8151694Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgp100.o
2025-10-31T05:57:32.0691547Z LD [M] drivers/gpu/drm/qxl/qxl.o
2025-10-31T05:57:32.1423461Z CC drivers/spi/spi.o
2025-10-31T05:57:32.1653080Z CC [M] drivers/ata/pata_legacy.o
2025-10-31T05:57:33.2524724Z CC [M] net/batman-adv/translation-table.o
2025-10-31T05:57:33.3176813Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgp10b.o
2025-10-31T05:57:33.5947144Z AR drivers/ata/built-in.a
2025-10-31T05:57:33.9701262Z CC drivers/spi/spi-mem.o
2025-10-31T05:57:34.1596520Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgv100.o
2025-10-31T05:57:35.0026279Z CC [M] drivers/spi/spi-mux.o
2025-10-31T05:57:35.0987584Z LD [M] drivers/scsi/pm8001/pm80xx.o
2025-10-31T05:57:35.1211733Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmtu102.o
2025-10-31T05:57:35.2310900Z CC [M] drivers/scsi/isci/init.o
2025-10-31T05:57:35.2660102Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/umem.o
2025-10-31T05:57:35.6539803Z CC [M] drivers/spi/spidev.o
2025-10-31T05:57:36.1082843Z CC [M] drivers/scsi/isci/phy.o
2025-10-31T05:57:36.3463936Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ummu.o
2025-10-31T05:57:36.5013973Z CC [M] drivers/net/phy/mscc/mscc_main.o
2025-10-31T05:57:36.6885500Z CC [M] drivers/spi/spi-loopback-test.o
2025-10-31T05:57:36.8014114Z CC [M] net/batman-adv/tvlv.o
2025-10-31T05:57:37.2210602Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/uvmm.o
2025-10-31T05:57:37.5270890Z CC [M] drivers/scsi/isci/request.o
2025-10-31T05:57:37.8549624Z CC [M] drivers/spi/spi-altera.o
2025-10-31T05:57:38.1178950Z LD [M] net/batman-adv/batman-adv.o
2025-10-31T05:57:38.1956302Z CC [M] drivers/net/phy/mscc/mscc_macsec.o
2025-10-31T05:57:38.3723637Z CC [M] net/nfc/nci/core.o
2025-10-31T05:57:38.4145778Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mxm/base.o
2025-10-31T05:57:38.7160210Z CC [M] drivers/spi/spi-axi-spi-engine.o
2025-10-31T05:57:39.3150130Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mxm/mxms.o
2025-10-31T05:57:39.4236278Z CC [M] drivers/scsi/isci/remote_device.o
2025-10-31T05:57:39.5481645Z CC [M] drivers/net/phy/mscc/mscc_ptp.o
2025-10-31T05:57:39.6777369Z CC [M] drivers/spi/spi-bitbang.o
2025-10-31T05:57:40.1573185Z CC [M] net/nfc/nci/data.o
2025-10-31T05:57:40.3444730Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mxm/nv50.o
2025-10-31T05:57:40.5912601Z CC [M] drivers/spi/spi-butterfly.o
2025-10-31T05:57:40.9301638Z CC [M] drivers/scsi/isci/port.o
2025-10-31T05:57:41.2620487Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.o
2025-10-31T05:57:41.3953560Z LD [M] drivers/net/phy/mscc/mscc.o
2025-10-31T05:57:41.4182346Z CC [M] net/nfc/nci/lib.o
2025-10-31T05:57:41.4601090Z CC drivers/net/phy/mdio-boardinfo.o
2025-10-31T05:57:41.5424926Z CC [M] drivers/spi/spi-cadence.o
2025-10-31T05:57:42.0429353Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.o
2025-10-31T05:57:42.1579582Z CC drivers/net/phy/mii_timestamper.o
2025-10-31T05:57:42.2133805Z CC [M] net/nfc/nci/ntf.o
2025-10-31T05:57:42.5488283Z CC [M] drivers/spi/spi-dln2.o
2025-10-31T05:57:42.5630637Z CC [M] drivers/scsi/isci/host.o
2025-10-31T05:57:42.9123626Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/pcie.o
2025-10-31T05:57:43.0057521Z CC drivers/net/phy/sfp-bus.o
2025-10-31T05:57:43.6365011Z CC [M] drivers/spi/spi-dw-core.o
2025-10-31T05:57:43.7247552Z CC [M] net/nfc/nci/rsp.o
2025-10-31T05:57:43.8215682Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/nv04.o
2025-10-31T05:57:44.3134121Z CC [M] drivers/scsi/isci/task.o
2025-10-31T05:57:44.5424744Z CC [M] drivers/net/phy/mdio_devres.o
2025-10-31T05:57:44.7166331Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/nv40.o
2025-10-31T05:57:44.8576081Z CC [M] drivers/spi/spi-dw-dma.o
2025-10-31T05:57:44.9758561Z CC [M] net/nfc/nci/hci.o
2025-10-31T05:57:45.2377659Z CC [M] drivers/net/phy/phylink.o
2025-10-31T05:57:45.5201027Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/nv46.o
2025-10-31T05:57:45.7906560Z CC [M] drivers/scsi/isci/probe_roms.o
2025-10-31T05:57:45.8602646Z CC [M] drivers/spi/spi-dw-mmio.o
2025-10-31T05:57:46.3219232Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/nv4c.o
2025-10-31T05:57:46.5947221Z CC [M] net/nfc/nci/spi.o
2025-10-31T05:57:46.6194130Z CC [M] drivers/scsi/isci/remote_node_context.o
2025-10-31T05:57:46.6435671Z CC [M] drivers/spi/spi-dw-pci.o
2025-10-31T05:57:47.1605370Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/g84.o
2025-10-31T05:57:47.4374360Z CC [M] drivers/spi/spi-gpio.o
2025-10-31T05:57:47.5060992Z CC [M] drivers/net/phy/phy.o
2025-10-31T05:57:47.5602897Z CC [M] net/nfc/nci/uart.o
2025-10-31T05:57:47.7406870Z CC [M] drivers/scsi/isci/remote_node_table.o
2025-10-31T05:57:48.0445236Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/g92.o
2025-10-31T05:57:48.1889807Z CC [M] drivers/scsi/isci/unsolicited_frame_control.o
2025-10-31T05:57:48.4400800Z CC [M] drivers/spi/spi-lm70llp.o
2025-10-31T05:57:48.4609333Z LD [M] net/nfc/nci/nci.o
2025-10-31T05:57:48.5211929Z LD [M] net/nfc/nci/nci_spi.o
2025-10-31T05:57:48.5480497Z LD [M] net/nfc/nci/nci_uart.o
2025-10-31T05:57:48.6590214Z CC [M] net/nfc/hci/core.o
2025-10-31T05:57:48.8194443Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/g94.o
2025-10-31T05:57:49.0932803Z CC [M] drivers/scsi/isci/port_config.o
2025-10-31T05:57:49.1445197Z CC [M] drivers/spi/spi-mxic.o
2025-10-31T05:57:49.2709245Z CC [M] drivers/net/phy/phy-c45.o
2025-10-31T05:57:49.5160639Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/gf100.o
2025-10-31T05:57:50.1079846Z CC [M] net/nfc/hci/hcp.o
2025-10-31T05:57:50.1604743Z CC [M] drivers/net/phy/phy-core.o
2025-10-31T05:57:50.1937266Z LD [M] drivers/scsi/isci/isci.o
2025-10-31T05:57:50.2677284Z CC [M] drivers/spi/spi-nxp-fspi.o
2025-10-31T05:57:50.2717163Z CC [M] drivers/scsi/qla2xxx/qla_os.o
2025-10-31T05:57:50.4107563Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/gf106.o
2025-10-31T05:57:50.7989638Z CC [M] net/nfc/hci/command.o
2025-10-31T05:57:51.3566247Z CC [M] drivers/net/phy/phy_device.o
2025-10-31T05:57:51.3928069Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/gk104.o
2025-10-31T05:57:51.5059959Z CC [M] drivers/spi/spi-oc-tiny.o
2025-10-31T05:57:51.6141743Z CC [M] net/nfc/hci/llc.o
2025-10-31T05:57:52.3154650Z CC [M] net/nfc/hci/llc_nop.o
2025-10-31T05:57:52.3305201Z CC [M] drivers/spi/spi-pxa2xx.o
2025-10-31T05:57:52.3963775Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/gp100.o
2025-10-31T05:57:53.0477475Z CC [M] net/nfc/hci/llc_shdlc.o
2025-10-31T05:57:53.4402921Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.o
2025-10-31T05:57:53.4636084Z CC [M] drivers/net/phy/linkmode.o
2025-10-31T05:57:53.9848485Z CC [M] drivers/spi/spi-pxa2xx-dma.o
2025-10-31T05:57:54.0018659Z LD [M] net/nfc/hci/hci.o
2025-10-31T05:57:54.0766719Z CC [M] net/nfc/core.o
2025-10-31T05:57:54.2456550Z CC [M] drivers/net/phy/mdio_bus.o
2025-10-31T05:57:54.4516621Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/memx.o
2025-10-31T05:57:54.6472948Z CC [M] drivers/spi/spi-pxa2xx-pci.o
2025-10-31T05:57:54.9222724Z CC [M] drivers/scsi/qla2xxx/qla_init.o
2025-10-31T05:57:55.5380187Z CC [M] drivers/spi/spi-sc18is602.o
2025-10-31T05:57:55.6169561Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gt215.o
2025-10-31T05:57:55.7052457Z CC [M] net/nfc/netlink.o
2025-10-31T05:57:55.7641738Z CC [M] drivers/net/phy/mdio_device.o
2025-10-31T05:57:56.4286409Z CC [M] drivers/spi/spi-sifive.o
2025-10-31T05:57:56.6300777Z CC [M] drivers/net/phy/swphy.o
2025-10-31T05:57:56.7772768Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gf100.o
2025-10-31T05:57:57.3452319Z CC [M] drivers/net/phy/phy_led_triggers.o
2025-10-31T05:57:57.4611618Z CC [M] drivers/spi/spi-tle62x0.o
2025-10-31T05:57:57.6920473Z CC [M] net/nfc/af_nfc.o
2025-10-31T05:57:57.8364135Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gf119.o
2025-10-31T05:57:58.4087347Z CC [M] drivers/spi/spi-xcomm.o
2025-10-31T05:57:58.4275073Z CC [M] drivers/net/phy/sfp.o
2025-10-31T05:57:58.7769077Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gk104.o
2025-10-31T05:57:58.8307365Z CC [M] net/nfc/rawsock.o
2025-10-31T05:57:59.1237050Z CC [M] drivers/spi/spi-xilinx.o
2025-10-31T05:57:59.8183994Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gk110.o
2025-10-31T05:57:59.8867163Z CC [M] drivers/spi/spi-zynqmp-gqspi.o
2025-10-31T05:58:00.2580390Z CC [M] drivers/scsi/qla2xxx/qla_mbx.o
2025-10-31T05:58:00.3036129Z CC [M] net/nfc/llcp_core.o
2025-10-31T05:58:00.6581678Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gk208.o
2025-10-31T05:58:00.7065067Z CC [M] drivers/net/phy/adin.o
2025-10-31T05:58:01.0056256Z CC [M] drivers/spi/spi-amd.o
2025-10-31T05:58:01.6599657Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gk20a.o
2025-10-31T05:58:01.7205714Z CC [M] drivers/net/phy/amd.o
2025-10-31T05:58:01.8536231Z CC [M] drivers/spi/spi-slave-time.o
2025-10-31T05:58:02.4802883Z CC [M] drivers/net/phy/aquantia_main.o
2025-10-31T05:58:02.5395477Z CC [M] drivers/spi/spi-slave-system-control.o
2025-10-31T05:58:02.5533779Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm107.o
2025-10-31T05:58:02.6162317Z CC [M] net/nfc/llcp_commands.o
2025-10-31T05:58:03.3813824Z LD [M] drivers/spi/spi-dw.o
2025-10-31T05:58:03.4129799Z LD [M] drivers/spi/spi-pxa2xx-platform.o
2025-10-31T05:58:03.4450548Z AR drivers/spi/built-in.a
2025-10-31T05:58:03.4600650Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm200.o
2025-10-31T05:58:03.6590162Z CC [M] drivers/net/phy/aquantia_hwmon.o
2025-10-31T05:58:03.6973833Z CC [M] drivers/net/phy/at803x.o
2025-10-31T05:58:03.9053290Z CC [M] drivers/scsi/qla2xxx/qla_iocb.o
2025-10-31T05:58:04.2013904Z CC [M] net/nfc/llcp_sock.o
2025-10-31T05:58:04.2316458Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm20b.o
2025-10-31T05:58:04.6160258Z CC [M] drivers/gpu/drm/bochs/bochs_drv.o
2025-10-31T05:58:05.0507617Z CC [M] drivers/net/phy/ax88796b.o
2025-10-31T05:58:05.2191750Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp102.o
2025-10-31T05:58:05.5439125Z CC [M] drivers/gpu/drm/bochs/bochs_mm.o
2025-10-31T05:58:05.7819437Z CC [M] net/nfc/digital_core.o
2025-10-31T05:58:05.9226958Z CC [M] drivers/net/phy/bcm54140.o
2025-10-31T05:58:06.2693876Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp10b.o
2025-10-31T05:58:06.3302177Z CC [M] drivers/gpu/drm/bochs/bochs_kms.o
2025-10-31T05:58:06.7280541Z CC [M] drivers/scsi/qla2xxx/qla_isr.o
2025-10-31T05:58:06.9445248Z CC [M] drivers/net/phy/bcm7xxx.o
2025-10-31T05:58:06.9661685Z CC [M] net/nfc/digital_technology.o
2025-10-31T05:58:07.1621774Z CC [M] drivers/gpu/drm/bochs/bochs_hw.o
2025-10-31T05:58:07.1753876Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/base.o
2025-10-31T05:58:08.0890742Z CC [M] drivers/net/phy/bcm84881.o
2025-10-31T05:58:08.1129509Z LD [M] drivers/gpu/drm/bochs/bochs-drm.o
2025-10-31T05:58:08.1320175Z CC [M] net/nfc/digital_dep.o
2025-10-31T05:58:08.1631130Z CC [M] net/psample/psample.o
2025-10-31T05:58:08.2904596Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/fan.o
2025-10-31T05:58:08.8348873Z CC [M] drivers/net/phy/bcm87xx.o
2025-10-31T05:58:09.3394823Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/fannil.o
2025-10-31T05:58:09.4930060Z LD [M] net/nfc/nfc.o
2025-10-31T05:58:09.5446284Z AR drivers/message/fusion/built-in.a
2025-10-31T05:58:09.5479725Z LD [M] net/nfc/nfc_digital.o
2025-10-31T05:58:09.5619692Z CC [M] drivers/message/fusion/mptbase.o
2025-10-31T05:58:09.6475672Z CC [M] net/ife/ife.o
2025-10-31T05:58:09.6666416Z CC [M] drivers/net/phy/bcm-phy-lib.o
2025-10-31T05:58:09.9512682Z CC [M] drivers/scsi/qla2xxx/qla_gs.o
2025-10-31T05:58:10.0866549Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/fanpwm.o
2025-10-31T05:58:10.6714521Z CC [M] net/openvswitch/actions.o
2025-10-31T05:58:11.0473399Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/fantog.o
2025-10-31T05:58:11.0807229Z CC [M] drivers/net/phy/broadcom.o
2025-10-31T05:58:11.9103289Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/ic.o
2025-10-31T05:58:12.2031808Z CC [M] drivers/net/phy/cicada.o
2025-10-31T05:58:12.6649937Z CC [M] drivers/scsi/qla2xxx/qla_dbg.o
2025-10-31T05:58:12.7174234Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/temp.o
2025-10-31T05:58:12.9192589Z CC [M] drivers/message/fusion/mptscsih.o
2025-10-31T05:58:13.0717489Z CC [M] net/openvswitch/datapath.o
2025-10-31T05:58:13.1894988Z CC [M] drivers/net/phy/cortina.o
2025-10-31T05:58:13.5884767Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/nv40.o
2025-10-31T05:58:13.9187293Z CC [M] drivers/net/phy/davicom.o
2025-10-31T05:58:14.5009146Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/nv50.o
2025-10-31T05:58:14.8499881Z CC [M] drivers/message/fusion/mptspi.o
2025-10-31T05:58:15.0187723Z CC [M] drivers/net/phy/dp83640.o
2025-10-31T05:58:15.5164698Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/g84.o
2025-10-31T05:58:15.6079307Z CC [M] net/openvswitch/dp_notify.o
2025-10-31T05:58:16.3832309Z CC [M] drivers/message/fusion/mptfc.o
2025-10-31T05:58:16.5347739Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gt215.o
2025-10-31T05:58:16.6921511Z CC [M] net/openvswitch/flow.o
2025-10-31T05:58:17.0003496Z CC [M] drivers/net/phy/dp83822.o
2025-10-31T05:58:17.5220609Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf100.o
2025-10-31T05:58:17.7820810Z CC [M] drivers/message/fusion/mptsas.o
2025-10-31T05:58:18.2618885Z CC [M] drivers/net/phy/dp83848.o
2025-10-31T05:58:18.2993774Z CC [M] net/openvswitch/flow_netlink.o
2025-10-31T05:58:18.3649648Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf119.o
2025-10-31T05:58:18.8853617Z CC [M] drivers/net/phy/dp83867.o
2025-10-31T05:58:19.3625114Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gk104.o
2025-10-31T05:58:20.0919267Z CC [M] drivers/net/phy/dp83869.o
2025-10-31T05:58:20.3031056Z CC [M] drivers/scsi/qla2xxx/qla_sup.o
2025-10-31T05:58:20.3944363Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gm107.o
2025-10-31T05:58:20.5742439Z CC [M] drivers/message/fusion/mptctl.o
2025-10-31T05:58:21.1564896Z CC [M] drivers/net/phy/dp83tc811.o
2025-10-31T05:58:21.3654519Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gm200.o
2025-10-31T05:58:22.2623584Z CC [M] drivers/net/phy/fixed_phy.o
2025-10-31T05:58:22.3927159Z CC [M] net/openvswitch/flow_table.o
2025-10-31T05:58:22.3962214Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gp100.o
2025-10-31T05:58:22.4919401Z CC [M] drivers/message/fusion/mptlan.o
2025-10-31T05:58:23.1637115Z CC [M] drivers/scsi/qla2xxx/qla_attr.o
2025-10-31T05:58:23.3163702Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/base.o
2025-10-31T05:58:23.4692678Z CC [M] drivers/net/phy/icplus.o
2025-10-31T05:58:24.0710972Z AR drivers/message/built-in.a
2025-10-31T05:58:24.1155034Z CC [M] net/openvswitch/meter.o
2025-10-31T05:58:24.3077945Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv04.o
2025-10-31T05:58:24.3992190Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv40.o
2025-10-31T05:58:24.4612884Z CC [M] drivers/net/phy/intel-xway.o
2025-10-31T05:58:25.2198831Z CC [M] drivers/net/phy/et1011c.o
2025-10-31T05:58:25.2311703Z CC [M] net/openvswitch/vport.o
2025-10-31T05:58:25.2626463Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv41.o
2025-10-31T05:58:25.7939323Z CC [M] drivers/scsi/qla4xxx/ql4_os.o
2025-10-31T05:58:25.9164350Z CC [M] drivers/scsi/qla2xxx/qla_mid.o
2025-10-31T05:58:26.0138008Z CC [M] drivers/net/phy/lxt.o
2025-10-31T05:58:26.1198988Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/gk20a.o
2025-10-31T05:58:26.6311443Z CC [M] net/openvswitch/vport-internal_dev.o
2025-10-31T05:58:26.9855043Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/top/base.o
2025-10-31T05:58:27.0520464Z CC [M] drivers/net/phy/marvell10g.o
2025-10-31T05:58:27.6408123Z CC [M] drivers/scsi/qla2xxx/qla_dfs.o
2025-10-31T05:58:27.8545129Z CC [M] drivers/net/phy/marvell.o
2025-10-31T05:58:27.8604275Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/top/gk104.o
2025-10-31T05:58:28.3217631Z CC [M] net/openvswitch/vport-netdev.o
2025-10-31T05:58:28.7247088Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/base.o
2025-10-31T05:58:29.0955596Z CC [M] drivers/scsi/qla2xxx/qla_bsg.o
2025-10-31T05:58:29.3919683Z CC [M] drivers/net/phy/spi_ks8995.o
2025-10-31T05:58:29.7827341Z CC [M] net/openvswitch/conntrack.o
2025-10-31T05:58:29.8768178Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.o
2025-10-31T05:58:30.1760173Z CC [M] drivers/net/phy/micrel.o
2025-10-31T05:58:30.8408006Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/nv40.o
2025-10-31T05:58:31.0983636Z CC [M] drivers/net/phy/microchip.o
2025-10-31T05:58:31.2682227Z CC [M] drivers/scsi/qla4xxx/ql4_init.o
2025-10-31T05:58:31.3878729Z CC [M] drivers/scsi/qla2xxx/qla_nx.o
2025-10-31T05:58:31.8299469Z CC [M] drivers/net/phy/microchip_t1.o
2025-10-31T05:58:31.8339832Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gf100.o
2025-10-31T05:58:32.2246899Z CC [M] net/openvswitch/vport-vxlan.o
2025-10-31T05:58:32.5782531Z CC [M] drivers/net/phy/national.o
2025-10-31T05:58:32.9518852Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gf117.o
2025-10-31T05:58:33.0711441Z CC [M] drivers/scsi/qla4xxx/ql4_mbx.o
2025-10-31T05:58:33.4417549Z CC [M] drivers/net/phy/nxp-tja11xx.o
2025-10-31T05:58:33.4659918Z CC [M] net/openvswitch/vport-geneve.o
2025-10-31T05:58:33.8063288Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gk104.o
2025-10-31T05:58:34.2881326Z CC [M] drivers/scsi/qla2xxx/qla_mr.o
2025-10-31T05:58:34.6099907Z CC [M] drivers/net/phy/qsemi.o
2025-10-31T05:58:34.7730414Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gk20a.o
2025-10-31T05:58:34.7736373Z CC [M] net/openvswitch/vport-gre.o
2025-10-31T05:58:35.5393472Z CC [M] drivers/net/phy/realtek.o
2025-10-31T05:58:35.5916042Z CC [M] drivers/scsi/qla4xxx/ql4_iocb.o
2025-10-31T05:58:35.9296439Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gm20b.o
2025-10-31T05:58:36.1693493Z LD [M] net/openvswitch/openvswitch.o
2025-10-31T05:58:36.3750458Z CC [M] drivers/net/phy/uPD60620.o
2025-10-31T05:58:36.3789584Z CC [M] net/vmw_vsock/af_vsock.o
2025-10-31T05:58:36.6464894Z CC [M] drivers/scsi/qla2xxx/qla_nx2.o
2025-10-31T05:58:36.9382154Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/falcon.o
2025-10-31T05:58:37.0856513Z CC [M] drivers/scsi/qla4xxx/ql4_isr.o
2025-10-31T05:58:37.1162469Z CC [M] drivers/net/phy/smsc.o
2025-10-31T05:58:38.1588283Z CC [M] drivers/net/phy/ste10Xp.o
2025-10-31T05:58:38.3036983Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/xtensa.o
2025-10-31T05:58:38.4210779Z CC [M] net/vmw_vsock/af_vsock_tap.o
2025-10-31T05:58:39.0038672Z CC [M] drivers/scsi/qla4xxx/ql4_nx.o
2025-10-31T05:58:39.0593615Z CC [M] drivers/scsi/qla2xxx/qla_target.o
2025-10-31T05:58:39.1488439Z CC [M] drivers/net/phy/teranetics.o
2025-10-31T05:58:39.4006956Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/bsp/g84.o
2025-10-31T05:58:39.4937180Z CC [M] net/vmw_vsock/vsock_addr.o
2025-10-31T05:58:39.9257436Z CC [M] drivers/net/phy/vitesse.o
2025-10-31T05:58:40.2507289Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gt215.o
2025-10-31T05:58:40.5326101Z CC [M] net/vmw_vsock/diag.o
2025-10-31T05:58:40.9490439Z CC [M] drivers/net/phy/xilinx_gmii2rgmii.o
2025-10-31T05:58:41.3285826Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gf100.o
2025-10-31T05:58:41.6276920Z CC [M] net/vmw_vsock/vmci_transport.o
2025-10-31T05:58:41.6511574Z LD [M] drivers/net/phy/libphy.o
2025-10-31T05:58:41.7230903Z LD [M] drivers/net/phy/aquantia.o
2025-10-31T05:58:41.7539619Z AR drivers/net/phy/built-in.a
2025-10-31T05:58:42.2019375Z CC [M] drivers/scsi/qla4xxx/ql4_nvram.o
2025-10-31T05:58:42.2538601Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gk104.o
2025-10-31T05:58:42.2621253Z AR drivers/net/mdio/built-in.a
2025-10-31T05:58:42.2835836Z CC [M] drivers/net/mdio/mdio-bcm-unimac.o
2025-10-31T05:58:43.0055729Z CC [M] drivers/scsi/qla2xxx/qla_tmpl.o
2025-10-31T05:58:43.0922883Z CC [M] net/vmw_vsock/vmci_transport_notify.o
2025-10-31T05:58:43.2636776Z CC [M] drivers/net/mdio/mdio-bitbang.o
2025-10-31T05:58:43.3099247Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gm107.o
2025-10-31T05:58:43.6977258Z CC [M] drivers/scsi/qla4xxx/ql4_dbg.o
2025-10-31T05:58:44.0962513Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gm200.o
2025-10-31T05:58:44.2109930Z CC [M] net/vmw_vsock/vmci_transport_notify_qstate.o
2025-10-31T05:58:44.3518559Z CC [M] drivers/net/mdio/mdio-cavium.o
2025-10-31T05:58:44.5261702Z CC [M] drivers/scsi/qla2xxx/qla_nvme.o
2025-10-31T05:58:44.8751367Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gp100.o
2025-10-31T05:58:45.1185518Z CC [M] drivers/scsi/qla4xxx/ql4_attr.o
2025-10-31T05:58:45.2957295Z CC [M] drivers/net/mdio/mdio-gpio.o
2025-10-31T05:58:45.3993529Z CC [M] net/vmw_vsock/virtio_transport.o
2025-10-31T05:58:45.6482933Z CC [M] drivers/scsi/qla2xxx/tcm_qla2xxx.o
2025-10-31T05:58:45.6496693Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gp102.o
2025-10-31T05:58:46.1707743Z CC [M] drivers/net/mdio/mdio-i2c.o
2025-10-31T05:58:46.4328692Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gv100.o
2025-10-31T05:58:46.7969987Z CC [M] drivers/scsi/qla4xxx/ql4_bsg.o
2025-10-31T05:58:46.8981627Z CC [M] net/vmw_vsock/virtio_transport_common.o
2025-10-31T05:58:46.9892765Z CC [M] drivers/net/mdio/mdio-mscc-miim.o
2025-10-31T05:58:47.2827650Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/tu102.o
2025-10-31T05:58:47.6243710Z LD [M] drivers/scsi/qla2xxx/qla2xxx.o
2025-10-31T05:58:47.8823420Z CC [M] drivers/net/mdio/mdio-mvusb.o
2025-10-31T05:58:47.8835176Z CC [M] net/vmw_vsock/hyperv_transport.o
2025-10-31T05:58:48.0663972Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/cipher/g84.o
2025-10-31T05:58:48.4381229Z CC [M] drivers/scsi/qla4xxx/ql4_83xx.o
2025-10-31T05:58:48.6582760Z CC [M] drivers/net/mdio/mdio-thunder.o
2025-10-31T05:58:48.7035556Z CC [M] net/nsh/nsh.o
2025-10-31T05:58:48.8637503Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/acpi.o
2025-10-31T05:58:49.4858699Z CC [M] net/vmw_vsock/vsock_loopback.o
2025-10-31T05:58:49.5890875Z AR drivers/net/pcs/built-in.a
2025-10-31T05:58:49.6011345Z CC [M] drivers/net/pcs/pcs-xpcs.o
2025-10-31T05:58:49.7557242Z LD [M] net/vmw_vsock/vsock.o
2025-10-31T05:58:49.7961767Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/base.o
2025-10-31T05:58:49.8563173Z AR drivers/net/dsa/b53/built-in.a
2025-10-31T05:58:49.8816378Z CC [M] drivers/net/dsa/b53/b53_common.o
2025-10-31T05:58:50.2139374Z LD [M] drivers/scsi/qla4xxx/qla4xxx.o
2025-10-31T05:58:50.3130037Z CC [M] drivers/scsi/lpfc/lpfc_mem.o
2025-10-31T05:58:50.5910302Z CC [M] drivers/net/pcs/pcs-lynx.o
2025-10-31T05:58:50.6273990Z LD [M] net/vmw_vsock/vsock_diag.o
2025-10-31T05:58:50.6554291Z LD [M] net/vmw_vsock/vmw_vsock_vmci_transport.o
2025-10-31T05:58:50.6980202Z LD [M] net/vmw_vsock/vmw_vsock_virtio_transport.o
2025-10-31T05:58:50.7324293Z LD [M] net/vmw_vsock/vmw_vsock_virtio_transport_common.o
2025-10-31T05:58:50.7666337Z LD [M] net/vmw_vsock/hv_sock.o
2025-10-31T05:58:50.9257559Z CC [M] net/hsr/hsr_main.o
2025-10-31T05:58:51.4375517Z AR drivers/net/dsa/microchip/built-in.a
2025-10-31T05:58:51.4506086Z CC [M] drivers/net/dsa/microchip/ksz_common.o
2025-10-31T05:58:51.5394930Z CC [M] drivers/scsi/lpfc/lpfc_sli.o
2025-10-31T05:58:51.6281616Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/ctrl.o
2025-10-31T05:58:51.8425109Z CC [M] net/hsr/hsr_framereg.o
2025-10-31T05:58:52.6085874Z CC [M] drivers/net/dsa/b53/b53_spi.o
2025-10-31T05:58:52.8377974Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/pci.o
2025-10-31T05:58:52.9019635Z CC [M] drivers/net/dsa/microchip/ksz9477.o
2025-10-31T05:58:53.0659119Z CC [M] net/hsr/hsr_device.o
2025-10-31T05:58:53.9036808Z CC [M] drivers/net/dsa/b53/b53_mdio.o
2025-10-31T05:58:53.9357830Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/tegra.o
2025-10-31T05:58:54.2957139Z CC [M] net/hsr/hsr_netlink.o
2025-10-31T05:58:54.8779746Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/user.o
2025-10-31T05:58:54.9616921Z CC [M] drivers/net/dsa/microchip/ksz9477_i2c.o
2025-10-31T05:58:55.1034881Z CC [M] drivers/net/dsa/b53/b53_mmap.o
2025-10-31T05:58:55.5201930Z CC [M] net/hsr/hsr_slave.o
2025-10-31T05:58:56.1183052Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/base.o
2025-10-31T05:58:56.2467993Z CC [M] drivers/net/dsa/microchip/ksz9477_spi.o
2025-10-31T05:58:56.4533760Z CC [M] drivers/net/dsa/b53/b53_srab.o
2025-10-31T05:58:56.4709101Z CC [M] net/hsr/hsr_forward.o
2025-10-31T05:58:57.4175280Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/nv04.o
2025-10-31T05:58:57.5744701Z CC [M] drivers/net/dsa/microchip/ksz8795.o
2025-10-31T05:58:57.7643302Z CC [M] net/hsr/hsr_debugfs.o
2025-10-31T05:58:57.8303029Z CC [M] drivers/net/dsa/b53/b53_serdes.o
2025-10-31T05:58:58.3633580Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/nv50.o
2025-10-31T05:58:58.5733449Z LD [M] net/hsr/hsr.o
2025-10-31T05:58:58.6349814Z CC [M] net/qrtr/af_qrtr.o
2025-10-31T05:58:58.9640515Z CC [M] drivers/gpu/drm/virtio/virtgpu_drv.o
2025-10-31T05:58:59.8223204Z CC [M] drivers/net/dsa/microchip/ksz8795_spi.o
2025-10-31T05:58:59.8682739Z CC [M] drivers/gpu/drm/virtio/virtgpu_kms.o
2025-10-31T05:58:59.9010785Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/g84.o
2025-10-31T05:59:00.3520176Z CC [M] net/qrtr/ns.o
2025-10-31T05:59:00.7760134Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/g94.o
2025-10-31T05:59:01.0146031Z CC [M] drivers/gpu/drm/virtio/virtgpu_gem.o
2025-10-31T05:59:01.2031007Z AR drivers/net/dsa/mv88e6xxx/built-in.a
2025-10-31T05:59:01.2247950Z CC [M] drivers/net/dsa/mv88e6xxx/chip.o
2025-10-31T05:59:01.5766373Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gt200.o
2025-10-31T05:59:01.6316228Z CC [M] drivers/scsi/lpfc/lpfc_ct.o
2025-10-31T05:59:01.8551416Z CC [M] drivers/gpu/drm/virtio/virtgpu_display.o
2025-10-31T05:59:02.1781823Z CC [M] net/qrtr/smd.o
2025-10-31T05:59:02.5694454Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp77.o
2025-10-31T05:59:02.8092300Z CC [M] drivers/gpu/drm/virtio/virtgpu_vq.o
2025-10-31T05:59:03.0890705Z CC [M] net/qrtr/tun.o
2025-10-31T05:59:03.3206989Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gt215.o
2025-10-31T05:59:03.9573109Z CC [M] net/qrtr/mhi.o
2025-10-31T05:59:04.0142550Z CC [M] drivers/scsi/lpfc/lpfc_els.o
2025-10-31T05:59:04.2571809Z CC [M] drivers/net/dsa/mv88e6xxx/devlink.o
2025-10-31T05:59:04.4434429Z CC [M] drivers/gpu/drm/virtio/virtgpu_fence.o
2025-10-31T05:59:04.4499253Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp89.o
2025-10-31T05:59:04.9755795Z LD [M] net/qrtr/qrtr.o
2025-10-31T05:59:04.9957936Z LD [M] net/qrtr/qrtr-smd.o
2025-10-31T05:59:05.0081286Z LD [M] net/qrtr/qrtr-tun.o
2025-10-31T05:59:05.0223264Z LD [M] net/qrtr/qrtr-mhi.o
2025-10-31T05:59:05.0688645Z CC net/devres.o
2025-10-31T05:59:05.4106338Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gf119.o
2025-10-31T05:59:05.5397353Z CC [M] drivers/gpu/drm/virtio/virtgpu_object.o
2025-10-31T05:59:05.7293425Z CC [M] drivers/net/dsa/mv88e6xxx/global1.o
2025-10-31T05:59:05.9117405Z CC net/socket.o
2025-10-31T05:59:06.5212717Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gk104.o
2025-10-31T05:59:06.6667491Z CC [M] drivers/gpu/drm/virtio/virtgpu_debugfs.o
2025-10-31T05:59:07.0610292Z CC [M] drivers/net/dsa/mv88e6xxx/global1_atu.o
2025-10-31T05:59:07.3511853Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gk110.o
2025-10-31T05:59:07.7071655Z CC [M] drivers/gpu/drm/virtio/virtgpu_plane.o
2025-10-31T05:59:08.1285472Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gm107.o
2025-10-31T05:59:08.4499614Z CC [M] drivers/net/dsa/mv88e6xxx/global1_vtu.o
2025-10-31T05:59:08.7430292Z CC [M] drivers/scsi/lpfc/lpfc_hbadisc.o
2025-10-31T05:59:08.7716206Z CC [M] drivers/gpu/drm/virtio/virtgpu_ioctl.o
2025-10-31T05:59:09.0283249Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gm200.o
2025-10-31T05:59:09.0738158Z CC net/compat.o
2025-10-31T05:59:09.8104671Z CC [M] drivers/gpu/drm/virtio/virtgpu_prime.o
2025-10-31T05:59:09.8863229Z CC [M] drivers/net/dsa/mv88e6xxx/phy.o
2025-10-31T05:59:09.9312357Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gp100.o
2025-10-31T05:59:10.4260442Z CC net/sysctl_net.o
2025-10-31T05:59:10.6670142Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gp102.o
2025-10-31T05:59:10.7916909Z CC [M] drivers/gpu/drm/virtio/virtgpu_trace_points.o
2025-10-31T05:59:11.2856107Z CC [M] drivers/net/dsa/mv88e6xxx/port.o
2025-10-31T05:59:11.4782365Z AR net/built-in.a
2025-10-31T05:59:11.5242626Z AR drivers/firewire/built-in.a
2025-10-31T05:59:11.5365325Z CC [M] drivers/firewire/core-card.o
2025-10-31T05:59:11.6515998Z LD [M] drivers/gpu/drm/virtio/virtio-gpu.o
2025-10-31T05:59:11.7211180Z CC [M] drivers/scsi/bfa/bfad.o
2025-10-31T05:59:11.8873854Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gv100.o
2025-10-31T05:59:12.4256457Z CC [M] drivers/firewire/core-cdev.o
2025-10-31T05:59:12.9986823Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/tu102.o
2025-10-31T05:59:13.2236579Z CC [M] drivers/net/dsa/mv88e6xxx/port_hidden.o
2025-10-31T05:59:13.4005916Z CC [M] drivers/scsi/lpfc/lpfc_init.o
2025-10-31T05:59:13.5156056Z CC [M] drivers/scsi/bfa/bfad_im.o
2025-10-31T05:59:13.9341228Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/vga.o
2025-10-31T05:59:14.0296871Z CC [M] drivers/firewire/core-device.o
2025-10-31T05:59:14.4615411Z CC [M] drivers/net/dsa/mv88e6xxx/serdes.o
2025-10-31T05:59:14.8689844Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/head.o
2025-10-31T05:59:15.3436442Z CC [M] drivers/firewire/core-iso.o
2025-10-31T05:59:15.4320109Z CC [M] drivers/scsi/bfa/bfad_attr.o
2025-10-31T05:59:15.8655904Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/headnv04.o
2025-10-31T05:59:16.0174736Z CC [M] drivers/net/dsa/mv88e6xxx/smi.o
2025-10-31T05:59:16.2877756Z CC [M] drivers/firewire/core-topology.o
2025-10-31T05:59:16.8435714Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/headnv50.o
2025-10-31T05:59:16.8559927Z CC [M] drivers/scsi/bfa/bfad_debugfs.o
2025-10-31T05:59:17.2925148Z CC [M] drivers/firewire/core-transaction.o
2025-10-31T05:59:17.3322900Z CC [M] drivers/net/dsa/mv88e6xxx/trace.o
2025-10-31T05:59:17.8787498Z CC [M] drivers/scsi/bfa/bfad_bsg.o
2025-10-31T05:59:17.9264022Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/headgf119.o
2025-10-31T05:59:18.1342666Z CC [M] drivers/net/dsa/mv88e6xxx/global2.o
2025-10-31T05:59:18.5414809Z CC [M] drivers/firewire/ohci.o
2025-10-31T05:59:18.8732445Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/headgv100.o
2025-10-31T05:59:19.6972723Z CC [M] drivers/net/dsa/mv88e6xxx/global2_avb.o
2025-10-31T05:59:19.8003065Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.o
2025-10-31T05:59:20.2431469Z CC [M] drivers/scsi/lpfc/lpfc_mbox.o
2025-10-31T05:59:20.3473647Z CC [M] drivers/scsi/bfa/bfa_ioc.o
2025-10-31T05:59:20.8048372Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dacnv50.o
2025-10-31T05:59:20.9750533Z CC [M] drivers/firewire/sbp2.o
2025-10-31T05:59:21.2082974Z CC [M] drivers/net/dsa/mv88e6xxx/global2_scratch.o
2025-10-31T05:59:21.7896107Z CC [M] drivers/scsi/lpfc/lpfc_nportdisc.o
2025-10-31T05:59:21.8744881Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dacgf119.o
2025-10-31T05:59:22.3560522Z CC [M] drivers/firewire/net.o
2025-10-31T05:59:22.6130488Z CC [M] drivers/net/dsa/mv88e6xxx/hwtstamp.o
2025-10-31T05:59:22.8061092Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/piornv50.o
2025-10-31T05:59:23.7561269Z CC [M] drivers/scsi/bfa/bfa_ioc_cb.o
2025-10-31T05:59:23.8274431Z CC [M] drivers/scsi/lpfc/lpfc_scsi.o
2025-10-31T05:59:23.8420482Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sornv50.o
2025-10-31T05:59:23.9304282Z CC [M] drivers/firewire/nosy.o
2025-10-31T05:59:24.3182385Z CC [M] drivers/net/dsa/mv88e6xxx/ptp.o
2025-10-31T05:59:24.5285908Z CC [M] drivers/scsi/bfa/bfa_ioc_ct.o
2025-10-31T05:59:24.7864070Z LD [M] drivers/firewire/firewire-core.o
2025-10-31T05:59:24.8124130Z LD [M] drivers/firewire/firewire-ohci.o
2025-10-31T05:59:24.8292810Z LD [M] drivers/firewire/firewire-sbp2.o
2025-10-31T05:59:24.8442822Z LD [M] drivers/firewire/firewire-net.o
2025-10-31T05:59:24.9374532Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg84.o
2025-10-31T05:59:25.0553961Z CC [M] drivers/scsi/csiostor/csio_attr.o
2025-10-31T05:59:25.4546423Z CC [M] drivers/scsi/bfa/bfa_hw_cb.o
2025-10-31T05:59:25.8314283Z LD [M] drivers/net/dsa/mv88e6xxx/mv88e6xxx.o
2025-10-31T05:59:25.8652683Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.o
2025-10-31T05:59:25.9733587Z AR drivers/net/dsa/ocelot/built-in.a
2025-10-31T05:59:25.9991316Z CC [M] drivers/net/dsa/ocelot/felix.o
2025-10-31T05:59:26.1976685Z CC [M] drivers/scsi/csiostor/csio_init.o
2025-10-31T05:59:26.2767121Z CC [M] drivers/scsi/bfa/bfa_hw_ct.o
2025-10-31T05:59:26.9922577Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sormcp77.o
2025-10-31T05:59:27.1973922Z CC [M] drivers/scsi/bfa/bfa_fcs.o
2025-10-31T05:59:27.2562992Z CC [M] drivers/scsi/lpfc/lpfc_attr.o
2025-10-31T05:59:27.6054114Z CC [M] drivers/scsi/csiostor/csio_lnode.o
2025-10-31T05:59:27.6987787Z CC [M] drivers/net/dsa/ocelot/seville_vsc9953.o
2025-10-31T05:59:27.9833400Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgt215.o
2025-10-31T05:59:28.5804258Z CC [M] drivers/scsi/bfa/bfa_fcs_lport.o
2025-10-31T05:59:29.0789731Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sormcp89.o
2025-10-31T05:59:29.2193718Z CC [M] drivers/scsi/csiostor/csio_scsi.o
2025-10-31T05:59:29.2218127Z LD [M] drivers/net/dsa/ocelot/mscc_seville.o
2025-10-31T05:59:29.3193388Z AR drivers/net/dsa/qca/built-in.a
2025-10-31T05:59:29.3413200Z CC [M] drivers/net/dsa/qca/ar9331.o
2025-10-31T05:59:29.9460070Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgf119.o
2025-10-31T05:59:30.8594558Z CC [M] drivers/scsi/lpfc/lpfc_vport.o
2025-10-31T05:59:30.9443833Z AR drivers/net/dsa/sja1105/built-in.a
2025-10-31T05:59:30.9621188Z CC [M] drivers/net/dsa/sja1105/sja1105_spi.o
2025-10-31T05:59:31.0096068Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgk104.o
2025-10-31T05:59:31.0215869Z CC [M] drivers/scsi/csiostor/csio_hw.o
2025-10-31T05:59:31.7534695Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgm107.o
2025-10-31T05:59:32.0995943Z CC [M] drivers/scsi/bfa/bfa_fcs_rport.o
2025-10-31T05:59:32.4552454Z CC [M] drivers/scsi/lpfc/lpfc_debugfs.o
2025-10-31T05:59:32.6295495Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgm200.o
2025-10-31T05:59:32.6946583Z CC [M] drivers/net/dsa/sja1105/sja1105_main.o
2025-10-31T05:59:33.5593629Z CC [M] drivers/scsi/csiostor/csio_hw_t5.o
2025-10-31T05:59:33.6474985Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgp100.o
2025-10-31T05:59:34.3831503Z CC [M] drivers/scsi/bfa/bfa_fcs_fcpim.o
2025-10-31T05:59:34.5353343Z CC [M] drivers/scsi/csiostor/csio_isr.o
2025-10-31T05:59:34.5706051Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgv100.o
2025-10-31T05:59:35.2642990Z CC [M] drivers/net/dsa/sja1105/sja1105_flower.o
2025-10-31T05:59:35.6932550Z CC [M] drivers/scsi/bfa/bfa_fcbuild.o
2025-10-31T05:59:35.7068832Z CC [M] drivers/scsi/csiostor/csio_mb.o
2025-10-31T05:59:35.7105786Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sortu102.o
2025-10-31T05:59:35.8644047Z CC [M] drivers/scsi/lpfc/lpfc_bsg.o
2025-10-31T05:59:36.5180984Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.o
2025-10-31T05:59:36.8341182Z CC [M] drivers/net/dsa/sja1105/sja1105_ethtool.o
2025-10-31T05:59:37.0657975Z CC [M] drivers/scsi/csiostor/csio_rnode.o
2025-10-31T05:59:37.2656847Z CC [M] drivers/scsi/bfa/bfa_port.o
2025-10-31T05:59:37.7314317Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.o
2025-10-31T05:59:38.1331382Z CC [M] drivers/scsi/csiostor/csio_wr.o
2025-10-31T05:59:38.2685182Z CC [M] drivers/scsi/bfa/bfa_fcpim.o
2025-10-31T05:59:38.2880729Z CC [M] drivers/net/dsa/sja1105/sja1105_devlink.o
2025-10-31T05:59:39.2443957Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagt215.o
2025-10-31T05:59:39.6215344Z CC [M] drivers/net/dsa/sja1105/sja1105_clocking.o
2025-10-31T05:59:39.8407620Z LD [M] drivers/scsi/csiostor/csiostor.o
2025-10-31T05:59:39.9556552Z CC [M] drivers/scsi/lpfc/lpfc_nvme.o
2025-10-31T05:59:40.0042498Z AR drivers/net/ethernet/3com/built-in.a
2025-10-31T05:59:40.0294847Z CC [M] drivers/net/ethernet/3com/3c589_cs.o
2025-10-31T05:59:40.1554318Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagf119.o
2025-10-31T05:59:40.8873864Z CC [M] drivers/net/dsa/sja1105/sja1105_static_config.o
2025-10-31T05:59:41.0638126Z CC [M] drivers/scsi/bfa/bfa_core.o
2025-10-31T05:59:41.1175863Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagv100.o
2025-10-31T05:59:41.4398475Z CC [M] drivers/net/ethernet/3com/3c574_cs.o
2025-10-31T05:59:41.7486449Z CC [M] drivers/net/dsa/sja1105/sja1105_dynamic_config.o
2025-10-31T05:59:42.0168603Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmi.o
2025-10-31T05:59:42.0471415Z CC [M] drivers/scsi/lpfc/lpfc_nvmet.o
2025-10-31T05:59:42.7940776Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmig84.o
2025-10-31T05:59:42.8197968Z CC [M] drivers/scsi/bfa/bfa_svc.o
2025-10-31T05:59:42.9821015Z CC [M] drivers/net/ethernet/3com/3c59x.o
2025-10-31T05:59:43.3033767Z CC [M] drivers/net/dsa/sja1105/sja1105_ptp.o
2025-10-31T05:59:43.8548330Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigt215.o
2025-10-31T05:59:44.4290090Z LD [M] drivers/scsi/lpfc/lpfc.o
2025-10-31T05:59:44.5905904Z AR drivers/net/ethernet/8390/built-in.a
2025-10-31T05:59:44.6017288Z CC [M] drivers/net/ethernet/8390/ne2k-pci.o
2025-10-31T05:59:44.7371304Z CC [M] drivers/net/dsa/sja1105/sja1105_tas.o
2025-10-31T05:59:44.9966549Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigf119.o
2025-10-31T05:59:45.7894604Z CC [M] drivers/net/ethernet/3com/typhoon.o
2025-10-31T05:59:46.0471722Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigk104.o
2025-10-31T05:59:46.0563423Z CC [M] drivers/net/ethernet/8390/8390.o
2025-10-31T05:59:46.1875523Z CC [M] drivers/net/dsa/sja1105/sja1105_vl.o
2025-10-31T05:59:46.9359249Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigm200.o
2025-10-31T05:59:47.1880165Z LD [M] drivers/scsi/bfa/bfa.o
2025-10-31T05:59:47.2992992Z CC [M] drivers/scsi/smartpqi/smartpqi_init.o
2025-10-31T05:59:47.5623917Z CC [M] drivers/net/ethernet/8390/axnet_cs.o
2025-10-31T05:59:47.7239465Z LD [M] drivers/net/dsa/sja1105/sja1105.o
2025-10-31T05:59:47.7996707Z CC [M] drivers/net/dsa/bcm_sf2.o
2025-10-31T05:59:47.8665294Z CC [M] drivers/scsi/smartpqi/smartpqi_sis.o
2025-10-31T05:59:47.9666589Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigv100.o
2025-10-31T05:59:48.8005536Z CC [M] drivers/net/dsa/bcm_sf2_cfp.o
2025-10-31T05:59:48.8613802Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/conn.o
2025-10-31T05:59:49.1192785Z CC [M] drivers/net/ethernet/8390/pcnet_cs.o
2025-10-31T05:59:49.2084435Z AR drivers/cdrom/built-in.a
2025-10-31T05:59:49.2189094Z CC [M] drivers/cdrom/cdrom.o
2025-10-31T05:59:49.7021719Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootnv04.o
2025-10-31T05:59:50.6033172Z CC [M] drivers/net/dsa/dsa_loop.o
2025-10-31T05:59:50.6956949Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootnv50.o
2025-10-31T05:59:50.8798713Z AR drivers/net/ethernet/adaptec/built-in.a
2025-10-31T05:59:50.8909170Z CC [M] drivers/net/ethernet/adaptec/starfire.o
2025-10-31T05:59:51.7091331Z AR drivers/net/ethernet/agere/built-in.a
2025-10-31T05:59:51.7265581Z CC [M] drivers/net/ethernet/agere/et131x.o
2025-10-31T05:59:51.7275055Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootg84.o
2025-10-31T05:59:51.7334002Z CC [M] drivers/scsi/smartpqi/smartpqi_sas_transport.o
2025-10-31T05:59:52.4225922Z CC [M] drivers/net/dsa/dsa_loop_bdinfo.o
2025-10-31T05:59:52.5429146Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootg94.o
2025-10-31T05:59:52.7628583Z LD [M] drivers/scsi/smartpqi/smartpqi.o
2025-10-31T05:59:52.7927804Z CC [M] drivers/scsi/sym53c8xx_2/sym_fw.o
2025-10-31T05:59:52.8380375Z CC [M] drivers/scsi/sym53c8xx_2/sym_glue.o
2025-10-31T05:59:53.3112870Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgt200.o
2025-10-31T05:59:53.6557714Z CC [M] drivers/net/dsa/mt7530.o
2025-10-31T05:59:53.8949193Z AR drivers/net/hamradio/built-in.a
2025-10-31T05:59:53.9062726Z CC [M] drivers/net/hamradio/mkiss.o
2025-10-31T05:59:53.9898487Z AR drivers/net/ethernet/alacritech/built-in.a
2025-10-31T05:59:54.0164528Z CC [M] drivers/net/ethernet/alacritech/slicoss.o
2025-10-31T05:59:54.2184695Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgt215.o
2025-10-31T05:59:54.5913966Z CC [M] drivers/scsi/sym53c8xx_2/sym_hipd.o
2025-10-31T05:59:55.1558732Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgf119.o
2025-10-31T05:59:55.4504372Z CC [M] drivers/net/hamradio/6pack.o
2025-10-31T05:59:55.6053853Z CC [M] drivers/net/dsa/mv88e6060.o
2025-10-31T05:59:56.0690272Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgk104.o
2025-10-31T05:59:56.0776159Z AR drivers/net/ethernet/alteon/built-in.a
2025-10-31T05:59:56.0890359Z CC [M] drivers/net/ethernet/alteon/acenic.o
2025-10-31T05:59:56.9448777Z CC [M] drivers/net/hamradio/yam.o
2025-10-31T05:59:56.9877298Z CC [M] drivers/net/dsa/qca8k.o
2025-10-31T05:59:57.0055249Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgk110.o
2025-10-31T05:59:57.3971100Z CC [M] drivers/scsi/sym53c8xx_2/sym_malloc.o
2025-10-31T05:59:57.7765148Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgm107.o
2025-10-31T05:59:58.2332361Z CC [M] drivers/scsi/sym53c8xx_2/sym_nvram.o
2025-10-31T05:59:58.4554233Z CC [M] drivers/net/ethernet/amazon/ena/ena_netdev.o
2025-10-31T05:59:58.5176779Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgm200.o
2025-10-31T05:59:58.7787347Z CC [M] drivers/net/hamradio/bpqether.o
2025-10-31T05:59:58.8793924Z CC [M] drivers/net/dsa/realtek-smi-core.o
2025-10-31T05:59:59.3105431Z LD [M] drivers/scsi/sym53c8xx_2/sym53c8xx.o
2025-10-31T05:59:59.4085509Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgp100.o
2025-10-31T05:59:59.4098476Z CC [M] drivers/scsi/mpt3sas/mpt3sas_base.o
2025-10-31T06:00:00.2168534Z CC [M] drivers/net/dsa/rtl8366.o
2025-10-31T06:00:00.2269770Z CC [M] drivers/net/hamradio/baycom_ser_fdx.o
2025-10-31T06:00:00.2492589Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgp102.o
2025-10-31T06:00:01.1369042Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgv100.o
2025-10-31T06:00:01.3350153Z CC [M] drivers/net/hamradio/hdlcdrv.o
2025-10-31T06:00:01.6724236Z CC [M] drivers/net/dsa/rtl8366rb.o
2025-10-31T06:00:01.9159674Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/roottu102.o
2025-10-31T06:00:02.0671775Z CC [M] drivers/net/ethernet/amazon/ena/ena_com.o
2025-10-31T06:00:02.6939127Z CC [M] drivers/net/hamradio/baycom_ser_hdx.o
2025-10-31T06:00:02.7418725Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/capsgv100.o
2025-10-31T06:00:03.1781855Z CC [M] drivers/net/dsa/lan9303-core.o
2025-10-31T06:00:03.6532865Z CC [M] drivers/scsi/mpt3sas/mpt3sas_config.o
2025-10-31T06:00:03.7705743Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/channv50.o
2025-10-31T06:00:04.1202372Z CC [M] drivers/net/hamradio/baycom_par.o
2025-10-31T06:00:04.1373451Z CC [M] drivers/net/ethernet/amazon/ena/ena_eth_com.o
2025-10-31T06:00:04.7445618Z CC [M] drivers/net/dsa/lan9303_i2c.o
2025-10-31T06:00:04.9122676Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/changf119.o
2025-10-31T06:00:05.2235465Z CC [M] drivers/net/ethernet/amazon/ena/ena_ethtool.o
2025-10-31T06:00:05.2277942Z CC [M] drivers/scsi/mpt3sas/mpt3sas_scsih.o
2025-10-31T06:00:05.4815047Z AR drivers/net/ethernet/amazon/built-in.a
2025-10-31T06:00:05.5071897Z AR drivers/auxdisplay/built-in.a
2025-10-31T06:00:05.5185344Z CC [M] drivers/auxdisplay/charlcd.o
2025-10-31T06:00:05.8618451Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/changv100.o
2025-10-31T06:00:05.9231880Z CC [M] drivers/net/dsa/lan9303_mdio.o
2025-10-31T06:00:06.2828335Z CC [M] drivers/auxdisplay/ks0108.o
2025-10-31T06:00:06.3385041Z LD [M] drivers/net/ethernet/amazon/ena/ena.o
2025-10-31T06:00:06.4281912Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-main.o
2025-10-31T06:00:06.7560727Z CC [M] drivers/auxdisplay/cfag12864b.o
2025-10-31T06:00:06.9558714Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacnv50.o
2025-10-31T06:00:07.2685295Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-drv.o
2025-10-31T06:00:07.3667377Z CC [M] drivers/auxdisplay/cfag12864bfb.o
2025-10-31T06:00:07.6336556Z CC [M] drivers/net/dsa/vitesse-vsc73xx-core.o
2025-10-31T06:00:07.9511409Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgf119.o
2025-10-31T06:00:08.1885651Z CC [M] drivers/auxdisplay/img-ascii-lcd.o
2025-10-31T06:00:08.7876058Z CC [M] drivers/auxdisplay/hd44780.o
2025-10-31T06:00:08.9329479Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgp102.o
2025-10-31T06:00:09.2440591Z CC [M] drivers/net/dsa/vitesse-vsc73xx-platform.o
2025-10-31T06:00:09.3974704Z CC [M] drivers/auxdisplay/panel.o
2025-10-31T06:00:09.8479726Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgv100.o
2025-10-31T06:00:10.0396654Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-dev.o
2025-10-31T06:00:10.1273397Z CC [M] drivers/net/dsa/vitesse-vsc73xx-spi.o
2025-10-31T06:00:10.5838289Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-desc.o
2025-10-31T06:00:10.7614016Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/basenv50.o
2025-10-31T06:00:10.9336689Z CC [M] drivers/scsi/mpt3sas/mpt3sas_transport.o
2025-10-31T06:00:11.2319986Z LD [M] drivers/net/dsa/bcm-sf2.o
2025-10-31T06:00:11.2723909Z LD [M] drivers/net/dsa/realtek-smi.o
2025-10-31T06:00:11.3193763Z AR drivers/net/dsa/built-in.a
2025-10-31T06:00:11.5013147Z CC [M] drivers/scsi/mpt3sas/mpt3sas_ctl.o
2025-10-31T06:00:11.9245168Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/baseg84.o
2025-10-31T06:00:11.9276611Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/basegf119.o
2025-10-31T06:00:12.7035386Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_main.o
2025-10-31T06:00:12.7831188Z AR drivers/net/ethernet/aquantia/built-in.a
2025-10-31T06:00:12.8000281Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-ethtool.o
2025-10-31T06:00:12.8174514Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/basegp102.o
2025-10-31T06:00:12.8230505Z CC [M] drivers/scsi/ufs/cdns-pltfrm.o
2025-10-31T06:00:13.6659268Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/corenv50.o
2025-10-31T06:00:13.8064207Z CC [M] drivers/scsi/mpt3sas/mpt3sas_trigger_diag.o
2025-10-31T06:00:13.9020582Z CC [M] drivers/scsi/ufs/ufshcd.o
2025-10-31T06:00:13.9366684Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-mdio.o
2025-10-31T06:00:13.9919984Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_nic.o
2025-10-31T06:00:14.5747348Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coreg84.o
2025-10-31T06:00:14.8320847Z CC [M] drivers/scsi/mpt3sas/mpt3sas_warpdrive.o
2025-10-31T06:00:15.3607820Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-ptp.o
2025-10-31T06:00:15.4399133Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coreg94.o
2025-10-31T06:00:15.8263732Z CC [M] drivers/scsi/mpt3sas/mpt3sas_debugfs.o
2025-10-31T06:00:16.2198640Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coregf119.o
2025-10-31T06:00:16.2316057Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_pci_func.o
2025-10-31T06:00:16.4845403Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-i2c.o
2025-10-31T06:00:16.8778384Z LD [M] drivers/scsi/mpt3sas/mpt3sas.o
2025-10-31T06:00:17.0040183Z CC drivers/usb/common/common.o
2025-10-31T06:00:17.0929052Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coregk104.o
2025-10-31T06:00:17.4318210Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_vec.o
2025-10-31T06:00:17.6592685Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-phy-v1.o
2025-10-31T06:00:18.0347567Z CC drivers/usb/common/debug.o
2025-10-31T06:00:18.0993798Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coregp102.o
2025-10-31T06:00:18.5325365Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_ring.o
2025-10-31T06:00:18.6666883Z CC drivers/usb/common/led.o
2025-10-31T06:00:18.7603612Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.o
2025-10-31T06:00:19.0758920Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coregv100.o
2025-10-31T06:00:19.1790549Z CC [M] drivers/usb/common/usb-conn-gpio.o
2025-10-31T06:00:19.6531802Z CC [M] drivers/scsi/ufs/ufs-sysfs.o
2025-10-31T06:00:19.7453441Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_hw_utils.o
2025-10-31T06:00:19.9655240Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlynv50.o
2025-10-31T06:00:20.2813644Z CC [M] drivers/usb/common/ulpi.o
2025-10-31T06:00:20.7584724Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_ethtool.o
2025-10-31T06:00:20.8259278Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlyg84.o
2025-10-31T06:00:20.8943462Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-platform.o
2025-10-31T06:00:20.9101119Z AR drivers/usb/common/built-in.a
2025-10-31T06:00:21.0023860Z CC drivers/usb/core/usb.o
2025-10-31T06:00:21.5663301Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlygt200.o
2025-10-31T06:00:21.6069368Z CC [M] drivers/scsi/ufs/ufs_bsg.o
2025-10-31T06:00:21.9282744Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.o
2025-10-31T06:00:22.1549627Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-pci.o
2025-10-31T06:00:22.2931131Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlygf119.o
2025-10-31T06:00:22.4039052Z CC drivers/usb/core/hub.o
2025-10-31T06:00:22.7165115Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_filters.o
2025-10-31T06:00:22.7855320Z CC [M] drivers/scsi/ufs/ufshcd-crypto.o
2025-10-31T06:00:23.1838363Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlygk104.o
2025-10-31T06:00:23.3205074Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-dcb.o
2025-10-31T06:00:23.5528788Z CC [M] drivers/scsi/ufs/ufshcd-pci.o
2025-10-31T06:00:24.1642663Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_phy.o
2025-10-31T06:00:24.2253489Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-debugfs.o
2025-10-31T06:00:24.3803541Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlygp102.o
2025-10-31T06:00:24.4086011Z CC [M] drivers/scsi/ufs/ufshcd-pltfrm.o
2025-10-31T06:00:25.0697498Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_a0.o
2025-10-31T06:00:25.2667582Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/wimmgv100.o
2025-10-31T06:00:25.2759750Z LD [M] drivers/net/ethernet/amd/xgbe/amd-xgbe.o
2025-10-31T06:00:25.4089351Z AR drivers/net/ethernet/amd/built-in.a
2025-10-31T06:00:25.4317534Z CC [M] drivers/net/ethernet/amd/amd8111e.o
2025-10-31T06:00:25.4441395Z LD [M] drivers/scsi/ufs/ufshcd-core.o
2025-10-31T06:00:25.5295141Z CC [M] drivers/scsi/mvsas/mv_init.o
2025-10-31T06:00:26.1315514Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/wndwgv100.o
2025-10-31T06:00:26.2724359Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.o
2025-10-31T06:00:26.5558479Z CC drivers/usb/core/hcd.o
2025-10-31T06:00:26.7710192Z CC [M] drivers/scsi/mvsas/mv_sas.o
2025-10-31T06:00:27.0492883Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/piocnv50.o
2025-10-31T06:00:27.3775901Z CC [M] drivers/net/ethernet/amd/nmclan_cs.o
2025-10-31T06:00:27.9917700Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/piocgf119.o
2025-10-31T06:00:28.0669427Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.o
2025-10-31T06:00:28.5422726Z CC drivers/usb/core/urb.o
2025-10-31T06:00:28.6938799Z CC [M] drivers/scsi/mvsas/mv_64xx.o
2025-10-31T06:00:28.7393297Z CC [M] drivers/net/ethernet/amd/pcnet32.o
2025-10-31T06:00:29.0046062Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/cursnv50.o
2025-10-31T06:00:29.3748196Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.o
2025-10-31T06:00:29.5872268Z CC drivers/usb/core/message.o
2025-10-31T06:00:29.8970841Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgf119.o
2025-10-31T06:00:30.2588231Z CC [M] drivers/scsi/mvsas/mv_94xx.o
2025-10-31T06:00:30.7214048Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_llh.o
2025-10-31T06:00:30.8474184Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgp102.o
2025-10-31T06:00:31.3787950Z CC drivers/usb/core/driver.o
2025-10-31T06:00:31.3991726Z CC [M] drivers/gpu/drm/vboxvideo/hgsmi_base.o
2025-10-31T06:00:31.7593661Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgv100.o
2025-10-31T06:00:31.8789025Z LD [M] drivers/scsi/mvsas/mvsas.o
2025-10-31T06:00:32.0161069Z CC [M] drivers/scsi/cxgbi/cxgb3i/cxgb3i.o
2025-10-31T06:00:32.0700968Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.o
2025-10-31T06:00:32.3447889Z CC [M] drivers/gpu/drm/vboxvideo/modesetting.o
2025-10-31T06:00:32.6574969Z CC drivers/usb/core/config.o
2025-10-31T06:00:32.8376567Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmnv50.o
2025-10-31T06:00:33.1013292Z CC [M] drivers/gpu/drm/vboxvideo/vbva_base.o
2025-10-31T06:00:33.3001050Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils.o
2025-10-31T06:00:33.7343123Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgf119.o
2025-10-31T06:00:33.9840812Z CC drivers/usb/core/file.o
2025-10-31T06:00:34.0494969Z CC [M] drivers/gpu/drm/vboxvideo/vbox_drv.o
2025-10-31T06:00:34.2344473Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils_fw.o
2025-10-31T06:00:34.3522546Z CC [M] drivers/scsi/cxgbi/cxgb4i/cxgb4i.o
2025-10-31T06:00:34.5169863Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgp102.o
2025-10-31T06:00:34.7629129Z CC [M] drivers/gpu/drm/vboxvideo/vbox_hgsmi.o
2025-10-31T06:00:34.9091888Z CC drivers/usb/core/buffer.o
2025-10-31T06:00:35.3534507Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/base.o
2025-10-31T06:00:35.4853634Z CC [M] drivers/gpu/drm/vboxvideo/vbox_irq.o
2025-10-31T06:00:35.5955707Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_llh.o
2025-10-31T06:00:35.7046942Z CC drivers/usb/core/sysfs.o
2025-10-31T06:00:36.2584295Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/nv04.o
2025-10-31T06:00:36.3037700Z CC [M] drivers/gpu/drm/vboxvideo/vbox_main.o
2025-10-31T06:00:36.5487240Z CC [M] drivers/net/ethernet/aquantia/atlantic/macsec/macsec_api.o
2025-10-31T06:00:37.0457527Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/nv50.o
2025-10-31T06:00:37.1218936Z CC [M] drivers/gpu/drm/vboxvideo/vbox_mode.o
2025-10-31T06:00:37.2179701Z CC drivers/usb/core/endpoint.o
2025-10-31T06:00:37.2327965Z CC [M] drivers/scsi/cxgbi/libcxgbi.o
2025-10-31T06:00:37.8556533Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/gf100.o
2025-10-31T06:00:38.1011771Z CC drivers/usb/core/devio.o
2025-10-31T06:00:38.2242654Z CC [M] drivers/gpu/drm/vboxvideo/vbox_ttm.o
2025-10-31T06:00:38.4955912Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_ptp.o
2025-10-31T06:00:38.7160091Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/gf119.o
2025-10-31T06:00:39.1450812Z LD [M] drivers/gpu/drm/vboxvideo/vboxvideo.o
2025-10-31T06:00:39.2234631Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/gv100.o
2025-10-31T06:00:39.6389205Z CC drivers/usb/core/notify.o
2025-10-31T06:00:40.0070993Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_macsec.o
2025-10-31T06:00:40.0238073Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/user.o
2025-10-31T06:00:40.3911378Z CC drivers/input/serio/serio.o
2025-10-31T06:00:40.6599460Z CC drivers/usb/core/generic.o
2025-10-31T06:00:40.7023708Z CC [M] drivers/scsi/bnx2i/bnx2i_init.o
2025-10-31T06:00:40.8947494Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usernv04.o
2025-10-31T06:00:41.2787930Z CC drivers/input/serio/i8042.o
2025-10-31T06:00:41.3384758Z CC drivers/usb/core/quirks.o
2025-10-31T06:00:41.8562794Z LD [M] drivers/net/ethernet/aquantia/atlantic/atlantic.o
2025-10-31T06:00:41.9524472Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usernv50.o
2025-10-31T06:00:41.9525515Z AR drivers/net/ethernet/arc/built-in.a
2025-10-31T06:00:42.0182888Z CC [M] drivers/net/ethernet/atheros/atlx/atl1.o
2025-10-31T06:00:42.0784435Z CC [M] drivers/scsi/bnx2i/bnx2i_hwi.o
2025-10-31T06:00:42.1003930Z CC drivers/usb/core/devices.o
2025-10-31T06:00:43.0139143Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usergf100.o
2025-10-31T06:00:43.0788654Z CC drivers/usb/core/phy.o
2025-10-31T06:00:43.1249031Z CC drivers/input/serio/libps2.o
2025-10-31T06:00:43.9236153Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usergf119.o
2025-10-31T06:00:43.9474719Z CC drivers/usb/core/port.o
2025-10-31T06:00:44.0575753Z CC [M] drivers/scsi/bnx2i/bnx2i_iscsi.o
2025-10-31T06:00:44.0744199Z CC [M] drivers/input/serio/parkbd.o
2025-10-31T06:00:44.7883634Z CC [M] drivers/input/serio/serport.o
2025-10-31T06:00:44.8685208Z CC drivers/usb/core/hcd-pci.o
2025-10-31T06:00:44.9093881Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usergv100.o
2025-10-31T06:00:45.0042537Z CC [M] drivers/net/ethernet/atheros/atlx/atl2.o
2025-10-31T06:00:45.5013903Z CC [M] drivers/input/serio/ct82c710.o
2025-10-31T06:00:45.8641115Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/base.o
2025-10-31T06:00:45.8777701Z CC [M] drivers/scsi/bnx2i/bnx2i_sysfs.o
2025-10-31T06:00:45.9471695Z CC drivers/usb/core/usb-acpi.o
2025-10-31T06:00:46.1449798Z CC [M] drivers/input/serio/pcips2.o
2025-10-31T06:00:46.8343999Z CC [M] drivers/usb/core/ledtrig-usbport.o
2025-10-31T06:00:46.9063589Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv04.o
2025-10-31T06:00:46.9207613Z LD [M] drivers/scsi/bnx2i/bnx2i.o
2025-10-31T06:00:46.9417331Z CC [M] drivers/input/serio/ps2mult.o
2025-10-31T06:00:47.0278988Z CC [M] drivers/scsi/qedi/qedi_main.o
2025-10-31T06:00:47.4735533Z CC [M] drivers/net/ethernet/atheros/atl1e/atl1e_main.o
2025-10-31T06:00:47.4902939Z CC [M] drivers/input/serio/serio_raw.o
2025-10-31T06:00:47.6765716Z AR drivers/usb/core/built-in.a
2025-10-31T06:00:47.7205168Z CC drivers/usb/phy/phy.o
2025-10-31T06:00:47.8297317Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv10.o
2025-10-31T06:00:48.3681387Z CC [M] drivers/usb/phy/phy-generic.o
2025-10-31T06:00:48.5864553Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv17.o
2025-10-31T06:00:48.6983985Z CC [M] drivers/input/serio/altera_ps2.o
2025-10-31T06:00:49.2422399Z CC [M] drivers/usb/phy/phy-tahvo.o
2025-10-31T06:00:49.4756399Z CC [M] drivers/input/serio/arc_ps2.o
2025-10-31T06:00:49.5180225Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv40.o
2025-10-31T06:00:49.6503038Z CC [M] drivers/scsi/qedi/qedi_iscsi.o
2025-10-31T06:00:49.8486886Z CC [M] drivers/net/ethernet/atheros/atl1e/atl1e_hw.o
2025-10-31T06:00:50.2544513Z CC [M] drivers/usb/phy/phy-gpio-vbus-usb.o
2025-10-31T06:00:50.3116172Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv50.o
2025-10-31T06:00:50.3513709Z CC [M] drivers/input/serio/hyperv-keyboard.o
2025-10-31T06:00:51.1390221Z CC [M] drivers/input/serio/ps2-gpio.o
2025-10-31T06:00:51.1496226Z CC [M] drivers/net/ethernet/atheros/atl1e/atl1e_ethtool.o
2025-10-31T06:00:51.2056072Z CC [M] drivers/usb/phy/phy-isp1301.o
2025-10-31T06:00:51.2850291Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/g84.o
2025-10-31T06:00:51.5395351Z CC [M] drivers/scsi/qedi/qedi_fw.o
2025-10-31T06:00:51.6952761Z CC [M] drivers/input/serio/userio.o
2025-10-31T06:00:52.0528223Z AR drivers/usb/phy/built-in.a
2025-10-31T06:00:52.0667025Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gf100.o
2025-10-31T06:00:52.1736676Z CC drivers/usb/host/pci-quirks.o
2025-10-31T06:00:52.3307702Z AR drivers/input/serio/built-in.a
2025-10-31T06:00:52.5141426Z AR drivers/usb/storage/built-in.a
2025-10-31T06:00:52.5339621Z CC [M] drivers/usb/storage/uas.o
2025-10-31T06:00:52.6095315Z CC [M] drivers/net/ethernet/atheros/atl1e/atl1e_param.o
2025-10-31T06:00:53.3704382Z CC drivers/usb/host/ehci-hcd.o
2025-10-31T06:00:53.5711862Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk104.o
2025-10-31T06:00:53.6660270Z LD [M] drivers/net/ethernet/atheros/atl1e/atl1e.o
2025-10-31T06:00:53.7244577Z CC [M] drivers/net/ethernet/atheros/atl1c/atl1c_main.o
2025-10-31T06:00:53.7394021Z CC [M] drivers/scsi/qedi/qedi_sysfs.o
2025-10-31T06:00:53.9853175Z CC [M] drivers/usb/storage/scsiglue.o
2025-10-31T06:00:54.8035788Z CC [M] drivers/scsi/qedi/qedi_dbg.o
2025-10-31T06:00:55.0492567Z CC [M] drivers/usb/storage/protocol.o
2025-10-31T06:00:55.2910247Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk110.o
2025-10-31T06:00:55.7346127Z CC [M] drivers/usb/storage/transport.o
2025-10-31T06:00:56.1896271Z CC [M] drivers/net/ethernet/atheros/atl1c/atl1c_hw.o
2025-10-31T06:00:56.1951638Z CC [M] drivers/scsi/qedi/qedi_fw_api.o
2025-10-31T06:00:56.2700964Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk208.o
2025-10-31T06:00:57.0923363Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk20a.o
2025-10-31T06:00:57.1199662Z CC [M] drivers/usb/storage/usb.o
2025-10-31T06:00:57.4612242Z CC [M] drivers/scsi/qedi/qedi_debugfs.o
2025-10-31T06:00:57.9074909Z CC [M] drivers/net/ethernet/atheros/atl1c/atl1c_ethtool.o
2025-10-31T06:00:57.9350917Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gm107.o
2025-10-31T06:00:58.4182395Z LD [M] drivers/scsi/qedi/qedi.o
2025-10-31T06:00:58.4401527Z CC [M] drivers/usb/storage/initializers.o
2025-10-31T06:00:58.5228439Z CC [M] drivers/scsi/be2iscsi/be_iscsi.o
2025-10-31T06:00:58.5232472Z CC drivers/usb/host/ehci-pci.o
2025-10-31T06:00:58.7682774Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gm200.o
2025-10-31T06:00:59.1844329Z CC [M] drivers/usb/storage/sierra_ms.o
2025-10-31T06:00:59.2116166Z LD [M] drivers/net/ethernet/atheros/atl1c/atl1c.o
2025-10-31T06:00:59.2717113Z CC drivers/usb/host/ohci-hcd.o
2025-10-31T06:00:59.3246716Z CC [M] drivers/net/ethernet/atheros/alx/main.o
2025-10-31T06:00:59.6083932Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gm20b.o
2025-10-31T06:00:59.9896991Z CC [M] drivers/usb/storage/option_ms.o
2025-10-31T06:01:00.2443419Z CC [M] drivers/scsi/be2iscsi/be_main.o
2025-10-31T06:01:00.5317852Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gp100.o
2025-10-31T06:01:00.7579977Z CC [M] drivers/usb/storage/usual-tables.o
2025-10-31T06:01:01.3093337Z CC [M] drivers/usb/storage/alauda.o
2025-10-31T06:01:01.3952583Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gp10b.o
2025-10-31T06:01:01.8430496Z CC [M] drivers/net/ethernet/atheros/alx/ethtool.o
2025-10-31T06:01:02.3566486Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gv100.o
2025-10-31T06:01:02.4355650Z CC drivers/usb/host/ohci-pci.o
2025-10-31T06:01:02.5961438Z CC [M] drivers/usb/storage/cypress_atacb.o
2025-10-31T06:01:03.0282386Z CC [M] drivers/net/ethernet/atheros/alx/hw.o
2025-10-31T06:01:03.2687292Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/tu102.o
2025-10-31T06:01:03.3233333Z CC drivers/usb/host/uhci-hcd.o
2025-10-31T06:01:03.4645548Z CC [M] drivers/usb/storage/datafab.o
2025-10-31T06:01:04.2322650Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/chan.o
2025-10-31T06:01:04.3911322Z CC [M] drivers/usb/storage/ene_ub6250.o
2025-10-31T06:01:04.3989150Z CC [M] drivers/scsi/be2iscsi/be_mgmt.o
2025-10-31T06:01:04.4813582Z LD [M] drivers/net/ethernet/atheros/alx/alx.o
2025-10-31T06:01:04.5609039Z AR drivers/net/ethernet/atheros/built-in.a
2025-10-31T06:01:04.6389923Z AR drivers/net/ethernet/aurora/built-in.a
2025-10-31T06:01:04.6646893Z CC [M] drivers/net/ethernet/aurora/nb8800.o
2025-10-31T06:01:05.2402493Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/channv50.o
2025-10-31T06:01:05.9042219Z CC [M] drivers/usb/storage/freecom.o
2025-10-31T06:01:06.2570417Z CC [M] drivers/scsi/be2iscsi/be_cmds.o
2025-10-31T06:01:06.3028696Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/chang84.o
2025-10-31T06:01:06.3423118Z CC drivers/usb/host/xhci.o
2025-10-31T06:01:06.5844741Z AR drivers/net/ethernet/cadence/built-in.a
2025-10-31T06:01:06.6105915Z CC [M] drivers/net/ethernet/cadence/macb_main.o
2025-10-31T06:01:06.6412971Z CC [M] drivers/usb/storage/isd200.o
2025-10-31T06:01:07.1592601Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv04.o
2025-10-31T06:01:07.7400008Z CC [M] drivers/usb/storage/jumpshot.o
2025-10-31T06:01:08.1371930Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv10.o
2025-10-31T06:01:08.1864561Z LD [M] drivers/scsi/be2iscsi/be2iscsi.o
2025-10-31T06:01:08.3096804Z CC [M] drivers/scsi/esas2r/esas2r_log.o
2025-10-31T06:01:08.6786299Z CC [M] drivers/usb/storage/karma.o
2025-10-31T06:01:09.1055201Z CC [M] drivers/scsi/esas2r/esas2r_disc.o
2025-10-31T06:01:09.1739066Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv17.o
2025-10-31T06:01:09.4595640Z CC [M] drivers/usb/storage/onetouch.o
2025-10-31T06:01:10.0577861Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv40.o
2025-10-31T06:01:10.1411809Z CC drivers/usb/host/xhci-mem.o
2025-10-31T06:01:10.2444604Z CC [M] drivers/net/ethernet/cadence/macb_ptp.o
2025-10-31T06:01:10.5088055Z CC [M] drivers/usb/storage/realtek_cr.o
2025-10-31T06:01:10.5373436Z CC [M] drivers/scsi/esas2r/esas2r_flash.o
2025-10-31T06:01:11.1844075Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv50.o
2025-10-31T06:01:11.3826234Z CC [M] drivers/net/ethernet/cadence/macb_pci.o
2025-10-31T06:01:11.6072917Z CC [M] drivers/usb/storage/sddr09.o
2025-10-31T06:01:11.9603800Z CC [M] drivers/scsi/esas2r/esas2r_init.o
2025-10-31T06:01:12.0286851Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmag84.o
2025-10-31T06:01:12.5833037Z CC drivers/usb/host/xhci-ext-caps.o
2025-10-31T06:01:12.6213489Z LD [M] drivers/net/ethernet/cadence/macb.o
2025-10-31T06:01:12.7672565Z CC [M] drivers/net/ethernet/broadcom/genet/bcmgenet.o
2025-10-31T06:01:12.8760252Z CC [M] drivers/usb/storage/sddr55.o
2025-10-31T06:01:12.9122883Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifonv50.o
2025-10-31T06:01:13.3841493Z CC drivers/usb/host/xhci-ring.o
2025-10-31T06:01:13.4453869Z CC [M] drivers/scsi/esas2r/esas2r_int.o
2025-10-31T06:01:13.9594058Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifog84.o
2025-10-31T06:01:14.1466877Z CC [M] drivers/usb/storage/shuttle_usbat.o
2025-10-31T06:01:14.8932590Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogf100.o
2025-10-31T06:01:14.9506652Z CC [M] drivers/scsi/esas2r/esas2r_io.o
2025-10-31T06:01:15.4785196Z LD [M] drivers/usb/storage/usb-storage.o
2025-10-31T06:01:15.5340078Z LD [M] drivers/usb/storage/ums-alauda.o
2025-10-31T06:01:15.5623210Z LD [M] drivers/usb/storage/ums-cypress.o
2025-10-31T06:01:15.5903632Z LD [M] drivers/usb/storage/ums-datafab.o
2025-10-31T06:01:15.6183605Z LD [M] drivers/usb/storage/ums-eneub6250.o
2025-10-31T06:01:15.6471288Z LD [M] drivers/usb/storage/ums-freecom.o
2025-10-31T06:01:15.6689703Z LD [M] drivers/usb/storage/ums-isd200.o
2025-10-31T06:01:15.6961121Z LD [M] drivers/usb/storage/ums-jumpshot.o
2025-10-31T06:01:15.7241906Z LD [M] drivers/usb/storage/ums-karma.o
2025-10-31T06:01:15.7481214Z LD [M] drivers/usb/storage/ums-onetouch.o
2025-10-31T06:01:15.7770134Z LD [M] drivers/usb/storage/ums-realtek.o
2025-10-31T06:01:15.8009816Z LD [M] drivers/usb/storage/ums-sddr09.o
2025-10-31T06:01:15.8287509Z LD [M] drivers/usb/storage/ums-sddr55.o
2025-10-31T06:01:15.8475135Z LD [M] drivers/usb/storage/ums-usbat.o
2025-10-31T06:01:15.8966829Z CC [M] drivers/net/ethernet/broadcom/genet/bcmmii.o
2025-10-31T06:01:15.9548257Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogk104.o
2025-10-31T06:01:16.0316612Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogv100.o
2025-10-31T06:01:16.0415650Z CC [M] drivers/scsi/esas2r/esas2r_ioctl.o
2025-10-31T06:01:16.8338461Z CC drivers/usb/host/xhci-hub.o
2025-10-31T06:01:16.9358134Z CC [M] drivers/net/ethernet/broadcom/genet/bcmgenet_wol.o
2025-10-31T06:01:17.1536262Z CC [M] drivers/scsi/esas2r/esas2r_targdb.o
2025-10-31T06:01:17.1872419Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifotu102.o
2025-10-31T06:01:17.4879257Z AR drivers/net/wireless/admtek/built-in.a
2025-10-31T06:01:17.4993060Z CC [M] drivers/net/wireless/admtek/adm8211.o
2025-10-31T06:01:18.1734811Z LD [M] drivers/net/ethernet/broadcom/genet/genet.o
2025-10-31T06:01:18.1888144Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/usergv100.o
2025-10-31T06:01:18.2123366Z CC [M] drivers/scsi/esas2r/esas2r_vda.o
2025-10-31T06:01:18.2717780Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.o
2025-10-31T06:01:18.7629826Z CC drivers/usb/host/xhci-dbg.o
2025-10-31T06:01:19.1443246Z CC [M] drivers/scsi/esas2r/esas2r_main.o
2025-10-31T06:01:19.1842661Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/usertu102.o
2025-10-31T06:01:19.3471759Z CC drivers/usb/host/xhci-trace.o
2025-10-31T06:01:19.9062673Z CC [M] drivers/net/wireless/ath/ath5k/caps.o
2025-10-31T06:01:20.2056887Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/base.o
2025-10-31T06:01:20.5960093Z LD [M] drivers/scsi/esas2r/esas2r.o
2025-10-31T06:01:20.6994637Z CC drivers/scsi/scsi.o
2025-10-31T06:01:21.1993500Z CC [M] drivers/net/wireless/ath/ath5k/initvals.o
2025-10-31T06:01:21.2325645Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv04.o
2025-10-31T06:01:21.7213543Z CC drivers/usb/host/xhci-debugfs.o
2025-10-31T06:01:22.3374401Z CC drivers/scsi/hosts.o
2025-10-31T06:01:22.6548453Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv10.o
2025-10-31T06:01:22.7784464Z CC [M] drivers/net/wireless/ath/ath5k/eeprom.o
2025-10-31T06:01:22.8876399Z CC [M] drivers/usb/host/ehci-platform.o
2025-10-31T06:01:23.3915624Z CC drivers/scsi/scsi_ioctl.o
2025-10-31T06:01:23.9651797Z CC [M] drivers/usb/host/oxu210hp-hcd.o
2025-10-31T06:01:24.1667419Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv15.o
2025-10-31T06:01:24.3876788Z CC drivers/scsi/scsicam.o
2025-10-31T06:01:24.9191329Z CC [M] drivers/net/wireless/ath/ath5k/gpio.o
2025-10-31T06:01:25.1563125Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv17.o
2025-10-31T06:01:25.3575927Z CC drivers/scsi/scsi_error.o
2025-10-31T06:01:25.9851551Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv20.o
2025-10-31T06:01:26.0371555Z CC [M] drivers/net/wireless/ath/ath5k/desc.o
2025-10-31T06:01:26.5732973Z CC [M] drivers/usb/host/isp116x-hcd.o
2025-10-31T06:01:27.1072134Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv25.o
2025-10-31T06:01:27.3290547Z CC drivers/scsi/scsi_lib.o
2025-10-31T06:01:27.4226313Z CC [M] drivers/net/wireless/ath/ath5k/dma.o
2025-10-31T06:01:28.0259606Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv2a.o
2025-10-31T06:01:28.5194424Z CC [M] drivers/usb/host/ohci-platform.o
2025-10-31T06:01:29.0237066Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv30.o
2025-10-31T06:01:29.1584867Z CC [M] drivers/net/wireless/ath/ath5k/qcu.o
2025-10-31T06:01:29.3197058Z CC [M] drivers/usb/host/xhci-pci.o
2025-10-31T06:01:29.3598395Z CC drivers/scsi/constants.o
2025-10-31T06:01:29.8576112Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.o
2025-10-31T06:01:30.0112816Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv34.o
2025-10-31T06:01:30.0663852Z CC drivers/scsi/scsi_lib_dma.o
2025-10-31T06:01:30.5950365Z CC [M] drivers/usb/host/xhci-pci-renesas.o
2025-10-31T06:01:30.6817051Z CC [M] drivers/net/wireless/ath/ath5k/pcu.o
2025-10-31T06:01:30.7765051Z CC drivers/scsi/scsi_scan.o
2025-10-31T06:01:31.0707425Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv35.o
2025-10-31T06:01:31.6565546Z CC [M] drivers/usb/host/xhci-plat.o
2025-10-31T06:01:31.9145995Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv40.o
2025-10-31T06:01:32.3281051Z CC [M] drivers/net/wireless/ath/ath5k/phy.o
2025-10-31T06:01:32.6135303Z GEN drivers/scsi/scsi_devinfo_tbl.c
2025-10-31T06:01:32.6244672Z CC [M] drivers/usb/host/sl811-hcd.o
2025-10-31T06:01:32.6298740Z CC drivers/scsi/scsi_devinfo.o
2025-10-31T06:01:33.2444747Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv44.o
2025-10-31T06:01:33.7064398Z CC drivers/scsi/scsi_netlink.o
2025-10-31T06:01:33.9999865Z CC [M] drivers/usb/host/sl811_cs.o
2025-10-31T06:01:34.2610022Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv50.o
2025-10-31T06:01:34.6833505Z CC [M] drivers/usb/host/u132-hcd.o
2025-10-31T06:01:34.8071501Z CC drivers/scsi/scsi_sysctl.o
2025-10-31T06:01:35.1394665Z CC [M] drivers/net/wireless/ath/ath5k/reset.o
2025-10-31T06:01:35.6225362Z CC drivers/scsi/scsi_proc.o
2025-10-31T06:01:35.6323694Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/g84.o
2025-10-31T06:01:36.5514372Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gt200.o
2025-10-31T06:01:36.5684276Z CC drivers/scsi/scsi_debugfs.o
2025-10-31T06:01:36.8077174Z CC [M] drivers/net/wireless/ath/ath5k/attach.o
2025-10-31T06:01:36.9147341Z CC [M] drivers/usb/host/r8a66597-hcd.o
2025-10-31T06:01:37.2013753Z CC drivers/scsi/scsi_trace.o
2025-10-31T06:01:37.3135787Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.o
2025-10-31T06:01:37.5119403Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/mcp79.o
2025-10-31T06:01:38.0103737Z CC drivers/scsi/scsi_logging.o
2025-10-31T06:01:38.2588557Z CC [M] drivers/net/wireless/ath/ath5k/base.o
2025-10-31T06:01:38.3533702Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gt215.o
2025-10-31T06:01:39.1703617Z CC drivers/scsi/scsi_pm.o
2025-10-31T06:01:39.2877904Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/mcp89.o
2025-10-31T06:01:39.3385461Z CC [M] drivers/usb/host/fsl-mph-dr-of.o
2025-10-31T06:01:39.9116089Z CC [M] drivers/usb/host/ehci-fsl.o
2025-10-31T06:01:40.0976444Z CC drivers/scsi/scsi_dh.o
2025-10-31T06:01:40.3104487Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.o
2025-10-31T06:01:40.8985752Z CC drivers/scsi/scsi_common.o
2025-10-31T06:01:40.9226105Z CC [M] drivers/usb/host/bcma-hcd.o
2025-10-31T06:01:41.1467905Z CC drivers/scsi/sd.o
2025-10-31T06:01:41.2305129Z CC [M] drivers/net/wireless/ath/ath5k/led.o
2025-10-31T06:01:41.6330128Z CC [M] drivers/usb/host/ssb-hcd.o
2025-10-31T06:01:42.2873832Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_ethtool.o
2025-10-31T06:01:42.3878259Z CC [M] drivers/usb/host/fotg210-hcd.o
2025-10-31T06:01:42.5196447Z CC [M] drivers/net/wireless/ath/ath5k/rfkill.o
2025-10-31T06:01:42.6804423Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf104.o
2025-10-31T06:01:43.6191729Z CC [M] drivers/net/wireless/ath/ath5k/ani.o
2025-10-31T06:01:43.6756885Z CC drivers/scsi/sd_dif.o
2025-10-31T06:01:43.8209763Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf108.o
2025-10-31T06:01:44.4488102Z CC drivers/scsi/sd_zbc.o
2025-10-31T06:01:44.7220745Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf110.o
2025-10-31T06:01:45.0983966Z CC [M] drivers/net/wireless/ath/ath5k/sysfs.o
2025-10-31T06:01:45.6443880Z CC [M] drivers/scsi/raid_class.o
2025-10-31T06:01:45.6739993Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_stats.o
2025-10-31T06:01:45.6898822Z CC [M] drivers/usb/host/max3421-hcd.o
2025-10-31T06:01:45.7537864Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf117.o
2025-10-31T06:01:46.3442180Z CC [M] drivers/scsi/scsi_transport_spi.o
2025-10-31T06:01:46.4472535Z CC [M] drivers/net/wireless/ath/ath5k/mac80211-ops.o
2025-10-31T06:01:46.7183540Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf119.o
2025-10-31T06:01:46.9700633Z LD [M] drivers/usb/host/xhci-plat-hcd.o
2025-10-31T06:01:46.9849739Z AR drivers/usb/host/built-in.a
2025-10-31T06:01:47.1181570Z CC drivers/usb/serial/usb-serial.o
2025-10-31T06:01:47.7314175Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk104.o
2025-10-31T06:01:47.9305801Z CC [M] drivers/scsi/scsi_transport_fc.o
2025-10-31T06:01:48.2500892Z CC [M] drivers/net/wireless/ath/ath5k/debug.o
2025-10-31T06:01:48.6434948Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk110.o
2025-10-31T06:01:48.7720862Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_dcb.o
2025-10-31T06:01:48.8003368Z CC drivers/usb/serial/generic.o
2025-10-31T06:01:49.6203496Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk110b.o
2025-10-31T06:01:49.9116391Z CC drivers/usb/serial/bus.o
2025-10-31T06:01:49.9986650Z CC [M] drivers/net/wireless/ath/ath5k/pci.o
2025-10-31T06:01:50.5643063Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk208.o
2025-10-31T06:01:50.6365366Z CC [M] drivers/scsi/scsi_transport_iscsi.o
2025-10-31T06:01:50.7015043Z CC drivers/usb/serial/console.o
2025-10-31T06:01:51.2978223Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_sp.o
2025-10-31T06:01:51.3991934Z LD [M] drivers/net/wireless/ath/ath5k/ath5k.o
2025-10-31T06:01:51.4180481Z CC [M] drivers/usb/serial/aircable.o
2025-10-31T06:01:51.5413836Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk20a.o
2025-10-31T06:01:51.5826383Z CC [M] drivers/net/wireless/ath/ath9k/beacon.o
2025-10-31T06:01:52.0467483Z CC [M] drivers/usb/serial/ark3116.o
2025-10-31T06:01:52.7521128Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gm107.o
2025-10-31T06:01:52.8712429Z CC [M] drivers/usb/serial/belkin_sa.o
2025-10-31T06:01:52.9926755Z CC [M] drivers/net/wireless/ath/ath9k/gpio.o
2025-10-31T06:01:53.7844370Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gm200.o
2025-10-31T06:01:53.8012760Z CC [M] drivers/usb/serial/ch341.o
2025-10-31T06:01:54.5065329Z CC [M] drivers/net/wireless/ath/ath9k/init.o
2025-10-31T06:01:54.8417598Z CC [M] drivers/usb/serial/cp210x.o
2025-10-31T06:01:54.8504371Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gm20b.o
2025-10-31T06:01:55.0051006Z CC [M] drivers/scsi/scsi_transport_sas.o
2025-10-31T06:01:55.3613427Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_self_test.o
2025-10-31T06:01:56.0275562Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp100.o
2025-10-31T06:01:56.0598040Z CC [M] drivers/net/wireless/ath/ath9k/main.o
2025-10-31T06:01:56.2062941Z CC [M] drivers/usb/serial/cyberjack.o
2025-10-31T06:01:56.5893878Z CC [M] drivers/scsi/scsi_transport_srp.o
2025-10-31T06:01:56.6683917Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_vfpf.o
2025-10-31T06:01:56.9472941Z CC [M] drivers/usb/serial/cypress_m8.o
2025-10-31T06:01:57.2240847Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp102.o
2025-10-31T06:01:57.7243644Z CC [M] drivers/scsi/libiscsi.o
2025-10-31T06:01:58.2410664Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp104.o
2025-10-31T06:01:58.2747808Z CC [M] drivers/usb/serial/usb_debug.o
2025-10-31T06:01:58.3725507Z CC [M] drivers/net/wireless/ath/ath9k/recv.o
2025-10-31T06:01:58.8660974Z CC [M] drivers/usb/serial/digi_acceleport.o
2025-10-31T06:01:59.0574548Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp107.o
2025-10-31T06:01:59.0870270Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.o
2025-10-31T06:01:59.8651073Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp108.o
2025-10-31T06:02:00.2266660Z CC [M] drivers/usb/serial/io_edgeport.o
2025-10-31T06:02:00.6301675Z CC [M] drivers/net/wireless/ath/ath9k/xmit.o
2025-10-31T06:02:00.6444765Z CC [M] drivers/scsi/libiscsi_tcp.o
2025-10-31T06:02:00.6933473Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp10b.o
2025-10-31T06:02:01.5667775Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gv100.o
2025-10-31T06:02:02.0565128Z LD [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x.o
2025-10-31T06:02:02.1763406Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt.o
2025-10-31T06:02:02.4909673Z CC [M] drivers/scsi/iscsi_tcp.o
2025-10-31T06:02:02.5359559Z CC [M] drivers/usb/serial/io_ti.o
2025-10-31T06:02:02.6133267Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/tu102.o
2025-10-31T06:02:03.4215344Z CC [M] drivers/net/wireless/ath/ath9k/link.o
2025-10-31T06:02:03.7855058Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxnv40.o
2025-10-31T06:02:04.3892243Z CC [M] drivers/scsi/iscsi_boot_sysfs.o
2025-10-31T06:02:04.6155454Z CC [M] drivers/usb/serial/empeg.o
2025-10-31T06:02:04.8586472Z CC [M] drivers/net/wireless/ath/ath9k/antenna.o
2025-10-31T06:02:05.1352990Z CC [M] drivers/scsi/advansys.o
2025-10-31T06:02:05.2153784Z CC [M] drivers/usb/serial/f81232.o
2025-10-31T06:02:06.2217479Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxnv50.o
2025-10-31T06:02:06.2902558Z CC [M] drivers/usb/serial/f81534.o
2025-10-31T06:02:06.4117835Z CC [M] drivers/net/wireless/ath/ath9k/channel.o
2025-10-31T06:02:07.5864937Z CC [M] drivers/usb/serial/ftdi_sio.o
2025-10-31T06:02:08.3555827Z CC [M] drivers/net/wireless/ath/ath9k/mci.o
2025-10-31T06:02:09.2844324Z CC [M] drivers/usb/serial/garmin_gps.o
2025-10-31T06:02:09.5128698Z CC [M] drivers/scsi/BusLogic.o
2025-10-31T06:02:10.1624468Z CC [M] drivers/net/wireless/ath/ath9k/pci.o
2025-10-31T06:02:10.5726133Z CC [M] drivers/usb/serial/ipaq.o
2025-10-31T06:02:10.6156837Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.o
2025-10-31T06:02:10.7163481Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.o
2025-10-31T06:02:11.3933895Z CC [M] drivers/usb/serial/ipw.o
2025-10-31T06:02:11.4027868Z CC [M] drivers/net/wireless/ath/ath9k/ahb.o
2025-10-31T06:02:12.0937197Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf104.o
2025-10-31T06:02:12.1685652Z CC [M] drivers/usb/serial/ir-usb.o
2025-10-31T06:02:12.7473392Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.o
2025-10-31T06:02:12.7933668Z CC [M] drivers/net/wireless/ath/ath9k/wow.o
2025-10-31T06:02:12.8753330Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf108.o
2025-10-31T06:02:13.0396556Z CC [M] drivers/usb/serial/iuu_phoenix.o
2025-10-31T06:02:13.7707854Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf110.o
2025-10-31T06:02:14.2393532Z CC [M] drivers/usb/serial/keyspan.o
2025-10-31T06:02:14.3016328Z CC [M] drivers/net/wireless/ath/ath9k/rng.o
2025-10-31T06:02:14.3260847Z CC [M] drivers/scsi/dpt_i2o.o
2025-10-31T06:02:14.7314508Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf117.o
2025-10-31T06:02:15.5236191Z CC [M] drivers/net/wireless/ath/ath9k/debug.o
2025-10-31T06:02:15.7873757Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf119.o
2025-10-31T06:02:16.1583517Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.o
2025-10-31T06:02:16.1759582Z CC [M] drivers/scsi/ips.o
2025-10-31T06:02:16.4236311Z CC [M] drivers/usb/serial/keyspan_pda.o
2025-10-31T06:02:16.5575630Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk104.o
2025-10-31T06:02:17.4095297Z CC [M] drivers/usb/serial/kl5kusb105.o
2025-10-31T06:02:17.6149239Z CC [M] drivers/net/wireless/ath/ath9k/debug_sta.o
2025-10-31T06:02:17.7664498Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110.o
2025-10-31T06:02:18.1256892Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.o
2025-10-31T06:02:18.2276647Z CC [M] drivers/usb/serial/kobil_sct.o
2025-10-31T06:02:18.9139036Z CC [M] drivers/net/wireless/ath/ath9k/ar9002_hw.o
2025-10-31T06:02:18.9337537Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110b.o
2025-10-31T06:02:18.9450059Z CC [M] drivers/scsi/fdomain.o
2025-10-31T06:02:19.1266804Z CC [M] drivers/usb/serial/mct_u232.o
2025-10-31T06:02:19.7803009Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.o
2025-10-31T06:02:19.8628246Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk208.o
2025-10-31T06:02:19.9625412Z CC [M] drivers/scsi/fdomain_pci.o
2025-10-31T06:02:20.0288294Z CC [M] drivers/usb/serial/metro-usb.o
2025-10-31T06:02:20.2064670Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_hw.o
2025-10-31T06:02:20.5873830Z CC [M] drivers/scsi/qlogicfas408.o
2025-10-31T06:02:20.8048179Z CC [M] drivers/usb/serial/mos7720.o
2025-10-31T06:02:20.9243675Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk20a.o
2025-10-31T06:02:21.3907565Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_vfr.o
2025-10-31T06:02:21.4852541Z CC [M] drivers/scsi/qla1280.o
2025-10-31T06:02:21.9073407Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.o
2025-10-31T06:02:22.1246842Z CC [M] drivers/net/wireless/ath/ath9k/hw.o
2025-10-31T06:02:22.3989803Z CC [M] drivers/usb/serial/mos7840.o
2025-10-31T06:02:22.8943721Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm200.o
2025-10-31T06:02:23.0737156Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_devlink.o
2025-10-31T06:02:23.2310281Z CC [M] drivers/scsi/dmx3191d.o
2025-10-31T06:02:23.9004083Z CC [M] drivers/usb/serial/mxuport.o
2025-10-31T06:02:23.9922333Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm20b.o
2025-10-31T06:02:24.6134639Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_dim.o
2025-10-31T06:02:24.6297047Z CC [M] drivers/scsi/hpsa.o
2025-10-31T06:02:24.8489837Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp100.o
2025-10-31T06:02:25.2876161Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_phy.o
2025-10-31T06:02:25.5275001Z CC [M] drivers/usb/serial/navman.o
2025-10-31T06:02:25.8373151Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp102.o
2025-10-31T06:02:25.8956685Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_tc.o
2025-10-31T06:02:26.2676211Z CC [M] drivers/usb/serial/omninet.o
2025-10-31T06:02:26.7396039Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp104.o
2025-10-31T06:02:27.0716993Z CC [M] drivers/usb/serial/opticon.o
2025-10-31T06:02:27.3146505Z CC [M] drivers/net/wireless/ath/ath9k/ar9002_phy.o
2025-10-31T06:02:27.7078840Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp107.o
2025-10-31T06:02:27.8275737Z CC [M] drivers/usb/serial/option.o
2025-10-31T06:02:28.6217976Z CC [M] drivers/usb/serial/oti6858.o
2025-10-31T06:02:28.6744840Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgv100.o
2025-10-31T06:02:28.7009139Z CC [M] drivers/net/wireless/ath/ath9k/ar5008_phy.o
2025-10-31T06:02:28.7170912Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_debugfs.o
2025-10-31T06:02:29.6776115Z CC [M] drivers/scsi/dc395x.o
2025-10-31T06:02:29.7727554Z CC [M] drivers/usb/serial/pl2303.o
2025-10-31T06:02:29.8153263Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxtu102.o
2025-10-31T06:02:30.1244804Z LD [M] drivers/net/ethernet/broadcom/bnxt/bnxt_en.o
2025-10-31T06:02:30.2638784Z AR drivers/net/ethernet/broadcom/built-in.a
2025-10-31T06:02:30.2818388Z CC [M] drivers/net/ethernet/broadcom/b44.o
2025-10-31T06:02:30.5141236Z CC [M] drivers/net/wireless/ath/ath9k/ar9002_calib.o
2025-10-31T06:02:30.7113028Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/nv31.o
2025-10-31T06:02:30.8818920Z CC [M] drivers/usb/serial/qcaux.o
2025-10-31T06:02:31.5723887Z CC [M] drivers/usb/serial/qcserial.o
2025-10-31T06:02:31.7742589Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/nv40.o
2025-10-31T06:02:31.9423773Z CC [M] drivers/scsi/esp_scsi.o
2025-10-31T06:02:32.4739591Z CC [M] drivers/usb/serial/quatech2.o
2025-10-31T06:02:32.4891128Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_calib.o
2025-10-31T06:02:32.5163724Z CC [M] drivers/net/ethernet/broadcom/bnx2.o
2025-10-31T06:02:32.7287389Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/nv44.o
2025-10-31T06:02:33.6253414Z CC [M] drivers/usb/serial/safe_serial.o
2025-10-31T06:02:33.7693830Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/nv50.o
2025-10-31T06:02:33.9453857Z CC [M] drivers/scsi/am53c974.o
2025-10-31T06:02:34.4906352Z CC [M] drivers/usb/serial/sierra.o
2025-10-31T06:02:34.5725220Z CC [M] drivers/net/wireless/ath/ath9k/calib.o
2025-10-31T06:02:34.6519080Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/g84.o
2025-10-31T06:02:35.0323114Z CC [M] drivers/scsi/megaraid.o
2025-10-31T06:02:35.4475967Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/base.o
2025-10-31T06:02:36.0589119Z CC [M] drivers/net/wireless/ath/ath9k/eeprom.o
2025-10-31T06:02:36.0622240Z CC [M] drivers/usb/serial/usb-serial-simple.o
2025-10-31T06:02:36.3483433Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/g98.o
2025-10-31T06:02:36.8471856Z CC [M] drivers/usb/serial/spcp8x5.o
2025-10-31T06:02:37.2855438Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/gt215.o
2025-10-31T06:02:37.4587129Z CC [M] drivers/scsi/atp870u.o
2025-10-31T06:02:37.5385515Z CC [M] drivers/net/ethernet/broadcom/cnic.o
2025-10-31T06:02:37.6726031Z CC [M] drivers/net/wireless/ath/ath9k/eeprom_def.o
2025-10-31T06:02:37.7095385Z CC [M] drivers/usb/serial/ssu100.o
2025-10-31T06:02:38.2571029Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/gf100.o
2025-10-31T06:02:38.6243068Z CC [M] drivers/usb/serial/symbolserial.o
2025-10-31T06:02:39.3604329Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/gk104.o
2025-10-31T06:02:39.3939075Z CC [M] drivers/usb/serial/usb_wwan.o
2025-10-31T06:02:39.6788992Z CC [M] drivers/net/wireless/ath/ath9k/eeprom_4k.o
2025-10-31T06:02:39.7704900Z CC [M] drivers/scsi/gdth.o
2025-10-31T06:02:40.3775619Z CC [M] drivers/usb/serial/ti_usb_3410_5052.o
2025-10-31T06:02:40.4721425Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msppp/base.o
2025-10-31T06:02:41.3849651Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msppp/g98.o
2025-10-31T06:02:41.5238494Z CC [M] drivers/net/wireless/ath/ath9k/eeprom_9287.o
2025-10-31T06:02:41.6977542Z CC [M] drivers/usb/serial/upd78f0730.o
2025-10-31T06:02:41.9085157Z CC [M] drivers/net/ethernet/broadcom/tg3.o
2025-10-31T06:02:42.3036976Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msppp/gt215.o
2025-10-31T06:02:42.6908367Z CC [M] drivers/usb/serial/visor.o
2025-10-31T06:02:43.1080837Z CC [M] drivers/scsi/initio.o
2025-10-31T06:02:43.1100419Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msppp/gf100.o
2025-10-31T06:02:43.1626601Z CC [M] drivers/net/wireless/ath/ath9k/ani.o
2025-10-31T06:02:43.5311639Z CC [M] drivers/usb/serial/wishbone-serial.o
2025-10-31T06:02:44.1690811Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/base.o
2025-10-31T06:02:44.3118414Z CC [M] drivers/usb/serial/whiteheat.o
2025-10-31T06:02:44.3847087Z CC [M] drivers/net/wireless/ath/ath9k/mac.o
2025-10-31T06:02:45.0897576Z CC [M] drivers/scsi/a100u2w.o
2025-10-31T06:02:45.1871383Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/g98.o
2025-10-31T06:02:45.3736179Z CC [M] drivers/usb/serial/xsens_mt.o
2025-10-31T06:02:46.0398836Z AR drivers/usb/serial/built-in.a
2025-10-31T06:02:46.1335987Z CC [M] drivers/scsi/myrb.o
2025-10-31T06:02:46.2121710Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/gt215.o
2025-10-31T06:02:46.2719673Z CC [M] drivers/net/wireless/ath/ath9k/ar9002_mac.o
2025-10-31T06:02:46.4982466Z CC [M] drivers/usb/misc/sisusbvga/sisusb.o
2025-10-31T06:02:47.1634234Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/mcp89.o
2025-10-31T06:02:47.6963079Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_mac.o
2025-10-31T06:02:48.2361007Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/gf100.o
2025-10-31T06:02:48.3733225Z CC [M] drivers/scsi/myrs.o
2025-10-31T06:02:48.6072512Z LD [M] drivers/usb/misc/sisusbvga/sisusbvga.o
2025-10-31T06:02:48.6394697Z AR drivers/usb/misc/built-in.a
2025-10-31T06:02:48.6509879Z CC [M] drivers/usb/misc/adutux.o
2025-10-31T06:02:49.1163748Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/gk104.o
2025-10-31T06:02:49.3642670Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_eeprom.o
2025-10-31T06:02:49.5646449Z CC [M] drivers/usb/misc/appledisplay.o
2025-10-31T06:02:49.8938446Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/nvenc/base.o
2025-10-31T06:02:50.3233955Z CC [M] drivers/usb/misc/cypress_cy7c63.o
2025-10-31T06:02:50.7331765Z CC [M] drivers/scsi/3w-xxxx.o
2025-10-31T06:02:50.7357112Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/nvenc/gm107.o
2025-10-31T06:02:50.9435903Z CC [M] drivers/usb/misc/cytherm.o
2025-10-31T06:02:51.6996888Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/nvdec/base.o
2025-10-31T06:02:51.7910146Z CC [M] drivers/usb/misc/emi26.o
2025-10-31T06:02:52.2078093Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_paprd.o
2025-10-31T06:02:52.3535309Z CC [M] drivers/scsi/3w-9xxx.o
2025-10-31T06:02:52.5068201Z CC [M] drivers/usb/misc/emi62.o
2025-10-31T06:02:52.5541098Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/nvdec/gm107.o
2025-10-31T06:02:53.2126074Z CC [M] drivers/usb/misc/ezusb.o
2025-10-31T06:02:53.2793132Z CC [M] drivers/net/ethernet/broadcom/bcmsysport.o
2025-10-31T06:02:53.3297789Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/base.o
2025-10-31T06:02:53.8278703Z CC [M] drivers/usb/misc/ftdi-elan.o
2025-10-31T06:02:54.0867276Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_wow.o
2025-10-31T06:02:54.3697997Z CC [M] drivers/scsi/3w-sas.o
2025-10-31T06:02:54.8806168Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/nv40.o
2025-10-31T06:02:55.3983301Z CC [M] drivers/net/ethernet/brocade/bna/bnad.o
2025-10-31T06:02:55.8034384Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/nv50.o
2025-10-31T06:02:55.8355657Z CC [M] drivers/usb/misc/apple-mfi-fastcharge.o
2025-10-31T06:02:55.8896067Z CC [M] drivers/net/wireless/ath/ath9k/btcoex.o
2025-10-31T06:02:55.9625234Z CC [M] drivers/scsi/ppa.o
2025-10-31T06:02:56.5859331Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/g84.o
2025-10-31T06:02:56.6246437Z CC [M] drivers/usb/misc/idmouse.o
2025-10-31T06:02:57.0765018Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_mci.o
2025-10-31T06:02:57.4174570Z CC [M] drivers/usb/misc/iowarrior.o
2025-10-31T06:02:57.4460031Z CC [M] drivers/scsi/imm.o
2025-10-31T06:02:57.5623148Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gt200.o
2025-10-31T06:02:58.3268263Z CC [M] drivers/usb/misc/isight_firmware.o
2025-10-31T06:02:58.5070657Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gt215.o
2025-10-31T06:02:58.7022770Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_aic.o
2025-10-31T06:02:58.7918482Z CC [M] drivers/scsi/ipr.o
2025-10-31T06:02:58.8713790Z CC [M] drivers/net/ethernet/brocade/bna/bnad_ethtool.o
2025-10-31T06:02:58.9571859Z CC [M] drivers/usb/misc/usblcd.o
2025-10-31T06:02:59.3205097Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gf100.o
2025-10-31T06:02:59.8404538Z CC [M] drivers/usb/misc/ldusb.o
2025-10-31T06:02:59.9575914Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_rtt.o
2025-10-31T06:03:00.4204699Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gf108.o
2025-10-31T06:03:00.5977188Z CC [M] drivers/net/ethernet/brocade/bna/bnad_debugfs.o
2025-10-31T06:03:00.6771290Z CC [M] drivers/usb/misc/legousbtower.o
2025-10-31T06:03:01.3466027Z CC [M] drivers/net/wireless/ath/ath9k/dynack.o
2025-10-31T06:03:01.4034523Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gf117.o
2025-10-31T06:03:01.5801166Z CC [M] drivers/usb/misc/usbtest.o
2025-10-31T06:03:02.0908528Z CC [M] drivers/net/ethernet/brocade/bna/bna_enet.o
2025-10-31T06:03:02.4936970Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gk104.o
2025-10-31T06:03:02.7558832Z CC [M] drivers/net/wireless/ath/ath9k/common.o
2025-10-31T06:03:03.5323946Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec/g98.o
2025-10-31T06:03:03.6747420Z CC [M] drivers/usb/misc/ehset.o
2025-10-31T06:03:03.6909552Z CC [M] drivers/net/ethernet/brocade/bna/bna_tx_rx.o
2025-10-31T06:03:04.1500083Z CC [M] drivers/net/wireless/ath/ath9k/common-init.o
2025-10-31T06:03:04.4478754Z CC [M] drivers/usb/misc/trancevibrator.o
2025-10-31T06:03:04.5311046Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec2/base.o
2025-10-31T06:03:04.5946246Z CC [M] drivers/scsi/hptiop.o
2025-10-31T06:03:05.1991780Z CC [M] drivers/usb/misc/uss720.o
2025-10-31T06:03:05.3349941Z CC [M] drivers/net/wireless/ath/ath9k/common-beacon.o
2025-10-31T06:03:05.6875686Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec2/gp102.o
2025-10-31T06:03:06.1096932Z CC [M] drivers/scsi/stex.o
2025-10-31T06:03:06.1607467Z CC [M] drivers/usb/misc/usbsevseg.o
2025-10-31T06:03:06.2185642Z CC [M] drivers/net/ethernet/brocade/bna/bfa_msgq.o
2025-10-31T06:03:06.6043679Z CC [M] drivers/net/wireless/ath/ath9k/common-debug.o
2025-10-31T06:03:06.7687780Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec2/gp108.o
2025-10-31T06:03:06.8882681Z CC [M] drivers/usb/misc/yurex.o
2025-10-31T06:03:07.3869111Z CC [M] drivers/net/ethernet/brocade/bna/bfa_ioc.o
2025-10-31T06:03:07.5865782Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec2/tu102.o
2025-10-31T06:03:07.6184211Z CC [M] drivers/scsi/mvumi.o
2025-10-31T06:03:07.7326798Z CC [M] drivers/usb/misc/usb251xb.o
2025-10-31T06:03:08.1755079Z CC [M] drivers/net/wireless/ath/ath9k/common-spectral.o
2025-10-31T06:03:08.4150025Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/base.o
2025-10-31T06:03:08.8459874Z CC [M] drivers/usb/misc/usb3503.o
2025-10-31T06:03:09.4261273Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/nv04.o
2025-10-31T06:03:09.4649112Z CC [M] drivers/net/ethernet/brocade/bna/bfa_ioc_ct.o
2025-10-31T06:03:09.5685900Z CC [M] drivers/usb/misc/usb4604.o
2025-10-31T06:03:09.6484889Z CC [M] drivers/scsi/pmcraid.o
2025-10-31T06:03:09.8969611Z CC [M] drivers/net/wireless/ath/ath9k/htc_hst.o
2025-10-31T06:03:10.1260948Z CC [M] drivers/usb/misc/chaoskey.o
2025-10-31T06:03:10.3035704Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/nv10.o
2025-10-31T06:03:10.4783092Z CC [M] drivers/net/ethernet/brocade/bna/bfa_cee.o
2025-10-31T06:03:10.8776797Z CC [M] drivers/usb/misc/lvstest.o
2025-10-31T06:03:11.2645535Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/nv50.o
2025-10-31T06:03:11.3017272Z CC [M] drivers/net/ethernet/brocade/bna/cna_fwimg.o
2025-10-31T06:03:11.3726864Z CC [M] drivers/net/wireless/ath/ath9k/hif_usb.o
2025-10-31T06:03:11.8783529Z CC drivers/usb/early/ehci-dbgp.o
2025-10-31T06:03:12.2120323Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/gf100.o
2025-10-31T06:03:12.7515257Z LD [M] drivers/net/ethernet/brocade/bna/bna.o
2025-10-31T06:03:12.8046623Z AR drivers/net/ethernet/brocade/built-in.a
2025-10-31T06:03:12.8162904Z CC drivers/usb/early/xhci-dbc.o
2025-10-31T06:03:12.8539549Z AR drivers/net/ethernet/cavium/common/built-in.a
2025-10-31T06:03:12.8646681Z CC [M] drivers/net/ethernet/cavium/common/cavium_ptp.o
2025-10-31T06:03:13.2893914Z CC [M] drivers/scsi/virtio_scsi.o
2025-10-31T06:03:13.3117915Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/chan.o
2025-10-31T06:03:13.3118971Z CC [M] drivers/net/wireless/ath/ath9k/wmi.o
2025-10-31T06:03:13.5954505Z AR drivers/net/ethernet/cavium/thunder/built-in.a
2025-10-31T06:03:13.6185888Z CC [M] drivers/net/ethernet/cavium/thunder/thunder_xcv.o
2025-10-31T06:03:13.8820050Z AR drivers/usb/early/built-in.a
2025-10-31T06:03:13.9395245Z CC [M] drivers/usb/mon/mon_main.o
2025-10-31T06:03:14.3237051Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/nvsw.o
2025-10-31T06:03:14.5224619Z CC [M] drivers/scsi/vmw_pvscsi.o
2025-10-31T06:03:14.5621021Z CC [M] drivers/net/ethernet/cavium/thunder/thunder_bgx.o
2025-10-31T06:03:14.7223586Z CC [M] drivers/usb/mon/mon_stat.o
2025-10-31T06:03:14.8413502Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_txrx.o
2025-10-31T06:03:15.1981274Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/vp/g84.o
2025-10-31T06:03:15.4065251Z CC [M] drivers/usb/mon/mon_text.o
2025-10-31T06:03:16.0334832Z CC [M] drivers/scsi/xen-scsifront.o
2025-10-31T06:03:16.0634810Z CC [M] drivers/gpu/drm/nouveau/nouveau_acpi.o
2025-10-31T06:03:16.4508073Z CC [M] drivers/net/ethernet/cavium/thunder/nic_main.o
2025-10-31T06:03:16.5936121Z CC [M] drivers/usb/mon/mon_bin.o
2025-10-31T06:03:16.7460840Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_main.o
2025-10-31T06:03:17.2013757Z CC [M] drivers/gpu/drm/nouveau/nouveau_debugfs.o
2025-10-31T06:03:17.5258788Z CC [M] drivers/scsi/storvsc_drv.o
2025-10-31T06:03:18.0333360Z LD [M] drivers/usb/mon/usbmon.o
2025-10-31T06:03:18.1045836Z CC [M] drivers/usb/c67x00/c67x00-drv.o
2025-10-31T06:03:18.2293098Z CC [M] drivers/net/ethernet/cavium/thunder/nicvf_main.o
2025-10-31T06:03:18.3029681Z CC [M] drivers/gpu/drm/nouveau/nouveau_drm.o
2025-10-31T06:03:18.6459744Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_beacon.o
2025-10-31T06:03:18.8800513Z CC [M] drivers/usb/c67x00/c67x00-ll-hpi.o
2025-10-31T06:03:19.2678244Z CC [M] drivers/scsi/wd719x.o
2025-10-31T06:03:19.5414719Z CC [M] drivers/usb/c67x00/c67x00-hcd.o
2025-10-31T06:03:20.0765391Z CC [M] drivers/gpu/drm/nouveau/nouveau_hwmon.o
2025-10-31T06:03:20.1290002Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_init.o
2025-10-31T06:03:20.2392328Z CC [M] drivers/usb/c67x00/c67x00-sched.o
2025-10-31T06:03:20.5724326Z CC [M] drivers/scsi/st.o
2025-10-31T06:03:20.7700993Z CC [M] drivers/net/ethernet/cavium/thunder/nicvf_queues.o
2025-10-31T06:03:21.3432440Z CC [M] drivers/gpu/drm/nouveau/nouveau_ioc32.o
2025-10-31T06:03:21.5588206Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_gpio.o
2025-10-31T06:03:21.5708958Z LD [M] drivers/usb/c67x00/c67x00.o
2025-10-31T06:03:21.6460460Z CC [M] drivers/usb/class/cdc-acm.o
2025-10-31T06:03:21.7364963Z CC [M] drivers/gpu/drm/nouveau/nouveau_led.o
2025-10-31T06:03:22.8646220Z CC [M] drivers/gpu/drm/nouveau/nouveau_nvif.o
2025-10-31T06:03:22.9944779Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_debug.o
2025-10-31T06:03:23.2682650Z CC [M] drivers/usb/class/usblp.o
2025-10-31T06:03:23.6999924Z CC [M] drivers/net/ethernet/cavium/thunder/nicvf_ethtool.o
2025-10-31T06:03:23.8191696Z CC [M] drivers/gpu/drm/nouveau/nouveau_usif.o
2025-10-31T06:03:23.9830709Z CC [M] drivers/scsi/sr.o
2025-10-31T06:03:24.5006772Z CC [M] drivers/net/wireless/ath/ath9k/ath9k_pci_owl_loader.o
2025-10-31T06:03:24.5661197Z CC [M] drivers/usb/class/cdc-wdm.o
2025-10-31T06:03:24.9096804Z LD [M] drivers/net/ethernet/cavium/thunder/nicpf.o
2025-10-31T06:03:24.9231706Z LD [M] drivers/net/ethernet/cavium/thunder/nicvf.o
2025-10-31T06:03:24.9604604Z CC [M] drivers/gpu/drm/nouveau/nouveau_vga.o
2025-10-31T06:03:24.9905993Z AR drivers/net/ethernet/cavium/liquidio/built-in.a
2025-10-31T06:03:25.0086862Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_main.o
2025-10-31T06:03:25.1047428Z CC [M] drivers/scsi/sr_ioctl.o
2025-10-31T06:03:25.6972308Z LD [M] drivers/net/wireless/ath/ath9k/ath9k.o
2025-10-31T06:03:25.7775454Z CC [M] drivers/usb/class/usbtmc.o
2025-10-31T06:03:25.8393526Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_hw.o
2025-10-31T06:03:25.9735100Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo.o
2025-10-31T06:03:26.0203787Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_common.o
2025-10-31T06:03:26.0619990Z CC [M] drivers/scsi/sr_vendor.o
2025-10-31T06:03:26.0794179Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_htc.o
2025-10-31T06:03:26.2624066Z CC [M] drivers/net/wireless/ath/carl9170/main.o
2025-10-31T06:03:26.9031782Z CC [M] drivers/scsi/sg.o
2025-10-31T06:03:27.5778140Z CC [M] drivers/usb/image/mdc800.o
2025-10-31T06:03:27.7558963Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo0039.o
2025-10-31T06:03:28.2401333Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_console.o
2025-10-31T06:03:28.5731273Z CC [M] drivers/usb/image/microtek.o
2025-10-31T06:03:28.6396660Z CC [M] drivers/net/wireless/ath/carl9170/usb.o
2025-10-31T06:03:28.6726914Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo5039.o
2025-10-31T06:03:29.2847262Z CC [M] drivers/scsi/ch.o
2025-10-31T06:03:29.6173323Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo74c1.o
2025-10-31T06:03:29.6974457Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_vf_rep.o
2025-10-31T06:03:29.6984111Z CC [M] drivers/usb/atm/cxacru.o
2025-10-31T06:03:30.3871459Z CC [M] drivers/net/wireless/ath/carl9170/cmd.o
2025-10-31T06:03:30.4479844Z CC [M] drivers/scsi/ses.o
2025-10-31T06:03:30.6088009Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo85b5.o
2025-10-31T06:03:31.3264196Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_ethtool.o
2025-10-31T06:03:31.4817355Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo9039.o
2025-10-31T06:03:31.6083562Z CC [M] drivers/net/wireless/ath/carl9170/mac.o
2025-10-31T06:03:31.6390735Z CC [M] drivers/scsi/scsi_debug.o
2025-10-31T06:03:31.6600693Z CC [M] drivers/usb/atm/speedtch.o
2025-10-31T06:03:32.5226475Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo90b5.o
2025-10-31T06:03:33.1838648Z CC [M] drivers/net/wireless/ath/carl9170/phy.o
2025-10-31T06:03:33.3856964Z CC [M] drivers/usb/atm/ueagle-atm.o
2025-10-31T06:03:33.6636221Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_core.o
2025-10-31T06:03:33.7059708Z CC [M] drivers/gpu/drm/nouveau/nouveau_boa0b5.o
2025-10-31T06:03:34.6044124Z CC [M] drivers/gpu/drm/nouveau/nouveau_gem.o
2025-10-31T06:03:34.9965199Z CC [M] drivers/net/wireless/ath/carl9170/led.o
2025-10-31T06:03:35.7969796Z CC [M] drivers/net/ethernet/cavium/liquidio/request_manager.o
2025-10-31T06:03:35.9028427Z LD [M] drivers/scsi/hv_storvsc.o
2025-10-31T06:03:35.9051122Z CC [M] drivers/usb/atm/usbatm.o
2025-10-31T06:03:35.9260504Z LD [M] drivers/scsi/sr_mod.o
2025-10-31T06:03:35.9621828Z CC drivers/scsi/scsi_sysfs.o
2025-10-31T06:03:36.1359437Z CC [M] drivers/gpu/drm/nouveau/nouveau_svm.o
2025-10-31T06:03:36.4482648Z CC [M] drivers/net/wireless/ath/carl9170/fw.o
2025-10-31T06:03:37.1913593Z CC [M] drivers/net/ethernet/cavium/liquidio/response_manager.o
2025-10-31T06:03:37.6730851Z CC [M] drivers/gpu/drm/nouveau/nouveau_dmem.o
2025-10-31T06:03:37.7236857Z CC [M] drivers/usb/atm/xusbatm.o
2025-10-31T06:03:37.7410580Z CC [M] drivers/net/wireless/ath/carl9170/tx.o
2025-10-31T06:03:37.8342600Z AR drivers/scsi/built-in.a
2025-10-31T06:03:37.8910069Z CC [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ipsec/chcr_ipsec.o
2025-10-31T06:03:38.5962421Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_device.o
2025-10-31T06:03:39.0464442Z CC [M] drivers/usb/usbip/usbip_common.o
2025-10-31T06:03:39.0900848Z CC [M] drivers/gpu/drm/nouveau/nouveau_mem.o
2025-10-31T06:03:39.6811444Z LD [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ipsec/ch_ipsec.o
2025-10-31T06:03:39.7428173Z CC [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.o
2025-10-31T06:03:39.8124415Z CC [M] drivers/net/wireless/ath/carl9170/rx.o
2025-10-31T06:03:40.0303110Z CC [M] drivers/net/ethernet/cavium/liquidio/cn66xx_device.o
2025-10-31T06:03:40.1851451Z CC [M] drivers/gpu/drm/nouveau/nouveau_prime.o
2025-10-31T06:03:40.5939995Z CC [M] drivers/usb/usbip/usbip_event.o
2025-10-31T06:03:41.2713596Z CC [M] drivers/gpu/drm/nouveau/nouveau_sgdma.o
2025-10-31T06:03:41.2839720Z CC [M] drivers/net/ethernet/cavium/liquidio/cn68xx_device.o
2025-10-31T06:03:41.3674229Z CC [M] drivers/usb/usbip/vhci_sysfs.o
2025-10-31T06:03:41.3833868Z CC [M] drivers/net/wireless/ath/carl9170/debug.o
2025-10-31T06:03:42.1539523Z CC [M] drivers/gpu/drm/nouveau/nouveau_ttm.o
2025-10-31T06:03:42.2281062Z LD [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ch_ktls.o
2025-10-31T06:03:42.2567553Z CC [M] drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.o
2025-10-31T06:03:42.2648549Z AR drivers/net/ethernet/chelsio/inline_crypto/built-in.a
2025-10-31T06:03:42.3056325Z CC [M] drivers/net/ethernet/chelsio/cxgb/cxgb2.o
2025-10-31T06:03:42.6335464Z CC [M] drivers/usb/usbip/vhci_tx.o
2025-10-31T06:03:43.2136691Z CC [M] drivers/gpu/drm/nouveau/nouveau_vmm.o
2025-10-31T06:03:43.2329451Z LD [M] drivers/net/wireless/ath/carl9170/carl9170.o
2025-10-31T06:03:43.3558146Z CC [M] drivers/net/wireless/ath/ath6kl/debug.o
2025-10-31T06:03:43.4986592Z CC [M] drivers/usb/usbip/vhci_rx.o
2025-10-31T06:03:43.9660962Z CC [M] drivers/net/ethernet/cavium/liquidio/cn23xx_vf_device.o
2025-10-31T06:03:44.0203833Z CC [M] drivers/net/ethernet/chelsio/cxgb/espi.o
2025-10-31T06:03:44.2471633Z CC [M] drivers/usb/usbip/vhci_hcd.o
2025-10-31T06:03:44.3491366Z CC [M] drivers/gpu/drm/nouveau/nouveau_backlight.o
2025-10-31T06:03:45.1155343Z CC [M] drivers/net/ethernet/chelsio/cxgb/tp.o
2025-10-31T06:03:45.2614784Z CC [M] drivers/net/wireless/ath/ath6kl/hif.o
2025-10-31T06:03:45.4146811Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_mailbox.o
2025-10-31T06:03:45.5435563Z CC [M] drivers/gpu/drm/nouveau/nouveau_bios.o
2025-10-31T06:03:45.9917653Z CC [M] drivers/net/ethernet/chelsio/cxgb/pm3393.o
2025-10-31T06:03:46.1935002Z CC [M] drivers/usb/usbip/stub_dev.o
2025-10-31T06:03:46.6100545Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_mem_ops.o
2025-10-31T06:03:46.6323326Z CC [M] drivers/net/wireless/ath/ath6kl/htc_mbox.o
2025-10-31T06:03:47.0240850Z CC [M] drivers/usb/usbip/stub_main.o
2025-10-31T06:03:47.4773772Z CC [M] drivers/net/ethernet/chelsio/cxgb/sge.o
2025-10-31T06:03:47.4954001Z CC [M] drivers/gpu/drm/nouveau/nouveau_connector.o
2025-10-31T06:03:47.5837889Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_droq.o
2025-10-31T06:03:47.8633495Z CC [M] drivers/usb/usbip/stub_rx.o
2025-10-31T06:03:48.9409003Z CC [M] drivers/usb/usbip/stub_tx.o
2025-10-31T06:03:49.1150791Z CC [M] drivers/gpu/drm/nouveau/nouveau_display.o
2025-10-31T06:03:49.1647042Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_nic.o
2025-10-31T06:03:49.1937364Z CC [M] drivers/net/wireless/ath/ath6kl/htc_pipe.o
2025-10-31T06:03:49.6830729Z CC [M] drivers/net/ethernet/chelsio/cxgb/subr.o
2025-10-31T06:03:49.7951778Z LD [M] drivers/usb/usbip/usbip-core.o
2025-10-31T06:03:49.8128562Z LD [M] drivers/usb/usbip/vhci-hcd.o
2025-10-31T06:03:49.8337124Z LD [M] drivers/usb/usbip/usbip-host.o
2025-10-31T06:03:49.9101489Z CC [M] drivers/usb/typec/altmodes/displayport.o
2025-10-31T06:03:50.2903347Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_vf_main.o
2025-10-31T06:03:50.5568752Z CC [M] drivers/gpu/drm/nouveau/nouveau_dp.o
2025-10-31T06:03:50.9068601Z CC [M] drivers/usb/typec/altmodes/nvidia.o
2025-10-31T06:03:51.0546763Z CC [M] drivers/net/wireless/ath/ath6kl/bmi.o
2025-10-31T06:03:51.1101800Z CC [M] drivers/net/ethernet/chelsio/cxgb/mv88x201x.o
2025-10-31T06:03:51.2622887Z LD [M] drivers/usb/typec/altmodes/typec_displayport.o
2025-10-31T06:03:51.2747427Z LD [M] drivers/usb/typec/altmodes/typec_nvidia.o
2025-10-31T06:03:51.3231897Z CC [M] drivers/usb/typec/tcpm/tcpm.o
2025-10-31T06:03:51.5076801Z CC [M] drivers/gpu/drm/nouveau/nouveau_fbcon.o
2025-10-31T06:03:52.3579886Z CC [M] drivers/net/ethernet/chelsio/cxgb/my3126.o
2025-10-31T06:03:52.3839076Z CC [M] drivers/net/wireless/ath/ath6kl/cfg80211.o
2025-10-31T06:03:52.8672278Z LD [M] drivers/net/ethernet/cavium/liquidio/liquidio.o
2025-10-31T06:03:52.9326981Z LD [M] drivers/net/ethernet/cavium/liquidio/liquidio_vf.o
2025-10-31T06:03:52.9387271Z CC [M] drivers/gpu/drm/nouveau/nv04_fbcon.o
2025-10-31T06:03:53.0271811Z AR drivers/net/ethernet/cavium/octeon/built-in.a
2025-10-31T06:03:53.0488980Z AR drivers/net/ethernet/cavium/built-in.a
2025-10-31T06:03:53.0760163Z CC [M] drivers/usb/typec/tcpm/fusb302.o
2025-10-31T06:03:53.4595300Z CC [M] drivers/net/ethernet/chelsio/cxgb/mv88e1xxx.o
2025-10-31T06:03:53.9090312Z CC [M] drivers/net/ethernet/cisco/enic/enic_main.o
2025-10-31T06:03:54.2833824Z CC [M] drivers/gpu/drm/nouveau/nv50_fbcon.o
2025-10-31T06:03:54.6113495Z CC [M] drivers/net/ethernet/chelsio/cxgb/vsc7326.o
2025-10-31T06:03:54.6773968Z CC [M] drivers/usb/typec/tcpm/wcove.o
2025-10-31T06:03:54.8940130Z CC [M] drivers/net/wireless/ath/ath6kl/init.o
2025-10-31T06:03:55.4237093Z CC [M] drivers/usb/typec/tcpm/tcpci.o
2025-10-31T06:03:55.6534826Z CC [M] drivers/gpu/drm/nouveau/nvc0_fbcon.o
2025-10-31T06:03:55.9844096Z LD [M] drivers/net/ethernet/chelsio/cxgb/cxgb.o
2025-10-31T06:03:56.0562805Z CC [M] drivers/net/ethernet/chelsio/cxgb3/cxgb3_main.o
2025-10-31T06:03:56.3178807Z CC [M] drivers/usb/typec/tcpm/tcpci_rt1711h.o
2025-10-31T06:03:56.5350930Z CC [M] drivers/net/wireless/ath/ath6kl/main.o
2025-10-31T06:03:56.7553608Z CC [M] drivers/gpu/drm/nouveau/dispnv04/arb.o
2025-10-31T06:03:56.9771325Z CC [M] drivers/usb/typec/tcpm/tcpci_mt6360.o
2025-10-31T06:03:57.1222124Z CC [M] drivers/net/ethernet/cisco/enic/vnic_cq.o
2025-10-31T06:03:57.5075937Z CC [M] drivers/usb/typec/tcpm/tcpci_maxim.o
2025-10-31T06:03:57.7787062Z CC [M] drivers/gpu/drm/nouveau/dispnv04/crtc.o
2025-10-31T06:03:58.1945920Z CC [M] drivers/net/ethernet/cisco/enic/vnic_intr.o
2025-10-31T06:03:58.1995988Z LD [M] drivers/usb/typec/tcpm/typec_wcove.o
2025-10-31T06:03:58.2794866Z CC [M] drivers/usb/typec/ucsi/ucsi.o
2025-10-31T06:03:58.3506768Z CC [M] drivers/net/wireless/ath/ath6kl/txrx.o
2025-10-31T06:03:58.8501702Z CC [M] drivers/net/ethernet/chelsio/cxgb3/ael1002.o
2025-10-31T06:03:59.1959168Z CC [M] drivers/net/ethernet/cisco/enic/vnic_wq.o
2025-10-31T06:03:59.4677521Z CC [M] drivers/usb/typec/ucsi/trace.o
2025-10-31T06:03:59.8928930Z CC [M] drivers/gpu/drm/nouveau/dispnv04/cursor.o
2025-10-31T06:04:00.1606930Z CC [M] drivers/net/ethernet/chelsio/cxgb3/vsc8211.o
2025-10-31T06:04:00.1749099Z CC [M] drivers/net/wireless/ath/ath6kl/wmi.o
2025-10-31T06:04:00.2328190Z CC [M] drivers/net/ethernet/cisco/enic/enic_res.o
2025-10-31T06:04:00.3924946Z CC [M] drivers/usb/typec/ucsi/psy.o
2025-10-31T06:04:00.9294107Z CC [M] drivers/usb/typec/ucsi/displayport.o
2025-10-31T06:04:01.0138176Z CC [M] drivers/gpu/drm/nouveau/dispnv04/dac.o
2025-10-31T06:04:01.3093102Z CC [M] drivers/net/ethernet/chelsio/cxgb3/t3_hw.o
2025-10-31T06:04:01.4303804Z CC [M] drivers/net/ethernet/cisco/enic/enic_dev.o
2025-10-31T06:04:01.4836965Z CC [M] drivers/usb/typec/ucsi/ucsi_acpi.o
2025-10-31T06:04:02.0391366Z CC [M] drivers/usb/typec/ucsi/ucsi_ccg.o
2025-10-31T06:04:02.4504045Z CC [M] drivers/net/ethernet/cisco/enic/enic_pp.o
2025-10-31T06:04:02.5979778Z CC [M] drivers/gpu/drm/nouveau/dispnv04/dfp.o
2025-10-31T06:04:03.0605338Z CC [M] drivers/net/wireless/ath/ath6kl/core.o
2025-10-31T06:04:03.2561582Z LD [M] drivers/usb/typec/ucsi/typec_ucsi.o
2025-10-31T06:04:03.3145810Z CC [M] drivers/usb/typec/mux/pi3usb30532.o
2025-10-31T06:04:03.8832565Z CC [M] drivers/usb/typec/mux/intel_pmc_mux.o
2025-10-31T06:04:03.9323827Z CC [M] drivers/net/ethernet/cisco/enic/vnic_dev.o
2025-10-31T06:04:04.0859024Z CC [M] drivers/net/wireless/ath/ath6kl/recovery.o
2025-10-31T06:04:04.1927522Z CC [M] drivers/net/ethernet/chelsio/cxgb3/mc5.o
2025-10-31T06:04:04.2798055Z CC [M] drivers/gpu/drm/nouveau/dispnv04/disp.o
2025-10-31T06:04:04.6967368Z CC [M] drivers/usb/typec/class.o
2025-10-31T06:04:05.0047592Z CC [M] drivers/net/wireless/ath/ath6kl/trace.o
2025-10-31T06:04:05.4464641Z CC [M] drivers/net/ethernet/chelsio/cxgb3/xgmac.o
2025-10-31T06:04:05.5296915Z CC [M] drivers/gpu/drm/nouveau/dispnv04/hw.o
2025-10-31T06:04:05.5870867Z CC [M] drivers/net/ethernet/cisco/enic/vnic_rq.o
2025-10-31T06:04:05.6632637Z CC [M] drivers/usb/typec/mux.o
2025-10-31T06:04:06.5428500Z CC [M] drivers/usb/typec/bus.o
2025-10-31T06:04:06.5511803Z CC [M] drivers/net/ethernet/chelsio/cxgb3/sge.o
2025-10-31T06:04:06.6131588Z CC [M] drivers/net/wireless/ath/ath6kl/sdio.o
2025-10-31T06:04:06.7198958Z CC [M] drivers/net/ethernet/cisco/enic/vnic_vic.o
2025-10-31T06:04:07.0910048Z CC [M] drivers/usb/typec/hd3ss3220.o
2025-10-31T06:04:07.2153370Z CC [M] drivers/net/ethernet/cisco/enic/enic_ethtool.o
2025-10-31T06:04:07.7483895Z CC [M] drivers/usb/typec/tps6598x.o
2025-10-31T06:04:08.0243676Z CC [M] drivers/net/wireless/ath/ath6kl/usb.o
2025-10-31T06:04:08.2861498Z CC [M] drivers/gpu/drm/nouveau/dispnv04/overlay.o
2025-10-31T06:04:08.4609347Z CC [M] drivers/usb/typec/stusb160x.o
2025-10-31T06:04:08.5493881Z CC [M] drivers/net/ethernet/cisco/enic/enic_api.o
2025-10-31T06:04:09.2598931Z LD [M] drivers/net/wireless/ath/ath6kl/ath6kl_core.o
2025-10-31T06:04:09.3198173Z LD [M] drivers/net/wireless/ath/ath6kl/ath6kl_sdio.o
2025-10-31T06:04:09.3345068Z LD [M] drivers/net/wireless/ath/ath6kl/ath6kl_usb.o
2025-10-31T06:04:09.3848425Z LD [M] drivers/usb/typec/typec.o
2025-10-31T06:04:09.3863857Z CC [M] drivers/net/wireless/ath/ar5523/ar5523.o
2025-10-31T06:04:09.4549076Z CC [M] drivers/usb/roles/class.o
2025-10-31T06:04:09.6166118Z CC [M] drivers/net/ethernet/cisco/enic/enic_clsf.o
2025-10-31T06:04:09.7361230Z CC [M] drivers/net/ethernet/chelsio/cxgb3/l2t.o
2025-10-31T06:04:09.8665702Z CC [M] drivers/gpu/drm/nouveau/dispnv04/tvmodesnv17.o
2025-10-31T06:04:10.0389741Z CC [M] drivers/usb/roles/intel-xhci-usb-role-switch.o
2025-10-31T06:04:10.6362235Z LD [M] drivers/usb/roles/roles.o
2025-10-31T06:04:10.6823737Z AR drivers/usb/built-in.a
2025-10-31T06:04:10.7334813Z AR drivers/net/ethernet/cisco/built-in.a
2025-10-31T06:04:10.7808114Z CC [M] drivers/net/bonding/bond_main.o
2025-10-31T06:04:10.8193825Z LD [M] drivers/net/ethernet/cisco/enic/enic.o
2025-10-31T06:04:10.9840604Z AR drivers/net/ethernet/cortina/built-in.a
2025-10-31T06:04:11.0555395Z CC [M] drivers/net/ipvlan/ipvlan_core.o
2025-10-31T06:04:11.0694955Z CC [M] drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.o
2025-10-31T06:04:11.1884798Z CC [M] drivers/gpu/drm/nouveau/dispnv04/tvnv04.o
2025-10-31T06:04:11.8254903Z CC [M] drivers/net/wireless/ath/wil6210/main.o
2025-10-31T06:04:12.4631433Z CC [M] drivers/gpu/drm/nouveau/dispnv04/tvnv17.o
2025-10-31T06:04:12.5259284Z CC [M] drivers/net/ipvlan/ipvlan_main.o
2025-10-31T06:04:12.9459014Z CC [M] drivers/net/ethernet/chelsio/cxgb3/aq100x.o
2025-10-31T06:04:13.9251066Z CC [M] drivers/gpu/drm/nouveau/dispnv50/disp.o
2025-10-31T06:04:13.9680343Z CC [M] drivers/net/wireless/ath/wil6210/netdev.o
2025-10-31T06:04:14.0504008Z LD [M] drivers/net/ethernet/chelsio/cxgb3/cxgb3.o
2025-10-31T06:04:14.1321393Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.o
2025-10-31T06:04:14.3120118Z CC [M] drivers/net/ipvlan/ipvlan_l3s.o
2025-10-31T06:04:14.8723092Z CC [M] drivers/net/bonding/bond_3ad.o
2025-10-31T06:04:15.3235430Z CC [M] drivers/net/wireless/ath/wil6210/cfg80211.o
2025-10-31T06:04:15.6019544Z CC [M] drivers/net/ipvlan/ipvtap.o
2025-10-31T06:04:16.5216223Z CC [M] drivers/gpu/drm/nouveau/dispnv50/lut.o
2025-10-31T06:04:16.9603752Z CC [M] drivers/net/bonding/bond_alb.o
2025-10-31T06:04:16.9688985Z LD [M] drivers/net/ipvlan/ipvlan.o
2025-10-31T06:04:17.0562266Z CC [M] drivers/net/wireless/ath/wil6210/pcie_bus.o
2025-10-31T06:04:17.4847997Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core.o
2025-10-31T06:04:17.7568814Z CC drivers/gpu/drm/drm_mipi_dsi.o
2025-10-31T06:04:18.5864072Z CC [M] drivers/net/wireless/ath/wil6210/debugfs.o
2025-10-31T06:04:18.8842620Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core507d.o
2025-10-31T06:04:18.9209516Z CC [M] drivers/net/bonding/bond_sysfs.o
2025-10-31T06:04:19.0094431Z CC drivers/input/keyboard/atkbd.o
2025-10-31T06:04:19.0838150Z CC [M] drivers/net/ethernet/chelsio/cxgb4/l2t.o
2025-10-31T06:04:20.0663344Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core827d.o
2025-10-31T06:04:20.0848139Z CC [M] drivers/net/bonding/bond_sysfs_slave.o
2025-10-31T06:04:20.6400468Z CC [M] drivers/input/keyboard/adc-keys.o
2025-10-31T06:04:20.6968644Z CC [M] drivers/net/wireless/ath/wil6210/wmi.o
2025-10-31T06:04:20.7223147Z CC [M] drivers/net/ethernet/chelsio/cxgb4/smt.o
2025-10-31T06:04:20.9890005Z CC [M] drivers/net/bonding/bond_debugfs.o
2025-10-31T06:04:21.2232230Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core907d.o
2025-10-31T06:04:21.2302843Z CC [M] drivers/input/keyboard/adp5520-keys.o
2025-10-31T06:04:21.7636968Z CC [M] drivers/net/bonding/bond_netlink.o
2025-10-31T06:04:21.8482723Z CC [M] drivers/input/keyboard/adp5588-keys.o
2025-10-31T06:04:22.2534816Z CC [M] drivers/net/ethernet/chelsio/cxgb4/t4_hw.o
2025-10-31T06:04:22.3749362Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core917d.o
2025-10-31T06:04:22.7447650Z CC [M] drivers/input/keyboard/adp5589-keys.o
2025-10-31T06:04:22.8306450Z CC [M] drivers/net/bonding/bond_options.o
2025-10-31T06:04:23.6454125Z CC [M] drivers/gpu/drm/nouveau/dispnv50/corec37d.o
2025-10-31T06:04:23.6666834Z CC [M] drivers/net/wireless/ath/wil6210/interrupt.o
2025-10-31T06:04:23.9665679Z CC [M] drivers/input/keyboard/applespi.o
2025-10-31T06:04:24.2765416Z CC [M] drivers/net/bonding/bond_procfs.o
2025-10-31T06:04:24.6222750Z CC [M] drivers/gpu/drm/nouveau/dispnv50/corec57d.o
2025-10-31T06:04:25.1447120Z CC [M] drivers/net/wireless/ath/wil6210/txrx.o
2025-10-31T06:04:25.4518104Z LD [M] drivers/net/bonding/bonding.o
2025-10-31T06:04:25.5385573Z AR drivers/input/mouse/built-in.a
2025-10-31T06:04:25.5607300Z CC [M] drivers/input/mouse/appletouch.o
2025-10-31T06:04:25.6243603Z CC [M] drivers/gpu/drm/nouveau/dispnv50/crc.o
2025-10-31T06:04:25.9486452Z CC [M] drivers/input/keyboard/cros_ec_keyb.o
2025-10-31T06:04:26.6446653Z CC [M] drivers/input/mouse/bcm5974.o
2025-10-31T06:04:26.9172293Z CC [M] drivers/input/keyboard/dlink-dir685-touchkeys.o
2025-10-31T06:04:27.1279117Z CC [M] drivers/gpu/drm/nouveau/dispnv50/crc907d.o
2025-10-31T06:04:27.5970018Z CC [M] drivers/input/keyboard/gpio_keys.o
2025-10-31T06:04:27.6144542Z CC [M] drivers/input/mouse/cyapa.o
2025-10-31T06:04:27.7684206Z CC [M] drivers/net/wireless/ath/wil6210/txrx_edma.o
2025-10-31T06:04:27.8323659Z CC [M] drivers/net/ethernet/chelsio/cxgb4/sge.o
2025-10-31T06:04:28.1011100Z CC [M] drivers/gpu/drm/nouveau/dispnv50/crcc37d.o
2025-10-31T06:04:28.7255470Z CC [M] drivers/input/keyboard/gpio_keys_polled.o
2025-10-31T06:04:29.0626295Z CC [M] drivers/gpu/drm/nouveau/dispnv50/dac507d.o
2025-10-31T06:04:29.1723303Z CC [M] drivers/input/mouse/cyapa_gen3.o
2025-10-31T06:04:29.6569583Z CC [M] drivers/input/keyboard/tca6416-keypad.o
2025-10-31T06:04:29.8834366Z CC [M] drivers/gpu/drm/nouveau/dispnv50/dac907d.o
2025-10-31T06:04:30.0295138Z CC [M] drivers/input/mouse/cyapa_gen5.o
2025-10-31T06:04:30.1635508Z CC [M] drivers/net/wireless/ath/wil6210/debug.o
2025-10-31T06:04:30.6729877Z CC [M] drivers/input/keyboard/tca8418_keypad.o
2025-10-31T06:04:30.7589791Z CC [M] drivers/gpu/drm/nouveau/dispnv50/pior507d.o
2025-10-31T06:04:31.3827203Z CC [M] drivers/net/wireless/ath/wil6210/rx_reorder.o
2025-10-31T06:04:31.4873704Z CC [M] drivers/input/keyboard/iqs62x-keys.o
2025-10-31T06:04:31.7302963Z CC [M] drivers/gpu/drm/nouveau/dispnv50/sor507d.o
2025-10-31T06:04:31.7519181Z CC [M] drivers/input/mouse/cyapa_gen6.o
2025-10-31T06:04:31.9963276Z CC [M] drivers/net/ethernet/chelsio/cxgb4/clip_tbl.o
2025-10-31T06:04:32.2985861Z CC [M] drivers/input/keyboard/lkkbd.o
2025-10-31T06:04:32.4056350Z CC [M] drivers/net/wireless/ath/wil6210/fw.o
2025-10-31T06:04:32.6242575Z CC [M] drivers/gpu/drm/nouveau/dispnv50/sor907d.o
2025-10-31T06:04:32.6769808Z CC [M] drivers/input/mouse/elan_i2c_core.o
2025-10-31T06:04:33.0747876Z CC [M] drivers/input/keyboard/lm8323.o
2025-10-31T06:04:33.5907462Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.o
2025-10-31T06:04:33.7137349Z CC [M] drivers/gpu/drm/nouveau/dispnv50/sorc37d.o
2025-10-31T06:04:33.8892754Z CC [M] drivers/net/wireless/ath/wil6210/pm.o
2025-10-31T06:04:33.9456346Z CC [M] drivers/input/mouse/elan_i2c_i2c.o
2025-10-31T06:04:34.1157083Z CC [M] drivers/input/keyboard/lm8333.o
2025-10-31T06:04:34.6259985Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head.o
2025-10-31T06:04:34.8970322Z CC [M] drivers/input/keyboard/matrix_keypad.o
2025-10-31T06:04:34.9019764Z CC [M] drivers/input/mouse/elan_i2c_smbus.o
2025-10-31T06:04:35.3245914Z CC [M] drivers/net/wireless/ath/wil6210/pmc.o
2025-10-31T06:04:35.7058467Z CC [M] drivers/input/mouse/gpio_mouse.o
2025-10-31T06:04:35.8322507Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head507d.o
2025-10-31T06:04:35.8614839Z CC [M] drivers/input/keyboard/max7359_keypad.o
2025-10-31T06:04:35.9304167Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.o
2025-10-31T06:04:36.2428745Z CC [M] drivers/input/mouse/psmouse-base.o
2025-10-31T06:04:36.6224507Z CC [M] drivers/net/wireless/ath/wil6210/trace.o
2025-10-31T06:04:36.6404067Z CC [M] drivers/input/keyboard/mcs_touchkey.o
2025-10-31T06:04:37.2206452Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head827d.o
2025-10-31T06:04:37.4212439Z CC [M] drivers/input/mouse/synaptics.o
2025-10-31T06:04:37.4818370Z CC [M] drivers/input/keyboard/mpr121_touchkey.o
2025-10-31T06:04:37.7595286Z CC [M] drivers/net/ethernet/chelsio/cxgb4/srq.o
2025-10-31T06:04:38.3503887Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head907d.o
2025-10-31T06:04:38.3940867Z CC [M] drivers/net/wireless/ath/wil6210/wil_platform.o
2025-10-31T06:04:38.5620322Z CC [M] drivers/input/keyboard/mtk-pmic-keys.o
2025-10-31T06:04:38.8163510Z CC [M] drivers/net/wireless/ath/wil6210/ethtool.o
2025-10-31T06:04:38.8403621Z CC [M] drivers/input/mouse/focaltech.o
2025-10-31T06:04:38.9370834Z CC [M] drivers/net/ethernet/chelsio/cxgb4/sched.o
2025-10-31T06:04:39.2185364Z CC [M] drivers/input/keyboard/newtonkbd.o
2025-10-31T06:04:39.5864555Z CC [M] drivers/input/mouse/alps.o
2025-10-31T06:04:39.6746387Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head917d.o
2025-10-31T06:04:39.7644545Z CC [M] drivers/net/wireless/ath/wil6210/wil_crash_dump.o
2025-10-31T06:04:40.0316836Z CC [M] drivers/input/keyboard/opencores-kbd.o
2025-10-31T06:04:40.4418891Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.o
2025-10-31T06:04:40.6251470Z CC [M] drivers/gpu/drm/nouveau/dispnv50/headc37d.o
2025-10-31T06:04:40.6891686Z CC [M] drivers/input/keyboard/qt1050.o
2025-10-31T06:04:40.8228841Z CC [M] drivers/net/wireless/ath/wil6210/p2p.o
2025-10-31T06:04:41.4204435Z CC [M] drivers/input/keyboard/qt1070.o
2025-10-31T06:04:41.7366639Z CC [M] drivers/input/mouse/byd.o
2025-10-31T06:04:41.8511228Z CC [M] drivers/gpu/drm/nouveau/dispnv50/headc57d.o
2025-10-31T06:04:42.0828174Z LD [M] drivers/net/wireless/ath/wil6210/wil6210.o
2025-10-31T06:04:42.1059357Z CC [M] drivers/input/keyboard/qt2160.o
2025-10-31T06:04:42.2347634Z CC [M] drivers/net/wireless/ath/ath10k/mac.o
2025-10-31T06:04:42.3322282Z CC [M] drivers/input/mouse/elantech.o
2025-10-31T06:04:42.8052686Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_u32.o
2025-10-31T06:04:42.9980869Z CC [M] drivers/input/keyboard/samsung-keypad.o
2025-10-31T06:04:43.2722880Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wimm.o
2025-10-31T06:04:43.7483802Z CC [M] drivers/input/mouse/logips2pp.o
2025-10-31T06:04:43.9577426Z CC [M] drivers/input/keyboard/stowaway.o
2025-10-31T06:04:44.3042884Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wimmc37b.o
2025-10-31T06:04:44.3691670Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_ptp.o
2025-10-31T06:04:44.5798164Z CC [M] drivers/input/mouse/lifebook.o
2025-10-31T06:04:44.6652219Z CC [M] drivers/input/keyboard/sunkbd.o
2025-10-31T06:04:45.3257116Z CC [M] drivers/input/mouse/sentelic.o
2025-10-31T06:04:45.4609901Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wndw.o
2025-10-31T06:04:45.5895545Z CC [M] drivers/input/keyboard/tm2-touchkey.o
2025-10-31T06:04:45.7320764Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.o
2025-10-31T06:04:46.3440440Z CC [M] drivers/input/mouse/trackpoint.o
2025-10-31T06:04:46.4913352Z CC [M] drivers/input/keyboard/twl4030_keypad.o
2025-10-31T06:04:47.0983978Z CC [M] drivers/input/mouse/touchkit_ps2.o
2025-10-31T06:04:47.1179422Z CC [M] drivers/input/keyboard/xtkbd.o
2025-10-31T06:04:47.1346825Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wndwc37e.o
2025-10-31T06:04:47.6442816Z CC [M] drivers/input/mouse/cypress_ps2.o
2025-10-31T06:04:47.7903619Z AR drivers/input/keyboard/built-in.a
2025-10-31T06:04:47.8379228Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_cudbg.o
2025-10-31T06:04:48.0947341Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_mps.o
2025-10-31T06:04:48.2880363Z CC [M] drivers/net/wireless/ath/ath10k/debug.o
2025-10-31T06:04:48.3904980Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wndwc57e.o
2025-10-31T06:04:48.4945058Z CC [M] drivers/input/mouse/vmmouse.o
2025-10-31T06:04:49.1859587Z CC [M] drivers/net/wireless/ath/ath10k/core.o
2025-10-31T06:04:49.2260619Z CC [M] drivers/input/mouse/psmouse-smbus.o
2025-10-31T06:04:49.4473129Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cudbg_common.o
2025-10-31T06:04:49.7835129Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base.o
2025-10-31T06:04:49.9580239Z CC [M] drivers/input/mouse/sermouse.o
2025-10-31T06:04:50.5959196Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cudbg_lib.o
2025-10-31T06:04:50.6356403Z AR drivers/net/ethernet/dec/tulip/built-in.a
2025-10-31T06:04:50.6469925Z CC [M] drivers/net/ethernet/dec/tulip/xircom_cb.o
2025-10-31T06:04:50.7946933Z CC [M] drivers/input/mouse/synaptics_i2c.o
2025-10-31T06:04:50.8912984Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base507c.o
2025-10-31T06:04:51.5449661Z CC [M] drivers/input/mouse/synaptics_usb.o
2025-10-31T06:04:51.8443365Z CC [M] drivers/net/wireless/ath/ath10k/htc.o
2025-10-31T06:04:51.9177351Z CC [M] drivers/net/ethernet/dec/tulip/dmfe.o
2025-10-31T06:04:51.9903684Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base827c.o
2025-10-31T06:04:52.4387592Z CC [M] drivers/input/mouse/vsxxxaa.o
2025-10-31T06:04:52.9264548Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base907c.o
2025-10-31T06:04:53.2800510Z LD [M] drivers/input/mouse/cyapatp.o
2025-10-31T06:04:53.3220109Z LD [M] drivers/input/mouse/elan_i2c.o
2025-10-31T06:04:53.3591600Z LD [M] drivers/input/mouse/psmouse.o
2025-10-31T06:04:53.5625575Z CC [M] drivers/input/joystick/iforce/iforce-ff.o
2025-10-31T06:04:53.6883261Z CC [M] drivers/net/ethernet/dec/tulip/winbond-840.o
2025-10-31T06:04:53.8893056Z CC [M] drivers/net/wireless/ath/ath10k/htt.o
2025-10-31T06:04:53.9217549Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cudbg_zlib.o
2025-10-31T06:04:53.9246800Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base917c.o
2025-10-31T06:04:54.3700710Z CC [M] drivers/input/joystick/iforce/iforce-main.o
2025-10-31T06:04:54.8872226Z CC [M] drivers/gpu/drm/nouveau/dispnv50/curs.o
2025-10-31T06:04:55.1603903Z CC [M] drivers/input/joystick/iforce/iforce-packets.o
2025-10-31T06:04:55.2083327Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_mqprio.o
2025-10-31T06:04:55.2390527Z CC [M] drivers/net/wireless/ath/ath10k/htt_rx.o
2025-10-31T06:04:55.3249777Z CC [M] drivers/net/ethernet/dec/tulip/de2104x.o
2025-10-31T06:04:55.9025156Z CC [M] drivers/input/joystick/iforce/iforce-serio.o
2025-10-31T06:04:55.9238891Z CC [M] drivers/gpu/drm/nouveau/dispnv50/curs507a.o
2025-10-31T06:04:56.5927195Z CC [M] drivers/input/joystick/iforce/iforce-usb.o
2025-10-31T06:04:56.9227065Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_matchall.o
2025-10-31T06:04:57.0450160Z CC [M] drivers/gpu/drm/nouveau/dispnv50/curs907a.o
2025-10-31T06:04:57.1386370Z CC [M] drivers/net/ethernet/dec/tulip/eeprom.o
2025-10-31T06:04:57.3963251Z LD [M] drivers/input/joystick/iforce/iforce.o
2025-10-31T06:04:57.4771021Z AR drivers/input/joystick/built-in.a
2025-10-31T06:04:57.5021729Z CC [M] drivers/input/joystick/a3d.o
2025-10-31T06:04:57.9502648Z CC [M] drivers/gpu/drm/nouveau/dispnv50/cursc37a.o
2025-10-31T06:04:58.1787476Z CC [M] drivers/net/ethernet/dec/tulip/interrupt.o
2025-10-31T06:04:58.4414148Z CC [M] drivers/input/joystick/adc-joystick.o
2025-10-31T06:04:58.5214306Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_dcb.o
2025-10-31T06:04:58.9293086Z CC [M] drivers/gpu/drm/nouveau/dispnv50/oimm.o
2025-10-31T06:04:59.1191062Z CC [M] drivers/input/joystick/adi.o
2025-10-31T06:04:59.3064392Z CC [M] drivers/net/ethernet/dec/tulip/media.o
2025-10-31T06:04:59.4646151Z CC [M] drivers/net/wireless/ath/ath10k/htt_tx.o
2025-10-31T06:04:59.8933283Z CC [M] drivers/gpu/drm/nouveau/dispnv50/oimm507b.o
2025-10-31T06:05:00.1674723Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_fcoe.o
2025-10-31T06:05:00.4714378Z CC [M] drivers/input/joystick/as5011.o
2025-10-31T06:05:00.5853606Z CC [M] drivers/net/ethernet/dec/tulip/timer.o
2025-10-31T06:05:00.7625721Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly.o
2025-10-31T06:05:01.2864605Z CC [M] drivers/input/joystick/analog.o
2025-10-31T06:05:01.4326227Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_debugfs.o
2025-10-31T06:05:01.6233632Z CC [M] drivers/net/ethernet/dec/tulip/tulip_core.o
2025-10-31T06:05:01.6407590Z CC [M] drivers/net/wireless/ath/ath10k/txrx.o
2025-10-31T06:05:01.7026052Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly507e.o
2025-10-31T06:05:02.6974665Z CC [M] drivers/input/joystick/cobra.o
2025-10-31T06:05:02.7624937Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly827e.o
2025-10-31T06:05:03.1985398Z CC [M] drivers/net/wireless/ath/ath10k/wmi.o
2025-10-31T06:05:03.5550221Z CC [M] drivers/input/joystick/db9.o
2025-10-31T06:05:03.6006139Z CC [M] drivers/net/ethernet/dec/tulip/21142.o
2025-10-31T06:05:03.7833664Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly907e.o
2025-10-31T06:05:04.5054769Z CC [M] drivers/input/joystick/fsia6b.o
2025-10-31T06:05:04.7963050Z CC [M] drivers/net/ethernet/dec/tulip/pnic.o
2025-10-31T06:05:04.8332956Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly917e.o
2025-10-31T06:05:05.1217957Z CC [M] drivers/input/joystick/gamecon.o
2025-10-31T06:05:05.8297503Z CC [M] drivers/gpu/drm/nouveau/nouveau_abi16.o
2025-10-31T06:05:06.1196318Z CC [M] drivers/net/ethernet/dec/tulip/pnic2.o
2025-10-31T06:05:06.1593027Z CC [M] drivers/input/joystick/gf2k.o
2025-10-31T06:05:06.2748272Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_thermal.o
2025-10-31T06:05:07.0511756Z CC [M] drivers/net/ethernet/dec/tulip/de4x5.o
2025-10-31T06:05:07.0545882Z CC [M] drivers/input/joystick/grip.o
2025-10-31T06:05:07.2151470Z CC [M] drivers/gpu/drm/nouveau/nouveau_chan.o
2025-10-31T06:05:07.6526762Z LD [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4.o
2025-10-31T06:05:07.9604445Z CC [M] drivers/input/joystick/grip_mp.o
2025-10-31T06:05:07.9694862Z CC [M] drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.o
2025-10-31T06:05:08.4538006Z CC [M] drivers/gpu/drm/nouveau/nouveau_dma.o
2025-10-31T06:05:08.7941199Z CC [M] drivers/input/joystick/guillemot.o
2025-10-31T06:05:09.5162688Z CC [M] drivers/input/joystick/interact.o
2025-10-31T06:05:09.7276318Z CC [M] drivers/gpu/drm/nouveau/nouveau_fence.o
2025-10-31T06:05:09.7680368Z CC [M] drivers/net/wireless/ath/ath10k/wmi-tlv.o
2025-10-31T06:05:10.1791173Z CC [M] drivers/input/joystick/joydump.o
2025-10-31T06:05:10.4299549Z CC [M] drivers/net/ethernet/dec/tulip/uli526x.o
2025-10-31T06:05:10.5196207Z CC [M] drivers/net/ethernet/chelsio/cxgb4vf/t4vf_hw.o
2025-10-31T06:05:10.8292478Z CC [M] drivers/input/joystick/magellan.o
2025-10-31T06:05:11.2370222Z CC [M] drivers/gpu/drm/nouveau/nv04_fence.o
2025-10-31T06:05:11.6422138Z CC [M] drivers/input/joystick/psxpad-spi.o
2025-10-31T06:05:12.0201868Z LD [M] drivers/net/ethernet/dec/tulip/tulip.o
2025-10-31T06:05:12.1769277Z AR drivers/net/ethernet/dec/built-in.a
2025-10-31T06:05:12.2071320Z CC [M] drivers/net/ethernet/chelsio/cxgb4vf/sge.o
2025-10-31T06:05:12.2441742Z AR drivers/input/tablet/built-in.a
2025-10-31T06:05:12.2662412Z CC [M] drivers/input/tablet/acecad.o
2025-10-31T06:05:12.3236587Z CC [M] drivers/gpu/drm/nouveau/nv10_fence.o
2025-10-31T06:05:12.4626458Z CC [M] drivers/input/joystick/pxrc.o
2025-10-31T06:05:12.9226503Z CC [M] drivers/input/tablet/aiptek.o
2025-10-31T06:05:13.2083213Z CC [M] drivers/input/joystick/sidewinder.o
2025-10-31T06:05:13.3507707Z CC [M] drivers/gpu/drm/nouveau/nv17_fence.o
2025-10-31T06:05:13.5487381Z CC [M] drivers/net/wireless/ath/ath10k/bmi.o
2025-10-31T06:05:14.1093469Z CC [M] drivers/input/tablet/gtco.o
2025-10-31T06:05:14.4534737Z CC [M] drivers/gpu/drm/nouveau/nv50_fence.o
2025-10-31T06:05:14.5977268Z LD [M] drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf.o
2025-10-31T06:05:14.6184508Z CC [M] drivers/input/joystick/spaceball.o
2025-10-31T06:05:14.6856092Z CC [M] drivers/net/ethernet/chelsio/libcxgb/libcxgb_ppm.o
2025-10-31T06:05:15.1134533Z CC [M] drivers/input/tablet/hanwang.o
2025-10-31T06:05:15.2288939Z CC [M] drivers/net/wireless/ath/ath10k/hw.o
2025-10-31T06:05:15.3965807Z CC [M] drivers/gpu/drm/nouveau/nv84_fence.o
2025-10-31T06:05:15.4087213Z CC [M] drivers/input/joystick/spaceorb.o
2025-10-31T06:05:15.7925477Z CC [M] drivers/net/ethernet/chelsio/libcxgb/libcxgb_cm.o
2025-10-31T06:05:15.9833826Z CC [M] drivers/input/tablet/kbtab.o
2025-10-31T06:05:16.0497399Z CC [M] drivers/input/joystick/stinger.o
2025-10-31T06:05:16.6330220Z CC [M] drivers/input/joystick/tmdc.o
2025-10-31T06:05:16.6620244Z CC [M] drivers/net/wireless/ath/ath10k/p2p.o
2025-10-31T06:05:16.6652918Z CC [M] drivers/gpu/drm/nouveau/nvc0_fence.o
2025-10-31T06:05:16.7169696Z CC [M] drivers/input/tablet/pegasus_notetaker.o
2025-10-31T06:05:17.2167742Z LD [M] drivers/net/ethernet/chelsio/libcxgb/libcxgb.o
2025-10-31T06:05:17.2842836Z AR drivers/net/ethernet/chelsio/built-in.a
2025-10-31T06:05:17.3671195Z AR drivers/net/ethernet/dlink/built-in.a
2025-10-31T06:05:17.3923361Z CC [M] drivers/net/ethernet/dlink/dl2k.o
2025-10-31T06:05:17.4803832Z CC [M] drivers/input/tablet/wacom_serial4.o
2025-10-31T06:05:17.5564965Z CC [M] drivers/input/joystick/turbografx.o
2025-10-31T06:05:17.6231014Z LD [M] drivers/gpu/drm/nouveau/nouveau.o
2025-10-31T06:05:17.8498970Z CC [M] drivers/net/wireless/ath/ath10k/swap.o
2025-10-31T06:05:18.2981833Z AR drivers/net/wireless/atmel/built-in.a
2025-10-31T06:05:18.3061714Z CC [M] drivers/input/joystick/twidjoy.o
2025-10-31T06:05:18.3077717Z CC [M] drivers/net/wireless/atmel/atmel.o
2025-10-31T06:05:19.0400129Z CC [M] drivers/input/joystick/warrior.o
2025-10-31T06:05:19.1223138Z CC [M] drivers/net/wireless/ath/ath10k/spectral.o
2025-10-31T06:05:19.4817693Z CC [M] drivers/net/ethernet/dlink/sundance.o
2025-10-31T06:05:19.5213681Z CC drivers/gpu/drm/drm_panel_orientation_quirks.o
2025-10-31T06:05:19.7017265Z CC [M] drivers/input/joystick/walkera0701.o
2025-10-31T06:05:20.1846480Z CC [M] drivers/gpu/drm/drm_gem_vram_helper.o
2025-10-31T06:05:20.3349077Z CC [M] drivers/input/joystick/xpad.o
2025-10-31T06:05:20.7152436Z CC [M] drivers/net/wireless/ath/ath10k/trace.o
2025-10-31T06:05:21.3467768Z CC [M] drivers/gpu/drm/drm_gem_ttm_helper.o
2025-10-31T06:05:21.3557541Z CC [M] drivers/net/ethernet/emulex/benet/be_main.o
2025-10-31T06:05:21.3693386Z CC [M] drivers/net/wireless/atmel/atmel_pci.o
2025-10-31T06:05:21.4279371Z CC [M] drivers/input/joystick/zhenhua.o
2025-10-31T06:05:22.1350370Z CC [M] drivers/gpu/drm/drm_bridge_connector.o
2025-10-31T06:05:22.2971435Z CC [M] drivers/net/wireless/atmel/atmel_cs.o
2025-10-31T06:05:22.3038334Z CC drivers/input/touchscreen/of_touchscreen.o
2025-10-31T06:05:22.9175988Z CC [M] drivers/input/touchscreen/88pm860x-ts.o
2025-10-31T06:05:23.0244436Z CC [M] drivers/gpu/drm/drm_crtc_helper.o
2025-10-31T06:05:23.4432699Z CC [M] drivers/net/wireless/atmel/at76c50x-usb.o
2025-10-31T06:05:23.5528907Z CC [M] drivers/net/wireless/ath/ath10k/thermal.o
2025-10-31T06:05:23.6380011Z CC [M] drivers/input/touchscreen/ad7877.o
2025-10-31T06:05:24.2688116Z CC [M] drivers/gpu/drm/drm_dp_helper.o
2025-10-31T06:05:24.7854346Z CC [M] drivers/input/touchscreen/ad7879.o
2025-10-31T06:05:25.0010471Z CC [M] drivers/net/wireless/ath/ath10k/debugfs_sta.o
2025-10-31T06:05:25.6437222Z CC [M] drivers/gpu/drm/drm_dsc.o
2025-10-31T06:05:25.6622187Z CC [M] drivers/input/touchscreen/ad7879-i2c.o
2025-10-31T06:05:25.8787608Z CC [M] drivers/net/ethernet/emulex/benet/be_cmds.o
2025-10-31T06:05:26.1445340Z CC [M] drivers/input/touchscreen/ad7879-spi.o
2025-10-31T06:05:26.4313964Z CC [M] drivers/input/touchscreen/resistive-adc-touch.o
2025-10-31T06:05:26.5611037Z CC [M] drivers/gpu/drm/drm_probe_helper.o
2025-10-31T06:05:26.8444896Z CC drivers/rtc/lib.o
2025-10-31T06:05:26.9690955Z CC [M] drivers/net/wireless/ath/ath10k/wow.o
2025-10-31T06:05:27.0768420Z CC [M] drivers/input/touchscreen/ads7846.o
2025-10-31T06:05:27.5098057Z CC drivers/rtc/systohc.o
2025-10-31T06:05:27.6894030Z CC [M] drivers/gpu/drm/drm_plane_helper.o
2025-10-31T06:05:28.0881729Z CC drivers/rtc/class.o
2025-10-31T06:05:28.4234087Z CC [M] drivers/input/touchscreen/atmel_mxt_ts.o
2025-10-31T06:05:28.7036756Z CC [M] drivers/gpu/drm/drm_dp_mst_topology.o
2025-10-31T06:05:28.8342708Z CC [M] drivers/net/wireless/ath/ath10k/coredump.o
2025-10-31T06:05:28.9287011Z CC drivers/rtc/interface.o
2025-10-31T06:05:29.2380380Z CC [M] drivers/net/ethernet/emulex/benet/be_ethtool.o
2025-10-31T06:05:30.3375959Z CC [M] drivers/net/wireless/ath/ath10k/ce.o
2025-10-31T06:05:30.4546080Z CC [M] drivers/input/touchscreen/auo-pixcir-ts.o
2025-10-31T06:05:30.5420851Z CC drivers/rtc/nvmem.o
2025-10-31T06:05:31.0606828Z CC [M] drivers/net/ethernet/emulex/benet/be_roce.o
2025-10-31T06:05:31.3853154Z CC drivers/rtc/dev.o
2025-10-31T06:05:31.5530025Z CC [M] drivers/input/touchscreen/bu21013_ts.o
2025-10-31T06:05:32.1057356Z CC drivers/rtc/proc.o
2025-10-31T06:05:32.2543529Z CC [M] drivers/gpu/drm/drm_atomic_helper.o
2025-10-31T06:05:32.2779808Z LD [M] drivers/net/ethernet/emulex/benet/be2net.o
2025-10-31T06:05:32.3313283Z AR drivers/net/ethernet/emulex/built-in.a
2025-10-31T06:05:32.3675945Z AR drivers/net/ethernet/ezchip/built-in.a
2025-10-31T06:05:32.4025123Z AR drivers/net/ethernet/fujitsu/built-in.a
2025-10-31T06:05:32.4135304Z CC [M] drivers/net/ethernet/fujitsu/fmvj18x_cs.o
2025-10-31T06:05:32.6612145Z CC drivers/rtc/sysfs.o
2025-10-31T06:05:32.6802687Z CC [M] drivers/input/touchscreen/bu21029_ts.o
2025-10-31T06:05:32.7066030Z CC [M] drivers/net/wireless/ath/ath10k/pci.o
2025-10-31T06:05:33.4098669Z CC drivers/rtc/rtc-mc146818-lib.o
2025-10-31T06:05:33.6747662Z CC [M] drivers/input/touchscreen/chipone_icn8505.o
2025-10-31T06:05:33.7186530Z CC [M] drivers/net/ethernet/google/gve/gve_main.o
2025-10-31T06:05:34.2071098Z CC drivers/rtc/rtc-cmos.o
2025-10-31T06:05:34.4816760Z CC [M] drivers/input/touchscreen/cy8ctma140.o
2025-10-31T06:05:34.7816787Z CC [M] drivers/gpu/drm/drm_kms_helper_common.o
2025-10-31T06:05:35.3647555Z CC [M] drivers/input/touchscreen/cy8ctmg110_ts.o
2025-10-31T06:05:35.4424921Z CC [M] drivers/rtc/rtc-88pm80x.o
2025-10-31T06:05:35.5270868Z CC [M] drivers/net/wireless/ath/ath10k/sdio.o
2025-10-31T06:05:35.5422868Z CC [M] drivers/gpu/drm/drm_dp_dual_mode_helper.o
2025-10-31T06:05:35.5782836Z CC [M] drivers/net/ethernet/google/gve/gve_tx.o
2025-10-31T06:05:36.1575266Z CC [M] drivers/rtc/rtc-88pm860x.o
2025-10-31T06:05:36.2447801Z CC [M] drivers/input/touchscreen/cyttsp_core.o
2025-10-31T06:05:36.3832676Z CC [M] drivers/gpu/drm/drm_simple_kms_helper.o
2025-10-31T06:05:37.0004024Z CC [M] drivers/net/ethernet/google/gve/gve_rx.o
2025-10-31T06:05:37.0130781Z CC [M] drivers/rtc/rtc-ab3100.o
2025-10-31T06:05:37.1147474Z CC [M] drivers/input/touchscreen/cyttsp_i2c.o
2025-10-31T06:05:37.2014233Z CC [M] drivers/gpu/drm/drm_modeset_helper.o
2025-10-31T06:05:37.7512434Z CC [M] drivers/rtc/rtc-ab-b5ze-s3.o
2025-10-31T06:05:37.7550751Z CC [M] drivers/input/touchscreen/cyttsp_i2c_common.o
2025-10-31T06:05:37.9910112Z CC [M] drivers/net/wireless/ath/ath10k/usb.o
2025-10-31T06:05:38.1211909Z CC [M] drivers/gpu/drm/drm_scdc_helper.o
2025-10-31T06:05:38.3416168Z CC [M] drivers/net/ethernet/google/gve/gve_ethtool.o
2025-10-31T06:05:38.4684583Z CC [M] drivers/input/touchscreen/cyttsp_spi.o
2025-10-31T06:05:38.5814842Z CC [M] drivers/rtc/rtc-ab-eoz9.o
2025-10-31T06:05:38.8011573Z CC [M] drivers/gpu/drm/drm_gem_framebuffer_helper.o
2025-10-31T06:05:39.1474509Z CC [M] drivers/input/touchscreen/cyttsp4_core.o
2025-10-31T06:05:39.3708075Z CC [M] drivers/rtc/rtc-abx80x.o
2025-10-31T06:05:39.7292147Z CC [M] drivers/net/ethernet/google/gve/gve_adminq.o
2025-10-31T06:05:39.8168241Z CC [M] drivers/gpu/drm/drm_atomic_state_helper.o
2025-10-31T06:05:39.8555905Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_core.o
2025-10-31T06:05:39.9856197Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_pci.o
2025-10-31T06:05:40.0048230Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_sdio.o
2025-10-31T06:05:40.0231152Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_usb.o
2025-10-31T06:05:40.0856776Z CC [M] drivers/net/wireless/ath/wcn36xx/main.o
2025-10-31T06:05:40.4056162Z CC [M] drivers/rtc/rtc-bq32k.o
2025-10-31T06:05:40.7191333Z CC [M] drivers/input/touchscreen/cyttsp4_i2c.o
2025-10-31T06:05:40.8826450Z CC [M] drivers/gpu/drm/drm_damage_helper.o
2025-10-31T06:05:41.1710216Z CC [M] drivers/rtc/rtc-bq4802.o
2025-10-31T06:05:41.2483091Z LD [M] drivers/net/ethernet/google/gve/gve.o
2025-10-31T06:05:41.3378448Z AR drivers/net/ethernet/google/built-in.a
2025-10-31T06:05:41.3933129Z CC [M] drivers/input/touchscreen/cyttsp4_spi.o
2025-10-31T06:05:41.4184167Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_main.o
2025-10-31T06:05:41.8138855Z CC [M] drivers/rtc/rtc-cros-ec.o
2025-10-31T06:05:41.8461871Z CC [M] drivers/net/wireless/ath/wcn36xx/dxe.o
2025-10-31T06:05:41.9570794Z CC [M] drivers/gpu/drm/drm_format_helper.o
2025-10-31T06:05:42.1153009Z CC [M] drivers/input/touchscreen/da9034-ts.o
2025-10-31T06:05:42.5056985Z CC [M] drivers/rtc/rtc-da9052.o
2025-10-31T06:05:42.7338943Z CC [M] drivers/gpu/drm/drm_self_refresh_helper.o
2025-10-31T06:05:42.9254976Z CC [M] drivers/input/touchscreen/da9052_tsi.o
2025-10-31T06:05:43.1051708Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_tx.o
2025-10-31T06:05:43.3914792Z CC [M] drivers/rtc/rtc-da9055.o
2025-10-31T06:05:43.4643032Z CC [M] drivers/gpu/drm/bridge/panel.o
2025-10-31T06:05:43.7852251Z CC [M] drivers/net/wireless/ath/wcn36xx/txrx.o
2025-10-31T06:05:43.9097361Z CC [M] drivers/input/touchscreen/dynapro.o
2025-10-31T06:05:44.1335354Z CC [M] drivers/rtc/rtc-da9063.o
2025-10-31T06:05:44.3405841Z CC [M] drivers/gpu/drm/drm_fb_helper.o
2025-10-31T06:05:44.4912669Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_rx.o
2025-10-31T06:05:44.5440134Z CC [M] drivers/input/touchscreen/edt-ft5x06.o
2025-10-31T06:05:44.9596791Z CC [M] drivers/rtc/rtc-ds1286.o
2025-10-31T06:05:45.1470851Z CC [M] drivers/net/wireless/ath/wcn36xx/smd.o
2025-10-31T06:05:45.7209325Z CC [M] drivers/rtc/rtc-ds1302.o
2025-10-31T06:05:45.8873170Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_port.o
2025-10-31T06:05:45.8969300Z CC [M] drivers/input/touchscreen/hampshire.o
2025-10-31T06:05:46.0524031Z CC [M] drivers/gpu/drm/drm_fb_cma_helper.o
2025-10-31T06:05:46.4090561Z CC [M] drivers/input/touchscreen/gunze.o
2025-10-31T06:05:46.4659577Z CC [M] drivers/rtc/rtc-ds1305.o
2025-10-31T06:05:46.6188386Z CC [M] drivers/gpu/drm/drm_dp_aux_dev.o
2025-10-31T06:05:47.0074510Z CC [M] drivers/input/touchscreen/eeti_ts.o
2025-10-31T06:05:47.4162375Z CC [M] drivers/rtc/rtc-ds1307.o
2025-10-31T06:05:47.6450644Z CC [M] drivers/gpu/drm/drm_dp_cec.o
2025-10-31T06:05:47.7094235Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_dev.o
2025-10-31T06:05:47.7341797Z CC [M] drivers/input/touchscreen/ektf2127.o
2025-10-31T06:05:48.1177948Z CC [M] drivers/net/wireless/ath/wcn36xx/pmc.o
2025-10-31T06:05:48.5066448Z CC [M] drivers/input/touchscreen/elants_i2c.o
2025-10-31T06:05:48.5825471Z CC [M] drivers/gpu/drm/drm_auth.o
2025-10-31T06:05:48.7896489Z CC [M] drivers/rtc/rtc-ds1343.o
2025-10-31T06:05:49.0205727Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_io.o
2025-10-31T06:05:49.3232349Z CC [M] drivers/net/wireless/ath/wcn36xx/debug.o
2025-10-31T06:05:49.4180856Z CC [M] drivers/gpu/drm/drm_cache.o
2025-10-31T06:05:49.6781932Z CC [M] drivers/rtc/rtc-ds1347.o
2025-10-31T06:05:49.9664607Z CC [M] drivers/input/touchscreen/elo.o
2025-10-31T06:05:50.0955631Z CC [M] drivers/gpu/drm/drm_file.o
2025-10-31T06:05:50.1908010Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_qp.o
2025-10-31T06:05:50.4441647Z CC [M] drivers/rtc/rtc-ds1374.o
2025-10-31T06:05:50.6462823Z LD [M] drivers/net/wireless/ath/wcn36xx/wcn36xx.o
2025-10-31T06:05:50.6820145Z CC [M] drivers/input/touchscreen/egalax_ts_serial.o
2025-10-31T06:05:50.7517428Z CC [M] drivers/net/wireless/ath/ath11k/core.o
2025-10-31T06:05:51.0503343Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_cmdq.o
2025-10-31T06:05:51.1589758Z CC [M] drivers/rtc/rtc-ds1390.o
2025-10-31T06:05:51.4285080Z CC [M] drivers/input/touchscreen/exc3000.o
2025-10-31T06:05:51.4540818Z CC [M] drivers/gpu/drm/drm_gem.o
2025-10-31T06:05:51.8315384Z CC [M] drivers/rtc/rtc-ds1511.o
2025-10-31T06:05:52.2326409Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_wq.o
2025-10-31T06:05:52.3185553Z CC [M] drivers/input/touchscreen/fujitsu_ts.o
2025-10-31T06:05:52.4021638Z CC [M] drivers/net/wireless/ath/ath11k/hal.o
2025-10-31T06:05:52.5376840Z CC [M] drivers/rtc/rtc-ds1553.o
2025-10-31T06:05:52.9344506Z CC [M] drivers/gpu/drm/drm_ioctl.o
2025-10-31T06:05:53.0472541Z CC [M] drivers/input/touchscreen/goodix.o
2025-10-31T06:05:53.1795418Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_mgmt.o
2025-10-31T06:05:53.3791869Z CC [M] drivers/rtc/rtc-ds1672.o
2025-10-31T06:05:54.0680152Z CC [M] drivers/rtc/rtc-ds1685.o
2025-10-31T06:05:54.1552171Z CC [M] drivers/gpu/drm/drm_irq.o
2025-10-31T06:05:54.2081197Z CC [M] drivers/net/wireless/ath/ath11k/hal_tx.o
2025-10-31T06:05:54.2151089Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_api_cmd.o
2025-10-31T06:05:54.7288607Z CC [M] drivers/input/touchscreen/hideep.o
2025-10-31T06:05:54.9892378Z CC [M] drivers/rtc/rtc-ds1742.o
2025-10-31T06:05:55.0224593Z CC [M] drivers/gpu/drm/drm_memory.o
2025-10-31T06:05:55.1145529Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_eqs.o
2025-10-31T06:05:55.6212873Z CC [M] drivers/net/wireless/ath/ath11k/hal_rx.o
2025-10-31T06:05:55.6830761Z CC [M] drivers/rtc/rtc-ds2404.o
2025-10-31T06:05:55.7113327Z CC [M] drivers/gpu/drm/drm_drv.o
2025-10-31T06:05:55.8477803Z CC [M] drivers/input/touchscreen/ili210x.o
2025-10-31T06:05:56.3674810Z CC [M] drivers/rtc/rtc-ds3232.o
2025-10-31T06:05:56.5379923Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_if.o
2025-10-31T06:05:56.7331768Z CC [M] drivers/input/touchscreen/inexio.o
2025-10-31T06:05:56.9475706Z CC [M] drivers/gpu/drm/drm_sysfs.o
2025-10-31T06:05:57.3744235Z CC [M] drivers/rtc/rtc-em3027.o
2025-10-31T06:05:57.3835816Z CC [M] drivers/input/touchscreen/max11801_ts.o
2025-10-31T06:05:57.5015914Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_common.o
2025-10-31T06:05:57.7341428Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_ethtool.o
2025-10-31T06:05:57.7895084Z CC [M] drivers/gpu/drm/drm_hashtab.o
2025-10-31T06:05:57.8174515Z CC [M] drivers/net/wireless/ath/ath11k/wmi.o
2025-10-31T06:05:58.0261774Z CC [M] drivers/input/touchscreen/mc13783_ts.o
2025-10-31T06:05:58.0610120Z CC [M] drivers/rtc/rtc-fm3130.o
2025-10-31T06:05:58.5309952Z CC [M] drivers/gpu/drm/drm_mm.o
2025-10-31T06:05:58.6827317Z CC [M] drivers/input/touchscreen/mcs5000_ts.o
2025-10-31T06:05:59.0440858Z CC [M] drivers/rtc/rtc-ftrtc010.o
2025-10-31T06:05:59.2591937Z CC [M] drivers/input/touchscreen/melfas_mip4.o
2025-10-31T06:05:59.3931818Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_devlink.o
2025-10-31T06:05:59.7652894Z CC [M] drivers/gpu/drm/drm_crtc.o
2025-10-31T06:05:59.7707959Z CC [M] drivers/rtc/rtc-hid-sensor-time.o
2025-10-31T06:06:00.4933874Z CC [M] drivers/input/touchscreen/mms114.o
2025-10-31T06:06:00.5028840Z CC [M] drivers/rtc/rtc-isl12022.o
2025-10-31T06:06:00.7275340Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_mbox.o
2025-10-31T06:06:00.8431530Z CC [M] drivers/gpu/drm/drm_fourcc.o
2025-10-31T06:06:01.3343390Z CC [M] drivers/rtc/rtc-isl1208.o
2025-10-31T06:06:01.4926893Z CC [M] drivers/gpu/drm/drm_modes.o
2025-10-31T06:06:01.5087147Z CC [M] drivers/input/touchscreen/mtouch.o
2025-10-31T06:06:02.2413719Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_sriov.o
2025-10-31T06:06:02.2415322Z CC [M] drivers/rtc/rtc-lp8788.o
2025-10-31T06:06:02.2966783Z CC [M] drivers/net/wireless/ath/ath11k/mac.o
2025-10-31T06:06:02.3205679Z CC [M] drivers/input/touchscreen/mk712.o
2025-10-31T06:06:02.9453404Z CC [M] drivers/input/touchscreen/usbtouchscreen.o
2025-10-31T06:06:02.9921716Z CC [M] drivers/rtc/rtc-m41t80.o
2025-10-31T06:06:03.0806205Z CC [M] drivers/gpu/drm/drm_edid.o
2025-10-31T06:06:03.7725317Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_debugfs.o
2025-10-31T06:06:04.1767714Z CC [M] drivers/rtc/rtc-m41t93.o
2025-10-31T06:06:04.1833545Z CC [M] drivers/input/touchscreen/pcap_ts.o
2025-10-31T06:06:04.8349132Z LD [M] drivers/net/ethernet/huawei/hinic/hinic.o
2025-10-31T06:06:04.9150008Z AR drivers/net/ethernet/huawei/built-in.a
2025-10-31T06:06:04.9665990Z CC [M] drivers/net/ethernet/intel/e1000/e1000_main.o
2025-10-31T06:06:05.0253449Z CC [M] drivers/input/touchscreen/penmount.o
2025-10-31T06:06:05.0526936Z CC [M] drivers/rtc/rtc-m41t94.o
2025-10-31T06:06:05.7689172Z CC [M] drivers/input/touchscreen/pixcir_i2c_ts.o
2025-10-31T06:06:05.8113474Z CC [M] drivers/rtc/rtc-m48t35.o
2025-10-31T06:06:06.1017088Z CC [M] drivers/net/wireless/ath/ath11k/reg.o
2025-10-31T06:06:06.2308262Z CC [M] drivers/gpu/drm/drm_encoder_slave.o
2025-10-31T06:06:06.5686562Z CC [M] drivers/rtc/rtc-m48t59.o
2025-10-31T06:06:06.7277199Z CC [M] drivers/input/touchscreen/raydium_i2c_ts.o
2025-10-31T06:06:06.9991002Z CC [M] drivers/gpu/drm/drm_trace_points.o
2025-10-31T06:06:07.4880222Z CC [M] drivers/rtc/rtc-m48t86.o
2025-10-31T06:06:07.6863467Z CC [M] drivers/net/wireless/ath/ath11k/htc.o
2025-10-31T06:06:08.0593363Z CC [M] drivers/input/touchscreen/s6sy761.o
2025-10-31T06:06:08.0711828Z CC [M] drivers/gpu/drm/drm_prime.o
2025-10-31T06:06:08.0940779Z CC [M] drivers/rtc/rtc-max6900.o
2025-10-31T06:06:08.6805073Z CC [M] drivers/rtc/rtc-max6902.o
2025-10-31T06:06:09.0252556Z CC [M] drivers/gpu/drm/drm_rect.o
2025-10-31T06:06:09.0787018Z CC [M] drivers/net/ethernet/intel/e1000/e1000_hw.o
2025-10-31T06:06:09.1009871Z CC [M] drivers/input/touchscreen/silead.o
2025-10-31T06:06:09.2854836Z CC [M] drivers/rtc/rtc-max6916.o
2025-10-31T06:06:09.2927923Z CC [M] drivers/net/wireless/ath/ath11k/qmi.o
2025-10-31T06:06:09.7370470Z CC [M] drivers/gpu/drm/drm_vma_manager.o
2025-10-31T06:06:09.9739430Z CC [M] drivers/rtc/rtc-max8907.o
2025-10-31T06:06:10.0445161Z CC [M] drivers/input/touchscreen/sis_i2c.o
2025-10-31T06:06:10.4563496Z CC [M] drivers/gpu/drm/drm_flip_work.o
2025-10-31T06:06:10.6698267Z CC [M] drivers/rtc/rtc-max8925.o
2025-10-31T06:06:10.7569827Z CC [M] drivers/input/touchscreen/st1232.o
2025-10-31T06:06:11.1967633Z CC [M] drivers/net/wireless/ath/ath11k/dp.o
2025-10-31T06:06:11.2625918Z CC [M] drivers/gpu/drm/drm_modeset_lock.o
2025-10-31T06:06:11.3650055Z CC [M] drivers/rtc/rtc-max8997.o
2025-10-31T06:06:11.5380260Z CC [M] drivers/input/touchscreen/stmfts.o
2025-10-31T06:06:11.9166313Z CC [M] drivers/net/ethernet/intel/e1000/e1000_ethtool.o
2025-10-31T06:06:12.1334306Z CC [M] drivers/rtc/rtc-max8998.o
2025-10-31T06:06:12.2966540Z CC [M] drivers/gpu/drm/drm_atomic.o
2025-10-31T06:06:12.6254782Z CC [M] drivers/input/touchscreen/sur40.o
2025-10-31T06:06:13.0726650Z CC [M] drivers/rtc/rtc-mc13xxx.o
2025-10-31T06:06:13.4573866Z CC [M] drivers/net/wireless/ath/ath11k/dp_tx.o
2025-10-31T06:06:13.7407082Z CC [M] drivers/rtc/rtc-mcp795.o
2025-10-31T06:06:13.7500156Z CC [M] drivers/input/touchscreen/surface3_spi.o
2025-10-31T06:06:13.8174572Z CC [M] drivers/net/ethernet/intel/e1000/e1000_param.o
2025-10-31T06:06:13.9381213Z CC [M] drivers/gpu/drm/drm_bridge.o
2025-10-31T06:06:14.5966870Z CC [M] drivers/rtc/rtc-msm6242.o
2025-10-31T06:06:14.7451879Z CC [M] drivers/input/touchscreen/touchit213.o
2025-10-31T06:06:14.8925797Z CC [M] drivers/gpu/drm/drm_framebuffer.o
2025-10-31T06:06:15.1338682Z CC [M] drivers/rtc/rtc-mt6397.o
2025-10-31T06:06:15.2750923Z LD [M] drivers/net/ethernet/intel/e1000/e1000.o
2025-10-31T06:06:15.3393082Z CC [M] drivers/net/ethernet/intel/e1000e/82571.o
2025-10-31T06:06:15.5321460Z CC [M] drivers/net/wireless/ath/ath11k/dp_rx.o
2025-10-31T06:06:15.5389107Z CC [M] drivers/input/touchscreen/touchright.o
2025-10-31T06:06:15.9097253Z CC [M] drivers/rtc/rtc-palmas.o
2025-10-31T06:06:16.1514384Z CC [M] drivers/gpu/drm/drm_connector.o
2025-10-31T06:06:16.1856140Z CC [M] drivers/input/touchscreen/touchwin.o
2025-10-31T06:06:16.8353272Z CC [M] drivers/rtc/rtc-pcap.o
2025-10-31T06:06:16.8386879Z CC [M] drivers/input/touchscreen/tsc40.o
2025-10-31T06:06:16.8395287Z CC [M] drivers/net/ethernet/intel/e1000e/ich8lan.o
2025-10-31T06:06:17.4414879Z CC [M] drivers/rtc/rtc-pcf2123.o
2025-10-31T06:06:17.4430400Z CC [M] drivers/input/touchscreen/tsc200x-core.o
2025-10-31T06:06:17.7513843Z CC [M] drivers/gpu/drm/drm_blend.o
2025-10-31T06:06:18.2472691Z CC [M] drivers/rtc/rtc-pcf2127.o
2025-10-31T06:06:18.4192328Z CC [M] drivers/input/touchscreen/tsc2004.o
2025-10-31T06:06:18.6510237Z CC [M] drivers/gpu/drm/drm_encoder.o
2025-10-31T06:06:19.1853765Z CC [M] drivers/input/touchscreen/tsc2005.o
2025-10-31T06:06:19.3958698Z CC [M] drivers/rtc/rtc-pcf50633.o
2025-10-31T06:06:19.5297362Z CC [M] drivers/gpu/drm/drm_mode_object.o
2025-10-31T06:06:19.7148041Z CC [M] drivers/net/wireless/ath/ath11k/debug.o
2025-10-31T06:06:19.8006287Z CC [M] drivers/input/touchscreen/tsc2007_core.o
2025-10-31T06:06:20.0530800Z CC [M] drivers/net/ethernet/intel/e1000e/80003es2lan.o
2025-10-31T06:06:20.5259466Z CC [M] drivers/rtc/rtc-pcf85063.o
2025-10-31T06:06:20.5558421Z CC [M] drivers/gpu/drm/drm_property.o
2025-10-31T06:06:20.5684478Z CC [M] drivers/input/touchscreen/tsc2007_iio.o
2025-10-31T06:06:21.0086109Z CC [M] drivers/net/wireless/ath/ath11k/ce.o
2025-10-31T06:06:21.1916107Z CC [M] drivers/input/touchscreen/ucb1400_ts.o
2025-10-31T06:06:21.2704102Z CC [M] drivers/rtc/rtc-pcf8523.o
2025-10-31T06:06:21.3865008Z CC [M] drivers/net/ethernet/intel/e1000e/mac.o
2025-10-31T06:06:21.7646486Z CC [M] drivers/gpu/drm/drm_plane.o
2025-10-31T06:06:21.9561365Z CC [M] drivers/rtc/rtc-pcf85363.o
2025-10-31T06:06:22.1976988Z CC [M] drivers/input/touchscreen/wacom_w8001.o
2025-10-31T06:06:22.5857109Z CC [M] drivers/rtc/rtc-pcf8563.o
2025-10-31T06:06:22.6667501Z CC [M] drivers/net/wireless/ath/ath11k/peer.o
2025-10-31T06:06:23.0993004Z CC [M] drivers/gpu/drm/drm_color_mgmt.o
2025-10-31T06:06:23.1726249Z CC [M] drivers/input/touchscreen/wacom_i2c.o
2025-10-31T06:06:23.2888508Z CC [M] drivers/net/ethernet/intel/e1000e/manage.o
2025-10-31T06:06:23.4358247Z CC [M] drivers/rtc/rtc-pcf8583.o
2025-10-31T06:06:23.9884454Z CC [M] drivers/input/touchscreen/wdt87xx_i2c.o
2025-10-31T06:06:24.0210626Z CC [M] drivers/gpu/drm/drm_print.o
2025-10-31T06:06:24.1058583Z CC [M] drivers/net/wireless/ath/ath11k/dbring.o
2025-10-31T06:06:24.1893020Z CC [M] drivers/rtc/rtc-r9701.o
2025-10-31T06:06:24.3138669Z CC [M] drivers/net/ethernet/intel/e1000e/nvm.o
2025-10-31T06:06:24.8633614Z CC [M] drivers/gpu/drm/drm_dumb_buffers.o
2025-10-31T06:06:24.9676453Z CC [M] drivers/rtc/rtc-rc5t583.o
2025-10-31T06:06:24.9757195Z CC [M] drivers/input/touchscreen/wm831x-ts.o
2025-10-31T06:06:25.4332598Z CC [M] drivers/net/ethernet/intel/e1000e/phy.o
2025-10-31T06:06:25.4976588Z CC [M] drivers/gpu/drm/drm_mode_config.o
2025-10-31T06:06:25.6031057Z CC [M] drivers/net/wireless/ath/ath11k/hw.o
2025-10-31T06:06:25.6467565Z CC [M] drivers/input/touchscreen/wm97xx-core.o
2025-10-31T06:06:25.8132546Z CC [M] drivers/rtc/rtc-rp5c01.o
2025-10-31T06:06:26.4280800Z CC [M] drivers/gpu/drm/drm_vblank.o
2025-10-31T06:06:26.6528324Z CC [M] drivers/rtc/rtc-rs5c348.o
2025-10-31T06:06:26.8805681Z CC [M] drivers/input/touchscreen/wm9705.o
2025-10-31T06:06:26.8893287Z CC [M] drivers/net/wireless/ath/ath11k/debugfs.o
2025-10-31T06:06:27.2657194Z CC [M] drivers/net/ethernet/intel/e1000e/param.o
2025-10-31T06:06:27.5012355Z CC [M] drivers/rtc/rtc-rs5c372.o
2025-10-31T06:06:27.7907819Z CC [M] drivers/input/touchscreen/wm9712.o
2025-10-31T06:06:27.9917002Z CC [M] drivers/gpu/drm/drm_syncobj.o
2025-10-31T06:06:28.3979347Z CC [M] drivers/net/wireless/ath/ath11k/debugfs_htt_stats.o
2025-10-31T06:06:28.4190908Z CC [M] drivers/net/ethernet/intel/e1000e/ethtool.o
2025-10-31T06:06:28.5771073Z CC [M] drivers/input/touchscreen/wm9713.o
2025-10-31T06:06:28.6169888Z CC [M] drivers/rtc/rtc-rv3028.o
2025-10-31T06:06:29.4256751Z CC [M] drivers/input/touchscreen/sx8654.o
2025-10-31T06:06:29.5703889Z CC [M] drivers/gpu/drm/drm_lease.o
2025-10-31T06:06:29.8456733Z CC [M] drivers/rtc/rtc-rv3029c2.o
2025-10-31T06:06:30.3598276Z CC [M] drivers/input/touchscreen/tps6507x-ts.o
2025-10-31T06:06:30.5195825Z CC [M] drivers/net/ethernet/intel/e1000e/netdev.o
2025-10-31T06:06:30.7875564Z CC [M] drivers/gpu/drm/drm_writeback.o
2025-10-31T06:06:30.8804837Z CC [M] drivers/rtc/rtc-rv3032.o
2025-10-31T06:06:30.9024983Z CC [M] drivers/input/touchscreen/zet6223.o
2025-10-31T06:06:31.7138430Z CC [M] drivers/input/touchscreen/zforce_ts.o
2025-10-31T06:06:31.8674269Z CC [M] drivers/gpu/drm/drm_client.o
2025-10-31T06:06:32.0572287Z CC [M] drivers/rtc/rtc-rv8803.o
2025-10-31T06:06:32.8285440Z CC [M] drivers/gpu/drm/drm_client_modeset.o
2025-10-31T06:06:32.8532426Z CC [M] drivers/input/touchscreen/rohm_bu21023.o
2025-10-31T06:06:32.8618779Z CC [M] drivers/net/wireless/ath/ath11k/debugfs_sta.o
2025-10-31T06:06:33.1662846Z CC [M] drivers/rtc/rtc-rx4581.o
2025-10-31T06:06:33.6756812Z CC [M] drivers/input/touchscreen/iqs5xx.o
2025-10-31T06:06:34.0283835Z CC [M] drivers/rtc/rtc-rx6110.o
2025-10-31T06:06:34.6345651Z CC [M] drivers/gpu/drm/drm_atomic_uapi.o
2025-10-31T06:06:34.7293715Z CC [M] drivers/input/touchscreen/zinitix.o
2025-10-31T06:06:34.7794238Z CC [M] drivers/rtc/rtc-rx8010.o
2025-10-31T06:06:34.7886659Z CC [M] drivers/net/wireless/ath/ath11k/thermal.o
2025-10-31T06:06:35.6423604Z CC [M] drivers/rtc/rtc-rx8025.o
2025-10-31T06:06:35.7452925Z LD [M] drivers/input/touchscreen/tsc2007.o
2025-10-31T06:06:35.7621742Z LD [M] drivers/input/touchscreen/wm97xx-ts.o
2025-10-31T06:06:35.7990541Z AR drivers/input/touchscreen/built-in.a
2025-10-31T06:06:35.8217621Z CC [M] drivers/net/ethernet/intel/e1000e/ptp.o
2025-10-31T06:06:35.9809238Z CC [M] drivers/gpu/drm/drm_hdcp.o
2025-10-31T06:06:36.1089715Z CC [M] drivers/net/wireless/ath/ath11k/spectral.o
2025-10-31T06:06:36.6187866Z AR drivers/input/misc/built-in.a
2025-10-31T06:06:36.6332585Z CC [M] drivers/rtc/rtc-rx8581.o
2025-10-31T06:06:36.6399610Z CC [M] drivers/input/misc/88pm860x_onkey.o
2025-10-31T06:06:36.6995434Z LD [M] drivers/net/ethernet/intel/e1000e/e1000e.o
2025-10-31T06:06:36.8590081Z CC [M] drivers/gpu/drm/drm_managed.o
2025-10-31T06:06:36.8725492Z CC [M] drivers/net/ethernet/intel/igb/igb_main.o
2025-10-31T06:06:37.3426091Z CC [M] drivers/rtc/rtc-s35390a.o
2025-10-31T06:06:37.3836898Z CC [M] drivers/input/misc/88pm80x_onkey.o
2025-10-31T06:06:37.6631757Z CC [M] drivers/net/wireless/ath/ath11k/ahb.o
2025-10-31T06:06:37.7687274Z CC [M] drivers/gpu/drm/drm_vblank_work.o
2025-10-31T06:06:38.1000336Z CC [M] drivers/input/misc/ad714x.o
2025-10-31T06:06:38.2068676Z CC [M] drivers/rtc/rtc-s5m.o
2025-10-31T06:06:38.6091111Z CC [M] drivers/gpu/drm/drm_ioc32.o
2025-10-31T06:06:38.8929170Z CC [M] drivers/net/wireless/ath/ath11k/mhi.o
2025-10-31T06:06:39.2641240Z CC [M] drivers/input/misc/ad714x-i2c.o
2025-10-31T06:06:39.2916171Z CC [M] drivers/rtc/rtc-sd3078.o
2025-10-31T06:06:39.3098517Z CC [M] drivers/gpu/drm/drm_gem_cma_helper.o
2025-10-31T06:06:39.9452259Z CC [M] drivers/input/misc/ad714x-spi.o
2025-10-31T06:06:39.9986162Z CC [M] drivers/rtc/rtc-stk17ta8.o
2025-10-31T06:06:40.1843774Z CC [M] drivers/net/wireless/ath/ath11k/pci.o
2025-10-31T06:06:40.2939813Z CC [M] drivers/gpu/drm/drm_gem_shmem_helper.o
2025-10-31T06:06:40.6705072Z CC [M] drivers/input/misc/adxl34x.o
2025-10-31T06:06:40.6944000Z CC [M] drivers/rtc/rtc-tps6586x.o
2025-10-31T06:06:41.2692487Z CC [M] drivers/rtc/rtc-tps65910.o
2025-10-31T06:06:41.2751270Z CC [M] drivers/gpu/drm/drm_panel.o
2025-10-31T06:06:41.7257788Z CC [M] drivers/input/misc/adxl34x-i2c.o
2025-10-31T06:06:41.9948899Z CC [M] drivers/gpu/drm/drm_pci.o
2025-10-31T06:06:42.0805822Z CC [M] drivers/rtc/rtc-tps80031.o
2025-10-31T06:06:42.1004892Z LD [M] drivers/net/wireless/ath/ath11k/ath11k.o
2025-10-31T06:06:42.2635269Z LD [M] drivers/net/wireless/ath/ath11k/ath11k_ahb.o
2025-10-31T06:06:42.2773021Z LD [M] drivers/net/wireless/ath/ath11k/ath11k_pci.o
2025-10-31T06:06:42.3113420Z CC [M] drivers/input/misc/adxl34x-spi.o
2025-10-31T06:06:42.3204164Z AR drivers/net/wireless/ath/built-in.a
2025-10-31T06:06:42.3308227Z CC [M] drivers/net/wireless/ath/main.o
2025-10-31T06:06:42.7331816Z CC [M] drivers/gpu/drm/drm_debugfs.o
2025-10-31T06:06:42.7966045Z CC [M] drivers/rtc/rtc-v3020.o
2025-10-31T06:06:42.9824263Z CC [M] drivers/input/misc/apanel.o
2025-10-31T06:06:43.4969514Z CC [M] drivers/net/wireless/ath/regd.o
2025-10-31T06:06:43.5117608Z CC [M] drivers/rtc/rtc-wilco-ec.o
2025-10-31T06:06:43.5563731Z CC [M] drivers/net/ethernet/intel/igb/igb_ethtool.o
2025-10-31T06:06:43.6306966Z CC [M] drivers/gpu/drm/drm_debugfs_crc.o
2025-10-31T06:06:43.6452183Z CC [M] drivers/input/misc/arizona-haptics.o
2025-10-31T06:06:44.0727594Z CC [M] drivers/rtc/rtc-wm831x.o
2025-10-31T06:06:44.5303553Z CC [M] drivers/input/misc/ati_remote2.o
2025-10-31T06:06:44.6606209Z CC [M] drivers/rtc/rtc-wm8350.o
2025-10-31T06:06:44.7809739Z CC [M] drivers/net/wireless/ath/hw.o
2025-10-31T06:06:44.8333960Z CC [M] drivers/gpu/drm/drm_edid_load.o
2025-10-31T06:06:45.5618457Z CC [M] drivers/input/misc/atlas_btns.o
2025-10-31T06:06:45.6240048Z CC [M] drivers/gpu/drm/drm_agpsupport.o
2025-10-31T06:06:45.6654048Z CC [M] drivers/rtc/rtc-x1205.o
2025-10-31T06:06:46.0025950Z CC [M] drivers/net/wireless/ath/key.o
2025-10-31T06:06:46.2749173Z CC [M] drivers/input/misc/bma150.o
2025-10-31T06:06:46.3454145Z CC [M] drivers/net/ethernet/intel/igb/e1000_82575.o
2025-10-31T06:06:46.5250573Z AR drivers/rtc/built-in.a
2025-10-31T06:06:46.5654399Z CC [M] drivers/gpu/drm/drm_mipi_dbi.o
2025-10-31T06:06:46.8980850Z CC [M] drivers/input/misc/cm109.o
2025-10-31T06:06:47.0038113Z CC [M] drivers/net/wireless/broadcom/b43/main.o
2025-10-31T06:06:47.4632218Z CC [M] drivers/net/wireless/ath/dfs_pattern_detector.o
2025-10-31T06:06:47.8751209Z CC [M] drivers/input/misc/cma3000_d0x.o
2025-10-31T06:06:48.4151577Z CC [M] drivers/input/misc/cma3000_d0x_i2c.o
2025-10-31T06:06:48.4604703Z CC [M] drivers/net/wireless/ath/dfs_pri_detector.o
2025-10-31T06:06:48.4887508Z LD [M] drivers/gpu/drm/drm_vram_helper.o
2025-10-31T06:06:48.5158406Z LD [M] drivers/gpu/drm/drm_ttm_helper.o
2025-10-31T06:06:48.5410366Z LD [M] drivers/gpu/drm/drm_kms_helper.o
2025-10-31T06:06:48.6548039Z LD [M] drivers/gpu/drm/drm.o
2025-10-31T06:06:48.7000397Z CC [M] drivers/net/ethernet/intel/igb/e1000_mac.o
2025-10-31T06:06:48.7999747Z AR drivers/gpu/drm/built-in.a
2025-10-31T06:06:48.9702416Z AR drivers/gpu/built-in.a
2025-10-31T06:06:48.9885996Z CC [M] drivers/input/misc/da9052_onkey.o
2025-10-31T06:06:49.0106299Z CC [M] drivers/net/wireless/broadcom/b43/bus.o
2025-10-31T06:06:49.6351750Z CC [M] drivers/input/misc/da9055_onkey.o
2025-10-31T06:06:49.8347141Z LD [M] drivers/net/wireless/ath/ath.o
2025-10-31T06:06:49.9461542Z CC [M] drivers/input/misc/da9063_onkey.o
2025-10-31T06:06:50.1459012Z CC [M] drivers/net/ethernet/intel/igc/igc_main.o
2025-10-31T06:06:50.2475205Z CC [M] drivers/net/ethernet/intel/igb/e1000_nvm.o
2025-10-31T06:06:50.3374882Z AR drivers/net/ethernet/i825xx/built-in.a
2025-10-31T06:06:50.3652638Z CC [M] drivers/net/wireless/broadcom/b43/phy_g.o
2025-10-31T06:06:50.4039276Z CC [M] drivers/net/wireless/broadcom/b43legacy/main.o
2025-10-31T06:06:50.6021049Z CC [M] drivers/input/misc/e3x0-button.o
2025-10-31T06:06:51.2699599Z CC [M] drivers/input/misc/drv260x.o
2025-10-31T06:06:51.5864261Z CC [M] drivers/net/ethernet/intel/igb/e1000_phy.o
2025-10-31T06:06:52.3939159Z CC [M] drivers/input/misc/drv2665.o
2025-10-31T06:06:53.0872662Z CC [M] drivers/net/wireless/broadcom/b43/tables.o
2025-10-31T06:06:53.2687511Z CC [M] drivers/net/wireless/broadcom/b43legacy/ilt.o
2025-10-31T06:06:53.3683418Z CC [M] drivers/net/ethernet/intel/igb/e1000_mbx.o
2025-10-31T06:06:53.4595834Z CC [M] drivers/input/misc/drv2667.o
2025-10-31T06:06:53.7194792Z CC [M] drivers/net/ethernet/intel/igc/igc_mac.o
2025-10-31T06:06:54.1878727Z CC [M] drivers/net/ethernet/intel/igb/e1000_i210.o
2025-10-31T06:06:54.3983389Z CC [M] drivers/net/wireless/broadcom/b43/lo.o
2025-10-31T06:06:54.5127620Z CC [M] drivers/input/misc/gpio-beeper.o
2025-10-31T06:06:54.5560547Z CC [M] drivers/net/wireless/broadcom/b43legacy/phy.o
2025-10-31T06:06:54.9339982Z CC [M] drivers/net/ethernet/intel/igc/igc_i225.o
2025-10-31T06:06:55.0684697Z CC [M] drivers/input/misc/gpio_decoder.o
2025-10-31T06:06:55.3407511Z CC [M] drivers/net/ethernet/intel/igb/igb_ptp.o
2025-10-31T06:06:55.8733853Z CC [M] drivers/input/misc/gpio-vibra.o
2025-10-31T06:06:55.9771295Z CC [M] drivers/net/ethernet/intel/igc/igc_base.o
2025-10-31T06:06:56.0695122Z CC [M] drivers/net/wireless/broadcom/b43/wa.o
2025-10-31T06:06:56.7988772Z CC [M] drivers/input/misc/ims-pcu.o
2025-10-31T06:06:56.8895157Z CC [M] drivers/net/ethernet/intel/igb/igb_hwmon.o
2025-10-31T06:06:56.9995906Z CC [M] drivers/net/ethernet/intel/igc/igc_nvm.o
2025-10-31T06:06:57.3466627Z CC [M] drivers/net/wireless/broadcom/b43/tables_nphy.o
2025-10-31T06:06:57.8319636Z CC [M] drivers/net/wireless/broadcom/b43legacy/radio.o
2025-10-31T06:06:57.9372356Z LD [M] drivers/net/ethernet/intel/igb/igb.o
2025-10-31T06:06:57.9809729Z CC [M] drivers/net/ethernet/intel/igc/igc_phy.o
2025-10-31T06:06:58.0414059Z CC [M] drivers/input/misc/iqs269a.o
2025-10-31T06:06:58.1049515Z CC [M] drivers/net/wireless/broadcom/b43/radio_2055.o
2025-10-31T06:06:59.1175271Z CC [M] drivers/net/ethernet/intel/igc/igc_diag.o
2025-10-31T06:06:59.1228997Z CC [M] drivers/net/ethernet/intel/igc/igc_ethtool.o
2025-10-31T06:06:59.2765966Z CC [M] drivers/input/misc/keyspan_remote.o
2025-10-31T06:06:59.4115138Z CC [M] drivers/net/wireless/broadcom/b43/radio_2056.o
2025-10-31T06:06:59.9881545Z CC [M] drivers/input/rmi4/rmi_bus.o
2025-10-31T06:07:00.1027494Z CC [M] drivers/input/misc/kxtj9.o
2025-10-31T06:07:00.1104958Z CC [M] drivers/net/wireless/broadcom/b43legacy/sysfs.o
2025-10-31T06:07:00.7895995Z CC [M] drivers/input/misc/max77693-haptic.o
2025-10-31T06:07:00.9905816Z CC [M] drivers/input/rmi4/rmi_driver.o
2025-10-31T06:07:01.0164114Z CC [M] drivers/net/ethernet/intel/igc/igc_ptp.o
2025-10-31T06:07:01.3387437Z CC [M] drivers/net/wireless/broadcom/b43legacy/xmit.o
2025-10-31T06:07:01.3695411Z CC [M] drivers/net/wireless/broadcom/b43/radio_2057.o
2025-10-31T06:07:01.6979723Z CC [M] drivers/input/misc/max8925_onkey.o
2025-10-31T06:07:02.2842174Z CC [M] drivers/input/misc/max8997_haptic.o
2025-10-31T06:07:02.3551385Z CC [M] drivers/net/ethernet/intel/igc/igc_dump.o
2025-10-31T06:07:02.4273011Z CC [M] drivers/input/rmi4/rmi_f01.o
2025-10-31T06:07:02.5615037Z CC [M] drivers/net/wireless/broadcom/b43/phy_common.o
2025-10-31T06:07:02.7193278Z CC [M] drivers/net/wireless/broadcom/b43legacy/rfkill.o
2025-10-31T06:07:03.1877827Z CC [M] drivers/input/misc/mc13783-pwrbutton.o
2025-10-31T06:07:03.2963730Z CC [M] drivers/input/rmi4/rmi_2d_sensor.o
2025-10-31T06:07:03.3346777Z CC [M] drivers/net/ethernet/intel/igc/igc_tsn.o
2025-10-31T06:07:03.9015182Z CC [M] drivers/input/misc/mma8450.o
2025-10-31T06:07:04.0100417Z CC [M] drivers/input/rmi4/rmi_f03.o
2025-10-31T06:07:04.0786418Z CC [M] drivers/net/wireless/broadcom/b43legacy/leds.o
2025-10-31T06:07:04.1759194Z CC [M] drivers/net/wireless/broadcom/b43/phy_n.o
2025-10-31T06:07:04.2725246Z LD [M] drivers/net/ethernet/intel/igc/igc.o
2025-10-31T06:07:04.3487722Z CC [M] drivers/net/ethernet/intel/igbvf/vf.o
2025-10-31T06:07:04.4480021Z CC [M] drivers/input/misc/palmas-pwrbutton.o
2025-10-31T06:07:04.8283113Z CC [M] drivers/input/rmi4/rmi_f11.o
2025-10-31T06:07:05.2875227Z CC [M] drivers/net/ethernet/intel/igbvf/mbx.o
2025-10-31T06:07:05.3536816Z CC [M] drivers/input/misc/pcap_keys.o
2025-10-31T06:07:05.6275576Z CC [M] drivers/net/wireless/broadcom/b43legacy/debugfs.o
2025-10-31T06:07:05.8982436Z CC [M] drivers/input/rmi4/rmi_f12.o
2025-10-31T06:07:06.0334880Z CC [M] drivers/net/ethernet/intel/igbvf/ethtool.o
2025-10-31T06:07:06.0452175Z CC [M] drivers/input/misc/pcf50633-input.o
2025-10-31T06:07:06.8543967Z CC [M] drivers/input/rmi4/rmi_f30.o
2025-10-31T06:07:06.9884701Z CC [M] drivers/input/misc/pcf8574_keypad.o
2025-10-31T06:07:07.0364236Z CC [M] drivers/net/ethernet/intel/igbvf/netdev.o
2025-10-31T06:07:07.0585182Z CC [M] drivers/net/wireless/broadcom/b43legacy/dma.o
2025-10-31T06:07:07.6234263Z CC [M] drivers/input/misc/pcspkr.o
2025-10-31T06:07:07.6799559Z CC [M] drivers/input/rmi4/rmi_f34.o
2025-10-31T06:07:08.1796636Z CC [M] drivers/input/misc/powermate.o
2025-10-31T06:07:08.5666901Z CC [M] drivers/input/rmi4/rmi_f34v7.o
2025-10-31T06:07:08.8833010Z CC [M] drivers/input/misc/pwm-beeper.o
2025-10-31T06:07:09.0186895Z CC [M] drivers/net/wireless/broadcom/b43legacy/pio.o
2025-10-31T06:07:09.0374084Z CC [M] drivers/net/wireless/broadcom/b43/phy_lp.o
2025-10-31T06:07:09.5403808Z CC [M] drivers/input/rmi4/rmi_f3a.o
2025-10-31T06:07:09.6406296Z CC [M] drivers/input/misc/pwm-vibra.o
2025-10-31T06:07:09.7823959Z LD [M] drivers/net/ethernet/intel/igbvf/igbvf.o
2025-10-31T06:07:09.8864925Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_main.o
2025-10-31T06:07:10.2993388Z CC [M] drivers/input/rmi4/rmi_f55.o
2025-10-31T06:07:10.4866669Z CC [M] drivers/input/misc/rave-sp-pwrbutton.o
2025-10-31T06:07:10.6742448Z LD [M] drivers/net/wireless/broadcom/b43legacy/b43legacy.o
2025-10-31T06:07:10.8146640Z CC [M] drivers/input/misc/regulator-haptic.o
2025-10-31T06:07:10.9774094Z CC [M] drivers/input/rmi4/rmi_i2c.o
2025-10-31T06:07:11.0023608Z CC [M] drivers/input/rmi4/rmi_spi.o
2025-10-31T06:07:11.1759304Z CC [M] drivers/net/wireless/broadcom/b43/tables_lpphy.o
2025-10-31T06:07:11.7557942Z CC [M] drivers/input/misc/retu-pwrbutton.o
2025-10-31T06:07:11.8487632Z AR drivers/net/wireless/cisco/built-in.a
2025-10-31T06:07:11.8710554Z CC [M] drivers/net/wireless/cisco/airo.o
2025-10-31T06:07:11.9822498Z CC [M] drivers/input/rmi4/rmi_smbus.o
2025-10-31T06:07:12.4153599Z CC [M] drivers/input/misc/axp20x-pek.o
2025-10-31T06:07:12.6935334Z CC [M] drivers/net/wireless/broadcom/b43/phy_ht.o
2025-10-31T06:07:12.9560816Z LD [M] drivers/input/rmi4/rmi_core.o
2025-10-31T06:07:13.0873842Z CC [M] drivers/input/misc/rotary_encoder.o
2025-10-31T06:07:13.1960087Z CC [M] drivers/net/ethernet/intel/ixgbevf/vf.o
2025-10-31T06:07:13.9598413Z CC [M] drivers/input/misc/soc_button_array.o
2025-10-31T06:07:14.4953891Z CC [M] drivers/net/wireless/broadcom/b43/tables_phy_ht.o
2025-10-31T06:07:14.5150668Z CC [M] drivers/net/ethernet/intel/ixgbevf/mbx.o
2025-10-31T06:07:14.8333011Z CC [M] drivers/input/misc/twl4030-pwrbutton.o
2025-10-31T06:07:15.4043980Z CC [M] drivers/input/misc/twl4030-vibra.o
2025-10-31T06:07:15.7203258Z CC [M] drivers/net/wireless/broadcom/b43/radio_2059.o
2025-10-31T06:07:15.7633699Z CC [M] drivers/net/ethernet/intel/ixgbevf/ethtool.o
2025-10-31T06:07:15.9240835Z CC [M] drivers/input/misc/twl6040-vibra.o
2025-10-31T06:07:16.5547673Z CC [M] drivers/net/wireless/cisco/airo_cs.o
2025-10-31T06:07:16.7195640Z CC [M] drivers/input/misc/uinput.o
2025-10-31T06:07:16.9445275Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_common.o
2025-10-31T06:07:16.9767502Z CC [M] drivers/net/wireless/broadcom/b43/sysfs.o
2025-10-31T06:07:17.1190651Z CC [M] drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.o
2025-10-31T06:07:17.5567540Z CC [M] drivers/net/wireless/broadcom/b43/xmit.o
2025-10-31T06:07:17.7485615Z CC [M] drivers/input/misc/wm831x-on.o
2025-10-31T06:07:18.2629135Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmutil/utils.o
2025-10-31T06:07:18.3095288Z CC [M] drivers/input/misc/xen-kbdfront.o
2025-10-31T06:07:19.2964172Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmutil/d11.o
2025-10-31T06:07:19.3412685Z CC [M] drivers/input/misc/yealink.o
2025-10-31T06:07:19.3606195Z CC [M] drivers/net/wireless/broadcom/b43/dma.o
2025-10-31T06:07:19.5690364Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.o
2025-10-31T06:07:20.2841878Z LD [M] drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil.o
2025-10-31T06:07:20.3293624Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.o
2025-10-31T06:07:20.5724457Z CC [M] drivers/input/misc/ideapad_slidebar.o
2025-10-31T06:07:20.9820478Z CC [M] drivers/net/ethernet/intel/ixgbevf/ipsec.o
2025-10-31T06:07:21.3582674Z CC [M] drivers/net/wireless/broadcom/b43/pio.o
2025-10-31T06:07:21.7814211Z CC drivers/input/input.o
2025-10-31T06:07:22.3678959Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_82599.o
2025-10-31T06:07:22.7123324Z LD [M] drivers/net/ethernet/intel/ixgbevf/ixgbevf.o
2025-10-31T06:07:22.8032754Z CC [M] drivers/net/wireless/broadcom/b43/rfkill.o
2025-10-31T06:07:23.0101485Z CC [M] drivers/net/wireguard/main.o
2025-10-31T06:07:23.5921562Z CC drivers/input/input-compat.o
2025-10-31T06:07:24.0523450Z CC [M] drivers/net/wireguard/noise.o
2025-10-31T06:07:24.1635788Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_82598.o
2025-10-31T06:07:24.1834583Z CC drivers/input/input-mt.o
2025-10-31T06:07:24.2756548Z CC [M] drivers/net/wireless/broadcom/b43/ppr.o
2025-10-31T06:07:24.6349320Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/chip.o
2025-10-31T06:07:25.0452523Z CC drivers/input/input-poller.o
2025-10-31T06:07:25.4364573Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_phy.o
2025-10-31T06:07:25.6293934Z CC drivers/input/ff-core.o
2025-10-31T06:07:25.6524793Z CC [M] drivers/net/wireless/broadcom/b43/leds.o
2025-10-31T06:07:25.8096290Z CC [M] drivers/net/wireguard/device.o
2025-10-31T06:07:26.1024144Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.o
2025-10-31T06:07:26.6419681Z CC drivers/input/input-leds.o
2025-10-31T06:07:26.9590916Z CC [M] drivers/net/wireless/broadcom/b43/sdio.o
2025-10-31T06:07:27.2072749Z CC [M] drivers/net/wireguard/peer.o
2025-10-31T06:07:27.2117977Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.o
2025-10-31T06:07:27.3004725Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/fweh.o
2025-10-31T06:07:27.3088906Z CC drivers/input/evdev.o
2025-10-31T06:07:28.2717300Z LD [M] drivers/net/wireless/broadcom/b43/b43.o
2025-10-31T06:07:28.4767508Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.o
2025-10-31T06:07:28.4943524Z CC [M] drivers/input/ff-memless.o
2025-10-31T06:07:28.5593515Z CC [M] drivers/net/wireguard/timers.o
2025-10-31T06:07:28.7134787Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/p2p.o
2025-10-31T06:07:29.2986734Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/proto.o
2025-10-31T06:07:29.4141420Z CC [M] drivers/input/input-polldev.o
2025-10-31T06:07:29.5704888Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_x540.o
2025-10-31T06:07:29.8798914Z CC [M] drivers/net/wireguard/queueing.o
2025-10-31T06:07:30.1472949Z CC [M] drivers/input/sparse-keymap.o
2025-10-31T06:07:30.5376974Z CC [M] drivers/net/wireless/intel/ipw2x00/ipw2100.o
2025-10-31T06:07:30.5930325Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/common.o
2025-10-31T06:07:30.7455666Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_x550.o
2025-10-31T06:07:30.7556463Z CC [M] drivers/input/matrix-keymap.o
2025-10-31T06:07:30.9545008Z CC [M] drivers/net/wireguard/send.o
2025-10-31T06:07:31.5552371Z CC [M] drivers/input/mousedev.o
2025-10-31T06:07:31.6487572Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/core.o
2025-10-31T06:07:32.3958588Z CC [M] drivers/net/wireguard/receive.o
2025-10-31T06:07:32.5965928Z CC [M] drivers/input/joydev.o
2025-10-31T06:07:33.0429365Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_lib.o
2025-10-31T06:07:33.7875488Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/firmware.o
2025-10-31T06:07:33.8593623Z AR drivers/input/built-in.a
2025-10-31T06:07:33.9829518Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/feature.o
2025-10-31T06:07:34.0006576Z CC [M] drivers/net/wireguard/socket.o
2025-10-31T06:07:34.7091778Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.o
2025-10-31T06:07:34.9451571Z CC [M] drivers/net/wireless/intel/ipw2x00/ipw2200.o
2025-10-31T06:07:35.0442389Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_module.o
2025-10-31T06:07:35.1406548Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/btcoex.o
2025-10-31T06:07:35.5639723Z CC [M] drivers/net/wireguard/peerlookup.o
2025-10-31T06:07:36.0903789Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.o
2025-10-31T06:07:36.3044309Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/vendor.o
2025-10-31T06:07:36.5122292Z CC [M] drivers/net/ethernet/intel/i40e/i40e_main.o
2025-10-31T06:07:36.8074737Z CC [M] drivers/net/wireguard/allowedips.o
2025-10-31T06:07:37.5037469Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/pno.o
2025-10-31T06:07:37.6726861Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.o
2025-10-31T06:07:38.1854576Z CC [M] drivers/net/wireguard/ratelimiter.o
2025-10-31T06:07:38.6847017Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcdc.o
2025-10-31T06:07:39.1431174Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82598.o
2025-10-31T06:07:39.4474642Z CC [M] drivers/net/wireguard/cookie.o
2025-10-31T06:07:39.9347957Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwsignal.o
2025-10-31T06:07:40.3357859Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82599.o
2025-10-31T06:07:40.6463204Z CC [M] drivers/net/wireguard/netlink.o
2025-10-31T06:07:41.5563452Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_nl.o
2025-10-31T06:07:41.7276860Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_tx.o
2025-10-31T06:07:41.9051044Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/commonring.o
2025-10-31T06:07:42.0174206Z LD [M] drivers/net/wireguard/wireguard.o
2025-10-31T06:07:42.0911362Z CC [M] drivers/net/ethernet/intel/i40e/i40e_ethtool.o
2025-10-31T06:07:42.9168938Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/flowring.o
2025-10-31T06:07:42.9272267Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_sysfs.o
2025-10-31T06:07:43.1669100Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_rx.o
2025-10-31T06:07:43.8209660Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_debugfs.o
2025-10-31T06:07:44.3108759Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/msgbuf.o
2025-10-31T06:07:44.9829173Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_wx.o
2025-10-31T06:07:45.0752599Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.o
2025-10-31T06:07:45.5021689Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.o
2025-10-31T06:07:45.7307069Z CC [M] drivers/net/ethernet/intel/i40e/i40e_adminq.o
2025-10-31T06:07:45.9853785Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_main.o
2025-10-31T06:07:46.2956196Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_geo.o
2025-10-31T06:07:46.4925281Z LD [M] drivers/net/ethernet/intel/ixgbe/ixgbe.o
2025-10-31T06:07:46.7006961Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_hw.o
2025-10-31T06:07:47.0338997Z CC [M] drivers/net/ethernet/intel/i40e/i40e_common.o
2025-10-31T06:07:47.4759687Z LD [M] drivers/net/wireless/intel/ipw2x00/libipw.o
2025-10-31T06:07:47.5370050Z CC [M] drivers/net/wireless/intel/iwlegacy/common.o
2025-10-31T06:07:48.0824696Z CC [M] drivers/net/wireless/intel/iwlegacy/debug.o
2025-10-31T06:07:48.1177319Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_ee.o
2025-10-31T06:07:48.6017516Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.o
2025-10-31T06:07:49.1559258Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_ethtool.o
2025-10-31T06:07:49.9485461Z CC [M] drivers/net/ethernet/intel/i40e/i40e_hmc.o
2025-10-31T06:07:50.0685596Z CC [M] drivers/net/ethernet/intel/i40e/i40e_lan_hmc.o
2025-10-31T06:07:50.1690153Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.o
2025-10-31T06:07:50.7160290Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_param.o
2025-10-31T06:07:51.2946187Z AR drivers/net/ethernet/marvell/octeontx2/built-in.a
2025-10-31T06:07:51.3323336Z AR drivers/net/ethernet/marvell/prestera/built-in.a
2025-10-31T06:07:51.3432465Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_main.o
2025-10-31T06:07:51.7283688Z CC [M] drivers/net/ethernet/intel/i40e/i40e_nvm.o
2025-10-31T06:07:51.9253949Z LD [M] drivers/net/ethernet/intel/ixgb/ixgb.o
2025-10-31T06:07:51.9747775Z AR drivers/net/wireless/broadcom/built-in.a
2025-10-31T06:07:51.9959665Z CC [M] drivers/net/ethernet/intel/i40e/i40e_debugfs.o
2025-10-31T06:07:52.0782453Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.o
2025-10-31T06:07:52.2443003Z CC [M] drivers/net/wireless/intel/iwlegacy/4965.o
2025-10-31T06:07:52.4419283Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_hw.o
2025-10-31T06:07:53.3377201Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.o
2025-10-31T06:07:53.7766306Z CC [M] drivers/net/wireless/intersil/hostap/hostap_80211_rx.o
2025-10-31T06:07:53.8968041Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_dsa.o
2025-10-31T06:07:54.0942357Z CC [M] drivers/net/ethernet/intel/i40e/i40e_diag.o
2025-10-31T06:07:54.1007962Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_rxtx.o
2025-10-31T06:07:54.2909153Z CC [M] drivers/net/wireless/intel/iwlegacy/4965-mac.o
2025-10-31T06:07:54.4341662Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/tracepoint.o
2025-10-31T06:07:55.0807335Z CC [M] drivers/net/ethernet/intel/i40e/i40e_txrx.o
2025-10-31T06:07:55.4723623Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_devlink.o
2025-10-31T06:07:55.5313269Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/dmi.o
2025-10-31T06:07:55.6588008Z CC [M] drivers/net/wireless/intersil/hostap/hostap_80211_tx.o
2025-10-31T06:07:56.2946111Z LD [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac.o
2025-10-31T06:07:56.4590137Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/mac80211_if.o
2025-10-31T06:07:56.5547959Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_ethtool.o
2025-10-31T06:07:56.8757043Z CC [M] drivers/net/wireless/intersil/hostap/hostap_ap.o
2025-10-31T06:07:57.7486438Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_switchdev.o
2025-10-31T06:07:58.4357794Z CC [M] drivers/net/ethernet/intel/i40e/i40e_ptp.o
2025-10-31T06:07:58.5574460Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/ucode_loader.o
2025-10-31T06:07:58.8558165Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/ampdu.o
2025-10-31T06:07:59.2967418Z CC [M] drivers/net/wireless/intel/iwlegacy/4965-rs.o
2025-10-31T06:07:59.3090870Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_pci.o
2025-10-31T06:07:59.5201844Z CC [M] drivers/net/wireless/intersil/hostap/hostap_info.o
2025-10-31T06:07:59.9868283Z CC [M] drivers/net/ethernet/intel/i40e/i40e_ddp.o
2025-10-31T06:08:00.5147153Z LD [M] drivers/net/ethernet/marvell/prestera/prestera.o
2025-10-31T06:08:00.5349116Z CC [M] drivers/net/wireless/intersil/hostap/hostap_ioctl.o
2025-10-31T06:08:00.5919115Z CC [M] drivers/net/ethernet/marvell/mvmdio.o
2025-10-31T06:08:00.6943787Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/antsel.o
2025-10-31T06:08:01.4482623Z CC [M] drivers/net/ethernet/marvell/skge.o
2025-10-31T06:08:01.7309773Z CC [M] drivers/net/ethernet/intel/i40e/i40e_client.o
2025-10-31T06:08:01.9471489Z CC [M] drivers/net/wireless/intel/iwlegacy/4965-calib.o
2025-10-31T06:08:01.9876846Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/channel.o
2025-10-31T06:08:02.9311255Z CC [M] drivers/net/wireless/intersil/hostap/hostap_main.o
2025-10-31T06:08:03.3581398Z CC [M] drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.o
2025-10-31T06:08:03.5688062Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/main.o
2025-10-31T06:08:03.7254086Z CC [M] drivers/net/wireless/intel/iwlegacy/4965-debug.o
2025-10-31T06:08:04.4858994Z CC [M] drivers/net/wireless/intersil/hostap/hostap_proc.o
2025-10-31T06:08:04.8773937Z CC [M] drivers/net/ethernet/marvell/sky2.o
2025-10-31T06:08:05.3055473Z CC [M] drivers/net/wireless/intel/iwlegacy/3945-mac.o
2025-10-31T06:08:05.6014999Z CC [M] drivers/net/wireless/intersil/hostap/hostap_cs.o
2025-10-31T06:08:06.8958871Z CC [M] drivers/net/ethernet/intel/i40e/i40e_xsk.o
2025-10-31T06:08:08.5676557Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy_shim.o
2025-10-31T06:08:08.5828878Z AR drivers/net/ethernet/marvell/built-in.a
2025-10-31T06:08:08.6349464Z CC [M] drivers/net/wireless/intersil/orinoco/main.o
2025-10-31T06:08:08.7777977Z CC [M] drivers/net/wireless/intersil/hostap/hostap_plx.o
2025-10-31T06:08:08.8763862Z CC [M] drivers/net/ethernet/intel/i40e/i40e_dcb.o
2025-10-31T06:08:09.0467999Z CC [M] drivers/net/wireless/intel/iwlegacy/3945.o
2025-10-31T06:08:09.8745884Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/pmu.o
2025-10-31T06:08:10.2627810Z CC [M] drivers/net/ethernet/intel/i40e/i40e_dcb_nl.o
2025-10-31T06:08:10.6642751Z CC [M] drivers/net/wireless/intersil/orinoco/fw.o
2025-10-31T06:08:10.7771111Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/rate.o
2025-10-31T06:08:11.4893842Z CC [M] drivers/net/wireless/intel/iwlegacy/3945-rs.o
2025-10-31T06:08:11.7290205Z LD [M] drivers/net/ethernet/intel/i40e/i40e.o
2025-10-31T06:08:11.7627700Z CC [M] drivers/net/wireless/intersil/hostap/hostap_pci.o
2025-10-31T06:08:11.7975833Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/stf.o
2025-10-31T06:08:11.8859511Z CC [M] drivers/net/ethernet/intel/iavf/iavf_main.o
2025-10-31T06:08:11.9254853Z CC [M] drivers/net/wireless/intersil/orinoco/hw.o
2025-10-31T06:08:13.2042581Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/aiutils.o
2025-10-31T06:08:13.3035303Z CC [M] drivers/net/wireless/intel/iwlegacy/3945-debug.o
2025-10-31T06:08:13.4595314Z CC [M] drivers/net/wireless/intersil/orinoco/mic.o
2025-10-31T06:08:14.4118347Z CC [M] drivers/net/wireless/intersil/orinoco/scan.o
2025-10-31T06:08:14.4683890Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_cmn.o
2025-10-31T06:08:14.5611384Z LD [M] drivers/net/wireless/intersil/hostap/hostap.o
2025-10-31T06:08:14.6594840Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/main.o
2025-10-31T06:08:14.9208054Z LD [M] drivers/net/wireless/intel/iwlegacy/iwlegacy.o
2025-10-31T06:08:14.9478509Z LD [M] drivers/net/wireless/intel/iwlegacy/iwl4965.o
2025-10-31T06:08:14.9890854Z LD [M] drivers/net/wireless/intel/iwlegacy/iwl3945.o
2025-10-31T06:08:15.0651403Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/fw.o
2025-10-31T06:08:15.3828547Z CC [M] drivers/net/ethernet/intel/iavf/iavf_ethtool.o
2025-10-31T06:08:15.5619324Z CC [M] drivers/net/wireless/intersil/orinoco/wext.o
2025-10-31T06:08:16.7363857Z CC [M] drivers/net/ethernet/intel/iavf/iavf_virtchnl.o
2025-10-31T06:08:16.8774304Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/rs.o
2025-10-31T06:08:17.0543157Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/mac80211.o
2025-10-31T06:08:17.0972688Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_lcn.o
2025-10-31T06:08:17.3865572Z CC [M] drivers/net/wireless/intersil/orinoco/hermes_dld.o
2025-10-31T06:08:18.1619801Z CC [M] drivers/net/wireless/intersil/orinoco/hermes.o
2025-10-31T06:08:18.5673864Z CC [M] drivers/net/ethernet/intel/iavf/iavf_txrx.o
2025-10-31T06:08:19.2960438Z CC [M] drivers/net/wireless/intersil/orinoco/cfg.o
2025-10-31T06:08:19.8426960Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/mac80211.o
2025-10-31T06:08:19.9888292Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.o
2025-10-31T06:08:20.3725661Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_cs.o
2025-10-31T06:08:20.9526413Z CC [M] drivers/net/ethernet/intel/iavf/iavf_common.o
2025-10-31T06:08:21.0660278Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/nvm.o
2025-10-31T06:08:21.4543533Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_plx.o
2025-10-31T06:08:21.7683843Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/ucode.o
2025-10-31T06:08:22.0077683Z CC [M] drivers/net/ethernet/intel/iavf/iavf_adminq.o
2025-10-31T06:08:22.5693155Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_pci.o
2025-10-31T06:08:22.6585975Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/ops.o
2025-10-31T06:08:23.3241421Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/tx.o
2025-10-31T06:08:23.4407370Z CC [M] drivers/net/ethernet/intel/iavf/iavf_client.o
2025-10-31T06:08:23.5281418Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_tmd.o
2025-10-31T06:08:24.6125166Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_nortel.o
2025-10-31T06:08:24.7088505Z LD [M] drivers/net/ethernet/intel/iavf/iavf.o
2025-10-31T06:08:24.8389435Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_main.o
2025-10-31T06:08:24.9190385Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.o
2025-10-31T06:08:25.5252275Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/lib.o
2025-10-31T06:08:25.6558520Z CC [M] drivers/net/wireless/intersil/orinoco/spectrum_cs.o
2025-10-31T06:08:26.4682811Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.o
2025-10-31T06:08:26.6940593Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_common.o
2025-10-31T06:08:27.0090298Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_usb.o
2025-10-31T06:08:27.5454262Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/calib.o
2025-10-31T06:08:27.5561385Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_pci.o
2025-10-31T06:08:28.1704190Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phytbl_lcn.o
2025-10-31T06:08:28.3703420Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/utils.o
2025-10-31T06:08:28.7758742Z LD [M] drivers/net/wireless/intersil/orinoco/orinoco.o
2025-10-31T06:08:28.9740188Z CC [M] drivers/net/wireless/intersil/p54/eeprom.o
2025-10-31T06:08:29.0973748Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phytbl_n.o
2025-10-31T06:08:29.2906316Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/tt.o
2025-10-31T06:08:29.5683657Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_netdev.o
2025-10-31T06:08:29.9639418Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_qmath.o
2025-10-31T06:08:30.3603811Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/dma.o
2025-10-31T06:08:30.5574225Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/rx.o
2025-10-31T06:08:30.6323833Z CC [M] drivers/net/wireless/intersil/p54/fwio.o
2025-10-31T06:08:30.7464231Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/sta.o
2025-10-31T06:08:31.6730176Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_ethtool.o
2025-10-31T06:08:32.0346604Z CC [M] drivers/net/wireless/intersil/p54/txrx.o
2025-10-31T06:08:32.5885214Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/brcms_trace_events.o
2025-10-31T06:08:32.6186452Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/rxmq.o
2025-10-31T06:08:32.7210360Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/rx.o
2025-10-31T06:08:33.0456368Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_pf.o
2025-10-31T06:08:33.4877377Z CC [M] drivers/net/wireless/intersil/p54/main.o
2025-10-31T06:08:33.9734805Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/debug.o
2025-10-31T06:08:34.7699655Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_vf.o
2025-10-31T06:08:34.9600236Z CC [M] drivers/net/wireless/intersil/p54/led.o
2025-10-31T06:08:34.9912984Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/power.o
2025-10-31T06:08:35.1715261Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/tx.o
2025-10-31T06:08:35.4384989Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/led.o
2025-10-31T06:08:35.7301647Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_mbx.o
2025-10-31T06:08:36.1250749Z CC [M] drivers/net/wireless/intersil/p54/p54usb.o
2025-10-31T06:08:36.3568486Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/scan.o
2025-10-31T06:08:36.9412545Z LD [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/brcmsmac.o
2025-10-31T06:08:37.2004192Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_iov.o
2025-10-31T06:08:37.2155255Z CC [M] drivers/net/ethernet/intel/ice/ice_main.o
2025-10-31T06:08:37.8357606Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/binding.o
2025-10-31T06:08:37.9253375Z CC [M] drivers/net/wireless/intersil/p54/p54pci.o
2025-10-31T06:08:38.1900472Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/rxon.o
2025-10-31T06:08:38.4327885Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_tlv.o
2025-10-31T06:08:39.3807523Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/quota.o
2025-10-31T06:08:39.4684731Z CC [M] drivers/net/wireless/intersil/p54/p54spi.o
2025-10-31T06:08:39.6820261Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_debugfs.o
2025-10-31T06:08:39.9263953Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/devices.o
2025-10-31T06:08:40.4805472Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_dcbnl.o
2025-10-31T06:08:40.8034907Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/sta.o
2025-10-31T06:08:41.2066012Z LD [M] drivers/net/wireless/intersil/p54/p54common.o
2025-10-31T06:08:41.3095232Z CC [M] drivers/net/wireless/intersil/prism54/islpci_eth.o
2025-10-31T06:08:41.3274846Z LD [M] drivers/net/ethernet/intel/fm10k/fm10k.o
2025-10-31T06:08:41.4583368Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/led.o
2025-10-31T06:08:41.4640235Z CC [M] drivers/net/ethernet/intel/ice/ice_controlq.o
2025-10-31T06:08:41.4662260Z AR drivers/i2c/algos/built-in.a
2025-10-31T06:08:41.4855180Z CC [M] drivers/i2c/algos/i2c-algo-bit.o
2025-10-31T06:08:42.1916289Z CC [M] drivers/i2c/algos/i2c-algo-pca.o
2025-10-31T06:08:42.4512469Z CC [M] drivers/net/wireless/intersil/prism54/islpci_mgt.o
2025-10-31T06:08:42.7027279Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/debugfs.o
2025-10-31T06:08:42.9215937Z CC drivers/i2c/busses/i2c-designware-common.o
2025-10-31T06:08:43.3454022Z CC [M] drivers/net/ethernet/intel/ice/ice_common.o
2025-10-31T06:08:43.6763052Z CC drivers/i2c/busses/i2c-designware-master.o
2025-10-31T06:08:43.7437007Z CC [M] drivers/net/wireless/intersil/prism54/isl_38xx.o
2025-10-31T06:08:44.3253744Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/sf.o
2025-10-31T06:08:44.7129459Z CC [M] drivers/net/wireless/intersil/prism54/isl_ioctl.o
2025-10-31T06:08:44.7294222Z CC drivers/i2c/busses/i2c-designware-slave.o
2025-10-31T06:08:45.4707692Z CC drivers/i2c/busses/i2c-designware-platdrv.o
2025-10-31T06:08:45.5739285Z LD [M] drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.o
2025-10-31T06:08:45.6420922Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/scan.o
2025-10-31T06:08:45.7415386Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/time-event.o
2025-10-31T06:08:46.1764513Z CC [M] drivers/net/ethernet/intel/ice/ice_nvm.o
2025-10-31T06:08:46.4940477Z CC drivers/i2c/busses/i2c-designware-baytrail.o
2025-10-31T06:08:46.8163878Z CC [M] drivers/net/wireless/intersil/prism54/islpci_dev.o
2025-10-31T06:08:46.9265704Z CC drivers/i2c/busses/i2c-designware-pcidrv.o
2025-10-31T06:08:47.7248127Z CC [M] drivers/net/ethernet/intel/ice/ice_switch.o
2025-10-31T06:08:47.7541343Z CC [M] drivers/i2c/busses/i2c-scmi.o
2025-10-31T06:08:47.8770242Z CC [M] drivers/i2c/busses/i2c-ali1535.o
2025-10-31T06:08:48.0797083Z CC [M] drivers/net/wireless/intersil/prism54/islpci_hotplug.o
2025-10-31T06:08:48.2185558Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/rs.o
2025-10-31T06:08:48.5218293Z CC [M] drivers/net/wireless/intersil/prism54/oid_mgt.o
2025-10-31T06:08:48.8594968Z CC [M] drivers/i2c/busses/i2c-ali1563.o
2025-10-31T06:08:49.2074020Z AR drivers/net/wireless/intel/built-in.a
2025-10-31T06:08:49.2331930Z CC [M] drivers/net/team/team.o
2025-10-31T06:08:49.7420264Z CC [M] drivers/i2c/busses/i2c-ali15x3.o
2025-10-31T06:08:49.7951888Z LD [M] drivers/net/wireless/intersil/prism54/prism54.o
2025-10-31T06:08:49.8415878Z AR drivers/net/wireless/intersil/built-in.a
2025-10-31T06:08:49.8695714Z CC [M] drivers/net/team/team_mode_broadcast.o
2025-10-31T06:08:49.9652694Z CC [M] drivers/net/ethernet/intel/ice/ice_sched.o
2025-10-31T06:08:50.7924745Z CC [M] drivers/i2c/busses/i2c-amd756.o
2025-10-31T06:08:50.8932309Z CC [M] drivers/net/ethernet/mellanox/mlx4/alloc.o
2025-10-31T06:08:51.7345366Z CC [M] drivers/i2c/busses/i2c-amd756-s4882.o
2025-10-31T06:08:51.7936634Z CC [M] drivers/net/team/team_mode_roundrobin.o
2025-10-31T06:08:52.0033690Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/rs-fw.o
2025-10-31T06:08:52.1980606Z CC [M] drivers/net/ethernet/intel/ice/ice_base.o
2025-10-31T06:08:52.3413657Z CC [M] drivers/net/ethernet/mellanox/mlx4/catas.o
2025-10-31T06:08:52.5415713Z CC [M] drivers/i2c/busses/i2c-amd8111.o
2025-10-31T06:08:52.7252347Z CC [M] drivers/net/team/team_mode_random.o
2025-10-31T06:08:53.4531143Z CC [M] drivers/i2c/busses/i2c-cht-wc.o
2025-10-31T06:08:53.5147904Z CC [M] drivers/net/ethernet/mellanox/mlx4/cmd.o
2025-10-31T06:08:53.6046435Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/power.o
2025-10-31T06:08:53.6526771Z CC [M] drivers/net/ethernet/intel/ice/ice_lib.o
2025-10-31T06:08:53.7318429Z CC [M] drivers/net/team/team_mode_activebackup.o
2025-10-31T06:08:54.4155019Z CC [M] drivers/i2c/busses/i2c-i801.o
2025-10-31T06:08:54.8118386Z CC [M] drivers/net/team/team_mode_loadbalance.o
2025-10-31T06:08:55.4503643Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/coex.o
2025-10-31T06:08:55.8940163Z CC [M] drivers/i2c/busses/i2c-isch.o
2025-10-31T06:08:56.1206093Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/tt.o
2025-10-31T06:08:56.2610921Z CC [M] drivers/net/ethernet/mellanox/mlx4/cq.o
2025-10-31T06:08:56.4077551Z CC [M] drivers/net/ethernet/intel/ice/ice_txrx_lib.o
2025-10-31T06:08:56.7004976Z CC [M] drivers/i2c/busses/i2c-ismt.o
2025-10-31T06:08:57.2587444Z CC [M] drivers/net/ethernet/intel/ice/ice_txrx.o
2025-10-31T06:08:57.5568476Z CC [M] drivers/net/ethernet/mellanox/mlx4/eq.o
2025-10-31T06:08:57.6307404Z CC [M] drivers/net/wireless/marvell/libertas/cfg.o
2025-10-31T06:08:57.7519250Z CC [M] drivers/i2c/busses/i2c-nct6775.o
2025-10-31T06:08:58.1621729Z drivers/i2c/busses/i2c-nct6775.c: In function ‘nct6775_access’:
2025-10-31T06:08:58.1623387Z drivers/i2c/busses/i2c-nct6775.c:221:39: warning: this statement may fall through [-Wimplicit-fallthrough=]
2025-10-31T06:08:58.1624651Z 221 | tmp_data.byte = data->byte;
2025-10-31T06:08:58.1625525Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~
2025-10-31T06:08:58.1627607Z drivers/i2c/busses/i2c-nct6775.c:222:17: note: here
2025-10-31T06:08:58.1628524Z 222 | case I2C_SMBUS_BYTE:
2025-10-31T06:08:58.2454400Z | ^~~~
2025-10-31T06:08:58.2455405Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/offloading.o
2025-10-31T06:08:58.4386761Z CC [M] drivers/i2c/busses/i2c-nforce2.o
2025-10-31T06:08:59.1978629Z CC [M] drivers/net/wireless/marvell/libertas/cmd.o
2025-10-31T06:08:59.4332719Z CC [M] drivers/i2c/busses/i2c-nforce2-s4985.o
2025-10-31T06:08:59.5202491Z CC [M] drivers/net/ethernet/mellanox/mlx4/fw.o
2025-10-31T06:08:59.7746810Z CC [M] drivers/net/ethernet/intel/ice/ice_fltr.o
2025-10-31T06:08:59.8449482Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/tdls.o
2025-10-31T06:09:00.1651541Z CC [M] drivers/i2c/busses/i2c-nvidia-gpu.o
2025-10-31T06:09:00.5694664Z CC [M] drivers/net/wireless/marvell/libertas/cmdresp.o
2025-10-31T06:09:01.0187812Z CC [M] drivers/i2c/busses/i2c-piix4.o
2025-10-31T06:09:01.2365039Z CC [M] drivers/net/ethernet/intel/ice/ice_fdir.o
2025-10-31T06:09:01.5603206Z CC [M] drivers/net/wireless/marvell/libertas/debugfs.o
2025-10-31T06:09:01.8326610Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/ftm-responder.o
2025-10-31T06:09:02.0961889Z CC [M] drivers/net/ethernet/mellanox/mlx4/fw_qos.o
2025-10-31T06:09:02.2399694Z CC [M] drivers/i2c/busses/i2c-sis5595.o
2025-10-31T06:09:02.5826450Z CC [M] drivers/net/ethernet/intel/ice/ice_ethtool_fdir.o
2025-10-31T06:09:02.8386951Z CC [M] drivers/net/wireless/marvell/libertas/ethtool.o
2025-10-31T06:09:03.0356383Z CC [M] drivers/net/ethernet/mellanox/mlx4/icm.o
2025-10-31T06:09:03.2247260Z CC [M] drivers/i2c/busses/i2c-sis630.o
2025-10-31T06:09:03.6625052Z CC [M] drivers/net/wireless/marvell/libertas/main.o
2025-10-31T06:09:03.8920860Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.o
2025-10-31T06:09:04.2249410Z CC [M] drivers/i2c/busses/i2c-sis96x.o
2025-10-31T06:09:04.3541533Z CC [M] drivers/net/ethernet/intel/ice/ice_flex_pipe.o
2025-10-31T06:09:04.4419269Z CC [M] drivers/net/ethernet/mellanox/mlx4/intf.o
2025-10-31T06:09:05.1111098Z CC [M] drivers/net/wireless/marvell/libertas/rx.o
2025-10-31T06:09:05.1994161Z CC [M] drivers/i2c/busses/i2c-via.o
2025-10-31T06:09:05.5537769Z CC [M] drivers/net/ethernet/mellanox/mlx4/main.o
2025-10-31T06:09:05.7148778Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/debugfs.o
2025-10-31T06:09:05.9958685Z CC [M] drivers/i2c/busses/i2c-viapro.o
2025-10-31T06:09:06.1751781Z CC [M] drivers/net/wireless/marvell/libertas/tx.o
2025-10-31T06:09:07.0625174Z CC [M] drivers/i2c/busses/i2c-amd-mp2-pci.o
2025-10-31T06:09:07.2120399Z CC [M] drivers/net/wireless/marvell/libertas/firmware.o
2025-10-31T06:09:07.3031179Z CC [M] drivers/net/ethernet/intel/ice/ice_flow.o
2025-10-31T06:09:08.1691196Z CC [M] drivers/i2c/busses/i2c-amd-mp2-plat.o
2025-10-31T06:09:08.2917327Z CC [M] drivers/net/wireless/marvell/libertas/mesh.o
2025-10-31T06:09:08.5260450Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/debugfs-vif.o
2025-10-31T06:09:08.6365704Z CC [M] drivers/net/ethernet/mellanox/mlx4/mcg.o
2025-10-31T06:09:09.0303212Z CC [M] drivers/i2c/busses/i2c-cbus-gpio.o
2025-10-31T06:09:09.1617873Z CC [M] drivers/net/ethernet/intel/ice/ice_devlink.o
2025-10-31T06:09:09.9033380Z CC [M] drivers/i2c/busses/i2c-emev2.o
2025-10-31T06:09:10.0275390Z CC [M] drivers/net/wireless/marvell/libertas/if_usb.o
2025-10-31T06:09:10.1988213Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/led.o
2025-10-31T06:09:10.4858090Z CC [M] drivers/i2c/busses/i2c-gpio.o
2025-10-31T06:09:10.6664491Z CC [M] drivers/net/ethernet/mellanox/mlx4/mr.o
2025-10-31T06:09:10.7442352Z CC [M] drivers/net/ethernet/intel/ice/ice_fw_update.o
2025-10-31T06:09:11.1629841Z CC [M] drivers/i2c/busses/i2c-kempld.o
2025-10-31T06:09:11.4591685Z CC [M] drivers/net/wireless/marvell/libertas/if_cs.o
2025-10-31T06:09:11.5545647Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/d3.o
2025-10-31T06:09:11.8154148Z CC [M] drivers/i2c/busses/i2c-ocores.o
2025-10-31T06:09:12.1098787Z CC [M] drivers/net/ethernet/mellanox/mlx4/pd.o
2025-10-31T06:09:12.2975623Z CC [M] drivers/net/ethernet/intel/ice/ice_ethtool.o
2025-10-31T06:09:12.6143206Z CC [M] drivers/net/wireless/marvell/libertas/if_sdio.o
2025-10-31T06:09:12.7029133Z CC [M] drivers/i2c/busses/i2c-pca-platform.o
2025-10-31T06:09:13.2214269Z CC [M] drivers/net/ethernet/mellanox/mlx4/port.o
2025-10-31T06:09:13.3396195Z CC [M] drivers/i2c/busses/i2c-simtec.o
2025-10-31T06:09:13.9474786Z CC [M] drivers/net/wireless/marvell/libertas/if_spi.o
2025-10-31T06:09:14.0042645Z CC [M] drivers/i2c/busses/i2c-xiic.o
2025-10-31T06:09:14.4352209Z LD [M] drivers/net/wireless/intel/iwlwifi/mvm/iwlmvm.o
2025-10-31T06:09:14.6300662Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-io.o
2025-10-31T06:09:15.1021133Z CC [M] drivers/i2c/busses/i2c-diolan-u2c.o
2025-10-31T06:09:15.3073642Z LD [M] drivers/net/wireless/marvell/libertas/libertas.o
2025-10-31T06:09:15.3788938Z LD [M] drivers/net/wireless/marvell/libertas/usb8xxx.o
2025-10-31T06:09:15.3951533Z LD [M] drivers/net/wireless/marvell/libertas/libertas_cs.o
2025-10-31T06:09:15.4143608Z LD [M] drivers/net/wireless/marvell/libertas/libertas_sdio.o
2025-10-31T06:09:15.4367603Z LD [M] drivers/net/wireless/marvell/libertas/libertas_spi.o
2025-10-31T06:09:15.4693186Z CC [M] drivers/net/ethernet/mellanox/mlx4/profile.o
2025-10-31T06:09:15.5094512Z CC [M] drivers/net/wireless/marvell/libertas_tf/main.o
2025-10-31T06:09:15.6065850Z CC [M] drivers/net/ethernet/intel/ice/ice_virtchnl_pf.o
2025-10-31T06:09:15.9707766Z CC [M] drivers/i2c/busses/i2c-dln2.o
2025-10-31T06:09:16.0898667Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-drv.o
2025-10-31T06:09:16.6414777Z CC [M] drivers/net/ethernet/mellanox/mlx4/qp.o
2025-10-31T06:09:16.6435349Z CC [M] drivers/i2c/busses/i2c-parport.o
2025-10-31T06:09:16.8716886Z CC [M] drivers/net/wireless/marvell/libertas_tf/cmd.o
2025-10-31T06:09:17.4011835Z CC [M] drivers/i2c/busses/i2c-robotfuzz-osif.o
2025-10-31T06:09:17.9713592Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-debug.o
2025-10-31T06:09:18.0284584Z CC [M] drivers/i2c/busses/i2c-taos-evm.o
2025-10-31T06:09:18.3181141Z CC [M] drivers/net/wireless/marvell/libertas_tf/if_usb.o
2025-10-31T06:09:18.4460223Z CC [M] drivers/net/ethernet/mellanox/mlx4/reset.o
2025-10-31T06:09:18.6401899Z CC [M] drivers/net/ethernet/intel/ice/ice_sriov.o
2025-10-31T06:09:18.7616470Z CC [M] drivers/i2c/busses/i2c-tiny-usb.o
2025-10-31T06:09:19.0613000Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-eeprom-read.o
2025-10-31T06:09:19.4958888Z CC [M] drivers/net/ethernet/mellanox/mlx4/sense.o
2025-10-31T06:09:19.6283711Z CC [M] drivers/i2c/busses/i2c-viperboard.o
2025-10-31T06:09:19.6448433Z LD [M] drivers/net/wireless/marvell/libertas_tf/libertas_tf.o
2025-10-31T06:09:19.6821861Z LD [M] drivers/net/wireless/marvell/libertas_tf/libertas_tf_usb.o
2025-10-31T06:09:19.7905282Z CC [M] drivers/net/wireless/marvell/mwifiex/main.o
2025-10-31T06:09:19.9308272Z CC [M] drivers/net/ethernet/intel/ice/ice_dcb.o
2025-10-31T06:09:20.1576760Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-eeprom-parse.o
2025-10-31T06:09:20.3467138Z CC [M] drivers/i2c/busses/i2c-cros-ec-tunnel.o
2025-10-31T06:09:20.4049064Z CC [M] drivers/net/ethernet/mellanox/mlx4/srq.o
2025-10-31T06:09:21.0785371Z CC [M] drivers/i2c/busses/i2c-mlxcpld.o
2025-10-31T06:09:21.3699651Z CC [M] drivers/net/ethernet/intel/ice/ice_dcb_nl.o
2025-10-31T06:09:21.5216035Z CC [M] drivers/net/ethernet/mellanox/mlx4/resource_tracker.o
2025-10-31T06:09:21.8013997Z AR drivers/i2c/busses/built-in.a
2025-10-31T06:09:21.8048155Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-phy-db.o
2025-10-31T06:09:22.1158484Z CC [M] drivers/net/wireless/marvell/mwifiex/init.o
2025-10-31T06:09:22.2450698Z AR drivers/i2c/muxes/built-in.a
2025-10-31T06:09:22.2661253Z CC [M] drivers/i2c/muxes/i2c-mux-gpio.o
2025-10-31T06:09:22.8112884Z CC [M] drivers/net/ethernet/intel/ice/ice_dcb_lib.o
2025-10-31T06:09:22.8634473Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.o
2025-10-31T06:09:23.1792888Z CC [M] drivers/i2c/muxes/i2c-mux-ltc4306.o
2025-10-31T06:09:23.5772359Z CC [M] drivers/net/wireless/marvell/mwifiex/cfp.o
2025-10-31T06:09:23.8501605Z CC [M] drivers/i2c/muxes/i2c-mux-mlxcpld.o
2025-10-31T06:09:24.3853484Z CC [M] drivers/i2c/muxes/i2c-mux-pca9541.o
2025-10-31T06:09:24.4891699Z CC [M] drivers/net/ethernet/intel/ice/ice_arfs.o
2025-10-31T06:09:24.8688526Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/drv.o
2025-10-31T06:09:24.8928367Z CC [M] drivers/i2c/muxes/i2c-mux-pca954x.o
2025-10-31T06:09:25.1422901Z CC [M] drivers/net/wireless/marvell/mwifiex/cmdevt.o
2025-10-31T06:09:25.4933340Z CC [M] drivers/i2c/muxes/i2c-mux-reg.o
2025-10-31T06:09:25.7301544Z CC [M] drivers/net/ethernet/mellanox/mlx4/crdump.o
2025-10-31T06:09:26.1793136Z CC [M] drivers/net/ethernet/intel/ice/ice_xsk.o
2025-10-31T06:09:26.1943224Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/rx.o
2025-10-31T06:09:26.2900262Z CC drivers/i2c/i2c-boardinfo.o
2025-10-31T06:09:26.5674685Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_main.o
2025-10-31T06:09:26.7079010Z CC [M] drivers/net/wireless/marvell/mwifiex/util.o
2025-10-31T06:09:27.0806231Z CC drivers/i2c/i2c-core-base.o
2025-10-31T06:09:27.6759354Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_tx.o
2025-10-31T06:09:28.1914228Z LD [M] drivers/net/ethernet/intel/ice/ice.o
2025-10-31T06:09:28.2670904Z CC [M] drivers/net/wireless/marvell/mwifiex/txrx.o
2025-10-31T06:09:28.3562587Z AR drivers/net/ethernet/intel/built-in.a
2025-10-31T06:09:28.3752708Z CC [M] drivers/net/ethernet/intel/e100.o
2025-10-31T06:09:28.5163125Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/tx.o
2025-10-31T06:09:29.2496842Z CC drivers/i2c/i2c-core-smbus.o
2025-10-31T06:09:29.5230533Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_rx.o
2025-10-31T06:09:29.7978608Z CC [M] drivers/net/wireless/marvell/mwifiex/wmm.o
2025-10-31T06:09:30.7246508Z CC [M] drivers/net/wireless/marvell/mwifiex/11n.o
2025-10-31T06:09:30.7943006Z CC drivers/i2c/i2c-core-acpi.o
2025-10-31T06:09:31.4035172Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/trans.o
2025-10-31T06:09:31.6472919Z CC drivers/i2c/i2c-core-slave.o
2025-10-31T06:09:31.8926437Z CC [M] drivers/net/wireless/mediatek/mt7601u/usb.o
2025-10-31T06:09:32.1621091Z CC [M] drivers/i2c/i2c-smbus.o
2025-10-31T06:09:32.2810107Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_ethtool.o
2025-10-31T06:09:32.4741602Z CC [M] drivers/net/wireless/marvell/mwifiex/11ac.o
2025-10-31T06:09:32.8768736Z CC [M] drivers/i2c/i2c-dev.o
2025-10-31T06:09:33.2549459Z CC [M] drivers/net/wireless/mediatek/mt7601u/init.o
2025-10-31T06:09:33.8241475Z CC [M] drivers/net/wireless/marvell/mwifiex/11n_aggr.o
2025-10-31T06:09:34.0656656Z CC [M] drivers/i2c/i2c-mux.o
2025-10-31T06:09:34.4589782Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info.o
2025-10-31T06:09:34.7106216Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_port.o
2025-10-31T06:09:34.7363532Z CC [M] drivers/net/wireless/mediatek/mt7601u/main.o
2025-10-31T06:09:34.7573611Z CC [M] drivers/i2c/i2c-stub.o
2025-10-31T06:09:35.1378255Z CC [M] drivers/net/wireless/marvell/mwifiex/11n_rxreorder.o
2025-10-31T06:09:35.6728307Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.o
2025-10-31T06:09:35.6740624Z CC [M] drivers/i2c/i2c-slave-eeprom.o
2025-10-31T06:09:35.8625316Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_cq.o
2025-10-31T06:09:36.0169896Z CC [M] drivers/net/wireless/mediatek/mt7601u/mcu.o
2025-10-31T06:09:36.1475971Z CC [M] drivers/i2c/i2c-slave-testunit.o
2025-10-31T06:09:36.6498428Z AR drivers/i2c/built-in.a
2025-10-31T06:09:36.7341865Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/usb.o
2025-10-31T06:09:36.9374748Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_resources.o
2025-10-31T06:09:37.0332959Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.o
2025-10-31T06:09:37.0693803Z CC [M] drivers/net/wireless/marvell/mwifiex/scan.o
2025-10-31T06:09:37.5919922Z CC [M] drivers/net/wireless/mediatek/mt7601u/trace.o
2025-10-31T06:09:38.0068520Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/usb_mcu.o
2025-10-31T06:09:38.0137503Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_netdev.o
2025-10-31T06:09:38.2823958Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.o
2025-10-31T06:09:39.5470348Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/pci.o
2025-10-31T06:09:39.5479898Z CC [M] drivers/net/wireless/marvell/mwifiex/join.o
2025-10-31T06:09:39.6726357Z CC [M] drivers/net/wireless/mediatek/mt7601u/dma.o
2025-10-31T06:09:39.7699956Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.o
2025-10-31T06:09:40.8797101Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/pci_mcu.o
2025-10-31T06:09:41.2747296Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_ioctl.o
2025-10-31T06:09:41.3669092Z CC [M] drivers/net/wireless/mediatek/mt7601u/core.o
2025-10-31T06:09:41.4557729Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-trans.o
2025-10-31T06:09:41.4660038Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_selftest.o
2025-10-31T06:09:42.0435526Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/init.o
2025-10-31T06:09:42.4655856Z CC [M] drivers/net/wireless/mediatek/mt7601u/eeprom.o
2025-10-31T06:09:42.5199605Z CC [M] drivers/net/wireless/intel/iwlwifi/queue/tx.o
2025-10-31T06:09:42.5833383Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_clock.o
2025-10-31T06:09:42.9927277Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_cmd.o
2025-10-31T06:09:43.1737271Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/main.o
2025-10-31T06:09:43.7969719Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_dcb_nl.o
2025-10-31T06:09:44.0655493Z CC [M] drivers/net/wireless/mediatek/mt7601u/phy.o
2025-10-31T06:09:44.5757170Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/eeprom.o
2025-10-31T06:09:44.7929962Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/img.o
2025-10-31T06:09:44.8603795Z CC [M] drivers/net/wireless/marvell/mwifiex/uap_cmd.o
2025-10-31T06:09:44.9184649Z LD [M] drivers/net/ethernet/mellanox/mlx4/mlx4_core.o
2025-10-31T06:09:45.1059114Z LD [M] drivers/net/ethernet/mellanox/mlx4/mlx4_en.o
2025-10-31T06:09:45.2886555Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/main.o
2025-10-31T06:09:45.7646961Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/notif-wait.o
2025-10-31T06:09:45.9186654Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/phy.o
2025-10-31T06:09:46.1043802Z CC [M] drivers/net/wireless/mediatek/mt7601u/mac.o
2025-10-31T06:09:46.1895332Z CC [M] drivers/net/wireless/marvell/mwifiex/ie.o
2025-10-31T06:09:46.6539830Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/dbg.o
2025-10-31T06:09:47.5608318Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/cmd.o
2025-10-31T06:09:47.7794378Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_cmdresp.o
2025-10-31T06:09:47.8917386Z CC [M] drivers/net/wireless/mediatek/mt7601u/util.o
2025-10-31T06:09:47.9521717Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0u.o
2025-10-31T06:09:47.9897718Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0e.o
2025-10-31T06:09:48.0241596Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common.o
2025-10-31T06:09:48.1610013Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.o
2025-10-31T06:09:49.0685733Z CC [M] drivers/net/wireless/mediatek/mt7601u/debugfs.o
2025-10-31T06:09:49.2703381Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/pnvm.o
2025-10-31T06:09:49.3975954Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_event.o
2025-10-31T06:09:49.8812799Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/mac.o
2025-10-31T06:09:49.9579150Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/debugfs.o
2025-10-31T06:09:50.3365273Z CC [M] drivers/net/wireless/mediatek/mt7601u/tx.o
2025-10-31T06:09:50.3793486Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/1000.o
2025-10-31T06:09:50.9813092Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/init.o
2025-10-31T06:09:51.1804149Z CC [M] drivers/net/wireless/marvell/mwifiex/uap_event.o
2025-10-31T06:09:51.2914739Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/2000.o
2025-10-31T06:09:51.3580585Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fw.o
2025-10-31T06:09:51.8552303Z LD [M] drivers/net/wireless/mediatek/mt7601u/mt7601u.o
2025-10-31T06:09:51.9860270Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/eq.o
2025-10-31T06:09:52.1370420Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/5000.o
2025-10-31T06:09:52.2339446Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/phy.o
2025-10-31T06:09:52.5145183Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_tx.o
2025-10-31T06:09:52.8271647Z AR drivers/net/wireless/mediatek/built-in.a
2025-10-31T06:09:52.8387310Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/mcu.o
2025-10-31T06:09:52.8959070Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/6000.o
2025-10-31T06:09:53.6798925Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/7000.o
2025-10-31T06:09:53.7725563Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_rx.o
2025-10-31T06:09:53.8915061Z AR drivers/net/ethernet/micrel/built-in.a
2025-10-31T06:09:53.9035944Z CC [M] drivers/net/ethernet/micrel/ks8842.o
2025-10-31T06:09:54.0436888Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/uar.o
2025-10-31T06:09:54.2904079Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci.o
2025-10-31T06:09:54.5455878Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/8000.o
2025-10-31T06:09:54.9459465Z CC [M] drivers/net/wireless/marvell/mwifiex/uap_txrx.o
2025-10-31T06:09:55.4531758Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/9000.o
2025-10-31T06:09:55.4882132Z CC [M] drivers/net/ethernet/micrel/ks8851_common.o
2025-10-31T06:09:55.5273540Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/pagealloc.o
2025-10-31T06:09:55.6706959Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci_main.o
2025-10-31T06:09:56.3801501Z CC [M] drivers/net/wireless/marvell/mwifiex/cfg80211.o
2025-10-31T06:09:56.4606627Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/22000.o
2025-10-31T06:09:56.7473475Z CC [M] drivers/net/ethernet/micrel/ks8851_spi.o
2025-10-31T06:09:56.9758836Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci_init.o
2025-10-31T06:09:57.0723584Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/health.o
2025-10-31T06:09:57.3137021Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/paging.o
2025-10-31T06:09:57.8887049Z CC [M] drivers/net/ethernet/micrel/ks8851_par.o
2025-10-31T06:09:58.3873324Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/smem.o
2025-10-31T06:09:58.4329260Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci_mcu.o
2025-10-31T06:09:58.9197189Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/mcg.o
2025-10-31T06:09:58.9433287Z CC [M] drivers/net/ethernet/micrel/ksz884x.o
2025-10-31T06:09:59.4397891Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/init.o
2025-10-31T06:09:59.5859237Z CC [M] drivers/net/wireless/marvell/mwifiex/ethtool.o
2025-10-31T06:09:59.7508142Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci_phy.o
2025-10-31T06:10:00.1299500Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/cq.o
2025-10-31T06:10:00.4679504Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/acpi.o
2025-10-31T06:10:00.7397183Z CC [M] drivers/net/wireless/marvell/mwifiex/11h.o
2025-10-31T06:10:01.4070462Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb.o
2025-10-31T06:10:01.6353778Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/alloc.o
2025-10-31T06:10:01.8438966Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/debugfs.o
2025-10-31T06:10:02.0999671Z CC [M] drivers/net/wireless/marvell/mwifiex/tdls.o
2025-10-31T06:10:02.4788627Z CC [M] drivers/net/wireless/microchip/wilc1000/cfg80211.o
2025-10-31T06:10:02.4811078Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_init.o
2025-10-31T06:10:03.1348701Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/port.o
2025-10-31T06:10:03.2121730Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-devtrace.o
2025-10-31T06:10:03.6616143Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_main.o
2025-10-31T06:10:04.3755947Z CC [M] drivers/net/wireless/marvell/mwifiex/debugfs.o
2025-10-31T06:10:04.5439790Z CC [M] drivers/net/wireless/microchip/wilc1000/netdev.o
2025-10-31T06:10:04.8649001Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_mac.o
2025-10-31T06:10:05.0900247Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/mr.o
2025-10-31T06:10:06.0212423Z LD [M] drivers/net/wireless/intel/iwlwifi/iwlwifi.o
2025-10-31T06:10:06.0836991Z CC [M] drivers/net/wireless/marvell/mwifiex/sdio.o
2025-10-31T06:10:06.1375359Z CC [M] drivers/net/wireless/microchip/wilc1000/mon.o
2025-10-31T06:10:06.1909574Z AR drivers/net/ethernet/microchip/built-in.a
2025-10-31T06:10:06.2004472Z CC [M] drivers/net/ethernet/microchip/enc28j60.o
2025-10-31T06:10:06.3901088Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_mcu.o
2025-10-31T06:10:06.3904806Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/pd.o
2025-10-31T06:10:07.4374923Z CC [M] drivers/net/wireless/microchip/wilc1000/hif.o
2025-10-31T06:10:07.7770952Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/transobj.o
2025-10-31T06:10:07.7982971Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_phy.o
2025-10-31T06:10:08.3234662Z CC [M] drivers/net/ethernet/microchip/encx24j600.o
2025-10-31T06:10:08.3908425Z CC [M] drivers/net/wireless/marvell/mwifiex/pcie.o
2025-10-31T06:10:09.2709506Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common.o
2025-10-31T06:10:09.3268837Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2e.o
2025-10-31T06:10:09.3841555Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2u.o
2025-10-31T06:10:09.4657851Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/vport.o
2025-10-31T06:10:09.4897387Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/pci.o
2025-10-31T06:10:09.5264470Z CC [M] drivers/net/wireless/microchip/wilc1000/wlan_cfg.o
2025-10-31T06:10:09.6888203Z CC [M] drivers/net/ethernet/microchip/encx24j600-regmap.o
2025-10-31T06:10:10.6306343Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/soc.o
2025-10-31T06:10:10.6993196Z CC [M] drivers/net/ethernet/microchip/lan743x_main.o
2025-10-31T06:10:10.8814817Z CC [M] drivers/net/wireless/marvell/mwifiex/usb.o
2025-10-31T06:10:11.1233503Z CC [M] drivers/net/wireless/microchip/wilc1000/wlan.o
2025-10-31T06:10:11.6759846Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/sriov.o
2025-10-31T06:10:11.7678575Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/main.o
2025-10-31T06:10:12.7232739Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex.o
2025-10-31T06:10:12.9343793Z CC [M] drivers/net/wireless/microchip/wilc1000/sdio.o
2025-10-31T06:10:12.9416488Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex_sdio.o
2025-10-31T06:10:12.9658629Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex_pcie.o
2025-10-31T06:10:13.0000062Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex_usb.o
2025-10-31T06:10:13.0882734Z AR drivers/net/wireless/marvell/built-in.a
2025-10-31T06:10:13.1120906Z CC [M] drivers/net/wireless/marvell/mwl8k.o
2025-10-31T06:10:13.2145997Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fs_cmd.o
2025-10-31T06:10:13.3408955Z CC [M] drivers/net/ethernet/microchip/lan743x_ethtool.o
2025-10-31T06:10:13.3885152Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/init.o
2025-10-31T06:10:14.6178866Z CC [M] drivers/net/wireless/microchip/wilc1000/spi.o
2025-10-31T06:10:14.7492647Z CC [M] drivers/net/ethernet/microchip/lan743x_ptp.o
2025-10-31T06:10:14.8601546Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/mcu.o
2025-10-31T06:10:15.0042775Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fs_core.o
2025-10-31T06:10:16.0673896Z LD [M] drivers/net/wireless/microchip/wilc1000/wilc1000.o
2025-10-31T06:10:16.1388710Z LD [M] drivers/net/wireless/microchip/wilc1000/wilc1000-sdio.o
2025-10-31T06:10:16.1650536Z LD [M] drivers/net/wireless/microchip/wilc1000/wilc1000-spi.o
2025-10-31T06:10:16.2418311Z AR drivers/net/wireless/microchip/built-in.a
2025-10-31T06:10:16.2970078Z LD [M] drivers/net/ethernet/microchip/lan743x.o
2025-10-31T06:10:16.3197018Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core.o
2025-10-31T06:10:16.3473766Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/core.o
2025-10-31T06:10:16.4077097Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/main.o
2025-10-31T06:10:16.6044111Z AR drivers/i3c/built-in.a
2025-10-31T06:10:16.6265493Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/pci_irq.o
2025-10-31T06:10:17.5749728Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/dma.o
2025-10-31T06:10:18.2060517Z CC [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw_fsm.o
2025-10-31T06:10:18.5708334Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fs_counters.o
2025-10-31T06:10:18.6005411Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/init.o
2025-10-31T06:10:18.8727430Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/mac.o
2025-10-31T06:10:19.2883915Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_keys.o
2025-10-31T06:10:19.3783298Z CC [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw_mfa2_tlv_multi.o
2025-10-31T06:10:19.8440130Z CC [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw_mfa2.o
2025-10-31T06:10:19.9246381Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_actions.o
2025-10-31T06:10:20.2199308Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/rl.o
2025-10-31T06:10:20.2955710Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mcu.o
2025-10-31T06:10:20.9709123Z LD [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw.o
2025-10-31T06:10:21.0330680Z AR drivers/net/ethernet/mellanox/built-in.a
2025-10-31T06:10:21.0812418Z CC [M] drivers/net/vxlan/vxlan_core.o
2025-10-31T06:10:21.3617978Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/eeprom.o
2025-10-31T06:10:21.8876089Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lag.o
2025-10-31T06:10:21.9886282Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_env.o
2025-10-31T06:10:22.5913798Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/beacon.o
2025-10-31T06:10:23.2999281Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/eeprom.o
2025-10-31T06:10:23.7153594Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_hwmon.o
2025-10-31T06:10:23.8944424Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/dev.o
2025-10-31T06:10:24.0060752Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/debugfs.o
2025-10-31T06:10:24.6807418Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mac.o
2025-10-31T06:10:25.2378566Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_thermal.o
2025-10-31T06:10:25.3918493Z LD [M] drivers/net/vxlan/vxlan.o
2025-10-31T06:10:25.4336754Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/events.o
2025-10-31T06:10:25.4554172Z AR drivers/net/ethernet/mscc/built-in.a
2025-10-31T06:10:25.4754939Z CC [M] drivers/net/ethernet/mscc/ocelot.o
2025-10-31T06:10:25.4873346Z LD [M] drivers/net/wireless/mediatek/mt76/mt7603/mt7603e.o
2025-10-31T06:10:25.6400693Z CC [M] drivers/net/appletalk/ipddp.o
2025-10-31T06:10:26.9141281Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/wq.o
2025-10-31T06:10:26.9144796Z CC [M] drivers/net/ethernet/mellanox/mlxsw/pci.o
2025-10-31T06:10:27.0244861Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00dev.o
2025-10-31T06:10:27.4785498Z CC [M] drivers/net/ethernet/mscc/ocelot_io.o
2025-10-31T06:10:27.5227926Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/debugfs.o
2025-10-31T06:10:28.3973644Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/gid.o
2025-10-31T06:10:28.7214334Z CC [M] drivers/net/ethernet/mscc/ocelot_police.o
2025-10-31T06:10:28.8280632Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00mac.o
2025-10-31T06:10:29.0124677Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/trace.o
2025-10-31T06:10:29.1924819Z CC [M] drivers/net/ethernet/mellanox/mlxsw/i2c.o
2025-10-31T06:10:29.9523736Z CC [M] drivers/net/ethernet/mscc/ocelot_vcap.o
2025-10-31T06:10:29.9881605Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.o
2025-10-31T06:10:30.2618274Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/pci.o
2025-10-31T06:10:30.3555715Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00config.o
2025-10-31T06:10:30.5005320Z CC [M] drivers/net/ethernet/mellanox/mlxsw/switchib.o
2025-10-31T06:10:31.4031785Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/pci_vsc.o
2025-10-31T06:10:31.6970187Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00queue.o
2025-10-31T06:10:31.7064929Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/pci_init.o
2025-10-31T06:10:31.7678054Z CC [M] drivers/net/ethernet/mscc/ocelot_flower.o
2025-10-31T06:10:32.2311609Z CC [M] drivers/net/ethernet/mellanox/mlxsw/switchx2.o
2025-10-31T06:10:32.7511002Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/dm.o
2025-10-31T06:10:32.9170118Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/dma.o
2025-10-31T06:10:33.4672733Z CC [M] drivers/net/ethernet/mscc/ocelot_ptp.o
2025-10-31T06:10:33.6220218Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00link.o
2025-10-31T06:10:34.2021549Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/fs_tracepoint.o
2025-10-31T06:10:34.2778673Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/pci_mac.o
2025-10-31T06:10:34.3613556Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum.o
2025-10-31T06:10:34.8379026Z LD [M] drivers/net/ethernet/mscc/mscc_ocelot_switch_lib.o
2025-10-31T06:10:34.9416412Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_buffers.o
2025-10-31T06:10:35.2271425Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00debug.o
2025-10-31T06:10:35.4400512Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mmio.o
2025-10-31T06:10:36.2207621Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.o
2025-10-31T06:10:36.7717269Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/usb_sdio.o
2025-10-31T06:10:37.0904971Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00crypto.o
2025-10-31T06:10:37.7220405Z CC [M] drivers/net/can/dev/dev.o
2025-10-31T06:10:38.1792122Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/usb.o
2025-10-31T06:10:38.3111567Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/crdump.o
2025-10-31T06:10:38.4833925Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.o
2025-10-31T06:10:38.5013842Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00firmware.o
2025-10-31T06:10:39.3945964Z CC [M] drivers/net/can/dev/rx-offload.o
2025-10-31T06:10:39.4433576Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/usb_mcu.o
2025-10-31T06:10:39.5936267Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/devlink.o
2025-10-31T06:10:39.8409141Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00leds.o
2025-10-31T06:10:40.5254119Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/sdio.o
2025-10-31T06:10:40.6321159Z LD [M] drivers/net/can/dev/can-dev.o
2025-10-31T06:10:40.8006246Z CC [M] drivers/net/can/spi/mcp251xfd/mcp251xfd-core.o
2025-10-31T06:10:41.0688121Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00mmio.o
2025-10-31T06:10:41.3239874Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/rsc_dump.o
2025-10-31T06:10:41.4876701Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_router.o
2025-10-31T06:10:42.0153650Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/sdio_mcu.o
2025-10-31T06:10:42.5561306Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00pci.o
2025-10-31T06:10:42.7761518Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fw_reset.o
2025-10-31T06:10:43.2321429Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/sdio_txrx.o
2025-10-31T06:10:43.3481150Z CC [M] drivers/net/can/spi/mcp251xfd/mcp251xfd-crc16.o
2025-10-31T06:10:43.8708287Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00usb.o
2025-10-31T06:10:44.2679094Z CC [M] drivers/net/can/spi/mcp251xfd/mcp251xfd-regmap.o
2025-10-31T06:10:44.4364988Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_main.o
2025-10-31T06:10:44.6993526Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common.o
2025-10-31T06:10:44.7444790Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7615e.o
2025-10-31T06:10:44.7742564Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common.o
2025-10-31T06:10:44.7892826Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663u.o
2025-10-31T06:10:44.8077935Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663s.o
2025-10-31T06:10:44.8824900Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/pci.o
2025-10-31T06:10:45.4871588Z LD [M] drivers/net/can/spi/mcp251xfd/mcp251xfd.o
2025-10-31T06:10:45.5249421Z CC [M] drivers/net/can/spi/hi311x.o
2025-10-31T06:10:46.0815216Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800lib.o
2025-10-31T06:10:46.1223527Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/init.o
2025-10-31T06:10:47.1235929Z CC [M] drivers/net/can/spi/mcp251x.o
2025-10-31T06:10:47.8869759Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/dma.o
2025-10-31T06:10:47.9185382Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum1_kvdl.o
2025-10-31T06:10:49.0516433Z CC [M] drivers/net/can/usb/kvaser_usb/kvaser_usb_core.o
2025-10-31T06:10:49.2061059Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/eeprom.o
2025-10-31T06:10:49.4400146Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum2_kvdl.o
2025-10-31T06:10:50.4865966Z CC [M] drivers/net/can/usb/kvaser_usb/kvaser_usb_leaf.o
2025-10-31T06:10:50.5414220Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/main.o
2025-10-31T06:10:51.0696156Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_kvdl.o
2025-10-31T06:10:52.1673730Z CC [M] drivers/net/can/usb/kvaser_usb/kvaser_usb_hydra.o
2025-10-31T06:10:52.1857589Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/mcu.o
2025-10-31T06:10:52.7183083Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.o
2025-10-31T06:10:53.3643905Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_common.o
2025-10-31T06:10:53.9697915Z LD [M] drivers/net/can/usb/kvaser_usb/kvaser_usb.o
2025-10-31T06:10:54.0253528Z CC [M] drivers/net/can/usb/peak_usb/pcan_usb_core.o
2025-10-31T06:10:54.8463486Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/mac.o
2025-10-31T06:10:54.8752623Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_fs.o
2025-10-31T06:10:55.1184881Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800mmio.o
2025-10-31T06:10:55.3148629Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_ctcam.o
2025-10-31T06:10:55.5869828Z CC [M] drivers/net/can/usb/peak_usb/pcan_usb.o
2025-10-31T06:10:56.8817331Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_atcam.o
2025-10-31T06:10:56.9058926Z CC [M] drivers/net/can/usb/peak_usb/pcan_usb_pro.o
2025-10-31T06:10:56.9281517Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2400pci.o
2025-10-31T06:10:56.9971546Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/debugfs.o
2025-10-31T06:10:57.2444068Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.o
2025-10-31T06:10:58.4855429Z LD [M] drivers/net/wireless/mediatek/mt76/mt7915/mt7915e.o
2025-10-31T06:10:58.5443956Z CC [M] drivers/net/can/usb/peak_usb/pcan_usb_fd.o
2025-10-31T06:10:58.5740233Z CC [M] drivers/net/wireless/mediatek/mt76/mmio.o
2025-10-31T06:10:59.1725596Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_erp.o
2025-10-31T06:10:59.5068573Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2500pci.o
2025-10-31T06:10:59.9344801Z CC [M] drivers/net/wireless/mediatek/mt76/util.o
2025-10-31T06:11:00.0531184Z LD [M] drivers/net/can/usb/peak_usb/peak_usb.o
2025-10-31T06:11:00.0971868Z CC [M] drivers/net/can/usb/usb_8dev.o
2025-10-31T06:11:01.2606775Z CC [M] drivers/net/wireless/mediatek/mt76/trace.o
2025-10-31T06:11:01.2877109Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum1_acl_tcam.o
2025-10-31T06:11:01.4033941Z CC [M] drivers/net/can/usb/ems_usb.o
2025-10-31T06:11:02.5573541Z CC [M] drivers/net/wireless/ralink/rt2x00/rt61pci.o
2025-10-31T06:11:02.7280354Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum2_acl_tcam.o
2025-10-31T06:11:02.7512385Z CC [M] drivers/net/wireless/mediatek/mt76/dma.o
2025-10-31T06:11:03.0336492Z CC [M] drivers/net/can/usb/esd_usb2.o
2025-10-31T06:11:04.3311772Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.o
2025-10-31T06:11:04.5007051Z CC [M] drivers/net/can/usb/gs_usb.o
2025-10-31T06:11:04.6243059Z CC [M] drivers/net/wireless/mediatek/mt76/mac80211.o
2025-10-31T06:11:05.7743387Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800pci.o
2025-10-31T06:11:06.0086186Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl.o
2025-10-31T06:11:06.0353021Z CC [M] drivers/net/can/usb/mcba_usb.o
2025-10-31T06:11:06.2549718Z CC [M] drivers/net/wireless/mediatek/mt76/debugfs.o
2025-10-31T06:11:06.6515500Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_tx.o
2025-10-31T06:11:07.2792844Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2500usb.o
2025-10-31T06:11:07.4650168Z CC [M] drivers/net/wireless/mediatek/mt76/eeprom.o
2025-10-31T06:11:07.4846041Z CC [M] drivers/net/can/usb/ucan.o
2025-10-31T06:11:08.0297188Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_flow.o
2025-10-31T06:11:08.5400827Z CC [M] drivers/net/wireless/mediatek/mt76/tx.o
2025-10-31T06:11:09.3607160Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_rx.o
2025-10-31T06:11:09.3824050Z CC [M] drivers/net/can/softing/softing_main.o
2025-10-31T06:11:09.5168142Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_matchall.o
2025-10-31T06:11:09.6419358Z CC [M] drivers/net/wireless/ralink/rt2x00/rt73usb.o
2025-10-31T06:11:10.0401621Z CC [M] drivers/net/wireless/mediatek/mt76/agg-rx.o
2025-10-31T06:11:10.7195732Z CC [M] drivers/net/can/softing/softing_fw.o
2025-10-31T06:11:11.1651636Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_flower.o
2025-10-31T06:11:11.3298211Z CC [M] drivers/net/wireless/mediatek/mt76/mcu.o
2025-10-31T06:11:12.0893496Z CC [M] drivers/net/can/softing/softing_cs.o
2025-10-31T06:11:12.4952712Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_dim.o
2025-10-31T06:11:12.4961455Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800usb.o
2025-10-31T06:11:12.5498053Z CC [M] drivers/net/wireless/mediatek/mt76/pci.o
2025-10-31T06:11:12.9120133Z LD [M] drivers/net/can/softing/softing.o
2025-10-31T06:11:12.9861418Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.o
2025-10-31T06:11:13.0045020Z CC [M] drivers/net/can/cc770/cc770.o
2025-10-31T06:11:13.6781381Z CC [M] drivers/net/wireless/mediatek/mt76/usb.o
2025-10-31T06:11:13.9820768Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_txrx.o
2025-10-31T06:11:14.0107768Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2x00lib.o
2025-10-31T06:11:14.2558346Z AR drivers/net/wireless/ralink/built-in.a
2025-10-31T06:11:14.2968134Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xdp.o
2025-10-31T06:11:14.4573011Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_fid.o
2025-10-31T06:11:14.4823557Z CC [M] drivers/net/can/cc770/cc770_platform.o
2025-10-31T06:11:15.5815498Z CC [M] drivers/net/wireless/mediatek/mt76/usb_trace.o
2025-10-31T06:11:15.5837621Z CC [M] drivers/media/i2c/smiapp/smiapp-core.o
2025-10-31T06:11:15.6982176Z CC [M] drivers/net/can/c_can/c_can.o
2025-10-31T06:11:16.1719165Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_stats.o
2025-10-31T06:11:16.8118760Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_ipip.o
2025-10-31T06:11:17.0375916Z CC [M] drivers/net/wireless/mediatek/mt76/sdio.o
2025-10-31T06:11:17.5166409Z CC [M] drivers/net/can/c_can/c_can_platform.o
2025-10-31T06:11:17.6252800Z CC [M] drivers/media/i2c/smiapp/smiapp-regs.o
2025-10-31T06:11:18.4427660Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_flex_actions.o
2025-10-31T06:11:18.4813740Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_util.o
2025-10-31T06:11:18.4933626Z CC [M] drivers/media/i2c/smiapp/smiapp-quirk.o
2025-10-31T06:11:18.7946815Z CC [M] drivers/net/can/c_can/c_can_pci.o
2025-10-31T06:11:19.1134392Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_selftest.o
2025-10-31T06:11:19.3499092Z CC [M] drivers/media/i2c/smiapp/smiapp-limits.o
2025-10-31T06:11:19.8819341Z LD [M] drivers/media/i2c/smiapp/smiapp.o
2025-10-31T06:11:19.9427713Z CC [M] drivers/media/i2c/et8ek8/et8ek8_mode.o
2025-10-31T06:11:19.9575928Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_flex_keys.o
2025-10-31T06:11:20.0466579Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_mac.o
2025-10-31T06:11:20.2715483Z CC [M] drivers/net/can/ifi_canfd/ifi_canfd.o
2025-10-31T06:11:20.3750756Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/port.o
2025-10-31T06:11:20.5658938Z CC [M] drivers/media/i2c/et8ek8/et8ek8_driver.o
2025-10-31T06:11:21.1539520Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum1_mr_tcam.o
2025-10-31T06:11:21.6971898Z LD [M] drivers/media/i2c/et8ek8/et8ek8.o
2025-10-31T06:11:21.7765189Z CC [M] drivers/media/i2c/cx25840/cx25840-core.o
2025-10-31T06:11:21.8683485Z CC [M] drivers/net/can/m_can/m_can.o
2025-10-31T06:11:22.0264251Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/monitor_stats.o
2025-10-31T06:11:22.3007790Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_mcu.o
2025-10-31T06:11:23.1087081Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum2_mr_tcam.o
2025-10-31T06:11:23.3326990Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/health.o
2025-10-31T06:11:23.5538646Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.o
2025-10-31T06:11:23.6976915Z CC [M] drivers/net/can/m_can/m_can_platform.o
2025-10-31T06:11:24.6552857Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/reporter_tx.o
2025-10-31T06:11:24.7668417Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_mr_tcam.o
2025-10-31T06:11:24.8148522Z CC [M] drivers/net/can/m_can/tcan4x5x.o
2025-10-31T06:11:24.8910122Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_phy.o
2025-10-31T06:11:24.9996260Z CC [M] drivers/media/i2c/cx25840/cx25840-audio.o
2025-10-31T06:11:25.7124296Z CC [M] drivers/media/i2c/cx25840/cx25840-firmware.o
2025-10-31T06:11:26.2306964Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_mmio.o
2025-10-31T06:11:26.2957405Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.o
2025-10-31T06:11:26.3298175Z CC [M] drivers/net/can/peak_canfd/peak_pciefd_main.o
2025-10-31T06:11:26.4451344Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_mr.o
2025-10-31T06:11:26.4733522Z CC [M] drivers/media/i2c/cx25840/cx25840-vbi.o
2025-10-31T06:11:27.3373903Z CC [M] drivers/media/i2c/cx25840/cx25840-ir.o
2025-10-31T06:11:27.7176279Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_txrx.o
2025-10-31T06:11:27.7989730Z CC [M] drivers/net/can/peak_canfd/peak_canfd.o
2025-10-31T06:11:27.8377455Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/params.o
2025-10-31T06:11:28.6299323Z LD [M] drivers/media/i2c/cx25840/cx25840.o
2025-10-31T06:11:28.7074509Z CC [M] drivers/media/i2c/m5mols/m5mols_core.o
2025-10-31T06:11:28.8109722Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_qdisc.o
2025-10-31T06:11:29.0823414Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_trace.o
2025-10-31T06:11:29.1913528Z LD [M] drivers/net/can/peak_canfd/peak_pciefd.o
2025-10-31T06:11:29.2414121Z CC [M] drivers/net/can/sja1000/ems_pci.o
2025-10-31T06:11:29.4144192Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xsk/pool.o
2025-10-31T06:11:30.3161224Z CC [M] drivers/media/i2c/m5mols/m5mols_controls.o
2025-10-31T06:11:30.3960291Z CC [M] drivers/net/can/sja1000/f81601.o
2025-10-31T06:11:30.4551920Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_debugfs.o
2025-10-31T06:11:30.8546886Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_span.o
2025-10-31T06:11:31.0190652Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xsk/setup.o
2025-10-31T06:11:31.3649688Z CC [M] drivers/media/i2c/m5mols/m5mols_capture.o
2025-10-31T06:11:31.4884041Z CC [M] drivers/net/can/sja1000/kvaser_pci.o
2025-10-31T06:11:31.6054996Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_dfs.o
2025-10-31T06:11:32.2550521Z LD [M] drivers/media/i2c/m5mols/m5mols.o
2025-10-31T06:11:32.3520347Z CC [M] drivers/media/i2c/s5c73m3/s5c73m3-core.o
2025-10-31T06:11:32.5937333Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.o
2025-10-31T06:11:32.7877106Z CC [M] drivers/net/can/sja1000/peak_pci.o
2025-10-31T06:11:32.9887540Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_beacon.o
2025-10-31T06:11:33.2187039Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_nve.o
2025-10-31T06:11:34.0515147Z CC [M] drivers/media/i2c/s5c73m3/s5c73m3-spi.o
2025-10-31T06:11:34.0735547Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xsk/tx.o
2025-10-31T06:11:34.1087834Z CC [M] drivers/net/can/sja1000/peak_pcmcia.o
2025-10-31T06:11:34.3084408Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_usb_mcu.o
2025-10-31T06:11:34.8854135Z CC [M] drivers/media/i2c/s5c73m3/s5c73m3-ctrls.o
2025-10-31T06:11:35.4209905Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.o
2025-10-31T06:11:35.5837622Z CC [M] drivers/net/can/sja1000/plx_pci.o
2025-10-31T06:11:35.6603393Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/devlink.o
2025-10-31T06:11:35.7093733Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_usb_core.o
2025-10-31T06:11:35.9639672Z LD [M] drivers/media/i2c/s5c73m3/s5c73m3.o
2025-10-31T06:11:36.0328750Z AR drivers/media/i2c/built-in.a
2025-10-31T06:11:36.0530188Z CC [M] drivers/media/i2c/msp3400-driver.o
2025-10-31T06:11:36.7261164Z CC [M] drivers/net/can/sja1000/sja1000.o
2025-10-31T06:11:36.9514079Z LD [M] drivers/net/wireless/mediatek/mt76/mt76.o
2025-10-31T06:11:37.0006124Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_dpipe.o
2025-10-31T06:11:37.0410600Z LD [M] drivers/net/wireless/mediatek/mt76/mt76-usb.o
2025-10-31T06:11:37.0616342Z LD [M] drivers/net/wireless/mediatek/mt76/mt76-sdio.o
2025-10-31T06:11:37.0795135Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x02-lib.o
2025-10-31T06:11:37.1327250Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x02-usb.o
2025-10-31T06:11:37.1434988Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_arfs.o
2025-10-31T06:11:37.2070045Z CC [M] drivers/media/i2c/msp3400-kthreads.o
2025-10-31T06:11:37.3491412Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/dev.o
2025-10-31T06:11:38.2665114Z CC [M] drivers/net/can/sja1000/sja1000_platform.o
2025-10-31T06:11:38.6281762Z CC [M] drivers/media/i2c/aptina-pll.o
2025-10-31T06:11:38.8666427Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_trap.o
2025-10-31T06:11:39.0314172Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_fs_ethtool.o
2025-10-31T06:11:39.1276132Z CC [M] drivers/media/i2c/tvaudio.o
2025-10-31T06:11:39.2948910Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/rtl8225.o
2025-10-31T06:11:39.6723582Z CC [M] drivers/net/can/vcan.o
2025-10-31T06:11:40.5147383Z CC [M] drivers/media/i2c/tda7432.o
2025-10-31T06:11:40.6644523Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_ethtool.o
2025-10-31T06:11:40.7341168Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/sa2400.o
2025-10-31T06:11:40.9373823Z CC [M] drivers/net/can/vxcan.o
2025-10-31T06:11:41.0418602Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.o
2025-10-31T06:11:41.3959774Z CC [M] drivers/media/i2c/saa6588.o
2025-10-31T06:11:41.9210579Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/max2820.o
2025-10-31T06:11:42.2618457Z CC [M] drivers/media/i2c/tda9840.o
2025-10-31T06:11:42.2862776Z CC [M] drivers/net/can/slcan.o
2025-10-31T06:11:42.7306658Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_policer.o
2025-10-31T06:11:43.0107392Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/grf5101.o
2025-10-31T06:11:43.0287504Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/port_buffer.o
2025-10-31T06:11:43.1532722Z CC [M] drivers/media/i2c/tea6415c.o
2025-10-31T06:11:43.8198847Z CC [M] drivers/net/can/janz-ican3.o
2025-10-31T06:11:44.0177186Z CC [M] drivers/media/i2c/tea6420.o
2025-10-31T06:11:44.2188220Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/rtl8225se.o
2025-10-31T06:11:44.3502816Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_dcb.o
2025-10-31T06:11:44.6714498Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lag_mp.o
2025-10-31T06:11:44.9064845Z CC [M] drivers/media/i2c/saa7115.o
2025-10-31T06:11:45.5883947Z CC [M] drivers/net/can/kvaser_pciefd.o
2025-10-31T06:11:45.6240100Z LD [M] drivers/net/wireless/realtek/rtl818x/rtl8180/rtl818x_pci.o
2025-10-31T06:11:45.7309105Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8187/dev.o
2025-10-31T06:11:46.1994217Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_ptp.o
2025-10-31T06:11:46.2436553Z CC [M] drivers/media/i2c/saa717x.o
2025-10-31T06:11:46.3030860Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/geneve.o
2025-10-31T06:11:47.4486319Z CC [M] drivers/media/i2c/saa7127.o
2025-10-31T06:11:47.5641323Z CC [M] drivers/net/ethernet/mellanox/mlxsw/minimal.o
2025-10-31T06:11:47.6455920Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8225.o
2025-10-31T06:11:47.7871146Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/port_tun.o
2025-10-31T06:11:48.3822933Z AR drivers/media/tuners/built-in.a
2025-10-31T06:11:48.4070815Z CC [M] drivers/media/tuners/tuner-xc2028.o
2025-10-31T06:11:48.5065911Z CC [M] drivers/media/i2c/saa6752hs.o
2025-10-31T06:11:48.8340102Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_core.o
2025-10-31T06:11:48.8718873Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci.o
2025-10-31T06:11:48.8895425Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c.o
2025-10-31T06:11:48.9044988Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchib.o
2025-10-31T06:11:48.9199320Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchx2.o
2025-10-31T06:11:48.9369078Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_spectrum.o
2025-10-31T06:11:49.1289863Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_minimal.o
2025-10-31T06:11:49.2060231Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_rep.o
2025-10-31T06:11:49.2136632Z CC [M] drivers/media/i2c/ad5820.o
2025-10-31T06:11:49.5258798Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8187/leds.o
2025-10-31T06:11:49.7813112Z CC [M] drivers/media/i2c/ak7375.o
2025-10-31T06:11:49.8528808Z CC [M] drivers/media/tuners/tuner-simple.o
2025-10-31T06:11:50.0650104Z AR drivers/pps/clients/built-in.a
2025-10-31T06:11:50.0769505Z CC [M] drivers/pps/clients/pps-ktimer.o
2025-10-31T06:11:50.5024559Z CC [M] drivers/pps/clients/pps-ldisc.o
2025-10-31T06:11:50.5544090Z CC [M] drivers/media/i2c/dw9714.o
2025-10-31T06:11:50.8946884Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8187/rfkill.o
2025-10-31T06:11:51.1639923Z CC [M] drivers/pps/clients/pps_parport.o
2025-10-31T06:11:51.2209469Z CC [M] drivers/media/tuners/tuner-types.o
2025-10-31T06:11:51.3978457Z CC [M] drivers/media/i2c/dw9768.o
2025-10-31T06:11:51.4033193Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/rep/bond.o
2025-10-31T06:11:51.7715918Z CC [M] drivers/pps/clients/pps-gpio.o
2025-10-31T06:11:51.8659483Z CC [M] drivers/media/tuners/mt20xx.o
2025-10-31T06:11:51.9419722Z LD [M] drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8187.o
2025-10-31T06:11:52.0291602Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/main.o
2025-10-31T06:11:52.4339569Z CC [M] drivers/media/i2c/dw9807-vcm.o
2025-10-31T06:11:52.5254107Z AR drivers/pps/generators/built-in.a
2025-10-31T06:11:52.5471466Z CC drivers/pps/pps.o
2025-10-31T06:11:52.8988361Z CC [M] drivers/media/tuners/tda8290.o
2025-10-31T06:11:53.1410564Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.o
2025-10-31T06:11:53.1411591Z CC [M] drivers/media/i2c/vs6624.o
2025-10-31T06:11:53.3265554Z CC drivers/pps/kapi.o
2025-10-31T06:11:53.5320905Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.o
2025-10-31T06:11:53.9503491Z CC [M] drivers/media/tuners/tea5767.o
2025-10-31T06:11:53.9710689Z CC drivers/pps/sysfs.o
2025-10-31T06:11:54.0291662Z CC [M] drivers/media/i2c/tvp5150.o
2025-10-31T06:11:54.4881740Z AR drivers/pps/built-in.a
2025-10-31T06:11:54.5136058Z CC [M] drivers/media/i2c/tw2804.o
2025-10-31T06:11:54.7444658Z CC [M] drivers/media/tuners/tea5761.o
2025-10-31T06:11:54.9524839Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_tc.o
2025-10-31T06:11:55.2455577Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/fw_common.o
2025-10-31T06:11:55.5893680Z CC [M] drivers/media/tuners/tda9887.o
2025-10-31T06:11:55.6167481Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/rep/tc.o
2025-10-31T06:11:55.6478195Z CC [M] drivers/media/i2c/tw9903.o
2025-10-31T06:11:56.4217100Z CC [M] drivers/media/i2c/tw9906.o
2025-10-31T06:11:56.8101611Z CC [M] drivers/media/tuners/tda827x.o
2025-10-31T06:11:56.8475873Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.o
2025-10-31T06:11:57.0870076Z CC [M] drivers/media/i2c/cs3308.o
2025-10-31T06:11:57.4723374Z AR drivers/media/rc/keymaps/built-in.a
2025-10-31T06:11:57.4830445Z CC [M] drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.o
2025-10-31T06:11:57.7866802Z CC [M] drivers/media/tuners/tda18271-maps.o
2025-10-31T06:11:57.8942762Z CC [M] drivers/media/i2c/cs5345.o
2025-10-31T06:11:58.0365171Z CC [M] drivers/media/rc/keymaps/rc-alink-dtu-m.o
2025-10-31T06:11:58.5747764Z CC [M] drivers/media/tuners/tda18271-common.o
2025-10-31T06:11:58.5975501Z CC [M] drivers/media/i2c/cs53l32a.o
2025-10-31T06:11:58.6869612Z CC [M] drivers/media/rc/keymaps/rc-anysee.o
2025-10-31T06:11:59.1166473Z CC [M] drivers/media/rc/keymaps/rc-apac-viewcomp.o
2025-10-31T06:11:59.1248079Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common.o
2025-10-31T06:11:59.1821286Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/dm.o
2025-10-31T06:11:59.4670613Z CC [M] drivers/media/tuners/tda18271-fe.o
2025-10-31T06:11:59.5083119Z CC [M] drivers/media/i2c/m52790.o
2025-10-31T06:11:59.5365709Z CC [M] drivers/media/rc/keymaps/rc-astrometa-t2hybrid.o
2025-10-31T06:11:59.7677785Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/rep/neigh.o
2025-10-31T06:12:00.1807104Z CC [M] drivers/media/rc/keymaps/rc-asus-pc39.o
2025-10-31T06:12:00.2287987Z CC [M] drivers/media/i2c/uda1342.o
2025-10-31T06:12:00.5155888Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/hw.o
2025-10-31T06:12:00.6192180Z CC [M] drivers/media/tuners/xc5000.o
2025-10-31T06:12:00.6580878Z CC [M] drivers/media/rc/keymaps/rc-asus-ps3-100.o
2025-10-31T06:12:00.9970502Z CC [M] drivers/media/i2c/wm8775.o
2025-10-31T06:12:01.1916770Z CC [M] drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.o
2025-10-31T06:12:01.6566167Z CC [M] drivers/media/rc/keymaps/rc-ati-x10.o
2025-10-31T06:12:01.7046999Z CC [M] drivers/media/i2c/wm8739.o
2025-10-31T06:12:01.7433130Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/mapping.o
2025-10-31T06:12:01.9503685Z CC [M] drivers/media/tuners/xc4000.o
2025-10-31T06:12:02.0620914Z CC [M] drivers/media/rc/keymaps/rc-avermedia-a16d.o
2025-10-31T06:12:02.4537576Z CC [M] drivers/media/i2c/vp27smpx.o
2025-10-31T06:12:02.5288416Z CC [M] drivers/media/rc/keymaps/rc-avermedia.o
2025-10-31T06:12:02.6100187Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/fs_chains.o
2025-10-31T06:12:03.0318317Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/led.o
2025-10-31T06:12:03.1546667Z CC [M] drivers/media/rc/keymaps/rc-avermedia-cardbus.o
2025-10-31T06:12:03.2410899Z CC [M] drivers/media/i2c/sony-btf-mpx.o
2025-10-31T06:12:03.5175293Z CC [M] drivers/media/tuners/mt2060.o
2025-10-31T06:12:03.7666921Z CC [M] drivers/media/rc/keymaps/rc-avermedia-dvbt.o
2025-10-31T06:12:04.1333819Z CC [M] drivers/media/i2c/upd64031a.o
2025-10-31T06:12:04.1658790Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.o
2025-10-31T06:12:04.2011259Z CC [M] drivers/media/rc/keymaps/rc-avermedia-m135a.o
2025-10-31T06:12:04.2638055Z CC [M] drivers/media/tuners/mt2063.o
2025-10-31T06:12:04.6790259Z CC [M] drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.o
2025-10-31T06:12:04.9159200Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun.o
2025-10-31T06:12:05.0116275Z CC [M] drivers/media/i2c/upd64083.o
2025-10-31T06:12:05.2215799Z CC [M] drivers/media/rc/keymaps/rc-avermedia-rm-ks.o
2025-10-31T06:12:05.6374230Z CC [M] drivers/media/rc/keymaps/rc-avertv-303.o
2025-10-31T06:12:05.6910380Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/rf.o
2025-10-31T06:12:05.6921474Z CC [M] drivers/media/tuners/mt2266.o
2025-10-31T06:12:05.7586847Z CC [M] drivers/media/i2c/ov2640.o
2025-10-31T06:12:06.0686942Z CC [M] drivers/media/rc/keymaps/rc-azurewave-ad-tu700.o
2025-10-31T06:12:06.5352862Z CC [M] drivers/media/tuners/qt1010.o
2025-10-31T06:12:06.5422513Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_vxlan.o
2025-10-31T06:12:06.5471179Z CC [M] drivers/media/rc/keymaps/rc-beelink-gs1.o
2025-10-31T06:12:06.9455763Z CC [M] drivers/media/i2c/ov2680.o
2025-10-31T06:12:06.9991271Z CC [M] drivers/media/rc/keymaps/rc-behold.o
2025-10-31T06:12:07.3011927Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/sw.o
2025-10-31T06:12:07.3837638Z CC [M] drivers/media/tuners/mt2131.o
2025-10-31T06:12:07.4846934Z CC [M] drivers/media/rc/keymaps/rc-behold-columbus.o
2025-10-31T06:12:08.0306834Z CC [M] drivers/media/rc/keymaps/rc-budget-ci-old.o
2025-10-31T06:12:08.1405491Z CC [M] drivers/media/tuners/mxl5005s.o
2025-10-31T06:12:08.1471276Z CC [M] drivers/media/i2c/ov2685.o
2025-10-31T06:12:08.2082291Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_gre.o
2025-10-31T06:12:08.5522647Z CC [M] drivers/media/rc/keymaps/rc-cinergy-1400.o
2025-10-31T06:12:08.5628966Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/table.o
2025-10-31T06:12:08.6347928Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/trx.o
2025-10-31T06:12:09.0447669Z CC [M] drivers/media/rc/keymaps/rc-cinergy.o
2025-10-31T06:12:09.1223838Z CC [M] drivers/media/i2c/ov2740.o
2025-10-31T06:12:09.4754541Z CC [M] drivers/media/rc/keymaps/rc-d680-dmb.o
2025-10-31T06:12:09.8956611Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_geneve.o
2025-10-31T06:12:09.9458065Z CC [M] drivers/media/rc/keymaps/rc-delock-61959.o
2025-10-31T06:12:10.1554825Z CC [M] drivers/media/i2c/ov5647.o
2025-10-31T06:12:10.2997292Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/rtl8192ce.o
2025-10-31T06:12:10.4028229Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/dm.o
2025-10-31T06:12:10.4375151Z CC [M] drivers/media/rc/keymaps/rc-dib0700-nec.o
2025-10-31T06:12:10.9576299Z CC [M] drivers/media/rc/keymaps/rc-dib0700-rc5.o
2025-10-31T06:12:11.0846615Z CC [M] drivers/media/i2c/ov5670.o
2025-10-31T06:12:11.2345460Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_mplsoudp.o
2025-10-31T06:12:11.6545103Z CC [M] drivers/media/rc/keymaps/rc-digitalnow-tinytwin.o
2025-10-31T06:12:11.6995476Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/hw.o
2025-10-31T06:12:11.8806673Z CC [M] drivers/media/tuners/mxl5007t.o
2025-10-31T06:12:12.0787487Z CC [M] drivers/media/i2c/ov5675.o
2025-10-31T06:12:12.2679111Z CC [M] drivers/media/rc/keymaps/rc-digittrade.o
2025-10-31T06:12:12.6224150Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/en_tc_tracepoint.o
2025-10-31T06:12:12.8790887Z CC [M] drivers/media/rc/keymaps/rc-dm1105-nec.o
2025-10-31T06:12:12.9298831Z CC [M] drivers/media/tuners/mc44s803.o
2025-10-31T06:12:13.2461263Z CC [M] drivers/media/i2c/ov5695.o
2025-10-31T06:12:13.4422313Z CC [M] drivers/media/rc/keymaps/rc-dntv-live-dvb-t.o
2025-10-31T06:12:13.6969734Z CC [M] drivers/media/tuners/max2165.o
2025-10-31T06:12:14.0034127Z CC [M] drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.o
2025-10-31T06:12:14.0976686Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/led.o
2025-10-31T06:12:14.1961616Z CC [M] drivers/media/i2c/ov6650.o
2025-10-31T06:12:14.2723634Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.o
2025-10-31T06:12:14.4977169Z CC [M] drivers/media/rc/keymaps/rc-dtt200u.o
2025-10-31T06:12:14.7371435Z CC [M] drivers/media/tuners/tda18218.o
2025-10-31T06:12:15.0837642Z CC [M] drivers/media/rc/keymaps/rc-dvbsky.o
2025-10-31T06:12:15.2941178Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/mac.o
2025-10-31T06:12:15.3236331Z CC [M] drivers/media/i2c/ov7251.o
2025-10-31T06:12:15.4793814Z CC [M] drivers/media/tuners/tda18212.o
2025-10-31T06:12:15.5437868Z CC [M] drivers/media/rc/keymaps/rc-dvico-mce.o
2025-10-31T06:12:16.0555051Z CC [M] drivers/media/rc/keymaps/rc-dvico-portable.o
2025-10-31T06:12:16.2382408Z CC [M] drivers/media/tuners/e4000.o
2025-10-31T06:12:16.5619096Z CC [M] drivers/media/rc/keymaps/rc-em-terratec.o
2025-10-31T06:12:16.6333677Z CC [M] drivers/media/i2c/ov7640.o
2025-10-31T06:12:16.9023957Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/eswitch.o
2025-10-31T06:12:16.9998816Z CC [M] drivers/media/rc/keymaps/rc-encore-enltv2.o
2025-10-31T06:12:17.0229735Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/phy.o
2025-10-31T06:12:17.4359903Z CC [M] drivers/media/tuners/fc2580.o
2025-10-31T06:12:17.4362928Z CC [M] drivers/media/i2c/ov7670.o
2025-10-31T06:12:17.5136419Z CC [M] drivers/media/rc/keymaps/rc-encore-enltv.o
2025-10-31T06:12:18.0353802Z CC [M] drivers/media/rc/keymaps/rc-encore-enltv-fm53.o
2025-10-31T06:12:18.5029958Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/rf.o
2025-10-31T06:12:18.5730201Z CC [M] drivers/media/tuners/tua9001.o
2025-10-31T06:12:18.5951238Z CC [M] drivers/media/rc/keymaps/rc-evga-indtube.o
2025-10-31T06:12:18.6628953Z CC [M] drivers/media/i2c/ov772x.o
2025-10-31T06:12:19.1634063Z CC [M] drivers/media/rc/keymaps/rc-eztv.o
2025-10-31T06:12:19.3395659Z CC [M] drivers/media/tuners/si2157.o
2025-10-31T06:12:19.7069731Z CC [M] drivers/media/i2c/ov7740.o
2025-10-31T06:12:19.7903229Z CC [M] drivers/media/rc/keymaps/rc-flydvb.o
2025-10-31T06:12:19.8703745Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.o
2025-10-31T06:12:19.8953610Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.o
2025-10-31T06:12:20.2767184Z CC [M] drivers/media/rc/keymaps/rc-flyvideo.o
2025-10-31T06:12:20.3680036Z CC [M] drivers/media/tuners/fc0011.o
2025-10-31T06:12:20.7683915Z CC [M] drivers/media/rc/keymaps/rc-fusionhdtv-mce.o
2025-10-31T06:12:20.9078241Z CC [M] drivers/media/i2c/ov8856.o
2025-10-31T06:12:21.0523067Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/table.o
2025-10-31T06:12:21.1865211Z CC [M] drivers/media/tuners/fc0012.o
2025-10-31T06:12:21.2095105Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.o
2025-10-31T06:12:21.2461012Z CC [M] drivers/media/rc/keymaps/rc-gadmei-rm008z.o
2025-10-31T06:12:21.7465701Z CC [M] drivers/media/rc/keymaps/rc-geekbox.o
2025-10-31T06:12:22.0305307Z CC [M] drivers/media/i2c/ov9640.o
2025-10-31T06:12:22.2195259Z CC [M] drivers/media/tuners/fc0013.o
2025-10-31T06:12:22.4036380Z CC [M] drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.o
2025-10-31T06:12:22.7846941Z CC [M] drivers/media/i2c/ov9650.o
2025-10-31T06:12:22.7896217Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_termtbl.o
2025-10-31T06:12:22.8239889Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/rtl8192cu.o
2025-10-31T06:12:22.9205986Z CC [M] drivers/media/rc/keymaps/rc-gotview7135.o
2025-10-31T06:12:22.9405499Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/dm.o
2025-10-31T06:12:23.2722711Z CC [M] drivers/media/tuners/it913x.o
2025-10-31T06:12:23.4954248Z CC [M] drivers/media/rc/keymaps/rc-hisi-poplar.o
2025-10-31T06:12:24.0133150Z CC [M] drivers/media/rc/keymaps/rc-hisi-tv-demo.o
2025-10-31T06:12:24.1662628Z CC [M] drivers/media/tuners/r820t.o
2025-10-31T06:12:24.1675939Z CC [M] drivers/media/i2c/ov13858.o
2025-10-31T06:12:24.3804541Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/fw.o
2025-10-31T06:12:24.5259841Z CC [M] drivers/media/rc/keymaps/rc-imon-mce.o
2025-10-31T06:12:24.5539534Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/ecpf.o
2025-10-31T06:12:25.1291597Z CC [M] drivers/media/rc/keymaps/rc-imon-pad.o
2025-10-31T06:12:25.1761187Z CC [M] drivers/media/i2c/mt9m001.o
2025-10-31T06:12:25.6216907Z CC [M] drivers/media/rc/keymaps/rc-imon-rsc.o
2025-10-31T06:12:25.7274708Z CC [M] drivers/media/tuners/mxl301rf.o
2025-10-31T06:12:25.7733805Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/hw.o
2025-10-31T06:12:25.8607968Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/rdma.o
2025-10-31T06:12:26.1125215Z CC [M] drivers/media/rc/keymaps/rc-iodata-bctv7e.o
2025-10-31T06:12:26.1820980Z CC [M] drivers/media/i2c/mt9m032.o
2025-10-31T06:12:26.3917557Z CC [M] drivers/media/tuners/qm1d1c0042.o
2025-10-31T06:12:26.5279504Z CC [M] drivers/media/rc/keymaps/rc-it913x-v1.o
2025-10-31T06:12:26.9469452Z CC [M] drivers/media/rc/keymaps/rc-it913x-v2.o
2025-10-31T06:12:27.1263393Z CC [M] drivers/media/tuners/qm1d1b0004.o
2025-10-31T06:12:27.3438344Z CC [M] drivers/media/i2c/mt9m111.o
2025-10-31T06:12:27.3566278Z CC [M] drivers/media/rc/keymaps/rc-kaiomy.o
2025-10-31T06:12:27.6492668Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/helper.o
2025-10-31T06:12:27.7893750Z CC [M] drivers/media/tuners/m88rs6000t.o
2025-10-31T06:12:27.9445651Z CC [M] drivers/media/rc/keymaps/rc-khadas.o
2025-10-31T06:12:28.4140892Z CC [M] drivers/media/rc/keymaps/rc-kworld-315u.o
2025-10-31T06:12:28.5840380Z CC [M] drivers/media/i2c/mt9p031.o
2025-10-31T06:12:28.6358029Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/led.o
2025-10-31T06:12:28.7436333Z CC [M] drivers/media/tuners/tda18250.o
2025-10-31T06:12:28.8967902Z CC [M] drivers/media/rc/keymaps/rc-kworld-pc150u.o
2025-10-31T06:12:29.2019645Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/egress_lgcy.o
2025-10-31T06:12:29.4664200Z CC [M] drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.o
2025-10-31T06:12:29.7327462Z CC [M] drivers/media/i2c/mt9t001.o
2025-10-31T06:12:29.7550190Z LD [M] drivers/media/tuners/tda18271.o
2025-10-31T06:12:29.9263310Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.o
2025-10-31T06:12:29.9743291Z CC [M] drivers/media/rc/keymaps/rc-leadtek-y04g0051.o
2025-10-31T06:12:30.0724734Z AR drivers/net/wireless/rsi/built-in.a
2025-10-31T06:12:30.0828831Z CC [M] drivers/net/wireless/rsi/rsi_91x_main.o
2025-10-31T06:12:30.4885506Z CC [M] drivers/media/rc/keymaps/rc-lme2510.o
2025-10-31T06:12:30.5303648Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/egress_ofld.o
2025-10-31T06:12:30.9560481Z CC [M] drivers/media/rc/keymaps/rc-manli.o
2025-10-31T06:12:31.0333374Z CC [M] drivers/media/i2c/mt9t112.o
2025-10-31T06:12:31.5107312Z CC [M] drivers/media/rc/keymaps/rc-medion-x10.o
2025-10-31T06:12:31.6233477Z CC [M] drivers/net/wireless/rsi/rsi_91x_core.o
2025-10-31T06:12:31.7597695Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/rf.o
2025-10-31T06:12:31.9655460Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/ingress_lgcy.o
2025-10-31T06:12:32.0984354Z CC [M] drivers/media/i2c/mt9v011.o
2025-10-31T06:12:32.2253251Z CC [M] drivers/media/rc/keymaps/rc-medion-x10-digitainer.o
2025-10-31T06:12:32.7252791Z CC [M] drivers/media/rc/keymaps/rc-medion-x10-or2x.o
2025-10-31T06:12:32.9816492Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/sw.o
2025-10-31T06:12:33.0677245Z CC [M] drivers/media/i2c/mt9v032.o
2025-10-31T06:12:33.0920083Z CC [M] drivers/net/wireless/rsi/rsi_91x_mac80211.o
2025-10-31T06:12:33.1585709Z CC [M] drivers/media/rc/keymaps/rc-msi-digivox-ii.o
2025-10-31T06:12:33.4391659Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/ingress_ofld.o
2025-10-31T06:12:33.6255353Z CC [M] drivers/media/rc/keymaps/rc-msi-digivox-iii.o
2025-10-31T06:12:34.1261458Z CC [M] drivers/media/rc/keymaps/rc-msi-tvanywhere.o
2025-10-31T06:12:34.2813228Z CC [M] drivers/media/i2c/mt9v111.o
2025-10-31T06:12:34.3757165Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/table.o
2025-10-31T06:12:34.4441501Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/trx.o
2025-10-31T06:12:34.5117271Z CC [M] drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.o
2025-10-31T06:12:34.8351265Z CC [M] drivers/net/wireless/rsi/rsi_91x_mgmt.o
2025-10-31T06:12:35.0803406Z CC [M] drivers/media/rc/keymaps/rc-nebula.o
2025-10-31T06:12:35.2420202Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/devlink_port.o
2025-10-31T06:12:35.4721768Z CC [M] drivers/media/i2c/sr030pc30.o
2025-10-31T06:12:35.6068037Z CC [M] drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.o
2025-10-31T06:12:35.9054817Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/rtl8192se.o
2025-10-31T06:12:35.9834400Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/dm.o
2025-10-31T06:12:36.2141777Z CC [M] drivers/media/rc/keymaps/rc-norwood.o
2025-10-31T06:12:36.3793213Z CC [M] drivers/media/i2c/noon010pc30.o
2025-10-31T06:12:36.7268358Z CC [M] drivers/media/rc/keymaps/rc-npgtech.o
2025-10-31T06:12:36.9063881Z CC [M] drivers/net/wireless/rsi/rsi_91x_hal.o
2025-10-31T06:12:36.9393434Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/mpfs.o
2025-10-31T06:12:37.2559687Z CC [M] drivers/media/rc/keymaps/rc-odroid.o
2025-10-31T06:12:37.6444443Z CC [M] drivers/media/i2c/rj54n1cb0c.o
2025-10-31T06:12:37.6647267Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/fw.o
2025-10-31T06:12:37.8430178Z CC [M] drivers/media/rc/keymaps/rc-pctv-sedna.o
2025-10-31T06:12:38.1423508Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/clock.o
2025-10-31T06:12:38.4141072Z CC [M] drivers/media/rc/keymaps/rc-pinnacle-color.o
2025-10-31T06:12:38.5141821Z CC [M] drivers/net/wireless/rsi/rsi_91x_ps.o
2025-10-31T06:12:38.8254528Z CC [M] drivers/media/i2c/s5k6aa.o
2025-10-31T06:12:38.9731152Z CC [M] drivers/media/rc/keymaps/rc-pinnacle-grey.o
2025-10-31T06:12:39.2608790Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/hw.o
2025-10-31T06:12:39.5513815Z CC [M] drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.o
2025-10-31T06:12:39.8279743Z CC [M] drivers/net/wireless/rsi/rsi_91x_coex.o
2025-10-31T06:12:39.8894773Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.o
2025-10-31T06:12:40.2009924Z CC [M] drivers/media/i2c/s5k6a3.o
2025-10-31T06:12:40.2352603Z CC [M] drivers/media/rc/keymaps/rc-pixelview.o
2025-10-31T06:12:40.8740606Z CC [M] drivers/media/rc/keymaps/rc-pixelview-mk12.o
2025-10-31T06:12:40.9393579Z CC [M] drivers/net/wireless/rsi/rsi_91x_debugfs.o
2025-10-31T06:12:41.2760322Z CC [M] drivers/media/i2c/s5k4ecgx.o
2025-10-31T06:12:41.3205601Z CC [M] drivers/media/rc/keymaps/rc-pixelview-002t.o
2025-10-31T06:12:41.4899196Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/led.o
2025-10-31T06:12:41.8025484Z CC [M] drivers/media/rc/keymaps/rc-pixelview-new.o
2025-10-31T06:12:42.2252569Z CC [M] drivers/net/wireless/rsi/rsi_91x_sdio.o
2025-10-31T06:12:42.4244926Z CC [M] drivers/media/rc/keymaps/rc-powercolor-real-angel.o
2025-10-31T06:12:42.5819877Z CC [M] drivers/media/i2c/s5k5baf.o
2025-10-31T06:12:42.7017522Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.o
2025-10-31T06:12:42.8540593Z CC [M] drivers/media/rc/keymaps/rc-proteus-2309.o
2025-10-31T06:12:43.3327441Z CC [M] drivers/media/rc/keymaps/rc-purpletv.o
2025-10-31T06:12:43.7314259Z CC [M] drivers/media/i2c/adp1653.o
2025-10-31T06:12:43.8044295Z CC [M] drivers/media/rc/keymaps/rc-pv951.o
2025-10-31T06:12:43.9385517Z CC [M] drivers/net/wireless/rsi/rsi_91x_sdio_ops.o
2025-10-31T06:12:44.3661523Z CC [M] drivers/media/rc/keymaps/rc-hauppauge.o
2025-10-31T06:12:44.6475809Z CC [M] drivers/media/i2c/lm3560.o
2025-10-31T06:12:44.9662260Z CC [M] drivers/media/rc/keymaps/rc-rc6-mce.o
2025-10-31T06:12:45.1134450Z CC [M] drivers/net/wireless/rsi/rsi_91x_usb.o
2025-10-31T06:12:45.2268893Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/ipoib/ethtool.o
2025-10-31T06:12:45.3757415Z CC [M] drivers/media/rc/keymaps/rc-real-audio-220-32-keys.o
2025-10-31T06:12:45.6687149Z CC [M] drivers/media/i2c/lm3646.o
2025-10-31T06:12:45.9352548Z CC [M] drivers/media/rc/keymaps/rc-reddo.o
2025-10-31T06:12:46.1422743Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/rf.o
2025-10-31T06:12:46.4436068Z CC [M] drivers/media/rc/keymaps/rc-snapstream-firefly.o
2025-10-31T06:12:46.4819360Z CC [M] drivers/media/i2c/smiapp-pll.o
2025-10-31T06:12:46.6583944Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib_vlan.o
2025-10-31T06:12:46.7549467Z CC [M] drivers/net/wireless/rsi/rsi_91x_usb_ops.o
2025-10-31T06:12:46.8338072Z CC [M] drivers/media/rc/keymaps/rc-streamzap.o
2025-10-31T06:12:47.2644028Z CC [M] drivers/media/rc/keymaps/rc-tango.o
2025-10-31T06:12:47.2963039Z CC [M] drivers/media/i2c/ir-kbd-i2c.o
2025-10-31T06:12:47.7765220Z CC [M] drivers/media/rc/keymaps/rc-tanix-tx3mini.o
2025-10-31T06:12:47.8534381Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/sw.o
2025-10-31T06:12:48.0025801Z LD [M] drivers/net/wireless/rsi/rsi_91x.o
2025-10-31T06:12:48.0824205Z LD [M] drivers/net/wireless/rsi/rsi_sdio.o
2025-10-31T06:12:48.1171566Z LD [M] drivers/net/wireless/rsi/rsi_usb.o
2025-10-31T06:12:48.1999220Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/table.o
2025-10-31T06:12:48.2491034Z CC [M] drivers/media/rc/keymaps/rc-tanix-tx5max.o
2025-10-31T06:12:48.3238312Z CC drivers/media/rc/rc-main.o
2025-10-31T06:12:48.4640741Z CC [M] drivers/media/i2c/ov2659.o
2025-10-31T06:12:48.8680013Z CC [M] drivers/media/rc/keymaps/rc-tbs-nec.o
2025-10-31T06:12:49.0397586Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/trx.o
2025-10-31T06:12:49.4664846Z CC [M] drivers/media/rc/keymaps/rc-technisat-ts35.o
2025-10-31T06:12:49.5297809Z CC [M] drivers/media/i2c/hi556.o
2025-10-31T06:12:49.9573498Z CC [M] drivers/net/fddi/skfp/skfddi.o
2025-10-31T06:12:49.9929614Z CC [M] drivers/media/rc/keymaps/rc-technisat-usb2.o
2025-10-31T06:12:50.5132731Z CC [M] drivers/media/i2c/imx214.o
2025-10-31T06:12:50.7525551Z CC [M] drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.o
2025-10-31T06:12:50.7797515Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/rtl8192de.o
2025-10-31T06:12:50.9350469Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.o
2025-10-31T06:12:51.3122957Z CC [M] drivers/net/fddi/skfp/hwmtm.o
2025-10-31T06:12:51.4004438Z CC [M] drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.o
2025-10-31T06:12:51.5896537Z CC [M] drivers/media/i2c/imx219.o
2025-10-31T06:12:51.6053619Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/accel/ipsec_offload.o
2025-10-31T06:12:51.9574852Z CC [M] drivers/media/rc/keymaps/rc-terratec-cinergy-xs.o
2025-10-31T06:12:52.2160600Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/fw.o
2025-10-31T06:12:52.6153873Z CC [M] drivers/media/rc/keymaps/rc-terratec-slim.o
2025-10-31T06:12:52.8421544Z CC [M] drivers/media/i2c/imx258.o
2025-10-31T06:12:52.8597232Z CC [M] drivers/net/fddi/skfp/fplustm.o
2025-10-31T06:12:53.0556147Z CC [M] drivers/media/rc/keymaps/rc-terratec-slim-2.o
2025-10-31T06:12:53.0562517Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/ipsec.o
2025-10-31T06:12:53.5465230Z CC [M] drivers/media/rc/keymaps/rc-tevii-nec.o
2025-10-31T06:12:53.7553717Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_btc.o
2025-10-31T06:12:53.8671325Z CC [M] drivers/media/i2c/imx274.o
2025-10-31T06:12:53.9674662Z CC [M] drivers/media/rc/keymaps/rc-tivo.o
2025-10-31T06:12:54.1340815Z CC [M] drivers/net/fddi/skfp/smt.o
2025-10-31T06:12:54.4194194Z CC [M] drivers/media/rc/keymaps/rc-total-media-in-hand.o
2025-10-31T06:12:54.9941433Z CC [M] drivers/media/rc/keymaps/rc-total-media-in-hand-02.o
2025-10-31T06:12:55.1748598Z CC [M] drivers/media/i2c/imx290.o
2025-10-31T06:12:55.4309809Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.o
2025-10-31T06:12:55.5053775Z CC [M] drivers/media/rc/keymaps/rc-trekstor.o
2025-10-31T06:12:55.5210303Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_bt_coexist.o
2025-10-31T06:12:55.6719080Z CC [M] drivers/net/fddi/skfp/cfm.o
2025-10-31T06:12:55.9809403Z CC [M] drivers/media/rc/keymaps/rc-tt-1500.o
2025-10-31T06:12:56.2403449Z CC [M] drivers/media/i2c/imx319.o
2025-10-31T06:12:56.5790221Z CC [M] drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.o
2025-10-31T06:12:56.8714267Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hw.o
2025-10-31T06:12:56.9025995Z CC [M] drivers/net/fddi/skfp/ecm.o
2025-10-31T06:12:57.0004770Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/crypto.o
2025-10-31T06:12:57.1574890Z CC [M] drivers/media/rc/keymaps/rc-twinhan1027.o
2025-10-31T06:12:57.2062701Z CC [M] drivers/media/i2c/imx355.o
2025-10-31T06:12:57.8155979Z CC [M] drivers/media/rc/keymaps/rc-vega-s9x.o
2025-10-31T06:12:57.8989837Z CC [M] drivers/net/fddi/skfp/pcmplc.o
2025-10-31T06:12:58.1425319Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/accel/tls.o
2025-10-31T06:12:58.3907857Z CC [M] drivers/media/i2c/rdacm20.o
2025-10-31T06:12:58.4277388Z CC [M] drivers/media/rc/keymaps/rc-videomate-m1f.o
2025-10-31T06:12:58.9593465Z CC [M] drivers/media/rc/keymaps/rc-videomate-s350.o
2025-10-31T06:12:59.2953143Z CC [M] drivers/media/i2c/max9271.o
2025-10-31T06:12:59.3175992Z CC [M] drivers/net/fddi/skfp/pmf.o
2025-10-31T06:12:59.3813960Z CC [M] drivers/media/rc/keymaps/rc-videomate-tv-pvr.o
2025-10-31T06:12:59.4353415Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/accel/ipsec.o
2025-10-31T06:12:59.4856275Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/led.o
2025-10-31T06:12:59.8095693Z LD [M] drivers/media/i2c/msp3400.o
2025-10-31T06:12:59.8257468Z LD [M] drivers/media/i2c/rdacm20-camera_module.o
2025-10-31T06:12:59.8376738Z CC [M] drivers/media/rc/keymaps/rc-videostrong-kii-pro.o
2025-10-31T06:13:00.2217304Z CC [M] drivers/media/rc/keymaps/rc-wetek-hub.o
2025-10-31T06:13:00.2323615Z CC [M] drivers/net/fddi/defxx.o
2025-10-31T06:13:00.7192347Z CC [M] drivers/media/rc/keymaps/rc-wetek-play2.o
2025-10-31T06:13:00.8697135Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/cmd.o
2025-10-31T06:13:00.9104956Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/phy.o
2025-10-31T06:13:00.9561286Z CC [M] drivers/net/fddi/skfp/queue.o
2025-10-31T06:13:01.2235415Z CC [M] drivers/media/rc/keymaps/rc-winfast.o
2025-10-31T06:13:01.6687047Z CC [M] drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.o
2025-10-31T06:13:01.9072617Z CC [M] drivers/media/rc/keymaps/rc-su3000.o
2025-10-31T06:13:02.0781897Z CC [M] drivers/net/fddi/skfp/rmt.o
2025-10-31T06:13:02.1258801Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/pwrseq.o
2025-10-31T06:13:02.2989503Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/core.o
2025-10-31T06:13:02.3922207Z CC [M] drivers/media/rc/keymaps/rc-xbox-dvd.o
2025-10-31T06:13:02.8374340Z CC [M] drivers/media/rc/keymaps/rc-x96max.o
2025-10-31T06:13:02.8375775Z CC [M] drivers/net/fddi/skfp/smtdef.o
2025-10-31T06:13:03.1836369Z CC [M] drivers/net/wireless/st/cw1200/fwio.o
2025-10-31T06:13:03.2890083Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/rf.o
2025-10-31T06:13:03.3283832Z CC [M] drivers/media/rc/keymaps/rc-zx-irdec.o
2025-10-31T06:13:03.6711356Z CC [M] drivers/net/fddi/skfp/smtinit.o
2025-10-31T06:13:03.8122171Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/conn.o
2025-10-31T06:13:04.5183216Z CC drivers/media/rc/rc-ir-raw.o
2025-10-31T06:13:04.6883797Z CC [M] drivers/net/fddi/skfp/smttimer.o
2025-10-31T06:13:04.7112795Z CC [M] drivers/net/wireless/st/cw1200/txrx.o
2025-10-31T06:13:04.8108846Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/sw.o
2025-10-31T06:13:05.5623632Z CC drivers/media/rc/lirc_dev.o
2025-10-31T06:13:05.5855880Z CC [M] drivers/net/fddi/skfp/srf.o
2025-10-31T06:13:05.9178050Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/sdk.o
2025-10-31T06:13:06.1320627Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/table.o
2025-10-31T06:13:06.2784530Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/trx.o
2025-10-31T06:13:06.4830876Z CC [M] drivers/net/fddi/skfp/hwt.o
2025-10-31T06:13:06.7251193Z CC drivers/media/rc/keymaps/rc-cec.o
2025-10-31T06:13:06.8986634Z CC [M] drivers/net/wireless/st/cw1200/main.o
2025-10-31T06:13:07.2105957Z CC drivers/media/rc/bpf-lirc.o
2025-10-31T06:13:07.2756042Z CC [M] drivers/net/fddi/skfp/drvfbi.o
2025-10-31T06:13:07.4707171Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.o
2025-10-31T06:13:08.0115724Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/rtl8723ae.o
2025-10-31T06:13:08.1642467Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/dm.o
2025-10-31T06:13:08.2193333Z CC [M] drivers/media/rc/ir-nec-decoder.o
2025-10-31T06:13:08.3143792Z CC [M] drivers/net/wireless/st/cw1200/queue.o
2025-10-31T06:13:08.4055290Z CC [M] drivers/net/fddi/skfp/ess.o
2025-10-31T06:13:08.9593792Z CC [M] drivers/media/rc/ir-rc5-decoder.o
2025-10-31T06:13:09.4043149Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.o
2025-10-31T06:13:09.6014520Z CC [M] drivers/media/rc/ir-rc6-decoder.o
2025-10-31T06:13:09.6803260Z LD [M] drivers/net/fddi/skfp/skfp.o
2025-10-31T06:13:09.7766340Z CC [M] drivers/net/wireless/st/cw1200/hwio.o
2025-10-31T06:13:09.9887595Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/fw.o
2025-10-31T06:13:10.1072633Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_stats.o
2025-10-31T06:13:10.3101468Z CC [M] drivers/media/rc/ir-jvc-decoder.o
2025-10-31T06:13:10.9329510Z CC [M] drivers/net/ethernet/myricom/myri10ge/myri10ge.o
2025-10-31T06:13:11.0477457Z CC [M] drivers/media/rc/ir-sony-decoder.o
2025-10-31T06:13:11.0936087Z CC [M] drivers/net/wireless/st/cw1200/bh.o
2025-10-31T06:13:11.3635480Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.o
2025-10-31T06:13:11.7575335Z CC [M] drivers/media/rc/ir-sanyo-decoder.o
2025-10-31T06:13:11.9178242Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_fs.o
2025-10-31T06:13:12.6092802Z CC [M] drivers/media/rc/ir-sharp-decoder.o
2025-10-31T06:13:12.6674053Z CC [M] drivers/net/wireless/st/cw1200/wsm.o
2025-10-31T06:13:13.3103667Z CC [M] drivers/media/rc/ir-mce_kbd-decoder.o
2025-10-31T06:13:13.6999158Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.o
2025-10-31T06:13:14.1088745Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/led.o
2025-10-31T06:13:14.1308817Z CC [M] drivers/media/rc/ir-xmp-decoder.o
2025-10-31T06:13:14.1625075Z AR drivers/net/ethernet/myricom/built-in.a
2025-10-31T06:13:14.2057460Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/phy.o
2025-10-31T06:13:14.9534153Z CC [M] drivers/net/wireless/st/cw1200/sta.o
2025-10-31T06:13:14.9873034Z CC [M] drivers/media/rc/ir-imon-decoder.o
2025-10-31T06:13:15.3165388Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls_rxtx.o
2025-10-31T06:13:15.4115015Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls_stats.o
2025-10-31T06:13:15.7619738Z CC [M] drivers/media/rc/ir-rcmm-decoder.o
2025-10-31T06:13:16.7238569Z CC [M] drivers/media/rc/ati_remote.o
2025-10-31T06:13:16.7477790Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/pwrseq.o
2025-10-31T06:13:16.9782197Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/fs_tcp.o
2025-10-31T06:13:16.9799796Z CC drivers/ptp/ptp_clock.o
2025-10-31T06:13:17.1443064Z CC [M] drivers/net/wireless/st/cw1200/scan.o
2025-10-31T06:13:17.7714612Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/rf.o
2025-10-31T06:13:17.7754287Z CC [M] drivers/media/rc/imon.o
2025-10-31T06:13:17.9931793Z CC drivers/ptp/ptp_chardev.o
2025-10-31T06:13:18.5758569Z CC [M] drivers/net/wireless/st/cw1200/debug.o
2025-10-31T06:13:18.8860974Z CC drivers/ptp/ptp_sysfs.o
2025-10-31T06:13:18.8868768Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls.o
2025-10-31T06:13:19.1003643Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/sw.o
2025-10-31T06:13:19.5302690Z CC [M] drivers/media/rc/imon_raw.o
2025-10-31T06:13:19.5855388Z CC [M] drivers/ptp/ptp_ines.o
2025-10-31T06:13:20.0128958Z CC [M] drivers/net/wireless/st/cw1200/pm.o
2025-10-31T06:13:20.1802342Z CC [M] drivers/media/rc/ite-cir.o
2025-10-31T06:13:20.1997963Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/table.o
2025-10-31T06:13:20.3203804Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/trx.o
2025-10-31T06:13:20.3487846Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_txrx.o
2025-10-31T06:13:20.9270026Z CC [M] drivers/ptp/ptp_kvm.o
2025-10-31T06:13:21.5333141Z CC [M] drivers/net/wireless/st/cw1200/cw1200_sdio.o
2025-10-31T06:13:21.5840862Z CC [M] drivers/media/rc/mceusb.o
2025-10-31T06:13:21.6038789Z CC [M] drivers/ptp/ptp_clockmatrix.o
2025-10-31T06:13:21.6544193Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_tx.o
2025-10-31T06:13:21.9565069Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/rtl8723be.o
2025-10-31T06:13:22.1171047Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.o
2025-10-31T06:13:22.8327747Z CC [M] drivers/net/wireless/st/cw1200/cw1200_spi.o
2025-10-31T06:13:22.9807507Z CC [M] drivers/ptp/ptp_idt82p33.o
2025-10-31T06:13:23.0783658Z CC [M] drivers/media/rc/fintek-cir.o
2025-10-31T06:13:23.6629105Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_rx.o
2025-10-31T06:13:24.0169198Z CC [M] drivers/media/rc/nuvoton-cir.o
2025-10-31T06:13:24.0383786Z CC [M] drivers/ptp/ptp_vmw.o
2025-10-31T06:13:24.1492672Z LD [M] drivers/net/wireless/st/cw1200/cw1200_core.o
2025-10-31T06:13:24.1725231Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/fw.o
2025-10-31T06:13:24.2125929Z LD [M] drivers/net/wireless/st/cw1200/cw1200_wlan_sdio.o
2025-10-31T06:13:24.2277785Z LD [M] drivers/net/wireless/st/cw1200/cw1200_wlan_spi.o
2025-10-31T06:13:24.3053036Z AR drivers/net/wireless/st/built-in.a
2025-10-31T06:13:24.3526003Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/hw.o
2025-10-31T06:13:24.5774079Z AR drivers/ptp/built-in.a
2025-10-31T06:13:24.6750845Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/led.o
2025-10-31T06:13:25.2347413Z CC [M] drivers/media/rc/ene_ir.o
2025-10-31T06:13:25.4113686Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_domain.o
2025-10-31T06:13:25.9150544Z CC [M] drivers/media/rc/redrat3.o
2025-10-31T06:13:26.0342748Z AR drivers/net/ethernet/natsemi/built-in.a
2025-10-31T06:13:26.0591673Z CC [M] drivers/net/ethernet/natsemi/natsemi.o
2025-10-31T06:13:26.9008123Z CC [M] drivers/net/ethernet/neterion/vxge/vxge-config.o
2025-10-31T06:13:26.9300273Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.o
2025-10-31T06:13:26.9617125Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/phy.o
2025-10-31T06:13:27.0387116Z CC [M] drivers/media/rc/streamzap.o
2025-10-31T06:13:28.0552584Z CC [M] drivers/media/rc/winbond-cir.o
2025-10-31T06:13:28.3762895Z CC [M] drivers/net/ethernet/natsemi/ns83820.o
2025-10-31T06:13:28.5263765Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_matcher.o
2025-10-31T06:13:29.4410600Z CC [M] drivers/net/ethernet/neterion/vxge/vxge-traffic.o
2025-10-31T06:13:29.4675439Z CC [M] drivers/media/rc/rc-loopback.o
2025-10-31T06:13:29.4764899Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/pwrseq.o
2025-10-31T06:13:30.2378452Z AR drivers/media/common/b2c2/built-in.a
2025-10-31T06:13:30.2545609Z CC [M] drivers/media/common/b2c2/flexcop.o
2025-10-31T06:13:30.3344997Z CC [M] drivers/media/rc/igorplugusb.o
2025-10-31T06:13:30.4573036Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_rule.o
2025-10-31T06:13:30.4853410Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/rf.o
2025-10-31T06:13:30.7721068Z CC [M] drivers/net/ethernet/neterion/vxge/vxge-ethtool.o
2025-10-31T06:13:31.2064870Z CC [M] drivers/media/rc/iguanair.o
2025-10-31T06:13:31.5045102Z CC [M] drivers/media/common/b2c2/flexcop-fe-tuner.o
2025-10-31T06:13:31.8115623Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/sw.o
2025-10-31T06:13:32.2280778Z CC [M] drivers/media/rc/ttusbir.o
2025-10-31T06:13:32.4134731Z CC [M] drivers/net/ethernet/neterion/vxge/vxge-main.o
2025-10-31T06:13:32.7031855Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_icm_pool.o
2025-10-31T06:13:32.7510822Z CC [M] drivers/media/common/b2c2/flexcop-i2c.o
2025-10-31T06:13:33.1145059Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/table.o
2025-10-31T06:13:33.2283980Z CC [M] drivers/media/rc/serial_ir.o
2025-10-31T06:13:33.2310227Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/trx.o
2025-10-31T06:13:33.6573339Z CC [M] drivers/media/common/b2c2/flexcop-sram.o
2025-10-31T06:13:34.2337086Z CC [M] drivers/media/rc/sir_ir.o
2025-10-31T06:13:34.5929803Z CC [M] drivers/media/common/b2c2/flexcop-eeprom.o
2025-10-31T06:13:34.6200130Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste.o
2025-10-31T06:13:35.0785949Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/rtl8188ee.o
2025-10-31T06:13:35.0828363Z CC [M] drivers/media/rc/xbox_remote.o
2025-10-31T06:13:35.1576131Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8192e2ant.o
2025-10-31T06:13:35.5141768Z CC [M] drivers/media/common/b2c2/flexcop-misc.o
2025-10-31T06:13:35.6180150Z LD [M] drivers/net/ethernet/neterion/vxge/vxge.o
2025-10-31T06:13:35.6650675Z AR drivers/net/ethernet/neterion/built-in.a
2025-10-31T06:13:35.6752637Z CC [M] drivers/net/ethernet/neterion/s2io.o
2025-10-31T06:13:35.8924596Z CC [M] drivers/media/rc/ir_toy.o
2025-10-31T06:13:36.4204976Z CC [M] drivers/media/common/b2c2/flexcop-hw-filter.o
2025-10-31T06:13:37.1123450Z AR drivers/media/rc/built-in.a
2025-10-31T06:13:37.4868165Z CC [M] drivers/net/plip/plip.o
2025-10-31T06:13:37.4948554Z LD [M] drivers/media/common/b2c2/b2c2-flexcop.o
2025-10-31T06:13:37.5016120Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8723b1ant.o
2025-10-31T06:13:37.5899943Z AR drivers/media/common/saa7146/built-in.a
2025-10-31T06:13:37.6144691Z CC [M] drivers/media/common/saa7146/saa7146_i2c.o
2025-10-31T06:13:37.7339420Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_send.o
2025-10-31T06:13:38.6442932Z CC [M] drivers/media/common/saa7146/saa7146_core.o
2025-10-31T06:13:39.1679532Z CC [M] drivers/media/common/saa7146/saa7146_fops.o
2025-10-31T06:13:39.7105636Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8723b2ant.o
2025-10-31T06:13:39.7671667Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.o
2025-10-31T06:13:39.8870262Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_cmd.o
2025-10-31T06:13:40.3402161Z CC [M] drivers/media/common/saa7146/saa7146_video.o
2025-10-31T06:13:40.7493241Z CC [M] drivers/net/wireless/ti/wlcore/main.o
2025-10-31T06:13:41.8658745Z CC [M] drivers/media/common/saa7146/saa7146_hlp.o
2025-10-31T06:13:41.8700875Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8821a1ant.o
2025-10-31T06:13:42.1845810Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_fw.o
2025-10-31T06:13:43.0629023Z CC [M] drivers/media/common/saa7146/saa7146_vbi.o
2025-10-31T06:13:43.6216018Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192e.o
2025-10-31T06:13:43.6396277Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.o
2025-10-31T06:13:44.0379008Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8821a2ant.o
2025-10-31T06:13:44.1837454Z LD [M] drivers/media/common/saa7146/saa7146.o
2025-10-31T06:13:44.2164214Z LD [M] drivers/media/common/saa7146/saa7146_vv.o
2025-10-31T06:13:44.3342631Z AR drivers/media/common/siano/built-in.a
2025-10-31T06:13:44.3594851Z CC [M] drivers/media/common/siano/smscoreapi.o
2025-10-31T06:13:45.1394292Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8723b.o
2025-10-31T06:13:45.3077818Z CC [M] drivers/net/wireless/ti/wlcore/cmd.o
2025-10-31T06:13:45.8951465Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.o
2025-10-31T06:13:45.9692832Z CC [M] drivers/media/common/siano/sms-cards.o
2025-10-31T06:13:46.2537182Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.o
2025-10-31T06:13:46.8362810Z CC [M] drivers/media/common/siano/smsendian.o
2025-10-31T06:13:47.0410150Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8723a.o
2025-10-31T06:13:47.4818121Z CC [M] drivers/media/common/siano/smsir.o
2025-10-31T06:13:47.5184351Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/hv_vhca_stats.o
2025-10-31T06:13:47.6370946Z CC [M] drivers/net/wireless/ti/wlcore/io.o
2025-10-31T06:13:47.9687682Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.o
2025-10-31T06:13:48.2033280Z CC [M] drivers/media/common/siano/smsdvb-main.o
2025-10-31T06:13:48.3279566Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192c.o
2025-10-31T06:13:48.9794105Z CC [M] drivers/net/wireless/ti/wlcore/event.o
2025-10-31T06:13:49.0734356Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/vxlan.o
2025-10-31T06:13:49.2698437Z LD [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist.o
2025-10-31T06:13:49.4168297Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/main.o
2025-10-31T06:13:49.4809607Z LD [M] drivers/media/common/siano/smsmdtv.o
2025-10-31T06:13:49.5172776Z LD [M] drivers/media/common/siano/smsdvb.o
2025-10-31T06:13:49.5577931Z LD [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.o
2025-10-31T06:13:49.6101930Z AR drivers/media/common/v4l2-tpg/built-in.a
2025-10-31T06:13:49.6259524Z CC [M] drivers/media/common/v4l2-tpg/v4l2-tpg-core.o
2025-10-31T06:13:49.6475851Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/dm_common.o
2025-10-31T06:13:50.4373689Z CC [M] drivers/net/wireless/ti/wlcore/tx.o
2025-10-31T06:13:50.5817438Z CC drivers/power/reset/mt6323-poweroff.o
2025-10-31T06:13:50.6097628Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/hv.o
2025-10-31T06:13:50.9124854Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/fw_common.o
2025-10-31T06:13:51.2720692Z CC drivers/power/reset/restart-poweroff.o
2025-10-31T06:13:51.7261805Z AR drivers/power/reset/built-in.a
2025-10-31T06:13:51.7883421Z CC drivers/power/supply/power_supply_core.o
2025-10-31T06:13:51.8788540Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.o
2025-10-31T06:13:51.9508148Z CC [M] drivers/media/common/v4l2-tpg/v4l2-tpg-colors.o
2025-10-31T06:13:52.3027899Z LD [M] drivers/media/common/v4l2-tpg/v4l2-tpg.o
2025-10-31T06:13:52.3473810Z AR drivers/media/common/videobuf2/built-in.a
2025-10-31T06:13:52.3726090Z CC [M] drivers/media/common/videobuf2/videobuf2-core.o
2025-10-31T06:13:52.4242326Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/phy_common.o
2025-10-31T06:13:52.4260912Z CC [M] drivers/net/wireless/ti/wlcore/rx.o
2025-10-31T06:13:52.7913554Z CC drivers/power/supply/power_supply_sysfs.o
2025-10-31T06:13:53.4336862Z LD [M] drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.o
2025-10-31T06:13:53.4954748Z CC drivers/power/supply/power_supply_leds.o
2025-10-31T06:13:53.6289150Z CC [M] drivers/net/wireless/ti/wlcore/ps.o
2025-10-31T06:13:53.7314160Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common.o
2025-10-31T06:13:53.8385617Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/dm.o
2025-10-31T06:13:53.9008522Z CC drivers/power/supply/power_supply_hwmon.o
2025-10-31T06:13:54.2432671Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp6000_pcie.o
2025-10-31T06:13:54.5617714Z CC drivers/power/supply/charger-manager.o
2025-10-31T06:13:54.6400537Z CC [M] drivers/media/common/videobuf2/vb2-trace.o
2025-10-31T06:13:54.9326403Z CC [M] drivers/net/wireless/ti/wlcore/acx.o
2025-10-31T06:13:55.3462564Z CC [M] drivers/media/common/videobuf2/videobuf2-v4l2.o
2025-10-31T06:13:55.6912615Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_cppcore.o
2025-10-31T06:13:55.8657504Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/fw.o
2025-10-31T06:13:56.1663135Z CC [M] drivers/power/supply/generic-adc-battery.o
2025-10-31T06:13:56.6181613Z CC [M] drivers/media/common/videobuf2/videobuf2-memops.o
2025-10-31T06:13:56.8075698Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_cpplib.o
2025-10-31T06:13:56.9655754Z CC [M] drivers/net/wireless/ti/wlcore/boot.o
2025-10-31T06:13:57.1278180Z CC [M] drivers/power/supply/pda_power.o
2025-10-31T06:13:57.3086217Z CC [M] drivers/media/common/videobuf2/videobuf2-vmalloc.o
2025-10-31T06:13:57.4061133Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_hwinfo.o
2025-10-31T06:13:57.5552454Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.o
2025-10-31T06:13:58.1082384Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_mip.o
2025-10-31T06:13:58.1209563Z CC [M] drivers/power/supply/axp20x_usb_power.o
2025-10-31T06:13:58.1503401Z CC [M] drivers/media/common/videobuf2/videobuf2-dma-contig.o
2025-10-31T06:13:58.3923942Z CC [M] drivers/net/wireless/ti/wlcore/init.o
2025-10-31T06:13:58.6716254Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_mutex.o
2025-10-31T06:13:58.7663225Z CC [M] drivers/power/supply/max8925_power.o
2025-10-31T06:13:59.0942527Z CC [M] drivers/media/common/videobuf2/videobuf2-dma-sg.o
2025-10-31T06:13:59.2780658Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nffw.o
2025-10-31T06:13:59.5773842Z CC [M] drivers/power/supply/wm831x_backup.o
2025-10-31T06:13:59.7001157Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp.o
2025-10-31T06:13:59.9146279Z CC [M] drivers/net/wireless/ti/wlcore/debugfs.o
2025-10-31T06:14:00.0843838Z CC [M] drivers/media/common/videobuf2/videobuf2-dvb.o
2025-10-31T06:14:00.2283170Z CC [M] drivers/power/supply/wm831x_power.o
2025-10-31T06:14:00.7953002Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/led.o
2025-10-31T06:14:01.1643187Z CC [M] drivers/power/supply/wm8350_power.o
2025-10-31T06:14:01.3573395Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp_cmds.o
2025-10-31T06:14:01.3843580Z LD [M] drivers/media/common/videobuf2/videobuf2-common.o
2025-10-31T06:14:01.4452097Z CC [M] drivers/media/common/cx2341x.o
2025-10-31T06:14:01.9469936Z CC [M] drivers/net/wireless/ti/wlcore/scan.o
2025-10-31T06:14:02.0007901Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.o
2025-10-31T06:14:02.1584144Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp_eth.o
2025-10-31T06:14:02.2459465Z CC [M] drivers/power/supply/test_power.o
2025-10-31T06:14:02.6696349Z CC [M] drivers/media/common/tveeprom.o
2025-10-31T06:14:02.8901877Z CC [M] drivers/power/supply/88pm860x_battery.o
2025-10-31T06:14:03.0511795Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_resource.o
2025-10-31T06:14:03.4510098Z CC [M] drivers/net/wireless/ti/wlcore/sysfs.o
2025-10-31T06:14:03.6709023Z CC [M] drivers/media/common/cypress_firmware.o
2025-10-31T06:14:03.6936301Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_rtsym.o
2025-10-31T06:14:03.9762769Z CC [M] drivers/power/supply/adp5061.o
2025-10-31T06:14:04.2818674Z AR drivers/media/common/built-in.a
2025-10-31T06:14:04.4160416Z AR drivers/media/platform/cadence/built-in.a
2025-10-31T06:14:04.4374458Z CC [M] drivers/media/platform/cadence/cdns-csi2rx.o
2025-10-31T06:14:04.5893080Z CC [M] drivers/net/wireless/ti/wlcore/vendor_cmd.o
2025-10-31T06:14:04.5981208Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_target.o
2025-10-31T06:14:04.6172273Z CC [M] drivers/power/supply/axp20x_battery.o
2025-10-31T06:14:05.1587517Z CC [M] drivers/power/supply/axp20x_ac_power.o
2025-10-31T06:14:05.1754007Z CC [M] drivers/net/ethernet/netronome/nfp/ccm.o
2025-10-31T06:14:05.5061790Z CC [M] drivers/media/platform/cadence/cdns-csi2tx.o
2025-10-31T06:14:05.7059823Z CC [M] drivers/power/supply/cw2015_battery.o
2025-10-31T06:14:05.9217623Z CC [M] drivers/net/wireless/ti/wlcore/sdio.o
2025-10-31T06:14:06.0394832Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/pwrseq.o
2025-10-31T06:14:06.3792232Z AR drivers/media/platform/ti-vpe/built-in.a
2025-10-31T06:14:06.4296299Z CC [M] drivers/power/supply/ds2760_battery.o
2025-10-31T06:14:06.4382127Z AR drivers/media/platform/stm32/built-in.a
2025-10-31T06:14:06.5084998Z AR drivers/media/platform/davinci/built-in.a
2025-10-31T06:14:06.5742253Z AR drivers/media/platform/omap/built-in.a
2025-10-31T06:14:06.6265620Z CC [M] drivers/net/ethernet/netronome/nfp/ccm_mbox.o
2025-10-31T06:14:06.6514112Z AR drivers/media/platform/sunxi/sun4i-csi/built-in.a
2025-10-31T06:14:06.6871516Z AR drivers/media/platform/sunxi/sun6i-csi/built-in.a
2025-10-31T06:14:06.7223124Z AR drivers/media/platform/sunxi/sun8i-di/built-in.a
2025-10-31T06:14:06.7578755Z AR drivers/media/platform/sunxi/sun8i-rotate/built-in.a
2025-10-31T06:14:06.7784368Z AR drivers/media/platform/sunxi/built-in.a
2025-10-31T06:14:06.8503815Z CC [M] drivers/media/platform/marvell-ccic/cafe-driver.o
2025-10-31T06:14:07.1405619Z LD [M] drivers/net/wireless/ti/wlcore/wlcore.o
2025-10-31T06:14:07.2105827Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/rf.o
2025-10-31T06:14:07.2260200Z LD [M] drivers/net/wireless/ti/wlcore/wlcore_sdio.o
2025-10-31T06:14:07.3280025Z CC [M] drivers/net/wireless/ti/wl12xx/main.o
2025-10-31T06:14:07.5766472Z CC [M] drivers/power/supply/ds2780_battery.o
2025-10-31T06:14:07.7654791Z CC [M] drivers/media/platform/marvell-ccic/mcam-core.o
2025-10-31T06:14:07.9504809Z CC [M] drivers/net/ethernet/netronome/nfp/devlink_param.o
2025-10-31T06:14:08.3173343Z CC [M] drivers/power/supply/ds2781_battery.o
2025-10-31T06:14:08.6721815Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/sw.o
2025-10-31T06:14:08.9744767Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_asm.o
2025-10-31T06:14:09.1192636Z CC [M] drivers/power/supply/ds2782_battery.o
2025-10-31T06:14:09.2871620Z LD [M] drivers/media/platform/marvell-ccic/cafe_ccic.o
2025-10-31T06:14:09.2876670Z CC [M] drivers/net/wireless/ti/wl12xx/cmd.o
2025-10-31T06:14:09.3167256Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_app.o
2025-10-31T06:14:09.3209450Z AR drivers/media/platform/built-in.a
2025-10-31T06:14:09.3322202Z CC [M] drivers/media/platform/aspeed-video.o
2025-10-31T06:14:09.8597569Z CC [M] drivers/power/supply/ltc2941-battery-gauge.o
2025-10-31T06:14:09.9778052Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/table.o
2025-10-31T06:14:10.1358209Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/trx.o
2025-10-31T06:14:10.3674748Z CC [M] drivers/media/platform/m2m-deinterlace.o
2025-10-31T06:14:10.4908037Z CC [M] drivers/net/wireless/ti/wl12xx/acx.o
2025-10-31T06:14:10.5062691Z CC [M] drivers/power/supply/sbs-battery.o
2025-10-31T06:14:10.7610522Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_app_nic.o
2025-10-31T06:14:11.4628267Z CC [M] drivers/power/supply/sbs-charger.o
2025-10-31T06:14:11.5890806Z AR drivers/media/pci/ttpci/built-in.a
2025-10-31T06:14:11.5992576Z CC [M] drivers/media/pci/ttpci/ttpci-eeprom.o
2025-10-31T06:14:11.7742372Z CC [M] drivers/net/wireless/ti/wl12xx/debugfs.o
2025-10-31T06:14:11.9711900Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_devlink.o
2025-10-31T06:14:12.0152275Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/rtl8821ae.o
2025-10-31T06:14:12.1018003Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/dm.o
2025-10-31T06:14:12.3079835Z CC [M] drivers/power/supply/sbs-manager.o
2025-10-31T06:14:12.3562887Z CC [M] drivers/media/pci/ttpci/budget-core.o
2025-10-31T06:14:13.1844324Z CC [M] drivers/power/supply/bq27xxx_battery.o
2025-10-31T06:14:13.2245080Z CC [M] drivers/net/wireless/ti/wl12xx/scan.o
2025-10-31T06:14:13.6117121Z CC [M] drivers/media/pci/ttpci/budget.o
2025-10-31T06:14:13.6251337Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_hwmon.o
2025-10-31T06:14:13.7733526Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/fw.o
2025-10-31T06:14:14.2081715Z CC [M] drivers/power/supply/bq27xxx_battery_i2c.o
2025-10-31T06:14:14.6827935Z CC [M] drivers/net/wireless/ti/wl12xx/event.o
2025-10-31T06:14:14.7684971Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_main.o
2025-10-31T06:14:14.8143582Z CC [M] drivers/power/supply/bq27xxx_battery_hdq.o
2025-10-31T06:14:14.9390707Z CC [M] drivers/media/pci/ttpci/budget-av.o
2025-10-31T06:14:15.2400964Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/hw.o
2025-10-31T06:14:15.3588598Z CC [M] drivers/power/supply/da9030_battery.o
2025-10-31T06:14:15.9614050Z LD [M] drivers/net/wireless/ti/wl12xx/wl12xx.o
2025-10-31T06:14:16.0497388Z CC [M] drivers/net/wireless/ti/wl1251/main.o
2025-10-31T06:14:16.0531664Z CC [M] drivers/power/supply/da9052-battery.o
2025-10-31T06:14:16.1790485Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_common.o
2025-10-31T06:14:16.7742611Z CC [M] drivers/media/pci/ttpci/budget-ci.o
2025-10-31T06:14:16.8589715Z CC [M] drivers/power/supply/da9150-charger.o
2025-10-31T06:14:17.6303344Z CC [M] drivers/power/supply/da9150-fg.o
2025-10-31T06:14:17.9273571Z CC [M] drivers/net/wireless/ti/wl1251/event.o
2025-10-31T06:14:17.9502399Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/led.o
2025-10-31T06:14:18.3858378Z CC [M] drivers/power/supply/max17040_battery.o
2025-10-31T06:14:18.4485218Z CC [M] drivers/media/pci/ttpci/budget-patch.o
2025-10-31T06:14:19.1184012Z CC [M] drivers/power/supply/max17042_battery.o
2025-10-31T06:14:19.2027891Z CC [M] drivers/net/wireless/ti/wl1251/tx.o
2025-10-31T06:14:19.2210160Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.o
2025-10-31T06:14:19.7977337Z CC [M] drivers/media/pci/ttpci/av7110_hw.o
2025-10-31T06:14:20.0506893Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_ctrl.o
2025-10-31T06:14:20.2098689Z CC [M] drivers/power/supply/max1721x_battery.o
2025-10-31T06:14:20.3607579Z CC [M] drivers/net/wireless/ti/wl1251/rx.o
2025-10-31T06:14:20.8819746Z CC [M] drivers/power/supply/rt5033_battery.o
2025-10-31T06:14:21.0628938Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_debugdump.o
2025-10-31T06:14:21.6942521Z CC [M] drivers/media/pci/ttpci/av7110_v4l.o
2025-10-31T06:14:21.6990154Z CC [M] drivers/net/wireless/ti/wl1251/ps.o
2025-10-31T06:14:21.7599051Z CC [M] drivers/power/supply/rt9455_charger.o
2025-10-31T06:14:22.1496590Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/pwrseq.o
2025-10-31T06:14:22.3974692Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.o
2025-10-31T06:14:22.8195462Z CC [M] drivers/power/supply/twl4030_madc_battery.o
2025-10-31T06:14:22.8876954Z CC [M] drivers/net/wireless/ti/wl1251/cmd.o
2025-10-31T06:14:23.1588200Z CC [M] drivers/media/pci/ttpci/av7110_av.o
2025-10-31T06:14:23.2515728Z CC [M] drivers/power/supply/88pm860x_charger.o
2025-10-31T06:14:23.3995861Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/rf.o
2025-10-31T06:14:24.0873712Z CC [M] drivers/power/supply/pcf50633-charger.o
2025-10-31T06:14:24.2598382Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_main.o
2025-10-31T06:14:24.3773449Z CC [M] drivers/net/wireless/ti/wl1251/acx.o
2025-10-31T06:14:24.7681249Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/sw.o
2025-10-31T06:14:24.9935881Z CC [M] drivers/media/pci/ttpci/av7110_ca.o
2025-10-31T06:14:25.0906149Z CC [M] drivers/power/supply/rx51_battery.o
2025-10-31T06:14:25.6038954Z CC [M] drivers/power/supply/isp1704_charger.o
2025-10-31T06:14:25.8616245Z CC [M] drivers/net/wireless/ti/wl1251/boot.o
2025-10-31T06:14:25.8830198Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_repr.o
2025-10-31T06:14:26.1102758Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/table.o
2025-10-31T06:14:26.2128873Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/trx.o
2025-10-31T06:14:26.3206160Z CC [M] drivers/media/pci/ttpci/av7110.o
2025-10-31T06:14:26.5059197Z CC [M] drivers/power/supply/max8903_charger.o
2025-10-31T06:14:27.2610567Z CC [M] drivers/power/supply/twl4030_charger.o
2025-10-31T06:14:27.2713326Z CC [M] drivers/net/wireless/ti/wl1251/init.o
2025-10-31T06:14:27.2935186Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_sriov.o
2025-10-31T06:14:28.3980323Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/rtl8192ee.o
2025-10-31T06:14:28.4715767Z CC [M] drivers/net/wireless/realtek/rtlwifi/base.o
2025-10-31T06:14:28.4879267Z CC [M] drivers/net/wireless/ti/wl1251/debugfs.o
2025-10-31T06:14:28.5522941Z CC [M] drivers/power/supply/lp8727_charger.o
2025-10-31T06:14:28.5753667Z CC [M] drivers/media/pci/ttpci/av7110_ipack.o
2025-10-31T06:14:28.6882570Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_netvf_main.o
2025-10-31T06:14:29.0646538Z CC [M] drivers/media/pci/ttpci/dvb_filter.o
2025-10-31T06:14:29.3092399Z CC [M] drivers/power/supply/lp8788-charger.o
2025-10-31T06:14:29.5662170Z CC [M] drivers/media/pci/ttpci/av7110_ir.o
2025-10-31T06:14:29.6697667Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_port.o
2025-10-31T06:14:30.1722310Z CC [M] drivers/power/supply/gpio-charger.o
2025-10-31T06:14:30.4862134Z CC [M] drivers/net/wireless/ti/wl1251/io.o
2025-10-31T06:14:30.5454296Z LD [M] drivers/media/pci/ttpci/dvb-ttpci.o
2025-10-31T06:14:30.6633814Z CC [M] drivers/power/supply/lt3651-charger.o
2025-10-31T06:14:30.6713078Z AR drivers/media/pci/b2c2/built-in.a
2025-10-31T06:14:30.6828778Z CC [M] drivers/media/pci/b2c2/flexcop-dma.o
2025-10-31T06:14:31.0846383Z CC [M] drivers/net/wireless/realtek/rtlwifi/cam.o
2025-10-31T06:14:31.0988349Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_shared_buf.o
2025-10-31T06:14:31.2363112Z CC [M] drivers/power/supply/max14577_charger.o
2025-10-31T06:14:31.5610273Z CC [M] drivers/net/wireless/ti/wl1251/spi.o
2025-10-31T06:14:31.6237196Z CC [M] drivers/media/pci/b2c2/flexcop-pci.o
2025-10-31T06:14:32.2544301Z CC [M] drivers/power/supply/max77693_charger.o
2025-10-31T06:14:32.3676744Z CC [M] drivers/net/wireless/realtek/rtlwifi/core.o
2025-10-31T06:14:32.5273931Z CC [M] drivers/net/ethernet/netronome/nfp/nic/main.o
2025-10-31T06:14:32.7987597Z LD [M] drivers/media/pci/b2c2/b2c2-flexcop-pci.o
2025-10-31T06:14:32.8494479Z AR drivers/media/pci/pluto2/built-in.a
2025-10-31T06:14:32.8709934Z CC [M] drivers/media/pci/pluto2/pluto2.o
2025-10-31T06:14:32.9044798Z CC [M] drivers/power/supply/max8997_charger.o
2025-10-31T06:14:32.9713478Z CC [M] drivers/net/wireless/ti/wl1251/sdio.o
2025-10-31T06:14:33.6171021Z CC [M] drivers/net/ethernet/netronome/nfp/crypto/tls.o
2025-10-31T06:14:33.7234900Z CC [M] drivers/power/supply/max8998_charger.o
2025-10-31T06:14:34.2680433Z LD [M] drivers/net/wireless/ti/wl1251/wl1251.o
2025-10-31T06:14:34.3280612Z LD [M] drivers/net/wireless/ti/wl1251/wl1251_spi.o
2025-10-31T06:14:34.3420202Z LD [M] drivers/net/wireless/ti/wl1251/wl1251_sdio.o
2025-10-31T06:14:34.3800501Z AR drivers/media/pci/dm1105/built-in.a
2025-10-31T06:14:34.3906511Z CC [M] drivers/media/pci/dm1105/dm1105.o
2025-10-31T06:14:34.4052591Z CC [M] drivers/net/wireless/ti/wl18xx/main.o
2025-10-31T06:14:34.4782555Z CC [M] drivers/net/wireless/realtek/rtlwifi/debug.o
2025-10-31T06:14:34.6345850Z CC [M] drivers/power/supply/mp2629_charger.o
2025-10-31T06:14:35.1270436Z CC [M] drivers/net/ethernet/netronome/nfp/flower/action.o
2025-10-31T06:14:35.4537427Z CC [M] drivers/power/supply/bq2415x_charger.o
2025-10-31T06:14:35.8258484Z CC [M] drivers/net/wireless/realtek/rtlwifi/efuse.o
2025-10-31T06:14:36.0070093Z AR drivers/media/pci/pt1/built-in.a
2025-10-31T06:14:36.0317956Z CC [M] drivers/media/pci/pt1/pt1.o
2025-10-31T06:14:36.1295006Z CC [M] drivers/net/wireless/ti/wl18xx/acx.o
2025-10-31T06:14:36.8482251Z CC [M] drivers/power/supply/bq24190_charger.o
2025-10-31T06:14:37.0078311Z CC [M] drivers/net/ethernet/netronome/nfp/flower/cmsg.o
2025-10-31T06:14:37.4345773Z CC [M] drivers/net/wireless/ti/wl18xx/tx.o
2025-10-31T06:14:37.8760250Z LD [M] drivers/media/pci/pt1/earth-pt1.o
2025-10-31T06:14:37.9050156Z CC [M] drivers/net/wireless/realtek/rtlwifi/ps.o
2025-10-31T06:14:37.9483456Z AR drivers/media/pci/pt3/built-in.a
2025-10-31T06:14:37.9598919Z CC [M] drivers/media/pci/pt3/pt3.o
2025-10-31T06:14:38.5369838Z CC [M] drivers/power/supply/bq24257_charger.o
2025-10-31T06:14:38.5929345Z CC [M] drivers/net/wireless/ti/wl18xx/io.o
2025-10-31T06:14:38.7031680Z CC [M] drivers/net/ethernet/netronome/nfp/flower/lag_conf.o
2025-10-31T06:14:39.1415292Z CC [M] drivers/media/pci/pt3/pt3_i2c.o
2025-10-31T06:14:39.4384524Z CC [M] drivers/net/wireless/realtek/rtlwifi/rc.o
2025-10-31T06:14:39.5433323Z CC [M] drivers/power/supply/bq24735-charger.o
2025-10-31T06:14:39.8287838Z CC [M] drivers/net/wireless/ti/wl18xx/debugfs.o
2025-10-31T06:14:39.9609878Z CC [M] drivers/media/pci/pt3/pt3_dma.o
2025-10-31T06:14:40.3089174Z CC [M] drivers/net/ethernet/netronome/nfp/flower/main.o
2025-10-31T06:14:40.4861579Z CC [M] drivers/power/supply/bq2515x_charger.o
2025-10-31T06:14:40.8150554Z CC [M] drivers/net/wireless/realtek/rtlwifi/regd.o
2025-10-31T06:14:40.8709838Z LD [M] drivers/media/pci/pt3/earth-pt3.o
2025-10-31T06:14:40.9581705Z AR drivers/media/pci/mantis/built-in.a
2025-10-31T06:14:40.9836263Z CC [M] drivers/media/pci/mantis/mantis_ioc.o
2025-10-31T06:14:41.1816195Z CC [M] drivers/power/supply/bq25890_charger.o
2025-10-31T06:14:41.7923751Z CC [M] drivers/net/wireless/ti/wl18xx/scan.o
2025-10-31T06:14:42.0461843Z CC [M] drivers/media/pci/mantis/mantis_uart.o
2025-10-31T06:14:42.0853808Z CC [M] drivers/power/supply/bq25980_charger.o
2025-10-31T06:14:42.1105170Z CC [M] drivers/net/wireless/realtek/rtlwifi/stats.o
2025-10-31T06:14:42.3168528Z CC [M] drivers/net/ethernet/netronome/nfp/flower/match.o
2025-10-31T06:14:43.0370753Z CC [M] drivers/media/pci/mantis/mantis_dma.o
2025-10-31T06:14:43.0634694Z CC [M] drivers/power/supply/smb347-charger.o
2025-10-31T06:14:43.1729811Z CC [M] drivers/net/wireless/ti/wl18xx/cmd.o
2025-10-31T06:14:43.2843896Z CC [M] drivers/net/wireless/realtek/rtlwifi/pci.o
2025-10-31T06:14:43.9721771Z CC [M] drivers/net/ethernet/netronome/nfp/flower/metadata.o
2025-10-31T06:14:44.0269716Z CC [M] drivers/media/pci/mantis/mantis_pci.o
2025-10-31T06:14:44.1035503Z CC [M] drivers/power/supply/tps65090-charger.o
2025-10-31T06:14:44.7544057Z CC [M] drivers/net/wireless/ti/wl18xx/event.o
2025-10-31T06:14:44.8795823Z CC [M] drivers/power/supply/axp288_fuel_gauge.o
2025-10-31T06:14:45.0800035Z CC [M] drivers/media/pci/mantis/mantis_i2c.o
2025-10-31T06:14:45.6804613Z CC [M] drivers/power/supply/axp288_charger.o
2025-10-31T06:14:45.7182123Z CC [M] drivers/net/wireless/realtek/rtlwifi/usb.o
2025-10-31T06:14:45.7685362Z CC [M] drivers/net/ethernet/netronome/nfp/flower/offload.o
2025-10-31T06:14:46.1204349Z CC [M] drivers/media/pci/mantis/mantis_dvb.o
2025-10-31T06:14:46.1748965Z LD [M] drivers/net/wireless/ti/wl18xx/wl18xx.o
2025-10-31T06:14:46.2976345Z CC drivers/net/wireless/ti/wilink_platform_data.o
2025-10-31T06:14:46.7697695Z AR drivers/net/wireless/ti/built-in.a
2025-10-31T06:14:46.7937630Z CC [M] drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.o
2025-10-31T06:14:46.8718864Z CC [M] drivers/power/supply/cros_usbpd-charger.o
2025-10-31T06:14:47.1384448Z CC [M] drivers/media/pci/mantis/mantis_evm.o
2025-10-31T06:14:47.2789436Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtlwifi.o
2025-10-31T06:14:47.3295135Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl_pci.o
2025-10-31T06:14:47.3468701Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl_usb.o
2025-10-31T06:14:47.4670283Z CC [M] drivers/net/wireless/realtek/rtw88/main.o
2025-10-31T06:14:47.7231818Z CC [M] drivers/power/supply/bd99954-charger.o
2025-10-31T06:14:48.1923637Z CC [M] drivers/media/pci/mantis/mantis_hif.o
2025-10-31T06:14:48.4409670Z CC [M] drivers/media/pci/mantis/mantis_ca.o
2025-10-31T06:14:48.5826450Z CC [M] drivers/power/supply/wilco-charger.o
2025-10-31T06:14:49.1262509Z AR drivers/power/supply/built-in.a
2025-10-31T06:14:49.2148615Z CC [M] drivers/net/wireless/realtek/rtw88/mac80211.o
2025-10-31T06:14:49.3105010Z CC [M] drivers/net/ethernet/netronome/nfp/flower/qos_conf.o
2025-10-31T06:14:49.4794846Z AR drivers/net/ethernet/ni/built-in.a
2025-10-31T06:14:49.4866461Z AR drivers/power/built-in.a
2025-10-31T06:14:49.4912351Z CC [M] drivers/net/ethernet/ni/nixge.o
2025-10-31T06:14:49.5324364Z CC [M] drivers/media/pci/mantis/mantis_pcmcia.o
2025-10-31T06:14:49.5523817Z CC [M] drivers/net/ppp/ppp_generic.o
2025-10-31T06:14:50.5907616Z CC [M] drivers/media/pci/mantis/mantis_input.o
2025-10-31T06:14:50.7099797Z CC [M] drivers/net/wireless/realtek/rtw88/util.o
2025-10-31T06:14:50.7179535Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/cmsg.o
2025-10-31T06:14:50.9205729Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/main.o
2025-10-31T06:14:51.7702733Z CC [M] drivers/media/pci/mantis/mantis_cards.o
2025-10-31T06:14:51.8904845Z CC [M] drivers/net/wireless/realtek/rtw88/debug.o
2025-10-31T06:14:52.0254352Z CC [M] drivers/net/ppp/ppp_async.o
2025-10-31T06:14:52.2413314Z CC [M] drivers/net/ppp/bsd_comp.o
2025-10-31T06:14:52.3916215Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/offload.o
2025-10-31T06:14:52.9588194Z CC [M] drivers/media/pci/mantis/mantis_vp1033.o
2025-10-31T06:14:53.0474001Z CC [M] drivers/media/pci/mantis/mantis_vp1034.o
2025-10-31T06:14:53.4339634Z CC [M] drivers/net/ppp/ppp_deflate.o
2025-10-31T06:14:53.5583417Z CC [M] drivers/net/wireless/realtek/rtw88/tx.o
2025-10-31T06:14:53.9279514Z CC [M] drivers/hwmon/pmbus/pmbus_core.o
2025-10-31T06:14:54.0556877Z CC [M] drivers/net/ppp/ppp_mppe.o
2025-10-31T06:14:54.1960811Z CC [M] drivers/media/pci/mantis/mantis_vp1041.o
2025-10-31T06:14:54.3855116Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/verifier.o
2025-10-31T06:14:54.8259929Z CC [M] drivers/net/ppp/ppp_synctty.o
2025-10-31T06:14:54.9279601Z CC [M] drivers/net/wireless/realtek/rtw88/rx.o
2025-10-31T06:14:55.4208327Z CC [M] drivers/media/pci/mantis/mantis_vp2033.o
2025-10-31T06:14:55.7796222Z CC [M] drivers/hwmon/pmbus/pmbus.o
2025-10-31T06:14:56.0683640Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/jit.o
2025-10-31T06:14:56.0993882Z CC [M] drivers/net/ppp/pppox.o
2025-10-31T06:14:56.1657464Z CC [M] drivers/net/wireless/realtek/rtw88/mac.o
2025-10-31T06:14:56.4715726Z CC [M] drivers/media/pci/mantis/mantis_vp2040.o
2025-10-31T06:14:56.6114651Z CC [M] drivers/hwmon/pmbus/adm1266.o
2025-10-31T06:14:57.4455575Z CC [M] drivers/net/ppp/pppoe.o
2025-10-31T06:14:57.5319507Z CC [M] drivers/media/pci/mantis/mantis_vp3030.o
2025-10-31T06:14:57.6396205Z CC [M] drivers/hwmon/pmbus/adm1275.o
2025-10-31T06:14:58.0997155Z CC [M] drivers/net/wireless/realtek/rtw88/phy.o
2025-10-31T06:14:58.5874212Z CC [M] drivers/media/pci/mantis/hopper_cards.o
2025-10-31T06:14:58.7816970Z CC [M] drivers/hwmon/pmbus/bel-pfe.o
2025-10-31T06:14:59.2939216Z CC [M] drivers/net/ppp/pptp.o
2025-10-31T06:14:59.6437853Z CC [M] drivers/hwmon/pmbus/ibm-cffps.o
2025-10-31T06:14:59.7350999Z CC [M] drivers/net/ethernet/netronome/nfp/abm/cls.o
2025-10-31T06:14:59.8603305Z CC [M] drivers/media/pci/mantis/hopper_vp3028.o
2025-10-31T06:15:00.6321152Z CC [M] drivers/hwmon/pmbus/inspur-ipsps.o
2025-10-31T06:15:00.7532266Z CC [M] drivers/net/wireless/realtek/rtw88/coex.o
2025-10-31T06:15:00.8029870Z CC [M] drivers/net/ethernet/netronome/nfp/abm/ctrl.o
2025-10-31T06:15:00.8341449Z LD [M] drivers/media/pci/mantis/mantis_core.o
2025-10-31T06:15:00.9163907Z LD [M] drivers/media/pci/mantis/mantis.o
2025-10-31T06:15:00.9773146Z LD [M] drivers/media/pci/mantis/hopper.o
2025-10-31T06:15:01.0863674Z AR drivers/media/pci/ngene/built-in.a
2025-10-31T06:15:01.1049868Z CC [M] drivers/media/pci/ngene/ngene-core.o
2025-10-31T06:15:01.3746224Z CC [M] drivers/hwmon/pmbus/ir35221.o
2025-10-31T06:15:01.4942716Z CC [M] drivers/hwmon/pmbus/ir38064.o
2025-10-31T06:15:02.1905145Z CC [M] drivers/net/ethernet/netronome/nfp/abm/qdisc.o
2025-10-31T06:15:02.4923865Z CC [M] drivers/hwmon/pmbus/irps5401.o
2025-10-31T06:15:02.7344094Z CC [M] drivers/media/pci/ngene/ngene-i2c.o
2025-10-31T06:15:03.0466614Z AR drivers/net/ethernet/netronome/built-in.a
2025-10-31T06:15:03.1071183Z AR drivers/media/usb/ttusb-dec/built-in.a
2025-10-31T06:15:03.1283493Z CC [M] drivers/media/usb/ttusb-dec/ttusb_dec.o
2025-10-31T06:15:03.2427297Z CC [M] drivers/hwmon/pmbus/isl68137.o
2025-10-31T06:15:03.2822695Z CC [M] drivers/net/wireless/realtek/rtw88/efuse.o
2025-10-31T06:15:03.8093074Z CC [M] drivers/net/ethernet/netronome/nfp/abm/main.o
2025-10-31T06:15:03.8953054Z CC [M] drivers/media/pci/ngene/ngene-cards.o
2025-10-31T06:15:04.1664658Z CC [M] drivers/hwmon/pmbus/lm25066.o
2025-10-31T06:15:04.6609452Z CC [M] drivers/net/wireless/realtek/rtw88/fw.o
2025-10-31T06:15:04.9136853Z CC [M] drivers/media/usb/ttusb-dec/ttusbdecfe.o
2025-10-31T06:15:05.1945135Z CC [M] drivers/hwmon/pmbus/ltc2978.o
2025-10-31T06:15:05.3553770Z CC [M] drivers/media/pci/ngene/ngene-dvb.o
2025-10-31T06:15:05.3753627Z LD [M] drivers/net/ethernet/netronome/nfp/nfp.o
2025-10-31T06:15:05.6755927Z AR drivers/media/usb/ttusb-budget/built-in.a
2025-10-31T06:15:05.6968881Z CC [M] drivers/media/usb/ttusb-budget/dvb-ttusb-budget.o
2025-10-31T06:15:05.7066821Z AR drivers/net/ethernet/nvidia/built-in.a
2025-10-31T06:15:05.7168809Z CC [M] drivers/net/ethernet/nvidia/forcedeth.o
2025-10-31T06:15:06.1900893Z CC [M] drivers/hwmon/pmbus/ltc3815.o
2025-10-31T06:15:06.4495685Z LD [M] drivers/media/pci/ngene/ngene.o
2025-10-31T06:15:06.5038955Z AR drivers/media/pci/ddbridge/built-in.a
2025-10-31T06:15:06.5145423Z CC [M] drivers/media/pci/ddbridge/ddbridge-main.o
2025-10-31T06:15:06.8065069Z CC [M] drivers/net/wireless/realtek/rtw88/ps.o
2025-10-31T06:15:07.2095769Z CC [M] drivers/hwmon/pmbus/max16064.o
2025-10-31T06:15:07.4762285Z AR drivers/media/usb/dvb-usb/built-in.a
2025-10-31T06:15:07.4992918Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-firmware.o
2025-10-31T06:15:07.5372793Z CC [M] drivers/media/pci/ddbridge/ddbridge-core.o
2025-10-31T06:15:08.0192571Z CC [M] drivers/net/wireless/realtek/rtw88/sec.o
2025-10-31T06:15:08.0708337Z CC [M] drivers/hwmon/pmbus/max16601.o
2025-10-31T06:15:08.6180359Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-init.o
2025-10-31T06:15:09.1140574Z CC [M] drivers/hwmon/pmbus/max20730.o
2025-10-31T06:15:09.3366087Z CC [M] drivers/net/wireless/realtek/rtw88/bf.o
2025-10-31T06:15:09.6641263Z AR drivers/net/ethernet/oki-semi/built-in.a
2025-10-31T06:15:09.6972441Z AR drivers/net/ethernet/packetengines/built-in.a
2025-10-31T06:15:09.7074044Z CC [M] drivers/net/ethernet/packetengines/hamachi.o
2025-10-31T06:15:09.7141882Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-urb.o
2025-10-31T06:15:10.3346918Z CC [M] drivers/hwmon/pmbus/max20751.o
2025-10-31T06:15:10.6957491Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-i2c.o
2025-10-31T06:15:10.8293751Z CC [M] drivers/net/wireless/realtek/rtw88/regd.o
2025-10-31T06:15:11.0307250Z CC [M] drivers/hwmon/pmbus/max31785.o
2025-10-31T06:15:11.0422770Z CC [M] drivers/media/pci/ddbridge/ddbridge-ci.o
2025-10-31T06:15:11.4192442Z CC [M] drivers/net/ethernet/packetengines/yellowfin.o
2025-10-31T06:15:11.6602860Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dvb.o
2025-10-31T06:15:11.7542286Z CC [M] drivers/hwmon/pmbus/max34440.o
2025-10-31T06:15:12.2118445Z CC [M] drivers/net/wireless/realtek/rtw88/wow.o
2025-10-31T06:15:12.4375297Z CC [M] drivers/media/pci/ddbridge/ddbridge-hw.o
2025-10-31T06:15:12.5692286Z CC [M] drivers/hwmon/pmbus/max8688.o
2025-10-31T06:15:12.7770882Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.o
2025-10-31T06:15:13.0319089Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-remote.o
2025-10-31T06:15:13.2109924Z CC [M] drivers/media/pci/ddbridge/ddbridge-i2c.o
2025-10-31T06:15:13.5182599Z CC [M] drivers/hwmon/pmbus/mp2975.o
2025-10-31T06:15:14.0287013Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822b.o
2025-10-31T06:15:14.2777259Z CC [M] drivers/media/pci/ddbridge/ddbridge-max.o
2025-10-31T06:15:14.3445612Z CC [M] drivers/media/usb/dvb-usb/usb-urb.o
2025-10-31T06:15:14.5212412Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.o
2025-10-31T06:15:14.5950095Z CC [M] drivers/hwmon/pmbus/pxe1610.o
2025-10-31T06:15:15.3637503Z CC [M] drivers/media/usb/dvb-usb/vp7045.o
2025-10-31T06:15:15.4505050Z CC [M] drivers/media/pci/ddbridge/ddbridge-mci.o
2025-10-31T06:15:15.5181061Z CC [M] drivers/hwmon/pmbus/tps40422.o
2025-10-31T06:15:16.3709306Z CC [M] drivers/media/usb/dvb-usb/vp7045-fe.o
2025-10-31T06:15:16.4983802Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822b_table.o
2025-10-31T06:15:16.5188574Z CC [M] drivers/hwmon/pmbus/tps53679.o
2025-10-31T06:15:16.6291216Z CC [M] drivers/media/pci/ddbridge/ddbridge-sx8.o
2025-10-31T06:15:17.2811898Z CC [M] drivers/media/usb/dvb-usb/vp702x.o
2025-10-31T06:15:17.6287209Z CC [M] drivers/hwmon/pmbus/ucd9000.o
2025-10-31T06:15:17.6835487Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822be.o
2025-10-31T06:15:18.0295294Z CC [M] drivers/media/pci/ddbridge/ddbridge-dummy-fe.o
2025-10-31T06:15:18.2168184Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_init.o
2025-10-31T06:15:18.3121641Z CC [M] drivers/media/usb/dvb-usb/vp702x-fe.o
2025-10-31T06:15:18.4805907Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822c.o
2025-10-31T06:15:18.5941283Z LD [M] drivers/media/pci/ddbridge/ddbridge.o
2025-10-31T06:15:18.6655126Z AR drivers/media/pci/saa7146/built-in.a
2025-10-31T06:15:18.6761081Z CC [M] drivers/media/pci/saa7146/mxb.o
2025-10-31T06:15:18.9294175Z CC [M] drivers/hwmon/pmbus/ucd9200.o
2025-10-31T06:15:19.3043299Z CC [M] drivers/media/usb/dvb-usb/gp8psk.o
2025-10-31T06:15:19.9232597Z CC [M] drivers/hwmon/pmbus/xdpe12284.o
2025-10-31T06:15:19.9385109Z CC [M] drivers/media/pci/saa7146/hexium_orion.o
2025-10-31T06:15:20.2469711Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_ethtool.o
2025-10-31T06:15:20.3798942Z CC [M] drivers/media/usb/dvb-usb/dtt200u.o
2025-10-31T06:15:20.7497228Z CC [M] drivers/hwmon/pmbus/zl6100.o
2025-10-31T06:15:21.0123841Z CC [M] drivers/media/pci/saa7146/hexium_gemini.o
2025-10-31T06:15:21.5695059Z CC [M] drivers/media/usb/dvb-usb/dtt200u-fe.o
2025-10-31T06:15:21.8250815Z CC drivers/hwmon/hwmon.o
2025-10-31T06:15:22.1253394Z AR drivers/media/pci/smipcie/built-in.a
2025-10-31T06:15:22.1443844Z CC [M] drivers/media/pci/smipcie/smipcie-main.o
2025-10-31T06:15:22.3263838Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_ctx.o
2025-10-31T06:15:22.5135087Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822c_table.o
2025-10-31T06:15:22.6638741Z CC [M] drivers/media/usb/dvb-usb/dibusb-common.o
2025-10-31T06:15:23.1753673Z CC [M] drivers/hwmon/hwmon-vid.o
2025-10-31T06:15:23.6197912Z CC [M] drivers/media/pci/smipcie/smipcie-ir.o
2025-10-31T06:15:23.6361258Z CC [M] drivers/hwmon/acpi_power_meter.o
2025-10-31T06:15:23.8360175Z CC [M] drivers/media/usb/dvb-usb/dibusb-mc-common.o
2025-10-31T06:15:24.1880264Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822ce.o
2025-10-31T06:15:24.2019911Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.o
2025-10-31T06:15:24.5489775Z LD [M] drivers/media/pci/smipcie/smipcie.o
2025-10-31T06:15:24.5972809Z AR drivers/media/pci/netup_unidvb/built-in.a
2025-10-31T06:15:24.6085962Z CC [M] drivers/media/pci/netup_unidvb/netup_unidvb_core.o
2025-10-31T06:15:24.7176353Z CC [M] drivers/hwmon/asus_atk0110.o
2025-10-31T06:15:24.8865167Z CC [M] drivers/media/usb/dvb-usb/a800.o
2025-10-31T06:15:24.9757980Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8723d.o
2025-10-31T06:15:25.7242168Z CC [M] drivers/hwmon/asb100.o
2025-10-31T06:15:26.0121226Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-common.o
2025-10-31T06:15:26.0319357Z CC [M] drivers/media/pci/netup_unidvb/netup_unidvb_i2c.o
2025-10-31T06:15:26.0383662Z CC [M] drivers/media/usb/dvb-usb/dibusb-mb.o
2025-10-31T06:15:26.6245516Z CC [M] drivers/hwmon/w83627hf.o
2025-10-31T06:15:26.9292449Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.o
2025-10-31T06:15:26.9984193Z CC [M] drivers/media/usb/dvb-usb/dibusb-mc.o
2025-10-31T06:15:27.2627339Z CC [M] drivers/media/pci/netup_unidvb/netup_unidvb_ci.o
2025-10-31T06:15:27.4817732Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8723d_table.o
2025-10-31T06:15:27.9125059Z CC [M] drivers/media/usb/dvb-usb/nova-t-usb2.o
2025-10-31T06:15:28.1360892Z CC [M] drivers/hwmon/w83773g.o
2025-10-31T06:15:28.4655746Z CC [M] drivers/media/pci/netup_unidvb/netup_unidvb_spi.o
2025-10-31T06:15:28.6533082Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8723de.o
2025-10-31T06:15:28.7625152Z CC [M] drivers/hwmon/w83792d.o
2025-10-31T06:15:28.8501895Z CC [M] drivers/media/usb/dvb-usb/umt-010.o
2025-10-31T06:15:29.0816375Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_minidump.o
2025-10-31T06:15:29.3323116Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8821c.o
2025-10-31T06:15:29.5660698Z LD [M] drivers/media/pci/netup_unidvb/netup-unidvb.o
2025-10-31T06:15:29.7008930Z AR drivers/media/pci/intel/ipu3/built-in.a
2025-10-31T06:15:29.7217722Z CC [M] drivers/media/pci/intel/ipu3/ipu3-cio2.o
2025-10-31T06:15:29.8743783Z CC [M] drivers/hwmon/w83793.o
2025-10-31T06:15:29.8948910Z CC [M] drivers/media/usb/dvb-usb/m920x.o
2025-10-31T06:15:31.0213796Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.o
2025-10-31T06:15:31.2706343Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8821c_table.o
2025-10-31T06:15:31.3746348Z AR drivers/media/pci/intel/built-in.a
2025-10-31T06:15:31.3971355Z CC [M] drivers/media/usb/dvb-usb/digitv.o
2025-10-31T06:15:31.4399944Z CC [M] drivers/media/pci/ivtv/ivtv-routing.o
2025-10-31T06:15:31.5354441Z CC [M] drivers/hwmon/w83795.o
2025-10-31T06:15:32.3366094Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8821ce.o
2025-10-31T06:15:32.4359660Z CC [M] drivers/media/pci/ivtv/ivtv-cards.o
2025-10-31T06:15:32.4925473Z CC [M] drivers/media/usb/dvb-usb/cxusb.o
2025-10-31T06:15:32.9829696Z CC [M] drivers/net/wireless/realtek/rtw88/pci.o
2025-10-31T06:15:33.2400216Z CC [M] drivers/media/pci/ivtv/ivtv-controls.o
2025-10-31T06:15:33.3784338Z CC [M] drivers/hwmon/w83781d.o
2025-10-31T06:15:34.1903196Z CC [M] drivers/media/pci/ivtv/ivtv-driver.o
2025-10-31T06:15:34.3177581Z CC [M] drivers/media/usb/dvb-usb/cxusb-analog.o
2025-10-31T06:15:34.3807628Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.o
2025-10-31T06:15:34.5746039Z CC [M] drivers/hwmon/w83791d.o
2025-10-31T06:15:35.3240860Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_core.o
2025-10-31T06:15:35.4686940Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822b.o
2025-10-31T06:15:35.5050319Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822be.o
2025-10-31T06:15:35.5279098Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822c.o
2025-10-31T06:15:35.5638380Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822ce.o
2025-10-31T06:15:35.5758955Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8723d.o
2025-10-31T06:15:35.5967656Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8723de.o
2025-10-31T06:15:35.6027838Z CC [M] drivers/hwmon/abituguru.o
2025-10-31T06:15:35.6107204Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8821c.o
2025-10-31T06:15:35.6506679Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8821ce.o
2025-10-31T06:15:35.6543174Z CC [M] drivers/media/pci/ivtv/ivtv-fileops.o
2025-10-31T06:15:35.6702500Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_pci.o
2025-10-31T06:15:35.8079553Z AR drivers/net/wireless/realtek/built-in.a
2025-10-31T06:15:35.9122157Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_chip.o
2025-10-31T06:15:36.2541664Z CC [M] drivers/media/usb/dvb-usb/ttusb2.o
2025-10-31T06:15:36.4098612Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_vnic.o
2025-10-31T06:15:36.9468771Z CC [M] drivers/hwmon/abituguru3.o
2025-10-31T06:15:37.2499327Z CC [M] drivers/media/pci/ivtv/ivtv-firmware.o
2025-10-31T06:15:37.6388794Z CC [M] drivers/media/usb/dvb-usb/dib0700_core.o
2025-10-31T06:15:37.6801910Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_mac.o
2025-10-31T06:15:37.7027441Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.o
2025-10-31T06:15:37.8900900Z CC [M] drivers/hwmon/ad7314.o
2025-10-31T06:15:38.3087279Z CC [M] drivers/media/pci/ivtv/ivtv-gpio.o
2025-10-31T06:15:38.6417403Z CC [M] drivers/hwmon/ad7414.o
2025-10-31T06:15:39.0271734Z CC [M] drivers/media/usb/dvb-usb/dib0700_devices.o
2025-10-31T06:15:39.2792445Z CC [M] drivers/hwmon/ad7418.o
2025-10-31T06:15:39.3363843Z CC [M] drivers/media/pci/ivtv/ivtv-i2c.o
2025-10-31T06:15:39.6615695Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf_al2230.o
2025-10-31T06:15:39.7236367Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_pf.o
2025-10-31T06:15:39.8104355Z CC [M] drivers/hwmon/adc128d818.o
2025-10-31T06:15:40.6619594Z CC [M] drivers/hwmon/adcxx.o
2025-10-31T06:15:40.8303106Z CC [M] drivers/media/pci/ivtv/ivtv-ioctl.o
2025-10-31T06:15:41.0304286Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf_rf2959.o
2025-10-31T06:15:41.1753459Z CC [M] drivers/media/usb/dvb-usb/opera1.o
2025-10-31T06:15:41.3300804Z CC [M] drivers/hwmon/adm1021.o
2025-10-31T06:15:41.8170645Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_dcb.o
2025-10-31T06:15:42.1032148Z CC [M] drivers/hwmon/adm1025.o
2025-10-31T06:15:42.1123871Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf_al7230b.o
2025-10-31T06:15:42.3535994Z CC [M] drivers/media/usb/dvb-usb/af9005.o
2025-10-31T06:15:42.8813630Z CC [M] drivers/media/pci/ivtv/ivtv-irq.o
2025-10-31T06:15:42.9147591Z CC [M] drivers/hwmon/adm1026.o
2025-10-31T06:15:43.2582897Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf_uw2453.o
2025-10-31T06:15:43.7278589Z LD [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic.o
2025-10-31T06:15:43.8343099Z CC [M] drivers/media/usb/dvb-usb/af9005-fe.o
2025-10-31T06:15:43.8964441Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_hw.o
2025-10-31T06:15:44.2264207Z CC [M] drivers/hwmon/adm1029.o
2025-10-31T06:15:44.3666180Z CC [M] drivers/media/pci/ivtv/ivtv-mailbox.o
2025-10-31T06:15:44.7786252Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf.o
2025-10-31T06:15:44.8840067Z CC [M] drivers/hwmon/adm1031.o
2025-10-31T06:15:45.1893307Z CC [M] drivers/media/usb/dvb-usb/af9005-remote.o
2025-10-31T06:15:45.5110918Z CC [M] drivers/media/pci/ivtv/ivtv-queue.o
2025-10-31T06:15:45.8903600Z CC [M] drivers/hwmon/adm1177.o
2025-10-31T06:15:45.9488806Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_usb.o
2025-10-31T06:15:46.1745321Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_main.o
2025-10-31T06:15:46.4774100Z CC [M] drivers/media/usb/dvb-usb/pctv452e.o
2025-10-31T06:15:46.4923819Z CC [M] drivers/media/pci/ivtv/ivtv-streams.o
2025-10-31T06:15:46.9361122Z CC [M] drivers/hwmon/adm9240.o
2025-10-31T06:15:47.6941103Z CC [M] drivers/media/pci/ivtv/ivtv-udma.o
2025-10-31T06:15:47.8228953Z CC [M] drivers/media/usb/dvb-usb/dw2102.o
2025-10-31T06:15:47.8713556Z LD [M] drivers/net/wireless/zydas/zd1211rw/zd1211rw.o
2025-10-31T06:15:47.9071290Z CC [M] drivers/hwmon/ads7828.o
2025-10-31T06:15:47.9563666Z AR drivers/net/wireless/zydas/built-in.a
2025-10-31T06:15:47.9750168Z CC [M] drivers/net/wireless/zydas/zd1201.o
2025-10-31T06:15:48.6058271Z CC [M] drivers/media/pci/ivtv/ivtv-vbi.o
2025-10-31T06:15:48.6960757Z CC [M] drivers/hwmon/ads7871.o
2025-10-31T06:15:49.0411472Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_init.o
2025-10-31T06:15:49.3663696Z CC [M] drivers/hwmon/adt7x10.o
2025-10-31T06:15:49.6265156Z CC [M] drivers/media/pci/ivtv/ivtv-yuv.o
2025-10-31T06:15:49.8956668Z CC [M] drivers/hwmon/adt7310.o
2025-10-31T06:15:49.9926343Z CC [M] drivers/net/wireless/quantenna/qtnfmac/core.o
2025-10-31T06:15:50.4124558Z CC [M] drivers/media/usb/dvb-usb/dtv5100.o
2025-10-31T06:15:50.5141817Z CC [M] drivers/hwmon/adt7410.o
2025-10-31T06:15:51.0728339Z CC [M] drivers/hwmon/adt7411.o
2025-10-31T06:15:51.1428742Z CC [M] drivers/media/pci/ivtv/ivtv-alsa-main.o
2025-10-31T06:15:51.4671353Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_ethtool.o
2025-10-31T06:15:51.5521908Z CC [M] drivers/media/usb/dvb-usb/cinergyT2-core.o
2025-10-31T06:15:51.5610028Z CC [M] drivers/net/wireless/quantenna/qtnfmac/commands.o
2025-10-31T06:15:51.8414754Z CC [M] drivers/hwmon/adt7462.o
2025-10-31T06:15:52.0573568Z CC [M] drivers/media/pci/ivtv/ivtv-alsa-pcm.o
2025-10-31T06:15:52.6254041Z CC [M] drivers/media/usb/dvb-usb/cinergyT2-fe.o
2025-10-31T06:15:52.8847839Z CC [M] drivers/media/pci/ivtv/ivtvfb.o
2025-10-31T06:15:53.0288868Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_ctx.o
2025-10-31T06:15:53.2424448Z CC [M] drivers/hwmon/adt7470.o
2025-10-31T06:15:53.9134728Z CC [M] drivers/media/usb/dvb-usb/az6027.o
2025-10-31T06:15:54.0390330Z CC [M] drivers/net/wireless/quantenna/qtnfmac/trans.o
2025-10-31T06:15:54.2154790Z LD [M] drivers/media/pci/ivtv/ivtv.o
2025-10-31T06:15:54.3004470Z LD [M] drivers/media/pci/ivtv/ivtv-alsa.o
2025-10-31T06:15:54.3069543Z CC [M] drivers/hwmon/adt7475.o
2025-10-31T06:15:54.4109467Z CC [M] drivers/media/pci/cx18/cx18-driver.o
2025-10-31T06:15:54.4885794Z LD [M] drivers/net/ethernet/qlogic/netxen/netxen_nic.o
2025-10-31T06:15:54.6146852Z CC [M] drivers/net/ethernet/qlogic/qed/qed_chain.o
2025-10-31T06:15:55.0871373Z CC [M] drivers/media/usb/dvb-usb/technisat-usb2.o
2025-10-31T06:15:55.3036953Z CC [M] drivers/net/wireless/quantenna/qtnfmac/cfg80211.o
2025-10-31T06:15:55.5538625Z CC [M] drivers/hwmon/amd_energy.o
2025-10-31T06:15:55.7021185Z CC [M] drivers/net/ethernet/qlogic/qed/qed_cxt.o
2025-10-31T06:15:55.9177775Z CC [M] drivers/media/pci/cx18/cx18-cards.o
2025-10-31T06:15:56.2950924Z LD [M] drivers/media/usb/dvb-usb/dvb-usb.o
2025-10-31T06:15:56.3254894Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-vp7045.o
2025-10-31T06:15:56.3413243Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-vp702x.o
2025-10-31T06:15:56.3578120Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-gp8psk.o
2025-10-31T06:15:56.3711793Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dtt200u.o
2025-10-31T06:15:56.3871201Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common.o
2025-10-31T06:15:56.3967812Z CC [M] drivers/hwmon/applesmc.o
2025-10-31T06:15:56.4103608Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-a800.o
2025-10-31T06:15:56.4379101Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mb.o
2025-10-31T06:15:56.4631794Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc.o
2025-10-31T06:15:56.4904621Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.o
2025-10-31T06:15:56.5153613Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-umt-010.o
2025-10-31T06:15:56.5448075Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-m920x.o
2025-10-31T06:15:56.5723530Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-digitv.o
2025-10-31T06:15:56.6014464Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-cxusb.o
2025-10-31T06:15:56.6417568Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-ttusb2.o
2025-10-31T06:15:56.6705060Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dib0700.o
2025-10-31T06:15:56.7094728Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-opera.o
2025-10-31T06:15:56.7362216Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-af9005.o
2025-10-31T06:15:56.7719899Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-af9005-remote.o
2025-10-31T06:15:56.7963589Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-pctv452e.o
2025-10-31T06:15:56.8248873Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dw2102.o
2025-10-31T06:15:56.8565036Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dtv5100.o
2025-10-31T06:15:56.8811230Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-cinergyT2.o
2025-10-31T06:15:56.9163164Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-az6027.o
2025-10-31T06:15:56.9417593Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-technisat-usb2.o
2025-10-31T06:15:57.0109915Z CC [M] drivers/media/pci/cx18/cx18-i2c.o
2025-10-31T06:15:57.1348910Z CC [M] drivers/net/wireless/quantenna/qtnfmac/event.o
2025-10-31T06:15:57.2099164Z AR drivers/media/usb/dvb-usb-v2/built-in.a
2025-10-31T06:15:57.2352425Z CC [M] drivers/media/usb/dvb-usb-v2/dvb_usb_core.o
2025-10-31T06:15:57.7248823Z CC [M] drivers/hwmon/as370-hwmon.o
2025-10-31T06:15:57.8478042Z CC [M] drivers/net/ethernet/qlogic/qed/qed_dcbx.o
2025-10-31T06:15:58.1444206Z CC [M] drivers/hwmon/asc7621.o
2025-10-31T06:15:58.4008347Z CC [M] drivers/media/pci/cx18/cx18-firmware.o
2025-10-31T06:15:58.7436103Z CC [M] drivers/net/wireless/quantenna/qtnfmac/util.o
2025-10-31T06:15:58.9888554Z CC [M] drivers/media/usb/dvb-usb-v2/dvb_usb_urb.o
2025-10-31T06:15:59.1634464Z CC [M] drivers/hwmon/aspeed-pwm-tacho.o
2025-10-31T06:15:59.6774738Z CC [M] drivers/media/pci/cx18/cx18-gpio.o
2025-10-31T06:15:59.8616972Z CC [M] drivers/hwmon/atxp1.o
2025-10-31T06:16:00.0206249Z CC [M] drivers/net/wireless/quantenna/qtnfmac/qlink_util.o
2025-10-31T06:16:00.1083557Z CC [M] drivers/media/usb/dvb-usb-v2/usb_urb.o
2025-10-31T06:16:00.1477473Z CC [M] drivers/net/ethernet/qlogic/qed/qed_debug.o
2025-10-31T06:16:00.4342834Z CC [M] drivers/hwmon/axi-fan-control.o
2025-10-31T06:16:00.7604511Z CC [M] drivers/media/pci/cx18/cx18-queue.o
2025-10-31T06:16:00.9577065Z CC [M] drivers/hwmon/coretemp.o
2025-10-31T06:16:01.0518202Z CC [M] drivers/net/wireless/quantenna/qtnfmac/shm_ipc.o
2025-10-31T06:16:01.5007620Z CC [M] drivers/net/wireless/quantenna/qtnfmac/pcie/pcie.o
2025-10-31T06:16:01.5849704Z CC [M] drivers/media/usb/dvb-usb-v2/af9015.o
2025-10-31T06:16:02.0406023Z CC [M] drivers/hwmon/corsair-cpro.o
2025-10-31T06:16:02.3193736Z CC [M] drivers/media/pci/cx18/cx18-streams.o
2025-10-31T06:16:02.7408889Z CC [M] drivers/hwmon/da9052-hwmon.o
2025-10-31T06:16:02.8742381Z CC [M] drivers/net/wireless/quantenna/qtnfmac/pcie/pearl_pcie.o
2025-10-31T06:16:03.3468453Z CC [M] drivers/media/usb/dvb-usb-v2/af9035.o
2025-10-31T06:16:03.8658599Z CC [M] drivers/hwmon/da9055-hwmon.o
2025-10-31T06:16:03.8831627Z CC [M] drivers/media/pci/cx18/cx18-fileops.o
2025-10-31T06:16:04.3346172Z CC [M] drivers/net/ethernet/qlogic/qed/qed_dev.o
2025-10-31T06:16:04.3606096Z CC [M] drivers/hwmon/dell-smm-hwmon.o
2025-10-31T06:16:04.6646974Z CC [M] drivers/net/wireless/quantenna/qtnfmac/pcie/topaz_pcie.o
2025-10-31T06:16:05.2087477Z CC [M] drivers/media/usb/dvb-usb-v2/anysee.o
2025-10-31T06:16:05.4516753Z CC [M] drivers/hwmon/dme1737.o
2025-10-31T06:16:05.5374107Z CC [M] drivers/media/pci/cx18/cx18-ioctl.o
2025-10-31T06:16:06.5148869Z CC [M] drivers/net/wireless/quantenna/qtnfmac/debug.o
2025-10-31T06:16:06.8428672Z CC [M] drivers/media/usb/dvb-usb-v2/au6610.o
2025-10-31T06:16:07.1914190Z CC [M] drivers/media/pci/cx18/cx18-controls.o
2025-10-31T06:16:07.5920601Z CC [M] drivers/hwmon/drivetemp.o
2025-10-31T06:16:07.6795368Z LD [M] drivers/net/wireless/quantenna/qtnfmac/qtnfmac.o
2025-10-31T06:16:07.7539909Z LD [M] drivers/net/wireless/quantenna/qtnfmac/qtnfmac_pcie.o
2025-10-31T06:16:07.8494134Z AR drivers/net/wireless/quantenna/built-in.a
2025-10-31T06:16:07.8770461Z CC [M] drivers/net/wireless/ray_cs.o
2025-10-31T06:16:07.9049000Z CC [M] drivers/net/ethernet/qlogic/qed/qed_devlink.o
2025-10-31T06:16:07.9216010Z CC [M] drivers/media/usb/dvb-usb-v2/az6007.o
2025-10-31T06:16:08.3696747Z CC [M] drivers/hwmon/ds620.o
2025-10-31T06:16:08.6518245Z CC [M] drivers/media/pci/cx18/cx18-mailbox.o
2025-10-31T06:16:08.8396249Z CC [M] drivers/net/ethernet/qlogic/qed/qed_hw.o
2025-10-31T06:16:08.8706310Z CC [M] drivers/hwmon/ds1621.o
2025-10-31T06:16:09.4977994Z CC [M] drivers/hwmon/emc1403.o
2025-10-31T06:16:09.5743490Z CC [M] drivers/media/usb/dvb-usb-v2/ce6230.o
2025-10-31T06:16:10.1340821Z CC [M] drivers/net/wireless/wl3501_cs.o
2025-10-31T06:16:10.1698809Z CC [M] drivers/net/ethernet/qlogic/qed/qed_init_fw_funcs.o
2025-10-31T06:16:10.1724695Z CC [M] drivers/hwmon/emc2103.o
2025-10-31T06:16:10.2540046Z CC [M] drivers/media/pci/cx18/cx18-vbi.o
2025-10-31T06:16:10.7764506Z CC [M] drivers/media/usb/dvb-usb-v2/ec168.o
2025-10-31T06:16:10.9361590Z CC [M] drivers/hwmon/emc6w201.o
2025-10-31T06:16:11.4609219Z CC [M] drivers/media/pci/cx18/cx18-audio.o
2025-10-31T06:16:11.6948020Z CC [M] drivers/hwmon/f71805f.o
2025-10-31T06:16:11.7843613Z CC [M] drivers/net/ethernet/qlogic/qed/qed_init_ops.o
2025-10-31T06:16:11.9045105Z CC [M] drivers/net/wireless/rndis_wlan.o
2025-10-31T06:16:12.1523413Z CC [M] drivers/media/usb/dvb-usb-v2/lmedm04.o
2025-10-31T06:16:12.5827104Z CC [M] drivers/media/pci/cx18/cx18-video.o
2025-10-31T06:16:12.9405325Z CC [M] drivers/hwmon/f71882fg.o
2025-10-31T06:16:13.1008354Z CC [M] drivers/net/ethernet/qlogic/qed/qed_int.o
2025-10-31T06:16:13.7713563Z CC [M] drivers/media/usb/dvb-usb-v2/gl861.o
2025-10-31T06:16:13.8247224Z CC [M] drivers/media/pci/cx18/cx18-irq.o
2025-10-31T06:16:14.5163047Z CC [M] drivers/net/wireless/mac80211_hwsim.o
2025-10-31T06:16:14.6721410Z CC [M] drivers/hwmon/f75375s.o
2025-10-31T06:16:14.9403463Z CC [M] drivers/media/pci/cx18/cx18-av-core.o
2025-10-31T06:16:15.0494448Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf.o
2025-10-31T06:16:15.0561244Z CC [M] drivers/net/ethernet/qlogic/qed/qed_l2.o
2025-10-31T06:16:15.6943316Z CC [M] drivers/hwmon/fam15h_power.o
2025-10-31T06:16:16.6415242Z CC [M] drivers/hwmon/fschmd.o
2025-10-31T06:16:16.9539706Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-phy.o
2025-10-31T06:16:17.0187699Z CC [M] drivers/media/pci/cx18/cx18-av-audio.o
2025-10-31T06:16:17.2949649Z CC [M] drivers/net/ethernet/qlogic/qed/qed_main.o
2025-10-31T06:16:17.7545787Z CC [M] drivers/net/wireless/virt_wifi.o
2025-10-31T06:16:18.0070896Z CC [M] drivers/hwmon/ftsteutates.o
2025-10-31T06:16:18.0617658Z CC [M] drivers/media/pci/cx18/cx18-av-firmware.o
2025-10-31T06:16:18.3165614Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-i2c.o
2025-10-31T06:16:18.7765335Z AR drivers/net/wireless/built-in.a
2025-10-31T06:16:18.9104246Z AR drivers/thermal/broadcom/built-in.a
2025-10-31T06:16:18.9445198Z CC [M] drivers/hwmon/g760a.o
2025-10-31T06:16:18.9591113Z AR drivers/thermal/samsung/built-in.a
2025-10-31T06:16:19.0443914Z CC [M] drivers/thermal/intel/int340x_thermal/int3400_thermal.o
2025-10-31T06:16:19.0896383Z CC [M] drivers/media/pci/cx18/cx18-av-vbi.o
2025-10-31T06:16:19.4552292Z CC [M] drivers/hwmon/g762.o
2025-10-31T06:16:19.8634904Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-gpio.o
2025-10-31T06:16:19.9762589Z CC [M] drivers/net/ethernet/qlogic/qed/qed_mcp.o
2025-10-31T06:16:20.0129728Z CC [M] drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.o
2025-10-31T06:16:20.2510717Z CC [M] drivers/media/pci/cx18/cx18-scb.o
2025-10-31T06:16:20.2843938Z CC [M] drivers/hwmon/gl518sm.o
2025-10-31T06:16:20.7064189Z CC [M] drivers/thermal/intel/int340x_thermal/int3402_thermal.o
2025-10-31T06:16:21.0403031Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-demod.o
2025-10-31T06:16:21.1338352Z CC [M] drivers/thermal/intel/int340x_thermal/int3403_thermal.o
2025-10-31T06:16:21.5111799Z CC [M] drivers/hwmon/gl520sm.o
2025-10-31T06:16:21.5917987Z CC [M] drivers/media/pci/cx18/cx18-dvb.o
2025-10-31T06:16:21.7040525Z CC [M] drivers/thermal/intel/int340x_thermal/processor_thermal_device.o
2025-10-31T06:16:22.1679824Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-tuner.o
2025-10-31T06:16:22.5376495Z CC [M] drivers/hwmon/hih6130.o
2025-10-31T06:16:22.6760217Z CC [M] drivers/thermal/intel/int340x_thermal/int3406_thermal.o
2025-10-31T06:16:22.9305675Z CC [M] drivers/media/pci/cx18/cx18-io.o
2025-10-31T06:16:23.0833363Z CC [M] drivers/hwmon/i5500_temp.o
2025-10-31T06:16:23.1864094Z CC [M] drivers/net/ethernet/qlogic/qed/qed_mng_tlv.o
2025-10-31T06:16:23.3659063Z CC [M] drivers/thermal/intel/int340x_thermal/acpi_thermal_rel.o
2025-10-31T06:16:23.5890180Z CC [M] drivers/media/usb/dvb-usb-v2/rtl28xxu.o
2025-10-31T06:16:23.8920226Z CC [M] drivers/hwmon/i5k_amb.o
2025-10-31T06:16:23.9655413Z CC [M] drivers/media/pci/cx18/cx18-alsa-main.o
2025-10-31T06:16:24.4626217Z AR drivers/thermal/intel/built-in.a
2025-10-31T06:16:24.4716582Z CC [M] drivers/net/ethernet/qlogic/qed/qed_ptp.o
2025-10-31T06:16:24.4843410Z CC [M] drivers/thermal/intel/intel_powerclamp.o
2025-10-31T06:16:24.9131825Z CC [M] drivers/hwmon/ibmaem.o
2025-10-31T06:16:24.9842403Z CC [M] drivers/media/pci/cx18/cx18-alsa-pcm.o
2025-10-31T06:16:25.4351295Z CC [M] drivers/thermal/intel/x86_pkg_temp_thermal.o
2025-10-31T06:16:25.4944787Z CC [M] drivers/media/usb/dvb-usb-v2/dvbsky.o
2025-10-31T06:16:25.5759942Z CC [M] drivers/net/ethernet/qlogic/qed/qed_selftest.o
2025-10-31T06:16:25.8484162Z CC [M] drivers/hwmon/ibmpex.o
2025-10-31T06:16:26.1642738Z LD [M] drivers/media/pci/cx18/cx18.o
2025-10-31T06:16:26.2525645Z LD [M] drivers/media/pci/cx18/cx18-alsa.o
2025-10-31T06:16:26.3077627Z CC [M] drivers/media/pci/cx23885/cx23885-cards.o
2025-10-31T06:16:26.5645371Z CC [M] drivers/net/ethernet/qlogic/qed/qed_sp_commands.o
2025-10-31T06:16:26.5685082Z CC [M] drivers/thermal/intel/intel_soc_dts_iosf.o
2025-10-31T06:16:26.6585201Z CC [M] drivers/media/usb/dvb-usb-v2/zd1301.o
2025-10-31T06:16:26.6699413Z CC [M] drivers/hwmon/iio_hwmon.o
2025-10-31T06:16:27.3102556Z CC [M] drivers/thermal/intel/intel_soc_dts_thermal.o
2025-10-31T06:16:27.3250358Z CC [M] drivers/hwmon/ina209.o
2025-10-31T06:16:27.5952797Z CC [M] drivers/media/pci/cx23885/cx23885-video.o
2025-10-31T06:16:27.7462838Z CC [M] drivers/net/ethernet/qlogic/qed/qed_spq.o
2025-10-31T06:16:27.7841775Z CC [M] drivers/thermal/intel/intel_bxt_pmic_thermal.o
2025-10-31T06:16:27.8911103Z LD [M] drivers/media/usb/dvb-usb-v2/dvb_usb_v2.o
2025-10-31T06:16:27.9309782Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-af9015.o
2025-10-31T06:16:27.9622510Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-af9035.o
2025-10-31T06:16:27.9922314Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-anysee.o
2025-10-31T06:16:28.0243518Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-au6610.o
2025-10-31T06:16:28.0488124Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-az6007.o
2025-10-31T06:16:28.0754725Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-ce6230.o
2025-10-31T06:16:28.0996985Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-ec168.o
2025-10-31T06:16:28.1256716Z CC [M] drivers/hwmon/ina2xx.o
2025-10-31T06:16:28.1268781Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-lmedm04.o
2025-10-31T06:16:28.1610538Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-gl861.o
2025-10-31T06:16:28.1870019Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-mxl111sf.o
2025-10-31T06:16:28.2390544Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-rtl28xxu.o
2025-10-31T06:16:28.2673404Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-dvbsky.o
2025-10-31T06:16:28.2844221Z CC [M] drivers/thermal/intel/intel_pch_thermal.o
2025-10-31T06:16:28.4987786Z AR drivers/media/usb/siano/built-in.a
2025-10-31T06:16:28.5220086Z CC [M] drivers/media/usb/siano/smsusb.o
2025-10-31T06:16:28.8019663Z CC [M] drivers/hwmon/ina3221.o
2025-10-31T06:16:29.0885801Z AR drivers/thermal/st/built-in.a
2025-10-31T06:16:29.1580789Z AR drivers/thermal/tegra/built-in.a
2025-10-31T06:16:29.1967590Z CC drivers/thermal/thermal_core.o
2025-10-31T06:16:29.2889100Z CC [M] drivers/media/pci/cx23885/cx23885-vbi.o
2025-10-31T06:16:29.2893335Z CC [M] drivers/net/ethernet/qlogic/qed/qed_fcoe.o
2025-10-31T06:16:29.6474232Z CC [M] drivers/hwmon/intel-m10-bmc-hwmon.o
2025-10-31T06:16:29.6595728Z AR drivers/media/usb/b2c2/built-in.a
2025-10-31T06:16:29.6697277Z CC [M] drivers/media/usb/b2c2/flexcop-usb.o
2025-10-31T06:16:30.2299526Z CC [M] drivers/hwmon/it87.o
2025-10-31T06:16:30.3505812Z CC [M] drivers/media/pci/cx23885/cx23885-core.o
2025-10-31T06:16:30.9343335Z CC [M] drivers/net/ethernet/qlogic/qed/qed_iscsi.o
2025-10-31T06:16:30.9705335Z LD [M] drivers/media/usb/b2c2/b2c2-flexcop-usb.o
2025-10-31T06:16:31.0546911Z AR drivers/media/usb/zr364xx/built-in.a
2025-10-31T06:16:31.0742374Z CC [M] drivers/media/usb/zr364xx/zr364xx.o
2025-10-31T06:16:31.1310426Z CC drivers/thermal/thermal_sysfs.o
2025-10-31T06:16:32.0172808Z CC drivers/thermal/thermal_helpers.o
2025-10-31T06:16:32.1114634Z CC [M] drivers/hwmon/jc42.o
2025-10-31T06:16:32.4666640Z CC [M] drivers/net/ethernet/qlogic/qed/qed_ll2.o
2025-10-31T06:16:32.5364423Z CC drivers/thermal/thermal_netlink.o
2025-10-31T06:16:32.5444073Z CC [M] drivers/media/pci/cx23885/cx23885-i2c.o
2025-10-31T06:16:32.6342457Z AR drivers/media/usb/stkwebcam/built-in.a
2025-10-31T06:16:32.6531192Z CC [M] drivers/media/usb/stkwebcam/stk-webcam.o
2025-10-31T06:16:32.9233591Z CC [M] drivers/hwmon/k8temp.o
2025-10-31T06:16:33.6553666Z CC drivers/thermal/thermal_hwmon.o
2025-10-31T06:16:33.6708465Z CC [M] drivers/media/pci/cx23885/cx23885-dvb.o
2025-10-31T06:16:33.8119068Z CC [M] drivers/hwmon/k10temp.o
2025-10-31T06:16:34.2309807Z CC [M] drivers/media/usb/stkwebcam/stk-sensor.o
2025-10-31T06:16:34.3252866Z CC drivers/thermal/gov_fair_share.o
2025-10-31T06:16:34.7330328Z CC [M] drivers/hwmon/lineage-pem.o
2025-10-31T06:16:34.8482631Z CC drivers/thermal/gov_bang_bang.o
2025-10-31T06:16:35.1310657Z LD [M] drivers/media/usb/stkwebcam/stkwebcam.o
2025-10-31T06:16:35.2208459Z AR drivers/media/usb/s2255/built-in.a
2025-10-31T06:16:35.2314603Z CC [M] drivers/media/usb/s2255/s2255drv.o
2025-10-31T06:16:35.2499749Z CC [M] drivers/net/ethernet/qlogic/qed/qed_ooo.o
2025-10-31T06:16:35.3452954Z CC drivers/thermal/gov_step_wise.o
2025-10-31T06:16:35.4374159Z CC [M] drivers/hwmon/lm63.o
2025-10-31T06:16:35.8408283Z CC drivers/thermal/gov_user_space.o
2025-10-31T06:16:35.9485266Z CC [M] drivers/media/pci/cx23885/cx23885-417.o
2025-10-31T06:16:36.3701895Z CC [M] drivers/hwmon/lm70.o
2025-10-31T06:16:36.4073504Z CC drivers/thermal/gov_power_allocator.o
2025-10-31T06:16:36.5442928Z CC [M] drivers/net/ethernet/qlogic/qed/qed_iwarp.o
2025-10-31T06:16:37.0576502Z CC [M] drivers/hwmon/lm73.o
2025-10-31T06:16:37.2826745Z CC [M] drivers/media/usb/uvc/uvc_driver.o
2025-10-31T06:16:37.3804524Z CC [M] drivers/media/pci/cx23885/cx23885-ioctl.o
2025-10-31T06:16:37.6490435Z CC [M] drivers/hwmon/lm75.o
2025-10-31T06:16:37.7551161Z CC drivers/thermal/devfreq_cooling.o
2025-10-31T06:16:38.2793192Z CC [M] drivers/media/pci/cx23885/cx23885-ir.o
2025-10-31T06:16:38.6678334Z CC [M] drivers/thermal/thermal-generic-adc.o
2025-10-31T06:16:38.6835108Z CC [M] drivers/hwmon/lm77.o
2025-10-31T06:16:39.2506237Z AR drivers/thermal/built-in.a
2025-10-31T06:16:39.2576051Z CC [M] drivers/media/pci/cx23885/cx23885-av.o
2025-10-31T06:16:39.2831000Z CC [M] drivers/media/usb/uvc/uvc_queue.o
2025-10-31T06:16:39.3127081Z CC [M] drivers/hwmon/lm78.o
2025-10-31T06:16:39.3576088Z CC [M] drivers/net/ethernet/qlogic/qed/qed_rdma.o
2025-10-31T06:16:39.4325202Z CC [M] drivers/hwmon/lm80.o
2025-10-31T06:16:40.1698149Z AR drivers/media/mmc/siano/built-in.a
2025-10-31T06:16:40.1901060Z CC [M] drivers/media/mmc/siano/smssdio.o
2025-10-31T06:16:40.1987135Z CC [M] drivers/hwmon/lm83.o
2025-10-31T06:16:40.2315262Z CC [M] drivers/media/usb/uvc/uvc_v4l2.o
2025-10-31T06:16:40.2708774Z CC [M] drivers/media/pci/cx23885/cx23885-input.o
2025-10-31T06:16:40.8063796Z CC [M] drivers/hwmon/lm85.o
2025-10-31T06:16:41.0653447Z AR drivers/media/mmc/built-in.a
2025-10-31T06:16:41.1057669Z CC [M] drivers/net/ethernet/qlogic/qed/qed_roce.o
2025-10-31T06:16:41.3973993Z CC [M] drivers/media/pci/cx25821/cx25821-core.o
2025-10-31T06:16:41.7612433Z CC [M] drivers/media/usb/uvc/uvc_video.o
2025-10-31T06:16:41.8308645Z CC [M] drivers/hwmon/lm87.o
2025-10-31T06:16:41.8653547Z CC [M] drivers/media/pci/cx23885/cx23888-ir.o
2025-10-31T06:16:42.6985642Z CC [M] drivers/media/pci/cx25821/cx25821-cards.o
2025-10-31T06:16:42.7194802Z CC [M] drivers/net/ethernet/qlogic/qed/qed_sriov.o
2025-10-31T06:16:43.0965650Z CC [M] drivers/hwmon/lm90.o
2025-10-31T06:16:43.2305014Z CC [M] drivers/media/usb/uvc/uvc_ctrl.o
2025-10-31T06:16:43.3740632Z CC [M] drivers/media/pci/cx25821/cx25821-i2c.o
2025-10-31T06:16:43.5785381Z CC [M] drivers/media/pci/cx23885/netup-init.o
2025-10-31T06:16:44.2444493Z CC [M] drivers/media/pci/cx25821/cx25821-gpio.o
2025-10-31T06:16:44.5272391Z CC [M] drivers/hwmon/lm92.o
2025-10-31T06:16:44.6564985Z CC [M] drivers/media/pci/cx23885/cimax2.o
2025-10-31T06:16:44.9780868Z CC [M] drivers/media/usb/uvc/uvc_status.o
2025-10-31T06:16:45.1211204Z CC [M] drivers/media/pci/cx25821/cx25821-medusa-video.o
2025-10-31T06:16:45.1759561Z CC [M] drivers/hwmon/lm93.o
2025-10-31T06:16:45.9169215Z CC [M] drivers/media/usb/uvc/uvc_isight.o
2025-10-31T06:16:45.9570137Z CC [M] drivers/media/pci/cx23885/netup-eeprom.o
2025-10-31T06:16:46.0581622Z CC [M] drivers/media/pci/cx25821/cx25821-video.o
2025-10-31T06:16:46.6655286Z CC [M] drivers/media/usb/uvc/uvc_debugfs.o
2025-10-31T06:16:46.6811231Z CC [M] drivers/hwmon/lm95234.o
2025-10-31T06:16:46.9236653Z CC [M] drivers/net/ethernet/qlogic/qed/qed_vf.o
2025-10-31T06:16:47.0650961Z CC [M] drivers/media/pci/cx23885/cx23885-f300.o
2025-10-31T06:16:47.2173799Z CC [M] drivers/media/pci/cx25821/cx25821-alsa.o
2025-10-31T06:16:47.5166008Z CC [M] drivers/hwmon/lm95241.o
2025-10-31T06:16:47.5975317Z CC [M] drivers/media/usb/uvc/uvc_metadata.o
2025-10-31T06:16:48.0887878Z CC [M] drivers/media/pci/cx23885/cx23885-alsa.o
2025-10-31T06:16:48.1533782Z LD [M] drivers/media/pci/cx25821/cx25821.o
2025-10-31T06:16:48.2116911Z CC [M] drivers/media/usb/uvc/uvc_entity.o
2025-10-31T06:16:48.2269240Z CC [M] drivers/hwmon/lm95245.o
2025-10-31T06:16:48.3807072Z CC [M] drivers/net/ethernet/qlogic/qede/qede_main.o
2025-10-31T06:16:48.7655081Z LD [M] drivers/net/ethernet/qlogic/qed/qed.o
2025-10-31T06:16:48.9478400Z CC [M] drivers/hwmon/ltc2945.o
2025-10-31T06:16:48.9928391Z CC [M] drivers/net/ethernet/qlogic/qede/qede_fp.o
2025-10-31T06:16:49.0692502Z LD [M] drivers/media/usb/uvc/uvcvideo.o
2025-10-31T06:16:49.2442771Z CC [M] drivers/media/usb/gspca/m5602/m5602_core.o
2025-10-31T06:16:49.3779648Z CC [M] drivers/media/pci/cx23885/altera-ci.o
2025-10-31T06:16:49.6733731Z CC [M] drivers/hwmon/ltc2947-core.o
2025-10-31T06:16:50.1696350Z CC [M] drivers/media/usb/gspca/m5602/m5602_ov9650.o
2025-10-31T06:16:50.6047487Z LD [M] drivers/media/pci/cx23885/cx23885.o
2025-10-31T06:16:50.6252339Z CC [M] drivers/hwmon/ltc2947-i2c.o
2025-10-31T06:16:50.7468456Z CC [M] drivers/media/pci/cx88/cx88-cards.o
2025-10-31T06:16:50.8563377Z CC [M] drivers/net/slip/slip.o
2025-10-31T06:16:51.1532704Z CC [M] drivers/hwmon/ltc2947-spi.o
2025-10-31T06:16:51.1593526Z CC [M] drivers/media/usb/gspca/m5602/m5602_ov7660.o
2025-10-31T06:16:51.6889439Z CC [M] drivers/net/ethernet/qlogic/qede/qede_filter.o
2025-10-31T06:16:51.9256772Z CC [M] drivers/hwmon/ltc2990.o
2025-10-31T06:16:52.0251302Z CC [M] drivers/media/usb/gspca/m5602/m5602_mt9m111.o
2025-10-31T06:16:52.2424458Z CC [M] drivers/media/pci/cx88/cx88-core.o
2025-10-31T06:16:52.5098660Z CC [M] drivers/hwmon/ltc4151.o
2025-10-31T06:16:52.5473803Z CC [M] drivers/net/slip/slhc.o
2025-10-31T06:16:52.8658632Z CC [M] drivers/media/usb/gspca/m5602/m5602_po1030.o
2025-10-31T06:16:53.1629844Z CC [M] drivers/hwmon/ltc4215.o
2025-10-31T06:16:53.7415626Z CC [M] drivers/media/usb/gspca/m5602/m5602_s5k83a.o
2025-10-31T06:16:53.8509227Z CC [M] drivers/hwmon/ltc4222.o
2025-10-31T06:16:54.0108724Z CC [M] drivers/media/pci/cx88/cx88-i2c.o
2025-10-31T06:16:54.0521076Z CC [M] drivers/net/ethernet/qlogic/qede/qede_ethtool.o
2025-10-31T06:16:54.1443696Z CC [M] drivers/media/usb/gspca/m5602/m5602_s5k4aa.o
2025-10-31T06:16:54.3145155Z CC [M] drivers/hwmon/ltc4245.o
2025-10-31T06:16:54.5389395Z CC [M] drivers/net/wimax/i2400m/control.o
2025-10-31T06:16:54.8226435Z CC [M] drivers/hwmon/ltc4260.o
2025-10-31T06:16:55.1463659Z CC [M] drivers/media/pci/cx88/cx88-tvaudio.o
2025-10-31T06:16:55.1858413Z LD [M] drivers/media/usb/gspca/m5602/gspca_m5602.o
2025-10-31T06:16:55.2826782Z CC [M] drivers/hwmon/ltc4261.o
2025-10-31T06:16:55.2918053Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx.o
2025-10-31T06:16:55.8998986Z CC [M] drivers/hwmon/max1111.o
2025-10-31T06:16:55.9688698Z CC [M] drivers/net/wimax/i2400m/driver.o
2025-10-31T06:16:56.3344572Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx_vv6410.o
2025-10-31T06:16:56.4211046Z CC [M] drivers/media/pci/cx88/cx88-dsp.o
2025-10-31T06:16:56.5581144Z CC [M] drivers/net/ethernet/qlogic/qede/qede_ptp.o
2025-10-31T06:16:56.6258449Z CC [M] drivers/hwmon/max16065.o
2025-10-31T06:16:57.1946082Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx_hdcs.o
2025-10-31T06:16:57.3464055Z CC [M] drivers/hwmon/max1619.o
2025-10-31T06:16:57.4493927Z CC [M] drivers/net/wimax/i2400m/fw.o
2025-10-31T06:16:57.7090873Z CC [M] drivers/media/pci/cx88/cx88-input.o
2025-10-31T06:16:57.8894692Z CC [M] drivers/net/ethernet/qlogic/qede/qede_dcbnl.o
2025-10-31T06:16:57.9904825Z CC [M] drivers/hwmon/max1668.o
2025-10-31T06:16:58.1745491Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx_pb0100.o
2025-10-31T06:16:58.6225900Z CC [M] drivers/hwmon/max197.o
2025-10-31T06:16:58.8512509Z CC [M] drivers/net/ethernet/qlogic/qede/qede_rdma.o
2025-10-31T06:16:59.0736440Z CC [M] drivers/media/pci/cx88/cx88-video.o
2025-10-31T06:16:59.0935693Z CC [M] drivers/net/wimax/i2400m/op-rfkill.o
2025-10-31T06:16:59.1544389Z CC [M] drivers/hwmon/max31722.o
2025-10-31T06:16:59.2859117Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx_st6422.o
2025-10-31T06:16:59.7367196Z CC [M] drivers/hwmon/max31730.o
2025-10-31T06:16:59.8808031Z CC [M] drivers/net/wimax/i2400m/sysfs.o
2025-10-31T06:17:00.0316256Z LD [M] drivers/net/ethernet/qlogic/qede/qede.o
2025-10-31T06:17:00.1457024Z AR drivers/net/ethernet/qlogic/built-in.a
2025-10-31T06:17:00.1649009Z CC [M] drivers/net/ethernet/qlogic/qla3xxx.o
2025-10-31T06:17:00.3123042Z CC [M] drivers/hwmon/max6621.o
2025-10-31T06:17:00.4232120Z LD [M] drivers/media/usb/gspca/stv06xx/gspca_stv06xx.o
2025-10-31T06:17:00.5265235Z CC [M] drivers/media/usb/gspca/gl860/gl860.o
2025-10-31T06:17:00.6090900Z CC [M] drivers/net/wimax/i2400m/netdev.o
2025-10-31T06:17:00.9424676Z CC [M] drivers/hwmon/max6639.o
2025-10-31T06:17:01.1140535Z CC [M] drivers/media/pci/cx88/cx88-vbi.o
2025-10-31T06:17:01.5773237Z CC [M] drivers/media/usb/gspca/gl860/gl860-mi1320.o
2025-10-31T06:17:01.7629640Z CC [M] drivers/hwmon/max6642.o
2025-10-31T06:17:01.7870210Z CC [M] drivers/net/wimax/i2400m/tx.o
2025-10-31T06:17:02.3143560Z CC [M] drivers/hwmon/max6650.o
2025-10-31T06:17:02.3838747Z CC [M] drivers/media/pci/cx88/cx88-mpeg.o
2025-10-31T06:17:02.4270108Z CC [M] drivers/media/usb/gspca/gl860/gl860-ov2640.o
2025-10-31T06:17:03.0683240Z AR drivers/net/ethernet/qualcomm/emac/built-in.a
2025-10-31T06:17:03.0737615Z CC [M] drivers/hwmon/max6697.o
2025-10-31T06:17:03.0862409Z CC [M] drivers/net/ethernet/qualcomm/emac/emac.o
2025-10-31T06:17:03.1022674Z CC [M] drivers/net/wimax/i2400m/rx.o
2025-10-31T06:17:03.2862378Z CC [M] drivers/media/usb/gspca/gl860/gl860-ov9655.o
2025-10-31T06:17:03.7692304Z CC [M] drivers/media/pci/cx88/cx88-alsa.o
2025-10-31T06:17:03.8531262Z CC [M] drivers/hwmon/max31790.o
2025-10-31T06:17:03.9798618Z CC [M] drivers/media/usb/gspca/gl860/gl860-mi2020.o
2025-10-31T06:17:04.3705864Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-mac.o
2025-10-31T06:17:04.6379461Z CC [M] drivers/hwmon/mc13783-adc.o
2025-10-31T06:17:04.7907252Z LD [M] drivers/media/usb/gspca/gl860/gspca_gl860.o
2025-10-31T06:17:04.7993656Z CC [M] drivers/net/wimax/i2400m/debugfs.o
2025-10-31T06:17:04.8324713Z CC [M] drivers/media/usb/gspca/gspca.o
2025-10-31T06:17:05.0817388Z CC [M] drivers/hwmon/mcp3021.o
2025-10-31T06:17:05.3327703Z CC [M] drivers/media/pci/cx88/cx88-blackbird.o
2025-10-31T06:17:05.5659255Z CC [M] drivers/hwmon/tc654.o
2025-10-31T06:17:05.9145486Z CC [M] drivers/net/wimax/i2400m/usb-fw.o
2025-10-31T06:17:06.2317838Z CC [M] drivers/hwmon/mlxreg-fan.o
2025-10-31T06:17:06.3126739Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-phy.o
2025-10-31T06:17:06.4794911Z CC [M] drivers/media/usb/gspca/autogain_functions.o
2025-10-31T06:17:06.8518273Z CC [M] drivers/hwmon/menf21bmc_hwmon.o
2025-10-31T06:17:06.9224666Z CC [M] drivers/net/wimax/i2400m/usb-notif.o
2025-10-31T06:17:06.9723039Z CC [M] drivers/media/pci/cx88/cx88-dvb.o
2025-10-31T06:17:07.2454849Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-sgmii.o
2025-10-31T06:17:07.3279310Z CC [M] drivers/media/usb/gspca/benq.o
2025-10-31T06:17:07.3505796Z CC [M] drivers/hwmon/mr75203.o
2025-10-31T06:17:07.9359219Z CC [M] drivers/net/wimax/i2400m/usb-tx.o
2025-10-31T06:17:08.2004371Z CC [M] drivers/hwmon/nct6683.o
2025-10-31T06:17:08.2891729Z CC [M] drivers/media/usb/gspca/conex.o
2025-10-31T06:17:08.3106954Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-ethtool.o
2025-10-31T06:17:08.9181642Z CC [M] drivers/net/wimax/i2400m/usb-rx.o
2025-10-31T06:17:09.0143063Z CC [M] drivers/media/pci/cx88/cx88-vp3054-i2c.o
2025-10-31T06:17:09.0379811Z CC [M] drivers/hwmon/nct6775.o
2025-10-31T06:17:09.3295527Z CC [M] drivers/media/usb/gspca/cpia1.o
2025-10-31T06:17:09.6273488Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-sgmii-fsm9900.o
2025-10-31T06:17:10.1350286Z CC [M] drivers/net/wimax/i2400m/usb.o
2025-10-31T06:17:10.2710592Z LD [M] drivers/media/pci/cx88/cx88xx.o
2025-10-31T06:17:10.3351294Z LD [M] drivers/media/pci/cx88/cx8800.o
2025-10-31T06:17:10.3750579Z LD [M] drivers/media/pci/cx88/cx8802.o
2025-10-31T06:17:10.5025149Z CC [M] drivers/media/pci/bt8xx/bttv-driver.o
2025-10-31T06:17:10.5811495Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-sgmii-qdf2432.o
2025-10-31T06:17:10.6136221Z CC [M] drivers/media/usb/gspca/dtcs033.o
2025-10-31T06:17:11.3852802Z CC [M] drivers/media/usb/gspca/etoms.o
2025-10-31T06:17:11.4377734Z CC [M] drivers/hwmon/nct7802.o
2025-10-31T06:17:11.4580998Z LD [M] drivers/net/wimax/i2400m/i2400m.o
2025-10-31T06:17:11.4961931Z LD [M] drivers/net/wimax/i2400m/i2400m-usb.o
2025-10-31T06:17:11.5497020Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-sgmii-qdf2400.o
2025-10-31T06:17:11.5760434Z CC [M] drivers/media/pci/bt8xx/bttv-cards.o
2025-10-31T06:17:12.3308744Z LD [M] drivers/net/ethernet/qualcomm/emac/qcom-emac.o
2025-10-31T06:17:12.4023798Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_config.o
2025-10-31T06:17:12.4191018Z CC [M] drivers/hwmon/nct7904.o
2025-10-31T06:17:12.8155977Z CC [M] drivers/media/usb/gspca/finepix.o
2025-10-31T06:17:12.9878683Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_vnd.o
2025-10-31T06:17:13.2403047Z CC [M] drivers/media/pci/bt8xx/bttv-if.o
2025-10-31T06:17:13.4406438Z CC [M] drivers/hwmon/npcm750-pwm-fan.o
2025-10-31T06:17:13.5731814Z CC [M] drivers/media/usb/gspca/jeilinj.o
2025-10-31T06:17:13.6395381Z CC [M] drivers/media/usb/pwc/pwc-if.o
2025-10-31T06:17:14.0226370Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_handlers.o
2025-10-31T06:17:14.2832486Z CC [M] drivers/media/pci/bt8xx/bttv-risc.o
2025-10-31T06:17:14.2879990Z CC [M] drivers/hwmon/ntc_thermistor.o
2025-10-31T06:17:14.3878894Z CC [M] drivers/media/usb/gspca/jl2005bcd.o
2025-10-31T06:17:14.8341812Z CC [M] drivers/hwmon/pc87360.o
2025-10-31T06:17:15.1350443Z CC [M] drivers/media/usb/pwc/pwc-misc.o
2025-10-31T06:17:15.2849716Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_map_data.o
2025-10-31T06:17:15.4663078Z CC [M] drivers/media/usb/gspca/kinect.o
2025-10-31T06:17:15.7290586Z CC [M] drivers/media/pci/bt8xx/bttv-vbi.o
2025-10-31T06:17:15.8494729Z CC [M] drivers/media/usb/pwc/pwc-ctrl.o
2025-10-31T06:17:16.2102884Z CC [M] drivers/hwmon/pc87427.o
2025-10-31T06:17:16.4323231Z CC [M] drivers/media/usb/gspca/konica.o
2025-10-31T06:17:16.4463403Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_map_command.o
2025-10-31T06:17:16.7945960Z CC [M] drivers/media/usb/pwc/pwc-v4l.o
2025-10-31T06:17:16.9745199Z CC [M] drivers/media/pci/bt8xx/bttv-i2c.o
2025-10-31T06:17:17.2350866Z LD [M] drivers/net/ethernet/qualcomm/rmnet/rmnet.o
2025-10-31T06:17:17.2510275Z CC [M] drivers/media/usb/gspca/mars.o
2025-10-31T06:17:17.3162889Z AR drivers/net/ethernet/qualcomm/built-in.a
2025-10-31T06:17:17.3865664Z AR drivers/net/ethernet/realtek/built-in.a
2025-10-31T06:17:17.3874392Z CC [M] drivers/hwmon/pcf8591.o
2025-10-31T06:17:17.4087587Z CC [M] drivers/net/ethernet/realtek/8139cp.o
2025-10-31T06:17:17.9266145Z CC [M] drivers/hwmon/powr1220.o
2025-10-31T06:17:17.9628825Z CC [M] drivers/media/pci/bt8xx/bttv-gpio.o
2025-10-31T06:17:17.9697476Z CC [M] drivers/media/usb/pwc/pwc-uncompress.o
2025-10-31T06:17:18.2890215Z CC [M] drivers/media/usb/gspca/mr97310a.o
2025-10-31T06:17:18.3926114Z CC [M] drivers/hwmon/sch56xx-common.o
2025-10-31T06:17:18.8395794Z CC [M] drivers/media/usb/pwc/pwc-dec1.o
2025-10-31T06:17:18.8470589Z CC [M] drivers/media/pci/bt8xx/bttv-input.o
2025-10-31T06:17:19.2233076Z CC [M] drivers/hwmon/sch5627.o
2025-10-31T06:17:19.4567086Z CC [M] drivers/media/usb/gspca/nw80x.o
2025-10-31T06:17:19.6269306Z CC [M] drivers/media/usb/pwc/pwc-dec23.o
2025-10-31T06:17:19.6996759Z CC [M] drivers/net/ethernet/realtek/8139too.o
2025-10-31T06:17:19.7795805Z CC [M] drivers/hwmon/sch5636.o
2025-10-31T06:17:20.0712473Z CC [M] drivers/media/pci/bt8xx/bttv-audio-hook.o
2025-10-31T06:17:20.3312178Z CC [M] drivers/hwmon/sht15.o
2025-10-31T06:17:20.4137794Z CC [M] drivers/media/usb/gspca/ov519.o
2025-10-31T06:17:20.7527305Z CC [M] drivers/media/usb/pwc/pwc-kiara.o
2025-10-31T06:17:21.0047846Z CC [M] drivers/media/pci/bt8xx/btcx-risc.o
2025-10-31T06:17:21.4697657Z CC [M] drivers/hwmon/sht21.o
2025-10-31T06:17:21.5698643Z CC [M] drivers/media/usb/pwc/pwc-timon.o
2025-10-31T06:17:21.6857503Z CC [M] drivers/net/ethernet/realtek/atp.o
2025-10-31T06:17:21.9593453Z CC [M] drivers/media/pci/bt8xx/bt878.o
2025-10-31T06:17:21.9871228Z CC [M] drivers/hwmon/sht3x.o
2025-10-31T06:17:22.2860479Z LD [M] drivers/media/usb/pwc/pwc.o
2025-10-31T06:17:22.3503491Z CC drivers/watchdog/watchdog_core.o
2025-10-31T06:17:22.7153641Z CC [M] drivers/media/usb/gspca/ov534.o
2025-10-31T06:17:22.8402752Z CC [M] drivers/media/pci/bt8xx/dvb-bt8xx.o
2025-10-31T06:17:22.9250724Z CC drivers/watchdog/watchdog_dev.o
2025-10-31T06:17:22.9782240Z CC [M] drivers/hwmon/shtc1.o
2025-10-31T06:17:23.0512775Z CC [M] drivers/net/ethernet/realtek/r8169_main.o
2025-10-31T06:17:23.6388199Z CC [M] drivers/hwmon/sis5595.o
2025-10-31T06:17:23.7971649Z CC [M] drivers/media/usb/gspca/ov534_9.o
2025-10-31T06:17:23.8767920Z CC drivers/watchdog/watchdog_pretimeout.o
2025-10-31T06:17:24.1905085Z CC [M] drivers/media/pci/bt8xx/dst.o
2025-10-31T06:17:24.5635863Z CC drivers/watchdog/pretimeout_panic.o
2025-10-31T06:17:24.8023063Z CC [M] drivers/hwmon/smm665.o
2025-10-31T06:17:24.8233413Z CC [M] drivers/media/usb/gspca/pac207.o
2025-10-31T06:17:25.0498709Z CC [M] drivers/watchdog/pretimeout_noop.o
2025-10-31T06:17:25.5242541Z CC [M] drivers/hwmon/smsc47b397.o
2025-10-31T06:17:25.5263868Z CC [M] drivers/media/pci/bt8xx/dst_ca.o
2025-10-31T06:17:25.5754705Z CC [M] drivers/watchdog/pcwd_pci.o
2025-10-31T06:17:25.8259752Z CC [M] drivers/media/usb/gspca/pac7302.o
2025-10-31T06:17:26.1284108Z CC [M] drivers/hwmon/smsc47m1.o
2025-10-31T06:17:26.5943335Z CC [M] drivers/watchdog/wdt_pci.o
2025-10-31T06:17:26.8579698Z CC [M] drivers/media/usb/gspca/pac7311.o
2025-10-31T06:17:26.8737180Z LD [M] drivers/media/pci/bt8xx/bttv.o
2025-10-31T06:17:26.9464328Z CC [M] drivers/net/ethernet/realtek/r8169_firmware.o
2025-10-31T06:17:27.0082649Z CC [M] drivers/hwmon/smsc47m192.o
2025-10-31T06:17:27.0415806Z CC [M] drivers/media/pci/saa7134/saa7134-cards.o
2025-10-31T06:17:27.3500803Z CC [M] drivers/watchdog/pcwd_usb.o
2025-10-31T06:17:27.5458096Z CC [M] drivers/net/ethernet/realtek/r8169_phy_config.o
2025-10-31T06:17:27.7318254Z CC [M] drivers/hwmon/stts751.o
2025-10-31T06:17:27.8490695Z CC [M] drivers/media/usb/gspca/se401.o
2025-10-31T06:17:28.1611594Z CC [M] drivers/watchdog/cadence_wdt.o
2025-10-31T06:17:28.5107426Z CC [M] drivers/hwmon/amc6821.o
2025-10-31T06:17:28.7890697Z CC [M] drivers/watchdog/twl4030_wdt.o
2025-10-31T06:17:28.7981703Z CC [M] drivers/media/pci/saa7134/saa7134-core.o
2025-10-31T06:17:28.9789635Z CC [M] drivers/media/usb/gspca/sn9c2028.o
2025-10-31T06:17:29.0494923Z LD [M] drivers/net/ethernet/realtek/r8169.o
2025-10-31T06:17:29.1673671Z AR drivers/net/ethernet/renesas/built-in.a
2025-10-31T06:17:29.2342865Z AR drivers/net/ethernet/rdc/built-in.a
2025-10-31T06:17:29.2535656Z CC [M] drivers/net/ethernet/rdc/r6040.o
2025-10-31T06:17:29.3242448Z CC [M] drivers/hwmon/tc74.o
2025-10-31T06:17:29.3313174Z CC [M] drivers/watchdog/dw_wdt.o
2025-10-31T06:17:29.9138489Z CC [M] drivers/media/usb/gspca/sn9c20x.o
2025-10-31T06:17:30.0692327Z CC [M] drivers/watchdog/retu_wdt.o
2025-10-31T06:17:30.1145473Z CC [M] drivers/hwmon/thmc50.o
2025-10-31T06:17:30.5883516Z CC [M] drivers/media/pci/saa7134/saa7134-i2c.o
2025-10-31T06:17:30.5967886Z AR drivers/net/ethernet/rocker/built-in.a
2025-10-31T06:17:30.6087823Z CC [M] drivers/net/ethernet/rocker/rocker_main.o
2025-10-31T06:17:30.6325932Z CC [M] drivers/watchdog/acquirewdt.o
2025-10-31T06:17:30.8285264Z CC [M] drivers/hwmon/tmp102.o
2025-10-31T06:17:31.3372200Z CC [M] drivers/watchdog/advantechwdt.o
2025-10-31T06:17:31.4417228Z CC [M] drivers/hwmon/tmp103.o
2025-10-31T06:17:31.5922631Z CC [M] drivers/media/usb/gspca/sonixb.o
2025-10-31T06:17:31.9543365Z CC [M] drivers/watchdog/alim1535_wdt.o
2025-10-31T06:17:31.9586873Z CC [M] drivers/media/pci/saa7134/saa7134-ts.o
2025-10-31T06:17:31.9807501Z CC [M] drivers/hwmon/tmp108.o
2025-10-31T06:17:32.6343099Z CC [M] drivers/hwmon/tmp401.o
2025-10-31T06:17:32.7476506Z CC [M] drivers/media/usb/gspca/sonixj.o
2025-10-31T06:17:32.8453173Z CC [M] drivers/watchdog/alim7101_wdt.o
2025-10-31T06:17:33.1750853Z CC [M] drivers/net/ethernet/rocker/rocker_tlv.o
2025-10-31T06:17:33.2834037Z CC [M] drivers/media/pci/saa7134/saa7134-tvaudio.o
2025-10-31T06:17:33.4040595Z CC [M] drivers/hwmon/tmp421.o
2025-10-31T06:17:33.5222635Z CC [M] drivers/watchdog/ebc-c384_wdt.o
2025-10-31T06:17:33.9326338Z CC [M] drivers/watchdog/f71808e_wdt.o
2025-10-31T06:17:34.0996089Z CC [M] drivers/hwmon/tmp513.o
2025-10-31T06:17:34.2541632Z CC [M] drivers/media/usb/gspca/spca500.o
2025-10-31T06:17:34.3597114Z CC [M] drivers/net/ethernet/rocker/rocker_ofdpa.o
2025-10-31T06:17:34.6763172Z CC [M] drivers/watchdog/sp5100_tco.o
2025-10-31T06:17:34.8494879Z CC [M] drivers/hwmon/via-cputemp.o
2025-10-31T06:17:34.9603174Z CC [M] drivers/media/pci/saa7134/saa7134-vbi.o
2025-10-31T06:17:35.3057491Z CC [M] drivers/media/usb/gspca/spca501.o
2025-10-31T06:17:35.4075536Z CC [M] drivers/watchdog/sbc_fitpc2_wdt.o
2025-10-31T06:17:35.4495698Z CC [M] drivers/hwmon/via686a.o
2025-10-31T06:17:36.0226172Z CC [M] drivers/media/pci/saa7134/saa7134-video.o
2025-10-31T06:17:36.0473400Z CC [M] drivers/watchdog/eurotechwdt.o
2025-10-31T06:17:36.1632973Z CC [M] drivers/media/usb/gspca/spca505.o
2025-10-31T06:17:36.6672839Z CC [M] drivers/hwmon/vt1211.o
2025-10-31T06:17:36.8679239Z CC [M] drivers/watchdog/ib700wdt.o
2025-10-31T06:17:37.1121063Z CC [M] drivers/media/usb/gspca/spca506.o
2025-10-31T06:17:37.2540257Z LD [M] drivers/net/ethernet/rocker/rocker.o
2025-10-31T06:17:37.3920582Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_platform.o
2025-10-31T06:17:37.5273107Z CC [M] drivers/watchdog/ibmasr.o
2025-10-31T06:17:37.5962865Z CC [M] drivers/hwmon/vt8231.o
2025-10-31T06:17:38.0566032Z CC [M] drivers/media/pci/saa7134/saa7134-input.o
2025-10-31T06:17:38.2529995Z CC [M] drivers/media/usb/gspca/spca508.o
2025-10-31T06:17:38.3037559Z CC [M] drivers/watchdog/wafer5823wdt.o
2025-10-31T06:17:38.3564650Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_main.o
2025-10-31T06:17:38.7382378Z CC [M] drivers/hwmon/w83627ehf.o
2025-10-31T06:17:38.9473470Z CC [M] drivers/watchdog/i6300esb.o
2025-10-31T06:17:39.2272673Z CC [M] drivers/media/usb/gspca/spca561.o
2025-10-31T06:17:39.4487087Z CC [M] drivers/media/pci/saa7134/saa7134-empress.o
2025-10-31T06:17:39.7231609Z CC [M] drivers/watchdog/ie6xx_wdt.o
2025-10-31T06:17:40.2711451Z CC [M] drivers/hwmon/w83l785ts.o
2025-10-31T06:17:40.3486098Z CC [M] drivers/watchdog/iTCO_wdt.o
2025-10-31T06:17:40.3717145Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_desc.o
2025-10-31T06:17:40.5004223Z CC [M] drivers/media/usb/gspca/spca1528.o
2025-10-31T06:17:40.6963896Z CC [M] drivers/media/pci/saa7134/saa7134-go7007.o
2025-10-31T06:17:40.9398815Z CC [M] drivers/hwmon/w83l786ng.o
2025-10-31T06:17:41.0786179Z CC [M] drivers/watchdog/iTCO_vendor_support.o
2025-10-31T06:17:41.1617719Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_dma.o
2025-10-31T06:17:41.4979645Z CC [M] drivers/watchdog/it8712f_wdt.o
2025-10-31T06:17:41.6978173Z CC [M] drivers/media/usb/gspca/sq905.o
2025-10-31T06:17:41.7929011Z CC [M] drivers/hwmon/wm831x-hwmon.o
2025-10-31T06:17:42.0086949Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_core.o
2025-10-31T06:17:42.0793831Z CC [M] drivers/media/pci/saa7134/saa7134-alsa.o
2025-10-31T06:17:42.2661088Z CC [M] drivers/hwmon/wm8350-hwmon.o
2025-10-31T06:17:42.3271591Z CC [M] drivers/watchdog/it87_wdt.o
2025-10-31T06:17:42.6681754Z CC [M] drivers/media/usb/gspca/sq905c.o
2025-10-31T06:17:42.8711402Z CC [M] drivers/watchdog/hpwdt.o
2025-10-31T06:17:42.9295371Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_mtl.o
2025-10-31T06:17:43.1389469Z CC [M] drivers/hwmon/xgene-hwmon.o
2025-10-31T06:17:43.3037884Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_mdio.o
2025-10-31T06:17:43.3783078Z CC [M] drivers/media/pci/saa7134/saa7134-dvb.o
2025-10-31T06:17:43.5156185Z CC [M] drivers/watchdog/kempld_wdt.o
2025-10-31T06:17:43.7536416Z CC [M] drivers/media/usb/gspca/sq930x.o
2025-10-31T06:17:44.1326955Z CC [M] drivers/watchdog/sc1200wdt.o
2025-10-31T06:17:44.1500952Z AR drivers/hwmon/built-in.a
2025-10-31T06:17:44.3368705Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_ethtool.o
2025-10-31T06:17:44.8134727Z CC [M] drivers/media/usb/gspca/sunplus.o
2025-10-31T06:17:44.8619340Z CC [M] drivers/watchdog/pc87413_wdt.o
2025-10-31T06:17:45.2283872Z LD [M] drivers/net/ethernet/samsung/sxgbe/samsung-sxgbe.o
2025-10-31T06:17:45.2838334Z AR drivers/net/ethernet/samsung/built-in.a
2025-10-31T06:17:45.3287245Z AR drivers/net/ethernet/seeq/built-in.a
2025-10-31T06:17:45.3765154Z AR drivers/net/ethernet/silan/built-in.a
2025-10-31T06:17:45.3961279Z CC [M] drivers/net/ethernet/silan/sc92031.o
2025-10-31T06:17:45.4944850Z LD [M] drivers/media/pci/saa7134/saa7134.o
2025-10-31T06:17:45.4948438Z CC [M] drivers/watchdog/nv_tco.o
2025-10-31T06:17:45.4987997Z CC [M] drivers/net/ieee802154/fakelb.o
2025-10-31T06:17:45.6199818Z CC [M] drivers/media/pci/saa7164/saa7164-cards.o
2025-10-31T06:17:45.7646660Z CC [M] drivers/media/usb/gspca/stk014.o
2025-10-31T06:17:46.3636590Z CC [M] drivers/watchdog/sbc60xxwdt.o
2025-10-31T06:17:46.4694766Z CC [M] drivers/net/ieee802154/at86rf230.o
2025-10-31T06:17:46.6413149Z CC [M] drivers/media/usb/gspca/stk1135.o
2025-10-31T06:17:46.7670490Z CC [M] drivers/media/pci/saa7164/saa7164-core.o
2025-10-31T06:17:46.9709803Z AR drivers/net/ethernet/sis/built-in.a
2025-10-31T06:17:46.9914099Z CC [M] drivers/net/ethernet/sis/sis190.o
2025-10-31T06:17:47.0545981Z CC [M] drivers/watchdog/cpu5wdt.o
2025-10-31T06:17:47.6178326Z CC [M] drivers/media/usb/gspca/stv0680.o
2025-10-31T06:17:47.6697833Z CC [M] drivers/watchdog/sch311x_wdt.o
2025-10-31T06:17:48.4298739Z CC [M] drivers/watchdog/smsc37b787_wdt.o
2025-10-31T06:17:48.4347607Z CC [M] drivers/net/ieee802154/mrf24j40.o
2025-10-31T06:17:48.5873877Z CC [M] drivers/media/usb/gspca/t613.o
2025-10-31T06:17:48.5922394Z CC [M] drivers/media/pci/saa7164/saa7164-i2c.o
2025-10-31T06:17:48.7921046Z CC [M] drivers/net/ethernet/sis/sis900.o
2025-10-31T06:17:49.1884085Z CC [M] drivers/watchdog/tqmx86_wdt.o
2025-10-31T06:17:49.6344815Z CC [M] drivers/media/pci/saa7164/saa7164-dvb.o
2025-10-31T06:17:49.6362289Z CC [M] drivers/watchdog/via_wdt.o
2025-10-31T06:17:49.6856496Z CC [M] drivers/net/ieee802154/cc2520.o
2025-10-31T06:17:49.7860106Z CC [M] drivers/media/usb/gspca/topro.o
2025-10-31T06:17:50.5945263Z CC [M] drivers/watchdog/w83627hf_wdt.o
2025-10-31T06:17:50.8032860Z CC [M] drivers/net/ethernet/sfc/falcon/efx.o
2025-10-31T06:17:50.9798663Z CC [M] drivers/media/pci/saa7164/saa7164-fw.o
2025-10-31T06:17:51.0257978Z CC [M] drivers/net/ieee802154/atusb.o
2025-10-31T06:17:51.1064874Z CC [M] drivers/media/usb/gspca/touptek.o
2025-10-31T06:17:51.1240137Z CC [M] drivers/watchdog/w83877f_wdt.o
2025-10-31T06:17:51.8388453Z CC [M] drivers/watchdog/w83977f_wdt.o
2025-10-31T06:17:52.2201883Z CC [M] drivers/media/usb/gspca/tv8532.o
2025-10-31T06:17:52.2407439Z CC [M] drivers/media/pci/saa7164/saa7164-bus.o
2025-10-31T06:17:52.3011398Z CC [M] drivers/net/ieee802154/adf7242.o
2025-10-31T06:17:52.5203167Z CC [M] drivers/watchdog/machzwd.o
2025-10-31T06:17:53.1747373Z CC [M] drivers/media/usb/gspca/vc032x.o
2025-10-31T06:17:53.2627655Z CC [M] drivers/watchdog/sbc_epx_c3.o
2025-10-31T06:17:53.4125455Z CC [M] drivers/media/pci/saa7164/saa7164-cmd.o
2025-10-31T06:17:53.8268275Z CC [M] drivers/watchdog/mei_wdt.o
2025-10-31T06:17:53.8541103Z CC [M] drivers/net/ieee802154/ca8210.o
2025-10-31T06:17:53.8549280Z CC [M] drivers/net/ethernet/sfc/falcon/nic.o
2025-10-31T06:17:54.5628191Z CC [M] drivers/media/usb/gspca/vicam.o
2025-10-31T06:17:54.6209296Z CC [M] drivers/media/pci/saa7164/saa7164-api.o
2025-10-31T06:17:54.6718141Z CC [M] drivers/watchdog/ni903x_wdt.o
2025-10-31T06:17:55.2708827Z CC [M] drivers/net/ethernet/sfc/falcon/farch.o
2025-10-31T06:17:55.3663557Z CC [M] drivers/media/usb/gspca/xirlink_cit.o
2025-10-31T06:17:55.4565385Z CC [M] drivers/net/ieee802154/mcr20a.o
2025-10-31T06:17:55.4756118Z CC [M] drivers/watchdog/nic7018_wdt.o
2025-10-31T06:17:56.1093664Z CC [M] drivers/watchdog/mlx_wdt.o
2025-10-31T06:17:56.6959227Z CC [M] drivers/watchdog/of_xilinx_wdt.o
2025-10-31T06:17:56.7323348Z CC [M] drivers/media/pci/saa7164/saa7164-buffer.o
2025-10-31T06:17:56.8089632Z CC [M] drivers/net/ieee802154/mac802154_hwsim.o
2025-10-31T06:17:57.0522755Z CC [M] drivers/media/usb/gspca/zc3xx.o
2025-10-31T06:17:57.2990312Z CC [M] drivers/watchdog/mena21_wdt.o
2025-10-31T06:17:57.7867430Z CC [M] drivers/watchdog/xen_wdt.o
2025-10-31T06:17:57.9562729Z CC [M] drivers/media/pci/saa7164/saa7164-encoder.o
2025-10-31T06:17:58.3295001Z CC [M] drivers/net/ethernet/sfc/falcon/falcon.o
2025-10-31T06:17:58.4095571Z CC [M] drivers/watchdog/da9052_wdt.o
2025-10-31T06:17:58.4500976Z CC [M] drivers/net/ethernet/sfc/falcon/tx.o
2025-10-31T06:17:58.7263645Z LD [M] drivers/media/usb/gspca/gspca_main.o
2025-10-31T06:17:58.7573715Z LD [M] drivers/media/usb/gspca/gspca_benq.o
2025-10-31T06:17:58.7847917Z LD [M] drivers/media/usb/gspca/gspca_conex.o
2025-10-31T06:17:58.8123542Z LD [M] drivers/media/usb/gspca/gspca_cpia1.o
2025-10-31T06:17:58.8358177Z LD [M] drivers/media/usb/gspca/gspca_dtcs033.o
2025-10-31T06:17:58.8598136Z LD [M] drivers/media/usb/gspca/gspca_etoms.o
2025-10-31T06:17:58.8856304Z LD [M] drivers/media/usb/gspca/gspca_finepix.o
2025-10-31T06:17:58.9117307Z LD [M] drivers/media/usb/gspca/gspca_jeilinj.o
2025-10-31T06:17:58.9354265Z CC [M] drivers/watchdog/da9055_wdt.o
2025-10-31T06:17:58.9411914Z LD [M] drivers/media/usb/gspca/gspca_jl2005bcd.o
2025-10-31T06:17:58.9659789Z LD [M] drivers/media/usb/gspca/gspca_kinect.o
2025-10-31T06:17:58.9938380Z LD [M] drivers/media/usb/gspca/gspca_konica.o
2025-10-31T06:17:59.0209763Z LD [M] drivers/media/usb/gspca/gspca_mars.o
2025-10-31T06:17:59.0481123Z LD [M] drivers/media/usb/gspca/gspca_mr97310a.o
2025-10-31T06:17:59.0728523Z LD [M] drivers/media/usb/gspca/gspca_nw80x.o
2025-10-31T06:17:59.1011228Z LD [M] drivers/media/usb/gspca/gspca_ov519.o
2025-10-31T06:17:59.1341781Z LD [M] drivers/media/usb/gspca/gspca_ov534.o
2025-10-31T06:17:59.1600000Z LD [M] drivers/media/usb/gspca/gspca_ov534_9.o
2025-10-31T06:17:59.1870916Z LD [M] drivers/media/usb/gspca/gspca_pac207.o
2025-10-31T06:17:59.2173820Z LD [M] drivers/media/usb/gspca/gspca_pac7302.o
2025-10-31T06:17:59.2418221Z LD [M] drivers/media/usb/gspca/gspca_pac7311.o
2025-10-31T06:17:59.2669760Z LD [M] drivers/media/usb/gspca/gspca_se401.o
2025-10-31T06:17:59.2974548Z LD [M] drivers/media/usb/gspca/gspca_sn9c2028.o
2025-10-31T06:17:59.3218563Z LD [M] drivers/media/usb/gspca/gspca_sn9c20x.o
2025-10-31T06:17:59.3451916Z LD [M] drivers/media/usb/gspca/gspca_sonixb.o
2025-10-31T06:17:59.3757271Z LD [M] drivers/media/usb/gspca/gspca_sonixj.o
2025-10-31T06:17:59.4004207Z LD [M] drivers/media/usb/gspca/gspca_spca500.o
2025-10-31T06:17:59.4193760Z LD [M] drivers/media/usb/gspca/gspca_spca501.o
2025-10-31T06:17:59.4437229Z LD [M] drivers/media/usb/gspca/gspca_spca505.o
2025-10-31T06:17:59.4590538Z CC [M] drivers/watchdog/da9062_wdt.o
2025-10-31T06:17:59.4601237Z LD [M] drivers/media/usb/gspca/gspca_spca506.o
2025-10-31T06:17:59.4732563Z LD [M] drivers/media/usb/gspca/gspca_spca508.o
2025-10-31T06:17:59.4854185Z LD [M] drivers/media/usb/gspca/gspca_spca561.o
2025-10-31T06:17:59.4991871Z LD [M] drivers/media/usb/gspca/gspca_spca1528.o
2025-10-31T06:17:59.5130508Z LD [M] drivers/media/usb/gspca/gspca_sq905.o
2025-10-31T06:17:59.5258550Z LD [M] drivers/media/usb/gspca/gspca_sq905c.o
2025-10-31T06:17:59.5383777Z LD [M] drivers/media/usb/gspca/gspca_sq930x.o
2025-10-31T06:17:59.5519028Z LD [M] drivers/media/usb/gspca/gspca_sunplus.o
2025-10-31T06:17:59.5654835Z LD [M] drivers/media/usb/gspca/gspca_stk014.o
2025-10-31T06:17:59.5778562Z LD [M] drivers/media/usb/gspca/gspca_stk1135.o
2025-10-31T06:17:59.5910806Z LD [M] drivers/media/usb/gspca/gspca_stv0680.o
2025-10-31T06:17:59.6038276Z LD [M] drivers/media/usb/gspca/gspca_t613.o
2025-10-31T06:17:59.6179632Z LD [M] drivers/media/usb/gspca/gspca_topro.o
2025-10-31T06:17:59.6368063Z LD [M] drivers/media/usb/gspca/gspca_touptek.o
2025-10-31T06:17:59.6629763Z LD [M] drivers/media/usb/gspca/gspca_tv8532.o
2025-10-31T06:17:59.6799388Z LD [M] drivers/media/usb/gspca/gspca_vc032x.o
2025-10-31T06:17:59.6890277Z CC [M] drivers/media/pci/saa7164/saa7164-vbi.o
2025-10-31T06:17:59.7061336Z LD [M] drivers/media/usb/gspca/gspca_vicam.o
2025-10-31T06:17:59.7290731Z LD [M] drivers/media/usb/gspca/gspca_xirlink_cit.o
2025-10-31T06:17:59.7585851Z LD [M] drivers/media/usb/gspca/gspca_zc3xx.o
2025-10-31T06:17:59.9305418Z AR drivers/media/firewire/built-in.a
2025-10-31T06:17:59.9551177Z CC [M] drivers/media/firewire/firedtv-avc.o
2025-10-31T06:18:00.0525357Z CC [M] drivers/watchdog/da9063_wdt.o
2025-10-31T06:18:00.2276048Z CC [M] drivers/media/usb/cpia2/cpia2_v4l.o
2025-10-31T06:18:00.7984899Z CC [M] drivers/watchdog/wdat_wdt.o
2025-10-31T06:18:00.9097822Z CC [M] drivers/net/ethernet/sfc/falcon/rx.o
2025-10-31T06:18:01.0288286Z LD [M] drivers/media/pci/saa7164/saa7164.o
2025-10-31T06:18:01.1088239Z CC [M] drivers/media/pci/tw68/tw68-core.o
2025-10-31T06:18:01.3545352Z CC [M] drivers/media/usb/cpia2/cpia2_usb.o
2025-10-31T06:18:01.5014385Z CC [M] drivers/media/firewire/firedtv-ci.o
2025-10-31T06:18:01.5843155Z CC [M] drivers/watchdog/wm831x_wdt.o
2025-10-31T06:18:01.9370604Z CC [M] drivers/media/pci/tw68/tw68-video.o
2025-10-31T06:18:02.2778255Z CC [M] drivers/watchdog/wm8350_wdt.o
2025-10-31T06:18:02.5100490Z CC [M] drivers/media/firewire/firedtv-dvb.o
2025-10-31T06:18:02.5417428Z CC [M] drivers/media/usb/cpia2/cpia2_core.o
2025-10-31T06:18:02.8539672Z CC [M] drivers/net/ethernet/sfc/falcon/selftest.o
2025-10-31T06:18:03.0178619Z CC [M] drivers/media/pci/tw68/tw68-risc.o
2025-10-31T06:18:03.2173496Z CC [M] drivers/watchdog/max63xx_wdt.o
2025-10-31T06:18:03.6558421Z CC [M] drivers/media/firewire/firedtv-fe.o
2025-10-31T06:18:03.7157537Z CC [M] drivers/watchdog/ziirave_wdt.o
2025-10-31T06:18:03.8243500Z LD [M] drivers/media/pci/tw68/tw68.o
2025-10-31T06:18:03.9195315Z CC [M] drivers/media/pci/tw686x/tw686x-core.o
2025-10-31T06:18:04.1731507Z LD [M] drivers/media/usb/cpia2/cpia2.o
2025-10-31T06:18:04.2744486Z CC [M] drivers/media/usb/au0828/au0828-core.o
2025-10-31T06:18:04.3832834Z CC [M] drivers/watchdog/softdog.o
2025-10-31T06:18:04.6348414Z CC [M] drivers/media/firewire/firedtv-fw.o
2025-10-31T06:18:04.6671532Z CC [M] drivers/net/ethernet/sfc/falcon/ethtool.o
2025-10-31T06:18:04.7845746Z CC [M] drivers/watchdog/menf21bmc_wdt.o
2025-10-31T06:18:04.9763595Z CC [M] drivers/media/pci/tw686x/tw686x-video.o
2025-10-31T06:18:05.3811308Z CC [M] drivers/watchdog/menz69_wdt.o
2025-10-31T06:18:05.5044307Z CC [M] drivers/media/usb/au0828/au0828-i2c.o
2025-10-31T06:18:05.7109455Z CC [M] drivers/media/firewire/firedtv-rc.o
2025-10-31T06:18:05.8102548Z CC [M] drivers/watchdog/rave-sp-wdt.o
2025-10-31T06:18:06.2939212Z AR drivers/watchdog/built-in.a
2025-10-31T06:18:06.5733816Z CC [M] drivers/media/pci/tw686x/tw686x-audio.o
2025-10-31T06:18:06.6063652Z LD [M] drivers/media/firewire/firedtv.o
2025-10-31T06:18:06.6786917Z AR drivers/net/ethernet/smsc/built-in.a
2025-10-31T06:18:06.6893630Z CC [M] drivers/net/ethernet/smsc/smc91c92_cs.o
2025-10-31T06:18:06.7021170Z AR drivers/net/ethernet/sfc/built-in.a
2025-10-31T06:18:06.7252435Z CC [M] drivers/net/vmxnet3/vmxnet3_drv.o
2025-10-31T06:18:06.7580545Z CC [M] drivers/net/ethernet/sfc/falcon/qt202x_phy.o
2025-10-31T06:18:06.8195232Z CC [M] drivers/media/usb/au0828/au0828-cards.o
2025-10-31T06:18:07.6664168Z LD [M] drivers/media/pci/tw686x/tw686x.o
2025-10-31T06:18:07.7667760Z CC [M] drivers/media/pci/dt3155/dt3155.o
2025-10-31T06:18:07.8895378Z CC [M] drivers/media/usb/au0828/au0828-dvb.o
2025-10-31T06:18:08.2257720Z CC [M] drivers/net/ethernet/sfc/falcon/mdio_10g.o
2025-10-31T06:18:08.3448286Z CC [M] drivers/net/ethernet/smsc/epic100.o
2025-10-31T06:18:08.8244310Z CC [M] drivers/media/pci/meye/meye.o
2025-10-31T06:18:09.2475488Z CC [M] drivers/media/usb/au0828/au0828-video.o
2025-10-31T06:18:09.5734365Z CC [M] drivers/net/ethernet/sfc/falcon/tenxpress.o
2025-10-31T06:18:09.9913325Z CC [M] drivers/net/ethernet/smsc/smsc9420.o
2025-10-31T06:18:10.4498153Z CC [M] drivers/net/vmxnet3/vmxnet3_ethtool.o
2025-10-31T06:18:10.5185044Z CC [M] drivers/media/pci/solo6x10/solo6x10-core.o
2025-10-31T06:18:10.9135315Z CC [M] drivers/net/ethernet/sfc/falcon/txc43128_phy.o
2025-10-31T06:18:11.5024524Z CC [M] drivers/media/usb/au0828/au0828-vbi.o
2025-10-31T06:18:11.9242335Z CC [M] drivers/net/ethernet/smsc/smsc911x.o
2025-10-31T06:18:12.0521492Z CC [M] drivers/media/pci/solo6x10/solo6x10-i2c.o
2025-10-31T06:18:12.1437124Z LD [M] drivers/net/vmxnet3/vmxnet3.o
2025-10-31T06:18:12.2488781Z CC [M] drivers/net/xen-netback/netback.o
2025-10-31T06:18:12.2893767Z CC [M] drivers/net/ethernet/sfc/falcon/falcon_boards.o
2025-10-31T06:18:12.5444717Z CC [M] drivers/media/usb/au0828/au0828-input.o
2025-10-31T06:18:13.1671658Z CC [M] drivers/media/pci/solo6x10/solo6x10-p2m.o
2025-10-31T06:18:13.7243545Z LD [M] drivers/media/usb/au0828/au0828.o
2025-10-31T06:18:13.8004204Z CC [M] drivers/media/usb/hdpvr/hdpvr-control.o
2025-10-31T06:18:13.8694051Z CC [M] drivers/net/ethernet/sfc/falcon/mtd.o
2025-10-31T06:18:13.8975637Z CC [M] drivers/media/pci/tw5864/tw5864-core.o
2025-10-31T06:18:14.3800056Z CC [M] drivers/media/pci/solo6x10/solo6x10-v4l2.o
2025-10-31T06:18:14.6646798Z CC [M] drivers/media/usb/hdpvr/hdpvr-core.o
2025-10-31T06:18:14.7132409Z CC [M] drivers/media/pci/tw5864/tw5864-video.o
2025-10-31T06:18:14.7575756Z CC [M] drivers/net/xen-netback/xenbus.o
2025-10-31T06:18:15.1279623Z LD [M] drivers/net/ethernet/sfc/falcon/sfc-falcon.o
2025-10-31T06:18:15.3002522Z CC [M] drivers/net/ethernet/sfc/efx.o
2025-10-31T06:18:15.4996694Z CC [M] drivers/media/usb/hdpvr/hdpvr-video.o
2025-10-31T06:18:15.5728921Z CC [M] drivers/media/pci/solo6x10/solo6x10-tw28.o
2025-10-31T06:18:16.1179937Z CC [M] drivers/media/pci/tw5864/tw5864-h264.o
2025-10-31T06:18:16.2084405Z CC [M] drivers/net/xen-netback/interface.o
2025-10-31T06:18:16.7433624Z CC [M] drivers/media/pci/solo6x10/solo6x10-gpio.o
2025-10-31T06:18:17.0089285Z CC [M] drivers/media/pci/tw5864/tw5864-util.o
2025-10-31T06:18:17.0221068Z CC [M] drivers/media/usb/hdpvr/hdpvr-i2c.o
2025-10-31T06:18:17.1268731Z CC [M] drivers/net/ethernet/sfc/efx_common.o
2025-10-31T06:18:17.4468033Z CC [M] drivers/media/pci/solo6x10/solo6x10-disp.o
2025-10-31T06:18:17.8313254Z CC [M] drivers/net/xen-netback/hash.o
2025-10-31T06:18:17.8944954Z LD [M] drivers/media/usb/hdpvr/hdpvr.o
2025-10-31T06:18:17.9637923Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-i2c-core.o
2025-10-31T06:18:17.9833290Z LD [M] drivers/media/pci/tw5864/tw5864.o
2025-10-31T06:18:18.0479022Z CC [M] drivers/net/ethernet/sfc/efx_channels.o
2025-10-31T06:18:18.4530570Z CC [M] drivers/media/pci/solo6x10/solo6x10-enc.o
2025-10-31T06:18:19.1047803Z AR drivers/media/spi/built-in.a
2025-10-31T06:18:19.1216306Z CC [M] drivers/media/spi/cxd2880-spi.o
2025-10-31T06:18:19.1708891Z CC [M] drivers/net/xen-netback/rx.o
2025-10-31T06:18:19.2641656Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-audio.o
2025-10-31T06:18:19.5995495Z CC [M] drivers/media/pci/solo6x10/solo6x10-v4l2-enc.o
2025-10-31T06:18:20.1607949Z CC [M] drivers/net/ethernet/sfc/nic.o
2025-10-31T06:18:20.2897008Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-encoder.o
2025-10-31T06:18:20.4587539Z LD [M] drivers/net/xen-netback/xen-netback.o
2025-10-31T06:18:20.4622565Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-video-v4l.o
2025-10-31T06:18:20.5169872Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-eeprom.o
2025-10-31T06:18:21.0290389Z CC [M] drivers/media/pci/solo6x10/solo6x10-g723.o
2025-10-31T06:18:21.5001100Z CC [M] drivers/net/ethernet/sfc/farch.o
2025-10-31T06:18:21.5252939Z CC [M] drivers/media/usb/stk1160/stk1160-core.o
2025-10-31T06:18:21.5414879Z CC [M] drivers/media/pci/solo6x10/solo6x10-eeprom.o
2025-10-31T06:18:21.7755983Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-main.o
2025-10-31T06:18:22.0170481Z AR drivers/media/pci/built-in.a
2025-10-31T06:18:22.0382446Z CC [M] drivers/net/ethernet/sfc/siena.o
2025-10-31T06:18:22.5243035Z LD [M] drivers/media/pci/solo6x10/solo6x10.o
2025-10-31T06:18:22.5531885Z CC [M] drivers/media/usb/stk1160/stk1160-v4l.o
2025-10-31T06:18:22.6488537Z CC [M] drivers/net/usb/catc.o
2025-10-31T06:18:22.7777415Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-hdw.o
2025-10-31T06:18:23.7052790Z CC [M] drivers/net/usb/kaweth.o
2025-10-31T06:18:23.7333381Z CC [M] drivers/media/usb/stk1160/stk1160-video.o
2025-10-31T06:18:23.9986830Z AR drivers/net/ethernet/socionext/built-in.a
2025-10-31T06:18:24.0534950Z CC [M] drivers/md/bcache/alloc.o
2025-10-31T06:18:24.5513248Z CC [M] drivers/net/ethernet/sfc/ef10.o
2025-10-31T06:18:24.7564150Z CC [M] drivers/media/usb/stk1160/stk1160-i2c.o
2025-10-31T06:18:25.0472393Z CC [M] drivers/net/usb/pegasus.o
2025-10-31T06:18:25.4989099Z CC [M] drivers/md/bcache/bset.o
2025-10-31T06:18:25.6575007Z CC [M] drivers/media/usb/stk1160/stk1160-ac97.o
2025-10-31T06:18:26.4109086Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-v4l2.o
2025-10-31T06:18:26.6279387Z LD [M] drivers/media/usb/stk1160/stk1160.o
2025-10-31T06:18:26.7113157Z CC [M] drivers/net/usb/rtl8150.o
2025-10-31T06:18:26.7247559Z CC [M] drivers/md/persistent-data/dm-array.o
2025-10-31T06:18:27.4985841Z CC [M] drivers/md/bcache/btree.o
2025-10-31T06:18:27.6104138Z CC [M] drivers/net/ethernet/sfc/tx.o
2025-10-31T06:18:27.6155011Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-ctrl.o
2025-10-31T06:18:27.7460476Z CC [M] drivers/md/persistent-data/dm-bitset.o
2025-10-31T06:18:28.2252851Z CC [M] drivers/net/usb/r8152.o
2025-10-31T06:18:28.3927206Z CC [M] drivers/md/persistent-data/dm-block-manager.o
2025-10-31T06:18:29.0911703Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-std.o
2025-10-31T06:18:29.2059872Z CC [M] drivers/net/ethernet/sfc/tx_common.o
2025-10-31T06:18:29.4624775Z CC [M] drivers/md/persistent-data/dm-space-map-common.o
2025-10-31T06:18:29.5998875Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-devattr.o
2025-10-31T06:18:30.5914034Z CC [M] drivers/md/bcache/closure.o
2025-10-31T06:18:30.6166940Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-context.o
2025-10-31T06:18:30.6524108Z CC [M] drivers/md/persistent-data/dm-space-map-disk.o
2025-10-31T06:18:30.9056675Z CC [M] drivers/net/ethernet/sfc/tx_tso.o
2025-10-31T06:18:31.2623704Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-io.o
2025-10-31T06:18:31.3212738Z CC [M] drivers/md/bcache/debug.o
2025-10-31T06:18:31.5438105Z CC [M] drivers/md/persistent-data/dm-space-map-metadata.o
2025-10-31T06:18:32.0694201Z CC [M] drivers/md/bcache/extents.o
2025-10-31T06:18:32.2800972Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-ioread.o
2025-10-31T06:18:32.3976288Z CC [M] drivers/net/ethernet/sfc/rx.o
2025-10-31T06:18:32.4593774Z CC [M] drivers/md/persistent-data/dm-transaction-manager.o
2025-10-31T06:18:32.8785212Z CC [M] drivers/net/usb/hso.o
2025-10-31T06:18:33.1655112Z CC [M] drivers/md/bcache/io.o
2025-10-31T06:18:33.2506362Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-cx2584x-v4l.o
2025-10-31T06:18:33.2682746Z CC [M] drivers/md/persistent-data/dm-btree.o
2025-10-31T06:18:33.9607790Z CC [M] drivers/net/ethernet/sfc/rx_common.o
2025-10-31T06:18:33.9962607Z CC [M] drivers/md/bcache/journal.o
2025-10-31T06:18:34.2914711Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-wm8775.o
2025-10-31T06:18:34.4286768Z CC [M] drivers/md/persistent-data/dm-btree-remove.o
2025-10-31T06:18:35.3092984Z CC [M] drivers/md/persistent-data/dm-btree-spine.o
2025-10-31T06:18:35.3601905Z CC [M] drivers/net/usb/lan78xx.o
2025-10-31T06:18:35.4465245Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-cs53l32a.o
2025-10-31T06:18:35.6518819Z CC [M] drivers/md/bcache/movinggc.o
2025-10-31T06:18:35.8746755Z CC [M] drivers/net/ethernet/sfc/selftest.o
2025-10-31T06:18:35.9822714Z LD [M] drivers/md/persistent-data/dm-persistent-data.o
2025-10-31T06:18:36.0558195Z CC [M] drivers/net/usb/asix_devices.o
2025-10-31T06:18:36.5087659Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-dvb.o
2025-10-31T06:18:36.7208550Z CC [M] drivers/md/bcache/request.o
2025-10-31T06:18:37.6205312Z CC [M] drivers/net/ethernet/sfc/ethtool.o
2025-10-31T06:18:37.7428547Z CC [M] drivers/media/test-drivers/vimc/vimc-core.o
2025-10-31T06:18:37.7481588Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-sysfs.o
2025-10-31T06:18:38.5919705Z LD [M] drivers/media/usb/pvrusb2/pvrusb2.o
2025-10-31T06:18:38.6394267Z CC [M] drivers/md/bcache/stats.o
2025-10-31T06:18:38.6840519Z CC [M] drivers/media/test-drivers/vimc/vimc-common.o
2025-10-31T06:18:38.7173719Z CC [M] drivers/media/usb/cx231xx/cx231xx-video.o
2025-10-31T06:18:38.7949105Z CC [M] drivers/net/usb/asix_common.o
2025-10-31T06:18:39.1031739Z CC [M] drivers/net/ethernet/sfc/ethtool_common.o
2025-10-31T06:18:39.2959867Z CC [M] drivers/md/bcache/super.o
2025-10-31T06:18:39.5215695Z CC [M] drivers/media/test-drivers/vimc/vimc-streamer.o
2025-10-31T06:18:40.1957316Z CC [M] drivers/net/usb/ax88172a.o
2025-10-31T06:18:40.4922455Z CC [M] drivers/media/test-drivers/vimc/vimc-capture.o
2025-10-31T06:18:40.5108678Z CC [M] drivers/media/usb/cx231xx/cx231xx-i2c.o
2025-10-31T06:18:41.1259420Z CC [M] drivers/net/ethernet/sfc/ptp.o
2025-10-31T06:18:41.3471088Z CC [M] drivers/net/usb/ax88179_178a.o
2025-10-31T06:18:41.3714654Z CC [M] drivers/media/test-drivers/vimc/vimc-debayer.o
2025-10-31T06:18:41.6439838Z CC [M] drivers/media/usb/cx231xx/cx231xx-cards.o
2025-10-31T06:18:41.8981451Z CC [M] drivers/md/bcache/sysfs.o
2025-10-31T06:18:42.3946447Z CC [M] drivers/media/test-drivers/vimc/vimc-scaler.o
2025-10-31T06:18:42.8598151Z CC [M] drivers/media/usb/cx231xx/cx231xx-core.o
2025-10-31T06:18:43.1806431Z CC [M] drivers/net/usb/cdc_ether.o
2025-10-31T06:18:43.2943971Z CC [M] drivers/net/ethernet/sfc/mcdi.o
2025-10-31T06:18:43.3180214Z CC [M] drivers/media/test-drivers/vimc/vimc-sensor.o
2025-10-31T06:18:43.7140791Z CC [M] drivers/md/bcache/trace.o
2025-10-31T06:18:44.1305735Z CC [M] drivers/net/usb/cdc_eem.o
2025-10-31T06:18:44.2483808Z LD [M] drivers/media/test-drivers/vimc/vimc.o
2025-10-31T06:18:44.3604589Z CC [M] drivers/media/test-drivers/vivid/vivid-core.o
2025-10-31T06:18:44.6536498Z CC [M] drivers/media/usb/cx231xx/cx231xx-avcore.o
2025-10-31T06:18:45.0314135Z CC [M] drivers/net/usb/dm9601.o
2025-10-31T06:18:45.5825500Z CC [M] drivers/md/bcache/util.o
2025-10-31T06:18:45.9529047Z CC [M] drivers/net/ethernet/sfc/mcdi_port.o
2025-10-31T06:18:46.0688613Z CC [M] drivers/net/usb/sr9700.o
2025-10-31T06:18:46.4300413Z CC [M] drivers/md/bcache/writeback.o
2025-10-31T06:18:46.4722833Z CC [M] drivers/media/test-drivers/vivid/vivid-ctrls.o
2025-10-31T06:18:46.7682690Z CC [M] drivers/media/usb/cx231xx/cx231xx-417.o
2025-10-31T06:18:47.2177858Z CC [M] drivers/net/ethernet/sfc/mcdi_port_common.o
2025-10-31T06:18:47.2308830Z CC [M] drivers/net/usb/sr9800.o
2025-10-31T06:18:47.8577563Z CC [M] drivers/media/test-drivers/vivid/vivid-vid-common.o
2025-10-31T06:18:47.9064597Z CC [M] drivers/md/bcache/features.o
2025-10-31T06:18:48.4157274Z CC [M] drivers/media/usb/cx231xx/cx231xx-pcb-cfg.o
2025-10-31T06:18:48.4806472Z CC [M] drivers/net/usb/smsc75xx.o
2025-10-31T06:18:48.6780309Z LD [M] drivers/md/bcache/bcache.o
2025-10-31T06:18:48.7578697Z CC drivers/md/dm-builtin.o
2025-10-31T06:18:48.9278766Z CC [M] drivers/media/test-drivers/vivid/vivid-vbi-gen.o
2025-10-31T06:18:49.1290058Z CC [M] drivers/media/usb/cx231xx/cx231xx-vbi.o
2025-10-31T06:18:49.1594569Z CC [M] drivers/net/ethernet/sfc/mcdi_functions.o
2025-10-31T06:18:49.5202766Z CC [M] drivers/media/test-drivers/vivid/vivid-vid-cap.o
2025-10-31T06:18:49.5289690Z CC [M] drivers/md/md-linear.o
2025-10-31T06:18:50.1520680Z CC [M] drivers/media/usb/cx231xx/cx231xx-input.o
2025-10-31T06:18:50.6438056Z CC [M] drivers/net/usb/smsc95xx.o
2025-10-31T06:18:50.6611604Z CC [M] drivers/md/raid0.o
2025-10-31T06:18:50.8351225Z CC [M] drivers/net/ethernet/sfc/mcdi_filters.o
2025-10-31T06:18:51.0047157Z CC [M] drivers/media/usb/cx231xx/cx231xx-audio.o
2025-10-31T06:18:51.8896680Z CC [M] drivers/media/test-drivers/vivid/vivid-vid-out.o
2025-10-31T06:18:52.0193868Z CC [M] drivers/md/raid1.o
2025-10-31T06:18:52.2968215Z CC [M] drivers/net/usb/gl620a.o
2025-10-31T06:18:52.4671897Z CC [M] drivers/media/usb/cx231xx/cx231xx-dvb.o
2025-10-31T06:18:53.3190278Z CC [M] drivers/net/usb/net1080.o
2025-10-31T06:18:53.5861105Z CC [M] drivers/media/test-drivers/vivid/vivid-kthread-cap.o
2025-10-31T06:18:53.7388900Z CC [M] drivers/net/ethernet/sfc/mcdi_mon.o
2025-10-31T06:18:54.0918039Z LD [M] drivers/media/usb/cx231xx/cx231xx.o
2025-10-31T06:18:54.1328025Z LD [M] drivers/media/usb/cx231xx/cx231xx-alsa.o
2025-10-31T06:18:54.1881329Z CC [M] drivers/media/usb/tm6000/tm6000-cards.o
2025-10-31T06:18:54.4489932Z CC [M] drivers/net/usb/plusb.o
2025-10-31T06:18:55.2356061Z CC [M] drivers/media/test-drivers/vivid/vivid-kthread-out.o
2025-10-31T06:18:55.2838941Z CC [M] drivers/net/usb/rndis_host.o
2025-10-31T06:18:55.2986648Z CC [M] drivers/md/raid10.o
2025-10-31T06:18:55.3013165Z CC [M] drivers/media/usb/tm6000/tm6000-core.o
2025-10-31T06:18:55.3067565Z CC [M] drivers/net/ethernet/sfc/ef100.o
2025-10-31T06:18:56.2181736Z CC [M] drivers/media/test-drivers/vivid/vivid-radio-rx.o
2025-10-31T06:18:56.4643795Z CC [M] drivers/net/usb/cdc_subset.o
2025-10-31T06:18:56.4854261Z CC [M] drivers/media/usb/tm6000/tm6000-i2c.o
2025-10-31T06:18:56.9427600Z CC [M] drivers/net/ethernet/sfc/ef100_nic.o
2025-10-31T06:18:57.1902745Z CC [M] drivers/net/usb/zaurus.o
2025-10-31T06:18:57.2290841Z CC [M] drivers/media/usb/tm6000/tm6000-video.o
2025-10-31T06:18:57.4256144Z CC [M] drivers/media/test-drivers/vivid/vivid-radio-tx.o
2025-10-31T06:18:58.1517455Z CC [M] drivers/net/usb/mcs7830.o
2025-10-31T06:18:58.4326094Z CC [M] drivers/media/test-drivers/vivid/vivid-radio-common.o
2025-10-31T06:18:58.5790292Z CC [M] drivers/net/ethernet/sfc/ef100_netdev.o
2025-10-31T06:18:59.0874472Z CC [M] drivers/media/usb/tm6000/tm6000-stds.o
2025-10-31T06:18:59.1053013Z CC [M] drivers/net/usb/usbnet.o
2025-10-31T06:18:59.4805250Z CC [M] drivers/media/test-drivers/vivid/vivid-rds-gen.o
2025-10-31T06:18:59.5682234Z CC [M] drivers/md/raid5.o
2025-10-31T06:18:59.8224668Z CC [M] drivers/net/ethernet/sfc/ef100_ethtool.o
2025-10-31T06:18:59.8447601Z CC [M] drivers/media/test-drivers/vivid/vivid-sdr-cap.o
2025-10-31T06:18:59.9155545Z CC [M] drivers/media/usb/tm6000/tm6000-input.o
2025-10-31T06:19:00.9227186Z CC [M] drivers/media/usb/tm6000/tm6000-alsa.o
2025-10-31T06:19:01.0046759Z CC [M] drivers/media/test-drivers/vivid/vivid-vbi-cap.o
2025-10-31T06:19:01.1972490Z CC [M] drivers/net/ethernet/sfc/ef100_rx.o
2025-10-31T06:19:01.3240201Z CC [M] drivers/net/usb/int51x1.o
2025-10-31T06:19:01.9475526Z CC [M] drivers/media/usb/tm6000/tm6000-dvb.o
2025-10-31T06:19:02.1630545Z CC [M] drivers/media/test-drivers/vivid/vivid-vbi-out.o
2025-10-31T06:19:02.3985044Z CC [M] drivers/net/usb/cdc-phonet.o
2025-10-31T06:19:02.4334370Z CC [M] drivers/net/ethernet/sfc/ef100_tx.o
2025-10-31T06:19:02.9248659Z LD [M] drivers/media/usb/tm6000/tm6000.o
2025-10-31T06:19:03.0600802Z CC [M] drivers/media/usb/em28xx/em28xx-core.o
2025-10-31T06:19:03.1453487Z CC [M] drivers/media/test-drivers/vivid/vivid-osd.o
2025-10-31T06:19:03.5060739Z CC [M] drivers/net/usb/kalmia.o
2025-10-31T06:19:03.9043708Z CC [M] drivers/net/ethernet/sfc/mtd.o
2025-10-31T06:19:04.1025524Z CC [M] drivers/media/test-drivers/vivid/vivid-meta-cap.o
2025-10-31T06:19:04.7047025Z CC [M] drivers/net/usb/ipheth.o
2025-10-31T06:19:04.8480157Z CC [M] drivers/media/usb/em28xx/em28xx-i2c.o
2025-10-31T06:19:05.0094184Z CC [M] drivers/media/test-drivers/vivid/vivid-meta-out.o
2025-10-31T06:19:05.2319431Z CC [M] drivers/net/ethernet/sfc/sriov.o
2025-10-31T06:19:05.8002904Z CC [M] drivers/net/usb/sierra_net.o
2025-10-31T06:19:05.9077012Z CC [M] drivers/media/test-drivers/vivid/vivid-kthread-touch.o
2025-10-31T06:19:06.1144117Z CC [M] drivers/md/raid5-cache.o
2025-10-31T06:19:06.2653164Z CC [M] drivers/net/ethernet/sfc/siena_sriov.o
2025-10-31T06:19:06.2682727Z CC [M] drivers/media/usb/em28xx/em28xx-cards.o
2025-10-31T06:19:06.8814851Z CC [M] drivers/media/test-drivers/vivid/vivid-touch-cap.o
2025-10-31T06:19:07.1422975Z CC [M] drivers/net/usb/cx82310_eth.o
2025-10-31T06:19:07.8716395Z CC [M] drivers/media/usb/em28xx/em28xx-camera.o
2025-10-31T06:19:07.9299031Z CC [M] drivers/media/test-drivers/vivid/vivid-cec.o
2025-10-31T06:19:08.3821757Z CC [M] drivers/net/usb/cdc_ncm.o
2025-10-31T06:19:08.6933653Z CC [M] drivers/md/raid5-ppl.o
2025-10-31T06:19:08.7524920Z CC [M] drivers/net/ethernet/sfc/ef10_sriov.o
2025-10-31T06:19:08.7911748Z CC [M] drivers/media/usb/em28xx/em28xx-video.o
2025-10-31T06:19:08.8394332Z LD [M] drivers/media/test-drivers/vivid/vivid.o
2025-10-31T06:19:08.9330782Z CC [M] drivers/media/test-drivers/vicodec/vicodec-core.o
2025-10-31T06:19:10.2674186Z CC [M] drivers/net/usb/huawei_cdc_ncm.o
2025-10-31T06:19:10.4208534Z CC [M] drivers/md/md-multipath.o
2025-10-31T06:19:10.5978887Z LD [M] drivers/net/ethernet/sfc/sfc.o
2025-10-31T06:19:10.7865969Z CC [M] drivers/media/test-drivers/vicodec/codec-fwht.o
2025-10-31T06:19:10.8325668Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_main.o
2025-10-31T06:19:11.0726779Z CC [M] drivers/media/usb/em28xx/em28xx-vbi.o
2025-10-31T06:19:11.2443898Z CC [M] drivers/net/usb/lg-vl600.o
2025-10-31T06:19:11.3967489Z CC [M] drivers/md/md-faulty.o
2025-10-31T06:19:11.6707083Z CC [M] drivers/media/test-drivers/vicodec/codec-v4l2-fwht.o
2025-10-31T06:19:11.7960366Z CC [M] drivers/media/usb/em28xx/em28xx-audio.o
2025-10-31T06:19:12.1369988Z LD [M] drivers/media/test-drivers/vicodec/vicodec.o
2025-10-31T06:19:12.1813363Z CC [M] drivers/media/test-drivers/vidtv/vidtv_tuner.o
2025-10-31T06:19:12.2167895Z CC [M] drivers/md/md-cluster.o
2025-10-31T06:19:12.2859777Z CC [M] drivers/net/usb/qmi_wwan.o
2025-10-31T06:19:12.8814308Z CC [M] drivers/media/test-drivers/vidtv/vidtv_demod.o
2025-10-31T06:19:13.2213228Z CC [M] drivers/media/usb/em28xx/em28xx-dvb.o
2025-10-31T06:19:13.5712530Z CC [M] drivers/media/test-drivers/vidtv/vidtv_bridge.o
2025-10-31T06:19:13.7144535Z CC [M] drivers/net/usb/cdc_mbim.o
2025-10-31T06:19:13.7915200Z CC [M] drivers/md/md.o
2025-10-31T06:19:14.4659776Z CC [M] drivers/media/test-drivers/vidtv/vidtv_common.o
2025-10-31T06:19:14.8514422Z CC [M] drivers/media/test-drivers/vidtv/vidtv_ts.o
2025-10-31T06:19:15.1200973Z CC [M] drivers/net/usb/ch9200.o
2025-10-31T06:19:15.1218189Z CC [M] drivers/media/test-drivers/vidtv/vidtv_psi.o
2025-10-31T06:19:15.1822834Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.o
2025-10-31T06:19:15.2219764Z CC [M] drivers/media/usb/em28xx/em28xx-input.o
2025-10-31T06:19:16.1138385Z CC [M] drivers/net/usb/aqc111.o
2025-10-31T06:19:16.3979016Z LD [M] drivers/media/usb/em28xx/em28xx.o
2025-10-31T06:19:16.4467994Z LD [M] drivers/media/usb/em28xx/em28xx-v4l.o
2025-10-31T06:19:16.4737506Z CC [M] drivers/media/test-drivers/vidtv/vidtv_pes.o
2025-10-31T06:19:16.4788780Z LD [M] drivers/media/usb/em28xx/em28xx-alsa.o
2025-10-31T06:19:16.5046637Z LD [M] drivers/media/usb/em28xx/em28xx-rc.o
2025-10-31T06:19:16.5859465Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.o
2025-10-31T06:19:16.6295812Z CC [M] drivers/media/usb/usbtv/usbtv-core.o
2025-10-31T06:19:16.9686111Z CC [M] drivers/media/test-drivers/vidtv/vidtv_s302m.o
2025-10-31T06:19:17.5718412Z CC [M] drivers/media/test-drivers/vidtv/vidtv_channel.o
2025-10-31T06:19:17.5853135Z CC [M] drivers/media/usb/usbtv/usbtv-video.o
2025-10-31T06:19:17.6885153Z LD [M] drivers/net/usb/asix.o
2025-10-31T06:19:17.9200795Z CC [M] drivers/net/ethernet/stmicro/stmmac/ring_mode.o
2025-10-31T06:19:17.9977941Z AR drivers/net/ethernet/sun/built-in.a
2025-10-31T06:19:18.0090664Z CC [M] drivers/net/ethernet/sun/sunhme.o
2025-10-31T06:19:18.5204193Z CC [M] drivers/media/test-drivers/vidtv/vidtv_mux.o
2025-10-31T06:19:18.6530054Z CC [M] drivers/media/usb/usbtv/usbtv-audio.o
2025-10-31T06:19:19.1616182Z CC [M] drivers/net/ethernet/stmicro/stmmac/chain_mode.o
2025-10-31T06:19:19.4083153Z LD [M] drivers/media/test-drivers/vidtv/dvb-vidtv-tuner.o
2025-10-31T06:19:19.4272840Z LD [M] drivers/media/test-drivers/vidtv/dvb-vidtv-demod.o
2025-10-31T06:19:19.4530074Z LD [M] drivers/media/test-drivers/vidtv/dvb-vidtv-bridge.o
2025-10-31T06:19:19.5395295Z AR drivers/media/test-drivers/built-in.a
2025-10-31T06:19:19.5646561Z CC [M] drivers/media/test-drivers/vim2m.o
2025-10-31T06:19:19.6676834Z LD [M] drivers/media/usb/usbtv/usbtv.o
2025-10-31T06:19:19.7146494Z CC [M] drivers/media/usb/go7007/go7007-v4l2.o
2025-10-31T06:19:19.7915378Z CC [M] drivers/net/ethernet/sun/sungem.o
2025-10-31T06:19:19.9643771Z CC [M] drivers/md/md-bitmap.o
2025-10-31T06:19:20.2262717Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac_lib.o
2025-10-31T06:19:21.0746084Z CC [M] drivers/media/usb/go7007/go7007-driver.o
2025-10-31T06:19:21.1930165Z CC [M] drivers/net/ethernet/sun/cassini.o
2025-10-31T06:19:21.2415636Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.o
2025-10-31T06:19:21.8884976Z CC [M] drivers/md/dm-uevent.o
2025-10-31T06:19:22.4324552Z CC [M] drivers/media/usb/go7007/go7007-i2c.o
2025-10-31T06:19:22.5351397Z CC [M] drivers/media/usb/go7007/go7007-fw.o
2025-10-31T06:19:22.6184572Z CC [M] drivers/md/dm.o
2025-10-31T06:19:22.6382329Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac1000_dma.o
2025-10-31T06:19:23.4394363Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac100_core.o
2025-10-31T06:19:23.6331559Z AR drivers/net/ethernet/tehuti/built-in.a
2025-10-31T06:19:23.6513714Z CC [M] drivers/net/ethernet/tehuti/tehuti.o
2025-10-31T06:19:24.5232169Z CC [M] drivers/net/ethernet/sun/niu.o
2025-10-31T06:19:24.6871038Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac100_dma.o
2025-10-31T06:19:24.9926567Z CC [M] drivers/media/usb/go7007/snd-go7007.o
2025-10-31T06:19:25.0279967Z CC [M] drivers/md/dm-table.o
2025-10-31T06:19:25.4345464Z CC [M] drivers/net/ethernet/stmicro/stmmac/enh_desc.o
2025-10-31T06:19:25.8150194Z CC [M] drivers/media/usb/go7007/go7007-usb.o
2025-10-31T06:19:26.0635589Z CC [M] drivers/net/ethernet/stmicro/stmmac/norm_desc.o
2025-10-31T06:19:26.5067007Z CC [M] drivers/media/dvb-frontends/drx39xyj/drxj.o
2025-10-31T06:19:26.8533184Z CC [M] drivers/md/dm-target.o
2025-10-31T06:19:27.1385567Z CC [M] drivers/media/usb/go7007/go7007-loader.o
2025-10-31T06:19:27.1798708Z CC [M] drivers/net/ethernet/stmicro/stmmac/mmc_core.o
2025-10-31T06:19:27.7707804Z CC [M] drivers/md/dm-linear.o
2025-10-31T06:19:27.8413235Z CC [M] drivers/media/usb/go7007/s2250-board.o
2025-10-31T06:19:28.2001047Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.o
2025-10-31T06:19:28.5776537Z CC [M] drivers/md/dm-stripe.o
2025-10-31T06:19:28.9760051Z LD [M] drivers/media/usb/go7007/go7007.o
2025-10-31T06:19:29.0230268Z LD [M] drivers/media/usb/go7007/s2250.o
2025-10-31T06:19:29.1372925Z CC [M] drivers/media/usb/as102/as102_drv.o
2025-10-31T06:19:29.2380334Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_ptp.o
2025-10-31T06:19:29.4912677Z CC [M] drivers/md/dm-ioctl.o
2025-10-31T06:19:30.1546027Z LD [M] drivers/media/dvb-frontends/drx39xyj/drx39xyj.o
2025-10-31T06:19:30.2240299Z CC [M] drivers/media/dvb-frontends/dvb-pll.o
2025-10-31T06:19:30.2436091Z CC [M] drivers/media/usb/as102/as102_fw.o
2025-10-31T06:19:30.3613871Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac4_descs.o
2025-10-31T06:19:30.9130182Z CC drivers/accessibility/braille/braille_console.o
2025-10-31T06:19:31.0416547Z CC [M] drivers/media/usb/as102/as10x_cmd.o
2025-10-31T06:19:31.0730192Z CC [M] drivers/md/dm-io.o
2025-10-31T06:19:31.0759217Z CC [M] drivers/media/dvb-frontends/stv0299.o
2025-10-31T06:19:31.4620579Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.o
2025-10-31T06:19:31.8683304Z AR drivers/accessibility/braille/built-in.a
2025-10-31T06:19:31.8957279Z CC [M] drivers/accessibility/speakup/speakup_acntsa.o
2025-10-31T06:19:31.9468791Z CC [M] drivers/media/usb/as102/as10x_cmd_stream.o
2025-10-31T06:19:32.0415480Z CC [M] drivers/media/dvb-frontends/stb0899_drv.o
2025-10-31T06:19:32.1228909Z CC [M] drivers/md/dm-kcopyd.o
2025-10-31T06:19:32.4467035Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.o
2025-10-31T06:19:32.5202147Z CC [M] drivers/accessibility/speakup/speakup_apollo.o
2025-10-31T06:19:32.7379107Z CC [M] drivers/media/usb/as102/as102_usb_drv.o
2025-10-31T06:19:33.2204454Z CC [M] drivers/md/dm-sysfs.o
2025-10-31T06:19:33.3169577Z CC [M] drivers/accessibility/speakup/speakup_audptr.o
2025-10-31T06:19:33.4404975Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac4_core.o
2025-10-31T06:19:33.4514610Z CC [M] drivers/media/dvb-frontends/stb0899_algo.o
2025-10-31T06:19:33.7494830Z CC [M] drivers/media/usb/as102/as10x_cmd_cfg.o
2025-10-31T06:19:34.0379743Z CC [M] drivers/accessibility/speakup/speakup_bns.o
2025-10-31T06:19:34.2819236Z CC [M] drivers/md/dm-stats.o
2025-10-31T06:19:34.4184168Z LD [M] drivers/media/usb/as102/dvb-as102.o
2025-10-31T06:19:34.4552668Z AR drivers/media/usb/built-in.a
2025-10-31T06:19:34.5005706Z AR drivers/net/ethernet/stmicro/built-in.a
2025-10-31T06:19:34.5200067Z CC [M] drivers/media/dvb-frontends/stb6100.o
2025-10-31T06:19:34.5246053Z CC [M] drivers/net/hyperv/netvsc_drv.o
2025-10-31T06:19:34.7863469Z CC [M] drivers/accessibility/speakup/speakup_dectlk.o
2025-10-31T06:19:35.2183254Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac5.o
2025-10-31T06:19:35.3714992Z CC [M] drivers/media/dvb-frontends/sp8870.o
2025-10-31T06:19:35.5829604Z CC [M] drivers/accessibility/speakup/speakup_decext.o
2025-10-31T06:19:36.1316296Z CC [M] drivers/md/dm-rq.o
2025-10-31T06:19:36.2228510Z CC [M] drivers/media/dvb-frontends/cx22700.o
2025-10-31T06:19:36.2774630Z CC [M] drivers/accessibility/speakup/speakup_ltlk.o
2025-10-31T06:19:36.3855191Z CC [M] drivers/net/ethernet/stmicro/stmmac/hwif.o
2025-10-31T06:19:36.8908693Z CC [M] drivers/net/hyperv/netvsc.o
2025-10-31T06:19:36.9203972Z CC [M] drivers/media/dvb-frontends/cx24110.o
2025-10-31T06:19:36.9541264Z CC [M] drivers/accessibility/speakup/speakup_soft.o
2025-10-31T06:19:37.1834070Z CC [M] drivers/md/dm-unstripe.o
2025-10-31T06:19:37.5444131Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_tc.o
2025-10-31T06:19:37.7119304Z CC [M] drivers/accessibility/speakup/speakup_spkout.o
2025-10-31T06:19:37.9027821Z CC [M] drivers/media/dvb-frontends/tda8083.o
2025-10-31T06:19:37.9642467Z CC [M] drivers/md/dm-bufio.o
2025-10-31T06:19:38.4287045Z CC [M] drivers/accessibility/speakup/speakup_txprt.o
2025-10-31T06:19:38.4571578Z CC [M] drivers/net/hyperv/rndis_filter.o
2025-10-31T06:19:38.8123560Z CC [M] drivers/media/dvb-frontends/l64781.o
2025-10-31T06:19:38.9992151Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.o
2025-10-31T06:19:39.1867042Z CC [M] drivers/accessibility/speakup/speakup_dummy.o
2025-10-31T06:19:39.4741911Z CC [M] drivers/md/dm-bio-prison-v1.o
2025-10-31T06:19:39.6487237Z CC [M] drivers/media/dvb-frontends/dib3000mb.o
2025-10-31T06:19:39.9941274Z CC [M] drivers/accessibility/speakup/buffers.o
2025-10-31T06:19:40.2220991Z CC [M] drivers/net/hyperv/netvsc_trace.o
2025-10-31T06:19:40.4467172Z CC [M] drivers/md/dm-bio-prison-v2.o
2025-10-31T06:19:40.5804763Z CC [M] drivers/accessibility/speakup/devsynth.o
2025-10-31T06:19:40.6933368Z CC [M] drivers/media/dvb-frontends/dib3000mc.o
2025-10-31T06:19:40.9861533Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.o
2025-10-31T06:19:41.2947196Z CC [M] drivers/accessibility/speakup/i18n.o
2025-10-31T06:19:41.3877418Z CC [M] drivers/md/dm-crypt.o
2025-10-31T06:19:41.4721057Z CC [M] drivers/net/hyperv/netvsc_bpf.o
2025-10-31T06:19:41.5904189Z CC [M] drivers/media/dvb-frontends/dibx000_common.o
2025-10-31T06:19:42.0221249Z CC [M] drivers/accessibility/speakup/fakekey.o
2025-10-31T06:19:42.1704820Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwxgmac2_descs.o
2025-10-31T06:19:42.5751356Z CC [M] drivers/media/dvb-frontends/dib7000m.o
2025-10-31T06:19:42.5973742Z LD [M] drivers/net/hyperv/hv_netvsc.o
2025-10-31T06:19:42.6572882Z CC [M] drivers/accessibility/speakup/main.o
2025-10-31T06:19:42.7610560Z CC [M] drivers/isdn/hardware/mISDN/hfcpci.o
2025-10-31T06:19:43.0718940Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_platform.o
2025-10-31T06:19:43.7507056Z CC [M] drivers/media/dvb-frontends/dib7000p.o
2025-10-31T06:19:44.1267927Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac-generic.o
2025-10-31T06:19:44.2454553Z drivers/media/dvb-frontends/dib7000p.c: In function ‘w7090p_tuner_write_serpar’:
2025-10-31T06:19:44.2456411Z drivers/media/dvb-frontends/dib7000p.c:2203:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
2025-10-31T06:19:44.2457926Z 2203 | u16 serpar_num = msg[0].buf[0];
2025-10-31T06:19:44.2458784Z | ^~~
2025-10-31T06:19:44.2459961Z drivers/media/dvb-frontends/dib7000p.c: In function ‘w7090p_tuner_read_serpar’:
2025-10-31T06:19:44.2461732Z drivers/media/dvb-frontends/dib7000p.c:2224:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
2025-10-31T06:19:44.2463472Z 2224 | u16 serpar_num = msg[0].buf[0];
2025-10-31T06:19:44.2464319Z | ^~~
2025-10-31T06:19:44.2866142Z CC [M] drivers/md/dm-delay.o
2025-10-31T06:19:44.9145070Z CC [M] drivers/accessibility/speakup/keyhelp.o
2025-10-31T06:19:45.3041139Z CC [M] drivers/md/dm-dust.o
2025-10-31T06:19:45.3042806Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_pci.o
2025-10-31T06:19:45.3151055Z CC [M] drivers/isdn/hardware/mISDN/hfcmulti.o
2025-10-31T06:19:45.5177063Z CC [M] drivers/media/dvb-frontends/dib8000.o
2025-10-31T06:19:45.5769076Z CC [M] drivers/accessibility/speakup/kobjects.o
2025-10-31T06:19:46.2462593Z CC [M] drivers/md/dm-flakey.o
2025-10-31T06:19:46.3525150Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac-intel.o
2025-10-31T06:19:46.6713620Z CC [M] drivers/accessibility/speakup/selection.o
2025-10-31T06:19:47.0948084Z CC [M] drivers/md/dm-path-selector.o
2025-10-31T06:19:47.5155989Z CC [M] drivers/accessibility/speakup/spk_ttyio.o
2025-10-31T06:19:47.7265636Z LD [M] drivers/net/ethernet/stmicro/stmmac/stmmac.o
2025-10-31T06:19:47.8073165Z CC [M] drivers/md/dm-mpath.o
2025-10-31T06:19:47.8392641Z LD [M] drivers/net/ethernet/stmicro/stmmac/stmmac-platform.o
2025-10-31T06:19:47.8673376Z LD [M] drivers/net/ethernet/stmicro/stmmac/stmmac-pci.o
2025-10-31T06:19:48.0183373Z AR drivers/net/ethernet/ti/built-in.a
2025-10-31T06:19:48.0415041Z CC [M] drivers/net/ethernet/ti/tlan.o
2025-10-31T06:19:48.3997978Z CC [M] drivers/accessibility/speakup/synth.o
2025-10-31T06:19:48.7163452Z CC [M] drivers/media/dvb-frontends/mt312.o
2025-10-31T06:19:49.3485929Z CC [M] drivers/isdn/hardware/mISDN/hfcsusb.o
2025-10-31T06:19:49.4106043Z CC [M] drivers/md/dm-round-robin.o
2025-10-31T06:19:49.4844166Z CC [M] drivers/accessibility/speakup/thread.o
2025-10-31T06:19:49.6985318Z CC [M] drivers/media/dvb-frontends/ves1820.o
2025-10-31T06:19:50.1516491Z CC [M] drivers/accessibility/speakup/varhandlers.o
2025-10-31T06:19:50.2321109Z CC [M] drivers/md/dm-queue-length.o
2025-10-31T06:19:50.4281156Z AR drivers/net/ethernet/via/built-in.a
2025-10-31T06:19:50.4505436Z CC [M] drivers/net/ethernet/via/via-rhine.o
2025-10-31T06:19:50.6977186Z CC [M] drivers/media/dvb-frontends/ves1x93.o
2025-10-31T06:19:51.0464176Z LD [M] drivers/accessibility/speakup/speakup.o
2025-10-31T06:19:51.0928657Z CC [M] drivers/md/dm-service-time.o
2025-10-31T06:19:51.1379775Z AR drivers/accessibility/built-in.a
2025-10-31T06:19:51.1786133Z CC [M] drivers/media/dvb-frontends/tda1004x.o
2025-10-31T06:19:51.4451938Z CC [M] drivers/isdn/hardware/mISDN/avmfritz.o
2025-10-31T06:19:51.6815491Z CC [M] drivers/isdn/hardware/mISDN/speedfax.o
2025-10-31T06:19:51.8493669Z CC [M] drivers/md/dm-historical-service-time.o
2025-10-31T06:19:52.3489254Z CC [M] drivers/media/dvb-frontends/sp887x.o
2025-10-31T06:19:52.5707509Z CC [M] drivers/net/ethernet/via/via-velocity.o
2025-10-31T06:19:52.6883650Z CC [M] drivers/md/dm-switch.o
2025-10-31T06:19:53.1160413Z CC [M] drivers/media/mc/mc-device.o
2025-10-31T06:19:53.1526244Z CC [M] drivers/isdn/hardware/mISDN/mISDNinfineon.o
2025-10-31T06:19:53.5553180Z CC [M] drivers/media/dvb-frontends/nxt6000.o
2025-10-31T06:19:53.6265126Z CC [M] drivers/md/dm-snap.o
2025-10-31T06:19:54.1972750Z CC [M] drivers/media/mc/mc-devnode.o
2025-10-31T06:19:54.4764357Z CC [M] drivers/media/dvb-frontends/mt352.o
2025-10-31T06:19:54.7783135Z CC [M] drivers/isdn/hardware/mISDN/w6692.o
2025-10-31T06:19:54.9955114Z CC [M] drivers/media/mc/mc-entity.o
2025-10-31T06:19:55.4071885Z CC [M] drivers/media/dvb-frontends/zl10036.o
2025-10-31T06:19:55.5808849Z AR drivers/net/ethernet/wiznet/built-in.a
2025-10-31T06:19:55.6046126Z CC [M] drivers/net/ethernet/wiznet/w5100.o
2025-10-31T06:19:55.6425566Z CC [M] drivers/md/dm-exception-store.o
2025-10-31T06:19:56.1596597Z CC [M] drivers/media/dvb-frontends/zl10039.o
2025-10-31T06:19:56.1979401Z CC [M] drivers/media/mc/mc-request.o
2025-10-31T06:19:56.3617556Z CC [M] drivers/md/dm-snap-transient.o
2025-10-31T06:19:56.8943022Z CC [M] drivers/isdn/hardware/mISDN/netjet.o
2025-10-31T06:19:56.9161544Z CC [M] drivers/media/dvb-frontends/zl10353.o
2025-10-31T06:19:56.9874127Z CC [M] drivers/md/dm-snap-persistent.o
2025-10-31T06:19:57.0162260Z CC [M] drivers/net/ethernet/wiznet/w5100-spi.o
2025-10-31T06:19:57.1747682Z CC [M] drivers/media/mc/mc-dev-allocator.o
2025-10-31T06:19:57.8222789Z LD [M] drivers/media/mc/mc.o
2025-10-31T06:19:57.8607464Z AR drivers/isdn/hardware/built-in.a
2025-10-31T06:19:57.8844063Z CC [M] drivers/isdn/capi/kcapi.o
2025-10-31T06:19:57.9776298Z CC [M] drivers/net/ethernet/wiznet/w5300.o
2025-10-31T06:19:58.0282577Z CC [M] drivers/media/dvb-frontends/cx22702.o
2025-10-31T06:19:58.1381035Z CC [M] drivers/md/dm-raid1.o
2025-10-31T06:19:58.7768909Z CC [M] drivers/isdn/hardware/mISDN/mISDNipac.o
2025-10-31T06:19:58.8081419Z CC [M] drivers/media/dvb-frontends/drxd_firm.o
2025-10-31T06:19:58.9164428Z CC [M] drivers/media/dvb-frontends/drxd_hard.o
2025-10-31T06:19:59.0334695Z CC [M] drivers/isdn/capi/capiutil.o
2025-10-31T06:19:59.2013223Z AR drivers/net/ethernet/xilinx/built-in.a
2025-10-31T06:19:59.2123866Z CC [M] drivers/net/ethernet/xilinx/ll_temac_main.o
2025-10-31T06:19:59.5344231Z CC [M] drivers/md/dm-log.o
2025-10-31T06:20:00.0584248Z CC [M] drivers/isdn/capi/capi.o
2025-10-31T06:20:00.5686874Z CC [M] drivers/md/dm-region-hash.o
2025-10-31T06:20:00.7876003Z CC [M] drivers/media/dvb-frontends/tda10021.o
2025-10-31T06:20:01.0424459Z CC [M] drivers/net/ethernet/xilinx/ll_temac_mdio.o
2025-10-31T06:20:01.0436480Z CC [M] drivers/isdn/hardware/mISDN/mISDNisar.o
2025-10-31T06:20:01.6379593Z CC [M] drivers/md/dm-log-userspace-base.o
2025-10-31T06:20:01.6688924Z CC [M] drivers/isdn/capi/kcapi_proc.o
2025-10-31T06:20:01.8719426Z CC [M] drivers/media/dvb-frontends/tda10023.o
2025-10-31T06:20:01.9967138Z CC [M] drivers/net/ethernet/xilinx/xilinx_axienet_main.o
2025-10-31T06:20:02.4860788Z LD [M] drivers/isdn/capi/kernelcapi.o
2025-10-31T06:20:02.5366831Z CC [M] drivers/isdn/hardware/mISDN/isdnhdlc.o
2025-10-31T06:20:02.6008573Z CC [M] drivers/md/dm-log-userspace-transfer.o
2025-10-31T06:20:02.7147154Z CC [M] drivers/media/dvb-frontends/stv0297.o
2025-10-31T06:20:03.3315833Z CC [M] drivers/media/dvb-frontends/nxt200x.o
2025-10-31T06:20:03.4289233Z CC [M] drivers/isdn/mISDN/core.o
2025-10-31T06:20:03.5635088Z CC [M] drivers/isdn/mISDN/fsm.o
2025-10-31T06:20:03.6772210Z CC [M] drivers/net/ethernet/xilinx/xilinx_axienet_mdio.o
2025-10-31T06:20:03.9280173Z CC [M] drivers/md/dm-zero.o
2025-10-31T06:20:04.1665075Z CC [M] drivers/net/fjes/fjes_main.o
2025-10-31T06:20:04.5069018Z CC [M] drivers/media/dvb-frontends/or51211.o
2025-10-31T06:20:04.5402186Z LD [M] drivers/net/ethernet/xilinx/ll_temac.o
2025-10-31T06:20:04.5572291Z LD [M] drivers/net/ethernet/xilinx/xilinx_emac.o
2025-10-31T06:20:04.5744244Z CC [M] drivers/isdn/mISDN/socket.o
2025-10-31T06:20:04.6411435Z CC [M] drivers/md/dm-raid.o
2025-10-31T06:20:04.6507102Z AR drivers/net/ethernet/xircom/built-in.a
2025-10-31T06:20:04.6617862Z CC [M] drivers/net/ethernet/xircom/xirc2ps_cs.o
2025-10-31T06:20:05.3730419Z CC [M] drivers/media/dvb-frontends/or51132.o
2025-10-31T06:20:06.0203693Z CC [M] drivers/isdn/mISDN/clock.o
2025-10-31T06:20:06.0533256Z CC [M] drivers/net/fjes/fjes_hw.o
2025-10-31T06:20:06.1077649Z CC [M] drivers/media/dvb-frontends/bcm3510.o
2025-10-31T06:20:06.4392186Z AR drivers/net/ethernet/synopsys/built-in.a
2025-10-31T06:20:06.4613589Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-net.o
2025-10-31T06:20:07.0677456Z CC [M] drivers/media/dvb-frontends/s5h1420.o
2025-10-31T06:20:07.1183953Z CC [M] drivers/isdn/mISDN/hwchannel.o
2025-10-31T06:20:07.5209871Z CC [M] drivers/md/dm-thin.o
2025-10-31T06:20:07.9055710Z CC [M] drivers/net/fjes/fjes_ethtool.o
2025-10-31T06:20:08.1490805Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-desc.o
2025-10-31T06:20:08.3662787Z CC [M] drivers/media/dvb-frontends/lgdt330x.o
2025-10-31T06:20:08.3952887Z CC [M] drivers/isdn/mISDN/stack.o
2025-10-31T06:20:09.1263567Z CC [M] drivers/net/fjes/fjes_trace.o
2025-10-31T06:20:09.4058290Z CC [M] drivers/media/dvb-frontends/lgdt3305.o
2025-10-31T06:20:09.4701227Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-hw.o
2025-10-31T06:20:09.9034917Z CC [M] drivers/isdn/mISDN/layer1.o
2025-10-31T06:20:10.1685038Z CC [M] drivers/md/dm-thin-metadata.o
2025-10-31T06:20:10.5414471Z CC [M] drivers/media/dvb-frontends/lgdt3306a.o
2025-10-31T06:20:11.0384686Z CC [M] drivers/isdn/mISDN/layer2.o
2025-10-31T06:20:11.3885212Z CC [M] drivers/net/fjes/fjes_debugfs.o
2025-10-31T06:20:11.6026039Z CC [M] drivers/md/dm-verity-fec.o
2025-10-31T06:20:11.9298958Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-common.o
2025-10-31T06:20:12.1021141Z CC [M] drivers/media/dvb-frontends/lg2160.o
2025-10-31T06:20:12.3157178Z LD [M] drivers/net/fjes/fjes.o
2025-10-31T06:20:12.3738171Z CC drivers/edac/edac_mc.o
2025-10-31T06:20:12.5910080Z CC [M] drivers/md/dm-verity-verify-sig.o
2025-10-31T06:20:13.0936994Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-ethtool.o
2025-10-31T06:20:13.3336415Z CC [M] drivers/media/dvb-frontends/cx24123.o
2025-10-31T06:20:13.4081196Z CC [M] drivers/md/dm-verity-target.o
2025-10-31T06:20:13.5514829Z CC [M] drivers/isdn/mISDN/tei.o
2025-10-31T06:20:13.6358705Z CC drivers/edac/edac_device.o
2025-10-31T06:20:13.8474982Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-pci.o
2025-10-31T06:20:14.6030875Z CC [M] drivers/media/dvb-frontends/lnbh25.o
2025-10-31T06:20:14.6498820Z LD [M] drivers/net/ethernet/synopsys/dwc-xlgmac.o
2025-10-31T06:20:14.7114451Z CC drivers/edac/edac_mc_sysfs.o
2025-10-31T06:20:14.7626743Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_main.o
2025-10-31T06:20:14.8869528Z CC [M] drivers/md/dm-cache-target.o
2025-10-31T06:20:15.1957026Z CC [M] drivers/media/dvb-frontends/lnbp21.o
2025-10-31T06:20:15.3465384Z CC [M] drivers/isdn/mISDN/timerdev.o
2025-10-31T06:20:15.8491823Z CC drivers/edac/edac_module.o
2025-10-31T06:20:15.8688263Z CC [M] drivers/media/dvb-frontends/lnbp22.o
2025-10-31T06:20:16.0839979Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_bus_pci.o
2025-10-31T06:20:16.5315094Z CC [M] drivers/media/dvb-frontends/isl6405.o
2025-10-31T06:20:16.5936321Z CC [M] drivers/isdn/mISDN/dsp_core.o
2025-10-31T06:20:16.6040800Z CC drivers/edac/edac_device_sysfs.o
2025-10-31T06:20:17.0362685Z CC [M] drivers/md/dm-cache-metadata.o
2025-10-31T06:20:17.2103638Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_devlink.o
2025-10-31T06:20:17.2280963Z CC [M] drivers/media/dvb-frontends/isl6421.o
2025-10-31T06:20:17.4683407Z CC drivers/edac/wq.o
2025-10-31T06:20:17.8791212Z CC [M] drivers/media/dvb-frontends/tda10086.o
2025-10-31T06:20:17.9926723Z CC drivers/edac/edac_pci.o
2025-10-31T06:20:18.3155978Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_dev.o
2025-10-31T06:20:18.3188283Z CC [M] drivers/isdn/mISDN/dsp_cmx.o
2025-10-31T06:20:18.6749760Z CC [M] drivers/media/dvb-frontends/tda826x.o
2025-10-31T06:20:18.7144069Z CC [M] drivers/md/dm-cache-policy.o
2025-10-31T06:20:18.7763478Z CC drivers/edac/edac_pci_sysfs.o
2025-10-31T06:20:19.5471498Z CC drivers/edac/ghes_edac.o
2025-10-31T06:20:19.5609123Z CC [M] drivers/media/dvb-frontends/tda8261.o
2025-10-31T06:20:19.6861640Z CC [M] drivers/md/dm-cache-background-tracker.o
2025-10-31T06:20:19.7213010Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_debugfs.o
2025-10-31T06:20:20.1106829Z CC [M] drivers/isdn/mISDN/dsp_tones.o
2025-10-31T06:20:20.2819916Z CC [M] drivers/media/dvb-frontends/dib0070.o
2025-10-31T06:20:20.3678599Z CC [M] drivers/md/dm-cache-policy-smq.o
2025-10-31T06:20:20.7437768Z CC [M] drivers/edac/mce_amd.o
2025-10-31T06:20:20.8453788Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_lif.o
2025-10-31T06:20:21.0496018Z CC [M] drivers/media/dvb-frontends/dib0090.o
2025-10-31T06:20:21.1549375Z CC [M] drivers/isdn/mISDN/dsp_dtmf.o
2025-10-31T06:20:21.6865325Z CC [M] drivers/edac/i5000_edac.o
2025-10-31T06:20:21.9136409Z CC [M] drivers/md/dm-ebs-target.o
2025-10-31T06:20:22.3360598Z CC [M] drivers/isdn/mISDN/dsp_audio.o
2025-10-31T06:20:22.6803648Z CC [M] drivers/edac/i5100_edac.o
2025-10-31T06:20:22.9000573Z CC [M] drivers/md/dm-era-target.o
2025-10-31T06:20:23.0323743Z CC [M] drivers/media/dvb-frontends/tua6100.o
2025-10-31T06:20:23.5169173Z CC [M] drivers/isdn/mISDN/dsp_blowfish.o
2025-10-31T06:20:23.6543264Z CC [M] drivers/edac/i5400_edac.o
2025-10-31T06:20:23.6939569Z CC [M] drivers/media/dvb-frontends/s5h1409.o
2025-10-31T06:20:24.1605584Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_rx_filter.o
2025-10-31T06:20:24.2698697Z CC [M] drivers/md/dm-clone-target.o
2025-10-31T06:20:24.5866029Z CC [M] drivers/edac/i7300_edac.o
2025-10-31T06:20:24.8906038Z CC [M] drivers/isdn/mISDN/dsp_pipeline.o
2025-10-31T06:20:24.9777942Z CC [M] drivers/media/dvb-frontends/itd1000.o
2025-10-31T06:20:25.2556568Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_ethtool.o
2025-10-31T06:20:25.5134171Z CC [M] drivers/edac/i7core_edac.o
2025-10-31T06:20:25.8065316Z CC [M] drivers/media/dvb-frontends/au8522_common.o
2025-10-31T06:20:25.8305736Z CC [M] drivers/md/dm-clone-metadata.o
2025-10-31T06:20:26.4090595Z CC [M] drivers/isdn/mISDN/dsp_hwec.o
2025-10-31T06:20:26.5534227Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_txrx.o
2025-10-31T06:20:26.6610239Z CC [M] drivers/media/dvb-frontends/au8522_dig.o
2025-10-31T06:20:26.8807114Z CC [M] drivers/edac/sb_edac.o
2025-10-31T06:20:26.9488832Z CC [M] drivers/md/dm-log-writes.o
2025-10-31T06:20:27.4455130Z CC [M] drivers/isdn/mISDN/l1oip_core.o
2025-10-31T06:20:27.8490804Z CC [M] drivers/media/dvb-frontends/au8522_decoder.o
2025-10-31T06:20:28.3679316Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_stats.o
2025-10-31T06:20:28.4118098Z CC [M] drivers/md/dm-integrity.o
2025-10-31T06:20:28.5550546Z CC [M] drivers/edac/pnd2_edac.o
2025-10-31T06:20:28.7652689Z CC [M] drivers/media/dvb-frontends/tda10048.o
2025-10-31T06:20:29.4025845Z CC [M] drivers/isdn/mISDN/l1oip_codec.o
2025-10-31T06:20:29.4145163Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_fw.o
2025-10-31T06:20:29.8014280Z CC [M] drivers/media/dvb-frontends/cx24113.o
2025-10-31T06:20:30.0045131Z CC [M] drivers/edac/e752x_edac.o
2025-10-31T06:20:30.4060578Z LD [M] drivers/isdn/mISDN/mISDN_core.o
2025-10-31T06:20:30.4461309Z LD [M] drivers/isdn/mISDN/mISDN_dsp.o
2025-10-31T06:20:30.4512542Z LD [M] drivers/net/ethernet/pensando/ionic/ionic.o
2025-10-31T06:20:30.4800182Z LD [M] drivers/isdn/mISDN/l1oip.o
2025-10-31T06:20:30.5109449Z AR drivers/net/ethernet/pensando/built-in.a
2025-10-31T06:20:30.5171113Z AR drivers/isdn/built-in.a
2025-10-31T06:20:30.5459543Z CC [M] drivers/net/ethernet/altera/altera_tse_main.o
2025-10-31T06:20:30.5534452Z CC [M] drivers/media/v4l2-core/v4l2-fwnode.o
2025-10-31T06:20:30.8194252Z CC [M] drivers/media/dvb-frontends/s5h1411.o
2025-10-31T06:20:31.0686587Z CC [M] drivers/edac/i82975x_edac.o
2025-10-31T06:20:31.7292819Z CC [M] drivers/media/dvb-frontends/tda665x.o
2025-10-31T06:20:31.8510444Z CC [M] drivers/net/ethernet/altera/altera_tse_ethtool.o
2025-10-31T06:20:31.8781541Z CC [M] drivers/edac/i3000_edac.o
2025-10-31T06:20:31.9103376Z CC [M] drivers/md/dm-zoned-target.o
2025-10-31T06:20:31.9839763Z CC [M] drivers/media/v4l2-core/v4l2-dev.o
2025-10-31T06:20:32.3979545Z CC [M] drivers/media/dvb-frontends/lgs8gxx.o
2025-10-31T06:20:32.7839820Z CC [M] drivers/edac/i3200_edac.o
2025-10-31T06:20:32.8525459Z CC [M] drivers/net/ethernet/altera/altera_msgdma.o
2025-10-31T06:20:33.1184622Z CC [M] drivers/md/dm-zoned-metadata.o
2025-10-31T06:20:33.1389405Z CC [M] drivers/media/v4l2-core/v4l2-ioctl.o
2025-10-31T06:20:33.5966484Z CC [M] drivers/edac/ie31200_edac.o
2025-10-31T06:20:33.7385894Z CC [M] drivers/media/dvb-frontends/atbm8830.o
2025-10-31T06:20:34.0529062Z CC [M] drivers/net/ethernet/altera/altera_sgdma.o
2025-10-31T06:20:34.3131285Z CC [M] drivers/edac/x38_edac.o
2025-10-31T06:20:34.6714454Z CC [M] drivers/media/dvb-frontends/dvb_dummy_fe.o
2025-10-31T06:20:35.1108760Z CC [M] drivers/edac/amd64_edac.o
2025-10-31T06:20:35.2709281Z CC [M] drivers/net/ethernet/altera/altera_utils.o
2025-10-31T06:20:35.3305879Z CC [M] drivers/media/dvb-frontends/af9013.o
2025-10-31T06:20:35.3369665Z CC [M] drivers/media/v4l2-core/v4l2-device.o
2025-10-31T06:20:35.6250382Z CC [M] drivers/md/dm-zoned-reclaim.o
2025-10-31T06:20:36.0471380Z LD [M] drivers/net/ethernet/altera/altera_tse.o
2025-10-31T06:20:36.1200392Z AR drivers/net/ethernet/built-in.a
2025-10-31T06:20:36.1485570Z CC [M] drivers/net/ethernet/ec_bhf.o
2025-10-31T06:20:36.4489585Z CC [M] drivers/media/v4l2-core/v4l2-fh.o
2025-10-31T06:20:36.6275256Z CC [M] drivers/md/dm-writecache.o
2025-10-31T06:20:36.8772727Z CC [M] drivers/media/dvb-frontends/cx24116.o
2025-10-31T06:20:37.1549923Z CC [M] drivers/net/ethernet/dnet.o
2025-10-31T06:20:37.2129502Z CC [M] drivers/media/v4l2-core/v4l2-event.o
2025-10-31T06:20:37.2817535Z CC [M] drivers/edac/skx_base.o
2025-10-31T06:20:38.2137842Z CC [M] drivers/media/v4l2-core/v4l2-ctrls.o
2025-10-31T06:20:38.2426860Z CC [M] drivers/media/dvb-frontends/cx24117.o
2025-10-31T06:20:38.2869128Z CC [M] drivers/edac/skx_common.o
2025-10-31T06:20:38.3420996Z CC [M] drivers/net/ethernet/jme.o
2025-10-31T06:20:38.6717865Z LD [M] drivers/md/linear.o
2025-10-31T06:20:38.6845093Z LD [M] drivers/md/raid456.o
2025-10-31T06:20:38.7177276Z LD [M] drivers/md/multipath.o
2025-10-31T06:20:38.7305406Z LD [M] drivers/md/faulty.o
2025-10-31T06:20:38.7433145Z LD [M] drivers/md/md-mod.o
2025-10-31T06:20:38.7732711Z LD [M] drivers/md/dm-mod.o
2025-10-31T06:20:38.8176344Z LD [M] drivers/md/dm-bio-prison.o
2025-10-31T06:20:38.8329806Z LD [M] drivers/md/dm-multipath.o
2025-10-31T06:20:38.8501284Z LD [M] drivers/md/dm-snapshot.o
2025-10-31T06:20:38.8719549Z LD [M] drivers/md/dm-mirror.o
2025-10-31T06:20:38.8862833Z LD [M] drivers/md/dm-log-userspace.o
2025-10-31T06:20:38.9030442Z LD [M] drivers/md/dm-thin-pool.o
2025-10-31T06:20:38.9243516Z LD [M] drivers/md/dm-verity.o
2025-10-31T06:20:38.9419092Z LD [M] drivers/md/dm-cache.o
2025-10-31T06:20:38.9641345Z LD [M] drivers/md/dm-cache-smq.o
2025-10-31T06:20:38.9789104Z LD [M] drivers/md/dm-ebs.o
2025-10-31T06:20:39.0123739Z LD [M] drivers/md/dm-era.o
2025-10-31T06:20:39.0421459Z LD [M] drivers/md/dm-clone.o
2025-10-31T06:20:39.0770644Z LD [M] drivers/md/dm-zoned.o
2025-10-31T06:20:39.1190048Z AR drivers/md/built-in.a
2025-10-31T06:20:39.4349367Z CC [M] drivers/media/dvb-frontends/cx24120.o
2025-10-31T06:20:39.5222676Z CC [M] drivers/media/dvb-core/dvbdev.o
2025-10-31T06:20:39.5330136Z CC [M] drivers/edac/i10nm_base.o
2025-10-31T06:20:40.4021491Z LD [M] drivers/edac/skx_edac_common.o
2025-10-31T06:20:40.4143746Z LD [M] drivers/edac/edac_mce_amd.o
2025-10-31T06:20:40.4261425Z LD [M] drivers/edac/amd64_edac_mod.o
2025-10-31T06:20:40.4404196Z LD [M] drivers/edac/skx_edac.o
2025-10-31T06:20:40.4520477Z LD [M] drivers/edac/i10nm_edac.o
2025-10-31T06:20:40.4640717Z AR drivers/edac/built-in.a
2025-10-31T06:20:40.6459061Z CC [M] drivers/media/cec/core/cec-core.o
2025-10-31T06:20:40.7174346Z CC [M] drivers/media/dvb-frontends/si21xx.o
2025-10-31T06:20:40.8437820Z CC [M] drivers/media/dvb-core/dmxdev.o
2025-10-31T06:20:41.1123474Z CC [M] drivers/media/v4l2-core/v4l2-subdev.o
2025-10-31T06:20:41.3693127Z CC [M] drivers/net/ethernet/fealnx.o
2025-10-31T06:20:41.5882420Z CC [M] drivers/media/cec/core/cec-adap.o
2025-10-31T06:20:41.9713711Z CC [M] drivers/media/dvb-frontends/si2168.o
2025-10-31T06:20:42.1995374Z CC [M] drivers/media/v4l2-core/v4l2-clk.o
2025-10-31T06:20:42.3038533Z CC [M] drivers/media/dvb-core/dvb_demux.o
2025-10-31T06:20:43.1081684Z CC [M] drivers/media/dvb-frontends/stv0288.o
2025-10-31T06:20:43.1142843Z CC [M] drivers/media/v4l2-core/v4l2-async.o
2025-10-31T06:20:43.1355845Z CC [M] drivers/net/ethernet/ethoc.o
2025-10-31T06:20:43.4103151Z CC [M] drivers/media/cec/core/cec-api.o
2025-10-31T06:20:43.4753585Z CC [M] drivers/media/dvb-core/dvb_ca_en50221.o
2025-10-31T06:20:43.8157993Z CC [M] drivers/media/dvb-frontends/stb6000.o
2025-10-31T06:20:44.3800243Z CC [M] drivers/media/v4l2-core/v4l2-common.o
2025-10-31T06:20:44.4674608Z CC [M] drivers/media/cec/core/cec-notifier.o
2025-10-31T06:20:44.5290456Z CC [M] drivers/media/dvb-frontends/s921.o
2025-10-31T06:20:44.9623829Z CC [M] drivers/net/netdevsim/netdev.o
2025-10-31T06:20:45.1304126Z CC [M] drivers/media/dvb-core/dvb_frontend.o
2025-10-31T06:20:45.2215369Z CC [M] drivers/media/v4l2-core/v4l2-compat-ioctl32.o
2025-10-31T06:20:45.2863074Z CC [M] drivers/media/dvb-frontends/stv6110.o
2025-10-31T06:20:45.3065602Z CC [M] drivers/media/cec/core/cec-pin.o
2025-10-31T06:20:46.1489665Z CC [M] drivers/media/dvb-frontends/stv0900_core.o
2025-10-31T06:20:46.4267005Z LD [M] drivers/media/cec/core/cec.o
2025-10-31T06:20:46.4380717Z CC [M] drivers/net/netdevsim/dev.o
2025-10-31T06:20:46.5120926Z CC [M] drivers/media/cec/i2c/ch7322.o
2025-10-31T06:20:46.7447293Z CC [M] drivers/media/dvb-core/dvb_net.o
2025-10-31T06:20:47.3392849Z CC [M] drivers/media/v4l2-core/v4l2-trace.o
2025-10-31T06:20:47.6561175Z CC [M] drivers/media/cec/platform/cros-ec/cros-ec-cec.o
2025-10-31T06:20:47.7509786Z CC [M] drivers/media/dvb-frontends/stv0900_sw.o
2025-10-31T06:20:48.0747071Z CC [M] drivers/net/netdevsim/ethtool.o
2025-10-31T06:20:48.2573243Z CC [M] drivers/media/v4l2-core/v4l2-mc.o
2025-10-31T06:20:48.2662769Z CC [M] drivers/media/dvb-core/dvb_ringbuffer.o
2025-10-31T06:20:48.4894318Z CC [M] drivers/media/cec/platform/cec-gpio/cec-gpio.o
2025-10-31T06:20:48.9696174Z CC [M] drivers/media/dvb-core/dvb_vb2.o
2025-10-31T06:20:49.3056819Z CC [M] drivers/media/cec/platform/seco/seco-cec.o
2025-10-31T06:20:49.3073044Z CC [M] drivers/net/netdevsim/fib.o
2025-10-31T06:20:49.3326499Z CC [M] drivers/media/v4l2-core/v4l2-spi.o
2025-10-31T06:20:49.6424361Z CC [M] drivers/media/dvb-frontends/stv090x.o
2025-10-31T06:20:49.8611572Z CC [M] drivers/media/dvb-core/dvb_math.o
2025-10-31T06:20:50.1403783Z CC [M] drivers/media/v4l2-core/v4l2-i2c.o
2025-10-31T06:20:50.2570190Z LD [M] drivers/media/dvb-core/dvb-core.o
2025-10-31T06:20:50.3328096Z CC [M] drivers/media/cec/usb/pulse8/pulse8-cec.o
2025-10-31T06:20:50.6703584Z CC [M] drivers/net/netdevsim/bus.o
2025-10-31T06:20:51.1349993Z CC [M] drivers/media/v4l2-core/v4l2-dv-timings.o
2025-10-31T06:20:51.3944939Z CC [M] drivers/net/netdevsim/health.o
2025-10-31T06:20:51.4225866Z CC [M] drivers/media/cec/usb/rainshadow/rainshadow-cec.o
2025-10-31T06:20:52.0465763Z CC drivers/opp/core.o
2025-10-31T06:20:52.2596578Z CC [M] drivers/media/v4l2-core/tuner-core.o
2025-10-31T06:20:52.5115708Z CC drivers/net/Space.o
2025-10-31T06:20:52.7355548Z CC [M] drivers/net/netdevsim/udp_tunnels.o
2025-10-31T06:20:53.4016660Z CC [M] drivers/media/radio/si470x/radio-si470x-common.o
2025-10-31T06:20:53.5396060Z CC [M] drivers/media/v4l2-core/v4l2-mem2mem.o
2025-10-31T06:20:53.5655907Z CC [M] drivers/media/dvb-frontends/stv6110x.o
2025-10-31T06:20:53.9587725Z CC drivers/opp/cpu.o
2025-10-31T06:20:54.0206689Z CC [M] drivers/net/netdevsim/bpf.o
2025-10-31T06:20:54.4193347Z CC [M] drivers/media/radio/si470x/radio-si470x-usb.o
2025-10-31T06:20:54.4316432Z CC [M] drivers/media/dvb-frontends/m88ds3103.o
2025-10-31T06:20:54.7148314Z CC drivers/opp/debugfs.o
2025-10-31T06:20:55.1275848Z CC [M] drivers/media/v4l2-core/v4l2-flash-led-class.o
2025-10-31T06:20:55.3777152Z AR drivers/opp/built-in.a
2025-10-31T06:20:55.3881501Z AR drivers/media/built-in.a
2025-10-31T06:20:55.4336226Z CC [M] drivers/media/radio/si4713/si4713.o
2025-10-31T06:20:55.5095170Z CC [M] drivers/net/netdevsim/ipsec.o
2025-10-31T06:20:55.5463485Z CC [M] drivers/media/radio/si470x/radio-si470x-i2c.o
2025-10-31T06:20:55.8825781Z CC [M] drivers/media/dvb-frontends/mn88472.o
2025-10-31T06:20:56.0082335Z CC [M] drivers/media/v4l2-core/videobuf-core.o
2025-10-31T06:20:56.4304683Z CC drivers/net/loopback.o
2025-10-31T06:20:56.8604268Z LD [M] drivers/net/netdevsim/netdevsim.o
2025-10-31T06:20:56.8819878Z CC [M] drivers/media/dvb-frontends/mn88473.o
2025-10-31T06:20:56.9734278Z CC [M] drivers/media/radio/si4713/radio-usb-si4713.o
2025-10-31T06:20:57.1211784Z CC [M] drivers/media/v4l2-core/videobuf-dma-sg.o
2025-10-31T06:20:57.4055712Z CC [M] drivers/media/radio/wl128x/fmdrv_common.o
2025-10-31T06:20:57.4530984Z CC [M] drivers/net/dummy.o
2025-10-31T06:20:57.6951112Z CC [M] drivers/media/dvb-frontends/isl6423.o
2025-10-31T06:20:58.2050813Z CC [M] drivers/media/v4l2-core/videobuf-vmalloc.o
2025-10-31T06:20:58.3763634Z CC [M] drivers/media/radio/si4713/radio-platform-si4713.o
2025-10-31T06:20:58.3940242Z CC [M] drivers/media/dvb-frontends/ec100.o
2025-10-31T06:20:58.4997256Z CC [M] drivers/net/eql.o
2025-10-31T06:20:58.7288994Z CC [M] drivers/media/radio/wl128x/fmdrv_rx.o
2025-10-31T06:20:59.1218957Z LD [M] drivers/media/v4l2-core/videodev.o
2025-10-31T06:20:59.1376731Z CC [M] drivers/media/dvb-frontends/ds3000.o
2025-10-31T06:20:59.1814335Z LD [M] drivers/media/v4l2-core/tuner.o
2025-10-31T06:20:59.2657416Z CC drivers/cpufreq/cpufreq.o
2025-10-31T06:20:59.5325304Z CC [M] drivers/net/ifb.o
2025-10-31T06:20:59.7134482Z CC [M] drivers/media/radio/wl128x/fmdrv_tx.o
2025-10-31T06:20:59.7869654Z CC [M] drivers/media/dvb-frontends/ts2020.o
2025-10-31T06:21:00.1919346Z CC [M] drivers/media/dvb-frontends/mb86a16.o
2025-10-31T06:21:00.6314953Z CC [M] drivers/media/radio/wl128x/fmdrv_v4l2.o
2025-10-31T06:21:00.6624019Z CC [M] drivers/net/macsec.o
2025-10-31T06:21:00.8205205Z CC [M] drivers/net/macvlan.o
2025-10-31T06:21:01.5045447Z CC drivers/cpufreq/freq_table.o
2025-10-31T06:21:01.7089394Z LD [M] drivers/media/radio/wl128x/fm_drv.o
2025-10-31T06:21:01.7796949Z CC [M] drivers/media/radio/radio-maxiradio.o
2025-10-31T06:21:02.1503333Z CC drivers/cpufreq/cpufreq_stats.o
2025-10-31T06:21:02.2957984Z CC [M] drivers/media/dvb-frontends/mb86a20s.o
2025-10-31T06:21:02.7311073Z CC [M] drivers/media/radio/radio-shark.o
2025-10-31T06:21:02.7913654Z CC drivers/cpufreq/cpufreq_performance.o
2025-10-31T06:21:02.8458448Z CC drivers/cpufreq/cpufreq_powersave.o
2025-10-31T06:21:03.2749413Z CC [M] drivers/media/radio/radio-shark2.o
2025-10-31T06:21:03.4130677Z CC drivers/cpufreq/cpufreq_userspace.o
2025-10-31T06:21:03.6705357Z CC [M] drivers/net/macvtap.o
2025-10-31T06:21:03.7350876Z CC [M] drivers/media/dvb-frontends/ix2505v.o
2025-10-31T06:21:03.7689598Z CC [M] drivers/media/dvb-frontends/stv0367.o
2025-10-31T06:21:03.8379222Z CC drivers/cpufreq/cpufreq_ondemand.o
2025-10-31T06:21:04.3563461Z CC [M] drivers/media/radio/radio-tea5777.o
2025-10-31T06:21:04.5036304Z CC drivers/cpuidle/governors/ladder.o
2025-10-31T06:21:04.6994337Z CC drivers/cpufreq/cpufreq_conservative.o
2025-10-31T06:21:04.8342927Z CC [M] drivers/net/mii.o
2025-10-31T06:21:05.0585635Z CC drivers/cpuidle/governors/menu.o
2025-10-31T06:21:05.2102530Z CC [M] drivers/media/radio/radio-si476x.o
2025-10-31T06:21:05.5344882Z CC drivers/cpufreq/cpufreq_governor.o
2025-10-31T06:21:05.6355474Z CC drivers/cpuidle/governors/teo.o
2025-10-31T06:21:05.8324362Z CC [M] drivers/media/dvb-frontends/cxd2820r_core.o
2025-10-31T06:21:06.1310340Z CC [M] drivers/net/mdio.o
2025-10-31T06:21:06.2324853Z CC drivers/cpuidle/governors/haltpoll.o
2025-10-31T06:21:06.2438608Z CC drivers/cpufreq/cpufreq_governor_attr_set.o
2025-10-31T06:21:06.4597968Z CC [M] drivers/media/radio/dsbr100.o
2025-10-31T06:21:06.6259430Z CC drivers/cpufreq/intel_pstate.o
2025-10-31T06:21:06.8477259Z AR drivers/cpuidle/governors/built-in.a
2025-10-31T06:21:06.8675339Z CC drivers/cpuidle/cpuidle.o
2025-10-31T06:21:06.8803667Z CC [M] drivers/media/dvb-frontends/cxd2820r_c.o
2025-10-31T06:21:07.1934206Z CC [M] drivers/net/netconsole.o
2025-10-31T06:21:07.4387475Z CC [M] drivers/media/radio/radio-mr800.o
2025-10-31T06:21:07.5731435Z CC [M] drivers/media/dvb-frontends/cxd2820r_t.o
2025-10-31T06:21:08.0908529Z CC drivers/cpuidle/driver.o
2025-10-31T06:21:08.4357797Z CC [M] drivers/net/tun.o
2025-10-31T06:21:08.4892474Z CC [M] drivers/media/radio/radio-keene.o
2025-10-31T06:21:08.5300126Z CC [M] drivers/media/dvb-frontends/cxd2820r_t2.o
2025-10-31T06:21:08.6731722Z CC drivers/cpuidle/governor.o
2025-10-31T06:21:08.7397645Z CC [M] drivers/cpufreq/acpi-cpufreq.o
2025-10-31T06:21:09.1824938Z CC drivers/cpuidle/sysfs.o
2025-10-31T06:21:09.2868530Z CC [M] drivers/media/radio/radio-ma901.o
2025-10-31T06:21:09.4531423Z CC [M] drivers/media/dvb-frontends/cxd2841er.o
2025-10-31T06:21:09.7886350Z CC drivers/cpuidle/poll_state.o
2025-10-31T06:21:09.8743100Z CC [M] drivers/cpufreq/powernow-k8.o
2025-10-31T06:21:10.1830088Z CC [M] drivers/cpuidle/cpuidle-haltpoll.o
2025-10-31T06:21:10.3958277Z CC [M] drivers/media/radio/radio-tea5764.o
2025-10-31T06:21:10.7698630Z AR drivers/cpuidle/built-in.a
2025-10-31T06:21:10.8235203Z CC [M] drivers/cpufreq/pcc-cpufreq.o
2025-10-31T06:21:11.1248401Z CC [M] drivers/media/dvb-frontends/drxk_hard.o
2025-10-31T06:21:11.3830906Z CC [M] drivers/media/radio/saa7706h.o
2025-10-31T06:21:11.5498321Z CC [M] drivers/cpufreq/speedstep-lib.o
2025-10-31T06:21:11.8718434Z CC [M] drivers/media/radio/tef6862.o
2025-10-31T06:21:12.1183187Z CC [M] drivers/cpufreq/p4-clockmod.o
2025-10-31T06:21:12.2526410Z CC drivers/mmc/host/sdhci-pci-data.o
2025-10-31T06:21:12.2557567Z CC [M] drivers/net/tap.o
2025-10-31T06:21:12.6554794Z CC [M] drivers/mmc/host/sdhci.o
2025-10-31T06:21:12.7455743Z CC [M] drivers/media/radio/radio-wl1273.o
2025-10-31T06:21:12.8125567Z CC [M] drivers/cpufreq/amd_freq_sensitivity.o
2025-10-31T06:21:13.6059904Z AR drivers/cpufreq/built-in.a
2025-10-31T06:21:13.7036162Z CC [M] drivers/media/radio/tea575x.o
2025-10-31T06:21:14.2104790Z CC [M] drivers/media/dvb-frontends/tda18271c2dd.o
2025-10-31T06:21:14.2722709Z CC [M] drivers/mmc/core/core.o
2025-10-31T06:21:14.3736000Z CC [M] drivers/net/veth.o
2025-10-31T06:21:14.8450466Z CC [M] drivers/media/radio/radio-raremono.o
2025-10-31T06:21:15.5918887Z CC [M] drivers/media/dvb-frontends/stv0910.o
2025-10-31T06:21:15.7223519Z LD [M] drivers/media/radio/shark2.o
2025-10-31T06:21:15.8197556Z CC [M] drivers/mmc/host/sdhci-pci-core.o
2025-10-31T06:21:16.0896292Z CC [M] drivers/media/dvb-frontends/stv6111.o
2025-10-31T06:21:16.5131751Z CC [M] drivers/net/virtio_net.o
2025-10-31T06:21:16.6206414Z CC [M] drivers/mmc/core/bus.o
2025-10-31T06:21:16.7905911Z CC drivers/leds/trigger/ledtrig-disk.o
2025-10-31T06:21:17.1528506Z CC [M] drivers/mmc/core/host.o
2025-10-31T06:21:17.1834692Z CC drivers/leds/trigger/ledtrig-mtd.o
2025-10-31T06:21:17.2850430Z CC [M] drivers/media/dvb-frontends/mxl5xx.o
2025-10-31T06:21:17.5412770Z CC [M] drivers/mmc/host/sdhci-pci-o2micro.o
2025-10-31T06:21:17.5881206Z CC drivers/leds/trigger/ledtrig-cpu.o
2025-10-31T06:21:17.9731243Z CC [M] drivers/mmc/core/mmc.o
2025-10-31T06:21:18.1055429Z CC drivers/leds/trigger/ledtrig-panic.o
2025-10-31T06:21:18.6369675Z CC [M] drivers/mmc/host/sdhci-pci-arasan.o
2025-10-31T06:21:18.6625766Z CC [M] drivers/leds/trigger/ledtrig-timer.o
2025-10-31T06:21:18.8090047Z CC [M] drivers/media/dvb-frontends/si2165.o
2025-10-31T06:21:19.1633782Z CC [M] drivers/leds/trigger/ledtrig-oneshot.o
2025-10-31T06:21:19.3821335Z CC [M] drivers/mmc/core/mmc_ops.o
2025-10-31T06:21:19.4504448Z CC [M] drivers/mmc/host/sdhci-pci-dwc-mshc.o
2025-10-31T06:21:19.7481424Z CC [M] drivers/media/dvb-frontends/a8293.o
2025-10-31T06:21:19.8229948Z CC [M] drivers/leds/trigger/ledtrig-heartbeat.o
2025-10-31T06:21:20.2894320Z CC [M] drivers/mmc/host/sdhci-pci-gli.o
2025-10-31T06:21:20.3132536Z CC [M] drivers/net/geneve.o
2025-10-31T06:21:20.3688269Z CC [M] drivers/media/dvb-frontends/sp2.o
2025-10-31T06:21:20.4222142Z CC [M] drivers/leds/trigger/ledtrig-backlight.o
2025-10-31T06:21:20.4965350Z CC [M] drivers/mmc/core/sd.o
2025-10-31T06:21:21.2129551Z CC [M] drivers/media/dvb-frontends/tda10071.o
2025-10-31T06:21:21.2136815Z CC [M] drivers/leds/trigger/ledtrig-gpio.o
2025-10-31T06:21:21.3745887Z CC [M] drivers/mmc/host/sdhci-acpi.o
2025-10-31T06:21:21.5194859Z CC [M] drivers/mmc/core/sd_ops.o
2025-10-31T06:21:22.0453616Z CC [M] drivers/leds/trigger/ledtrig-activity.o
2025-10-31T06:21:22.3774313Z CC [M] drivers/mmc/core/sdio.o
2025-10-31T06:21:22.4352455Z CC [M] drivers/media/dvb-frontends/rtl2830.o
2025-10-31T06:21:22.5191064Z CC [M] drivers/mmc/host/sdhci_f_sdh30.o
2025-10-31T06:21:22.7595425Z CC [M] drivers/leds/trigger/ledtrig-default-on.o
2025-10-31T06:21:23.2381841Z CC [M] drivers/net/bareudp.o
2025-10-31T06:21:23.2792268Z CC [M] drivers/leds/trigger/ledtrig-transient.o
2025-10-31T06:21:23.2890885Z CC [M] drivers/mmc/host/wbsd.o
2025-10-31T06:21:23.3417898Z CC [M] drivers/mmc/core/sdio_ops.o
2025-10-31T06:21:23.4482539Z CC [M] drivers/media/dvb-frontends/rtl2832.o
2025-10-31T06:21:23.9421361Z CC [M] drivers/leds/trigger/ledtrig-camera.o
2025-10-31T06:21:24.1603806Z CC [M] drivers/mmc/core/sdio_bus.o
2025-10-31T06:21:24.3742492Z CC [M] drivers/leds/trigger/ledtrig-netdev.o
2025-10-31T06:21:24.4419456Z CC [M] drivers/media/dvb-frontends/m88rs2000.o
2025-10-31T06:21:24.7563846Z CC [M] drivers/mmc/host/alcor.o
2025-10-31T06:21:25.0494430Z CC [M] drivers/mmc/core/sdio_cis.o
2025-10-31T06:21:25.2296121Z CC [M] drivers/net/gtp.o
2025-10-31T06:21:25.3959049Z CC [M] drivers/media/dvb-frontends/af9033.o
2025-10-31T06:21:25.4752614Z CC [M] drivers/leds/trigger/ledtrig-pattern.o
2025-10-31T06:21:25.6600285Z CC [M] drivers/mmc/core/sdio_io.o
2025-10-31T06:21:25.8844098Z CC [M] drivers/mmc/host/mtk-sd.o
2025-10-31T06:21:26.1767704Z CC [M] drivers/leds/trigger/ledtrig-audio.o
2025-10-31T06:21:26.3342695Z CC [M] drivers/mmc/core/sdio_irq.o
2025-10-31T06:21:26.4864808Z CC [M] drivers/media/dvb-frontends/as102_fe.o
2025-10-31T06:21:26.7162757Z AR drivers/leds/trigger/built-in.a
2025-10-31T06:21:26.8743681Z CC drivers/leds/led-core.o
2025-10-31T06:21:26.9311393Z CC [M] drivers/mmc/core/slot-gpio.o
2025-10-31T06:21:27.2581747Z CC [M] drivers/net/nlmon.o
2025-10-31T06:21:27.4200865Z CC [M] drivers/mmc/core/regulator.o
2025-10-31T06:21:27.4754579Z CC [M] drivers/media/dvb-frontends/gp8psk-fe.o
2025-10-31T06:21:27.6447762Z CC drivers/leds/led-class.o
2025-10-31T06:21:28.0357724Z CC [M] drivers/net/vrf.o
2025-10-31T06:21:28.0415102Z CC [M] drivers/mmc/host/tifm_sd.o
2025-10-31T06:21:28.1551599Z CC [M] drivers/mmc/core/debugfs.o
2025-10-31T06:21:28.2538945Z CC [M] drivers/media/dvb-frontends/tc90522.o
2025-10-31T06:21:28.3116657Z CC drivers/leds/led-triggers.o
2025-10-31T06:21:28.7063136Z CC [M] drivers/mmc/core/block.o
2025-10-31T06:21:29.2192703Z CC [M] drivers/leds/led-class-flash.o
2025-10-31T06:21:29.2981402Z CC [M] drivers/mmc/host/mmc_spi.o
2025-10-31T06:21:29.4159127Z CC [M] drivers/media/dvb-frontends/horus3a.o
2025-10-31T06:21:29.8804285Z CC [M] drivers/leds/led-class-multicolor.o
2025-10-31T06:21:30.1683566Z CC [M] drivers/net/vsockmon.o
2025-10-31T06:21:30.4283229Z CC [M] drivers/media/dvb-frontends/ascot2e.o
2025-10-31T06:21:30.5014724Z CC [M] drivers/mmc/host/sdricoh_cs.o
2025-10-31T06:21:30.5403256Z CC [M] drivers/leds/leds-88pm860x.o
2025-10-31T06:21:31.0925138Z CC [M] drivers/mmc/core/queue.o
2025-10-31T06:21:31.1618862Z CC [M] drivers/net/sb1000.o
2025-10-31T06:21:31.1785101Z CC [M] drivers/media/dvb-frontends/helene.o
2025-10-31T06:21:31.1923598Z CC [M] drivers/leds/leds-adp5520.o
2025-10-31T06:21:31.3980158Z CC [M] drivers/mmc/host/cb710-mmc.o
2025-10-31T06:21:31.8413198Z CC [M] drivers/leds/leds-apu.o
2025-10-31T06:21:32.0001172Z CC [M] drivers/mmc/core/mmc_test.o
2025-10-31T06:21:32.0873709Z CC [M] drivers/media/dvb-frontends/zd1301_demod.o
2025-10-31T06:21:32.3755216Z CC [M] drivers/net/sungem_phy.o
2025-10-31T06:21:32.4494670Z CC [M] drivers/leds/leds-as3645a.o
2025-10-31T06:21:32.6359888Z CC [M] drivers/mmc/host/via-sdmmc.o
2025-10-31T06:21:33.0769752Z CC [M] drivers/media/dvb-frontends/cxd2099.o
2025-10-31T06:21:33.5308223Z CC [M] drivers/leds/leds-bd2802.o
2025-10-31T06:21:33.6904696Z CC [M] drivers/net/xen-netfront.o
2025-10-31T06:21:33.7274460Z CC [M] drivers/mmc/host/vub300.o
2025-10-31T06:21:33.9700545Z LD [M] drivers/media/dvb-frontends/stb0899.o
2025-10-31T06:21:33.9893962Z CC [M] drivers/mmc/core/sdio_uart.o
2025-10-31T06:21:33.9972894Z LD [M] drivers/media/dvb-frontends/drxd.o
2025-10-31T06:21:34.0253073Z LD [M] drivers/media/dvb-frontends/stv0900.o
2025-10-31T06:21:34.0594995Z LD [M] drivers/media/dvb-frontends/cxd2820r.o
2025-10-31T06:21:34.0995759Z LD [M] drivers/media/dvb-frontends/drxk.o
2025-10-31T06:21:34.6567280Z CC [M] drivers/leds/leds-blinkm.o
2025-10-31T06:21:34.8772501Z CC [M] drivers/net/ntb_netdev.o
2025-10-31T06:21:35.2161374Z LD [M] drivers/mmc/core/mmc_core.o
2025-10-31T06:21:35.2603814Z LD [M] drivers/mmc/core/mmc_block.o
2025-10-31T06:21:35.3123178Z CC [M] drivers/leds/leds-clevo-mail.o
2025-10-31T06:21:35.3813294Z AR drivers/firmware/arm_scmi/built-in.a
2025-10-31T06:21:35.4541370Z AR drivers/firmware/broadcom/built-in.a
2025-10-31T06:21:35.5191732Z AR drivers/firmware/meson/built-in.a
2025-10-31T06:21:35.5892436Z AR drivers/firmware/google/built-in.a
2025-10-31T06:21:35.6153499Z CC [M] drivers/firmware/google/coreboot_table.o
2025-10-31T06:21:35.7111637Z CC [M] drivers/leds/leds-da903x.o
2025-10-31T06:21:35.9353518Z CC [M] drivers/leds/leds-da9052.o
2025-10-31T06:21:36.0030350Z CC [M] drivers/mmc/host/ushc.o
2025-10-31T06:21:36.1315583Z AR drivers/crypto/ccp/built-in.a
2025-10-31T06:21:36.1420650Z CC [M] drivers/crypto/ccp/sp-dev.o
2025-10-31T06:21:36.3682218Z CC [M] drivers/firmware/google/framebuffer-coreboot.o
2025-10-31T06:21:36.5049130Z CC [M] drivers/leds/leds-gpio.o
2025-10-31T06:21:36.5926071Z CC [M] drivers/net/thunderbolt.o
2025-10-31T06:21:36.7918503Z CC [M] drivers/crypto/ccp/sp-platform.o
2025-10-31T06:21:36.8012495Z CC [M] drivers/mmc/host/usdhi6rol0.o
2025-10-31T06:21:37.1277913Z CC [M] drivers/firmware/google/memconsole.o
2025-10-31T06:21:37.1943594Z CC [M] drivers/leds/leds-ss4200.o
2025-10-31T06:21:37.5360642Z CC [M] drivers/firmware/google/memconsole-coreboot.o
2025-10-31T06:21:37.6603613Z CC [M] drivers/crypto/ccp/ccp-dev.o
2025-10-31T06:21:38.0335289Z CC [M] drivers/leds/leds-lm3530.o
2025-10-31T06:21:38.0499666Z CC [M] drivers/firmware/google/vpd.o
2025-10-31T06:21:38.2112829Z CC [M] drivers/mmc/host/toshsd.o
2025-10-31T06:21:38.5882513Z CC [M] drivers/crypto/ccp/ccp-ops.o
2025-10-31T06:21:38.6240604Z CC [M] drivers/net/net_failover.o
2025-10-31T06:21:38.7076707Z CC [M] drivers/firmware/google/vpd_decode.o
2025-10-31T06:21:38.9460090Z LD [M] drivers/firmware/google/vpd-sysfs.o
2025-10-31T06:21:39.0456448Z CC [M] drivers/leds/leds-lm3532.o
2025-10-31T06:21:39.1241396Z CC [M] drivers/mmc/host/rtsx_pci_sdmmc.o
2025-10-31T06:21:39.1842523Z CC drivers/firmware/efi/libstub/efi-stub-helper.o
2025-10-31T06:21:39.8948877Z LD [M] drivers/net/thunderbolt-net.o
2025-10-31T06:21:39.9247491Z AR drivers/net/built-in.a
2025-10-31T06:21:39.9928012Z CC [M] drivers/leds/leds-lm3533.o
2025-10-31T06:21:40.0985203Z CC drivers/firmware/efi/libstub/gop.o
2025-10-31T06:21:40.2049999Z CC [M] drivers/leds/leds-lm355x.o
2025-10-31T06:21:40.3464046Z CC [M] drivers/crypto/ccp/ccp-dev-v3.o
2025-10-31T06:21:40.4974143Z CC [M] drivers/mmc/host/rtsx_usb_sdmmc.o
2025-10-31T06:21:40.6188993Z AR drivers/firmware/imx/built-in.a
2025-10-31T06:21:40.6535437Z AR drivers/crypto/hisilicon/built-in.a
2025-10-31T06:21:40.6748675Z CC drivers/firmware/efi/libstub/secureboot.o
2025-10-31T06:21:41.0677803Z CC [M] drivers/leds/leds-lm3601x.o
2025-10-31T06:21:41.0760371Z CC drivers/firmware/efi/efi-bgrt.o
2025-10-31T06:21:41.2022659Z CC [M] drivers/crypto/ccp/ccp-dev-v5.o
2025-10-31T06:21:41.2399190Z CC drivers/firmware/efi/libstub/tpm.o
2025-10-31T06:21:41.6810783Z CC [M] drivers/leds/leds-lm36274.o
2025-10-31T06:21:41.7682637Z CC drivers/clocksource/acpi_pm.o
2025-10-31T06:21:42.1093867Z CC [M] drivers/mmc/host/sdhci-pltfm.o
2025-10-31T06:21:42.1096803Z CC drivers/firmware/efi/libstub/file.o
2025-10-31T06:21:42.2552271Z CC [M] drivers/crypto/ccp/ccp-dmaengine.o
2025-10-31T06:21:42.3489774Z CC [M] drivers/leds/leds-lm3642.o
2025-10-31T06:21:42.4856358Z CC drivers/clocksource/i8253.o
2025-10-31T06:21:42.6971599Z CC [M] drivers/mmc/host/cqhci.o
2025-10-31T06:21:42.9684852Z CC drivers/clocksource/hyperv_timer.o
2025-10-31T06:21:43.0099362Z CC drivers/firmware/efi/libstub/mem.o
2025-10-31T06:21:43.1640434Z CC [M] drivers/crypto/ccp/ccp-debugfs.o
2025-10-31T06:21:43.1707471Z CC [M] drivers/leds/leds-lp3944.o
2025-10-31T06:21:43.6150221Z AR drivers/clocksource/built-in.a
2025-10-31T06:21:43.6265881Z CC [M] drivers/mmc/host/mmc_hsq.o
2025-10-31T06:21:43.6456776Z CC drivers/firmware/efi/libstub/random.o
2025-10-31T06:21:43.9586080Z CC [M] drivers/leds/leds-lp3952.o
2025-10-31T06:21:44.1293012Z CC drivers/firmware/efi/libstub/randomalloc.o
2025-10-31T06:21:44.1550650Z CC [M] drivers/mmc/host/sdhci-xenon.o
2025-10-31T06:21:44.2593708Z CC drivers/firmware/efi/efi.o
2025-10-31T06:21:44.2932672Z CC [M] drivers/crypto/ccp/sp-pci.o
2025-10-31T06:21:44.4536043Z CC [M] drivers/leds/leds-lp50xx.o
2025-10-31T06:21:44.9840354Z CC drivers/firmware/efi/libstub/pci.o
2025-10-31T06:21:45.1516097Z CC [M] drivers/mmc/host/sdhci-xenon-phy.o
2025-10-31T06:21:45.2412996Z CC [M] drivers/crypto/ccp/psp-dev.o
2025-10-31T06:21:45.4415116Z CC [M] drivers/leds/leds-lp8788.o
2025-10-31T06:21:45.5674264Z CC [M] drivers/hid/usbhid/hid-core.o
2025-10-31T06:21:45.6671004Z CC drivers/firmware/efi/libstub/skip_spaces.o
2025-10-31T06:21:45.7389482Z CC drivers/firmware/efi/libstub/lib-cmdline.o
2025-10-31T06:21:45.8828954Z CC drivers/firmware/efi/libstub/lib-ctype.o
2025-10-31T06:21:45.9353922Z CC drivers/firmware/efi/libstub/alignedmem.o
2025-10-31T06:21:45.9978881Z CC [M] drivers/leds/leds-max8997.o
2025-10-31T06:21:46.0375679Z CC [M] drivers/crypto/ccp/sev-dev.o
2025-10-31T06:21:46.1202470Z LD [M] drivers/mmc/host/sdhci-pci.o
2025-10-31T06:21:46.1651431Z LD [M] drivers/mmc/host/sdhci-xenon-driver.o
2025-10-31T06:21:46.1959115Z AR drivers/mmc/host/built-in.a
2025-10-31T06:21:46.4532375Z AR drivers/mmc/built-in.a
2025-10-31T06:21:46.4925670Z CC [M] drivers/crypto/ccp/tee-dev.o
2025-10-31T06:21:46.5240570Z CC drivers/firmware/efi/libstub/relocate.o
2025-10-31T06:21:47.0686338Z CC [M] drivers/leds/leds-mc13783.o
2025-10-31T06:21:47.1716309Z CC [M] drivers/hid/i2c-hid/i2c-hid-core.o
2025-10-31T06:21:47.2057004Z CC [M] drivers/hid/usbhid/hiddev.o
2025-10-31T06:21:47.2624811Z CC [M] drivers/crypto/ccp/ccp-crypto-main.o
2025-10-31T06:21:47.3016791Z CC drivers/firmware/efi/libstub/vsprintf.o
2025-10-31T06:21:47.6105727Z CC [M] drivers/leds/leds-menf21bmc.o
2025-10-31T06:21:47.8288939Z CC drivers/firmware/efi/libstub/x86-stub.o
2025-10-31T06:21:47.9518237Z CC [M] drivers/crypto/ccp/ccp-crypto-aes.o
2025-10-31T06:21:48.0518278Z CC [M] drivers/leds/leds-mlxcpld.o
2025-10-31T06:21:48.4855370Z CC [M] drivers/hid/usbhid/hid-pidff.o
2025-10-31T06:21:48.5894637Z CC [M] drivers/crypto/ccp/ccp-crypto-aes-cmac.o
2025-10-31T06:21:48.6118712Z CC [M] drivers/leds/leds-mlxreg.o
2025-10-31T06:21:48.7784603Z CC [M] drivers/hid/i2c-hid/i2c-hid-dmi-quirks.o
2025-10-31T06:21:49.0541651Z STUBCPY drivers/firmware/efi/libstub/alignedmem.stub.o
2025-10-31T06:21:49.0860590Z STUBCPY drivers/firmware/efi/libstub/efi-stub-helper.stub.o
2025-10-31T06:21:49.1135634Z STUBCPY drivers/firmware/efi/libstub/file.stub.o
2025-10-31T06:21:49.1461681Z STUBCPY drivers/firmware/efi/libstub/gop.stub.o
2025-10-31T06:21:49.1519424Z CC [M] drivers/leds/leds-mt6323.o
2025-10-31T06:21:49.1866363Z STUBCPY drivers/firmware/efi/libstub/lib-cmdline.stub.o
2025-10-31T06:21:49.2186228Z STUBCPY drivers/firmware/efi/libstub/lib-ctype.stub.o
2025-10-31T06:21:49.2589248Z STUBCPY drivers/firmware/efi/libstub/mem.stub.o
2025-10-31T06:21:49.2713434Z LD [M] drivers/hid/i2c-hid/i2c-hid.o
2025-10-31T06:21:49.3055292Z STUBCPY drivers/firmware/efi/libstub/pci.stub.o
2025-10-31T06:21:49.3335709Z STUBCPY drivers/firmware/efi/libstub/random.stub.o
2025-10-31T06:21:49.3406051Z CC [M] drivers/hid/intel-ish-hid/ishtp/init.o
2025-10-31T06:21:49.3588108Z CC [M] drivers/crypto/ccp/ccp-crypto-aes-xts.o
2025-10-31T06:21:49.3632183Z STUBCPY drivers/firmware/efi/libstub/randomalloc.stub.o
2025-10-31T06:21:49.4139037Z STUBCPY drivers/firmware/efi/libstub/relocate.stub.o
2025-10-31T06:21:49.4683238Z STUBCPY drivers/firmware/efi/libstub/secureboot.stub.o
2025-10-31T06:21:49.5180765Z STUBCPY drivers/firmware/efi/libstub/skip_spaces.stub.o
2025-10-31T06:21:49.5740871Z STUBCPY drivers/firmware/efi/libstub/tpm.stub.o
2025-10-31T06:21:49.6209839Z STUBCPY drivers/firmware/efi/libstub/vsprintf.stub.o
2025-10-31T06:21:49.6309189Z CC [M] drivers/leds/leds-nic78bx.o
2025-10-31T06:21:49.6564716Z STUBCPY drivers/firmware/efi/libstub/x86-stub.stub.o
2025-10-31T06:21:49.6905565Z LD [M] drivers/hid/usbhid/usbhid.o
2025-10-31T06:21:49.6971380Z AR drivers/firmware/efi/libstub/lib.a
2025-10-31T06:21:49.7229795Z CC [M] drivers/hid/intel-ish-hid/ishtp/hbm.o
2025-10-31T06:21:49.7265569Z CC drivers/firmware/efi/vars.o
2025-10-31T06:21:49.7343478Z CC drivers/firmware/efi/reboot.o
2025-10-31T06:21:50.0917509Z CC [M] drivers/crypto/ccp/ccp-crypto-aes-galois.o
2025-10-31T06:21:50.1800113Z CC [M] drivers/leds/leds-pca9532.o
2025-10-31T06:21:50.4215107Z CC drivers/firmware/efi/memattr.o
2025-10-31T06:21:50.5166521Z CC [M] drivers/hid/intel-ish-hid/ishtp/client.o
2025-10-31T06:21:50.7957593Z CC [M] drivers/crypto/ccp/ccp-crypto-des3.o
2025-10-31T06:21:50.9750699Z CC [M] drivers/staging/media/atomisp/i2c/ov5693/atomisp-ov5693.o
2025-10-31T06:21:51.0707632Z CC [M] drivers/leds/leds-pca955x.o
2025-10-31T06:21:51.0888794Z CC drivers/firmware/efi/tpm.o
2025-10-31T06:21:51.4906826Z CC [M] drivers/crypto/ccp/ccp-crypto-rsa.o
2025-10-31T06:21:51.6982976Z CC [M] drivers/hid/intel-ish-hid/ishtp/bus.o
2025-10-31T06:21:51.8519823Z CC drivers/firmware/efi/capsule.o
2025-10-31T06:21:51.9680996Z CC [M] drivers/leds/leds-pca963x.o
2025-10-31T06:21:52.2446445Z CC [M] drivers/crypto/ccp/ccp-crypto-sha.o
2025-10-31T06:21:52.3550350Z AR drivers/staging/media/atomisp/i2c/built-in.a
2025-10-31T06:21:52.3764021Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-mt9m114.o
2025-10-31T06:21:52.4599822Z CC [M] drivers/hid/intel-ish-hid/ishtp/dma-if.o
2025-10-31T06:21:52.5999353Z CC drivers/firmware/efi/memmap.o
2025-10-31T06:21:52.6597597Z CC [M] drivers/leds/leds-pwm.o
2025-10-31T06:21:53.1231593Z LD [M] drivers/crypto/ccp/ccp.o
2025-10-31T06:21:53.1604959Z LD [M] drivers/crypto/ccp/ccp-crypto.o
2025-10-31T06:21:53.2279256Z CC [M] drivers/crypto/chelsio/chcr_core.o
2025-10-31T06:21:53.2904205Z CC [M] drivers/leds/leds-regulator.o
2025-10-31T06:21:53.3169252Z CC [M] drivers/hid/intel-ish-hid/ishtp/client-buffers.o
2025-10-31T06:21:53.4479708Z CC drivers/firmware/efi/esrt.o
2025-10-31T06:21:53.5771538Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-gc2235.o
2025-10-31T06:21:54.0647368Z CC [M] drivers/hid/intel-ish-hid/ipc/ipc.o
2025-10-31T06:21:54.0920883Z CC [M] drivers/leds/leds-sgm3140.o
2025-10-31T06:21:54.3831382Z CC drivers/firmware/efi/efi-pstore.o
2025-10-31T06:21:54.6492191Z CC [M] drivers/crypto/chelsio/chcr_algo.o
2025-10-31T06:21:54.7132391Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-ov2722.o
2025-10-31T06:21:54.9965927Z CC [M] drivers/hid/intel-ish-hid/ipc/pci-ish.o
2025-10-31T06:21:55.0924332Z CC [M] drivers/leds/leds-tca6507.o
2025-10-31T06:21:55.2425743Z CC drivers/firmware/efi/cper.o
2025-10-31T06:21:55.9898526Z CC [M] drivers/hid/intel-ish-hid/ishtp-hid.o
2025-10-31T06:21:56.0804078Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-ov2680.o
2025-10-31T06:21:56.1922309Z CC [M] drivers/leds/leds-ti-lmu-common.o
2025-10-31T06:21:56.2629436Z CC drivers/firmware/efi/runtime-map.o
2025-10-31T06:21:56.6947338Z CC [M] drivers/leds/leds-tlc591xx.o
2025-10-31T06:21:56.7823968Z CC [M] drivers/hid/intel-ish-hid/ishtp-hid-client.o
2025-10-31T06:21:57.0030212Z CC drivers/firmware/efi/runtime-wrappers.o
2025-10-31T06:21:57.1897372Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-gc0310.o
2025-10-31T06:21:57.2893515Z CC [M] drivers/leds/leds-tps6105x.o
2025-10-31T06:21:57.6485116Z CC [M] drivers/hid/intel-ish-hid/ishtp-fw-loader.o
2025-10-31T06:21:58.2246100Z CC drivers/firmware/efi/dev-path-parser.o
2025-10-31T06:21:58.2540863Z LD [M] drivers/crypto/chelsio/chcr.o
2025-10-31T06:21:58.3123921Z CC [M] drivers/leds/leds-wm831x-status.o
2025-10-31T06:21:58.3135983Z CC [M] drivers/crypto/cavium/nitrox/nitrox_main.o
2025-10-31T06:21:58.4503656Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper.o
2025-10-31T06:21:58.5209794Z LD [M] drivers/hid/intel-ish-hid/intel-ishtp.o
2025-10-31T06:21:58.5422154Z LD [M] drivers/hid/intel-ish-hid/intel-ish-ipc.o
2025-10-31T06:21:58.5579517Z LD [M] drivers/hid/intel-ish-hid/intel-ishtp-hid.o
2025-10-31T06:21:58.5726588Z LD [M] drivers/hid/intel-ish-hid/intel-ishtp-loader.o
2025-10-31T06:21:58.6223060Z CC drivers/hid/hid-core.o
2025-10-31T06:21:58.8824006Z CC [M] drivers/leds/leds-wm8350.o
2025-10-31T06:21:58.9837432Z CC drivers/firmware/efi/apple-properties.o
2025-10-31T06:21:59.0756816Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-lm3554.o
2025-10-31T06:21:59.3689670Z CC [M] drivers/crypto/cavium/nitrox/nitrox_isr.o
2025-10-31T06:21:59.7241327Z CC drivers/firmware/efi/rci2-table.o
2025-10-31T06:21:59.7541488Z CC [M] drivers/leds/leds-dac124s085.o
2025-10-31T06:22:00.2786155Z CC [M] drivers/crypto/cavium/nitrox/nitrox_lib.o
2025-10-31T06:22:00.3173870Z CC [M] drivers/staging/media/atomisp/pci/atomisp_acc.o
2025-10-31T06:22:00.3479475Z CC drivers/firmware/efi/embedded-firmware.o
2025-10-31T06:22:00.4205606Z CC drivers/hid/hid-input.o
2025-10-31T06:22:00.4722862Z CC [M] drivers/leds/uleds.o
2025-10-31T06:22:00.8758234Z CC drivers/firmware/efi/earlycon.o
2025-10-31T06:22:01.1203401Z CC [M] drivers/crypto/cavium/nitrox/nitrox_hal.o
2025-10-31T06:22:01.2271852Z AR drivers/leds/built-in.a
2025-10-31T06:22:01.4874894Z CC [M] drivers/staging/media/atomisp/pci/atomisp_cmd.o
2025-10-31T06:22:01.5331826Z CC drivers/firmware/efi/cper-x86.o
2025-10-31T06:22:01.6023401Z CC [M] drivers/staging/media/ipu3/ipu3-mmu.o
2025-10-31T06:22:01.9656632Z CC [M] drivers/crypto/cavium/nitrox/nitrox_reqmgr.o
2025-10-31T06:22:02.2917635Z CC [M] drivers/firmware/efi/efibc.o
2025-10-31T06:22:02.3965366Z CC [M] drivers/staging/media/ipu3/ipu3-dmamap.o
2025-10-31T06:22:02.8729879Z CC [M] drivers/crypto/cavium/nitrox/nitrox_algs.o
2025-10-31T06:22:02.9164129Z CC [M] drivers/firmware/efi/capsule-loader.o
2025-10-31T06:22:03.0476913Z CC drivers/hid/hid-quirks.o
2025-10-31T06:22:03.3200906Z CC [M] drivers/staging/media/ipu3/ipu3-tables.o
2025-10-31T06:22:03.4599006Z CC [M] drivers/crypto/cavium/nitrox/nitrox_mbx.o
2025-10-31T06:22:03.6732960Z AR drivers/firmware/efi/built-in.a
2025-10-31T06:22:03.7332362Z CC [M] drivers/staging/media/ipu3/ipu3-css-pool.o
2025-10-31T06:22:03.7472608Z AR drivers/firmware/psci/built-in.a
2025-10-31T06:22:03.7829859Z AR drivers/firmware/smccc/built-in.a
2025-10-31T06:22:03.8189607Z AR drivers/firmware/tegra/built-in.a
2025-10-31T06:22:03.8556730Z AR drivers/firmware/xilinx/built-in.a
2025-10-31T06:22:03.8774132Z CC drivers/firmware/dmi_scan.o
2025-10-31T06:22:04.0485512Z CC drivers/hid/hid-debug.o
2025-10-31T06:22:04.2365578Z CC [M] drivers/crypto/cavium/nitrox/nitrox_skcipher.o
2025-10-31T06:22:04.4975497Z CC [M] drivers/staging/media/ipu3/ipu3-css-fw.o
2025-10-31T06:22:04.8727899Z CC drivers/firmware/dmi-sysfs.o
2025-10-31T06:22:05.1880072Z CC drivers/hid/hidraw.o
2025-10-31T06:22:05.2685465Z CC [M] drivers/crypto/cavium/nitrox/nitrox_aead.o
2025-10-31T06:22:05.5158508Z CC [M] drivers/staging/media/ipu3/ipu3-css-params.o
2025-10-31T06:22:05.6153974Z CC drivers/firmware/dmi-id.o
2025-10-31T06:22:05.9412898Z CC drivers/hid/hid-generic.o
2025-10-31T06:22:06.1555634Z CC [M] drivers/staging/media/atomisp/pci/atomisp_compat_css20.o
2025-10-31T06:22:06.3272180Z CC drivers/firmware/iscsi_ibft_find.o
2025-10-31T06:22:06.4449679Z CC [M] drivers/hid/uhid.o
2025-10-31T06:22:06.4503667Z CC [M] drivers/crypto/cavium/nitrox/nitrox_sriov.o
2025-10-31T06:22:07.1745452Z CC drivers/firmware/memmap.o
2025-10-31T06:22:07.2264281Z CC [M] drivers/crypto/cavium/nitrox/nitrox_debugfs.o
2025-10-31T06:22:07.3037230Z CC [M] drivers/hid/hid-a4tech.o
2025-10-31T06:22:07.5934754Z CC [M] drivers/staging/media/ipu3/ipu3-css.o
2025-10-31T06:22:07.8759099Z LD [M] drivers/crypto/cavium/nitrox/n5pf.o
2025-10-31T06:22:07.9042399Z CC [M] drivers/firmware/edd.o
2025-10-31T06:22:07.9783810Z CC [M] drivers/crypto/qat/qat_common/adf_cfg.o
2025-10-31T06:22:07.9954237Z CC [M] drivers/hid/hid-accutouch.o
2025-10-31T06:22:08.5639579Z CC [M] drivers/hid/hid-alps.o
2025-10-31T06:22:08.8576529Z CC [M] drivers/crypto/qat/qat_common/adf_isr.o
2025-10-31T06:22:08.8831861Z CC [M] drivers/firmware/iscsi_ibft.o
2025-10-31T06:22:09.2367650Z CC [M] drivers/staging/media/atomisp/pci/atomisp_compat_ioctl32.o
2025-10-31T06:22:09.4396048Z CC [M] drivers/hid/hid-axff.o
2025-10-31T06:22:09.7802653Z CC [M] drivers/staging/media/ipu3/ipu3-v4l2.o
2025-10-31T06:22:09.9152743Z CC [M] drivers/crypto/qat/qat_common/adf_ctl_drv.o
2025-10-31T06:22:09.9286101Z CC [M] drivers/firmware/qemu_fw_cfg.o
2025-10-31T06:22:10.0487736Z CC [M] drivers/hid/hid-apple.o
2025-10-31T06:22:10.7667369Z CC [M] drivers/crypto/qat/qat_common/adf_dev_mgr.o
2025-10-31T06:22:10.8856478Z CC [M] drivers/hid/hid-appleir.o
2025-10-31T06:22:10.8956909Z CC [M] drivers/staging/media/atomisp/pci/atomisp_csi2.o
2025-10-31T06:22:10.9297907Z AR drivers/firmware/built-in.a
2025-10-31T06:22:11.0313851Z CC [M] drivers/crypto/qat/qat_common/adf_init.o
2025-10-31T06:22:11.1608311Z CC [M] drivers/staging/media/ipu3/ipu3.o
2025-10-31T06:22:11.4088261Z CC [M] drivers/hid/hid-creative-sb0540.o
2025-10-31T06:22:11.7119403Z CC [M] drivers/crypto/qat/qat_dh895xcc/adf_drv.o
2025-10-31T06:22:11.8506246Z CC [M] drivers/staging/media/atomisp/pci/atomisp_drvfs.o
2025-10-31T06:22:11.9405005Z CC [M] drivers/crypto/qat/qat_common/adf_accel_engine.o
2025-10-31T06:22:12.0313388Z CC [M] drivers/hid/hid-asus.o
2025-10-31T06:22:12.3842227Z LD [M] drivers/staging/media/ipu3/ipu3-imgu.o
2025-10-31T06:22:12.4740781Z CC [M] drivers/hid/hid-aureal.o
2025-10-31T06:22:12.5343505Z CC [M] drivers/crypto/qat/qat_dh895xcc/adf_dh895xcc_hw_data.o
2025-10-31T06:22:12.7674117Z CC [M] drivers/crypto/qat/qat_common/adf_aer.o
2025-10-31T06:22:12.7875470Z CC [M] drivers/staging/media/atomisp/pci/atomisp_file.o
2025-10-31T06:22:12.9580705Z AR drivers/staging/android/ion/built-in.a
2025-10-31T06:22:12.9787934Z CC drivers/staging/android/ashmem.o
2025-10-31T06:22:13.3079734Z CC [M] drivers/hid/hid-belkin.o
2025-10-31T06:22:13.4080238Z LD [M] drivers/crypto/qat/qat_dh895xcc/qat_dh895xcc.o
2025-10-31T06:22:13.4379462Z CC [M] drivers/crypto/qat/qat_common/adf_transport.o
2025-10-31T06:22:13.4973955Z CC [M] drivers/crypto/virtio/virtio_crypto_algs.o
2025-10-31T06:22:13.7570980Z CC [M] drivers/staging/media/atomisp/pci/atomisp_fops.o
2025-10-31T06:22:13.9363755Z AR drivers/staging/android/built-in.a
2025-10-31T06:22:13.9365058Z CC [M] drivers/hid/hid-betopff.o
2025-10-31T06:22:13.9485629Z CC [M] drivers/crypto/virtio/virtio_crypto_akcipher_algs.o
2025-10-31T06:22:14.3023489Z CC [M] drivers/crypto/qat/qat_common/adf_admin.o
2025-10-31T06:22:14.5069337Z CC [M] drivers/crypto/qat/qat_c3xxx/adf_drv.o
2025-10-31T06:22:14.5851351Z CC [M] drivers/hid/hid-bigbenff.o
2025-10-31T06:22:14.8145930Z CC [M] drivers/crypto/virtio/virtio_crypto_mgr.o
2025-10-31T06:22:15.1403666Z CC [M] drivers/hid/hid-cherry.o
2025-10-31T06:22:15.1687582Z CC [M] drivers/crypto/qat/qat_common/adf_hw_arbiter.o
2025-10-31T06:22:15.1823734Z CC [M] drivers/crypto/qat/qat_c3xxx/adf_c3xxx_hw_data.o
2025-10-31T06:22:15.3280315Z CC [M] drivers/staging/media/atomisp/pci/atomisp_ioctl.o
2025-10-31T06:22:15.6342525Z CC [M] drivers/crypto/virtio/virtio_crypto_core.o
2025-10-31T06:22:15.7936279Z CC [M] drivers/hid/hid-chicony.o
2025-10-31T06:22:15.8727170Z CC [M] drivers/crypto/qat/qat_common/qat_crypto.o
2025-10-31T06:22:16.0131143Z LD [M] drivers/crypto/qat/qat_c3xxx/qat_c3xxx.o
2025-10-31T06:22:16.0728800Z CC [M] drivers/staging/media/atomisp/pci/atomisp_subdev.o
2025-10-31T06:22:16.6137610Z CC [M] drivers/hid/hid-cmedia.o
2025-10-31T06:22:16.6646550Z LD [M] drivers/crypto/virtio/virtio_crypto.o
2025-10-31T06:22:16.7033684Z CC [M] drivers/crypto/qat/qat_common/qat_algs.o
2025-10-31T06:22:16.7456709Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_common.o
2025-10-31T06:22:17.3116113Z CC [M] drivers/hid/hid-corsair.o
2025-10-31T06:22:17.3935646Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_mmio.o
2025-10-31T06:22:17.5186573Z CC [M] drivers/staging/media/atomisp/pci/atomisp_tpg.o
2025-10-31T06:22:17.8055547Z CC [M] drivers/staging/media/atomisp/pci/atomisp_v4l2.o
2025-10-31T06:22:18.1074766Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_mbox_pci.o
2025-10-31T06:22:18.1881932Z CC [M] drivers/hid/hid-cougar.o
2025-10-31T06:22:18.1962755Z CC [M] drivers/crypto/qat/qat_common/qat_asym_algs.o
2025-10-31T06:22:18.3887380Z CC [M] drivers/hid/hid-cp2112.o
2025-10-31T06:22:18.8153762Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_mbox_msr.o
2025-10-31T06:22:18.9013850Z CC [M] drivers/crypto/inside-secure/safexcel.o
2025-10-31T06:22:19.4125988Z CC [M] drivers/staging/media/atomisp/pci/sh_css_firmware.o
2025-10-31T06:22:19.4747896Z CC [M] drivers/crypto/qat/qat_common/qat_uclo.o
2025-10-31T06:22:19.6768682Z CC [M] drivers/hid/hid-cypress.o
2025-10-31T06:22:19.7656447Z CC drivers/platform/x86/touchscreen_dmi.o
2025-10-31T06:22:20.3402522Z CC drivers/platform/x86/intel_turbo_max_3.o
2025-10-31T06:22:20.3705664Z CC [M] drivers/hid/hid-dr.o
2025-10-31T06:22:20.4026198Z CC [M] drivers/staging/media/atomisp/pci/sh_css_host_data.o
2025-10-31T06:22:20.6455074Z CC [M] drivers/crypto/inside-secure/safexcel_ring.o
2025-10-31T06:22:20.7739732Z CC drivers/platform/x86/intel_pmc_core.o
2025-10-31T06:22:20.9500513Z CC [M] drivers/crypto/qat/qat_common/qat_hal.o
2025-10-31T06:22:21.0482306Z CC [M] drivers/hid/hid-emsff.o
2025-10-31T06:22:21.0708943Z CC [M] drivers/staging/media/atomisp/pci/sh_css_hrt.o
2025-10-31T06:22:21.4155037Z CC [M] drivers/crypto/inside-secure/safexcel_cipher.o
2025-10-31T06:22:21.6649375Z CC [M] drivers/hid/hid-elan.o
2025-10-31T06:22:21.8965351Z CC [M] drivers/staging/media/atomisp/pci/sh_css_metadata.o
2025-10-31T06:22:22.0044044Z CC [M] drivers/staging/media/atomisp/pci/sh_css_metrics.o
2025-10-31T06:22:22.0486753Z CC drivers/platform/x86/intel_pmc_core_pltdrv.o
2025-10-31T06:22:22.5015999Z CC [M] drivers/hid/hid-elecom.o
2025-10-31T06:22:22.5639666Z CC drivers/platform/x86/intel_scu_ipc.o
2025-10-31T06:22:22.7515392Z CC [M] drivers/staging/media/atomisp/pci/sh_css_mipi.o
2025-10-31T06:22:23.1957596Z CC [M] drivers/crypto/inside-secure/safexcel_hash.o
2025-10-31T06:22:23.2204156Z CC [M] drivers/hid/hid-elo.o
2025-10-31T06:22:23.2438139Z CC drivers/platform/x86/intel_scu_pcidrv.o
2025-10-31T06:22:23.3780581Z CC [M] drivers/crypto/qat/qat_common/adf_transport_debug.o
2025-10-31T06:22:23.6677401Z CC [M] drivers/staging/media/atomisp/pci/sh_css_mmu.o
2025-10-31T06:22:23.8197458Z CC [M] drivers/hid/hid-ezkey.o
2025-10-31T06:22:24.0588551Z CC drivers/platform/x86/pmc_atom.o
2025-10-31T06:22:24.1029901Z CC [M] drivers/crypto/qat/qat_common/adf_sriov.o
2025-10-31T06:22:24.3908020Z CC [M] drivers/hid/hid-gembird.o
2025-10-31T06:22:24.5515587Z CC [M] drivers/staging/media/atomisp/pci/sh_css_morph.o
2025-10-31T06:22:24.6948960Z CC [M] drivers/staging/media/atomisp/pci/sh_css.o
2025-10-31T06:22:24.8622649Z CC [M] drivers/crypto/qat/qat_common/adf_pf2vf_msg.o
2025-10-31T06:22:24.8823865Z CC [M] drivers/hid/hid-gfrm.o
2025-10-31T06:22:24.9446800Z CC [M] drivers/platform/x86/wmi.o
2025-10-31T06:22:25.0243095Z LD [M] drivers/crypto/inside-secure/crypto_safexcel.o
2025-10-31T06:22:25.0805522Z CC [M] drivers/crypto/qat/qat_c62x/adf_drv.o
2025-10-31T06:22:25.4742818Z CC [M] drivers/hid/hid-glorious.o
2025-10-31T06:22:25.6409311Z CC [M] drivers/crypto/qat/qat_common/adf_vf2pf_msg.o
2025-10-31T06:22:25.9905377Z CC [M] drivers/hid/hid-google-hammer.o
2025-10-31T06:22:26.0171340Z CC [M] drivers/crypto/qat/qat_c62x/adf_c62x_hw_data.o
2025-10-31T06:22:26.1731182Z CC [M] drivers/crypto/qat/qat_common/adf_vf_isr.o
2025-10-31T06:22:26.2800837Z CC [M] drivers/platform/x86/wmi-bmof.o
2025-10-31T06:22:26.7068841Z CC [M] drivers/hid/hid-vivaldi.o
2025-10-31T06:22:26.8766669Z LD [M] drivers/crypto/qat/qat_c62x/qat_c62x.o
2025-10-31T06:22:26.8952682Z CC [M] drivers/platform/x86/alienware-wmi.o
2025-10-31T06:22:26.9255461Z CC [M] drivers/hid/hid-gt683r.o
2025-10-31T06:22:27.0377195Z LD [M] drivers/crypto/qat/qat_common/intel_qat.o
2025-10-31T06:22:27.1711657Z CC [M] drivers/crypto/qat/qat_dh895xccvf/adf_drv.o
2025-10-31T06:22:27.2714383Z CC drivers/mailbox/mailbox.o
2025-10-31T06:22:27.7468166Z CC [M] drivers/platform/x86/huawei-wmi.o
2025-10-31T06:22:27.7528088Z CC [M] drivers/hid/hid-gyration.o
2025-10-31T06:22:27.8682457Z CC [M] drivers/crypto/qat/qat_dh895xccvf/adf_dh895xccvf_hw_data.o
2025-10-31T06:22:27.9284988Z CC drivers/mailbox/pcc.o
2025-10-31T06:22:28.3787080Z CC [M] drivers/hid/hid-holtek-kbd.o
2025-10-31T06:22:28.7169141Z CC [M] drivers/mailbox/mailbox-altera.o
2025-10-31T06:22:28.7515263Z CC [M] drivers/platform/x86/intel-wmi-sbl-fw-update.o
2025-10-31T06:22:28.7677672Z LD [M] drivers/crypto/qat/qat_dh895xccvf/qat_dh895xccvf.o
2025-10-31T06:22:28.8334955Z CC [M] drivers/crypto/qat/qat_c3xxxvf/adf_drv.o
2025-10-31T06:22:28.8960661Z CC [M] drivers/hid/hid-holtek-mouse.o
2025-10-31T06:22:29.2783655Z CC [M] drivers/staging/media/atomisp/pci/sh_css_param_dvs.o
2025-10-31T06:22:29.2870648Z AR drivers/mailbox/built-in.a
2025-10-31T06:22:29.3309874Z CC [M] drivers/crypto/qat/qat_c3xxxvf/adf_c3xxxvf_hw_data.o
2025-10-31T06:22:29.3472766Z CC [M] drivers/platform/x86/intel-wmi-thunderbolt.o
2025-10-31T06:22:29.4028577Z CC [M] drivers/hid/hid-holtekff.o
2025-10-31T06:22:29.6783671Z CC [M] drivers/platform/x86/mxm-wmi.o
2025-10-31T06:22:29.8705163Z CC [M] drivers/staging/unisys/visornic/visornic_main.o
2025-10-31T06:22:30.0760459Z LD [M] drivers/crypto/qat/qat_c3xxxvf/qat_c3xxxvf.o
2025-10-31T06:22:30.0893502Z CC [M] drivers/staging/media/atomisp/pci/sh_css_param_shading.o
2025-10-31T06:22:30.1348986Z CC [M] drivers/hid/hid-hyperv.o
2025-10-31T06:22:30.1461224Z CC [M] drivers/crypto/qat/qat_c62xvf/adf_drv.o
2025-10-31T06:22:30.2350057Z CC [M] drivers/platform/x86/peaq-wmi.o
2025-10-31T06:22:30.8502952Z CC [M] drivers/platform/x86/xiaomi-wmi.o
2025-10-31T06:22:30.9089360Z CC [M] drivers/hid/hid-icade.o
2025-10-31T06:22:30.9328381Z CC [M] drivers/crypto/qat/qat_c62xvf/adf_c62xvf_hw_data.o
2025-10-31T06:22:31.1277548Z CC [M] drivers/staging/media/atomisp/pci/sh_css_params.o
2025-10-31T06:22:31.3524814Z LD [M] drivers/staging/unisys/visornic/visornic.o
2025-10-31T06:22:31.4073310Z CC [M] drivers/staging/unisys/visorinput/visorinput.o
2025-10-31T06:22:31.4712629Z CC [M] drivers/platform/x86/acerhdf.o
2025-10-31T06:22:31.5438032Z CC [M] drivers/hid/hid-ite.o
2025-10-31T06:22:31.6195675Z LD [M] drivers/crypto/qat/qat_c62xvf/qat_c62xvf.o
2025-10-31T06:22:31.7500240Z CC [M] drivers/crypto/amlogic/amlogic-gxl-core.o
2025-10-31T06:22:32.0612389Z CC [M] drivers/platform/x86/acer-wireless.o
2025-10-31T06:22:32.2251336Z CC [M] drivers/hid/hid-jabra.o
2025-10-31T06:22:32.3893541Z CC [M] drivers/staging/unisys/visorhba/visorhba_main.o
2025-10-31T06:22:32.5923210Z CC [M] drivers/crypto/amlogic/amlogic-gxl-cipher.o
2025-10-31T06:22:32.7362772Z CC [M] drivers/platform/x86/acer-wmi.o
2025-10-31T06:22:32.7501580Z CC [M] drivers/hid/hid-kensington.o
2025-10-31T06:22:33.3582124Z CC [M] drivers/hid/hid-keytouch.o
2025-10-31T06:22:33.4810870Z CC [M] drivers/staging/media/atomisp/pci/sh_css_properties.o
2025-10-31T06:22:33.5621908Z LD [M] drivers/staging/unisys/visorhba/visorhba.o
2025-10-31T06:22:33.5911541Z AR drivers/staging/unisys/built-in.a
2025-10-31T06:22:33.6033471Z LD [M] drivers/crypto/amlogic/amlogic-gxl-crypto.o
2025-10-31T06:22:33.6241402Z CC [M] drivers/hid/hid-kye.o
2025-10-31T06:22:33.6362132Z CC [M] drivers/staging/media/atomisp/pci/sh_css_shading.o
2025-10-31T06:22:33.6530876Z AR drivers/crypto/built-in.a
2025-10-31T06:22:33.6760642Z CC [M] drivers/crypto/atmel-i2c.o
2025-10-31T06:22:33.7135423Z CC [M] drivers/staging/media/atomisp/pci/sh_css_sp.o
2025-10-31T06:22:33.8874847Z CC [M] drivers/crypto/atmel-ecc.o
2025-10-31T06:22:34.0205413Z CC [M] drivers/platform/x86/apple-gmux.o
2025-10-31T06:22:34.2861137Z CC [M] drivers/hid/hid-lcpower.o
2025-10-31T06:22:34.5414963Z CC drivers/hwspinlock/hwspinlock_core.o
2025-10-31T06:22:34.7987631Z CC [M] drivers/hid/hid-lenovo.o
2025-10-31T06:22:34.9254514Z CC [M] drivers/crypto/atmel-sha204a.o
2025-10-31T06:22:34.9336118Z CC [M] drivers/staging/media/atomisp/pci/sh_css_stream_format.o
2025-10-31T06:22:35.2193447Z CC [M] drivers/platform/x86/asus-laptop.o
2025-10-31T06:22:35.2557809Z AR drivers/hwspinlock/built-in.a
2025-10-31T06:22:35.2863425Z CC [M] drivers/hid/hid-lg.o
2025-10-31T06:22:35.6226039Z CC [M] drivers/staging/media/atomisp/pci/sh_css_stream.o
2025-10-31T06:22:35.7575141Z CC [M] drivers/crypto/padlock-aes.o
2025-10-31T06:22:35.7633145Z CC [M] drivers/staging/media/atomisp/pci/sh_css_version.o
2025-10-31T06:22:35.8843092Z AR drivers/staging/kpc2000/kpc2000/built-in.a
2025-10-31T06:22:35.8949684Z CC [M] drivers/staging/kpc2000/kpc2000/core.o
2025-10-31T06:22:36.5302137Z CC [M] drivers/staging/media/atomisp/pci/base/circbuf/src/circbuf.o
2025-10-31T06:22:36.5505225Z CC [M] drivers/platform/x86/asus-wireless.o
2025-10-31T06:22:36.5764673Z CC [M] drivers/hid/hid-lgff.o
2025-10-31T06:22:36.6109019Z CC [M] drivers/crypto/padlock-sha.o
2025-10-31T06:22:36.8331489Z CC [M] drivers/staging/kpc2000/kpc2000/cell_probe.o
2025-10-31T06:22:36.8346936Z CC [M] drivers/staging/media/atomisp/pci/base/refcount/src/refcount.o
2025-10-31T06:22:37.1457841Z CC [M] drivers/platform/x86/asus-wmi.o
2025-10-31T06:22:37.2103703Z CC [M] drivers/hid/hid-lg2ff.o
2025-10-31T06:22:37.4822792Z AR drivers/platform/mellanox/built-in.a
2025-10-31T06:22:37.4939434Z CC [M] drivers/platform/mellanox/mlxreg-hotplug.o
2025-10-31T06:22:37.5991641Z LD [M] drivers/staging/kpc2000/kpc2000/kpc2000.o
2025-10-31T06:22:37.6468701Z CC [M] drivers/staging/kpc2000/kpc_dma/dma.o
2025-10-31T06:22:37.8648699Z CC [M] drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_binarydesc.o
2025-10-31T06:22:37.9035593Z CC [M] drivers/hid/hid-lg3ff.o
2025-10-31T06:22:38.2064383Z CC [M] drivers/platform/mellanox/mlxreg-io.o
2025-10-31T06:22:38.3336247Z CC [M] drivers/staging/kpc2000/kpc_dma/fileops.o
2025-10-31T06:22:38.6372563Z CC [M] drivers/hid/hid-lg4ff.o
2025-10-31T06:22:38.7728641Z CC [M] drivers/staging/kpc2000/kpc_dma/kpc_dma_driver.o
2025-10-31T06:22:39.0237041Z CC [M] drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.o
2025-10-31T06:22:39.1988342Z AR drivers/staging/kpc2000/built-in.a
2025-10-31T06:22:39.2181928Z CC [M] drivers/platform/x86/asus-nb-wmi.o
2025-10-31T06:22:39.3267053Z CC drivers/remoteproc/remoteproc_core.o
2025-10-31T06:22:39.6903956Z LD [M] drivers/staging/kpc2000/kpc_dma/kpc_dma.o
2025-10-31T06:22:39.7304249Z CC [M] drivers/staging/kpc2000/kpc2000_i2c.o
2025-10-31T06:22:39.7335879Z CC [M] drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_util.o
2025-10-31T06:22:39.7635130Z CC [M] drivers/hid/hid-lg-g15.o
2025-10-31T06:22:40.0032410Z CC [M] drivers/platform/x86/eeepc-laptop.o
2025-10-31T06:22:40.5759858Z CC [M] drivers/staging/media/atomisp/pci/camera/util/src/util.o
2025-10-31T06:22:40.5891296Z CC [M] drivers/staging/kpc2000/kpc2000_spi.o
2025-10-31T06:22:40.6791285Z CC [M] drivers/hid/hid-logitech-dj.o
2025-10-31T06:22:40.9540569Z CC drivers/remoteproc/remoteproc_coredump.o
2025-10-31T06:22:41.2584201Z CC [M] drivers/staging/media/atomisp/pci/hmm/hmm_bo.o
2025-10-31T06:22:41.3730211Z CC [M] drivers/platform/x86/eeepc-wmi.o
2025-10-31T06:22:41.4848387Z CC [M] drivers/platform/x86/dcdbas.o
2025-10-31T06:22:41.7529550Z CC drivers/remoteproc/remoteproc_debugfs.o
2025-10-31T06:22:42.0408221Z CC [M] drivers/hid/hid-logitech-hidpp.o
2025-10-31T06:22:42.2235760Z CC [M] drivers/platform/chrome/wilco_ec/core.o
2025-10-31T06:22:42.3724444Z CC [M] drivers/platform/x86/dell-smbios-base.o
2025-10-31T06:22:42.5155601Z CC drivers/remoteproc/remoteproc_sysfs.o
2025-10-31T06:22:42.8034520Z CC [M] drivers/staging/media/atomisp/pci/hmm/hmm_dynamic_pool.o
2025-10-31T06:22:42.9118366Z CC [M] drivers/platform/chrome/wilco_ec/keyboard_leds.o
2025-10-31T06:22:43.1482931Z CC [M] drivers/platform/x86/dell-smbios-wmi.o
2025-10-31T06:22:43.2278692Z CC drivers/remoteproc/remoteproc_virtio.o
2025-10-31T06:22:43.3976491Z CC [M] drivers/platform/chrome/wilco_ec/mailbox.o
2025-10-31T06:22:43.7406993Z CC [M] drivers/staging/media/atomisp/pci/hmm/hmm.o
2025-10-31T06:22:43.8967024Z CC [M] drivers/platform/chrome/wilco_ec/properties.o
2025-10-31T06:22:43.9286257Z CC [M] drivers/hid/hid-macally.o
2025-10-31T06:22:44.0008247Z CC [M] drivers/platform/x86/dell-smbios-smm.o
2025-10-31T06:22:44.1339459Z CC drivers/remoteproc/remoteproc_elf_loader.o
2025-10-31T06:22:44.2567917Z CC [M] drivers/platform/chrome/wilco_ec/sysfs.o
2025-10-31T06:22:44.4092910Z CC [M] drivers/hid/hid-magicmouse.o
2025-10-31T06:22:44.5831546Z CC [M] drivers/platform/x86/dell-laptop.o
2025-10-31T06:22:44.6545675Z CC [M] drivers/platform/chrome/wilco_ec/debugfs.o
2025-10-31T06:22:45.0063854Z CC [M] drivers/staging/media/atomisp/pci/hmm/hmm_reserved_pool.o
2025-10-31T06:22:45.1089158Z CC [M] drivers/hid/hid-maltron.o
2025-10-31T06:22:45.1714333Z CC drivers/remoteproc/remoteproc_cdev.o
2025-10-31T06:22:45.1975579Z CC [M] drivers/platform/chrome/wilco_ec/event.o
2025-10-31T06:22:45.6492387Z CC [M] drivers/hid/hid-mcp2221.o
2025-10-31T06:22:45.9251831Z CC [M] drivers/staging/media/atomisp/pci/ia_css_device_access.o
2025-10-31T06:22:45.9604896Z CC [M] drivers/platform/chrome/wilco_ec/telemetry.o
2025-10-31T06:22:46.0610275Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/aa/aa_2/ia_css_aa2.host.o
2025-10-31T06:22:46.0947148Z CC [M] drivers/platform/x86/dell-rbtn.o
2025-10-31T06:22:46.1028362Z AR drivers/remoteproc/built-in.a
2025-10-31T06:22:46.1264638Z CC [M] drivers/hid/hid-mf.o
2025-10-31T06:22:46.5648001Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec.o
2025-10-31T06:22:46.5834027Z CC drivers/platform/chrome/cros_ec_proto.o
2025-10-31T06:22:46.6438122Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.o
2025-10-31T06:22:46.6678547Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec_events.o
2025-10-31T06:22:46.6890941Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec_telem.o
2025-10-31T06:22:46.6922541Z CC [M] drivers/hid/hid-microsoft.o
2025-10-31T06:22:46.7531400Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/anr/anr_1.0/ia_css_anr.host.o
2025-10-31T06:22:46.7999530Z AR drivers/staging/hikey9xx/built-in.a
2025-10-31T06:22:46.8410218Z CC [M] drivers/hid/hid-monterey.o
2025-10-31T06:22:46.8788345Z CC [M] drivers/platform/x86/dell-smo8800.o
2025-10-31T06:22:47.3761323Z CC drivers/platform/chrome/cros_ec_trace.o
2025-10-31T06:22:47.4447209Z AR drivers/platform/surface/built-in.a
2025-10-31T06:22:47.4538111Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/anr/anr_2/ia_css_anr2.host.o
2025-10-31T06:22:47.4993675Z AR drivers/virt/vboxguest/built-in.a
2025-10-31T06:22:47.5133839Z CC [M] drivers/platform/x86/dell-wmi.o
2025-10-31T06:22:47.5135365Z CC [M] drivers/virt/vboxguest/vboxguest_linux.o
2025-10-31T06:22:47.6995617Z CC [M] drivers/hid/hid-multitouch.o
2025-10-31T06:22:48.2475108Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/anr/anr_2/ia_css_anr2_table.host.o
2025-10-31T06:22:48.2903191Z CC [M] drivers/virt/vboxguest/vboxguest_core.o
2025-10-31T06:22:48.3193643Z CC [M] drivers/platform/chrome/chromeos_laptop.o
2025-10-31T06:22:48.3480838Z CC [M] drivers/platform/x86/dell-wmi-descriptor.o
2025-10-31T06:22:48.3821823Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/bh/bh_2/ia_css_bh.host.o
2025-10-31T06:22:48.9493107Z CC [M] drivers/platform/x86/dell-wmi-aio.o
2025-10-31T06:22:49.0619632Z CC [M] drivers/hid/hid-nti.o
2025-10-31T06:22:49.1334655Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/bnlm/ia_css_bnlm.host.o
2025-10-31T06:22:49.1945817Z CC [M] drivers/platform/chrome/chromeos_pstore.o
2025-10-31T06:22:49.5735976Z CC [M] drivers/virt/vboxguest/vboxguest_utils.o
2025-10-31T06:22:49.6080806Z CC [M] drivers/platform/x86/dell-wmi-led.o
2025-10-31T06:22:49.7304153Z CC [M] drivers/platform/chrome/chromeos_tbmc.o
2025-10-31T06:22:49.8224209Z CC [M] drivers/hid/hid-ntrig.o
2025-10-31T06:22:50.0875951Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/bnr/bnr_1.0/ia_css_bnr.host.o
2025-10-31T06:22:50.1718465Z CC [M] drivers/platform/x86/amilo-rfkill.o
2025-10-31T06:22:50.4641557Z CC [M] drivers/platform/chrome/cros_ec.o
2025-10-31T06:22:50.6420086Z LD [M] drivers/virt/vboxguest/vboxguest.o
2025-10-31T06:22:50.6640010Z CC [M] drivers/platform/x86/fujitsu-laptop.o
2025-10-31T06:22:50.7021787Z CC [M] drivers/virt/nitro_enclaves/ne_pci_dev.o
2025-10-31T06:22:50.7835625Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/bnr/bnr2_2/ia_css_bnr2_2.host.o
2025-10-31T06:22:50.8883695Z CC [M] drivers/hid/hid-ortek.o
2025-10-31T06:22:51.2885286Z CC [M] drivers/platform/chrome/cros_ec_i2c.o
2025-10-31T06:22:51.4372901Z CC [M] drivers/virt/nitro_enclaves/ne_misc_dev.o
2025-10-31T06:22:51.5046034Z CC [M] drivers/hid/hid-prodikeys.o
2025-10-31T06:22:51.5748316Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/cnr/cnr_1.0/ia_css_cnr.host.o
2025-10-31T06:22:51.6991502Z CC [M] drivers/platform/x86/fujitsu-tablet.o
2025-10-31T06:22:52.0990835Z CC [M] drivers/platform/chrome/cros_ec_ishtp.o
2025-10-31T06:22:52.2625880Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/cnr/cnr_2/ia_css_cnr2.host.o
2025-10-31T06:22:52.4998443Z CC [M] drivers/platform/x86/gpd-pocket-fan.o
2025-10-31T06:22:52.6452564Z CC [M] drivers/hid/hid-pl.o
2025-10-31T06:22:52.7826005Z CC [M] drivers/platform/chrome/cros_ec_spi.o
2025-10-31T06:22:52.8817799Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/conversion/conversion_1.0/ia_css_conversion.host.o
2025-10-31T06:22:53.0101499Z LD [M] drivers/virt/nitro_enclaves/nitro_enclaves.o
2025-10-31T06:22:53.0177995Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/copy_output/copy_output_1.0/ia_css_copy_output.host.o
2025-10-31T06:22:53.0419743Z CC [M] drivers/platform/x86/hp_accel.o
2025-10-31T06:22:53.0754613Z AR drivers/virt/built-in.a
2025-10-31T06:22:53.1245212Z CC [M] drivers/platform/chrome/cros_ec_typec.o
2025-10-31T06:22:53.4645626Z CC [M] drivers/hid/hid-penmount.o
2025-10-31T06:22:53.6273095Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/crop/crop_1.0/ia_css_crop.host.o
2025-10-31T06:22:53.7095480Z CC [M] drivers/platform/x86/hp-wireless.o
2025-10-31T06:22:54.0658735Z CC [M] drivers/platform/chrome/cros_ec_lpc.o
2025-10-31T06:22:54.0695980Z CC [M] drivers/staging/wlan-ng/prism2usb.o
2025-10-31T06:22:54.0793017Z CC [M] drivers/hid/hid-petalynx.o
2025-10-31T06:22:54.2716565Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/csc/csc_1.0/ia_css_csc.host.o
2025-10-31T06:22:54.2852678Z CC [M] drivers/platform/x86/hp-wmi.o
2025-10-31T06:22:54.7158338Z CC [M] drivers/hid/hid-picolcd_core.o
2025-10-31T06:22:55.0135043Z CC [M] drivers/platform/chrome/cros_ec_lpc_mec.o
2025-10-31T06:22:55.1005693Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ctc/ctc_1.0/ia_css_ctc.host.o
2025-10-31T06:22:55.2993766Z CC [M] drivers/platform/chrome/cros_kbd_led_backlight.o
2025-10-31T06:22:55.4133593Z CC [M] drivers/platform/x86/ibm_rtl.o
2025-10-31T06:22:55.7594814Z CC [M] drivers/platform/chrome/cros_ec_chardev.o
2025-10-31T06:22:55.9241432Z CC [M] drivers/hid/hid-picolcd_fb.o
2025-10-31T06:22:56.0380365Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ctc/ctc_1.0/ia_css_ctc_table.host.o
2025-10-31T06:22:56.0937174Z CC [M] drivers/platform/x86/ideapad-laptop.o
2025-10-31T06:22:56.1518072Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ctc/ctc1_5/ia_css_ctc1_5.host.o
2025-10-31T06:22:56.4963997Z CC [M] drivers/platform/chrome/cros_ec_lightbar.o
2025-10-31T06:22:56.9540342Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ctc/ctc2/ia_css_ctc2.host.o
2025-10-31T06:22:57.0812770Z CC [M] drivers/hid/hid-picolcd_backlight.o
2025-10-31T06:22:57.1896884Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/de/de_1.0/ia_css_de.host.o
2025-10-31T06:22:57.3144138Z CC [M] drivers/platform/chrome/cros_ec_debugfs.o
2025-10-31T06:22:57.3785695Z CC [M] drivers/platform/x86/hdaps.o
2025-10-31T06:22:57.5267025Z CC [M] drivers/staging/wlan-ng/p80211conv.o
2025-10-31T06:22:57.8458065Z CC [M] drivers/hid/hid-picolcd_lcd.o
2025-10-31T06:22:57.9736822Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/de/de_2/ia_css_de2.host.o
2025-10-31T06:22:58.0733860Z CC [M] drivers/platform/chrome/cros_ec_sensorhub.o
2025-10-31T06:22:58.1011136Z CC [M] drivers/platform/x86/thinkpad_acpi.o
2025-10-31T06:22:58.5888291Z CC [M] drivers/platform/chrome/cros_ec_sensorhub_ring.o
2025-10-31T06:22:58.6538662Z CC [M] drivers/staging/wlan-ng/p80211req.o
2025-10-31T06:22:58.7053403Z CC [M] drivers/hid/hid-picolcd_leds.o
2025-10-31T06:22:58.7444864Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/dpc2/ia_css_dpc2.host.o
2025-10-31T06:22:58.9727799Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/dp/dp_1.0/ia_css_dp.host.o
2025-10-31T06:22:59.6289176Z CC [M] drivers/hid/hid-picolcd_cir.o
2025-10-31T06:22:59.7043026Z CC [M] drivers/staging/wlan-ng/p80211wep.o
2025-10-31T06:22:59.7600162Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/dvs/dvs_1.0/ia_css_dvs.host.o
2025-10-31T06:23:00.0236290Z CC [M] drivers/platform/chrome/cros_ec_sysfs.o
2025-10-31T06:23:00.5058018Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/eed1_8/ia_css_eed1_8.host.o
2025-10-31T06:23:00.5464285Z CC [M] drivers/staging/wlan-ng/p80211netdev.o
2025-10-31T06:23:00.6730049Z CC [M] drivers/hid/hid-picolcd_debugfs.o
2025-10-31T06:23:00.8323700Z CC [M] drivers/platform/chrome/cros_usbpd_logger.o
2025-10-31T06:23:01.3468926Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/fc/fc_1.0/ia_css_formats.host.o
2025-10-31T06:23:01.6852599Z CC [M] drivers/platform/chrome/cros_usbpd_notify.o
2025-10-31T06:23:01.7675801Z CC [M] drivers/hid/hid-plantronics.o
2025-10-31T06:23:02.1038338Z LD [M] drivers/staging/wlan-ng/prism2_usb.o
2025-10-31T06:23:02.1436682Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/fpn/fpn_1.0/ia_css_fpn.host.o
2025-10-31T06:23:02.1712675Z CC [M] drivers/hid/hid-primax.o
2025-10-31T06:23:02.2334107Z CC [M] drivers/platform/x86/intel_atomisp2_led.o
2025-10-31T06:23:02.2565979Z LD [M] drivers/platform/chrome/cros_ec_lpcs.o
2025-10-31T06:23:02.2715418Z LD [M] drivers/platform/chrome/cros-ec-sensorhub.o
2025-10-31T06:23:02.2855916Z AR drivers/platform/chrome/built-in.a
2025-10-31T06:23:02.4011457Z CC [M] drivers/staging/rtl8192u/r8192U_core.o
2025-10-31T06:23:02.4290199Z AR drivers/devfreq/event/built-in.a
2025-10-31T06:23:02.4503216Z CC drivers/devfreq/devfreq.o
2025-10-31T06:23:02.7034455Z CC [M] drivers/platform/x86/intel_cht_int33fe_common.o
2025-10-31T06:23:02.8479713Z CC [M] drivers/hid/hid-redragon.o
2025-10-31T06:23:02.9115203Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/gc/gc_1.0/ia_css_gc.host.o
2025-10-31T06:23:03.3289145Z CC [M] drivers/platform/x86/intel_cht_int33fe_typec.o
2025-10-31T06:23:03.5646077Z CC [M] drivers/hid/hid-retrode.o
2025-10-31T06:23:03.6053357Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/gc/gc_1.0/ia_css_gc_table.host.o
2025-10-31T06:23:03.7108200Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/gc/gc_2/ia_css_gc2.host.o
2025-10-31T06:23:03.8661923Z CC drivers/devfreq/devfreq-event.o
2025-10-31T06:23:04.2226099Z CC [M] drivers/hid/hid-roccat.o
2025-10-31T06:23:04.3960426Z CC [M] drivers/platform/x86/intel_cht_int33fe_microb.o
2025-10-31T06:23:04.4909605Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/gc/gc_2/ia_css_gc2_table.host.o
2025-10-31T06:23:04.4962445Z CC [M] drivers/devfreq/governor_simpleondemand.o
2025-10-31T06:23:04.6081709Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/hdr/ia_css_hdr.host.o
2025-10-31T06:23:04.6973186Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ipu2_io_ls/bayer_io_ls/ia_css_bayer_io.host.o
2025-10-31T06:23:04.9785920Z CC [M] drivers/hid/hid-roccat-common.o
2025-10-31T06:23:05.1802460Z CC [M] drivers/platform/x86/intel-hid.o
2025-10-31T06:23:05.2914053Z CC [M] drivers/devfreq/governor_performance.o
2025-10-31T06:23:05.4149723Z CC [M] drivers/staging/rtl8192u/r8180_93cx6.o
2025-10-31T06:23:05.4215802Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ipu2_io_ls/yuv444_io_ls/ia_css_yuv444_io.host.o
2025-10-31T06:23:05.5759483Z CC [M] drivers/hid/hid-roccat-arvo.o
2025-10-31T06:23:05.7850983Z CC [M] drivers/devfreq/governor_powersave.o
2025-10-31T06:23:06.0575305Z CC [M] drivers/platform/x86/intel_int0002_vgpio.o
2025-10-31T06:23:06.0741372Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/iterator/iterator_1.0/ia_css_iterator.host.o
2025-10-31T06:23:06.3637724Z CC [M] drivers/devfreq/governor_userspace.o
2025-10-31T06:23:06.4033731Z CC [M] drivers/hid/hid-roccat-isku.o
2025-10-31T06:23:06.4734253Z CC [M] drivers/staging/rtl8192u/r8192U_wx.o
2025-10-31T06:23:06.7732769Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/macc/macc_1.0/ia_css_macc.host.o
2025-10-31T06:23:06.8264415Z CC [M] drivers/platform/x86/intel_menlow.o
2025-10-31T06:23:06.8706517Z CC [M] drivers/devfreq/governor_passive.o
2025-10-31T06:23:07.2881379Z AR drivers/devfreq/built-in.a
2025-10-31T06:23:07.3630426Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_dev.o
2025-10-31T06:23:07.5405646Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/macc/macc_1.0/ia_css_macc_table.host.o
2025-10-31T06:23:07.6272791Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/macc/macc1_5/ia_css_macc1_5.host.o
2025-10-31T06:23:07.6348234Z CC [M] drivers/staging/rtl8192u/r8190_rtl8256.o
2025-10-31T06:23:07.6817676Z CC [M] drivers/hid/hid-roccat-kone.o
2025-10-31T06:23:07.7306816Z CC [M] drivers/platform/x86/intel_oaktrail.o
2025-10-31T06:23:08.4732885Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/macc/macc1_5/ia_css_macc1_5_table.host.o
2025-10-31T06:23:08.5544482Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/norm/norm_1.0/ia_css_norm.host.o
2025-10-31T06:23:08.5761241Z CC [M] drivers/platform/x86/intel-vbtn.o
2025-10-31T06:23:08.5845232Z CC [M] drivers/staging/rtl8192u/r819xU_phy.o
2025-10-31T06:23:08.6166245Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ob/ob_1.0/ia_css_ob.host.o
2025-10-31T06:23:08.6574122Z CC [M] drivers/hid/hid-roccat-koneplus.o
2025-10-31T06:23:09.2523539Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_phy.o
2025-10-31T06:23:09.3056798Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ob/ob2/ia_css_ob2.host.o
2025-10-31T06:23:09.6320512Z CC [M] drivers/platform/x86/surface3-wmi.o
2025-10-31T06:23:09.6406463Z CC [M] drivers/hid/hid-roccat-konepure.o
2025-10-31T06:23:10.0782386Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/output/output_1.0/ia_css_output.host.o
2025-10-31T06:23:10.2339285Z CC [M] drivers/staging/rtl8192u/r819xU_firmware.o
2025-10-31T06:23:10.3330748Z CC [M] drivers/hid/hid-roccat-kovaplus.o
2025-10-31T06:23:10.3664436Z CC [M] drivers/platform/x86/surface3_button.o
2025-10-31T06:23:10.9638694Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.o
2025-10-31T06:23:10.9974389Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/qplane/qplane_2/ia_css_qplane.host.o
2025-10-31T06:23:11.0552347Z CC [M] drivers/platform/x86/surface3_power.o
2025-10-31T06:23:11.2197537Z CC [M] drivers/hid/hid-roccat-lua.o
2025-10-31T06:23:11.2431789Z CC [M] drivers/staging/rtl8192u/r819xU_cmdpkt.o
2025-10-31T06:23:11.7025469Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/raw_aa_binning/raw_aa_binning_1.0/ia_css_raa.host.o
2025-10-31T06:23:11.7540411Z CC [M] drivers/platform/x86/surfacepro3_button.o
2025-10-31T06:23:11.8967982Z CC [M] drivers/hid/hid-roccat-pyra.o
2025-10-31T06:23:12.0655943Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.o
2025-10-31T06:23:12.3034891Z CC [M] drivers/staging/rtl8192u/r8192U_dm.o
2025-10-31T06:23:12.3860272Z CC [M] drivers/platform/x86/msi-laptop.o
2025-10-31T06:23:12.4215186Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/raw/raw_1.0/ia_css_raw.host.o
2025-10-31T06:23:12.7868478Z CC [M] drivers/hid/hid-roccat-ryos.o
2025-10-31T06:23:12.9613078Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_hwimg.o
2025-10-31T06:23:13.0242882Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.o
2025-10-31T06:23:13.3337257Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ref/ref_1.0/ia_css_ref.host.o
2025-10-31T06:23:13.5250284Z CC [M] drivers/hid/hid-roccat-savu.o
2025-10-31T06:23:13.6607081Z CC [M] drivers/platform/x86/msi-wmi.o
2025-10-31T06:23:14.0496575Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/s3a/s3a_1.0/ia_css_s3a.host.o
2025-10-31T06:23:14.0829241Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_cam.o
2025-10-31T06:23:14.1235328Z CC [M] drivers/hid/hid-rmi.o
2025-10-31T06:23:14.4609392Z CC [M] drivers/platform/x86/pcengines-apuv2.o
2025-10-31T06:23:14.5756994Z CC [M] drivers/staging/rtl8192u/r819xU_firmware_img.o
2025-10-31T06:23:14.7216912Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_crypt.o
2025-10-31T06:23:14.9398976Z CC [M] drivers/hid/hid-saitek.o
2025-10-31T06:23:14.9412855Z CC [M] drivers/platform/x86/samsung-laptop.o
2025-10-31T06:23:14.9713921Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/sc/sc_1.0/ia_css_sc.host.o
2025-10-31T06:23:15.4068896Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_core.o
2025-10-31T06:23:15.5049390Z CC [M] drivers/hid/hid-samsung.o
2025-10-31T06:23:15.7462725Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/sdis/sdis_1.0/ia_css_sdis.host.o
2025-10-31T06:23:15.8311449Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_tkip.o
2025-10-31T06:23:16.2355819Z CC [M] drivers/hid/hid-sjoy.o
2025-10-31T06:23:16.3869757Z CC [M] drivers/platform/x86/samsung-q10.o
2025-10-31T06:23:16.5474725Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/sdis/sdis_2/ia_css_sdis2.host.o
2025-10-31T06:23:16.9900728Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_ccmp.o
2025-10-31T06:23:17.1094610Z CC [M] drivers/hid/hid-sony.o
2025-10-31T06:23:17.1856219Z CC [M] drivers/platform/x86/toshiba_bluetooth.o
2025-10-31T06:23:17.5184462Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/tdf/tdf_1.0/ia_css_tdf.host.o
2025-10-31T06:23:17.6420312Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_dm.o
2025-10-31T06:23:17.7952390Z CC [M] drivers/platform/x86/toshiba_haps.o
2025-10-31T06:23:18.2342387Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_wep.o
2025-10-31T06:23:18.3220717Z CC [M] drivers/platform/x86/toshiba-wmi.o
2025-10-31T06:23:18.3574055Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr_1.0/ia_css_tnr.host.o
2025-10-31T06:23:18.9292489Z CC [M] drivers/hid/hid-speedlink.o
2025-10-31T06:23:18.9515642Z CC [M] drivers/platform/x86/toshiba_acpi.o
2025-10-31T06:23:19.1045795Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/vf/vf_1.0/ia_css_vf.host.o
2025-10-31T06:23:19.2192419Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_rx.o
2025-10-31T06:23:19.3944339Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_eeprom.o
2025-10-31T06:23:19.3945440Z CC [M] drivers/hid/hid-steam.o
2025-10-31T06:23:19.9824186Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/wb/wb_1.0/ia_css_wb.host.o
2025-10-31T06:23:20.3276662Z CC [M] drivers/hid/hid-steelseries.o
2025-10-31T06:23:20.3945216Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_ethtool.o
2025-10-31T06:23:20.7677498Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/xnr/xnr_1.0/ia_css_xnr.host.o
2025-10-31T06:23:20.9901772Z CC [M] drivers/hid/hid-sunplus.o
2025-10-31T06:23:21.1113916Z CC [M] drivers/platform/x86/classmate-laptop.o
2025-10-31T06:23:21.4653255Z CC [M] drivers/hid/hid-gaff.o
2025-10-31T06:23:21.5090057Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_pci.o
2025-10-31T06:23:21.7670518Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/xnr/xnr_1.0/ia_css_xnr_table.host.o
2025-10-31T06:23:21.9004520Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/xnr/xnr_3.0/ia_css_xnr3.host.o
2025-10-31T06:23:21.9924148Z CC [M] drivers/hid/hid-tmff.o
2025-10-31T06:23:22.0397466Z CC [M] drivers/platform/x86/compal-laptop.o
2025-10-31T06:23:22.0756862Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.o
2025-10-31T06:23:22.2145269Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ynr/ynr_1.0/ia_css_ynr.host.o
2025-10-31T06:23:22.4975178Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_pm.o
2025-10-31T06:23:22.6531288Z CC [M] drivers/hid/hid-tivo.o
2025-10-31T06:23:22.9544897Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ynr/ynr_2/ia_css_ynr2.host.o
2025-10-31T06:23:22.9889093Z CC [M] drivers/platform/x86/lg-laptop.o
2025-10-31T06:23:23.3278618Z CC [M] drivers/hid/hid-topseed.o
2025-10-31T06:23:23.6895720Z CC [M] drivers/staging/media/atomisp/pci/mmu/isp_mmu.o
2025-10-31T06:23:23.7204144Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_ps.o
2025-10-31T06:23:23.7409145Z CC [M] drivers/platform/x86/panasonic-laptop.o
2025-10-31T06:23:23.9206097Z CC [M] drivers/hid/hid-twinhan.o
2025-10-31T06:23:24.4577162Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_tx.o
2025-10-31T06:23:24.6279049Z CC [M] drivers/hid/hid-u2fzero.o
2025-10-31T06:23:24.6409975Z CC [M] drivers/staging/media/atomisp/pci/mmu/sh_mmu_mrfld.o
2025-10-31T06:23:24.7198811Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_wx.o
2025-10-31T06:23:24.9576002Z CC [M] drivers/platform/x86/sony-laptop.o
2025-10-31T06:23:25.2814109Z CC [M] drivers/hid/hid-uclogic-core.o
2025-10-31T06:23:25.4466675Z CC [M] drivers/staging/media/atomisp/pci/runtime/binary/src/binary.o
2025-10-31T06:23:25.8904423Z CC [M] drivers/hid/hid-uclogic-rdesc.o
2025-10-31T06:23:25.9442267Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_wx.o
2025-10-31T06:23:26.0481490Z LD [M] drivers/staging/rtl8192e/rtl8192e/r8192e_pci.o
2025-10-31T06:23:26.1865133Z CC [M] drivers/staging/rtl8192e/dot11d.o
2025-10-31T06:23:26.5693340Z CC [M] drivers/hid/hid-uclogic-params.o
2025-10-31T06:23:26.9421796Z CC [M] drivers/staging/media/atomisp/pci/runtime/bufq/src/bufq.o
2025-10-31T06:23:27.2218383Z CC [M] drivers/staging/rtl8192e/rtllib_module.o
2025-10-31T06:23:27.3393055Z CC [M] drivers/platform/x86/system76_acpi.o
2025-10-31T06:23:27.4777916Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_module.o
2025-10-31T06:23:27.5116026Z CC [M] drivers/hid/hid-udraw-ps3.o
2025-10-31T06:23:27.7357962Z CC [M] drivers/staging/media/atomisp/pci/runtime/debug/src/ia_css_debug.o
2025-10-31T06:23:28.0004120Z CC [M] drivers/platform/x86/topstar-laptop.o
2025-10-31T06:23:28.1719100Z CC [M] drivers/hid/hid-led.o
2025-10-31T06:23:28.4330722Z CC [M] drivers/staging/rtl8192e/rtllib_rx.o
2025-10-31T06:23:28.6972178Z CC [M] drivers/platform/x86/i2c-multi-instantiate.o
2025-10-31T06:23:28.7875100Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_softmac_wx.o
2025-10-31T06:23:28.8226274Z CC [M] drivers/hid/hid-xinmo.o
2025-10-31T06:23:29.3160419Z CC [M] drivers/platform/x86/mlx-platform.o
2025-10-31T06:23:29.3588516Z CC [M] drivers/hid/hid-zpff.o
2025-10-31T06:23:29.6744214Z CC [M] drivers/staging/media/atomisp/pci/runtime/eventq/src/eventq.o
2025-10-31T06:23:29.8860151Z CC [M] drivers/staging/media/atomisp/pci/runtime/event/src/event.o
2025-10-31T06:23:29.9197788Z CC [M] drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.o
2025-10-31T06:23:29.9533283Z CC [M] drivers/hid/hid-zydacron.o
2025-10-31T06:23:30.1527509Z CC [M] drivers/platform/x86/intel_ips.o
2025-10-31T06:23:30.6073005Z CC [M] drivers/hid/hid-viewsonic.o
2025-10-31T06:23:30.6075865Z CC [M] drivers/staging/media/atomisp/pci/runtime/frame/src/frame.o
2025-10-31T06:23:31.1391065Z CC [M] drivers/staging/rtl8192u/ieee80211/rtl819x_TSProc.o
2025-10-31T06:23:31.1780047Z CC [M] drivers/hid/wacom_wac.o
2025-10-31T06:23:31.4024511Z CC [M] drivers/staging/rtl8192e/rtllib_tx.o
2025-10-31T06:23:31.5384126Z CC [M] drivers/platform/x86/intel-rst.o
2025-10-31T06:23:31.6418047Z CC [M] drivers/staging/media/atomisp/pci/runtime/ifmtr/src/ifmtr.o
2025-10-31T06:23:31.7365721Z CC [M] drivers/staging/media/atomisp/pci/runtime/inputfifo/src/inputfifo.o
2025-10-31T06:23:32.0707917Z CC [M] drivers/platform/x86/intel-smartconnect.o
2025-10-31T06:23:32.6271664Z CC [M] drivers/staging/media/atomisp/pci/runtime/isp_param/src/isp_param.o
2025-10-31T06:23:32.6345735Z CC [M] drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.o
2025-10-31T06:23:32.6501141Z CC [M] drivers/platform/x86/intel-uncore-frequency.o
2025-10-31T06:23:33.0524282Z CC [M] drivers/staging/rtl8192e/rtllib_wx.o
2025-10-31T06:23:33.4996143Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/csi_rx_rmgr.o
2025-10-31T06:23:33.6833783Z CC [M] drivers/platform/x86/intel_bxtwc_tmu.o
2025-10-31T06:23:33.7849378Z CC [M] drivers/staging/rtl8192u/ieee80211/dot11d.o
2025-10-31T06:23:34.0748516Z CC [M] drivers/platform/x86/intel_chtdc_ti_pwrbtn.o
2025-10-31T06:23:34.2493222Z CC [M] drivers/hid/wacom_sys.o
2025-10-31T06:23:34.4240603Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/ibuf_ctrl_rmgr.o
2025-10-31T06:23:34.5297035Z CC [M] drivers/staging/rtl8192e/rtllib_softmac.o
2025-10-31T06:23:34.6582274Z CC [M] drivers/platform/x86/intel_mid_thermal.o
2025-10-31T06:23:34.6670594Z LD [M] drivers/staging/rtl8192u/r8192u_usb.o
2025-10-31T06:23:34.8159181Z CC [M] drivers/platform/x86/intel_mid_powerbtn.o
2025-10-31T06:23:35.1333058Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/isys_dma_rmgr.o
2025-10-31T06:23:35.3149349Z CC drivers/extcon/extcon.o
2025-10-31T06:23:35.4320574Z CC [M] drivers/platform/x86/intel_mrfld_pwrbtn.o
2025-10-31T06:23:35.8810017Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/isys_init.o
2025-10-31T06:23:36.0766880Z CC [M] drivers/platform/x86/intel_punit_ipc.o
2025-10-31T06:23:36.4483862Z CC drivers/extcon/devres.o
2025-10-31T06:23:36.4697085Z CC [M] drivers/hid/hid-waltop.o
2025-10-31T06:23:36.5752894Z CC [M] drivers/platform/x86/intel_scu_pltdrv.o
2025-10-31T06:23:36.5828220Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/isys_stream2mmio_rmgr.o
2025-10-31T06:23:36.9195937Z CC [M] drivers/extcon/extcon-adc-jack.o
2025-10-31T06:23:36.9597409Z CC [M] drivers/platform/x86/intel_scu_ipcutil.o
2025-10-31T06:23:37.0562228Z CC [M] drivers/staging/rtl8192e/rtllib_softmac_wx.o
2025-10-31T06:23:37.0813181Z CC [M] drivers/hid/hid-wiimote-core.o
2025-10-31T06:23:37.3692968Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/rx.o
2025-10-31T06:23:37.4282820Z CC [M] drivers/extcon/extcon-arizona.o
2025-10-31T06:23:37.5334890Z CC [M] drivers/platform/x86/intel_telemetry_core.o
2025-10-31T06:23:38.0098421Z CC [M] drivers/staging/rtl8192e/rtl819x_BAProc.o
2025-10-31T06:23:38.0653018Z CC [M] drivers/platform/x86/intel_telemetry_pltdrv.o
2025-10-31T06:23:38.1861276Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/virtual_isys.o
2025-10-31T06:23:38.6138435Z CC [M] drivers/hid/hid-wiimote-modules.o
2025-10-31T06:23:38.9652443Z CC [M] drivers/platform/x86/intel_telemetry_debugfs.o
2025-10-31T06:23:39.0997004Z CC [M] drivers/staging/media/atomisp/pci/runtime/pipeline/src/pipeline.o
2025-10-31T06:23:39.1878063Z CC [M] drivers/extcon/extcon-axp288.o
2025-10-31T06:23:39.2919849Z CC [M] drivers/staging/rtl8192e/rtl819x_HTProc.o
2025-10-31T06:23:39.9100326Z CC [M] drivers/extcon/extcon-fsa9480.o
2025-10-31T06:23:40.0578283Z LD [M] drivers/platform/x86/dell-smbios.o
2025-10-31T06:23:40.0727914Z LD [M] drivers/platform/x86/intel_cht_int33fe.o
2025-10-31T06:23:40.0878778Z AR drivers/platform/x86/built-in.a
2025-10-31T06:23:40.1521494Z CC [M] drivers/staging/media/atomisp/pci/runtime/queue/src/queue_access.o
2025-10-31T06:23:40.1966923Z CC [M] drivers/hid/hid-wiimote-debug.o
2025-10-31T06:23:40.5172730Z CC [M] drivers/staging/rtl8192e/rtl819x_TSProc.o
2025-10-31T06:23:40.5606770Z AR drivers/platform/built-in.a
2025-10-31T06:23:40.5618332Z CC [M] drivers/extcon/extcon-gpio.o
2025-10-31T06:23:40.6123738Z CC [M] drivers/hid/hid-sensor-hub.o
2025-10-31T06:23:40.7674251Z CC [M] drivers/staging/media/atomisp/pci/runtime/queue/src/queue.o
2025-10-31T06:23:40.8826960Z CC [M] drivers/staging/media/atomisp/pci/runtime/rmgr/src/rmgr.o
2025-10-31T06:23:41.0832714Z CC [M] drivers/staging/media/atomisp/pci/runtime/rmgr/src/rmgr_vbuf.o
2025-10-31T06:23:41.0841842Z CC [M] drivers/extcon/extcon-intel-int3496.o
2025-10-31T06:23:41.1432513Z CC [M] drivers/staging/media/atomisp/pci/runtime/spctrl/src/spctrl.o
2025-10-31T06:23:41.6168119Z CC [M] drivers/extcon/extcon-intel-cht-wc.o
2025-10-31T06:23:41.6203867Z LD [M] drivers/hid/hid-logitech.o
2025-10-31T06:23:41.6612268Z LD [M] drivers/hid/hid-picolcd.o
2025-10-31T06:23:41.6983304Z LD [M] drivers/hid/hid-uclogic.o
2025-10-31T06:23:41.7161263Z CC [M] drivers/staging/rtl8192e/rtllib_crypt_ccmp.o
2025-10-31T06:23:41.7291233Z LD [M] drivers/hid/wacom.o
2025-10-31T06:23:41.7706246Z LD [M] drivers/hid/hid-wiimote.o
2025-10-31T06:23:41.8121114Z AR drivers/hid/built-in.a
2025-10-31T06:23:41.8925513Z CC [M] drivers/staging/rtl8192e/rtllib_crypt_tkip.o
2025-10-31T06:23:41.9453883Z CC [M] drivers/staging/media/atomisp/pci/runtime/timer/src/timer.o
2025-10-31T06:23:42.3077266Z CC [M] drivers/extcon/extcon-intel-mrfld.o
2025-10-31T06:23:42.4280610Z CC [M] drivers/extcon/extcon-max14577.o
2025-10-31T06:23:42.6465934Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/debug.o
2025-10-31T06:23:42.8195646Z AR drivers/memory/built-in.a
2025-10-31T06:23:42.8515922Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/dma.o
2025-10-31T06:23:42.8744335Z CC [M] drivers/staging/rtl8723bs/core/rtw_ap.o
2025-10-31T06:23:43.1203678Z CC [M] drivers/staging/rtl8192e/rtllib_crypt_wep.o
2025-10-31T06:23:43.2377523Z CC drivers/powercap/powercap_sys.o
2025-10-31T06:23:43.3755260Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/event_fifo.o
2025-10-31T06:23:43.4239923Z CC [M] drivers/extcon/extcon-max3355.o
2025-10-31T06:23:43.5095135Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/fifo_monitor.o
2025-10-31T06:23:43.8193619Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gdc.o
2025-10-31T06:23:44.0436103Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gp_device.o
2025-10-31T06:23:44.0495071Z LD [M] drivers/staging/rtl8192e/rtllib.o
2025-10-31T06:23:44.1279973Z CC [M] drivers/extcon/extcon-max77693.o
2025-10-31T06:23:44.1348270Z CC drivers/powercap/idle_inject.o
2025-10-31T06:23:44.1521722Z CC [M] drivers/staging/rtl8723bs/core/rtw_btcoex.o
2025-10-31T06:23:44.4094163Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gp_timer.o
2025-10-31T06:23:44.5760849Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/hmem.o
2025-10-31T06:23:44.6162138Z CC [M] drivers/powercap/intel_rapl_common.o
2025-10-31T06:23:44.7468876Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_formatter.o
2025-10-31T06:23:44.8012900Z AR drivers/perf/built-in.a
2025-10-31T06:23:44.8246501Z CC [M] drivers/extcon/extcon-max77843.o
2025-10-31T06:23:44.8456441Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.o
2025-10-31T06:23:44.9275504Z CC [M] drivers/staging/rtl8712/rtl871x_cmd.o
2025-10-31T06:23:44.9534329Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/irq.o
2025-10-31T06:23:45.0601019Z CC [M] drivers/staging/rtl8723bs/core/rtw_cmd.o
2025-10-31T06:23:45.3398669Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/isp.o
2025-10-31T06:23:45.5595077Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/mmu.o
2025-10-31T06:23:45.6216217Z CC [M] drivers/extcon/extcon-max8997.o
2025-10-31T06:23:45.7584115Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/sp.o
2025-10-31T06:23:46.0547034Z CC [M] drivers/powercap/intel_rapl_msr.o
2025-10-31T06:23:46.1043640Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/timed_ctrl.o
2025-10-31T06:23:46.2536449Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/vmem.o
2025-10-31T06:23:46.3086067Z CC [M] drivers/staging/rtl8712/rtl8712_cmd.o
2025-10-31T06:23:46.5971830Z CC [M] drivers/staging/rtl8723bs/core/rtw_debug.o
2025-10-31T06:23:46.6103659Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_shared/host/tag.o
2025-10-31T06:23:46.7299625Z CC [M] drivers/extcon/extcon-palmas.o
2025-10-31T06:23:46.8446270Z CC [M] drivers/staging/media/atomisp/pci/system_local.o
2025-10-31T06:23:46.8745574Z AR drivers/powercap/built-in.a
2025-10-31T06:23:46.9319207Z CC [M] drivers/extcon/extcon-ptn5150.o
2025-10-31T06:23:46.9381873Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/hive/ia_css_isp_configs.o
2025-10-31T06:23:47.2046381Z CC [M] drivers/staging/rtl8712/rtl871x_security.o
2025-10-31T06:23:47.5459141Z CC [M] drivers/staging/rtl8188eu/core/rtw_ap.o
2025-10-31T06:23:47.6910427Z CC [M] drivers/extcon/extcon-rt8973a.o
2025-10-31T06:23:47.7888542Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/hive/ia_css_isp_params.o
2025-10-31T06:23:48.0210245Z CC [M] drivers/staging/rtl8723bs/core/rtw_efuse.o
2025-10-31T06:23:48.4244132Z CC [M] drivers/extcon/extcon-sm5502.o
2025-10-31T06:23:49.0641769Z CC [M] drivers/staging/rtl8188eu/core/rtw_cmd.o
2025-10-31T06:23:49.1440039Z CC [M] drivers/extcon/extcon-usb-gpio.o
2025-10-31T06:23:49.2024971Z CC [M] drivers/staging/rtl8723bs/core/rtw_io.o
2025-10-31T06:23:49.2748156Z CC [M] drivers/staging/rtl8712/rtl871x_eeprom.o
2025-10-31T06:23:49.7230761Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/hive/ia_css_isp_states.o
2025-10-31T06:23:49.7599857Z CC [M] drivers/extcon/extcon-usbc-cros-ec.o
2025-10-31T06:23:50.1484558Z CC [M] drivers/staging/rtl8723bs/core/rtw_ioctl_set.o
2025-10-31T06:23:50.3380673Z CC [M] drivers/staging/rtl8712/rtl8712_efuse.o
2025-10-31T06:23:50.3589437Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/csi_rx.o
2025-10-31T06:23:50.4547291Z AR drivers/extcon/built-in.a
2025-10-31T06:23:50.4743797Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/ibuf_ctrl.o
2025-10-31T06:23:50.5923996Z CC [M] drivers/staging/rtl8188eu/core/rtw_debug.o
2025-10-31T06:23:50.6067128Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma.o
2025-10-31T06:23:50.6429264Z CC [M] drivers/staging/rts5208/rtsx.o
2025-10-31T06:23:50.8795282Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/isys_irq.o
2025-10-31T06:23:51.3274579Z CC [M] drivers/staging/rtl8723bs/core/rtw_ieee80211.o
2025-10-31T06:23:51.4886947Z CC [M] drivers/staging/rtl8188eu/core/rtw_efuse.o
2025-10-31T06:23:51.5485810Z CC [M] drivers/staging/rtl8712/hal_init.o
2025-10-31T06:23:51.5976588Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/isys_stream2mmio.o
2025-10-31T06:23:51.6744597Z CC [M] drivers/staging/media/atomisp/pci/atomisp_gmin_platform.o
2025-10-31T06:23:51.8846094Z CC [M] drivers/staging/rts5208/rtsx_chip.o
2025-10-31T06:23:52.6530042Z CC [M] drivers/staging/rtl8712/usb_halinit.o
2025-10-31T06:23:52.9274337Z CC [M] drivers/staging/rtl8188eu/core/rtw_ieee80211.o
2025-10-31T06:23:53.0349434Z CC [M] drivers/staging/rtl8723bs/core/rtw_mlme.o
2025-10-31T06:23:53.1965566Z LD [M] drivers/staging/media/atomisp/atomisp.o
2025-10-31T06:23:53.5165193Z AR drivers/staging/media/atomisp/built-in.a
2025-10-31T06:23:53.5696873Z CC [M] drivers/staging/rtl8712/usb_ops.o
2025-10-31T06:23:53.5790347Z AR drivers/staging/media/built-in.a
2025-10-31T06:23:53.6583708Z CC [M] drivers/staging/vt6655/device_main.o
2025-10-31T06:23:54.1392166Z CC [M] drivers/staging/rts5208/rtsx_transport.o
2025-10-31T06:23:54.5064630Z CC [M] drivers/staging/rtl8188eu/core/rtw_ioctl_set.o
2025-10-31T06:23:54.6640142Z CC [M] drivers/staging/rtl8712/usb_ops_linux.o
2025-10-31T06:23:54.8994876Z CC [M] drivers/staging/rtl8723bs/core/rtw_mlme_ext.o
2025-10-31T06:23:55.2714622Z CC [M] drivers/staging/rts5208/rtsx_scsi.o
2025-10-31T06:23:55.7299737Z CC [M] drivers/staging/rtl8188eu/core/rtw_iol.o
2025-10-31T06:23:55.8585527Z CC [M] drivers/staging/vt6655/card.o
2025-10-31T06:23:56.0696275Z CC [M] drivers/staging/rtl8712/rtl871x_io.o
2025-10-31T06:23:56.6701460Z CC [M] drivers/staging/rtl8188eu/core/rtw_led.o
2025-10-31T06:23:57.1801724Z CC [M] drivers/staging/rtl8712/rtl8712_io.o
2025-10-31T06:23:57.4730817Z CC [M] drivers/staging/vt6655/channel.o
2025-10-31T06:23:57.7896501Z CC [M] drivers/staging/rts5208/rtsx_card.o
2025-10-31T06:23:57.8272970Z CC [M] drivers/staging/rtl8188eu/core/rtw_mlme.o
2025-10-31T06:23:58.0825577Z CC [M] drivers/staging/rtl8712/rtl871x_ioctl_linux.o
2025-10-31T06:23:58.3085451Z CC [M] drivers/staging/rtl8723bs/core/rtw_odm.o
2025-10-31T06:23:58.8748841Z CC [M] drivers/staging/vt6655/mac.o
2025-10-31T06:23:58.9547336Z CC [M] drivers/staging/rts5208/general.o
2025-10-31T06:23:59.3516830Z CC [M] drivers/staging/rtl8723bs/core/rtw_pwrctrl.o
2025-10-31T06:23:59.5123413Z CC [M] drivers/staging/rtl8188eu/core/rtw_mlme_ext.o
2025-10-31T06:23:59.7495497Z CC [M] drivers/staging/rts5208/sd.o
2025-10-31T06:24:00.0633896Z CC [M] drivers/staging/rtl8712/rtl871x_ioctl_rtl.o
2025-10-31T06:24:00.6248761Z CC [M] drivers/staging/vt6655/baseband.o
2025-10-31T06:24:00.8244926Z CC [M] drivers/staging/rtl8723bs/core/rtw_recv.o
2025-10-31T06:24:01.1384739Z CC [M] drivers/staging/rtl8712/rtl871x_ioctl_set.o
2025-10-31T06:24:02.0920386Z CC [M] drivers/staging/vt6655/rxtx.o
2025-10-31T06:24:02.1311119Z CC [M] drivers/staging/rtl8712/rtl8712_led.o
2025-10-31T06:24:02.4683527Z CC [M] drivers/staging/rts5208/xd.o
2025-10-31T06:24:02.7865518Z CC [M] drivers/staging/rtl8188eu/core/rtw_pwrctrl.o
2025-10-31T06:24:03.0345546Z CC [M] drivers/staging/rtl8723bs/core/rtw_rf.o
2025-10-31T06:24:03.6518900Z CC [M] drivers/staging/vt6655/dpc.o
2025-10-31T06:24:03.6918016Z CC [M] drivers/staging/rtl8712/rtl871x_mlme.o
2025-10-31T06:24:03.9920816Z CC [M] drivers/staging/rtl8188eu/core/rtw_recv.o
2025-10-31T06:24:03.9994301Z CC [M] drivers/staging/rtl8723bs/core/rtw_security.o
2025-10-31T06:24:04.1443832Z CC [M] drivers/staging/rts5208/ms.o
2025-10-31T06:24:04.8682552Z CC [M] drivers/staging/vt6655/power.o
2025-10-31T06:24:05.2331306Z CC [M] drivers/staging/rtl8712/ieee80211.o
2025-10-31T06:24:06.0762629Z CC [M] drivers/staging/rtl8188eu/core/rtw_rf.o
2025-10-31T06:24:06.1506861Z CC [M] drivers/staging/rtl8712/rtl871x_mp_ioctl.o
2025-10-31T06:24:06.2661839Z CC [M] drivers/staging/vt6655/srom.o
2025-10-31T06:24:06.3935335Z CC [M] drivers/staging/rtl8723bs/core/rtw_sta_mgt.o
2025-10-31T06:24:06.9786735Z CC [M] drivers/staging/rtl8188eu/core/rtw_security.o
2025-10-31T06:24:07.0059657Z CC [M] drivers/staging/rts5208/spi.o
2025-10-31T06:24:07.2322178Z CC [M] drivers/staging/rtl8712/rtl871x_mp.o
2025-10-31T06:24:07.3704384Z CC [M] drivers/staging/vt6655/key.o
2025-10-31T06:24:07.6168293Z CC [M] drivers/staging/rtl8723bs/core/rtw_wlan_util.o
2025-10-31T06:24:08.0482190Z LD [M] drivers/staging/rts5208/rts5208.o
2025-10-31T06:24:08.1191435Z CC drivers/ras/ras.o
2025-10-31T06:24:08.5159407Z CC [M] drivers/staging/vt6655/rf.o
2025-10-31T06:24:08.5476712Z CC [M] drivers/staging/rtl8188eu/core/rtw_sreset.o
2025-10-31T06:24:08.7542333Z CC [M] drivers/staging/rtl8712/mlme_linux.o
2025-10-31T06:24:09.4011584Z CC [M] drivers/staging/rtl8723bs/core/rtw_xmit.o
2025-10-31T06:24:09.4888552Z CC [M] drivers/staging/rtl8188eu/core/rtw_sta_mgt.o
2025-10-31T06:24:09.7120477Z CC drivers/ras/debugfs.o
2025-10-31T06:24:09.8412871Z CC [M] drivers/staging/rtl8712/recv_linux.o
2025-10-31T06:24:10.1005459Z CC drivers/ras/cec.o
2025-10-31T06:24:10.4281736Z LD [M] drivers/staging/vt6655/vt6655_stage.o
2025-10-31T06:24:10.5644603Z CC [M] drivers/staging/rtl8712/xmit_linux.o
2025-10-31T06:24:10.6611417Z AR drivers/hwtracing/intel_th/built-in.a
2025-10-31T06:24:10.6711612Z CC [M] drivers/hwtracing/intel_th/core.o
2025-10-31T06:24:10.7069139Z AR drivers/ras/built-in.a
2025-10-31T06:24:10.7252333Z CC [M] drivers/staging/rtl8188eu/core/rtw_wlan_util.o
2025-10-31T06:24:10.7866086Z CC [M] drivers/staging/rtl8723bs/hal/hal_intf.o
2025-10-31T06:24:11.4106340Z CC [M] drivers/staging/vt6656/main_usb.o
2025-10-31T06:24:11.7294255Z CC [M] drivers/staging/rtl8712/usb_intf.o
2025-10-31T06:24:11.8380009Z CC [M] drivers/hwtracing/intel_th/pci.o
2025-10-31T06:24:12.0974196Z CC [M] drivers/staging/rtl8723bs/hal/hal_com.o
2025-10-31T06:24:12.3360425Z CC [M] drivers/staging/rtl8188eu/core/rtw_xmit.o
2025-10-31T06:24:12.6149748Z CC [M] drivers/hwtracing/intel_th/acpi.o
2025-10-31T06:24:12.8197115Z CC [M] drivers/staging/rtl8712/os_intfs.o
2025-10-31T06:24:13.1749718Z CC [M] drivers/staging/vt6656/card.o
2025-10-31T06:24:13.1798492Z CC [M] drivers/hwtracing/intel_th/gth.o
2025-10-31T06:24:13.5433852Z CC [M] drivers/staging/rtl8723bs/hal/hal_com_phycfg.o
2025-10-31T06:24:13.9913329Z CC [M] drivers/staging/rtl8712/rtl871x_pwrctrl.o
2025-10-31T06:24:14.1066107Z CC [M] drivers/hwtracing/intel_th/sth.o
2025-10-31T06:24:14.3053065Z CC [M] drivers/staging/rtl8188eu/hal/fw.o
2025-10-31T06:24:14.5741917Z CC [M] drivers/staging/vt6656/mac.o
2025-10-31T06:24:14.8302217Z CC [M] drivers/staging/rtl8712/rtl8712_recv.o
2025-10-31T06:24:14.9680787Z CC [M] drivers/hwtracing/intel_th/msu.o
2025-10-31T06:24:15.3370336Z CC [M] drivers/staging/rtl8188eu/hal/mac_cfg.o
2025-10-31T06:24:15.6204172Z CC [M] drivers/staging/rtl8723bs/hal/hal_btcoex.o
2025-10-31T06:24:15.8591588Z CC [M] drivers/staging/vt6656/baseband.o
2025-10-31T06:24:16.0503428Z CC [M] drivers/staging/rtl8712/rtl871x_recv.o
2025-10-31T06:24:16.3775025Z CC [M] drivers/staging/rtl8188eu/hal/bb_cfg.o
2025-10-31T06:24:17.0033317Z CC [M] drivers/hwtracing/intel_th/pti.o
2025-10-31T06:24:17.0333855Z CC [M] drivers/staging/vt6656/wcmd.o
2025-10-31T06:24:17.2921618Z CC [M] drivers/staging/rtl8723bs/hal/hal_sdio.o
2025-10-31T06:24:17.4691803Z CC [M] drivers/staging/rtl8712/rtl871x_sta_mgt.o
2025-10-31T06:24:17.6856039Z CC [M] drivers/hwtracing/intel_th/msu-sink.o
2025-10-31T06:24:17.6956624Z CC [M] drivers/staging/rtl8188eu/hal/rf_cfg.o
2025-10-31T06:24:18.2610715Z CC [M] drivers/staging/vt6656/rxtx.o
2025-10-31T06:24:18.2819176Z CC [M] drivers/staging/rtl8723bs/hal/hal_pwr_seq.o
2025-10-31T06:24:18.3755594Z LD [M] drivers/hwtracing/intel_th/intel_th.o
2025-10-31T06:24:18.4025206Z LD [M] drivers/hwtracing/intel_th/intel_th_pci.o
2025-10-31T06:24:18.4250108Z LD [M] drivers/hwtracing/intel_th/intel_th_acpi.o
2025-10-31T06:24:18.4480180Z LD [M] drivers/hwtracing/intel_th/intel_th_gth.o
2025-10-31T06:24:18.4735327Z LD [M] drivers/hwtracing/intel_th/intel_th_sth.o
2025-10-31T06:24:18.4992565Z LD [M] drivers/hwtracing/intel_th/intel_th_msu.o
2025-10-31T06:24:18.5277815Z LD [M] drivers/hwtracing/intel_th/intel_th_pti.o
2025-10-31T06:24:18.5538057Z LD [M] drivers/hwtracing/intel_th/intel_th_msu_sink.o
2025-10-31T06:24:18.6319724Z CC [M] drivers/staging/rtl8188eu/hal/pwrseqcmd.o
2025-10-31T06:24:18.6438463Z CC [M] drivers/staging/rtl8712/rtl871x_xmit.o
2025-10-31T06:24:18.6502407Z CC [M] drivers/staging/vt6656/power.o
2025-10-31T06:24:19.2180248Z CC [M] drivers/staging/rtl8723bs/hal/HalPhyRf.o
2025-10-31T06:24:19.6355802Z CC [M] drivers/staging/rtl8188eu/hal/pwrseq.o
2025-10-31T06:24:19.7225131Z CC [M] drivers/staging/rtl8723bs/hal/HalPwrSeqCmd.o
2025-10-31T06:24:19.9500379Z CC [M] drivers/staging/vt6656/key.o
2025-10-31T06:24:20.1510684Z CC [M] drivers/staging/rtl8712/rtl8712_xmit.o
2025-10-31T06:24:20.2496131Z CC [M] drivers/staging/iio/accel/adis16203.o
2025-10-31T06:24:20.5931739Z CC [M] drivers/staging/rtl8188eu/hal/hal8188e_rate_adaptive.o
2025-10-31T06:24:20.6393462Z CC [M] drivers/staging/rtl8723bs/hal/odm.o
2025-10-31T06:24:20.8243474Z CC [M] drivers/staging/iio/accel/adis16240.o
2025-10-31T06:24:21.3005096Z CC [M] drivers/staging/vt6656/rf.o
2025-10-31T06:24:21.5078687Z LD [M] drivers/staging/rtl8712/r8712u.o
2025-10-31T06:24:21.6519655Z CC [M] drivers/staging/rtl8723bs/hal/odm_CfoTracking.o
2025-10-31T06:24:21.6553904Z CC [M] drivers/staging/iio/adc/ad7816.o
2025-10-31T06:24:21.7663510Z CC [M] drivers/staging/rtl8188eu/hal/hal_intf.o
2025-10-31T06:24:21.8739425Z CC [M] drivers/staging/vt6656/usbpipe.o
2025-10-31T06:24:22.4894293Z CC [M] drivers/staging/iio/adc/ad7280a.o
2025-10-31T06:24:22.7058912Z CC [M] drivers/staging/rtl8723bs/hal/odm_debug.o
2025-10-31T06:24:22.7570295Z CC [M] drivers/staging/iio/addac/adt7316.o
2025-10-31T06:24:22.7865060Z CC [M] drivers/staging/rtl8188eu/hal/hal_com.o
2025-10-31T06:24:23.1915380Z CC [M] drivers/staging/vt6656/channel.o
2025-10-31T06:24:23.6899317Z CC [M] drivers/staging/iio/addac/adt7316-spi.o
2025-10-31T06:24:23.7575079Z CC [M] drivers/staging/rtl8723bs/hal/odm_DIG.o
2025-10-31T06:24:23.8321531Z CC [M] drivers/staging/rtl8188eu/hal/odm.o
2025-10-31T06:24:24.0737294Z CC drivers/android/binderfs.o
2025-10-31T06:24:24.2084980Z LD [M] drivers/staging/vt6656/vt6656_stage.o
2025-10-31T06:24:24.2743887Z CC [M] drivers/staging/rtl8723bs/hal/odm_DynamicBBPowerSaving.o
2025-10-31T06:24:24.5584239Z CC [M] drivers/staging/iio/addac/adt7316-i2c.o
2025-10-31T06:24:24.9169255Z CC drivers/android/binder.o
2025-10-31T06:24:25.1463104Z CC [M] drivers/staging/iio/cdc/ad7150.o
2025-10-31T06:24:25.2639924Z CC [M] drivers/staging/rtl8723bs/hal/odm_DynamicTxPower.o
2025-10-31T06:24:25.3799051Z CC [M] drivers/staging/rtl8723bs/hal/odm_EdcaTurboCheck.o
2025-10-31T06:24:25.5153473Z CC [M] drivers/staging/rtl8188eu/hal/odm_hwconfig.o
2025-10-31T06:24:25.7989879Z CC [M] drivers/staging/iio/cdc/ad7746.o
2025-10-31T06:24:26.2910706Z CC [M] drivers/staging/gdm724x/gdm_lte.o
2025-10-31T06:24:26.3687742Z CC [M] drivers/staging/rtl8723bs/hal/odm_HWConfig.o
2025-10-31T06:24:26.6256711Z CC [M] drivers/staging/iio/frequency/ad9832.o
2025-10-31T06:24:26.8039047Z CC [M] drivers/staging/rtl8188eu/hal/odm_rtl8188e.o
2025-10-31T06:24:27.4150164Z CC [M] drivers/staging/iio/frequency/ad9834.o
2025-10-31T06:24:27.5406975Z CC [M] drivers/staging/rtl8723bs/hal/odm_NoiseMonitor.o
2025-10-31T06:24:27.8368199Z CC [M] drivers/staging/gdm724x/netlink_k.o
2025-10-31T06:24:27.9800430Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_cmd.o
2025-10-31T06:24:28.5777094Z CC [M] drivers/staging/iio/impedance-analyzer/ad5933.o
2025-10-31T06:24:28.6998030Z CC [M] drivers/staging/rtl8723bs/hal/odm_PathDiv.o
2025-10-31T06:24:28.9181420Z CC [M] drivers/staging/gdm724x/gdm_usb.o
2025-10-31T06:24:29.2679623Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_dm.o
2025-10-31T06:24:29.4928295Z CC [M] drivers/staging/rtl8723bs/hal/odm_RegConfig8723B.o
2025-10-31T06:24:29.9593385Z CC [M] drivers/staging/iio/meter/ade7854.o
2025-10-31T06:24:30.3630132Z CC [M] drivers/staging/gdm724x/gdm_endian.o
2025-10-31T06:24:30.4004717Z CC drivers/android/binder_alloc.o
2025-10-31T06:24:30.4092924Z CC [M] drivers/staging/rtl8723bs/hal/odm_RTL8723B.o
2025-10-31T06:24:30.4468406Z CC [M] drivers/staging/iio/meter/ade7854-i2c.o
2025-10-31T06:24:30.5200370Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.o
2025-10-31T06:24:30.5236902Z CC [M] drivers/staging/gdm724x/gdm_tty.o
2025-10-31T06:24:31.0042622Z CC [M] drivers/staging/iio/meter/ade7854-spi.o
2025-10-31T06:24:31.2712491Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_cmd.o
2025-10-31T06:24:31.2727205Z CC [M] drivers/staging/gdm724x/gdm_mux.o
2025-10-31T06:24:31.6496682Z CC [M] drivers/staging/rtl8188eu/hal/phy.o
2025-10-31T06:24:32.0066050Z CC [M] drivers/staging/iio/resolver/ad2s1210.o
2025-10-31T06:24:32.1573905Z AR drivers/android/built-in.a
2025-10-31T06:24:32.1695405Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_dm.o
2025-10-31T06:24:32.2395453Z LD [M] drivers/staging/gdm724x/gdmulte.o
2025-10-31T06:24:32.2602813Z LD [M] drivers/staging/gdm724x/gdmtty.o
2025-10-31T06:24:32.2965882Z CC [M] drivers/staging/rtl8188eu/hal/rf.o
2025-10-31T06:24:32.4746151Z CC [M] drivers/staging/fwserial/fwserial.o
2025-10-31T06:24:33.0371202Z CC drivers/nvmem/core.o
2025-10-31T06:24:33.1336109Z CC [M] drivers/staging/fwserial/dma_fifo.o
2025-10-31T06:24:33.4875170Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_rxdesc.o
2025-10-31T06:24:33.5174034Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.o
2025-10-31T06:24:33.6711739Z CC [M] drivers/staging/gs_fpgaboot/gs_fpgaboot.o
2025-10-31T06:24:34.1638680Z CC [M] drivers/nvmem/rave-sp-eeprom.o
2025-10-31T06:24:34.3111281Z LD [M] drivers/staging/fwserial/firewire-serial.o
2025-10-31T06:24:34.3715665Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_xmit.o
2025-10-31T06:24:34.4775254Z CC [M] drivers/staging/gs_fpgaboot/io.o
2025-10-31T06:24:34.4923791Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_phycfg.o
2025-10-31T06:24:34.7348861Z AR drivers/nvmem/built-in.a
2025-10-31T06:24:34.7591117Z LD [M] drivers/nvmem/nvmem-rave-sp-eeprom.o
2025-10-31T06:24:34.8101041Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_rf6052.o
2025-10-31T06:24:34.9772778Z LD [M] drivers/staging/gs_fpgaboot/gs_fpga.o
2025-10-31T06:24:35.0062228Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188eu_led.o
2025-10-31T06:24:35.3773641Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188eu_recv.o
2025-10-31T06:24:35.8013921Z CC drivers/interconnect/core.o
2025-10-31T06:24:35.8385390Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_rxdesc.o
2025-10-31T06:24:35.8894023Z CC drivers/interconnect/bulk.o
2025-10-31T06:24:35.9069342Z CC [M] drivers/staging/most/net/net.o
2025-10-31T06:24:36.4144639Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188eu_xmit.o
2025-10-31T06:24:36.5095732Z CC [M] drivers/staging/most/sound/sound.o
2025-10-31T06:24:36.9326465Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723bs_recv.o
2025-10-31T06:24:36.9465883Z LD [M] drivers/staging/most/net/most_net.o
2025-10-31T06:24:37.0633436Z CC [M] drivers/vdpa/mlx5/net/main.o
2025-10-31T06:24:37.4082408Z AR drivers/interconnect/built-in.a
2025-10-31T06:24:37.4344868Z CC [M] drivers/vdpa/vdpa_sim/vdpa_sim.o
2025-10-31T06:24:37.6093838Z CC [M] drivers/staging/rtl8188eu/hal/usb_halinit.o
2025-10-31T06:24:37.6283192Z LD [M] drivers/staging/most/sound/most_sound.o
2025-10-31T06:24:37.6983448Z CC [M] drivers/staging/most/video/video.o
2025-10-31T06:24:38.1678959Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.o
2025-10-31T06:24:38.2322416Z CC [M] drivers/vdpa/mlx5/net/mlx5_vnet.o
2025-10-31T06:24:38.6548876Z CC [M] drivers/vdpa/mlx5/core/resources.o
2025-10-31T06:24:38.8544146Z LD [M] drivers/staging/most/video/most_video.o
2025-10-31T06:24:38.9425135Z CC [M] drivers/staging/most/i2c/i2c.o
2025-10-31T06:24:39.1952461Z CC [M] drivers/staging/rtl8188eu/os_dep/ioctl_linux.o
2025-10-31T06:24:39.3607961Z CC [M] drivers/staging/rtl8723bs/hal/sdio_halinit.o
2025-10-31T06:24:39.7959374Z LD [M] drivers/staging/most/i2c/most_i2c.o
2025-10-31T06:24:39.8764864Z CC [M] drivers/staging/rtl8723bs/hal/sdio_ops.o
2025-10-31T06:24:40.0966423Z CC [M] drivers/staging/rtl8188eu/os_dep/mlme_linux.o
2025-10-31T06:24:40.6667037Z CC [M] drivers/vdpa/mlx5/core/mr.o
2025-10-31T06:24:40.8557586Z CC [M] drivers/staging/ks7010/ks_hostif.o
2025-10-31T06:24:41.1316893Z CC [M] drivers/parport/share.o
2025-10-31T06:24:41.1708876Z CC [M] drivers/staging/rtl8723bs/hal/HalBtc8723b1Ant.o
2025-10-31T06:24:41.7157423Z CC [M] drivers/staging/rtl8188eu/os_dep/mon.o
2025-10-31T06:24:42.1644203Z CC [M] drivers/parport/ieee1284.o
2025-10-31T06:24:42.5678694Z LD [M] drivers/vdpa/mlx5/mlx5_vdpa.o
2025-10-31T06:24:42.6810478Z CC [M] drivers/vdpa/ifcvf/ifcvf_main.o
2025-10-31T06:24:42.7496885Z CC [M] drivers/staging/rtl8188eu/os_dep/os_intfs.o
2025-10-31T06:24:42.8649149Z CC [M] drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.o
2025-10-31T06:24:42.9053296Z CC [M] drivers/staging/ks7010/ks_wlan_net.o
2025-10-31T06:24:43.0359772Z CC [M] drivers/parport/ieee1284_ops.o
2025-10-31T06:24:43.5225212Z CC [M] drivers/vdpa/ifcvf/ifcvf_base.o
2025-10-31T06:24:43.9413457Z CC [M] drivers/parport/procfs.o
2025-10-31T06:24:44.0603423Z CC [M] drivers/staging/rtl8188eu/os_dep/osdep_service.o
2025-10-31T06:24:44.5330070Z LD [M] drivers/vdpa/ifcvf/ifcvf.o
2025-10-31T06:24:44.5755312Z CC [M] drivers/vdpa/vdpa.o
2025-10-31T06:24:44.6356133Z CC [M] drivers/parport/daisy.o
2025-10-31T06:24:44.8262776Z CC [M] drivers/staging/ks7010/ks7010_sdio.o
2025-10-31T06:24:44.9847152Z CC [M] drivers/staging/rtl8723bs/hal/HalHWImg8723B_BB.o
2025-10-31T06:24:45.1019045Z CC [M] drivers/staging/rtl8188eu/os_dep/recv_linux.o
2025-10-31T06:24:45.1686718Z CC [M] drivers/staging/rtl8723bs/hal/HalHWImg8723B_MAC.o
2025-10-31T06:24:45.3337994Z CC [M] drivers/parport/probe.o
2025-10-31T06:24:46.1413637Z CC [M] drivers/parport/parport_pc.o
2025-10-31T06:24:46.1713694Z CC [M] drivers/staging/rtl8188eu/os_dep/rtw_android.o
2025-10-31T06:24:46.1863608Z LD [M] drivers/staging/ks7010/ks7010.o
2025-10-31T06:24:46.2214177Z CC [M] drivers/parport/parport_serial.o
2025-10-31T06:24:46.2400500Z CC [M] drivers/target/loopback/tcm_loop.o
2025-10-31T06:24:46.3555999Z CC [M] drivers/staging/rtl8723bs/hal/HalHWImg8723B_RF.o
2025-10-31T06:24:46.9354977Z CC [M] drivers/target/tcm_fc/tfc_cmd.o
2025-10-31T06:24:47.1060323Z CC [M] drivers/staging/rtl8188eu/os_dep/usb_intf.o
2025-10-31T06:24:47.5633538Z CC [M] drivers/staging/rtl8723bs/hal/HalPhyRf_8723B.o
2025-10-31T06:24:47.5661246Z CC [M] drivers/mtd/chips/chipreg.o
2025-10-31T06:24:47.8661496Z CC [M] drivers/target/tcm_fc/tfc_conf.o
2025-10-31T06:24:48.1756176Z CC [M] drivers/mtd/devices/phram.o
2025-10-31T06:24:48.3709154Z CC [M] drivers/staging/rtl8188eu/os_dep/usb_ops_linux.o
2025-10-31T06:24:48.4293856Z CC [M] drivers/parport/parport_cs.o
2025-10-31T06:24:48.7503514Z CC [M] drivers/mtd/devices/block2mtd.o
2025-10-31T06:24:48.8605915Z CC [M] drivers/target/tcm_fc/tfc_io.o
2025-10-31T06:24:49.3043151Z CC [M] drivers/parport/parport_ax88796.o
2025-10-31T06:24:49.3943956Z CC [M] drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.o
2025-10-31T06:24:49.6036609Z CC [M] drivers/staging/rtl8188eu/os_dep/xmit_linux.o
2025-10-31T06:24:49.9885836Z CC [M] drivers/mtd/nand/raw/nand_base.o
2025-10-31T06:24:49.9936836Z CC [M] drivers/target/tcm_fc/tfc_sess.o
2025-10-31T06:24:50.1630977Z LD [M] drivers/parport/parport.o
2025-10-31T06:24:50.3217225Z CC [M] drivers/staging/rtl8723bs/os_dep/ioctl_linux.o
2025-10-31T06:24:50.7141753Z LD [M] drivers/staging/rtl8188eu/r8188eu.o
2025-10-31T06:24:51.0004071Z CC [M] drivers/staging/rtl8723bs/os_dep/mlme_linux.o
2025-10-31T06:24:51.0974763Z LD [M] drivers/target/tcm_fc/tcm_fc.o
2025-10-31T06:24:51.2313655Z CC [M] drivers/target/iscsi/cxgbit/cxgbit_main.o
2025-10-31T06:24:51.2958031Z CC [M] drivers/target/sbp/sbp_target.o
2025-10-31T06:24:52.1436607Z CC [M] drivers/staging/pi433/pi433_if.o
2025-10-31T06:24:52.9972933Z CC [M] drivers/mtd/nand/raw/nand_legacy.o
2025-10-31T06:24:53.0073715Z CC [M] drivers/mtd/nand/core.o
2025-10-31T06:24:53.0139116Z CC [M] drivers/target/iscsi/cxgbit/cxgbit_cm.o
2025-10-31T06:24:53.2015705Z CC [M] drivers/staging/rtl8723bs/os_dep/osdep_service.o
2025-10-31T06:24:53.5246371Z CC [M] drivers/staging/pi433/rf69.o
2025-10-31T06:24:53.6302813Z CC [M] drivers/mtd/nand/raw/nand_bbt.o
2025-10-31T06:24:53.9006074Z CC [M] drivers/mtd/nand/raw/nand_timings.o
2025-10-31T06:24:54.3913743Z CC [M] drivers/staging/rtl8723bs/os_dep/os_intfs.o
2025-10-31T06:24:54.4117696Z CC [M] drivers/staging/rtl8723bs/os_dep/recv_linux.o
2025-10-31T06:24:54.7028434Z LD [M] drivers/staging/pi433/pi433.o
2025-10-31T06:24:54.7655157Z CC [M] drivers/staging/rtl8723bs/os_dep/sdio_intf.o
2025-10-31T06:24:54.8274426Z CC [M] drivers/mtd/nand/raw/nand_ids.o
2025-10-31T06:24:55.3258920Z CC [M] drivers/mtd/nand/raw/nand_onfi.o
2025-10-31T06:24:55.5755999Z CC [M] drivers/slimbus/core.o
2025-10-31T06:24:55.6223767Z CC [M] drivers/target/iscsi/cxgbit/cxgbit_target.o
2025-10-31T06:24:55.8108746Z CC [M] drivers/target/iscsi/cxgbit/cxgbit_ddp.o
2025-10-31T06:24:55.8489537Z CC [M] drivers/staging/rtl8723bs/os_dep/sdio_ops_linux.o
2025-10-31T06:24:55.8721540Z CC [M] drivers/mtd/nand/raw/nand_jedec.o
2025-10-31T06:24:56.2791238Z CC [M] drivers/slimbus/messaging.o
2025-10-31T06:24:56.5987437Z CC [M] drivers/mtd/nand/raw/nand_amd.o
2025-10-31T06:24:56.7476094Z CC [M] drivers/slimbus/sched.o
2025-10-31T06:24:56.7903082Z CC [M] drivers/staging/rtl8723bs/os_dep/wifi_regd.o
2025-10-31T06:24:57.1677322Z CC [M] drivers/slimbus/stream.o
2025-10-31T06:24:57.2057761Z CC [M] drivers/mtd/nand/raw/nand_esmt.o
2025-10-31T06:24:57.5383514Z CC [M] drivers/staging/rtl8723bs/os_dep/xmit_linux.o
2025-10-31T06:24:57.6458919Z CC [M] drivers/mtd/nand/raw/nand_hynix.o
2025-10-31T06:24:57.7884815Z CC [M] drivers/slimbus/qcom-ctrl.o
2025-10-31T06:24:57.8095129Z LD [M] drivers/target/iscsi/cxgbit/cxgbit.o
2025-10-31T06:24:57.8854390Z CC [M] drivers/target/iscsi/iscsi_target_parameters.o
2025-10-31T06:24:57.8862560Z LD [M] drivers/slimbus/slimbus.o
2025-10-31T06:24:57.9236444Z CC [M] drivers/mtd/nand/bbt.o
2025-10-31T06:24:58.4067722Z CC [M] drivers/mtd/nand/raw/nand_macronix.o
2025-10-31T06:24:58.5138496Z CC [M] drivers/mtd/nand/raw/nand_micron.o
2025-10-31T06:24:58.6244166Z LD [M] drivers/slimbus/slim-qcom-ctrl.o
2025-10-31T06:24:58.7054283Z CC [M] drivers/staging/gasket/gasket_core.o
2025-10-31T06:24:58.9293483Z LD [M] drivers/staging/rtl8723bs/r8723bs.o
2025-10-31T06:24:58.9324402Z CC [M] drivers/target/iscsi/iscsi_target_seq_pdu_list.o
2025-10-31T06:24:59.1737212Z CC [M] drivers/mtd/nand/ecc.o
2025-10-31T06:24:59.2076130Z CC [M] drivers/mtd/nand/raw/nand_samsung.o
2025-10-31T06:24:59.4757638Z CC [M] drivers/target/target_core_configfs.o
2025-10-31T06:24:59.7362821Z CC [M] drivers/mtd/nand/raw/nand_toshiba.o
2025-10-31T06:24:59.8523375Z CC [M] drivers/target/iscsi/iscsi_target_auth.o
2025-10-31T06:24:59.8963719Z CC [M] drivers/target/iscsi/iscsi_target_datain_values.o
2025-10-31T06:25:00.1165797Z CC [M] drivers/staging/gasket/gasket_ioctl.o
2025-10-31T06:25:00.3675177Z CC [M] drivers/mtd/nand/raw/nand_ecc.o
2025-10-31T06:25:00.6447393Z CC [M] drivers/atm/zatm.o
2025-10-31T06:25:00.9092283Z CC [M] drivers/target/iscsi/iscsi_target_device.o
2025-10-31T06:25:00.9975187Z CC [M] drivers/mtd/nand/raw/nandsim.o
2025-10-31T06:25:01.0956333Z CC [M] drivers/staging/gasket/gasket_interrupt.o
2025-10-31T06:25:01.6208731Z CC [M] drivers/target/iscsi/iscsi_target_erl0.o
2025-10-31T06:25:01.7766529Z LD [M] drivers/mtd/nand/raw/nand.o
2025-10-31T06:25:01.8439273Z CC [M] drivers/staging/gasket/gasket_page_table.o
2025-10-31T06:25:02.0170498Z CC [M] drivers/uio/uio.o
2025-10-31T06:25:02.5279063Z CC [M] drivers/target/iscsi/iscsi_target_erl1.o
2025-10-31T06:25:02.7412919Z CC [M] drivers/atm/uPD98402.o
2025-10-31T06:25:02.8522467Z LD [M] drivers/mtd/nand/nandcore.o
2025-10-31T06:25:02.9162307Z CC [M] drivers/mtd/spi-nor/controllers/intel-spi.o
2025-10-31T06:25:03.1440267Z CC [M] drivers/staging/gasket/gasket_sysfs.o
2025-10-31T06:25:03.1590932Z CC [M] drivers/uio/uio_cif.o
2025-10-31T06:25:03.6889052Z CC [M] drivers/target/iscsi/iscsi_target_erl2.o
2025-10-31T06:25:03.9019468Z CC [M] drivers/uio/uio_pdrv_genirq.o
2025-10-31T06:25:03.9050464Z CC [M] drivers/mtd/spi-nor/controllers/intel-spi-pci.o
2025-10-31T06:25:04.0475437Z CC [M] drivers/atm/nicstar.o
2025-10-31T06:25:04.0498057Z CC [M] drivers/staging/gasket/apex_driver.o
2025-10-31T06:25:04.4930377Z CC [M] drivers/uio/uio_dmem_genirq.o
2025-10-31T06:25:04.6753721Z CC [M] drivers/mtd/spi-nor/controllers/intel-spi-platform.o
2025-10-31T06:25:04.7403869Z CC [M] drivers/target/iscsi/iscsi_target_login.o
2025-10-31T06:25:04.8255675Z LD [M] drivers/staging/gasket/gasket.o
2025-10-31T06:25:04.8680404Z LD [M] drivers/staging/gasket/apex.o
2025-10-31T06:25:05.0150523Z CC [M] drivers/staging/fieldbus/dev_core.o
2025-10-31T06:25:05.1813465Z CC [M] drivers/mtd/spi-nor/core.o
2025-10-31T06:25:05.1843318Z CC [M] drivers/uio/uio_aec.o
2025-10-31T06:25:05.9051808Z CC [M] drivers/uio/uio_sercos3.o
2025-10-31T06:25:05.9306391Z LD [M] drivers/staging/fieldbus/fieldbus_dev.o
2025-10-31T06:25:06.0094903Z CC [M] drivers/staging/qlge/qlge_main.o
2025-10-31T06:25:06.4787291Z CC [M] drivers/atm/ambassador.o
2025-10-31T06:25:06.5513996Z CC [M] drivers/target/iscsi/iscsi_target_nego.o
2025-10-31T06:25:06.6498428Z CC [M] drivers/uio/uio_pci_generic.o
2025-10-31T06:25:07.3061323Z CC [M] drivers/mtd/spi-nor/sfdp.o
2025-10-31T06:25:07.3490333Z CC [M] drivers/uio/uio_netx.o
2025-10-31T06:25:08.1069515Z CC [M] drivers/uio/uio_pruss.o
2025-10-31T06:25:08.3254902Z CC [M] drivers/atm/horizon.o
2025-10-31T06:25:08.4327506Z CC [M] drivers/mtd/spi-nor/atmel.o
2025-10-31T06:25:08.5715480Z CC [M] drivers/target/iscsi/iscsi_target_nodeattrib.o
2025-10-31T06:25:09.0060636Z CC [M] drivers/uio/uio_mf624.o
2025-10-31T06:25:09.1353079Z CC [M] drivers/mtd/spi-nor/catalyst.o
2025-10-31T06:25:09.2859304Z CC [M] drivers/target/iscsi/iscsi_target_tmr.o
2025-10-31T06:25:09.7182936Z CC [M] drivers/mtd/spi-nor/eon.o
2025-10-31T06:25:09.7861391Z CC [M] drivers/uio/uio_hv_generic.o
2025-10-31T06:25:09.8206765Z CC [M] drivers/staging/qlge/qlge_dbg.o
2025-10-31T06:25:10.0211283Z CC [M] drivers/atm/iphase.o
2025-10-31T06:25:10.3360820Z CC [M] drivers/target/iscsi/iscsi_target_tpg.o
2025-10-31T06:25:10.4292650Z CC [M] drivers/mtd/spi-nor/esmt.o
2025-10-31T06:25:10.7183966Z CC [M] drivers/staging/wfx/bh.o
2025-10-31T06:25:11.2113876Z CC [M] drivers/mtd/spi-nor/everspin.o
2025-10-31T06:25:11.3668254Z CC [M] drivers/staging/qlge/qlge_mpi.o
2025-10-31T06:25:11.6091405Z CC [M] drivers/target/iscsi/iscsi_target_util.o
2025-10-31T06:25:12.0091482Z CC [M] drivers/mtd/spi-nor/fujitsu.o
2025-10-31T06:25:12.0705443Z CC [M] drivers/staging/wfx/hwio.o
2025-10-31T06:25:12.5488608Z CC [M] drivers/staging/qlge/qlge_ethtool.o
2025-10-31T06:25:12.5959395Z CC [M] drivers/atm/suni.o
2025-10-31T06:25:12.7578684Z CC [M] drivers/mtd/spi-nor/gigadevice.o
2025-10-31T06:25:13.4945871Z CC [M] drivers/staging/wfx/fwio.o
2025-10-31T06:25:13.5012590Z CC [M] drivers/target/iscsi/iscsi_target.o
2025-10-31T06:25:13.5547845Z CC [M] drivers/mtd/spi-nor/intel.o
2025-10-31T06:25:13.7519963Z LD [M] drivers/staging/qlge/qlge.o
2025-10-31T06:25:13.7989941Z CC [M] drivers/target/target_core_device.o
2025-10-31T06:25:14.2069265Z CC [M] drivers/atm/fore200e.o
2025-10-31T06:25:14.3990129Z CC [M] drivers/mtd/spi-nor/issi.o
2025-10-31T06:25:15.0599352Z CC [M] drivers/mtd/spi-nor/macronix.o
2025-10-31T06:25:15.0729616Z CC [M] drivers/staging/wfx/hif_tx_mib.o
2025-10-31T06:25:15.4177101Z CC [M] drivers/mtd/ubi/vtbl.o
2025-10-31T06:25:15.6289503Z CC [M] drivers/mtd/spi-nor/micron-st.o
2025-10-31T06:25:16.2012793Z CC [M] drivers/mtd/spi-nor/spansion.o
2025-10-31T06:25:16.4919107Z CC [M] drivers/atm/eni.o
2025-10-31T06:25:16.5184813Z CC [M] drivers/mtd/ubi/vmt.o
2025-10-31T06:25:16.5840844Z CC [M] drivers/staging/wfx/hif_tx.o
2025-10-31T06:25:16.8424266Z CC [M] drivers/mtd/spi-nor/sst.o
2025-10-31T06:25:16.9493813Z CC [M] drivers/target/iscsi/iscsi_target_configfs.o
2025-10-31T06:25:17.4546475Z CC [M] drivers/mtd/ubi/upd.o
2025-10-31T06:25:17.5001607Z CC [M] drivers/mtd/spi-nor/winbond.o
2025-10-31T06:25:18.2093355Z CC [M] drivers/mtd/spi-nor/xilinx.o
2025-10-31T06:25:18.2761613Z CC [M] drivers/mtd/ubi/build.o
2025-10-31T06:25:18.3327762Z CC [M] drivers/staging/wfx/hif_rx.o
2025-10-31T06:25:18.9755377Z CC [M] drivers/mtd/spi-nor/xmc.o
2025-10-31T06:25:19.0601190Z CC [M] drivers/atm/idt77252.o
2025-10-31T06:25:19.3520423Z CC [M] drivers/mtd/ubi/cdev.o
2025-10-31T06:25:19.6097887Z CC [M] drivers/staging/wfx/queue.o
2025-10-31T06:25:19.7254367Z LD [M] drivers/mtd/spi-nor/spi-nor.o
2025-10-31T06:25:19.7993263Z CC [M] drivers/atm/solos-pci.o
2025-10-31T06:25:19.8297602Z CC [M] drivers/target/iscsi/iscsi_target_stat.o
2025-10-31T06:25:20.4897907Z CC [M] drivers/mtd/ubi/kapi.o
2025-10-31T06:25:20.7481568Z CC [M] drivers/target/iscsi/iscsi_target_transport.o
2025-10-31T06:25:21.1709169Z CC [M] drivers/staging/wfx/data_tx.o
2025-10-31T06:25:21.5395662Z LD [M] drivers/target/iscsi/iscsi_target_mod.o
2025-10-31T06:25:21.6205195Z CC [M] drivers/mtd/ubi/eba.o
2025-10-31T06:25:21.6422926Z CC [M] drivers/target/target_core_fabric_configfs.o
2025-10-31T06:25:21.6809604Z CC [M] drivers/atm/atmtcp.o
2025-10-31T06:25:21.6926671Z CC [M] drivers/staging/wfx/data_rx.o
2025-10-31T06:25:22.7863749Z CC [M] drivers/target/target_core_fabric_lib.o
2025-10-31T06:25:22.8646719Z CC [M] drivers/staging/wfx/scan.o
2025-10-31T06:25:22.9044884Z CC [M] drivers/vfio/pci/vfio_pci.o
2025-10-31T06:25:22.9790504Z CC [M] drivers/atm/firestream.o
2025-10-31T06:25:23.1510778Z CC [M] drivers/mtd/ubi/io.o
2025-10-31T06:25:23.4323136Z CC [M] drivers/target/target_core_hba.o
2025-10-31T06:25:24.1639572Z CC [M] drivers/staging/wfx/sta.o
2025-10-31T06:25:24.3216806Z CC [M] drivers/mtd/ubi/wl.o
2025-10-31T06:25:24.6817777Z CC [M] drivers/target/target_core_pr.o
2025-10-31T06:25:24.7280229Z CC [M] drivers/vfio/pci/vfio_pci_intrs.o
2025-10-31T06:25:24.9793698Z CC [M] drivers/atm/lanai.o
2025-10-31T06:25:25.7893371Z CC [M] drivers/vfio/pci/vfio_pci_rdwr.o
2025-10-31T06:25:25.8874637Z CC [M] drivers/staging/wfx/key.o
2025-10-31T06:25:25.9698128Z CC [M] drivers/mtd/ubi/attach.o
2025-10-31T06:25:26.8298613Z CC [M] drivers/vfio/pci/vfio_pci_config.o
2025-10-31T06:25:26.9143900Z CC [M] drivers/target/target_core_alua.o
2025-10-31T06:25:27.0156056Z CC [M] drivers/atm/he.o
2025-10-31T06:25:27.3114317Z CC [M] drivers/staging/wfx/main.o
2025-10-31T06:25:27.3944492Z CC [M] drivers/mtd/ubi/misc.o
2025-10-31T06:25:28.2326099Z CC [M] drivers/mtd/ubi/debug.o
2025-10-31T06:25:28.3154717Z CC [M] drivers/vfio/pci/vfio_pci_igd.o
2025-10-31T06:25:28.4539324Z CC [M] drivers/target/target_core_tmr.o
2025-10-31T06:25:28.9691010Z CC [M] drivers/staging/wfx/debug.o
2025-10-31T06:25:29.0232914Z CC [M] drivers/target/target_core_tpg.o
2025-10-31T06:25:29.0733415Z LD [M] drivers/vfio/pci/vfio-pci.o
2025-10-31T06:25:29.1123960Z LD [M] drivers/mtd/ubi/ubi.o
2025-10-31T06:25:29.1401115Z CC [M] drivers/vfio/mdev/mdev_core.o
2025-10-31T06:25:29.1894930Z CC [M] drivers/mtd/mtdcore.o
2025-10-31T06:25:29.2657868Z LD [M] drivers/atm/fore_200e.o
2025-10-31T06:25:29.3581457Z CC [M] drivers/vfio/mdev/mdev_sysfs.o
2025-10-31T06:25:29.8310568Z AR drivers/staging/built-in.a
2025-10-31T06:25:29.8569820Z CC [M] drivers/pcmcia/cs.o
2025-10-31T06:25:30.0076952Z CC [M] drivers/vfio/mdev/mdev_driver.o
2025-10-31T06:25:30.4329621Z CC [M] drivers/target/target_core_transport.o
2025-10-31T06:25:30.6912460Z CC [M] drivers/vfio/mdev/vfio_mdev.o
2025-10-31T06:25:30.9973352Z CC [M] drivers/mtd/mtdsuper.o
2025-10-31T06:25:31.0497458Z CC [M] drivers/pcmcia/socket_sysfs.o
2025-10-31T06:25:31.2977312Z CC [M] drivers/staging/wfx/bus_spi.o
2025-10-31T06:25:31.4952681Z LD [M] drivers/vfio/mdev/mdev.o
2025-10-31T06:25:31.5643187Z CC [M] drivers/vfio/vfio.o
2025-10-31T06:25:31.7352742Z CC [M] drivers/mtd/mtdconcat.o
2025-10-31T06:25:31.7563171Z CC [M] drivers/pcmcia/cardbus.o
2025-10-31T06:25:32.4769353Z CC [M] drivers/pcmcia/ds.o
2025-10-31T06:25:32.7474179Z CC [M] drivers/staging/wfx/bus_sdio.o
2025-10-31T06:25:33.0350461Z CC [M] drivers/mtd/mtdpart.o
2025-10-31T06:25:33.1301296Z CC [M] drivers/vfio/virqfd.o
2025-10-31T06:25:33.2875489Z CC [M] drivers/target/target_core_sbc.o
2025-10-31T06:25:33.7705493Z CC [M] drivers/pcmcia/pcmcia_resource.o
2025-10-31T06:25:34.0190548Z CC [M] drivers/mtd/mtdchar.o
2025-10-31T06:25:34.0433565Z CC [M] drivers/vfio/vfio_iommu_type1.o
2025-10-31T06:25:34.1423350Z LD [M] drivers/staging/wfx/wfx.o
2025-10-31T06:25:34.2702397Z CC [M] drivers/target/target_core_spc.o
2025-10-31T06:25:34.9420628Z LD [M] drivers/vfio/vfio_virqfd.o
2025-10-31T06:25:34.9665928Z CC [M] drivers/pcmcia/cistpl.o
2025-10-31T06:25:35.1834818Z CC [M] drivers/mtd/mtd_blkdevs.o
2025-10-31T06:25:35.2196969Z CC [M] drivers/pcmcia/pcmcia_cis.o
2025-10-31T06:25:35.4586370Z CC [M] drivers/target/target_core_ua.o
2025-10-31T06:25:36.0341227Z CC [M] drivers/target/target_core_rd.o
2025-10-31T06:25:36.3241569Z CC [M] drivers/pcmcia/rsrc_mgr.o
2025-10-31T06:25:36.3442458Z CC [M] drivers/target/target_core_stat.o
2025-10-31T06:25:36.3483007Z CC [M] drivers/mtd/mtdblock.o
2025-10-31T06:25:36.6594009Z CC [M] drivers/block/aoe/aoeblk.o
2025-10-31T06:25:36.9724794Z LD [M] drivers/mtd/mtd.o
2025-10-31T06:25:36.9949464Z CC [M] drivers/input/gameport/gameport.o
2025-10-31T06:25:37.0215364Z CC [M] drivers/pcmcia/rsrc_nonstatic.o
2025-10-31T06:25:37.0472482Z CC [M] drivers/input/gameport/emu10k1-gp.o
2025-10-31T06:25:37.4619455Z CC [M] drivers/target/target_core_xcopy.o
2025-10-31T06:25:37.8266368Z CC [M] drivers/pcmcia/yenta_socket.o
2025-10-31T06:25:37.8560139Z CC [M] drivers/block/aoe/aoechr.o
2025-10-31T06:25:37.8968667Z CC [M] drivers/input/gameport/fm801-gp.o
2025-10-31T06:25:38.0040392Z CC [M] drivers/w1/masters/matrox_w1.o
2025-10-31T06:25:38.4093627Z CC [M] drivers/target/target_core_iblock.o
2025-10-31T06:25:38.6320326Z CC [M] drivers/input/gameport/lightning.o
2025-10-31T06:25:38.8127062Z CC [M] drivers/block/aoe/aoecmd.o
2025-10-31T06:25:38.8281075Z CC [M] drivers/w1/masters/ds2490.o
2025-10-31T06:25:39.3592343Z CC [M] drivers/input/gameport/ns558.o
2025-10-31T06:25:39.6472943Z CC [M] drivers/target/target_core_file.o
2025-10-31T06:25:39.6888853Z CC [M] drivers/w1/masters/ds2482.o
2025-10-31T06:25:39.9883838Z CC [M] drivers/pcmcia/pd6729.o
2025-10-31T06:25:40.2266294Z CC [M] drivers/pcmcia/i82092.o
2025-10-31T06:25:40.3318105Z CC [M] drivers/w1/masters/ds1wm.o
2025-10-31T06:25:40.8632538Z CC [M] drivers/target/target_core_pscsi.o
2025-10-31T06:25:40.8901138Z CC [M] drivers/block/aoe/aoedev.o
2025-10-31T06:25:41.2052226Z CC [M] drivers/w1/masters/w1-gpio.o
2025-10-31T06:25:41.2361485Z CC [M] drivers/w1/slaves/w1_therm.o
2025-10-31T06:25:41.2801612Z LD [M] drivers/pcmcia/pcmcia_core.o
2025-10-31T06:25:41.3151707Z LD [M] drivers/pcmcia/pcmcia.o
2025-10-31T06:25:41.3634596Z LD [M] drivers/pcmcia/pcmcia_rsrc.o
2025-10-31T06:25:41.4704723Z CC [M] drivers/block/aoe/aoemain.o
2025-10-31T06:25:41.6498295Z CC [M] drivers/w1/masters/sgi_w1.o
2025-10-31T06:25:42.1118026Z CC [M] drivers/block/aoe/aoenet.o
2025-10-31T06:25:42.1427773Z CC [M] drivers/w1/w1.o
2025-10-31T06:25:42.1455879Z CC [M] drivers/target/target_core_user.o
2025-10-31T06:25:42.1731602Z LD [M] drivers/target/target_core_mod.o
2025-10-31T06:25:42.2986286Z CC [M] drivers/w1/w1_int.o
2025-10-31T06:25:42.5004700Z CC [M] drivers/w1/slaves/w1_smem.o
2025-10-31T06:25:42.8889794Z CC [M] drivers/w1/slaves/w1_ds2405.o
2025-10-31T06:25:43.0176213Z LD [M] drivers/block/aoe/aoe.o
2025-10-31T06:25:43.0622369Z CC [M] drivers/w1/w1_family.o
2025-10-31T06:25:43.3794863Z CC [M] drivers/w1/slaves/w1_ds2408.o
2025-10-31T06:25:43.5393513Z CC [M] drivers/w1/slaves/w1_ds2413.o
2025-10-31T06:25:43.5896584Z CC [M] drivers/w1/slaves/w1_ds2406.o
2025-10-31T06:25:43.8662404Z CC [M] drivers/w1/slaves/w1_ds2423.o
2025-10-31T06:25:44.0128189Z CC [M] drivers/w1/w1_netlink.o
2025-10-31T06:25:44.0356706Z CC [M] drivers/w1/w1_io.o
2025-10-31T06:25:44.2234256Z CC [M] drivers/bluetooth/hci_vhci.o
2025-10-31T06:25:44.4124554Z CC [M] drivers/w1/slaves/w1_ds2430.o
2025-10-31T06:25:44.6299185Z CC [M] drivers/w1/slaves/w1_ds2431.o
2025-10-31T06:25:44.7186350Z CC [M] drivers/w1/slaves/w1_ds2805.o
2025-10-31T06:25:45.0974539Z CC [M] drivers/memstick/core/memstick.o
2025-10-31T06:25:45.1627111Z CC [M] drivers/memstick/core/ms_block.o
2025-10-31T06:25:45.2793245Z CC [M] drivers/memstick/host/tifm_ms.o
2025-10-31T06:25:45.3618103Z CC [M] drivers/w1/slaves/w1_ds2433.o
2025-10-31T06:25:45.5757468Z CC [M] drivers/bluetooth/hci_ldisc.o
2025-10-31T06:25:45.9769860Z CC [M] drivers/infiniband/core/packer.o
2025-10-31T06:25:45.9983450Z CC [M] drivers/w1/slaves/w1_ds2438.o
2025-10-31T06:25:46.3018939Z CC [M] drivers/memstick/host/jmb38x_ms.o
2025-10-31T06:25:46.7229726Z CC [M] drivers/w1/slaves/w1_ds250x.o
2025-10-31T06:25:46.8876761Z CC [M] drivers/memstick/core/mspro_block.o
2025-10-31T06:25:47.1880277Z CC [M] drivers/bluetooth/hci_serdev.o
2025-10-31T06:25:47.3206404Z CC [M] drivers/w1/slaves/w1_ds2780.o
2025-10-31T06:25:47.3231885Z CC [M] drivers/infiniband/core/ud_header.o
2025-10-31T06:25:47.3802752Z CC [M] drivers/memstick/host/r592.o
2025-10-31T06:25:47.8039016Z CC [M] drivers/w1/slaves/w1_ds2781.o
2025-10-31T06:25:48.3515331Z CC [M] drivers/bluetooth/hci_h4.o
2025-10-31T06:25:48.3978882Z CC [M] drivers/infiniband/core/verbs.o
2025-10-31T06:25:48.3986971Z CC [M] drivers/infiniband/hw/mthca/mthca_main.o
2025-10-31T06:25:48.4448783Z CC [M] drivers/w1/slaves/w1_ds28e04.o
2025-10-31T06:25:48.4672696Z CC [M] drivers/memstick/host/rtsx_pci_ms.o
2025-10-31T06:25:49.1036135Z CC [M] drivers/w1/slaves/w1_ds28e17.o
2025-10-31T06:25:49.5369918Z CC [M] drivers/memstick/host/rtsx_usb_ms.o
2025-10-31T06:25:49.6913333Z CC [M] drivers/bluetooth/hci_bcsp.o
2025-10-31T06:25:49.9427874Z CC [M] drivers/infiniband/hw/mthca/mthca_cmd.o
2025-10-31T06:25:50.1900734Z LD [M] drivers/w1/wire.o
2025-10-31T06:25:50.2340779Z CC [M] drivers/bluetooth/hci_ll.o
2025-10-31T06:25:50.7499363Z CC [M] drivers/infiniband/core/cq.o
2025-10-31T06:25:50.8201313Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_main.o
2025-10-31T06:25:51.1156188Z CC [M] drivers/infiniband/ulp/srp/ib_srp.o
2025-10-31T06:25:51.5032710Z CC [M] drivers/bluetooth/hci_ath.o
2025-10-31T06:25:52.0432643Z CC [M] drivers/infiniband/hw/mthca/mthca_profile.o
2025-10-31T06:25:52.3035717Z CC [M] drivers/infiniband/core/rw.o
2025-10-31T06:25:52.8023651Z CC [M] drivers/bluetooth/hci_h5.o
2025-10-31T06:25:53.4588184Z CC [M] drivers/infiniband/hw/mthca/mthca_reset.o
2025-10-31T06:25:53.8123628Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_ib.o
2025-10-31T06:25:53.8783404Z CC [M] drivers/infiniband/core/sysfs.o
2025-10-31T06:25:54.2479371Z CC [M] drivers/dca/dca-core.o
2025-10-31T06:25:54.9126417Z CC [M] drivers/bluetooth/hci_intel.o
2025-10-31T06:25:54.9457711Z CC [M] drivers/infiniband/hw/mthca/mthca_allocator.o
2025-10-31T06:25:55.0554434Z CC [M] drivers/dca/dca-sysfs.o
2025-10-31T06:25:55.4580750Z CC [M] drivers/infiniband/core/device.o
2025-10-31T06:25:55.8080350Z LD [M] drivers/dca/dca.o
2025-10-31T06:25:55.8398718Z CC [M] drivers/bluetooth/hci_bcm.o
2025-10-31T06:25:55.8835160Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_multicast.o
2025-10-31T06:25:56.3478602Z CC [M] drivers/infiniband/hw/mthca/mthca_eq.o
2025-10-31T06:25:56.8848725Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_verbs.o
2025-10-31T06:25:57.3287580Z CC [M] drivers/bluetooth/hci_qca.o
2025-10-31T06:25:57.7303588Z CC [M] drivers/infiniband/sw/rdmavt/vt.o
2025-10-31T06:25:58.1094702Z CC [M] drivers/infiniband/hw/mthca/mthca_pd.o
2025-10-31T06:25:58.2478458Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_vlan.o
2025-10-31T06:25:58.4277547Z CC [M] drivers/infiniband/core/cache.o
2025-10-31T06:25:59.0920573Z CC [M] drivers/infiniband/sw/rdmavt/ah.o
2025-10-31T06:25:59.4971691Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_ethtool.o
2025-10-31T06:25:59.5052827Z CC [M] drivers/infiniband/hw/mthca/mthca_cq.o
2025-10-31T06:25:59.5870872Z CC [M] drivers/bluetooth/hci_ag6xx.o
2025-10-31T06:26:00.3717564Z CC [M] drivers/infiniband/sw/rdmavt/cq.o
2025-10-31T06:26:00.6234662Z CC [M] drivers/infiniband/core/netlink.o
2025-10-31T06:26:00.6631752Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_netlink.o
2025-10-31T06:26:00.8391278Z CC [M] drivers/bluetooth/hci_mrvl.o
2025-10-31T06:26:01.0286803Z CC [M] drivers/infiniband/hw/mthca/mthca_mr.o
2025-10-31T06:26:01.7356556Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_cm.o
2025-10-31T06:26:01.9855295Z CC [M] drivers/infiniband/core/roce_gid_mgmt.o
2025-10-31T06:26:02.1010489Z CC [M] drivers/infiniband/sw/rdmavt/mad.o
2025-10-31T06:26:02.4701812Z CC [M] drivers/infiniband/hw/mthca/mthca_qp.o
2025-10-31T06:26:02.4980697Z CC [M] drivers/bluetooth/bcm203x.o
2025-10-31T06:26:03.4855620Z CC [M] drivers/infiniband/sw/rdmavt/mcast.o
2025-10-31T06:26:03.7085664Z CC [M] drivers/infiniband/core/mr_pool.o
2025-10-31T06:26:03.7617683Z CC [M] drivers/bluetooth/bpa10x.o
2025-10-31T06:26:04.0841108Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_fs.o
2025-10-31T06:26:04.7687130Z CC [M] drivers/infiniband/core/addr.o
2025-10-31T06:26:04.8837051Z CC [M] drivers/infiniband/sw/rdmavt/mmap.o
2025-10-31T06:26:05.0073904Z CC [M] drivers/infiniband/hw/mthca/mthca_av.o
2025-10-31T06:26:05.1891334Z CC [M] drivers/bluetooth/bfusb.o
2025-10-31T06:26:05.3840934Z LD [M] drivers/infiniband/ulp/ipoib/ib_ipoib.o
2025-10-31T06:26:05.5455171Z CC [M] drivers/infiniband/ulp/srpt/ib_srpt.o
2025-10-31T06:26:06.1922722Z CC [M] drivers/infiniband/sw/rdmavt/mr.o
2025-10-31T06:26:06.3681722Z CC [M] drivers/infiniband/hw/mthca/mthca_mcg.o
2025-10-31T06:26:06.4242998Z CC [M] drivers/infiniband/core/sa_query.o
2025-10-31T06:26:06.6434818Z CC [M] drivers/bluetooth/dtl1_cs.o
2025-10-31T06:26:07.7601266Z CC [M] drivers/infiniband/hw/mthca/mthca_mad.o
2025-10-31T06:26:07.9513551Z CC [M] drivers/bluetooth/bt3c_cs.o
2025-10-31T06:26:08.1142242Z CC [M] drivers/infiniband/sw/rdmavt/pd.o
2025-10-31T06:26:08.5114399Z CC [M] drivers/infiniband/ulp/iser/iser_verbs.o
2025-10-31T06:26:08.9824412Z CC [M] drivers/infiniband/core/multicast.o
2025-10-31T06:26:09.2320399Z CC [M] drivers/bluetooth/bluecard_cs.o
2025-10-31T06:26:09.2776531Z CC [M] drivers/infiniband/sw/rdmavt/qp.o
2025-10-31T06:26:09.3754704Z CC [M] drivers/infiniband/hw/mthca/mthca_provider.o
2025-10-31T06:26:10.2713231Z CC [M] drivers/infiniband/ulp/iser/iser_initiator.o
2025-10-31T06:26:10.5424441Z CC [M] drivers/infiniband/core/mad.o
2025-10-31T06:26:10.6528800Z CC [M] drivers/bluetooth/btusb.o
2025-10-31T06:26:11.1405632Z CC [M] drivers/infiniband/hw/mthca/mthca_memfree.o
2025-10-31T06:26:12.1684397Z CC [M] drivers/infiniband/ulp/iser/iser_memory.o
2025-10-31T06:26:12.5515054Z CC [M] drivers/infiniband/sw/rdmavt/rc.o
2025-10-31T06:26:12.8804111Z CC [M] drivers/infiniband/hw/mthca/mthca_uar.o
2025-10-31T06:26:13.5671163Z CC [M] drivers/infiniband/ulp/iser/iscsi_iser.o
2025-10-31T06:26:13.6420028Z CC [M] drivers/bluetooth/btsdio.o
2025-10-31T06:26:14.0487782Z CC [M] drivers/infiniband/sw/rdmavt/srq.o
2025-10-31T06:26:14.1266727Z CC [M] drivers/infiniband/hw/mthca/mthca_srq.o
2025-10-31T06:26:14.1631406Z CC [M] drivers/infiniband/core/smi.o
2025-10-31T06:26:14.8817305Z CC [M] drivers/bluetooth/btintel.o
2025-10-31T06:26:15.0250084Z LD [M] drivers/infiniband/ulp/iser/ib_iser.o
2025-10-31T06:26:15.0852688Z CC [M] drivers/infiniband/ulp/isert/ib_isert.o
2025-10-31T06:26:15.2663489Z CC [M] drivers/infiniband/core/agent.o
2025-10-31T06:26:15.4464963Z CC [M] drivers/infiniband/sw/rdmavt/trace.o
2025-10-31T06:26:15.8650575Z CC [M] drivers/infiniband/hw/mthca/mthca_catas.o
2025-10-31T06:26:16.4367852Z CC [M] drivers/bluetooth/ath3k.o
2025-10-31T06:26:16.5646561Z CC [M] drivers/infiniband/core/mad_rmpp.o
2025-10-31T06:26:17.2414114Z LD [M] drivers/infiniband/hw/mthca/ib_mthca.o
2025-10-31T06:26:17.3504717Z CC [M] drivers/infiniband/hw/qib/qib_diag.o
2025-10-31T06:26:17.6670463Z CC [M] drivers/bluetooth/btmrvl_main.o
2025-10-31T06:26:17.8763362Z LD [M] drivers/infiniband/sw/rdmavt/rdmavt.o
2025-10-31T06:26:18.0000844Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_netdev.o
2025-10-31T06:26:18.0245093Z CC [M] drivers/infiniband/sw/rxe/rxe.o
2025-10-31T06:26:18.3678063Z CC [M] drivers/infiniband/core/nldev.o
2025-10-31T06:26:18.7358075Z CC [M] drivers/infiniband/hw/qib/qib_driver.o
2025-10-31T06:26:19.1137975Z CC [M] drivers/bluetooth/btmrvl_debugfs.o
2025-10-31T06:26:19.2981291Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.o
2025-10-31T06:26:19.6333803Z CC [M] drivers/infiniband/sw/rxe/rxe_comp.o
2025-10-31T06:26:20.2103609Z CC [M] drivers/bluetooth/btmrvl_sdio.o
2025-10-31T06:26:20.3795447Z CC [M] drivers/infiniband/hw/qib/qib_eeprom.o
2025-10-31T06:26:20.7089945Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_ethtool.o
2025-10-31T06:26:20.7840086Z CC [M] drivers/infiniband/core/restrack.o
2025-10-31T06:26:21.1866196Z CC [M] drivers/infiniband/sw/rxe/rxe_req.o
2025-10-31T06:26:21.8201311Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.o
2025-10-31T06:26:21.8221382Z CC [M] drivers/infiniband/hw/qib/qib_file_ops.o
2025-10-31T06:26:21.8692251Z CC [M] drivers/bluetooth/btmtksdio.o
2025-10-31T06:26:22.4555190Z CC [M] drivers/infiniband/core/counters.o
2025-10-31T06:26:22.8183733Z CC [M] drivers/infiniband/sw/rxe/rxe_resp.o
2025-10-31T06:26:23.2333983Z CC [M] drivers/bluetooth/btmtkuart.o
2025-10-31T06:26:23.3363978Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_vema_iface.o
2025-10-31T06:26:24.1272278Z CC [M] drivers/infiniband/core/ib_core_uverbs.o
2025-10-31T06:26:24.4587174Z CC [M] drivers/infiniband/hw/qib/qib_fs.o
2025-10-31T06:26:24.4664088Z CC [M] drivers/bluetooth/btbcm.o
2025-10-31T06:26:24.5621787Z LD [M] drivers/infiniband/ulp/opa_vnic/opa_vnic.o
2025-10-31T06:26:24.6256221Z CC [M] drivers/infiniband/ulp/rtrs/rtrs.o
2025-10-31T06:26:24.9525094Z CC [M] drivers/infiniband/sw/rxe/rxe_recv.o
2025-10-31T06:26:25.5691325Z CC [M] drivers/infiniband/core/trace.o
2025-10-31T06:26:25.7764420Z CC [M] drivers/infiniband/hw/qib/qib_init.o
2025-10-31T06:26:26.1171842Z CC [M] drivers/bluetooth/btrtl.o
2025-10-31T06:26:26.2191757Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-clt.o
2025-10-31T06:26:26.3936426Z CC [M] drivers/infiniband/sw/rxe/rxe_pool.o
2025-10-31T06:26:27.3372422Z CC [M] drivers/infiniband/core/lag.o
2025-10-31T06:26:27.7116441Z CC [M] drivers/bluetooth/btqca.o
2025-10-31T06:26:27.9290317Z CC [M] drivers/infiniband/sw/rxe/rxe_queue.o
2025-10-31T06:26:28.0315298Z CC [M] drivers/infiniband/hw/qib/qib_intr.o
2025-10-31T06:26:28.5235363Z CC [M] drivers/infiniband/core/security.o
2025-10-31T06:26:28.5876717Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-clt-stats.o
2025-10-31T06:26:29.2618255Z CC [M] drivers/infiniband/sw/rxe/rxe_verbs.o
2025-10-31T06:26:29.3230130Z CC [M] drivers/infiniband/hw/qib/qib_mad.o
2025-10-31T06:26:29.4664387Z CC [M] drivers/bluetooth/hci_nokia.o
2025-10-31T06:26:29.7588857Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-clt-sysfs.o
2025-10-31T06:26:30.1739812Z CC [M] drivers/infiniband/core/cgroup.o
2025-10-31T06:26:30.8786362Z CC [M] drivers/bluetooth/btrsi.o
2025-10-31T06:26:30.9515502Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-srv.o
2025-10-31T06:26:31.1582891Z CC [M] drivers/infiniband/sw/rxe/rxe_av.o
2025-10-31T06:26:31.3874531Z CC [M] drivers/infiniband/core/cm.o
2025-10-31T06:26:31.7058591Z CC [M] drivers/infiniband/hw/qib/qib_pcie.o
2025-10-31T06:26:32.1043723Z LD [M] drivers/bluetooth/hci_uart.o
2025-10-31T06:26:32.1596606Z LD [M] drivers/bluetooth/btmrvl.o
2025-10-31T06:26:32.3013840Z CC [M] drivers/infiniband/hw/qib/qib_pio_copy.o
2025-10-31T06:26:32.3907425Z CC [M] drivers/infiniband/sw/rxe/rxe_srq.o
2025-10-31T06:26:32.9767966Z CC [M] drivers/infiniband/hw/cxgb4/device.o
2025-10-31T06:26:33.4415972Z CC [M] drivers/infiniband/hw/qib/qib_qp.o
2025-10-31T06:26:33.4965195Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-srv-stats.o
2025-10-31T06:26:33.8053570Z CC [M] drivers/infiniband/sw/rxe/rxe_qp.o
2025-10-31T06:26:34.6514929Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-srv-sysfs.o
2025-10-31T06:26:35.1136088Z CC [M] drivers/infiniband/hw/cxgb4/cm.o
2025-10-31T06:26:35.1458585Z CC [M] drivers/infiniband/hw/qib/qib_qsfp.o
2025-10-31T06:26:35.4853105Z CC [M] drivers/infiniband/sw/rxe/rxe_cq.o
2025-10-31T06:26:36.0349307Z LD [M] drivers/infiniband/ulp/rtrs/rtrs-core.o
2025-10-31T06:26:36.0694106Z LD [M] drivers/infiniband/ulp/rtrs/rtrs-client.o
2025-10-31T06:26:36.1191019Z LD [M] drivers/infiniband/ulp/rtrs/rtrs-server.o
2025-10-31T06:26:36.2812680Z CC [M] drivers/infiniband/hw/efa/efa_com_cmd.o
2025-10-31T06:26:36.6663349Z CC [M] drivers/infiniband/hw/qib/qib_rc.o
2025-10-31T06:26:36.8039204Z CC [M] drivers/infiniband/core/cm_trace.o
2025-10-31T06:26:36.8467495Z CC [M] drivers/infiniband/sw/rxe/rxe_mr.o
2025-10-31T06:26:37.9344739Z CC [M] drivers/infiniband/hw/efa/efa_com.o
2025-10-31T06:26:38.6000653Z CC [M] drivers/infiniband/sw/rxe/rxe_opcode.o
2025-10-31T06:26:38.8328331Z CC [M] drivers/infiniband/core/iwcm.o
2025-10-31T06:26:38.9614445Z CC [M] drivers/infiniband/hw/qib/qib_ruc.o
2025-10-31T06:26:39.3544756Z CC [M] drivers/infiniband/hw/cxgb4/provider.o
2025-10-31T06:26:39.5404375Z CC [M] drivers/infiniband/hw/efa/efa_main.o
2025-10-31T06:26:39.6811270Z CC [M] drivers/infiniband/sw/rxe/rxe_mmap.o
2025-10-31T06:26:40.3010415Z CC [M] drivers/infiniband/hw/qib/qib_sdma.o
2025-10-31T06:26:40.7315298Z CC [M] drivers/infiniband/core/iwpm_util.o
2025-10-31T06:26:40.9726132Z CC [M] drivers/infiniband/hw/cxgb4/mem.o
2025-10-31T06:26:41.1092789Z CC [M] drivers/infiniband/hw/efa/efa_verbs.o
2025-10-31T06:26:41.1885584Z CC [M] drivers/infiniband/sw/rxe/rxe_icrc.o
2025-10-31T06:26:41.8661032Z CC [M] drivers/infiniband/hw/qib/qib_sysfs.o
2025-10-31T06:26:42.1696878Z CC [M] drivers/infiniband/core/iwpm_msg.o
2025-10-31T06:26:42.4643518Z CC [M] drivers/infiniband/sw/rxe/rxe_mcast.o
2025-10-31T06:26:42.9254905Z CC [M] drivers/infiniband/hw/cxgb4/cq.o
2025-10-31T06:26:43.1847348Z CC [M] drivers/infiniband/core/cma.o
2025-10-31T06:26:43.2049947Z CC [M] drivers/infiniband/hw/qib/qib_twsi.o
2025-10-31T06:26:43.7124527Z LD [M] drivers/infiniband/hw/efa/efa.o
2025-10-31T06:26:43.7738659Z CC [M] drivers/infiniband/sw/siw/siw_cm.o
2025-10-31T06:26:44.0490250Z CC [M] drivers/infiniband/sw/rxe/rxe_task.o
2025-10-31T06:26:44.6838599Z CC [M] drivers/infiniband/hw/qib/qib_tx.o
2025-10-31T06:26:45.2643625Z CC [M] drivers/infiniband/hw/cxgb4/qp.o
2025-10-31T06:26:45.2645157Z CC [M] drivers/infiniband/sw/rxe/rxe_net.o
2025-10-31T06:26:46.1003691Z CC [M] drivers/infiniband/sw/siw/siw_cq.o
2025-10-31T06:26:46.2585642Z CC [M] drivers/infiniband/hw/qib/qib_uc.o
2025-10-31T06:26:46.8774956Z CC [M] drivers/infiniband/sw/rxe/rxe_sysfs.o
2025-10-31T06:26:47.4589736Z CC [M] drivers/infiniband/sw/siw/siw_main.o
2025-10-31T06:26:47.6023686Z CC [M] drivers/infiniband/core/cma_trace.o
2025-10-31T06:26:47.7631865Z CC [M] drivers/infiniband/hw/qib/qib_ud.o
2025-10-31T06:26:48.3394129Z CC [M] drivers/infiniband/sw/rxe/rxe_hw_counters.o
2025-10-31T06:26:48.6440628Z CC [M] drivers/infiniband/hw/cxgb4/resource.o
2025-10-31T06:26:48.8016837Z CC [M] drivers/infiniband/sw/siw/siw_mem.o
2025-10-31T06:26:49.2474027Z CC [M] drivers/infiniband/hw/qib/qib_user_pages.o
2025-10-31T06:26:49.6189989Z CC [M] drivers/infiniband/core/cma_configfs.o
2025-10-31T06:26:49.6408897Z LD [M] drivers/infiniband/sw/rxe/rdma_rxe.o
2025-10-31T06:26:49.7421323Z CC [M] drivers/infiniband/hw/cxgb4/ev.o
2025-10-31T06:26:50.4054370Z CC [M] drivers/infiniband/sw/siw/siw_qp.o
2025-10-31T06:26:50.4980414Z CC [M] drivers/ssb/main.o
2025-10-31T06:26:50.5556268Z CC [M] drivers/infiniband/hw/qib/qib_user_sdma.o
2025-10-31T06:26:50.8044815Z CC [M] drivers/infiniband/core/user_mad.o
2025-10-31T06:26:51.1861919Z CC [M] drivers/infiniband/hw/cxgb4/id_table.o
2025-10-31T06:26:51.9183210Z CC [M] drivers/ssb/scan.o
2025-10-31T06:26:52.2367663Z CC [M] drivers/infiniband/sw/siw/siw_qp_tx.o
2025-10-31T06:26:52.6514552Z CC [M] drivers/infiniband/hw/cxgb4/restrack.o
2025-10-31T06:26:52.7590676Z CC [M] drivers/infiniband/hw/qib/qib_iba7220.o
2025-10-31T06:26:52.8746872Z CC [M] drivers/ssb/sprom.o
2025-10-31T06:26:52.9313753Z CC [M] drivers/infiniband/core/uverbs_main.o
2025-10-31T06:26:53.6049390Z CC [M] drivers/ssb/pci.o
2025-10-31T06:26:54.2287241Z CC [M] drivers/infiniband/sw/siw/siw_qp_rx.o
2025-10-31T06:26:54.2463611Z LD [M] drivers/infiniband/hw/cxgb4/iw_cxgb4.o
2025-10-31T06:26:54.4029464Z CC [M] drivers/infiniband/core/uverbs_cmd.o
2025-10-31T06:26:54.8502932Z CC [M] drivers/infiniband/sw/siw/siw_verbs.o
2025-10-31T06:26:55.1095584Z CC [M] drivers/ssb/pcihost_wrapper.o
2025-10-31T06:26:55.8070326Z CC [M] drivers/ssb/pcmcia.o
2025-10-31T06:26:55.9244491Z CC [M] drivers/infiniband/hw/qib/qib_sd7220.o
2025-10-31T06:26:56.0505831Z CC [M] drivers/infiniband/hw/qib/qib_iba7322.o
2025-10-31T06:26:57.0226299Z CC [M] drivers/ssb/bridge_pcmcia_80211.o
2025-10-31T06:26:57.3013535Z LD [M] drivers/infiniband/sw/siw/siw.o
2025-10-31T06:26:57.4455353Z CC [M] drivers/infiniband/hw/qib/qib_verbs.o
2025-10-31T06:26:57.7195073Z CC [M] drivers/ssb/sdio.o
2025-10-31T06:26:57.7810575Z CC [M] drivers/bcma/main.o
2025-10-31T06:26:58.2087315Z CC [M] drivers/infiniband/core/uverbs_marshall.o
2025-10-31T06:26:58.6348450Z CC [M] drivers/bcma/scan.o
2025-10-31T06:26:58.9815346Z CC [M] drivers/ssb/driver_chipcommon.o
2025-10-31T06:26:59.4133414Z CC [M] drivers/bcma/core.o
2025-10-31T06:26:59.5005207Z CC [M] drivers/bcma/sprom.o
2025-10-31T06:26:59.7069420Z CC [M] drivers/infiniband/core/rdma_core.o
2025-10-31T06:26:59.9574034Z CC [M] drivers/ssb/driver_chipcommon_pmu.o
2025-10-31T06:27:00.2510045Z CC [M] drivers/infiniband/hw/i40iw/i40iw_cm.o
2025-10-31T06:27:00.7542421Z CC [M] drivers/bcma/driver_chipcommon.o
2025-10-31T06:27:01.0262232Z CC [M] drivers/ssb/driver_pcicore.o
2025-10-31T06:27:01.2915368Z CC [M] drivers/infiniband/core/uverbs_std_types.o
2025-10-31T06:27:01.6129287Z CC [M] drivers/bcma/driver_chipcommon_pmu.o
2025-10-31T06:27:01.8717416Z CC [M] drivers/ssb/driver_gpio.o
2025-10-31T06:27:02.0998130Z CC [M] drivers/infiniband/hw/qib/qib_iba6120.o
2025-10-31T06:27:02.5095727Z CC [M] drivers/bcma/driver_chipcommon_b.o
2025-10-31T06:27:02.5118078Z CC [M] drivers/infiniband/core/uverbs_ioctl.o
2025-10-31T06:27:02.5413313Z CC [M] drivers/ssb/b43_pci_bridge.o
2025-10-31T06:27:03.0946127Z CC [M] drivers/bcma/driver_pci.o
2025-10-31T06:27:03.4668381Z LD [M] drivers/ssb/ssb.o
2025-10-31T06:27:03.5601124Z CC [M] drivers/infiniband/hw/i40iw/i40iw_ctrl.o
2025-10-31T06:27:03.5632588Z CC [M] drivers/bcma/driver_pcie2.o
2025-10-31T06:27:03.8619617Z CC [M] drivers/infiniband/hw/mlx4/ah.o
2025-10-31T06:27:04.2171693Z CC [M] drivers/infiniband/core/uverbs_std_types_cq.o
2025-10-31T06:27:04.3465325Z CC [M] drivers/bcma/driver_gmac_cmn.o
2025-10-31T06:27:05.0897270Z CC [M] drivers/bcma/driver_gpio.o
2025-10-31T06:27:05.1602557Z CC [M] drivers/infiniband/hw/mlx4/cq.o
2025-10-31T06:27:05.2080335Z CC [M] drivers/infiniband/hw/qib/qib_wc_x86_64.o
2025-10-31T06:27:05.8089878Z CC [M] drivers/bcma/host_pci.o
2025-10-31T06:27:05.9037624Z CC [M] drivers/infiniband/core/uverbs_std_types_flow_action.o
2025-10-31T06:27:06.5716780Z CC [M] drivers/infiniband/hw/qib/qib_debugfs.o
2025-10-31T06:27:06.6371617Z LD [M] drivers/bcma/bcma.o
2025-10-31T06:27:06.6833349Z CC [M] drivers/infiniband/hw/i40iw/i40iw_hmc.o
2025-10-31T06:27:06.7254655Z CC [M] drivers/infiniband/hw/mlx5/ah.o
2025-10-31T06:27:06.8254367Z CC [M] drivers/infiniband/hw/mlx4/doorbell.o
2025-10-31T06:27:07.2363906Z CC [M] drivers/infiniband/core/uverbs_std_types_dm.o
2025-10-31T06:27:07.9351609Z LD [M] drivers/infiniband/hw/qib/ib_qib.o
2025-10-31T06:27:08.0369147Z CC [M] drivers/infiniband/hw/mlx5/cmd.o
2025-10-31T06:27:08.0710474Z CC [M] drivers/infiniband/hw/mlx4/mad.o
2025-10-31T06:27:08.1296423Z CC [M] drivers/infiniband/hw/mlx4/main.o
2025-10-31T06:27:08.1791473Z CC [M] drivers/infiniband/hw/i40iw/i40iw_hw.o
2025-10-31T06:27:08.3955682Z CC [M] drivers/infiniband/core/uverbs_std_types_mr.o
2025-10-31T06:27:09.5905688Z CC [M] drivers/infiniband/hw/mlx5/cong.o
2025-10-31T06:27:09.6881050Z CC [M] drivers/infiniband/core/uverbs_std_types_counters.o
2025-10-31T06:27:10.1360292Z CC [M] drivers/infiniband/hw/i40iw/i40iw_main.o
2025-10-31T06:27:10.7519066Z CC [M] drivers/infiniband/hw/mlx5/counters.o
2025-10-31T06:27:11.0509866Z CC [M] drivers/infiniband/core/uverbs_uapi.o
2025-10-31T06:27:11.1177558Z CC [M] drivers/infiniband/core/uverbs_std_types_device.o
2025-10-31T06:27:11.2348068Z CC [M] drivers/infiniband/hw/mlx4/mr.o
2025-10-31T06:27:12.2363188Z CC [M] drivers/infiniband/hw/i40iw/i40iw_pble.o
2025-10-31T06:27:12.5685645Z CC [M] drivers/vhost/net.o
2025-10-31T06:27:12.6677064Z CC [M] drivers/infiniband/core/uverbs_std_types_async_fd.o
2025-10-31T06:27:12.6872292Z CC [M] drivers/infiniband/hw/mlx5/cq.o
2025-10-31T06:27:12.7264916Z CC [M] drivers/infiniband/hw/mlx4/qp.o
2025-10-31T06:27:13.7684321Z CC [M] drivers/infiniband/hw/i40iw/i40iw_puda.o
2025-10-31T06:27:14.0185842Z CC [M] drivers/infiniband/core/uverbs_std_types_srq.o
2025-10-31T06:27:14.8342450Z CC [M] drivers/vhost/scsi.o
2025-10-31T06:27:14.9064551Z CC [M] drivers/infiniband/hw/mlx5/doorbell.o
2025-10-31T06:27:15.2855647Z CC [M] drivers/infiniband/core/uverbs_std_types_wq.o
2025-10-31T06:27:15.7435715Z CC [M] drivers/infiniband/hw/i40iw/i40iw_uk.o
2025-10-31T06:27:16.2435952Z CC [M] drivers/infiniband/hw/mlx5/gsi.o
2025-10-31T06:27:16.5747444Z CC [M] drivers/infiniband/core/uverbs_std_types_qp.o
2025-10-31T06:27:16.7643904Z CC [M] drivers/vhost/vsock.o
2025-10-31T06:27:17.3694157Z CC [M] drivers/infiniband/hw/i40iw/i40iw_utils.o
2025-10-31T06:27:17.7583619Z CC [M] drivers/infiniband/hw/mlx5/ib_virt.o
2025-10-31T06:27:18.2014353Z CC [M] drivers/infiniband/hw/mlx4/srq.o
2025-10-31T06:27:18.3453216Z CC [M] drivers/infiniband/core/umem.o
2025-10-31T06:27:18.4546224Z CC [M] drivers/vhost/vringh.o
2025-10-31T06:27:18.9804873Z CC [M] drivers/infiniband/hw/mlx5/mad.o
2025-10-31T06:27:19.1553895Z CC [M] drivers/infiniband/hw/i40iw/i40iw_verbs.o
2025-10-31T06:27:19.7010006Z CC [M] drivers/infiniband/hw/mlx4/mcg.o
2025-10-31T06:27:20.0184721Z CC [M] drivers/infiniband/core/umem_odp.o
2025-10-31T06:27:20.0266723Z CC [M] drivers/vhost/vdpa.o
2025-10-31T06:27:20.6627986Z CC [M] drivers/infiniband/hw/mlx5/main.o
2025-10-31T06:27:21.4356660Z CC [M] drivers/vhost/vhost.o
2025-10-31T06:27:21.5607059Z CC [M] drivers/infiniband/core/ucma.o
2025-10-31T06:27:21.6075204Z CC [M] drivers/infiniband/hw/i40iw/i40iw_virtchnl.o
2025-10-31T06:27:21.7141255Z CC [M] drivers/infiniband/hw/mlx4/cm.o
2025-10-31T06:27:22.8548513Z CC [M] drivers/infiniband/hw/i40iw/i40iw_vf.o
2025-10-31T06:27:23.3034417Z CC [M] drivers/infiniband/hw/mlx4/alias_GUID.o
2025-10-31T06:27:23.8473667Z LD [M] drivers/infiniband/core/ib_core.o
2025-10-31T06:27:23.9040551Z CC [M] drivers/vhost/iotlb.o
2025-10-31T06:27:23.9934567Z LD [M] drivers/infiniband/core/ib_cm.o
2025-10-31T06:27:23.9941239Z LD [M] drivers/infiniband/hw/i40iw/i40iw.o
2025-10-31T06:27:24.0451061Z LD [M] drivers/infiniband/core/iw_cm.o
2025-10-31T06:27:24.0935042Z LD [M] drivers/infiniband/core/rdma_cm.o
2025-10-31T06:27:24.1268727Z LD [M] drivers/infiniband/core/ib_umad.o
2025-10-31T06:27:24.1496703Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_main.o
2025-10-31T06:27:24.1576148Z LD [M] drivers/infiniband/core/ib_uverbs.o
2025-10-31T06:27:24.3178941Z LD [M] drivers/infiniband/core/rdma_ucm.o
2025-10-31T06:27:24.4069778Z LD [M] drivers/vhost/vhost_net.o
2025-10-31T06:27:24.4415162Z CC [M] drivers/rpmsg/rpmsg_core.o
2025-10-31T06:27:24.4962760Z LD [M] drivers/vhost/vhost_scsi.o
2025-10-31T06:27:24.5116859Z LD [M] drivers/vhost/vhost_vsock.o
2025-10-31T06:27:24.5261362Z LD [M] drivers/vhost/vhost_vdpa.o
2025-10-31T06:27:24.5406367Z LD [M] drivers/vhost/vhost_iotlb.o
2025-10-31T06:27:24.5988391Z CC [M] drivers/infiniband/hw/mlx5/mem.o
2025-10-31T06:27:24.8453129Z CC [M] drivers/infiniband/hw/mlx5/mr.o
2025-10-31T06:27:24.8660537Z CC [M] drivers/infiniband/hw/mlx4/sysfs.o
2025-10-31T06:27:25.1790225Z CC [M] drivers/rpmsg/rpmsg_char.o
2025-10-31T06:27:25.5811484Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_verbs.o
2025-10-31T06:27:26.3334464Z CC [M] drivers/rpmsg/qcom_glink_native.o
2025-10-31T06:27:26.7719345Z LD [M] drivers/infiniband/hw/mlx4/mlx4_ib.o
2025-10-31T06:27:26.9675300Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_cmd.o
2025-10-31T06:27:27.4882841Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.o
2025-10-31T06:27:27.8968561Z CC [M] drivers/rpmsg/qcom_glink_ssr.o
2025-10-31T06:27:28.1547322Z CC [M] drivers/infiniband/hw/mlx5/qp.o
2025-10-31T06:27:28.1575384Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_hw.o
2025-10-31T06:27:28.1685696Z CC [M] drivers/soundwire/bus_type.o
2025-10-31T06:27:28.3567972Z CC [M] drivers/rpmsg/qcom_glink_rpm.o
2025-10-31T06:27:28.8995514Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_doorbell.o
2025-10-31T06:27:28.9506350Z CC [M] drivers/rpmsg/virtio_rpmsg_bus.o
2025-10-31T06:27:28.9900609Z CC [M] drivers/soundwire/bus.o
2025-10-31T06:27:30.0925073Z LD [M] drivers/rpmsg/qcom_glink.o
2025-10-31T06:27:30.1916449Z CC [M] drivers/infiniband/hw/usnic/usnic_fwd.o
2025-10-31T06:27:30.2188460Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.o
2025-10-31T06:27:30.4092267Z CC [M] drivers/soundwire/master.o
2025-10-31T06:27:30.8737224Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_ah.o
2025-10-31T06:27:31.0203372Z CC [M] drivers/soundwire/slave.o
2025-10-31T06:27:31.1855124Z CC [M] drivers/infiniband/hw/usnic/usnic_transport.o
2025-10-31T06:27:31.6832727Z CC [M] drivers/soundwire/mipi_disco.o
2025-10-31T06:27:32.1085967Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_misc.o
2025-10-31T06:27:32.2657327Z CC [M] drivers/soundwire/stream.o
2025-10-31T06:27:32.2867304Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_stats.o
2025-10-31T06:27:32.3398709Z CC [M] drivers/infiniband/hw/usnic/usnic_uiom.o
2025-10-31T06:27:33.1337877Z CC [M] drivers/infiniband/hw/mlx5/qpc.o
2025-10-31T06:27:33.4757351Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_mr.o
2025-10-31T06:27:33.8567466Z LD [M] drivers/infiniband/hw/ocrdma/ocrdma.o
2025-10-31T06:27:33.9194298Z CC [M] drivers/soundwire/sysfs_slave.o
2025-10-31T06:27:33.9233721Z CC [M] drivers/hv/vmbus_drv.o
2025-10-31T06:27:33.9626532Z CC [M] drivers/infiniband/hw/usnic/usnic_uiom_interval_tree.o
2025-10-31T06:27:34.4999700Z CC [M] drivers/soundwire/sysfs_slave_dpn.o
2025-10-31T06:27:34.6075863Z CC [M] drivers/infiniband/hw/usnic/usnic_vnic.o
2025-10-31T06:27:34.7205314Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.o
2025-10-31T06:27:34.8430921Z CC [M] drivers/infiniband/hw/mlx5/restrack.o
2025-10-31T06:27:35.4836020Z CC [M] drivers/soundwire/debugfs.o
2025-10-31T06:27:35.9235735Z CC [M] drivers/hv/hv.o
2025-10-31T06:27:36.1293797Z CC [M] drivers/infiniband/hw/usnic/usnic_ib_main.o
2025-10-31T06:27:36.1463066Z CC [M] drivers/infiniband/hw/mlx5/srq.o
2025-10-31T06:27:36.2593272Z CC [M] drivers/soundwire/generic_bandwidth_allocation.o
2025-10-31T06:27:36.4444608Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_srq.o
2025-10-31T06:27:36.7444834Z CC [M] drivers/hv/connection.o
2025-10-31T06:27:37.0395153Z CC [M] drivers/soundwire/cadence_master.o
2025-10-31T06:27:37.7028760Z CC [M] drivers/infiniband/hw/usnic/usnic_ib_qp_grp.o
2025-10-31T06:27:37.7264106Z CC [M] drivers/hv/channel.o
2025-10-31T06:27:37.8500776Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.o
2025-10-31T06:27:37.9273203Z CC [M] drivers/infiniband/hw/mlx5/srq_cmd.o
2025-10-31T06:27:38.6866308Z CC [M] drivers/soundwire/intel.o
2025-10-31T06:27:39.0277752Z CC [M] drivers/hv/channel_mgmt.o
2025-10-31T06:27:39.2603757Z CC [M] drivers/infiniband/hw/usnic/usnic_ib_sysfs.o
2025-10-31T06:27:39.4042337Z LD [M] drivers/infiniband/hw/vmw_pvrdma/vmw_pvrdma.o
2025-10-31T06:27:39.5592968Z CC [M] drivers/infiniband/hw/hfi1/affinity.o
2025-10-31T06:27:39.6151411Z CC [M] drivers/infiniband/hw/mlx5/wr.o
2025-10-31T06:27:40.1402522Z CC [M] drivers/soundwire/intel_init.o
2025-10-31T06:27:40.4816035Z CC [M] drivers/hv/ring_buffer.o
2025-10-31T06:27:40.8093699Z CC [M] drivers/infiniband/hw/usnic/usnic_ib_verbs.o
2025-10-31T06:27:41.0006854Z CC [M] drivers/soundwire/qcom.o
2025-10-31T06:27:41.5576205Z CC [M] drivers/hv/hv_trace.o
2025-10-31T06:27:41.8422786Z CC [M] drivers/infiniband/hw/mlx5/odp.o
2025-10-31T06:27:41.9440400Z LD [M] drivers/soundwire/soundwire-bus.o
2025-10-31T06:27:41.9735743Z LD [M] drivers/soundwire/soundwire-generic-allocation.o
2025-10-31T06:27:41.9771638Z CC [M] drivers/infiniband/hw/hfi1/aspm.o
2025-10-31T06:27:41.9901028Z LD [M] drivers/soundwire/soundwire-cadence.o
2025-10-31T06:27:42.0186064Z LD [M] drivers/soundwire/soundwire-intel.o
2025-10-31T06:27:42.0491102Z LD [M] drivers/soundwire/soundwire-qcom.o
2025-10-31T06:27:42.1475681Z CC [M] drivers/infiniband/hw/mlx5/ib_rep.o
2025-10-31T06:27:42.4405391Z CC [M] drivers/infiniband/hw/usnic/usnic_debugfs.o
2025-10-31T06:27:43.3154231Z CC [M] drivers/hv/hv_util.o
2025-10-31T06:27:43.5089825Z CC [M] drivers/infiniband/hw/hfi1/chip.o
2025-10-31T06:27:43.6572471Z CC [M] drivers/infiniband/hw/qedr/main.o
2025-10-31T06:27:43.7082222Z LD [M] drivers/infiniband/hw/usnic/usnic_verbs.o
2025-10-31T06:27:43.8540896Z CC [M] drivers/infiniband/hw/bnxt_re/main.o
2025-10-31T06:27:43.9892853Z CC [M] drivers/infiniband/hw/mlx5/devx.o
2025-10-31T06:27:44.1718075Z CC [M] drivers/hv/hv_kvp.o
2025-10-31T06:27:45.4652436Z CC [M] drivers/infiniband/hw/qedr/verbs.o
2025-10-31T06:27:45.5268948Z CC [M] drivers/hv/hv_snapshot.o
2025-10-31T06:27:45.8621000Z CC [M] drivers/infiniband/hw/bnxt_re/ib_verbs.o
2025-10-31T06:27:46.6345678Z CC [M] drivers/hv/hv_fcopy.o
2025-10-31T06:27:47.3516642Z CC [M] drivers/infiniband/hw/mlx5/fs.o
2025-10-31T06:27:47.9491760Z CC [M] drivers/hv/hv_utils_transport.o
2025-10-31T06:27:48.8265642Z CC [M] drivers/infiniband/hw/bnxt_re/qplib_res.o
2025-10-31T06:27:49.3289589Z CC [M] drivers/hv/hv_balloon.o
2025-10-31T06:27:49.9137699Z CC [M] drivers/infiniband/hw/qedr/qedr_roce_cm.o
2025-10-31T06:27:50.3735358Z CC [M] drivers/infiniband/hw/mlx5/qos.o
2025-10-31T06:27:50.7088597Z LD [M] drivers/hv/hv_vmbus.o
2025-10-31T06:27:50.7542782Z LD [M] drivers/hv/hv_utils.o
2025-10-31T06:27:50.7960040Z CC [M] drivers/infiniband/hw/bnxt_re/qplib_rcfw.o
2025-10-31T06:27:50.8318605Z CC [M] drivers/infiniband/hw/qedr/qedr_iw_cm.o
2025-10-31T06:27:51.2317344Z CC [M] drivers/infiniband/hw/hfi1/device.o
2025-10-31T06:27:51.3501580Z CC [M] drivers/infiniband/hw/bnxt_re/qplib_sp.o
2025-10-31T06:27:51.7869327Z CC [M] drivers/infiniband/hw/mlx5/std_types.o
2025-10-31T06:27:52.1545900Z CC [M] drivers/iio/accel/adis16201.o
2025-10-31T06:27:52.4357982Z CC [M] drivers/infiniband/hw/bnxt_re/qplib_fp.o
2025-10-31T06:27:52.5226925Z CC [M] drivers/infiniband/hw/hfi1/driver.o
2025-10-31T06:27:52.7617780Z LD [M] drivers/infiniband/hw/qedr/qedr.o
2025-10-31T06:27:52.8127434Z CC [M] drivers/iio/accel/adis16209.o
2025-10-31T06:27:52.9344145Z CC [M] drivers/ipack/devices/ipoctal.o
2025-10-31T06:27:53.0402699Z LD [M] drivers/infiniband/hw/mlx5/mlx5_ib.o
2025-10-31T06:27:53.2875181Z CC [M] drivers/ipack/carriers/tpci200.o
2025-10-31T06:27:53.4983777Z CC [M] drivers/iio/accel/adxl372.o
2025-10-31T06:27:53.7215414Z CC [M] drivers/infiniband/hw/bnxt_re/hw_counters.o
2025-10-31T06:27:54.3654504Z CC [M] drivers/ipack/ipack.o
2025-10-31T06:27:54.6744193Z CC [M] drivers/iio/accel/adxl372_i2c.o
2025-10-31T06:27:54.9006707Z CC [M] drivers/ntb/hw/amd/ntb_hw_amd.o
2025-10-31T06:27:55.0951886Z LD [M] drivers/infiniband/hw/bnxt_re/bnxt_re.o
2025-10-31T06:27:55.1317100Z CC [M] drivers/ntb/hw/idt/ntb_hw_idt.o
2025-10-31T06:27:55.1786618Z CC [M] drivers/iio/accel/adxl372_spi.o
2025-10-31T06:27:55.1898528Z CC [M] drivers/iio/adc/ad_sigma_delta.o
2025-10-31T06:27:55.4153944Z CC [M] drivers/infiniband/hw/hfi1/efivar.o
2025-10-31T06:27:55.9695665Z CC [M] drivers/iio/accel/bma220_spi.o
2025-10-31T06:27:56.1577360Z CC [M] drivers/mcb/mcb-core.o
2025-10-31T06:27:56.1994985Z CC [M] drivers/iio/adc/ad7091r5.o
2025-10-31T06:27:56.7143261Z CC [M] drivers/iio/adc/ad7091r-base.o
2025-10-31T06:27:56.7349923Z CC [M] drivers/mcb/mcb-parse.o
2025-10-31T06:27:56.7600260Z CC [M] drivers/ntb/hw/intel/ntb_hw_gen1.o
2025-10-31T06:27:56.7701340Z CC [M] drivers/infiniband/hw/hfi1/eprom.o
2025-10-31T06:27:56.8258463Z CC [M] drivers/iio/accel/bma400_core.o
2025-10-31T06:27:57.3594857Z CC [M] drivers/mcb/mcb-pci.o
2025-10-31T06:27:57.6073317Z CC [M] drivers/iio/adc/ad7124.o
2025-10-31T06:27:57.8714173Z CC [M] drivers/iio/accel/bma400_i2c.o
2025-10-31T06:27:58.2266032Z CC [M] drivers/infiniband/hw/hfi1/exp_rcv.o
2025-10-31T06:27:58.2643015Z CC [M] drivers/mcb/mcb-lpc.o
2025-10-31T06:27:58.4193083Z CC [M] drivers/ntb/hw/intel/ntb_hw_gen3.o
2025-10-31T06:27:58.4325652Z CC [M] drivers/iio/adc/ad7192.o
2025-10-31T06:27:58.5104072Z CC [M] drivers/iio/accel/bma400_spi.o
2025-10-31T06:27:58.7952159Z LD [M] drivers/mcb/mcb.o
2025-10-31T06:27:58.8670413Z CC [M] drivers/iio/accel/bmc150-accel-core.o
2025-10-31T06:27:59.2351869Z CC [M] drivers/ntb/hw/mscc/ntb_hw_switchtec.o
2025-10-31T06:27:59.4361764Z CC [M] drivers/ntb/hw/intel/ntb_hw_gen4.o
2025-10-31T06:27:59.4390467Z CC [M] drivers/iio/adc/ad7266.o
2025-10-31T06:27:59.9049502Z CC [M] drivers/infiniband/hw/hfi1/file_ops.o
2025-10-31T06:27:59.9884842Z CC [M] drivers/iio/accel/bmc150-accel-i2c.o
2025-10-31T06:28:00.3674298Z LD [M] drivers/ntb/hw/intel/ntb_hw_intel.o
2025-10-31T06:28:00.4009890Z CC [M] drivers/iio/adc/ad7291.o
2025-10-31T06:28:00.4202411Z CC [M] drivers/infiniband/hw/hfi1/firmware.o
2025-10-31T06:28:00.6100338Z CC [M] drivers/iio/accel/bmc150-accel-spi.o
2025-10-31T06:28:00.9296785Z CC [M] drivers/ntb/core.o
2025-10-31T06:28:01.2357789Z CC [M] drivers/iio/accel/da280.o
2025-10-31T06:28:01.4016119Z CC [M] drivers/iio/adc/ad7292.o
2025-10-31T06:28:01.5803698Z CC [M] drivers/ntb/msi.o
2025-10-31T06:28:01.6984470Z CC [M] drivers/iio/accel/da311.o
2025-10-31T06:28:02.2623529Z CC [M] drivers/iio/accel/dmard09.o
2025-10-31T06:28:02.3291684Z CC [M] drivers/ntb/ntb_transport.o
2025-10-31T06:28:02.4020595Z CC [M] drivers/iio/adc/ad7298.o
2025-10-31T06:28:02.6399015Z LD [M] drivers/ntb/ntb.o
2025-10-31T06:28:02.7690711Z CC [M] drivers/iio/adc/ad7923.o
2025-10-31T06:28:02.7972578Z CC [M] drivers/iio/accel/dmard10.o
2025-10-31T06:28:03.0417178Z CC [M] drivers/infiniband/hw/hfi1/init.o
2025-10-31T06:28:03.2898983Z CC [M] drivers/iio/accel/hid-sensor-accel-3d.o
2025-10-31T06:28:03.5980982Z CC [M] drivers/thunderbolt/nhi.o
2025-10-31T06:28:03.7707282Z CC [M] drivers/iio/adc/ad7476.o
2025-10-31T06:28:03.9450146Z CC [M] drivers/iio/accel/kxcjk-1013.o
2025-10-31T06:28:04.2214707Z CC [M] drivers/thunderbolt/nhi_ops.o
2025-10-31T06:28:04.4835551Z CC [M] drivers/iio/adc/ad7606_par.o
2025-10-31T06:28:04.9252853Z CC [M] drivers/iio/adc/ad7606_spi.o
2025-10-31T06:28:05.0653736Z CC [M] drivers/iio/adc/ad7606.o
2025-10-31T06:28:05.1116104Z CC [M] drivers/iio/accel/kxsd9.o
2025-10-31T06:28:05.4084634Z CC [M] drivers/thunderbolt/ctl.o
2025-10-31T06:28:05.5370816Z CC [M] drivers/infiniband/hw/hfi1/intr.o
2025-10-31T06:28:05.7550664Z CC [M] drivers/iio/amplifiers/ad8366.o
2025-10-31T06:28:06.0698417Z CC [M] drivers/iio/accel/kxsd9-spi.o
2025-10-31T06:28:06.2215198Z CC [M] drivers/iio/adc/ad7766.o
2025-10-31T06:28:06.5494462Z CC [M] drivers/thunderbolt/tb.o
2025-10-31T06:28:06.6908012Z CC [M] drivers/iio/amplifiers/hmc425a.o
2025-10-31T06:28:06.7664375Z CC [M] drivers/iio/accel/kxsd9-i2c.o
2025-10-31T06:28:06.9941808Z CC [M] drivers/infiniband/hw/hfi1/iowait.o
2025-10-31T06:28:07.0304226Z CC [M] drivers/iio/adc/ad7768-1.o
2025-10-31T06:28:07.2445677Z CC [M] drivers/iio/accel/mc3230.o
2025-10-31T06:28:07.6352678Z CC [M] drivers/thunderbolt/switch.o
2025-10-31T06:28:07.8890710Z CC [M] drivers/iio/accel/mma7455_core.o
2025-10-31T06:28:08.0036278Z CC [M] drivers/iio/adc/ad7780.o
2025-10-31T06:28:08.2684185Z CC [M] drivers/hwtracing/stm/core.o
2025-10-31T06:28:08.3028771Z CC [M] drivers/infiniband/hw/hfi1/ipoib_main.o
2025-10-31T06:28:08.5433369Z CC [M] drivers/iio/accel/mma7455_i2c.o
2025-10-31T06:28:08.9853222Z CC [M] drivers/iio/adc/ad7791.o
2025-10-31T06:28:09.0961265Z CC [M] drivers/iio/accel/mma7455_spi.o
2025-10-31T06:28:09.3928061Z CC [M] drivers/hwtracing/stm/policy.o
2025-10-31T06:28:09.7458549Z CC [M] drivers/iio/accel/mma7660.o
2025-10-31T06:28:09.7585455Z CC [M] drivers/iio/adc/ad7793.o
2025-10-31T06:28:09.8622811Z CC [M] drivers/thunderbolt/cap.o
2025-10-31T06:28:09.8656216Z CC [M] drivers/infiniband/hw/hfi1/ipoib_rx.o
2025-10-31T06:28:10.1264394Z CC [M] drivers/hwtracing/stm/p_basic.o
2025-10-31T06:28:10.3829546Z CC [M] drivers/iio/accel/mma8452.o
2025-10-31T06:28:10.4976800Z CC [M] drivers/thunderbolt/path.o
2025-10-31T06:28:10.5489665Z CC [M] drivers/hwtracing/stm/p_sys-t.o
2025-10-31T06:28:10.9228804Z CC [M] drivers/iio/adc/ad7887.o
2025-10-31T06:28:11.1468313Z CC [M] drivers/hwtracing/stm/console.o
2025-10-31T06:28:11.4046445Z CC [M] drivers/infiniband/hw/hfi1/ipoib_tx.o
2025-10-31T06:28:11.5818593Z CC [M] drivers/hwtracing/stm/heartbeat.o
2025-10-31T06:28:11.6624683Z CC [M] drivers/iio/accel/mma9551_core.o
2025-10-31T06:28:11.6793960Z CC [M] drivers/thunderbolt/tunnel.o
2025-10-31T06:28:11.7539627Z CC [M] drivers/iio/adc/ad7949.o
2025-10-31T06:28:12.0410105Z CC [M] drivers/hwtracing/stm/ftrace.o
2025-10-31T06:28:12.3406675Z CC [M] drivers/iio/accel/mma9551.o
2025-10-31T06:28:12.6098934Z LD [M] drivers/hwtracing/stm/stm_core.o
2025-10-31T06:28:12.6328078Z LD [M] drivers/hwtracing/stm/stm_p_basic.o
2025-10-31T06:28:12.6450321Z LD [M] drivers/hwtracing/stm/stm_p_sys-t.o
2025-10-31T06:28:12.6594643Z LD [M] drivers/hwtracing/stm/stm_console.o
2025-10-31T06:28:12.6703686Z LD [M] drivers/hwtracing/stm/stm_heartbeat.o
2025-10-31T06:28:12.6719647Z CC [M] drivers/iio/adc/ad799x.o
2025-10-31T06:28:12.6836252Z LD [M] drivers/hwtracing/stm/stm_ftrace.o
2025-10-31T06:28:12.7521542Z CC [M] drivers/iio/buffer/industrialio-buffer-cb.o
2025-10-31T06:28:13.0299228Z CC [M] drivers/iio/accel/mma9553.o
2025-10-31T06:28:13.1901599Z CC [M] drivers/iio/buffer/industrialio-buffer-dma.o
2025-10-31T06:28:13.2974934Z CC [M] drivers/thunderbolt/eeprom.o
2025-10-31T06:28:13.7981685Z CC [M] drivers/infiniband/hw/hfi1/mad.o
2025-10-31T06:28:13.8313672Z CC [M] drivers/iio/accel/mxc4005.o
2025-10-31T06:28:14.0231215Z CC [M] drivers/iio/adc/axp20x_adc.o
2025-10-31T06:28:14.0972388Z CC [M] drivers/iio/buffer/industrialio-buffer-dmaengine.o
2025-10-31T06:28:14.2643023Z CC [M] drivers/thunderbolt/domain.o
2025-10-31T06:28:14.5006078Z CC [M] drivers/iio/accel/mxc6255.o
2025-10-31T06:28:14.7567751Z CC [M] drivers/iio/adc/axp288_adc.o
2025-10-31T06:28:14.8413997Z CC [M] drivers/iio/buffer/industrialio-hw-consumer.o
2025-10-31T06:28:15.1640310Z CC [M] drivers/iio/accel/sca3000.o
2025-10-31T06:28:15.3290523Z CC [M] drivers/iio/adc/cc10001_adc.o
2025-10-31T06:28:15.3694720Z CC [M] drivers/iio/buffer/industrialio-triggered-buffer.o
2025-10-31T06:28:15.4046005Z CC [M] drivers/thunderbolt/dma_port.o
2025-10-31T06:28:15.9910565Z CC [M] drivers/iio/buffer/kfifo_buf.o
2025-10-31T06:28:16.1751376Z CC [M] drivers/thunderbolt/icm.o
2025-10-31T06:28:16.2933306Z CC [M] drivers/iio/adc/da9150-gpadc.o
2025-10-31T06:28:16.3841248Z CC [M] drivers/iio/accel/stk8312.o
2025-10-31T06:28:17.0205193Z CC [M] drivers/iio/adc/dln2-adc.o
2025-10-31T06:28:17.0329242Z CC [M] drivers/thunderbolt/property.o
2025-10-31T06:28:17.0854109Z CC [M] drivers/iio/accel/stk8ba50.o
2025-10-31T06:28:17.7546161Z CC [M] drivers/iio/adc/hi8435.o
2025-10-31T06:28:17.8260066Z CC [M] drivers/iio/accel/cros_ec_accel_legacy.o
2025-10-31T06:28:17.9040305Z CC [M] drivers/infiniband/hw/hfi1/mmu_rb.o
2025-10-31T06:28:18.0444699Z CC [M] drivers/iio/adc/hx711.o
2025-10-31T06:28:18.0690443Z CC [M] drivers/thunderbolt/xdomain.o
2025-10-31T06:28:18.2627054Z CC [M] drivers/iio/accel/ssp_accel_sensor.o
2025-10-31T06:28:18.7217941Z CC [M] drivers/iio/accel/st_accel_core.o
2025-10-31T06:28:18.7761518Z CC [M] drivers/fpga/fpga-mgr.o
2025-10-31T06:28:18.9041319Z CC [M] drivers/iio/adc/ina2xx-adc.o
2025-10-31T06:28:19.5953311Z CC [M] drivers/thunderbolt/lc.o
2025-10-31T06:28:19.6550984Z CC [M] drivers/iio/accel/st_accel_buffer.o
2025-10-31T06:28:19.8317362Z CC [M] drivers/iio/adc/intel_mrfld_adc.o
2025-10-31T06:28:19.8468047Z CC [M] drivers/fpga/altera-cvp.o
2025-10-31T06:28:20.1531113Z CC [M] drivers/infiniband/hw/hfi1/msix.o
2025-10-31T06:28:20.3740114Z CC [M] drivers/thunderbolt/tmu.o
2025-10-31T06:28:20.3921100Z CC [M] drivers/iio/adc/lp8788_adc.o
2025-10-31T06:28:20.4024318Z CC [M] drivers/iio/accel/st_accel_i2c.o
2025-10-31T06:28:20.9330238Z CC [M] drivers/fpga/altera-ps-spi.o
2025-10-31T06:28:20.9930330Z CC [M] drivers/iio/adc/ltc2471.o
2025-10-31T06:28:21.2319658Z CC [M] drivers/thunderbolt/usb4.o
2025-10-31T06:28:21.3461657Z CC [M] drivers/iio/accel/st_accel_spi.o
2025-10-31T06:28:21.5501806Z CC [M] drivers/infiniband/hw/hfi1/netdev_rx.o
2025-10-31T06:28:21.5996990Z CC [M] drivers/iio/adc/ltc2485.o
2025-10-31T06:28:21.7783002Z CC [M] drivers/fpga/machxo2-spi.o
2025-10-31T06:28:22.2155018Z LD [M] drivers/iio/accel/st_accel.o
2025-10-31T06:28:22.2295510Z CC [M] drivers/iio/adc/ltc2496.o
2025-10-31T06:28:22.4688133Z CC [M] drivers/fpga/xilinx-spi.o
2025-10-31T06:28:22.6438508Z CC [M] drivers/thunderbolt/nvm.o
2025-10-31T06:28:22.8945134Z CC [M] drivers/infiniband/hw/hfi1/opfn.o
2025-10-31T06:28:22.9839636Z CC [M] drivers/iio/adc/ltc2497-core.o
2025-10-31T06:28:23.0063476Z CC [M] drivers/fpga/altera-pr-ip-core.o
2025-10-31T06:28:23.1786736Z CC [M] drivers/tee/amdtee/core.o
2025-10-31T06:28:23.4620120Z CC [M] drivers/thunderbolt/retimer.o
2025-10-31T06:28:23.5568868Z CC [M] drivers/fpga/fpga-bridge.o
2025-10-31T06:28:23.7581348Z CC [M] drivers/iio/adc/ltc2497.o
2025-10-31T06:28:24.1312472Z CC [M] drivers/fpga/altera-freeze-bridge.o
2025-10-31T06:28:24.2213080Z CC [M] drivers/thunderbolt/quirks.o
2025-10-31T06:28:24.2422778Z CC [M] drivers/tee/amdtee/call.o
2025-10-31T06:28:24.2901778Z CC [M] drivers/iio/adc/max1027.o
2025-10-31T06:28:24.7473397Z CC [M] drivers/fpga/xilinx-pr-decoupler.o
2025-10-31T06:28:24.8569051Z CC [M] drivers/thunderbolt/acpi.o
2025-10-31T06:28:24.9779964Z CC [M] drivers/infiniband/hw/hfi1/pcie.o
2025-10-31T06:28:24.9934804Z CC [M] drivers/tee/amdtee/shm_pool.o
2025-10-31T06:28:25.0694086Z CC [M] drivers/iio/adc/max11100.o
2025-10-31T06:28:25.2234452Z CC [M] drivers/fpga/fpga-region.o
2025-10-31T06:28:25.5648320Z LD [M] drivers/tee/amdtee/amdtee.o
2025-10-31T06:28:25.6035440Z CC [M] drivers/tee/tee_core.o
2025-10-31T06:28:25.6965569Z CC [M] drivers/thunderbolt/debugfs.o
2025-10-31T06:28:25.7617300Z CC [M] drivers/fpga/dfl.o
2025-10-31T06:28:25.8884853Z CC [M] drivers/iio/adc/max1118.o
2025-10-31T06:28:26.7261241Z CC [M] drivers/tee/tee_shm.o
2025-10-31T06:28:26.7891626Z CC [M] drivers/iio/adc/max1241.o
2025-10-31T06:28:26.8123651Z LD [M] drivers/thunderbolt/thunderbolt.o
2025-10-31T06:28:26.9602956Z CC [M] drivers/infiniband/hw/hfi1/pio.o
2025-10-31T06:28:27.0070627Z CC [M] drivers/mux/core.o
2025-10-31T06:28:27.1084711Z CC [M] drivers/fpga/dfl-fme-main.o
2025-10-31T06:28:27.5508726Z CC [M] drivers/iio/adc/max1363.o
2025-10-31T06:28:27.7140038Z CC [M] drivers/tee/tee_shm_pool.o
2025-10-31T06:28:27.7170044Z CC [M] drivers/mux/adg792a.o
2025-10-31T06:28:28.0436078Z CC [M] drivers/fpga/dfl-fme-pr.o
2025-10-31T06:28:28.2135720Z CC [M] drivers/mux/adgs1408.o
2025-10-31T06:28:28.5120662Z LD [M] drivers/tee/tee.o
2025-10-31T06:28:28.5730864Z CC [M] drivers/mux/gpio.o
2025-10-31T06:28:28.6549033Z CC [M] drivers/iio/adc/max9611.o
2025-10-31T06:28:28.7856586Z CC [M] drivers/iio/chemical/atlas-sensor.o
2025-10-31T06:28:29.0764988Z LD [M] drivers/mux/mux-core.o
2025-10-31T06:28:29.0880261Z LD [M] drivers/mux/mux-adg792a.o
2025-10-31T06:28:29.0992247Z LD [M] drivers/mux/mux-adgs1408.o
2025-10-31T06:28:29.1032143Z CC [M] drivers/fpga/dfl-fme-error.o
2025-10-31T06:28:29.1172862Z LD [M] drivers/mux/mux-gpio.o
2025-10-31T06:28:29.1297350Z CC [M] drivers/iio/adc/mcp320x.o
2025-10-31T06:28:29.1916840Z CC [M] drivers/iio/adc/mcp3422.o
2025-10-31T06:28:29.4134801Z CC [M] drivers/iio/chemical/atlas-ezo-sensor.o
2025-10-31T06:28:29.9215401Z CC [M] drivers/infiniband/hw/hfi1/pio_copy.o
2025-10-31T06:28:29.9441139Z CC [M] drivers/iio/chemical/bme680_core.o
2025-10-31T06:28:29.9679611Z CC [M] drivers/iio/chemical/bme680_i2c.o
2025-10-31T06:28:29.9898587Z CC [M] drivers/iio/adc/mcp3911.o
2025-10-31T06:28:30.0022512Z CC [M] drivers/fpga/dfl-fme-perf.o
2025-10-31T06:28:30.4641477Z CC [M] drivers/iio/adc/men_z188_adc.o
2025-10-31T06:28:30.8952799Z CC [M] drivers/iio/chemical/bme680_spi.o
2025-10-31T06:28:30.9368691Z CC [M] drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.o
2025-10-31T06:28:31.0032323Z CC [M] drivers/iio/adc/mp2629_adc.o
2025-10-31T06:28:31.1219389Z CC [M] drivers/fpga/dfl-fme-mgr.o
2025-10-31T06:28:31.4709006Z CC [M] drivers/infiniband/hw/hfi1/platform.o
2025-10-31T06:28:31.5074751Z CC [M] drivers/iio/adc/nau7802.o
2025-10-31T06:28:31.7040131Z CC [M] drivers/iio/common/cros_ec_sensors/cros_ec_sensors.o
2025-10-31T06:28:31.7797054Z CC [M] drivers/fpga/dfl-fme-br.o
2025-10-31T06:28:31.8172199Z CC [M] drivers/iio/chemical/ccs811.o
2025-10-31T06:28:32.1512300Z CC [M] drivers/iio/adc/palmas_gpadc.o
2025-10-31T06:28:32.2243901Z CC [M] drivers/iio/common/cros_ec_sensors/cros_ec_lid_angle.o
2025-10-31T06:28:32.3780788Z CC [M] drivers/iio/chemical/ams-iaq-core.o
2025-10-31T06:28:32.5333888Z CC [M] drivers/fpga/dfl-fme-region.o
2025-10-31T06:28:32.8829908Z CC [M] drivers/iio/chemical/pms7003.o
2025-10-31T06:28:32.8853725Z CC [M] drivers/iio/common/hid-sensors/hid-sensor-attributes.o
2025-10-31T06:28:33.0055796Z CC [M] drivers/fpga/dfl-afu-main.o
2025-10-31T06:28:33.1424934Z CC [M] drivers/infiniband/hw/hfi1/qp.o
2025-10-31T06:28:33.4179120Z CC [M] drivers/iio/adc/ti-adc081c.o
2025-10-31T06:28:33.4759110Z CC [M] drivers/iio/chemical/scd30_core.o
2025-10-31T06:28:33.6395670Z CC [M] drivers/iio/common/hid-sensors/hid-sensor-trigger.o
2025-10-31T06:28:34.0950255Z CC [M] drivers/fpga/dfl-afu-region.o
2025-10-31T06:28:34.4413974Z LD [M] drivers/iio/common/hid-sensors/hid-sensor-iio-common.o
2025-10-31T06:28:34.4628964Z CC [M] drivers/iio/adc/ti-adc0832.o
2025-10-31T06:28:34.5082282Z CC [M] drivers/iio/common/ms_sensors/ms_sensors_i2c.o
2025-10-31T06:28:34.5750135Z CC [M] drivers/iio/chemical/scd30_i2c.o
2025-10-31T06:28:34.7470193Z CC [M] drivers/fpga/dfl-afu-dma-region.o
2025-10-31T06:28:35.2827694Z CC [M] drivers/iio/common/ssp_sensors/ssp_dev.o
2025-10-31T06:28:35.3311410Z CC [M] drivers/iio/adc/ti-adc084s021.o
2025-10-31T06:28:35.4731030Z CC [M] drivers/iio/chemical/scd30_serial.o
2025-10-31T06:28:35.5164463Z CC [M] drivers/infiniband/hw/hfi1/qsfp.o
2025-10-31T06:28:35.6066163Z CC [M] drivers/fpga/dfl-afu-error.o
2025-10-31T06:28:35.9118407Z CC [M] drivers/iio/common/ssp_sensors/ssp_spi.o
2025-10-31T06:28:36.3023875Z CC [M] drivers/fpga/dfl-pci.o
2025-10-31T06:28:36.3363691Z CC [M] drivers/iio/adc/ti-adc12138.o
2025-10-31T06:28:36.4259113Z CC [M] drivers/iio/chemical/sgp30.o
2025-10-31T06:28:36.8421041Z CC [M] drivers/iio/common/ssp_sensors/ssp_iio.o
2025-10-31T06:28:37.0688186Z CC [M] drivers/iio/chemical/sps30.o
2025-10-31T06:28:37.1097369Z LD [M] drivers/fpga/dfl-fme.o
2025-10-31T06:28:37.1285041Z LD [M] drivers/fpga/dfl-afu.o
2025-10-31T06:28:37.2412675Z CC [M] drivers/infiniband/hw/hfi1/rc.o
2025-10-31T06:28:37.3277737Z CC [M] drivers/iio/common/st_sensors/st_sensors_i2c.o
2025-10-31T06:28:37.3472833Z CC [M] drivers/iio/adc/ti-adc108s102.o
2025-10-31T06:28:37.4866539Z LD [M] drivers/iio/common/ssp_sensors/sensorhub.o
2025-10-31T06:28:37.5613345Z CC [M] drivers/iio/adc/ti-adc128s052.o
2025-10-31T06:28:37.7542947Z CC [M] drivers/iio/chemical/vz89x.o
2025-10-31T06:28:38.1403516Z CC [M] drivers/iio/common/st_sensors/st_sensors_spi.o
2025-10-31T06:28:38.2603635Z CC [M] drivers/iio/dac/ad5360.o
2025-10-31T06:28:38.5220828Z CC [M] drivers/iio/common/st_sensors/st_sensors_core.o
2025-10-31T06:28:38.6057828Z CC [M] drivers/iio/adc/ti-adc161s626.o
2025-10-31T06:28:39.0371627Z CC [M] drivers/iio/dac/ad5380.o
2025-10-31T06:28:39.4076863Z CC [M] drivers/iio/adc/ti-ads1015.o
2025-10-31T06:28:39.4274032Z CC [M] drivers/iio/common/st_sensors/st_sensors_buffer.o
2025-10-31T06:28:39.8874100Z CC [M] drivers/iio/adc/ti-ads7950.o
2025-10-31T06:28:40.0787127Z CC [M] drivers/iio/dac/ad5421.o
2025-10-31T06:28:40.1537112Z CC [M] drivers/visorbus/visorbus_main.o
2025-10-31T06:28:40.3498336Z CC [M] drivers/iio/common/st_sensors/st_sensors_trigger.o
2025-10-31T06:28:40.8086181Z CC [M] drivers/infiniband/hw/hfi1/ruc.o
2025-10-31T06:28:40.8135610Z CC [M] drivers/iio/dac/ad5624r_spi.o
2025-10-31T06:28:40.9023031Z CC [M] drivers/iio/adc/ti-tlc4541.o
2025-10-31T06:28:41.1424659Z CC [M] drivers/visorbus/visorchannel.o
2025-10-31T06:28:41.2619082Z LD [M] drivers/iio/common/st_sensors/st_sensors.o
2025-10-31T06:28:41.3610233Z CC [M] drivers/iio/adc/twl4030-madc.o
2025-10-31T06:28:41.6797096Z CC [M] drivers/siox/siox-core.o
2025-10-31T06:28:41.7583776Z CC [M] drivers/visorbus/visorchipset.o
2025-10-31T06:28:41.7733669Z CC [M] drivers/iio/dac/ad5064.o
2025-10-31T06:28:42.4868793Z CC [M] drivers/iio/adc/twl6030-gpadc.o
2025-10-31T06:28:42.7888865Z CC [M] drivers/iio/dac/ad5504.o
2025-10-31T06:28:42.9723152Z CC [M] drivers/siox/siox-bus-gpio.o
2025-10-31T06:28:43.0941314Z CC [M] drivers/infiniband/hw/hfi1/sdma.o
2025-10-31T06:28:43.2284389Z CC [M] drivers/iio/adc/viperboard_adc.o
2025-10-31T06:28:43.3101547Z LD [M] drivers/visorbus/visorbus.o
2025-10-31T06:28:43.3843841Z CC [M] drivers/iio/adc/xilinx-xadc-core.o
2025-10-31T06:28:43.5470645Z CC [M] drivers/iio/dac/ad5446.o
2025-10-31T06:28:43.5570580Z CC [M] drivers/iio/adc/xilinx-xadc-events.o
2025-10-31T06:28:43.8706344Z CC [M] drivers/infiniband/hw/hfi1/sysfs.o
2025-10-31T06:28:44.1538352Z CC [M] drivers/iio/gyro/adis16080.o
2025-10-31T06:28:44.4357796Z LD [M] drivers/iio/adc/xilinx-xadc.o
2025-10-31T06:28:44.4671885Z CC [M] drivers/iio/dac/ad5449.o
2025-10-31T06:28:44.6605036Z CC [M] drivers/gnss/core.o
2025-10-31T06:28:44.8781193Z CC [M] drivers/iio/gyro/adis16130.o
2025-10-31T06:28:45.3492784Z CC [M] drivers/iio/dac/ad5592r-base.o
2025-10-31T06:28:45.6415378Z CC [M] drivers/iio/gyro/adis16136.o
2025-10-31T06:28:45.7079122Z CC [M] drivers/gnss/serial.o
2025-10-31T06:28:45.8887765Z CC [M] drivers/iio/gyro/adis16260.o
2025-10-31T06:28:46.4108348Z CC [M] drivers/iio/frequency/ad9523.o
2025-10-31T06:28:46.4116349Z CC [M] drivers/iio/dac/ad5592r.o
2025-10-31T06:28:46.5549065Z CC [M] drivers/iio/gyro/adxrs290.o
2025-10-31T06:28:46.5742977Z CC [M] drivers/gnss/mtk.o
2025-10-31T06:28:46.8115530Z CC [M] drivers/infiniband/hw/hfi1/tid_rdma.o
2025-10-31T06:28:47.1555344Z CC [M] drivers/iio/dac/ad5593r.o
2025-10-31T06:28:47.5028217Z CC [M] drivers/iio/gyro/adxrs450.o
2025-10-31T06:28:47.5204232Z CC [M] drivers/iio/frequency/adf4350.o
2025-10-31T06:28:47.5570067Z CC [M] drivers/gnss/sirf.o
2025-10-31T06:28:47.7354124Z CC [M] drivers/iio/dac/ad5755.o
2025-10-31T06:28:48.3880034Z CC [M] drivers/iio/gyro/bmg160_core.o
2025-10-31T06:28:48.5038428Z CC [M] drivers/iio/dac/ad5758.o
2025-10-31T06:28:48.5243526Z CC [M] drivers/iio/frequency/adf4371.o
2025-10-31T06:28:48.5803578Z CC [M] drivers/gnss/ubx.o
2025-10-31T06:28:49.2925987Z CC [M] drivers/iio/gyro/bmg160_i2c.o
2025-10-31T06:28:49.3949230Z LD [M] drivers/gnss/gnss.o
2025-10-31T06:28:49.4067187Z CC [M] drivers/iio/dac/ad5761.o
2025-10-31T06:28:49.4112950Z LD [M] drivers/gnss/gnss-serial.o
2025-10-31T06:28:49.4369010Z LD [M] drivers/gnss/gnss-mtk.o
2025-10-31T06:28:49.4618817Z LD [M] drivers/gnss/gnss-sirf.o
2025-10-31T06:28:49.4854854Z LD [M] drivers/gnss/gnss-ubx.o
2025-10-31T06:28:49.5289832Z CC [M] drivers/infiniband/hw/hfi1/trace.o
2025-10-31T06:28:49.5949459Z CC [M] drivers/counter/counter.o
2025-10-31T06:28:49.8439207Z CC [M] drivers/iio/gyro/bmg160_spi.o
2025-10-31T06:28:50.2245443Z CC [M] drivers/iio/dac/ad5764.o
2025-10-31T06:28:50.5262684Z CC [M] drivers/iio/gyro/fxas21002c_core.o
2025-10-31T06:28:51.0177880Z CC [M] drivers/iio/dac/ad5770r.o
2025-10-31T06:28:51.0593778Z CC [M] drivers/iio/health/afe4403.o
2025-10-31T06:28:51.5691786Z CC [M] drivers/iio/gyro/fxas21002c_i2c.o
2025-10-31T06:28:52.0499472Z CC [M] drivers/iio/health/afe4404.o
2025-10-31T06:28:52.0880457Z CC [M] drivers/iio/dac/ad5791.o
2025-10-31T06:28:52.1254370Z CC [M] drivers/iio/gyro/fxas21002c_spi.o
2025-10-31T06:28:52.6768095Z CC [M] drivers/iio/health/max30100.o
2025-10-31T06:28:52.8452646Z CC [M] drivers/iio/gyro/hid-sensor-gyro-3d.o
2025-10-31T06:28:52.9130123Z CC [M] drivers/iio/dac/ad5686.o
2025-10-31T06:28:53.2744606Z CC [M] drivers/iio/dac/ad5686-spi.o
2025-10-31T06:28:53.3811041Z CC [M] drivers/iio/health/max30102.o
2025-10-31T06:28:53.7667784Z CC [M] drivers/iio/gyro/mpu3050-core.o
2025-10-31T06:28:53.8215293Z CC [M] drivers/most/core.o
2025-10-31T06:28:53.9248569Z CC [M] drivers/iio/dac/ad5696-i2c.o
2025-10-31T06:28:54.1461444Z CC [M] drivers/iio/dac/ad7303.o
2025-10-31T06:28:54.4356335Z CC [M] drivers/most/configfs.o
2025-10-31T06:28:54.8217765Z CC [M] drivers/iio/gyro/mpu3050-i2c.o
2025-10-31T06:28:55.0923556Z CC [M] drivers/iio/dac/ad8801.o
2025-10-31T06:28:55.3552952Z CC [M] drivers/iio/gyro/itg3200_core.o
2025-10-31T06:28:55.3690312Z CC [M] drivers/most/most_usb.o
2025-10-31T06:28:55.8382796Z CC [M] drivers/most/most_cdev.o
2025-10-31T06:28:55.8655923Z CC [M] drivers/iio/dac/ds4424.o
2025-10-31T06:28:55.9896496Z CC [M] drivers/iio/gyro/itg3200_buffer.o
2025-10-31T06:28:56.5674075Z CC [M] drivers/iio/gyro/ssp_gyro_sensor.o
2025-10-31T06:28:56.6958630Z CC [M] drivers/iio/humidity/am2315.o
2025-10-31T06:28:56.8755785Z LD [M] drivers/most/most_core.o
2025-10-31T06:28:56.9414690Z CC [M] drivers/iio/dac/ltc1660.o
2025-10-31T06:28:56.9784149Z CC [M] drivers/iio/gyro/st_gyro_core.o
2025-10-31T06:28:57.0143067Z CC [M] drivers/iio/imu/bmi160/bmi160_core.o
2025-10-31T06:28:57.3420594Z CC [M] drivers/iio/humidity/dht11.o
2025-10-31T06:28:57.8767093Z CC [M] drivers/iio/gyro/st_gyro_buffer.o
2025-10-31T06:28:57.9145136Z CC [M] drivers/iio/humidity/hdc100x.o
2025-10-31T06:28:57.9710124Z CC [M] drivers/iio/dac/ltc2632.o
2025-10-31T06:28:58.0543809Z CC [M] drivers/iio/imu/bmi160/bmi160_i2c.o
2025-10-31T06:28:58.4854868Z CC [M] drivers/infiniband/hw/hfi1/uc.o
2025-10-31T06:28:58.6975076Z CC [M] drivers/iio/gyro/st_gyro_i2c.o
2025-10-31T06:28:58.7265745Z CC [M] drivers/iio/humidity/hdc2010.o
2025-10-31T06:28:58.8332916Z CC [M] drivers/iio/imu/bmi160/bmi160_spi.o
2025-10-31T06:28:58.8669649Z CC [M] drivers/iio/dac/m62332.o
2025-10-31T06:28:59.2752532Z CC [M] drivers/iio/humidity/hid-sensor-humidity.o
2025-10-31T06:28:59.4631369Z CC [M] drivers/iio/gyro/st_gyro_spi.o
2025-10-31T06:28:59.7877048Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_core.o
2025-10-31T06:28:59.8287527Z CC [M] drivers/iio/dac/max517.o
2025-10-31T06:28:59.8634587Z CC [M] drivers/iio/humidity/hts221_core.o
2025-10-31T06:29:00.1645568Z CC [M] drivers/infiniband/hw/hfi1/ud.o
2025-10-31T06:29:00.2685817Z LD [M] drivers/iio/gyro/mpu3050.o
2025-10-31T06:29:00.2835088Z LD [M] drivers/iio/gyro/itg3200.o
2025-10-31T06:29:00.2959551Z LD [M] drivers/iio/gyro/st_gyro.o
2025-10-31T06:29:00.3364991Z CC [M] drivers/iio/dac/mcp4725.o
2025-10-31T06:29:00.4090722Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_gyro.o
2025-10-31T06:29:00.5489630Z CC [M] drivers/iio/humidity/hts221_buffer.o
2025-10-31T06:29:00.8732574Z AR drivers/built-in.a
2025-10-31T06:29:00.9580120Z CC [M] drivers/infiniband/hw/hfi1/user_exp_rcv.o
2025-10-31T06:29:01.1935015Z CC [M] drivers/iio/humidity/hts221_i2c.o
2025-10-31T06:29:01.4181329Z CC [M] drivers/iio/dac/mcp4922.o
2025-10-31T06:29:01.5851012Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_accel.o
2025-10-31T06:29:01.6743766Z CC [M] drivers/iio/humidity/hts221_spi.o
2025-10-31T06:29:02.2420281Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_core.o
2025-10-31T06:29:02.2845387Z CC [M] drivers/iio/dac/ti-dac082s085.o
2025-10-31T06:29:02.3606968Z CC [M] drivers/iio/humidity/htu21.o
2025-10-31T06:29:02.7531234Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_temp.o
2025-10-31T06:29:02.9022928Z CC [M] drivers/iio/humidity/si7005.o
2025-10-31T06:29:03.1999181Z CC [M] drivers/iio/dac/ti-dac5571.o
2025-10-31T06:29:03.3296295Z CC [M] drivers/infiniband/hw/hfi1/user_pages.o
2025-10-31T06:29:03.5407455Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.o
2025-10-31T06:29:03.6133029Z CC [M] drivers/iio/humidity/si7020.o
2025-10-31T06:29:03.8061254Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_ring.o
2025-10-31T06:29:03.9706027Z CC [M] drivers/iio/dac/ti-dac7311.o
2025-10-31T06:29:04.3540070Z LD [M] drivers/iio/humidity/hts221.o
2025-10-31T06:29:04.4467815Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.o
2025-10-31T06:29:04.4878817Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_timestamp.o
2025-10-31T06:29:04.5270515Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_trigger.o
2025-10-31T06:29:04.5664305Z CC [M] drivers/infiniband/hw/hfi1/user_sdma.o
2025-10-31T06:29:04.8820955Z CC [M] drivers/iio/dac/ti-dac7612.o
2025-10-31T06:29:05.2247537Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_aux.o
2025-10-31T06:29:05.3275400Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_i2c.o
2025-10-31T06:29:05.5281118Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.o
2025-10-31T06:29:05.7016401Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_magn.o
2025-10-31T06:29:06.0166554Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_i2c.o
2025-10-31T06:29:06.2146406Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_spi.o
2025-10-31T06:29:06.4030211Z CC [M] drivers/infiniband/hw/hfi1/verbs.o
2025-10-31T06:29:06.4532388Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_shub.o
2025-10-31T06:29:06.5513188Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_acpi.o
2025-10-31T06:29:06.9871718Z LD [M] drivers/iio/imu/inv_icm42600/inv-icm42600.o
2025-10-31T06:29:07.0107957Z LD [M] drivers/iio/imu/inv_icm42600/inv-icm42600-i2c.o
2025-10-31T06:29:07.0232407Z LD [M] drivers/iio/imu/inv_icm42600/inv-icm42600-spi.o
2025-10-31T06:29:07.0787970Z CC [M] drivers/iio/light/acpi-als.o
2025-10-31T06:29:07.3134807Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_spi.o
2025-10-31T06:29:07.3163534Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.o
2025-10-31T06:29:07.3690283Z CC [M] drivers/iio/light/adjd_s311.o
2025-10-31T06:29:07.5144198Z LD [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050.o
2025-10-31T06:29:07.5504344Z CC [M] drivers/iio/magnetometer/ak8975.o
2025-10-31T06:29:07.9074131Z CC [M] drivers/iio/light/adux1020.o
2025-10-31T06:29:07.9220812Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.o
2025-10-31T06:29:08.1989219Z LD [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050-i2c.o
2025-10-31T06:29:08.2231330Z LD [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050-spi.o
2025-10-31T06:29:08.2982899Z LD [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.o
2025-10-31T06:29:08.3312281Z CC [M] drivers/iio/light/al3010.o
2025-10-31T06:29:08.5730433Z CC [M] drivers/iio/imu/adis16400.o
2025-10-31T06:29:08.6222477Z CC [M] drivers/iio/imu/adis16460.o
2025-10-31T06:29:08.6636514Z CC [M] drivers/iio/magnetometer/bmc150_magn.o
2025-10-31T06:29:08.9356130Z CC [M] drivers/iio/light/al3320a.o
2025-10-31T06:29:09.3236658Z CC [M] drivers/infiniband/hw/hfi1/verbs_txreq.o
2025-10-31T06:29:09.4380619Z CC [M] drivers/iio/imu/adis16475.o
2025-10-31T06:29:09.5801407Z CC [M] drivers/iio/light/apds9300.o
2025-10-31T06:29:09.6215577Z CC [M] drivers/iio/magnetometer/bmc150_magn_i2c.o
2025-10-31T06:29:09.7792479Z CC [M] drivers/iio/light/apds9960.o
2025-10-31T06:29:10.2562806Z CC [M] drivers/iio/magnetometer/bmc150_magn_spi.o
2025-10-31T06:29:10.2910500Z CC [M] drivers/iio/light/as73211.o
2025-10-31T06:29:10.3114414Z CC [M] drivers/iio/imu/adis16480.o
2025-10-31T06:29:10.6633764Z CC [M] drivers/infiniband/hw/hfi1/vnic_main.o
2025-10-31T06:29:11.0444924Z CC [M] drivers/iio/magnetometer/mag3110.o
2025-10-31T06:29:11.0813963Z CC [M] drivers/iio/magnetometer/hid-sensor-magn-3d.o
2025-10-31T06:29:11.1589780Z CC [M] drivers/iio/light/bh1750.o
2025-10-31T06:29:11.3292472Z CC [M] drivers/iio/imu/adis.o
2025-10-31T06:29:11.8542242Z CC [M] drivers/iio/orientation/hid-sensor-incl-3d.o
2025-10-31T06:29:11.9486704Z CC [M] drivers/iio/light/bh1780.o
2025-10-31T06:29:12.0089471Z CC [M] drivers/iio/magnetometer/mmc35240.o
2025-10-31T06:29:12.1328503Z CC [M] drivers/infiniband/hw/hfi1/vnic_sdma.o
2025-10-31T06:29:12.2458060Z CC [M] drivers/iio/imu/adis_trigger.o
2025-10-31T06:29:12.4293484Z CC [M] drivers/iio/orientation/hid-sensor-rotation.o
2025-10-31T06:29:12.5759228Z CC [M] drivers/iio/light/cm32181.o
2025-10-31T06:29:12.7134837Z CC [M] drivers/iio/magnetometer/st_magn_core.o
2025-10-31T06:29:12.9031855Z CC [M] drivers/iio/imu/adis_buffer.o
2025-10-31T06:29:13.0059333Z CC [M] drivers/iio/magnetometer/st_magn_buffer.o
2025-10-31T06:29:13.5854175Z CC [M] drivers/iio/light/cm3232.o
2025-10-31T06:29:13.6729117Z CC [M] drivers/iio/imu/fxos8700_core.o
2025-10-31T06:29:13.7575883Z CC [M] drivers/infiniband/hw/hfi1/debugfs.o
2025-10-31T06:29:13.8102969Z CC [M] drivers/iio/magnetometer/st_magn_i2c.o
2025-10-31T06:29:13.8489162Z CC [M] drivers/iio/light/cm3323.o
2025-10-31T06:29:14.2345208Z CC [M] drivers/iio/position/iqs624-pos.o
2025-10-31T06:29:14.3178747Z CC [M] drivers/iio/imu/fxos8700_i2c.o
2025-10-31T06:29:14.5291097Z CC [M] drivers/iio/light/cm36651.o
2025-10-31T06:29:14.6654407Z CC [M] drivers/iio/magnetometer/st_magn_spi.o
2025-10-31T06:29:14.7756933Z CC [M] drivers/iio/imu/fxos8700_spi.o
2025-10-31T06:29:14.8903822Z CC [M] drivers/iio/imu/kmx61.o
2025-10-31T06:29:15.5180963Z CC [M] drivers/iio/light/cros_ec_light_prox.o
2025-10-31T06:29:15.5202862Z CC [M] drivers/iio/magnetometer/hmc5843_core.o
2025-10-31T06:29:15.5759394Z CC [M] drivers/iio/magnetometer/hmc5843_i2c.o
2025-10-31T06:29:15.9532563Z LD [M] drivers/iio/imu/adis_lib.o
2025-10-31T06:29:15.9816530Z CC [M] drivers/iio/light/gp2ap002.o
2025-10-31T06:29:16.0624801Z LD [M] drivers/infiniband/hw/hfi1/hfi1.o
2025-10-31T06:29:16.0969452Z CC [M] drivers/iio/light/gp2ap020a00f.o
2025-10-31T06:29:16.1306919Z CC [M] drivers/iio/potentiometer/ad5272.o
2025-10-31T06:29:16.2293935Z CC [M] drivers/iio/magnetometer/hmc5843_spi.o
2025-10-31T06:29:16.4137444Z CC [M] drivers/iio/magnetometer/rm3100-core.o
2025-10-31T06:29:16.7930297Z CC [M] drivers/iio/magnetometer/rm3100-i2c.o
2025-10-31T06:29:16.8455315Z CC [M] drivers/iio/potentiometer/ds1803.o
2025-10-31T06:29:16.9176272Z CC [M] drivers/iio/potentiostat/lmp91000.o
2025-10-31T06:29:17.1873318Z CC [M] drivers/iio/magnetometer/rm3100-spi.o
2025-10-31T06:29:17.3316114Z CC [M] drivers/iio/potentiometer/max5432.o
2025-10-31T06:29:17.4202182Z CC [M] drivers/iio/light/hid-sensor-als.o
2025-10-31T06:29:17.4802836Z CC [M] drivers/iio/light/hid-sensor-prox.o
2025-10-31T06:29:17.5219698Z CC [M] drivers/iio/light/iqs621-als.o
2025-10-31T06:29:17.8043138Z LD [M] drivers/iio/magnetometer/st_magn.o
2025-10-31T06:29:17.9010455Z CC [M] drivers/iio/potentiometer/max5481.o
2025-10-31T06:29:17.9913043Z CC [M] drivers/iio/pressure/abp060mg.o
2025-10-31T06:29:18.0559280Z CC [M] drivers/iio/pressure/bmp280-core.o
2025-10-31T06:29:18.0680030Z CC [M] drivers/iio/pressure/bmp280-regmap.o
2025-10-31T06:29:18.3002950Z CC [M] drivers/iio/light/isl29018.o
2025-10-31T06:29:18.4450275Z CC [M] drivers/iio/potentiometer/max5487.o
2025-10-31T06:29:18.6704786Z CC [M] drivers/iio/light/isl29028.o
2025-10-31T06:29:18.7319265Z CC [M] drivers/iio/proximity/as3935.o
2025-10-31T06:29:19.1151734Z CC [M] drivers/iio/potentiometer/mcp4018.o
2025-10-31T06:29:19.2264233Z CC [M] drivers/iio/pressure/bmp280-i2c.o
2025-10-31T06:29:19.3671545Z CC [M] drivers/iio/proximity/isl29501.o
2025-10-31T06:29:19.4870354Z CC [M] drivers/iio/light/isl29125.o
2025-10-31T06:29:19.5136902Z CC [M] drivers/iio/proximity/pulsedlight-lidar-lite-v2.o
2025-10-31T06:29:19.6525803Z CC [M] drivers/iio/pressure/bmp280-spi.o
2025-10-31T06:29:19.7904002Z CC [M] drivers/iio/potentiometer/mcp4131.o
2025-10-31T06:29:20.0040592Z CC [M] drivers/iio/proximity/mb1232.o
2025-10-31T06:29:20.1001164Z CC [M] drivers/iio/light/jsa1212.o
2025-10-31T06:29:20.2439707Z CC [M] drivers/iio/light/lm3533-als.o
2025-10-31T06:29:20.3310431Z CC [M] drivers/iio/pressure/dlhl60d.o
2025-10-31T06:29:20.5614268Z CC [M] drivers/iio/potentiometer/mcp4531.o
2025-10-31T06:29:20.6325741Z CC [M] drivers/iio/proximity/ping.o
2025-10-31T06:29:20.7932427Z CC [M] drivers/iio/pressure/dps310.o
2025-10-31T06:29:20.9680206Z CC [M] drivers/iio/light/ltr501.o
2025-10-31T06:29:20.9968934Z CC [M] drivers/iio/light/lv0104cs.o
2025-10-31T06:29:21.1154863Z CC [M] drivers/iio/potentiometer/mcp41010.o
2025-10-31T06:29:21.1906551Z CC [M] drivers/iio/proximity/rfd77402.o
2025-10-31T06:29:21.6744050Z CC [M] drivers/iio/pressure/cros_ec_baro.o
2025-10-31T06:29:21.7071753Z CC [M] drivers/iio/resolver/ad2s90.o
2025-10-31T06:29:21.7545906Z CC [M] drivers/iio/proximity/srf04.o
2025-10-31T06:29:21.7645537Z CC [M] drivers/iio/potentiometer/tpl0102.o
2025-10-31T06:29:22.0807477Z CC [M] drivers/iio/light/max44000.o
2025-10-31T06:29:22.2593269Z CC [M] drivers/iio/proximity/srf08.o
2025-10-31T06:29:22.3251693Z CC [M] drivers/iio/pressure/hid-sensor-press.o
2025-10-31T06:29:22.4052572Z CC [M] drivers/iio/resolver/ad2s1200.o
2025-10-31T06:29:22.5663844Z CC [M] drivers/iio/pressure/hp03.o
2025-10-31T06:29:22.7219720Z CC [M] drivers/iio/light/max44009.o
2025-10-31T06:29:22.8462209Z CC [M] drivers/iio/proximity/sx9310.o
2025-10-31T06:29:23.0508211Z CC [M] drivers/iio/proximity/sx9500.o
2025-10-31T06:29:23.0905910Z CC [M] drivers/iio/light/noa1305.o
2025-10-31T06:29:23.2364919Z CC [M] drivers/iio/pressure/icp10100.o
2025-10-31T06:29:23.4203851Z CC [M] drivers/iio/light/opt3001.o
2025-10-31T06:29:23.9410908Z CC [M] drivers/iio/temperature/iqs620at-temp.o
2025-10-31T06:29:23.9698317Z CC [M] drivers/iio/proximity/vcnl3020.o
2025-10-31T06:29:24.0857341Z CC [M] drivers/iio/light/pa12203001.o
2025-10-31T06:29:24.1230020Z CC [M] drivers/iio/light/rpr0521.o
2025-10-31T06:29:24.3324409Z CC [M] drivers/iio/pressure/mpl115.o
2025-10-31T06:29:24.5055001Z CC [M] drivers/iio/proximity/vl53l0x-i2c.o
2025-10-31T06:29:24.5302653Z CC [M] drivers/iio/temperature/ltc2983.o
2025-10-31T06:29:24.8188891Z CC [M] drivers/iio/temperature/hid-sensor-temperature.o
2025-10-31T06:29:24.8676212Z CC [M] drivers/iio/pressure/mpl115_i2c.o
2025-10-31T06:29:24.8980546Z CC [M] drivers/iio/light/tsl2563.o
2025-10-31T06:29:25.2029814Z CC [M] drivers/iio/light/si1133.o
2025-10-31T06:29:25.4087810Z CC [M] drivers/iio/pressure/mpl115_spi.o
2025-10-31T06:29:25.4593105Z CC [M] drivers/iio/pressure/mpl3115.o
2025-10-31T06:29:25.4848996Z CC [M] drivers/iio/temperature/maxim_thermocouple.o
2025-10-31T06:29:25.5980876Z CC [M] drivers/iio/temperature/max31856.o
2025-10-31T06:29:26.0765544Z CC [M] drivers/iio/temperature/mlx90614.o
2025-10-31T06:29:26.1077640Z CC [M] drivers/iio/light/si1145.o
2025-10-31T06:29:26.1445136Z CC [M] drivers/iio/pressure/ms5611_core.o
2025-10-31T06:29:26.2513279Z CC [M] drivers/iio/trigger/iio-trig-hrtimer.o
2025-10-31T06:29:26.3720217Z CC [M] drivers/iio/trigger/iio-trig-interrupt.o
2025-10-31T06:29:26.8787576Z CC [M] drivers/iio/light/stk3310.o
2025-10-31T06:29:26.8817082Z CC [M] drivers/iio/temperature/mlx90632.o
2025-10-31T06:29:26.9058505Z CC [M] drivers/iio/pressure/ms5611_i2c.o
2025-10-31T06:29:26.9630524Z CC [M] drivers/iio/trigger/iio-trig-sysfs.o
2025-10-31T06:29:26.9850272Z CC [M] drivers/iio/pressure/ms5611_spi.o
2025-10-31T06:29:27.4983690Z CC [M] drivers/iio/temperature/tmp006.o
2025-10-31T06:29:27.5554775Z CC [M] drivers/iio/trigger/iio-trig-loop.o
2025-10-31T06:29:27.5760306Z CC [M] drivers/iio/light/st_uvis25_core.o
2025-10-31T06:29:27.6789521Z CC [M] drivers/iio/pressure/ms5637.o
2025-10-31T06:29:27.7460941Z CC [M] drivers/iio/industrialio-core.o
2025-10-31T06:29:28.0976613Z CC [M] drivers/iio/temperature/tmp007.o
2025-10-31T06:29:28.2224041Z CC [M] drivers/iio/light/st_uvis25_i2c.o
2025-10-31T06:29:28.2311153Z CC [M] drivers/iio/light/st_uvis25_spi.o
2025-10-31T06:29:28.2576497Z CC [M] drivers/iio/pressure/st_pressure_core.o
2025-10-31T06:29:28.7045963Z CC [M] drivers/iio/pressure/st_pressure_buffer.o
2025-10-31T06:29:28.8073426Z CC [M] drivers/iio/temperature/tsys01.o
2025-10-31T06:29:28.8966689Z CC [M] drivers/iio/light/tcs3414.o
2025-10-31T06:29:29.1322870Z CC [M] drivers/iio/light/tcs3472.o
2025-10-31T06:29:29.2205736Z CC [M] drivers/iio/light/tsl2583.o
2025-10-31T06:29:29.3053106Z CC [M] drivers/iio/temperature/tsys02d.o
2025-10-31T06:29:29.5549920Z CC [M] drivers/iio/pressure/t5403.o
2025-10-31T06:29:29.6059104Z CC [M] drivers/iio/pressure/hp206c.o
2025-10-31T06:29:29.8948961Z CC [M] drivers/iio/industrialio-event.o
2025-10-31T06:29:29.9452997Z CC [M] drivers/iio/inkern.o
2025-10-31T06:29:29.9643855Z CC [M] drivers/iio/light/tsl2772.o
2025-10-31T06:29:30.1010575Z CC [M] drivers/iio/industrialio-buffer.o
2025-10-31T06:29:30.3295606Z CC [M] drivers/iio/pressure/zpa2326.o
2025-10-31T06:29:30.7676833Z CC [M] drivers/iio/industrialio-trigger.o
2025-10-31T06:29:30.8728159Z CC [M] drivers/iio/light/tsl4531.o
2025-10-31T06:29:31.3963236Z CC [M] drivers/iio/light/us5182d.o
2025-10-31T06:29:31.4052456Z CC [M] drivers/iio/pressure/zpa2326_i2c.o
2025-10-31T06:29:31.4264745Z CC [M] drivers/iio/light/vcnl4000.o
2025-10-31T06:29:31.4305970Z CC [M] drivers/iio/industrialio-configfs.o
2025-10-31T06:29:31.7381052Z CC [M] drivers/iio/industrialio-sw-device.o
2025-10-31T06:29:31.8472855Z CC [M] drivers/iio/pressure/zpa2326_spi.o
2025-10-31T06:29:31.8609711Z CC [M] drivers/iio/pressure/st_pressure_i2c.o
2025-10-31T06:29:32.2818284Z CC [M] drivers/iio/light/vcnl4035.o
2025-10-31T06:29:32.3023548Z CC [M] drivers/iio/light/veml6030.o
2025-10-31T06:29:32.3979350Z CC [M] drivers/iio/pressure/st_pressure_spi.o
2025-10-31T06:29:32.4896642Z CC [M] drivers/iio/light/veml6070.o
2025-10-31T06:29:32.6342297Z CC [M] drivers/iio/industrialio-sw-trigger.o
2025-10-31T06:29:32.8884124Z CC [M] drivers/iio/industrialio-triggered-event.o
2025-10-31T06:29:33.0778061Z LD [M] drivers/iio/pressure/bmp280.o
2025-10-31T06:29:33.1033587Z LD [M] drivers/iio/industrialio.o
2025-10-31T06:29:33.1259586Z LD [M] drivers/iio/pressure/st_pressure.o
2025-10-31T06:29:33.1525637Z CC [M] drivers/iio/light/vl6180.o
2025-10-31T06:29:33.1810604Z CC [M] drivers/iio/light/zopt2201.o
2025-10-31T06:29:33.8717096Z GEN .version
2025-10-31T06:29:33.9018969Z CHK include/generated/compile.h
2025-10-31T06:29:33.9300521Z LD vmlinux.o
2025-10-31T06:29:37.6287677Z MODPOST vmlinux.symvers
2025-10-31T06:29:38.0028236Z MODINFO modules.builtin.modinfo
2025-10-31T06:29:38.0597577Z GEN modules.builtin
2025-10-31T06:29:38.0674891Z LD .tmp_vmlinux.btf
2025-10-31T06:29:45.4659931Z BTF .btf.vmlinux.bin.o
2025-10-31T06:29:56.9724112Z LD .tmp_vmlinux.kallsyms1
2025-10-31T06:30:00.2459684Z KSYMS .tmp_vmlinux.kallsyms1.S
2025-10-31T06:30:00.8680961Z AS .tmp_vmlinux.kallsyms1.o
2025-10-31T06:30:01.3352924Z LD .tmp_vmlinux.kallsyms2
2025-10-31T06:30:04.6369870Z KSYMS .tmp_vmlinux.kallsyms2.S
2025-10-31T06:30:05.2572401Z AS .tmp_vmlinux.kallsyms2.o
2025-10-31T06:30:05.7312437Z LD vmlinux
2025-10-31T06:30:13.0117510Z BTFIDS vmlinux
2025-10-31T06:30:13.0212992Z FAILED unresolved symbol filp_close
2025-10-31T06:30:13.4720696Z make: *** [Makefile:1226: vmlinux] Error 255
2025-10-31T06:30:13.4763166Z ==> ERROR: A failure occurred in build().
2025-10-31T06:30:13.4777784Z Aborting...
2025-10-31T06:30:13.4819664Z ^[[1m^[[31m==> ERROR:^[[0m^[[1m Building package [linux510] failed.^[[0m
2025-10-31T06:30:13.4820513Z ^[[1m Cleaning up.^[[0m
2025-10-31T06:30:13.4820812Z
2025-10-31T06:30:13.4929619Z ##[error]Process completed with exit code 1.
2025-10-31T06:30:13.5031670Z Cleaning up orphan processes
[-- Attachment #3: linux5.10.245build.log --]
[-- Type: text/x-log, Size: 3840120 bytes --]
2025-10-02T15:21:57.4641336Z Current runner version: '2.328.0'
2025-10-02T15:21:57.4671837Z ##[group]Runner Image Provisioner
2025-10-02T15:21:57.4674359Z Hosted Compute Agent
2025-10-02T15:21:57.4676649Z Version: 20250912.392
2025-10-02T15:21:57.4679232Z Commit: d921fda672a98b64f4f82364647e2f10b2267d0b
2025-10-02T15:21:57.4682202Z Build Date: 2025-09-12T15:23:14Z
2025-10-02T15:21:57.4684575Z ##[endgroup]
2025-10-02T15:21:57.4686692Z ##[group]Operating System
2025-10-02T15:21:57.4689165Z Ubuntu
2025-10-02T15:21:57.4690876Z 24.04.3
2025-10-02T15:21:57.4692192Z LTS
2025-10-02T15:21:57.4693455Z ##[endgroup]
2025-10-02T15:21:57.4694779Z ##[group]Runner Image
2025-10-02T15:21:57.4696114Z Image: ubuntu-24.04
2025-10-02T15:21:57.4697432Z Version: 20250922.53.1
2025-10-02T15:21:57.4699367Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20250922.53/images/ubuntu/Ubuntu2404-Readme.md
2025-10-02T15:21:57.4702428Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20250922.53
2025-10-02T15:21:57.4704363Z ##[endgroup]
2025-10-02T15:21:57.4708130Z ##[group]GITHUB_TOKEN Permissions
2025-10-02T15:21:57.4712105Z Actions: write
2025-10-02T15:21:57.4713443Z Attestations: write
2025-10-02T15:21:57.4715668Z Checks: write
2025-10-02T15:21:57.4717652Z Contents: write
2025-10-02T15:21:57.4720278Z Deployments: write
2025-10-02T15:21:57.4722314Z Discussions: write
2025-10-02T15:21:57.4724407Z Issues: write
2025-10-02T15:21:57.4726398Z Metadata: read
2025-10-02T15:21:57.4728464Z Models: read
2025-10-02T15:21:57.4730748Z Packages: write
2025-10-02T15:21:57.4732901Z Pages: write
2025-10-02T15:21:57.4735163Z PullRequests: write
2025-10-02T15:21:57.4737488Z RepositoryProjects: write
2025-10-02T15:21:57.4740166Z SecurityEvents: write
2025-10-02T15:21:57.4742495Z Statuses: write
2025-10-02T15:21:57.4744559Z ##[endgroup]
2025-10-02T15:21:57.4748998Z Secret source: Actions
2025-10-02T15:21:57.4752122Z Prepare workflow directory
2025-10-02T15:21:57.5242057Z Prepare all required actions
2025-10-02T15:21:57.5298823Z Getting action download info
2025-10-02T15:21:57.8500790Z Download action repository 'manjaro-kernels/kernel-action@master' (SHA:b932562baf6c9e14112389a67b439266f548865d)
2025-10-02T15:21:58.2195399Z Complete job name: build-kernel
2025-10-02T15:21:58.3069861Z ##[group]Run manjaro-kernels/kernel-action@master
2025-10-02T15:21:58.3071411Z with:
2025-10-02T15:21:58.3072459Z gitlab-pw: ***
2025-10-02T15:21:58.3073478Z build-mirror: ***
2025-10-02T15:21:58.3074406Z branch: unstable
2025-10-02T15:21:58.3075472Z bump-kernel: true
2025-10-02T15:21:58.3076414Z bump-modules: repo
2025-10-02T15:21:58.3119049Z gpg-key: ***
2025-10-02T15:21:58.3120283Z gpg-passphrase: ***
2025-10-02T15:21:58.3121311Z bxt-api-key: ***
2025-10-02T15:21:58.3122234Z bump-pkgrel: false
2025-10-02T15:21:58.3123149Z realtime: false
2025-10-02T15:21:58.3124352Z ##[endgroup]
2025-10-02T15:21:58.3324694Z ##[group]Run sudo apt-get update
2025-10-02T15:21:58.3325838Z ^[[36;1msudo apt-get update^[[0m
2025-10-02T15:21:58.3326882Z ^[[36;1msudo apt-get install \^[[0m
2025-10-02T15:21:58.3327936Z ^[[36;1mbuild-essential \^[[0m
2025-10-02T15:21:58.3328916Z ^[[36;1mcmake \^[[0m
2025-10-02T15:21:58.3329998Z ^[[36;1mfakeroot \^[[0m
2025-10-02T15:21:58.3330963Z ^[[36;1mgit \^[[0m
2025-10-02T15:21:58.3331889Z ^[[36;1mlibarchive-dev \^[[0m
2025-10-02T15:21:58.3332886Z ^[[36;1mlibarchive-tools \^[[0m
2025-10-02T15:21:58.3333871Z ^[[36;1mlibcurl4-openssl-dev \^[[0m
2025-10-02T15:21:58.3334889Z ^[[36;1mlibgpgme-dev \^[[0m
2025-10-02T15:21:58.3335844Z ^[[36;1mlibssl-dev \^[[0m
2025-10-02T15:21:58.3336772Z ^[[36;1mzip \^[[0m
2025-10-02T15:21:58.3337681Z ^[[36;1mpython3-pip^[[0m
2025-10-02T15:21:58.3338646Z ^[[36;1msudo pip3 install meson^[[0m
2025-10-02T15:21:58.3339781Z ^[[36;1msudo pip3 install ninja^[[0m
2025-10-02T15:21:58.3378046Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-02T15:21:58.3379238Z ##[endgroup]
2025-10-02T15:21:58.4185319Z Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [144 B]
2025-10-02T15:21:58.4491487Z Hit:2 http://azure.archive.ubuntu.com/ubuntu noble InRelease
2025-10-02T15:21:58.4502596Z Get:3 http://azure.archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
2025-10-02T15:21:58.4554315Z Get:4 http://azure.archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
2025-10-02T15:21:58.4591707Z Get:5 http://azure.archive.ubuntu.com/ubuntu noble-security InRelease [126 kB]
2025-10-02T15:21:58.5041524Z Hit:6 https://packages.microsoft.com/repos/azure-cli noble InRelease
2025-10-02T15:21:58.5073716Z Get:7 https://packages.microsoft.com/ubuntu/24.04/prod noble InRelease [3600 B]
2025-10-02T15:21:58.5979318Z Get:8 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1482 kB]
2025-10-02T15:21:58.6136327Z Get:9 http://azure.archive.ubuntu.com/ubuntu noble-updates/main Translation-en [286 kB]
2025-10-02T15:21:58.6166663Z Get:10 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Components [175 kB]
2025-10-02T15:21:58.6193920Z Get:11 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 c-n-f Metadata [15.3 kB]
2025-10-02T15:21:58.6216994Z Get:12 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1486 kB]
2025-10-02T15:21:58.6295690Z Get:13 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe Translation-en [300 kB]
2025-10-02T15:21:58.6323135Z Get:14 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Components [377 kB]
2025-10-02T15:21:58.6360323Z Get:15 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 c-n-f Metadata [31.1 kB]
2025-10-02T15:21:58.6366774Z Get:16 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [2048 kB]
2025-10-02T15:21:58.6467927Z Get:17 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted Translation-en [460 kB]
2025-10-02T15:21:58.6930058Z Get:18 http://azure.archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Components [212 B]
2025-10-02T15:21:58.6936374Z Get:19 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse Translation-en [6116 B]
2025-10-02T15:21:58.6947687Z Get:20 http://azure.archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Components [940 B]
2025-10-02T15:21:58.6952902Z Get:21 http://azure.archive.ubuntu.com/ubuntu noble-backports/main amd64 Packages [40.4 kB]
2025-10-02T15:21:58.6988369Z Get:22 http://azure.archive.ubuntu.com/ubuntu noble-backports/main Translation-en [9208 B]
2025-10-02T15:21:58.6995625Z Get:23 http://azure.archive.ubuntu.com/ubuntu noble-backports/main amd64 Components [7156 B]
2025-10-02T15:21:58.7002657Z Get:24 http://azure.archive.ubuntu.com/ubuntu noble-backports/main amd64 c-n-f Metadata [368 B]
2025-10-02T15:21:58.7012663Z Get:25 http://azure.archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [28.9 kB]
2025-10-02T15:21:58.7022288Z Get:26 http://azure.archive.ubuntu.com/ubuntu noble-backports/universe Translation-en [17.5 kB]
2025-10-02T15:21:58.7030850Z Get:27 http://azure.archive.ubuntu.com/ubuntu noble-backports/universe amd64 Components [11.0 kB]
2025-10-02T15:21:58.7038661Z Get:28 http://azure.archive.ubuntu.com/ubuntu noble-backports/universe amd64 c-n-f Metadata [1444 B]
2025-10-02T15:21:58.7045154Z Get:29 http://azure.archive.ubuntu.com/ubuntu noble-backports/restricted amd64 Components [216 B]
2025-10-02T15:21:58.7053898Z Get:30 http://azure.archive.ubuntu.com/ubuntu noble-backports/multiverse amd64 Components [212 B]
2025-10-02T15:21:58.7260628Z Get:31 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 Packages [1201 kB]
2025-10-02T15:21:58.7773528Z Get:32 http://azure.archive.ubuntu.com/ubuntu noble-security/main Translation-en [201 kB]
2025-10-02T15:21:58.7809691Z Get:33 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 Components [21.6 kB]
2025-10-02T15:21:58.7843560Z Get:34 http://azure.archive.ubuntu.com/ubuntu noble-security/main amd64 c-n-f Metadata [8744 B]
2025-10-02T15:21:58.7853316Z Get:35 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 Packages [881 kB]
2025-10-02T15:21:58.7930055Z Get:36 http://azure.archive.ubuntu.com/ubuntu noble-security/universe Translation-en [196 kB]
2025-10-02T15:21:58.7963458Z Get:37 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 Components [52.3 kB]
2025-10-02T15:21:58.7974500Z Get:38 http://azure.archive.ubuntu.com/ubuntu noble-security/universe amd64 c-n-f Metadata [18.0 kB]
2025-10-02T15:21:58.8024232Z Get:39 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [1938 kB]
2025-10-02T15:21:58.8157946Z Get:40 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted Translation-en [439 kB]
2025-10-02T15:21:58.8195181Z Get:41 http://azure.archive.ubuntu.com/ubuntu noble-security/restricted amd64 Components [212 B]
2025-10-02T15:21:58.8204093Z Get:42 http://azure.archive.ubuntu.com/ubuntu noble-security/multiverse Translation-en [5844 B]
2025-10-02T15:21:58.8218534Z Get:43 http://azure.archive.ubuntu.com/ubuntu noble-security/multiverse amd64 Components [212 B]
2025-10-02T15:21:58.8532162Z Get:44 https://packages.microsoft.com/ubuntu/24.04/prod noble/main arm64 Packages [42.0 kB]
2025-10-02T15:21:58.8594201Z Get:45 https://packages.microsoft.com/ubuntu/24.04/prod noble/main armhf Packages [10.4 kB]
2025-10-02T15:21:58.8648205Z Get:46 https://packages.microsoft.com/ubuntu/24.04/prod noble/main amd64 Packages [58.7 kB]
2025-10-02T15:22:07.6513420Z Fetched 12.2 MB in 1s (8326 kB/s)
2025-10-02T15:22:08.4751899Z Reading package lists...
2025-10-02T15:22:08.5086570Z Reading package lists...
2025-10-02T15:22:08.7251728Z Building dependency tree...
2025-10-02T15:22:08.7261623Z Reading state information...
2025-10-02T15:22:08.9832068Z fakeroot is already the newest version (1.33-1).
2025-10-02T15:22:08.9835656Z git is already the newest version (1:2.51.0-0ppa2~ubuntu24.04.1).
2025-10-02T15:22:08.9836922Z git set to manually installed.
2025-10-02T15:22:08.9838145Z zip is already the newest version (3.0-13ubuntu0.2).
2025-10-02T15:22:08.9839233Z The following additional packages will be installed:
2025-10-02T15:22:08.9840582Z bzip2-doc cmake-data comerr-dev libacl1-dev libassuan-dev libattr1-dev
2025-10-02T15:22:08.9841821Z libbz2-dev libext2fs-dev libgpg-error-dev libjsoncpp25 liblzma-dev librhash0
2025-10-02T15:22:08.9843904Z libssl3t64 nettle-dev openssl python3-pip-whl
2025-10-02T15:22:08.9856738Z Suggested packages:
2025-10-02T15:22:08.9858002Z cmake-doc cmake-format elpa-cmake-mode ninja-build doc-base libcurl4-doc
2025-10-02T15:22:08.9859009Z libidn-dev libkrb5-dev libldap2-dev librtmp-dev libssh2-1-dev liblzma-doc
2025-10-02T15:22:08.9859844Z libssl-doc
2025-10-02T15:22:09.0230699Z The following NEW packages will be installed:
2025-10-02T15:22:09.0232391Z build-essential bzip2-doc cmake cmake-data comerr-dev libacl1-dev
2025-10-02T15:22:09.0233517Z libarchive-dev libarchive-tools libassuan-dev libattr1-dev libbz2-dev
2025-10-02T15:22:09.0234606Z libcurl4-openssl-dev libext2fs-dev libgpg-error-dev libgpgme-dev
2025-10-02T15:22:09.0244851Z libjsoncpp25 liblzma-dev librhash0 nettle-dev
2025-10-02T15:22:09.0255923Z The following packages will be upgraded:
2025-10-02T15:22:09.0260898Z libssl-dev libssl3t64 openssl python3-pip python3-pip-whl
2025-10-02T15:22:09.0481153Z 5 upgraded, 19 newly installed, 0 to remove and 22 not upgraded.
2025-10-02T15:22:09.0482627Z Need to get 25.9 MB of archives.
2025-10-02T15:22:09.0483917Z After this operation, 61.8 MB of additional disk space will be used.
2025-10-02T15:22:09.0485227Z Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [144 B]
2025-10-02T15:22:09.0836261Z Get:2 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libssl-dev amd64 3.0.13-0ubuntu3.6 [2408 kB]
2025-10-02T15:22:09.1525695Z Get:3 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libssl3t64 amd64 3.0.13-0ubuntu3.6 [1940 kB]
2025-10-02T15:22:09.2090649Z Get:4 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 openssl amd64 3.0.13-0ubuntu3.6 [1003 kB]
2025-10-02T15:22:09.2501153Z Get:5 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 build-essential amd64 12.10ubuntu1 [4928 B]
2025-10-02T15:22:09.2684222Z Get:6 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 bzip2-doc all 1.0.8-5.1build0.1 [499 kB]
2025-10-02T15:22:09.3038339Z Get:7 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 libjsoncpp25 amd64 1.9.5-6build1 [82.8 kB]
2025-10-02T15:22:09.3230482Z Get:8 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 librhash0 amd64 1.4.3-3build1 [129 kB]
2025-10-02T15:22:09.3423835Z Get:9 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 cmake-data all 3.28.3-1build7 [2155 kB]
2025-10-02T15:22:09.4097597Z Get:10 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 cmake amd64 3.28.3-1build7 [11.2 MB]
2025-10-02T15:22:09.5520656Z Get:11 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libbz2-dev amd64 1.0.8-5.1build0.1 [33.6 kB]
2025-10-02T15:22:09.5710245Z Get:12 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 liblzma-dev amd64 5.6.1+really5.4.5-1ubuntu0.2 [176 kB]
2025-10-02T15:22:09.5916643Z Get:13 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libattr1-dev amd64 1:2.5.2-1build1.1 [23.1 kB]
2025-10-02T15:22:09.6103110Z Get:14 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libacl1-dev amd64 2.3.2-1build1.1 [78.5 kB]
2025-10-02T15:22:09.6293167Z Get:15 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 comerr-dev amd64 2.1-1.47.0-2.4~exp1ubuntu4.1 [43.8 kB]
2025-10-02T15:22:09.6480748Z Get:16 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libext2fs-dev amd64 1.47.0-2.4~exp1ubuntu4.1 [300 kB]
2025-10-02T15:22:09.6683994Z Get:17 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 nettle-dev amd64 3.9.1-2.2build1.1 [1154 kB]
2025-10-02T15:22:09.7195240Z Get:18 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libarchive-dev amd64 3.7.2-2ubuntu0.5 [589 kB]
2025-10-02T15:22:09.7563820Z Get:19 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 libarchive-tools amd64 3.7.2-2ubuntu0.5 [72.4 kB]
2025-10-02T15:22:09.8186432Z Get:20 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libgpg-error-dev amd64 1.47-3build2.1 [128 kB]
2025-10-02T15:22:09.8385652Z Get:21 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 libassuan-dev amd64 2.5.6-1build1 [95.0 kB]
2025-10-02T15:22:09.8598553Z Get:22 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 libcurl4-openssl-dev amd64 8.5.0-2ubuntu10.6 [446 kB]
2025-10-02T15:22:09.8948364Z Get:23 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3-pip all 24.0+dfsg-1ubuntu1.3 [1320 kB]
2025-10-02T15:22:09.9492828Z Get:24 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 python3-pip-whl all 24.0+dfsg-1ubuntu1.3 [1707 kB]
2025-10-02T15:22:10.0027680Z Get:25 http://azure.archive.ubuntu.com/ubuntu noble/main amd64 libgpgme-dev amd64 1.18.0-4.1ubuntu4 [345 kB]
2025-10-02T15:22:10.2835985Z Fetched 25.9 MB in 1s (26.8 MB/s)
2025-10-02T15:22:10.3304384Z (Reading database ...
2025-10-02T15:22:10.3305390Z (Reading database ... 5%
2025-10-02T15:22:10.3305969Z (Reading database ... 10%
2025-10-02T15:22:10.3306490Z (Reading database ... 15%
2025-10-02T15:22:10.3307091Z (Reading database ... 20%
2025-10-02T15:22:10.3307820Z (Reading database ... 25%
2025-10-02T15:22:10.3308556Z (Reading database ... 30%
2025-10-02T15:22:10.3309026Z (Reading database ... 35%
2025-10-02T15:22:10.3309726Z (Reading database ... 40%
2025-10-02T15:22:10.3310170Z (Reading database ... 45%
2025-10-02T15:22:10.3310589Z (Reading database ... 50%
2025-10-02T15:22:10.3454143Z (Reading database ... 55%
2025-10-02T15:22:10.3871063Z (Reading database ... 60%
2025-10-02T15:22:10.4143805Z (Reading database ... 65%
2025-10-02T15:22:10.4353630Z (Reading database ... 70%
2025-10-02T15:22:10.4587776Z (Reading database ... 75%
2025-10-02T15:22:10.5083489Z (Reading database ... 80%
2025-10-02T15:22:10.5445068Z (Reading database ... 85%
2025-10-02T15:22:10.6115190Z (Reading database ... 90%
2025-10-02T15:22:10.6746098Z (Reading database ... 95%
2025-10-02T15:22:10.6747531Z (Reading database ... 100%
2025-10-02T15:22:10.6749221Z (Reading database ... 214164 files and directories currently installed.)
2025-10-02T15:22:10.6792011Z Preparing to unpack .../libssl-dev_3.0.13-0ubuntu3.6_amd64.deb ...
2025-10-02T15:22:10.6840293Z Unpacking libssl-dev:amd64 (3.0.13-0ubuntu3.6) over (3.0.13-0ubuntu3.5) ...
2025-10-02T15:22:10.8317896Z Preparing to unpack .../libssl3t64_3.0.13-0ubuntu3.6_amd64.deb ...
2025-10-02T15:22:10.8422192Z Unpacking libssl3t64:amd64 (3.0.13-0ubuntu3.6) over (3.0.13-0ubuntu3.5) ...
2025-10-02T15:22:10.9224700Z Setting up libssl3t64:amd64 (3.0.13-0ubuntu3.6) ...
2025-10-02T15:22:10.9582046Z (Reading database ...
2025-10-02T15:22:10.9582865Z (Reading database ... 5%
2025-10-02T15:22:10.9583599Z (Reading database ... 10%
2025-10-02T15:22:10.9584335Z (Reading database ... 15%
2025-10-02T15:22:10.9585062Z (Reading database ... 20%
2025-10-02T15:22:10.9585779Z (Reading database ... 25%
2025-10-02T15:22:10.9586483Z (Reading database ... 30%
2025-10-02T15:22:10.9587195Z (Reading database ... 35%
2025-10-02T15:22:10.9587931Z (Reading database ... 40%
2025-10-02T15:22:10.9588648Z (Reading database ... 45%
2025-10-02T15:22:10.9589349Z (Reading database ... 50%
2025-10-02T15:22:10.9625103Z (Reading database ... 55%
2025-10-02T15:22:10.9719846Z (Reading database ... 60%
2025-10-02T15:22:10.9747480Z (Reading database ... 65%
2025-10-02T15:22:10.9765522Z (Reading database ... 70%
2025-10-02T15:22:10.9792473Z (Reading database ... 75%
2025-10-02T15:22:10.9839226Z (Reading database ... 80%
2025-10-02T15:22:10.9862306Z (Reading database ... 85%
2025-10-02T15:22:11.0132826Z (Reading database ... 90%
2025-10-02T15:22:11.0381265Z (Reading database ... 95%
2025-10-02T15:22:11.0382046Z (Reading database ... 100%
2025-10-02T15:22:11.0382906Z (Reading database ... 214164 files and directories currently installed.)
2025-10-02T15:22:11.0426850Z Preparing to unpack .../00-openssl_3.0.13-0ubuntu3.6_amd64.deb ...
2025-10-02T15:22:11.0460136Z Unpacking openssl (3.0.13-0ubuntu3.6) over (3.0.13-0ubuntu3.5) ...
2025-10-02T15:22:11.1956119Z Selecting previously unselected package build-essential.
2025-10-02T15:22:11.2099406Z Preparing to unpack .../01-build-essential_12.10ubuntu1_amd64.deb ...
2025-10-02T15:22:11.2112258Z Unpacking build-essential (12.10ubuntu1) ...
2025-10-02T15:22:11.2346757Z Selecting previously unselected package bzip2-doc.
2025-10-02T15:22:11.2481987Z Preparing to unpack .../02-bzip2-doc_1.0.8-5.1build0.1_all.deb ...
2025-10-02T15:22:11.2494329Z Unpacking bzip2-doc (1.0.8-5.1build0.1) ...
2025-10-02T15:22:11.2838484Z Selecting previously unselected package libjsoncpp25:amd64.
2025-10-02T15:22:11.2974650Z Preparing to unpack .../03-libjsoncpp25_1.9.5-6build1_amd64.deb ...
2025-10-02T15:22:11.2986585Z Unpacking libjsoncpp25:amd64 (1.9.5-6build1) ...
2025-10-02T15:22:11.3246902Z Selecting previously unselected package librhash0:amd64.
2025-10-02T15:22:11.3382350Z Preparing to unpack .../04-librhash0_1.4.3-3build1_amd64.deb ...
2025-10-02T15:22:11.3395536Z Unpacking librhash0:amd64 (1.4.3-3build1) ...
2025-10-02T15:22:11.3673898Z Selecting previously unselected package cmake-data.
2025-10-02T15:22:11.3807686Z Preparing to unpack .../05-cmake-data_3.28.3-1build7_all.deb ...
2025-10-02T15:22:11.3944404Z Unpacking cmake-data (3.28.3-1build7) ...
2025-10-02T15:22:11.9730415Z Selecting previously unselected package cmake.
2025-10-02T15:22:11.9880614Z Preparing to unpack .../06-cmake_3.28.3-1build7_amd64.deb ...
2025-10-02T15:22:11.9912409Z Unpacking cmake (3.28.3-1build7) ...
2025-10-02T15:22:12.1576803Z Selecting previously unselected package libbz2-dev:amd64.
2025-10-02T15:22:12.1713408Z Preparing to unpack .../07-libbz2-dev_1.0.8-5.1build0.1_amd64.deb ...
2025-10-02T15:22:12.1725475Z Unpacking libbz2-dev:amd64 (1.0.8-5.1build0.1) ...
2025-10-02T15:22:12.1951186Z Selecting previously unselected package liblzma-dev:amd64.
2025-10-02T15:22:12.2088381Z Preparing to unpack .../08-liblzma-dev_5.6.1+really5.4.5-1ubuntu0.2_amd64.deb ...
2025-10-02T15:22:12.2102133Z Unpacking liblzma-dev:amd64 (5.6.1+really5.4.5-1ubuntu0.2) ...
2025-10-02T15:22:12.2401421Z Selecting previously unselected package libattr1-dev:amd64.
2025-10-02T15:22:12.2537133Z Preparing to unpack .../09-libattr1-dev_1%3a2.5.2-1build1.1_amd64.deb ...
2025-10-02T15:22:12.2550779Z Unpacking libattr1-dev:amd64 (1:2.5.2-1build1.1) ...
2025-10-02T15:22:12.2861325Z Selecting previously unselected package libacl1-dev:amd64.
2025-10-02T15:22:12.2997098Z Preparing to unpack .../10-libacl1-dev_2.3.2-1build1.1_amd64.deb ...
2025-10-02T15:22:12.3019702Z Unpacking libacl1-dev:amd64 (2.3.2-1build1.1) ...
2025-10-02T15:22:12.3347444Z Selecting previously unselected package comerr-dev:amd64.
2025-10-02T15:22:12.3484069Z Preparing to unpack .../11-comerr-dev_2.1-1.47.0-2.4~exp1ubuntu4.1_amd64.deb ...
2025-10-02T15:22:12.3521969Z Unpacking comerr-dev:amd64 (2.1-1.47.0-2.4~exp1ubuntu4.1) ...
2025-10-02T15:22:12.3775024Z Selecting previously unselected package libext2fs-dev.
2025-10-02T15:22:12.3911065Z Preparing to unpack .../12-libext2fs-dev_1.47.0-2.4~exp1ubuntu4.1_amd64.deb ...
2025-10-02T15:22:12.3921758Z Unpacking libext2fs-dev (1.47.0-2.4~exp1ubuntu4.1) ...
2025-10-02T15:22:12.4246112Z Selecting previously unselected package nettle-dev:amd64.
2025-10-02T15:22:12.4382991Z Preparing to unpack .../13-nettle-dev_3.9.1-2.2build1.1_amd64.deb ...
2025-10-02T15:22:12.4394548Z Unpacking nettle-dev:amd64 (3.9.1-2.2build1.1) ...
2025-10-02T15:22:12.4873763Z Selecting previously unselected package libarchive-dev:amd64.
2025-10-02T15:22:12.5008504Z Preparing to unpack .../14-libarchive-dev_3.7.2-2ubuntu0.5_amd64.deb ...
2025-10-02T15:22:12.5020569Z Unpacking libarchive-dev:amd64 (3.7.2-2ubuntu0.5) ...
2025-10-02T15:22:12.5430378Z Selecting previously unselected package libarchive-tools.
2025-10-02T15:22:12.5564363Z Preparing to unpack .../15-libarchive-tools_3.7.2-2ubuntu0.5_amd64.deb ...
2025-10-02T15:22:12.5576466Z Unpacking libarchive-tools (3.7.2-2ubuntu0.5) ...
2025-10-02T15:22:12.5830241Z Selecting previously unselected package libgpg-error-dev.
2025-10-02T15:22:12.5964992Z Preparing to unpack .../16-libgpg-error-dev_1.47-3build2.1_amd64.deb ...
2025-10-02T15:22:12.5978838Z Unpacking libgpg-error-dev (1.47-3build2.1) ...
2025-10-02T15:22:12.6238474Z Selecting previously unselected package libassuan-dev.
2025-10-02T15:22:12.6375191Z Preparing to unpack .../17-libassuan-dev_2.5.6-1build1_amd64.deb ...
2025-10-02T15:22:12.6388023Z Unpacking libassuan-dev (2.5.6-1build1) ...
2025-10-02T15:22:12.6640454Z Selecting previously unselected package libcurl4-openssl-dev:amd64.
2025-10-02T15:22:12.6775720Z Preparing to unpack .../18-libcurl4-openssl-dev_8.5.0-2ubuntu10.6_amd64.deb ...
2025-10-02T15:22:12.6787287Z Unpacking libcurl4-openssl-dev:amd64 (8.5.0-2ubuntu10.6) ...
2025-10-02T15:22:12.7256966Z Preparing to unpack .../19-python3-pip_24.0+dfsg-1ubuntu1.3_all.deb ...
2025-10-02T15:22:12.9742504Z Unpacking python3-pip (24.0+dfsg-1ubuntu1.3) over (24.0+dfsg-1ubuntu1.2) ...
2025-10-02T15:22:13.1415806Z Preparing to unpack .../20-python3-pip-whl_24.0+dfsg-1ubuntu1.3_all.deb ...
2025-10-02T15:22:13.1452184Z Unpacking python3-pip-whl (24.0+dfsg-1ubuntu1.3) over (24.0+dfsg-1ubuntu1.2) ...
2025-10-02T15:22:13.1812249Z Selecting previously unselected package libgpgme-dev.
2025-10-02T15:22:13.1951002Z Preparing to unpack .../21-libgpgme-dev_1.18.0-4.1ubuntu4_amd64.deb ...
2025-10-02T15:22:13.1962373Z Unpacking libgpgme-dev (1.18.0-4.1ubuntu4) ...
2025-10-02T15:22:13.2448072Z Setting up bzip2-doc (1.0.8-5.1build0.1) ...
2025-10-02T15:22:13.2480895Z Setting up libarchive-tools (3.7.2-2ubuntu0.5) ...
2025-10-02T15:22:13.2514756Z Setting up libattr1-dev:amd64 (1:2.5.2-1build1.1) ...
2025-10-02T15:22:13.2546960Z Setting up nettle-dev:amd64 (3.9.1-2.2build1.1) ...
2025-10-02T15:22:13.2579963Z Setting up python3-pip-whl (24.0+dfsg-1ubuntu1.3) ...
2025-10-02T15:22:13.2614374Z Setting up libgpg-error-dev (1.47-3build2.1) ...
2025-10-02T15:22:13.2649136Z Setting up libcurl4-openssl-dev:amd64 (8.5.0-2ubuntu10.6) ...
2025-10-02T15:22:13.2678043Z Setting up comerr-dev:amd64 (2.1-1.47.0-2.4~exp1ubuntu4.1) ...
2025-10-02T15:22:13.2721256Z Setting up libssl-dev:amd64 (3.0.13-0ubuntu3.6) ...
2025-10-02T15:22:13.2752500Z Setting up libjsoncpp25:amd64 (1.9.5-6build1) ...
2025-10-02T15:22:13.2784677Z Setting up libassuan-dev (2.5.6-1build1) ...
2025-10-02T15:22:13.2815341Z Setting up python3-pip (24.0+dfsg-1ubuntu1.3) ...
2025-10-02T15:22:14.3934958Z Setting up libgpgme-dev (1.18.0-4.1ubuntu4) ...
2025-10-02T15:22:14.3967505Z Setting up liblzma-dev:amd64 (5.6.1+really5.4.5-1ubuntu0.2) ...
2025-10-02T15:22:14.3997050Z Setting up librhash0:amd64 (1.4.3-3build1) ...
2025-10-02T15:22:14.4026271Z Setting up build-essential (12.10ubuntu1) ...
2025-10-02T15:22:14.4058226Z Setting up cmake-data (3.28.3-1build7) ...
2025-10-02T15:22:14.4141149Z Setting up libext2fs-dev (1.47.0-2.4~exp1ubuntu4.1) ...
2025-10-02T15:22:14.4171423Z Setting up openssl (3.0.13-0ubuntu3.6) ...
2025-10-02T15:22:14.4223622Z Setting up libacl1-dev:amd64 (2.3.2-1build1.1) ...
2025-10-02T15:22:14.4253559Z Setting up libbz2-dev:amd64 (1.0.8-5.1build0.1) ...
2025-10-02T15:22:14.4286135Z Setting up libarchive-dev:amd64 (3.7.2-2ubuntu0.5) ...
2025-10-02T15:22:14.4321391Z Setting up cmake (3.28.3-1build7) ...
2025-10-02T15:22:14.4358254Z Processing triggers for libc-bin (2.39-0ubuntu8.6) ...
2025-10-02T15:22:14.4948391Z Processing triggers for man-db (2.12.0-4build2) ...
2025-10-02T15:22:23.4476293Z Processing triggers for install-info (7.1-3build2) ...
2025-10-02T15:22:24.2481162Z
2025-10-02T15:22:24.2481796Z Running kernel seems to be up-to-date.
2025-10-02T15:22:24.2482193Z
2025-10-02T15:22:24.2482393Z Restarting services...
2025-10-02T15:22:24.2922972Z /etc/needrestart/restart.d/systemd-manager
2025-10-02T15:22:24.6464147Z systemctl restart packagekit.service php8.3-fpm.service systemd-journald.service systemd-networkd.service systemd-resolved.service systemd-udevd.service udisks2.service walinuxagent.service
2025-10-02T15:22:24.8619270Z
2025-10-02T15:22:24.8621125Z Service restarts being deferred:
2025-10-02T15:22:24.8622320Z systemctl restart hosted-compute-agent.service
2025-10-02T15:22:24.8623404Z systemctl restart systemd-logind.service
2025-10-02T15:22:24.8623910Z
2025-10-02T15:22:24.8624250Z No containers need to be restarted.
2025-10-02T15:22:24.8624707Z
2025-10-02T15:22:24.8625313Z User sessions running outdated binaries:
2025-10-02T15:22:24.8625918Z runner @ user manager service: systemd[1085]
2025-10-02T15:22:24.8701068Z
2025-10-02T15:22:24.8702082Z No VM guests are running outdated hypervisor (qemu) binaries on this host.
2025-10-02T15:22:26.7406926Z Collecting meson
2025-10-02T15:22:26.7895835Z Downloading meson-1.9.1-py3-none-any.whl.metadata (1.8 kB)
2025-10-02T15:22:26.8033891Z Downloading meson-1.9.1-py3-none-any.whl (1.0 MB)
2025-10-02T15:22:26.8840710Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.0/1.0 MB 13.3 MB/s eta 0:00:00
2025-10-02T15:22:27.1294315Z Installing collected packages: meson
2025-10-02T15:22:27.8397265Z Successfully installed meson-1.9.1
2025-10-02T15:22:27.8400934Z WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
2025-10-02T15:22:28.3560612Z Collecting ninja
2025-10-02T15:22:28.3991297Z Downloading ninja-1.13.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.metadata (5.1 kB)
2025-10-02T15:22:28.4115994Z Downloading ninja-1.13.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (180 kB)
2025-10-02T15:22:28.4361215Z ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 180.7/180.7 kB 7.8 MB/s eta 0:00:00
2025-10-02T15:22:28.6768711Z Installing collected packages: ninja
2025-10-02T15:22:28.6881890Z Successfully installed ninja-1.13.0
2025-10-02T15:22:28.6885645Z WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
2025-10-02T15:22:28.7573459Z ##[group]Run sudo git clone --depth 1 https://gitlab.manjaro.org/packages/core/pacman.git
2025-10-02T15:22:28.7574535Z ^[[36;1msudo git clone --depth 1 https://gitlab.manjaro.org/packages/core/pacman.git^[[0m
2025-10-02T15:22:28.7575188Z ^[[36;1mpushd pacman^[[0m
2025-10-02T15:22:28.7575828Z ^[[36;1msudo wget https://sources.archlinux.org/other/pacman/pacman-${PACMAN_VERSION}.tar.xz^[[0m
2025-10-02T15:22:28.7576557Z ^[[36;1msudo tar -xvf pacman-${PACMAN_VERSION}.tar.xz^[[0m
2025-10-02T15:22:28.7577106Z ^[[36;1mpushd pacman-${PACMAN_VERSION}^[[0m
2025-10-02T15:22:28.7577656Z ^[[36;1m## sudo patch -p1 -i ../pacman-sync-first-option.patch^[[0m
2025-10-02T15:22:28.7578208Z ^[[36;1msudo meson --prefix=/usr \^[[0m
2025-10-02T15:22:28.7578682Z ^[[36;1m --buildtype=plain \^[[0m
2025-10-02T15:22:28.7579154Z ^[[36;1m -Ddoc=disabled \^[[0m
2025-10-02T15:22:28.7579904Z ^[[36;1m -Ddoxygen=enabled \^[[0m
2025-10-02T15:22:28.7580411Z ^[[36;1m -Dscriptlet-shell=/usr/bin/bash \^[[0m
2025-10-02T15:22:28.7580948Z ^[[36;1m -Dldconfig=/usr/bin/ldconfig \^[[0m
2025-10-02T15:22:28.7581453Z ^[[36;1m build^[[0m
2025-10-02T15:22:28.7581895Z ^[[36;1msudo meson compile -C build^[[0m
2025-10-02T15:22:28.7582364Z ^[[36;1msudo meson install -C build^[[0m
2025-10-02T15:22:28.7582813Z ^[[36;1mpopd^[[0m
2025-10-02T15:22:28.7583297Z ^[[36;1msudo install -m644 pacman.conf /etc/pacman.conf^[[0m
2025-10-02T15:22:28.7583862Z ^[[36;1msudo install -m644 makepkg.conf /etc/^[[0m
2025-10-02T15:22:28.7584383Z ^[[36;1msudo mkdir -p /etc/pacman.d^[[0m
2025-10-02T15:22:28.7585335Z ^[[36;1mecho "Server = ***/unstable/\$repo/\$arch" | sudo tee /etc/pacman.d/mirrorlist^[[0m
2025-10-02T15:22:28.7585974Z ^[[36;1m# install updpkgsums^[[0m
2025-10-02T15:22:28.7586672Z ^[[36;1msudo wget https://gitlab.archlinux.org/pacman/pacman-contrib/-/raw/master/src/updpkgsums.sh.in^[[0m
2025-10-02T15:22:28.7587572Z ^[[36;1msudo wget https://gitlab.archlinux.org/pacman/pacman-contrib/-/raw/master/configure.ac^[[0m
2025-10-02T15:22:28.7588355Z ^[[36;1mcontrib_ver=$(grep AC_INIT configure.ac | cut -d[ -f3 | cut -d] -f1)^[[0m
2025-10-02T15:22:28.7589183Z ^[[36;1msudo sed -i -e "s/@PACKAGE_VERSION@/${contrib_ver}/; s/@libmakepkgdir@/\/usr\/share\/makepkg/" updpkgsums.sh.in^[[0m
2025-10-02T15:22:28.7590368Z ^[[36;1msudo install -m755 updpkgsums.sh.in /usr/bin/updpkgsums^[[0m
2025-10-02T15:22:28.7590922Z ^[[36;1mpopd^[[0m
2025-10-02T15:22:28.7591356Z ^[[36;1msudo rm -rf pacman-${PACMAN_VERSION}^[[0m
2025-10-02T15:22:28.7624872Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-02T15:22:28.7625429Z env:
2025-10-02T15:22:28.7625829Z PACMAN_VERSION: 6.0.2
2025-10-02T15:22:28.7626248Z ##[endgroup]
2025-10-02T15:22:28.7823173Z Cloning into 'pacman'...
2025-10-02T15:22:29.9874069Z ~/work/linux510/linux510/pacman ~/work/linux510/linux510
2025-10-02T15:22:30.0165220Z --2025-10-02 15:22:30-- https://sources.archlinux.org/other/pacman/pacman-6.0.2.tar.xz
2025-10-02T15:22:30.1382662Z Resolving sources.archlinux.org (sources.archlinux.org)... 168.119.141.106, 2a01:4f8:251:598::
2025-10-02T15:22:30.2292414Z Connecting to sources.archlinux.org (sources.archlinux.org)|168.119.141.106|:443... connected.
2025-10-02T15:22:30.6003967Z HTTP request sent, awaiting response... 200 OK
2025-10-02T15:22:30.6005100Z Length: 880868 (860K) [application/x-xz]
2025-10-02T15:22:30.6006733Z Saving to: ‘pacman-6.0.2.tar.xz’
2025-10-02T15:22:30.6007366Z
2025-10-02T15:22:30.6931712Z 0K .......... .......... .......... .......... .......... 5% 540K 1s
2025-10-02T15:22:30.7846882Z 50K .......... .......... .......... .......... .......... 11% 546K 1s
2025-10-02T15:22:30.7869122Z 100K .......... .......... .......... .......... .......... 17% 20.8M 1s
2025-10-02T15:22:30.8248449Z 150K .......... .......... .......... .......... .......... 23% 1.29M 1s
2025-10-02T15:22:30.8777060Z 200K .......... .......... .......... .......... .......... 29% 946K 1s
2025-10-02T15:22:30.8800263Z 250K .......... .......... .......... .......... .......... 34% 20.4M 1s
2025-10-02T15:22:30.8818864Z 300K .......... .......... .......... .......... .......... 40% 26.0M 0s
2025-10-02T15:22:30.9165462Z 350K .......... .......... .......... .......... .......... 46% 1.41M 0s
2025-10-02T15:22:30.9181980Z 400K .......... .......... .......... .......... .......... 52% 28.5M 0s
2025-10-02T15:22:30.9698843Z 450K .......... .......... .......... .......... .......... 58% 968K 0s
2025-10-02T15:22:30.9715628Z 500K .......... .......... .......... .......... .......... 63% 28.4M 0s
2025-10-02T15:22:30.9732332Z 550K .......... .......... .......... .......... .......... 69% 29.3M 0s
2025-10-02T15:22:30.9748586Z 600K .......... .......... .......... .......... .......... 75% 29.3M 0s
2025-10-02T15:22:30.9763490Z 650K .......... .......... .......... .......... .......... 81% 32.4M 0s
2025-10-02T15:22:30.9777978Z 700K .......... .......... .......... .......... .......... 87% 33.5M 0s
2025-10-02T15:22:30.9797495Z 750K .......... .......... .......... .......... .......... 92% 25.1M 0s
2025-10-02T15:22:31.0093999Z 800K .......... .......... .......... .......... .......... 98% 1.65M 0s
2025-10-02T15:22:31.0094967Z 850K .......... 100% 19.0T=0.4s
2025-10-02T15:22:31.0095571Z
2025-10-02T15:22:31.0096449Z 2025-10-02 15:22:31 (2.05 MB/s) - ‘pacman-6.0.2.tar.xz’ saved [880868/880868]
2025-10-02T15:22:31.0097126Z
2025-10-02T15:22:31.0327433Z pacman-6.0.2/
2025-10-02T15:22:31.0327988Z pacman-6.0.2/.editorconfig
2025-10-02T15:22:31.0328571Z pacman-6.0.2/.gitattributes
2025-10-02T15:22:31.0329092Z pacman-6.0.2/.gitignore
2025-10-02T15:22:31.0330006Z pacman-6.0.2/.gitlab-ci.yml
2025-10-02T15:22:31.0330745Z pacman-6.0.2/.mailmap
2025-10-02T15:22:31.0331439Z pacman-6.0.2/.tx/
2025-10-02T15:22:31.0332126Z pacman-6.0.2/.tx/config
2025-10-02T15:22:31.0332825Z pacman-6.0.2/AUTHORS
2025-10-02T15:22:31.0333522Z pacman-6.0.2/COPYING
2025-10-02T15:22:31.0334212Z pacman-6.0.2/HACKING
2025-10-02T15:22:31.0334896Z pacman-6.0.2/NEWS
2025-10-02T15:22:31.0342190Z pacman-6.0.2/README
2025-10-02T15:22:31.0346694Z pacman-6.0.2/RELEASE
2025-10-02T15:22:31.0347451Z pacman-6.0.2/TRANSLATORS
2025-10-02T15:22:31.0348176Z pacman-6.0.2/build-aux/
2025-10-02T15:22:31.0348893Z pacman-6.0.2/build-aux/.gitignore
2025-10-02T15:22:31.0349960Z pacman-6.0.2/build-aux/cat-test-file
2025-10-02T15:22:31.0351043Z pacman-6.0.2/build-aux/edit-script.sh.in
2025-10-02T15:22:31.0351930Z pacman-6.0.2/build-aux/meson-make-symlink.sh
2025-10-02T15:22:31.0352827Z pacman-6.0.2/build-aux/print-failed-test-output
2025-10-02T15:22:31.0353732Z pacman-6.0.2/build-aux/script-wrapper.sh.in
2025-10-02T15:22:31.0354569Z pacman-6.0.2/build-aux/update-copyright
2025-10-02T15:22:31.0355382Z pacman-6.0.2/build-aux/update-po
2025-10-02T15:22:31.0356139Z pacman-6.0.2/doc/
2025-10-02T15:22:31.0356827Z pacman-6.0.2/doc/.gitignore
2025-10-02T15:22:31.0357577Z pacman-6.0.2/doc/BUILDINFO.5.asciidoc
2025-10-02T15:22:31.0358359Z pacman-6.0.2/doc/Doxyfile.in
2025-10-02T15:22:31.0359123Z pacman-6.0.2/doc/PKGBUILD-example.txt
2025-10-02T15:22:31.0360105Z pacman-6.0.2/doc/PKGBUILD.5.asciidoc
2025-10-02T15:22:31.0360920Z pacman-6.0.2/doc/alpm-hooks.5.asciidoc
2025-10-02T15:22:31.0361741Z pacman-6.0.2/doc/asciidoc-override.css
2025-10-02T15:22:31.0362533Z pacman-6.0.2/doc/asciidoc.conf
2025-10-02T15:22:31.0363297Z pacman-6.0.2/doc/footer.asciidoc
2025-10-02T15:22:31.0364057Z pacman-6.0.2/doc/index.asciidoc
2025-10-02T15:22:31.0365223Z pacman-6.0.2/doc/makepkg-template.1.asciidoc
2025-10-02T15:22:31.0366558Z pacman-6.0.2/doc/makepkg.8.asciidoc
2025-10-02T15:22:31.0367796Z pacman-6.0.2/doc/makepkg.conf.5.asciidoc
2025-10-02T15:22:31.0431465Z pacman-6.0.2/doc/meson.build
2025-10-02T15:22:31.0432283Z pacman-6.0.2/doc/pacman-conf.8.asciidoc
2025-10-02T15:22:31.0433129Z pacman-6.0.2/doc/pacman-key.8.asciidoc
2025-10-02T15:22:31.0433991Z pacman-6.0.2/doc/pacman.8.asciidoc
2025-10-02T15:22:31.0434826Z pacman-6.0.2/doc/pacman.conf.5.asciidoc
2025-10-02T15:22:31.0436977Z pacman-6.0.2/doc/repo-add.8.asciidoc
2025-10-02T15:22:31.0439122Z pacman-6.0.2/doc/submitting-patches.asciidoc
2025-10-02T15:22:31.0440209Z pacman-6.0.2/doc/translation-help.asciidoc
2025-10-02T15:22:31.0441315Z pacman-6.0.2/doc/vercmp.8.asciidoc
2025-10-02T15:22:31.0442090Z pacman-6.0.2/etc/
2025-10-02T15:22:31.0442791Z pacman-6.0.2/etc/.gitignore
2025-10-02T15:22:31.0443550Z pacman-6.0.2/etc/makepkg.conf.in
2025-10-02T15:22:31.0444333Z pacman-6.0.2/etc/pacman.conf.in
2025-10-02T15:22:31.0445088Z pacman-6.0.2/lib/
2025-10-02T15:22:31.0445780Z pacman-6.0.2/lib/libalpm/
2025-10-02T15:22:31.0446527Z pacman-6.0.2/lib/libalpm/.gitignore
2025-10-02T15:22:31.0447319Z pacman-6.0.2/lib/libalpm/add.c
2025-10-02T15:22:31.0448093Z pacman-6.0.2/lib/libalpm/add.h
2025-10-02T15:22:31.0448854Z pacman-6.0.2/lib/libalpm/alpm.c
2025-10-02T15:22:31.0449788Z pacman-6.0.2/lib/libalpm/alpm.h
2025-10-02T15:22:31.0450600Z pacman-6.0.2/lib/libalpm/alpm_list.c
2025-10-02T15:22:31.0451318Z pacman-6.0.2/lib/libalpm/alpm_list.h
2025-10-02T15:22:31.0452133Z pacman-6.0.2/lib/libalpm/backup.c
2025-10-02T15:22:31.0452915Z pacman-6.0.2/lib/libalpm/backup.h
2025-10-02T15:22:31.0453668Z pacman-6.0.2/lib/libalpm/base64.c
2025-10-02T15:22:31.0454439Z pacman-6.0.2/lib/libalpm/base64.h
2025-10-02T15:22:31.0455204Z pacman-6.0.2/lib/libalpm/be_local.c
2025-10-02T15:22:31.0455835Z pacman-6.0.2/lib/libalpm/be_package.c
2025-10-02T15:22:31.0456308Z pacman-6.0.2/lib/libalpm/be_sync.c
2025-10-02T15:22:31.0456885Z pacman-6.0.2/lib/libalpm/conflict.c
2025-10-02T15:22:31.0457667Z pacman-6.0.2/lib/libalpm/conflict.h
2025-10-02T15:22:31.0458429Z pacman-6.0.2/lib/libalpm/db.c
2025-10-02T15:22:31.0459163Z pacman-6.0.2/lib/libalpm/db.h
2025-10-02T15:22:31.0460153Z pacman-6.0.2/lib/libalpm/deps.c
2025-10-02T15:22:31.0460922Z pacman-6.0.2/lib/libalpm/deps.h
2025-10-02T15:22:31.0461472Z pacman-6.0.2/lib/libalpm/diskspace.c
2025-10-02T15:22:31.0461987Z pacman-6.0.2/lib/libalpm/diskspace.h
2025-10-02T15:22:31.0462767Z pacman-6.0.2/lib/libalpm/dload.c
2025-10-02T15:22:31.0463510Z pacman-6.0.2/lib/libalpm/dload.h
2025-10-02T15:22:31.0464244Z pacman-6.0.2/lib/libalpm/error.c
2025-10-02T15:22:31.0464983Z pacman-6.0.2/lib/libalpm/filelist.c
2025-10-02T15:22:31.0465744Z pacman-6.0.2/lib/libalpm/filelist.h
2025-10-02T15:22:31.0466496Z pacman-6.0.2/lib/libalpm/graph.c
2025-10-02T15:22:31.0467227Z pacman-6.0.2/lib/libalpm/graph.h
2025-10-02T15:22:31.0468160Z pacman-6.0.2/lib/libalpm/group.c
2025-10-02T15:22:31.0468905Z pacman-6.0.2/lib/libalpm/group.h
2025-10-02T15:22:31.0469891Z pacman-6.0.2/lib/libalpm/handle.c
2025-10-02T15:22:31.0470648Z pacman-6.0.2/lib/libalpm/handle.h
2025-10-02T15:22:31.0471388Z pacman-6.0.2/lib/libalpm/hook.c
2025-10-02T15:22:31.0472115Z pacman-6.0.2/lib/libalpm/hook.h
2025-10-02T15:22:31.0472885Z pacman-6.0.2/lib/libalpm/libalpm.pc.in
2025-10-02T15:22:31.0473701Z pacman-6.0.2/lib/libalpm/libarchive-compat.h
2025-10-02T15:22:31.0474520Z pacman-6.0.2/lib/libalpm/log.c
2025-10-02T15:22:31.0475250Z pacman-6.0.2/lib/libalpm/log.h
2025-10-02T15:22:31.0475979Z pacman-6.0.2/lib/libalpm/meson.build
2025-10-02T15:22:31.0476743Z pacman-6.0.2/lib/libalpm/package.c
2025-10-02T15:22:31.0477493Z pacman-6.0.2/lib/libalpm/package.h
2025-10-02T15:22:31.0478253Z pacman-6.0.2/lib/libalpm/pkghash.c
2025-10-02T15:22:31.0479007Z pacman-6.0.2/lib/libalpm/pkghash.h
2025-10-02T15:22:31.0480047Z pacman-6.0.2/lib/libalpm/po/
2025-10-02T15:22:31.0480802Z pacman-6.0.2/lib/libalpm/po/.gitignore
2025-10-02T15:22:31.0481490Z pacman-6.0.2/lib/libalpm/po/LINGUAS
2025-10-02T15:22:31.0482275Z pacman-6.0.2/lib/libalpm/po/Makevars
2025-10-02T15:22:31.0483062Z pacman-6.0.2/lib/libalpm/po/POTFILES.in
2025-10-02T15:22:31.0483848Z pacman-6.0.2/lib/libalpm/po/ar.po
2025-10-02T15:22:31.0484611Z pacman-6.0.2/lib/libalpm/po/ast.po
2025-10-02T15:22:31.0485368Z pacman-6.0.2/lib/libalpm/po/az_AZ.po
2025-10-02T15:22:31.0486131Z pacman-6.0.2/lib/libalpm/po/bg.po
2025-10-02T15:22:31.0486894Z pacman-6.0.2/lib/libalpm/po/br.po
2025-10-02T15:22:31.0487634Z pacman-6.0.2/lib/libalpm/po/ca.po
2025-10-02T15:22:31.0488380Z pacman-6.0.2/lib/libalpm/po/cs.po
2025-10-02T15:22:31.0489119Z pacman-6.0.2/lib/libalpm/po/da.po
2025-10-02T15:22:31.0490028Z pacman-6.0.2/lib/libalpm/po/de.po
2025-10-02T15:22:31.0491008Z pacman-6.0.2/lib/libalpm/po/el.po
2025-10-02T15:22:31.0491790Z pacman-6.0.2/lib/libalpm/po/en_GB.po
2025-10-02T15:22:31.0492563Z pacman-6.0.2/lib/libalpm/po/eo.po
2025-10-02T15:22:31.0493320Z pacman-6.0.2/lib/libalpm/po/es.po
2025-10-02T15:22:31.0494088Z pacman-6.0.2/lib/libalpm/po/es_419.po
2025-10-02T15:22:31.0494865Z pacman-6.0.2/lib/libalpm/po/eu.po
2025-10-02T15:22:31.0495640Z pacman-6.0.2/lib/libalpm/po/eu_ES.po
2025-10-02T15:22:31.0496406Z pacman-6.0.2/lib/libalpm/po/fi.po
2025-10-02T15:22:31.0497152Z pacman-6.0.2/lib/libalpm/po/fr.po
2025-10-02T15:22:31.0497894Z pacman-6.0.2/lib/libalpm/po/gl.po
2025-10-02T15:22:31.0498635Z pacman-6.0.2/lib/libalpm/po/hi.po
2025-10-02T15:22:31.0499381Z pacman-6.0.2/lib/libalpm/po/hr.po
2025-10-02T15:22:31.0500288Z pacman-6.0.2/lib/libalpm/po/hu.po
2025-10-02T15:22:31.0501038Z pacman-6.0.2/lib/libalpm/po/id.po
2025-10-02T15:22:31.0501777Z pacman-6.0.2/lib/libalpm/po/it.po
2025-10-02T15:22:31.0502535Z pacman-6.0.2/lib/libalpm/po/ja.po
2025-10-02T15:22:31.0503288Z pacman-6.0.2/lib/libalpm/po/kk.po
2025-10-02T15:22:31.0504027Z pacman-6.0.2/lib/libalpm/po/ko.po
2025-10-02T15:22:31.0504793Z pacman-6.0.2/lib/libalpm/po/libalpm.pot
2025-10-02T15:22:31.0505581Z pacman-6.0.2/lib/libalpm/po/lt.po
2025-10-02T15:22:31.0506343Z pacman-6.0.2/lib/libalpm/po/meson.build
2025-10-02T15:22:31.0507117Z pacman-6.0.2/lib/libalpm/po/nb.po
2025-10-02T15:22:31.0507865Z pacman-6.0.2/lib/libalpm/po/nl.po
2025-10-02T15:22:31.0508623Z pacman-6.0.2/lib/libalpm/po/pl.po
2025-10-02T15:22:31.0509377Z pacman-6.0.2/lib/libalpm/po/pt.po
2025-10-02T15:22:31.0510269Z pacman-6.0.2/lib/libalpm/po/pt_BR.po
2025-10-02T15:22:31.0511095Z pacman-6.0.2/lib/libalpm/po/remove-potcdate.sin
2025-10-02T15:22:31.0511939Z pacman-6.0.2/lib/libalpm/po/ro.po
2025-10-02T15:22:31.0512701Z pacman-6.0.2/lib/libalpm/po/ru.po
2025-10-02T15:22:31.0515840Z pacman-6.0.2/lib/libalpm/po/sk.po
2025-10-02T15:22:31.0517756Z pacman-6.0.2/lib/libalpm/po/sl.po
2025-10-02T15:22:31.0519946Z pacman-6.0.2/lib/libalpm/po/sr.po
2025-10-02T15:22:31.0521786Z pacman-6.0.2/lib/libalpm/po/sr@latin.po
2025-10-02T15:22:31.0523524Z pacman-6.0.2/lib/libalpm/po/sv.po
2025-10-02T15:22:31.0525751Z pacman-6.0.2/lib/libalpm/po/tr.po
2025-10-02T15:22:31.0528281Z pacman-6.0.2/lib/libalpm/po/uk.po
2025-10-02T15:22:31.0531409Z pacman-6.0.2/lib/libalpm/po/zh_CN.po
2025-10-02T15:22:31.0532886Z pacman-6.0.2/lib/libalpm/po/zh_TW.po
2025-10-02T15:22:31.0535490Z pacman-6.0.2/lib/libalpm/rawstr.c
2025-10-02T15:22:31.0536253Z pacman-6.0.2/lib/libalpm/remove.c
2025-10-02T15:22:31.0539116Z pacman-6.0.2/lib/libalpm/remove.h
2025-10-02T15:22:31.0540101Z pacman-6.0.2/lib/libalpm/signing.c
2025-10-02T15:22:31.0543329Z pacman-6.0.2/lib/libalpm/signing.h
2025-10-02T15:22:31.0544107Z pacman-6.0.2/lib/libalpm/sync.c
2025-10-02T15:22:31.0547033Z pacman-6.0.2/lib/libalpm/sync.h
2025-10-02T15:22:31.0547783Z pacman-6.0.2/lib/libalpm/trans.c
2025-10-02T15:22:31.0548915Z pacman-6.0.2/lib/libalpm/trans.h
2025-10-02T15:22:31.0549804Z pacman-6.0.2/lib/libalpm/util.c
2025-10-02T15:22:31.0553479Z pacman-6.0.2/lib/libalpm/util.h
2025-10-02T15:22:31.0554233Z pacman-6.0.2/lib/libalpm/version.c
2025-10-02T15:22:31.0556229Z pacman-6.0.2/meson.build
2025-10-02T15:22:31.0557987Z pacman-6.0.2/meson_options.txt
2025-10-02T15:22:31.0558729Z pacman-6.0.2/proto/
2025-10-02T15:22:31.0563852Z pacman-6.0.2/proto/PKGBUILD-split.proto
2025-10-02T15:22:31.0564750Z pacman-6.0.2/proto/PKGBUILD-vcs.proto
2025-10-02T15:22:31.0565599Z pacman-6.0.2/proto/PKGBUILD.proto
2025-10-02T15:22:31.0566414Z pacman-6.0.2/proto/proto.install
2025-10-02T15:22:31.0567233Z pacman-6.0.2/scripts/
2025-10-02T15:22:31.0568021Z pacman-6.0.2/scripts/.gitignore
2025-10-02T15:22:31.0568819Z pacman-6.0.2/scripts/completion/
2025-10-02T15:22:31.0569835Z pacman-6.0.2/scripts/completion/.gitignore
2025-10-02T15:22:31.0570785Z pacman-6.0.2/scripts/completion/bash_completion.in
2025-10-02T15:22:31.0571774Z pacman-6.0.2/scripts/completion/zsh_completion.in
2025-10-02T15:22:31.0572718Z pacman-6.0.2/scripts/libmakepkg/
2025-10-02T15:22:31.0573771Z pacman-6.0.2/scripts/libmakepkg/.gitignore
2025-10-02T15:22:31.0574652Z pacman-6.0.2/scripts/libmakepkg/buildenv/
2025-10-02T15:22:31.0575623Z pacman-6.0.2/scripts/libmakepkg/buildenv/buildflags.sh.in
2025-10-02T15:22:31.0576690Z pacman-6.0.2/scripts/libmakepkg/buildenv/compiler.sh.in
2025-10-02T15:22:31.0577752Z pacman-6.0.2/scripts/libmakepkg/buildenv/debugflags.sh.in
2025-10-02T15:22:31.0578790Z pacman-6.0.2/scripts/libmakepkg/buildenv/lto.sh.in
2025-10-02T15:22:31.0579984Z pacman-6.0.2/scripts/libmakepkg/buildenv/makeflags.sh.in
2025-10-02T15:22:31.0581015Z pacman-6.0.2/scripts/libmakepkg/buildenv/meson.build
2025-10-02T15:22:31.0582003Z pacman-6.0.2/scripts/libmakepkg/buildenv.sh.in
2025-10-02T15:22:31.0582941Z pacman-6.0.2/scripts/libmakepkg/executable/
2025-10-02T15:22:31.0583921Z pacman-6.0.2/scripts/libmakepkg/executable/ccache.sh.in
2025-10-02T15:22:31.0584966Z pacman-6.0.2/scripts/libmakepkg/executable/checksum.sh.in
2025-10-02T15:22:31.0586038Z pacman-6.0.2/scripts/libmakepkg/executable/debugedit.sh.in
2025-10-02T15:22:31.0587093Z pacman-6.0.2/scripts/libmakepkg/executable/distcc.sh.in
2025-10-02T15:22:31.0588154Z pacman-6.0.2/scripts/libmakepkg/executable/fakeroot.sh.in
2025-10-02T15:22:31.0589253Z pacman-6.0.2/scripts/libmakepkg/executable/gpg.sh.in
2025-10-02T15:22:31.0590421Z pacman-6.0.2/scripts/libmakepkg/executable/gzip.sh.in
2025-10-02T15:22:31.0591440Z pacman-6.0.2/scripts/libmakepkg/executable/meson.build
2025-10-02T15:22:31.0592477Z pacman-6.0.2/scripts/libmakepkg/executable/pacman.sh.in
2025-10-02T15:22:31.0593528Z pacman-6.0.2/scripts/libmakepkg/executable/strip.sh.in
2025-10-02T15:22:31.0594533Z pacman-6.0.2/scripts/libmakepkg/executable/sudo.sh.in
2025-10-02T15:22:31.0595537Z pacman-6.0.2/scripts/libmakepkg/executable/vcs.sh.in
2025-10-02T15:22:31.0596519Z pacman-6.0.2/scripts/libmakepkg/executable.sh.in
2025-10-02T15:22:31.0597472Z pacman-6.0.2/scripts/libmakepkg/integrity/
2025-10-02T15:22:31.0598470Z pacman-6.0.2/scripts/libmakepkg/integrity/generate_checksum.sh.in
2025-10-02T15:22:31.0599796Z pacman-6.0.2/scripts/libmakepkg/integrity/generate_signature.sh.in
2025-10-02T15:22:31.0600941Z pacman-6.0.2/scripts/libmakepkg/integrity/meson.build
2025-10-02T15:22:31.0602185Z pacman-6.0.2/scripts/libmakepkg/integrity/verify_checksum.sh.in
2025-10-02T15:22:31.0603365Z pacman-6.0.2/scripts/libmakepkg/integrity/verify_signature.sh.in
2025-10-02T15:22:31.0604481Z pacman-6.0.2/scripts/libmakepkg/integrity.sh.in
2025-10-02T15:22:31.0605435Z pacman-6.0.2/scripts/libmakepkg/lint_config/
2025-10-02T15:22:31.0606386Z pacman-6.0.2/scripts/libmakepkg/lint_config/ext.sh.in
2025-10-02T15:22:31.0607395Z pacman-6.0.2/scripts/libmakepkg/lint_config/meson.build
2025-10-02T15:22:31.0608440Z pacman-6.0.2/scripts/libmakepkg/lint_config/paths.sh.in
2025-10-02T15:22:31.0609704Z pacman-6.0.2/scripts/libmakepkg/lint_config/source_date_epoch.sh.in
2025-10-02T15:22:31.0610832Z pacman-6.0.2/scripts/libmakepkg/lint_config/variable.sh.in
2025-10-02T15:22:31.0611841Z pacman-6.0.2/scripts/libmakepkg/lint_config.sh.in
2025-10-02T15:22:31.0612806Z pacman-6.0.2/scripts/libmakepkg/lint_package/
2025-10-02T15:22:31.0613831Z pacman-6.0.2/scripts/libmakepkg/lint_package/build_references.sh.in
2025-10-02T15:22:31.0614957Z pacman-6.0.2/scripts/libmakepkg/lint_package/dotfiles.sh.in
2025-10-02T15:22:31.0616039Z pacman-6.0.2/scripts/libmakepkg/lint_package/file_names.sh.in
2025-10-02T15:22:31.0617112Z pacman-6.0.2/scripts/libmakepkg/lint_package/meson.build
2025-10-02T15:22:31.0618194Z pacman-6.0.2/scripts/libmakepkg/lint_package/missing_backup.sh.in
2025-10-02T15:22:31.0619247Z pacman-6.0.2/scripts/libmakepkg/lint_package.sh.in
2025-10-02T15:22:31.0620386Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/
2025-10-02T15:22:31.0621390Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/arch.sh.in
2025-10-02T15:22:31.0622475Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/arch_specific.sh.in
2025-10-02T15:22:31.0623615Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/backup.sh.in
2025-10-02T15:22:31.0624694Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/changelog.sh.in
2025-10-02T15:22:31.0625950Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/checkdepends.sh.in
2025-10-02T15:22:31.0627081Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/conflicts.sh.in
2025-10-02T15:22:31.0627758Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/depends.sh.in
2025-10-02T15:22:31.0628869Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/epoch.sh.in
2025-10-02T15:22:31.0630168Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/fullpkgver.sh.in
2025-10-02T15:22:31.0631261Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/install.sh.in
2025-10-02T15:22:31.0632359Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/makedepends.sh.in
2025-10-02T15:22:31.0633142Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/meson.build
2025-10-02T15:22:31.0633968Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/optdepends.sh.in
2025-10-02T15:22:31.0634789Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/options.sh.in
2025-10-02T15:22:31.0635788Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/package_function.sh.in
2025-10-02T15:22:31.0637048Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/package_function_variable.sh.in
2025-10-02T15:22:31.0638039Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkgbase.sh.in
2025-10-02T15:22:31.0639074Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkglist.sh.in
2025-10-02T15:22:31.0640324Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkgname.sh.in
2025-10-02T15:22:31.0641280Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in
2025-10-02T15:22:31.0642237Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/pkgver.sh.in
2025-10-02T15:22:31.0643153Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/provides.sh.in
2025-10-02T15:22:31.0644012Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/source.sh.in
2025-10-02T15:22:31.0645087Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/util.sh.in
2025-10-02T15:22:31.0645914Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild/variable.sh.in
2025-10-02T15:22:31.0646645Z pacman-6.0.2/scripts/libmakepkg/lint_pkgbuild.sh.in
2025-10-02T15:22:31.0647527Z pacman-6.0.2/scripts/libmakepkg/meson.build
2025-10-02T15:22:31.0648466Z pacman-6.0.2/scripts/libmakepkg/reproducible/
2025-10-02T15:22:31.0649311Z pacman-6.0.2/scripts/libmakepkg/reproducible/meson.build
2025-10-02T15:22:31.0650495Z pacman-6.0.2/scripts/libmakepkg/reproducible/python.sh.in
2025-10-02T15:22:31.0651428Z pacman-6.0.2/scripts/libmakepkg/reproducible.sh.in
2025-10-02T15:22:31.0652180Z pacman-6.0.2/scripts/libmakepkg/source/
2025-10-02T15:22:31.0653099Z pacman-6.0.2/scripts/libmakepkg/source/bzr.sh.in
2025-10-02T15:22:31.0653874Z pacman-6.0.2/scripts/libmakepkg/source/file.sh.in
2025-10-02T15:22:31.0654704Z pacman-6.0.2/scripts/libmakepkg/source/fossil.sh.in
2025-10-02T15:22:31.0655424Z pacman-6.0.2/scripts/libmakepkg/source/git.sh.in
2025-10-02T15:22:31.0656398Z pacman-6.0.2/scripts/libmakepkg/source/hg.sh.in
2025-10-02T15:22:31.0657248Z pacman-6.0.2/scripts/libmakepkg/source/local.sh.in
2025-10-02T15:22:31.0657951Z pacman-6.0.2/scripts/libmakepkg/source/meson.build
2025-10-02T15:22:31.0658840Z pacman-6.0.2/scripts/libmakepkg/source/svn.sh.in
2025-10-02T15:22:31.0659925Z pacman-6.0.2/scripts/libmakepkg/source.sh.in
2025-10-02T15:22:31.0660716Z pacman-6.0.2/scripts/libmakepkg/srcinfo.sh.in
2025-10-02T15:22:31.0661542Z pacman-6.0.2/scripts/libmakepkg/tidy/
2025-10-02T15:22:31.0662292Z pacman-6.0.2/scripts/libmakepkg/tidy/docs.sh.in
2025-10-02T15:22:31.0663053Z pacman-6.0.2/scripts/libmakepkg/tidy/emptydirs.sh.in
2025-10-02T15:22:31.0663919Z pacman-6.0.2/scripts/libmakepkg/tidy/libtool.sh.in
2025-10-02T15:22:31.0664916Z pacman-6.0.2/scripts/libmakepkg/tidy/meson.build
2025-10-02T15:22:31.0665884Z pacman-6.0.2/scripts/libmakepkg/tidy/purge.sh.in
2025-10-02T15:22:31.0666734Z pacman-6.0.2/scripts/libmakepkg/tidy/staticlibs.sh.in
2025-10-02T15:22:31.0667657Z pacman-6.0.2/scripts/libmakepkg/tidy/strip.sh.in
2025-10-02T15:22:31.0668385Z pacman-6.0.2/scripts/libmakepkg/tidy/zipman.sh.in
2025-10-02T15:22:31.0669196Z pacman-6.0.2/scripts/libmakepkg/tidy.sh.in
2025-10-02T15:22:31.0670152Z pacman-6.0.2/scripts/libmakepkg/util/
2025-10-02T15:22:31.0671136Z pacman-6.0.2/scripts/libmakepkg/util/compress.sh.in
2025-10-02T15:22:31.0672084Z pacman-6.0.2/scripts/libmakepkg/util/config.sh.in
2025-10-02T15:22:31.0673018Z pacman-6.0.2/scripts/libmakepkg/util/dirsize.sh.in
2025-10-02T15:22:31.0674015Z pacman-6.0.2/scripts/libmakepkg/util/error.sh.in
2025-10-02T15:22:31.0674743Z pacman-6.0.2/scripts/libmakepkg/util/meson.build
2025-10-02T15:22:31.0675685Z pacman-6.0.2/scripts/libmakepkg/util/message.sh.in
2025-10-02T15:22:31.0676598Z pacman-6.0.2/scripts/libmakepkg/util/option.sh.in
2025-10-02T15:22:31.0677425Z pacman-6.0.2/scripts/libmakepkg/util/parseopts.sh.in
2025-10-02T15:22:31.0678311Z pacman-6.0.2/scripts/libmakepkg/util/pkgbuild.sh.in
2025-10-02T15:22:31.0679313Z pacman-6.0.2/scripts/libmakepkg/util/schema.sh.in
2025-10-02T15:22:31.0680466Z pacman-6.0.2/scripts/libmakepkg/util/source.sh.in
2025-10-02T15:22:31.0681330Z pacman-6.0.2/scripts/libmakepkg/util/util.sh.in
2025-10-02T15:22:31.0682137Z pacman-6.0.2/scripts/libmakepkg/util.sh.in
2025-10-02T15:22:31.0682826Z pacman-6.0.2/scripts/libmakepkg.pc.in
2025-10-02T15:22:31.0683578Z pacman-6.0.2/scripts/makepkg-template.pl.in
2025-10-02T15:22:31.0684490Z pacman-6.0.2/scripts/makepkg.sh.in
2025-10-02T15:22:31.0685190Z pacman-6.0.2/scripts/meson.build
2025-10-02T15:22:31.0699403Z pacman-6.0.2/scripts/pacman-db-upgrade.sh.in
2025-10-02T15:22:31.0700474Z pacman-6.0.2/scripts/pacman-key.sh.in
2025-10-02T15:22:31.0701303Z pacman-6.0.2/scripts/po/
2025-10-02T15:22:31.0702112Z pacman-6.0.2/scripts/po/.gitignore
2025-10-02T15:22:31.0702913Z pacman-6.0.2/scripts/po/LINGUAS
2025-10-02T15:22:31.0703695Z pacman-6.0.2/scripts/po/Makevars
2025-10-02T15:22:31.0704541Z pacman-6.0.2/scripts/po/POTFILES.in
2025-10-02T15:22:31.0705147Z pacman-6.0.2/scripts/po/az_AZ.po
2025-10-02T15:22:31.0705994Z pacman-6.0.2/scripts/po/bg.po
2025-10-02T15:22:31.0706774Z pacman-6.0.2/scripts/po/br.po
2025-10-02T15:22:31.0707550Z pacman-6.0.2/scripts/po/ca.po
2025-10-02T15:22:31.0708381Z pacman-6.0.2/scripts/po/cs.po
2025-10-02T15:22:31.0709286Z pacman-6.0.2/scripts/po/da.po
2025-10-02T15:22:31.0710334Z pacman-6.0.2/scripts/po/de.po
2025-10-02T15:22:31.0711037Z pacman-6.0.2/scripts/po/el.po
2025-10-02T15:22:31.0711857Z pacman-6.0.2/scripts/po/en_GB.po
2025-10-02T15:22:31.0712619Z pacman-6.0.2/scripts/po/eo.po
2025-10-02T15:22:31.0713223Z pacman-6.0.2/scripts/po/es.po
2025-10-02T15:22:31.0714046Z pacman-6.0.2/scripts/po/es_419.po
2025-10-02T15:22:31.0714715Z pacman-6.0.2/scripts/po/eu.po
2025-10-02T15:22:31.0715448Z pacman-6.0.2/scripts/po/eu_ES.po
2025-10-02T15:22:31.0716100Z pacman-6.0.2/scripts/po/fi.po
2025-10-02T15:22:31.0716896Z pacman-6.0.2/scripts/po/fr.po
2025-10-02T15:22:31.0717689Z pacman-6.0.2/scripts/po/gl.po
2025-10-02T15:22:31.0718487Z pacman-6.0.2/scripts/po/hi.po
2025-10-02T15:22:31.0719291Z pacman-6.0.2/scripts/po/hu.po
2025-10-02T15:22:31.0720227Z pacman-6.0.2/scripts/po/id.po
2025-10-02T15:22:31.0721012Z pacman-6.0.2/scripts/po/it.po
2025-10-02T15:22:31.0721618Z pacman-6.0.2/scripts/po/ja.po
2025-10-02T15:22:31.0722296Z pacman-6.0.2/scripts/po/ko.po
2025-10-02T15:22:31.0723021Z pacman-6.0.2/scripts/po/lt.po
2025-10-02T15:22:31.0723824Z pacman-6.0.2/scripts/po/meson.build
2025-10-02T15:22:31.0724683Z pacman-6.0.2/scripts/po/nb.po
2025-10-02T15:22:31.0725497Z pacman-6.0.2/scripts/po/nl.po
2025-10-02T15:22:31.0726257Z pacman-6.0.2/scripts/po/pacman-scripts.pot
2025-10-02T15:22:31.0727000Z pacman-6.0.2/scripts/po/pl.po
2025-10-02T15:22:31.0730262Z pacman-6.0.2/scripts/po/pt.po
2025-10-02T15:22:31.0733685Z pacman-6.0.2/scripts/po/pt_BR.po
2025-10-02T15:22:31.0735865Z pacman-6.0.2/scripts/po/remove-potcdate.sin
2025-10-02T15:22:31.0736775Z pacman-6.0.2/scripts/po/ro.po
2025-10-02T15:22:31.0739718Z pacman-6.0.2/scripts/po/ru.po
2025-10-02T15:22:31.0742940Z pacman-6.0.2/scripts/po/sk.po
2025-10-02T15:22:31.0747170Z pacman-6.0.2/scripts/po/sl.po
2025-10-02T15:22:31.0749738Z pacman-6.0.2/scripts/po/sr.po
2025-10-02T15:22:31.0753079Z pacman-6.0.2/scripts/po/sr@latin.po
2025-10-02T15:22:31.0756506Z pacman-6.0.2/scripts/po/sv.po
2025-10-02T15:22:31.0760139Z pacman-6.0.2/scripts/po/tr.po
2025-10-02T15:22:31.0763167Z pacman-6.0.2/scripts/po/uk.po
2025-10-02T15:22:31.0767731Z pacman-6.0.2/scripts/po/zh_CN.po
2025-10-02T15:22:31.0771162Z pacman-6.0.2/scripts/po/zh_TW.po
2025-10-02T15:22:31.0775059Z pacman-6.0.2/scripts/repo-add.sh.in
2025-10-02T15:22:31.0776485Z pacman-6.0.2/scripts/wrapper.sh.in
2025-10-02T15:22:31.0777300Z pacman-6.0.2/src/
2025-10-02T15:22:31.0779092Z pacman-6.0.2/src/common/
2025-10-02T15:22:31.0780015Z pacman-6.0.2/src/common/ini.c
2025-10-02T15:22:31.0780759Z pacman-6.0.2/src/common/ini.h
2025-10-02T15:22:31.0781517Z pacman-6.0.2/src/common/meson.build
2025-10-02T15:22:31.0782430Z pacman-6.0.2/src/common/util-common.c
2025-10-02T15:22:31.0783300Z pacman-6.0.2/src/common/util-common.h
2025-10-02T15:22:31.0784143Z pacman-6.0.2/src/pacman/
2025-10-02T15:22:31.0784889Z pacman-6.0.2/src/pacman/.gitignore
2025-10-02T15:22:31.0785655Z pacman-6.0.2/src/pacman/callback.c
2025-10-02T15:22:31.0786415Z pacman-6.0.2/src/pacman/callback.h
2025-10-02T15:22:31.0787192Z pacman-6.0.2/src/pacman/check.c
2025-10-02T15:22:31.0787934Z pacman-6.0.2/src/pacman/check.h
2025-10-02T15:22:31.0788678Z pacman-6.0.2/src/pacman/conf.c
2025-10-02T15:22:31.0791054Z pacman-6.0.2/src/pacman/conf.h
2025-10-02T15:22:31.0791835Z pacman-6.0.2/src/pacman/database.c
2025-10-02T15:22:31.0792613Z pacman-6.0.2/src/pacman/deptest.c
2025-10-02T15:22:31.0793396Z pacman-6.0.2/src/pacman/files.c
2025-10-02T15:22:31.0794153Z pacman-6.0.2/src/pacman/ini.c
2025-10-02T15:22:31.0795073Z pacman-6.0.2/src/pacman/ini.h
2025-10-02T15:22:31.0795845Z pacman-6.0.2/src/pacman/meson.build
2025-10-02T15:22:31.0796626Z pacman-6.0.2/src/pacman/package.c
2025-10-02T15:22:31.0797394Z pacman-6.0.2/src/pacman/package.h
2025-10-02T15:22:31.0798172Z pacman-6.0.2/src/pacman/pacman-conf.c
2025-10-02T15:22:31.0798987Z pacman-6.0.2/src/pacman/pacman.c
2025-10-02T15:22:31.0802079Z pacman-6.0.2/src/pacman/pacman.h
2025-10-02T15:22:31.0805100Z pacman-6.0.2/src/pacman/po/
2025-10-02T15:22:31.0805906Z pacman-6.0.2/src/pacman/po/.gitignore
2025-10-02T15:22:31.0806713Z pacman-6.0.2/src/pacman/po/LINGUAS
2025-10-02T15:22:31.0807503Z pacman-6.0.2/src/pacman/po/Makevars
2025-10-02T15:22:31.0808514Z pacman-6.0.2/src/pacman/po/POTFILES.in
2025-10-02T15:22:31.0809335Z pacman-6.0.2/src/pacman/po/ar.po
2025-10-02T15:22:31.0810292Z pacman-6.0.2/src/pacman/po/ast.po
2025-10-02T15:22:31.0811142Z pacman-6.0.2/src/pacman/po/az_AZ.po
2025-10-02T15:22:31.0814592Z pacman-6.0.2/src/pacman/po/bg.po
2025-10-02T15:22:31.0818007Z pacman-6.0.2/src/pacman/po/br.po
2025-10-02T15:22:31.0820866Z pacman-6.0.2/src/pacman/po/ca.po
2025-10-02T15:22:31.0824228Z pacman-6.0.2/src/pacman/po/cs.po
2025-10-02T15:22:31.0827574Z pacman-6.0.2/src/pacman/po/da.po
2025-10-02T15:22:31.0830609Z pacman-6.0.2/src/pacman/po/de.po
2025-10-02T15:22:31.0834174Z pacman-6.0.2/src/pacman/po/el.po
2025-10-02T15:22:31.0837537Z pacman-6.0.2/src/pacman/po/en_GB.po
2025-10-02T15:22:31.0838974Z pacman-6.0.2/src/pacman/po/eo.po
2025-10-02T15:22:31.0842237Z pacman-6.0.2/src/pacman/po/es.po
2025-10-02T15:22:31.0845350Z pacman-6.0.2/src/pacman/po/es_419.po
2025-10-02T15:22:31.0846590Z pacman-6.0.2/src/pacman/po/eu.po
2025-10-02T15:22:31.0849429Z pacman-6.0.2/src/pacman/po/eu_ES.po
2025-10-02T15:22:31.0850500Z pacman-6.0.2/src/pacman/po/fi.po
2025-10-02T15:22:31.0853121Z pacman-6.0.2/src/pacman/po/fr.po
2025-10-02T15:22:31.0856565Z pacman-6.0.2/src/pacman/po/gl.po
2025-10-02T15:22:31.0859700Z pacman-6.0.2/src/pacman/po/hi.po
2025-10-02T15:22:31.0863043Z pacman-6.0.2/src/pacman/po/hr.po
2025-10-02T15:22:31.0866190Z pacman-6.0.2/src/pacman/po/hu.po
2025-10-02T15:22:31.0870075Z pacman-6.0.2/src/pacman/po/id.po
2025-10-02T15:22:31.0872696Z pacman-6.0.2/src/pacman/po/it.po
2025-10-02T15:22:31.0875417Z pacman-6.0.2/src/pacman/po/ja.po
2025-10-02T15:22:31.0879000Z pacman-6.0.2/src/pacman/po/ko.po
2025-10-02T15:22:31.0882152Z pacman-6.0.2/src/pacman/po/lt.po
2025-10-02T15:22:31.0885938Z pacman-6.0.2/src/pacman/po/meson.build
2025-10-02T15:22:31.0886760Z pacman-6.0.2/src/pacman/po/nb.po
2025-10-02T15:22:31.0888968Z pacman-6.0.2/src/pacman/po/nl.po
2025-10-02T15:22:31.0892026Z pacman-6.0.2/src/pacman/po/pacman.pot
2025-10-02T15:22:31.0893349Z pacman-6.0.2/src/pacman/po/pl.po
2025-10-02T15:22:31.0896881Z pacman-6.0.2/src/pacman/po/pt.po
2025-10-02T15:22:31.0900013Z pacman-6.0.2/src/pacman/po/pt_BR.po
2025-10-02T15:22:31.0902470Z pacman-6.0.2/src/pacman/po/remove-potcdate.sin
2025-10-02T15:22:31.0903344Z pacman-6.0.2/src/pacman/po/ro.po
2025-10-02T15:22:31.0905299Z pacman-6.0.2/src/pacman/po/ru.po
2025-10-02T15:22:31.0908834Z pacman-6.0.2/src/pacman/po/sk.po
2025-10-02T15:22:31.0911771Z pacman-6.0.2/src/pacman/po/sl.po
2025-10-02T15:22:31.0914710Z pacman-6.0.2/src/pacman/po/sr.po
2025-10-02T15:22:31.0918469Z pacman-6.0.2/src/pacman/po/sr@latin.po
2025-10-02T15:22:31.0921116Z pacman-6.0.2/src/pacman/po/sv.po
2025-10-02T15:22:31.0924071Z pacman-6.0.2/src/pacman/po/tr.po
2025-10-02T15:22:31.0927969Z pacman-6.0.2/src/pacman/po/uk.po
2025-10-02T15:22:31.0931770Z pacman-6.0.2/src/pacman/po/zh_CN.po
2025-10-02T15:22:31.0935401Z pacman-6.0.2/src/pacman/po/zh_TW.po
2025-10-02T15:22:31.0938542Z pacman-6.0.2/src/pacman/query.c
2025-10-02T15:22:31.0939293Z pacman-6.0.2/src/pacman/remove.c
2025-10-02T15:22:31.0940583Z pacman-6.0.2/src/pacman/sighandler.c
2025-10-02T15:22:31.0942359Z pacman-6.0.2/src/pacman/sighandler.h
2025-10-02T15:22:31.0943084Z pacman-6.0.2/src/pacman/sync.c
2025-10-02T15:22:31.0944306Z pacman-6.0.2/src/pacman/upgrade.c
2025-10-02T15:22:31.0945028Z pacman-6.0.2/src/pacman/util-common.c
2025-10-02T15:22:31.0945491Z pacman-6.0.2/src/pacman/util-common.h
2025-10-02T15:22:31.0945937Z pacman-6.0.2/src/pacman/util.c
2025-10-02T15:22:31.0949235Z pacman-6.0.2/src/pacman/util.h
2025-10-02T15:22:31.0950386Z pacman-6.0.2/src/util/
2025-10-02T15:22:31.0951098Z pacman-6.0.2/src/util/.gitignore
2025-10-02T15:22:31.0951850Z pacman-6.0.2/src/util/meson.build
2025-10-02T15:22:31.0952607Z pacman-6.0.2/src/util/testpkg.c
2025-10-02T15:22:31.0953354Z pacman-6.0.2/src/util/util-common.c
2025-10-02T15:22:31.0954130Z pacman-6.0.2/src/util/util-common.h
2025-10-02T15:22:31.0954878Z pacman-6.0.2/src/util/vercmp.c
2025-10-02T15:22:31.0955590Z pacman-6.0.2/test/
2025-10-02T15:22:31.0956482Z pacman-6.0.2/test/.gitignore
2025-10-02T15:22:31.0957216Z pacman-6.0.2/test/pacman/
2025-10-02T15:22:31.0957956Z pacman-6.0.2/test/pacman/.gitignore
2025-10-02T15:22:31.0958718Z pacman-6.0.2/test/pacman/ChangeLog
2025-10-02T15:22:31.0959712Z pacman-6.0.2/test/pacman/README
2025-10-02T15:22:31.0960460Z pacman-6.0.2/test/pacman/TODO
2025-10-02T15:22:31.0961206Z pacman-6.0.2/test/pacman/ldconfig.stub
2025-10-02T15:22:31.0961785Z pacman-6.0.2/test/pacman/meson.build
2025-10-02T15:22:31.0962246Z pacman-6.0.2/test/pacman/pactest.py
2025-10-02T15:22:31.0962760Z pacman-6.0.2/test/pacman/pmdb.py
2025-10-02T15:22:31.0963226Z pacman-6.0.2/test/pacman/pmenv.py
2025-10-02T15:22:31.0963683Z pacman-6.0.2/test/pacman/pmfile.py
2025-10-02T15:22:31.0964199Z pacman-6.0.2/test/pacman/pmpkg.py
2025-10-02T15:22:31.0964962Z pacman-6.0.2/test/pacman/pmrule.py
2025-10-02T15:22:31.0965742Z pacman-6.0.2/test/pacman/pmserve.py
2025-10-02T15:22:31.0966507Z pacman-6.0.2/test/pacman/pmtest.py
2025-10-02T15:22:31.0967250Z pacman-6.0.2/test/pacman/tap.py
2025-10-02T15:22:31.0968003Z pacman-6.0.2/test/pacman/tests/
2025-10-02T15:22:31.0968737Z pacman-6.0.2/test/pacman/tests/TESTS
2025-10-02T15:22:31.0969688Z pacman-6.0.2/test/pacman/tests/backup001.py
2025-10-02T15:22:31.0970510Z pacman-6.0.2/test/pacman/tests/clean001.py
2025-10-02T15:22:31.0971326Z pacman-6.0.2/test/pacman/tests/clean002.py
2025-10-02T15:22:31.0972142Z pacman-6.0.2/test/pacman/tests/clean003.py
2025-10-02T15:22:31.0972963Z pacman-6.0.2/test/pacman/tests/clean004.py
2025-10-02T15:22:31.0973766Z pacman-6.0.2/test/pacman/tests/clean005.py
2025-10-02T15:22:31.0974586Z pacman-6.0.2/test/pacman/tests/config001.py
2025-10-02T15:22:31.0975400Z pacman-6.0.2/test/pacman/tests/config002.py
2025-10-02T15:22:31.0976227Z pacman-6.0.2/test/pacman/tests/database001.py
2025-10-02T15:22:31.0977336Z pacman-6.0.2/test/pacman/tests/database002.py
2025-10-02T15:22:31.0978184Z pacman-6.0.2/test/pacman/tests/database010.py
2025-10-02T15:22:31.0979037Z pacman-6.0.2/test/pacman/tests/database011.py
2025-10-02T15:22:31.0980192Z pacman-6.0.2/test/pacman/tests/database012.py
2025-10-02T15:22:31.0981107Z pacman-6.0.2/test/pacman/tests/dbonly-extracted-files.py
2025-10-02T15:22:31.0982049Z pacman-6.0.2/test/pacman/tests/depconflict100.py
2025-10-02T15:22:31.0982955Z pacman-6.0.2/test/pacman/tests/depconflict110.py
2025-10-02T15:22:31.0983846Z pacman-6.0.2/test/pacman/tests/depconflict111.py
2025-10-02T15:22:31.0984744Z pacman-6.0.2/test/pacman/tests/depconflict120.py
2025-10-02T15:22:31.0985743Z pacman-6.0.2/test/pacman/tests/dependency-cycle-fixed-by-upgrade.py
2025-10-02T15:22:31.0986765Z pacman-6.0.2/test/pacman/tests/deprange001.py
2025-10-02T15:22:31.0987623Z pacman-6.0.2/test/pacman/tests/deptest001.py
2025-10-02T15:22:31.0988450Z pacman-6.0.2/test/pacman/tests/dummy001.py
2025-10-02T15:22:31.0989253Z pacman-6.0.2/test/pacman/tests/epoch001.py
2025-10-02T15:22:31.0990223Z pacman-6.0.2/test/pacman/tests/epoch002.py
2025-10-02T15:22:31.0991017Z pacman-6.0.2/test/pacman/tests/epoch003.py
2025-10-02T15:22:31.0991818Z pacman-6.0.2/test/pacman/tests/epoch004.py
2025-10-02T15:22:31.0992629Z pacman-6.0.2/test/pacman/tests/epoch005.py
2025-10-02T15:22:31.0993420Z pacman-6.0.2/test/pacman/tests/epoch010.py
2025-10-02T15:22:31.0994227Z pacman-6.0.2/test/pacman/tests/epoch011.py
2025-10-02T15:22:31.0995040Z pacman-6.0.2/test/pacman/tests/epoch012.py
2025-10-02T15:22:31.0995976Z pacman-6.0.2/test/pacman/tests/file-conflict-with-installed-pkg.py
2025-10-02T15:22:31.0996978Z pacman-6.0.2/test/pacman/tests/fileconflict001.py
2025-10-02T15:22:31.0997901Z pacman-6.0.2/test/pacman/tests/fileconflict002.py
2025-10-02T15:22:31.0998798Z pacman-6.0.2/test/pacman/tests/fileconflict003.py
2025-10-02T15:22:31.0999820Z pacman-6.0.2/test/pacman/tests/fileconflict004.py
2025-10-02T15:22:31.1000720Z pacman-6.0.2/test/pacman/tests/fileconflict005.py
2025-10-02T15:22:31.1001618Z pacman-6.0.2/test/pacman/tests/fileconflict006.py
2025-10-02T15:22:31.1002515Z pacman-6.0.2/test/pacman/tests/fileconflict007.py
2025-10-02T15:22:31.1003576Z pacman-6.0.2/test/pacman/tests/fileconflict008.py
2025-10-02T15:22:31.1004471Z pacman-6.0.2/test/pacman/tests/fileconflict009.py
2025-10-02T15:22:31.1005366Z pacman-6.0.2/test/pacman/tests/fileconflict010.py
2025-10-02T15:22:31.1006286Z pacman-6.0.2/test/pacman/tests/fileconflict011.py
2025-10-02T15:22:31.1007182Z pacman-6.0.2/test/pacman/tests/fileconflict012.py
2025-10-02T15:22:31.1008100Z pacman-6.0.2/test/pacman/tests/fileconflict013.py
2025-10-02T15:22:31.1008987Z pacman-6.0.2/test/pacman/tests/fileconflict015.py
2025-10-02T15:22:31.1010042Z pacman-6.0.2/test/pacman/tests/fileconflict016.py
2025-10-02T15:22:31.1010940Z pacman-6.0.2/test/pacman/tests/fileconflict017.py
2025-10-02T15:22:31.1011829Z pacman-6.0.2/test/pacman/tests/fileconflict020.py
2025-10-02T15:22:31.1012716Z pacman-6.0.2/test/pacman/tests/fileconflict021.py
2025-10-02T15:22:31.1013616Z pacman-6.0.2/test/pacman/tests/fileconflict022.py
2025-10-02T15:22:31.1014500Z pacman-6.0.2/test/pacman/tests/fileconflict023.py
2025-10-02T15:22:31.1015384Z pacman-6.0.2/test/pacman/tests/fileconflict024.py
2025-10-02T15:22:31.1016281Z pacman-6.0.2/test/pacman/tests/fileconflict025.py
2025-10-02T15:22:31.1017172Z pacman-6.0.2/test/pacman/tests/fileconflict030.py
2025-10-02T15:22:31.1018053Z pacman-6.0.2/test/pacman/tests/fileconflict031.py
2025-10-02T15:22:31.1018929Z pacman-6.0.2/test/pacman/tests/fileconflict032.py
2025-10-02T15:22:31.1019967Z pacman-6.0.2/test/pacman/tests/hook-abortonfail.py
2025-10-02T15:22:31.1020922Z pacman-6.0.2/test/pacman/tests/hook-description-reused.py
2025-10-02T15:22:31.1021885Z pacman-6.0.2/test/pacman/tests/hook-exec-reused.py
2025-10-02T15:22:31.1022851Z pacman-6.0.2/test/pacman/tests/hook-exec-with-arguments.py
2025-10-02T15:22:31.1023849Z pacman-6.0.2/test/pacman/tests/hook-file-change-packages.py
2025-10-02T15:22:31.1024893Z pacman-6.0.2/test/pacman/tests/hook-file-remove-trigger-match.py
2025-10-02T15:22:31.1026150Z pacman-6.0.2/test/pacman/tests/hook-file-upgrade-nomatch.py
2025-10-02T15:22:31.1027128Z pacman-6.0.2/test/pacman/tests/hook-invalid-trigger.py
2025-10-02T15:22:31.1028148Z pacman-6.0.2/test/pacman/tests/hook-pkg-install-trigger-match.py
2025-10-02T15:22:31.1029235Z pacman-6.0.2/test/pacman/tests/hook-pkg-postinstall-trigger-match.py
2025-10-02T15:22:31.1030476Z pacman-6.0.2/test/pacman/tests/hook-pkg-remove-trigger-match.py
2025-10-02T15:22:31.1031564Z pacman-6.0.2/test/pacman/tests/hook-pkg-upgrade-trigger-match.py
2025-10-02T15:22:31.1032546Z pacman-6.0.2/test/pacman/tests/hook-target-list.py
2025-10-02T15:22:31.1033449Z pacman-6.0.2/test/pacman/tests/hook-type-reused.py
2025-10-02T15:22:31.1034429Z pacman-6.0.2/test/pacman/tests/hook-upgrade-trigger-no-match.py
2025-10-02T15:22:31.1035398Z pacman-6.0.2/test/pacman/tests/hook-when-reused.py
2025-10-02T15:22:31.1036274Z pacman-6.0.2/test/pacman/tests/ignore001.py
2025-10-02T15:22:31.1037103Z pacman-6.0.2/test/pacman/tests/ignore002.py
2025-10-02T15:22:31.1037908Z pacman-6.0.2/test/pacman/tests/ignore003.py
2025-10-02T15:22:31.1038702Z pacman-6.0.2/test/pacman/tests/ignore004.py
2025-10-02T15:22:31.1039643Z pacman-6.0.2/test/pacman/tests/ignore005.py
2025-10-02T15:22:31.1040458Z pacman-6.0.2/test/pacman/tests/ignore006.py
2025-10-02T15:22:31.1041256Z pacman-6.0.2/test/pacman/tests/ignore007.py
2025-10-02T15:22:31.1042050Z pacman-6.0.2/test/pacman/tests/ignore008.py
2025-10-02T15:22:31.1042870Z pacman-6.0.2/test/pacman/tests/ldconfig001.py
2025-10-02T15:22:31.1043725Z pacman-6.0.2/test/pacman/tests/ldconfig002.py
2025-10-02T15:22:31.1044562Z pacman-6.0.2/test/pacman/tests/ldconfig003.py
2025-10-02T15:22:31.1045384Z pacman-6.0.2/test/pacman/tests/mode001.py
2025-10-02T15:22:31.1046211Z pacman-6.0.2/test/pacman/tests/mode002.py
2025-10-02T15:22:31.1047014Z pacman-6.0.2/test/pacman/tests/mode003.py
2025-10-02T15:22:31.1054428Z pacman-6.0.2/test/pacman/tests/multiple-architectures01.py
2025-10-02T15:22:31.1055543Z pacman-6.0.2/test/pacman/tests/multiple-architectures02.py
2025-10-02T15:22:31.1056531Z pacman-6.0.2/test/pacman/tests/noupgrade-inverted.py
2025-10-02T15:22:31.1057830Z pacman-6.0.2/test/pacman/tests/overwrite-files-match-negated.py
2025-10-02T15:22:31.1058890Z pacman-6.0.2/test/pacman/tests/overwrite-files-match.py
2025-10-02T15:22:31.1060096Z pacman-6.0.2/test/pacman/tests/overwrite-files-nonmatch.py
2025-10-02T15:22:31.1061030Z pacman-6.0.2/test/pacman/tests/pacman001.py
2025-10-02T15:22:31.1061852Z pacman-6.0.2/test/pacman/tests/pacman002.py
2025-10-02T15:22:31.1062672Z pacman-6.0.2/test/pacman/tests/pacman003.py
2025-10-02T15:22:31.1063497Z pacman-6.0.2/test/pacman/tests/pacman004.py
2025-10-02T15:22:31.1064304Z pacman-6.0.2/test/pacman/tests/pacman005.py
2025-10-02T15:22:31.1065138Z pacman-6.0.2/test/pacman/tests/provision001.py
2025-10-02T15:22:31.1066032Z pacman-6.0.2/test/pacman/tests/provision002.py
2025-10-02T15:22:31.1066897Z pacman-6.0.2/test/pacman/tests/provision003.py
2025-10-02T15:22:31.1067764Z pacman-6.0.2/test/pacman/tests/provision004.py
2025-10-02T15:22:31.1068620Z pacman-6.0.2/test/pacman/tests/provision010.py
2025-10-02T15:22:31.1069613Z pacman-6.0.2/test/pacman/tests/provision011.py
2025-10-02T15:22:31.1070526Z pacman-6.0.2/test/pacman/tests/provision012.py
2025-10-02T15:22:31.1071390Z pacman-6.0.2/test/pacman/tests/provision020.py
2025-10-02T15:22:31.1072245Z pacman-6.0.2/test/pacman/tests/provision021.py
2025-10-02T15:22:31.1073097Z pacman-6.0.2/test/pacman/tests/provision022.py
2025-10-02T15:22:31.1073950Z pacman-6.0.2/test/pacman/tests/query001.py
2025-10-02T15:22:31.1074754Z pacman-6.0.2/test/pacman/tests/query002.py
2025-10-02T15:22:31.1075554Z pacman-6.0.2/test/pacman/tests/query003.py
2025-10-02T15:22:31.1076343Z pacman-6.0.2/test/pacman/tests/query004.py
2025-10-02T15:22:31.1077162Z pacman-6.0.2/test/pacman/tests/query005.py
2025-10-02T15:22:31.1077963Z pacman-6.0.2/test/pacman/tests/query006.py
2025-10-02T15:22:31.1078751Z pacman-6.0.2/test/pacman/tests/query007.py
2025-10-02T15:22:31.1079889Z pacman-6.0.2/test/pacman/tests/query010.py
2025-10-02T15:22:31.1080709Z pacman-6.0.2/test/pacman/tests/query011.py
2025-10-02T15:22:31.1081510Z pacman-6.0.2/test/pacman/tests/query012.py
2025-10-02T15:22:31.1082325Z pacman-6.0.2/test/pacman/tests/querycheck001.py
2025-10-02T15:22:31.1083234Z pacman-6.0.2/test/pacman/tests/querycheck002.py
2025-10-02T15:22:31.1084166Z pacman-6.0.2/test/pacman/tests/querycheck_fast_file_type.py
2025-10-02T15:22:31.1085101Z pacman-6.0.2/test/pacman/tests/reason001.py
2025-10-02T15:22:31.1086009Z pacman-6.0.2/test/pacman/tests/remove-assumeinstalled.py
2025-10-02T15:22:31.1087101Z pacman-6.0.2/test/pacman/tests/remove-directory-replaced-with-symlink.py
2025-10-02T15:22:31.1088303Z pacman-6.0.2/test/pacman/tests/remove-optdepend-of-installed-package.py
2025-10-02T15:22:31.1089397Z pacman-6.0.2/test/pacman/tests/remove-recursive-cycle.py
2025-10-02T15:22:31.1090465Z pacman-6.0.2/test/pacman/tests/remove001.py
2025-10-02T15:22:31.1091331Z pacman-6.0.2/test/pacman/tests/remove002.py
2025-10-02T15:22:31.1092150Z pacman-6.0.2/test/pacman/tests/remove010.py
2025-10-02T15:22:31.1092955Z pacman-6.0.2/test/pacman/tests/remove011.py
2025-10-02T15:22:31.1093772Z pacman-6.0.2/test/pacman/tests/remove012.py
2025-10-02T15:22:31.1094604Z pacman-6.0.2/test/pacman/tests/remove020.py
2025-10-02T15:22:31.1095423Z pacman-6.0.2/test/pacman/tests/remove021.py
2025-10-02T15:22:31.1096235Z pacman-6.0.2/test/pacman/tests/remove030.py
2025-10-02T15:22:31.1097047Z pacman-6.0.2/test/pacman/tests/remove031.py
2025-10-02T15:22:31.1097864Z pacman-6.0.2/test/pacman/tests/remove040.py
2025-10-02T15:22:31.1098672Z pacman-6.0.2/test/pacman/tests/remove041.py
2025-10-02T15:22:31.1099603Z pacman-6.0.2/test/pacman/tests/remove042.py
2025-10-02T15:22:31.1100425Z pacman-6.0.2/test/pacman/tests/remove043.py
2025-10-02T15:22:31.1101301Z pacman-6.0.2/test/pacman/tests/remove044.py
2025-10-02T15:22:31.1102104Z pacman-6.0.2/test/pacman/tests/remove045.py
2025-10-02T15:22:31.1102911Z pacman-6.0.2/test/pacman/tests/remove047.py
2025-10-02T15:22:31.1103710Z pacman-6.0.2/test/pacman/tests/remove049.py
2025-10-02T15:22:31.1104544Z pacman-6.0.2/test/pacman/tests/remove050.py
2025-10-02T15:22:31.1105523Z pacman-6.0.2/test/pacman/tests/remove051.py
2025-10-02T15:22:31.1106335Z pacman-6.0.2/test/pacman/tests/remove052.py
2025-10-02T15:22:31.1107164Z pacman-6.0.2/test/pacman/tests/remove060.py
2025-10-02T15:22:31.1107975Z pacman-6.0.2/test/pacman/tests/remove070.py
2025-10-02T15:22:31.1108774Z pacman-6.0.2/test/pacman/tests/remove071.py
2025-10-02T15:22:31.1109827Z pacman-6.0.2/test/pacman/tests/replace-and-upgrade-package.py
2025-10-02T15:22:31.1110791Z pacman-6.0.2/test/pacman/tests/replace100.py
2025-10-02T15:22:31.1111637Z pacman-6.0.2/test/pacman/tests/replace101.py
2025-10-02T15:22:31.1112488Z pacman-6.0.2/test/pacman/tests/replace102.py
2025-10-02T15:22:31.1113314Z pacman-6.0.2/test/pacman/tests/replace103.py
2025-10-02T15:22:31.1114138Z pacman-6.0.2/test/pacman/tests/replace104.py
2025-10-02T15:22:31.1114972Z pacman-6.0.2/test/pacman/tests/replace110.py
2025-10-02T15:22:31.1115899Z pacman-6.0.2/test/pacman/tests/scriptlet-signal-handling.py
2025-10-02T15:22:31.1116903Z pacman-6.0.2/test/pacman/tests/scriptlet-signal-reset.py
2025-10-02T15:22:31.1117855Z pacman-6.0.2/test/pacman/tests/scriptlet001.py
2025-10-02T15:22:31.1118733Z pacman-6.0.2/test/pacman/tests/scriptlet002.py
2025-10-02T15:22:31.1119702Z pacman-6.0.2/test/pacman/tests/sign001.py
2025-10-02T15:22:31.1120524Z pacman-6.0.2/test/pacman/tests/sign002.py
2025-10-02T15:22:31.1121453Z pacman-6.0.2/test/pacman/tests/skip-remove-with-glob-chars.py
2025-10-02T15:22:31.1122394Z pacman-6.0.2/test/pacman/tests/smoke001.py
2025-10-02T15:22:31.1123196Z pacman-6.0.2/test/pacman/tests/smoke002.py
2025-10-02T15:22:31.1124026Z pacman-6.0.2/test/pacman/tests/smoke003.py
2025-10-02T15:22:31.1124830Z pacman-6.0.2/test/pacman/tests/smoke004.py
2025-10-02T15:22:31.1125717Z pacman-6.0.2/test/pacman/tests/symlink-replace-with-dir.py
2025-10-02T15:22:31.1126845Z pacman-6.0.2/test/pacman/tests/symlink001.py
2025-10-02T15:22:31.1127675Z pacman-6.0.2/test/pacman/tests/symlink002.py
2025-10-02T15:22:31.1128509Z pacman-6.0.2/test/pacman/tests/symlink010.py
2025-10-02T15:22:31.1129335Z pacman-6.0.2/test/pacman/tests/symlink011.py
2025-10-02T15:22:31.1130350Z pacman-6.0.2/test/pacman/tests/symlink012.py
2025-10-02T15:22:31.1131188Z pacman-6.0.2/test/pacman/tests/symlink020.py
2025-10-02T15:22:31.1132012Z pacman-6.0.2/test/pacman/tests/symlink021.py
2025-10-02T15:22:31.1132939Z pacman-6.0.2/test/pacman/tests/sync-failover-404-with-body.py
2025-10-02T15:22:31.1133974Z pacman-6.0.2/test/pacman/tests/sync-install-assumeinstalled.py
2025-10-02T15:22:31.1134959Z pacman-6.0.2/test/pacman/tests/sync-nodepversion01.py
2025-10-02T15:22:31.1135894Z pacman-6.0.2/test/pacman/tests/sync-nodepversion02.py
2025-10-02T15:22:31.1136821Z pacman-6.0.2/test/pacman/tests/sync-nodepversion03.py
2025-10-02T15:22:31.1137757Z pacman-6.0.2/test/pacman/tests/sync-nodepversion04.py
2025-10-02T15:22:31.1138696Z pacman-6.0.2/test/pacman/tests/sync-nodepversion05.py
2025-10-02T15:22:31.1139787Z pacman-6.0.2/test/pacman/tests/sync-nodepversion06.py
2025-10-02T15:22:31.1140879Z pacman-6.0.2/test/pacman/tests/sync-sysupgrade-print-replaced-packages.py
2025-10-02T15:22:31.1142035Z pacman-6.0.2/test/pacman/tests/sync-update-assumeinstalled.py
2025-10-02T15:22:31.1143218Z pacman-6.0.2/test/pacman/tests/sync-update-package-removing-required-provides.py
2025-10-02T15:22:31.1144326Z pacman-6.0.2/test/pacman/tests/sync001.py
2025-10-02T15:22:31.1144857Z pacman-6.0.2/test/pacman/tests/sync002.py
2025-10-02T15:22:31.1145346Z pacman-6.0.2/test/pacman/tests/sync003.py
2025-10-02T15:22:31.1145818Z pacman-6.0.2/test/pacman/tests/sync009.py
2025-10-02T15:22:31.1146573Z pacman-6.0.2/test/pacman/tests/sync010.py
2025-10-02T15:22:31.1147364Z pacman-6.0.2/test/pacman/tests/sync011.py
2025-10-02T15:22:31.1148154Z pacman-6.0.2/test/pacman/tests/sync012.py
2025-10-02T15:22:31.1148951Z pacman-6.0.2/test/pacman/tests/sync020.py
2025-10-02T15:22:31.1149913Z pacman-6.0.2/test/pacman/tests/sync021.py
2025-10-02T15:22:31.1150712Z pacman-6.0.2/test/pacman/tests/sync022.py
2025-10-02T15:22:31.1151503Z pacman-6.0.2/test/pacman/tests/sync023.py
2025-10-02T15:22:31.1152416Z pacman-6.0.2/test/pacman/tests/sync024.py
2025-10-02T15:22:31.1153236Z pacman-6.0.2/test/pacman/tests/sync030.py
2025-10-02T15:22:31.1154026Z pacman-6.0.2/test/pacman/tests/sync031.py
2025-10-02T15:22:31.1154818Z pacman-6.0.2/test/pacman/tests/sync040.py
2025-10-02T15:22:31.1155604Z pacman-6.0.2/test/pacman/tests/sync041.py
2025-10-02T15:22:31.1156408Z pacman-6.0.2/test/pacman/tests/sync042.py
2025-10-02T15:22:31.1157198Z pacman-6.0.2/test/pacman/tests/sync043.py
2025-10-02T15:22:31.1157997Z pacman-6.0.2/test/pacman/tests/sync044.py
2025-10-02T15:22:31.1158817Z pacman-6.0.2/test/pacman/tests/sync045.py
2025-10-02T15:22:31.1159781Z pacman-6.0.2/test/pacman/tests/sync046.py
2025-10-02T15:22:31.1160575Z pacman-6.0.2/test/pacman/tests/sync050.py
2025-10-02T15:22:31.1161378Z pacman-6.0.2/test/pacman/tests/sync051.py
2025-10-02T15:22:31.1162178Z pacman-6.0.2/test/pacman/tests/sync052.py
2025-10-02T15:22:31.1162976Z pacman-6.0.2/test/pacman/tests/sync100.py
2025-10-02T15:22:31.1163780Z pacman-6.0.2/test/pacman/tests/sync1000.py
2025-10-02T15:22:31.1164598Z pacman-6.0.2/test/pacman/tests/sync1003.py
2025-10-02T15:22:31.1165407Z pacman-6.0.2/test/pacman/tests/sync1004.py
2025-10-02T15:22:31.1166201Z pacman-6.0.2/test/pacman/tests/sync1008.py
2025-10-02T15:22:31.1166956Z pacman-6.0.2/test/pacman/tests/sync101.py
2025-10-02T15:22:31.1167748Z pacman-6.0.2/test/pacman/tests/sync102.py
2025-10-02T15:22:31.1168534Z pacman-6.0.2/test/pacman/tests/sync103.py
2025-10-02T15:22:31.1169319Z pacman-6.0.2/test/pacman/tests/sync104.py
2025-10-02T15:22:31.1170264Z pacman-6.0.2/test/pacman/tests/sync110.py
2025-10-02T15:22:31.1171055Z pacman-6.0.2/test/pacman/tests/sync1100.py
2025-10-02T15:22:31.1171866Z pacman-6.0.2/test/pacman/tests/sync1101.py
2025-10-02T15:22:31.1172674Z pacman-6.0.2/test/pacman/tests/sync1102.py
2025-10-02T15:22:31.1173652Z pacman-6.0.2/test/pacman/tests/sync1103.py
2025-10-02T15:22:31.1174443Z pacman-6.0.2/test/pacman/tests/sync1104.py
2025-10-02T15:22:31.1175241Z pacman-6.0.2/test/pacman/tests/sync1105.py
2025-10-02T15:22:31.1176036Z pacman-6.0.2/test/pacman/tests/sync120.py
2025-10-02T15:22:31.1176828Z pacman-6.0.2/test/pacman/tests/sync130.py
2025-10-02T15:22:31.1177618Z pacman-6.0.2/test/pacman/tests/sync131.py
2025-10-02T15:22:31.1178438Z pacman-6.0.2/test/pacman/tests/sync132.py
2025-10-02T15:22:31.1179226Z pacman-6.0.2/test/pacman/tests/sync133.py
2025-10-02T15:22:31.1180136Z pacman-6.0.2/test/pacman/tests/sync134.py
2025-10-02T15:22:31.1180935Z pacman-6.0.2/test/pacman/tests/sync135.py
2025-10-02T15:22:31.1181730Z pacman-6.0.2/test/pacman/tests/sync136.py
2025-10-02T15:22:31.1182523Z pacman-6.0.2/test/pacman/tests/sync137.py
2025-10-02T15:22:31.1183307Z pacman-6.0.2/test/pacman/tests/sync138.py
2025-10-02T15:22:31.1184002Z pacman-6.0.2/test/pacman/tests/sync139.py
2025-10-02T15:22:31.1184736Z pacman-6.0.2/test/pacman/tests/sync140.py
2025-10-02T15:22:31.1185533Z pacman-6.0.2/test/pacman/tests/sync141.py
2025-10-02T15:22:31.1186322Z pacman-6.0.2/test/pacman/tests/sync150.py
2025-10-02T15:22:31.1186924Z pacman-6.0.2/test/pacman/tests/sync200.py
2025-10-02T15:22:31.1187668Z pacman-6.0.2/test/pacman/tests/sync300.py
2025-10-02T15:22:31.1188459Z pacman-6.0.2/test/pacman/tests/sync306.py
2025-10-02T15:22:31.1189249Z pacman-6.0.2/test/pacman/tests/sync400.py
2025-10-02T15:22:31.1190036Z pacman-6.0.2/test/pacman/tests/sync401.py
2025-10-02T15:22:31.1190507Z pacman-6.0.2/test/pacman/tests/sync402.py
2025-10-02T15:22:31.1190973Z pacman-6.0.2/test/pacman/tests/sync403.py
2025-10-02T15:22:31.1191567Z pacman-6.0.2/test/pacman/tests/sync404.py
2025-10-02T15:22:31.1192364Z pacman-6.0.2/test/pacman/tests/sync405.py
2025-10-02T15:22:31.1193155Z pacman-6.0.2/test/pacman/tests/sync406.py
2025-10-02T15:22:31.1193757Z pacman-6.0.2/test/pacman/tests/sync407.py
2025-10-02T15:22:31.1194563Z pacman-6.0.2/test/pacman/tests/sync500.py
2025-10-02T15:22:31.1195355Z pacman-6.0.2/test/pacman/tests/sync501.py
2025-10-02T15:22:31.1196097Z pacman-6.0.2/test/pacman/tests/sync502.py
2025-10-02T15:22:31.1196711Z pacman-6.0.2/test/pacman/tests/sync503.py
2025-10-02T15:22:31.1197194Z pacman-6.0.2/test/pacman/tests/sync600.py
2025-10-02T15:22:31.1197669Z pacman-6.0.2/test/pacman/tests/sync700.py
2025-10-02T15:22:31.1198139Z pacman-6.0.2/test/pacman/tests/sync701.py
2025-10-02T15:22:31.1198606Z pacman-6.0.2/test/pacman/tests/sync702.py
2025-10-02T15:22:31.1199187Z pacman-6.0.2/test/pacman/tests/sync890.py
2025-10-02T15:22:31.1200119Z pacman-6.0.2/test/pacman/tests/sync891.py
2025-10-02T15:22:31.1200912Z pacman-6.0.2/test/pacman/tests/sync892.py
2025-10-02T15:22:31.1201707Z pacman-6.0.2/test/pacman/tests/sync893.py
2025-10-02T15:22:31.1202489Z pacman-6.0.2/test/pacman/tests/sync895.py
2025-10-02T15:22:31.1203276Z pacman-6.0.2/test/pacman/tests/sync896.py
2025-10-02T15:22:31.1204072Z pacman-6.0.2/test/pacman/tests/sync897.py
2025-10-02T15:22:31.1204870Z pacman-6.0.2/test/pacman/tests/sync898.py
2025-10-02T15:22:31.1205657Z pacman-6.0.2/test/pacman/tests/sync899.py
2025-10-02T15:22:31.1206447Z pacman-6.0.2/test/pacman/tests/sync900.py
2025-10-02T15:22:31.1207232Z pacman-6.0.2/test/pacman/tests/sync901.py
2025-10-02T15:22:31.1208019Z pacman-6.0.2/test/pacman/tests/sync990.py
2025-10-02T15:22:31.1208806Z pacman-6.0.2/test/pacman/tests/sync992.py
2025-10-02T15:22:31.1209735Z pacman-6.0.2/test/pacman/tests/sync993.py
2025-10-02T15:22:31.1210529Z pacman-6.0.2/test/pacman/tests/sync999.py
2025-10-02T15:22:31.1211236Z pacman-6.0.2/test/pacman/tests/trans001.py
2025-10-02T15:22:31.1211724Z pacman-6.0.2/test/pacman/tests/type001.py
2025-10-02T15:22:31.1212226Z pacman-6.0.2/test/pacman/tests/unresolvable001.py
2025-10-02T15:22:31.1212791Z pacman-6.0.2/test/pacman/tests/upgrade-download-404.py
2025-10-02T15:22:31.1213455Z pacman-6.0.2/test/pacman/tests/upgrade-download-pkg-and-sig-with-filename.py
2025-10-02T15:22:31.1214233Z pacman-6.0.2/test/pacman/tests/upgrade-download-pkg-and-sig-without-filename.py
2025-10-02T15:22:31.1215104Z pacman-6.0.2/test/pacman/tests/upgrade-download-with-xfercommand.py
2025-10-02T15:22:31.1215711Z pacman-6.0.2/test/pacman/tests/upgrade001.py
2025-10-02T15:22:31.1216284Z pacman-6.0.2/test/pacman/tests/upgrade002.py
2025-10-02T15:22:31.1217100Z pacman-6.0.2/test/pacman/tests/upgrade003.py
2025-10-02T15:22:31.1217927Z pacman-6.0.2/test/pacman/tests/upgrade004.py
2025-10-02T15:22:31.1218766Z pacman-6.0.2/test/pacman/tests/upgrade005.py
2025-10-02T15:22:31.1219780Z pacman-6.0.2/test/pacman/tests/upgrade006.py
2025-10-02T15:22:31.1220627Z pacman-6.0.2/test/pacman/tests/upgrade010.py
2025-10-02T15:22:31.1221466Z pacman-6.0.2/test/pacman/tests/upgrade011.py
2025-10-02T15:22:31.1222284Z pacman-6.0.2/test/pacman/tests/upgrade013.py
2025-10-02T15:22:31.1223072Z pacman-6.0.2/test/pacman/tests/upgrade020.py
2025-10-02T15:22:31.1223923Z pacman-6.0.2/test/pacman/tests/upgrade021.py
2025-10-02T15:22:31.1224702Z pacman-6.0.2/test/pacman/tests/upgrade022.py
2025-10-02T15:22:31.1225542Z pacman-6.0.2/test/pacman/tests/upgrade023.py
2025-10-02T15:22:31.1226343Z pacman-6.0.2/test/pacman/tests/upgrade024.py
2025-10-02T15:22:31.1227160Z pacman-6.0.2/test/pacman/tests/upgrade025.py
2025-10-02T15:22:31.1227973Z pacman-6.0.2/test/pacman/tests/upgrade026.py
2025-10-02T15:22:31.1228804Z pacman-6.0.2/test/pacman/tests/upgrade027.py
2025-10-02T15:22:31.1229323Z pacman-6.0.2/test/pacman/tests/upgrade028.py
2025-10-02T15:22:31.1230079Z pacman-6.0.2/test/pacman/tests/upgrade029.py
2025-10-02T15:22:31.1230750Z pacman-6.0.2/test/pacman/tests/upgrade030.py
2025-10-02T15:22:31.1231537Z pacman-6.0.2/test/pacman/tests/upgrade031.py
2025-10-02T15:22:31.1232035Z pacman-6.0.2/test/pacman/tests/upgrade032.py
2025-10-02T15:22:31.1232527Z pacman-6.0.2/test/pacman/tests/upgrade040.py
2025-10-02T15:22:31.1233020Z pacman-6.0.2/test/pacman/tests/upgrade041.py
2025-10-02T15:22:31.1233514Z pacman-6.0.2/test/pacman/tests/upgrade042.py
2025-10-02T15:22:31.1234019Z pacman-6.0.2/test/pacman/tests/upgrade043.py
2025-10-02T15:22:31.1234510Z pacman-6.0.2/test/pacman/tests/upgrade045.py
2025-10-02T15:22:31.1234997Z pacman-6.0.2/test/pacman/tests/upgrade050.py
2025-10-02T15:22:31.1235709Z pacman-6.0.2/test/pacman/tests/upgrade051.py
2025-10-02T15:22:31.1236217Z pacman-6.0.2/test/pacman/tests/upgrade052.py
2025-10-02T15:22:31.1236707Z pacman-6.0.2/test/pacman/tests/upgrade053.py
2025-10-02T15:22:31.1237198Z pacman-6.0.2/test/pacman/tests/upgrade054.py
2025-10-02T15:22:31.1237693Z pacman-6.0.2/test/pacman/tests/upgrade055.py
2025-10-02T15:22:31.1238182Z pacman-6.0.2/test/pacman/tests/upgrade056.py
2025-10-02T15:22:31.1238681Z pacman-6.0.2/test/pacman/tests/upgrade057.py
2025-10-02T15:22:31.1239171Z pacman-6.0.2/test/pacman/tests/upgrade058.py
2025-10-02T15:22:31.1239867Z pacman-6.0.2/test/pacman/tests/upgrade059.py
2025-10-02T15:22:31.1240361Z pacman-6.0.2/test/pacman/tests/upgrade060.py
2025-10-02T15:22:31.1240852Z pacman-6.0.2/test/pacman/tests/upgrade061.py
2025-10-02T15:22:31.1241352Z pacman-6.0.2/test/pacman/tests/upgrade070.py
2025-10-02T15:22:31.1241853Z pacman-6.0.2/test/pacman/tests/upgrade071.py
2025-10-02T15:22:31.1242341Z pacman-6.0.2/test/pacman/tests/upgrade072.py
2025-10-02T15:22:31.1242838Z pacman-6.0.2/test/pacman/tests/upgrade073.py
2025-10-02T15:22:31.1243329Z pacman-6.0.2/test/pacman/tests/upgrade074.py
2025-10-02T15:22:31.1243824Z pacman-6.0.2/test/pacman/tests/upgrade075.py
2025-10-02T15:22:31.1244309Z pacman-6.0.2/test/pacman/tests/upgrade076.py
2025-10-02T15:22:31.1244798Z pacman-6.0.2/test/pacman/tests/upgrade077.py
2025-10-02T15:22:31.1245287Z pacman-6.0.2/test/pacman/tests/upgrade078.py
2025-10-02T15:22:31.1245774Z pacman-6.0.2/test/pacman/tests/upgrade080.py
2025-10-02T15:22:31.1246261Z pacman-6.0.2/test/pacman/tests/upgrade081.py
2025-10-02T15:22:31.1246751Z pacman-6.0.2/test/pacman/tests/upgrade082.py
2025-10-02T15:22:31.1247242Z pacman-6.0.2/test/pacman/tests/upgrade083.py
2025-10-02T15:22:31.1247726Z pacman-6.0.2/test/pacman/tests/upgrade084.py
2025-10-02T15:22:31.1248383Z pacman-6.0.2/test/pacman/tests/upgrade090.py
2025-10-02T15:22:31.1248875Z pacman-6.0.2/test/pacman/tests/upgrade100.py
2025-10-02T15:22:31.1249391Z pacman-6.0.2/test/pacman/tests/xfercommand001.py
2025-10-02T15:22:31.1250102Z pacman-6.0.2/test/pacman/util.py
2025-10-02T15:22:31.1250557Z pacman-6.0.2/test/scripts/
2025-10-02T15:22:31.1251031Z pacman-6.0.2/test/scripts/makepkg-template-tests/
2025-10-02T15:22:31.1257170Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/
2025-10-02T15:22:31.1258067Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/PKGBUILD
2025-10-02T15:22:31.1258938Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/
2025-10-02T15:22:31.1260158Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/build/
2025-10-02T15:22:31.1261143Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/build/build-1.template
2025-10-02T15:22:31.1262131Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/package/
2025-10-02T15:22:31.1263123Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/templates/package/package-1.template
2025-10-02T15:22:31.1264098Z pacman-6.0.2/test/scripts/makepkg-template-tests/compose-multiple-template-dirs/testcase-config
2025-10-02T15:22:31.1264854Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-key/
2025-10-02T15:22:31.1265493Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-key/PKGBUILD
2025-10-02T15:22:31.1266194Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-key/testcase-config
2025-10-02T15:22:31.1266970Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-missing-name/
2025-10-02T15:22:31.1267801Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-missing-name/PKGBUILD
2025-10-02T15:22:31.1268697Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-missing-name/testcase-config
2025-10-02T15:22:31.1269803Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-unknown-marker/
2025-10-02T15:22:31.1270841Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-unknown-marker/PKGBUILD
2025-10-02T15:22:31.1271775Z pacman-6.0.2/test/scripts/makepkg-template-tests/invalid-template-line-unknown-marker/testcase-config
2025-10-02T15:22:31.1272573Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/
2025-10-02T15:22:31.1273259Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/PKGBUILD
2025-10-02T15:22:31.1274024Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/templates/
2025-10-02T15:22:31.1274852Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/templates/perl-bla-1.2.template
2025-10-02T15:22:31.1275756Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/templates/perl-module-1.0.template
2025-10-02T15:22:31.1276667Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/templates/perl-module-1.1.template
2025-10-02T15:22:31.1277512Z pacman-6.0.2/test/scripts/makepkg-template-tests/keep-old-version/testcase-config
2025-10-02T15:22:31.1278302Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/
2025-10-02T15:22:31.1279118Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/PKGBUILD
2025-10-02T15:22:31.1280168Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/PKGBUILD.expanded
2025-10-02T15:22:31.1281052Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/
2025-10-02T15:22:31.1282300Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/first/
2025-10-02T15:22:31.1283304Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/first/perl-module-1.0.template
2025-10-02T15:22:31.1284287Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/last/
2025-10-02T15:22:31.1285453Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/templates/last/perl-module-1.0.template
2025-10-02T15:22:31.1286646Z pacman-6.0.2/test/scripts/makepkg-template-tests/last-template-dir-has-precedece/testcase-config
2025-10-02T15:22:31.1287468Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-file/
2025-10-02T15:22:31.1288207Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-file/PKGBUILD
2025-10-02T15:22:31.1289009Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-file/testcase-config
2025-10-02T15:22:31.1289958Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/
2025-10-02T15:22:31.1290738Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/PKGBUILD
2025-10-02T15:22:31.1291547Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/templates/
2025-10-02T15:22:31.1292449Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/templates/perl-module-1.0.template
2025-10-02T15:22:31.1293380Z pacman-6.0.2/test/scripts/makepkg-template-tests/missing-template-symlink/testcase-config
2025-10-02T15:22:31.1294142Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-invalid/
2025-10-02T15:22:31.1294861Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-invalid/PKGBUILD
2025-10-02T15:22:31.1295651Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-invalid/testcase-config
2025-10-02T15:22:31.1296397Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/
2025-10-02T15:22:31.1297096Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/PKGBUILD
2025-10-02T15:22:31.1297841Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/templates/
2025-10-02T15:22:31.1298696Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/templates/foo@-_.+a-1.template
2025-10-02T15:22:31.1299767Z pacman-6.0.2/test/scripts/makepkg-template-tests/name-charset-valid/testcase-config
2025-10-02T15:22:31.1300790Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/
2025-10-02T15:22:31.1301715Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/PKGBUILD
2025-10-02T15:22:31.1302533Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/templates/
2025-10-02T15:22:31.1303466Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/templates/template-without_version.template
2025-10-02T15:22:31.1304422Z pacman-6.0.2/test/scripts/makepkg-template-tests/template-without-version/testcase-config
2025-10-02T15:22:31.1305193Z pacman-6.0.2/test/scripts/makepkg-template-tests/testcase-config-template
2025-10-02T15:22:31.1305963Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/
2025-10-02T15:22:31.1306794Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/PKGBUILD
2025-10-02T15:22:31.1307671Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/templates/
2025-10-02T15:22:31.1308650Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/templates/perl-bla-1.2.template
2025-10-02T15:22:31.1309934Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/templates/perl-module-1.0.template
2025-10-02T15:22:31.1311009Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/templates/perl-module-1.1.template
2025-10-02T15:22:31.1311988Z pacman-6.0.2/test/scripts/makepkg-template-tests/update-version-with-newest-option/testcase-config
2025-10-02T15:22:31.1312722Z pacman-6.0.2/test/scripts/makepkg-template_test.sh
2025-10-02T15:22:31.1313251Z pacman-6.0.2/test/scripts/meson.build
2025-10-02T15:22:31.1313757Z pacman-6.0.2/test/scripts/pacman-db-upgrade-v9.py
2025-10-02T15:22:31.1314297Z pacman-6.0.2/test/scripts/parseopts_test.sh
2025-10-02T15:22:31.1314767Z pacman-6.0.2/test/tap.sh
2025-10-02T15:22:31.1315322Z pacman-6.0.2/test/util/
2025-10-02T15:22:31.1315756Z pacman-6.0.2/test/util/meson.build
2025-10-02T15:22:31.1316217Z pacman-6.0.2/test/util/vercmptest.sh
2025-10-02T15:22:31.1316679Z pacman-6.0.2/valgrind.supp
2025-10-02T15:22:31.1317364Z ~/work/linux510/linux510/pacman/pacman-6.0.2 ~/work/linux510/linux510/pacman ~/work/linux510/linux510
2025-10-02T15:22:33.8483268Z The Meson build system
2025-10-02T15:22:33.8484236Z Version: 1.9.1
2025-10-02T15:22:33.8485279Z Source dir: /home/runner/work/linux510/linux510/pacman/pacman-6.0.2
2025-10-02T15:22:33.8486397Z Build dir: /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build
2025-10-02T15:22:33.8487180Z Build type: native build
2025-10-02T15:22:33.8487701Z Project name: pacman
2025-10-02T15:22:33.8488203Z Project version: 6.0.2
2025-10-02T15:22:33.8488890Z C compiler for the host machine: cc (gcc 13.3.0 "cc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0")
2025-10-02T15:22:33.8490097Z C linker for the host machine: cc ld.bfd 2.42
2025-10-02T15:22:33.8490742Z Host machine cpu family: x86_64
2025-10-02T15:22:33.8491276Z Host machine cpu: x86_64
2025-10-02T15:22:33.8491835Z Program python3 found: YES (/usr/bin/python3)
2025-10-02T15:22:33.8492503Z Program bash found: YES (/usr/bin/bash)
2025-10-02T15:22:33.8493113Z WARNING: You should add the boolean check kwarg to the run_command call.
2025-10-02T15:22:33.8493770Z It currently defaults to false,
2025-10-02T15:22:33.8494299Z but it will default to true in meson 2.0.
2025-10-02T15:22:33.8494919Z See also: https://github.com/mesonbuild/meson/issues/9300
2025-10-02T15:22:33.8495546Z Found pkg-config: YES (/usr/bin/pkg-config) 1.8.1
2025-10-02T15:22:33.8496141Z Run-time dependency bash-completion found: YES 2.11
2025-10-02T15:22:33.8496717Z Checking for function "ngettext" : YES
2025-10-02T15:22:33.8497256Z Run-time dependency libarchive found: YES 3.7.2
2025-10-02T15:22:33.8497823Z Run-time dependency libcurl found: YES 8.5.0
2025-10-02T15:22:33.8498371Z Run-time dependency gpgme found: YES 1.18.0
2025-10-02T15:22:33.8498923Z Run-time dependency libcrypto found: YES 3.0.13
2025-10-02T15:22:33.8499667Z Has header "mntent.h" : YES
2025-10-02T15:22:33.8500515Z Has header "sys/mnttab.h" : NO
2025-10-02T15:22:33.8501008Z Has header "sys/mount.h" : YES
2025-10-02T15:22:33.8501485Z Has header "sys/param.h" : YES
2025-10-02T15:22:33.8501966Z Has header "sys/statvfs.h" : YES
2025-10-02T15:22:33.8502457Z Has header "sys/types.h" : YES
2025-10-02T15:22:33.8502933Z Has header "sys/ucred.h" : NO
2025-10-02T15:22:33.8503411Z Has header "termios.h" : YES
2025-10-02T15:22:33.8503914Z Checking for function "getmntent" : YES
2025-10-02T15:22:33.8504440Z Checking for function "getmntinfo" : NO
2025-10-02T15:22:33.8504967Z Checking for function "strndup" : YES
2025-10-02T15:22:33.8505482Z Checking for function "strnlen" : YES
2025-10-02T15:22:33.8505998Z Checking for function "strsep" : YES
2025-10-02T15:22:33.8506511Z Checking for function "swprintf" : YES
2025-10-02T15:22:33.8507037Z Checking for function "tcflush" : YES
2025-10-02T15:22:33.8507634Z Checking whether type "struct stat" has member "st_blksize" : YES
2025-10-02T15:22:33.8508354Z Checking whether type "struct statvfs" has member "f_flag" : YES
2025-10-02T15:22:33.8509067Z Checking whether type "struct statfs" has member "f_flags" : NO
2025-10-02T15:22:33.8509829Z Checking for type "mode_t" : YES
2025-10-02T15:22:33.8510276Z Checking for type "uid_t" : YES
2025-10-02T15:22:33.8510719Z Checking for type "off_t" : YES
2025-10-02T15:22:33.8511151Z Checking for type "pid_t" : YES
2025-10-02T15:22:33.8511587Z Checking for type "size_t" : YES
2025-10-02T15:22:33.8512037Z Checking for type "ssize_t" : YES
2025-10-02T15:22:33.8512475Z Checking for type "int64_t" : YES
2025-10-02T15:22:33.8512927Z Configuring config.h using configuration
2025-10-02T15:22:33.8513427Z Configuring edit-script.sh using configuration
2025-10-02T15:22:33.8514274Z Program edit-script.sh found: YES (/usr/bin/bash /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/scripts/edit-script.sh)
2025-10-02T15:22:33.8515309Z Configuring libmakepkg.pc using configuration
2025-10-02T15:22:33.8515798Z Program msgfmt found: NO
2025-10-02T15:22:33.8516445Z lib/libalpm/po/meson.build:1: WARNING: Gettext not found, all translation (po) targets will be ignored.
2025-10-02T15:22:33.8517144Z Program asciidoc skipped: feature doc disabled
2025-10-02T15:22:33.8517641Z Program a2x skipped: feature doc disabled
2025-10-02T15:22:33.8518160Z WARNING: extract_all_objects called without setting recursive
2025-10-02T15:22:33.8518718Z keyword argument. Meson currently defaults to
2025-10-02T15:22:33.8519238Z non-recursive to maintain backward compatibility but
2025-10-02T15:22:33.8519885Z the default will be changed in meson 2.0.
2025-10-02T15:22:33.8520161Z
2025-10-02T15:22:33.8520362Z Configuring makepkg using configuration
2025-10-02T15:22:33.8520857Z Configuring pacman-db-upgrade using configuration
2025-10-02T15:22:33.8521384Z Configuring pacman-key using configuration
2025-10-02T15:22:33.8521862Z Configuring repo-add using configuration
2025-10-02T15:22:33.8522345Z Configuring repo-remove using configuration
2025-10-02T15:22:33.8522849Z Configuring repo-elephant using configuration
2025-10-02T15:22:33.8523349Z Configuring makepkg.conf using configuration
2025-10-02T15:22:33.8523844Z Configuring pacman.conf using configuration
2025-10-02T15:22:33.8524312Z Checking for size of "ssize_t" : 8
2025-10-02T15:22:33.8524755Z Message: pacman 6.0.2
2025-10-02T15:22:33.8525158Z Build information:
2025-10-02T15:22:33.8525574Z prefix : /usr
2025-10-02T15:22:33.8526015Z sysconfdir : /etc
2025-10-02T15:22:33.8526468Z conf file : /etc/pacman.conf
2025-10-02T15:22:33.8526948Z localstatedir : /var
2025-10-02T15:22:33.8527398Z database dir : /var/lib/pacman/
2025-10-02T15:22:33.8527894Z cache dir : /var/cache/pacman/pkg/
2025-10-02T15:22:33.8528388Z compiler : gcc 13.3.0
2025-10-02T15:22:33.8528821Z
2025-10-02T15:22:33.8529196Z Architecture : x86_64
2025-10-02T15:22:33.8529858Z Host Type : x86_64-linux-gnu
2025-10-02T15:22:33.8530518Z File inode command : stat -c '%i %n'
2025-10-02T15:22:33.8531022Z File seccomp command : file -S
2025-10-02T15:22:33.8531471Z libalpm version : 13.0.2
2025-10-02T15:22:33.8531915Z pacman version : 6.0.2
2025-10-02T15:22:33.8532337Z
2025-10-02T15:22:33.8532716Z Directory and file information:
2025-10-02T15:22:33.8533169Z root working directory : /
2025-10-02T15:22:33.8533621Z package extension : .pkg.tar.gz
2025-10-02T15:22:33.8534089Z source pkg extension : .src.tar.gz
2025-10-02T15:22:33.8534556Z build script name : PKGBUILD
2025-10-02T15:22:33.8535055Z template directory : /usr/share/makepkg-template
2025-10-02T15:22:33.8535550Z
2025-10-02T15:22:33.8535931Z Compilation options:
2025-10-02T15:22:33.8536351Z i18n support : true
2025-10-02T15:22:33.8536794Z Build docs : false
2025-10-02T15:22:33.8537238Z debug build : false
2025-10-02T15:22:33.8537674Z Use libcurl : true
2025-10-02T15:22:33.8538100Z Use GPGME : true
2025-10-02T15:22:33.8538527Z Use OpenSSL : true
2025-10-02T15:22:33.8538954Z Use nettle : false
2025-10-02T15:22:33.8539368Z
2025-10-02T15:22:33.8540021Z Build targets in project: 104
2025-10-02T15:22:33.8540481Z NOTICE: Future-deprecated features used:
2025-10-02T15:22:33.8540957Z * 0.55.0: {'ExternalProgram.path'}
2025-10-02T15:22:33.8541548Z * 0.56.0: {'dependency.get_pkgconfig_variable', 'meson.build_root', 'meson.source_root'}
2025-10-02T15:22:33.8541972Z
2025-10-02T15:22:33.8542148Z pacman 6.0.2
2025-10-02T15:22:33.8542355Z
2025-10-02T15:22:33.8542535Z User defined options
2025-10-02T15:22:33.8543091Z buildtype : plain
2025-10-02T15:22:33.8543512Z doc : disabled
2025-10-02T15:22:33.8543925Z doxygen : enabled
2025-10-02T15:22:33.8544352Z ldconfig : /usr/bin/ldconfig
2025-10-02T15:22:33.8544794Z prefix : /usr
2025-10-02T15:22:33.8545215Z scriptlet-shell: /usr/bin/bash
2025-10-02T15:22:33.8545477Z
2025-10-02T15:22:33.8545762Z Found ninja-1.13.0.git.kitware.jobserver-pipe-1 at /usr/local/bin/ninja
2025-10-02T15:22:33.8546596Z WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.
2025-10-02T15:22:34.1415338Z ninja: Entering directory `/home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build'
2025-10-02T15:22:34.2351159Z [1/156] Compiling C object libcommon.a.p/src_common_ini.c.o
2025-10-02T15:22:34.2518791Z [2/156] Compiling C object libcommon.a.p/src_common_util-common.c.o
2025-10-02T15:22:34.2614775Z [3/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_alpm_list.c.o
2025-10-02T15:22:34.2767631Z [4/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_base64.c.o
2025-10-02T15:22:34.3291740Z [5/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_backup.c.o
2025-10-02T15:22:34.3331932Z [6/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_alpm.c.o
2025-10-02T15:22:34.4224829Z [7/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_add.c.o
2025-10-02T15:22:34.4511232Z [8/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_be_package.c.o
2025-10-02T15:22:34.4771416Z [9/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_be_sync.c.o
2025-10-02T15:22:34.5136084Z [10/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_db.c.o
2025-10-02T15:22:34.5377893Z [11/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_be_local.c.o
2025-10-02T15:22:34.5409761Z [12/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_conflict.c.o
2025-10-02T15:22:34.6232461Z [13/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_diskspace.c.o
2025-10-02T15:22:34.6478868Z [14/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_deps.c.o
2025-10-02T15:22:34.6711176Z [15/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_error.c.o
2025-10-02T15:22:34.6824437Z [16/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_graph.c.o
2025-10-02T15:22:34.7356110Z [17/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_filelist.c.o
2025-10-02T15:22:34.7581239Z [18/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_group.c.o
2025-10-02T15:22:34.8235570Z [19/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_hook.c.o
2025-10-02T15:22:34.8388055Z [20/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_log.c.o
2025-10-02T15:22:34.9256449Z [21/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_dload.c.o
2025-10-02T15:22:34.9284794Z [22/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_pkghash.c.o
2025-10-02T15:22:34.9608926Z [23/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_rawstr.c.o
2025-10-02T15:22:34.9638405Z [24/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_handle.c.o
2025-10-02T15:22:34.9669301Z [25/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_package.c.o
2025-10-02T15:22:35.0084852Z [26/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_remove.c.o
2025-10-02T15:22:35.0168496Z [27/156] Generating scripts/repo-add.sh.in with a custom command
2025-10-02T15:22:35.0222512Z [28/156] Linking static target libcommon.a
2025-10-02T15:22:35.1060091Z [29/156] Compiling C object pacman.p/src_pacman_check.c.o
2025-10-02T15:22:35.1638628Z [30/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_signing.c.o
2025-10-02T15:22:35.1703117Z [31/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_sync.c.o
2025-10-02T15:22:35.1811599Z [32/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_version.c.o
2025-10-02T15:22:35.2027054Z [33/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_trans.c.o
2025-10-02T15:22:35.2310893Z [34/156] Compiling C object libalpm_objlib.a.p/lib_libalpm_util.c.o
2025-10-02T15:22:35.2323165Z ../lib/libalpm/util.c: In function ‘md5_file’:
2025-10-02T15:22:35.2329282Z ../lib/libalpm/util.c:936:9: warning: ‘MD5_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-02T15:22:35.2331190Z 936 | MD5_Init(&ctx);
2025-10-02T15:22:35.2351946Z | ^~~~~~~~
2025-10-02T15:22:35.2352939Z In file included from ../lib/libalpm/util.c:43:
2025-10-02T15:22:35.2354130Z /usr/include/openssl/md5.h:49:27: note: declared here
2025-10-02T15:22:35.2355278Z 49 | OSSL_DEPRECATEDIN_3_0 int MD5_Init(MD5_CTX *c);
2025-10-02T15:22:35.2356269Z | ^~~~~~~~
2025-10-02T15:22:35.2357916Z ../lib/libalpm/util.c:946:17: warning: ‘MD5_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-02T15:22:35.2359325Z 946 | MD5_Update(&ctx, buf, n);
2025-10-02T15:22:35.2360523Z | ^~~~~~~~~~
2025-10-02T15:22:35.2361585Z /usr/include/openssl/md5.h:50:27: note: declared here
2025-10-02T15:22:35.2362815Z 50 | OSSL_DEPRECATEDIN_3_0 int MD5_Update(MD5_CTX *c, const void *data, size_t len);
2025-10-02T15:22:35.2364064Z | ^~~~~~~~~~
2025-10-02T15:22:35.2365695Z ../lib/libalpm/util.c:960:9: warning: ‘MD5_Final’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-02T15:22:35.2390678Z 960 | MD5_Final(output, &ctx);
2025-10-02T15:22:35.2391754Z | ^~~~~~~~~
2025-10-02T15:22:35.2400424Z /usr/include/openssl/md5.h:51:27: note: declared here
2025-10-02T15:22:35.2402043Z 51 | OSSL_DEPRECATEDIN_3_0 int MD5_Final(unsigned char *md, MD5_CTX *c);
2025-10-02T15:22:35.2403332Z | ^~~~~~~~~
2025-10-02T15:22:35.2404549Z ../lib/libalpm/util.c: In function ‘sha256_file’:
2025-10-02T15:22:35.2406070Z ../lib/libalpm/util.c:992:9: warning: ‘SHA256_Init’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-02T15:22:35.2407344Z 992 | SHA256_Init(&ctx);
2025-10-02T15:22:35.2408102Z | ^~~~~~~~~~~
2025-10-02T15:22:35.2408909Z In file included from ../lib/libalpm/util.c:44:
2025-10-02T15:22:35.2410045Z /usr/include/openssl/sha.h:73:27: note: declared here
2025-10-02T15:22:35.2411294Z 73 | OSSL_DEPRECATEDIN_3_0 int SHA256_Init(SHA256_CTX *c);
2025-10-02T15:22:35.2412188Z | ^~~~~~~~~~~
2025-10-02T15:22:35.2413658Z ../lib/libalpm/util.c:1002:17: warning: ‘SHA256_Update’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-02T15:22:35.2414961Z 1002 | SHA256_Update(&ctx, buf, n);
2025-10-02T15:22:35.2415796Z | ^~~~~~~~~~~~~
2025-10-02T15:22:35.2416640Z /usr/include/openssl/sha.h:74:27: note: declared here
2025-10-02T15:22:35.2417614Z 74 | OSSL_DEPRECATEDIN_3_0 int SHA256_Update(SHA256_CTX *c,
2025-10-02T15:22:35.2418491Z | ^~~~~~~~~~~~~
2025-10-02T15:22:35.2420290Z ../lib/libalpm/util.c:1016:9: warning: ‘SHA256_Final’ is deprecated: Since OpenSSL 3.0 [-Wdeprecated-declarations]
2025-10-02T15:22:35.2421599Z 1016 | SHA256_Final(output, &ctx);
2025-10-02T15:22:35.2422396Z | ^~~~~~~~~~~~
2025-10-02T15:22:35.2423207Z /usr/include/openssl/sha.h:76:27: note: declared here
2025-10-02T15:22:35.2424320Z 76 | OSSL_DEPRECATEDIN_3_0 int SHA256_Final(unsigned char *md, SHA256_CTX *c);
2025-10-02T15:22:35.2425352Z | ^~~~~~~~~~~~
2025-10-02T15:22:35.2528551Z [35/156] Compiling C object pacman.p/src_pacman_deptest.c.o
2025-10-02T15:22:35.2642917Z [36/156] Linking static target libalpm_objlib.a
2025-10-02T15:22:35.2788228Z [37/156] Compiling C object pacman.p/src_pacman_database.c.o
2025-10-02T15:22:35.2863245Z [38/156] Compiling C object pacman.p/src_pacman_files.c.o
2025-10-02T15:22:35.2922894Z [39/156] Compiling C object pacman.p/src_pacman_conf.c.o
2025-10-02T15:22:35.3606054Z [40/156] Compiling C object pacman.p/src_pacman_remove.c.o
2025-10-02T15:22:35.3738677Z [41/156] Linking target libalpm.so.13.0.2
2025-10-02T15:22:35.3804542Z [42/156] Compiling C object pacman.p/src_pacman_package.c.o
2025-10-02T15:22:35.3837073Z [43/156] Compiling C object pacman.p/src_pacman_sighandler.c.o
2025-10-02T15:22:35.3912374Z [44/156] Compiling C object pacman.p/src_pacman_query.c.o
2025-10-02T15:22:35.4013933Z [45/156] Compiling C object pacman.p/src_pacman_pacman.c.o
2025-10-02T15:22:35.4583526Z [46/156] Compiling C object pacman.p/src_pacman_upgrade.c.o
2025-10-02T15:22:35.4945922Z [47/156] Compiling C object pacman.p/src_pacman_sync.c.o
2025-10-02T15:22:35.5110391Z [48/156] Compiling C object pacman-conf.p/src_pacman_pacman-conf.c.o
2025-10-02T15:22:35.5710286Z [49/156] Compiling C object pacman.p/src_pacman_callback.c.o
2025-10-02T15:22:35.6404677Z [50/156] Compiling C object pacman-conf.p/src_pacman_callback.c.o
2025-10-02T15:22:35.6486692Z [51/156] Compiling C object pacman-conf.p/src_pacman_conf.c.o
2025-10-02T15:22:35.6565177Z [52/156] Generating scripts/makepkg-template.pl.in with a custom command
2025-10-02T15:22:35.6598071Z [53/156] Compiling C object pacman.p/src_pacman_util.c.o
2025-10-02T15:22:35.6680518Z [54/156] Compiling C object pacman-conf.p/src_pacman_util.c.o
2025-10-02T15:22:35.6704886Z [55/156] Generating scripts/makepkg.sh.in with a custom command
2025-10-02T15:22:35.6722958Z [56/156] Generating scripts/pacman-db-upgrade.sh.in with a custom command
2025-10-02T15:22:35.6757084Z [57/156] Generating scripts/repo-elephant with a custom command
2025-10-02T15:22:35.6771973Z [58/156] Generating scripts/repo-remove with a custom command
2025-10-02T15:22:35.6782352Z [59/156] Generating scripts/pacman-key.sh.in with a custom command
2025-10-02T15:22:35.6804656Z [60/156] Compiling C object vercmp.p/src_util_vercmp.c.o
2025-10-02T15:22:35.6806510Z [61/156] Generating scripts/libmakepkg/libmakepkg_buildenv with a custom command
2025-10-02T15:22:35.6844544Z [62/156] Generating scripts/libmakepkg/buildenv/buildenv_compiler_sh_in with a custom command
2025-10-02T15:22:35.6859100Z [63/156] Generating scripts/libmakepkg/buildenv/buildenv_buildflags_sh_in with a custom command
2025-10-02T15:22:35.6877201Z [64/156] Generating scripts/libmakepkg/buildenv/buildenv_debugflags_sh_in with a custom command
2025-10-02T15:22:35.6878957Z [65/156] Generating scripts/libmakepkg/buildenv/buildenv_lto_sh_in with a custom command
2025-10-02T15:22:35.6921266Z [66/156] Generating scripts/libmakepkg/buildenv/buildenv_makeflags_sh_in with a custom command
2025-10-02T15:22:35.6928993Z [67/156] Generating scripts/libmakepkg/libmakepkg_executable with a custom command
2025-10-02T15:22:35.6945405Z [68/156] Generating scripts/libmakepkg/executable/executable_ccache_sh_in with a custom command
2025-10-02T15:22:35.6971154Z [69/156] Generating scripts/libmakepkg/executable/executable_checksum_sh_in with a custom command
2025-10-02T15:22:35.6983536Z [70/156] Generating scripts/libmakepkg/executable/executable_fakeroot_sh_in with a custom command
2025-10-02T15:22:35.6997465Z [71/156] Generating scripts/libmakepkg/executable/executable_distcc_sh_in with a custom command
2025-10-02T15:22:35.7023252Z [72/156] Generating scripts/libmakepkg/executable/executable_gpg_sh_in with a custom command
2025-10-02T15:22:35.7033057Z [73/156] Generating scripts/libmakepkg/executable/executable_gzip_sh_in with a custom command
2025-10-02T15:22:35.7044600Z [74/156] Generating scripts/libmakepkg/executable/executable_pacman_sh_in with a custom command
2025-10-02T15:22:35.7071397Z [75/156] Generating scripts/libmakepkg/executable/executable_strip_sh_in with a custom command
2025-10-02T15:22:35.7106733Z [76/156] Compiling C object testpkg.p/src_util_testpkg.c.o
2025-10-02T15:22:35.7113233Z [77/156] Generating scripts/libmakepkg/executable/executable_sudo_sh_in with a custom command
2025-10-02T15:22:35.7122497Z [78/156] Generating scripts/libmakepkg/executable/executable_vcs_sh_in with a custom command
2025-10-02T15:22:35.7130480Z [79/156] Generating scripts/libmakepkg/libmakepkg_integrity with a custom command
2025-10-02T15:22:35.7134688Z [80/156] Generating scripts/libmakepkg/integrity/integrity_generate_checksum_sh_in with a custom command
2025-10-02T15:22:35.7158531Z [81/156] Generating scripts/libmakepkg/integrity/integrity_generate_signature_sh_in with a custom command
2025-10-02T15:22:35.7187784Z [82/156] Generating scripts/libmakepkg/integrity/integrity_verify_checksum_sh_in with a custom command
2025-10-02T15:22:35.7191410Z [83/156] Generating scripts/libmakepkg/libmakepkg_lint_config with a custom command
2025-10-02T15:22:35.7192931Z [84/156] Generating scripts/libmakepkg/integrity/integrity_verify_signature_sh_in with a custom command
2025-10-02T15:22:35.7216145Z [85/156] Generating scripts/libmakepkg/lint_config/lint_config_ext_sh_in with a custom command
2025-10-02T15:22:35.7217679Z [86/156] Generating scripts/libmakepkg/lint_config/lint_config_paths_sh_in with a custom command
2025-10-02T15:22:35.7238172Z [87/156] Generating scripts/libmakepkg/lint_config/lint_config_source_date_epoch_sh_in with a custom command
2025-10-02T15:22:35.7252734Z [88/156] Generating scripts/libmakepkg/lint_config/lint_config_variable_sh_in with a custom command
2025-10-02T15:22:35.7256301Z [89/156] Generating scripts/libmakepkg/libmakepkg_lint_package with a custom command
2025-10-02T15:22:35.7270588Z [90/156] Generating scripts/libmakepkg/lint_package/lint_package_build_references_sh_in with a custom command
2025-10-02T15:22:35.7303973Z [91/156] Generating scripts/libmakepkg/lint_package/lint_package_file_names_sh_in with a custom command
2025-10-02T15:22:35.7309208Z [92/156] Generating scripts/libmakepkg/lint_package/lint_package_dotfiles_sh_in with a custom command
2025-10-02T15:22:35.7313419Z [93/156] Generating scripts/libmakepkg/lint_package/lint_package_missing_backup_sh_in with a custom command
2025-10-02T15:22:35.7330996Z [94/156] Generating scripts/libmakepkg/libmakepkg_lint_pkgbuild with a custom command
2025-10-02T15:22:35.7336192Z [95/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_arch_sh_in with a custom command
2025-10-02T15:22:35.7369210Z [96/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_arch_specific_sh_in with a custom command
2025-10-02T15:22:35.7381956Z [97/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_backup_sh_in with a custom command
2025-10-02T15:22:35.7392844Z [98/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_changelog_sh_in with a custom command
2025-10-02T15:22:35.7398707Z [99/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_checkdepends_sh_in with a custom command
2025-10-02T15:22:35.7411454Z [100/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_conflicts_sh_in with a custom command
2025-10-02T15:22:35.7436444Z [101/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_depends_sh_in with a custom command
2025-10-02T15:22:35.7447867Z [102/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_epoch_sh_in with a custom command
2025-10-02T15:22:35.7454163Z [103/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_fullpkgver_sh_in with a custom command
2025-10-02T15:22:35.7476032Z [104/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_install_sh_in with a custom command
2025-10-02T15:22:35.7489410Z [105/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_makedepends_sh_in with a custom command
2025-10-02T15:22:35.7502380Z [106/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_options_sh_in with a custom command
2025-10-02T15:22:35.7508426Z [107/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_optdepends_sh_in with a custom command
2025-10-02T15:22:35.7523906Z [108/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_package_function_sh_in with a custom command
2025-10-02T15:22:35.7535095Z [109/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_package_function_variable_sh_in with a custom command
2025-10-02T15:22:35.7557176Z [110/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkgbase_sh_in with a custom command
2025-10-02T15:22:35.7567213Z [111/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkglist_sh_in with a custom command
2025-10-02T15:22:35.7577459Z [112/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkgname_sh_in with a custom command
2025-10-02T15:22:35.7596667Z [113/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkgrel_sh_in with a custom command
2025-10-02T15:22:35.7612688Z [114/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_pkgver_sh_in with a custom command
2025-10-02T15:22:35.7625102Z [115/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_provides_sh_in with a custom command
2025-10-02T15:22:35.7633083Z [116/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_source_sh_in with a custom command
2025-10-02T15:22:35.7643052Z [117/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_util_sh_in with a custom command
2025-10-02T15:22:35.7663115Z [118/156] Generating scripts/libmakepkg/lint_pkgbuild/lint_pkgbuild_variable_sh_in with a custom command
2025-10-02T15:22:35.7676019Z [119/156] Generating scripts/libmakepkg/reproducible/reproducible_python_sh_in with a custom command
2025-10-02T15:22:35.7695647Z [120/156] Generating scripts/libmakepkg/libmakepkg_reproducible with a custom command
2025-10-02T15:22:35.7698510Z [121/156] Generating scripts/libmakepkg/libmakepkg_source with a custom command
2025-10-02T15:22:35.7711149Z [122/156] Generating scripts/libmakepkg/source/source_bzr_sh_in with a custom command
2025-10-02T15:22:35.7721396Z [123/156] Generating scripts/libmakepkg/source/source_file_sh_in with a custom command
2025-10-02T15:22:35.7748194Z [124/156] Generating scripts/libmakepkg/source/source_fossil_sh_in with a custom command
2025-10-02T15:22:35.7766456Z [125/156] Generating scripts/libmakepkg/source/source_git_sh_in with a custom command
2025-10-02T15:22:35.7771180Z [126/156] Generating scripts/libmakepkg/source/source_hg_sh_in with a custom command
2025-10-02T15:22:35.7775011Z [127/156] Generating scripts/libmakepkg/source/source_local_sh_in with a custom command
2025-10-02T15:22:35.7803441Z [128/156] Generating scripts/libmakepkg/source/source_svn_sh_in with a custom command
2025-10-02T15:22:35.7808462Z [129/156] Generating scripts/libmakepkg/libmakepkg_srcinfo with a custom command
2025-10-02T15:22:35.7822961Z [130/156] Generating scripts/libmakepkg/tidy/tidy_docs_sh_in with a custom command
2025-10-02T15:22:35.7829261Z [131/156] Generating scripts/libmakepkg/libmakepkg_tidy with a custom command
2025-10-02T15:22:35.7860230Z [132/156] Generating scripts/libmakepkg/tidy/tidy_emptydirs_sh_in with a custom command
2025-10-02T15:22:35.7864161Z [133/156] Generating scripts/libmakepkg/tidy/tidy_libtool_sh_in with a custom command
2025-10-02T15:22:35.7878138Z [134/156] Generating scripts/libmakepkg/tidy/tidy_purge_sh_in with a custom command
2025-10-02T15:22:35.7887792Z [135/156] Generating scripts/libmakepkg/tidy/tidy_staticlibs_sh_in with a custom command
2025-10-02T15:22:35.7912116Z [136/156] Generating scripts/libmakepkg/tidy/tidy_zipman_sh_in with a custom command
2025-10-02T15:22:35.7926919Z [137/156] Generating scripts/libmakepkg/libmakepkg_util with a custom command
2025-10-02T15:22:35.7937023Z [138/156] Generating scripts/libmakepkg/tidy/tidy_strip_sh_in with a custom command
2025-10-02T15:22:35.7943623Z [139/156] Generating scripts/libmakepkg/util/util_compress_sh_in with a custom command
2025-10-02T15:22:35.7953087Z [140/156] Generating scripts/libmakepkg/util/util_config_sh_in with a custom command
2025-10-02T15:22:35.7964060Z [141/156] Generating scripts/libmakepkg/util/util_dirsize_sh_in with a custom command
2025-10-02T15:22:35.7990130Z [142/156] Generating scripts/libmakepkg/util/util_message_sh_in with a custom command
2025-10-02T15:22:35.8003579Z [143/156] Generating scripts/libmakepkg/util/util_error_sh_in with a custom command
2025-10-02T15:22:35.8021483Z [144/156] Generating scripts/libmakepkg/util/util_option_sh_in with a custom command
2025-10-02T15:22:35.8027179Z [145/156] Generating scripts/libmakepkg/util/util_parseopts_sh_in with a custom command
2025-10-02T15:22:35.8039083Z [146/156] Generating scripts/libmakepkg/util/util_pkgbuild_sh_in with a custom command
2025-10-02T15:22:35.8057418Z [147/156] Generating scripts/libmakepkg/util/util_source_sh_in with a custom command
2025-10-02T15:22:35.8070314Z [148/156] Generating scripts/libmakepkg/util/util_schema_sh_in with a custom command
2025-10-02T15:22:35.8073195Z [149/156] Generating scripts/libmakepkg/util/util_util_sh_in with a custom command
2025-10-02T15:22:35.8087878Z [150/156] Generating scripts/bash_completion with a custom command
2025-10-02T15:22:35.8102066Z [151/156] Generating scripts/zsh_completion with a custom command
2025-10-02T15:22:35.8355793Z [152/156] Linking target vercmp
2025-10-02T15:22:42.7793359Z [153/156] Generating symbol file libalpm.so.13.0.2.p/libalpm.so.13.0.2.symbols
2025-10-02T15:22:42.8868360Z [154/156] Linking target pacman
2025-10-02T15:22:42.9316870Z [155/156] Linking target pacman-conf
2025-10-02T15:22:42.9317464Z [156/156] Linking target testpkg
2025-10-02T15:22:42.9327468Z INFO: autodetecting backend as ninja
2025-10-02T15:22:42.9328558Z INFO: calculating backend command to run: /usr/local/bin/ninja -C /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build
2025-10-02T15:22:43.2140310Z ninja: Entering directory `/home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build'
2025-10-02T15:22:43.2167396Z ninja: no work to do.
2025-10-02T15:22:43.2380574Z Installing scripts/makepkg-template to /usr/bin
2025-10-02T15:22:43.2381597Z Installing scripts/makepkg to /usr/bin
2025-10-02T15:22:43.2382511Z Installing scripts/pacman-db-upgrade to /usr/bin
2025-10-02T15:22:43.2383474Z Installing scripts/pacman-key to /usr/bin
2025-10-02T15:22:43.2384350Z Installing scripts/repo-add to /usr/bin
2025-10-02T15:22:43.2385298Z Installing scripts/libmakepkg/buildenv.sh to /usr/share/makepkg
2025-10-02T15:22:43.2386317Z Installing scripts/libmakepkg/buildenv/buildflags.sh to /usr/share/makepkg/buildenv
2025-10-02T15:22:43.2387293Z Installing scripts/libmakepkg/buildenv/compiler.sh to /usr/share/makepkg/buildenv
2025-10-02T15:22:43.2388262Z Installing scripts/libmakepkg/buildenv/debugflags.sh to /usr/share/makepkg/buildenv
2025-10-02T15:22:43.2389225Z Installing scripts/libmakepkg/buildenv/lto.sh to /usr/share/makepkg/buildenv
2025-10-02T15:22:43.2390568Z Installing scripts/libmakepkg/buildenv/makeflags.sh to /usr/share/makepkg/buildenv
2025-10-02T15:22:43.2391393Z Installing scripts/libmakepkg/executable.sh to /usr/share/makepkg
2025-10-02T15:22:43.2392202Z Installing scripts/libmakepkg/executable/ccache.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2393116Z Installing scripts/libmakepkg/executable/checksum.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2394025Z Installing scripts/libmakepkg/executable/distcc.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2394933Z Installing scripts/libmakepkg/executable/fakeroot.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2395829Z Installing scripts/libmakepkg/executable/gpg.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2396713Z Installing scripts/libmakepkg/executable/gzip.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2397620Z Installing scripts/libmakepkg/executable/pacman.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2398541Z Installing scripts/libmakepkg/executable/strip.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2399438Z Installing scripts/libmakepkg/executable/sudo.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2400541Z Installing scripts/libmakepkg/executable/vcs.sh to /usr/share/makepkg/executable
2025-10-02T15:22:43.2401257Z Installing scripts/libmakepkg/integrity.sh to /usr/share/makepkg
2025-10-02T15:22:43.2402000Z Installing scripts/libmakepkg/integrity/generate_checksum.sh to /usr/share/makepkg/integrity
2025-10-02T15:22:43.2402870Z Installing scripts/libmakepkg/integrity/generate_signature.sh to /usr/share/makepkg/integrity
2025-10-02T15:22:43.2403720Z Installing scripts/libmakepkg/integrity/verify_checksum.sh to /usr/share/makepkg/integrity
2025-10-02T15:22:43.2404543Z Installing scripts/libmakepkg/integrity/verify_signature.sh to /usr/share/makepkg/integrity
2025-10-02T15:22:43.2405468Z Installing scripts/libmakepkg/lint_config.sh to /usr/share/makepkg
2025-10-02T15:22:43.2406192Z Installing scripts/libmakepkg/lint_config/ext.sh to /usr/share/makepkg/lint_config
2025-10-02T15:22:43.2406970Z Installing scripts/libmakepkg/lint_config/paths.sh to /usr/share/makepkg/lint_config
2025-10-02T15:22:43.2407791Z Installing scripts/libmakepkg/lint_config/source_date_epoch.sh to /usr/share/makepkg/lint_config
2025-10-02T15:22:43.2408625Z Installing scripts/libmakepkg/lint_config/variable.sh to /usr/share/makepkg/lint_config
2025-10-02T15:22:43.2409349Z Installing scripts/libmakepkg/lint_package.sh to /usr/share/makepkg
2025-10-02T15:22:43.2410383Z Installing scripts/libmakepkg/lint_package/build_references.sh to /usr/share/makepkg/lint_package
2025-10-02T15:22:43.2411228Z Installing scripts/libmakepkg/lint_package/dotfiles.sh to /usr/share/makepkg/lint_package
2025-10-02T15:22:43.2412036Z Installing scripts/libmakepkg/lint_package/file_names.sh to /usr/share/makepkg/lint_package
2025-10-02T15:22:43.2412874Z Installing scripts/libmakepkg/lint_package/missing_backup.sh to /usr/share/makepkg/lint_package
2025-10-02T15:22:43.2413645Z Installing scripts/libmakepkg/lint_pkgbuild.sh to /usr/share/makepkg
2025-10-02T15:22:43.2414377Z Installing scripts/libmakepkg/lint_pkgbuild/arch.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2415203Z Installing scripts/libmakepkg/lint_pkgbuild/arch_specific.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2416044Z Installing scripts/libmakepkg/lint_pkgbuild/backup.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2416860Z Installing scripts/libmakepkg/lint_pkgbuild/changelog.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2417702Z Installing scripts/libmakepkg/lint_pkgbuild/checkdepends.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2418543Z Installing scripts/libmakepkg/lint_pkgbuild/conflicts.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2419370Z Installing scripts/libmakepkg/lint_pkgbuild/depends.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2420299Z Installing scripts/libmakepkg/lint_pkgbuild/epoch.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2421258Z Installing scripts/libmakepkg/lint_pkgbuild/fullpkgver.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2422095Z Installing scripts/libmakepkg/lint_pkgbuild/install.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2422918Z Installing scripts/libmakepkg/lint_pkgbuild/makedepends.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2423758Z Installing scripts/libmakepkg/lint_pkgbuild/optdepends.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2424587Z Installing scripts/libmakepkg/lint_pkgbuild/options.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2425430Z Installing scripts/libmakepkg/lint_pkgbuild/package_function.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2426359Z Installing scripts/libmakepkg/lint_pkgbuild/package_function_variable.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2427247Z Installing scripts/libmakepkg/lint_pkgbuild/pkgbase.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2428068Z Installing scripts/libmakepkg/lint_pkgbuild/pkglist.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2428873Z Installing scripts/libmakepkg/lint_pkgbuild/pkgname.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2429893Z Installing scripts/libmakepkg/lint_pkgbuild/pkgrel.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2430724Z Installing scripts/libmakepkg/lint_pkgbuild/pkgver.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2431541Z Installing scripts/libmakepkg/lint_pkgbuild/provides.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2432358Z Installing scripts/libmakepkg/lint_pkgbuild/source.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2433152Z Installing scripts/libmakepkg/lint_pkgbuild/util.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2434121Z Installing scripts/libmakepkg/lint_pkgbuild/variable.sh to /usr/share/makepkg/lint_pkgbuild
2025-10-02T15:22:43.2434854Z Installing scripts/libmakepkg/reproducible.sh to /usr/share/makepkg
2025-10-02T15:22:43.2435597Z Installing scripts/libmakepkg/reproducible/python.sh to /usr/share/makepkg/reproducible
2025-10-02T15:22:43.2436310Z Installing scripts/libmakepkg/source.sh to /usr/share/makepkg
2025-10-02T15:22:43.2436956Z Installing scripts/libmakepkg/source/bzr.sh to /usr/share/makepkg/source
2025-10-02T15:22:43.2437649Z Installing scripts/libmakepkg/source/file.sh to /usr/share/makepkg/source
2025-10-02T15:22:43.2438352Z Installing scripts/libmakepkg/source/fossil.sh to /usr/share/makepkg/source
2025-10-02T15:22:43.2439047Z Installing scripts/libmakepkg/source/git.sh to /usr/share/makepkg/source
2025-10-02T15:22:43.2439995Z Installing scripts/libmakepkg/source/hg.sh to /usr/share/makepkg/source
2025-10-02T15:22:43.2440691Z Installing scripts/libmakepkg/source/local.sh to /usr/share/makepkg/source
2025-10-02T15:22:43.2441398Z Installing scripts/libmakepkg/source/svn.sh to /usr/share/makepkg/source
2025-10-02T15:22:43.2442210Z Installing scripts/libmakepkg/srcinfo.sh to /usr/share/makepkg
2025-10-02T15:22:43.2443258Z Installing scripts/libmakepkg/tidy.sh to /usr/share/makepkg
2025-10-02T15:22:43.2444346Z Installing scripts/libmakepkg/tidy/docs.sh to /usr/share/makepkg/tidy
2025-10-02T15:22:43.2445506Z Installing scripts/libmakepkg/tidy/emptydirs.sh to /usr/share/makepkg/tidy
2025-10-02T15:22:43.2446211Z Installing scripts/libmakepkg/tidy/libtool.sh to /usr/share/makepkg/tidy
2025-10-02T15:22:43.2446889Z Installing scripts/libmakepkg/tidy/purge.sh to /usr/share/makepkg/tidy
2025-10-02T15:22:43.2447579Z Installing scripts/libmakepkg/tidy/staticlibs.sh to /usr/share/makepkg/tidy
2025-10-02T15:22:43.2448263Z Installing scripts/libmakepkg/tidy/strip.sh to /usr/share/makepkg/tidy
2025-10-02T15:22:43.2448933Z Installing scripts/libmakepkg/tidy/zipman.sh to /usr/share/makepkg/tidy
2025-10-02T15:22:43.2449789Z Installing scripts/libmakepkg/util.sh to /usr/share/makepkg
2025-10-02T15:22:43.2450517Z Installing scripts/libmakepkg/util/compress.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2451928Z Installing scripts/libmakepkg/util/config.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2452994Z Installing scripts/libmakepkg/util/dirsize.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2453945Z Installing scripts/libmakepkg/util/error.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2454928Z Installing scripts/libmakepkg/util/message.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2456023Z Installing scripts/libmakepkg/util/option.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2457249Z Installing scripts/libmakepkg/util/parseopts.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2458544Z Installing scripts/libmakepkg/util/pkgbuild.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2459675Z Installing scripts/libmakepkg/util/schema.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2460388Z Installing scripts/libmakepkg/util/source.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2461067Z Installing scripts/libmakepkg/util/util.sh to /usr/share/makepkg/util
2025-10-02T15:22:43.2461743Z Installing scripts/pacman to /usr/share/bash-completion/completions
2025-10-02T15:22:43.2462373Z Installing scripts/_pacman to /usr/share/zsh/site-functions
2025-10-02T15:22:43.2470014Z Installing libalpm.so.13.0.2 to /usr/lib/x86_64-linux-gnu
2025-10-02T15:22:43.2470596Z Installing pacman to /usr/bin
2025-10-02T15:22:43.2471062Z Installing pacman-conf to /usr/bin
2025-10-02T15:22:43.2471533Z Installing testpkg to /usr/bin
2025-10-02T15:22:43.2471982Z Installing vercmp to /usr/bin
2025-10-02T15:22:43.2472677Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/lib/libalpm/alpm.h to /usr/include
2025-10-02T15:22:43.2473663Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/lib/libalpm/alpm_list.h to /usr/include
2025-10-02T15:22:43.2474685Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/scripts/libmakepkg.pc to /usr/share/pkgconfig
2025-10-02T15:22:43.2476101Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/meson-private/libalpm.pc to /usr/lib/x86_64-linux-gnu/pkgconfig
2025-10-02T15:22:43.2477089Z '/usr/bin/repo-remove' -> 'repo-add'
2025-10-02T15:22:43.2497156Z '/usr/bin/repo-elephant' -> 'repo-add'
2025-10-02T15:22:43.2543546Z '/usr/share/bash-completion/completions/pacman-key' -> 'pacman'
2025-10-02T15:22:43.2588213Z '/usr/share/bash-completion/completions/makepkg' -> 'pacman'
2025-10-02T15:22:43.2668645Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/makepkg.conf to /etc
2025-10-02T15:22:43.2670342Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build/pacman.conf to /etc
2025-10-02T15:22:43.2671944Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/proto/PKGBUILD-split.proto to /usr/share/pacman
2025-10-02T15:22:43.2673627Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/proto/PKGBUILD-vcs.proto to /usr/share/pacman
2025-10-02T15:22:43.2675240Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/proto/PKGBUILD.proto to /usr/share/pacman
2025-10-02T15:22:43.2676789Z Installing /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/proto/proto.install to /usr/share/pacman
2025-10-02T15:22:43.2678252Z Installing symlink pointing to libalpm.so.13.0.2 to /usr/lib/x86_64-linux-gnu/libalpm.so.13
2025-10-02T15:22:43.2679720Z Installing symlink pointing to libalpm.so.13 to /usr/lib/x86_64-linux-gnu/libalpm.so
2025-10-02T15:22:43.2681404Z Running custom install script '/bin/sh /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build-aux/meson-make-symlink.sh repo-add /usr/bin/repo-remove'
2025-10-02T15:22:43.2683520Z Running custom install script '/bin/sh /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build-aux/meson-make-symlink.sh repo-add /usr/bin/repo-elephant'
2025-10-02T15:22:43.2685783Z Running custom install script '/bin/sh /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build-aux/meson-make-symlink.sh pacman /usr/share/bash-completion/completions/pacman-key'
2025-10-02T15:22:43.2688412Z Running custom install script '/bin/sh /home/runner/work/linux510/linux510/pacman/pacman-6.0.2/build-aux/meson-make-symlink.sh pacman /usr/share/bash-completion/completions/makepkg'
2025-10-02T15:22:43.2690384Z Running custom install script '/usr/bin/sh -c mkdir -p "$DESTDIR//var/lib/pacman/"'
2025-10-02T15:22:43.2691571Z Running custom install script '/usr/bin/sh -c mkdir -p "$DESTDIR//var/cache/pacman/pkg/"'
2025-10-02T15:22:43.2692774Z Running custom install script '/usr/bin/sh -c mkdir -p "$DESTDIR//usr/share/makepkg-template/"'
2025-10-02T15:22:43.2693995Z Running custom install script '/usr/bin/sh -c mkdir -p "$DESTDIR//usr/share/libalpm/hooks/"'
2025-10-02T15:22:43.3064077Z ~/work/linux510/linux510/pacman ~/work/linux510/linux510
2025-10-02T15:22:43.3494619Z Server = ***/unstable/$repo/$arch
2025-10-02T15:22:43.3584394Z --2025-10-02 15:22:43-- https://gitlab.archlinux.org/pacman/pacman-contrib/-/raw/master/src/updpkgsums.sh.in
2025-10-02T15:22:43.5556171Z Resolving gitlab.archlinux.org (gitlab.archlinux.org)... 213.133.111.15, 2a01:4f8:222:174c::1
2025-10-02T15:22:43.6492348Z Connecting to gitlab.archlinux.org (gitlab.archlinux.org)|213.133.111.15|:443... connected.
2025-10-02T15:22:43.9684761Z HTTP request sent, awaiting response... 200 OK
2025-10-02T15:22:43.9685954Z Length: 3777 (3.7K) [text/plain]
2025-10-02T15:22:43.9687147Z Saving to: ‘updpkgsums.sh.in’
2025-10-02T15:22:43.9687717Z
2025-10-02T15:22:43.9688157Z 0K ... 100% 834M=0s
2025-10-02T15:22:43.9688939Z
2025-10-02T15:22:43.9689872Z 2025-10-02 15:22:43 (834 MB/s) - ‘updpkgsums.sh.in’ saved [3777/3777]
2025-10-02T15:22:43.9690739Z
2025-10-02T15:22:43.9789839Z --2025-10-02 15:22:43-- https://gitlab.archlinux.org/pacman/pacman-contrib/-/raw/master/configure.ac
2025-10-02T15:22:44.0025078Z Resolving gitlab.archlinux.org (gitlab.archlinux.org)... 213.133.111.15, 2a01:4f8:222:174c::1
2025-10-02T15:22:44.0952164Z Connecting to gitlab.archlinux.org (gitlab.archlinux.org)|213.133.111.15|:443... connected.
2025-10-02T15:22:44.4087418Z HTTP request sent, awaiting response... 200 OK
2025-10-02T15:22:44.4088585Z Length: 6551 (6.4K) [text/plain]
2025-10-02T15:22:44.4090001Z Saving to: ‘configure.ac’
2025-10-02T15:22:44.4090539Z
2025-10-02T15:22:44.4090877Z 0K ...... 100% 1.12G=0s
2025-10-02T15:22:44.4091495Z
2025-10-02T15:22:44.4092075Z 2025-10-02 15:22:44 (1.12 GB/s) - ‘configure.ac’ saved [6551/6551]
2025-10-02T15:22:44.4092690Z
2025-10-02T15:22:44.4297201Z ~/work/linux510/linux510
2025-10-02T15:22:44.4404007Z ##[group]Run sudo install -dm755 /usr/share/pacman/keyrings/
2025-10-02T15:22:44.4404673Z ^[[36;1msudo install -dm755 /usr/share/pacman/keyrings/^[[0m
2025-10-02T15:22:44.4405188Z ^[[36;1m^[[0m
2025-10-02T15:22:44.4405777Z ^[[36;1msudo git clone --depth 1 https://gitlab.manjaro.org/packages/core/manjaro-keyring.git^[[0m
2025-10-02T15:22:44.4406467Z ^[[36;1mpushd manjaro-keyring^[[0m
2025-10-02T15:22:44.4406994Z ^[[36;1m sudo install -m0644 manjaro.gpg /usr/share/pacman/keyrings/^[[0m
2025-10-02T15:22:44.4407675Z ^[[36;1m sudo install -m0644 manjaro-trusted /usr/share/pacman/keyrings/^[[0m
2025-10-02T15:22:44.4408344Z ^[[36;1m sudo install -m0644 manjaro-trusted /usr/share/pacman/keyrings/^[[0m
2025-10-02T15:22:44.4408900Z ^[[36;1mpopd^[[0m
2025-10-02T15:22:44.4409309Z ^[[36;1msudo rm -rf manjaro-keyring^[[0m
2025-10-02T15:22:44.4409954Z ^[[36;1m^[[0m
2025-10-02T15:22:44.4410356Z ^[[36;1mmkdir -p archlinux-keyring^[[0m
2025-10-02T15:22:44.4410815Z ^[[36;1mpushd archlinux-keyring^[[0m
2025-10-02T15:22:44.4411545Z ^[[36;1m #wget https://archlinux.org/packages/core/any/archlinux-keyring/download -O /tmp/archlinux-keyring.tar.zst^[[0m
2025-10-02T15:22:44.4412319Z ^[[36;1m # temp solution until Arch infra gets fixed^[[0m
2025-10-02T15:22:44.4413181Z ^[[36;1m wget https://mirrors.manjaro.org/repo/pool/sync/archlinux-keyring-20250807.1-1-any.pkg.tar.zst -O /tmp/archlinux-keyring.tar.zst^[[0m
2025-10-02T15:22:44.4414523Z ^[[36;1m tar --use-compress-program=unzstd --strip-components=4 --wildcards -xvf /tmp/archlinux-keyring.tar.zst usr/share/pacman/keyrings/*^[[0m
2025-10-02T15:22:44.4415420Z ^[[36;1m sudo install -m0644 archlinux.gpg /usr/share/pacman/keyrings/^[[0m
2025-10-02T15:22:44.4416102Z ^[[36;1m sudo install -m0644 archlinux-trusted /usr/share/pacman/keyrings/^[[0m
2025-10-02T15:22:44.4416794Z ^[[36;1m sudo install -m0644 archlinux-revoked /usr/share/pacman/keyrings/^[[0m
2025-10-02T15:22:44.4417360Z ^[[36;1mpopd^[[0m
2025-10-02T15:22:44.4417764Z ^[[36;1msudo pacman-key --init^[[0m
2025-10-02T15:22:44.4418252Z ^[[36;1msudo pacman-key --populate archlinux manjaro^[[0m
2025-10-02T15:22:44.4418798Z ^[[36;1msudo rm -rf archlinux-keyring^[[0m
2025-10-02T15:22:44.4454234Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-02T15:22:44.4454809Z ##[endgroup]
2025-10-02T15:22:44.4667979Z Cloning into 'manjaro-keyring'...
2025-10-02T15:22:46.0768722Z ~/work/linux510/linux510/manjaro-keyring ~/work/linux510/linux510
2025-10-02T15:22:46.0995834Z ~/work/linux510/linux510
2025-10-02T15:22:46.1090947Z ~/work/linux510/linux510/archlinux-keyring ~/work/linux510/linux510
2025-10-02T15:22:46.1112547Z --2025-10-02 15:22:46-- https://mirrors.manjaro.org/repo/pool/sync/archlinux-keyring-20250807.1-1-any.pkg.tar.zst
2025-10-02T15:22:46.3264229Z Resolving mirrors.manjaro.org (mirrors.manjaro.org)... 109.61.91.198, 109.61.91.231, 109.61.91.194, ...
2025-10-02T15:22:46.3321271Z Connecting to mirrors.manjaro.org (mirrors.manjaro.org)|109.61.91.198|:443... connected.
2025-10-02T15:22:46.3651715Z HTTP request sent, awaiting response... 200 OK
2025-10-02T15:22:46.3652565Z Length: 1243944 (1.2M) [application/octet-stream]
2025-10-02T15:22:46.3653569Z Saving to: ‘/tmp/archlinux-keyring.tar.zst’
2025-10-02T15:22:46.3654012Z
2025-10-02T15:22:46.3760490Z 0K .......... .......... .......... .......... .......... 4% 4.49M 0s
2025-10-02T15:22:46.3811824Z 50K .......... .......... .......... .......... .......... 8% 9.44M 0s
2025-10-02T15:22:46.3838226Z 100K .......... .......... .......... .......... .......... 12% 18.5M 0s
2025-10-02T15:22:46.3860630Z 150K .......... .......... .......... .......... .......... 16% 22.1M 0s
2025-10-02T15:22:46.3889864Z 200K .......... .......... .......... .......... .......... 20% 16.8M 0s
2025-10-02T15:22:46.3902572Z 250K .......... .......... .......... .......... .......... 24% 37.4M 0s
2025-10-02T15:22:46.3910263Z 300K .......... .......... .......... .......... .......... 28% 63.5M 0s
2025-10-02T15:22:46.3923507Z 350K .......... .......... .......... .......... .......... 32% 36.5M 0s
2025-10-02T15:22:46.3933387Z 400K .......... .......... .......... .......... .......... 37% 49.1M 0s
2025-10-02T15:22:46.3948097Z 450K .......... .......... .......... .......... .......... 41% 33.2M 0s
2025-10-02T15:22:46.3950519Z 500K .......... .......... .......... .......... .......... 45% 220M 0s
2025-10-02T15:22:46.3960501Z 550K .......... .......... .......... .......... .......... 49% 48.8M 0s
2025-10-02T15:22:46.3966317Z 600K .......... .......... .......... .......... .......... 53% 83.1M 0s
2025-10-02T15:22:46.3990758Z 650K .......... .......... .......... .......... .......... 57% 20.6M 0s
2025-10-02T15:22:46.3995436Z 700K .......... .......... .......... .......... .......... 61% 102M 0s
2025-10-02T15:22:46.4040793Z 750K .......... .......... .......... .......... .......... 65% 10.8M 0s
2025-10-02T15:22:46.4043226Z 800K .......... .......... .......... .......... .......... 69% 158M 0s
2025-10-02T15:22:46.4046007Z 850K .......... .......... .......... .......... .......... 74% 187M 0s
2025-10-02T15:22:46.4090661Z 900K .......... .......... .......... .......... .......... 78% 11.1M 0s
2025-10-02T15:22:46.4093810Z 950K .......... .......... .......... .......... .......... 82% 145M 0s
2025-10-02T15:22:46.4095335Z 1000K .......... .......... .......... .......... .......... 86% 216M 0s
2025-10-02T15:22:46.4142971Z 1050K .......... .......... .......... .......... .......... 90% 10.5M 0s
2025-10-02T15:22:46.4146740Z 1100K .......... .......... .......... .......... .......... 94% 121M 0s
2025-10-02T15:22:46.4148845Z 1150K .......... .......... .......... .......... .......... 98% 175M 0s
2025-10-02T15:22:46.4149974Z 1200K .......... .... 100% 27.5T=0.05s
2025-10-02T15:22:46.4150586Z
2025-10-02T15:22:46.4151552Z 2025-10-02 15:22:46 (23.8 MB/s) - ‘/tmp/archlinux-keyring.tar.zst’ saved [1243944/1243944]
2025-10-02T15:22:46.4152323Z
2025-10-02T15:22:46.4518004Z usr/share/pacman/keyrings/archlinux-revoked
2025-10-02T15:22:46.4519159Z usr/share/pacman/keyrings/archlinux-trusted
2025-10-02T15:22:46.4520237Z usr/share/pacman/keyrings/archlinux.gpg
2025-10-02T15:22:46.4805668Z ~/work/linux510/linux510
2025-10-02T15:22:46.4973293Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T15:22:46.5290744Z gpg: /etc/pacman.d/gnupg/trustdb.gpg: trustdb created
2025-10-02T15:22:46.5341290Z gpg: no ultimately trusted keys found
2025-10-02T15:22:46.5613332Z gpg: starting migration from earlier GnuPG versions
2025-10-02T15:22:46.5938730Z gpg: porting secret keys from '/etc/pacman.d/gnupg/secring.gpg' to gpg-agent
2025-10-02T15:22:46.5939748Z gpg: migration succeeded
2025-10-02T15:22:46.5964964Z ==> Generating pacman master key. This may take some time.
2025-10-02T15:22:46.5985569Z gpg: Generating pacman keyring master key...
2025-10-02T15:22:47.4054950Z gpg: directory '/etc/pacman.d/gnupg/openpgp-revocs.d' created
2025-10-02T15:22:47.4299458Z gpg: revocation certificate stored as '/etc/pacman.d/gnupg/openpgp-revocs.d/EA7F74D6DD0C817C3A1557318D9C713B0835FE8E.rev'
2025-10-02T15:22:47.4301687Z gpg: Done
2025-10-02T15:22:47.4323223Z ==> Updating trust database...
2025-10-02T15:22:47.4349841Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-02T15:22:47.4350874Z gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-02T15:22:47.4525770Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T15:22:47.4586927Z ==> Appending keys from archlinux.gpg...
2025-10-02T15:22:50.3544131Z ==> Appending keys from manjaro.gpg...
2025-10-02T15:22:51.2688347Z ==> Locally signing trusted keys in keyring...
2025-10-02T15:22:53.8930514Z -> Locally signed 23 keys.
2025-10-02T15:22:53.8943109Z ==> Importing owner trust values...
2025-10-02T15:22:53.8966627Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8967421Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8968162Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8968902Z gpg: inserting ownertrust of 4
2025-10-02T15:22:53.8969848Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8991893Z gpg: inserting ownertrust of 4
2025-10-02T15:22:53.8992716Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8993499Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8994281Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8995025Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8995755Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8996481Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8996915Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8997352Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8997773Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8998194Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8998622Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8999034Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.8999702Z gpg: inserting ownertrust of 4
2025-10-02T15:22:53.9000199Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.9000620Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.9001031Z gpg: setting ownertrust to 4
2025-10-02T15:22:53.9001444Z gpg: inserting ownertrust of 4
2025-10-02T15:22:53.9010442Z ==> Disabling revoked keys in keyring...
2025-10-02T15:22:54.1922141Z -> Disabled 50 keys.
2025-10-02T15:22:54.1934973Z ==> Updating trust database...
2025-10-02T15:22:54.1964723Z gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
2025-10-02T15:22:54.1965711Z gpg: (use option "--allow-weak-key-signatures" to override)
2025-10-02T15:22:54.2262168Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-02T15:22:54.2614283Z gpg: depth: 0 valid: 1 signed: 20 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-02T15:22:54.2903581Z gpg: depth: 1 valid: 20 signed: 102 trust: 0-, 0q, 0n, 20m, 0f, 0u
2025-10-02T15:22:54.3097774Z gpg: depth: 2 valid: 75 signed: 19 trust: 75-, 0q, 0n, 0m, 0f, 0u
2025-10-02T15:22:54.3101379Z gpg: next trustdb check due at 2025-10-10
2025-10-02T15:22:54.3232205Z ##[group]Run sudo apt-get clean
2025-10-02T15:22:54.3232685Z ^[[36;1msudo apt-get clean^[[0m
2025-10-02T15:22:54.3233129Z ^[[36;1msudo rm -rf /usr/share/dotnet^[[0m
2025-10-02T15:22:54.3233588Z ^[[36;1msudo rm -rf /opt/ghc^[[0m
2025-10-02T15:22:54.3234048Z ^[[36;1msudo rm -rf "/usr/local/share/boost"^[[0m
2025-10-02T15:22:54.3234573Z ^[[36;1msudo rm -rf "$AGENT_TOOLSDIRECTORY"^[[0m
2025-10-02T15:22:54.3275605Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-02T15:22:54.3276174Z ##[endgroup]
2025-10-02T15:23:18.9243740Z ##[group]Run sudo git clone --depth 1 https://gitlab.manjaro.org/tools/development-tools/manjaro-chrootbuild
2025-10-02T15:23:18.9244699Z ^[[36;1msudo git clone --depth 1 https://gitlab.manjaro.org/tools/development-tools/manjaro-chrootbuild^[[0m
2025-10-02T15:23:18.9245389Z ^[[36;1mpushd manjaro-chrootbuild^[[0m
2025-10-02T15:23:18.9245845Z ^[[36;1msudo ./install.sh^[[0m
2025-10-02T15:23:18.9246510Z ^[[36;1mecho 'PACKAGER="Manjaro Build Server <build@manjaro.org>"' | sudo tee -a /etc/makepkg.conf > /dev/null^[[0m
2025-10-02T15:23:18.9247177Z ^[[36;1mpopd^[[0m
2025-10-02T15:23:18.9247589Z ^[[36;1msudo rm -rf manjaro-chrootbuild^[[0m
2025-10-02T15:23:18.9280530Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-02T15:23:18.9281077Z ##[endgroup]
2025-10-02T15:23:18.9407041Z Cloning into 'manjaro-chrootbuild'...
2025-10-02T15:23:19.5191746Z warning: redirecting to https://gitlab.manjaro.org/tools/development-tools/manjaro-chrootbuild.git/
2025-10-02T15:23:20.3721140Z ~/work/linux510/linux510/manjaro-chrootbuild ~/work/linux510/linux510
2025-10-02T15:23:20.3793322Z Installing manjaro-chrootbuild
2025-10-02T15:23:20.3814330Z util-chroot.sh
2025-10-02T15:23:20.3830022Z util-lists.sh
2025-10-02T15:23:20.3844764Z util-pkg.sh
2025-10-02T15:23:20.3858586Z util.sh
2025-10-02T15:23:20.3893543Z cb_monitor
2025-10-02T15:23:20.3908333Z chrootbuild
2025-10-02T15:23:20.3922829Z prepare_chroot
2025-10-02T15:23:20.3937638Z sign_pkgs
2025-10-02T15:23:20.3972134Z pacman.conf.aarch64
2025-10-02T15:23:20.3986058Z pacman.conf.x86_64
2025-10-02T15:23:20.4107228Z ~/work/linux510/linux510
2025-10-02T15:23:20.4230175Z ##[group]Run KERNEL=$(echo ${GITHUB_REPOSITORY} | cut -d'/' -f2)
2025-10-02T15:23:20.4230946Z ^[[36;1mKERNEL=$(echo ${GITHUB_REPOSITORY} | cut -d'/' -f2)^[[0m
2025-10-02T15:23:20.4232099Z ^[[36;1msudo git clone ***gitlab.manjaro.org/packages/core/${KERNEL}.git^[[0m
2025-10-02T15:23:20.4232930Z ^[[36;1msudo git config --global user.name "Manjaro Build Server"^[[0m
2025-10-02T15:23:20.4233657Z ^[[36;1msudo git config --global user.email "build@manjaro.org"^[[0m
2025-10-02T15:23:20.4234293Z ^[[36;1mecho "KERNEL=${KERNEL}" >>$GITHUB_ENV^[[0m
2025-10-02T15:23:20.4234877Z ^[[36;1mif [[ "true" == "true" ]]; then^[[0m
2025-10-02T15:23:20.4235440Z ^[[36;1m oldver=$(grep 'pkgver=' ${KERNEL}/PKGBUILD | cut -d'=' -f2)^[[0m
2025-10-02T15:23:20.4236097Z ^[[36;1m sudo chown -R ${UID}:${UID} ${KERNEL}^[[0m
2025-10-02T15:23:20.4236587Z ^[[36;1m cd ${KERNEL}^[[0m
2025-10-02T15:23:20.4237140Z ^[[36;1m if [[ $oldver == *rc* ]]; then^[[0m
2025-10-02T15:23:20.4237674Z ^[[36;1m ver_maj=$(echo $oldver | cut -d'r' -f1)^[[0m
2025-10-02T15:23:20.4238190Z ^[[36;1m _rc=$(echo ${oldver} | cut -d'c' -f2)^[[0m
2025-10-02T15:23:20.4238678Z ^[[36;1m _rc_new=rc$((${_rc}+1))^[[0m
2025-10-02T15:23:20.4239262Z ^[[36;1m sudo sed -i -e "/^_rc=/c\_rc=${_rc_new}" PKGBUILD^[[0m
2025-10-02T15:23:20.4240001Z ^[[36;1m ver_new=${ver_maj}${_rc_new}^[[0m
2025-10-02T15:23:20.4240451Z ^[[36;1m else^[[0m
2025-10-02T15:23:20.4241187Z ^[[36;1m ver_maj=$(printf "%s.%s" "$(echo ${oldver} | cut -d. -f1)" "$(echo ${oldver} | cut -d. -f2)")^[[0m
2025-10-02T15:23:20.4241908Z ^[[36;1m ver_min=$(echo ${oldver} | cut -d. -f3)^[[0m
2025-10-02T15:23:20.4242428Z ^[[36;1m ver_new=${ver_maj}.$((${ver_min}+1))^[[0m
2025-10-02T15:23:20.4242901Z ^[[36;1m fi^[[0m
2025-10-02T15:23:20.4243351Z ^[[36;1m sudo sed -i -e "/^pkgver=/c\pkgver=${ver_new}" PKGBUILD^[[0m
2025-10-02T15:23:20.4244014Z ^[[36;1m sudo sed -i -e "/^pkgrel=/c\pkgrel=1" PKGBUILD^[[0m
2025-10-02T15:23:20.4244534Z ^[[36;1m echo "update PKGBUILD"^[[0m
2025-10-02T15:23:20.4244975Z ^[[36;1m updpkgsums^[[0m
2025-10-02T15:23:20.4245483Z ^[[36;1m sudo git add PKGBUILD^[[0m
2025-10-02T15:23:20.4246047Z ^[[36;1m sudo git commit -m"[pkg-upd] ${ver_new}-1"^[[0m
2025-10-02T15:23:20.4246558Z ^[[36;1m sudo git push^[[0m
2025-10-02T15:23:20.4246979Z ^[[36;1m sudo rm -rf src^[[0m
2025-10-02T15:23:20.4247426Z ^[[36;1m cd ..^[[0m
2025-10-02T15:23:20.4247901Z ^[[36;1melif [[ "false" == "true" ]]; then^[[0m
2025-10-02T15:23:20.4248546Z ^[[36;1m repover=$(sudo pacman -Syi ${KERNEL} | grep Version | rev | cut -d' ' -f1 | rev | cut -d- -f1)^[[0m
2025-10-02T15:23:20.4249198Z ^[[36;1m . ${KERNEL}/PKGBUILD^[[0m
2025-10-02T15:23:20.4249848Z ^[[36;1m if [[ "$pkgver" == "$repover" ]]; then^[[0m
2025-10-02T15:23:20.4250407Z ^[[36;1m sudo chown -R ${UID}:${UID} ${KERNEL}^[[0m
2025-10-02T15:23:20.4251025Z ^[[36;1m cd ${KERNEL}^[[0m
2025-10-02T15:23:20.4251640Z ^[[36;1m reporel=$(sudo pacman -Syi ${KERNEL} | grep Version | cut -d'-' -f2)^[[0m
2025-10-02T15:23:20.4252325Z ^[[36;1m rel_new=$((${reporel}+1))^[[0m
2025-10-02T15:23:20.4252926Z ^[[36;1m sudo sed -i -e "/^pkgrel=/c\pkgrel=${rel_new}" PKGBUILD^[[0m
2025-10-02T15:23:20.4253468Z ^[[36;1m sudo git add PKGBUILD^[[0m
2025-10-02T15:23:20.4254113Z ^[[36;1m sudo git commit -m"[pkg-upd] pkgrel ${rel_new}"^[[0m
2025-10-02T15:23:20.4254626Z ^[[36;1m sudo git push^[[0m
2025-10-02T15:23:20.4255128Z ^[[36;1m cd ..^[[0m
2025-10-02T15:23:20.4255513Z ^[[36;1m fi^[[0m
2025-10-02T15:23:20.4255888Z ^[[36;1mfi^[[0m
2025-10-02T15:23:20.4290308Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-02T15:23:20.4291153Z ##[endgroup]
2025-10-02T15:23:20.4432627Z Cloning into 'linux510'...
2025-10-02T15:23:22.0490872Z update PKGBUILD
2025-10-02T15:23:23.0628027Z ==> Retrieving sources...
2025-10-02T15:23:23.0717001Z -> Downloading linux-5.10.tar.xz...
2025-10-02T15:23:23.0798478Z % Total % Received % Xferd Average Speed Time Time Time Current
2025-10-02T15:23:23.0799743Z Dload Upload Total Spent Left Speed
2025-10-02T15:23:23.0800192Z
2025-10-02T15:23:23.4760547Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
2025-10-02T15:23:23.4761672Z 100 111M 100 111M 0 0 280M 0 --:--:-- --:--:-- --:--:-- 280M
2025-10-02T15:23:23.4903693Z -> Downloading patch-5.10.245.xz...
2025-10-02T15:23:23.4956858Z % Total % Received % Xferd Average Speed Time Time Time Current
2025-10-02T15:23:23.4957947Z Dload Upload Total Spent Left Speed
2025-10-02T15:23:23.4958525Z
2025-10-02T15:23:23.5770940Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
2025-10-02T15:23:23.5771824Z 100 6745k 100 6745k 0 0 80.8M 0 --:--:-- --:--:-- --:--:-- 81.3M
2025-10-02T15:23:23.5864401Z -> Found config
2025-10-02T15:23:23.5913964Z -> Found config.anbox
2025-10-02T15:23:23.5964117Z -> Found linux-5.10.236-std-gnu11.patch
2025-10-02T15:23:23.6015717Z -> Found 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-CLONE_NEWUSER.patch
2025-10-02T15:23:23.6068139Z -> Found 0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_special_driver-list.patch
2025-10-02T15:23:23.6118507Z -> Found 0101-i2c-nuvoton-nc677x-hwmon-driver.patch
2025-10-02T15:23:23.6168883Z -> Found 0102-iomap-iomap_bmap-should-accept-unwritten-maps.patch
2025-10-02T15:23:23.6219874Z -> Found 0104-revert-xhci-Add-support-for-Renesas-controller-with-memory.patch
2025-10-02T15:23:23.6269193Z -> Found 0107-quirk-kernel-org-bug-210681-firmware_rome_error.patch
2025-10-02T15:23:23.6318063Z -> Found 0999-patch_realtek.patch
2025-10-02T15:23:23.6334135Z ==> Generating checksums for source files...
2025-10-02T15:23:23.8209064Z [master 3453e72] [pkg-upd] 5.10.245-1
2025-10-02T15:23:23.8210211Z 1 file changed, 2 insertions(+), 2 deletions(-)
2025-10-02T15:23:27.2545097Z To https://gitlab.manjaro.org/packages/core/linux510.git
2025-10-02T15:23:27.2545815Z 54c1bbc..3453e72 master -> master
2025-10-02T15:23:27.2712945Z ##[group]Run sudo chrootbuild -p linux510 -b unstable
2025-10-02T15:23:27.2713964Z ^[[36;1msudo chrootbuild -p linux510 -b unstable^[[0m
2025-10-02T15:23:27.2714824Z ^[[36;1mif [ -z "***^[[0m
2025-10-02T15:23:27.2715488Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2716087Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2716683Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2717256Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2717842Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2718427Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2727505Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2728195Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2728838Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2729704Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2730344Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2730955Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2731542Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2732129Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2732711Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2733309Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2733924Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2734508Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2735100Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2735702Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2736296Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2736894Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2737471Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2738311Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2738910Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2739796Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2740422Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2741009Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2741586Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2742165Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2742736Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2743310Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2743915Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2744501Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2745088Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2745705Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2746288Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2746881Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2747465Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2748040Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2748623Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2749213Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2750206Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2750843Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2751435Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2752034Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2752629Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2753221Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2753820Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2754422Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2755029Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2755621Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2756201Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2756786Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2757390Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2757974Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2758539Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2759147Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2759945Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2760542Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2761123Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2761718Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2762293Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2762867Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2763463Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2764126Z ^[[36;1m***" ] || [ -z "***" ]; then^[[0m
2025-10-02T15:23:27.2764648Z ^[[36;1m echo "## gpg credentials not provided. Skip signing."^[[0m
2025-10-02T15:23:27.2765178Z ^[[36;1melse^[[0m
2025-10-02T15:23:27.2765847Z ^[[36;1m cat <(echo -e "***^[[0m
2025-10-02T15:23:27.2766500Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2767084Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2767674Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2768269Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2769042Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2769829Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2770412Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2771001Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2771581Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2772176Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2772778Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2773382Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2773951Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2774521Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2775112Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2775689Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2776302Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2776879Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2777462Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2778067Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2778635Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2779226Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2780039Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2780637Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2781239Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2781820Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2782415Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2783002Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2783578Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2784157Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2784723Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2785304Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2785902Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2786482Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2787063Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2787666Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2788237Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2788817Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2789400Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2790149Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2790734Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2791316Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2791886Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2792481Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2793067Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2793835Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2794418Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2794977Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2795565Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2796147Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2796742Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2797331Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2797895Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2798466Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2799046Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2799831Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2800392Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2800985Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2801554Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2802129Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2802699Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2803284Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2803841Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2804409Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2804998Z ^[[36;1m***^[[0m
2025-10-02T15:23:27.2805568Z ^[[36;1m***" | base64 --decode) | gpg --batch --import &>/dev/null^[[0m
2025-10-02T15:23:27.2806226Z ^[[36;1m for p in $(find $PWD -maxdepth 1 -regex '.*\.pkg\.tar\.\(xz\|zst\)'); do^[[0m
2025-10-02T15:23:27.2806818Z ^[[36;1m echo "## signing $p"^[[0m
2025-10-02T15:23:27.2807540Z ^[[36;1m gpg --pinentry-mode loopback --passphrase "***" --detach-sign ${p}^[[0m
2025-10-02T15:23:27.2808131Z ^[[36;1m done^[[0m
2025-10-02T15:23:27.2808518Z ^[[36;1mfi^[[0m
2025-10-02T15:23:27.2808943Z ^[[36;1mCHRSRC=/var/lib/chrootbuild/build/linux510^[[0m
2025-10-02T15:23:27.2809610Z ^[[36;1mecho "CHRSRC=${CHRSRC}" >> $GITHUB_ENV^[[0m
2025-10-02T15:23:27.2810146Z ^[[36;1m. ${CHRSRC}/PKGBUILD^[[0m
2025-10-02T15:23:27.2810583Z ^[[36;1mif [[ ! -z ${_rc} ]]; then^[[0m
2025-10-02T15:23:27.2811081Z ^[[36;1m _confpath=${CHRSRC}/src/linux-${_basekernel}-${_rc}^[[0m
2025-10-02T15:23:27.2811586Z ^[[36;1melse^[[0m
2025-10-02T15:23:27.2812020Z ^[[36;1m _confpath=${CHRSRC}/src/linux-${_basekernel}^[[0m
2025-10-02T15:23:27.2812510Z ^[[36;1mfi^[[0m
2025-10-02T15:23:27.2812913Z ^[[36;1mif [[ "true" == "true" ]]; then^[[0m
2025-10-02T15:23:27.2813364Z ^[[36;1m cd linux510^[[0m
2025-10-02T15:23:27.2813799Z ^[[36;1m if [[ -e config.rt ]]; then^[[0m
2025-10-02T15:23:27.2814254Z ^[[36;1m sudo rm config.rt^[[0m
2025-10-02T15:23:27.2814731Z ^[[36;1m sudo cp "${_confpath}/.config" config.rt^[[0m
2025-10-02T15:23:27.2815367Z ^[[36;1m else^[[0m
2025-10-02T15:23:27.2815777Z ^[[36;1m sudo rm config^[[0m
2025-10-02T15:23:27.2816243Z ^[[36;1m sudo cp "${_confpath}/.config" config^[[0m
2025-10-02T15:23:27.2816722Z ^[[36;1m fi^[[0m
2025-10-02T15:23:27.2817125Z ^[[36;1m if [[ -e config.rt ]]; then^[[0m
2025-10-02T15:23:27.2817582Z ^[[36;1m sudo git add config.rt^[[0m
2025-10-02T15:23:27.2818024Z ^[[36;1m else^[[0m
2025-10-02T15:23:27.2818426Z ^[[36;1m sudo git add config^[[0m
2025-10-02T15:23:27.2818858Z ^[[36;1m fi^[[0m
2025-10-02T15:23:27.2819250Z ^[[36;1m updpkgsums^[[0m
2025-10-02T15:23:27.2820033Z ^[[36;1m sudo git add PKGBUILD^[[0m
2025-10-02T15:23:27.2820795Z ^[[36;1m sudo git commit -m"update config" || true^[[0m
2025-10-02T15:23:27.2821417Z ^[[36;1m sudo git push^[[0m
2025-10-02T15:23:27.2821849Z ^[[36;1m sudo rm -rf .git^[[0m
2025-10-02T15:23:27.2822267Z ^[[36;1m cd ..^[[0m
2025-10-02T15:23:27.2822656Z ^[[36;1mfi^[[0m
2025-10-02T15:23:27.2854830Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-02T15:23:27.2855388Z env:
2025-10-02T15:23:27.2855775Z KERNEL: linux510
2025-10-02T15:23:27.2856176Z ##[endgroup]
2025-10-02T15:23:27.3392413Z
2025-10-02T15:23:27.3393140Z - linux510
2025-10-02T15:23:27.3394895Z ^[[1m^[[32m^[[1m:: Package(s) to build:^[[0m
2025-10-02T15:23:27.3395509Z
2025-10-02T15:23:27.3396296Z ^[[1m^[[32m^[[1m:: Create install root at [/var/lib/chrootbuild]^[[0m
2025-10-02T15:23:27.3653414Z
2025-10-02T15:23:27.3654566Z ^[[1m^[[32m^[[1m:: Install build environment^[[0m
2025-10-02T15:23:27.3756396Z :: Synchronizing package databases...
2025-10-02T15:23:29.0063915Z core downloading...
2025-10-02T15:23:29.0064515Z extra downloading...
2025-10-02T15:23:29.0065041Z multilib downloading...
2025-10-02T15:23:29.0451292Z resolving dependencies...
2025-10-02T15:23:29.2531375Z looking for conflicting packages...
2025-10-02T15:23:29.2563385Z warning: dependency cycle detected:
2025-10-02T15:23:29.2564351Z warning: systemd-libs will be installed before its libcap dependency
2025-10-02T15:23:29.2565127Z
2025-10-02T15:23:29.2574913Z Packages (140) acl-2.3.2-1 attr-2.5.2-1 audit-4.0.5-1 autoconf-2.72-1 automake-1.18.1-1 bash-5.3.3-2 binutils-2.45+r29+g2b2e51a31ec7-1 bison-3.8.2-8 brotli-1.1.0-3 bzip2-1.0.8-6 ca-certificates-20240618-1 ca-certificates-mozilla-3.116-1 ca-certificates-utils-20240618-1 coreutils-9.8-2 cryptsetup-2.8.1-1 curl-8.16.0-1 db5.3-5.3.28-5 dbus-1.16.2-1 dbus-broker-37-2 dbus-broker-units-37-2 dbus-units-37-2 debugedit-5.2-1 device-mapper-2.03.35-1 diffutils-3.12-2 e2fsprogs-1.47.3-1 expat-2.7.3-1 fakeroot-1.37.1.2-1 file-5.46-5 filesystem-2025.05.03-1 findutils-4.10.0-3 flex-2.6.4-5 gawk-5.3.2-1 gc-8.2.8-2 gcc-15.2.1+r22+gc4e96a094636-1 gcc-libs-15.2.1+r22+gc4e96a094636-1 gdbm-1.26-1 gettext-0.26-1 glib2-2.86.0-2 glibc-2.42+r17+gd7274d718e6f-1 gmp-6.3.0-2 gnulib-l10n-20241231-1 gnupg-2.4.8-1 gnutls-3.8.10-1 gpgme-2.0.1-1 grep-3.12-2 groff-1.23.0-7 guile-3.0.10-1 gzip-1.14-2 hwdata-0.399-1 iana-etc-20250612-1 icu-76.1-1 jansson-2.14.1-1 json-c-0.18-2 kbd-2.8.0-1 keyutils-1.6.3-3 kmod-34.2-1 krb5-1.21.3-2 leancrypto-1.5.1-1 libarchive-3.8.1-1 libassuan-3.0.0-1 libcap-2.76-1 libcap-ng-0.8.5-3 libelf-0.193-5 libevent-2.1.12-4 libffi-3.5.2-1 libgcrypt-1.11.2-1 libgpg-error-1.55-1 libidn2-2.3.7-1 libisl-0.27-1 libksba-1.6.7-2 libldap-2.6.10-2 libmpc-1.3.1-2 libnghttp2-1.67.1-1 libnghttp3-1.12.0-1 libnsl-2.0.1-1 libp11-kit-0.25.9-1 libpsl-0.21.5-2 libsasl-2.1.28-5 libseccomp-2.5.6-1 libsecret-0.21.7-1 libssh2-1.11.1-1 libsysprof-capture-49.0-1 libtasn1-4.20.0-1 libtirpc-1.3.7-1 libtool-2.6.0-1 libunistring-1.3-1 libusb-1.0.29-1 libverto-0.3.2-5 libxcrypt-4.4.38-1 libxml2-2.15.0-1 linux-api-headers-6.16-2 lmdb-0.9.33-1 lz4-1:1.10.0-2 m4-1.4.20-1 make-4.4.1-2 mpdecimal-4.0.1-1 mpfr-4.2.2-1 ncurses-6.5-4 nettle-3.10.2-1 npth-1.8-1 openssl-3.5.4-1 p11-kit-0.25.9-1 pacman-7.0.0.r10.ga2d0293-3 pacman-mirrors-5.2-1 pam-1.7.1-1 pambase-20250719-1 patch-2.8-1 pcre2-10.46-1 perl-5.42.0-1 pinentry-1.3.2-2 pkgconf-2.5.1-1 popt-1.19-2 python-3.13.7-1 python-charset-normalizer-3.4.3-1 python-idna-3.10-2 python-npyscreen-4.10.5-10 python-pytz-2025.2-1 python-requests-2.32.5-1 python-urllib3-2.5.0-1 readline-8.3.001-1 sed-4.9-3 shadow-4.18.0-1 sqlite-3.50.4-2 sudo-1.9.17.p1-1 systemd-257.9-1 systemd-libs-257.9-1 tar-1.35-2 texinfo-7.2-1 tpm2-tss-4.1.3-1 tzdata-2025b-1 util-linux-2.41.2-1 util-linux-libs-2.41.2-1 which-2.23-1 xxhash-0.8.3-1 xz-5.8.1-1 zlib-1:1.3.1-2 zstd-1.5.7-2 archlinux-keyring-20250929-1 base-devel-1-3 manjaro-keyring-20230719-3
2025-10-02T15:23:29.2582661Z
2025-10-02T15:23:29.2582859Z Total Download Size: 253.82 MiB
2025-10-02T15:23:29.2583310Z Total Installed Size: 1068.73 MiB
2025-10-02T15:23:29.2583574Z
2025-10-02T15:23:29.2583886Z :: Proceed with installation? [Y/n]
2025-10-02T15:23:29.2584353Z :: Retrieving packages...
2025-10-02T15:23:55.6099201Z gcc-15.2.1+r22+gc4e96a094636-1-x86_64 downloading...
2025-10-02T15:23:55.6100714Z gcc-libs-15.2.1+r22+gc4e96a094636-1-x86_64 downloading...
2025-10-02T15:23:55.6101406Z perl-5.42.0-1-x86_64 downloading...
2025-10-02T15:23:55.6101998Z python-3.13.7-1-x86_64 downloading...
2025-10-02T15:23:55.6102570Z icu-76.1-1-x86_64 downloading...
2025-10-02T15:23:55.6103128Z systemd-257.9-1-x86_64 downloading...
2025-10-02T15:23:55.6103744Z glibc-2.42+r17+gd7274d718e6f-1-x86_64 downloading...
2025-10-02T15:23:55.6104396Z guile-3.0.10-1-x86_64 downloading...
2025-10-02T15:23:55.6105021Z binutils-2.45+r29+g2b2e51a31ec7-1-x86_64 downloading...
2025-10-02T15:23:55.6105680Z openssl-3.5.4-1-x86_64 downloading...
2025-10-02T15:23:55.6106274Z util-linux-2.41.2-1-x86_64 downloading...
2025-10-02T15:23:55.6106874Z glib2-2.86.0-2-x86_64 downloading...
2025-10-02T15:23:55.6107375Z gettext-0.26-1-x86_64 downloading...
2025-10-02T15:23:55.6108175Z coreutils-9.8-2-x86_64 downloading...
2025-10-02T15:23:55.6108683Z gnupg-2.4.8-1-x86_64 downloading...
2025-10-02T15:23:55.6109181Z bash-5.3.3-2-x86_64 downloading...
2025-10-02T15:23:55.6109932Z groff-1.23.0-7-x86_64 downloading...
2025-10-02T15:23:55.6110438Z sqlite-3.50.4-2-x86_64 downloading...
2025-10-02T15:23:55.6110934Z texinfo-7.2-1-x86_64 downloading...
2025-10-02T15:23:55.6111437Z sudo-1.9.17.p1-1-x86_64 downloading...
2025-10-02T15:23:55.6111957Z gnutls-3.8.10-1-x86_64 downloading...
2025-10-02T15:23:55.6112461Z hwdata-0.399-1-any downloading...
2025-10-02T15:23:55.6112960Z pcre2-10.46-1-x86_64 downloading...
2025-10-02T15:23:55.6113485Z linux-api-headers-6.16-2-x86_64 downloading...
2025-10-02T15:23:55.6114060Z systemd-libs-257.9-1-x86_64 downloading...
2025-10-02T15:23:55.6114575Z gawk-5.3.2-1-x86_64 downloading...
2025-10-02T15:23:55.6115082Z leancrypto-1.5.1-1-x86_64 downloading...
2025-10-02T15:23:55.6115594Z krb5-1.21.3-2-x86_64 downloading...
2025-10-02T15:23:55.6116104Z e2fsprogs-1.47.3-1-x86_64 downloading...
2025-10-02T15:23:55.6116627Z kbd-2.8.0-1-x86_64 downloading...
2025-10-02T15:23:55.6117119Z curl-8.16.0-1-x86_64 downloading...
2025-10-02T15:23:55.6117601Z shadow-4.18.0-1-x86_64 downloading...
2025-10-02T15:23:55.6118084Z archlinux-keyring-20250929-1-any downloading...
2025-10-02T15:23:55.6118590Z db5.3-5.3.28-5-x86_64 downloading...
2025-10-02T15:23:55.6119062Z pacman-7.0.0.r10.ga2d0293-3-x86_64 downloading...
2025-10-02T15:23:55.6119753Z ncurses-6.5-4-x86_64 downloading...
2025-10-02T15:23:55.6120207Z tpm2-tss-4.1.3-1-x86_64 downloading...
2025-10-02T15:23:55.6120653Z libisl-0.27-1-x86_64 downloading...
2025-10-02T15:23:55.6121088Z xz-5.8.1-1-x86_64 downloading...
2025-10-02T15:23:55.6121537Z cryptsetup-2.8.1-1-x86_64 downloading...
2025-10-02T15:23:55.6121987Z tar-1.35-2-x86_64 downloading...
2025-10-02T15:23:55.6122423Z libcap-2.76-1-x86_64 downloading...
2025-10-02T15:23:55.6122866Z libxml2-2.15.0-1-x86_64 downloading...
2025-10-02T15:23:55.6129741Z bison-3.8.2-8-x86_64 downloading...
2025-10-02T15:23:55.6130320Z libunistring-1.3-1-x86_64 downloading...
2025-10-02T15:23:55.6131039Z libgcrypt-1.11.2-1-x86_64 downloading...
2025-10-02T15:23:55.6131543Z autoconf-2.72-1-any downloading...
2025-10-02T15:23:55.6132014Z automake-1.18.1-1-any downloading...
2025-10-02T15:23:55.6132479Z libelf-0.193-5-x86_64 downloading...
2025-10-02T15:23:55.6132936Z pam-1.7.1-1-x86_64 downloading...
2025-10-02T15:23:55.6133401Z libarchive-3.8.1-1-x86_64 downloading...
2025-10-02T15:23:55.6133868Z make-4.4.1-2-x86_64 downloading...
2025-10-02T15:23:55.6134318Z zstd-1.5.7-2-x86_64 downloading...
2025-10-02T15:23:55.6134790Z util-linux-libs-2.41.2-1-x86_64 downloading...
2025-10-02T15:23:55.6135295Z findutils-4.10.0-3-x86_64 downloading...
2025-10-02T15:23:55.6135767Z libp11-kit-0.25.9-1-x86_64 downloading...
2025-10-02T15:23:55.6136233Z nettle-3.10.2-1-x86_64 downloading...
2025-10-02T15:23:55.6136699Z gmp-6.3.0-2-x86_64 downloading...
2025-10-02T15:23:55.6137156Z mpfr-4.2.2-1-x86_64 downloading...
2025-10-02T15:23:55.6137601Z file-5.46-5-x86_64 downloading...
2025-10-02T15:23:55.6138048Z libtool-2.6.0-1-x86_64 downloading...
2025-10-02T15:23:55.6138513Z readline-8.3.001-1-x86_64 downloading...
2025-10-02T15:23:55.6138978Z audit-4.0.5-1-x86_64 downloading...
2025-10-02T15:23:55.6139439Z iana-etc-20250612-1-any downloading...
2025-10-02T15:23:55.6140210Z ca-certificates-mozilla-3.116-1-x86_64 downloading...
2025-10-02T15:23:55.6140758Z brotli-1.1.0-3-x86_64 downloading...
2025-10-02T15:23:55.6141209Z tzdata-2025b-1-x86_64 downloading...
2025-10-02T15:23:55.6141653Z dbus-1.16.2-1-x86_64 downloading...
2025-10-02T15:23:55.6142106Z diffutils-3.12-2-x86_64 downloading...
2025-10-02T15:23:55.6142566Z gpgme-2.0.1-1-x86_64 downloading...
2025-10-02T15:23:55.6143021Z flex-2.6.4-5-x86_64 downloading...
2025-10-02T15:23:55.6143503Z python-npyscreen-4.10.5-10-any downloading...
2025-10-02T15:23:55.6144160Z device-mapper-2.03.35-1-x86_64 downloading...
2025-10-02T15:23:55.6144650Z libldap-2.6.10-2-x86_64 downloading...
2025-10-02T15:23:55.6145104Z m4-1.4.20-1-x86_64 downloading...
2025-10-02T15:23:55.6145575Z libgpg-error-1.55-1-x86_64 downloading...
2025-10-02T15:23:55.6146049Z libevent-2.1.12-4-x86_64 downloading...
2025-10-02T15:23:55.6146512Z gdbm-1.26-1-x86_64 downloading...
2025-10-02T15:23:55.6146964Z libssh2-1.11.1-1-x86_64 downloading...
2025-10-02T15:23:55.6147418Z p11-kit-0.25.9-1-x86_64 downloading...
2025-10-02T15:23:55.6147874Z grep-3.12-2-x86_64 downloading...
2025-10-02T15:23:55.6148314Z gc-8.2.8-2-x86_64 downloading...
2025-10-02T15:23:55.6148774Z python-urllib3-2.5.0-1-any downloading...
2025-10-02T15:23:55.6149242Z sed-4.9-3-x86_64 downloading...
2025-10-02T15:23:55.6149935Z pacman-mirrors-5.2-1-any downloading...
2025-10-02T15:23:55.6150408Z pinentry-1.3.2-2-x86_64 downloading...
2025-10-02T15:23:55.6150890Z libsecret-0.21.7-1-x86_64 downloading...
2025-10-02T15:23:55.6151363Z libtirpc-1.3.7-1-x86_64 downloading...
2025-10-02T15:23:55.6151873Z python-charset-normalizer-3.4.3-1-x86_64 downloading...
2025-10-02T15:23:55.6152413Z lz4-1:1.10.0-2-x86_64 downloading...
2025-10-02T15:23:55.6152874Z dbus-broker-37-2-x86_64 downloading...
2025-10-02T15:23:55.6153331Z libsasl-2.1.28-5-x86_64 downloading...
2025-10-02T15:23:55.6153785Z libksba-1.6.7-2-x86_64 downloading...
2025-10-02T15:23:55.6154243Z libidn2-2.3.7-1-x86_64 downloading...
2025-10-02T15:23:55.6154690Z acl-2.3.2-1-x86_64 downloading...
2025-10-02T15:23:55.6155146Z libtasn1-4.20.0-1-x86_64 downloading...
2025-10-02T15:23:55.6155602Z kmod-34.2-1-x86_64 downloading...
2025-10-02T15:23:55.6156046Z gnulib-l10n-20241231-1-any downloading...
2025-10-02T15:23:55.6156533Z python-requests-2.32.5-1-any downloading...
2025-10-02T15:23:55.6157019Z expat-2.7.3-1-x86_64 downloading...
2025-10-02T15:23:55.6157465Z lmdb-0.9.33-1-x86_64 downloading...
2025-10-02T15:23:55.6157916Z libassuan-3.0.0-1-x86_64 downloading...
2025-10-02T15:24:02.8958324Z mpdecimal-4.0.1-1-x86_64 downloading...
2025-10-02T15:24:02.8959273Z keyutils-1.6.3-3-x86_64 downloading...
2025-10-02T15:24:02.8960385Z python-idna-3.10-2-any downloading...
2025-10-02T15:24:02.8961463Z xxhash-0.8.3-1-x86_64 downloading...
2025-10-02T15:24:02.8962292Z libnghttp2-1.67.1-1-x86_64 downloading...
2025-10-02T15:24:02.8963074Z zlib-1:1.3.1-2-x86_64 downloading...
2025-10-02T15:24:02.8963614Z manjaro-keyring-20230719-3-any downloading...
2025-10-02T15:24:02.8964181Z libseccomp-2.5.6-1-x86_64 downloading...
2025-10-02T15:24:02.8964718Z jansson-2.14.1-1-x86_64 downloading...
2025-10-02T15:24:02.8965238Z libpsl-0.21.5-2-x86_64 downloading...
2025-10-02T15:24:02.8965741Z gzip-1.14-2-x86_64 downloading...
2025-10-02T15:24:02.8966237Z patch-2.8-1-x86_64 downloading...
2025-10-02T15:24:02.8966735Z libmpc-1.3.1-2-x86_64 downloading...
2025-10-02T15:24:02.8967248Z libxcrypt-4.4.38-1-x86_64 downloading...
2025-10-02T15:24:02.8969426Z fakeroot-1.37.1.2-1-x86_64 downloading...
2025-10-02T15:24:02.8970372Z popt-1.19-2-x86_64 downloading...
2025-10-02T15:24:02.8971112Z libusb-1.0.29-1-x86_64 downloading...
2025-10-02T15:24:02.8971853Z libnghttp3-1.12.0-1-x86_64 downloading...
2025-10-02T15:24:02.8972639Z pkgconf-2.5.1-1-x86_64 downloading...
2025-10-02T15:24:02.8973167Z attr-2.5.2-1-x86_64 downloading...
2025-10-02T15:24:02.8973672Z json-c-0.18-2-x86_64 downloading...
2025-10-02T15:24:02.8974167Z bzip2-1.0.8-6-x86_64 downloading...
2025-10-02T15:24:02.8974676Z libsysprof-capture-49.0-1-x86_64 downloading...
2025-10-02T15:24:02.8975221Z python-pytz-2025.2-1-any downloading...
2025-10-02T15:24:02.8975703Z libffi-3.5.2-1-x86_64 downloading...
2025-10-02T15:24:02.8976175Z debugedit-5.2-1-x86_64 downloading...
2025-10-02T15:24:02.8976655Z libcap-ng-0.8.5-3-x86_64 downloading...
2025-10-02T15:24:02.8977126Z npth-1.8-1-x86_64 downloading...
2025-10-02T15:24:02.8977589Z base-devel-1-3-any downloading...
2025-10-02T15:24:02.8978050Z libnsl-2.0.1-1-x86_64 downloading...
2025-10-02T15:24:02.8978750Z libverto-0.3.2-5-x86_64 downloading...
2025-10-02T15:24:02.8979231Z filesystem-2025.05.03-1-any downloading...
2025-10-02T15:24:02.8979963Z which-2.23-1-x86_64 downloading...
2025-10-02T15:24:02.8980474Z ca-certificates-utils-20240618-1-any downloading...
2025-10-02T15:24:02.8981026Z pambase-20250719-1-any downloading...
2025-10-02T15:24:02.8981523Z dbus-broker-units-37-2-x86_64 downloading...
2025-10-02T15:24:02.8982017Z dbus-units-37-2-x86_64 downloading...
2025-10-02T15:24:02.8982499Z ca-certificates-20240618-1-any downloading...
2025-10-02T15:24:02.8982987Z checking keyring...
2025-10-02T15:24:03.2201547Z checking package integrity...
2025-10-02T15:24:06.6531188Z loading package files...
2025-10-02T15:24:06.8277469Z checking for file conflicts...
2025-10-02T15:24:06.9967527Z checking available disk space...
2025-10-02T15:24:07.0012990Z :: Processing package changes...
2025-10-02T15:24:07.0013796Z installing linux-api-headers...
2025-10-02T15:24:07.1002878Z installing tzdata...
2025-10-02T15:24:07.2708245Z Optional dependencies for tzdata
2025-10-02T15:24:07.2709201Z bash: for tzselect [pending]
2025-10-02T15:24:07.2710257Z glibc: for zdump, zic [pending]
2025-10-02T15:24:07.2711138Z installing iana-etc...
2025-10-02T15:24:07.2786515Z installing filesystem...
2025-10-02T15:24:07.2860746Z installing glibc...
2025-10-02T15:24:07.4892479Z Optional dependencies for glibc
2025-10-02T15:24:07.4893342Z gd: for memusagestat
2025-10-02T15:24:07.4894152Z perl: for mtrace [pending]
2025-10-02T15:24:07.4894881Z installing gcc-libs...
2025-10-02T15:24:07.8374425Z installing ncurses...
2025-10-02T15:24:08.1109997Z Optional dependencies for ncurses
2025-10-02T15:24:08.1110950Z bash: for ncursesw6-config [pending]
2025-10-02T15:24:08.1111828Z installing readline...
2025-10-02T15:24:08.1176895Z installing bash...
2025-10-02T15:24:08.1483656Z Optional dependencies for bash
2025-10-02T15:24:08.1484584Z bash-completion: for tab completion
2025-10-02T15:24:08.1485495Z installing acl...
2025-10-02T15:24:08.1547737Z installing attr...
2025-10-02T15:24:08.1586348Z installing gmp...
2025-10-02T15:24:08.1622467Z installing zlib...
2025-10-02T15:24:08.1642289Z installing sqlite...
2025-10-02T15:24:08.1934711Z installing util-linux-libs...
2025-10-02T15:24:08.2024589Z Optional dependencies for util-linux-libs
2025-10-02T15:24:08.2025529Z python: python bindings to libmount [pending]
2025-10-02T15:24:08.2026471Z installing e2fsprogs...
2025-10-02T15:24:08.2240657Z Optional dependencies for e2fsprogs
2025-10-02T15:24:08.2241497Z lvm2: for e2scrub
2025-10-02T15:24:08.2242235Z util-linux: for e2scrub [pending]
2025-10-02T15:24:08.2243080Z smtp-forwarder: for e2scrub_fail script
2025-10-02T15:24:08.2243904Z installing keyutils...
2025-10-02T15:24:08.2294797Z installing gdbm...
2025-10-02T15:24:08.2343530Z installing openssl...
2025-10-02T15:24:08.7093403Z Optional dependencies for openssl
2025-10-02T15:24:08.7094402Z ca-certificates [pending]
2025-10-02T15:24:08.7095051Z perl [pending]
2025-10-02T15:24:08.7095676Z installing libsasl...
2025-10-02T15:24:08.7142194Z installing libldap...
2025-10-02T15:24:08.7308034Z installing libevent...
2025-10-02T15:24:08.7381446Z Optional dependencies for libevent
2025-10-02T15:24:08.7382569Z python: event_rpcgen.py [pending]
2025-10-02T15:24:08.7383313Z installing libverto...
2025-10-02T15:24:08.7394825Z installing lmdb...
2025-10-02T15:24:08.7420057Z installing krb5...
2025-10-02T15:24:08.7665498Z installing libcap-ng...
2025-10-02T15:24:08.7698277Z installing audit...
2025-10-02T15:24:08.7878937Z Optional dependencies for audit
2025-10-02T15:24:08.7880083Z libldap: for audispd-zos-remote [installed]
2025-10-02T15:24:08.7880745Z sh: for augenrules [installed]
2025-10-02T15:24:08.7881319Z installing libxcrypt...
2025-10-02T15:24:08.7903678Z installing libtirpc...
2025-10-02T15:24:08.7974398Z installing libnsl...
2025-10-02T15:24:08.7989913Z installing pambase...
2025-10-02T15:24:08.7997659Z installing libgpg-error...
2025-10-02T15:24:08.8063687Z installing libgcrypt...
2025-10-02T15:24:08.8126424Z installing lz4...
2025-10-02T15:24:08.8154976Z installing xz...
2025-10-02T15:24:08.8485112Z installing zstd...
2025-10-02T15:24:08.8547360Z installing systemd-libs...
2025-10-02T15:24:08.9194786Z installing pam...
2025-10-02T15:24:08.9602707Z installing libcap...
2025-10-02T15:24:08.9729428Z installing coreutils...
2025-10-02T15:24:09.0295717Z installing findutils...
2025-10-02T15:24:09.0370898Z installing libtasn1...
2025-10-02T15:24:09.0434972Z installing libffi...
2025-10-02T15:24:09.0451922Z installing libp11-kit...
2025-10-02T15:24:09.0532273Z installing p11-kit...
2025-10-02T15:24:09.0737102Z installing ca-certificates-utils...
2025-10-02T15:24:09.0760769Z installing ca-certificates-mozilla...
2025-10-02T15:24:09.0788913Z installing ca-certificates...
2025-10-02T15:24:09.0792064Z installing brotli...
2025-10-02T15:24:09.0844352Z installing libunistring...
2025-10-02T15:24:09.0941929Z installing libidn2...
2025-10-02T15:24:09.1009963Z installing libnghttp2...
2025-10-02T15:24:09.1031280Z installing libnghttp3...
2025-10-02T15:24:09.1050300Z installing libpsl...
2025-10-02T15:24:09.1078065Z installing libssh2...
2025-10-02T15:24:09.1233020Z installing curl...
2025-10-02T15:24:09.1663915Z installing mpfr...
2025-10-02T15:24:09.1711641Z installing gawk...
2025-10-02T15:24:09.1857943Z installing gnulib-l10n...
2025-10-02T15:24:09.1906502Z installing icu...
2025-10-02T15:24:09.3113159Z installing libxml2...
2025-10-02T15:24:09.3235833Z Optional dependencies for libxml2
2025-10-02T15:24:09.3236754Z python: Python bindings [pending]
2025-10-02T15:24:09.3237626Z installing gettext...
2025-10-02T15:24:09.3685286Z Optional dependencies for gettext
2025-10-02T15:24:09.3686249Z git: for autopoint infrastructure updates
2025-10-02T15:24:09.3687164Z appstream: for appstream support
2025-10-02T15:24:09.3687959Z installing nettle...
2025-10-02T15:24:09.3770340Z installing leancrypto...
2025-10-02T15:24:09.3918506Z installing gnutls...
2025-10-02T15:24:09.4982619Z Optional dependencies for gnutls
2025-10-02T15:24:09.4983436Z tpm2-tss: support for TPM2 wrapped keys [pending]
2025-10-02T15:24:09.4984209Z installing libksba...
2025-10-02T15:24:09.5003743Z installing libusb...
2025-10-02T15:24:09.5020346Z installing libassuan...
2025-10-02T15:24:09.5040242Z installing libsysprof-capture...
2025-10-02T15:24:09.5061909Z installing bzip2...
2025-10-02T15:24:09.5082673Z installing pcre2...
2025-10-02T15:24:09.5391915Z Optional dependencies for pcre2
2025-10-02T15:24:09.5392664Z sh: for pcre2-config [installed]
2025-10-02T15:24:09.5393335Z installing glib2...
2025-10-02T15:24:09.6459843Z Optional dependencies for glib2
2025-10-02T15:24:09.6460704Z dconf: GSettings storage backend
2025-10-02T15:24:09.6461583Z glib2-devel: development tools
2025-10-02T15:24:09.6462443Z gvfs: most gio functionality
2025-10-02T15:24:09.6463231Z installing json-c...
2025-10-02T15:24:09.6486036Z installing tpm2-tss...
2025-10-02T15:24:09.6741559Z installing libsecret...
2025-10-02T15:24:09.6837466Z Optional dependencies for libsecret
2025-10-02T15:24:09.6838115Z org.freedesktop.secrets: secret storage backend
2025-10-02T15:24:09.6838732Z installing pinentry...
2025-10-02T15:24:09.6868706Z Optional dependencies for pinentry
2025-10-02T15:24:09.6869316Z gcr: GNOME backend
2025-10-02T15:24:09.6870000Z gtk3: GTK backend
2025-10-02T15:24:09.6870483Z qt5-x11extras: Qt5 backend
2025-10-02T15:24:09.6871019Z kwayland5: Qt5 backend
2025-10-02T15:24:09.6871513Z kguiaddons: Qt6 backend
2025-10-02T15:24:09.6872013Z kwindowsystem: Qt6 backend
2025-10-02T15:24:09.6872507Z installing npth...
2025-10-02T15:24:09.6881222Z installing gnupg...
2025-10-02T15:24:09.7363713Z Optional dependencies for gnupg
2025-10-02T15:24:09.7364365Z pcsclite: for using scdaemon not with the gnupg internal card driver
2025-10-02T15:24:09.7364967Z installing gpgme...
2025-10-02T15:24:09.7405072Z installing grep...
2025-10-02T15:24:09.7469245Z installing libarchive...
2025-10-02T15:24:09.7552930Z installing expat...
2025-10-02T15:24:09.7583680Z installing mpdecimal...
2025-10-02T15:24:09.7610640Z installing python...
2025-10-02T15:24:10.0973398Z Optional dependencies for python
2025-10-02T15:24:10.0974458Z python-setuptools: for building Python packages using tooling that is usually bundled with Python
2025-10-02T15:24:10.0975699Z python-pip: for installing Python packages using tooling that is usually bundled with Python
2025-10-02T15:24:10.0976799Z python-pipx: for installing Python software not packaged on Arch Linux
2025-10-02T15:24:10.0977672Z sqlite: for a default database integration [installed]
2025-10-02T15:24:10.0978381Z xz: for lzma [installed]
2025-10-02T15:24:10.0985425Z tk: for tkinter
2025-10-02T15:24:10.0986025Z installing python-npyscreen...
2025-10-02T15:24:10.1156304Z installing python-pytz...
2025-10-02T15:24:10.1179253Z installing python-charset-normalizer...
2025-10-02T15:24:10.1240323Z installing python-idna...
2025-10-02T15:24:10.1286404Z installing python-urllib3...
2025-10-02T15:24:10.1411084Z Optional dependencies for python-urllib3
2025-10-02T15:24:10.1411784Z python-brotli: Brotli support
2025-10-02T15:24:10.1412389Z python-brotlicffi: Brotli support
2025-10-02T15:24:10.1412973Z python-h2: HTTP/2 support
2025-10-02T15:24:10.1413530Z python-pysocks: SOCKS support
2025-10-02T15:24:10.1414101Z python-zstandard: Zstandard support
2025-10-02T15:24:10.1414681Z installing python-requests...
2025-10-02T15:24:10.1475879Z Optional dependencies for python-requests
2025-10-02T15:24:10.1476573Z python-chardet: alternative character encoding library
2025-10-02T15:24:10.1477185Z python-pysocks: SOCKS proxy support
2025-10-02T15:24:10.1477708Z installing pacman-mirrors...
2025-10-02T15:24:10.1694101Z Optional dependencies for pacman-mirrors
2025-10-02T15:24:10.1694824Z gtk3: for interactive mode (GUI)
2025-10-02T15:24:10.1695494Z python-gobject: for interactive mode (GUI)
2025-10-02T15:24:10.1696179Z installing device-mapper...
2025-10-02T15:24:10.1737919Z installing popt...
2025-10-02T15:24:10.1783421Z installing cryptsetup...
2025-10-02T15:24:10.1911035Z installing dbus...
2025-10-02T15:24:10.1993759Z installing dbus-broker...
2025-10-02T15:24:10.2021736Z installing dbus-broker-units...
2025-10-02T15:24:10.2026148Z installing dbus-units...
2025-10-02T15:24:10.2029065Z installing sed...
2025-10-02T15:24:10.2082684Z installing gzip...
2025-10-02T15:24:10.2110930Z Optional dependencies for gzip
2025-10-02T15:24:10.2111587Z less: zless support
2025-10-02T15:24:10.2112123Z util-linux: zmore support [pending]
2025-10-02T15:24:10.2112719Z diffutils: zdiff/zcmp support [pending]
2025-10-02T15:24:10.2113289Z installing kbd...
2025-10-02T15:24:10.2708471Z installing kmod...
2025-10-02T15:24:10.2755096Z installing hwdata...
2025-10-02T15:24:10.2951286Z installing libelf...
2025-10-02T15:24:10.3072260Z installing libseccomp...
2025-10-02T15:24:10.3118855Z installing file...
2025-10-02T15:24:10.3255594Z installing shadow...
2025-10-02T15:24:10.3663245Z installing util-linux...
2025-10-02T15:24:10.4865309Z Optional dependencies for util-linux
2025-10-02T15:24:10.4865969Z words: default dictionary for look
2025-10-02T15:24:10.4866498Z installing systemd...
2025-10-02T15:24:10.6575876Z Initializing machine ID from random generator.
2025-10-02T15:24:10.6727437Z Creating group 'nobody' with GID 65534.
2025-10-02T15:24:10.6731528Z Creating group 'adm' with GID 999.
2025-10-02T15:24:10.6735681Z Creating group 'wheel' with GID 998.
2025-10-02T15:24:10.6740038Z Creating group 'utmp' with GID 997.
2025-10-02T15:24:10.6744459Z Creating group 'audio' with GID 996.
2025-10-02T15:24:10.6748648Z Creating group 'disk' with GID 995.
2025-10-02T15:24:10.6753279Z Creating group 'input' with GID 994.
2025-10-02T15:24:10.6757485Z Creating group 'kmem' with GID 993.
2025-10-02T15:24:10.6761988Z Creating group 'kvm' with GID 992.
2025-10-02T15:24:10.6766211Z Creating group 'lp' with GID 991.
2025-10-02T15:24:10.6770717Z Creating group 'optical' with GID 990.
2025-10-02T15:24:10.6774929Z Creating group 'render' with GID 989.
2025-10-02T15:24:10.6779137Z Creating group 'sgx' with GID 988.
2025-10-02T15:24:10.6783758Z Creating group 'storage' with GID 987.
2025-10-02T15:24:10.6787016Z Creating group 'tty' with GID 5.
2025-10-02T15:24:10.6791749Z Creating group 'uucp' with GID 986.
2025-10-02T15:24:10.6796034Z Creating group 'video' with GID 985.
2025-10-02T15:24:10.6800578Z Creating group 'users' with GID 984.
2025-10-02T15:24:10.6803817Z Creating group 'sys' with GID 3.
2025-10-02T15:24:10.6807017Z Creating group 'mem' with GID 8.
2025-10-02T15:24:10.6810440Z Creating group 'ftp' with GID 11.
2025-10-02T15:24:10.6813671Z Creating group 'mail' with GID 12.
2025-10-02T15:24:10.6816823Z Creating group 'log' with GID 19.
2025-10-02T15:24:10.6820216Z Creating group 'smmsp' with GID 25.
2025-10-02T15:24:10.6823515Z Creating group 'proc' with GID 26.
2025-10-02T15:24:10.6826645Z Creating group 'games' with GID 50.
2025-10-02T15:24:10.6829999Z Creating group 'lock' with GID 54.
2025-10-02T15:24:10.6833319Z Creating group 'network' with GID 90.
2025-10-02T15:24:10.6836553Z Creating group 'floppy' with GID 94.
2025-10-02T15:24:10.6839963Z Creating group 'scanner' with GID 96.
2025-10-02T15:24:10.6843284Z Creating group 'power' with GID 98.
2025-10-02T15:24:10.6847557Z Creating group 'groups' with GID 983.
2025-10-02T15:24:10.6852196Z Creating group 'systemd-journal' with GID 982.
2025-10-02T15:24:10.6856443Z Creating group 'rfkill' with GID 981.
2025-10-02T15:24:10.6857356Z Creating user 'nobody' (Kernel Overflow User) with UID 65534 and GID 65534.
2025-10-02T15:24:10.6861455Z Creating group 'dbus' with GID 81.
2025-10-02T15:24:10.6864960Z Creating user 'dbus' (System Message Bus) with UID 81 and GID 81.
2025-10-02T15:24:10.6869103Z Creating group 'bin' with GID 1.
2025-10-02T15:24:10.6872914Z Creating user 'bin' (n/a) with UID 1 and GID 1.
2025-10-02T15:24:10.6877141Z Creating group 'daemon' with GID 2.
2025-10-02T15:24:10.6880942Z Creating user 'daemon' (n/a) with UID 2 and GID 2.
2025-10-02T15:24:10.6883338Z Creating user 'mail' (n/a) with UID 8 and GID 12.
2025-10-02T15:24:10.6885675Z Creating user 'ftp' (n/a) with UID 14 and GID 11.
2025-10-02T15:24:10.6890670Z Creating group 'http' with GID 33.
2025-10-02T15:24:10.6895087Z Creating user 'http' (n/a) with UID 33 and GID 33.
2025-10-02T15:24:10.6899286Z Creating group 'systemd-coredump' with GID 980.
2025-10-02T15:24:10.6903144Z Creating user 'systemd-coredump' (systemd Core Dumper) with UID 980 and GID 980.
2025-10-02T15:24:10.6907197Z Creating group 'systemd-network' with GID 979.
2025-10-02T15:24:10.6911166Z Creating user 'systemd-network' (systemd Network Management) with UID 979 and GID 979.
2025-10-02T15:24:10.6915176Z Creating group 'systemd-oom' with GID 978.
2025-10-02T15:24:10.6919124Z Creating user 'systemd-oom' (systemd Userspace OOM Killer) with UID 978 and GID 978.
2025-10-02T15:24:10.6924139Z Creating group 'systemd-journal-remote' with GID 977.
2025-10-02T15:24:10.6927406Z Creating user 'systemd-journal-remote' (systemd Journal Remote) with UID 977 and GID 977.
2025-10-02T15:24:10.6932500Z Creating group 'systemd-resolve' with GID 976.
2025-10-02T15:24:10.6936076Z Creating user 'systemd-resolve' (systemd Resolver) with UID 976 and GID 976.
2025-10-02T15:24:10.6940467Z Creating group 'systemd-timesync' with GID 975.
2025-10-02T15:24:10.6944223Z Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 975 and GID 975.
2025-10-02T15:24:10.6948079Z Creating group 'tss' with GID 974.
2025-10-02T15:24:10.6951781Z Creating user 'tss' (tss user for tpm2) with UID 974 and GID 974.
2025-10-02T15:24:10.6955808Z Creating group 'uuidd' with GID 973.
2025-10-02T15:24:10.6959394Z Creating user 'uuidd' (UUID generator helper daemon) with UID 973 and GID 973.
2025-10-02T15:24:10.7214355Z Created symlink '/etc/systemd/system/getty.target.wants/getty@tty1.service' → '/usr/lib/systemd/system/getty@.service'.
2025-10-02T15:24:10.7215866Z Created symlink '/etc/systemd/system/multi-user.target.wants/remote-fs.target' → '/usr/lib/systemd/system/remote-fs.target'.
2025-10-02T15:24:10.7218565Z Created symlink '/etc/systemd/system/sockets.target.wants/systemd-userdbd.socket' → '/usr/lib/systemd/system/systemd-userdbd.socket'.
2025-10-02T15:24:10.7267473Z Optional dependencies for systemd
2025-10-02T15:24:10.7268144Z libmicrohttpd: systemd-journal-gatewayd and systemd-journal-remote
2025-10-02T15:24:10.7268777Z quota-tools: kernel-level quota management
2025-10-02T15:24:10.7269364Z systemd-sysvcompat: symlink package to provide sysvinit binaries
2025-10-02T15:24:10.7270318Z systemd-ukify: combine kernel and initrd into a signed Unified Kernel Image
2025-10-02T15:24:10.7270962Z polkit: allow administration as unprivileged user
2025-10-02T15:24:10.7271610Z curl: systemd-journal-upload, machinectl pull-tar and pull-raw [installed]
2025-10-02T15:24:10.7272325Z gnutls: systemd-journal-gatewayd and systemd-journal-remote [installed]
2025-10-02T15:24:10.7272915Z qrencode: show QR codes
2025-10-02T15:24:10.7273369Z iptables: firewall features
2025-10-02T15:24:10.7273855Z libarchive: convert DDIs to tarballs [installed]
2025-10-02T15:24:10.7274372Z libbpf: support BPF programs
2025-10-02T15:24:10.7274862Z libpwquality: check password quality
2025-10-02T15:24:10.7275358Z libfido2: unlocking LUKS2 volumes with FIDO2 token
2025-10-02T15:24:10.7275875Z libp11-kit: support PKCS#11 [installed]
2025-10-02T15:24:10.7276396Z tpm2-tss: unlocking LUKS2 volumes with TPM2 [installed]
2025-10-02T15:24:10.7276920Z installing pacman...
2025-10-02T15:24:10.7283972Z warning: /var/lib/chrootbuild/etc/pacman.conf installed as /var/lib/chrootbuild/etc/pacman.conf.pacnew
2025-10-02T15:24:10.7597957Z Optional dependencies for pacman
2025-10-02T15:24:10.7598926Z base-devel: required to use makepkg [pending]
2025-10-02T15:24:10.7600186Z perl-locale-gettext: translation support in makepkg-template
2025-10-02T15:24:10.7601160Z installing archlinux-keyring...
2025-10-02T15:24:10.7898688Z installing m4...
2025-10-02T15:24:10.7948146Z installing diffutils...
2025-10-02T15:24:10.8019861Z installing db5.3...
2025-10-02T15:24:10.8175468Z installing perl...
2025-10-02T15:24:11.2078731Z installing autoconf...
2025-10-02T15:24:11.2170375Z installing automake...
2025-10-02T15:24:11.2291243Z installing jansson...
2025-10-02T15:24:11.2309904Z installing binutils...
2025-10-02T15:24:11.3465815Z Optional dependencies for binutils
2025-10-02T15:24:11.3466655Z debuginfod: for debuginfod server/client functionality
2025-10-02T15:24:11.3467381Z installing bison...
2025-10-02T15:24:11.3692705Z installing xxhash...
2025-10-02T15:24:11.3720803Z installing debugedit...
2025-10-02T15:24:11.3732846Z installing fakeroot...
2025-10-02T15:24:11.3975759Z installing flex...
2025-10-02T15:24:11.4036541Z installing libmpc...
2025-10-02T15:24:11.4049187Z installing libisl...
2025-10-02T15:24:11.4203851Z installing gcc...
2025-10-02T15:24:12.0700262Z Optional dependencies for gcc
2025-10-02T15:24:12.0701283Z lib32-gcc-libs: for generating code for 32-bit ABI
2025-10-02T15:24:12.0702189Z installing groff...
2025-10-02T15:24:12.1308633Z Optional dependencies for groff
2025-10-02T15:24:12.1309956Z netpbm: for use together with man -H command interaction in browsers
2025-10-02T15:24:12.1311208Z psutils: for use together with man -H command interaction in browsers
2025-10-02T15:24:12.1312183Z libxaw: for gxditview
2025-10-02T15:24:12.1312977Z perl-file-homedir: for use with glilypond
2025-10-02T15:24:12.1313817Z installing tar...
2025-10-02T15:24:12.1415133Z installing libtool...
2025-10-02T15:24:12.1507471Z installing gc...
2025-10-02T15:24:12.1578962Z installing guile...
2025-10-02T15:24:12.3344054Z installing make...
2025-10-02T15:24:12.3414518Z installing manjaro-keyring...
2025-10-02T15:24:12.3672981Z >>> Run `pacman-key --init` to set up your pacman keyring.
2025-10-02T15:24:12.3674207Z >>> Then run `pacman-key --populate manjaro` to install the Manjaro keyring.
2025-10-02T15:24:12.3675624Z installing patch...
2025-10-02T15:24:12.3690002Z Optional dependencies for patch
2025-10-02T15:24:12.3690847Z ed: for patch -e functionality
2025-10-02T15:24:12.3691612Z installing pkgconf...
2025-10-02T15:24:12.3722502Z installing sudo...
2025-10-02T15:24:12.4004699Z installing texinfo...
2025-10-02T15:24:12.4704236Z Optional dependencies for texinfo
2025-10-02T15:24:12.4705221Z perl-archive-zip: EPUB file output via texi2any
2025-10-02T15:24:12.4706167Z installing which...
2025-10-02T15:24:12.4712251Z installing base-devel...
2025-10-02T15:24:12.6665563Z :: Running post-transaction hooks...
2025-10-02T15:24:12.6666471Z ( 1/14) Creating system user accounts...
2025-10-02T15:24:12.6764796Z Creating group 'alpm' with GID 972.
2025-10-02T15:24:12.6768299Z Creating user 'alpm' (Manjaro Linux Package Management) with UID 972 and GID 972.
2025-10-02T15:24:12.6833533Z ( 2/14) Updating journal message catalog...
2025-10-02T15:24:12.7000099Z ( 3/14) Reloading system manager configuration...
2025-10-02T15:24:12.7086327Z Skipped: Running in chroot.
2025-10-02T15:24:12.7087970Z ( 4/14) Reloading user manager configuration...
2025-10-02T15:24:12.7174846Z Skipped: Running in chroot.
2025-10-02T15:24:12.7176511Z ( 5/14) Updating udev hardware database...
2025-10-02T15:24:13.0490969Z ( 6/14) Applying kernel sysctl settings...
2025-10-02T15:24:13.0575835Z Skipped: Running in chroot.
2025-10-02T15:24:13.0577398Z ( 7/14) Creating temporary files...
2025-10-02T15:24:13.0853892Z ( 8/14) Reloading device manager configuration...
2025-10-02T15:24:13.0941334Z Skipped: Running in chroot.
2025-10-02T15:24:13.0943580Z ( 9/14) Arming ConditionNeedsUpdate...
2025-10-02T15:24:13.1018589Z (10/14) Rebuilding certificate stores...
2025-10-02T15:24:14.2720683Z (11/14) Reloading system bus configuration...
2025-10-02T15:24:14.2802914Z Skipped: Running in chroot.
2025-10-02T15:24:14.2804857Z (12/14) Checking for old perl modules...
2025-10-02T15:24:14.2886903Z (13/14) Configuring pacman-mirrors ...
2025-10-02T15:24:14.4422654Z ::^[[1;37mINFO^[[1;m Internet connection appears to be down
2025-10-02T15:24:14.4423639Z ::^[[1;37mINFO^[[1;m Mirror ranking is not available
2025-10-02T15:24:14.4424922Z ::^[[1;37mINFO^[[1;m Mirror list is generated using random method
2025-10-02T15:24:14.4425843Z ::^[[1;37mINFO^[[1;m Writing mirror list
2025-10-02T15:24:14.4426752Z ::Global : https://mirrors.cicku.me/manjaro/stable^[[1;m
2025-10-02T15:24:14.4427728Z ::Global : https://mirrors2.manjaro.org/stable^[[1;m
2025-10-02T15:24:14.4430887Z ::Global : https://mirrors.manjaro.org/repo/stable^[[1;m
2025-10-02T15:24:14.4432262Z ::^[[1;37mINFO^[[1;m Mirror list generated and saved to: /etc/pacman.d/mirrorlist
2025-10-02T15:24:14.4601441Z hint: use `pacman-mirrors` to generate and update your pacman mirrorlist.
2025-10-02T15:24:14.4603686Z (14/14) Updating the info directory file...
2025-10-02T15:24:16.8054853Z Backing up pacman-mirrors.conf...
2025-10-02T15:24:16.8071438Z Removing pacman-mirrors & Python packages to ensure clean chroot...
2025-10-02T15:24:16.8164452Z
2025-10-02T15:24:16.8165784Z Packages (9) mpdecimal-4.0.1-1 pacman-mirrors-5.2-1 python-3.13.7-1 python-charset-normalizer-3.4.3-1 python-idna-3.10-2 python-npyscreen-4.10.5-10 python-pytz-2025.2-1 python-requests-2.32.5-1 python-urllib3-2.5.0-1
2025-10-02T15:24:16.8166918Z
2025-10-02T15:24:16.8167165Z Total Removed Size: 73.74 MiB
2025-10-02T15:24:16.8167481Z
2025-10-02T15:24:16.8174136Z :: Do you want to remove these packages? [Y/n]
2025-10-02T15:24:16.8174820Z :: Processing package changes...
2025-10-02T15:24:16.8175306Z removing mpdecimal...
2025-10-02T15:24:16.8254480Z removing pacman-mirrors...
2025-10-02T15:24:16.8371362Z removing python...
2025-10-02T15:24:16.9268689Z removing python-charset-normalizer...
2025-10-02T15:24:16.9298552Z removing python-idna...
2025-10-02T15:24:16.9315226Z removing python-npyscreen...
2025-10-02T15:24:16.9373564Z removing python-pytz...
2025-10-02T15:24:16.9386046Z removing python-requests...
2025-10-02T15:24:16.9410056Z removing python-urllib3...
2025-10-02T15:24:16.9758279Z :: Running post-transaction hooks...
2025-10-02T15:24:16.9758878Z (1/1) Arming ConditionNeedsUpdate...
2025-10-02T15:24:16.9853986Z Restoring pacman-mirrors.conf...
2025-10-02T15:24:16.9870601Z
2025-10-02T15:24:16.9871434Z ^[[1m^[[32m^[[1m:: Populate keyrings.^[[0m
2025-10-02T15:24:17.0089034Z gpg: /etc/pacman.d/gnupg/trustdb.gpg: trustdb created
2025-10-02T15:24:17.0090280Z gpg: no ultimately trusted keys found
2025-10-02T15:24:17.0431197Z gpg: starting migration from earlier GnuPG versions
2025-10-02T15:24:17.0474669Z gpg: porting secret keys from '/etc/pacman.d/gnupg/secring.gpg' to gpg-agent
2025-10-02T15:24:17.0475770Z gpg: migration succeeded
2025-10-02T15:24:17.0505848Z ==> Generating pacman master key. This may take some time.
2025-10-02T15:24:17.0537389Z gpg: Generating pacman keyring master key...
2025-10-02T15:24:17.7533401Z gpg: directory '/etc/pacman.d/gnupg/openpgp-revocs.d' created
2025-10-02T15:24:17.7762771Z gpg: revocation certificate stored as '/etc/pacman.d/gnupg/openpgp-revocs.d/D0836235E49D7FD4385BB03525E769BD7E5927AB.rev'
2025-10-02T15:24:17.7764216Z gpg: Done
2025-10-02T15:24:17.7793416Z ==> Updating trust database...
2025-10-02T15:24:17.7831554Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-02T15:24:17.7832741Z gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-02T15:24:17.8031172Z ==> Appending keys from archlinux.gpg...
2025-10-02T15:24:20.6346733Z ==> Appending keys from manjaro.gpg...
2025-10-02T15:24:21.7063465Z ==> Locally signing trusted keys in keyring...
2025-10-02T15:24:24.3083804Z -> Locally signed 23 keys.
2025-10-02T15:24:24.3105563Z ==> Importing owner trust values...
2025-10-02T15:24:24.3139436Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3140358Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3141101Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3141699Z gpg: inserting ownertrust of 4
2025-10-02T15:24:24.3142162Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3177149Z gpg: inserting ownertrust of 4
2025-10-02T15:24:24.3177939Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3178432Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3179026Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3180142Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3180655Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3181148Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3181620Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3182089Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3182559Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3183245Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3184022Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3184812Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3185623Z gpg: inserting ownertrust of 4
2025-10-02T15:24:24.3186137Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3186586Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3187026Z gpg: setting ownertrust to 4
2025-10-02T15:24:24.3187469Z gpg: inserting ownertrust of 4
2025-10-02T15:24:24.3206820Z ==> Disabling revoked keys in keyring...
2025-10-02T15:24:24.6807251Z -> Disabled 58 keys.
2025-10-02T15:24:24.6831112Z ==> Updating trust database...
2025-10-02T15:24:24.6874061Z gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
2025-10-02T15:24:24.6874956Z gpg: (use option "--allow-weak-key-signatures" to override)
2025-10-02T15:24:24.7165072Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-02T15:24:24.7519702Z gpg: depth: 0 valid: 1 signed: 20 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-02T15:24:24.7843072Z gpg: depth: 1 valid: 20 signed: 102 trust: 0-, 0q, 0n, 20m, 0f, 0u
2025-10-02T15:24:24.8050606Z gpg: depth: 2 valid: 75 signed: 19 trust: 75-, 0q, 0n, 0m, 0f, 0u
2025-10-02T15:24:24.8054459Z gpg: next trustdb check due at 2025-11-16
2025-10-02T15:24:24.8068278Z
2025-10-02T15:24:24.8071078Z ^[[1m^[[32m^[[1m:: Create locale^[[0m
2025-10-02T15:24:24.8129383Z Generating locales...
2025-10-02T15:24:25.2796126Z C.UTF-8... done
2025-10-02T15:24:26.4666442Z en_US.UTF-8... done
2025-10-02T15:24:27.6436182Z de_DE.UTF-8... done
2025-10-02T15:24:27.6437428Z Generation complete.
2025-10-02T15:24:27.6751234Z
2025-10-02T15:24:27.6752502Z ^[[1m^[[32m^[[1m:: Configure branch [unstable]^[[0m
2025-10-02T15:24:27.6796018Z
2025-10-02T15:24:27.6796799Z ^[[1m^[[32m^[[1m:: Update chroot file system^[[0m
2025-10-02T15:24:27.6935694Z :: Synchronizing package databases...
2025-10-02T15:24:28.4680004Z core downloading...
2025-10-02T15:24:28.4681105Z extra downloading...
2025-10-02T15:24:28.4682238Z multilib downloading...
2025-10-02T15:24:28.4683449Z :: Starting full system upgrade...
2025-10-02T15:24:28.6992830Z there is nothing to do
2025-10-02T15:24:28.8200836Z validating keys:
2025-10-02T15:24:28.8220100Z gpg: directory '/build/.gnupg' created
2025-10-02T15:24:30.4997431Z ==> Making package: linux510 5.10.245-1 (Thu 02 Oct 2025 03:24:30 PM UTC)
2025-10-02T15:24:30.5010555Z ==> Checking runtime dependencies...
2025-10-02T15:24:30.5029449Z ==> Checking buildtime dependencies...
2025-10-02T15:24:30.5168626Z ==> Installing missing dependencies...
2025-10-02T15:24:30.7247786Z resolving dependencies...
2025-10-02T15:24:30.7263750Z looking for conflicting packages...
2025-10-02T15:24:30.7274972Z
2025-10-02T15:24:30.7279804Z Packages (37) docbook-xml-4.5-11 libxslt-1.1.43-2 mpdecimal-4.0.1-1 perl-error-0.17030-2 perl-mailtools-2.22-2 perl-timedate-2.33-8 python-3.13.7-1 python-babel-2.17.0-1 python-charset-normalizer-3.4.3-1 python-docutils-1:0.21.2-3 python-idna-3.10-2 python-imagesize-1.4.1-6 python-jinja-1:3.1.6-1 python-markupsafe-3.0.2-1 python-packaging-25.0-1 python-pygments-2.19.2-1 python-pytz-2025.2-1 python-requests-2.32.5-1 python-roman-numerals-py-3.1.0-1 python-snowballstemmer-2.2.0-7 python-sphinx-alabaster-theme-1.0.0-4 python-sphinxcontrib-applehelp-2.0.0-3 python-sphinxcontrib-devhelp-2.0.0-4 python-sphinxcontrib-htmlhelp-2.1.0-3 python-sphinxcontrib-jsmath-1.0.1-19 python-sphinxcontrib-qthelp-2.0.0-3 python-sphinxcontrib-serializinghtml-2.0.0-3 python-urllib3-2.5.0-1 zlib-ng-2.2.5-1 bc-1.08.2-1 cpio-2.15-3 docbook-xsl-1.79.2-9 git-2.51.0-1 inetutils-2.6-1 pahole-1:1.30-2 python-sphinx-8.2.3-1 xmlto-0.0.29-1
2025-10-02T15:24:30.7283815Z
2025-10-02T15:24:30.7284037Z Total Download Size: 22.18 MiB
2025-10-02T15:24:30.7284536Z Total Installed Size: 210.51 MiB
2025-10-02T15:24:30.7284821Z
2025-10-02T15:24:30.7285120Z :: Proceed with installation? [Y/n]
2025-10-02T15:24:30.7285766Z :: Retrieving packages...
2025-10-02T15:24:37.6928768Z git-2.51.0-1-x86_64 downloading...
2025-10-02T15:24:37.6930107Z python-babel-2.17.0-1-any downloading...
2025-10-02T15:24:37.6931139Z python-sphinx-8.2.3-1-any downloading...
2025-10-02T15:24:37.6932183Z python-pygments-2.19.2-1-any downloading...
2025-10-02T15:24:37.6932851Z python-docutils-1:0.21.2-3-any downloading...
2025-10-02T15:24:37.6933489Z docbook-xsl-1.79.2-9-any downloading...
2025-10-02T15:24:37.6934071Z pahole-1:1.30-2-x86_64 downloading...
2025-10-02T15:24:37.6934661Z inetutils-2.6-1-x86_64 downloading...
2025-10-02T15:24:37.6935242Z python-jinja-1:3.1.6-1-any downloading...
2025-10-02T15:24:37.6935834Z cpio-2.15-3-x86_64 downloading...
2025-10-02T15:24:37.6936495Z python-snowballstemmer-2.2.0-7-any downloading...
2025-10-02T15:24:37.6937115Z libxslt-1.1.43-2-x86_64 downloading...
2025-10-02T15:24:37.6937690Z python-packaging-25.0-1-any downloading...
2025-10-02T15:24:37.6938257Z zlib-ng-2.2.5-1-x86_64 downloading...
2025-10-02T15:24:37.6938790Z bc-1.08.2-1-x86_64 downloading...
2025-10-02T15:24:37.6939325Z docbook-xml-4.5-11-any downloading...
2025-10-02T15:24:37.6940107Z perl-mailtools-2.22-2-any downloading...
2025-10-02T15:24:37.6940747Z python-sphinxcontrib-htmlhelp-2.1.0-3-any downloading...
2025-10-02T15:24:37.6941408Z perl-timedate-2.33-8-any downloading...
2025-10-02T15:24:37.6942040Z python-sphinxcontrib-applehelp-2.0.0-3-any downloading...
2025-10-02T15:24:37.6942801Z python-sphinxcontrib-serializinghtml-2.0.0-3-any downloading...
2025-10-02T15:24:37.6943889Z python-sphinxcontrib-qthelp-2.0.0-3-any downloading...
2025-10-02T15:24:37.6944528Z xmlto-0.0.29-1-x86_64 downloading...
2025-10-02T15:24:37.6945148Z python-sphinxcontrib-devhelp-2.0.0-4-any downloading...
2025-10-02T15:24:37.6945802Z perl-error-0.17030-2-any downloading...
2025-10-02T15:24:37.6946404Z python-markupsafe-3.0.2-1-x86_64 downloading...
2025-10-02T15:24:37.6947004Z python-sphinx-alabaster-theme-1.0.0-4-any downloading...
2025-10-02T15:24:37.6947562Z python-imagesize-1.4.1-6-any downloading...
2025-10-02T15:24:37.6948079Z python-roman-numerals-py-3.1.0-1-any downloading...
2025-10-02T15:24:37.6948649Z python-sphinxcontrib-jsmath-1.0.1-19-any downloading...
2025-10-02T15:24:37.6949162Z checking keyring...
2025-10-02T15:24:37.7913705Z checking package integrity...
2025-10-02T15:24:38.3985084Z loading package files...
2025-10-02T15:24:38.4470163Z checking for file conflicts...
2025-10-02T15:24:38.4672312Z checking available disk space...
2025-10-02T15:24:38.4706777Z :: Processing package changes...
2025-10-02T15:24:38.4707728Z installing bc...
2025-10-02T15:24:38.4719937Z installing docbook-xml...
2025-10-02T15:24:38.5645877Z installing libxslt...
2025-10-02T15:24:38.5699047Z Optional dependencies for libxslt
2025-10-02T15:24:38.5700130Z python: Python bindings [pending]
2025-10-02T15:24:38.5700976Z installing docbook-xsl...
2025-10-02T15:24:38.8705581Z installing pahole...
2025-10-02T15:24:38.8758074Z Optional dependencies for pahole
2025-10-02T15:24:38.8758731Z ostra-cg: Generate call graphs from encoded traces
2025-10-02T15:24:38.8759350Z installing mpdecimal...
2025-10-02T15:24:38.8780486Z installing python...
2025-10-02T15:24:39.1854034Z Optional dependencies for python
2025-10-02T15:24:39.1854996Z python-setuptools: for building Python packages using tooling that is usually bundled with Python
2025-10-02T15:24:39.1856096Z python-pip: for installing Python packages using tooling that is usually bundled with Python
2025-10-02T15:24:39.1857063Z python-pipx: for installing Python software not packaged on Arch Linux
2025-10-02T15:24:39.1857867Z sqlite: for a default database integration [installed]
2025-10-02T15:24:39.1858803Z xz: for lzma [installed]
2025-10-02T15:24:39.1859358Z tk: for tkinter
2025-10-02T15:24:39.1860193Z installing python-pytz...
2025-10-02T15:24:39.1874916Z installing python-babel...
2025-10-02T15:24:39.3473037Z installing python-docutils...
2025-10-02T15:24:39.3938546Z Optional dependencies for python-docutils
2025-10-02T15:24:39.3939928Z python-myst-parser: to parse input in "Markdown" (CommonMark) format
2025-10-02T15:24:39.3941124Z python-pillow: for some image manipulation operations
2025-10-02T15:24:39.3942335Z python-pygments: for syntax highlighting of code directives and roles [pending]
2025-10-02T15:24:39.3943483Z installing python-imagesize...
2025-10-02T15:24:39.3954085Z installing python-markupsafe...
2025-10-02T15:24:39.3972626Z installing python-jinja...
2025-10-02T15:24:39.4061326Z Optional dependencies for python-jinja
2025-10-02T15:24:39.4062227Z python-babel: for i18n support [installed]
2025-10-02T15:24:39.4063072Z installing python-packaging...
2025-10-02T15:24:39.4116801Z installing python-pygments...
2025-10-02T15:24:39.5527531Z installing python-charset-normalizer...
2025-10-02T15:24:39.5599591Z installing python-idna...
2025-10-02T15:24:39.5661383Z installing python-urllib3...
2025-10-02T15:24:39.5772436Z Optional dependencies for python-urllib3
2025-10-02T15:24:39.5773164Z python-brotli: Brotli support
2025-10-02T15:24:39.5773657Z python-brotlicffi: Brotli support
2025-10-02T15:24:39.5774140Z python-h2: HTTP/2 support
2025-10-02T15:24:39.5774604Z python-pysocks: SOCKS support
2025-10-02T15:24:39.5775081Z python-zstandard: Zstandard support
2025-10-02T15:24:39.5775564Z installing python-requests...
2025-10-02T15:24:39.5827139Z Optional dependencies for python-requests
2025-10-02T15:24:39.5828012Z python-chardet: alternative character encoding library
2025-10-02T15:24:39.5828913Z python-pysocks: SOCKS proxy support
2025-10-02T15:24:39.5829645Z installing python-roman-numerals-py...
2025-10-02T15:24:39.5840118Z installing python-snowballstemmer...
2025-10-02T15:24:39.5953052Z Optional dependencies for python-snowballstemmer
2025-10-02T15:24:39.5953857Z python-pystemmer: for improved performance
2025-10-02T15:24:39.5954483Z installing python-sphinx-alabaster-theme...
2025-10-02T15:24:39.5973942Z installing python-sphinxcontrib-applehelp...
2025-10-02T15:24:39.6155466Z installing python-sphinxcontrib-devhelp...
2025-10-02T15:24:39.6315049Z installing python-sphinxcontrib-htmlhelp...
2025-10-02T15:24:39.6506024Z installing python-sphinxcontrib-jsmath...
2025-10-02T15:24:39.6521544Z installing python-sphinxcontrib-qthelp...
2025-10-02T15:24:39.7487736Z installing python-sphinxcontrib-serializinghtml...
2025-10-02T15:24:39.8294214Z installing python-sphinx...
2025-10-02T15:24:39.9513328Z Optional dependencies for python-sphinx
2025-10-02T15:24:39.9514598Z imagemagick: for ext.imgconverter
2025-10-02T15:24:39.9515682Z texlive-fontsextra: for the default admonition title icons in PDF output
2025-10-02T15:24:39.9516960Z texlive-latexextra: for generation of PDF documentation
2025-10-02T15:24:39.9517807Z installing perl-error...
2025-10-02T15:24:39.9525791Z installing perl-timedate...
2025-10-02T15:24:39.9574445Z installing perl-mailtools...
2025-10-02T15:24:39.9604289Z installing zlib-ng...
2025-10-02T15:24:39.9626851Z installing git...
2025-10-02T15:24:40.1298386Z Optional dependencies for git
2025-10-02T15:24:40.1299338Z git-zsh-completion: upstream zsh completion
2025-10-02T15:24:40.1300455Z tk: gitk and git gui
2025-10-02T15:24:40.1301205Z openssh: ssh transport and crypto
2025-10-02T15:24:40.1302011Z man: show help with `git command --help`
2025-10-02T15:24:40.1302802Z perl-libwww: git svn
2025-10-02T15:24:40.1303655Z perl-term-readkey: git svn and interactive.singlekey setting
2025-10-02T15:24:40.1304697Z perl-io-socket-ssl: git send-email TLS support
2025-10-02T15:24:40.1305642Z perl-authen-sasl: git send-email TLS support
2025-10-02T15:24:40.1306565Z perl-mediawiki-api: git mediawiki support
2025-10-02T15:24:40.1307762Z perl-datetime-format-iso8601: git mediawiki support
2025-10-02T15:24:40.1308748Z perl-lwp-protocol-https: git mediawiki https support
2025-10-02T15:24:40.1309869Z perl-cgi: gitweb (web interface) support
2025-10-02T15:24:40.1310686Z python: git svn & git p4 [installed]
2025-10-02T15:24:40.1311501Z subversion: git svn
2025-10-02T15:24:40.1312338Z org.freedesktop.secrets: keyring credential helper
2025-10-02T15:24:40.1313351Z libsecret: libsecret credential helper [installed]
2025-10-02T15:24:40.1314253Z less: the default pager for git
2025-10-02T15:24:40.1315058Z installing inetutils...
2025-10-02T15:24:40.2043127Z installing xmlto...
2025-10-02T15:24:40.2075671Z installing cpio...
2025-10-02T15:24:40.3334754Z :: Running post-transaction hooks...
2025-10-02T15:24:40.3335469Z (1/5) Creating system user accounts...
2025-10-02T15:24:40.4061551Z Creating group 'git' with GID 971.
2025-10-02T15:24:40.4064584Z Creating user 'git' (git daemon user) with UID 971 and GID 971.
2025-10-02T15:24:40.4068877Z Creating group '_talkd' with GID 970.
2025-10-02T15:24:40.4072834Z Creating user '_talkd' (User for legacy talkd server) with UID 970 and GID 970.
2025-10-02T15:24:40.4146704Z (2/5) Reloading system manager configuration...
2025-10-02T15:24:40.4830956Z Skipped: Running in chroot.
2025-10-02T15:24:40.4832159Z (3/5) Arming ConditionNeedsUpdate...
2025-10-02T15:24:40.5501033Z (4/5) Checking for old perl modules...
2025-10-02T15:24:40.6176167Z (5/5) Updating the info directory file...
2025-10-02T15:24:40.7744567Z ==> Retrieving sources...
2025-10-02T15:24:40.7794555Z -> Found linux-5.10.tar.xz
2025-10-02T15:24:40.7838380Z -> Found patch-5.10.245.xz
2025-10-02T15:24:40.7883315Z -> Found config
2025-10-02T15:24:40.7927184Z -> Found config.anbox
2025-10-02T15:24:40.7972454Z -> Found linux-5.10.236-std-gnu11.patch
2025-10-02T15:24:40.8017713Z -> Found 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-CLONE_NEWUSER.patch
2025-10-02T15:24:40.8063123Z -> Found 0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_special_driver-list.patch
2025-10-02T15:24:40.8107718Z -> Found 0101-i2c-nuvoton-nc677x-hwmon-driver.patch
2025-10-02T15:24:40.8152076Z -> Found 0102-iomap-iomap_bmap-should-accept-unwritten-maps.patch
2025-10-02T15:24:40.8196576Z -> Found 0104-revert-xhci-Add-support-for-Renesas-controller-with-memory.patch
2025-10-02T15:24:40.8242422Z -> Found 0107-quirk-kernel-org-bug-210681-firmware_rome_error.patch
2025-10-02T15:24:40.8290743Z -> Found 0999-patch_realtek.patch
2025-10-02T15:24:40.8325147Z ==> Validating source files with sha256sums...
2025-10-02T15:24:40.9254354Z linux-5.10.tar.xz ... Passed
2025-10-02T15:24:40.9384801Z patch-5.10.245.xz ... Passed
2025-10-02T15:24:40.9465042Z config ... Passed
2025-10-02T15:24:40.9543015Z config.anbox ... Passed
2025-10-02T15:24:40.9620234Z linux-5.10.236-std-gnu11.patch ... Passed
2025-10-02T15:24:40.9698446Z 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-CLONE_NEWUSER.patch ... Passed
2025-10-02T15:24:40.9778549Z 0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_special_driver-list.patch ... Passed
2025-10-02T15:24:40.9855316Z 0101-i2c-nuvoton-nc677x-hwmon-driver.patch ... Passed
2025-10-02T15:24:40.9932407Z 0102-iomap-iomap_bmap-should-accept-unwritten-maps.patch ... Passed
2025-10-02T15:24:41.0011799Z 0104-revert-xhci-Add-support-for-Renesas-controller-with-memory.patch ... Passed
2025-10-02T15:24:41.0091462Z 0107-quirk-kernel-org-bug-210681-firmware_rome_error.patch ... Passed
2025-10-02T15:24:41.0168005Z 0999-patch_realtek.patch ... Passed
2025-10-02T15:24:41.0414582Z ==> Extracting sources...
2025-10-02T15:24:41.1017224Z -> Extracting linux-5.10.tar.xz with bsdtar
2025-10-02T15:24:49.7746791Z -> Extracting patch-5.10.245.xz with xz
2025-10-02T15:24:50.1853434Z ==> Starting prepare()...
2025-10-02T15:24:50.1854273Z ==> add upstream patch
2025-10-02T15:24:50.1863134Z patching file .gitignore
2025-10-02T15:24:50.1864670Z patching file Documentation/ABI/testing/configfs-usb-gadget-uvc
2025-10-02T15:24:50.1865601Z patching file Documentation/ABI/testing/evm
2025-10-02T15:24:50.1866456Z patching file Documentation/ABI/testing/sysfs-ata
2025-10-02T15:24:50.1868338Z patching file Documentation/ABI/testing/sysfs-bus-iio
2025-10-02T15:24:50.1870894Z patching file Documentation/ABI/testing/sysfs-bus-iio-lptimer-stm32
2025-10-02T15:24:50.1872002Z patching file Documentation/ABI/testing/sysfs-bus-iio-vf610
2025-10-02T15:24:50.1873073Z patching file Documentation/ABI/testing/sysfs-bus-optee-devices
2025-10-02T15:24:50.1880625Z patching file Documentation/ABI/testing/sysfs-bus-papr-pmem
2025-10-02T15:24:50.1881455Z patching file Documentation/ABI/testing/sysfs-bus-pci
2025-10-02T15:24:50.1882148Z patching file Documentation/ABI/testing/sysfs-bus-usb
2025-10-02T15:24:50.1882759Z patching file Documentation/ABI/testing/sysfs-class-devfreq
2025-10-02T15:24:50.1883469Z patching file Documentation/ABI/testing/sysfs-class-devlink
2025-10-02T15:24:50.1884080Z patching file Documentation/ABI/testing/sysfs-class-net-queues
2025-10-02T15:24:50.1884817Z patching file Documentation/ABI/testing/sysfs-class-net-statistics
2025-10-02T15:24:50.1885456Z patching file Documentation/ABI/testing/sysfs-devices-consumer
2025-10-02T15:24:50.1886059Z patching file Documentation/ABI/testing/sysfs-devices-memory
2025-10-02T15:24:50.1886795Z patching file Documentation/ABI/testing/sysfs-devices-removable
2025-10-02T15:24:50.1887515Z patching file Documentation/ABI/testing/sysfs-devices-supplier
2025-10-02T15:24:50.1888203Z patching file Documentation/ABI/testing/sysfs-devices-system-cpu
2025-10-02T15:24:50.1888850Z patching file Documentation/ABI/testing/sysfs-driver-ufs
2025-10-02T15:24:50.1890137Z patching file Documentation/ABI/testing/sysfs-driver-xen-blkback
2025-10-02T15:24:50.1891071Z patching file Documentation/ABI/testing/sysfs-driver-xen-blkfront
2025-10-02T15:24:50.1891859Z patching file Documentation/ABI/testing/sysfs-kernel-oops_count
2025-10-02T15:24:50.1892593Z patching file Documentation/ABI/testing/sysfs-kernel-warn_count
2025-10-02T15:24:50.1893228Z patching file Documentation/ABI/testing/sysfs-platform-asus-wmi
2025-10-02T15:24:50.1893924Z patching file Documentation/accounting/psi.rst
2025-10-02T15:24:50.1894494Z patching file Documentation/admin-guide/cgroup-v1/memory.rst
2025-10-02T15:24:50.1896153Z patching file Documentation/admin-guide/device-mapper/dm-integrity.rst
2025-10-02T15:24:50.1898399Z patching file Documentation/admin-guide/devices.txt
2025-10-02T15:24:50.1901782Z patching file Documentation/admin-guide/hw-vuln/gather_data_sampling.rst
2025-10-02T15:24:50.1902993Z patching file Documentation/admin-guide/hw-vuln/index.rst
2025-10-02T15:24:50.1904205Z patching file Documentation/admin-guide/hw-vuln/indirect-target-selection.rst
2025-10-02T15:24:50.1905538Z patching file Documentation/admin-guide/hw-vuln/processor_mmio_stale_data.rst
2025-10-02T15:24:50.1906895Z patching file Documentation/admin-guide/hw-vuln/reg-file-data-sampling.rst
2025-10-02T15:24:50.1908422Z patching file Documentation/admin-guide/hw-vuln/spectre.rst
2025-10-02T15:24:50.1910523Z patching file Documentation/admin-guide/hw-vuln/srso.rst
2025-10-02T15:24:50.1911880Z patching file Documentation/admin-guide/hw-vuln/vmscape.rst
2025-10-02T15:24:50.1913096Z patching file Documentation/admin-guide/kdump/gdbmacros.txt
2025-10-02T15:24:50.1917524Z patching file Documentation/admin-guide/kernel-parameters.txt
2025-10-02T15:24:50.1923048Z patching file Documentation/admin-guide/mm/memory-hotplug.rst
2025-10-02T15:24:50.1923974Z patching file Documentation/admin-guide/perf/arm-cmn.rst
2025-10-02T15:24:50.1924973Z patching file Documentation/admin-guide/pm/cpuidle.rst
2025-10-02T15:24:50.1926588Z patching file Documentation/admin-guide/security-bugs.rst
2025-10-02T15:24:50.1927862Z patching file Documentation/admin-guide/sysctl/kernel.rst
2025-10-02T15:24:50.1930105Z patching file Documentation/admin-guide/sysctl/net.rst
2025-10-02T15:24:50.1931311Z patching file Documentation/admin-guide/sysctl/vm.rst
2025-10-02T15:24:50.1933107Z patching file Documentation/arm/memory.rst
2025-10-02T15:24:50.1933850Z patching file Documentation/arm64/cpu-feature-registers.rst
2025-10-02T15:24:50.1935068Z patching file Documentation/arm64/elf_hwcaps.rst
2025-10-02T15:24:50.1935952Z patching file Documentation/arm64/silicon-errata.rst
2025-10-02T15:24:50.1937951Z patching file Documentation/arm64/tagged-address-abi.rst
2025-10-02T15:24:50.1938994Z patching file Documentation/asm-annotations.rst
2025-10-02T15:24:50.1940150Z patching file Documentation/atomic_bitops.txt
2025-10-02T15:24:50.1941224Z patching file Documentation/block/queue-sysfs.rst
2025-10-02T15:24:50.1942194Z patching file Documentation/conf.py
2025-10-02T15:24:50.1943724Z patching file Documentation/core-api/kernel-api.rst
2025-10-02T15:24:50.1944862Z patching file Documentation/dev-tools/gdb-kernel-debugging.rst
2025-10-02T15:24:50.1946018Z patching file Documentation/devicetree/bindings/arm/omap/omap.txt
2025-10-02T15:24:50.1947174Z patching file Documentation/devicetree/bindings/arm/qcom.yaml
2025-10-02T15:24:50.1948297Z patching file Documentation/devicetree/bindings/arm/tegra.yaml
2025-10-02T15:24:50.1949649Z patching file Documentation/devicetree/bindings/clock/adi,axi-clkgen.yaml
2025-10-02T15:24:50.1950922Z patching file Documentation/devicetree/bindings/clock/axi-clkgen.txt
2025-10-02T15:24:50.1952179Z patching file Documentation/devicetree/bindings/clock/qcom,gcc-msm8996.yaml
2025-10-02T15:24:50.1953495Z patching file Documentation/devicetree/bindings/clock/xlnx,versal-clk.yaml
2025-10-02T15:24:50.1954909Z patching file Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
2025-10-02T15:24:50.1956325Z patching file Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
2025-10-02T15:24:50.1957657Z patching file Documentation/devicetree/bindings/display/bridge/sii902x.txt
2025-10-02T15:24:50.1959249Z patching file Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
2025-10-02T15:24:50.1960832Z patching file Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
2025-10-02T15:24:50.1962250Z patching file Documentation/devicetree/bindings/dma/allwinner,sun50i-a64-dma.yaml
2025-10-02T15:24:50.1963587Z patching file Documentation/devicetree/bindings/dma/moxa,moxart-dma.txt
2025-10-02T15:24:50.1964804Z patching file Documentation/devicetree/bindings/gpio/gpio-altera.txt
2025-10-02T15:24:50.1966123Z patching file Documentation/devicetree/bindings/i2c/google,cros-ec-i2c-tunnel.yaml
2025-10-02T15:24:50.1967407Z patching file Documentation/devicetree/bindings/i2c/i2c-at91.txt
2025-10-02T15:24:50.1968617Z patching file Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
2025-10-02T15:24:50.1970119Z patching file Documentation/devicetree/bindings/media/renesas,vin.yaml
2025-10-02T15:24:50.1971362Z patching file Documentation/devicetree/bindings/mmc/mmc-controller.yaml
2025-10-02T15:24:50.1972596Z patching file Documentation/devicetree/bindings/mtd/gpmc-nand.txt
2025-10-02T15:24:50.1973797Z patching file Documentation/devicetree/bindings/mtd/nand-controller.yaml
2025-10-02T15:24:50.1975005Z patching file Documentation/devicetree/bindings/net/btusb.txt
2025-10-02T15:24:50.1976155Z patching file Documentation/devicetree/bindings/net/can/tcan4x5x.txt
2025-10-02T15:24:50.1977402Z patching file Documentation/devicetree/bindings/net/ethernet-controller.yaml
2025-10-02T15:24:50.1978681Z patching file Documentation/devicetree/bindings/net/ethernet-phy.yaml
2025-10-02T15:24:50.1980110Z patching file Documentation/devicetree/bindings/net/renesas,etheravb.yaml
2025-10-02T15:24:50.1981375Z patching file Documentation/devicetree/bindings/nvmem/mxs-ocotp.yaml
2025-10-02T15:24:50.1982656Z patching file Documentation/devicetree/bindings/phy/amlogic,g12a-usb2-phy.yaml
2025-10-02T15:24:50.1984097Z patching file Documentation/devicetree/bindings/phy/amlogic,g12a-usb3-pcie-phy.yaml
2025-10-02T15:24:50.1985575Z patching file Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb2-phy.yaml
2025-10-02T15:24:50.1987258Z patching file Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb3-pcie-phy.yaml
2025-10-02T15:24:50.1988773Z patching file Documentation/devicetree/bindings/pinctrl/aspeed,ast2600-pinctrl.yaml
2025-10-02T15:24:50.1990442Z patching file Documentation/devicetree/bindings/pinctrl/marvell,armada-37xx-pinctrl.txt
2025-10-02T15:24:50.1991943Z patching file Documentation/devicetree/bindings/regulator/nxp,pca9450-regulator.yaml
2025-10-02T15:24:50.1993347Z patching file Documentation/devicetree/bindings/regulator/samsung,s5m8767.txt
2025-10-02T15:24:50.1994665Z patching file Documentation/devicetree/bindings/riscv/sifive-l2-cache.yaml
2025-10-02T15:24:50.1995890Z patching file Documentation/devicetree/bindings/rtc/rtc.yaml
2025-10-02T15:24:50.1997008Z patching file Documentation/devicetree/bindings/serial/8250.yaml
2025-10-02T15:24:50.1998221Z patching file Documentation/devicetree/bindings/serial/renesas,scif.yaml
2025-10-02T15:24:50.1999441Z patching file Documentation/devicetree/bindings/serial/rs485.yaml
2025-10-02T15:24:50.2000803Z patching file Documentation/devicetree/bindings/serial/st,stm32-uart.yaml
2025-10-02T15:24:50.2002181Z patching file Documentation/devicetree/bindings/sound/amlogic,gx-sound-card.yaml
2025-10-02T15:24:50.2003460Z patching file Documentation/devicetree/bindings/sound/mt6359.yaml
2025-10-02T15:24:50.2004632Z patching file Documentation/devicetree/bindings/sound/qcom,wcd9335.txt
2025-10-02T15:24:50.2005825Z patching file Documentation/devicetree/bindings/sound/rt5645.txt
2025-10-02T15:24:50.2006978Z patching file Documentation/devicetree/bindings/sound/tas2562.yaml
2025-10-02T15:24:50.2008140Z patching file Documentation/devicetree/bindings/sound/tas2764.yaml
2025-10-02T15:24:50.2009293Z patching file Documentation/devicetree/bindings/sound/tas2770.yaml
2025-10-02T15:24:50.2010685Z patching file Documentation/devicetree/bindings/spi/qcom,spi-qcom-qspi.yaml
2025-10-02T15:24:50.2012173Z patching file Documentation/devicetree/bindings/spi/spi-mxic.txt
2025-10-02T15:24:50.2013413Z patching file Documentation/devicetree/bindings/thermal/thermal-zones.yaml
2025-10-02T15:24:50.2014687Z patching file Documentation/devicetree/bindings/usb/cdns,usb3.yaml
2025-10-02T15:24:50.2015861Z patching file Documentation/devicetree/bindings/vendor-prefixes.yaml
2025-10-02T15:24:50.2017103Z patching file Documentation/devicetree/bindings/watchdog/samsung-wdt.yaml
2025-10-02T15:24:50.2018216Z patching file Documentation/dontdiff
2025-10-02T15:24:50.2019164Z patching file Documentation/driver-api/dmaengine/dmatest.rst
2025-10-02T15:24:50.2020607Z patching file Documentation/driver-api/early-userspace/early_userspace_support.rst
2025-10-02T15:24:50.2021859Z patching file Documentation/driver-api/firewire.rst
2025-10-02T15:24:50.2022900Z patching file Documentation/driver-api/fpga/fpga-bridge.rst
2025-10-02T15:24:50.2023974Z patching file Documentation/driver-api/fpga/fpga-mgr.rst
2025-10-02T15:24:50.2025099Z patching file Documentation/driver-api/fpga/fpga-programming.rst
2025-10-02T15:24:50.2026215Z patching file Documentation/driver-api/fpga/fpga-region.rst
2025-10-02T15:24:50.2027227Z patching file Documentation/driver-api/ipmi.rst
2025-10-02T15:24:50.2028194Z patching file Documentation/driver-api/spi.rst
2025-10-02T15:24:50.2029123Z patching file Documentation/driver-api/vfio.rst
2025-10-02T15:24:50.2030267Z patching file Documentation/driver-api/xilinx/eemi.rst
2025-10-02T15:24:50.2031356Z patching file Documentation/fault-injection/fault-injection.rst
2025-10-02T15:24:50.2032489Z patching file Documentation/fault-injection/provoke-crashes.rst
2025-10-02T15:24:50.2033624Z patching file Documentation/filesystems/autofs-mount-control.rst
2025-10-02T15:24:50.2034687Z patching file Documentation/filesystems/autofs.rst
2025-10-02T15:24:50.2035737Z patching file Documentation/filesystems/directory-locking.rst
2025-10-02T15:24:50.2036842Z patching file Documentation/filesystems/ext4/attributes.rst
2025-10-02T15:24:50.2037858Z patching file Documentation/filesystems/f2fs.rst
2025-10-02T15:24:50.2038811Z patching file Documentation/filesystems/files.rst
2025-10-02T15:24:50.2040147Z patching file Documentation/filesystems/fscrypt.rst
2025-10-02T15:24:50.2041140Z patching file Documentation/filesystems/locking.rst
2025-10-02T15:24:50.2042121Z patching file Documentation/filesystems/mount_api.rst
2025-10-02T15:24:50.2043142Z patching file Documentation/filesystems/nfs/exporting.rst
2025-10-02T15:24:50.2044172Z patching file Documentation/filesystems/overlayfs.rst
2025-10-02T15:24:50.2045180Z patching file Documentation/filesystems/porting.rst
2025-10-02T15:24:50.2046269Z patching file Documentation/filesystems/ramfs-rootfs-initramfs.rst
2025-10-02T15:24:50.2047364Z patching file Documentation/filesystems/seq_file.rst
2025-10-02T15:24:50.2048333Z patching file Documentation/filesystems/vfs.rst
2025-10-02T15:24:50.2049349Z patching file Documentation/firmware-guide/acpi/apei/einj.rst
2025-10-02T15:24:50.2050751Z patching file Documentation/firmware-guide/acpi/dsd/data-node-references.rst
2025-10-02T15:24:50.2051989Z patching file Documentation/firmware-guide/acpi/i2c-muxes.rst
2025-10-02T15:24:50.2052973Z patching file Documentation/gpu/todo.rst
2025-10-02T15:24:50.2053844Z patching file Documentation/hwmon/lm90.rst
2025-10-02T15:24:50.2054738Z patching file Documentation/hwmon/max31790.rst
2025-10-02T15:24:50.2055703Z patching file Documentation/input/joydev/joystick.rst
2025-10-02T15:24:50.2056711Z patching file Documentation/kbuild/gcc-plugins.rst
2025-10-02T15:24:50.2057717Z patching file Documentation/kernel-hacking/locking.rst
2025-10-02T15:24:50.2058700Z patching file Documentation/locking/hwspinlock.rst
2025-10-02T15:24:50.2059823Z patching file Documentation/locking/locktypes.rst
2025-10-02T15:24:50.2060770Z patching file Documentation/locking/seqlock.rst
2025-10-02T15:24:50.2061701Z patching file Documentation/memory-barriers.txt
2025-10-02T15:24:50.2063665Z patching file Documentation/networking/af_xdp.rst
2025-10-02T15:24:50.2066082Z patching file Documentation/networking/bonding.rst
2025-10-02T15:24:50.2068917Z patching file Documentation/networking/decnet.rst
2025-10-02T15:24:50.2071007Z patching file Documentation/networking/device_drivers/ethernet/intel/ixgbe.rst
2025-10-02T15:24:50.2072236Z patching file Documentation/networking/index.rst
2025-10-02T15:24:50.2073809Z patching file Documentation/networking/ip-sysctl.rst
2025-10-02T15:24:50.2077068Z patching file Documentation/networking/ipvs-sysctl.rst
2025-10-02T15:24:50.2078091Z patching file Documentation/networking/j1939.rst
2025-10-02T15:24:50.2079108Z patching file Documentation/networking/netdev-FAQ.rst
2025-10-02T15:24:50.2080769Z patching file Documentation/networking/netdevices.rst
2025-10-02T15:24:50.2082206Z patching file Documentation/powerpc/associativity.rst
2025-10-02T15:24:50.2083550Z patching file Documentation/powerpc/index.rst
2025-10-02T15:24:50.2084527Z patching file Documentation/powerpc/syscall64-abi.rst
2025-10-02T15:24:50.2085676Z patching file Documentation/process/code-of-conduct-interpretation.rst
2025-10-02T15:24:50.2086828Z patching file Documentation/process/deprecated.rst
2025-10-02T15:24:50.2087894Z patching file Documentation/process/stable-kernel-rules.rst
2025-10-02T15:24:50.2088980Z patching file Documentation/process/submitting-patches.rst
2025-10-02T15:24:50.2090601Z patching file Documentation/scsi/libsas.rst
2025-10-02T15:24:50.2092133Z patching file Documentation/scsi/scsi_mid_low_api.rst
2025-10-02T15:24:50.2094658Z patching file Documentation/security/keys/core.rst
2025-10-02T15:24:50.2097487Z patching file Documentation/sound/alsa-configuration.rst
2025-10-02T15:24:50.2100086Z patching file Documentation/sound/hd-audio/models.rst
2025-10-02T15:24:50.2101458Z patching file Documentation/sound/soc/dapm.rst
2025-10-02T15:24:50.2102679Z patching file Documentation/sphinx/kernel_include.py
2025-10-02T15:24:50.2103727Z patching file Documentation/sphinx/load_config.py
2025-10-02T15:24:50.2104615Z patching file Documentation/sphinx/parse-headers.pl
2025-10-02T15:24:50.2105520Z patching file Documentation/target/tcm_mod_builder.py
2025-10-02T15:24:50.2106922Z patching file Documentation/timers/no_hz.rst
2025-10-02T15:24:50.2108141Z patching file Documentation/trace/events.rst
2025-10-02T15:24:50.2111017Z patching file Documentation/trace/ftrace.rst
2025-10-02T15:24:50.2114456Z patching file Documentation/trace/histogram.rst
2025-10-02T15:24:50.2117153Z patching file Documentation/trace/postprocess/decode_msr.py
2025-10-02T15:24:50.2118100Z patching file Documentation/trace/postprocess/trace-pagealloc-postprocess.pl
2025-10-02T15:24:50.2119063Z patching file Documentation/trace/postprocess/trace-vmscan-postprocess.pl
2025-10-02T15:24:50.2121209Z patching file Documentation/translations/it_IT/kernel-hacking/locking.rst
2025-10-02T15:24:50.2123014Z patching file Documentation/userspace-api/ioctl/ioctl-number.rst
2025-10-02T15:24:50.2125360Z patching file Documentation/userspace-api/media/v4l/ext-ctrls-codec.rst
2025-10-02T15:24:50.2129342Z patching file Documentation/userspace-api/media/v4l/subdev-formats.rst
2025-10-02T15:24:50.2132629Z patching file Documentation/userspace-api/seccomp_filter.rst
2025-10-02T15:24:50.2135601Z patching file Documentation/virt/kvm/api.rst
2025-10-02T15:24:50.2139874Z patching file Documentation/virt/kvm/devices/vm.rst
2025-10-02T15:24:50.2141125Z patching file Documentation/virt/kvm/mmu.rst
2025-10-02T15:24:50.2142409Z patching file Documentation/vm/arch_pgtable_helpers.rst
2025-10-02T15:24:50.2143604Z patching file Documentation/vm/memory-model.rst
2025-10-02T15:24:50.2144631Z patching file Documentation/vm/slub.rst
2025-10-02T15:24:50.2145971Z patching file Documentation/x86/mds.rst
2025-10-02T15:24:50.2147045Z patching file Documentation/x86/topology.rst
2025-10-02T15:24:50.2157272Z patching file MAINTAINERS
2025-10-02T15:24:50.2167631Z patching file Makefile
2025-10-02T15:24:50.2171246Z patching file arch/Kconfig
2025-10-02T15:24:50.2172989Z patching file arch/alpha/boot/tools/objstrip.c
2025-10-02T15:24:50.2173701Z patching file arch/alpha/include/asm/bugs.h
2025-10-02T15:24:50.2174740Z patching file arch/alpha/include/asm/elf.h
2025-10-02T15:24:50.2175923Z patching file arch/alpha/include/asm/io.h
2025-10-02T15:24:50.2177302Z patching file arch/alpha/include/asm/local64.h
2025-10-02T15:24:50.2178109Z patching file arch/alpha/include/asm/pgtable.h
2025-10-02T15:24:50.2179368Z patching file arch/alpha/include/asm/processor.h
2025-10-02T15:24:50.2180395Z patching file arch/alpha/include/asm/thread_info.h
2025-10-02T15:24:50.2181347Z patching file arch/alpha/include/asm/timex.h
2025-10-02T15:24:50.2182195Z patching file arch/alpha/include/uapi/asm/ptrace.h
2025-10-02T15:24:50.2183027Z patching file arch/alpha/kernel/asm-offsets.c
2025-10-02T15:24:50.2183973Z patching file arch/alpha/kernel/entry.S
2025-10-02T15:24:50.2185696Z patching file arch/alpha/kernel/module.c
2025-10-02T15:24:50.2186822Z patching file arch/alpha/kernel/osf_sys.c
2025-10-02T15:24:50.2188608Z patching file arch/alpha/kernel/process.c
2025-10-02T15:24:50.2189731Z patching file arch/alpha/kernel/rtc.c
2025-10-02T15:24:50.2191223Z patching file arch/alpha/kernel/setup.c
2025-10-02T15:24:50.2192890Z patching file arch/alpha/kernel/signal.c
2025-10-02T15:24:50.2193972Z patching file arch/alpha/kernel/smp.c
2025-10-02T15:24:50.2195431Z patching file arch/alpha/kernel/srmcons.c
2025-10-02T15:24:50.2196365Z patching file arch/alpha/kernel/traps.c
2025-10-02T15:24:50.2198031Z patching file arch/alpha/mm/fault.c
2025-10-02T15:24:50.2198825Z patching file arch/arc/Makefile
2025-10-02T15:24:50.2199852Z patching file arch/arc/boot/Makefile
2025-10-02T15:24:50.2200842Z patching file arch/arc/boot/dts/hsdk.dts
2025-10-02T15:24:50.2201840Z patching file arch/arc/include/asm/Kbuild
2025-10-02T15:24:50.2202893Z patching file arch/arc/include/asm/io.h
2025-10-02T15:24:50.2203843Z patching file arch/arc/include/asm/linkage.h
2025-10-02T15:24:50.2204744Z patching file arch/arc/include/asm/page.h
2025-10-02T15:24:50.2205683Z patching file arch/arc/include/asm/pgtable.h
2025-10-02T15:24:50.2206847Z patching file arch/arc/include/asm/thread_info.h
2025-10-02T15:24:50.2207845Z patching file arch/arc/include/uapi/asm/page.h
2025-10-02T15:24:50.2208741Z patching file arch/arc/include/uapi/asm/sigcontext.h
2025-10-02T15:24:50.2209888Z patching file arch/arc/kernel/entry.S
2025-10-02T15:24:50.2211018Z patching file arch/arc/kernel/fpu.c
2025-10-02T15:24:50.2211894Z patching file arch/arc/kernel/process.c
2025-10-02T15:24:50.2212964Z patching file arch/arc/kernel/signal.c
2025-10-02T15:24:50.2214279Z patching file arch/arc/kernel/smp.c
2025-10-02T15:24:50.2215295Z patching file arch/arc/kernel/vmlinux.lds.S
2025-10-02T15:24:50.2216485Z patching file arch/arc/mm/cache.c
2025-10-02T15:24:50.2218068Z patching file arch/arc/mm/init.c
2025-10-02T15:24:50.2218996Z patching file arch/arc/mm/ioremap.c
2025-10-02T15:24:50.2220325Z patching file arch/arc/mm/tlb.c
2025-10-02T15:24:50.2222758Z patching file arch/arm/Kconfig
2025-10-02T15:24:50.2225379Z patching file arch/arm/Kconfig.debug
2025-10-02T15:24:50.2227686Z patching file arch/arm/Makefile
2025-10-02T15:24:50.2228894Z patching file arch/arm/boot/compressed/Makefile
2025-10-02T15:24:50.2230077Z patching file arch/arm/boot/compressed/atags_to_fdt.c
2025-10-02T15:24:50.2231112Z patching file arch/arm/boot/compressed/decompress.c
2025-10-02T15:24:50.2232107Z patching file arch/arm/boot/compressed/efi-header.S
2025-10-02T15:24:50.2233067Z patching file arch/arm/boot/compressed/head.S
2025-10-02T15:24:50.2235419Z patching file arch/arm/boot/dts/Makefile
2025-10-02T15:24:50.2236950Z patching file arch/arm/boot/dts/am335x-baltos.dtsi
2025-10-02T15:24:50.2238151Z patching file arch/arm/boot/dts/am335x-bone-common.dtsi
2025-10-02T15:24:50.2239391Z patching file arch/arm/boot/dts/am335x-cm-t335.dts
2025-10-02T15:24:50.2253966Z patching file arch/arm/boot/dts/am335x-evmsk.dts
2025-10-02T15:24:50.2254955Z patching file arch/arm/boot/dts/am335x-guardian.dts
2025-10-02T15:24:50.2256166Z patching file arch/arm/boot/dts/am335x-moxa-uc-2100-common.dtsi
2025-10-02T15:24:50.2257272Z patching file arch/arm/boot/dts/am335x-moxa-uc-8100-common.dtsi
2025-10-02T15:24:50.2258343Z patching file arch/arm/boot/dts/am335x-pcm-953.dtsi
2025-10-02T15:24:50.2259279Z patching file arch/arm/boot/dts/am33xx-l4.dtsi
2025-10-02T15:24:50.2260367Z patching file arch/arm/boot/dts/am33xx.dtsi
2025-10-02T15:24:50.2261248Z patching file arch/arm/boot/dts/am3517-evm.dts
2025-10-02T15:24:50.2262165Z patching file arch/arm/boot/dts/am3517-som.dtsi
2025-10-02T15:24:50.2263106Z patching file arch/arm/boot/dts/am437x-gp-evm.dts
2025-10-02T15:24:50.2264059Z patching file arch/arm/boot/dts/am437x-l4.dtsi
2025-10-02T15:24:50.2264989Z patching file arch/arm/boot/dts/am43x-epos-evm.dts
2025-10-02T15:24:50.2265940Z patching file arch/arm/boot/dts/am5718.dtsi
2025-10-02T15:24:50.2266875Z patching file arch/arm/boot/dts/am57xx-cl-som-am57x.dts
2025-10-02T15:24:50.2267917Z patching file arch/arm/boot/dts/arm-realview-pb1176.dts
2025-10-02T15:24:50.2268918Z patching file arch/arm/boot/dts/armada-370.dtsi
2025-10-02T15:24:50.2270045Z patching file arch/arm/boot/dts/armada-375.dtsi
2025-10-02T15:24:50.2270986Z patching file arch/arm/boot/dts/armada-380.dtsi
2025-10-02T15:24:50.2271975Z patching file arch/arm/boot/dts/armada-385-turris-omnia.dts
2025-10-02T15:24:50.2272979Z patching file arch/arm/boot/dts/armada-385.dtsi
2025-10-02T15:24:50.2273938Z patching file arch/arm/boot/dts/armada-388-helios4.dts
2025-10-02T15:24:50.2274933Z patching file arch/arm/boot/dts/armada-38x.dtsi
2025-10-02T15:24:50.2275858Z patching file arch/arm/boot/dts/armada-39x.dtsi
2025-10-02T15:24:50.2276822Z patching file arch/arm/boot/dts/armada-xp-98dx3236.dtsi
2025-10-02T15:24:50.2277840Z patching file arch/arm/boot/dts/armada-xp-mv78230.dtsi
2025-10-02T15:24:50.2278846Z patching file arch/arm/boot/dts/armada-xp-mv78260.dtsi
2025-10-02T15:24:50.2279992Z patching file arch/arm/boot/dts/aspeed-ast2500-evb.dts
2025-10-02T15:24:50.2280987Z patching file arch/arm/boot/dts/aspeed-ast2600-evb.dts
2025-10-02T15:24:50.2282062Z patching file arch/arm/boot/dts/aspeed-bmc-facebook-tiogapass.dts
2025-10-02T15:24:50.2283180Z patching file arch/arm/boot/dts/aspeed-bmc-ibm-rainier.dts
2025-10-02T15:24:50.2284394Z patching file arch/arm/boot/dts/aspeed-bmc-intel-s2600wf.dts
2025-10-02T15:24:50.2285446Z patching file arch/arm/boot/dts/aspeed-bmc-opp-tacoma.dts
2025-10-02T15:24:50.2286433Z patching file arch/arm/boot/dts/aspeed-g4.dtsi
2025-10-02T15:24:50.2287349Z patching file arch/arm/boot/dts/aspeed-g5.dtsi
2025-10-02T15:24:50.2288307Z patching file arch/arm/boot/dts/aspeed-g6-pinctrl.dtsi
2025-10-02T15:24:50.2289432Z patching file arch/arm/boot/dts/aspeed-g6.dtsi
2025-10-02T15:24:50.2291113Z patching file arch/arm/boot/dts/at91-kizbox3_common.dtsi
2025-10-02T15:24:50.2292281Z patching file arch/arm/boot/dts/at91-sam9x60ek.dts
2025-10-02T15:24:50.2293976Z patching file arch/arm/boot/dts/at91-sama5d27_som1.dtsi
2025-10-02T15:24:50.2295021Z patching file arch/arm/boot/dts/at91-sama5d27_som1_ek.dts
2025-10-02T15:24:50.2296095Z patching file arch/arm/boot/dts/at91-sama5d27_wlsom1.dtsi
2025-10-02T15:24:50.2297341Z patching file arch/arm/boot/dts/at91-sama5d27_wlsom1_ek.dts
2025-10-02T15:24:50.2298572Z patching file arch/arm/boot/dts/at91-sama5d2_icp.dts
2025-10-02T15:24:50.2300496Z patching file arch/arm/boot/dts/at91-sama5d2_ptc_ek.dts
2025-10-02T15:24:50.2301850Z patching file arch/arm/boot/dts/at91-sama5d2_xplained.dts
2025-10-02T15:24:50.2303301Z patching file arch/arm/boot/dts/at91-sama5d3_xplained.dts
2025-10-02T15:24:50.2304716Z patching file arch/arm/boot/dts/at91-sama5d4_xplained.dts
2025-10-02T15:24:50.2305978Z patching file arch/arm/boot/dts/at91-tse850-3.dts
2025-10-02T15:24:50.2307094Z patching file arch/arm/boot/dts/at91rm9200.dtsi
2025-10-02T15:24:50.2308349Z patching file arch/arm/boot/dts/at91sam9260ek.dts
2025-10-02T15:24:50.2309329Z patching file arch/arm/boot/dts/at91sam9261ek.dts
2025-10-02T15:24:50.2310476Z patching file arch/arm/boot/dts/at91sam9263ek.dts
2025-10-02T15:24:50.2311700Z patching file arch/arm/boot/dts/at91sam9g20ek_common.dtsi
2025-10-02T15:24:50.2312847Z patching file arch/arm/boot/dts/at91sam9rl.dtsi
2025-10-02T15:24:50.2314462Z patching file arch/arm/boot/dts/bcm-cygnus.dtsi
2025-10-02T15:24:50.2315741Z patching file arch/arm/boot/dts/bcm-hr2.dtsi
2025-10-02T15:24:50.2316865Z patching file arch/arm/boot/dts/bcm-nsp.dtsi
2025-10-02T15:24:50.2318215Z patching file arch/arm/boot/dts/bcm2711-rpi-4-b.dts
2025-10-02T15:24:50.2319682Z patching file arch/arm/boot/dts/bcm2711.dtsi
2025-10-02T15:24:50.2322227Z patching file arch/arm/boot/dts/bcm2835-rpi-a-plus.dts
2025-10-02T15:24:50.2323239Z patching file arch/arm/boot/dts/bcm2835-rpi-a.dts
2025-10-02T15:24:50.2324240Z patching file arch/arm/boot/dts/bcm2835-rpi-b-plus.dts
2025-10-02T15:24:50.2325250Z patching file arch/arm/boot/dts/bcm2835-rpi-b-rev2.dts
2025-10-02T15:24:50.2326229Z patching file arch/arm/boot/dts/bcm2835-rpi-b.dts
2025-10-02T15:24:50.2327196Z patching file arch/arm/boot/dts/bcm2835-rpi-cm1.dtsi
2025-10-02T15:24:50.2328204Z patching file arch/arm/boot/dts/bcm2835-rpi-zero-w.dts
2025-10-02T15:24:50.2329184Z patching file arch/arm/boot/dts/bcm2835-rpi-zero.dts
2025-10-02T15:24:50.2330340Z patching file arch/arm/boot/dts/bcm2835-rpi.dtsi
2025-10-02T15:24:50.2331278Z patching file arch/arm/boot/dts/bcm2836-rpi-2-b.dts
2025-10-02T15:24:50.2332274Z patching file arch/arm/boot/dts/bcm2837-rpi-3-a-plus.dts
2025-10-02T15:24:50.2333286Z patching file arch/arm/boot/dts/bcm2837-rpi-3-b-plus.dts
2025-10-02T15:24:50.2334282Z patching file arch/arm/boot/dts/bcm2837-rpi-3-b.dts
2025-10-02T15:24:50.2335259Z patching file arch/arm/boot/dts/bcm2837-rpi-cm3-io3.dts
2025-10-02T15:24:50.2336250Z patching file arch/arm/boot/dts/bcm2837-rpi-cm3.dtsi
2025-10-02T15:24:50.2337187Z patching file arch/arm/boot/dts/bcm2837.dtsi
2025-10-02T15:24:50.2338060Z patching file arch/arm/boot/dts/bcm283x.dtsi
2025-10-02T15:24:50.2339015Z patching file arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dts
2025-10-02T15:24:50.2340260Z patching file arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts
2025-10-02T15:24:50.2341343Z patching file arch/arm/boot/dts/bcm4708-buffalo-wzr-1750dhp.dts
2025-10-02T15:24:50.2342606Z patching file arch/arm/boot/dts/bcm4708-linksys-ea6500-v2.dts
2025-10-02T15:24:50.2343676Z patching file arch/arm/boot/dts/bcm4708-netgear-r6250.dts
2025-10-02T15:24:50.2344718Z patching file arch/arm/boot/dts/bcm4708-netgear-r6300-v2.dts
2025-10-02T15:24:50.2345777Z patching file arch/arm/boot/dts/bcm4708-smartrg-sr400ac.dts
2025-10-02T15:24:50.2346817Z patching file arch/arm/boot/dts/bcm47081-asus-rt-n18u.dts
2025-10-02T15:24:50.2347895Z patching file arch/arm/boot/dts/bcm47081-buffalo-wzr-600dhp2.dts
2025-10-02T15:24:50.2348996Z patching file arch/arm/boot/dts/bcm47081-buffalo-wzr-900dhp.dts
2025-10-02T15:24:50.2350369Z patching file arch/arm/boot/dts/bcm4709-asus-rt-ac87u.dts
2025-10-02T15:24:50.2351441Z patching file arch/arm/boot/dts/bcm4709-buffalo-wxr-1900dhp.dts
2025-10-02T15:24:50.2352518Z patching file arch/arm/boot/dts/bcm4709-linksys-ea9200.dts
2025-10-02T15:24:50.2353565Z patching file arch/arm/boot/dts/bcm4709-netgear-r7000.dts
2025-10-02T15:24:50.2354586Z patching file arch/arm/boot/dts/bcm4709-netgear-r8000.dts
2025-10-02T15:24:50.2355651Z patching file arch/arm/boot/dts/bcm4709-tplink-archer-c9-v1.dts
2025-10-02T15:24:50.2356746Z patching file arch/arm/boot/dts/bcm47094-dlink-dir-885l.dts
2025-10-02T15:24:50.2357817Z patching file arch/arm/boot/dts/bcm47094-linksys-panamera.dts
2025-10-02T15:24:50.2358891Z patching file arch/arm/boot/dts/bcm47094-luxul-abr-4500.dts
2025-10-02T15:24:50.2360114Z patching file arch/arm/boot/dts/bcm47094-luxul-xbr-4500.dts
2025-10-02T15:24:50.2361150Z patching file arch/arm/boot/dts/bcm47094-luxul-xwc-2000.dts
2025-10-02T15:24:50.2362189Z patching file arch/arm/boot/dts/bcm47094-luxul-xwr-3100.dts
2025-10-02T15:24:50.2363242Z patching file arch/arm/boot/dts/bcm47094-luxul-xwr-3150-v1.dts
2025-10-02T15:24:50.2364314Z patching file arch/arm/boot/dts/bcm47094-netgear-r8500.dts
2025-10-02T15:24:50.2365514Z patching file arch/arm/boot/dts/bcm47094-phicomm-k3.dts
2025-10-02T15:24:50.2366549Z patching file arch/arm/boot/dts/bcm47189-luxul-xap-1440.dts
2025-10-02T15:24:50.2367595Z patching file arch/arm/boot/dts/bcm47189-luxul-xap-810.dts
2025-10-02T15:24:50.2368636Z patching file arch/arm/boot/dts/bcm53015-meraki-mr26.dts
2025-10-02T15:24:50.2369824Z patching file arch/arm/boot/dts/bcm53016-meraki-mr32.dts
2025-10-02T15:24:50.2370800Z patching file arch/arm/boot/dts/bcm5301x.dtsi
2025-10-02T15:24:50.2371711Z patching file arch/arm/boot/dts/bcm53573.dtsi
2025-10-02T15:24:50.2372610Z patching file arch/arm/boot/dts/bcm63138.dtsi
2025-10-02T15:24:50.2373560Z patching file arch/arm/boot/dts/bcm7445-bcm97445svmb.dts
2025-10-02T15:24:50.2374525Z patching file arch/arm/boot/dts/bcm7445.dtsi
2025-10-02T15:24:50.2375444Z patching file arch/arm/boot/dts/bcm911360_entphn.dts
2025-10-02T15:24:50.2376380Z patching file arch/arm/boot/dts/bcm94708.dts
2025-10-02T15:24:50.2377273Z patching file arch/arm/boot/dts/bcm94709.dts
2025-10-02T15:24:50.2378191Z patching file arch/arm/boot/dts/bcm947189acdbmr.dts
2025-10-02T15:24:50.2379125Z patching file arch/arm/boot/dts/bcm958300k.dts
2025-10-02T15:24:50.2380193Z patching file arch/arm/boot/dts/bcm958305k.dts
2025-10-02T15:24:50.2381112Z patching file arch/arm/boot/dts/bcm958522er.dts
2025-10-02T15:24:50.2382035Z patching file arch/arm/boot/dts/bcm958525er.dts
2025-10-02T15:24:50.2382948Z patching file arch/arm/boot/dts/bcm958525xmc.dts
2025-10-02T15:24:50.2383881Z patching file arch/arm/boot/dts/bcm958622hr.dts
2025-10-02T15:24:50.2384793Z patching file arch/arm/boot/dts/bcm958623hr.dts
2025-10-02T15:24:50.2385695Z patching file arch/arm/boot/dts/bcm958625hr.dts
2025-10-02T15:24:50.2386603Z patching file arch/arm/boot/dts/bcm958625k.dts
2025-10-02T15:24:50.2387502Z patching file arch/arm/boot/dts/bcm963138dvt.dts
2025-10-02T15:24:50.2388429Z patching file arch/arm/boot/dts/bcm988312hr.dts
2025-10-02T15:24:50.2389329Z patching file arch/arm/boot/dts/dm816x.dtsi
2025-10-02T15:24:50.2390364Z patching file arch/arm/boot/dts/dove.dtsi
2025-10-02T15:24:50.2391282Z patching file arch/arm/boot/dts/dra7-ipu-dsp-common.dtsi
2025-10-02T15:24:50.2392242Z patching file arch/arm/boot/dts/dra7-l4.dtsi
2025-10-02T15:24:50.2395137Z patching file arch/arm/boot/dts/dra7.dtsi
2025-10-02T15:24:50.2396293Z patching file arch/arm/boot/dts/dra71x.dtsi
2025-10-02T15:24:50.2397228Z patching file arch/arm/boot/dts/dra72x.dtsi
2025-10-02T15:24:50.2398150Z patching file arch/arm/boot/dts/dra74-ipu-dsp-common.dtsi
2025-10-02T15:24:50.2399144Z patching file arch/arm/boot/dts/dra74x.dtsi
2025-10-02T15:24:50.2400359Z patching file arch/arm/boot/dts/e60k02.dtsi
2025-10-02T15:24:50.2401485Z patching file arch/arm/boot/dts/exynos3250-artik5.dtsi
2025-10-02T15:24:50.2402623Z patching file arch/arm/boot/dts/exynos3250-monk.dts
2025-10-02T15:24:50.2403947Z patching file arch/arm/boot/dts/exynos3250-rinato.dts
2025-10-02T15:24:50.2405305Z patching file arch/arm/boot/dts/exynos4-cpu-thermal.dtsi
2025-10-02T15:24:50.2406323Z patching file arch/arm/boot/dts/exynos4.dtsi
2025-10-02T15:24:50.2407870Z patching file arch/arm/boot/dts/exynos4210-i9100.dts
2025-10-02T15:24:50.2409250Z patching file arch/arm/boot/dts/exynos4210-smdkv310.dts
2025-10-02T15:24:50.2410415Z patching file arch/arm/boot/dts/exynos4210.dtsi
2025-10-02T15:24:50.2411711Z patching file arch/arm/boot/dts/exynos4412-itop-elite.dts
2025-10-02T15:24:50.2412864Z patching file arch/arm/boot/dts/exynos4412-midas.dtsi
2025-10-02T15:24:50.2414689Z patching file arch/arm/boot/dts/exynos4412-odroid-common.dtsi
2025-10-02T15:24:50.2415756Z patching file arch/arm/boot/dts/exynos4412-origen.dts
2025-10-02T15:24:50.2417064Z patching file arch/arm/boot/dts/exynos4412-smdk4412.dts
2025-10-02T15:24:50.2418100Z patching file arch/arm/boot/dts/exynos5250-pinctrl.dtsi
2025-10-02T15:24:50.2419454Z patching file arch/arm/boot/dts/exynos5250-smdk5250.dts
2025-10-02T15:24:50.2421071Z patching file arch/arm/boot/dts/exynos5250-snow-common.dtsi
2025-10-02T15:24:50.2422357Z patching file arch/arm/boot/dts/exynos5250-spring.dts
2025-10-02T15:24:50.2423784Z patching file arch/arm/boot/dts/exynos5250.dtsi
2025-10-02T15:24:50.2425415Z patching file arch/arm/boot/dts/exynos5410-odroidxu.dts
2025-10-02T15:24:50.2426758Z patching file arch/arm/boot/dts/exynos5410-pinctrl.dtsi
2025-10-02T15:24:50.2427994Z patching file arch/arm/boot/dts/exynos5410.dtsi
2025-10-02T15:24:50.2429283Z patching file arch/arm/boot/dts/exynos5420-arndale-octa.dts
2025-10-02T15:24:50.2430817Z patching file arch/arm/boot/dts/exynos5420-smdk5420.dts
2025-10-02T15:24:50.2432092Z patching file arch/arm/boot/dts/exynos5420.dtsi
2025-10-02T15:24:50.2433890Z patching file arch/arm/boot/dts/exynos5422-odroid-core.dtsi
2025-10-02T15:24:50.2435294Z patching file arch/arm/boot/dts/exynos5422-odroidhc1.dts
2025-10-02T15:24:50.2436593Z patching file arch/arm/boot/dts/exynos5422-odroidxu3-common.dtsi
2025-10-02T15:24:50.2437698Z patching file arch/arm/boot/dts/exynos5422-odroidxu4.dts
2025-10-02T15:24:50.2438761Z patching file arch/arm/boot/dts/exynos54xx-odroidxu-leds.dtsi
2025-10-02T15:24:50.2440009Z patching file arch/arm/boot/dts/gemini-dlink-dns-313.dts
2025-10-02T15:24:50.2441033Z patching file arch/arm/boot/dts/gemini-nas4220b.dts
2025-10-02T15:24:50.2442017Z patching file arch/arm/boot/dts/gemini-rut1xx.dts
2025-10-02T15:24:50.2442976Z patching file arch/arm/boot/dts/gemini-wbd111.dts
2025-10-02T15:24:50.2443929Z patching file arch/arm/boot/dts/gemini-wbd222.dts
2025-10-02T15:24:50.2444852Z patching file arch/arm/boot/dts/gemini.dtsi
2025-10-02T15:24:50.2445743Z patching file arch/arm/boot/dts/imx1-ads.dts
2025-10-02T15:24:50.2446557Z patching file arch/arm/boot/dts/imx1-apf9328.dts
2025-10-02T15:24:50.2447341Z patching file arch/arm/boot/dts/imx1.dtsi
2025-10-02T15:24:50.2448168Z patching file arch/arm/boot/dts/imx23-evk.dts
2025-10-02T15:24:50.2449032Z patching file arch/arm/boot/dts/imx23-sansa.dts
2025-10-02T15:24:50.2450331Z patching file arch/arm/boot/dts/imx23.dtsi
2025-10-02T15:24:50.2451533Z patching file arch/arm/boot/dts/imx25-eukrea-cpuimx25.dtsi
2025-10-02T15:24:50.2452483Z patching file arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-cmo-qvga.dts
2025-10-02T15:24:50.2453637Z patching file arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-svga.dts
2025-10-02T15:24:50.2454741Z patching file arch/arm/boot/dts/imx25-eukrea-mbimxsd25-baseboard-dvi-vga.dts
2025-10-02T15:24:50.2455516Z patching file arch/arm/boot/dts/imx25-pdk.dts
2025-10-02T15:24:50.2456201Z patching file arch/arm/boot/dts/imx25.dtsi
2025-10-02T15:24:50.2457458Z patching file arch/arm/boot/dts/imx27-apf27dev.dts
2025-10-02T15:24:50.2458464Z patching file arch/arm/boot/dts/imx27-eukrea-cpuimx27.dtsi
2025-10-02T15:24:50.2459754Z patching file arch/arm/boot/dts/imx27-eukrea-mbimxsd27-baseboard.dts
2025-10-02T15:24:50.2460675Z patching file arch/arm/boot/dts/imx27-phytec-phycard-s-rdk.dts
2025-10-02T15:24:50.2462327Z patching file arch/arm/boot/dts/imx27-phytec-phycore-rdk.dts
2025-10-02T15:24:50.2463335Z patching file arch/arm/boot/dts/imx27-phytec-phycore-som.dtsi
2025-10-02T15:24:50.2464384Z patching file arch/arm/boot/dts/imx27.dtsi
2025-10-02T15:24:50.2465489Z patching file arch/arm/boot/dts/imx28-evk.dts
2025-10-02T15:24:50.2466520Z patching file arch/arm/boot/dts/imx28-m28evk.dts
2025-10-02T15:24:50.2467500Z patching file arch/arm/boot/dts/imx28-sps1.dts
2025-10-02T15:24:50.2468632Z patching file arch/arm/boot/dts/imx28.dtsi
2025-10-02T15:24:50.2470523Z patching file arch/arm/boot/dts/imx31.dtsi
2025-10-02T15:24:50.2471610Z patching file arch/arm/boot/dts/imx35.dtsi
2025-10-02T15:24:50.2472754Z patching file arch/arm/boot/dts/imx50.dtsi
2025-10-02T15:24:50.2474018Z patching file arch/arm/boot/dts/imx51.dtsi
2025-10-02T15:24:50.2475343Z patching file arch/arm/boot/dts/imx53-m53menlo.dts
2025-10-02T15:24:50.2476869Z patching file arch/arm/boot/dts/imx53-ppd.dts
2025-10-02T15:24:50.2478624Z patching file arch/arm/boot/dts/imx53.dtsi
2025-10-02T15:24:50.2480210Z patching file arch/arm/boot/dts/imx6dl-colibri-eval-v3.dts
2025-10-02T15:24:50.2481516Z patching file arch/arm/boot/dts/imx6dl-eckelmann-ci4x10.dts
2025-10-02T15:24:50.2482760Z patching file arch/arm/boot/dts/imx6dl-prtrvt.dts
2025-10-02T15:24:50.2483748Z patching file arch/arm/boot/dts/imx6dl-rex-basic.dts
2025-10-02T15:24:50.2484746Z patching file arch/arm/boot/dts/imx6dl-riotboard.dts
2025-10-02T15:24:50.2485764Z patching file arch/arm/boot/dts/imx6dl-yapp4-common.dtsi
2025-10-02T15:24:50.2487207Z patching file arch/arm/boot/dts/imx6dl.dtsi
2025-10-02T15:24:50.2488331Z patching file arch/arm/boot/dts/imx6q-apalis-eval.dts
2025-10-02T15:24:50.2489407Z patching file arch/arm/boot/dts/imx6q-apalis-ixora-v1.1.dts
2025-10-02T15:24:50.2490668Z patching file arch/arm/boot/dts/imx6q-apalis-ixora.dts
2025-10-02T15:24:50.2491815Z patching file arch/arm/boot/dts/imx6q-ba16.dtsi
2025-10-02T15:24:50.2493042Z patching file arch/arm/boot/dts/imx6q-bx50v3.dtsi
2025-10-02T15:24:50.2494167Z patching file arch/arm/boot/dts/imx6q-cm-fx6.dts
2025-10-02T15:24:50.2495404Z patching file arch/arm/boot/dts/imx6q-dhcom-som.dtsi
2025-10-02T15:24:50.2496916Z patching file arch/arm/boot/dts/imx6q-dmo-edmqmx6.dts
2025-10-02T15:24:50.2497944Z patching file arch/arm/boot/dts/imx6q-dms-ba16.dts
2025-10-02T15:24:50.2498937Z patching file arch/arm/boot/dts/imx6q-gw5400-a.dts
2025-10-02T15:24:50.2499912Z patching file arch/arm/boot/dts/imx6q-kontron-samx6i.dtsi
2025-10-02T15:24:50.2500996Z patching file arch/arm/boot/dts/imx6q-marsboard.dts
2025-10-02T15:24:50.2502112Z patching file arch/arm/boot/dts/imx6q-prti6q.dts
2025-10-02T15:24:50.2503166Z patching file arch/arm/boot/dts/imx6q-rex-pro.dts
2025-10-02T15:24:50.2504118Z patching file arch/arm/boot/dts/imx6q-tbs2910.dts
2025-10-02T15:24:50.2505302Z patching file arch/arm/boot/dts/imx6q.dtsi
2025-10-02T15:24:50.2506550Z patching file arch/arm/boot/dts/imx6qdl-apalis.dtsi
2025-10-02T15:24:50.2508173Z patching file arch/arm/boot/dts/imx6qdl-aristainetos.dtsi
2025-10-02T15:24:50.2509135Z patching file arch/arm/boot/dts/imx6qdl-aristainetos2.dtsi
2025-10-02T15:24:50.2510558Z patching file arch/arm/boot/dts/imx6qdl-colibri.dtsi
2025-10-02T15:24:50.2512133Z patching file arch/arm/boot/dts/imx6qdl-dfi-fs700-m60.dtsi
2025-10-02T15:24:50.2513114Z patching file arch/arm/boot/dts/imx6qdl-emcon-avari.dtsi
2025-10-02T15:24:50.2514332Z patching file arch/arm/boot/dts/imx6qdl-gw52xx.dtsi
2025-10-02T15:24:50.2515536Z patching file arch/arm/boot/dts/imx6qdl-gw560x.dtsi
2025-10-02T15:24:50.2517022Z patching file arch/arm/boot/dts/imx6qdl-gw5910.dtsi
2025-10-02T15:24:50.2518255Z patching file arch/arm/boot/dts/imx6qdl-gw5913.dtsi
2025-10-02T15:24:50.2519807Z patching file arch/arm/boot/dts/imx6qdl-kontron-samx6i.dtsi
2025-10-02T15:24:50.2521642Z patching file arch/arm/boot/dts/imx6qdl-nit6xlite.dtsi
2025-10-02T15:24:50.2522940Z patching file arch/arm/boot/dts/imx6qdl-nitrogen6_max.dtsi
2025-10-02T15:24:50.2524290Z patching file arch/arm/boot/dts/imx6qdl-nitrogen6_som2.dtsi
2025-10-02T15:24:50.2525623Z patching file arch/arm/boot/dts/imx6qdl-nitrogen6x.dtsi
2025-10-02T15:24:50.2526902Z patching file arch/arm/boot/dts/imx6qdl-phytec-pfla02.dtsi
2025-10-02T15:24:50.2528148Z patching file arch/arm/boot/dts/imx6qdl-pico.dtsi
2025-10-02T15:24:50.2529329Z patching file arch/arm/boot/dts/imx6qdl-prti6q.dtsi
2025-10-02T15:24:50.2531300Z patching file arch/arm/boot/dts/imx6qdl-sabreauto.dtsi
2025-10-02T15:24:50.2532818Z patching file arch/arm/boot/dts/imx6qdl-sabrelite.dtsi
2025-10-02T15:24:50.2534175Z patching file arch/arm/boot/dts/imx6qdl-sabresd.dtsi
2025-10-02T15:24:50.2535533Z patching file arch/arm/boot/dts/imx6qdl-sr-som.dtsi
2025-10-02T15:24:50.2536746Z patching file arch/arm/boot/dts/imx6qdl-ts7970.dtsi
2025-10-02T15:24:50.2537971Z patching file arch/arm/boot/dts/imx6qdl-udoo.dtsi
2025-10-02T15:24:50.2539105Z patching file arch/arm/boot/dts/imx6qdl-wandboard.dtsi
2025-10-02T15:24:50.2540509Z patching file arch/arm/boot/dts/imx6qdl.dtsi
2025-10-02T15:24:50.2542285Z patching file arch/arm/boot/dts/imx6qp.dtsi
2025-10-02T15:24:50.2543350Z patching file arch/arm/boot/dts/imx6sl-evk.dts
2025-10-02T15:24:50.2552868Z patching file arch/arm/boot/dts/imx6sl-tolino-shine2hd.dts
2025-10-02T15:24:50.2553909Z patching file arch/arm/boot/dts/imx6sl.dtsi
2025-10-02T15:24:50.2554694Z patching file arch/arm/boot/dts/imx6sll.dtsi
2025-10-02T15:24:50.2555298Z patching file arch/arm/boot/dts/imx6sx-nitrogen6sx.dts
2025-10-02T15:24:50.2556076Z patching file arch/arm/boot/dts/imx6sx-sdb-reva.dts
2025-10-02T15:24:50.2556837Z patching file arch/arm/boot/dts/imx6sx-sdb.dts
2025-10-02T15:24:50.2557495Z patching file arch/arm/boot/dts/imx6sx.dtsi
2025-10-02T15:24:50.2558136Z patching file arch/arm/boot/dts/imx6ul-14x14-evk.dtsi
2025-10-02T15:24:50.2558731Z patching file arch/arm/boot/dts/imx6ul-kontron-n6310-som.dtsi
2025-10-02T15:24:50.2559702Z patching file arch/arm/boot/dts/imx6ul-kontron-n6311-som.dtsi
2025-10-02T15:24:50.2560520Z patching file arch/arm/boot/dts/imx6ul-kontron-n6x1x-s.dtsi
2025-10-02T15:24:50.2561249Z patching file arch/arm/boot/dts/imx6ul-kontron-n6x1x-som-common.dtsi
2025-10-02T15:24:50.2562324Z patching file arch/arm/boot/dts/imx6ul-pico-dwarf.dts
2025-10-02T15:24:50.2563238Z patching file arch/arm/boot/dts/imx6ul.dtsi
2025-10-02T15:24:50.2564130Z patching file arch/arm/boot/dts/imx6ull-colibri-wifi.dtsi
2025-10-02T15:24:50.2565138Z patching file arch/arm/boot/dts/imx6ull-colibri.dtsi
2025-10-02T15:24:50.2566137Z patching file arch/arm/boot/dts/imx6ull-kontron-n6411-som.dtsi
2025-10-02T15:24:50.2567146Z patching file arch/arm/boot/dts/imx6ull-myir-mys-6ulx-eval.dts
2025-10-02T15:24:50.2567957Z patching file arch/arm/boot/dts/imx6ull-pinfunc.h
2025-10-02T15:24:50.2568888Z patching file arch/arm/boot/dts/imx7-colibri-aster.dtsi
2025-10-02T15:24:50.2570024Z patching file arch/arm/boot/dts/imx7-colibri-eval-v3.dtsi
2025-10-02T15:24:50.2570841Z patching file arch/arm/boot/dts/imx7-colibri.dtsi
2025-10-02T15:24:50.2571747Z patching file arch/arm/boot/dts/imx7-mba7.dtsi
2025-10-02T15:24:50.2572640Z patching file arch/arm/boot/dts/imx7d-colibri-emmc.dtsi
2025-10-02T15:24:50.2573598Z patching file arch/arm/boot/dts/imx7d-meerkat96.dts
2025-10-02T15:24:50.2574276Z patching file arch/arm/boot/dts/imx7d-nitrogen7.dts
2025-10-02T15:24:50.2575201Z patching file arch/arm/boot/dts/imx7d-pico-dwarf.dts
2025-10-02T15:24:50.2576361Z patching file arch/arm/boot/dts/imx7d-pico-hobbit.dts
2025-10-02T15:24:50.2577329Z patching file arch/arm/boot/dts/imx7d-pico-nymph.dts
2025-10-02T15:24:50.2578195Z patching file arch/arm/boot/dts/imx7d-pico-pi.dts
2025-10-02T15:24:50.2578961Z patching file arch/arm/boot/dts/imx7d-pico.dtsi
2025-10-02T15:24:50.2579983Z patching file arch/arm/boot/dts/imx7d-sdb.dts
2025-10-02T15:24:50.2580878Z patching file arch/arm/boot/dts/imx7d-zii-rmu2.dts
2025-10-02T15:24:50.2581754Z patching file arch/arm/boot/dts/imx7d.dtsi
2025-10-02T15:24:50.2582415Z patching file arch/arm/boot/dts/imx7s-warp.dts
2025-10-02T15:24:50.2583284Z patching file arch/arm/boot/dts/imx7s.dtsi
2025-10-02T15:24:50.2584842Z patching file arch/arm/boot/dts/imx7ulp.dtsi
2025-10-02T15:24:50.2585742Z patching file arch/arm/boot/dts/integratorap.dts
2025-10-02T15:24:50.2586708Z patching file arch/arm/boot/dts/iwg20d-q7-common.dtsi
2025-10-02T15:24:50.2587668Z patching file arch/arm/boot/dts/kirkwood-lsxl.dtsi
2025-10-02T15:24:50.2588701Z patching file arch/arm/boot/dts/logicpd-som-lv-35xx-devkit.dts
2025-10-02T15:24:50.2589933Z patching file arch/arm/boot/dts/logicpd-som-lv-37xx-devkit.dts
2025-10-02T15:24:50.2590938Z patching file arch/arm/boot/dts/logicpd-som-lv.dtsi
2025-10-02T15:24:50.2591841Z patching file arch/arm/boot/dts/logicpd-torpedo-baseboard.dtsi
2025-10-02T15:24:50.2592836Z patching file arch/arm/boot/dts/lpc32xx.dtsi
2025-10-02T15:24:50.2593872Z patching file arch/arm/boot/dts/ls1021a-tsn.dts
2025-10-02T15:24:50.2594941Z patching file arch/arm/boot/dts/ls1021a.dtsi
2025-10-02T15:24:50.2596229Z patching file arch/arm/boot/dts/meson.dtsi
2025-10-02T15:24:50.2597294Z patching file arch/arm/boot/dts/meson8.dtsi
2025-10-02T15:24:50.2598505Z patching file arch/arm/boot/dts/meson8b-ec100.dts
2025-10-02T15:24:50.2599596Z patching file arch/arm/boot/dts/meson8b-mxq.dts
2025-10-02T15:24:50.2600735Z patching file arch/arm/boot/dts/meson8b-odroidc1.dts
2025-10-02T15:24:50.2601780Z patching file arch/arm/boot/dts/meson8b.dtsi
2025-10-02T15:24:50.2602951Z patching file arch/arm/boot/dts/meson8m2-mxiii-plus.dts
2025-10-02T15:24:50.2603909Z patching file arch/arm/boot/dts/mmp2-brownstone.dts
2025-10-02T15:24:50.2604950Z patching file arch/arm/boot/dts/motorola-mapphone-common.dtsi
2025-10-02T15:24:50.2606162Z patching file arch/arm/boot/dts/moxart-uc7112lx.dts
2025-10-02T15:24:50.2607049Z patching file arch/arm/boot/dts/moxart.dtsi
2025-10-02T15:24:50.2608089Z patching file arch/arm/boot/dts/mt7623.dtsi
2025-10-02T15:24:50.2609441Z patching file arch/arm/boot/dts/omap-gpmc-smsc911x.dtsi
2025-10-02T15:24:50.2610565Z patching file arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi
2025-10-02T15:24:50.2611494Z patching file arch/arm/boot/dts/omap3-beagle-ab4.dts
2025-10-02T15:24:50.2612655Z patching file arch/arm/boot/dts/omap3-beagle.dts
2025-10-02T15:24:50.2613818Z patching file arch/arm/boot/dts/omap3-cm-t3517.dts
2025-10-02T15:24:50.2614782Z patching file arch/arm/boot/dts/omap3-cm-t3x.dtsi
2025-10-02T15:24:50.2615743Z patching file arch/arm/boot/dts/omap3-cpu-thermal.dtsi
2025-10-02T15:24:50.2616740Z patching file arch/arm/boot/dts/omap3-devkit8000-common.dtsi
2025-10-02T15:24:50.2617708Z patching file arch/arm/boot/dts/omap3-devkit8000-lcd-common.dtsi
2025-10-02T15:24:50.2618715Z patching file arch/arm/boot/dts/omap3-devkit8000.dts
2025-10-02T15:24:50.2619717Z patching file arch/arm/boot/dts/omap3-gta04.dtsi
2025-10-02T15:24:50.2621189Z patching file arch/arm/boot/dts/omap3-gta04a5one.dts
2025-10-02T15:24:50.2622095Z patching file arch/arm/boot/dts/omap3-ldp.dts
2025-10-02T15:24:50.2622974Z patching file arch/arm/boot/dts/omap3-lilly-a83x.dtsi
2025-10-02T15:24:50.2624191Z patching file arch/arm/boot/dts/omap3-n900.dts
2025-10-02T15:24:50.2626024Z patching file arch/arm/boot/dts/omap3-n950-n9.dtsi
2025-10-02T15:24:50.2627054Z patching file arch/arm/boot/dts/omap3-overo-common-lcd35.dtsi
2025-10-02T15:24:50.2628113Z patching file arch/arm/boot/dts/omap3-overo-common-lcd43.dtsi
2025-10-02T15:24:50.2629180Z patching file arch/arm/boot/dts/omap3-overo-tobiduo-common.dtsi
2025-10-02T15:24:50.2630575Z patching file arch/arm/boot/dts/omap3-pandora-common.dtsi
2025-10-02T15:24:50.2631434Z patching file arch/arm/boot/dts/omap3-zoom3.dts
2025-10-02T15:24:50.2632631Z patching file arch/arm/boot/dts/omap3.dtsi
2025-10-02T15:24:50.2633738Z patching file arch/arm/boot/dts/omap3430-sdp.dts
2025-10-02T15:24:50.2634698Z patching file arch/arm/boot/dts/omap4-cpu-thermal.dtsi
2025-10-02T15:24:50.2636000Z patching file arch/arm/boot/dts/omap4-l4.dtsi
2025-10-02T15:24:50.2637955Z patching file arch/arm/boot/dts/omap4-panda-es.dts
2025-10-02T15:24:50.2638859Z patching file arch/arm/boot/dts/omap4.dtsi
2025-10-02T15:24:50.2640029Z patching file arch/arm/boot/dts/omap443x.dtsi
2025-10-02T15:24:50.2640899Z patching file arch/arm/boot/dts/omap4460.dtsi
2025-10-02T15:24:50.2641965Z patching file arch/arm/boot/dts/omap44xx-clocks.dtsi
2025-10-02T15:24:50.2643342Z patching file arch/arm/boot/dts/omap5-board-common.dtsi
2025-10-02T15:24:50.2644605Z patching file arch/arm/boot/dts/omap5-cm-t54.dts
2025-10-02T15:24:50.2646489Z patching file arch/arm/boot/dts/omap5-l4.dtsi
2025-10-02T15:24:50.2648310Z patching file arch/arm/boot/dts/omap5.dtsi
2025-10-02T15:24:50.2649329Z patching file arch/arm/boot/dts/ox820.dtsi
2025-10-02T15:24:50.2650518Z patching file arch/arm/boot/dts/picoxcell-pc3x2.dtsi
2025-10-02T15:24:50.2651726Z patching file arch/arm/boot/dts/qcom-apq8064.dtsi
2025-10-02T15:24:50.2653518Z patching file arch/arm/boot/dts/qcom-ipq4019.dtsi
2025-10-02T15:24:50.2654487Z patching file arch/arm/boot/dts/qcom-ipq8064-rb3011.dts
2025-10-02T15:24:50.2655421Z patching file arch/arm/boot/dts/qcom-ipq8064.dtsi
2025-10-02T15:24:50.2656683Z patching file arch/arm/boot/dts/qcom-mdm9615.dtsi
2025-10-02T15:24:50.2657735Z patching file arch/arm/boot/dts/qcom-msm8960.dtsi
2025-10-02T15:24:50.2658968Z patching file arch/arm/boot/dts/qcom-msm8974.dtsi
2025-10-02T15:24:50.2660588Z patching file arch/arm/boot/dts/qcom-pm8841.dtsi
2025-10-02T15:24:50.2661497Z patching file arch/arm/boot/dts/r8a7779-marzen.dts
2025-10-02T15:24:50.2662465Z patching file arch/arm/boot/dts/r8a7779.dtsi
2025-10-02T15:24:50.2663654Z patching file arch/arm/boot/dts/r8a7790-lager.dts
2025-10-02T15:24:50.2664905Z patching file arch/arm/boot/dts/r8a7791-koelsch.dts
2025-10-02T15:24:50.2666062Z patching file arch/arm/boot/dts/r8a7791-porter.dts
2025-10-02T15:24:50.2667109Z patching file arch/arm/boot/dts/r8a7793-gose.dts
2025-10-02T15:24:50.2668216Z patching file arch/arm/boot/dts/r8a7794-alt.dts
2025-10-02T15:24:50.2669285Z patching file arch/arm/boot/dts/r8a7794-silk.dts
2025-10-02T15:24:50.2670494Z patching file arch/arm/boot/dts/rk3036-evb.dts
2025-10-02T15:24:50.2671370Z patching file arch/arm/boot/dts/rk3036-kylin.dts
2025-10-02T15:24:50.2672545Z patching file arch/arm/boot/dts/rk3036.dtsi
2025-10-02T15:24:50.2674504Z patching file arch/arm/boot/dts/rk3066a.dtsi
2025-10-02T15:24:50.2675641Z patching file arch/arm/boot/dts/rk3188-radxarock.dts
2025-10-02T15:24:50.2676644Z patching file arch/arm/boot/dts/rk3188.dtsi
2025-10-02T15:24:50.2678147Z patching file arch/arm/boot/dts/rk322x.dtsi
2025-10-02T15:24:50.2679711Z patching file arch/arm/boot/dts/rk3288-evb-act8846.dts
2025-10-02T15:24:50.2680795Z patching file arch/arm/boot/dts/rk3288-firefly.dtsi
2025-10-02T15:24:50.2681676Z patching file arch/arm/boot/dts/rk3288-miqi.dts
2025-10-02T15:24:50.2682776Z patching file arch/arm/boot/dts/rk3288-rock2-som.dtsi
2025-10-02T15:24:50.2683729Z patching file arch/arm/boot/dts/rk3288-rock2-square.dts
2025-10-02T15:24:50.2684629Z patching file arch/arm/boot/dts/rk3288-vyasa.dts
2025-10-02T15:24:50.2686051Z patching file arch/arm/boot/dts/rk3288.dtsi
2025-10-02T15:24:50.2688096Z patching file arch/arm/boot/dts/rk3xxx.dtsi
2025-10-02T15:24:50.2688992Z patching file arch/arm/boot/dts/s3c6410-mini6410.dts
2025-10-02T15:24:50.2690052Z patching file arch/arm/boot/dts/s3c64xx-pinctrl.dtsi
2025-10-02T15:24:50.2692787Z patching file arch/arm/boot/dts/s5pv210-aquila.dts
2025-10-02T15:24:50.2693865Z patching file arch/arm/boot/dts/s5pv210-aries.dtsi
2025-10-02T15:24:50.2695372Z patching file arch/arm/boot/dts/s5pv210-fascinate4g.dts
2025-10-02T15:24:50.2696348Z patching file arch/arm/boot/dts/s5pv210-goni.dts
2025-10-02T15:24:50.2697240Z patching file arch/arm/boot/dts/s5pv210-smdkv210.dts
2025-10-02T15:24:50.2698426Z patching file arch/arm/boot/dts/s5pv210.dtsi
2025-10-02T15:24:50.2699790Z patching file arch/arm/boot/dts/sam9x60.dtsi
2025-10-02T15:24:50.2701280Z patching file arch/arm/boot/dts/sama5d2.dtsi
2025-10-02T15:24:50.2703136Z patching file arch/arm/boot/dts/sama5d4.dtsi
2025-10-02T15:24:50.2704491Z patching file arch/arm/boot/dts/socfpga_arria10_socdk_qspi.dts
2025-10-02T15:24:50.2705510Z patching file arch/arm/boot/dts/socfpga_arria5_socdk.dts
2025-10-02T15:24:50.2706507Z patching file arch/arm/boot/dts/socfpga_cyclone5_socdk.dts
2025-10-02T15:24:50.2707521Z patching file arch/arm/boot/dts/socfpga_cyclone5_sockit.dts
2025-10-02T15:24:50.2708559Z patching file arch/arm/boot/dts/socfpga_cyclone5_socrates.dts
2025-10-02T15:24:50.2709715Z patching file arch/arm/boot/dts/socfpga_cyclone5_sodia.dts
2025-10-02T15:24:50.2710738Z patching file arch/arm/boot/dts/socfpga_cyclone5_vining_fpga.dts
2025-10-02T15:24:50.2711721Z patching file arch/arm/boot/dts/spear1340.dtsi
2025-10-02T15:24:50.2712539Z patching file arch/arm/boot/dts/spear13xx.dtsi
2025-10-02T15:24:50.2713439Z patching file arch/arm/boot/dts/spear320-hmi.dts
2025-10-02T15:24:50.2714391Z patching file arch/arm/boot/dts/spear3xx.dtsi
2025-10-02T15:24:50.2715257Z patching file arch/arm/boot/dts/spear600.dtsi
2025-10-02T15:24:50.2716080Z patching file arch/arm/boot/dts/ste-ab8500.dtsi
2025-10-02T15:24:50.2717245Z patching file arch/arm/boot/dts/ste-ab8505.dtsi
2025-10-02T15:24:50.2718160Z patching file arch/arm/boot/dts/ste-db8500.dtsi
2025-10-02T15:24:50.2719029Z patching file arch/arm/boot/dts/ste-db8520.dtsi
2025-10-02T15:24:50.2720068Z patching file arch/arm/boot/dts/ste-db9500.dtsi
2025-10-02T15:24:50.2721296Z patching file arch/arm/boot/dts/ste-href-ab8500.dtsi
2025-10-02T15:24:50.2722325Z patching file arch/arm/boot/dts/ste-href-tvk1281618-r3.dtsi
2025-10-02T15:24:50.2723280Z patching file arch/arm/boot/dts/ste-href.dtsi
2025-10-02T15:24:50.2724504Z patching file arch/arm/boot/dts/ste-nomadik-stn8815.dtsi
2025-10-02T15:24:50.2725692Z patching file arch/arm/boot/dts/ste-snowball.dts
2025-10-02T15:24:50.2726909Z patching file arch/arm/boot/dts/ste-ux500-samsung-golden.dts
2025-10-02T15:24:50.2728005Z patching file arch/arm/boot/dts/ste-ux500-samsung-skomer.dts
2025-10-02T15:24:50.2729102Z patching file arch/arm/boot/dts/stm32429i-eval.dts
2025-10-02T15:24:50.2730157Z patching file arch/arm/boot/dts/stm32746g-eval.dts
2025-10-02T15:24:50.2731206Z patching file arch/arm/boot/dts/stm32f429-disco.dts
2025-10-02T15:24:50.2732240Z patching file arch/arm/boot/dts/stm32f429.dtsi
2025-10-02T15:24:50.2733416Z patching file arch/arm/boot/dts/stm32f469-disco.dts
2025-10-02T15:24:50.2734367Z patching file arch/arm/boot/dts/stm32f7-pinctrl.dtsi
2025-10-02T15:24:50.2735509Z patching file arch/arm/boot/dts/stm32f746.dtsi
2025-10-02T15:24:50.2736638Z patching file arch/arm/boot/dts/stm32f769-disco.dts
2025-10-02T15:24:50.2737530Z patching file arch/arm/boot/dts/stm32h743.dtsi
2025-10-02T15:24:50.2739225Z patching file arch/arm/boot/dts/stm32mp15-pinctrl.dtsi
2025-10-02T15:24:50.2741690Z patching file arch/arm/boot/dts/stm32mp151.dtsi
2025-10-02T15:24:50.2743323Z patching file arch/arm/boot/dts/stm32mp157a-dhcor-avenger96.dts
2025-10-02T15:24:50.2744378Z patching file arch/arm/boot/dts/stm32mp157a-stinger96.dtsi
2025-10-02T15:24:50.2745369Z patching file arch/arm/boot/dts/stm32mp157c-odyssey-som.dtsi
2025-10-02T15:24:50.2746372Z patching file arch/arm/boot/dts/stm32mp157c-odyssey.dts
2025-10-02T15:24:50.2747354Z patching file arch/arm/boot/dts/stm32mp15xx-dhcom-drc02.dtsi
2025-10-02T15:24:50.2748296Z patching file arch/arm/boot/dts/stm32mp15xx-dhcom-pdk2.dtsi
2025-10-02T15:24:50.2749405Z patching file arch/arm/boot/dts/stm32mp15xx-dhcom-som.dtsi
2025-10-02T15:24:50.2750764Z patching file arch/arm/boot/dts/stm32mp15xx-dhcor-avenger96.dtsi
2025-10-02T15:24:50.2751980Z patching file arch/arm/boot/dts/stm32mp15xx-dhcor-som.dtsi
2025-10-02T15:24:50.2752947Z patching file arch/arm/boot/dts/stm32mp15xx-dkx.dtsi
2025-10-02T15:24:50.2754081Z patching file arch/arm/boot/dts/stm32mp15xx-osd32.dtsi
2025-10-02T15:24:50.2755063Z patching file arch/arm/boot/dts/sun7i-a20-bananapro.dts
2025-10-02T15:24:50.2756088Z patching file arch/arm/boot/dts/sun7i-a20-olinuxino-lime2.dts
2025-10-02T15:24:50.2757040Z patching file arch/arm/boot/dts/sun8i-a33.dtsi
2025-10-02T15:24:50.2758254Z patching file arch/arm/boot/dts/sun8i-a83t.dtsi
2025-10-02T15:24:50.2759780Z patching file arch/arm/boot/dts/sun8i-h2-plus-bananapi-m2-zero.dts
2025-10-02T15:24:50.2760876Z patching file arch/arm/boot/dts/sun8i-h2-plus-orangepi-zero.dts
2025-10-02T15:24:50.2761911Z patching file arch/arm/boot/dts/sun8i-h3-nanopi-duo2.dts
2025-10-02T15:24:50.2762929Z patching file arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts
2025-10-02T15:24:50.2763869Z patching file arch/arm/boot/dts/sun8i-h3.dtsi
2025-10-02T15:24:50.2764656Z patching file arch/arm/boot/dts/sun8i-v3s.dtsi
2025-10-02T15:24:50.2765766Z patching file arch/arm/boot/dts/sun9i-a80-cubieboard4.dts
2025-10-02T15:24:50.2766714Z patching file arch/arm/boot/dts/suniv-f1c100s.dtsi
2025-10-02T15:24:50.2767589Z patching file arch/arm/boot/dts/tegra114.dtsi
2025-10-02T15:24:50.2768956Z patching file arch/arm/boot/dts/tegra124-nyan-big.dts
2025-10-02T15:24:50.2770955Z patching file arch/arm/boot/dts/tegra124-nyan-blaze.dts
2025-10-02T15:24:50.2772534Z patching file arch/arm/boot/dts/tegra124-venice2.dts
2025-10-02T15:24:50.2774082Z patching file arch/arm/boot/dts/tegra20-acer-a500-picasso.dts
2025-10-02T15:24:50.2775582Z patching file arch/arm/boot/dts/tegra20-harmony.dts
2025-10-02T15:24:50.2776654Z patching file arch/arm/boot/dts/tegra20-medcom-wide.dts
2025-10-02T15:24:50.2777786Z patching file arch/arm/boot/dts/tegra20-plutux.dts
2025-10-02T15:24:50.2778647Z patching file arch/arm/boot/dts/tegra20-seaboard.dts
2025-10-02T15:24:50.2780389Z patching file arch/arm/boot/dts/tegra20-tamonten.dtsi
2025-10-02T15:24:50.2781345Z patching file arch/arm/boot/dts/tegra20-tec.dts
2025-10-02T15:24:50.2782305Z patching file arch/arm/boot/dts/tegra20-ventana.dts
2025-10-02T15:24:50.2783695Z patching file arch/arm/boot/dts/tegra30-asus-nexus7-grouper-ti-pmic.dtsi
2025-10-02T15:24:50.2784785Z patching file arch/arm/boot/dts/tegra30-cardhu.dtsi
2025-10-02T15:24:50.2785632Z patching file arch/arm/boot/dts/tny_a9263.dts
2025-10-02T15:24:50.2786641Z patching file arch/arm/boot/dts/uniphier-pxs2.dtsi
2025-10-02T15:24:50.2787748Z patching file arch/arm/boot/dts/usb_a9263.dts
2025-10-02T15:24:50.2788641Z patching file arch/arm/boot/dts/versatile-ab.dts
2025-10-02T15:24:50.2789788Z patching file arch/arm/boot/dts/versatile-pb.dts
2025-10-02T15:24:50.2790735Z patching file arch/arm/boot/dts/vexpress-v2m.dtsi
2025-10-02T15:24:50.2791708Z patching file arch/arm/boot/dts/vexpress-v2p-ca5s.dts
2025-10-02T15:24:50.2792667Z patching file arch/arm/boot/dts/vexpress-v2p-ca9.dts
2025-10-02T15:24:50.2793755Z patching file arch/arm/boot/dts/vf610-zii-dev-rev-b.dts
2025-10-02T15:24:50.2794752Z patching file arch/arm/boot/dts/vf610-zii-dev-rev-c.dts
2025-10-02T15:24:50.2795814Z patching file arch/arm/boot/dts/vfxxx.dtsi
2025-10-02T15:24:50.2796997Z patching file arch/arm/configs/multi_v5_defconfig
2025-10-02T15:24:50.2798002Z patching file arch/arm/configs/multi_v7_defconfig
2025-10-02T15:24:50.2799141Z patching file arch/arm/crypto/Kconfig
2025-10-02T15:24:50.2800071Z patching file arch/arm/crypto/aes-ce-core.S
2025-10-02T15:24:50.2801411Z patching file arch/arm/crypto/aes-neonbs-glue.c
2025-10-02T15:24:50.2802796Z patching file arch/arm/crypto/curve25519-core.S
2025-10-02T15:24:50.2804238Z patching file arch/arm/crypto/poly1305-glue.c
2025-10-02T15:24:50.2805084Z patching file arch/arm/crypto/sha256_glue.c
2025-10-02T15:24:50.2805930Z patching file arch/arm/crypto/sha512-glue.c
2025-10-02T15:24:50.2807132Z patching file arch/arm/include/asm/Kbuild
2025-10-02T15:24:50.2807999Z patching file arch/arm/include/asm/assembler.h
2025-10-02T15:24:50.2809437Z patching file arch/arm/include/asm/bugs.h
2025-10-02T15:24:50.2810444Z patching file arch/arm/include/asm/cpuidle.h
2025-10-02T15:24:50.2811235Z patching file arch/arm/include/asm/dma.h
2025-10-02T15:24:50.2812287Z patching file arch/arm/include/asm/exception.h
2025-10-02T15:24:50.2813149Z patching file arch/arm/include/asm/fixmap.h
2025-10-02T15:24:50.2814048Z patching file arch/arm/include/asm/ftrace.h
2025-10-02T15:24:50.2814903Z patching file arch/arm/include/asm/insn.h
2025-10-02T15:24:50.2815914Z patching file arch/arm/include/asm/io.h
2025-10-02T15:24:50.2817096Z patching file arch/arm/include/asm/kexec-internal.h
2025-10-02T15:24:50.2818194Z patching file arch/arm/include/asm/mach/map.h
2025-10-02T15:24:50.2819058Z patching file arch/arm/include/asm/memory.h
2025-10-02T15:24:50.2820282Z patching file arch/arm/include/asm/module.h
2025-10-02T15:24:50.2821210Z patching file arch/arm/include/asm/perf_event.h
2025-10-02T15:24:50.2822149Z patching file arch/arm/include/asm/pgtable-3level.h
2025-10-02T15:24:50.2823177Z patching file arch/arm/include/asm/pgtable-nommu.h
2025-10-02T15:24:50.2824126Z patching file arch/arm/include/asm/pgtable.h
2025-10-02T15:24:50.2825124Z patching file arch/arm/include/asm/prom.h
2025-10-02T15:24:50.2826028Z patching file arch/arm/include/asm/ptrace.h
2025-10-02T15:24:50.2827183Z patching file arch/arm/include/asm/spectre.h
2025-10-02T15:24:50.2828501Z patching file arch/arm/include/asm/thread_info.h
2025-10-02T15:24:50.2829778Z patching file arch/arm/include/asm/timex.h
2025-10-02T15:24:50.2837157Z patching file arch/arm/include/asm/uaccess.h
2025-10-02T15:24:50.2838078Z patching file arch/arm/include/asm/vmlinux.lds.h
2025-10-02T15:24:50.2839015Z patching file arch/arm/include/debug/imx-uart.h
2025-10-02T15:24:50.2839985Z patching file arch/arm/include/debug/tegra.S
2025-10-02T15:24:50.2841010Z patching file arch/arm/kernel/Makefile
2025-10-02T15:24:50.2841509Z patching file arch/arm/kernel/asm-offsets.c
2025-10-02T15:24:50.2842204Z patching file arch/arm/kernel/atags.h
2025-10-02T15:24:50.2842937Z patching file arch/arm/kernel/atags_parse.c
2025-10-02T15:24:50.2843774Z patching file arch/arm/kernel/bugs.c
2025-10-02T15:24:50.2844488Z patching file arch/arm/kernel/devtree.c
2025-10-02T15:24:50.2845315Z patching file arch/arm/kernel/entry-armv.S
2025-10-02T15:24:50.2846099Z patching file arch/arm/kernel/entry-common.S
2025-10-02T15:24:50.2846763Z patching file arch/arm/kernel/entry-ftrace.S
2025-10-02T15:24:50.2847589Z patching file arch/arm/kernel/entry-v7m.S
2025-10-02T15:24:50.2848164Z patching file arch/arm/kernel/ftrace.c
2025-10-02T15:24:50.2848957Z patching file arch/arm/kernel/head.S
2025-10-02T15:24:50.2849662Z patching file arch/arm/kernel/hw_breakpoint.c
2025-10-02T15:24:50.2850502Z patching file arch/arm/kernel/insn.c
2025-10-02T15:24:50.2851261Z patching file arch/arm/kernel/iwmmxt.S
2025-10-02T15:24:50.2852205Z patching file arch/arm/kernel/iwmmxt.h
2025-10-02T15:24:50.2853291Z patching file arch/arm/kernel/kgdb.c
2025-10-02T15:24:50.2854340Z patching file arch/arm/kernel/machine_kexec.c
2025-10-02T15:24:50.2855315Z patching file arch/arm/kernel/module-plts.c
2025-10-02T15:24:50.2856498Z patching file arch/arm/kernel/perf_callchain.c
2025-10-02T15:24:50.2858198Z patching file arch/arm/kernel/perf_event_v7.c
2025-10-02T15:24:50.2860261Z patching file arch/arm/kernel/process.c
2025-10-02T15:24:50.2861120Z patching file arch/arm/kernel/relocate_kernel.S
2025-10-02T15:24:50.2862380Z patching file arch/arm/kernel/setup.c
2025-10-02T15:24:50.2864151Z patching file arch/arm/kernel/signal.c
2025-10-02T15:24:50.2866175Z patching file arch/arm/kernel/smccc-call.S
2025-10-02T15:24:50.2867020Z patching file arch/arm/kernel/smp.c
2025-10-02T15:24:50.2868281Z patching file arch/arm/kernel/spectre.c
2025-10-02T15:24:50.2869628Z patching file arch/arm/kernel/stacktrace.c
2025-10-02T15:24:50.2870669Z patching file arch/arm/kernel/suspend.c
2025-10-02T15:24:50.2871657Z patching file arch/arm/kernel/swp_emulate.c
2025-10-02T15:24:50.2872873Z patching file arch/arm/kernel/sys_oabi-compat.c
2025-10-02T15:24:50.2873837Z patching file arch/arm/kernel/traps.c
2025-10-02T15:24:50.2875441Z patching file arch/arm/kernel/unwind.c
2025-10-02T15:24:50.2876499Z patching file arch/arm/kernel/vmlinux-xip.lds.S
2025-10-02T15:24:50.2877381Z patching file arch/arm/lib/findbit.S
2025-10-02T15:24:50.2878301Z patching file arch/arm/lib/memset.S
2025-10-02T15:24:50.2879087Z patching file arch/arm/lib/xor-neon.c
2025-10-02T15:24:50.2880248Z patching file arch/arm/mach-at91/pm.c
2025-10-02T15:24:50.2882125Z patching file arch/arm/mach-at91/pm_suspend.S
2025-10-02T15:24:50.2883009Z patching file arch/arm/mach-axxia/platsmp.c
2025-10-02T15:24:50.2883904Z patching file arch/arm/mach-bcm/Kconfig
2025-10-02T15:24:50.2884773Z patching file arch/arm/mach-bcm/bcm_kona_smc.c
2025-10-02T15:24:50.2885767Z patching file arch/arm/mach-cns3xxx/core.c
2025-10-02T15:24:50.2886801Z patching file arch/arm/mach-davinci/Kconfig
2025-10-02T15:24:50.2888056Z patching file arch/arm/mach-davinci/board-da850-evm.c
2025-10-02T15:24:50.2889342Z patching file arch/arm/mach-davinci/pm.c
2025-10-02T15:24:50.2890611Z patching file arch/arm/mach-ep93xx/core.c
2025-10-02T15:24:50.2891809Z patching file arch/arm/mach-ep93xx/timer-ep93xx.c
2025-10-02T15:24:50.2892722Z patching file arch/arm/mach-exynos/Kconfig
2025-10-02T15:24:50.2893590Z patching file arch/arm/mach-exynos/exynos.c
2025-10-02T15:24:50.2894558Z patching file arch/arm/mach-footbridge/cats-pci.c
2025-10-02T15:24:50.2895469Z patching file arch/arm/mach-footbridge/dc21285.c
2025-10-02T15:24:50.2896342Z patching file arch/arm/mach-footbridge/ebsa285-pci.c
2025-10-02T15:24:50.2897305Z patching file arch/arm/mach-footbridge/netwinder-pci.c
2025-10-02T15:24:50.2898263Z patching file arch/arm/mach-footbridge/personal-pci.c
2025-10-02T15:24:50.2899193Z patching file arch/arm/mach-highbank/Kconfig
2025-10-02T15:24:50.2900381Z patching file arch/arm/mach-hisi/platsmp.c
2025-10-02T15:24:50.2901228Z patching file arch/arm/mach-imx/cpu-imx25.c
2025-10-02T15:24:50.2902056Z patching file arch/arm/mach-imx/cpu-imx27.c
2025-10-02T15:24:50.2902880Z patching file arch/arm/mach-imx/cpu-imx31.c
2025-10-02T15:24:50.2903702Z patching file arch/arm/mach-imx/cpu-imx35.c
2025-10-02T15:24:50.2904521Z patching file arch/arm/mach-imx/cpu-imx5.c
2025-10-02T15:24:50.2905342Z patching file arch/arm/mach-imx/mmdc.c
2025-10-02T15:24:50.2906179Z patching file arch/arm/mach-imx/pm-imx6.c
2025-10-02T15:24:50.2907226Z patching file arch/arm/mach-imx/suspend-imx53.S
2025-10-02T15:24:50.2908117Z patching file arch/arm/mach-imx/suspend-imx6.S
2025-10-02T15:24:50.2909047Z patching file arch/arm/mach-iop32x/include/mach/entry-macro.S
2025-10-02T15:24:50.2910190Z patching file arch/arm/mach-iop32x/include/mach/irqs.h
2025-10-02T15:24:50.2911114Z patching file arch/arm/mach-iop32x/irq.c
2025-10-02T15:24:50.2911933Z patching file arch/arm/mach-iop32x/irqs.h
2025-10-02T15:24:50.2912744Z patching file arch/arm/mach-ixp4xx/Kconfig
2025-10-02T15:24:50.2913619Z patching file arch/arm/mach-keystone/keystone.c
2025-10-02T15:24:50.2914498Z patching file arch/arm/mach-mediatek/Kconfig
2025-10-02T15:24:50.2915345Z patching file arch/arm/mach-meson/platsmp.c
2025-10-02T15:24:50.2916343Z patching file arch/arm/mach-mmp/sram.c
2025-10-02T15:24:50.2917179Z patching file arch/arm/mach-mmp/time.c
2025-10-02T15:24:50.2918158Z patching file arch/arm/mach-mstar/Kconfig
2025-10-02T15:24:50.2918975Z patching file arch/arm/mach-mxs/mach-mxs.c
2025-10-02T15:24:50.2920405Z patching file arch/arm/mach-omap1/ams-delta-fiq-handler.S
2025-10-02T15:24:50.2921448Z patching file arch/arm/mach-omap1/board-ams-delta.c
2025-10-02T15:24:50.2922706Z patching file arch/arm/mach-omap1/board-osk.c
2025-10-02T15:24:50.2923931Z patching file arch/arm/mach-omap1/clock.c
2025-10-02T15:24:50.2925211Z patching file arch/arm/mach-omap1/pm.c
2025-10-02T15:24:50.2926258Z patching file arch/arm/mach-omap1/timer.c
2025-10-02T15:24:50.2927233Z patching file arch/arm/mach-omap2/Kconfig
2025-10-02T15:24:50.2928174Z patching file arch/arm/mach-omap2/board-generic.c
2025-10-02T15:24:50.2929422Z patching file arch/arm/mach-omap2/board-n8x0.c
2025-10-02T15:24:50.2930544Z patching file arch/arm/mach-omap2/clockdomain.h
2025-10-02T15:24:50.2931514Z patching file arch/arm/mach-omap2/clockdomains33xx_data.c
2025-10-02T15:24:50.2932473Z patching file arch/arm/mach-omap2/cm33xx.c
2025-10-02T15:24:50.2933665Z patching file arch/arm/mach-omap2/cpuidle44xx.c
2025-10-02T15:24:50.2934751Z patching file arch/arm/mach-omap2/display.c
2025-10-02T15:24:50.2935940Z patching file arch/arm/mach-omap2/id.c
2025-10-02T15:24:50.2937098Z patching file arch/arm/mach-omap2/omap-secure.c
2025-10-02T15:24:50.2938075Z patching file arch/arm/mach-omap2/omap-secure.h
2025-10-02T15:24:50.2938953Z patching file arch/arm/mach-omap2/omap4-common.c
2025-10-02T15:24:50.2940264Z patching file arch/arm/mach-omap2/omap_device.c
2025-10-02T15:24:50.2943000Z patching file arch/arm/mach-omap2/omap_hwmod.c
2025-10-02T15:24:50.2945680Z patching file arch/arm/mach-omap2/pm33xx-core.c
2025-10-02T15:24:50.2946771Z patching file arch/arm/mach-omap2/pmic-cpcap.c
2025-10-02T15:24:50.2948032Z patching file arch/arm/mach-omap2/powerdomain.c
2025-10-02T15:24:50.2949659Z patching file arch/arm/mach-omap2/prm3xxx.c
2025-10-02T15:24:50.2950872Z patching file arch/arm/mach-omap2/sr_device.c
2025-10-02T15:24:50.2952025Z patching file arch/arm/mach-omap2/timer.c
2025-10-02T15:24:50.2952900Z patching file arch/arm/mach-orion5x/board-dt.c
2025-10-02T15:24:50.2953757Z patching file arch/arm/mach-orion5x/common.h
2025-10-02T15:24:50.2954759Z patching file arch/arm/mach-pxa/cm-x300.c
2025-10-02T15:24:50.2955934Z patching file arch/arm/mach-pxa/include/mach/spitz.h
2025-10-02T15:24:50.2957381Z patching file arch/arm/mach-pxa/magician.c
2025-10-02T15:24:50.2958784Z patching file arch/arm/mach-pxa/sharpsl_pm.c
2025-10-02T15:24:50.2960306Z patching file arch/arm/mach-pxa/spitz.c
2025-10-02T15:24:50.2961785Z patching file arch/arm/mach-pxa/spitz.h
2025-10-02T15:24:50.2963616Z patching file arch/arm/mach-pxa/spitz_pm.c
2025-10-02T15:24:50.2964515Z patching file arch/arm/mach-pxa/tosa.c
2025-10-02T15:24:50.2965683Z patching file arch/arm/mach-realview/platsmp-dt.c
2025-10-02T15:24:50.2966585Z patching file arch/arm/mach-rockchip/platsmp.c
2025-10-02T15:24:50.2967609Z patching file arch/arm/mach-s3c/irq-s3c24xx-fiq.S
2025-10-02T15:24:50.2968961Z patching file arch/arm/mach-s3c/irq-s3c24xx.c
2025-10-02T15:24:50.2970832Z patching file arch/arm/mach-s3c/mach-jive.c
2025-10-02T15:24:50.2971970Z patching file arch/arm/mach-s3c/s3c64xx.c
2025-10-02T15:24:50.2972863Z patching file arch/arm/mach-s5pv210/Kconfig
2025-10-02T15:24:50.2973722Z patching file arch/arm/mach-sa1100/jornada720_ssp.c
2025-10-02T15:24:50.2974747Z patching file arch/arm/mach-shmobile/headsmp.S
2025-10-02T15:24:50.2975711Z patching file arch/arm/mach-shmobile/regulator-quirk-rcar-gen2.c
2025-10-02T15:24:50.2976621Z patching file arch/arm/mach-socfpga/Kconfig
2025-10-02T15:24:50.2977448Z patching file arch/arm/mach-socfpga/core.h
2025-10-02T15:24:50.2978269Z patching file arch/arm/mach-socfpga/platsmp.c
2025-10-02T15:24:50.2979288Z patching file arch/arm/mach-sunxi/mc_smp.c
2025-10-02T15:24:50.2980586Z patching file arch/arm/mach-tango/Kconfig
2025-10-02T15:24:50.2981386Z patching file arch/arm/mach-tegra/reset.c
2025-10-02T15:24:50.2982299Z patching file arch/arm/mach-vexpress/dcscb.c
2025-10-02T15:24:50.2983161Z patching file arch/arm/mach-vexpress/spc.c
2025-10-02T15:24:50.2984237Z patching file arch/arm/mach-zynq/common.c
2025-10-02T15:24:50.2985029Z patching file arch/arm/mach-zynq/slcr.c
2025-10-02T15:24:50.2986232Z patching file arch/arm/mm/Kconfig
2025-10-02T15:24:50.2987916Z patching file arch/arm/mm/alignment.c
2025-10-02T15:24:50.2989116Z patching file arch/arm/mm/dump.c
2025-10-02T15:24:50.2990371Z patching file arch/arm/mm/fault.c
2025-10-02T15:24:50.2991603Z patching file arch/arm/mm/init.c
2025-10-02T15:24:50.2992918Z patching file arch/arm/mm/ioremap.c
2025-10-02T15:24:50.2994377Z patching file arch/arm/mm/mmu.c
2025-10-02T15:24:50.2996412Z patching file arch/arm/mm/nommu.c
2025-10-02T15:24:50.2997491Z patching file arch/arm/mm/pmsa-v7.c
2025-10-02T15:24:50.2998418Z patching file arch/arm/mm/pmsa-v8.c
2025-10-02T15:24:50.2999444Z patching file arch/arm/mm/proc-macros.S
2025-10-02T15:24:50.3000591Z patching file arch/arm/mm/proc-v7-bugs.c
2025-10-02T15:24:50.3001889Z patching file arch/arm/mm/pv-fixup-asm.S
2025-10-02T15:24:50.3003112Z patching file arch/arm/net/bpf_jit_32.c
2025-10-02T15:24:50.3004941Z patching file arch/arm/nwfpe/Makefile
2025-10-02T15:24:50.3005725Z patching file arch/arm/probes/decode.h
2025-10-02T15:24:50.3006978Z patching file arch/arm/probes/kprobes/checkers-common.c
2025-10-02T15:24:50.3007901Z patching file arch/arm/probes/kprobes/core.c
2025-10-02T15:24:50.3008825Z patching file arch/arm/probes/kprobes/opt-arm.c
2025-10-02T15:24:50.3010189Z patching file arch/arm/probes/kprobes/test-core.c
2025-10-02T15:24:50.3011770Z patching file arch/arm/probes/kprobes/test-core.h
2025-10-02T15:24:50.3013024Z patching file arch/arm/probes/kprobes/test-thumb.c
2025-10-02T15:24:50.3014425Z patching file arch/arm/probes/uprobes/core.c
2025-10-02T15:24:50.3015271Z patching file arch/arm/vfp/entry.S
2025-10-02T15:24:50.3016492Z patching file arch/arm/vfp/vfphw.S
2025-10-02T15:24:50.3017527Z patching file arch/arm/vfp/vfpmodule.c
2025-10-02T15:24:50.3018996Z patching file arch/arm/xen/enlighten.c
2025-10-02T15:24:50.3020241Z patching file arch/arm/xen/p2m.c
2025-10-02T15:24:50.3021693Z patching file arch/arm64/Kconfig
2025-10-02T15:24:50.3023944Z patching file arch/arm64/Kconfig.platforms
2025-10-02T15:24:50.3024744Z patching file arch/arm64/Makefile
2025-10-02T15:24:50.3025896Z patching file arch/arm64/boot/dts/allwinner/sun50i-a100.dtsi
2025-10-02T15:24:50.3026961Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-cpu-opp.dtsi
2025-10-02T15:24:50.3028077Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dts
2025-10-02T15:24:50.3029617Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-lts.dts
2025-10-02T15:24:50.3030657Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-pinebook.dts
2025-10-02T15:24:50.3031800Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-pinephone.dtsi
2025-10-02T15:24:50.3032983Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-sopine-baseboard.dts
2025-10-02T15:24:50.3034034Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64-sopine.dtsi
2025-10-02T15:24:50.3034855Z patching file arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi
2025-10-02T15:24:50.3035918Z patching file arch/arm64/boot/dts/allwinner/sun50i-h5-cpu-opp.dtsi
2025-10-02T15:24:50.3037036Z patching file arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo2.dts
2025-10-02T15:24:50.3038227Z patching file arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus.dts
2025-10-02T15:24:50.3039348Z patching file arch/arm64/boot/dts/allwinner/sun50i-h5.dtsi
2025-10-02T15:24:50.3040557Z patching file arch/arm64/boot/dts/allwinner/sun50i-h6-beelink-gs1.dts
2025-10-02T15:24:50.3041589Z patching file arch/arm64/boot/dts/allwinner/sun50i-h6-cpu-opp.dtsi
2025-10-02T15:24:50.3042600Z patching file arch/arm64/boot/dts/allwinner/sun50i-h6-tanix-tx6.dts
2025-10-02T15:24:50.3043488Z patching file arch/arm64/boot/dts/allwinner/sun50i-h6.dtsi
2025-10-02T15:24:50.3044534Z patching file arch/arm64/boot/dts/altera/socfpga_stratix10_socdk.dts
2025-10-02T15:24:50.3045454Z patching file arch/arm64/boot/dts/altera/socfpga_stratix10_socdk_nand.dts
2025-10-02T15:24:50.3046335Z patching file arch/arm64/boot/dts/amlogic/meson-axg.dtsi
2025-10-02T15:24:50.3047529Z patching file arch/arm64/boot/dts/amlogic/meson-g12-common.dtsi
2025-10-02T15:24:50.3049694Z patching file arch/arm64/boot/dts/amlogic/meson-g12a-sei510.dts
2025-10-02T15:24:50.3050744Z patching file arch/arm64/boot/dts/amlogic/meson-g12a-u200.dts
2025-10-02T15:24:50.3051801Z patching file arch/arm64/boot/dts/amlogic/meson-g12a-x96-max.dts
2025-10-02T15:24:50.3052944Z patching file arch/arm64/boot/dts/amlogic/meson-g12a.dtsi
2025-10-02T15:24:50.3053999Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-a311d.dtsi
2025-10-02T15:24:50.3055360Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-khadas-vim3.dtsi
2025-10-02T15:24:50.3056443Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtsi
2025-10-02T15:24:50.3057503Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-s922x.dtsi
2025-10-02T15:24:50.3058546Z patching file arch/arm64/boot/dts/amlogic/meson-g12b-w400.dtsi
2025-10-02T15:24:50.3059672Z patching file arch/arm64/boot/dts/amlogic/meson-g12b.dtsi
2025-10-02T15:24:50.3060678Z patching file arch/arm64/boot/dts/amlogic/meson-gx-libretech-pc.dtsi
2025-10-02T15:24:50.3061634Z patching file arch/arm64/boot/dts/amlogic/meson-gx.dtsi
2025-10-02T15:24:50.3062680Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-kii-pro.dts
2025-10-02T15:24:50.3063767Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-nanopi-k2.dts
2025-10-02T15:24:50.3064807Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-odroidc2.dts
2025-10-02T15:24:50.3065877Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95.dtsi
2025-10-02T15:24:50.3066973Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb-wetek.dtsi
2025-10-02T15:24:50.3067942Z patching file arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
2025-10-02T15:24:50.3069044Z patching file arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p230.dts
2025-10-02T15:24:50.3070308Z patching file arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dts
2025-10-02T15:24:50.3071499Z patching file arch/arm64/boot/dts/amlogic/meson-gxl-s905d-sml5442tw.dts
2025-10-02T15:24:50.3072515Z patching file arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
2025-10-02T15:24:50.3073428Z patching file arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dts
2025-10-02T15:24:50.3074516Z patching file arch/arm64/boot/dts/amlogic/meson-gxm-nexbox-a1.dts
2025-10-02T15:24:50.3075557Z patching file arch/arm64/boot/dts/amlogic/meson-gxm-q200.dts
2025-10-02T15:24:50.3076805Z patching file arch/arm64/boot/dts/amlogic/meson-gxm-rbox-pro.dts
2025-10-02T15:24:50.3077927Z patching file arch/arm64/boot/dts/amlogic/meson-sm1-khadas-vim3l.dts
2025-10-02T15:24:50.3078980Z patching file arch/arm64/boot/dts/amlogic/meson-sm1-odroid-c4.dts
2025-10-02T15:24:50.3080100Z patching file arch/arm64/boot/dts/amlogic/meson-sm1-sei610.dts
2025-10-02T15:24:50.3081063Z patching file arch/arm64/boot/dts/amlogic/meson-sm1.dtsi
2025-10-02T15:24:50.3081892Z patching file arch/arm64/boot/dts/arm/juno-base.dtsi
2025-10-02T15:24:50.3083053Z patching file arch/arm64/boot/dts/broadcom/northstar2/ns2-svk.dts
2025-10-02T15:24:50.3084180Z patching file arch/arm64/boot/dts/broadcom/northstar2/ns2.dtsi
2025-10-02T15:24:50.3085281Z patching file arch/arm64/boot/dts/broadcom/stingray/stingray-usb.dtsi
2025-10-02T15:24:50.3086450Z patching file arch/arm64/boot/dts/exynos/exynos5433-tm2-common.dtsi
2025-10-02T15:24:50.3087622Z patching file arch/arm64/boot/dts/exynos/exynos7-espresso.dts
2025-10-02T15:24:50.3088648Z patching file arch/arm64/boot/dts/exynos/exynos7.dtsi
2025-10-02T15:24:50.3090086Z patching file arch/arm64/boot/dts/freescale/fsl-ls1012a.dtsi
2025-10-02T15:24:50.3091200Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var2.dts
2025-10-02T15:24:50.3092467Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var4.dts
2025-10-02T15:24:50.3093691Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28.dts
2025-10-02T15:24:50.3094731Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts
2025-10-02T15:24:50.3095742Z patching file arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi
2025-10-02T15:24:50.3096783Z patching file arch/arm64/boot/dts/freescale/fsl-ls1043a.dtsi
2025-10-02T15:24:50.3097941Z patching file arch/arm64/boot/dts/freescale/fsl-ls1046a-frwy.dts
2025-10-02T15:24:50.3098986Z patching file arch/arm64/boot/dts/freescale/fsl-ls1046a-rdb.dts
2025-10-02T15:24:50.3100049Z patching file arch/arm64/boot/dts/freescale/fsl-ls1046a.dtsi
2025-10-02T15:24:50.3101364Z patching file arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
2025-10-02T15:24:50.3102777Z patching file arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi
2025-10-02T15:24:50.3104466Z patching file arch/arm64/boot/dts/freescale/imx8mm-beacon-baseboard.dtsi
2025-10-02T15:24:50.3105598Z patching file arch/arm64/boot/dts/freescale/imx8mm-beacon-som.dtsi
2025-10-02T15:24:50.3106609Z patching file arch/arm64/boot/dts/freescale/imx8mm-evk.dtsi
2025-10-02T15:24:50.3107581Z patching file arch/arm64/boot/dts/freescale/imx8mm-pinfunc.h
2025-10-02T15:24:50.3109223Z patching file arch/arm64/boot/dts/freescale/imx8mm-var-som.dtsi
2025-10-02T15:24:50.3110565Z patching file arch/arm64/boot/dts/freescale/imx8mm.dtsi
2025-10-02T15:24:50.3111895Z patching file arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts
2025-10-02T15:24:50.3112944Z patching file arch/arm64/boot/dts/freescale/imx8mn-var-som.dtsi
2025-10-02T15:24:50.3114157Z patching file arch/arm64/boot/dts/freescale/imx8mn.dtsi
2025-10-02T15:24:50.3115408Z patching file arch/arm64/boot/dts/freescale/imx8mp-evk.dts
2025-10-02T15:24:50.3116570Z patching file arch/arm64/boot/dts/freescale/imx8mp.dtsi
2025-10-02T15:24:50.3117885Z patching file arch/arm64/boot/dts/freescale/imx8mq-librem5-r3.dts
2025-10-02T15:24:50.3125476Z patching file arch/arm64/boot/dts/freescale/imx8mq-librem5.dtsi
2025-10-02T15:24:50.3126553Z patching file arch/arm64/boot/dts/freescale/imx8mq-pinfunc.h
2025-10-02T15:24:50.3127482Z patching file arch/arm64/boot/dts/freescale/imx8mq-thor96.dts
2025-10-02T15:24:50.3128518Z patching file arch/arm64/boot/dts/freescale/imx8mq-zii-ultra.dtsi
2025-10-02T15:24:50.3129442Z patching file arch/arm64/boot/dts/freescale/imx8mq.dtsi
2025-10-02T15:24:50.3130368Z patching file arch/arm64/boot/dts/hisilicon/hi3660.dtsi
2025-10-02T15:24:50.3131369Z patching file arch/arm64/boot/dts/hisilicon/hi3798cv200.dtsi
2025-10-02T15:24:50.3132191Z patching file arch/arm64/boot/dts/hisilicon/hi6220.dtsi
2025-10-02T15:24:50.3132933Z patching file arch/arm64/boot/dts/intel/socfpga_agilex.dtsi
2025-10-02T15:24:50.3133420Z patching file arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dts
2025-10-02T15:24:50.3133798Z patching file arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
2025-10-02T15:24:50.3134187Z patching file arch/arm64/boot/dts/marvell/armada-37xx.dtsi
2025-10-02T15:24:50.3134607Z patching file arch/arm64/boot/dts/marvell/armada-7040.dtsi
2025-10-02T15:24:50.3135131Z patching file arch/arm64/boot/dts/marvell/armada-8040.dtsi
2025-10-02T15:24:50.3136041Z patching file arch/arm64/boot/dts/marvell/armada-cp11x.dtsi
2025-10-02T15:24:50.3137050Z patching file arch/arm64/boot/dts/marvell/cn9130-db.dts
2025-10-02T15:24:50.3137842Z patching file arch/arm64/boot/dts/marvell/cn9130.dtsi
2025-10-02T15:24:50.3138793Z patching file arch/arm64/boot/dts/mediatek/mt2712-evb.dts
2025-10-02T15:24:50.3140098Z patching file arch/arm64/boot/dts/mediatek/mt2712e.dtsi
2025-10-02T15:24:50.3141822Z patching file arch/arm64/boot/dts/mediatek/mt6797.dtsi
2025-10-02T15:24:50.3142846Z patching file arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dts
2025-10-02T15:24:50.3143812Z patching file arch/arm64/boot/dts/mediatek/mt7622-rfb1.dts
2025-10-02T15:24:50.3144939Z patching file arch/arm64/boot/dts/mediatek/mt7622.dtsi
2025-10-02T15:24:50.3146549Z patching file arch/arm64/boot/dts/mediatek/mt8173-elm-hana.dtsi
2025-10-02T15:24:50.3147309Z patching file arch/arm64/boot/dts/mediatek/mt8173-elm.dtsi
2025-10-02T15:24:50.3149231Z patching file arch/arm64/boot/dts/mediatek/mt8173-evb.dts
2025-10-02T15:24:50.3151135Z patching file arch/arm64/boot/dts/mediatek/mt8173.dtsi
2025-10-02T15:24:50.3152597Z patching file arch/arm64/boot/dts/mediatek/mt8183-evb.dts
2025-10-02T15:24:50.3153396Z patching file arch/arm64/boot/dts/mediatek/mt8183-kukui-krane.dtsi
2025-10-02T15:24:50.3154369Z patching file arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi
2025-10-02T15:24:50.3155526Z patching file arch/arm64/boot/dts/mediatek/mt8183.dtsi
2025-10-02T15:24:50.3156811Z patching file arch/arm64/boot/dts/mediatek/mt8516.dtsi
2025-10-02T15:24:50.3157910Z patching file arch/arm64/boot/dts/mediatek/pumpkin-common.dtsi
2025-10-02T15:24:50.3159046Z patching file arch/arm64/boot/dts/microchip/sparx5.dtsi
2025-10-02T15:24:50.3159845Z patching file arch/arm64/boot/dts/microchip/sparx5_pcb_common.dtsi
2025-10-02T15:24:50.3160886Z patching file arch/arm64/boot/dts/nvidia/tegra132-norrin.dts
2025-10-02T15:24:50.3162425Z patching file arch/arm64/boot/dts/nvidia/tegra132.dtsi
2025-10-02T15:24:50.3164079Z patching file arch/arm64/boot/dts/nvidia/tegra186.dtsi
2025-10-02T15:24:50.3165605Z patching file arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi
2025-10-02T15:24:50.3167077Z patching file arch/arm64/boot/dts/nvidia/tegra194.dtsi
2025-10-02T15:24:50.3169286Z patching file arch/arm64/boot/dts/nvidia/tegra210-p2597.dtsi
2025-10-02T15:24:50.3171245Z patching file arch/arm64/boot/dts/nvidia/tegra210.dtsi
2025-10-02T15:24:50.3172895Z patching file arch/arm64/boot/dts/qcom/apq8096-ifc6640.dts
2025-10-02T15:24:50.3173770Z patching file arch/arm64/boot/dts/qcom/ipq6018-cp01-c1.dts
2025-10-02T15:24:50.3174610Z patching file arch/arm64/boot/dts/qcom/ipq6018.dtsi
2025-10-02T15:24:50.3175961Z patching file arch/arm64/boot/dts/qcom/ipq8074-hk01.dts
2025-10-02T15:24:50.3176831Z patching file arch/arm64/boot/dts/qcom/ipq8074.dtsi
2025-10-02T15:24:50.3178643Z patching file arch/arm64/boot/dts/qcom/msm8916-samsung-a2015-common.dtsi
2025-10-02T15:24:50.3179612Z patching file arch/arm64/boot/dts/qcom/msm8916-samsung-a5u-eur.dts
2025-10-02T15:24:50.3180689Z patching file arch/arm64/boot/dts/qcom/msm8916.dtsi
2025-10-02T15:24:50.3182620Z patching file arch/arm64/boot/dts/qcom/msm8992-bullhead-rev-101.dts
2025-10-02T15:24:50.3183475Z patching file arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dts
2025-10-02T15:24:50.3184485Z patching file arch/arm64/boot/dts/qcom/msm8994-angler-rev-101.dts
2025-10-02T15:24:50.3185305Z patching file arch/arm64/boot/dts/qcom/msm8994.dtsi
2025-10-02T15:24:50.3187075Z patching file arch/arm64/boot/dts/qcom/msm8996.dtsi
2025-10-02T15:24:50.3189612Z patching file arch/arm64/boot/dts/qcom/msm8998.dtsi
2025-10-02T15:24:50.3191523Z patching file arch/arm64/boot/dts/qcom/pm8150.dtsi
2025-10-02T15:24:50.3192239Z patching file arch/arm64/boot/dts/qcom/pm8916.dtsi
2025-10-02T15:24:50.3193214Z patching file arch/arm64/boot/dts/qcom/qcs404-evb.dtsi
2025-10-02T15:24:50.3194558Z patching file arch/arm64/boot/dts/qcom/qcs404.dtsi
2025-10-02T15:24:50.3196177Z patching file arch/arm64/boot/dts/qcom/qrb5165-rb5.dts
2025-10-02T15:24:50.3197247Z patching file arch/arm64/boot/dts/qcom/sc7180-idp.dts
2025-10-02T15:24:50.3198296Z patching file arch/arm64/boot/dts/qcom/sc7180-trogdor-lte-sku.dtsi
2025-10-02T15:24:50.3199267Z patching file arch/arm64/boot/dts/qcom/sc7180-trogdor.dtsi
2025-10-02T15:24:50.3201904Z patching file arch/arm64/boot/dts/qcom/sc7180.dtsi
2025-10-02T15:24:50.3204499Z patching file arch/arm64/boot/dts/qcom/sdm630.dtsi
2025-10-02T15:24:50.3206564Z patching file arch/arm64/boot/dts/qcom/sdm845-cheza.dtsi
2025-10-02T15:24:50.3208044Z patching file arch/arm64/boot/dts/qcom/sdm845-db845c.dts
2025-10-02T15:24:50.3209732Z patching file arch/arm64/boot/dts/qcom/sdm845-mtp.dts
2025-10-02T15:24:50.3212196Z patching file arch/arm64/boot/dts/qcom/sdm845.dtsi
2025-10-02T15:24:50.3215554Z patching file arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dts
2025-10-02T15:24:50.3217294Z patching file arch/arm64/boot/dts/qcom/sm8150.dtsi
2025-10-02T15:24:50.3218988Z patching file arch/arm64/boot/dts/qcom/sm8250-mtp.dts
2025-10-02T15:24:50.3220738Z patching file arch/arm64/boot/dts/qcom/sm8250.dtsi
2025-10-02T15:24:50.3222969Z patching file arch/arm64/boot/dts/renesas/beacon-renesom-baseboard.dtsi
2025-10-02T15:24:50.3224060Z patching file arch/arm64/boot/dts/renesas/beacon-renesom-som.dtsi
2025-10-02T15:24:50.3224958Z patching file arch/arm64/boot/dts/renesas/cat875.dtsi
2025-10-02T15:24:50.3225782Z patching file arch/arm64/boot/dts/renesas/hihope-common.dtsi
2025-10-02T15:24:50.3226720Z patching file arch/arm64/boot/dts/renesas/hihope-rzg2-ex.dtsi
2025-10-02T15:24:50.3227500Z patching file arch/arm64/boot/dts/renesas/r8a774a1-beacon-rzg2m-kit.dts
2025-10-02T15:24:50.3228925Z patching file arch/arm64/boot/dts/renesas/r8a774a1.dtsi
2025-10-02T15:24:50.3231716Z patching file arch/arm64/boot/dts/renesas/r8a774b1.dtsi
2025-10-02T15:24:50.3233508Z patching file arch/arm64/boot/dts/renesas/r8a774c0-cat874.dts
2025-10-02T15:24:50.3234628Z patching file arch/arm64/boot/dts/renesas/r8a774c0.dtsi
2025-10-02T15:24:50.3236956Z patching file arch/arm64/boot/dts/renesas/r8a774e1.dtsi
2025-10-02T15:24:50.3239607Z patching file arch/arm64/boot/dts/renesas/r8a77960.dtsi
2025-10-02T15:24:50.3242060Z patching file arch/arm64/boot/dts/renesas/r8a77961.dtsi
2025-10-02T15:24:50.3243739Z patching file arch/arm64/boot/dts/renesas/r8a77970-v3msk.dts
2025-10-02T15:24:50.3244769Z patching file arch/arm64/boot/dts/renesas/r8a77980.dtsi
2025-10-02T15:24:50.3246507Z patching file arch/arm64/boot/dts/renesas/r8a77990-ebisu.dts
2025-10-02T15:24:50.3247950Z patching file arch/arm64/boot/dts/renesas/r8a77990.dtsi
2025-10-02T15:24:50.3249821Z patching file arch/arm64/boot/dts/renesas/r8a77995-draak.dts
2025-10-02T15:24:50.3250715Z patching file arch/arm64/boot/dts/renesas/r8a779a0.dtsi
2025-10-02T15:24:50.3251741Z patching file arch/arm64/boot/dts/renesas/salvator-common.dtsi
2025-10-02T15:24:50.3252817Z patching file arch/arm64/boot/dts/renesas/ulcb-kf.dtsi
2025-10-02T15:24:50.3253799Z patching file arch/arm64/boot/dts/renesas/ulcb.dtsi
2025-10-02T15:24:50.3255290Z patching file arch/arm64/boot/dts/rockchip/px30.dtsi
2025-10-02T15:24:50.3257173Z patching file arch/arm64/boot/dts/rockchip/rk3308-roc-cc.dts
2025-10-02T15:24:50.3258091Z patching file arch/arm64/boot/dts/rockchip/rk3328-nanopi-r2s.dts
2025-10-02T15:24:50.3259028Z patching file arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dts
2025-10-02T15:24:50.3260332Z patching file arch/arm64/boot/dts/rockchip/rk3328-rock64.dts
2025-10-02T15:24:50.3261744Z patching file arch/arm64/boot/dts/rockchip/rk3328.dtsi
2025-10-02T15:24:50.3263657Z patching file arch/arm64/boot/dts/rockchip/rk3368-lion.dtsi
2025-10-02T15:24:50.3264599Z patching file arch/arm64/boot/dts/rockchip/rk3368.dtsi
2025-10-02T15:24:50.3266162Z patching file arch/arm64/boot/dts/rockchip/rk3399-firefly.dts
2025-10-02T15:24:50.3267144Z patching file arch/arm64/boot/dts/rockchip/rk3399-gru-bob.dts
2025-10-02T15:24:50.3267968Z patching file arch/arm64/boot/dts/rockchip/rk3399-gru-chromebook.dtsi
2025-10-02T15:24:50.3269060Z patching file arch/arm64/boot/dts/rockchip/rk3399-gru-scarlet.dtsi
2025-10-02T15:24:50.3270337Z patching file arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi
2025-10-02T15:24:50.3271861Z patching file arch/arm64/boot/dts/rockchip/rk3399-khadas-edge.dtsi
2025-10-02T15:24:50.3272901Z patching file arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dts
2025-10-02T15:24:50.3274094Z patching file arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dts
2025-10-02T15:24:50.3275555Z patching file arch/arm64/boot/dts/rockchip/rk3399-puma-haikou.dts
2025-10-02T15:24:50.3276387Z patching file arch/arm64/boot/dts/rockchip/rk3399-puma.dtsi
2025-10-02T15:24:50.3277845Z patching file arch/arm64/boot/dts/rockchip/rk3399-roc-pc.dtsi
2025-10-02T15:24:50.3279050Z patching file arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4.dtsi
2025-10-02T15:24:50.3281155Z patching file arch/arm64/boot/dts/rockchip/rk3399-rock960.dtsi
2025-10-02T15:24:50.3282189Z patching file arch/arm64/boot/dts/rockchip/rk3399-sapphire-excavator.dts
2025-10-02T15:24:50.3283591Z patching file arch/arm64/boot/dts/rockchip/rk3399.dtsi
2025-10-02T15:24:50.3286101Z patching file arch/arm64/boot/dts/socionext/uniphier-ld20.dtsi
2025-10-02T15:24:50.3287251Z patching file arch/arm64/boot/dts/socionext/uniphier-pxs3.dtsi
2025-10-02T15:24:50.3288747Z patching file arch/arm64/boot/dts/ti/k3-am65-main.dtsi
2025-10-02T15:24:50.3290233Z patching file arch/arm64/boot/dts/ti/k3-am65.dtsi
2025-10-02T15:24:50.3291000Z patching file arch/arm64/boot/dts/ti/k3-am654-base-board.dts
2025-10-02T15:24:50.3292033Z patching file arch/arm64/boot/dts/ti/k3-j7200-common-proc-board.dts
2025-10-02T15:24:50.3292943Z patching file arch/arm64/boot/dts/ti/k3-j7200-main.dtsi
2025-10-02T15:24:50.3294177Z patching file arch/arm64/boot/dts/ti/k3-j7200-mcu-wakeup.dtsi
2025-10-02T15:24:50.3294952Z patching file arch/arm64/boot/dts/ti/k3-j7200.dtsi
2025-10-02T15:24:50.3296063Z patching file arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts
2025-10-02T15:24:50.3297462Z patching file arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
2025-10-02T15:24:50.3299634Z patching file arch/arm64/boot/dts/ti/k3-j721e.dtsi
2025-10-02T15:24:50.3300625Z patching file arch/arm64/boot/dts/xilinx/zynqmp-zc1751-xm016-dc2.dts
2025-10-02T15:24:50.3301490Z patching file arch/arm64/boot/dts/xilinx/zynqmp.dtsi
2025-10-02T15:24:50.3302796Z patching file arch/arm64/configs/defconfig
2025-10-02T15:24:50.3303885Z patching file arch/arm64/crypto/Kconfig
2025-10-02T15:24:50.3304894Z patching file arch/arm64/crypto/aes-glue.c
2025-10-02T15:24:50.3306420Z patching file arch/arm64/crypto/poly1305-armv8.pl
2025-10-02T15:24:50.3307583Z patching file arch/arm64/crypto/poly1305-core.S_shipped
2025-10-02T15:24:50.3308629Z patching file arch/arm64/crypto/poly1305-glue.c
2025-10-02T15:24:50.3309623Z patching file arch/arm64/crypto/sha1-ce-glue.c
2025-10-02T15:24:50.3310390Z patching file arch/arm64/crypto/sha2-ce-glue.c
2025-10-02T15:24:50.3311303Z patching file arch/arm64/crypto/sha3-ce-glue.c
2025-10-02T15:24:50.3312108Z patching file arch/arm64/crypto/sha512-ce-glue.c
2025-10-02T15:24:50.3313029Z patching file arch/arm64/include/asm/Kbuild
2025-10-02T15:24:50.3313779Z patching file arch/arm64/include/asm/acpi.h
2025-10-02T15:24:50.3315012Z patching file arch/arm64/include/asm/alternative.h
2025-10-02T15:24:50.3315971Z patching file arch/arm64/include/asm/arch_timer.h
2025-10-02T15:24:50.3316921Z patching file arch/arm64/include/asm/asm-bug.h
2025-10-02T15:24:50.3317697Z patching file arch/arm64/include/asm/asm-uaccess.h
2025-10-02T15:24:50.3318751Z patching file arch/arm64/include/asm/assembler.h
2025-10-02T15:24:50.3320037Z patching file arch/arm64/include/asm/atomic.h
2025-10-02T15:24:50.3321399Z patching file arch/arm64/include/asm/atomic_ll_sc.h
2025-10-02T15:24:50.3323002Z patching file arch/arm64/include/asm/atomic_lse.h
2025-10-02T15:24:50.3324074Z patching file arch/arm64/include/asm/barrier.h
2025-10-02T15:24:50.3325106Z patching file arch/arm64/include/asm/cpu.h
2025-10-02T15:24:50.3326004Z patching file arch/arm64/include/asm/cpucaps.h
2025-10-02T15:24:50.3327057Z patching file arch/arm64/include/asm/cpufeature.h
2025-10-02T15:24:50.3328605Z patching file arch/arm64/include/asm/cputype.h
2025-10-02T15:24:50.3330197Z patching file arch/arm64/include/asm/daifflags.h
2025-10-02T15:24:50.3331010Z patching file arch/arm64/include/asm/debug-monitors.h
2025-10-02T15:24:50.3331885Z patching file arch/arm64/include/asm/efi.h
2025-10-02T15:24:50.3332903Z patching file arch/arm64/include/asm/esr.h
2025-10-02T15:24:50.3333944Z patching file arch/arm64/include/asm/exception.h
2025-10-02T15:24:50.3334900Z patching file arch/arm64/include/asm/fixmap.h
2025-10-02T15:24:50.3335751Z patching file arch/arm64/include/asm/hwcap.h
2025-10-02T15:24:50.3336713Z patching file arch/arm64/include/asm/hyp_image.h
2025-10-02T15:24:50.3337632Z patching file arch/arm64/include/asm/insn.h
2025-10-02T15:24:50.3339339Z patching file arch/arm64/include/asm/io.h
2025-10-02T15:24:50.3340386Z patching file arch/arm64/include/asm/kernel-pgtable.h
2025-10-02T15:24:50.3341458Z patching file arch/arm64/include/asm/kvm_arm.h
2025-10-02T15:24:50.3342697Z patching file arch/arm64/include/asm/kvm_asm.h
2025-10-02T15:24:50.3344059Z patching file arch/arm64/include/asm/kvm_emulate.h
2025-10-02T15:24:50.3345290Z patching file arch/arm64/include/asm/kvm_host.h
2025-10-02T15:24:50.3346604Z patching file arch/arm64/include/asm/kvm_hyp.h
2025-10-02T15:24:50.3347444Z patching file arch/arm64/include/asm/kvm_mmu.h
2025-10-02T15:24:50.3348522Z patching file arch/arm64/include/asm/memory.h
2025-10-02T15:24:50.3349757Z patching file arch/arm64/include/asm/mman.h
2025-10-02T15:24:50.3350742Z patching file arch/arm64/include/asm/mmu.h
2025-10-02T15:24:50.3351803Z patching file arch/arm64/include/asm/mmu_context.h
2025-10-02T15:24:50.3353912Z patching file arch/arm64/include/asm/module.lds.h
2025-10-02T15:24:50.3354449Z patching file arch/arm64/include/asm/pgtable-prot.h
2025-10-02T15:24:50.3355798Z patching file arch/arm64/include/asm/pgtable.h
2025-10-02T15:24:50.3357332Z patching file arch/arm64/include/asm/preempt.h
2025-10-02T15:24:50.3358052Z patching file arch/arm64/include/asm/processor.h
2025-10-02T15:24:50.3359256Z patching file arch/arm64/include/asm/ptrace.h
2025-10-02T15:24:50.3360261Z patching file arch/arm64/include/asm/scs.h
2025-10-02T15:24:50.3361066Z patching file arch/arm64/include/asm/sdei.h
2025-10-02T15:24:50.3361981Z patching file arch/arm64/include/asm/sections.h
2025-10-02T15:24:50.3362699Z patching file arch/arm64/include/asm/spectre.h
2025-10-02T15:24:50.3363596Z patching file arch/arm64/include/asm/syscall.h
2025-10-02T15:24:50.3364534Z patching file arch/arm64/include/asm/syscall_wrapper.h
2025-10-02T15:24:50.3365528Z patching file arch/arm64/include/asm/sysreg.h
2025-10-02T15:24:50.3367201Z patching file arch/arm64/include/asm/system_misc.h
2025-10-02T15:24:50.3367866Z patching file arch/arm64/include/asm/thread_info.h
2025-10-02T15:24:50.3368760Z patching file arch/arm64/include/asm/tlb.h
2025-10-02T15:24:50.3369768Z patching file arch/arm64/include/asm/tlbflush.h
2025-10-02T15:24:50.3371116Z patching file arch/arm64/include/asm/traps.h
2025-10-02T15:24:50.3371868Z patching file arch/arm64/include/asm/uaccess.h
2025-10-02T15:24:50.3373216Z patching file arch/arm64/include/asm/unistd32.h
2025-10-02T15:24:50.3374266Z patching file arch/arm64/include/asm/uprobes.h
2025-10-02T15:24:50.3375090Z patching file arch/arm64/include/asm/vdso/gettimeofday.h
2025-10-02T15:24:50.3375985Z patching file arch/arm64/include/asm/vectors.h
2025-10-02T15:24:50.3377378Z patching file arch/arm64/include/asm/word-at-a-time.h
2025-10-02T15:24:50.3378098Z patching file arch/arm64/include/uapi/asm/hwcap.h
2025-10-02T15:24:50.3378917Z patching file arch/arm64/include/uapi/asm/kvm.h
2025-10-02T15:24:50.3380061Z patching file arch/arm64/kernel/acpi_numa.c
2025-10-02T15:24:50.3381121Z patching file arch/arm64/kernel/alternative.c
2025-10-02T15:24:50.3382198Z patching file arch/arm64/kernel/armv8_deprecated.c
2025-10-02T15:24:50.3384416Z patching file arch/arm64/kernel/cacheinfo.c
2025-10-02T15:24:50.3385376Z patching file arch/arm64/kernel/cpu_errata.c
2025-10-02T15:24:50.3387604Z patching file arch/arm64/kernel/cpufeature.c
2025-10-02T15:24:50.3390978Z patching file arch/arm64/kernel/cpuidle.c
2025-10-02T15:24:50.3391739Z patching file arch/arm64/kernel/cpuinfo.c
2025-10-02T15:24:50.3392814Z patching file arch/arm64/kernel/crash_dump.c
2025-10-02T15:24:50.3393726Z patching file arch/arm64/kernel/debug-monitors.c
2025-10-02T15:24:50.3394675Z patching file arch/arm64/kernel/efi-rt-wrapper.S
2025-10-02T15:24:50.3395515Z patching file arch/arm64/kernel/efi.c
2025-10-02T15:24:50.3396881Z patching file arch/arm64/kernel/entry-common.c
2025-10-02T15:24:50.3398283Z patching file arch/arm64/kernel/entry-ftrace.S
2025-10-02T15:24:50.3399306Z patching file arch/arm64/kernel/entry.S
2025-10-02T15:24:50.3402410Z patching file arch/arm64/kernel/fpsimd.c
2025-10-02T15:24:50.3403864Z patching file arch/arm64/kernel/ftrace.c
2025-10-02T15:24:50.3405411Z patching file arch/arm64/kernel/head.S
2025-10-02T15:24:50.3407099Z patching file arch/arm64/kernel/hw_breakpoint.c
2025-10-02T15:24:50.3408334Z patching file arch/arm64/kernel/image-vars.h
2025-10-02T15:24:50.3409706Z patching file arch/arm64/kernel/insn.c
2025-10-02T15:24:50.3411851Z patching file arch/arm64/kernel/kgdb.c
2025-10-02T15:24:50.3412811Z patching file arch/arm64/kernel/machine_kexec_file.c
2025-10-02T15:24:50.3413787Z patching file arch/arm64/kernel/module-plts.c
2025-10-02T15:24:50.3414784Z patching file arch/arm64/kernel/mte.c
2025-10-02T15:24:50.3415767Z patching file arch/arm64/kernel/paravirt.c
2025-10-02T15:24:50.3416843Z patching file arch/arm64/kernel/perf_callchain.c
2025-10-02T15:24:50.3418276Z patching file arch/arm64/kernel/perf_event.c
2025-10-02T15:24:50.3419880Z patching file arch/arm64/kernel/probes/decode-insn.c
2025-10-02T15:24:50.3421060Z patching file arch/arm64/kernel/probes/kprobes.c
2025-10-02T15:24:50.3421934Z patching file arch/arm64/kernel/probes/simulate-insn.c
2025-10-02T15:24:50.3422779Z patching file arch/arm64/kernel/probes/uprobes.c
2025-10-02T15:24:50.3423823Z patching file arch/arm64/kernel/process.c
2025-10-02T15:24:50.3425435Z patching file arch/arm64/kernel/proton-pack.c
2025-10-02T15:24:50.3428025Z patching file arch/arm64/kernel/ptrace.c
2025-10-02T15:24:50.3429936Z patching file arch/arm64/kernel/sdei.c
2025-10-02T15:24:50.3430859Z patching file arch/arm64/kernel/setup.c
2025-10-02T15:24:50.3432227Z patching file arch/arm64/kernel/signal.c
2025-10-02T15:24:50.3433778Z patching file arch/arm64/kernel/smp.c
2025-10-02T15:24:50.3435182Z patching file arch/arm64/kernel/stacktrace.c
2025-10-02T15:24:50.3435958Z patching file arch/arm64/kernel/suspend.c
2025-10-02T15:24:50.3436895Z patching file arch/arm64/kernel/sys_compat.c
2025-10-02T15:24:50.3437691Z patching file arch/arm64/kernel/syscall.c
2025-10-02T15:24:50.3438782Z patching file arch/arm64/kernel/topology.c
2025-10-02T15:24:50.3440038Z patching file arch/arm64/kernel/traps.c
2025-10-02T15:24:50.3442039Z patching file arch/arm64/kernel/vdso/vdso.lds.S
2025-10-02T15:24:50.3442700Z patching file arch/arm64/kernel/vdso32/Makefile
2025-10-02T15:24:50.3443968Z patching file arch/arm64/kernel/vmlinux.lds.S
2025-10-02T15:24:50.3445338Z patching file arch/arm64/kvm/arm.c
2025-10-02T15:24:50.3447010Z patching file arch/arm64/kvm/debug.c
2025-10-02T15:24:50.3448380Z patching file arch/arm64/kvm/guest.c
2025-10-02T15:24:50.3449454Z patching file arch/arm64/kvm/hyp/entry.S
2025-10-02T15:24:50.3450585Z patching file arch/arm64/kvm/hyp/hyp-entry.S
2025-10-02T15:24:50.3451596Z patching file arch/arm64/kvm/hyp/include/hyp/switch.h
2025-10-02T15:24:50.3452597Z patching file arch/arm64/kvm/hyp/include/hyp/sysreg-sr.h
2025-10-02T15:24:50.3453303Z patching file arch/arm64/kvm/hyp/nvhe/Makefile
2025-10-02T15:24:50.3454020Z patching file arch/arm64/kvm/hyp/nvhe/debug-sr.c
2025-10-02T15:24:50.3454908Z patching file arch/arm64/kvm/hyp/nvhe/host.S
2025-10-02T15:24:50.3455830Z patching file arch/arm64/kvm/hyp/nvhe/hyp-main.c
2025-10-02T15:24:50.3457295Z patching file arch/arm64/kvm/hyp/nvhe/switch.c
2025-10-02T15:24:50.3458034Z patching file arch/arm64/kvm/hyp/nvhe/tlb.c
2025-10-02T15:24:50.3459039Z patching file arch/arm64/kvm/hyp/pgtable.c
2025-10-02T15:24:50.3460388Z patching file arch/arm64/kvm/hyp/smccc_wa.S
2025-10-02T15:24:50.3461275Z patching file arch/arm64/kvm/hyp/vhe/switch.c
2025-10-02T15:24:50.3462197Z patching file arch/arm64/kvm/hyp/vhe/tlb.c
2025-10-02T15:24:50.3462954Z patching file arch/arm64/kvm/hypercalls.c
2025-10-02T15:24:50.3464077Z patching file arch/arm64/kvm/mmu.c
2025-10-02T15:24:50.3465833Z patching file arch/arm64/kvm/pmu-emul.c
2025-10-02T15:24:50.3467243Z patching file arch/arm64/kvm/psci.c
2025-10-02T15:24:50.3468436Z patching file arch/arm64/kvm/reset.c
2025-10-02T15:24:50.3470635Z patching file arch/arm64/kvm/sys_regs.c
2025-10-02T15:24:50.3473864Z patching file arch/arm64/kvm/vgic/vgic-its.c
2025-10-02T15:24:50.3476424Z patching file arch/arm64/kvm/vgic/vgic-kvm-device.c
2025-10-02T15:24:50.3477736Z patching file arch/arm64/kvm/vgic/vgic-mmio-v2.c
2025-10-02T15:24:50.3478842Z patching file arch/arm64/kvm/vgic/vgic-mmio-v3.c
2025-10-02T15:24:50.3480571Z patching file arch/arm64/kvm/vgic/vgic-mmio.c
2025-10-02T15:24:50.3481849Z patching file arch/arm64/kvm/vgic/vgic-mmio.h
2025-10-02T15:24:50.3482720Z patching file arch/arm64/kvm/vgic/vgic-v3.c
2025-10-02T15:24:50.3483803Z patching file arch/arm64/kvm/vgic/vgic-v4.c
2025-10-02T15:24:50.3485169Z patching file arch/arm64/kvm/vgic/vgic.c
2025-10-02T15:24:50.3486381Z patching file arch/arm64/kvm/vgic/vgic.h
2025-10-02T15:24:50.3487328Z patching file arch/arm64/lib/clear_page.S
2025-10-02T15:24:50.3488071Z patching file arch/arm64/lib/copy_from_user.S
2025-10-02T15:24:50.3488861Z patching file arch/arm64/lib/copy_in_user.S
2025-10-02T15:24:50.3489927Z patching file arch/arm64/lib/copy_page.S
2025-10-02T15:24:50.3490829Z patching file arch/arm64/lib/copy_to_user.S
2025-10-02T15:24:50.3491540Z patching file arch/arm64/lib/csum.c
2025-10-02T15:24:50.3492280Z patching file arch/arm64/mm/cache.S
2025-10-02T15:24:50.3494046Z patching file arch/arm64/mm/context.c
2025-10-02T15:24:50.3495021Z patching file arch/arm64/mm/copypage.c
2025-10-02T15:24:50.3495939Z patching file arch/arm64/mm/fault.c
2025-10-02T15:24:50.3497204Z patching file arch/arm64/mm/flush.c
2025-10-02T15:24:50.3497951Z patching file arch/arm64/mm/hugetlbpage.c
2025-10-02T15:24:50.3499000Z patching file arch/arm64/mm/init.c
2025-10-02T15:24:50.3500803Z patching file arch/arm64/mm/ioremap.c
2025-10-02T15:24:50.3501802Z patching file arch/arm64/mm/mmu.c
2025-10-02T15:24:50.3503822Z patching file arch/arm64/mm/physaddr.c
2025-10-02T15:24:50.3504446Z patching file arch/arm64/mm/proc.S
2025-10-02T15:24:50.3505458Z patching file arch/arm64/mm/ptdump_debugfs.c
2025-10-02T15:24:50.3506240Z patching file arch/arm64/net/bpf_jit.h
2025-10-02T15:24:50.3507548Z patching file arch/arm64/net/bpf_jit_comp.c
2025-10-02T15:24:50.3509138Z patching file arch/arm64/xen/hypercall.S
2025-10-02T15:24:50.3510031Z patching file arch/c6x/include/asm/thread_info.h
2025-10-02T15:24:50.3510940Z patching file arch/c6x/kernel/asm-offsets.c
2025-10-02T15:24:50.3511724Z patching file arch/c6x/kernel/signal.c
2025-10-02T15:24:50.3512698Z patching file arch/csky/Kconfig
2025-10-02T15:24:50.3513584Z patching file arch/csky/abiv1/alignment.c
2025-10-02T15:24:50.3514533Z patching file arch/csky/include/asm/Kbuild
2025-10-02T15:24:50.3515216Z patching file arch/csky/include/asm/page.h
2025-10-02T15:24:50.3516019Z patching file arch/csky/include/asm/thread_info.h
2025-10-02T15:24:50.3516848Z patching file arch/csky/include/uapi/asm/unistd.h
2025-10-02T15:24:50.3517659Z patching file arch/csky/kernel/perf_callchain.c
2025-10-02T15:24:50.3518678Z patching file arch/csky/kernel/probes/kprobes.c
2025-10-02T15:24:50.3519700Z patching file arch/csky/kernel/process.c
2025-10-02T15:24:50.3520560Z patching file arch/csky/kernel/ptrace.c
2025-10-02T15:24:50.3521523Z patching file arch/csky/kernel/signal.c
2025-10-02T15:24:50.3522391Z patching file arch/csky/kernel/smp.c
2025-10-02T15:24:50.3523309Z patching file arch/csky/kernel/traps.c
2025-10-02T15:24:50.3524181Z patching file arch/csky/mm/syscache.c
2025-10-02T15:24:50.3525005Z patching file arch/h8300/include/asm/Kbuild
2025-10-02T15:24:50.3525734Z patching file arch/h8300/include/asm/thread_info.h
2025-10-02T15:24:50.3526642Z patching file arch/h8300/kernel/asm-offsets.c
2025-10-02T15:24:50.3527304Z patching file arch/h8300/kernel/process.c
2025-10-02T15:24:50.3528188Z patching file arch/h8300/kernel/signal.c
2025-10-02T15:24:50.3528957Z patching file arch/h8300/kernel/traps.c
2025-10-02T15:24:50.3529900Z patching file arch/h8300/mm/fault.c
2025-10-02T15:24:50.3530670Z patching file arch/hexagon/Kconfig
2025-10-02T15:24:50.3531345Z patching file arch/hexagon/Makefile
2025-10-02T15:24:50.3532273Z patching file arch/hexagon/include/asm/Kbuild
2025-10-02T15:24:50.3532956Z patching file arch/hexagon/include/asm/cmpxchg.h
2025-10-02T15:24:50.3533687Z patching file arch/hexagon/include/asm/futex.h
2025-10-02T15:24:50.3534616Z patching file arch/hexagon/include/asm/syscalls.h
2025-10-02T15:24:50.3535587Z patching file arch/hexagon/include/asm/thread_info.h
2025-10-02T15:24:50.3536314Z patching file arch/hexagon/include/asm/timer-regs.h
2025-10-02T15:24:50.3537157Z patching file arch/hexagon/include/asm/timex.h
2025-10-02T15:24:50.3537919Z patching file arch/hexagon/include/uapi/asm/unistd.h
2025-10-02T15:24:50.3538734Z patching file arch/hexagon/kernel/hexagon_ksyms.c
2025-10-02T15:24:50.3539402Z patching file arch/hexagon/kernel/process.c
2025-10-02T15:24:50.3540840Z patching file arch/hexagon/kernel/ptrace.c
2025-10-02T15:24:50.3541510Z patching file arch/hexagon/kernel/syscalltab.c
2025-10-02T15:24:50.3542290Z patching file arch/hexagon/kernel/time.c
2025-10-02T15:24:50.3543281Z patching file arch/hexagon/kernel/traps.c
2025-10-02T15:24:50.3544447Z patching file arch/hexagon/kernel/vmlinux.lds.S
2025-10-02T15:24:50.3544968Z patching file arch/hexagon/lib/Makefile
2025-10-02T15:24:50.3545610Z patching file arch/hexagon/lib/divsi3.S
2025-10-02T15:24:50.3546593Z patching file arch/hexagon/lib/io.c
2025-10-02T15:24:50.3547428Z patching file arch/hexagon/lib/memcpy_likely_aligned.S
2025-10-02T15:24:50.3548311Z patching file arch/hexagon/lib/modsi3.S
2025-10-02T15:24:50.3549215Z patching file arch/hexagon/lib/udivsi3.S
2025-10-02T15:24:50.3550184Z patching file arch/hexagon/lib/umodsi3.S
2025-10-02T15:24:50.3551245Z patching file arch/ia64/Kconfig
2025-10-02T15:24:50.3552131Z patching file arch/ia64/Kconfig.debug
2025-10-02T15:24:50.3552940Z patching file arch/ia64/configs/generic_defconfig
2025-10-02T15:24:50.3554345Z patching file arch/ia64/include/asm/bugs.h
2025-10-02T15:24:50.3555115Z patching file arch/ia64/include/asm/efi.h
2025-10-02T15:24:50.3556417Z patching file arch/ia64/include/asm/local64.h
2025-10-02T15:24:50.3557080Z patching file arch/ia64/include/asm/module.h
2025-10-02T15:24:50.3558135Z patching file arch/ia64/include/asm/pgtable.h
2025-10-02T15:24:50.3559732Z patching file arch/ia64/include/asm/processor.h
2025-10-02T15:24:50.3560791Z patching file arch/ia64/include/asm/ptrace.h
2025-10-02T15:24:50.3561734Z patching file arch/ia64/include/asm/syscall.h
2025-10-02T15:24:50.3562578Z patching file arch/ia64/include/asm/thread_info.h
2025-10-02T15:24:50.3563530Z patching file arch/ia64/include/asm/timex.h
2025-10-02T15:24:50.3564508Z patching file arch/ia64/kernel/acpi.c
2025-10-02T15:24:50.3566131Z patching file arch/ia64/kernel/efi.c
2025-10-02T15:24:50.3567691Z patching file arch/ia64/kernel/err_inject.c
2025-10-02T15:24:50.3569038Z patching file arch/ia64/kernel/kprobes.c
2025-10-02T15:24:50.3570571Z patching file arch/ia64/kernel/machine_kexec.c
2025-10-02T15:24:50.3571800Z patching file arch/ia64/kernel/mca.c
2025-10-02T15:24:50.3573764Z patching file arch/ia64/kernel/mca_drv.c
2025-10-02T15:24:50.3575104Z patching file arch/ia64/kernel/module.c
2025-10-02T15:24:50.3576509Z patching file arch/ia64/kernel/process.c
2025-10-02T15:24:50.3578051Z patching file arch/ia64/kernel/ptrace.c
2025-10-02T15:24:50.3580029Z patching file arch/ia64/kernel/salinfo.c
2025-10-02T15:24:50.3581447Z patching file arch/ia64/kernel/setup.c
2025-10-02T15:24:50.3582849Z patching file arch/ia64/kernel/signal.c
2025-10-02T15:24:50.3583900Z patching file arch/ia64/kernel/smpboot.c
2025-10-02T15:24:50.3585284Z patching file arch/ia64/kernel/time.c
2025-10-02T15:24:50.3586264Z patching file arch/ia64/kernel/traps.c
2025-10-02T15:24:50.3587314Z patching file arch/ia64/kernel/uncached.c
2025-10-02T15:24:50.3588246Z patching file arch/ia64/mm/contig.c
2025-10-02T15:24:50.3589226Z patching file arch/ia64/mm/discontig.c
2025-10-02T15:24:50.3590739Z patching file arch/ia64/mm/fault.c
2025-10-02T15:24:50.3591434Z patching file arch/ia64/mm/hugetlbpage.c
2025-10-02T15:24:50.3592426Z patching file arch/ia64/mm/init.c
2025-10-02T15:24:50.3593624Z patching file arch/ia64/mm/numa.c
2025-10-02T15:24:50.3594342Z patching file arch/ia64/scripts/unwcheck.py
2025-10-02T15:24:50.3595085Z patching file arch/m68k/68000/entry.S
2025-10-02T15:24:50.3595989Z patching file arch/m68k/Kconfig
2025-10-02T15:24:50.3596769Z patching file arch/m68k/Kconfig.cpu
2025-10-02T15:24:50.3597975Z patching file arch/m68k/Kconfig.debug
2025-10-02T15:24:50.3598566Z patching file arch/m68k/Kconfig.devices
2025-10-02T15:24:50.3599635Z patching file arch/m68k/Kconfig.machine
2025-10-02T15:24:50.3601056Z patching file arch/m68k/amiga/config.c
2025-10-02T15:24:50.3602169Z patching file arch/m68k/atari/ataints.c
2025-10-02T15:24:50.3603433Z patching file arch/m68k/coldfire/device.c
2025-10-02T15:24:50.3604553Z patching file arch/m68k/coldfire/entry.S
2025-10-02T15:24:50.3605494Z patching file arch/m68k/emu/nfeth.c
2025-10-02T15:24:50.3606508Z patching file arch/m68k/fpsp040/skeleton.S
2025-10-02T15:24:50.3607534Z patching file arch/m68k/ifpsp060/os.S
2025-10-02T15:24:50.3608766Z patching file arch/m68k/include/asm/Kbuild
2025-10-02T15:24:50.3609829Z patching file arch/m68k/include/asm/bugs.h
2025-10-02T15:24:50.3610730Z patching file arch/m68k/include/asm/cmpxchg.h
2025-10-02T15:24:50.3611614Z patching file arch/m68k/include/asm/mcfgpio.h
2025-10-02T15:24:50.3612693Z patching file arch/m68k/include/asm/motorola_pgtable.h
2025-10-02T15:24:50.3613540Z patching file arch/m68k/include/asm/mvme147hw.h
2025-10-02T15:24:50.3614421Z patching file arch/m68k/include/asm/pgtable_no.h
2025-10-02T15:24:50.3615217Z patching file arch/m68k/include/asm/raw_io.h
2025-10-02T15:24:50.3616603Z patching file arch/m68k/include/asm/thread_info.h
2025-10-02T15:24:50.3617211Z patching file arch/m68k/include/asm/timex.h
2025-10-02T15:24:50.3618069Z patching file arch/m68k/include/asm/vga.h
2025-10-02T15:24:50.3618826Z patching file arch/m68k/kernel/early_printk.c
2025-10-02T15:24:50.3619888Z patching file arch/m68k/kernel/entry.S
2025-10-02T15:24:50.3622225Z patching file arch/m68k/kernel/head.S
2025-10-02T15:24:50.3624668Z patching file arch/m68k/kernel/process.c
2025-10-02T15:24:50.3625430Z patching file arch/m68k/kernel/relocate_kernel.S
2025-10-02T15:24:50.3626338Z patching file arch/m68k/kernel/setup_mm.c
2025-10-02T15:24:50.3627695Z patching file arch/m68k/kernel/signal.c
2025-10-02T15:24:50.3629698Z patching file arch/m68k/kernel/sys_m68k.c
2025-10-02T15:24:50.3631130Z patching file arch/m68k/kernel/traps.c
2025-10-02T15:24:50.3632789Z patching file arch/m68k/mac/config.c
2025-10-02T15:24:50.3634261Z patching file arch/m68k/mac/misc.c
2025-10-02T15:24:50.3635317Z patching file arch/m68k/mm/fault.c
2025-10-02T15:24:50.3636176Z patching file arch/m68k/mvme147/config.c
2025-10-02T15:24:50.3637186Z patching file arch/m68k/mvme147/mvme147.h
2025-10-02T15:24:50.3638145Z patching file arch/m68k/mvme16x/config.c
2025-10-02T15:24:50.3639157Z patching file arch/m68k/mvme16x/mvme16x.h
2025-10-02T15:24:50.3640391Z patching file arch/microblaze/include/asm/Kbuild
2025-10-02T15:24:50.3641172Z patching file arch/microblaze/include/asm/thread_info.h
2025-10-02T15:24:50.3642081Z patching file arch/microblaze/include/asm/uaccess.h
2025-10-02T15:24:50.3643061Z patching file arch/microblaze/kernel/Makefile
2025-10-02T15:24:50.3643875Z patching file arch/microblaze/kernel/cpu/cpuinfo-static.c
2025-10-02T15:24:50.3644696Z patching file arch/microblaze/kernel/exceptions.c
2025-10-02T15:24:50.3645463Z patching file arch/microblaze/kernel/process.c
2025-10-02T15:24:50.3646387Z patching file arch/microblaze/kernel/signal.c
2025-10-02T15:24:50.3647393Z patching file arch/microblaze/mm/init.c
2025-10-02T15:24:50.3649163Z patching file arch/mips/Kconfig
2025-10-02T15:24:50.3651736Z patching file arch/mips/Makefile
2025-10-02T15:24:50.3652990Z patching file arch/mips/alchemy/board-xxs1500.c
2025-10-02T15:24:50.3653807Z patching file arch/mips/alchemy/devboards/db1000.c
2025-10-02T15:24:50.3655229Z patching file arch/mips/alchemy/devboards/db1200.c
2025-10-02T15:24:50.3656748Z patching file arch/mips/alchemy/devboards/db1300.c
2025-10-02T15:24:50.3658093Z patching file arch/mips/alchemy/devboards/db1550.c
2025-10-02T15:24:50.3659024Z patching file arch/mips/bcm47xx/Kconfig
2025-10-02T15:24:50.3659855Z patching file arch/mips/bcm47xx/prom.c
2025-10-02T15:24:50.3661127Z patching file arch/mips/bcm63xx/clk.c
2025-10-02T15:24:50.3661998Z patching file arch/mips/bmips/dma.c
2025-10-02T15:24:50.3662759Z patching file arch/mips/bmips/setup.c
2025-10-02T15:24:50.3663815Z patching file arch/mips/boot/compressed/Makefile
2025-10-02T15:24:50.3664641Z patching file arch/mips/boot/compressed/decompress.c
2025-10-02T15:24:50.3665545Z patching file arch/mips/boot/dts/brcm/bcm3368.dtsi
2025-10-02T15:24:50.3666226Z patching file arch/mips/boot/dts/brcm/bcm63268.dtsi
2025-10-02T15:24:50.3666936Z patching file arch/mips/boot/dts/brcm/bcm6358.dtsi
2025-10-02T15:24:50.3667647Z patching file arch/mips/boot/dts/brcm/bcm6362.dtsi
2025-10-02T15:24:50.3668364Z patching file arch/mips/boot/dts/brcm/bcm6368.dtsi
2025-10-02T15:24:50.3669293Z patching file arch/mips/boot/dts/ingenic/jz4780.dtsi
2025-10-02T15:24:50.3670696Z patching file arch/mips/boot/dts/loongson/loongson64c_4core_ls7a.dts
2025-10-02T15:24:50.3671237Z patching file arch/mips/boot/dts/loongson/loongson64g_4core_ls7a.dts
2025-10-02T15:24:50.3671971Z patching file arch/mips/boot/dts/loongson/ls7a-pch.dtsi
2025-10-02T15:24:50.3673697Z patching file arch/mips/cavium-octeon/executive/cvmx-helper-board.c
2025-10-02T15:24:50.3674741Z patching file arch/mips/cavium-octeon/executive/cvmx-helper.c
2025-10-02T15:24:50.3676764Z patching file arch/mips/cavium-octeon/octeon-irq.c
2025-10-02T15:24:50.3678958Z patching file arch/mips/cavium-octeon/octeon-platform.c
2025-10-02T15:24:50.3680471Z patching file arch/mips/cavium-octeon/octeon-usb.c
2025-10-02T15:24:50.3681828Z patching file arch/mips/cavium-octeon/setup.c
2025-10-02T15:24:50.3683413Z patching file arch/mips/configs/decstation_64_defconfig
2025-10-02T15:24:50.3684358Z patching file arch/mips/configs/decstation_defconfig
2025-10-02T15:24:50.3685276Z patching file arch/mips/configs/decstation_r4k_defconfig
2025-10-02T15:24:50.3686254Z patching file arch/mips/configs/gpr_defconfig
2025-10-02T15:24:50.3687290Z patching file arch/mips/configs/mtx1_defconfig
2025-10-02T15:24:50.3688539Z patching file arch/mips/configs/nlm_xlp_defconfig
2025-10-02T15:24:50.3689834Z patching file arch/mips/configs/nlm_xlr_defconfig
2025-10-02T15:24:50.3691018Z patching file arch/mips/configs/rm200_defconfig
2025-10-02T15:24:50.3692049Z patching file arch/mips/crypto/Makefile
2025-10-02T15:24:50.3692921Z patching file arch/mips/crypto/chacha-core.S
2025-10-02T15:24:50.3694083Z patching file arch/mips/crypto/poly1305-glue.c
2025-10-02T15:24:50.3695080Z patching file arch/mips/dec/int-handler.S
2025-10-02T15:24:50.3696214Z patching file arch/mips/dec/prom/Makefile
2025-10-02T15:24:50.3696954Z patching file arch/mips/dec/prom/init.c
2025-10-02T15:24:50.3697946Z patching file arch/mips/dec/setup.c
2025-10-02T15:24:50.3699695Z patching file arch/mips/fw/lib/cmdline.c
2025-10-02T15:24:50.3700620Z patching file arch/mips/generic/board-boston.its.S
2025-10-02T15:24:50.3701513Z patching file arch/mips/generic/board-ni169445.its.S
2025-10-02T15:24:50.3702296Z patching file arch/mips/generic/board-ocelot.its.S
2025-10-02T15:24:50.3703144Z patching file arch/mips/generic/board-xilfpga.its.S
2025-10-02T15:24:50.3711457Z patching file arch/mips/generic/vmlinux.its.S
2025-10-02T15:24:50.3711860Z patching file arch/mips/generic/yamon-dt.c
2025-10-02T15:24:50.3712210Z patching file arch/mips/include/asm/Kbuild
2025-10-02T15:24:50.3712427Z patching file arch/mips/include/asm/asm.h
2025-10-02T15:24:50.3712653Z patching file arch/mips/include/asm/asmmacro.h
2025-10-02T15:24:50.3712870Z patching file arch/mips/include/asm/atomic.h
2025-10-02T15:24:50.3713074Z patching file arch/mips/include/asm/bugs.h
2025-10-02T15:24:50.3713294Z patching file arch/mips/include/asm/checksum.h
2025-10-02T15:24:50.3713635Z patching file arch/mips/include/asm/cmpxchg.h
2025-10-02T15:24:50.3713874Z patching file arch/mips/include/asm/cpu-features.h
2025-10-02T15:24:50.3715304Z patching file arch/mips/include/asm/dec/prom.h
2025-10-02T15:24:50.3716292Z patching file arch/mips/include/asm/div64.h
2025-10-02T15:24:50.3717334Z patching file arch/mips/include/asm/dmi.h
2025-10-02T15:24:50.3718260Z patching file arch/mips/include/asm/ds1287.h
2025-10-02T15:24:50.3719163Z patching file arch/mips/include/asm/ftrace.h
2025-10-02T15:24:50.3720288Z patching file arch/mips/include/asm/fw/fw.h
2025-10-02T15:24:50.3721285Z patching file arch/mips/include/asm/highmem.h
2025-10-02T15:24:50.3722144Z patching file arch/mips/include/asm/hugetlb.h
2025-10-02T15:24:50.3723142Z patching file arch/mips/include/asm/mach-ip27/cpu-feature-overrides.h
2025-10-02T15:24:50.3724180Z patching file arch/mips/include/asm/mach-ip30/cpu-feature-overrides.h
2025-10-02T15:24:50.3725134Z patching file arch/mips/include/asm/mach-loongson64/boot_param.h
2025-10-02T15:24:50.3726147Z patching file arch/mips/include/asm/mach-loongson64/kernel-entry-init.h
2025-10-02T15:24:50.3726999Z patching file arch/mips/include/asm/mach-rc32434/pci.h
2025-10-02T15:24:50.3728586Z patching file arch/mips/include/asm/mips-cm.h
2025-10-02T15:24:50.3730868Z patching file arch/mips/include/asm/mipsregs.h
2025-10-02T15:24:50.3733911Z patching file arch/mips/include/asm/octeon/cvmx-bootinfo.h
2025-10-02T15:24:50.3734781Z patching file arch/mips/include/asm/pgalloc.h
2025-10-02T15:24:50.3735888Z patching file arch/mips/include/asm/pgtable-64.h
2025-10-02T15:24:50.3737047Z patching file arch/mips/include/asm/ptrace.h
2025-10-02T15:24:50.3738068Z patching file arch/mips/include/asm/setup.h
2025-10-02T15:24:50.3739052Z patching file arch/mips/include/asm/switch_to.h
2025-10-02T15:24:50.3740303Z patching file arch/mips/include/asm/syscall.h
2025-10-02T15:24:50.3741334Z patching file arch/mips/include/asm/thread_info.h
2025-10-02T15:24:50.3742403Z patching file arch/mips/include/asm/timex.h
2025-10-02T15:24:50.3743542Z patching file arch/mips/include/asm/vdso/gettimeofday.h
2025-10-02T15:24:50.3744553Z patching file arch/mips/include/asm/vdso/vdso.h
2025-10-02T15:24:50.3745481Z patching file arch/mips/include/asm/vpe.h
2025-10-02T15:24:50.3746581Z patching file arch/mips/kernel/asm-offsets.c
2025-10-02T15:24:50.3747753Z patching file arch/mips/kernel/binfmt_elfn32.c
2025-10-02T15:24:50.3748634Z patching file arch/mips/kernel/binfmt_elfo32.c
2025-10-02T15:24:50.3749690Z patching file arch/mips/kernel/cacheinfo.c
2025-10-02T15:24:50.3750690Z patching file arch/mips/kernel/cevt-ds1287.c
2025-10-02T15:24:50.3751613Z patching file arch/mips/kernel/cevt-r4k.c
2025-10-02T15:24:50.3753545Z patching file arch/mips/kernel/cpu-probe.c
2025-10-02T15:24:50.3755862Z patching file arch/mips/kernel/elf.c
2025-10-02T15:24:50.3756861Z patching file arch/mips/kernel/ftrace.c
2025-10-02T15:24:50.3758061Z patching file arch/mips/kernel/jump_label.c
2025-10-02T15:24:50.3759031Z patching file arch/mips/kernel/mips-cm.c
2025-10-02T15:24:50.3761101Z patching file arch/mips/kernel/mips-cpc.c
2025-10-02T15:24:50.3762053Z patching file arch/mips/kernel/pm-cps.c
2025-10-02T15:24:50.3764045Z patching file arch/mips/kernel/proc.c
2025-10-02T15:24:50.3765030Z patching file arch/mips/kernel/process.c
2025-10-02T15:24:50.3767099Z patching file arch/mips/kernel/ptrace.c
2025-10-02T15:24:50.3769007Z patching file arch/mips/kernel/r2300_fpu.S
2025-10-02T15:24:50.3769963Z patching file arch/mips/kernel/relocate.c
2025-10-02T15:24:50.3771179Z patching file arch/mips/kernel/scall32-o32.S
2025-10-02T15:24:50.3772214Z patching file arch/mips/kernel/scall64-n32.S
2025-10-02T15:24:50.3773147Z patching file arch/mips/kernel/scall64-n64.S
2025-10-02T15:24:50.3774181Z patching file arch/mips/kernel/scall64-o32.S
2025-10-02T15:24:50.3775734Z patching file arch/mips/kernel/setup.c
2025-10-02T15:24:50.3777512Z patching file arch/mips/kernel/signal.c
2025-10-02T15:24:50.3779003Z patching file arch/mips/kernel/smp-cps.c
2025-10-02T15:24:50.3780615Z patching file arch/mips/kernel/smp.c
2025-10-02T15:24:50.3782211Z patching file arch/mips/kernel/syscall.c
2025-10-02T15:24:50.3783193Z patching file arch/mips/kernel/syscalls/syscall_n32.tbl
2025-10-02T15:24:50.3784324Z patching file arch/mips/kernel/syscalls/syscall_o32.tbl
2025-10-02T15:24:50.3785517Z patching file arch/mips/kernel/time.c
2025-10-02T15:24:50.3787374Z patching file arch/mips/kernel/traps.c
2025-10-02T15:24:50.3789888Z patching file arch/mips/kernel/vmlinux.lds.S
2025-10-02T15:24:50.3790805Z patching file arch/mips/kernel/vpe-cmp.c
2025-10-02T15:24:50.3791837Z patching file arch/mips/kernel/vpe-mt.c
2025-10-02T15:24:50.3793600Z patching file arch/mips/kvm/mmu.c
2025-10-02T15:24:50.3795247Z patching file arch/mips/lantiq/clk.c
2025-10-02T15:24:50.3796197Z patching file arch/mips/lantiq/falcon/sysctrl.c
2025-10-02T15:24:50.3797122Z patching file arch/mips/lantiq/irq.c
2025-10-02T15:24:50.3798070Z patching file arch/mips/lantiq/prom.c
2025-10-02T15:24:50.3799028Z patching file arch/mips/lantiq/xway/dma.c
2025-10-02T15:24:50.3800398Z patching file arch/mips/lantiq/xway/gptu.c
2025-10-02T15:24:50.3801466Z patching file arch/mips/lantiq/xway/sysctrl.c
2025-10-02T15:24:50.3803316Z patching file arch/mips/lib/mips-atomic.c
2025-10-02T15:24:50.3803919Z patching file arch/mips/lib/uncached.c
2025-10-02T15:24:50.3804838Z patching file arch/mips/loongson2ef/Platform
2025-10-02T15:24:50.3805823Z patching file arch/mips/loongson32/common/platform.c
2025-10-02T15:24:50.3806971Z patching file arch/mips/loongson32/ls1c/board.c
2025-10-02T15:24:50.3807811Z patching file arch/mips/loongson64/Platform
2025-10-02T15:24:50.3808674Z patching file arch/mips/loongson64/env.c
2025-10-02T15:24:50.3809776Z patching file arch/mips/loongson64/init.c
2025-10-02T15:24:50.3810753Z patching file arch/mips/loongson64/numa.c
2025-10-02T15:24:50.3812524Z patching file arch/mips/mm/c-r4k.c
2025-10-02T15:24:50.3814609Z patching file arch/mips/mm/init.c
2025-10-02T15:24:50.3815571Z patching file arch/mips/mm/sc-mips.c
2025-10-02T15:24:50.3816644Z patching file arch/mips/mm/tlb-r4k.c
2025-10-02T15:24:50.3818759Z patching file arch/mips/mm/tlbex.c
2025-10-02T15:24:50.3821377Z patching file arch/mips/mti-malta/malta-dtshim.c
2025-10-02T15:24:50.3821978Z patching file arch/mips/mti-malta/malta-platform.c
2025-10-02T15:24:50.3823182Z patching file arch/mips/net/bpf_jit.c
2025-10-02T15:24:50.3825646Z patching file arch/mips/net/ebpf_jit.c
2025-10-02T15:24:50.3827649Z patching file arch/mips/pci/ops-rc32434.c
2025-10-02T15:24:50.3828296Z patching file arch/mips/pci/pci-legacy.c
2025-10-02T15:24:50.3829641Z patching file arch/mips/pci/pci-mt7620.c
2025-10-02T15:24:50.3830635Z patching file arch/mips/pci/pci-rt2880.c
2025-10-02T15:24:50.3832742Z patching file arch/mips/pci/pcie-octeon.c
2025-10-02T15:24:50.3834996Z patching file arch/mips/pic32/pic32mzda/early_console.c
2025-10-02T15:24:50.3835610Z patching file arch/mips/pic32/pic32mzda/init.c
2025-10-02T15:24:50.3836552Z patching file arch/mips/ralink/ill_acc.c
2025-10-02T15:24:50.3837304Z patching file arch/mips/ralink/of.c
2025-10-02T15:24:50.3838257Z patching file arch/mips/rb532/devices.c
2025-10-02T15:24:50.3839304Z patching file arch/mips/sgi-ip27/ip27-xtalk.c
2025-10-02T15:24:50.3840752Z patching file arch/mips/sgi-ip30/ip30-console.c
2025-10-02T15:24:50.3841565Z patching file arch/mips/sni/time.c
2025-10-02T15:24:50.3842552Z patching file arch/mips/vdso/Makefile
2025-10-02T15:24:50.3843765Z patching file arch/mips/vr41xx/common/icu.c
2025-10-02T15:24:50.3845297Z patching file arch/nds32/include/asm/Kbuild
2025-10-02T15:24:50.3845827Z patching file arch/nds32/include/asm/thread_info.h
2025-10-02T15:24:50.3846749Z patching file arch/nds32/include/asm/uaccess.h
2025-10-02T15:24:50.3848024Z patching file arch/nds32/kernel/ex-exit.S
2025-10-02T15:24:50.3848693Z patching file arch/nds32/kernel/fpu.c
2025-10-02T15:24:50.3850164Z patching file arch/nds32/kernel/perf_event_cpu.c
2025-10-02T15:24:50.3852259Z patching file arch/nds32/kernel/process.c
2025-10-02T15:24:50.3852880Z patching file arch/nds32/kernel/signal.c
2025-10-02T15:24:50.3854017Z patching file arch/nds32/kernel/traps.c
2025-10-02T15:24:50.3855382Z patching file arch/nds32/mm/cacheflush.c
2025-10-02T15:24:50.3856241Z patching file arch/nds32/mm/mmap.c
2025-10-02T15:24:50.3857101Z patching file arch/nios2/boot/Makefile
2025-10-02T15:24:50.3858039Z patching file arch/nios2/boot/dts/10m50_devboard.dts
2025-10-02T15:24:50.3858912Z patching file arch/nios2/boot/dts/3c120_devboard.dts
2025-10-02T15:24:50.3859998Z patching file arch/nios2/include/asm/entry.h
2025-10-02T15:24:50.3860956Z patching file arch/nios2/include/asm/irqflags.h
2025-10-02T15:24:50.3861840Z patching file arch/nios2/include/asm/pgtable.h
2025-10-02T15:24:50.3862782Z patching file arch/nios2/include/asm/ptrace.h
2025-10-02T15:24:50.3863579Z patching file arch/nios2/include/asm/registers.h
2025-10-02T15:24:50.3864423Z patching file arch/nios2/include/asm/thread_info.h
2025-10-02T15:24:50.3865312Z patching file arch/nios2/include/asm/timex.h
2025-10-02T15:24:50.3866137Z patching file arch/nios2/include/asm/uaccess.h
2025-10-02T15:24:50.3867403Z patching file arch/nios2/kernel/entry.S
2025-10-02T15:24:50.3869082Z patching file arch/nios2/kernel/process.c
2025-10-02T15:24:50.3870238Z patching file arch/nios2/kernel/signal.c
2025-10-02T15:24:50.3871426Z patching file arch/nios2/kernel/sys_nios2.c
2025-10-02T15:24:50.3872417Z patching file arch/nios2/kernel/syscall_table.c
2025-10-02T15:24:50.3873160Z patching file arch/nios2/kernel/traps.c
2025-10-02T15:24:50.3874244Z patching file arch/nios2/platform/Kconfig.platform
2025-10-02T15:24:50.3875392Z patching file arch/openrisc/include/asm/barrier.h
2025-10-02T15:24:50.3876460Z patching file arch/openrisc/include/asm/syscalls.h
2025-10-02T15:24:50.3877318Z patching file arch/openrisc/include/asm/thread_info.h
2025-10-02T15:24:50.3878155Z patching file arch/openrisc/include/asm/timex.h
2025-10-02T15:24:50.3878989Z patching file arch/openrisc/kernel/dma.c
2025-10-02T15:24:50.3880372Z patching file arch/openrisc/kernel/entry.S
2025-10-02T15:24:50.3882701Z patching file arch/openrisc/kernel/head.S
2025-10-02T15:24:50.3884414Z patching file arch/openrisc/kernel/process.c
2025-10-02T15:24:50.3885242Z patching file arch/openrisc/kernel/setup.c
2025-10-02T15:24:50.3886307Z patching file arch/openrisc/kernel/signal.c
2025-10-02T15:24:50.3887267Z patching file arch/openrisc/kernel/smp.c
2025-10-02T15:24:50.3888411Z patching file arch/openrisc/kernel/traps.c
2025-10-02T15:24:50.3889643Z patching file arch/openrisc/mm/init.c
2025-10-02T15:24:50.3890780Z patching file arch/parisc/Kconfig
2025-10-02T15:24:50.3891849Z patching file arch/parisc/Makefile
2025-10-02T15:24:50.3893004Z patching file arch/parisc/boot/compressed/Makefile
2025-10-02T15:24:50.3893964Z patching file arch/parisc/include/asm/Kbuild
2025-10-02T15:24:50.3894875Z patching file arch/parisc/include/asm/assembly.h
2025-10-02T15:24:50.3896019Z patching file arch/parisc/include/asm/bugs.h
2025-10-02T15:24:50.3897062Z patching file arch/parisc/include/asm/cacheflush.h
2025-10-02T15:24:50.3898052Z patching file arch/parisc/include/asm/checksum.h
2025-10-02T15:24:50.3899152Z patching file arch/parisc/include/asm/cmpxchg.h
2025-10-02T15:24:50.3900079Z patching file arch/parisc/include/asm/fb.h
2025-10-02T15:24:50.3901113Z patching file arch/parisc/include/asm/futex.h
2025-10-02T15:24:50.3902081Z patching file arch/parisc/include/asm/hardware.h
2025-10-02T15:24:50.3903006Z patching file arch/parisc/include/asm/ldcw.h
2025-10-02T15:24:50.3904039Z patching file arch/parisc/include/asm/led.h
2025-10-02T15:24:50.3904952Z patching file arch/parisc/include/asm/mmu_context.h
2025-10-02T15:24:50.3905869Z patching file arch/parisc/include/asm/page.h
2025-10-02T15:24:50.3906900Z patching file arch/parisc/include/asm/pgalloc.h
2025-10-02T15:24:50.3908482Z patching file arch/parisc/include/asm/pgtable.h
2025-10-02T15:24:50.3910679Z patching file arch/parisc/include/asm/processor.h
2025-10-02T15:24:50.3911599Z patching file arch/parisc/include/asm/ropes.h
2025-10-02T15:24:50.3912791Z patching file arch/parisc/include/asm/special_insns.h
2025-10-02T15:24:50.3913728Z patching file arch/parisc/include/asm/spinlock_types.h
2025-10-02T15:24:50.3914551Z patching file arch/parisc/include/asm/string.h
2025-10-02T15:24:50.3915479Z patching file arch/parisc/include/asm/thread_info.h
2025-10-02T15:24:50.3916426Z patching file arch/parisc/include/asm/timex.h
2025-10-02T15:24:50.3917295Z patching file arch/parisc/include/asm/traps.h
2025-10-02T15:24:50.3918213Z patching file arch/parisc/include/uapi/asm/errno.h
2025-10-02T15:24:50.3919168Z patching file arch/parisc/include/uapi/asm/mman.h
2025-10-02T15:24:50.3920472Z patching file arch/parisc/include/uapi/asm/pdc.h
2025-10-02T15:24:50.3922033Z patching file arch/parisc/install.sh
2025-10-02T15:24:50.3922700Z patching file arch/parisc/kernel/asm-offsets.c
2025-10-02T15:24:50.3923881Z patching file arch/parisc/kernel/cache.c
2025-10-02T15:24:50.3925701Z patching file arch/parisc/kernel/drivers.c
2025-10-02T15:24:50.3928044Z patching file arch/parisc/kernel/entry.S
2025-10-02T15:24:50.3931859Z patching file arch/parisc/kernel/firmware.c
2025-10-02T15:24:50.3933860Z patching file arch/parisc/kernel/ftrace.c
2025-10-02T15:24:50.3934829Z patching file arch/parisc/kernel/head.S
2025-10-02T15:24:50.3935931Z patching file arch/parisc/kernel/irq.c
2025-10-02T15:24:50.3937680Z patching file arch/parisc/kernel/parisc_ksyms.c
2025-10-02T15:24:50.3938238Z patching file arch/parisc/kernel/patch.c
2025-10-02T15:24:50.3939851Z patching file arch/parisc/kernel/pci-dma.c
2025-10-02T15:24:50.3940871Z patching file arch/parisc/kernel/pdt.c
2025-10-02T15:24:50.3941989Z patching file arch/parisc/kernel/process.c
2025-10-02T15:24:50.3943121Z patching file arch/parisc/kernel/processor.c
2025-10-02T15:24:50.3944814Z patching file arch/parisc/kernel/ptrace.c
2025-10-02T15:24:50.3946375Z patching file arch/parisc/kernel/real2.S
2025-10-02T15:24:50.3947319Z patching file arch/parisc/kernel/signal.c
2025-10-02T15:24:50.3948773Z patching file arch/parisc/kernel/smp.c
2025-10-02T15:24:50.3950135Z patching file arch/parisc/kernel/sys_parisc.c
2025-10-02T15:24:50.3951771Z patching file arch/parisc/kernel/syscall.S
2025-10-02T15:24:50.3953557Z patching file arch/parisc/kernel/syscalls/syscall.tbl
2025-10-02T15:24:50.3954592Z patching file arch/parisc/kernel/time.c
2025-10-02T15:24:50.3956054Z patching file arch/parisc/kernel/traps.c
2025-10-02T15:24:50.3957815Z patching file arch/parisc/kernel/unaligned.c
2025-10-02T15:24:50.3959631Z patching file arch/parisc/kernel/unwind.c
2025-10-02T15:24:50.3960812Z patching file arch/parisc/lib/Makefile
2025-10-02T15:24:50.3961637Z patching file arch/parisc/lib/iomap.c
2025-10-02T15:24:50.3962792Z patching file arch/parisc/lib/memset.c
2025-10-02T15:24:50.3963915Z patching file arch/parisc/lib/string.S
2025-10-02T15:24:50.3965125Z patching file arch/parisc/math-emu/driver.c
2025-10-02T15:24:50.3966313Z patching file arch/parisc/math-emu/fpudispatch.c
2025-10-02T15:24:50.3969270Z patching file arch/parisc/mm/fault.c
2025-10-02T15:24:50.3970451Z patching file arch/parisc/mm/fixmap.c
2025-10-02T15:24:50.3971306Z patching file arch/parisc/mm/hugetlbpage.c
2025-10-02T15:24:50.3972457Z patching file arch/parisc/mm/init.c
2025-10-02T15:24:50.3974664Z patching file arch/powerpc/Kconfig
2025-10-02T15:24:50.3976313Z patching file arch/powerpc/Kconfig.debug
2025-10-02T15:24:50.3977291Z patching file arch/powerpc/Makefile
2025-10-02T15:24:50.3979232Z patching file arch/powerpc/boot/Makefile
2025-10-02T15:24:50.3980499Z patching file arch/powerpc/boot/devtree.c
2025-10-02T15:24:50.3982590Z patching file arch/powerpc/boot/dts/charon.dts
2025-10-02T15:24:50.3983343Z patching file arch/powerpc/boot/dts/digsy_mtc.dts
2025-10-02T15:24:50.3984617Z patching file arch/powerpc/boot/dts/fsl/e500v1_power_isa.dtsi
2025-10-02T15:24:50.3986353Z patching file arch/powerpc/boot/dts/fsl/mpc8540ads.dts
2025-10-02T15:24:50.3987339Z patching file arch/powerpc/boot/dts/fsl/mpc8541cds.dts
2025-10-02T15:24:50.3988515Z patching file arch/powerpc/boot/dts/fsl/mpc8555cds.dts
2025-10-02T15:24:50.3989828Z patching file arch/powerpc/boot/dts/fsl/mpc8560ads.dts
2025-10-02T15:24:50.3991013Z patching file arch/powerpc/boot/dts/fsl/p1010si-post.dtsi
2025-10-02T15:24:50.3992106Z patching file arch/powerpc/boot/dts/fsl/p2041si-post.dtsi
2025-10-02T15:24:50.3993428Z patching file arch/powerpc/boot/dts/fsl/qoriq-fman3-0-10g-2.dtsi
2025-10-02T15:24:50.3995319Z patching file arch/powerpc/boot/dts/fsl/qoriq-fman3-0-10g-3.dtsi
2025-10-02T15:24:50.3996585Z patching file arch/powerpc/boot/dts/fsl/qoriq-fman3l-0.dtsi
2025-10-02T15:24:50.3997601Z patching file arch/powerpc/boot/dts/fsl/t1023rdb.dts
2025-10-02T15:24:50.3999841Z patching file arch/powerpc/boot/dts/fsl/t1040rdb-rev-a.dts
2025-10-02T15:24:50.4000938Z patching file arch/powerpc/boot/dts/fsl/t1040rdb.dts
2025-10-02T15:24:50.4002096Z patching file arch/powerpc/boot/dts/fsl/t104xrdb.dtsi
2025-10-02T15:24:50.4003237Z patching file arch/powerpc/boot/dts/fsl/t2081si-post.dtsi
2025-10-02T15:24:50.4004928Z patching file arch/powerpc/boot/dts/lite5200.dts
2025-10-02T15:24:50.4005802Z patching file arch/powerpc/boot/dts/lite5200b.dts
2025-10-02T15:24:50.4006725Z patching file arch/powerpc/boot/dts/media5200.dts
2025-10-02T15:24:50.4007829Z patching file arch/powerpc/boot/dts/mpc5200b.dtsi
2025-10-02T15:24:50.4008614Z patching file arch/powerpc/boot/dts/o2d.dts
2025-10-02T15:24:50.4009682Z patching file arch/powerpc/boot/dts/o2d.dtsi
2025-10-02T15:24:50.4010594Z patching file arch/powerpc/boot/dts/o2dnt2.dts
2025-10-02T15:24:50.4011469Z patching file arch/powerpc/boot/dts/o3dnt.dts
2025-10-02T15:24:50.4012334Z patching file arch/powerpc/boot/dts/pcm032.dts
2025-10-02T15:24:50.4013291Z patching file arch/powerpc/boot/dts/tqm5200.dts
2025-10-02T15:24:50.4014251Z patching file arch/powerpc/boot/ns16550.c
2025-10-02T15:24:50.4015264Z patching file arch/powerpc/boot/simple_alloc.c
2025-10-02T15:24:50.4016206Z patching file arch/powerpc/configs/85xx-hw.config
2025-10-02T15:24:50.4017165Z patching file arch/powerpc/configs/mpc885_ads_defconfig
2025-10-02T15:24:50.4018050Z patching file arch/powerpc/configs/ppc6xx_defconfig
2025-10-02T15:24:50.4020057Z patching file arch/powerpc/include/asm/Kbuild
2025-10-02T15:24:50.4020831Z patching file arch/powerpc/include/asm/barrier.h
2025-10-02T15:24:50.4021932Z patching file arch/powerpc/include/asm/bitops.h
2025-10-02T15:24:50.4023056Z patching file arch/powerpc/include/asm/book3s/32/mmu-hash.h
2025-10-02T15:24:50.4024011Z patching file arch/powerpc/include/asm/book3s/32/pgtable.h
2025-10-02T15:24:50.4025282Z patching file arch/powerpc/include/asm/book3s/64/hash-4k.h
2025-10-02T15:24:50.4027003Z patching file arch/powerpc/include/asm/book3s/64/pgtable.h
2025-10-02T15:24:50.4028957Z patching file arch/powerpc/include/asm/book3s/64/radix.h
2025-10-02T15:24:50.4030179Z patching file arch/powerpc/include/asm/bpf_perf_event.h
2025-10-02T15:24:50.4031894Z patching file arch/powerpc/include/asm/bugs.h
2025-10-02T15:24:50.4032839Z patching file arch/powerpc/include/asm/code-patching.h
2025-10-02T15:24:50.4034013Z patching file arch/powerpc/include/asm/cpm1.h
2025-10-02T15:24:50.4035443Z patching file arch/powerpc/include/asm/cpu_has_feature.h
2025-10-02T15:24:50.4036543Z patching file arch/powerpc/include/asm/cpu_setup_power.h
2025-10-02T15:24:50.4038338Z patching file arch/powerpc/include/asm/cputable.h
2025-10-02T15:24:50.4039778Z patching file arch/powerpc/include/asm/cputhreads.h
2025-10-02T15:24:50.4040901Z patching file arch/powerpc/include/asm/dcr-native.h
2025-10-02T15:24:50.4041934Z patching file arch/powerpc/include/asm/dtl.h
2025-10-02T15:24:50.4043000Z patching file arch/powerpc/include/asm/exception-64s.h
2025-10-02T15:24:50.4044151Z patching file arch/powerpc/include/asm/feature-fixups.h
2025-10-02T15:24:50.4045284Z patching file arch/powerpc/include/asm/firmware.h
2025-10-02T15:24:50.4046453Z patching file arch/powerpc/include/asm/fixmap.h
2025-10-02T15:24:50.4047593Z patching file arch/powerpc/include/asm/ftrace.h
2025-10-02T15:24:50.4048702Z patching file arch/powerpc/include/asm/hvcall.h
2025-10-02T15:24:50.4050776Z patching file arch/powerpc/include/asm/hw_irq.h
2025-10-02T15:24:50.4051986Z patching file arch/powerpc/include/asm/imc-pmu.h
2025-10-02T15:24:50.4053124Z patching file arch/powerpc/include/asm/io.h
2025-10-02T15:24:50.4055308Z patching file arch/powerpc/include/asm/kexec.h
2025-10-02T15:24:50.4056235Z patching file arch/powerpc/include/asm/kvm_guest.h
2025-10-02T15:24:50.4057931Z patching file arch/powerpc/include/asm/kvm_para.h
2025-10-02T15:24:50.4058728Z patching file arch/powerpc/include/asm/lppaca.h
2025-10-02T15:24:50.4060135Z patching file arch/powerpc/include/asm/machdep.h
2025-10-02T15:24:50.4061313Z patching file arch/powerpc/include/asm/mmu.h
2025-10-02T15:24:50.4062448Z patching file arch/powerpc/include/asm/mmzone.h
2025-10-02T15:24:50.4063574Z patching file arch/powerpc/include/asm/nohash/32/pgtable.h
2025-10-02T15:24:50.4064639Z patching file arch/powerpc/include/asm/nohash/32/pte-40x.h
2025-10-02T15:24:50.4065472Z patching file arch/powerpc/include/asm/nohash/32/pte-8xx.h
2025-10-02T15:24:50.4066408Z patching file arch/powerpc/include/asm/nohash/64/pgtable-4k.h
2025-10-02T15:24:50.4067276Z patching file arch/powerpc/include/asm/nohash/64/pgtable.h
2025-10-02T15:24:50.4068671Z patching file arch/powerpc/include/asm/nohash/pgtable.h
2025-10-02T15:24:50.4069822Z patching file arch/powerpc/include/asm/paca.h
2025-10-02T15:24:50.4071379Z patching file arch/powerpc/include/asm/page.h
2025-10-02T15:24:50.4072474Z patching file arch/powerpc/include/asm/paravirt.h
2025-10-02T15:24:50.4073514Z patching file arch/powerpc/include/asm/percpu.h
2025-10-02T15:24:50.4074618Z patching file arch/powerpc/include/asm/plpar_wrappers.h
2025-10-02T15:24:50.4075709Z patching file arch/powerpc/include/asm/pmc.h
2025-10-02T15:24:50.4076833Z patching file arch/powerpc/include/asm/ppc-opcode.h
2025-10-02T15:24:50.4078686Z patching file arch/powerpc/include/asm/prom.h
2025-10-02T15:24:50.4079771Z patching file arch/powerpc/include/asm/ps3.h
2025-10-02T15:24:50.4081569Z patching file arch/powerpc/include/asm/ptrace.h
2025-10-02T15:24:50.4083647Z patching file arch/powerpc/include/asm/reg.h
2025-10-02T15:24:50.4085862Z patching file arch/powerpc/include/asm/reg_fsl_emb.h
2025-10-02T15:24:50.4086625Z patching file arch/powerpc/include/asm/sections.h
2025-10-02T15:24:50.4087706Z patching file arch/powerpc/include/asm/security_features.h
2025-10-02T15:24:50.4088660Z patching file arch/powerpc/include/asm/smp.h
2025-10-02T15:24:50.4089971Z patching file arch/powerpc/include/asm/sstep.h
2025-10-02T15:24:50.4091056Z patching file arch/powerpc/include/asm/switch_to.h
2025-10-02T15:24:50.4092036Z patching file arch/powerpc/include/asm/syscall.h
2025-10-02T15:24:50.4093209Z patching file arch/powerpc/include/asm/thread_info.h
2025-10-02T15:24:50.4094352Z patching file arch/powerpc/include/asm/timex.h
2025-10-02T15:24:50.4095358Z patching file arch/powerpc/include/asm/topology.h
2025-10-02T15:24:50.4096579Z patching file arch/powerpc/include/asm/uaccess.h
2025-10-02T15:24:50.4098531Z patching file arch/powerpc/include/asm/vas.h
2025-10-02T15:24:50.4099649Z patching file arch/powerpc/include/asm/vdso.h
2025-10-02T15:24:50.4100729Z patching file arch/powerpc/include/asm/word-at-a-time.h
2025-10-02T15:24:50.4101733Z patching file arch/powerpc/include/uapi/asm/bpf_perf_event.h
2025-10-02T15:24:50.4102555Z patching file arch/powerpc/include/uapi/asm/errno.h
2025-10-02T15:24:50.4103363Z patching file arch/powerpc/include/uapi/asm/ioctls.h
2025-10-02T15:24:50.4104479Z patching file arch/powerpc/kernel/Makefile
2025-10-02T15:24:50.4106088Z patching file arch/powerpc/kernel/asm-offsets.c
2025-10-02T15:24:50.4107678Z patching file arch/powerpc/kernel/btext.c
2025-10-02T15:24:50.4109374Z patching file arch/powerpc/kernel/cpu_setup_power.S
2025-10-02T15:24:50.4110997Z patching file arch/powerpc/kernel/cpu_setup_power.c
2025-10-02T15:24:50.4113690Z patching file arch/powerpc/kernel/cputable.c
2025-10-02T15:24:50.4115900Z patching file arch/powerpc/kernel/dma-iommu.c
2025-10-02T15:24:50.4116946Z patching file arch/powerpc/kernel/dt_cpu_ftrs.c
2025-10-02T15:24:50.4119178Z patching file arch/powerpc/kernel/eeh.c
2025-10-02T15:24:50.4121838Z patching file arch/powerpc/kernel/eeh_driver.c
2025-10-02T15:24:50.4124384Z patching file arch/powerpc/kernel/eeh_pe.c
2025-10-02T15:24:50.4126214Z patching file arch/powerpc/kernel/entry_32.S
2025-10-02T15:24:50.4128036Z patching file arch/powerpc/kernel/entry_64.S
2025-10-02T15:24:50.4130632Z patching file arch/powerpc/kernel/exceptions-64s.S
2025-10-02T15:24:50.4133775Z patching file arch/powerpc/kernel/fadump.c
2025-10-02T15:24:50.4135787Z patching file arch/powerpc/kernel/firmware.c
2025-10-02T15:24:50.4136603Z patching file arch/powerpc/kernel/fpu.S
2025-10-02T15:24:50.4137769Z patching file arch/powerpc/kernel/head_32.h
2025-10-02T15:24:50.4139637Z patching file arch/powerpc/kernel/head_40x.S
2025-10-02T15:24:50.4141321Z patching file arch/powerpc/kernel/head_64.S
2025-10-02T15:24:50.4143192Z patching file arch/powerpc/kernel/head_8xx.S
2025-10-02T15:24:50.4145082Z patching file arch/powerpc/kernel/head_book3s_32.S
2025-10-02T15:24:50.4147204Z patching file arch/powerpc/kernel/hw_breakpoint.c
2025-10-02T15:24:50.4148923Z patching file arch/powerpc/kernel/idle.c
2025-10-02T15:24:50.4149974Z patching file arch/powerpc/kernel/idle_6xx.S
2025-10-02T15:24:50.4151247Z patching file arch/powerpc/kernel/idle_book3s.S
2025-10-02T15:24:50.4153009Z patching file arch/powerpc/kernel/iommu.c
2025-10-02T15:24:50.4154973Z patching file arch/powerpc/kernel/irq.c
2025-10-02T15:24:50.4157161Z patching file arch/powerpc/kernel/kprobes.c
2025-10-02T15:24:50.4158526Z patching file arch/powerpc/kernel/kvm.c
2025-10-02T15:24:50.4160612Z patching file arch/powerpc/kernel/l2cr_6xx.S
2025-10-02T15:24:50.4161753Z patching file arch/powerpc/kernel/mce.c
2025-10-02T15:24:50.4163571Z patching file arch/powerpc/kernel/mce_power.c
2025-10-02T15:24:50.4165465Z patching file arch/powerpc/kernel/paca.c
2025-10-02T15:24:50.4167244Z patching file arch/powerpc/kernel/pci-common.c
2025-10-02T15:24:50.4169392Z patching file arch/powerpc/kernel/pci-hotplug.c
2025-10-02T15:24:50.4170478Z patching file arch/powerpc/kernel/pci_dn.c
2025-10-02T15:24:50.4172841Z patching file arch/powerpc/kernel/ppc_save_regs.S
2025-10-02T15:24:50.4174001Z patching file arch/powerpc/kernel/process.c
2025-10-02T15:24:50.4176840Z patching file arch/powerpc/kernel/prom.c
2025-10-02T15:24:50.4179116Z patching file arch/powerpc/kernel/prom_init.c
2025-10-02T15:24:50.4182219Z patching file arch/powerpc/kernel/prom_init_check.sh
2025-10-02T15:24:50.4183103Z patching file arch/powerpc/kernel/ptrace/ptrace-view.c
2025-10-02T15:24:50.4184808Z patching file arch/powerpc/kernel/ptrace/ptrace.c
2025-10-02T15:24:50.4186345Z patching file arch/powerpc/kernel/rtas.c
2025-10-02T15:24:50.4188923Z patching file arch/powerpc/kernel/rtas_flash.c
2025-10-02T15:24:50.4190328Z patching file arch/powerpc/kernel/security.c
2025-10-02T15:24:50.4191563Z patching file arch/powerpc/kernel/secvar-sysfs.c
2025-10-02T15:24:50.4192778Z patching file arch/powerpc/kernel/setup-common.c
2025-10-02T15:24:50.4194531Z patching file arch/powerpc/kernel/setup.h
2025-10-02T15:24:50.4195257Z patching file arch/powerpc/kernel/setup_32.c
2025-10-02T15:24:50.4196777Z patching file arch/powerpc/kernel/setup_64.c
2025-10-02T15:24:50.4198763Z patching file arch/powerpc/kernel/signal.c
2025-10-02T15:24:50.4200122Z patching file arch/powerpc/kernel/smp.c
2025-10-02T15:24:50.4202793Z patching file arch/powerpc/kernel/stacktrace.c
2025-10-02T15:24:50.4204918Z patching file arch/powerpc/kernel/swsusp_32.S
2025-10-02T15:24:50.4205847Z patching file arch/powerpc/kernel/swsusp_asm64.S
2025-10-02T15:24:50.4207000Z patching file arch/powerpc/kernel/syscalls/syscall.tbl
2025-10-02T15:24:50.4208671Z patching file arch/powerpc/kernel/sysfs.c
2025-10-02T15:24:50.4210196Z patching file arch/powerpc/kernel/systbl.S
2025-10-02T15:24:50.4211507Z patching file arch/powerpc/kernel/time.c
2025-10-02T15:24:50.4213655Z patching file arch/powerpc/kernel/trace/ftrace.c
2025-10-02T15:24:50.4215048Z patching file arch/powerpc/kernel/trace/ftrace_64_mprofile.S
2025-10-02T15:24:50.4216771Z patching file arch/powerpc/kernel/traps.c
2025-10-02T15:24:50.4219064Z patching file arch/powerpc/kernel/vdso.c
2025-10-02T15:24:50.4220757Z patching file arch/powerpc/kernel/vdso64/sigtramp.S
2025-10-02T15:24:50.4221635Z patching file arch/powerpc/kernel/vdso64/vdso64.lds.S
2025-10-02T15:24:50.4222540Z patching file arch/powerpc/kernel/vector.S
2025-10-02T15:24:50.4223661Z patching file arch/powerpc/kernel/vmlinux.lds.S
2025-10-02T15:24:50.4225352Z patching file arch/powerpc/kernel/watchdog.c
2025-10-02T15:24:50.4226509Z patching file arch/powerpc/kexec/core.c
2025-10-02T15:24:50.4227486Z patching file arch/powerpc/kexec/elf_64.c
2025-10-02T15:24:50.4228574Z patching file arch/powerpc/kexec/file_load_64.c
2025-10-02T15:24:50.4231380Z patching file arch/powerpc/kvm/book3s_64_mmu_radix.c
2025-10-02T15:24:50.4233147Z patching file arch/powerpc/kvm/book3s_64_vio.c
2025-10-02T15:24:50.4235133Z patching file arch/powerpc/kvm/book3s_64_vio_hv.c
2025-10-02T15:24:50.4238666Z patching file arch/powerpc/kvm/book3s_hv.c
2025-10-02T15:24:50.4243039Z patching file arch/powerpc/kvm/book3s_hv_builtin.c
2025-10-02T15:24:50.4244914Z patching file arch/powerpc/kvm/book3s_hv_nested.c
2025-10-02T15:24:50.4247031Z patching file arch/powerpc/kvm/book3s_hv_ras.c
2025-10-02T15:24:50.4247956Z patching file arch/powerpc/kvm/book3s_hv_rm_mmu.c
2025-10-02T15:24:50.4250716Z patching file arch/powerpc/kvm/book3s_hv_rmhandlers.S
2025-10-02T15:24:50.4253892Z patching file arch/powerpc/kvm/book3s_hv_uvmem.c
2025-10-02T15:24:50.4255561Z patching file arch/powerpc/kvm/book3s_rtas.c
2025-10-02T15:24:50.4257275Z patching file arch/powerpc/kvm/booke.c
2025-10-02T15:24:50.4260437Z patching file arch/powerpc/kvm/powerpc.c
2025-10-02T15:24:50.4262725Z patching file arch/powerpc/lib/Makefile
2025-10-02T15:24:50.4263540Z patching file arch/powerpc/lib/code-patching.c
2025-10-02T15:24:50.4265662Z patching file arch/powerpc/lib/feature-fixups.c
2025-10-02T15:24:50.4267754Z patching file arch/powerpc/lib/sstep.c
2025-10-02T15:24:50.4272725Z patching file arch/powerpc/math-emu/math_efp.c
2025-10-02T15:24:50.4273829Z patching file arch/powerpc/mm/book3s32/mmu.c
2025-10-02T15:24:50.4275996Z patching file arch/powerpc/mm/book3s64/hash_utils.c
2025-10-02T15:24:50.4278169Z patching file arch/powerpc/mm/book3s64/pgtable.c
2025-10-02T15:24:50.4279330Z patching file arch/powerpc/mm/book3s64/radix_pgtable.c
2025-10-02T15:24:50.4282132Z patching file arch/powerpc/mm/book3s64/radix_tlb.c
2025-10-02T15:24:50.4283949Z patching file arch/powerpc/mm/book3s64/slb.c
2025-10-02T15:24:50.4285125Z patching file arch/powerpc/mm/fault.c
2025-10-02T15:24:50.4286617Z patching file arch/powerpc/mm/init-common.c
2025-10-02T15:24:50.4287492Z patching file arch/powerpc/mm/init_64.c
2025-10-02T15:24:50.4288639Z patching file arch/powerpc/mm/kasan/Makefile
2025-10-02T15:24:50.4289387Z patching file arch/powerpc/mm/kasan/book3s_32.c
2025-10-02T15:24:50.4290636Z patching file arch/powerpc/mm/kasan/kasan_init_32.c
2025-10-02T15:24:50.4291644Z patching file arch/powerpc/mm/mem.c
2025-10-02T15:24:50.4292916Z patching file arch/powerpc/mm/mmu_context.c
2025-10-02T15:24:50.4293925Z patching file arch/powerpc/mm/nohash/book3e_pgtable.c
2025-10-02T15:24:50.4294815Z patching file arch/powerpc/mm/nohash/kaslr_booke.c
2025-10-02T15:24:50.4296284Z patching file arch/powerpc/mm/numa.c
2025-10-02T15:24:50.4299630Z patching file arch/powerpc/mm/pgtable.c
2025-10-02T15:24:50.4300456Z patching file arch/powerpc/mm/pgtable_64.c
2025-10-02T15:24:50.4301464Z patching file arch/powerpc/mm/ptdump/shared.c
2025-10-02T15:24:50.4303673Z patching file arch/powerpc/net/bpf_jit.h
2025-10-02T15:24:50.4304564Z patching file arch/powerpc/net/bpf_jit64.h
2025-10-02T15:24:50.4305725Z patching file arch/powerpc/net/bpf_jit_comp64.c
2025-10-02T15:24:50.4308150Z patching file arch/powerpc/perf/Makefile
2025-10-02T15:24:50.4308682Z patching file arch/powerpc/perf/callchain.c
2025-10-02T15:24:50.4310604Z patching file arch/powerpc/perf/core-book3s.c
2025-10-02T15:24:50.4313679Z patching file arch/powerpc/perf/core-fsl-emb.c
2025-10-02T15:24:50.4315463Z patching file arch/powerpc/perf/hv-24x7.c
2025-10-02T15:24:50.4317493Z patching file arch/powerpc/perf/hv-gpci-requests.h
2025-10-02T15:24:50.4318367Z patching file arch/powerpc/perf/hv-gpci.c
2025-10-02T15:24:50.4320142Z patching file arch/powerpc/perf/hv-gpci.h
2025-10-02T15:24:50.4321215Z patching file arch/powerpc/perf/imc-pmu.c
2025-10-02T15:24:50.4324675Z patching file arch/powerpc/perf/isa207-common.c
2025-10-02T15:24:50.4325934Z patching file arch/powerpc/perf/isa207-common.h
2025-10-02T15:24:50.4327135Z patching file arch/powerpc/perf/power10-events-list.h
2025-10-02T15:24:50.4328006Z patching file arch/powerpc/perf/power10-pmu.c
2025-10-02T15:24:50.4329399Z patching file arch/powerpc/perf/power9-pmu.c
2025-10-02T15:24:50.4330638Z patching file arch/powerpc/perf/req-gen/perf.h
2025-10-02T15:24:50.4331782Z patching file arch/powerpc/platforms/44x/Kconfig
2025-10-02T15:24:50.4332801Z patching file arch/powerpc/platforms/44x/fsp2.c
2025-10-02T15:24:50.4333901Z patching file arch/powerpc/platforms/4xx/cpm.c
2025-10-02T15:24:50.4335636Z patching file arch/powerpc/platforms/512x/clock-commonclk.c
2025-10-02T15:24:50.4337181Z patching file arch/powerpc/platforms/512x/mpc512x_lpbfifo.c
2025-10-02T15:24:50.4338493Z patching file arch/powerpc/platforms/52xx/lite5200_sleep.S
2025-10-02T15:24:50.4339412Z patching file arch/powerpc/platforms/52xx/mpc52xx_lpbfifo.c
2025-10-02T15:24:50.4340781Z patching file arch/powerpc/platforms/83xx/mpc832x_rdb.c
2025-10-02T15:24:50.4341742Z patching file arch/powerpc/platforms/85xx/Makefile
2025-10-02T15:24:50.4342585Z patching file arch/powerpc/platforms/85xx/mpc85xx_pm_ops.c
2025-10-02T15:24:50.4343541Z patching file arch/powerpc/platforms/85xx/smp.c
2025-10-02T15:24:50.4345208Z patching file arch/powerpc/platforms/8xx/cpm1.c
2025-10-02T15:24:50.4346328Z patching file arch/powerpc/platforms/8xx/micropatch.c
2025-10-02T15:24:50.4347409Z patching file arch/powerpc/platforms/8xx/pic.c
2025-10-02T15:24:50.4348324Z patching file arch/powerpc/platforms/Kconfig
2025-10-02T15:24:50.4349372Z patching file arch/powerpc/platforms/Kconfig.cputype
2025-10-02T15:24:50.4350746Z patching file arch/powerpc/platforms/Makefile
2025-10-02T15:24:50.4352330Z patching file arch/powerpc/platforms/book3s/Kconfig
2025-10-02T15:24:50.4353259Z patching file arch/powerpc/platforms/book3s/Makefile
2025-10-02T15:24:50.4354170Z patching file arch/powerpc/platforms/book3s/vas-api.c
2025-10-02T15:24:50.4356300Z patching file arch/powerpc/platforms/cell/axon_msi.c
2025-10-02T15:24:50.4357336Z patching file arch/powerpc/platforms/cell/iommu.c
2025-10-02T15:24:50.4359113Z patching file arch/powerpc/platforms/cell/pervasive.c
2025-10-02T15:24:50.4359756Z patching file arch/powerpc/platforms/cell/smp.c
2025-10-02T15:24:50.4360744Z patching file arch/powerpc/platforms/cell/spufs/coredump.c
2025-10-02T15:24:50.4361700Z patching file arch/powerpc/platforms/cell/spufs/inode.c
2025-10-02T15:24:50.4363293Z patching file arch/powerpc/platforms/embedded6xx/flipper-pic.c
2025-10-02T15:24:50.4364201Z patching file arch/powerpc/platforms/embedded6xx/hlwd-pic.c
2025-10-02T15:24:50.4365184Z patching file arch/powerpc/platforms/embedded6xx/linkstation.c
2025-10-02T15:24:50.4366068Z patching file arch/powerpc/platforms/embedded6xx/mpc10x.h
2025-10-02T15:24:50.4366931Z patching file arch/powerpc/platforms/embedded6xx/wii.c
2025-10-02T15:24:50.4367961Z patching file arch/powerpc/platforms/powermac/cache.S
2025-10-02T15:24:50.4369699Z patching file arch/powerpc/platforms/powermac/low_i2c.c
2025-10-02T15:24:50.4371544Z patching file arch/powerpc/platforms/powermac/sleep.S
2025-10-02T15:24:50.4373210Z patching file arch/powerpc/platforms/powernv/Kconfig
2025-10-02T15:24:50.4373836Z patching file arch/powerpc/platforms/powernv/Makefile
2025-10-02T15:24:50.4374780Z patching file arch/powerpc/platforms/powernv/memtrace.c
2025-10-02T15:24:50.4376335Z patching file arch/powerpc/platforms/powernv/npu-dma.c
2025-10-02T15:24:50.4378055Z patching file arch/powerpc/platforms/powernv/opal-fadump.c
2025-10-02T15:24:50.4380181Z patching file arch/powerpc/platforms/powernv/opal-fadump.h
2025-10-02T15:24:50.4381220Z patching file arch/powerpc/platforms/powernv/opal-irqchip.c
2025-10-02T15:24:50.4382279Z patching file arch/powerpc/platforms/powernv/opal-lpc.c
2025-10-02T15:24:50.4383412Z patching file arch/powerpc/platforms/powernv/opal-powercap.c
2025-10-02T15:24:50.4384381Z patching file arch/powerpc/platforms/powernv/opal-prd.c
2025-10-02T15:24:50.4392965Z patching file arch/powerpc/platforms/powernv/opal-xscom.c
2025-10-02T15:24:50.4393424Z patching file arch/powerpc/platforms/powernv/opal.c
2025-10-02T15:24:50.4393878Z patching file arch/powerpc/platforms/powernv/pci-ioda.c
2025-10-02T15:24:50.4394318Z patching file arch/powerpc/platforms/powernv/pci-sriov.c
2025-10-02T15:24:50.4394758Z patching file arch/powerpc/platforms/powernv/powernv.h
2025-10-02T15:24:50.4395172Z patching file arch/powerpc/platforms/powernv/rng.c
2025-10-02T15:24:50.4395830Z patching file arch/powerpc/platforms/powernv/setup.c
2025-10-02T15:24:50.4396982Z patching file arch/powerpc/platforms/powernv/ultravisor.c
2025-10-02T15:24:50.4397820Z patching file arch/powerpc/platforms/powernv/vas-api.c
2025-10-02T15:24:50.4399973Z patching file arch/powerpc/platforms/powernv/vas-fault.c
2025-10-02T15:24:50.4401379Z patching file arch/powerpc/platforms/powernv/vas-window.c
2025-10-02T15:24:50.4403352Z patching file arch/powerpc/platforms/powernv/vas.h
2025-10-02T15:24:50.4404607Z patching file arch/powerpc/platforms/ps3/mm.c
2025-10-02T15:24:50.4406612Z patching file arch/powerpc/platforms/pseries/dlpar.c
2025-10-02T15:24:50.4407719Z patching file arch/powerpc/platforms/pseries/dtl.c
2025-10-02T15:24:50.4409306Z patching file arch/powerpc/platforms/pseries/eeh_pseries.c
2025-10-02T15:24:50.4410851Z patching file arch/powerpc/platforms/pseries/firmware.c
2025-10-02T15:24:50.4411946Z patching file arch/powerpc/platforms/pseries/hotplug-cpu.c
2025-10-02T15:24:50.4413820Z patching file arch/powerpc/platforms/pseries/hotplug-memory.c
2025-10-02T15:24:50.4415038Z patching file arch/powerpc/platforms/pseries/hvCall.S
2025-10-02T15:24:50.4416105Z patching file arch/powerpc/platforms/pseries/ibmebus.c
2025-10-02T15:24:50.4417770Z patching file arch/powerpc/platforms/pseries/iommu.c
2025-10-02T15:24:50.4420239Z patching file arch/powerpc/platforms/pseries/lpar.c
2025-10-02T15:24:50.4422818Z patching file arch/powerpc/platforms/pseries/lparcfg.c
2025-10-02T15:24:50.4424203Z patching file arch/powerpc/platforms/pseries/mobility.c
2025-10-02T15:24:50.4425720Z patching file arch/powerpc/platforms/pseries/msi.c
2025-10-02T15:24:50.4427189Z patching file arch/powerpc/platforms/pseries/papr_scm.c
2025-10-02T15:24:50.4428978Z patching file arch/powerpc/platforms/pseries/pci_dlpar.c
2025-10-02T15:24:50.4429960Z patching file arch/powerpc/platforms/pseries/pseries.h
2025-10-02T15:24:50.4430800Z patching file arch/powerpc/platforms/pseries/rng.c
2025-10-02T15:24:50.4431975Z patching file arch/powerpc/platforms/pseries/setup.c
2025-10-02T15:24:50.4433931Z patching file arch/powerpc/platforms/pseries/smp.c
2025-10-02T15:24:50.4434842Z patching file arch/powerpc/platforms/pseries/suspend.c
2025-10-02T15:24:50.4436543Z patching file arch/powerpc/platforms/pseries/vio.c
2025-10-02T15:24:50.4438476Z patching file arch/powerpc/purgatory/Makefile
2025-10-02T15:24:50.4439269Z patching file arch/powerpc/sysdev/dart_iommu.c
2025-10-02T15:24:50.4440545Z patching file arch/powerpc/sysdev/dcr-low.S
2025-10-02T15:24:50.4441402Z patching file arch/powerpc/sysdev/fsl_gtm.c
2025-10-02T15:24:50.4442590Z patching file arch/powerpc/sysdev/fsl_msi.c
2025-10-02T15:24:50.4444419Z patching file arch/powerpc/sysdev/fsl_pci.c
2025-10-02T15:24:50.4446138Z patching file arch/powerpc/sysdev/fsl_pci.h
2025-10-02T15:24:50.4447025Z patching file arch/powerpc/sysdev/fsl_rio.c
2025-10-02T15:24:50.4448652Z patching file arch/powerpc/sysdev/mpic_msgr.c
2025-10-02T15:24:50.4449722Z patching file arch/powerpc/sysdev/tsi108_pci.c
2025-10-02T15:24:50.4450928Z patching file arch/powerpc/sysdev/xics/icp-native.c
2025-10-02T15:24:50.4451875Z patching file arch/powerpc/sysdev/xics/icp-opal.c
2025-10-02T15:24:50.4453418Z patching file arch/powerpc/sysdev/xive/common.c
2025-10-02T15:24:50.4455619Z patching file arch/powerpc/sysdev/xive/native.c
2025-10-02T15:24:50.4456727Z patching file arch/powerpc/sysdev/xive/spapr.c
2025-10-02T15:24:50.4458380Z patching file arch/powerpc/xmon/nonstdio.c
2025-10-02T15:24:50.4459120Z patching file arch/powerpc/xmon/ppc-dis.c
2025-10-02T15:24:50.4461378Z patching file arch/powerpc/xmon/xmon.c
2025-10-02T15:24:50.4464293Z patching file arch/riscv/Kconfig
2025-10-02T15:24:50.4465500Z patching file arch/riscv/Makefile
2025-10-02T15:24:50.4466749Z patching file arch/riscv/boot/dts/sifive/fu540-c000.dtsi
2025-10-02T15:24:50.4467690Z patching file arch/riscv/boot/dts/sifive/hifive-unleashed-a00.dts
2025-10-02T15:24:50.4468550Z patching file arch/riscv/configs/defconfig
2025-10-02T15:24:50.4469652Z patching file arch/riscv/include/asm/Kbuild
2025-10-02T15:24:50.4470513Z patching file arch/riscv/include/asm/ftrace.h
2025-10-02T15:24:50.4471435Z patching file arch/riscv/include/asm/hugetlb.h
2025-10-02T15:24:50.4472300Z patching file arch/riscv/include/asm/io.h
2025-10-02T15:24:50.4473373Z patching file arch/riscv/include/asm/irq_work.h
2025-10-02T15:24:50.4474424Z patching file arch/riscv/include/asm/jump_label.h
2025-10-02T15:24:50.4475092Z patching file arch/riscv/include/asm/kasan.h
2025-10-02T15:24:50.4475905Z patching file arch/riscv/include/asm/kgdb.h
2025-10-02T15:24:50.4476792Z patching file arch/riscv/include/asm/mmio.h
2025-10-02T15:24:50.4477847Z patching file arch/riscv/include/asm/module.lds.h
2025-10-02T15:24:50.4478745Z patching file arch/riscv/include/asm/page.h
2025-10-02T15:24:50.4479881Z patching file arch/riscv/include/asm/parse_asm.h
2025-10-02T15:24:50.4480868Z patching file arch/riscv/include/asm/patch.h
2025-10-02T15:24:50.4481758Z patching file arch/riscv/include/asm/pgtable-64.h
2025-10-02T15:24:50.4482664Z patching file arch/riscv/include/asm/pgtable.h
2025-10-02T15:24:50.4483934Z patching file arch/riscv/include/asm/sbi.h
2025-10-02T15:24:50.4484981Z patching file arch/riscv/include/asm/stackprotector.h
2025-10-02T15:24:50.4485823Z patching file arch/riscv/include/asm/syscall.h
2025-10-02T15:24:50.4486716Z patching file arch/riscv/include/asm/thread_info.h
2025-10-02T15:24:50.4487653Z patching file arch/riscv/include/asm/timex.h
2025-10-02T15:24:50.4488594Z patching file arch/riscv/include/asm/uaccess.h
2025-10-02T15:24:50.4490228Z patching file arch/riscv/include/asm/vdso.h
2025-10-02T15:24:50.4491120Z patching file arch/riscv/include/uapi/asm/setup.h
2025-10-02T15:24:50.4492102Z patching file arch/riscv/include/uapi/asm/unistd.h
2025-10-02T15:24:50.4492933Z patching file arch/riscv/kernel/Makefile
2025-10-02T15:24:50.4493876Z patching file arch/riscv/kernel/asm-offsets.c
2025-10-02T15:24:50.4494888Z patching file arch/riscv/kernel/cacheinfo.c
2025-10-02T15:24:50.4496017Z patching file arch/riscv/kernel/cpu-hotplug.c
2025-10-02T15:24:50.4496824Z patching file arch/riscv/kernel/efi-header.S
2025-10-02T15:24:50.4497663Z patching file arch/riscv/kernel/efi.c
2025-10-02T15:24:50.4498524Z patching file arch/riscv/kernel/entry.S
2025-10-02T15:24:50.4500137Z patching file arch/riscv/kernel/ftrace.c
2025-10-02T15:24:50.4501196Z patching file arch/riscv/kernel/head.S
2025-10-02T15:24:50.4502265Z patching file arch/riscv/kernel/kgdb.c
2025-10-02T15:24:50.4503267Z patching file arch/riscv/kernel/mcount.S
2025-10-02T15:24:50.4504301Z patching file arch/riscv/kernel/module.c
2025-10-02T15:24:50.4505476Z patching file arch/riscv/kernel/patch.c
2025-10-02T15:24:50.4506642Z patching file arch/riscv/kernel/perf_callchain.c
2025-10-02T15:24:50.4507608Z patching file arch/riscv/kernel/process.c
2025-10-02T15:24:50.4508503Z patching file arch/riscv/kernel/ptrace.c
2025-10-02T15:24:50.4509414Z patching file arch/riscv/kernel/reset.c
2025-10-02T15:24:50.4510577Z patching file arch/riscv/kernel/setup.c
2025-10-02T15:24:50.4511563Z patching file arch/riscv/kernel/signal.c
2025-10-02T15:24:50.4512771Z patching file arch/riscv/kernel/smp.c
2025-10-02T15:24:50.4513691Z patching file arch/riscv/kernel/smpboot.c
2025-10-02T15:24:50.4514668Z patching file arch/riscv/kernel/stacktrace.c
2025-10-02T15:24:50.4515575Z patching file arch/riscv/kernel/sys_riscv.c
2025-10-02T15:24:50.4516418Z patching file arch/riscv/kernel/time.c
2025-10-02T15:24:50.4517295Z patching file arch/riscv/kernel/trace_irq.c
2025-10-02T15:24:50.4518451Z patching file arch/riscv/kernel/trace_irq.h
2025-10-02T15:24:50.4519697Z patching file arch/riscv/kernel/traps.c
2025-10-02T15:24:50.4520938Z patching file arch/riscv/kernel/traps_misaligned.c
2025-10-02T15:24:50.4521933Z patching file arch/riscv/kernel/vdso.c
2025-10-02T15:24:50.4522853Z patching file arch/riscv/kernel/vdso/Makefile
2025-10-02T15:24:50.4523861Z patching file arch/riscv/kernel/vdso/vdso.lds.S
2025-10-02T15:24:50.4524714Z patching file arch/riscv/mm/Makefile
2025-10-02T15:24:50.4525577Z patching file arch/riscv/mm/cacheflush.c
2025-10-02T15:24:50.4526465Z patching file arch/riscv/mm/fault.c
2025-10-02T15:24:50.4527666Z patching file arch/riscv/mm/init.c
2025-10-02T15:24:50.4529823Z patching file arch/riscv/mm/kasan_init.c
2025-10-02T15:24:50.4530374Z patching file arch/riscv/mm/pageattr.c
2025-10-02T15:24:50.4531737Z patching file arch/riscv/net/bpf_jit.h
2025-10-02T15:24:50.4533497Z patching file arch/riscv/net/bpf_jit_comp32.c
2025-10-02T15:24:50.4535241Z patching file arch/riscv/net/bpf_jit_comp64.c
2025-10-02T15:24:50.4537165Z patching file arch/riscv/net/bpf_jit_core.c
2025-10-02T15:24:50.4538236Z patching file arch/s390/Kconfig
2025-10-02T15:24:50.4540196Z patching file arch/s390/Makefile
2025-10-02T15:24:50.4541236Z patching file arch/s390/boot/compressed/decompressor.c
2025-10-02T15:24:50.4541968Z patching file arch/s390/boot/compressed/vmlinux.lds.S
2025-10-02T15:24:50.4542811Z patching file arch/s390/boot/ipl_parm.c
2025-10-02T15:24:50.4543819Z patching file arch/s390/boot/ipl_report.c
2025-10-02T15:24:50.4544767Z patching file arch/s390/boot/mem_detect.c
2025-10-02T15:24:50.4545810Z patching file arch/s390/boot/text_dma.S
2025-10-02T15:24:50.4546669Z patching file arch/s390/boot/uv.c
2025-10-02T15:24:50.4547764Z patching file arch/s390/crypto/aes_s390.c
2025-10-02T15:24:50.4549717Z patching file arch/s390/crypto/arch_random.c
2025-10-02T15:24:50.4550776Z patching file arch/s390/crypto/paes_s390.c
2025-10-02T15:24:50.4552410Z patching file arch/s390/hypfs/hypfs_dbfs.c
2025-10-02T15:24:50.4553240Z patching file arch/s390/hypfs/hypfs_diag.c
2025-10-02T15:24:50.4554399Z patching file arch/s390/hypfs/hypfs_vm.c
2025-10-02T15:24:50.4555381Z patching file arch/s390/hypfs/inode.c
2025-10-02T15:24:50.4556653Z patching file arch/s390/include/asm/Kbuild
2025-10-02T15:24:50.4557594Z patching file arch/s390/include/asm/archrandom.h
2025-10-02T15:24:50.4558651Z patching file arch/s390/include/asm/cpu_mf.h
2025-10-02T15:24:50.4560342Z patching file arch/s390/include/asm/debug.h
2025-10-02T15:24:50.4561460Z patching file arch/s390/include/asm/dwarf.h
2025-10-02T15:24:50.4562398Z patching file arch/s390/include/asm/extable.h
2025-10-02T15:24:50.4563356Z patching file arch/s390/include/asm/facility.h
2025-10-02T15:24:50.4564228Z patching file arch/s390/include/asm/fpu/api.h
2025-10-02T15:24:50.4565257Z patching file arch/s390/include/asm/ftrace.h
2025-10-02T15:24:50.4566212Z patching file arch/s390/include/asm/futex.h
2025-10-02T15:24:50.4567359Z patching file arch/s390/include/asm/gmap.h
2025-10-02T15:24:50.4568437Z patching file arch/s390/include/asm/hugetlb.h
2025-10-02T15:24:50.4569391Z patching file arch/s390/include/asm/kexec.h
2025-10-02T15:24:50.4570774Z patching file arch/s390/include/asm/kvm_host.h
2025-10-02T15:24:50.4572560Z patching file arch/s390/include/asm/pci.h
2025-10-02T15:24:50.4573481Z patching file arch/s390/include/asm/pci_io.h
2025-10-02T15:24:50.4574979Z patching file arch/s390/include/asm/percpu.h
2025-10-02T15:24:50.4575886Z patching file arch/s390/include/asm/perf_event.h
2025-10-02T15:24:50.4577558Z patching file arch/s390/include/asm/pgtable.h
2025-10-02T15:24:50.4579704Z patching file arch/s390/include/asm/preempt.h
2025-10-02T15:24:50.4580827Z patching file arch/s390/include/asm/processor.h
2025-10-02T15:24:50.4582017Z patching file arch/s390/include/asm/setup.h
2025-10-02T15:24:50.4583088Z patching file arch/s390/include/asm/stacktrace.h
2025-10-02T15:24:50.4584881Z patching file arch/s390/include/asm/thread_info.h
2025-10-02T15:24:50.4585724Z patching file arch/s390/include/asm/timex.h
2025-10-02T15:24:50.4586901Z patching file arch/s390/include/asm/uv.h
2025-10-02T15:24:50.4588067Z patching file arch/s390/include/asm/vdso/data.h
2025-10-02T15:24:50.4588991Z patching file arch/s390/kernel/asm-offsets.c
2025-10-02T15:24:50.4590036Z patching file arch/s390/kernel/cpcmd.c
2025-10-02T15:24:50.4591116Z patching file arch/s390/kernel/crash_dump.c
2025-10-02T15:24:50.4592960Z patching file arch/s390/kernel/debug.c
2025-10-02T15:24:50.4595431Z patching file arch/s390/kernel/dis.c
2025-10-02T15:24:50.4596428Z patching file arch/s390/kernel/dumpstack.c
2025-10-02T15:24:50.4597401Z patching file arch/s390/kernel/early.c
2025-10-02T15:24:50.4599043Z patching file arch/s390/kernel/entry.S
2025-10-02T15:24:50.4601585Z patching file arch/s390/kernel/ftrace.c
2025-10-02T15:24:50.4602921Z patching file arch/s390/kernel/ipl.c
2025-10-02T15:24:50.4605537Z patching file arch/s390/kernel/jump_label.c
2025-10-02T15:24:50.4606081Z patching file arch/s390/kernel/kprobes.c
2025-10-02T15:24:50.4607378Z patching file arch/s390/kernel/machine_kexec_file.c
2025-10-02T15:24:50.4608831Z patching file arch/s390/kernel/mcount.S
2025-10-02T15:24:50.4609919Z patching file arch/s390/kernel/module.c
2025-10-02T15:24:50.4611656Z patching file arch/s390/kernel/nmi.c
2025-10-02T15:24:50.4612620Z patching file arch/s390/kernel/os_info.c
2025-10-02T15:24:50.4613722Z patching file arch/s390/kernel/perf_cpum_cf.c
2025-10-02T15:24:50.4615819Z patching file arch/s390/kernel/perf_cpum_sf.c
2025-10-02T15:24:50.4618752Z patching file arch/s390/kernel/perf_event.c
2025-10-02T15:24:50.4619664Z patching file arch/s390/kernel/process.c
2025-10-02T15:24:50.4621480Z patching file arch/s390/kernel/ptrace.c
2025-10-02T15:24:50.4623715Z patching file arch/s390/kernel/setup.c
2025-10-02T15:24:50.4625678Z patching file arch/s390/kernel/smp.c
2025-10-02T15:24:50.4627588Z patching file arch/s390/kernel/sthyi.c
2025-10-02T15:24:50.4628493Z patching file arch/s390/kernel/syscalls/Makefile
2025-10-02T15:24:50.4629358Z patching file arch/s390/kernel/syscalls/syscall.tbl
2025-10-02T15:24:50.4631207Z patching file arch/s390/kernel/time.c
2025-10-02T15:24:50.4632670Z patching file arch/s390/kernel/traps.c
2025-10-02T15:24:50.4633610Z patching file arch/s390/kernel/uv.c
2025-10-02T15:24:50.4634851Z patching file arch/s390/kernel/vdso64/vdso_user_wrapper.S
2025-10-02T15:24:50.4635678Z patching file arch/s390/kernel/vmlinux.lds.S
2025-10-02T15:24:50.4636851Z patching file arch/s390/kernel/vtime.c
2025-10-02T15:24:50.4637996Z patching file arch/s390/kvm/diag.c
2025-10-02T15:24:50.4639625Z patching file arch/s390/kvm/gaccess.c
2025-10-02T15:24:50.4642251Z patching file arch/s390/kvm/gaccess.h
2025-10-02T15:24:50.4643564Z patching file arch/s390/kvm/intercept.c
2025-10-02T15:24:50.4646297Z patching file arch/s390/kvm/interrupt.c
2025-10-02T15:24:50.4650588Z patching file arch/s390/kvm/kvm-s390.c
2025-10-02T15:24:50.4654567Z patching file arch/s390/kvm/kvm-s390.h
2025-10-02T15:24:50.4655806Z patching file arch/s390/kvm/priv.c
2025-10-02T15:24:50.4657762Z patching file arch/s390/kvm/pv.c
2025-10-02T15:24:50.4658813Z patching file arch/s390/kvm/sigp.c
2025-10-02T15:24:50.4660124Z patching file arch/s390/kvm/trace-s390.h
2025-10-02T15:24:50.4661828Z patching file arch/s390/kvm/vsie.c
2025-10-02T15:24:50.4664314Z patching file arch/s390/lib/string.c
2025-10-02T15:24:50.4665165Z patching file arch/s390/lib/test_unwind.c
2025-10-02T15:24:50.4666252Z patching file arch/s390/lib/uaccess.c
2025-10-02T15:24:50.4667362Z patching file arch/s390/mm/cmm.c
2025-10-02T15:24:50.4668896Z patching file arch/s390/mm/dump_pagetables.c
2025-10-02T15:24:50.4669851Z patching file arch/s390/mm/extmem.c
2025-10-02T15:24:50.4671442Z patching file arch/s390/mm/fault.c
2025-10-02T15:24:50.4673722Z patching file arch/s390/mm/gmap.c
2025-10-02T15:24:50.4676331Z patching file arch/s390/mm/hugetlbpage.c
2025-10-02T15:24:50.4677033Z patching file arch/s390/mm/init.c
2025-10-02T15:24:50.4678051Z patching file arch/s390/mm/kasan_init.c
2025-10-02T15:24:50.4679263Z patching file arch/s390/mm/page-states.c
2025-10-02T15:24:50.4680578Z patching file arch/s390/mm/pgalloc.c
2025-10-02T15:24:50.4682220Z patching file arch/s390/mm/pgtable.c
2025-10-02T15:24:50.4684016Z patching file arch/s390/mm/vmem.c
2025-10-02T15:24:50.4685683Z patching file arch/s390/net/bpf_jit_comp.c
2025-10-02T15:24:50.4688302Z patching file arch/s390/pci/pci.c
2025-10-02T15:24:50.4690533Z patching file arch/s390/pci/pci_bus.h
2025-10-02T15:24:50.4691190Z patching file arch/s390/pci/pci_clp.c
2025-10-02T15:24:50.4693215Z patching file arch/s390/pci/pci_dma.c
2025-10-02T15:24:50.4694249Z patching file arch/s390/pci/pci_event.c
2025-10-02T15:24:50.4695435Z patching file arch/s390/pci/pci_mmio.c
2025-10-02T15:24:50.4696648Z patching file arch/s390/purgatory/Makefile
2025-10-02T15:24:50.4697428Z patching file arch/s390/purgatory/head.S
2025-10-02T15:24:50.4698935Z patching file arch/sh/Kconfig
2025-10-02T15:24:50.4699929Z patching file arch/sh/Kconfig.debug
2025-10-02T15:24:50.4700828Z patching file arch/sh/Makefile
2025-10-02T15:24:50.4702123Z patching file arch/sh/boards/mach-ap325rxa/setup.c
2025-10-02T15:24:50.4703473Z patching file arch/sh/boards/mach-ecovec24/setup.c
2025-10-02T15:24:50.4705137Z patching file arch/sh/boards/mach-kfr2r09/setup.c
2025-10-02T15:24:50.4706351Z patching file arch/sh/boards/mach-migor/setup.c
2025-10-02T15:24:50.4707740Z patching file arch/sh/boards/mach-se/7724/setup.c
2025-10-02T15:24:50.4709112Z patching file arch/sh/boot/compressed/Makefile
2025-10-02T15:24:50.4709869Z patching file arch/sh/boot/romimage/Makefile
2025-10-02T15:24:50.4710942Z patching file arch/sh/drivers/dma/Kconfig
2025-10-02T15:24:50.4711642Z patching file arch/sh/drivers/dma/dma-sh.c
2025-10-02T15:24:50.4713129Z patching file arch/sh/include/asm/Kbuild
2025-10-02T15:24:50.4713966Z patching file arch/sh/include/asm/bugs.h
2025-10-02T15:24:50.4715543Z patching file arch/sh/include/asm/io.h
2025-10-02T15:24:50.4716525Z patching file arch/sh/include/asm/pgtable-3level.h
2025-10-02T15:24:50.4717459Z patching file arch/sh/include/asm/processor.h
2025-10-02T15:24:50.4718489Z patching file arch/sh/include/asm/processor_32.h
2025-10-02T15:24:50.4719727Z patching file arch/sh/include/asm/sections.h
2025-10-02T15:24:50.4720714Z patching file arch/sh/include/asm/sfp-machine.h
2025-10-02T15:24:50.4721721Z patching file arch/sh/include/asm/thread_info.h
2025-10-02T15:24:50.4722771Z patching file arch/sh/kernel/cpu/fpu.c
2025-10-02T15:24:50.4723718Z patching file arch/sh/kernel/cpu/proc.c
2025-10-02T15:24:50.4724639Z patching file arch/sh/kernel/cpu/sh2/probe.c
2025-10-02T15:24:50.4725572Z patching file arch/sh/kernel/cpu/sh4/sq.c
2025-10-02T15:24:50.4726717Z patching file arch/sh/kernel/cpu/sh4a/smp-shx3.c
2025-10-02T15:24:50.4727714Z patching file arch/sh/kernel/head_32.S
2025-10-02T15:24:50.4728783Z patching file arch/sh/kernel/idle.c
2025-10-02T15:24:50.4729858Z patching file arch/sh/kernel/kprobes.c
2025-10-02T15:24:50.4730986Z patching file arch/sh/kernel/machvec.c
2025-10-02T15:24:50.4731898Z patching file arch/sh/kernel/nmi_debug.c
2025-10-02T15:24:50.4732809Z patching file arch/sh/kernel/process_32.c
2025-10-02T15:24:50.4733727Z patching file arch/sh/kernel/setup.c
2025-10-02T15:24:50.4735262Z patching file arch/sh/kernel/signal_32.c
2025-10-02T15:24:50.4736337Z patching file arch/sh/kernel/smp.c
2025-10-02T15:24:50.4737391Z patching file arch/sh/kernel/traps.c
2025-10-02T15:24:50.4738302Z patching file arch/sh/kernel/vmlinux.lds.S
2025-10-02T15:24:50.4739373Z patching file arch/sh/lib/checksum.S
2025-10-02T15:24:50.4741050Z patching file arch/sh/math-emu/math.c
2025-10-02T15:24:50.4742243Z patching file arch/sh/math-emu/sfp-util.h
2025-10-02T15:24:50.4743148Z patching file arch/sparc/Kconfig
2025-10-02T15:24:50.4744820Z patching file arch/sparc/include/asm/Kbuild
2025-10-02T15:24:50.4745447Z patching file arch/sparc/include/asm/bugs.h
2025-10-02T15:24:50.4746561Z patching file arch/sparc/include/asm/mman.h
2025-10-02T15:24:50.4747739Z patching file arch/sparc/include/asm/oplib_64.h
2025-10-02T15:24:50.4748886Z patching file arch/sparc/include/asm/pgtable_32.h
2025-10-02T15:24:50.4750739Z patching file arch/sparc/include/asm/pgtable_64.h
2025-10-02T15:24:50.4752451Z patching file arch/sparc/include/asm/smp_64.h
2025-10-02T15:24:50.4753324Z patching file arch/sparc/include/asm/thread_info_32.h
2025-10-02T15:24:50.4754448Z patching file arch/sparc/include/asm/thread_info_64.h
2025-10-02T15:24:50.4755546Z patching file arch/sparc/include/asm/timex_32.h
2025-10-02T15:24:50.4756566Z patching file arch/sparc/include/uapi/asm/termbits.h
2025-10-02T15:24:50.4757489Z patching file arch/sparc/include/uapi/asm/termios.h
2025-10-02T15:24:50.4758521Z patching file arch/sparc/kernel/ioport.c
2025-10-02T15:24:50.4759904Z patching file arch/sparc/kernel/led.c
2025-10-02T15:24:50.4761113Z patching file arch/sparc/kernel/leon_pci_grpci1.c
2025-10-02T15:24:50.4763046Z patching file arch/sparc/kernel/leon_pci_grpci2.c
2025-10-02T15:24:50.4764510Z patching file arch/sparc/kernel/mdesc.c
2025-10-02T15:24:50.4766347Z patching file arch/sparc/kernel/nmi.c
2025-10-02T15:24:50.4767287Z patching file arch/sparc/kernel/process_32.c
2025-10-02T15:24:50.4768899Z patching file arch/sparc/kernel/process_64.c
2025-10-02T15:24:50.4770535Z patching file arch/sparc/kernel/prom_64.c
2025-10-02T15:24:50.4771896Z patching file arch/sparc/kernel/setup_32.c
2025-10-02T15:24:50.4773102Z patching file arch/sparc/kernel/setup_64.c
2025-10-02T15:24:50.4774860Z patching file arch/sparc/kernel/signal_32.c
2025-10-02T15:24:50.4776002Z patching file arch/sparc/kernel/signal_64.c
2025-10-02T15:24:50.4777496Z patching file arch/sparc/kernel/smp_32.c
2025-10-02T15:24:50.4779038Z patching file arch/sparc/kernel/smp_64.c
2025-10-02T15:24:50.4781219Z patching file arch/sparc/kernel/sys32.S
2025-10-02T15:24:50.4782746Z patching file arch/sparc/kernel/syscalls/syscall.tbl
2025-10-02T15:24:50.4784246Z patching file arch/sparc/kernel/traps_32.c
2025-10-02T15:24:50.4786227Z patching file arch/sparc/kernel/traps_64.c
2025-10-02T15:24:50.4788834Z patching file arch/sparc/lib/checksum_32.S
2025-10-02T15:24:50.4789859Z patching file arch/sparc/lib/iomap.c
2025-10-02T15:24:50.4790727Z patching file arch/sparc/lib/memset.S
2025-10-02T15:24:50.4791653Z patching file arch/sparc/mm/init_32.c
2025-10-02T15:24:50.4793637Z patching file arch/sparc/mm/init_64.c
2025-10-02T15:24:50.4796106Z patching file arch/sparc/mm/tlb.c
2025-10-02T15:24:50.4797269Z patching file arch/sparc/net/bpf_jit_comp_64.c
2025-10-02T15:24:50.4799166Z patching file arch/sparc/prom/init_64.c
2025-10-02T15:24:50.4799838Z patching file arch/sparc/prom/p1275.c
2025-10-02T15:24:50.4800851Z patching file arch/sparc/vdso/vma.c
2025-10-02T15:24:50.4801876Z patching file arch/um/Kconfig
2025-10-02T15:24:50.4802901Z patching file arch/um/Kconfig.debug
2025-10-02T15:24:50.4803652Z patching file arch/um/Makefile
2025-10-02T15:24:50.4804794Z patching file arch/um/configs/i386_defconfig
2025-10-02T15:24:50.4805577Z patching file arch/um/configs/x86_64_defconfig
2025-10-02T15:24:50.4806455Z patching file arch/um/drivers/Kconfig
2025-10-02T15:24:50.4807498Z patching file arch/um/drivers/Makefile
2025-10-02T15:24:50.4808378Z patching file arch/um/drivers/chan_user.c
2025-10-02T15:24:50.4810134Z patching file arch/um/drivers/line.c
2025-10-02T15:24:50.4811824Z patching file arch/um/drivers/mconsole_kern.c
2025-10-02T15:24:50.4813192Z patching file arch/um/drivers/net_kern.c
2025-10-02T15:24:50.4814656Z patching file arch/um/drivers/random.c
2025-10-02T15:24:50.4815848Z patching file arch/um/drivers/slip_user.c
2025-10-02T15:24:50.4817330Z patching file arch/um/drivers/ubd_kern.c
2025-10-02T15:24:50.4820166Z patching file arch/um/drivers/ubd_user.c
2025-10-02T15:24:50.4821122Z patching file arch/um/drivers/vector_kern.c
2025-10-02T15:24:50.4823650Z patching file arch/um/drivers/virtio_uml.c
2025-10-02T15:24:50.4825404Z patching file arch/um/drivers/xterm.c
2025-10-02T15:24:50.4826350Z patching file arch/um/include/asm/asm-prototypes.h
2025-10-02T15:24:50.4826932Z patching file arch/um/include/asm/bugs.h
2025-10-02T15:24:50.4827713Z patching file arch/um/include/asm/delay.h
2025-10-02T15:24:50.4828620Z patching file arch/um/include/asm/mmu.h
2025-10-02T15:24:50.4829672Z patching file arch/um/include/asm/pgtable-3level.h
2025-10-02T15:24:50.4830607Z patching file arch/um/include/asm/thread_info.h
2025-10-02T15:24:50.4831424Z patching file arch/um/include/asm/timex.h
2025-10-02T15:24:50.4832332Z patching file arch/um/include/shared/kern_util.h
2025-10-02T15:24:50.4833190Z patching file arch/um/include/shared/os.h
2025-10-02T15:24:50.4834171Z patching file arch/um/include/shared/registers.h
2025-10-02T15:24:50.4835017Z patching file arch/um/include/shared/skas/mm_id.h
2025-10-02T15:24:50.4835852Z patching file arch/um/kernel/Makefile
2025-10-02T15:24:50.4836614Z patching file arch/um/kernel/dyn.lds.S
2025-10-02T15:24:50.4837488Z patching file arch/um/kernel/exec.c
2025-10-02T15:24:50.4838143Z patching file arch/um/kernel/gmon_syms.c
2025-10-02T15:24:50.4839335Z patching file arch/um/kernel/mem.c
2025-10-02T15:24:50.4840392Z patching file arch/um/kernel/physmem.c
2025-10-02T15:24:50.4841583Z patching file arch/um/kernel/process.c
2025-10-02T15:24:50.4842545Z patching file arch/um/kernel/ptrace.c
2025-10-02T15:24:50.4843483Z patching file arch/um/kernel/signal.c
2025-10-02T15:24:50.4844433Z patching file arch/um/kernel/sysrq.c
2025-10-02T15:24:50.4845391Z patching file arch/um/kernel/time.c
2025-10-02T15:24:50.4847052Z patching file arch/um/kernel/tlb.c
2025-10-02T15:24:50.4848523Z patching file arch/um/kernel/um_arch.c
2025-10-02T15:24:50.4849735Z patching file arch/um/kernel/uml.lds.S
2025-10-02T15:24:50.4850574Z patching file arch/um/kernel/vmlinux.lds.S
2025-10-02T15:24:50.4851410Z patching file arch/um/os-Linux/helper.c
2025-10-02T15:24:50.4852291Z patching file arch/um/os-Linux/irq.c
2025-10-02T15:24:50.4853176Z patching file arch/um/os-Linux/registers.c
2025-10-02T15:24:50.4854000Z patching file arch/um/os-Linux/signal.c
2025-10-02T15:24:50.4855217Z patching file arch/um/os-Linux/skas/process.c
2025-10-02T15:24:50.4856686Z patching file arch/um/os-Linux/start_up.c
2025-10-02T15:24:50.4857745Z patching file arch/um/os-Linux/umid.c
2025-10-02T15:24:50.4858761Z patching file arch/um/os-Linux/util.c
2025-10-02T15:24:50.4860928Z patching file arch/x86/Kconfig
2025-10-02T15:24:50.4864387Z patching file arch/x86/Kconfig.cpu
2025-10-02T15:24:50.4865313Z patching file arch/x86/Kconfig.debug
2025-10-02T15:24:50.4866334Z patching file arch/x86/Makefile
2025-10-02T15:24:50.4867495Z patching file arch/x86/Makefile.um
2025-10-02T15:24:50.4868417Z patching file arch/x86/boot/Makefile
2025-10-02T15:24:50.4869271Z patching file arch/x86/boot/bioscall.S
2025-10-02T15:24:50.4870378Z patching file arch/x86/boot/boot.h
2025-10-02T15:24:50.4871792Z patching file arch/x86/boot/compressed/Makefile
2025-10-02T15:24:50.4872864Z patching file arch/x86/boot/compressed/efi_thunk_64.S
2025-10-02T15:24:50.4873856Z patching file arch/x86/boot/compressed/head_64.S
2025-10-02T15:24:50.4876176Z patching file arch/x86/boot/compressed/ident_map_64.c
2025-10-02T15:24:50.4876938Z patching file arch/x86/boot/compressed/idt_64.c
2025-10-02T15:24:50.4877635Z patching file arch/x86/boot/compressed/idt_handlers_64.S
2025-10-02T15:24:50.4878292Z patching file arch/x86/boot/compressed/mem_encrypt.S
2025-10-02T15:24:50.4879111Z patching file arch/x86/boot/compressed/misc.h
2025-10-02T15:24:50.4880101Z patching file arch/x86/boot/compressed/sev-es.c
2025-10-02T15:24:50.4881074Z patching file arch/x86/boot/main.c
2025-10-02T15:24:50.4882159Z patching file arch/x86/configs/i386_defconfig
2025-10-02T15:24:50.4883046Z patching file arch/x86/configs/x86_64_defconfig
2025-10-02T15:24:50.4884005Z patching file arch/x86/crypto/Makefile
2025-10-02T15:24:50.4885051Z patching file arch/x86/crypto/aegis128-aesni-asm.S
2025-10-02T15:24:50.4887478Z patching file arch/x86/crypto/aes_ctrby8_avx-x86_64.S
2025-10-02T15:24:50.4889266Z patching file arch/x86/crypto/aesni-intel_asm.S
2025-10-02T15:24:50.4893502Z patching file arch/x86/crypto/aesni-intel_avx-x86_64.S
2025-10-02T15:24:50.4896819Z patching file arch/x86/crypto/aesni-intel_glue.c
2025-10-02T15:24:50.4898940Z patching file arch/x86/crypto/blake2s-core.S
2025-10-02T15:24:50.4899921Z patching file arch/x86/crypto/blake2s-glue.c
2025-10-02T15:24:50.4901672Z patching file arch/x86/crypto/blake2s-shash.c
2025-10-02T15:24:50.4902906Z patching file arch/x86/crypto/blowfish-x86_64-asm_64.S
2025-10-02T15:24:50.4904645Z patching file arch/x86/crypto/camellia-aesni-avx-asm_64.S
2025-10-02T15:24:50.4906810Z patching file arch/x86/crypto/camellia-aesni-avx2-asm_64.S
2025-10-02T15:24:50.4909368Z patching file arch/x86/crypto/camellia-x86_64-asm_64.S
2025-10-02T15:24:50.4910600Z patching file arch/x86/crypto/cast5-avx-x86_64-asm_64.S
2025-10-02T15:24:50.4912269Z patching file arch/x86/crypto/cast6-avx-x86_64-asm_64.S
2025-10-02T15:24:50.4913627Z patching file arch/x86/crypto/chacha-avx2-x86_64.S
2025-10-02T15:24:50.4915731Z patching file arch/x86/crypto/chacha-avx512vl-x86_64.S
2025-10-02T15:24:50.4916715Z patching file arch/x86/crypto/chacha-ssse3-x86_64.S
2025-10-02T15:24:50.4918248Z patching file arch/x86/crypto/crc32-pclmul_asm.S
2025-10-02T15:24:50.4919190Z patching file arch/x86/crypto/crc32c-pcl-intel-asm_64.S
2025-10-02T15:24:50.4920582Z patching file arch/x86/crypto/crct10dif-pcl-asm_64.S
2025-10-02T15:24:50.4922211Z patching file arch/x86/crypto/curve25519-x86_64.c
2025-10-02T15:24:50.4924290Z patching file arch/x86/crypto/des3_ede-asm_64.S
2025-10-02T15:24:50.4925468Z patching file arch/x86/crypto/ghash-clmulni-intel_asm.S
2025-10-02T15:24:50.4926491Z patching file arch/x86/crypto/ghash-clmulni-intel_glue.c
2025-10-02T15:24:50.4927566Z patching file arch/x86/crypto/nh-avx2-x86_64.S
2025-10-02T15:24:50.4928422Z patching file arch/x86/crypto/nh-sse2-x86_64.S
2025-10-02T15:24:50.4930813Z patching file arch/x86/crypto/poly1305-x86_64-cryptogams.pl
2025-10-02T15:24:50.4934007Z patching file arch/x86/crypto/poly1305_glue.c
2025-10-02T15:24:50.4935066Z patching file arch/x86/crypto/serpent-avx-x86_64-asm_64.S
2025-10-02T15:24:50.4937003Z patching file arch/x86/crypto/serpent-avx2-asm_64.S
2025-10-02T15:24:50.4938559Z patching file arch/x86/crypto/serpent-sse2-i586-asm_32.S
2025-10-02T15:24:50.4939871Z patching file arch/x86/crypto/serpent-sse2-x86_64-asm_64.S
2025-10-02T15:24:50.4941611Z patching file arch/x86/crypto/sha1_avx2_x86_64_asm.S
2025-10-02T15:24:50.4942590Z patching file arch/x86/crypto/sha1_ni_asm.S
2025-10-02T15:24:50.4943661Z patching file arch/x86/crypto/sha1_ssse3_asm.S
2025-10-02T15:24:50.4944872Z patching file arch/x86/crypto/sha256-avx-asm.S
2025-10-02T15:24:50.4946382Z patching file arch/x86/crypto/sha256-avx2-asm.S
2025-10-02T15:24:50.4947838Z patching file arch/x86/crypto/sha256-ssse3-asm.S
2025-10-02T15:24:50.4949007Z patching file arch/x86/crypto/sha256_ni_asm.S
2025-10-02T15:24:50.4950349Z patching file arch/x86/crypto/sha512-avx-asm.S
2025-10-02T15:24:50.4951945Z patching file arch/x86/crypto/sha512-avx2-asm.S
2025-10-02T15:24:50.4953153Z patching file arch/x86/crypto/sha512-ssse3-asm.S
2025-10-02T15:24:50.4954376Z patching file arch/x86/crypto/twofish-avx-x86_64-asm_64.S
2025-10-02T15:24:50.4955906Z patching file arch/x86/crypto/twofish-i586-asm_32.S
2025-10-02T15:24:50.4956986Z patching file arch/x86/crypto/twofish-x86_64-asm_64-3way.S
2025-10-02T15:24:50.4958052Z patching file arch/x86/crypto/twofish-x86_64-asm_64.S
2025-10-02T15:24:50.4958975Z patching file arch/x86/entry/Makefile
2025-10-02T15:24:50.4960042Z patching file arch/x86/entry/calling.h
2025-10-02T15:24:50.4961801Z patching file arch/x86/entry/common.c
2025-10-02T15:24:50.4962743Z patching file arch/x86/entry/entry.S
2025-10-02T15:24:50.4964453Z patching file arch/x86/entry/entry_32.S
2025-10-02T15:24:50.4966758Z patching file arch/x86/entry/entry_64.S
2025-10-02T15:24:50.4969830Z patching file arch/x86/entry/entry_64_compat.S
2025-10-02T15:24:50.4971498Z patching file arch/x86/entry/syscalls/syscall_32.tbl
2025-10-02T15:24:50.4972282Z patching file arch/x86/entry/thunk_32.S
2025-10-02T15:24:50.4973108Z patching file arch/x86/entry/thunk_64.S
2025-10-02T15:24:50.4974088Z patching file arch/x86/entry/vdso/Makefile
2025-10-02T15:24:50.4975130Z patching file arch/x86/entry/vdso/vdso32/system_call.S
2025-10-02T15:24:50.4976011Z patching file arch/x86/entry/vdso/vma.c
2025-10-02T15:24:50.4977223Z patching file arch/x86/entry/vsyscall/vsyscall_64.c
2025-10-02T15:24:50.4978487Z patching file arch/x86/entry/vsyscall/vsyscall_emu_64.S
2025-10-02T15:24:50.4979691Z patching file arch/x86/events/amd/core.c
2025-10-02T15:24:50.4981640Z patching file arch/x86/events/amd/ibs.c
2025-10-02T15:24:50.4983790Z patching file arch/x86/events/amd/iommu.c
2025-10-02T15:24:50.4984957Z patching file arch/x86/events/amd/power.c
2025-10-02T15:24:50.4985953Z patching file arch/x86/events/amd/uncore.c
2025-10-02T15:24:50.4988002Z patching file arch/x86/events/core.c
2025-10-02T15:24:50.4992463Z patching file arch/x86/events/intel/core.c
2025-10-02T15:24:50.4996812Z patching file arch/x86/events/intel/ds.c
2025-10-02T15:24:50.4999783Z patching file arch/x86/events/intel/lbr.c
2025-10-02T15:24:50.5002330Z patching file arch/x86/events/intel/pt.c
2025-10-02T15:24:50.5004748Z patching file arch/x86/events/intel/pt.h
2025-10-02T15:24:50.5005414Z patching file arch/x86/events/intel/uncore.h
2025-10-02T15:24:50.5006900Z patching file arch/x86/events/intel/uncore_snb.c
2025-10-02T15:24:50.5010038Z patching file arch/x86/events/intel/uncore_snbep.c
2025-10-02T15:24:50.5014015Z patching file arch/x86/events/msr.c
2025-10-02T15:24:50.5015130Z patching file arch/x86/events/perf_event.h
2025-10-02T15:24:50.5016881Z patching file arch/x86/events/zhaoxin/core.c
2025-10-02T15:24:50.5018087Z patching file arch/x86/hyperv/hv_init.c
2025-10-02T15:24:50.5019442Z patching file arch/x86/hyperv/mmu.c
2025-10-02T15:24:50.5020867Z patching file arch/x86/include/asm/GEN-for-each-reg.h
2025-10-02T15:24:50.5021769Z patching file arch/x86/include/asm/acenv.h
2025-10-02T15:24:50.5022783Z patching file arch/x86/include/asm/alternative-asm.h
2025-10-02T15:24:50.5024446Z patching file arch/x86/include/asm/alternative.h
2025-10-02T15:24:50.5026448Z patching file arch/x86/include/asm/amd_nb.h
2025-10-02T15:24:50.5027311Z patching file arch/x86/include/asm/apic.h
2025-10-02T15:24:50.5029048Z patching file arch/x86/include/asm/asm-prototypes.h
2025-10-02T15:24:50.5030060Z patching file arch/x86/include/asm/asm.h
2025-10-02T15:24:50.5031233Z patching file arch/x86/include/asm/boot.h
2025-10-02T15:24:50.5032236Z patching file arch/x86/include/asm/bugs.h
2025-10-02T15:24:50.5033189Z patching file arch/x86/include/asm/cacheinfo.h
2025-10-02T15:24:50.5034148Z patching file arch/x86/include/asm/compat.h
2025-10-02T15:24:50.5035241Z patching file arch/x86/include/asm/cpu.h
2025-10-02T15:24:50.5036284Z patching file arch/x86/include/asm/cpu_device_id.h
2025-10-02T15:24:50.5038130Z patching file arch/x86/include/asm/cpu_entry_area.h
2025-10-02T15:24:50.5039004Z patching file arch/x86/include/asm/cpufeature.h
2025-10-02T15:24:50.5041024Z patching file arch/x86/include/asm/cpufeatures.h
2025-10-02T15:24:50.5043116Z patching file arch/x86/include/asm/debugreg.h
2025-10-02T15:24:50.5044057Z patching file arch/x86/include/asm/disabled-features.h
2025-10-02T15:24:50.5045153Z patching file arch/x86/include/asm/efi.h
2025-10-02T15:24:50.5046392Z patching file arch/x86/include/asm/entry-common.h
2025-10-02T15:24:50.5047303Z patching file arch/x86/include/asm/fpu/api.h
2025-10-02T15:24:50.5048316Z patching file arch/x86/include/asm/fpu/internal.h
2025-10-02T15:24:50.5050629Z patching file arch/x86/include/asm/hyperv-tlfs.h
2025-10-02T15:24:50.5051667Z patching file arch/x86/include/asm/i8259.h
2025-10-02T15:24:50.5052786Z patching file arch/x86/include/asm/idtentry.h
2025-10-02T15:24:50.5054706Z patching file arch/x86/include/asm/inat.h
2025-10-02T15:24:50.5055558Z patching file arch/x86/include/asm/insn-eval.h
2025-10-02T15:24:50.5056524Z patching file arch/x86/include/asm/insn.h
2025-10-02T15:24:50.5065457Z patching file arch/x86/include/asm/intel-family.h
2025-10-02T15:24:50.5065993Z patching file arch/x86/include/asm/iommu.h
2025-10-02T15:24:50.5066240Z patching file arch/x86/include/asm/irqflags.h
2025-10-02T15:24:50.5066473Z patching file arch/x86/include/asm/kexec.h
2025-10-02T15:24:50.5066709Z patching file arch/x86/include/asm/kprobes.h
2025-10-02T15:24:50.5066947Z patching file arch/x86/include/asm/kvm_host.h
2025-10-02T15:24:50.5067330Z patching file arch/x86/include/asm/kvm_page_track.h
2025-10-02T15:24:50.5067710Z patching file arch/x86/include/asm/kvm_para.h
2025-10-02T15:24:50.5068484Z patching file arch/x86/include/asm/kvmclock.h
2025-10-02T15:24:50.5069372Z patching file arch/x86/include/asm/linkage.h
2025-10-02T15:24:50.5070475Z patching file arch/x86/include/asm/local64.h
2025-10-02T15:24:50.5071528Z patching file arch/x86/include/asm/mce.h
2025-10-02T15:24:50.5072636Z patching file arch/x86/include/asm/mem_encrypt.h
2025-10-02T15:24:50.5073596Z patching file arch/x86/include/asm/microcode.h
2025-10-02T15:24:50.5074830Z patching file arch/x86/include/asm/microcode_amd.h
2025-10-02T15:24:50.5075487Z patching file arch/x86/include/asm/mshyperv.h
2025-10-02T15:24:50.5076909Z patching file arch/x86/include/asm/msr-index.h
2025-10-02T15:24:50.5078766Z patching file arch/x86/include/asm/msr.h
2025-10-02T15:24:50.5079902Z patching file arch/x86/include/asm/mwait.h
2025-10-02T15:24:50.5081238Z patching file arch/x86/include/asm/nmi.h
2025-10-02T15:24:50.5082046Z patching file arch/x86/include/asm/nospec-branch.h
2025-10-02T15:24:50.5084180Z patching file arch/x86/include/asm/numa.h
2025-10-02T15:24:50.5084898Z patching file arch/x86/include/asm/page.h
2025-10-02T15:24:50.5085889Z patching file arch/x86/include/asm/page_64_types.h
2025-10-02T15:24:50.5086915Z patching file arch/x86/include/asm/paravirt.h
2025-10-02T15:24:50.5088471Z patching file arch/x86/include/asm/paravirt_types.h
2025-10-02T15:24:50.5090629Z patching file arch/x86/include/asm/perf_event.h
2025-10-02T15:24:50.5092113Z patching file arch/x86/include/asm/pgtable.h
2025-10-02T15:24:50.5093669Z patching file arch/x86/include/asm/pgtable_64.h
2025-10-02T15:24:50.5094664Z patching file arch/x86/include/asm/pgtable_types.h
2025-10-02T15:24:50.5095693Z patching file arch/x86/include/asm/preempt.h
2025-10-02T15:24:50.5096766Z patching file arch/x86/include/asm/processor.h
2025-10-02T15:24:50.5098477Z patching file arch/x86/include/asm/proto.h
2025-10-02T15:24:50.5099343Z patching file arch/x86/include/asm/ptrace.h
2025-10-02T15:24:50.5100655Z patching file arch/x86/include/asm/qspinlock_paravirt.h
2025-10-02T15:24:50.5101395Z patching file arch/x86/include/asm/realmode.h
2025-10-02T15:24:50.5102189Z patching file arch/x86/include/asm/reboot.h
2025-10-02T15:24:50.5103813Z patching file arch/x86/include/asm/required-features.h
2025-10-02T15:24:50.5104468Z patching file arch/x86/include/asm/resctrl.h
2025-10-02T15:24:50.5105559Z patching file arch/x86/include/asm/segment.h
2025-10-02T15:24:50.5106634Z patching file arch/x86/include/asm/setup.h
2025-10-02T15:24:50.5107633Z patching file arch/x86/include/asm/smap.h
2025-10-02T15:24:50.5108496Z patching file arch/x86/include/asm/smp.h
2025-10-02T15:24:50.5109659Z patching file arch/x86/include/asm/special_insns.h
2025-10-02T15:24:50.5110676Z patching file arch/x86/include/asm/stackprotector.h
2025-10-02T15:24:50.5111692Z patching file arch/x86/include/asm/static_call.h
2025-10-02T15:24:50.5112566Z patching file arch/x86/include/asm/suspend_32.h
2025-10-02T15:24:50.5113321Z patching file arch/x86/include/asm/suspend_64.h
2025-10-02T15:24:50.5114291Z patching file arch/x86/include/asm/svm.h
2025-10-02T15:24:50.5115187Z patching file arch/x86/include/asm/sync_core.h
2025-10-02T15:24:50.5116062Z patching file arch/x86/include/asm/syscall.h
2025-10-02T15:24:50.5116928Z patching file arch/x86/include/asm/syscall_wrapper.h
2025-10-02T15:24:50.5117970Z patching file arch/x86/include/asm/text-patching.h
2025-10-02T15:24:50.5118982Z patching file arch/x86/include/asm/thread_info.h
2025-10-02T15:24:50.5120159Z patching file arch/x86/include/asm/timex.h
2025-10-02T15:24:50.5121111Z patching file arch/x86/include/asm/tlbflush.h
2025-10-02T15:24:50.5121978Z patching file arch/x86/include/asm/topology.h
2025-10-02T15:24:50.5122903Z patching file arch/x86/include/asm/tsc.h
2025-10-02T15:24:50.5123877Z patching file arch/x86/include/asm/uaccess.h
2025-10-02T15:24:50.5125640Z patching file arch/x86/include/asm/unwind_hints.h
2025-10-02T15:24:50.5126357Z patching file arch/x86/include/asm/virtext.h
2025-10-02T15:24:50.5127328Z patching file arch/x86/include/asm/vsyscall.h
2025-10-02T15:24:50.5128248Z patching file arch/x86/include/asm/xen/hypercall.h
2025-10-02T15:24:50.5129825Z patching file arch/x86/include/uapi/asm/hwcap2.h
2025-10-02T15:24:50.5130648Z patching file arch/x86/kernel/Makefile
2025-10-02T15:24:50.5132184Z patching file arch/x86/kernel/acpi/boot.c
2025-10-02T15:24:50.5133844Z patching file arch/x86/kernel/acpi/cstate.c
2025-10-02T15:24:50.5134486Z patching file arch/x86/kernel/acpi/wakeup_32.S
2025-10-02T15:24:50.5135862Z patching file arch/x86/kernel/alternative.c
2025-10-02T15:24:50.5139707Z patching file arch/x86/kernel/amd_nb.c
2025-10-02T15:24:50.5141345Z patching file arch/x86/kernel/apic/apic.c
2025-10-02T15:24:50.5144234Z patching file arch/x86/kernel/apic/io_apic.c
2025-10-02T15:24:50.5146458Z patching file arch/x86/kernel/apic/msi.c
2025-10-02T15:24:50.5147887Z patching file arch/x86/kernel/apic/vector.c
2025-10-02T15:24:50.5149349Z patching file arch/x86/kernel/apic/x2apic_cluster.c
2025-10-02T15:24:50.5150132Z patching file arch/x86/kernel/apic/x2apic_phys.c
2025-10-02T15:24:50.5151731Z patching file arch/x86/kernel/apic/x2apic_uv_x.c
2025-10-02T15:24:50.5153874Z patching file arch/x86/kernel/apm_32.c
2025-10-02T15:24:50.5155793Z patching file arch/x86/kernel/asm-offsets_32.c
2025-10-02T15:24:50.5156475Z patching file arch/x86/kernel/asm-offsets_64.c
2025-10-02T15:24:50.5157381Z patching file arch/x86/kernel/cc_platform.c
2025-10-02T15:24:50.5159022Z patching file arch/x86/kernel/cpu/amd.c
2025-10-02T15:24:50.5162124Z patching file arch/x86/kernel/cpu/bugs.c
2025-10-02T15:24:50.5168708Z patching file arch/x86/kernel/cpu/cacheinfo.c
2025-10-02T15:24:50.5170738Z patching file arch/x86/kernel/cpu/common.c
2025-10-02T15:24:50.5174320Z patching file arch/x86/kernel/cpu/cpu.h
2025-10-02T15:24:50.5174981Z patching file arch/x86/kernel/cpu/cpuid-deps.c
2025-10-02T15:24:50.5176053Z patching file arch/x86/kernel/cpu/cyrix.c
2025-10-02T15:24:50.5177116Z patching file arch/x86/kernel/cpu/feat_ctl.c
2025-10-02T15:24:50.5177969Z patching file arch/x86/kernel/cpu/hygon.c
2025-10-02T15:24:50.5179802Z patching file arch/x86/kernel/cpu/intel.c
2025-10-02T15:24:50.5181899Z patching file arch/x86/kernel/cpu/match.c
2025-10-02T15:24:50.5182934Z patching file arch/x86/kernel/cpu/mce/amd.c
2025-10-02T15:24:50.5185576Z patching file arch/x86/kernel/cpu/mce/core.c
2025-10-02T15:24:50.5188733Z patching file arch/x86/kernel/cpu/mce/inject.c
2025-10-02T15:24:50.5189870Z patching file arch/x86/kernel/cpu/mce/intel.c
2025-10-02T15:24:50.5190990Z patching file arch/x86/kernel/cpu/mce/internal.h
2025-10-02T15:24:50.5192020Z patching file arch/x86/kernel/cpu/microcode/amd.c
2025-10-02T15:24:50.5193781Z patching file arch/x86/kernel/cpu/microcode/core.c
2025-10-02T15:24:50.5195560Z patching file arch/x86/kernel/cpu/microcode/intel.c
2025-10-02T15:24:50.5196668Z patching file arch/x86/kernel/cpu/mshyperv.c
2025-10-02T15:24:50.5198281Z patching file arch/x86/kernel/cpu/mtrr/generic.c
2025-10-02T15:24:50.5199777Z patching file arch/x86/kernel/cpu/mtrr/mtrr.c
2025-10-02T15:24:50.5201207Z patching file arch/x86/kernel/cpu/perfctr-watchdog.c
2025-10-02T15:24:50.5202224Z patching file arch/x86/kernel/cpu/resctrl/core.c
2025-10-02T15:24:50.5203693Z patching file arch/x86/kernel/cpu/resctrl/monitor.c
2025-10-02T15:24:50.5205285Z patching file arch/x86/kernel/cpu/resctrl/pseudo_lock.c
2025-10-02T15:24:50.5207609Z patching file arch/x86/kernel/cpu/resctrl/rdtgroup.c
2025-10-02T15:24:50.5210309Z patching file arch/x86/kernel/cpu/scattered.c
2025-10-02T15:24:50.5210906Z patching file arch/x86/kernel/cpu/topology.c
2025-10-02T15:24:50.5212216Z patching file arch/x86/kernel/cpu/tsx.c
2025-10-02T15:24:50.5213113Z patching file arch/x86/kernel/crash.c
2025-10-02T15:24:50.5214357Z patching file arch/x86/kernel/devicetree.c
2025-10-02T15:24:50.5215256Z patching file arch/x86/kernel/doublefault_32.c
2025-10-02T15:24:50.5216154Z patching file arch/x86/kernel/dumpstack.c
2025-10-02T15:24:50.5217800Z patching file arch/x86/kernel/e820.c
2025-10-02T15:24:50.5219774Z patching file arch/x86/kernel/early-quirks.c
2025-10-02T15:24:50.5221273Z patching file arch/x86/kernel/fpu/core.c
2025-10-02T15:24:50.5222368Z patching file arch/x86/kernel/fpu/init.c
2025-10-02T15:24:50.5223347Z patching file arch/x86/kernel/fpu/regset.c
2025-10-02T15:24:50.5224319Z patching file arch/x86/kernel/fpu/signal.c
2025-10-02T15:24:50.5227326Z patching file arch/x86/kernel/fpu/xstate.c
2025-10-02T15:24:50.5229429Z patching file arch/x86/kernel/ftrace.c
2025-10-02T15:24:50.5230973Z patching file arch/x86/kernel/ftrace_32.S
2025-10-02T15:24:50.5232039Z patching file arch/x86/kernel/ftrace_64.S
2025-10-02T15:24:50.5233069Z patching file arch/x86/kernel/head64.c
2025-10-02T15:24:50.5234461Z patching file arch/x86/kernel/head_32.S
2025-10-02T15:24:50.5235767Z patching file arch/x86/kernel/head_64.S
2025-10-02T15:24:50.5237326Z patching file arch/x86/kernel/hpet.c
2025-10-02T15:24:50.5239064Z patching file arch/x86/kernel/hw_breakpoint.c
2025-10-02T15:24:50.5240554Z patching file arch/x86/kernel/i8253.c
2025-10-02T15:24:50.5241406Z patching file arch/x86/kernel/i8259.c
2025-10-02T15:24:50.5242753Z patching file arch/x86/kernel/ima_arch.c
2025-10-02T15:24:50.5243495Z patching file arch/x86/kernel/ioport.c
2025-10-02T15:24:50.5244583Z patching file arch/x86/kernel/irq.c
2025-10-02T15:24:50.5245550Z patching file arch/x86/kernel/irqflags.S
2025-10-02T15:24:50.5246339Z patching file arch/x86/kernel/irqinit.c
2025-10-02T15:24:50.5247269Z patching file arch/x86/kernel/kdebugfs.c
2025-10-02T15:24:50.5248609Z patching file arch/x86/kernel/kprobes/core.c
2025-10-02T15:24:50.5251829Z patching file arch/x86/kernel/kprobes/opt.c
2025-10-02T15:24:50.5253145Z patching file arch/x86/kernel/ksysfs.c
2025-10-02T15:24:50.5254571Z patching file arch/x86/kernel/kvm.c
2025-10-02T15:24:50.5256460Z patching file arch/x86/kernel/kvmclock.c
2025-10-02T15:24:50.5257939Z patching file arch/x86/kernel/machine_kexec_64.c
2025-10-02T15:24:50.5258970Z patching file arch/x86/kernel/module.c
2025-10-02T15:24:50.5260241Z patching file arch/x86/kernel/msr.c
2025-10-02T15:24:50.5261310Z patching file arch/x86/kernel/nmi.c
2025-10-02T15:24:50.5262860Z patching file arch/x86/kernel/paravirt.c
2025-10-02T15:24:50.5263993Z patching file arch/x86/kernel/paravirt_patch.c
2025-10-02T15:24:50.5264810Z patching file arch/x86/kernel/pmem.c
2025-10-02T15:24:50.5265894Z patching file arch/x86/kernel/process.c
2025-10-02T15:24:50.5267681Z patching file arch/x86/kernel/process_32.c
2025-10-02T15:24:50.5268702Z patching file arch/x86/kernel/process_64.c
2025-10-02T15:24:50.5270462Z patching file arch/x86/kernel/reboot.c
2025-10-02T15:24:50.5272297Z patching file arch/x86/kernel/relocate_kernel_32.S
2025-10-02T15:24:50.5273319Z patching file arch/x86/kernel/relocate_kernel_64.S
2025-10-02T15:24:50.5274726Z patching file arch/x86/kernel/setup.c
2025-10-02T15:24:50.5276305Z patching file arch/x86/kernel/setup_percpu.c
2025-10-02T15:24:50.5278162Z patching file arch/x86/kernel/sev-es-shared.c
2025-10-02T15:24:50.5280144Z patching file arch/x86/kernel/sev-es.c
2025-10-02T15:24:50.5282881Z patching file arch/x86/kernel/sev_verify_cbit.S
2025-10-02T15:24:50.5283730Z patching file arch/x86/kernel/signal.c
2025-10-02T15:24:50.5285280Z patching file arch/x86/kernel/smp.c
2025-10-02T15:24:50.5286773Z patching file arch/x86/kernel/smpboot.c
2025-10-02T15:24:50.5289114Z patching file arch/x86/kernel/static_call.c
2025-10-02T15:24:50.5290333Z patching file arch/x86/kernel/step.c
2025-10-02T15:24:50.5291329Z patching file arch/x86/kernel/sys_x86_64.c
2025-10-02T15:24:50.5292282Z patching file arch/x86/kernel/sysfb_efi.c
2025-10-02T15:24:50.5293324Z patching file arch/x86/kernel/tboot.c
2025-10-02T15:24:50.5294376Z patching file arch/x86/kernel/time.c
2025-10-02T15:24:50.5295233Z patching file arch/x86/kernel/tls.c
2025-10-02T15:24:50.5296640Z patching file arch/x86/kernel/traps.c
2025-10-02T15:24:50.5298688Z patching file arch/x86/kernel/tsc.c
2025-10-02T15:24:50.5300644Z patching file arch/x86/kernel/tsc_sync.c
2025-10-02T15:24:50.5301955Z patching file arch/x86/kernel/umip.c
2025-10-02T15:24:50.5303010Z patching file arch/x86/kernel/unwind_orc.c
2025-10-02T15:24:50.5304612Z patching file arch/x86/kernel/uprobes.c
2025-10-02T15:24:50.5305954Z patching file arch/x86/kernel/verify_cpu.S
2025-10-02T15:24:50.5306704Z patching file arch/x86/kernel/vmlinux.lds.S
2025-10-02T15:24:50.5308169Z patching file arch/x86/kernel/x86_init.c
2025-10-02T15:24:50.5309169Z patching file arch/x86/kvm/cpuid.c
2025-10-02T15:24:50.5311223Z patching file arch/x86/kvm/cpuid.h
2025-10-02T15:24:50.5314277Z patching file arch/x86/kvm/emulate.c
2025-10-02T15:24:50.5319099Z patching file arch/x86/kvm/hyperv.c
2025-10-02T15:24:50.5321229Z patching file arch/x86/kvm/ioapic.c
2025-10-02T15:24:50.5322333Z patching file arch/x86/kvm/kvm_emulate.h
2025-10-02T15:24:50.5324157Z patching file arch/x86/kvm/lapic.c
2025-10-02T15:24:50.5326461Z patching file arch/x86/kvm/mmu.h
2025-10-02T15:24:50.5328898Z patching file arch/x86/kvm/mmu/mmu.c
2025-10-02T15:24:50.5333679Z patching file arch/x86/kvm/mmu/page_track.c
2025-10-02T15:24:50.5334403Z patching file arch/x86/kvm/mmu/paging.h
2025-10-02T15:24:50.5335790Z patching file arch/x86/kvm/mmu/paging_tmpl.h
2025-10-02T15:24:50.5337488Z patching file arch/x86/kvm/mmu/spte.h
2025-10-02T15:24:50.5338241Z patching file arch/x86/kvm/mmu/tdp_iter.c
2025-10-02T15:24:50.5339287Z patching file arch/x86/kvm/mmu/tdp_iter.h
2025-10-02T15:24:50.5340684Z patching file arch/x86/kvm/mmu/tdp_mmu.c
2025-10-02T15:24:50.5343066Z patching file arch/x86/kvm/mmu/tdp_mmu.h
2025-10-02T15:24:50.5344019Z patching file arch/x86/kvm/pmu.c
2025-10-02T15:24:50.5345147Z patching file arch/x86/kvm/pmu.h
2025-10-02T15:24:50.5346257Z patching file arch/x86/kvm/svm/avic.c
2025-10-02T15:24:50.5348105Z patching file arch/x86/kvm/svm/nested.c
2025-10-02T15:24:50.5350234Z patching file arch/x86/kvm/svm/pmu.c
2025-10-02T15:24:50.5351635Z patching file arch/x86/kvm/svm/sev.c
2025-10-02T15:24:50.5354277Z patching file arch/x86/kvm/svm/svm.c
2025-10-02T15:24:50.5357891Z patching file arch/x86/kvm/svm/svm.h
2025-10-02T15:24:50.5358830Z patching file arch/x86/kvm/svm/vmenter.S
2025-10-02T15:24:50.5360029Z patching file arch/x86/kvm/trace.h
2025-10-02T15:24:50.5361812Z patching file arch/x86/kvm/vmx/evmcs.c
2025-10-02T15:24:50.5362754Z patching file arch/x86/kvm/vmx/evmcs.h
2025-10-02T15:24:50.5365613Z patching file arch/x86/kvm/vmx/nested.c
2025-10-02T15:24:50.5372117Z patching file arch/x86/kvm/vmx/pmu_intel.c
2025-10-02T15:24:50.5373383Z patching file arch/x86/kvm/vmx/posted_intr.c
2025-10-02T15:24:50.5375439Z patching file arch/x86/kvm/vmx/run_flags.h
2025-10-02T15:24:50.5376131Z patching file arch/x86/kvm/vmx/vmcs.h
2025-10-02T15:24:50.5377039Z patching file arch/x86/kvm/vmx/vmenter.S
2025-10-02T15:24:50.5380932Z patching file arch/x86/kvm/vmx/vmx.c
2025-10-02T15:24:50.5388107Z patching file arch/x86/kvm/vmx/vmx.h
2025-10-02T15:24:50.5392728Z patching file arch/x86/kvm/x86.c
2025-10-02T15:24:50.5401596Z patching file arch/x86/kvm/x86.h
2025-10-02T15:24:50.5402584Z patching file arch/x86/lib/atomic64_386_32.S
2025-10-02T15:24:50.5403802Z patching file arch/x86/lib/atomic64_cx8_32.S
2025-10-02T15:24:50.5404755Z patching file arch/x86/lib/checksum_32.S
2025-10-02T15:24:50.5405710Z patching file arch/x86/lib/clear_page_64.S
2025-10-02T15:24:50.5406561Z patching file arch/x86/lib/cmpxchg16b_emu.S
2025-10-02T15:24:50.5407260Z patching file arch/x86/lib/cmpxchg8b_emu.S
2025-10-02T15:24:50.5408035Z patching file arch/x86/lib/copy_mc.c
2025-10-02T15:24:50.5408869Z patching file arch/x86/lib/copy_mc_64.S
2025-10-02T15:24:50.5409933Z patching file arch/x86/lib/copy_page_64.S
2025-10-02T15:24:50.5410837Z patching file arch/x86/lib/copy_user_64.S
2025-10-02T15:24:50.5411926Z patching file arch/x86/lib/csum-copy_64.S
2025-10-02T15:24:50.5412735Z patching file arch/x86/lib/delay.c
2025-10-02T15:24:50.5413576Z patching file arch/x86/lib/error-inject.c
2025-10-02T15:24:50.5414308Z patching file arch/x86/lib/getuser.S
2025-10-02T15:24:50.5415403Z patching file arch/x86/lib/hweight.S
2025-10-02T15:24:50.5416141Z patching file arch/x86/lib/inat.c
2025-10-02T15:24:50.5417365Z patching file arch/x86/lib/insn-eval.c
2025-10-02T15:24:50.5419411Z patching file arch/x86/lib/insn.c
2025-10-02T15:24:50.5421478Z patching file arch/x86/lib/iomap_copy_64.S
2025-10-02T15:24:50.5422007Z patching file arch/x86/lib/memcpy_64.S
2025-10-02T15:24:50.5422946Z patching file arch/x86/lib/memmove_64.S
2025-10-02T15:24:50.5423684Z patching file arch/x86/lib/memset_64.S
2025-10-02T15:24:50.5424466Z patching file arch/x86/lib/misc.c
2025-10-02T15:24:50.5425218Z patching file arch/x86/lib/mmx_32.c
2025-10-02T15:24:50.5426451Z patching file arch/x86/lib/msr-reg.S
2025-10-02T15:24:50.5426958Z patching file arch/x86/lib/msr-smp.c
2025-10-02T15:24:50.5427882Z patching file arch/x86/lib/putuser.S
2025-10-02T15:24:50.5428598Z patching file arch/x86/lib/retpoline.S
2025-10-02T15:24:50.5430373Z patching file arch/x86/lib/usercopy_64.c
2025-10-02T15:24:50.5431946Z patching file arch/x86/lib/x86-opcode-map.txt
2025-10-02T15:24:50.5433440Z patching file arch/x86/math-emu/div_Xsig.S
2025-10-02T15:24:50.5434361Z patching file arch/x86/math-emu/div_small.S
2025-10-02T15:24:50.5435188Z patching file arch/x86/math-emu/mul_Xsig.S
2025-10-02T15:24:50.5436156Z patching file arch/x86/math-emu/polynom_Xsig.S
2025-10-02T15:24:50.5436957Z patching file arch/x86/math-emu/reg_norm.S
2025-10-02T15:24:50.5437957Z patching file arch/x86/math-emu/reg_round.S
2025-10-02T15:24:50.5439106Z patching file arch/x86/math-emu/reg_u_add.S
2025-10-02T15:24:50.5440133Z patching file arch/x86/math-emu/reg_u_div.S
2025-10-02T15:24:50.5441428Z patching file arch/x86/math-emu/reg_u_mul.S
2025-10-02T15:24:50.5442300Z patching file arch/x86/math-emu/reg_u_sub.S
2025-10-02T15:24:50.5443236Z patching file arch/x86/math-emu/round_Xsig.S
2025-10-02T15:24:50.5444094Z patching file arch/x86/math-emu/shr_Xsig.S
2025-10-02T15:24:50.5444980Z patching file arch/x86/math-emu/wm_shrx.S
2025-10-02T15:24:50.5446157Z patching file arch/x86/mm/cpu_entry_area.c
2025-10-02T15:24:50.5447078Z patching file arch/x86/mm/extable.c
2025-10-02T15:24:50.5448667Z patching file arch/x86/mm/fault.c
2025-10-02T15:24:50.5450837Z patching file arch/x86/mm/ident_map.c
2025-10-02T15:24:50.5451736Z patching file arch/x86/mm/init.c
2025-10-02T15:24:50.5454071Z patching file arch/x86/mm/init_64.c
2025-10-02T15:24:50.5456146Z patching file arch/x86/mm/ioremap.c
2025-10-02T15:24:50.5457906Z patching file arch/x86/mm/kaslr.c
2025-10-02T15:24:50.5458531Z patching file arch/x86/mm/maccess.c
2025-10-02T15:24:50.5459747Z patching file arch/x86/mm/mem_encrypt.c
2025-10-02T15:24:50.5460931Z patching file arch/x86/mm/mem_encrypt_boot.S
2025-10-02T15:24:50.5462004Z patching file arch/x86/mm/mem_encrypt_identity.c
2025-10-02T15:24:50.5463825Z patching file arch/x86/mm/numa.c
2025-10-02T15:24:50.5465514Z patching file arch/x86/mm/pat/cpa-test.c
2025-10-02T15:24:50.5466459Z patching file arch/x86/mm/pat/memtype.c
2025-10-02T15:24:50.5469151Z patching file arch/x86/mm/pat/set_memory.c
2025-10-02T15:24:50.5471561Z patching file arch/x86/mm/pgtable.c
2025-10-02T15:24:50.5472746Z patching file arch/x86/mm/pkeys.c
2025-10-02T15:24:50.5473865Z patching file arch/x86/mm/pti.c
2025-10-02T15:24:50.5476357Z patching file arch/x86/net/bpf_jit_comp.c
2025-10-02T15:24:50.5480114Z patching file arch/x86/net/bpf_jit_comp32.c
2025-10-02T15:24:50.5482772Z patching file arch/x86/pci/fixup.c
2025-10-02T15:24:50.5485071Z patching file arch/x86/pci/init.c
2025-10-02T15:24:50.5485656Z patching file arch/x86/pci/intel_mid_pci.c
2025-10-02T15:24:50.5486915Z patching file arch/x86/pci/xen.c
2025-10-02T15:24:50.5488452Z patching file arch/x86/platform/efi/Makefile
2025-10-02T15:24:50.5489176Z patching file arch/x86/platform/efi/efi.c
2025-10-02T15:24:50.5491186Z patching file arch/x86/platform/efi/efi_64.c
2025-10-02T15:24:50.5492300Z patching file arch/x86/platform/efi/efi_stub_32.S
2025-10-02T15:24:50.5492870Z patching file arch/x86/platform/efi/efi_stub_64.S
2025-10-02T15:24:50.5493696Z patching file arch/x86/platform/efi/efi_thunk_64.S
2025-10-02T15:24:50.5494518Z patching file arch/x86/platform/efi/memmap.c
2025-10-02T15:24:50.5496551Z patching file arch/x86/platform/efi/quirks.c
2025-10-02T15:24:50.5497731Z patching file arch/x86/platform/intel/iosf_mbi.c
2025-10-02T15:24:50.5499349Z patching file arch/x86/platform/olpc/olpc-xo1-sci.c
2025-10-02T15:24:50.5500542Z patching file arch/x86/platform/olpc/olpc.c
2025-10-02T15:24:50.5501543Z patching file arch/x86/platform/olpc/xo1-wakeup.S
2025-10-02T15:24:50.5502490Z patching file arch/x86/platform/pvh/head.S
2025-10-02T15:24:50.5503676Z patching file arch/x86/power/cpu.c
2025-10-02T15:24:50.5505389Z patching file arch/x86/power/hibernate.c
2025-10-02T15:24:50.5506643Z patching file arch/x86/power/hibernate_asm_32.S
2025-10-02T15:24:50.5507330Z patching file arch/x86/power/hibernate_asm_64.S
2025-10-02T15:24:50.5508254Z patching file arch/x86/purgatory/Makefile
2025-10-02T15:24:50.5509207Z patching file arch/x86/realmode/init.c
2025-10-02T15:24:50.5510531Z patching file arch/x86/tools/chkobjdump.awk
2025-10-02T15:24:50.5511582Z patching file arch/x86/tools/relocs.c
2025-10-02T15:24:50.5513499Z patching file arch/x86/um/Makefile
2025-10-02T15:24:50.5514033Z patching file arch/x86/um/asm/checksum.h
2025-10-02T15:24:50.5514891Z patching file arch/x86/um/checksum_32.S
2025-10-02T15:24:50.5516307Z patching file arch/x86/um/ldt.c
2025-10-02T15:24:50.5517296Z patching file arch/x86/um/os-Linux/mcontext.c
2025-10-02T15:24:50.5517977Z patching file arch/x86/um/setjmp_32.S
2025-10-02T15:24:50.5518821Z patching file arch/x86/um/setjmp_64.S
2025-10-02T15:24:50.5520012Z patching file arch/x86/um/shared/sysdep/syscalls_32.h
2025-10-02T15:24:50.5520621Z patching file arch/x86/um/shared/sysdep/syscalls_64.h
2025-10-02T15:24:50.5521379Z patching file arch/x86/um/syscalls_64.c
2025-10-02T15:24:50.5522360Z patching file arch/x86/um/tls_32.c
2025-10-02T15:24:50.5523509Z patching file arch/x86/um/vdso/Makefile
2025-10-02T15:24:50.5524297Z patching file arch/x86/um/vdso/um_vdso.c
2025-10-02T15:24:50.5525205Z patching file arch/x86/xen/Makefile
2025-10-02T15:24:50.5526060Z patching file arch/x86/xen/enlighten.c
2025-10-02T15:24:50.5527742Z patching file arch/x86/xen/enlighten_hvm.c
2025-10-02T15:24:50.5528935Z patching file arch/x86/xen/enlighten_pv.c
2025-10-02T15:24:50.5531542Z patching file arch/x86/xen/enlighten_pvh.c
2025-10-02T15:24:50.5532642Z patching file arch/x86/xen/mmu_pv.c
2025-10-02T15:24:50.5535573Z patching file arch/x86/xen/p2m.c
2025-10-02T15:24:50.5537241Z patching file arch/x86/xen/pmu.c
2025-10-02T15:24:50.5538267Z patching file arch/x86/xen/pmu.h
2025-10-02T15:24:50.5539325Z patching file arch/x86/xen/setup.c
2025-10-02T15:24:50.5541509Z patching file arch/x86/xen/smp.c
2025-10-02T15:24:50.5542558Z patching file arch/x86/xen/smp_hvm.c
2025-10-02T15:24:50.5543643Z patching file arch/x86/xen/smp_pv.c
2025-10-02T15:24:50.5545291Z patching file arch/x86/xen/spinlock.c
2025-10-02T15:24:50.5546167Z patching file arch/x86/xen/time.c
2025-10-02T15:24:50.5547692Z patching file arch/x86/xen/xen-asm.S
2025-10-02T15:24:50.5549668Z patching file arch/x86/xen/xen-head.S
2025-10-02T15:24:50.5550752Z patching file arch/x86/xen/xen-ops.h
2025-10-02T15:24:50.5551922Z patching file arch/xtensa/Kconfig
2025-10-02T15:24:50.5553192Z patching file arch/xtensa/boot/Makefile
2025-10-02T15:24:50.5554152Z patching file arch/xtensa/boot/dts/xtfpga-flash-128m.dtsi
2025-10-02T15:24:50.5554848Z patching file arch/xtensa/boot/dts/xtfpga-flash-16m.dtsi
2025-10-02T15:24:50.5555673Z patching file arch/xtensa/boot/dts/xtfpga-flash-4m.dtsi
2025-10-02T15:24:50.5556455Z patching file arch/xtensa/boot/lib/zmem.c
2025-10-02T15:24:50.5557366Z patching file arch/xtensa/include/asm/Kbuild
2025-10-02T15:24:50.5558033Z patching file arch/xtensa/include/asm/bugs.h
2025-10-02T15:24:50.5558949Z patching file arch/xtensa/include/asm/core.h
2025-10-02T15:24:50.5559944Z patching file arch/xtensa/include/asm/kmem_layout.h
2025-10-02T15:24:50.5561160Z patching file arch/xtensa/include/asm/processor.h
2025-10-02T15:24:50.5562099Z patching file arch/xtensa/include/asm/thread_info.h
2025-10-02T15:24:50.5563027Z patching file arch/xtensa/include/asm/timex.h
2025-10-02T15:24:50.5563966Z patching file arch/xtensa/kernel/coprocessor.S
2025-10-02T15:24:50.5565716Z patching file arch/xtensa/kernel/entry.S
2025-10-02T15:24:50.5567663Z patching file arch/xtensa/kernel/irq.c
2025-10-02T15:24:50.5568288Z patching file arch/xtensa/kernel/jump_label.c
2025-10-02T15:24:50.5569270Z patching file arch/xtensa/kernel/perf_event.c
2025-10-02T15:24:50.5570589Z patching file arch/xtensa/kernel/process.c
2025-10-02T15:24:50.5571770Z patching file arch/xtensa/kernel/ptrace.c
2025-10-02T15:24:50.5573151Z patching file arch/xtensa/kernel/setup.c
2025-10-02T15:24:50.5574657Z patching file arch/xtensa/kernel/signal.c
2025-10-02T15:24:50.5575769Z patching file arch/xtensa/kernel/smp.c
2025-10-02T15:24:50.5576869Z patching file arch/xtensa/kernel/time.c
2025-10-02T15:24:50.5577886Z patching file arch/xtensa/kernel/traps.c
2025-10-02T15:24:50.5579235Z patching file arch/xtensa/mm/fault.c
2025-10-02T15:24:50.5580225Z patching file arch/xtensa/mm/mmu.c
2025-10-02T15:24:50.5581259Z patching file arch/xtensa/platforms/iss/console.c
2025-10-02T15:24:50.5582326Z patching file arch/xtensa/platforms/iss/network.c
2025-10-02T15:24:50.5584125Z patching file arch/xtensa/platforms/iss/simdisk.c
2025-10-02T15:24:50.5585045Z patching file arch/xtensa/platforms/xtfpga/setup.c
2025-10-02T15:24:50.5586801Z patching file block/bfq-cgroup.c
2025-10-02T15:24:50.5590894Z patching file block/bfq-iosched.c
2025-10-02T15:24:50.5596386Z patching file block/bfq-iosched.h
2025-10-02T15:24:50.5598158Z patching file block/bio-integrity.c
2025-10-02T15:24:50.5599982Z patching file block/bio.c
2025-10-02T15:24:50.5602345Z patching file block/blk-cgroup-rwstat.c
2025-10-02T15:24:50.5603406Z patching file block/blk-cgroup.c
2025-10-02T15:24:50.5606252Z patching file block/blk-core.c
2025-10-02T15:24:50.5608512Z patching file block/blk-crypto-internal.h
2025-10-02T15:24:50.5609641Z patching file block/blk-crypto.c
2025-10-02T15:24:50.5611636Z patching file block/blk-flush.c
2025-10-02T15:24:50.5612842Z patching file block/blk-integrity.c
2025-10-02T15:24:50.5615055Z patching file block/blk-iocost.c
2025-10-02T15:24:50.5618657Z patching file block/blk-iolatency.c
2025-10-02T15:24:50.5621086Z patching file block/blk-map.c
2025-10-02T15:24:50.5622270Z patching file block/blk-merge.c
2025-10-02T15:24:50.5624545Z patching file block/blk-mq-debugfs.c
2025-10-02T15:24:50.5626064Z patching file block/blk-mq-sched.c
2025-10-02T15:24:50.5627837Z patching file block/blk-mq-sysfs.c
2025-10-02T15:24:50.5628855Z patching file block/blk-mq-tag.c
2025-10-02T15:24:50.5630838Z patching file block/blk-mq-tag.h
2025-10-02T15:24:50.5632697Z patching file block/blk-mq.c
2025-10-02T15:24:50.5636562Z patching file block/blk-mq.h
2025-10-02T15:24:50.5637501Z patching file block/blk-pm.c
2025-10-02T15:24:50.5638691Z patching file block/blk-pm.h
2025-10-02T15:24:50.5639792Z patching file block/blk-rq-qos.c
2025-10-02T15:24:50.5640849Z patching file block/blk-rq-qos.h
2025-10-02T15:24:50.5642306Z patching file block/blk-settings.c
2025-10-02T15:24:50.5644310Z patching file block/blk-stat.c
2025-10-02T15:24:50.5645218Z patching file block/blk-sysfs.c
2025-10-02T15:24:50.5647669Z patching file block/blk-throttle.c
2025-10-02T15:24:50.5650545Z patching file block/blk-wbt.c
2025-10-02T15:24:50.5652015Z patching file block/blk-wbt.h
2025-10-02T15:24:50.5652905Z patching file block/blk-zoned.c
2025-10-02T15:24:50.5654662Z patching file block/blk.h
2025-10-02T15:24:50.5655777Z patching file block/bsg.c
2025-10-02T15:24:50.5657278Z patching file block/elevator.c
2025-10-02T15:24:50.5659212Z patching file block/genhd.c
2025-10-02T15:24:50.5661827Z patching file block/ioctl.c
2025-10-02T15:24:50.5663425Z patching file block/ioprio.c
2025-10-02T15:24:50.5664443Z patching file block/keyslot-manager.c
2025-10-02T15:24:50.5666199Z patching file block/kyber-iosched.c
2025-10-02T15:24:50.5667856Z patching file block/mq-deadline.c
2025-10-02T15:24:50.5669302Z patching file block/opal_proto.h
2025-10-02T15:24:50.5670517Z patching file block/partitions/amiga.c
2025-10-02T15:24:50.5672346Z patching file block/partitions/core.c
2025-10-02T15:24:50.5673542Z patching file block/partitions/efi.c
2025-10-02T15:24:50.5675353Z patching file block/partitions/ldm.c
2025-10-02T15:24:50.5676982Z patching file block/partitions/ldm.h
2025-10-02T15:24:50.5677648Z patching file block/partitions/mac.c
2025-10-02T15:24:50.5678781Z patching file block/partitions/msdos.c
2025-10-02T15:24:50.5681050Z patching file block/sed-opal.c
2025-10-02T15:24:50.5683454Z patching file certs/.gitignore
2025-10-02T15:24:50.5683864Z patching file certs/Kconfig
2025-10-02T15:24:50.5685133Z patching file certs/Makefile
2025-10-02T15:24:50.5686040Z patching file certs/blacklist.c
2025-10-02T15:24:50.5687106Z patching file certs/blacklist.h
2025-10-02T15:24:50.5687709Z patching file certs/blacklist_hashes.c
2025-10-02T15:24:50.5688383Z patching file certs/common.c
2025-10-02T15:24:50.5689396Z patching file certs/common.h
2025-10-02T15:24:50.5690567Z patching file certs/revocation_certificates.S
2025-10-02T15:24:50.5691498Z patching file certs/system_keyring.c
2025-10-02T15:24:50.5693570Z patching file crypto/Kconfig
2025-10-02T15:24:50.5695662Z patching file crypto/Makefile
2025-10-02T15:24:50.5696500Z patching file crypto/aead.c
2025-10-02T15:24:50.5697936Z patching file crypto/af_alg.c
2025-10-02T15:24:50.5700031Z patching file crypto/akcipher.c
2025-10-02T15:24:50.5701107Z patching file crypto/algapi.c
2025-10-02T15:24:50.5703124Z patching file crypto/algboss.c
2025-10-02T15:24:50.5704040Z patching file crypto/algif_hash.c
2025-10-02T15:24:50.5705613Z patching file crypto/api.c
2025-10-02T15:24:50.5707012Z patching file crypto/asymmetric_keys/asym_tpm.c
2025-10-02T15:24:50.5708326Z patching file crypto/asymmetric_keys/pkcs7_verify.c
2025-10-02T15:24:50.5709770Z patching file crypto/asymmetric_keys/public_key.c
2025-10-02T15:24:50.5711158Z patching file crypto/asymmetric_keys/verify_pefile.c
2025-10-02T15:24:50.5712521Z patching file crypto/asymmetric_keys/x509_public_key.c
2025-10-02T15:24:50.5713424Z patching file crypto/async_tx/async_xor.c
2025-10-02T15:24:50.5714733Z patching file crypto/authenc.c
2025-10-02T15:24:50.5716021Z patching file crypto/blake2s_generic.c
2025-10-02T15:24:50.5717588Z patching file crypto/cipher.c
2025-10-02T15:24:50.5718509Z patching file crypto/cryptd.c
2025-10-02T15:24:50.5720946Z patching file crypto/crypto_null.c
2025-10-02T15:24:50.5722533Z patching file crypto/drbg.c
2025-10-02T15:24:50.5725266Z patching file crypto/ecdh.c
2025-10-02T15:24:50.5726098Z patching file crypto/ecdh_helper.c
2025-10-02T15:24:50.5727077Z patching file crypto/ecrdsa.c
2025-10-02T15:24:50.5728690Z patching file crypto/essiv.c
2025-10-02T15:24:50.5730506Z patching file crypto/jitterentropy.c
2025-10-02T15:24:50.5732170Z patching file crypto/lrw.c
2025-10-02T15:24:50.5733172Z patching file crypto/memneq.c
2025-10-02T15:24:50.5734981Z patching file crypto/michael_mic.c
2025-10-02T15:24:50.5736152Z patching file crypto/pcrypt.c
2025-10-02T15:24:50.5737790Z patching file crypto/rng.c
2025-10-02T15:24:50.5738888Z patching file crypto/rsa-pkcs1pad.c
2025-10-02T15:24:50.5741003Z patching file crypto/scompress.c
2025-10-02T15:24:50.5741960Z patching file crypto/seqiv.c
2025-10-02T15:24:50.5743070Z patching file crypto/shash.c
2025-10-02T15:24:50.5744832Z patching file crypto/sm2.c
2025-10-02T15:24:50.5746960Z patching file crypto/tcrypt.c
2025-10-02T15:24:50.5769250Z patching file crypto/testmgr.h
2025-10-02T15:24:50.5786881Z patching file crypto/xor.c
2025-10-02T15:24:50.5787695Z patching file crypto/xts.c
2025-10-02T15:24:50.5790142Z patching file drivers/accessibility/speakup/main.c
2025-10-02T15:24:50.5792490Z patching file drivers/accessibility/speakup/speakup_dectlk.c
2025-10-02T15:24:50.5793585Z patching file drivers/accessibility/speakup/spk_ttyio.c
2025-10-02T15:24:50.5794636Z patching file drivers/accessibility/speakup/synth.c
2025-10-02T15:24:50.5795832Z patching file drivers/acpi/Kconfig
2025-10-02T15:24:50.5797109Z patching file drivers/acpi/Makefile
2025-10-02T15:24:50.5798039Z patching file drivers/acpi/ac.c
2025-10-02T15:24:50.5799333Z patching file drivers/acpi/acpi_amba.c
2025-10-02T15:24:50.5808629Z patching file drivers/acpi/acpi_apd.c
2025-10-02T15:24:50.5809730Z patching file drivers/acpi/acpi_configfs.c
2025-10-02T15:24:50.5810637Z patching file drivers/acpi/acpi_extlog.c
2025-10-02T15:24:50.5811376Z patching file drivers/acpi/acpi_lpit.c
2025-10-02T15:24:50.5811972Z patching file drivers/acpi/acpi_lpss.c
2025-10-02T15:24:50.5812634Z patching file drivers/acpi/acpi_pad.c
2025-10-02T15:24:50.5813233Z patching file drivers/acpi/acpi_pnp.c
2025-10-02T15:24:50.5814085Z patching file drivers/acpi/acpi_processor.c
2025-10-02T15:24:50.5814679Z patching file drivers/acpi/acpi_tad.c
2025-10-02T15:24:50.5815357Z patching file drivers/acpi/acpi_video.c
2025-10-02T15:24:50.5815979Z patching file drivers/acpi/acpica/Makefile
2025-10-02T15:24:50.5816663Z patching file drivers/acpi/acpica/acglobal.h
2025-10-02T15:24:50.5817835Z patching file drivers/acpi/acpica/acobject.h
2025-10-02T15:24:50.5819218Z patching file drivers/acpi/acpica/dbconvert.c
2025-10-02T15:24:50.5820993Z patching file drivers/acpi/acpica/dbnames.c
2025-10-02T15:24:50.5823008Z patching file drivers/acpi/acpica/dsmethod.c
2025-10-02T15:24:50.5824690Z patching file drivers/acpi/acpica/dsutils.c
2025-10-02T15:24:50.5826373Z patching file drivers/acpi/acpica/dswstate.c
2025-10-02T15:24:50.5827913Z patching file drivers/acpi/acpica/evhandler.c
2025-10-02T15:24:50.5830818Z patching file drivers/acpi/acpica/evregion.c
2025-10-02T15:24:50.5832569Z patching file drivers/acpi/acpica/exfield.c
2025-10-02T15:24:50.5833971Z patching file drivers/acpi/acpica/exoparg1.c
2025-10-02T15:24:50.5835555Z patching file drivers/acpi/acpica/exprep.c
2025-10-02T15:24:50.5836916Z patching file drivers/acpi/acpica/exregion.c
2025-10-02T15:24:50.5838248Z patching file drivers/acpi/acpica/hwesleep.c
2025-10-02T15:24:50.5839357Z patching file drivers/acpi/acpica/hwsleep.c
2025-10-02T15:24:50.5840900Z patching file drivers/acpi/acpica/hwvalid.c
2025-10-02T15:24:50.5842182Z patching file drivers/acpi/acpica/hwxfsleep.c
2025-10-02T15:24:50.5843492Z patching file drivers/acpi/acpica/nsaccess.c
2025-10-02T15:24:50.5845001Z patching file drivers/acpi/acpica/nsrepair.c
2025-10-02T15:24:50.5846378Z patching file drivers/acpi/acpica/nswalk.c
2025-10-02T15:24:50.5847650Z patching file drivers/acpi/acpica/psargs.c
2025-10-02T15:24:50.5849872Z patching file drivers/acpi/acpica/psobject.c
2025-10-02T15:24:50.5851398Z patching file drivers/acpi/acpica/psopcode.c
2025-10-02T15:24:50.5852926Z patching file drivers/acpi/acpica/utcopy.c
2025-10-02T15:24:50.5854571Z patching file drivers/acpi/acpica/utdelete.c
2025-10-02T15:24:50.5856060Z patching file drivers/acpi/acpica/utprint.c
2025-10-02T15:24:50.5857327Z patching file drivers/acpi/apei/Kconfig
2025-10-02T15:24:50.5858214Z patching file drivers/acpi/apei/bert.c
2025-10-02T15:24:50.5859211Z patching file drivers/acpi/apei/einj.c
2025-10-02T15:24:50.5861208Z patching file drivers/acpi/apei/erst.c
2025-10-02T15:24:50.5862537Z patching file drivers/acpi/apei/ghes.c
2025-10-02T15:24:50.5864643Z patching file drivers/acpi/apei/hest.c
2025-10-02T15:24:50.5865539Z patching file drivers/acpi/arm64/gtdt.c
2025-10-02T15:24:50.5866982Z patching file drivers/acpi/arm64/iort.c
2025-10-02T15:24:50.5869157Z patching file drivers/acpi/battery.c
2025-10-02T15:24:50.5871245Z patching file drivers/acpi/bgrt.c
2025-10-02T15:24:50.5872341Z patching file drivers/acpi/bus.c
2025-10-02T15:24:50.5873786Z patching file drivers/acpi/button.c
2025-10-02T15:24:50.5875171Z patching file drivers/acpi/cppc_acpi.c
2025-10-02T15:24:50.5876923Z patching file drivers/acpi/custom_method.c
2025-10-02T15:24:50.5877939Z patching file drivers/acpi/device_pm.c
2025-10-02T15:24:50.5879962Z patching file drivers/acpi/device_sysfs.c
2025-10-02T15:24:50.5881743Z patching file drivers/acpi/dock.c
2025-10-02T15:24:50.5882883Z patching file drivers/acpi/dptf/dptf_pch_fivr.c
2025-10-02T15:24:50.5884225Z patching file drivers/acpi/ec.c
2025-10-02T15:24:50.5887006Z patching file drivers/acpi/fan.c
2025-10-02T15:24:50.5887988Z patching file drivers/acpi/fan.h
2025-10-02T15:24:50.5889024Z patching file drivers/acpi/hed.c
2025-10-02T15:24:50.5890073Z patching file drivers/acpi/internal.h
2025-10-02T15:24:50.5891270Z patching file drivers/acpi/irq.c
2025-10-02T15:24:50.5893295Z patching file drivers/acpi/nfit/core.c
2025-10-02T15:24:50.5896085Z patching file drivers/acpi/numa/hmat.c
2025-10-02T15:24:50.5897369Z patching file drivers/acpi/osi.c
2025-10-02T15:24:50.5898434Z patching file drivers/acpi/pci_mcfg.c
2025-10-02T15:24:50.5899734Z patching file drivers/acpi/pci_root.c
2025-10-02T15:24:50.5901385Z patching file drivers/acpi/pmic/intel_pmic.c
2025-10-02T15:24:50.5902325Z patching file drivers/acpi/pmic/tps68470_pmic.c
2025-10-02T15:24:50.5903389Z patching file drivers/acpi/power.c
2025-10-02T15:24:50.5905070Z patching file drivers/acpi/pptt.c
2025-10-02T15:24:50.5906530Z patching file drivers/acpi/processor_idle.c
2025-10-02T15:24:50.5908498Z patching file drivers/acpi/processor_pdc.c
2025-10-02T15:24:50.5909636Z patching file drivers/acpi/processor_perflib.c
2025-10-02T15:24:50.5910991Z patching file drivers/acpi/processor_thermal.c
2025-10-02T15:24:50.5912182Z patching file drivers/acpi/property.c
2025-10-02T15:24:50.5914328Z patching file drivers/acpi/resource.c
2025-10-02T15:24:50.5916277Z patching file drivers/acpi/sbs.c
2025-10-02T15:24:50.5918090Z patching file drivers/acpi/scan.c
2025-10-02T15:24:50.5920794Z patching file drivers/acpi/sleep.c
2025-10-02T15:24:50.5922437Z patching file drivers/acpi/sysfs.c
2025-10-02T15:24:50.5923732Z patching file drivers/acpi/tables.c
2025-10-02T15:24:50.5925320Z patching file drivers/acpi/thermal.c
2025-10-02T15:24:50.5927042Z patching file drivers/acpi/video_detect.c
2025-10-02T15:24:50.5928492Z patching file drivers/acpi/x86/utils.c
2025-10-02T15:24:50.5930385Z patching file drivers/amba/bus.c
2025-10-02T15:24:50.5933239Z patching file drivers/android/binder.c
2025-10-02T15:24:50.5939282Z patching file drivers/android/binder_alloc.c
2025-10-02T15:24:50.5941314Z patching file drivers/android/binder_alloc.h
2025-10-02T15:24:50.5942503Z patching file drivers/ata/Kconfig
2025-10-02T15:24:50.5944404Z patching file drivers/ata/ahci.c
2025-10-02T15:24:50.5947457Z patching file drivers/ata/ahci.h
2025-10-02T15:24:50.5949383Z patching file drivers/ata/ahci_brcm.c
2025-10-02T15:24:50.5950957Z patching file drivers/ata/ahci_imx.c
2025-10-02T15:24:50.5952302Z patching file drivers/ata/ahci_sunxi.c
2025-10-02T15:24:50.5953404Z patching file drivers/ata/ahci_xgene.c
2025-10-02T15:24:50.5955453Z patching file drivers/ata/libahci.c
2025-10-02T15:24:50.5957867Z patching file drivers/ata/libahci_platform.c
2025-10-02T15:24:50.5960840Z patching file drivers/ata/libata-core.c
2025-10-02T15:24:50.5965793Z patching file drivers/ata/libata-eh.c
2025-10-02T15:24:50.5968764Z patching file drivers/ata/libata-sata.c
2025-10-02T15:24:50.5971529Z patching file drivers/ata/libata-scsi.c
2025-10-02T15:24:50.5975389Z patching file drivers/ata/libata-sff.c
2025-10-02T15:24:50.5977784Z patching file drivers/ata/libata-transport.c
2025-10-02T15:24:50.5979082Z patching file drivers/ata/libata.h
2025-10-02T15:24:50.5980378Z patching file drivers/ata/pata_arasan_cf.c
2025-10-02T15:24:50.5981694Z patching file drivers/ata/pata_cs5536.c
2025-10-02T15:24:50.5982863Z patching file drivers/ata/pata_ep93xx.c
2025-10-02T15:24:50.5984226Z patching file drivers/ata/pata_ftide010.c
2025-10-02T15:24:50.5985473Z patching file drivers/ata/pata_hpt37x.c
2025-10-02T15:24:50.5986793Z patching file drivers/ata/pata_isapnp.c
2025-10-02T15:24:50.5987648Z patching file drivers/ata/pata_ixp4xx_cf.c
2025-10-02T15:24:50.5988922Z patching file drivers/ata/pata_legacy.c
2025-10-02T15:24:50.5990970Z patching file drivers/ata/pata_macio.c
2025-10-02T15:24:50.5992305Z patching file drivers/ata/pata_marvell.c
2025-10-02T15:24:50.5993297Z patching file drivers/ata/pata_ns87415.c
2025-10-02T15:24:50.5994526Z patching file drivers/ata/pata_octeon_cf.c
2025-10-02T15:24:50.5995812Z patching file drivers/ata/pata_pxa.c
2025-10-02T15:24:50.5996887Z patching file drivers/ata/pata_rb532_cf.c
2025-10-02T15:24:50.5997931Z patching file drivers/ata/pata_via.c
2025-10-02T15:24:50.5999359Z patching file drivers/ata/sata_dwc_460ex.c
2025-10-02T15:24:50.6001492Z patching file drivers/ata/sata_fsl.c
2025-10-02T15:24:50.6003206Z patching file drivers/ata/sata_gemini.c
2025-10-02T15:24:50.6004314Z patching file drivers/ata/sata_highbank.c
2025-10-02T15:24:50.6006664Z patching file drivers/ata/sata_mv.c
2025-10-02T15:24:50.6010023Z patching file drivers/ata/sata_sil.c
2025-10-02T15:24:50.6011788Z patching file drivers/ata/sata_sx4.c
2025-10-02T15:24:50.6014161Z patching file drivers/atm/atmtcp.c
2025-10-02T15:24:50.6015567Z patching file drivers/atm/eni.c
2025-10-02T15:24:50.6017848Z patching file drivers/atm/firestream.c
2025-10-02T15:24:50.6019710Z patching file drivers/atm/idt77105.c
2025-10-02T15:24:50.6021643Z patching file drivers/atm/idt77252.c
2025-10-02T15:24:50.6024896Z patching file drivers/atm/iphase.c
2025-10-02T15:24:50.6027849Z patching file drivers/atm/lanai.c
2025-10-02T15:24:50.6030614Z patching file drivers/atm/nicstar.c
2025-10-02T15:24:50.6033008Z patching file drivers/atm/solos-pci.c
2025-10-02T15:24:50.6034305Z patching file drivers/atm/uPD98402.c
2025-10-02T15:24:50.6035313Z patching file drivers/auxdisplay/ht16k33.c
2025-10-02T15:24:50.6036642Z patching file drivers/auxdisplay/img-ascii-lcd.c
2025-10-02T15:24:50.6037694Z patching file drivers/base/arch_topology.c
2025-10-02T15:24:50.6038954Z patching file drivers/base/bus.c
2025-10-02T15:24:50.6040724Z patching file drivers/base/class.c
2025-10-02T15:24:50.6042835Z patching file drivers/base/core.c
2025-10-02T15:24:50.6046314Z patching file drivers/base/cpu.c
2025-10-02T15:24:50.6047718Z patching file drivers/base/dd.c
2025-10-02T15:24:50.6049886Z patching file drivers/base/devcoredump.c
2025-10-02T15:24:50.6051485Z patching file drivers/base/devres.c
2025-10-02T15:24:50.6052831Z patching file drivers/base/devtmpfs.c
2025-10-02T15:24:50.6053823Z patching file drivers/base/driver.c
2025-10-02T15:24:50.6055006Z patching file drivers/base/firmware_loader/fallback.c
2025-10-02T15:24:50.6056112Z patching file drivers/base/firmware_loader/firmware.h
2025-10-02T15:24:50.6057307Z patching file drivers/base/firmware_loader/main.c
2025-10-02T15:24:50.6059341Z patching file drivers/base/memory.c
2025-10-02T15:24:50.6060924Z patching file drivers/base/node.c
2025-10-02T15:24:50.6062532Z patching file drivers/base/platform.c
2025-10-02T15:24:50.6064792Z patching file drivers/base/power/domain.c
2025-10-02T15:24:50.6066986Z patching file drivers/base/power/domain_governor.c
2025-10-02T15:24:50.6068326Z patching file drivers/base/power/main.c
2025-10-02T15:24:50.6071522Z patching file drivers/base/power/power.h
2025-10-02T15:24:50.6072650Z patching file drivers/base/power/runtime.c
2025-10-02T15:24:50.6075060Z patching file drivers/base/power/trace.c
2025-10-02T15:24:50.6075941Z patching file drivers/base/power/wakeirq.c
2025-10-02T15:24:50.6077540Z patching file drivers/base/power/wakeup.c
2025-10-02T15:24:50.6079132Z patching file drivers/base/property.c
2025-10-02T15:24:50.6080717Z patching file drivers/base/regmap/internal.h
2025-10-02T15:24:50.6081772Z patching file drivers/base/regmap/regcache-rbtree.c
2025-10-02T15:24:50.6083006Z patching file drivers/base/regmap/regcache.c
2025-10-02T15:24:50.6084198Z patching file drivers/base/regmap/regmap-debugfs.c
2025-10-02T15:24:50.6085309Z patching file drivers/base/regmap/regmap-i2c.c
2025-10-02T15:24:50.6086456Z patching file drivers/base/regmap/regmap-irq.c
2025-10-02T15:24:50.6087823Z patching file drivers/base/regmap/regmap-sdw.c
2025-10-02T15:24:50.6089349Z patching file drivers/base/regmap/regmap.c
2025-10-02T15:24:50.6092642Z patching file drivers/base/swnode.c
2025-10-02T15:24:50.6093806Z patching file drivers/base/test/Makefile
2025-10-02T15:24:50.6094688Z patching file drivers/base/test/test_async_driver_probe.c
2025-10-02T15:24:50.6095722Z patching file drivers/bcma/main.c
2025-10-02T15:24:50.6097010Z patching file drivers/block/Kconfig
2025-10-02T15:24:50.6098175Z patching file drivers/block/Makefile
2025-10-02T15:24:50.6099384Z patching file drivers/block/aoe/aoecmd.c
2025-10-02T15:24:50.6101524Z patching file drivers/block/aoe/aoedev.c
2025-10-02T15:24:50.6102386Z patching file drivers/block/aoe/aoenet.c
2025-10-02T15:24:50.6103717Z patching file drivers/block/ataflop.c
2025-10-02T15:24:50.6106084Z patching file drivers/block/brd.c
2025-10-02T15:24:50.6107153Z patching file drivers/block/cryptoloop.c
2025-10-02T15:24:50.6108608Z patching file drivers/block/drbd/drbd_int.h
2025-10-02T15:24:50.6111896Z patching file drivers/block/drbd/drbd_main.c
2025-10-02T15:24:50.6115675Z patching file drivers/block/drbd/drbd_nl.c
2025-10-02T15:24:50.6120701Z patching file drivers/block/drbd/drbd_receiver.c
2025-10-02T15:24:50.6124576Z patching file drivers/block/drbd/drbd_req.c
2025-10-02T15:24:50.6126726Z patching file drivers/block/drbd/drbd_state.c
2025-10-02T15:24:50.6128764Z patching file drivers/block/drbd/drbd_state_change.h
2025-10-02T15:24:50.6130881Z patching file drivers/block/floppy.c
2025-10-02T15:24:50.6134919Z patching file drivers/block/loop.c
2025-10-02T15:24:50.6137512Z patching file drivers/block/nbd.c
2025-10-02T15:24:50.6140377Z patching file drivers/block/null_blk.h
2025-10-02T15:24:50.6141880Z patching file drivers/block/null_blk/Kconfig
2025-10-02T15:24:50.6142763Z patching file drivers/block/null_blk/Makefile
2025-10-02T15:24:50.6143615Z patching file drivers/block/null_blk/main.c
2025-10-02T15:24:50.6148298Z patching file drivers/block/null_blk/null_blk.h
2025-10-02T15:24:50.6149303Z patching file drivers/block/null_blk/trace.c
2025-10-02T15:24:50.6151232Z patching file drivers/block/null_blk/trace.h
2025-10-02T15:24:50.6151754Z patching file drivers/block/null_blk/zoned.c
2025-10-02T15:24:50.6153993Z patching file drivers/block/null_blk_main.c
2025-10-02T15:24:50.6157730Z patching file drivers/block/null_blk_trace.c
2025-10-02T15:24:50.6158769Z patching file drivers/block/null_blk_trace.h
2025-10-02T15:24:50.6159949Z patching file drivers/block/null_blk_zoned.c
2025-10-02T15:24:50.6164405Z patching file drivers/block/rbd.c
2025-10-02T15:24:50.6171371Z patching file drivers/block/rnbd/rnbd-clt-sysfs.c
2025-10-02T15:24:50.6172892Z patching file drivers/block/rnbd/rnbd-clt.c
2025-10-02T15:24:50.6174690Z patching file drivers/block/rnbd/rnbd-clt.h
2025-10-02T15:24:50.6175624Z patching file drivers/block/rnbd/rnbd-proto.h
2025-10-02T15:24:50.6176789Z patching file drivers/block/rnbd/rnbd-srv.c
2025-10-02T15:24:50.6178360Z patching file drivers/block/rsxx/core.c
2025-10-02T15:24:50.6180426Z patching file drivers/block/sunvdc.c
2025-10-02T15:24:50.6182424Z patching file drivers/block/sx8.c
2025-10-02T15:24:50.6186370Z patching file drivers/block/umem.c
2025-10-02T15:24:50.6187941Z patching file drivers/block/virtio_blk.c
2025-10-02T15:24:50.6190609Z patching file drivers/block/xen-blkback/blkback.c
2025-10-02T15:24:50.6192354Z patching file drivers/block/xen-blkback/common.h
2025-10-02T15:24:50.6193689Z patching file drivers/block/xen-blkback/xenbus.c
2025-10-02T15:24:50.6196625Z patching file drivers/block/xen-blkfront.c
2025-10-02T15:24:50.6201186Z patching file drivers/block/zram/zcomp.c
2025-10-02T15:24:50.6202329Z patching file drivers/block/zram/zram_drv.c
2025-10-02T15:24:50.6204963Z patching file drivers/bluetooth/ath3k.c
2025-10-02T15:24:50.6206375Z patching file drivers/bluetooth/bfusb.c
2025-10-02T15:24:50.6207612Z patching file drivers/bluetooth/btbcm.c
2025-10-02T15:24:50.6209207Z patching file drivers/bluetooth/btintel.c
2025-10-02T15:24:50.6211397Z patching file drivers/bluetooth/btmrvl_sdio.c
2025-10-02T15:24:50.6213618Z patching file drivers/bluetooth/btmtksdio.c
2025-10-02T15:24:50.6215195Z patching file drivers/bluetooth/btmtkuart.c
2025-10-02T15:24:50.6217586Z patching file drivers/bluetooth/btqca.c
2025-10-02T15:24:50.6218686Z patching file drivers/bluetooth/btqcomsmd.c
2025-10-02T15:24:50.6220231Z patching file drivers/bluetooth/btrtl.c
2025-10-02T15:24:50.6221583Z patching file drivers/bluetooth/btsdio.c
2025-10-02T15:24:50.6223848Z patching file drivers/bluetooth/btusb.c
2025-10-02T15:24:50.6228351Z patching file drivers/bluetooth/hci_bcm.c
2025-10-02T15:24:50.6230200Z patching file drivers/bluetooth/hci_bcsp.c
2025-10-02T15:24:50.6231552Z patching file drivers/bluetooth/hci_h5.c
2025-10-02T15:24:50.6233355Z patching file drivers/bluetooth/hci_intel.c
2025-10-02T15:24:50.6235073Z patching file drivers/bluetooth/hci_ldisc.c
2025-10-02T15:24:50.6236914Z patching file drivers/bluetooth/hci_ll.c
2025-10-02T15:24:50.6238082Z patching file drivers/bluetooth/hci_nokia.c
2025-10-02T15:24:50.6240226Z patching file drivers/bluetooth/hci_qca.c
2025-10-02T15:24:50.6242869Z patching file drivers/bluetooth/hci_serdev.c
2025-10-02T15:24:50.6243837Z patching file drivers/bluetooth/hci_uart.h
2025-10-02T15:24:50.6244856Z patching file drivers/bluetooth/hci_vhci.c
2025-10-02T15:24:50.6245942Z patching file drivers/bus/Kconfig
2025-10-02T15:24:50.6246966Z patching file drivers/bus/Makefile
2025-10-02T15:24:50.6247899Z patching file drivers/bus/arm-integrator-lm.c
2025-10-02T15:24:50.6248870Z patching file drivers/bus/fsl-mc/fsl-mc-allocator.c
2025-10-02T15:24:50.6250449Z patching file drivers/bus/fsl-mc/fsl-mc-bus.c
2025-10-02T15:24:50.6252125Z patching file drivers/bus/fsl-mc/mc-io.c
2025-10-02T15:24:50.6253134Z patching file drivers/bus/fsl-mc/mc-sys.c
2025-10-02T15:24:50.6263104Z patching file drivers/bus/hisi_lpc.c
2025-10-02T15:24:50.6263936Z patching file drivers/bus/imx-weim.c
2025-10-02T15:24:50.6264719Z patching file drivers/bus/mhi/Kconfig
2025-10-02T15:24:50.6265527Z patching file drivers/bus/mhi/Makefile
2025-10-02T15:24:50.6266392Z patching file drivers/bus/mhi/core/Makefile
2025-10-02T15:24:50.6267238Z patching file drivers/bus/mhi/core/boot.c
2025-10-02T15:24:50.6268067Z patching file drivers/bus/mhi/core/debugfs.c
2025-10-02T15:24:50.6268935Z patching file drivers/bus/mhi/core/init.c
2025-10-02T15:24:50.6269976Z patching file drivers/bus/mhi/core/internal.h
2025-10-02T15:24:50.6270832Z patching file drivers/bus/mhi/core/main.c
2025-10-02T15:24:50.6274622Z patching file drivers/bus/mhi/core/pm.c
2025-10-02T15:24:50.6278070Z patching file drivers/bus/mhi/host/Kconfig
2025-10-02T15:24:50.6279146Z patching file drivers/bus/mhi/host/Makefile
2025-10-02T15:24:50.6280251Z patching file drivers/bus/mhi/host/boot.c
2025-10-02T15:24:50.6282812Z patching file drivers/bus/mhi/host/debugfs.c
2025-10-02T15:24:50.6284527Z patching file drivers/bus/mhi/host/init.c
2025-10-02T15:24:50.6288440Z patching file drivers/bus/mhi/host/internal.h
2025-10-02T15:24:50.6291402Z patching file drivers/bus/mhi/host/main.c
2025-10-02T15:24:50.6295613Z patching file drivers/bus/mhi/host/pci_generic.c
2025-10-02T15:24:50.6297734Z patching file drivers/bus/mhi/host/pm.c
2025-10-02T15:24:50.6301943Z patching file drivers/bus/mips_cdmm.c
2025-10-02T15:24:50.6303074Z patching file drivers/bus/moxtet.c
2025-10-02T15:24:50.6304510Z patching file drivers/bus/omap_l3_noc.c
2025-10-02T15:24:50.6305592Z patching file drivers/bus/qcom-ebi2.c
2025-10-02T15:24:50.6306774Z patching file drivers/bus/sunxi-rsb.c
2025-10-02T15:24:50.6309134Z patching file drivers/bus/ti-sysc.c
2025-10-02T15:24:50.6313564Z patching file drivers/cdrom/gdrom.c
2025-10-02T15:24:50.6314885Z patching file drivers/char/Kconfig
2025-10-02T15:24:50.6316282Z patching file drivers/char/agp/Kconfig
2025-10-02T15:24:50.6317256Z patching file drivers/char/agp/parisc-agp.c
2025-10-02T15:24:50.6318704Z patching file drivers/char/hpet.c
2025-10-02T15:24:50.6320905Z patching file drivers/char/hw_random/Kconfig
2025-10-02T15:24:50.6322058Z patching file drivers/char/hw_random/amd-rng.c
2025-10-02T15:24:50.6323260Z patching file drivers/char/hw_random/atmel-rng.c
2025-10-02T15:24:50.6324247Z patching file drivers/char/hw_random/cavium-rng-vf.c
2025-10-02T15:24:50.6325733Z patching file drivers/char/hw_random/cavium-rng.c
2025-10-02T15:24:50.6326854Z patching file drivers/char/hw_random/cctrng.c
2025-10-02T15:24:50.6328144Z patching file drivers/char/hw_random/core.c
2025-10-02T15:24:50.6329813Z patching file drivers/char/hw_random/exynos-trng.c
2025-10-02T15:24:50.6330825Z patching file drivers/char/hw_random/geode-rng.c
2025-10-02T15:24:50.6331975Z patching file drivers/char/hw_random/imx-rngc.c
2025-10-02T15:24:50.6333253Z patching file drivers/char/hw_random/ingenic-trng.c
2025-10-02T15:24:50.6334251Z patching file drivers/char/hw_random/iproc-rng200.c
2025-10-02T15:24:50.6335233Z patching file drivers/char/hw_random/mtk-rng.c
2025-10-02T15:24:50.6336203Z patching file drivers/char/hw_random/nomadik-rng.c
2025-10-02T15:24:50.6337207Z patching file drivers/char/hw_random/omap3-rom-rng.c
2025-10-02T15:24:50.6338381Z patching file drivers/char/hw_random/st-rng.c
2025-10-02T15:24:50.6339358Z patching file drivers/char/hw_random/timeriomem-rng.c
2025-10-02T15:24:50.6340521Z patching file drivers/char/hw_random/virtio-rng.c
2025-10-02T15:24:50.6341956Z patching file drivers/char/ipmi/Kconfig
2025-10-02T15:24:50.6342866Z patching file drivers/char/ipmi/ipmb_dev_int.c
2025-10-02T15:24:50.6345415Z patching file drivers/char/ipmi/ipmi_msghandler.c
2025-10-02T15:24:50.6349911Z patching file drivers/char/ipmi/ipmi_si_intf.c
2025-10-02T15:24:50.6352595Z patching file drivers/char/ipmi/ipmi_ssif.c
2025-10-02T15:24:50.6356458Z patching file drivers/char/ipmi/ipmi_watchdog.c
2025-10-02T15:24:50.6358763Z patching file drivers/char/mem.c
2025-10-02T15:24:50.6360283Z patching file drivers/char/mwave/3780i.h
2025-10-02T15:24:50.6361861Z patching file drivers/char/pcmcia/cm4000_cs.c
2025-10-02T15:24:50.6364116Z patching file drivers/char/ppdev.c
2025-10-02T15:24:50.6366094Z patching file drivers/char/random.c
2025-10-02T15:24:50.6374646Z patching file drivers/char/tpm/eventlog/acpi.c
2025-10-02T15:24:50.6375641Z patching file drivers/char/tpm/eventlog/common.c
2025-10-02T15:24:50.6376611Z patching file drivers/char/tpm/eventlog/efi.c
2025-10-02T15:24:50.6377746Z patching file drivers/char/tpm/eventlog/of.c
2025-10-02T15:24:50.6378804Z patching file drivers/char/tpm/tpm-chip.c
2025-10-02T15:24:50.6380588Z patching file drivers/char/tpm/tpm-dev-common.c
2025-10-02T15:24:50.6381683Z patching file drivers/char/tpm/tpm-interface.c
2025-10-02T15:24:50.6382880Z patching file drivers/char/tpm/tpm.h
2025-10-02T15:24:50.6384064Z patching file drivers/char/tpm/tpm2-cmd.c
2025-10-02T15:24:50.6385445Z patching file drivers/char/tpm/tpm2-space.c
2025-10-02T15:24:50.6386987Z patching file drivers/char/tpm/tpm_crb.c
2025-10-02T15:24:50.6388469Z patching file drivers/char/tpm/tpm_ftpm_tee.c
2025-10-02T15:24:50.6389912Z patching file drivers/char/tpm/tpm_ibmvtpm.c
2025-10-02T15:24:50.6391477Z patching file drivers/char/tpm/tpm_ibmvtpm.h
2025-10-02T15:24:50.6392401Z patching file drivers/char/tpm/tpm_tis.c
2025-10-02T15:24:50.6393837Z patching file drivers/char/tpm/tpm_tis_core.c
2025-10-02T15:24:50.6396781Z patching file drivers/char/tpm/tpm_tis_core.h
2025-10-02T15:24:50.6397732Z patching file drivers/char/tpm/tpm_tis_spi_main.c
2025-10-02T15:24:50.6398713Z patching file drivers/char/tpm/tpm_vtpm_proxy.c
2025-10-02T15:24:50.6400042Z patching file drivers/char/ttyprintk.c
2025-10-02T15:24:50.6401631Z patching file drivers/char/virtio_console.c
2025-10-02T15:24:50.6404400Z patching file drivers/clk/Kconfig
2025-10-02T15:24:50.6405492Z patching file drivers/clk/actions/owl-s500.c
2025-10-02T15:24:50.6407629Z patching file drivers/clk/actions/owl-s700.c
2025-10-02T15:24:50.6408769Z patching file drivers/clk/actions/owl-s900.c
2025-10-02T15:24:50.6410479Z patching file drivers/clk/analogbits/wrpll-cln28hpc.c
2025-10-02T15:24:50.6411472Z patching file drivers/clk/at91/at91rm9200.c
2025-10-02T15:24:50.6412572Z patching file drivers/clk/at91/clk-generated.c
2025-10-02T15:24:50.6413740Z patching file drivers/clk/at91/clk-sam9x60-pll.c
2025-10-02T15:24:50.6414853Z patching file drivers/clk/at91/pmc.c
2025-10-02T15:24:50.6415861Z patching file drivers/clk/at91/sam9x60.c
2025-10-02T15:24:50.6417183Z patching file drivers/clk/at91/sama7g5.c
2025-10-02T15:24:50.6418986Z patching file drivers/clk/baikal-t1/ccu-div.c
2025-10-02T15:24:50.6420699Z patching file drivers/clk/baikal-t1/ccu-div.h
2025-10-02T15:24:50.6421650Z patching file drivers/clk/baikal-t1/clk-ccu-div.c
2025-10-02T15:24:50.6422892Z patching file drivers/clk/bcm/clk-bcm2711-dvp.c
2025-10-02T15:24:50.6424216Z patching file drivers/clk/bcm/clk-bcm2835.c
2025-10-02T15:24:50.6426723Z patching file drivers/clk/bcm/clk-bcm53573-ilp.c
2025-10-02T15:24:50.6427684Z patching file drivers/clk/bcm/clk-iproc-pll.c
2025-10-02T15:24:50.6429023Z patching file drivers/clk/bcm/clk-raspberrypi.c
2025-10-02T15:24:50.6430598Z patching file drivers/clk/berlin/bg2.c
2025-10-02T15:24:50.6431889Z patching file drivers/clk/berlin/bg2q.c
2025-10-02T15:24:50.6433281Z patching file drivers/clk/clk-asm9260.c
2025-10-02T15:24:50.6434599Z patching file drivers/clk/clk-ast2600.c
2025-10-02T15:24:50.6436690Z patching file drivers/clk/clk-axi-clkgen.c
2025-10-02T15:24:50.6438108Z patching file drivers/clk/clk-bm1880.c
2025-10-02T15:24:50.6440117Z patching file drivers/clk/clk-cdce925.c
2025-10-02T15:24:50.6441577Z patching file drivers/clk/clk-clps711x.c
2025-10-02T15:24:50.6442554Z patching file drivers/clk/clk-conf.c
2025-10-02T15:24:50.6443773Z patching file drivers/clk/clk-devres.c
2025-10-02T15:24:50.6445443Z patching file drivers/clk/clk-divider.c
2025-10-02T15:24:50.6446752Z patching file drivers/clk/clk-fixed-rate.c
2025-10-02T15:24:50.6447935Z patching file drivers/clk/clk-fsl-sai.c
2025-10-02T15:24:50.6449113Z patching file drivers/clk/clk-npcm7xx.c
2025-10-02T15:24:50.6450831Z patching file drivers/clk/clk-oxnas.c
2025-10-02T15:24:50.6452257Z patching file drivers/clk/clk-qoriq.c
2025-10-02T15:24:50.6454451Z patching file drivers/clk/clk-s2mps11.c
2025-10-02T15:24:50.6455334Z patching file drivers/clk/clk-scmi.c
2025-10-02T15:24:50.6456661Z patching file drivers/clk/clk-si5341.c
2025-10-02T15:24:50.6460905Z patching file drivers/clk/clk-stm32f4.c
2025-10-02T15:24:50.6463388Z patching file drivers/clk/clk-versaclock5.c
2025-10-02T15:24:50.6467054Z patching file drivers/clk/clk.c
2025-10-02T15:24:50.6472179Z patching file drivers/clk/davinci/da8xx-cfgchip.c
2025-10-02T15:24:50.6473263Z patching file drivers/clk/davinci/psc.c
2025-10-02T15:24:50.6474567Z patching file drivers/clk/hisilicon/clk-hi3519.c
2025-10-02T15:24:50.6475669Z patching file drivers/clk/hisilicon/clk-hi3620.c
2025-10-02T15:24:50.6476900Z patching file drivers/clk/imx/Kconfig
2025-10-02T15:24:50.6477820Z patching file drivers/clk/imx/clk-composite-8m.c
2025-10-02T15:24:50.6478989Z patching file drivers/clk/imx/clk-imx25.c
2025-10-02T15:24:50.6480117Z patching file drivers/clk/imx/clk-imx27.c
2025-10-02T15:24:50.6481356Z patching file drivers/clk/imx/clk-imx35.c
2025-10-02T15:24:50.6482531Z patching file drivers/clk/imx/clk-imx5.c
2025-10-02T15:24:50.6484587Z patching file drivers/clk/imx/clk-imx6q.c
2025-10-02T15:24:50.6486382Z patching file drivers/clk/imx/clk-imx6sl.c
2025-10-02T15:24:50.6487783Z patching file drivers/clk/imx/clk-imx6sll.c
2025-10-02T15:24:50.6489230Z patching file drivers/clk/imx/clk-imx6sx.c
2025-10-02T15:24:50.6491319Z patching file drivers/clk/imx/clk-imx6ul.c
2025-10-02T15:24:50.6492876Z patching file drivers/clk/imx/clk-imx7d.c
2025-10-02T15:24:50.6495285Z patching file drivers/clk/imx/clk-imx7ulp.c
2025-10-02T15:24:50.6496446Z patching file drivers/clk/imx/clk-imx8mm.c
2025-10-02T15:24:50.6498492Z patching file drivers/clk/imx/clk-imx8mn.c
2025-10-02T15:24:50.6500330Z patching file drivers/clk/imx/clk-imx8mp.c
2025-10-02T15:24:50.6503595Z patching file drivers/clk/imx/clk-imx8mq.c
2025-10-02T15:24:50.6505730Z patching file drivers/clk/imx/clk-imx8qxp-lpcg.c
2025-10-02T15:24:50.6506681Z patching file drivers/clk/imx/clk-imx8qxp.c
2025-10-02T15:24:50.6507597Z patching file drivers/clk/imx/clk.c
2025-10-02T15:24:50.6508795Z patching file drivers/clk/imx/clk.h
2025-10-02T15:24:50.6510507Z patching file drivers/clk/ingenic/cgu.c
2025-10-02T15:24:50.6511949Z patching file drivers/clk/ingenic/jz4725b-cgu.c
2025-10-02T15:24:50.6512995Z patching file drivers/clk/ingenic/tcu.c
2025-10-02T15:24:50.6514240Z patching file drivers/clk/keystone/pll.c
2025-10-02T15:24:50.6515507Z patching file drivers/clk/keystone/sci-clk.c
2025-10-02T15:24:50.6516926Z patching file drivers/clk/loongson1/clk-loongson1c.c
2025-10-02T15:24:50.6518067Z patching file drivers/clk/mediatek/clk-mt2701.c
2025-10-02T15:24:50.6520036Z patching file drivers/clk/mediatek/clk-mt6765.c
2025-10-02T15:24:50.6521788Z patching file drivers/clk/mediatek/clk-mt6779.c
2025-10-02T15:24:50.6523542Z patching file drivers/clk/mediatek/clk-mt6797.c
2025-10-02T15:24:50.6524937Z patching file drivers/clk/mediatek/clk-mt7629-eth.c
2025-10-02T15:24:50.6525916Z patching file drivers/clk/mediatek/clk-mt7629.c
2025-10-02T15:24:50.6527542Z patching file drivers/clk/mediatek/clk-mt8183-mfgcfg.c
2025-10-02T15:24:50.6528514Z patching file drivers/clk/mediatek/reset.c
2025-10-02T15:24:50.6529377Z patching file drivers/clk/meson/Kconfig
2025-10-02T15:24:50.6530419Z patching file drivers/clk/meson/clk-pll.c
2025-10-02T15:24:50.6532990Z patching file drivers/clk/meson/g12a.c
2025-10-02T15:24:50.6537174Z patching file drivers/clk/meson/gxbb.c
2025-10-02T15:24:50.6540799Z patching file drivers/clk/meson/meson-aoclk.c
2025-10-02T15:24:50.6541736Z patching file drivers/clk/meson/meson-eeclk.c
2025-10-02T15:24:50.6543000Z patching file drivers/clk/meson/meson8b.c
2025-10-02T15:24:50.6546108Z patching file drivers/clk/mmp/clk-audio.c
2025-10-02T15:24:50.6547040Z patching file drivers/clk/mmp/clk-of-pxa168.c
2025-10-02T15:24:50.6548223Z patching file drivers/clk/mvebu/ap-cpu-clk.c
2025-10-02T15:24:50.6549783Z patching file drivers/clk/mvebu/armada-37xx-periph.c
2025-10-02T15:24:50.6551539Z patching file drivers/clk/mvebu/armada-37xx-xtal.c
2025-10-02T15:24:50.6552516Z patching file drivers/clk/mvebu/kirkwood.c
2025-10-02T15:24:50.6553521Z patching file drivers/clk/qcom/Kconfig
2025-10-02T15:24:50.6554741Z patching file drivers/clk/qcom/a53-pll.c
2025-10-02T15:24:50.6555658Z patching file drivers/clk/qcom/apss-ipq-pll.c
2025-10-02T15:24:50.6556573Z patching file drivers/clk/qcom/apss-ipq6018.c
2025-10-02T15:24:50.6557650Z patching file drivers/clk/qcom/camcc-sdm845.c
2025-10-02T15:24:50.6560095Z patching file drivers/clk/qcom/clk-alpha-pll.c
2025-10-02T15:24:50.6562031Z patching file drivers/clk/qcom/clk-krait.c
2025-10-02T15:24:50.6563180Z patching file drivers/clk/qcom/clk-rcg2.c
2025-10-02T15:24:50.6564907Z patching file drivers/clk/qcom/clk-regmap-mux.c
2025-10-02T15:24:50.6565855Z patching file drivers/clk/qcom/clk-rpmh.c
2025-10-02T15:24:50.6567066Z patching file drivers/clk/qcom/common.c
2025-10-02T15:24:50.6568103Z patching file drivers/clk/qcom/common.h
2025-10-02T15:24:50.6569197Z patching file drivers/clk/qcom/dispcc-sdm845.c
2025-10-02T15:24:50.6570927Z patching file drivers/clk/qcom/dispcc-sm8250.c
2025-10-02T15:24:50.6573535Z patching file drivers/clk/qcom/gcc-ipq6018.c
2025-10-02T15:24:50.6577764Z patching file drivers/clk/qcom/gcc-ipq8074.c
2025-10-02T15:24:50.6582129Z patching file drivers/clk/qcom/gcc-mdm9615.c
2025-10-02T15:24:50.6584531Z patching file drivers/clk/qcom/gcc-msm8939.c
2025-10-02T15:24:50.6587779Z patching file drivers/clk/qcom/gcc-msm8994.c
2025-10-02T15:24:50.6590751Z patching file drivers/clk/qcom/gcc-msm8996.c
2025-10-02T15:24:50.6594044Z patching file drivers/clk/qcom/gcc-msm8998.c
2025-10-02T15:24:50.6597652Z patching file drivers/clk/qcom/gcc-qcs404.c
2025-10-02T15:24:50.6600925Z patching file drivers/clk/qcom/gcc-sc7180.c
2025-10-02T15:24:50.6604235Z patching file drivers/clk/qcom/gcc-sdm845.c
2025-10-02T15:24:50.6607511Z patching file drivers/clk/qcom/gcc-sm8150.c
2025-10-02T15:24:50.6612156Z patching file drivers/clk/qcom/gcc-sm8250.c
2025-10-02T15:24:50.6616136Z patching file drivers/clk/qcom/gdsc.c
2025-10-02T15:24:50.6617547Z patching file drivers/clk/qcom/gdsc.h
2025-10-02T15:24:50.6618673Z patching file drivers/clk/qcom/gpucc-msm8998.c
2025-10-02T15:24:50.6619980Z patching file drivers/clk/qcom/gpucc-sc7180.c
2025-10-02T15:24:50.6621180Z patching file drivers/clk/qcom/gpucc-sdm845.c
2025-10-02T15:24:50.6622266Z patching file drivers/clk/qcom/gpucc-sm8150.c
2025-10-02T15:24:50.6624013Z patching file drivers/clk/qcom/mmcc-apq8084.c
2025-10-02T15:24:50.6627239Z patching file drivers/clk/qcom/mmcc-msm8974.c
2025-10-02T15:24:50.6630000Z patching file drivers/clk/qcom/mmcc-msm8998.c
2025-10-02T15:24:50.6632688Z patching file drivers/clk/qcom/reset.c
2025-10-02T15:24:50.6633528Z patching file drivers/clk/qcom/reset.h
2025-10-02T15:24:50.6634435Z patching file drivers/clk/qcom/videocc-sm8150.c
2025-10-02T15:24:50.6635575Z patching file drivers/clk/renesas/r8a77995-cpg-mssr.c
2025-10-02T15:24:50.6636610Z patching file drivers/clk/renesas/r8a779a0-cpg-mssr.c
2025-10-02T15:24:50.6638084Z patching file drivers/clk/renesas/r9a06g032-clocks.c
2025-10-02T15:24:50.6639739Z patching file drivers/clk/renesas/rcar-usb2-clock-sel.c
2025-10-02T15:24:50.6641052Z patching file drivers/clk/renesas/renesas-cpg-mssr.c
2025-10-02T15:24:50.6642809Z patching file drivers/clk/rockchip/clk-pll.c
2025-10-02T15:24:50.6644367Z patching file drivers/clk/rockchip/clk-rk3036.c
2025-10-02T15:24:50.6645591Z patching file drivers/clk/rockchip/clk-rk3128.c
2025-10-02T15:24:50.6647043Z patching file drivers/clk/rockchip/clk-rk3228.c
2025-10-02T15:24:50.6648510Z patching file drivers/clk/rockchip/clk-rk3328.c
2025-10-02T15:24:50.6650742Z patching file drivers/clk/rockchip/clk-rk3399.c
2025-10-02T15:24:50.6653003Z patching file drivers/clk/rockchip/clk.c
2025-10-02T15:24:50.6654421Z patching file drivers/clk/samsung/clk-exynos7.c
2025-10-02T15:24:50.6656590Z patching file drivers/clk/samsung/clk-pll.c
2025-10-02T15:24:50.6658129Z patching file drivers/clk/samsung/clk.c
2025-10-02T15:24:50.6659300Z patching file drivers/clk/socfpga/clk-agilex.c
2025-10-02T15:24:50.6661225Z patching file drivers/clk/socfpga/clk-gate-a10.c
2025-10-02T15:24:50.6662183Z patching file drivers/clk/socfpga/clk-gate.c
2025-10-02T15:24:50.6663148Z patching file drivers/clk/socfpga/clk-periph-s10.c
2025-10-02T15:24:50.6664122Z patching file drivers/clk/socfpga/clk-periph.c
2025-10-02T15:24:50.6665047Z patching file drivers/clk/socfpga/clk-pll.c
2025-10-02T15:24:50.6665963Z patching file drivers/clk/socfpga/clk-s10.c
2025-10-02T15:24:50.6667343Z patching file drivers/clk/sprd/common.c
2025-10-02T15:24:50.6668516Z patching file drivers/clk/st/clkgen-fsyn.c
2025-10-02T15:24:50.6670529Z patching file drivers/clk/sunxi-ng/ccu-sun50i-a100.c
2025-10-02T15:24:50.6672293Z patching file drivers/clk/sunxi-ng/ccu-sun50i-a64.c
2025-10-02T15:24:50.6673917Z patching file drivers/clk/sunxi-ng/ccu-sun50i-h6.c
2025-10-02T15:24:50.6675802Z patching file drivers/clk/sunxi-ng/ccu-sun8i-h3.c
2025-10-02T15:24:50.6677406Z patching file drivers/clk/sunxi-ng/ccu-sun8i-v3s.c
2025-10-02T15:24:50.6678617Z patching file drivers/clk/sunxi-ng/ccu_mmc_timing.c
2025-10-02T15:24:50.6679374Z patching file drivers/clk/sunxi-ng/ccu_mp.c
2025-10-02T15:24:50.6680693Z patching file drivers/clk/sunxi/clk-sun9i-mmc.c
2025-10-02T15:24:50.6681922Z patching file drivers/clk/tegra/clk-bpmp.c
2025-10-02T15:24:50.6683355Z patching file drivers/clk/tegra/clk-dfll.c
2025-10-02T15:24:50.6685430Z patching file drivers/clk/tegra/clk-id.h
2025-10-02T15:24:50.6685920Z patching file drivers/clk/tegra/clk-periph-gate.c
2025-10-02T15:24:50.6687294Z patching file drivers/clk/tegra/clk-periph.c
2025-10-02T15:24:50.6689149Z patching file drivers/clk/tegra/clk-pll.c
2025-10-02T15:24:50.6691642Z patching file drivers/clk/tegra/clk-sdmmc-mux.c
2025-10-02T15:24:50.6692650Z patching file drivers/clk/tegra/clk-tegra-periph.c
2025-10-02T15:24:50.6694726Z patching file drivers/clk/tegra/clk-tegra114.c
2025-10-02T15:24:50.6696516Z patching file drivers/clk/tegra/clk-tegra124-emc.c
2025-10-02T15:24:50.6697746Z patching file drivers/clk/tegra/clk-tegra20.c
2025-10-02T15:24:50.6700715Z patching file drivers/clk/tegra/clk-tegra210.c
2025-10-02T15:24:50.6703775Z patching file drivers/clk/tegra/clk-tegra30.c
2025-10-02T15:24:50.6705696Z patching file drivers/clk/ti/apll.c
2025-10-02T15:24:50.6706714Z patching file drivers/clk/ti/autoidle.c
2025-10-02T15:24:50.6707726Z patching file drivers/clk/ti/clk-dra7-atl.c
2025-10-02T15:24:50.6709201Z patching file drivers/clk/ti/clk.c
2025-10-02T15:24:50.6711290Z patching file drivers/clk/ti/clkctrl.c
2025-10-02T15:24:50.6712534Z patching file drivers/clk/ti/clock.h
2025-10-02T15:24:50.6713573Z patching file drivers/clk/ti/clockdomain.c
2025-10-02T15:24:50.6714534Z patching file drivers/clk/ti/composite.c
2025-10-02T15:24:50.6724417Z patching file drivers/clk/ti/divider.c
2025-10-02T15:24:50.6724814Z patching file drivers/clk/ti/dpll.c
2025-10-02T15:24:50.6725192Z patching file drivers/clk/ti/fapll.c
2025-10-02T15:24:50.6725568Z patching file drivers/clk/ti/fixed-factor.c
2025-10-02T15:24:50.6725923Z patching file drivers/clk/ti/gate.c
2025-10-02T15:24:50.6726472Z patching file drivers/clk/ti/interface.c
2025-10-02T15:24:50.6726823Z patching file drivers/clk/ti/mux.c
2025-10-02T15:24:50.6727293Z patching file drivers/clk/uniphier/clk-uniphier-fixed-rate.c
2025-10-02T15:24:50.6727713Z patching file drivers/clk/uniphier/clk-uniphier-mux.c
2025-10-02T15:24:50.6728065Z patching file drivers/clk/x86/Kconfig
2025-10-02T15:24:50.6728440Z patching file drivers/clk/x86/clk-cgu-pll.c
2025-10-02T15:24:50.6728797Z patching file drivers/clk/x86/clk-cgu.c
2025-10-02T15:24:50.6729459Z patching file drivers/clk/x86/clk-cgu.h
2025-10-02T15:24:50.6731343Z patching file drivers/clk/x86/clk-lgm.c
2025-10-02T15:24:50.6732432Z patching file drivers/clk/zynqmp/clk-mux-zynqmp.c
2025-10-02T15:24:50.6733401Z patching file drivers/clk/zynqmp/clkc.c
2025-10-02T15:24:50.6734624Z patching file drivers/clk/zynqmp/divider.c
2025-10-02T15:24:50.6735763Z patching file drivers/clk/zynqmp/pll.c
2025-10-02T15:24:50.6737584Z patching file drivers/clocksource/Kconfig
2025-10-02T15:24:50.6738705Z patching file drivers/clocksource/acpi_pm.c
2025-10-02T15:24:50.6740551Z patching file drivers/clocksource/arm_arch_timer.c
2025-10-02T15:24:50.6742768Z patching file drivers/clocksource/exynos_mct.c
2025-10-02T15:24:50.6744554Z patching file drivers/clocksource/hyperv_timer.c
2025-10-02T15:24:50.6745509Z patching file drivers/clocksource/i8253.c
2025-10-02T15:24:50.6746723Z patching file drivers/clocksource/ingenic-ost.c
2025-10-02T15:24:50.6747757Z patching file drivers/clocksource/ingenic-timer.c
2025-10-02T15:24:50.6748879Z patching file drivers/clocksource/mips-gic-timer.c
2025-10-02T15:24:50.6750115Z patching file drivers/clocksource/mxs_timer.c
2025-10-02T15:24:50.6751385Z patching file drivers/clocksource/sh_cmt.c
2025-10-02T15:24:50.6754206Z patching file drivers/clocksource/timer-atmel-tcb.c
2025-10-02T15:24:50.6755241Z patching file drivers/clocksource/timer-cadence-ttc.c
2025-10-02T15:24:50.6756949Z patching file drivers/clocksource/timer-davinci.c
2025-10-02T15:24:50.6758186Z patching file drivers/clocksource/timer-imx-gpt.c
2025-10-02T15:24:50.6759749Z patching file drivers/clocksource/timer-imx-tpm.c
2025-10-02T15:24:50.6760821Z patching file drivers/clocksource/timer-ixp4xx.c
2025-10-02T15:24:50.6761984Z patching file drivers/clocksource/timer-microchip-pit64b.c
2025-10-02T15:24:50.6763093Z patching file drivers/clocksource/timer-of.c
2025-10-02T15:24:50.6764271Z patching file drivers/clocksource/timer-of.h
2025-10-02T15:24:50.6765173Z patching file drivers/clocksource/timer-orion.c
2025-10-02T15:24:50.6766321Z patching file drivers/clocksource/timer-oxnas-rps.c
2025-10-02T15:24:50.6767294Z patching file drivers/clocksource/timer-qcom.c
2025-10-02T15:24:50.6768401Z patching file drivers/clocksource/timer-sp804.c
2025-10-02T15:24:50.6769758Z patching file drivers/clocksource/timer-stm32-lp.c
2025-10-02T15:24:50.6770949Z patching file drivers/clocksource/timer-ti-dm-systimer.c
2025-10-02T15:24:50.6773437Z patching file drivers/clocksource/timer-ti-dm.c
2025-10-02T15:24:50.6775241Z patching file drivers/counter/104-quad-8.c
2025-10-02T15:24:50.6777173Z patching file drivers/counter/Kconfig
2025-10-02T15:24:50.6777838Z patching file drivers/counter/microchip-tcb-capture.c
2025-10-02T15:24:50.6779748Z patching file drivers/counter/stm32-lptimer-cnt.c
2025-10-02T15:24:50.6782014Z patching file drivers/counter/stm32-timer-cnt.c
2025-10-02T15:24:50.6783463Z patching file drivers/counter/ti-eqep.c
2025-10-02T15:24:50.6785102Z patching file drivers/cpufreq/Kconfig.arm
2025-10-02T15:24:50.6786204Z patching file drivers/cpufreq/acpi-cpufreq.c
2025-10-02T15:24:50.6788264Z patching file drivers/cpufreq/amd_freq_sensitivity.c
2025-10-02T15:24:50.6788939Z patching file drivers/cpufreq/armada-37xx-cpufreq.c
2025-10-02T15:24:50.6791284Z patching file drivers/cpufreq/armada-8k-cpufreq.c
2025-10-02T15:24:50.6792237Z patching file drivers/cpufreq/brcmstb-avs-cpufreq.c
2025-10-02T15:24:50.6794119Z patching file drivers/cpufreq/cppc_cpufreq.c
2025-10-02T15:24:50.6795271Z patching file drivers/cpufreq/cpufreq-dt-platdev.c
2025-10-02T15:24:50.6796213Z patching file drivers/cpufreq/cpufreq-dt.c
2025-10-02T15:24:50.6798190Z patching file drivers/cpufreq/cpufreq.c
2025-10-02T15:24:50.6801685Z patching file drivers/cpufreq/cpufreq_governor.c
2025-10-02T15:24:50.6802926Z patching file drivers/cpufreq/cpufreq_governor_attr_set.c
2025-10-02T15:24:50.6803798Z patching file drivers/cpufreq/cpufreq_stats.c
2025-10-02T15:24:50.6804950Z patching file drivers/cpufreq/freq_table.c
2025-10-02T15:24:50.6806101Z patching file drivers/cpufreq/highbank-cpufreq.c
2025-10-02T15:24:50.6806996Z patching file drivers/cpufreq/imx-cpufreq-dt.c
2025-10-02T15:24:50.6808062Z patching file drivers/cpufreq/imx6q-cpufreq.c
2025-10-02T15:24:50.6810626Z patching file drivers/cpufreq/intel_pstate.c
2025-10-02T15:24:50.6813767Z patching file drivers/cpufreq/loongson1-cpufreq.c
2025-10-02T15:24:50.6814530Z patching file drivers/cpufreq/loongson2_cpufreq.c
2025-10-02T15:24:50.6815621Z patching file drivers/cpufreq/mediatek-cpufreq.c
2025-10-02T15:24:50.6817331Z patching file drivers/cpufreq/pmac32-cpufreq.c
2025-10-02T15:24:50.6818797Z patching file drivers/cpufreq/powernow-k8.c
2025-10-02T15:24:50.6821195Z patching file drivers/cpufreq/powernv-cpufreq.c
2025-10-02T15:24:50.6823048Z patching file drivers/cpufreq/qcom-cpufreq-hw.c
2025-10-02T15:24:50.6824473Z patching file drivers/cpufreq/qcom-cpufreq-nvmem.c
2025-10-02T15:24:50.6825856Z patching file drivers/cpufreq/qoriq-cpufreq.c
2025-10-02T15:24:50.6826847Z patching file drivers/cpufreq/s3c64xx-cpufreq.c
2025-10-02T15:24:50.6827979Z patching file drivers/cpufreq/scmi-cpufreq.c
2025-10-02T15:24:50.6828997Z patching file drivers/cpufreq/scpi-cpufreq.c
2025-10-02T15:24:50.6830347Z patching file drivers/cpufreq/sti-cpufreq.c
2025-10-02T15:24:50.6831480Z patching file drivers/cpufreq/sun50i-cpufreq-nvmem.c
2025-10-02T15:24:50.6832552Z patching file drivers/cpufreq/tegra20-cpufreq.c
2025-10-02T15:24:50.6833491Z patching file drivers/cpufreq/ti-cpufreq.c
2025-10-02T15:24:50.6835247Z patching file drivers/cpufreq/vexpress-spc-cpufreq.c
2025-10-02T15:24:50.6836194Z patching file drivers/cpuidle/Kconfig.arm
2025-10-02T15:24:50.6837129Z patching file drivers/cpuidle/cpuidle-psci-domain.c
2025-10-02T15:24:50.6838104Z patching file drivers/cpuidle/cpuidle-pseries.c
2025-10-02T15:24:50.6839275Z patching file drivers/cpuidle/cpuidle-tegra.c
2025-10-02T15:24:50.6840530Z patching file drivers/cpuidle/dt_idle_states.c
2025-10-02T15:24:50.6841606Z patching file drivers/cpuidle/governors/menu.c
2025-10-02T15:24:50.6843335Z patching file drivers/cpuidle/sysfs.c
2025-10-02T15:24:50.6844908Z patching file drivers/crypto/Kconfig
2025-10-02T15:24:50.6846524Z patching file drivers/crypto/allwinner/Kconfig
2025-10-02T15:24:50.6847528Z patching file drivers/crypto/allwinner/sun4i-ss/sun4i-ss-cipher.c
2025-10-02T15:24:50.6849984Z patching file drivers/crypto/allwinner/sun4i-ss/sun4i-ss.h
2025-10-02T15:24:50.6850965Z patching file drivers/crypto/allwinner/sun8i-ce/sun8i-ce-cipher.c
2025-10-02T15:24:50.6852271Z patching file drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
2025-10-02T15:24:50.6853915Z patching file drivers/crypto/allwinner/sun8i-ce/sun8i-ce-hash.c
2025-10-02T15:24:50.6855029Z patching file drivers/crypto/allwinner/sun8i-ce/sun8i-ce.h
2025-10-02T15:24:50.6856259Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c
2025-10-02T15:24:50.6858279Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
2025-10-02T15:24:50.6860175Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss-hash.c
2025-10-02T15:24:50.6861299Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss-prng.c
2025-10-02T15:24:50.6862225Z patching file drivers/crypto/allwinner/sun8i-ss/sun8i-ss.h
2025-10-02T15:24:50.6863956Z patching file drivers/crypto/amcc/crypto4xx_core.c
2025-10-02T15:24:50.6866025Z patching file drivers/crypto/amlogic/amlogic-gxl-cipher.c
2025-10-02T15:24:50.6866858Z patching file drivers/crypto/amlogic/amlogic-gxl-core.c
2025-10-02T15:24:50.6867742Z patching file drivers/crypto/amlogic/amlogic-gxl.h
2025-10-02T15:24:50.6868869Z patching file drivers/crypto/atmel-sha204a.c
2025-10-02T15:24:50.6871226Z patching file drivers/crypto/bcm/cipher.c
2025-10-02T15:24:50.6874436Z patching file drivers/crypto/bcm/cipher.h
2025-10-02T15:24:50.6875550Z patching file drivers/crypto/bcm/spu2.c
2025-10-02T15:24:50.6877447Z patching file drivers/crypto/bcm/util.c
2025-10-02T15:24:50.6879701Z patching file drivers/crypto/caam/caamalg.c
2025-10-02T15:24:50.6882934Z patching file drivers/crypto/caam/caamalg_qi.c
2025-10-02T15:24:50.6886492Z patching file drivers/crypto/caam/caamalg_qi2.c
2025-10-02T15:24:50.6890110Z patching file drivers/crypto/caam/caampkc.c
2025-10-02T15:24:50.6892250Z patching file drivers/crypto/caam/ctrl.c
2025-10-02T15:24:50.6894022Z patching file drivers/crypto/caam/qi.c
2025-10-02T15:24:50.6895503Z patching file drivers/crypto/caam/regs.h
2025-10-02T15:24:50.6897337Z patching file drivers/crypto/cavium/cpt/cptpf_main.c
2025-10-02T15:24:50.6898613Z patching file drivers/crypto/cavium/nitrox/nitrox_isr.c
2025-10-02T15:24:50.6899915Z patching file drivers/crypto/cavium/nitrox/nitrox_main.c
2025-10-02T15:24:50.6901089Z patching file drivers/crypto/cavium/nitrox/nitrox_mbx.c
2025-10-02T15:24:50.6902048Z patching file drivers/crypto/ccp/ccp-debugfs.c
2025-10-02T15:24:50.6903259Z patching file drivers/crypto/ccp/ccp-dmaengine.c
2025-10-02T15:24:50.6905360Z patching file drivers/crypto/ccp/ccp-ops.c
2025-10-02T15:24:50.6907627Z patching file drivers/crypto/ccp/psp-dev.c
2025-10-02T15:24:50.6908708Z patching file drivers/crypto/ccp/sev-dev.c
2025-10-02T15:24:50.6912064Z patching file drivers/crypto/ccp/sev-dev.h
2025-10-02T15:24:50.6912592Z patching file drivers/crypto/ccp/sp-pci.c
2025-10-02T15:24:50.6914109Z patching file drivers/crypto/ccp/sp-platform.c
2025-10-02T15:24:50.6915049Z patching file drivers/crypto/ccp/tee-dev.c
2025-10-02T15:24:50.6916363Z patching file drivers/crypto/ccp/tee-dev.h
2025-10-02T15:24:50.6918041Z patching file drivers/crypto/ccree/cc_buffer_mgr.c
2025-10-02T15:24:50.6920589Z patching file drivers/crypto/ccree/cc_cipher.c
2025-10-02T15:24:50.6922263Z patching file drivers/crypto/ccree/cc_debugfs.c
2025-10-02T15:24:50.6922978Z patching file drivers/crypto/ccree/cc_driver.c
2025-10-02T15:24:50.6925589Z patching file drivers/crypto/chelsio/chcr_algo.c
2025-10-02T15:24:50.6929315Z patching file drivers/crypto/hisilicon/hpre/hpre_crypto.c
2025-10-02T15:24:50.6930924Z patching file drivers/crypto/hisilicon/hpre/hpre_main.c
2025-10-02T15:24:50.6933229Z patching file drivers/crypto/hisilicon/qm.c
2025-10-02T15:24:50.6936109Z patching file drivers/crypto/hisilicon/qm.h
2025-10-02T15:24:50.6937272Z patching file drivers/crypto/hisilicon/sec/sec_algs.c
2025-10-02T15:24:50.6939129Z patching file drivers/crypto/hisilicon/sec/sec_drv.h
2025-10-02T15:24:50.6940151Z patching file drivers/crypto/hisilicon/sec2/sec.h
2025-10-02T15:24:50.6941916Z patching file drivers/crypto/hisilicon/sec2/sec_crypto.c
2025-10-02T15:24:50.6945013Z patching file drivers/crypto/hisilicon/sec2/sec_crypto.h
2025-10-02T15:24:50.6945636Z patching file drivers/crypto/hisilicon/sgl.c
2025-10-02T15:24:50.6946875Z patching file drivers/crypto/hisilicon/zip/zip_crypto.c
2025-10-02T15:24:50.6948549Z patching file drivers/crypto/img-hash.c
2025-10-02T15:24:50.6950833Z patching file drivers/crypto/inside-secure/safexcel.c
2025-10-02T15:24:50.6953777Z patching file drivers/crypto/inside-secure/safexcel_hash.c
2025-10-02T15:24:50.6956644Z patching file drivers/crypto/ixp4xx_crypto.c
2025-10-02T15:24:50.6958709Z patching file drivers/crypto/marvell/cesa/cesa.c
2025-10-02T15:24:50.6960037Z patching file drivers/crypto/marvell/cesa/cesa.h
2025-10-02T15:24:50.6961911Z patching file drivers/crypto/marvell/cesa/cipher.c
2025-10-02T15:24:50.6963759Z patching file drivers/crypto/marvell/cesa/hash.c
2025-10-02T15:24:50.6965679Z patching file drivers/crypto/marvell/cesa/tdma.c
2025-10-02T15:24:50.6967526Z patching file drivers/crypto/marvell/octeontx/otx_cptpf_ucode.c
2025-10-02T15:24:50.6969772Z patching file drivers/crypto/mxs-dcp.c
2025-10-02T15:24:50.6972411Z patching file drivers/crypto/n2_core.c
2025-10-02T15:24:50.6974428Z patching file drivers/crypto/nx/Makefile
2025-10-02T15:24:50.6975361Z patching file drivers/crypto/nx/nx-842-pseries.c
2025-10-02T15:24:50.6977135Z patching file drivers/crypto/nx/nx-aes-ctr.c
2025-10-02T15:24:50.6978044Z patching file drivers/crypto/nx/nx-common-powernv.c
2025-10-02T15:24:50.6979645Z patching file drivers/crypto/nx/nx.h
2025-10-02T15:24:50.6980881Z patching file drivers/crypto/omap-aes.c
2025-10-02T15:24:50.6983055Z patching file drivers/crypto/omap-des.c
2025-10-02T15:24:50.6985117Z patching file drivers/crypto/omap-sham.c
2025-10-02T15:24:50.6987459Z patching file drivers/crypto/qat/qat_c3xxx/adf_c3xxx_hw_data.c
2025-10-02T15:24:50.6988368Z patching file drivers/crypto/qat/qat_c3xxx/adf_c3xxx_hw_data.h
2025-10-02T15:24:50.6989098Z patching file drivers/crypto/qat/qat_c3xxx/adf_drv.c
2025-10-02T15:24:50.6990319Z patching file drivers/crypto/qat/qat_c3xxxvf/adf_c3xxxvf_hw_data.c
2025-10-02T15:24:50.6991252Z patching file drivers/crypto/qat/qat_c3xxxvf/adf_drv.c
2025-10-02T15:24:50.6992317Z patching file drivers/crypto/qat/qat_c62x/adf_c62x_hw_data.c
2025-10-02T15:24:50.6993348Z patching file drivers/crypto/qat/qat_c62x/adf_c62x_hw_data.h
2025-10-02T15:24:50.6994121Z patching file drivers/crypto/qat/qat_c62x/adf_drv.c
2025-10-02T15:24:50.6995168Z patching file drivers/crypto/qat/qat_c62xvf/adf_c62xvf_hw_data.c
2025-10-02T15:24:50.6996027Z patching file drivers/crypto/qat/qat_c62xvf/adf_drv.c
2025-10-02T15:24:50.6997128Z patching file drivers/crypto/qat/qat_common/adf_accel_devices.h
2025-10-02T15:24:50.6998127Z patching file drivers/crypto/qat/qat_common/adf_aer.c
2025-10-02T15:24:50.6999317Z patching file drivers/crypto/qat/qat_common/adf_common_drv.h
2025-10-02T15:24:50.7000583Z patching file drivers/crypto/qat/qat_common/adf_init.c
2025-10-02T15:24:50.7001711Z patching file drivers/crypto/qat/qat_common/adf_isr.c
2025-10-02T15:24:50.7002996Z patching file drivers/crypto/qat/qat_common/adf_pf2vf_msg.c
2025-10-02T15:24:50.7004814Z patching file drivers/crypto/qat/qat_common/adf_transport.c
2025-10-02T15:24:50.7005750Z patching file drivers/crypto/qat/qat_common/adf_transport_debug.c
2025-10-02T15:24:50.7006748Z patching file drivers/crypto/qat/qat_common/adf_vf2pf_msg.c
2025-10-02T15:24:50.7007727Z patching file drivers/crypto/qat/qat_common/adf_vf_isr.c
2025-10-02T15:24:50.7009727Z patching file drivers/crypto/qat/qat_common/qat_algs.c
2025-10-02T15:24:50.7012129Z patching file drivers/crypto/qat/qat_common/qat_crypto.c
2025-10-02T15:24:50.7012905Z patching file drivers/crypto/qat/qat_common/qat_crypto.h
2025-10-02T15:24:50.7014156Z patching file drivers/crypto/qat/qat_common/qat_hal.c
2025-10-02T15:24:50.7016986Z patching file drivers/crypto/qat/qat_common/qat_uclo.c
2025-10-02T15:24:50.7018906Z patching file drivers/crypto/qat/qat_dh895xcc/adf_dh895xcc_hw_data.c
2025-10-02T15:24:50.7019824Z patching file drivers/crypto/qat/qat_dh895xcc/adf_drv.c
2025-10-02T15:24:50.7020943Z patching file drivers/crypto/qat/qat_dh895xccvf/adf_dh895xccvf_hw_data.c
2025-10-02T15:24:50.7021774Z patching file drivers/crypto/qat/qat_dh895xccvf/adf_drv.c
2025-10-02T15:24:50.7022773Z patching file drivers/crypto/qce/core.c
2025-10-02T15:24:50.7023859Z patching file drivers/crypto/qce/sha.c
2025-10-02T15:24:50.7025012Z patching file drivers/crypto/qce/skcipher.c
2025-10-02T15:24:50.7026510Z patching file drivers/crypto/qcom-rng.c
2025-10-02T15:24:50.7027618Z patching file drivers/crypto/rockchip/rk3288_crypto.c
2025-10-02T15:24:50.7029441Z patching file drivers/crypto/rockchip/rk3288_crypto.h
2025-10-02T15:24:50.7030638Z patching file drivers/crypto/rockchip/rk3288_crypto_ahash.c
2025-10-02T15:24:50.7032824Z patching file drivers/crypto/rockchip/rk3288_crypto_skcipher.c
2025-10-02T15:24:50.7036157Z patching file drivers/crypto/s5p-sss.c
2025-10-02T15:24:50.7038767Z patching file drivers/crypto/sa2ul.c
2025-10-02T15:24:50.7041795Z patching file drivers/crypto/sahara.c
2025-10-02T15:24:50.7044891Z patching file drivers/crypto/stm32/stm32-crc32.c
2025-10-02T15:24:50.7046715Z patching file drivers/crypto/stm32/stm32-cryp.c
2025-10-02T15:24:50.7051661Z patching file drivers/crypto/stm32/stm32-hash.c
2025-10-02T15:24:50.7054283Z patching file drivers/crypto/talitos.c
2025-10-02T15:24:50.7057531Z patching file drivers/crypto/talitos.h
2025-10-02T15:24:50.7059190Z patching file drivers/crypto/ux500/hash/hash_core.c
2025-10-02T15:24:50.7061406Z patching file drivers/crypto/virtio/Kconfig
2025-10-02T15:24:50.7061847Z patching file drivers/crypto/virtio/Makefile
2025-10-02T15:24:50.7062802Z patching file drivers/crypto/virtio/virtio_crypto_akcipher_algs.c
2025-10-02T15:24:50.7065602Z patching file drivers/crypto/virtio/virtio_crypto_algs.c
2025-10-02T15:24:50.7067380Z patching file drivers/crypto/virtio/virtio_crypto_common.h
2025-10-02T15:24:50.7068348Z patching file drivers/crypto/virtio/virtio_crypto_core.c
2025-10-02T15:24:50.7070343Z patching file drivers/crypto/virtio/virtio_crypto_mgr.c
2025-10-02T15:24:50.7071365Z patching file drivers/crypto/vmx/Kconfig
2025-10-02T15:24:50.7072358Z patching file drivers/crypto/xilinx/zynqmp-aes-gcm.c
2025-10-02T15:24:50.7073826Z patching file drivers/dax/bus.c
2025-10-02T15:24:50.7076168Z patching file drivers/dax/dax-private.h
2025-10-02T15:24:50.7076742Z patching file drivers/dax/hmem/device.c
2025-10-02T15:24:50.7077469Z patching file drivers/dax/kmem.c
2025-10-02T15:24:50.7078571Z patching file drivers/dax/super.c
2025-10-02T15:24:50.7080697Z patching file drivers/devfreq/devfreq.c
2025-10-02T15:24:50.7083372Z patching file drivers/devfreq/event/exynos-ppmu.c
2025-10-02T15:24:50.7084421Z patching file drivers/devfreq/event/rockchip-dfi.c
2025-10-02T15:24:50.7085363Z patching file drivers/devfreq/governor_userspace.c
2025-10-02T15:24:50.7086454Z patching file drivers/devfreq/rk3399_dmc.c
2025-10-02T15:24:50.7087569Z patching file drivers/dio/dio.c
2025-10-02T15:24:50.7088764Z patching file drivers/dma-buf/Kconfig
2025-10-02T15:24:50.7090084Z patching file drivers/dma-buf/dma-buf.c
2025-10-02T15:24:50.7092174Z patching file drivers/dma-buf/dma-fence-array.c
2025-10-02T15:24:50.7092867Z patching file drivers/dma-buf/dma-heap.c
2025-10-02T15:24:50.7094226Z patching file drivers/dma-buf/dma-resv.c
2025-10-02T15:24:50.7095752Z patching file drivers/dma-buf/heaps/heap-helpers.c
2025-10-02T15:24:50.7097571Z patching file drivers/dma-buf/sw_sync.c
2025-10-02T15:24:50.7098545Z patching file drivers/dma-buf/sync_debug.c
2025-10-02T15:24:50.7099716Z patching file drivers/dma-buf/sync_file.c
2025-10-02T15:24:50.7100995Z patching file drivers/dma-buf/udmabuf.c
2025-10-02T15:24:50.7102873Z patching file drivers/dma/Kconfig
2025-10-02T15:24:50.7104432Z patching file drivers/dma/acpi-dma.c
2025-10-02T15:24:50.7106208Z patching file drivers/dma/at_hdmac.c
2025-10-02T15:24:50.7109079Z patching file drivers/dma/at_hdmac_regs.h
2025-10-02T15:24:50.7110888Z patching file drivers/dma/at_xdmac.c
2025-10-02T15:24:50.7113976Z patching file drivers/dma/bestcomm/ata.c
2025-10-02T15:24:50.7114773Z patching file drivers/dma/bestcomm/bestcomm.c
2025-10-02T15:24:50.7116235Z patching file drivers/dma/bestcomm/fec.c
2025-10-02T15:24:50.7117101Z patching file drivers/dma/bestcomm/gen_bd.c
2025-10-02T15:24:50.7118687Z patching file drivers/dma/dma-axi-dmac.c
2025-10-02T15:24:50.7120736Z patching file drivers/dma/dmaengine.c
2025-10-02T15:24:50.7122813Z patching file drivers/dma/dmaengine.h
2025-10-02T15:24:50.7123678Z patching file drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c
2025-10-02T15:24:50.7125879Z patching file drivers/dma/dw-edma/dw-edma-core.c
2025-10-02T15:24:50.7127483Z patching file drivers/dma/dw/Kconfig
2025-10-02T15:24:50.7127957Z patching file drivers/dma/dw/acpi.c
2025-10-02T15:24:50.7129759Z patching file drivers/dma/dw/core.c
2025-10-02T15:24:50.7131898Z patching file drivers/dma/dw/internal.h
2025-10-02T15:24:50.7132374Z patching file drivers/dma/dw/pci.c
2025-10-02T15:24:50.7133648Z patching file drivers/dma/fsl-dpaa2-qdma/dpaa2-qdma.c
2025-10-02T15:24:50.7135812Z patching file drivers/dma/fsl-qdma.c
2025-10-02T15:24:50.7138210Z patching file drivers/dma/fsldma.c
2025-10-02T15:24:50.7140110Z patching file drivers/dma/hisi_dma.c
2025-10-02T15:24:50.7141666Z patching file drivers/dma/hsu/pci.c
2025-10-02T15:24:50.7142567Z patching file drivers/dma/idma64.c
2025-10-02T15:24:50.7144140Z patching file drivers/dma/idxd/cdev.c
2025-10-02T15:24:50.7145898Z patching file drivers/dma/idxd/device.c
2025-10-02T15:24:50.7147458Z patching file drivers/dma/idxd/dma.c
2025-10-02T15:24:50.7148721Z patching file drivers/dma/idxd/idxd.h
2025-10-02T15:24:50.7150525Z patching file drivers/dma/idxd/init.c
2025-10-02T15:24:50.7151500Z patching file drivers/dma/idxd/irq.c
2025-10-02T15:24:50.7152633Z patching file drivers/dma/idxd/submit.c
2025-10-02T15:24:50.7156037Z patching file drivers/dma/idxd/sysfs.c
2025-10-02T15:24:50.7158363Z patching file drivers/dma/imx-dma.c
2025-10-02T15:24:50.7160739Z patching file drivers/dma/imx-sdma.c
2025-10-02T15:24:50.7163275Z patching file drivers/dma/ioat/dma.c
2025-10-02T15:24:50.7165028Z patching file drivers/dma/ioat/init.c
2025-10-02T15:24:50.7167214Z patching file drivers/dma/ioat/registers.h
2025-10-02T15:24:50.7168066Z patching file drivers/dma/mcf-edma.c
2025-10-02T15:24:50.7169786Z patching file drivers/dma/mediatek/mtk-cqdma.c
2025-10-02T15:24:50.7171668Z patching file drivers/dma/mediatek/mtk-hsdma.c
2025-10-02T15:24:50.7172832Z patching file drivers/dma/mediatek/mtk-uart-apdma.c
2025-10-02T15:24:50.7174901Z patching file drivers/dma/milbeaut-xdmac.c
2025-10-02T15:24:50.7175862Z patching file drivers/dma/mmp_pdma.c
2025-10-02T15:24:50.7178178Z patching file drivers/dma/mv_xor.c
2025-10-02T15:24:50.7180630Z patching file drivers/dma/mv_xor_v2.c
2025-10-02T15:24:50.7182026Z patching file drivers/dma/mxs-dma.c
2025-10-02T15:24:50.7184094Z patching file drivers/dma/nbpfaxi.c
2025-10-02T15:24:50.7185743Z patching file drivers/dma/of-dma.c
2025-10-02T15:24:50.7186930Z patching file drivers/dma/owl-dma.c
2025-10-02T15:24:50.7189610Z patching file drivers/dma/pl330.c
2025-10-02T15:24:50.7193034Z patching file drivers/dma/plx_dma.c
2025-10-02T15:24:50.7195099Z patching file drivers/dma/pxa_dma.c
2025-10-02T15:24:50.7196991Z patching file drivers/dma/qcom/Kconfig
2025-10-02T15:24:50.7197633Z patching file drivers/dma/qcom/bam_dma.c
2025-10-02T15:24:50.7199865Z patching file drivers/dma/qcom/hidma_mgmt.c
2025-10-02T15:24:50.7200786Z patching file drivers/dma/sf-pdma/Kconfig
2025-10-02T15:24:50.7201667Z patching file drivers/dma/sf-pdma/sf-pdma.c
2025-10-02T15:24:50.7203940Z patching file drivers/dma/sh/rcar-dmac.c
2025-10-02T15:24:50.7206190Z patching file drivers/dma/sh/shdma.h
2025-10-02T15:24:50.7207189Z patching file drivers/dma/sh/usb-dmac.c
2025-10-02T15:24:50.7208265Z patching file drivers/dma/sprd-dma.c
2025-10-02T15:24:50.7210485Z patching file drivers/dma/st_fdma.c
2025-10-02T15:24:50.7212810Z patching file drivers/dma/ste_dma40.c
2025-10-02T15:24:50.7215959Z patching file drivers/dma/stm32-dma.c
2025-10-02T15:24:50.7217901Z patching file drivers/dma/stm32-dmamux.c
2025-10-02T15:24:50.7219343Z patching file drivers/dma/stm32-mdma.c
2025-10-02T15:24:50.7222529Z patching file drivers/dma/tegra20-apb-dma.c
2025-10-02T15:24:50.7224606Z patching file drivers/dma/tegra210-adma.c
2025-10-02T15:24:50.7226081Z patching file drivers/dma/ti/dma-crossbar.c
2025-10-02T15:24:50.7227906Z patching file drivers/dma/ti/edma.c
2025-10-02T15:24:50.7230562Z patching file drivers/dma/ti/k3-udma-private.c
2025-10-02T15:24:50.7232242Z patching file drivers/dma/ti/k3-udma.c
2025-10-02T15:24:50.7235367Z patching file drivers/dma/uniphier-xdmac.c
2025-10-02T15:24:50.7237356Z patching file drivers/dma/xilinx/xilinx_dma.c
2025-10-02T15:24:50.7240882Z patching file drivers/dma/xilinx/xilinx_dpdma.c
2025-10-02T15:24:50.7243495Z patching file drivers/dma/xilinx/zynqmp_dma.c
2025-10-02T15:24:50.7245135Z patching file drivers/edac/Makefile
2025-10-02T15:24:50.7246491Z patching file drivers/edac/altera_edac.c
2025-10-02T15:24:50.7248931Z patching file drivers/edac/altera_edac.h
2025-10-02T15:24:50.7251044Z patching file drivers/edac/amd64_edac.c
2025-10-02T15:24:50.7254467Z patching file drivers/edac/armada_xp_edac.c
2025-10-02T15:24:50.7255328Z patching file drivers/edac/bluefield_edac.c
2025-10-02T15:24:50.7256554Z patching file drivers/edac/dmc520_edac.c
2025-10-02T15:24:50.7258193Z patching file drivers/edac/edac_device.c
2025-10-02T15:24:50.7260101Z patching file drivers/edac/edac_mc.c
2025-10-02T15:24:50.7261714Z patching file drivers/edac/edac_module.h
2025-10-02T15:24:50.7262614Z patching file drivers/edac/fsl_ddr_edac.c
2025-10-02T15:24:50.7264219Z patching file drivers/edac/ghes_edac.c
2025-10-02T15:24:50.7265369Z patching file drivers/edac/highbank_mc_edac.c
2025-10-02T15:24:50.7266383Z patching file drivers/edac/i10nm_base.c
2025-10-02T15:24:50.7268093Z patching file drivers/edac/ie31200_edac.c
2025-10-02T15:24:50.7270047Z patching file drivers/edac/mce_amd.c
2025-10-02T15:24:50.7272232Z patching file drivers/edac/pnd2_edac.c
2025-10-02T15:24:50.7274046Z patching file drivers/edac/qcom_edac.c
2025-10-02T15:24:50.7276068Z patching file drivers/edac/sb_edac.c
2025-10-02T15:24:50.7278883Z patching file drivers/edac/skx_base.c
2025-10-02T15:24:50.7280305Z patching file drivers/edac/skx_common.c
2025-10-02T15:24:50.7282568Z patching file drivers/edac/skx_common.h
2025-10-02T15:24:50.7283651Z patching file drivers/edac/synopsys_edac.c
2025-10-02T15:24:50.7286252Z patching file drivers/edac/thunderx_edac.c
2025-10-02T15:24:50.7288348Z patching file drivers/edac/ti_edac.c
2025-10-02T15:24:50.7290099Z patching file drivers/edac/xgene_edac.c
2025-10-02T15:24:50.7292230Z patching file drivers/extcon/Kconfig
2025-10-02T15:24:50.7293391Z patching file drivers/extcon/extcon-arizona.c
2025-10-02T15:24:50.7295781Z patching file drivers/extcon/extcon-intel-mrfld.c
2025-10-02T15:24:50.7296806Z patching file drivers/extcon/extcon-max77693.c
2025-10-02T15:24:50.7298864Z patching file drivers/extcon/extcon-max8997.c
2025-10-02T15:24:50.7300129Z patching file drivers/extcon/extcon-ptn5150.c
2025-10-02T15:24:50.7301331Z patching file drivers/extcon/extcon-sm5502.c
2025-10-02T15:24:50.7303031Z patching file drivers/extcon/extcon.c
2025-10-02T15:24:50.7305073Z patching file drivers/firewire/core-card.c
2025-10-02T15:24:50.7306890Z patching file drivers/firewire/core-cdev.c
2025-10-02T15:24:50.7309126Z patching file drivers/firewire/core-device.c
2025-10-02T15:24:50.7311033Z patching file drivers/firewire/core-topology.c
2025-10-02T15:24:50.7312510Z patching file drivers/firewire/core-transaction.c
2025-10-02T15:24:50.7314473Z patching file drivers/firewire/nosy.c
2025-10-02T15:24:50.7316772Z patching file drivers/firewire/ohci.c
2025-10-02T15:24:50.7320087Z patching file drivers/firewire/sbp2.c
2025-10-02T15:24:50.7322161Z patching file drivers/firmware/Kconfig
2025-10-02T15:24:50.7323183Z patching file drivers/firmware/arm_scmi/base.c
2025-10-02T15:24:50.7324193Z patching file drivers/firmware/arm_scmi/bus.c
2025-10-02T15:24:50.7325140Z patching file drivers/firmware/arm_scmi/clock.c
2025-10-02T15:24:50.7326168Z patching file drivers/firmware/arm_scmi/common.h
2025-10-02T15:24:50.7327404Z patching file drivers/firmware/arm_scmi/driver.c
2025-10-02T15:24:50.7329686Z patching file drivers/firmware/arm_scmi/mailbox.c
2025-10-02T15:24:50.7330890Z patching file drivers/firmware/arm_scmi/notify.c
2025-10-02T15:24:50.7332943Z patching file drivers/firmware/arm_scmi/reset.c
2025-10-02T15:24:50.7333675Z patching file drivers/firmware/arm_scmi/scmi_pm_domain.c
2025-10-02T15:24:50.7334553Z patching file drivers/firmware/arm_scmi/shmem.c
2025-10-02T15:24:50.7335660Z patching file drivers/firmware/arm_scpi.c
2025-10-02T15:24:50.7337931Z patching file drivers/firmware/arm_sdei.c
2025-10-02T15:24:50.7340266Z patching file drivers/firmware/broadcom/tee_bnxt_fw.c
2025-10-02T15:24:50.7341110Z patching file drivers/firmware/dmi-id.c
2025-10-02T15:24:50.7342194Z patching file drivers/firmware/dmi-sysfs.c
2025-10-02T15:24:50.7343917Z patching file drivers/firmware/dmi_scan.c
2025-10-02T15:24:50.7345524Z patching file drivers/firmware/efi/apple-properties.c
2025-10-02T15:24:50.7346576Z patching file drivers/firmware/efi/arm-runtime.c
2025-10-02T15:24:50.7347308Z patching file drivers/firmware/efi/capsule-loader.c
2025-10-02T15:24:50.7348808Z patching file drivers/firmware/efi/cper.c
2025-10-02T15:24:50.7350494Z patching file drivers/firmware/efi/efi-init.c
2025-10-02T15:24:50.7351594Z patching file drivers/firmware/efi/efi-pstore.c
2025-10-02T15:24:50.7352788Z patching file drivers/firmware/efi/efi.c
2025-10-02T15:24:50.7354905Z patching file drivers/firmware/efi/fdtparams.c
2025-10-02T15:24:50.7355608Z patching file drivers/firmware/efi/libstub/Makefile
2025-10-02T15:24:50.7356561Z patching file drivers/firmware/efi/libstub/arm64-stub.c
2025-10-02T15:24:50.7357997Z patching file drivers/firmware/efi/libstub/efi-stub.c
2025-10-02T15:24:50.7359126Z patching file drivers/firmware/efi/libstub/efistub.h
2025-10-02T15:24:50.7360643Z patching file drivers/firmware/efi/libstub/fdt.c
2025-10-02T15:24:50.7361627Z patching file drivers/firmware/efi/libstub/file.c
2025-10-02T15:24:50.7362553Z patching file drivers/firmware/efi/libstub/random.c
2025-10-02T15:24:50.7363654Z patching file drivers/firmware/efi/libstub/randomalloc.c
2025-10-02T15:24:50.7364616Z patching file drivers/firmware/efi/libstub/relocate.c
2025-10-02T15:24:50.7365538Z patching file drivers/firmware/efi/libstub/riscv-stub.c
2025-10-02T15:24:50.7366433Z patching file drivers/firmware/efi/libstub/secureboot.c
2025-10-02T15:24:50.7367307Z patching file drivers/firmware/efi/libstub/tpm.c
2025-10-02T15:24:50.7368378Z patching file drivers/firmware/efi/libstub/x86-stub.c
2025-10-02T15:24:50.7369988Z patching file drivers/firmware/efi/memattr.c
2025-10-02T15:24:50.7370909Z patching file drivers/firmware/efi/memmap.c
2025-10-02T15:24:50.7372741Z patching file drivers/firmware/efi/mokvar-table.c
2025-10-02T15:24:50.7373738Z patching file drivers/firmware/efi/riscv-runtime.c
2025-10-02T15:24:50.7374710Z patching file drivers/firmware/efi/runtime-wrappers.c
2025-10-02T15:24:50.7375786Z patching file drivers/firmware/efi/tpm.c
2025-10-02T15:24:50.7377183Z patching file drivers/firmware/efi/vars.c
2025-10-02T15:24:50.7379038Z patching file drivers/firmware/google/Kconfig
2025-10-02T15:24:50.7379796Z patching file drivers/firmware/google/coreboot_table.c
2025-10-02T15:24:50.7381002Z patching file drivers/firmware/google/framebuffer-coreboot.c
2025-10-02T15:24:50.7381919Z patching file drivers/firmware/google/gsmi.c
2025-10-02T15:24:50.7383731Z patching file drivers/firmware/imx/Kconfig
2025-10-02T15:24:50.7384232Z patching file drivers/firmware/imx/imx-scu.c
2025-10-02T15:24:50.7385492Z patching file drivers/firmware/iscsi_ibft.c
2025-10-02T15:24:50.7387074Z patching file drivers/firmware/meson/meson_sm.c
2025-10-02T15:24:50.7388008Z patching file drivers/firmware/psci/psci.c
2025-10-02T15:24:50.7389189Z patching file drivers/firmware/psci/psci_checker.c
2025-10-02T15:24:50.7390483Z patching file drivers/firmware/qcom_scm-smc.c
2025-10-02T15:24:50.7391658Z patching file drivers/firmware/qcom_scm.c
2025-10-02T15:24:50.7393912Z patching file drivers/firmware/qcom_scm.h
2025-10-02T15:24:50.7394756Z patching file drivers/firmware/qemu_fw_cfg.c
2025-10-02T15:24:50.7396624Z patching file drivers/firmware/raspberrypi.c
2025-10-02T15:24:50.7398244Z patching file drivers/firmware/scpi_pm_domain.c
2025-10-02T15:24:50.7399037Z patching file drivers/firmware/smccc/soc_id.c
2025-10-02T15:24:50.7400337Z patching file drivers/firmware/stratix10-svc.c
2025-10-02T15:24:50.7402275Z patching file drivers/firmware/tegra/Makefile
2025-10-02T15:24:50.7402855Z patching file drivers/firmware/tegra/bpmp-debugfs.c
2025-10-02T15:24:50.7404216Z patching file drivers/firmware/tegra/bpmp-private.h
2025-10-02T15:24:50.7405002Z patching file drivers/firmware/tegra/bpmp-tegra210.c
2025-10-02T15:24:50.7406010Z patching file drivers/firmware/tegra/bpmp.c
2025-10-02T15:24:50.7408483Z patching file drivers/firmware/ti_sci.c
2025-10-02T15:24:50.7411547Z patching file drivers/firmware/turris-mox-rwtm.c
2025-10-02T15:24:50.7413381Z patching file drivers/firmware/xilinx/zynqmp.c
2025-10-02T15:24:50.7415450Z patching file drivers/fpga/altera-cvp.c
2025-10-02T15:24:50.7416344Z patching file drivers/fpga/altera-pr-ip-core.c
2025-10-02T15:24:50.7417437Z patching file drivers/fpga/dfl-fme-perf.c
2025-10-02T15:24:50.7419056Z patching file drivers/fpga/dfl-fme-region.c
2025-10-02T15:24:50.7420024Z patching file drivers/fpga/dfl-pci.c
2025-10-02T15:24:50.7421773Z patching file drivers/fpga/dfl.c
2025-10-02T15:24:50.7423842Z patching file drivers/fpga/fpga-bridge.c
2025-10-02T15:24:50.7424798Z patching file drivers/fpga/fpga-region.c
2025-10-02T15:24:50.7426708Z patching file drivers/fpga/machxo2-spi.c
2025-10-02T15:24:50.7427795Z patching file drivers/fpga/of-fpga-region.c
2025-10-02T15:24:50.7428836Z patching file drivers/fpga/stratix10-soc.c
2025-10-02T15:24:50.7430091Z patching file drivers/fpga/xilinx-spi.c
2025-10-02T15:24:50.7431358Z patching file drivers/fpga/zynq-fpga.c
2025-10-02T15:24:50.7433155Z patching file drivers/fsi/fsi-core.c
2025-10-02T15:24:50.7434948Z patching file drivers/fsi/fsi-master-aspeed.c
2025-10-02T15:24:50.7437060Z patching file drivers/fsi/fsi-master-ast-cf.c
2025-10-02T15:24:50.7438917Z patching file drivers/fsi/fsi-master-gpio.c
2025-10-02T15:24:50.7440072Z patching file drivers/fsi/fsi-occ.c
2025-10-02T15:24:50.7441874Z patching file drivers/fsi/fsi-sbefifo.c
2025-10-02T15:24:50.7443713Z patching file drivers/fsi/fsi-scom.c
2025-10-02T15:24:50.7445436Z patching file drivers/gpio/Kconfig
2025-10-02T15:24:50.7447413Z patching file drivers/gpio/gpio-74x164.c
2025-10-02T15:24:50.7448262Z patching file drivers/gpio/gpio-aggregator.c
2025-10-02T15:24:50.7450201Z patching file drivers/gpio/gpio-amd8111.c
2025-10-02T15:24:50.7451358Z patching file drivers/gpio/gpio-aspeed.c
2025-10-02T15:24:50.7454078Z patching file drivers/gpio/gpio-bcm-kona.c
2025-10-02T15:24:50.7455784Z patching file drivers/gpio/gpio-cadence.c
2025-10-02T15:24:50.7456687Z patching file drivers/gpio/gpio-crystalcove.c
2025-10-02T15:24:50.7457823Z patching file drivers/gpio/gpio-davinci.c
2025-10-02T15:24:50.7459685Z patching file drivers/gpio/gpio-dln2.c
2025-10-02T15:24:50.7461056Z patching file drivers/gpio/gpio-dwapb.c
2025-10-02T15:24:50.7462730Z patching file drivers/gpio/gpio-eic-sprd.c
2025-10-02T15:24:50.7464514Z patching file drivers/gpio/gpio-ep93xx.c
2025-10-02T15:24:50.7466907Z patching file drivers/gpio/gpio-grgpio.c
2025-10-02T15:24:50.7468117Z patching file drivers/gpio/gpio-mlxbf2.c
2025-10-02T15:24:50.7469249Z patching file drivers/gpio/gpio-mockup.c
2025-10-02T15:24:50.7471147Z patching file drivers/gpio/gpio-mpc8xxx.c
2025-10-02T15:24:50.7472571Z patching file drivers/gpio/gpio-mvebu.c
2025-10-02T15:24:50.7474638Z patching file drivers/gpio/gpio-mxc.c
2025-10-02T15:24:50.7476261Z patching file drivers/gpio/gpio-omap.c
2025-10-02T15:24:50.7478507Z patching file drivers/gpio/gpio-pca953x.c
2025-10-02T15:24:50.7481186Z patching file drivers/gpio/gpio-pcf857x.c
2025-10-02T15:24:50.7482191Z patching file drivers/gpio/gpio-pmic-eic-sprd.c
2025-10-02T15:24:50.7483668Z patching file drivers/gpio/gpio-pxa.c
2025-10-02T15:24:50.7485149Z patching file drivers/gpio/gpio-rcar.c
2025-10-02T15:24:50.7486767Z patching file drivers/gpio/gpio-sifive.c
2025-10-02T15:24:50.7487837Z patching file drivers/gpio/gpio-stmpe.c
2025-10-02T15:24:50.7489223Z patching file drivers/gpio/gpio-tb10x.c
2025-10-02T15:24:50.7490553Z patching file drivers/gpio/gpio-tegra186.c
2025-10-02T15:24:50.7492372Z patching file drivers/gpio/gpio-timberdale.c
2025-10-02T15:24:50.7493119Z patching file drivers/gpio/gpio-tps65912.c
2025-10-02T15:24:50.7494017Z patching file drivers/gpio/gpio-tps68470.c
2025-10-02T15:24:50.7495252Z patching file drivers/gpio/gpio-tqmx86.c
2025-10-02T15:24:50.7496678Z patching file drivers/gpio/gpio-ts4900.c
2025-10-02T15:24:50.7497823Z patching file drivers/gpio/gpio-uniphier.c
2025-10-02T15:24:50.7499037Z patching file drivers/gpio/gpio-vf610.c
2025-10-02T15:24:50.7500462Z patching file drivers/gpio/gpio-vr41xx.c
2025-10-02T15:24:50.7501416Z patching file drivers/gpio/gpio-wcd934x.c
2025-10-02T15:24:50.7502590Z patching file drivers/gpio/gpio-wcove.c
2025-10-02T15:24:50.7511611Z patching file drivers/gpio/gpio-winbond.c
2025-10-02T15:24:50.7512087Z patching file drivers/gpio/gpio-xgs-iproc.c
2025-10-02T15:24:50.7512450Z patching file drivers/gpio/gpio-zynq.c
2025-10-02T15:24:50.7512819Z patching file drivers/gpio/gpiolib-acpi.c
2025-10-02T15:24:50.7513176Z patching file drivers/gpio/gpiolib-cdev.c
2025-10-02T15:24:50.7515753Z patching file drivers/gpio/gpiolib-of.c
2025-10-02T15:24:50.7517514Z patching file drivers/gpio/gpiolib-sysfs.c
2025-10-02T15:24:50.7520230Z patching file drivers/gpio/gpiolib.c
2025-10-02T15:24:50.7524354Z patching file drivers/gpu/drm/Kconfig
2025-10-02T15:24:50.7525842Z patching file drivers/gpu/drm/amd/amdgpu/ObjectID.h
2025-10-02T15:24:50.7527978Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu.h
2025-10-02T15:24:50.7530207Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c
2025-10-02T15:24:50.7532009Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.c
2025-10-02T15:24:50.7533509Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.c
2025-10-02T15:24:50.7534580Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
2025-10-02T15:24:50.7536476Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
2025-10-02T15:24:50.7538408Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.c
2025-10-02T15:24:50.7539636Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.c
2025-10-02T15:24:50.7542041Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.c
2025-10-02T15:24:50.7544924Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.c
2025-10-02T15:24:50.7547145Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_bios.c
2025-10-02T15:24:50.7548272Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.c
2025-10-02T15:24:50.7550644Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.h
2025-10-02T15:24:50.7551290Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.c
2025-10-02T15:24:50.7553167Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.c
2025-10-02T15:24:50.7555690Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
2025-10-02T15:24:50.7557609Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.c
2025-10-02T15:24:50.7559246Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.c
2025-10-02T15:24:50.7562594Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
2025-10-02T15:24:50.7566423Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c
2025-10-02T15:24:50.7568035Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_display.c
2025-10-02T15:24:50.7569752Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.c
2025-10-02T15:24:50.7571536Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
2025-10-02T15:24:50.7573680Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_fb.c
2025-10-02T15:24:50.7575072Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_fence.c
2025-10-02T15:24:50.7576652Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.c
2025-10-02T15:24:50.7578671Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_gem.c
2025-10-02T15:24:50.7580393Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
2025-10-02T15:24:50.7582024Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.h
2025-10-02T15:24:50.7583143Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c
2025-10-02T15:24:50.7584435Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_i2c.c
2025-10-02T15:24:50.7585592Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
2025-10-02T15:24:50.7586977Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ids.c
2025-10-02T15:24:50.7588392Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_irq.c
2025-10-02T15:24:50.7590236Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
2025-10-02T15:24:50.7592387Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
2025-10-02T15:24:50.7594621Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c
2025-10-02T15:24:50.7596918Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_psp.h
2025-10-02T15:24:50.7598784Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ras.c
2025-10-02T15:24:50.7601720Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.c
2025-10-02T15:24:50.7602697Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c
2025-10-02T15:24:50.7603866Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_sched.c
2025-10-02T15:24:50.7605011Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_sync.c
2025-10-02T15:24:50.7606236Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_trace.h
2025-10-02T15:24:50.7608318Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
2025-10-02T15:24:50.7611013Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.h
2025-10-02T15:24:50.7611939Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.c
2025-10-02T15:24:50.7613553Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_umc.h
2025-10-02T15:24:50.7614499Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.c
2025-10-02T15:24:50.7616582Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_vce.c
2025-10-02T15:24:50.7618295Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c
2025-10-02T15:24:50.7620126Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_virt.h
2025-10-02T15:24:50.7622468Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_vm.c
2025-10-02T15:24:50.7625394Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h
2025-10-02T15:24:50.7626556Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.c
2025-10-02T15:24:50.7628296Z patching file drivers/gpu/drm/amd/amdgpu/amdgpu_xgmi.c
2025-10-02T15:24:50.7630080Z patching file drivers/gpu/drm/amd/amdgpu/atom.c
2025-10-02T15:24:50.7632487Z patching file drivers/gpu/drm/amd/amdgpu/atombios_encoders.c
2025-10-02T15:24:50.7635168Z patching file drivers/gpu/drm/amd/amdgpu/cik.c
2025-10-02T15:24:50.7637422Z patching file drivers/gpu/drm/amd/amdgpu/cz_ih.c
2025-10-02T15:24:50.7639761Z patching file drivers/gpu/drm/amd/amdgpu/dce_v10_0.c
2025-10-02T15:24:50.7643492Z patching file drivers/gpu/drm/amd/amdgpu/dce_v11_0.c
2025-10-02T15:24:50.7647741Z patching file drivers/gpu/drm/amd/amdgpu/dce_v6_0.c
2025-10-02T15:24:50.7651438Z patching file drivers/gpu/drm/amd/amdgpu/dce_v8_0.c
2025-10-02T15:24:50.7654221Z patching file drivers/gpu/drm/amd/amdgpu/df_v1_7.c
2025-10-02T15:24:50.7658686Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
2025-10-02T15:24:50.7665805Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
2025-10-02T15:24:50.7669835Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v7_0.c
2025-10-02T15:24:50.7674843Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c
2025-10-02T15:24:50.7681141Z patching file drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
2025-10-02T15:24:50.7686143Z patching file drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.c
2025-10-02T15:24:50.7687371Z patching file drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c
2025-10-02T15:24:50.7689460Z patching file drivers/gpu/drm/amd/amdgpu/gmc_v6_0.c
2025-10-02T15:24:50.7691639Z patching file drivers/gpu/drm/amd/amdgpu/gmc_v8_0.c
2025-10-02T15:24:50.7694092Z patching file drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
2025-10-02T15:24:50.7696144Z patching file drivers/gpu/drm/amd/amdgpu/iceland_ih.c
2025-10-02T15:24:50.7697324Z patching file drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.c
2025-10-02T15:24:50.7699101Z patching file drivers/gpu/drm/amd/amdgpu/jpeg_v2_5.c
2025-10-02T15:24:50.7700459Z patching file drivers/gpu/drm/amd/amdgpu/jpeg_v3_0.c
2025-10-02T15:24:50.7702093Z patching file drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.c
2025-10-02T15:24:50.7703680Z patching file drivers/gpu/drm/amd/amdgpu/nbio_v7_4.c
2025-10-02T15:24:50.7705030Z patching file drivers/gpu/drm/amd/amdgpu/nv.c
2025-10-02T15:24:50.7706681Z patching file drivers/gpu/drm/amd/amdgpu/psp_gfx_if.h
2025-10-02T15:24:50.7708017Z patching file drivers/gpu/drm/amd/amdgpu/psp_v11_0.c
2025-10-02T15:24:50.7709431Z patching file drivers/gpu/drm/amd/amdgpu/psp_v12_0.c
2025-10-02T15:24:50.7710960Z patching file drivers/gpu/drm/amd/amdgpu/psp_v3_1.c
2025-10-02T15:24:50.7712576Z patching file drivers/gpu/drm/amd/amdgpu/sdma_v4_0.c
2025-10-02T15:24:50.7715314Z patching file drivers/gpu/drm/amd/amdgpu/sdma_v5_0.c
2025-10-02T15:24:50.7717508Z patching file drivers/gpu/drm/amd/amdgpu/sdma_v5_2.c
2025-10-02T15:24:50.7720231Z patching file drivers/gpu/drm/amd/amdgpu/si.c
2025-10-02T15:24:50.7722757Z patching file drivers/gpu/drm/amd/amdgpu/soc15.c
2025-10-02T15:24:50.7724635Z patching file drivers/gpu/drm/amd/amdgpu/tonga_ih.c
2025-10-02T15:24:50.7725908Z patching file drivers/gpu/drm/amd/amdgpu/umc_v8_7.c
2025-10-02T15:24:50.7727368Z patching file drivers/gpu/drm/amd/amdgpu/uvd_v6_0.c
2025-10-02T15:24:50.7729447Z patching file drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c
2025-10-02T15:24:50.7732117Z patching file drivers/gpu/drm/amd/amdgpu/vcn_v2_0.c
2025-10-02T15:24:50.7734560Z patching file drivers/gpu/drm/amd/amdgpu/vcn_v2_5.c
2025-10-02T15:24:50.7736984Z patching file drivers/gpu/drm/amd/amdgpu/vcn_v3_0.c
2025-10-02T15:24:50.7739342Z patching file drivers/gpu/drm/amd/amdgpu/vi.c
2025-10-02T15:24:50.7742098Z patching file drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
2025-10-02T15:24:50.7744518Z patching file drivers/gpu/drm/amd/amdkfd/kfd_crat.c
2025-10-02T15:24:50.7746529Z patching file drivers/gpu/drm/amd/amdkfd/kfd_crat.h
2025-10-02T15:24:50.7747589Z patching file drivers/gpu/drm/amd/amdkfd/kfd_dbgdev.c
2025-10-02T15:24:50.7748864Z patching file drivers/gpu/drm/amd/amdkfd/kfd_debugfs.c
2025-10-02T15:24:50.7750158Z patching file drivers/gpu/drm/amd/amdkfd/kfd_device.c
2025-10-02T15:24:50.7752697Z patching file drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.c
2025-10-02T15:24:50.7755796Z patching file drivers/gpu/drm/amd/amdkfd/kfd_device_queue_manager.h
2025-10-02T15:24:50.7756844Z patching file drivers/gpu/drm/amd/amdkfd/kfd_events.c
2025-10-02T15:24:50.7758523Z patching file drivers/gpu/drm/amd/amdkfd/kfd_iommu.c
2025-10-02T15:24:50.7759695Z patching file drivers/gpu/drm/amd/amdkfd/kfd_iommu.h
2025-10-02T15:24:50.7760647Z patching file drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c
2025-10-02T15:24:50.7761837Z patching file drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.h
2025-10-02T15:24:50.7762855Z patching file drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager_v9.c
2025-10-02T15:24:50.7764125Z patching file drivers/gpu/drm/amd/amdkfd/kfd_packet_manager.c
2025-10-02T15:24:50.7765318Z patching file drivers/gpu/drm/amd/amdkfd/kfd_packet_manager_v9.c
2025-10-02T15:24:50.7766404Z patching file drivers/gpu/drm/amd/amdkfd/kfd_packet_manager_vi.c
2025-10-02T15:24:50.7767853Z patching file drivers/gpu/drm/amd/amdkfd/kfd_priv.h
2025-10-02T15:24:50.7770189Z patching file drivers/gpu/drm/amd/amdkfd/kfd_process.c
2025-10-02T15:24:50.7772432Z patching file drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
2025-10-02T15:24:50.7773410Z patching file drivers/gpu/drm/amd/amdkfd/kfd_smi_events.c
2025-10-02T15:24:50.7775024Z patching file drivers/gpu/drm/amd/amdkfd/kfd_topology.c
2025-10-02T15:24:50.7776910Z patching file drivers/gpu/drm/amd/amdkfd/kfd_topology.h
2025-10-02T15:24:50.7777528Z patching file drivers/gpu/drm/amd/display/Kconfig
2025-10-02T15:24:50.7781121Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
2025-10-02T15:24:50.7788145Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.h
2025-10-02T15:24:50.7789343Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_color.c
2025-10-02T15:24:50.7790932Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
2025-10-02T15:24:50.7792388Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_debugfs.c
2025-10-02T15:24:50.7794921Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_hdcp.c
2025-10-02T15:24:50.7795979Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_hdcp.h
2025-10-02T15:24:50.7796985Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_irq.c
2025-10-02T15:24:50.7799154Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.c
2025-10-02T15:24:50.7800861Z patching file drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_mst_types.h
2025-10-02T15:24:50.7802419Z patching file drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
2025-10-02T15:24:50.7805222Z patching file drivers/gpu/drm/amd/display/dc/bios/bios_parser2.c
2025-10-02T15:24:50.7807811Z patching file drivers/gpu/drm/amd/display/dc/bios/command_table.c
2025-10-02T15:24:50.7810251Z patching file drivers/gpu/drm/amd/display/dc/calcs/Makefile
2025-10-02T15:24:50.7811060Z patching file drivers/gpu/drm/amd/display/dc/calcs/bw_fixed.c
2025-10-02T15:24:50.7811986Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/Makefile
2025-10-02T15:24:50.7813285Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dce100/dce_clk_mgr.c
2025-10-02T15:24:50.7814422Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dce110/dce110_clk_mgr.c
2025-10-02T15:24:50.7815644Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dce60/dce60_clk_mgr.c
2025-10-02T15:24:50.7816844Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dcn20/dcn20_clk_mgr.c
2025-10-02T15:24:50.7818217Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dcn21/rn_clk_mgr.c
2025-10-02T15:24:50.7820297Z patching file drivers/gpu/drm/amd/display/dc/clk_mgr/dcn30/dcn30_clk_mgr.c
2025-10-02T15:24:50.7822406Z patching file drivers/gpu/drm/amd/display/dc/core/dc.c
2025-10-02T15:24:50.7825475Z patching file drivers/gpu/drm/amd/display/dc/core/dc_hw_sequencer.c
2025-10-02T15:24:50.7827203Z patching file drivers/gpu/drm/amd/display/dc/core/dc_link.c
2025-10-02T15:24:50.7831318Z patching file drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
2025-10-02T15:24:50.7835465Z patching file drivers/gpu/drm/amd/display/dc/core/dc_resource.c
2025-10-02T15:24:50.7839793Z patching file drivers/gpu/drm/amd/display/dc/core/dc_stream.c
2025-10-02T15:24:50.7840852Z patching file drivers/gpu/drm/amd/display/dc/core/dc_surface.c
2025-10-02T15:24:50.7841966Z patching file drivers/gpu/drm/amd/display/dc/dc.h
2025-10-02T15:24:50.7843974Z patching file drivers/gpu/drm/amd/display/dc/dc_stream.h
2025-10-02T15:24:50.7845210Z patching file drivers/gpu/drm/amd/display/dc/dc_types.h
2025-10-02T15:24:50.7846859Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_abm.c
2025-10-02T15:24:50.7847536Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_aux.h
2025-10-02T15:24:50.7849092Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_clock_source.c
2025-10-02T15:24:50.7851073Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_dmcu.c
2025-10-02T15:24:50.7852948Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_link_encoder.c
2025-10-02T15:24:50.7854885Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_link_encoder.h
2025-10-02T15:24:50.7856239Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_stream_encoder.c
2025-10-02T15:24:50.7858211Z patching file drivers/gpu/drm/amd/display/dc/dce/dce_transform.c
2025-10-02T15:24:50.7860986Z patching file drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c
2025-10-02T15:24:50.7863590Z patching file drivers/gpu/drm/amd/display/dc/dce120/dce120_resource.c
2025-10-02T15:24:50.7865337Z patching file drivers/gpu/drm/amd/display/dc/dce60/dce60_resource.c
2025-10-02T15:24:50.7867205Z patching file drivers/gpu/drm/amd/display/dc/dce80/dce80_resource.c
2025-10-02T15:24:50.7868721Z patching file drivers/gpu/drm/amd/display/dc/dcn10/Makefile
2025-10-02T15:24:50.7869692Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_cm_common.c
2025-10-02T15:24:50.7871253Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_dpp_dscl.c
2025-10-02T15:24:50.7873534Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.c
2025-10-02T15:24:50.7876558Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_hw_sequencer.h
2025-10-02T15:24:50.7877210Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_init.c
2025-10-02T15:24:50.7878555Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_link_encoder.c
2025-10-02T15:24:50.7880259Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c
2025-10-02T15:24:50.7881718Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_optc.c
2025-10-02T15:24:50.7883710Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_resource.c
2025-10-02T15:24:50.7885927Z patching file drivers/gpu/drm/amd/display/dc/dcn10/dcn10_stream_encoder.c
2025-10-02T15:24:50.7887475Z patching file drivers/gpu/drm/amd/display/dc/dcn20/Makefile
2025-10-02T15:24:50.7888311Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dccg.c
2025-10-02T15:24:50.7889280Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_dwb_scl.c
2025-10-02T15:24:50.7891194Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hubp.c
2025-10-02T15:24:50.7893551Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_hwseq.c
2025-10-02T15:24:50.7896074Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_link_encoder.c
2025-10-02T15:24:50.7897087Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_mpc.c
2025-10-02T15:24:50.7898468Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_optc.c
2025-10-02T15:24:50.7900655Z patching file drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c
2025-10-02T15:24:50.7904235Z patching file drivers/gpu/drm/amd/display/dc/dcn21/Makefile
2025-10-02T15:24:50.7905538Z patching file drivers/gpu/drm/amd/display/dc/dcn21/dcn21_resource.c
2025-10-02T15:24:50.7907803Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_cm_common.c
2025-10-02T15:24:50.7909825Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_dpp.c
2025-10-02T15:24:50.7911467Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_dwb_cm.c
2025-10-02T15:24:50.7913182Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_hubp.c
2025-10-02T15:24:50.7914449Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_hwseq.c
2025-10-02T15:24:50.7916478Z patching file drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c
2025-10-02T15:24:50.7918992Z patching file drivers/gpu/drm/amd/display/dc/dml/Makefile
2025-10-02T15:24:50.7921624Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn20/display_mode_vba_20.c
2025-10-02T15:24:50.7926453Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn20/display_mode_vba_20v2.c
2025-10-02T15:24:50.7930569Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn20/display_rq_dlg_calc_20.c
2025-10-02T15:24:50.7932793Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn20/display_rq_dlg_calc_20v2.c
2025-10-02T15:24:50.7936359Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn21/display_mode_vba_21.c
2025-10-02T15:24:50.7940989Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn21/display_rq_dlg_calc_21.c
2025-10-02T15:24:50.7944866Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn30/display_mode_vba_30.c
2025-10-02T15:24:50.7950053Z patching file drivers/gpu/drm/amd/display/dc/dml/dcn30/display_rq_dlg_calc_30.c
2025-10-02T15:24:50.7952024Z patching file drivers/gpu/drm/amd/display/dc/dml/display_mode_enums.h
2025-10-02T15:24:50.7953016Z patching file drivers/gpu/drm/amd/display/dc/dml/display_mode_structs.h
2025-10-02T15:24:50.7954364Z patching file drivers/gpu/drm/amd/display/dc/dml/display_mode_vba.c
2025-10-02T15:24:50.7956826Z patching file drivers/gpu/drm/amd/display/dc/dml/dml1_display_rq_dlg_calc.c
2025-10-02T15:24:50.7958855Z patching file drivers/gpu/drm/amd/display/dc/dml/dml_inline_defs.h
2025-10-02T15:24:50.7959333Z patching file drivers/gpu/drm/amd/display/dc/dsc/Makefile
2025-10-02T15:24:50.7960829Z patching file drivers/gpu/drm/amd/display/dc/gpio/gpio_service.c
2025-10-02T15:24:50.7962174Z patching file drivers/gpu/drm/amd/display/dc/hdcp/hdcp_msg.c
2025-10-02T15:24:50.7963618Z patching file drivers/gpu/drm/amd/display/dc/inc/hw/transform.h
2025-10-02T15:24:50.7964580Z patching file drivers/gpu/drm/amd/display/dc/inc/hw_sequencer.h
2025-10-02T15:24:50.7970646Z patching file drivers/gpu/drm/amd/display/dc/irq/dce110/irq_service_dce110.c
2025-10-02T15:24:50.7971204Z patching file drivers/gpu/drm/amd/display/dc/irq/dcn21/irq_service_dcn21.c
2025-10-02T15:24:50.7971631Z patching file drivers/gpu/drm/amd/display/dc/irq_types.h
2025-10-02T15:24:50.7972041Z patching file drivers/gpu/drm/amd/display/dc/os_types.h
2025-10-02T15:24:50.7972464Z patching file drivers/gpu/drm/amd/display/dmub/dmub_srv.h
2025-10-02T15:24:50.7972911Z patching file drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c
2025-10-02T15:24:50.8333927Z patching file drivers/gpu/drm/amd/display/include/gpio_service_interface.h
2025-10-02T15:24:50.8335666Z patching file drivers/gpu/drm/amd/display/modules/color/color_gamma.c
2025-10-02T15:24:50.8338504Z patching file drivers/gpu/drm/amd/display/modules/freesync/freesync.c
2025-10-02T15:24:50.8340828Z patching file drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c
2025-10-02T15:24:50.8342522Z patching file drivers/gpu/drm/amd/display/modules/hdcp/hdcp1_execution.c
2025-10-02T15:24:50.8344595Z patching file drivers/gpu/drm/amd/display/modules/hdcp/hdcp_ddc.c
2025-10-02T15:24:50.8345517Z patching file drivers/gpu/drm/amd/display/modules/hdcp/hdcp_psp.c
2025-10-02T15:24:50.8346738Z patching file drivers/gpu/drm/amd/display/modules/inc/mod_stats.h
2025-10-02T15:24:50.8347762Z patching file drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c
2025-10-02T15:24:50.8352787Z patching file drivers/gpu/drm/amd/include/atombios.h
2025-10-02T15:24:50.8359960Z patching file drivers/gpu/drm/amd/include/atomfirmware.h
2025-10-02T15:24:50.8375181Z patching file drivers/gpu/drm/amd/include/discovery.h
2025-10-02T15:24:50.8376299Z patching file drivers/gpu/drm/amd/include/kgd_pp_interface.h
2025-10-02T15:24:50.8376907Z patching file drivers/gpu/drm/amd/include/navi10_enum.h
2025-10-02T15:24:50.8383082Z patching file drivers/gpu/drm/amd/include/pptable.h
2025-10-02T15:24:50.8385219Z patching file drivers/gpu/drm/amd/pm/amdgpu_pm.c
2025-10-02T15:24:50.8388594Z patching file drivers/gpu/drm/amd/pm/inc/amdgpu_smu.h
2025-10-02T15:24:50.8390069Z patching file drivers/gpu/drm/amd/pm/inc/smu_v11_0.h
2025-10-02T15:24:50.8391507Z patching file drivers/gpu/drm/amd/pm/powerplay/amd_powerplay.c
2025-10-02T15:24:50.8393610Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/pp_psm.c
2025-10-02T15:24:50.8394914Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/ppatomctrl.c
2025-10-02T15:24:50.8397059Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/pptable_v1_0.h
2025-10-02T15:24:50.8398965Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/process_pptables_v1_0.c
2025-10-02T15:24:50.8401248Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/processpptables.c
2025-10-02T15:24:50.8403561Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu10_hwmgr.c
2025-10-02T15:24:50.8406809Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_hwmgr.c
2025-10-02T15:24:50.8413031Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu7_thermal.c
2025-10-02T15:24:50.8413531Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu8_hwmgr.c
2025-10-02T15:24:50.8415045Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/smu_helper.c
2025-10-02T15:24:50.8417855Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega10_hwmgr.c
2025-10-02T15:24:50.8424658Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega10_thermal.c
2025-10-02T15:24:50.8426527Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega12_hwmgr.c
2025-10-02T15:24:50.8430727Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega20_hwmgr.c
2025-10-02T15:24:50.8434975Z patching file drivers/gpu/drm/amd/pm/powerplay/hwmgr/vega20_thermal.c
2025-10-02T15:24:50.8436471Z patching file drivers/gpu/drm/amd/pm/powerplay/kv_dpm.c
2025-10-02T15:24:50.8441548Z patching file drivers/gpu/drm/amd/pm/powerplay/si_dpm.c
2025-10-02T15:24:50.8446976Z patching file drivers/gpu/drm/amd/pm/powerplay/smumgr/vega10_smumgr.c
2025-10-02T15:24:50.8448955Z patching file drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
2025-10-02T15:24:50.8451943Z patching file drivers/gpu/drm/amd/pm/swsmu/smu11/arcturus_ppt.c
2025-10-02T15:24:50.8455353Z patching file drivers/gpu/drm/amd/pm/swsmu/smu11/navi10_ppt.c
2025-10-02T15:24:50.8459048Z patching file drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
2025-10-02T15:24:50.8462832Z patching file drivers/gpu/drm/amd/pm/swsmu/smu11/smu_v11_0.c
2025-10-02T15:24:50.8465554Z patching file drivers/gpu/drm/amd/pm/swsmu/smu12/renoir_ppt.c
2025-10-02T15:24:50.8467043Z patching file drivers/gpu/drm/amd/pm/swsmu/smu12/smu_v12_0.c
2025-10-02T15:24:50.8467981Z patching file drivers/gpu/drm/arm/display/include/malidp_utils.h
2025-10-02T15:24:50.8470051Z patching file drivers/gpu/drm/arm/display/komeda/komeda_kms.c
2025-10-02T15:24:50.8470900Z patching file drivers/gpu/drm/arm/display/komeda/komeda_pipeline.c
2025-10-02T15:24:50.8475900Z patching file drivers/gpu/drm/arm/display/komeda/komeda_pipeline_state.c
2025-10-02T15:24:50.8476773Z patching file drivers/gpu/drm/arm/display/komeda/komeda_plane.c
2025-10-02T15:24:50.8477858Z patching file drivers/gpu/drm/arm/display/komeda/komeda_wb_connector.c
2025-10-02T15:24:50.8478258Z patching file drivers/gpu/drm/arm/malidp_crtc.c
2025-10-02T15:24:50.8478644Z patching file drivers/gpu/drm/arm/malidp_mw.c
2025-10-02T15:24:50.8479047Z patching file drivers/gpu/drm/arm/malidp_planes.c
2025-10-02T15:24:50.8479436Z patching file drivers/gpu/drm/armada/armada_drv.c
2025-10-02T15:24:50.8480068Z patching file drivers/gpu/drm/armada/armada_overlay.c
2025-10-02T15:24:50.8481221Z patching file drivers/gpu/drm/aspeed/Kconfig
2025-10-02T15:24:50.8482324Z patching file drivers/gpu/drm/ast/ast_dp501.c
2025-10-02T15:24:50.8483633Z patching file drivers/gpu/drm/ast/ast_drv.c
2025-10-02T15:24:50.8489150Z patching file drivers/gpu/drm/ast/ast_drv.h
2025-10-02T15:24:50.8489796Z patching file drivers/gpu/drm/ast/ast_main.c
2025-10-02T15:24:50.8490184Z patching file drivers/gpu/drm/ast/ast_mode.c
2025-10-02T15:24:50.8490553Z patching file drivers/gpu/drm/ast/ast_post.c
2025-10-02T15:24:50.8490936Z patching file drivers/gpu/drm/bridge/Kconfig
2025-10-02T15:24:50.8492065Z patching file drivers/gpu/drm/bridge/adv7511/adv7511.h
2025-10-02T15:24:50.8493249Z patching file drivers/gpu/drm/bridge/adv7511/adv7511_audio.c
2025-10-02T15:24:50.8494272Z patching file drivers/gpu/drm/bridge/adv7511/adv7511_cec.c
2025-10-02T15:24:50.8499993Z patching file drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
2025-10-02T15:24:50.8500582Z patching file drivers/gpu/drm/bridge/adv7511/adv7533.c
2025-10-02T15:24:50.8502213Z patching file drivers/gpu/drm/bridge/analogix/analogix_dp_core.c
2025-10-02T15:24:50.8502691Z patching file drivers/gpu/drm/bridge/analogix/analogix_dp_reg.c
2025-10-02T15:24:50.8503373Z patching file drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-core.c
2025-10-02T15:24:50.8505903Z patching file drivers/gpu/drm/bridge/cdns-dsi.c
2025-10-02T15:24:50.8507811Z patching file drivers/gpu/drm/bridge/display-connector.c
2025-10-02T15:24:50.8514646Z patching file drivers/gpu/drm/bridge/lontium-lt9611.c
2025-10-02T15:24:50.8515187Z patching file drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
2025-10-02T15:24:50.8515568Z patching file drivers/gpu/drm/bridge/nwl-dsi.c
2025-10-02T15:24:50.8515968Z patching file drivers/gpu/drm/bridge/nxp-ptn3460.c
2025-10-02T15:24:50.8516345Z patching file drivers/gpu/drm/bridge/panel.c
2025-10-02T15:24:50.8516761Z patching file drivers/gpu/drm/bridge/parade-ps8640.c
2025-10-02T15:24:50.8517153Z patching file drivers/gpu/drm/bridge/sii902x.c
2025-10-02T15:24:50.8519162Z patching file drivers/gpu/drm/bridge/sil-sii8620.c
2025-10-02T15:24:50.8521656Z patching file drivers/gpu/drm/bridge/synopsys/dw-hdmi-ahb-audio.c
2025-10-02T15:24:50.8522480Z patching file drivers/gpu/drm/bridge/synopsys/dw-hdmi-audio.h
2025-10-02T15:24:50.8523535Z patching file drivers/gpu/drm/bridge/synopsys/dw-hdmi-i2s-audio.c
2025-10-02T15:24:50.8525807Z patching file drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
2025-10-02T15:24:50.8538932Z patching file drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c
2025-10-02T15:24:50.8539805Z patching file drivers/gpu/drm/bridge/tc358762.c
2025-10-02T15:24:50.8540189Z patching file drivers/gpu/drm/bridge/tc358764.c
2025-10-02T15:24:50.8540553Z patching file drivers/gpu/drm/bridge/tc358767.c
2025-10-02T15:24:50.8540905Z patching file drivers/gpu/drm/bridge/tc358768.c
2025-10-02T15:24:50.8541285Z patching file drivers/gpu/drm/bridge/tc358775.c
2025-10-02T15:24:50.8541683Z patching file drivers/gpu/drm/bridge/ti-sn65dsi86.c
2025-10-02T15:24:50.8542081Z patching file drivers/gpu/drm/bridge/ti-tpd12s015.c
2025-10-02T15:24:50.8542443Z patching file drivers/gpu/drm/drm_atomic.c
2025-10-02T15:24:50.8542840Z patching file drivers/gpu/drm/drm_atomic_helper.c
2025-10-02T15:24:50.8545653Z patching file drivers/gpu/drm/drm_atomic_uapi.c
2025-10-02T15:24:50.8548080Z patching file drivers/gpu/drm/drm_auth.c
2025-10-02T15:24:50.8549679Z patching file drivers/gpu/drm/drm_bridge.c
2025-10-02T15:24:50.8552174Z patching file drivers/gpu/drm/drm_client_modeset.c
2025-10-02T15:24:50.8553969Z patching file drivers/gpu/drm/drm_connector.c
2025-10-02T15:24:50.8557025Z patching file drivers/gpu/drm/drm_crtc.c
2025-10-02T15:24:50.8558417Z patching file drivers/gpu/drm/drm_crtc_helper_internal.h
2025-10-02T15:24:50.8559224Z patching file drivers/gpu/drm/drm_crtc_internal.h
2025-10-02T15:24:50.8563336Z patching file drivers/gpu/drm/drm_debugfs.c
2025-10-02T15:24:50.8564041Z patching file drivers/gpu/drm/drm_dp_aux_dev.c
2025-10-02T15:24:50.8564417Z patching file drivers/gpu/drm/drm_dp_cec.c
2025-10-02T15:24:50.8564861Z patching file drivers/gpu/drm/drm_dp_dual_mode_helper.c
2025-10-02T15:24:50.8566805Z patching file drivers/gpu/drm/drm_dp_helper.c
2025-10-02T15:24:50.8570651Z patching file drivers/gpu/drm/drm_dp_mst_topology.c
2025-10-02T15:24:50.8575900Z patching file drivers/gpu/drm/drm_drv.c
2025-10-02T15:24:50.8579055Z patching file drivers/gpu/drm/drm_edid.c
2025-10-02T15:24:50.8584503Z patching file drivers/gpu/drm/drm_fb_helper.c
2025-10-02T15:24:50.8587773Z patching file drivers/gpu/drm/drm_file.c
2025-10-02T15:24:50.8589038Z patching file drivers/gpu/drm/drm_fourcc.c
2025-10-02T15:24:50.8592026Z patching file drivers/gpu/drm/drm_framebuffer.c
2025-10-02T15:24:50.8594020Z patching file drivers/gpu/drm/drm_gem.c
2025-10-02T15:24:50.8596007Z patching file drivers/gpu/drm/drm_gem_shmem_helper.c
2025-10-02T15:24:50.8597930Z patching file drivers/gpu/drm/drm_gem_vram_helper.c
2025-10-02T15:24:50.8599765Z patching file drivers/gpu/drm/drm_internal.h
2025-10-02T15:24:50.8601062Z patching file drivers/gpu/drm/drm_ioc32.c
2025-10-02T15:24:50.8610372Z patching file drivers/gpu/drm/drm_ioctl.c
2025-10-02T15:24:50.8610997Z patching file drivers/gpu/drm/drm_kms_helper_common.c
2025-10-02T15:24:50.8612041Z patching file drivers/gpu/drm/drm_lease.c
2025-10-02T15:24:50.8612708Z patching file drivers/gpu/drm/drm_mipi_dbi.c
2025-10-02T15:24:50.8613272Z patching file drivers/gpu/drm/drm_mipi_dsi.c
2025-10-02T15:24:50.8613779Z patching file drivers/gpu/drm/drm_mm.c
2025-10-02T15:24:50.8614711Z patching file drivers/gpu/drm/drm_mode_config.c
2025-10-02T15:24:50.8615382Z patching file drivers/gpu/drm/drm_modes.c
2025-10-02T15:24:50.8615922Z patching file drivers/gpu/drm/drm_of.c
2025-10-02T15:24:50.8617163Z patching file drivers/gpu/drm/drm_panel.c
2025-10-02T15:24:50.8618723Z patching file drivers/gpu/drm/drm_panel_orientation_quirks.c
2025-10-02T15:24:50.8621147Z patching file drivers/gpu/drm/drm_plane.c
2025-10-02T15:24:50.8622744Z patching file drivers/gpu/drm/drm_plane_helper.c
2025-10-02T15:24:50.8624104Z patching file drivers/gpu/drm/drm_prime.c
2025-10-02T15:24:50.8625797Z patching file drivers/gpu/drm/drm_print.c
2025-10-02T15:24:50.8627198Z patching file drivers/gpu/drm/drm_probe_helper.c
2025-10-02T15:24:50.8629701Z patching file drivers/gpu/drm/drm_syncobj.c
2025-10-02T15:24:50.8632329Z patching file drivers/gpu/drm/drm_sysfs.c
2025-10-02T15:24:50.8633876Z patching file drivers/gpu/drm/etnaviv/etnaviv_buffer.c
2025-10-02T15:24:50.8635269Z patching file drivers/gpu/drm/etnaviv/etnaviv_drv.c
2025-10-02T15:24:50.8637295Z patching file drivers/gpu/drm/etnaviv/etnaviv_dump.c
2025-10-02T15:24:50.8638002Z patching file drivers/gpu/drm/etnaviv/etnaviv_gem.c
2025-10-02T15:24:50.8639655Z patching file drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c
2025-10-02T15:24:50.8640871Z patching file drivers/gpu/drm/etnaviv/etnaviv_gem_submit.c
2025-10-02T15:24:50.8642220Z patching file drivers/gpu/drm/etnaviv/etnaviv_gpu.c
2025-10-02T15:24:50.8645384Z patching file drivers/gpu/drm/etnaviv/etnaviv_gpu.h
2025-10-02T15:24:50.8646485Z patching file drivers/gpu/drm/etnaviv/etnaviv_hwdb.c
2025-10-02T15:24:50.8647457Z patching file drivers/gpu/drm/etnaviv/etnaviv_iommu.c
2025-10-02T15:24:50.8648740Z patching file drivers/gpu/drm/etnaviv/etnaviv_iommu_v2.c
2025-10-02T15:24:50.8649975Z patching file drivers/gpu/drm/etnaviv/etnaviv_mmu.c
2025-10-02T15:24:50.8651255Z patching file drivers/gpu/drm/etnaviv/etnaviv_mmu.h
2025-10-02T15:24:50.8652188Z patching file drivers/gpu/drm/etnaviv/etnaviv_sched.c
2025-10-02T15:24:50.8653500Z patching file drivers/gpu/drm/exynos/exynos5433_drm_decon.c
2025-10-02T15:24:50.8655163Z patching file drivers/gpu/drm/exynos/exynos7_drm_decon.c
2025-10-02T15:24:50.8656502Z patching file drivers/gpu/drm/exynos/exynos_drm_crtc.c
2025-10-02T15:24:50.8658610Z patching file drivers/gpu/drm/exynos/exynos_drm_dma.c
2025-10-02T15:24:50.8659765Z patching file drivers/gpu/drm/exynos/exynos_drm_drv.c
2025-10-02T15:24:50.8661708Z patching file drivers/gpu/drm/exynos/exynos_drm_dsi.c
2025-10-02T15:24:50.8663822Z patching file drivers/gpu/drm/exynos/exynos_drm_fimd.c
2025-10-02T15:24:50.8666170Z patching file drivers/gpu/drm/exynos/exynos_drm_g2d.c
2025-10-02T15:24:50.8667638Z patching file drivers/gpu/drm/exynos/exynos_drm_g2d.h
2025-10-02T15:24:50.8668810Z patching file drivers/gpu/drm/exynos/exynos_drm_gsc.c
2025-10-02T15:24:50.8670866Z patching file drivers/gpu/drm/exynos/exynos_drm_vidi.c
2025-10-02T15:24:50.8672578Z patching file drivers/gpu/drm/exynos/exynos_hdmi.c
2025-10-02T15:24:50.8674746Z patching file drivers/gpu/drm/fsl-dcu/Kconfig
2025-10-02T15:24:50.8675762Z patching file drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.c
2025-10-02T15:24:50.8677310Z patching file drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_drv.h
2025-10-02T15:24:50.8678137Z patching file drivers/gpu/drm/fsl-dcu/fsl_dcu_drm_rgb.c
2025-10-02T15:24:50.8679865Z patching file drivers/gpu/drm/gma500/cdv_intel_dp.c
2025-10-02T15:24:50.8682186Z patching file drivers/gpu/drm/gma500/cdv_intel_lvds.c
2025-10-02T15:24:50.8683386Z patching file drivers/gpu/drm/gma500/framebuffer.c
2025-10-02T15:24:50.8684968Z patching file drivers/gpu/drm/gma500/gma_display.c
2025-10-02T15:24:50.8686472Z patching file drivers/gpu/drm/gma500/mid_bios.c
2025-10-02T15:24:50.8687611Z patching file drivers/gpu/drm/gma500/oaktrail_hdmi.c
2025-10-02T15:24:50.8688722Z patching file drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.c
2025-10-02T15:24:50.8689857Z patching file drivers/gpu/drm/gma500/oaktrail_lvds.c
2025-10-02T15:24:50.8691144Z patching file drivers/gpu/drm/gma500/psb_drv.c
2025-10-02T15:24:50.8692210Z patching file drivers/gpu/drm/gma500/psb_intel_display.c
2025-10-02T15:24:50.8693625Z patching file drivers/gpu/drm/gma500/psb_intel_lvds.c
2025-10-02T15:24:50.8694715Z patching file drivers/gpu/drm/hisilicon/hibmc/Kconfig
2025-10-02T15:24:50.8696194Z patching file drivers/gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c
2025-10-02T15:24:50.8696558Z patching file drivers/gpu/drm/i915/Kconfig
2025-10-02T15:24:50.8697840Z patching file drivers/gpu/drm/i915/Makefile
2025-10-02T15:24:50.8702393Z patching file drivers/gpu/drm/i915/display/icl_dsi.c
2025-10-02T15:24:50.8702823Z patching file drivers/gpu/drm/i915/display/intel_acpi.c
2025-10-02T15:24:50.8703373Z patching file drivers/gpu/drm/i915/display/intel_bw.c
2025-10-02T15:24:50.8705958Z patching file drivers/gpu/drm/i915/display/intel_ddi.c
2025-10-02T15:24:50.8715447Z patching file drivers/gpu/drm/i915/display/intel_display.c
2025-10-02T15:24:50.8726775Z patching file drivers/gpu/drm/i915/display/intel_display_debugfs.c
2025-10-02T15:24:50.8730421Z patching file drivers/gpu/drm/i915/display/intel_display_power.c
2025-10-02T15:24:50.8734793Z patching file drivers/gpu/drm/i915/display/intel_display_types.h
2025-10-02T15:24:50.8738706Z patching file drivers/gpu/drm/i915/display/intel_dp.c
2025-10-02T15:24:50.8744090Z patching file drivers/gpu/drm/i915/display/intel_dp.h
2025-10-02T15:24:50.8744806Z patching file drivers/gpu/drm/i915/display/intel_dp_link_training.c
2025-10-02T15:24:50.8745825Z patching file drivers/gpu/drm/i915/display/intel_dp_mst.c
2025-10-02T15:24:50.8748279Z patching file drivers/gpu/drm/i915/display/intel_dpll_mgr.c
2025-10-02T15:24:50.8751826Z patching file drivers/gpu/drm/i915/display/intel_dsi_vbt.c
2025-10-02T15:24:50.8753704Z patching file drivers/gpu/drm/i915/display/intel_hdcp.c
2025-10-02T15:24:50.8760495Z patching file drivers/gpu/drm/i915/display/intel_hdmi.c
2025-10-02T15:24:50.8761266Z patching file drivers/gpu/drm/i915/display/intel_opregion.c
2025-10-02T15:24:50.8763938Z patching file drivers/gpu/drm/i915/display/intel_overlay.c
2025-10-02T15:24:50.8764383Z patching file drivers/gpu/drm/i915/display/intel_panel.c
2025-10-02T15:24:50.8766072Z patching file drivers/gpu/drm/i915/display/intel_quirks.c
2025-10-02T15:24:50.8767986Z patching file drivers/gpu/drm/i915/display/intel_sdvo.c
2025-10-02T15:24:50.8772318Z patching file drivers/gpu/drm/i915/display/intel_sprite.c
2025-10-02T15:24:50.8774616Z patching file drivers/gpu/drm/i915/display/intel_tc.c
2025-10-02T15:24:50.8775840Z patching file drivers/gpu/drm/i915/display/vlv_dsi.c
2025-10-02T15:24:50.8777893Z patching file drivers/gpu/drm/i915/gem/i915_gem_dmabuf.c
2025-10-02T15:24:50.8778775Z patching file drivers/gpu/drm/i915/gem/i915_gem_domain.c
2025-10-02T15:24:50.8780872Z patching file drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
2025-10-02T15:24:50.8783547Z patching file drivers/gpu/drm/i915/gem/i915_gem_mman.c
2025-10-02T15:24:50.8786152Z patching file drivers/gpu/drm/i915/gem/i915_gem_object.h
2025-10-02T15:24:50.8787336Z patching file drivers/gpu/drm/i915/gem/i915_gem_object_types.h
2025-10-02T15:24:50.8788068Z patching file drivers/gpu/drm/i915/gem/i915_gem_pages.c
2025-10-02T15:24:50.8788914Z patching file drivers/gpu/drm/i915/gem/i915_gem_tiling.c
2025-10-02T15:24:50.8789920Z patching file drivers/gpu/drm/i915/gt/gen7_renderclear.c
2025-10-02T15:24:50.8792306Z patching file drivers/gpu/drm/i915/gt/gen8_ppgtt.c
2025-10-02T15:24:50.8794084Z patching file drivers/gpu/drm/i915/gt/intel_breadcrumbs.c
2025-10-02T15:24:50.8795476Z patching file drivers/gpu/drm/i915/gt/intel_engine_cs.c
2025-10-02T15:24:50.8797320Z patching file drivers/gpu/drm/i915/gt/intel_engine_pm.c
2025-10-02T15:24:50.8798400Z patching file drivers/gpu/drm/i915/gt/intel_engine_user.c
2025-10-02T15:24:50.8799733Z patching file drivers/gpu/drm/i915/gt/intel_ggtt.c
2025-10-02T15:24:50.8801751Z patching file drivers/gpu/drm/i915/gt/intel_ggtt_fencing.c
2025-10-02T15:24:50.8803010Z patching file drivers/gpu/drm/i915/gt/intel_gt.c
2025-10-02T15:24:50.8804354Z patching file drivers/gpu/drm/i915/gt/intel_gt.h
2025-10-02T15:24:50.8805886Z patching file drivers/gpu/drm/i915/gt/intel_gt_requests.c
2025-10-02T15:24:50.8806726Z patching file drivers/gpu/drm/i915/gt/intel_gt_types.h
2025-10-02T15:24:50.8808676Z patching file drivers/gpu/drm/i915/gt/intel_lrc.c
2025-10-02T15:24:50.8813123Z patching file drivers/gpu/drm/i915/gt/intel_reset.c
2025-10-02T15:24:50.8814487Z patching file drivers/gpu/drm/i915/gt/intel_ring.c
2025-10-02T15:24:50.8816033Z patching file drivers/gpu/drm/i915/gt/intel_ring_submission.c
2025-10-02T15:24:50.8818115Z patching file drivers/gpu/drm/i915/gt/intel_timeline.c
2025-10-02T15:24:50.8819370Z patching file drivers/gpu/drm/i915/gt/intel_workarounds.c
2025-10-02T15:24:50.8823349Z patching file drivers/gpu/drm/i915/gt/selftest_lrc.c
2025-10-02T15:24:50.8826330Z patching file drivers/gpu/drm/i915/gvt/debugfs.c
2025-10-02T15:24:50.8826987Z patching file drivers/gpu/drm/i915/gvt/display.c
2025-10-02T15:24:50.8829181Z patching file drivers/gpu/drm/i915/gvt/gtt.c
2025-10-02T15:24:50.8831799Z patching file drivers/gpu/drm/i915/gvt/gtt.h
2025-10-02T15:24:50.8833422Z patching file drivers/gpu/drm/i915/gvt/gvt.c
2025-10-02T15:24:50.8834608Z patching file drivers/gpu/drm/i915/gvt/gvt.h
2025-10-02T15:24:50.8836665Z patching file drivers/gpu/drm/i915/gvt/handlers.c
2025-10-02T15:24:50.8841217Z patching file drivers/gpu/drm/i915/gvt/mmio.c
2025-10-02T15:24:50.8841593Z patching file drivers/gpu/drm/i915/gvt/mmio.h
2025-10-02T15:24:50.8848079Z patching file drivers/gpu/drm/i915/gvt/opregion.c
2025-10-02T15:24:50.8848807Z patching file drivers/gpu/drm/i915/gvt/scheduler.c
2025-10-02T15:24:50.8849182Z patching file drivers/gpu/drm/i915/gvt/vgpu.c
2025-10-02T15:24:50.8850009Z patching file drivers/gpu/drm/i915/i915_active.c
2025-10-02T15:24:50.8850416Z patching file drivers/gpu/drm/i915/i915_cmd_parser.c
2025-10-02T15:24:50.8850788Z patching file drivers/gpu/drm/i915/i915_drv.c
2025-10-02T15:24:50.8853112Z patching file drivers/gpu/drm/i915/i915_drv.h
2025-10-02T15:24:50.8856487Z patching file drivers/gpu/drm/i915/i915_gpu_error.c
2025-10-02T15:24:50.8857072Z patching file drivers/gpu/drm/i915/i915_mitigations.c
2025-10-02T15:24:50.8858576Z patching file drivers/gpu/drm/i915/i915_mitigations.h
2025-10-02T15:24:50.8861387Z patching file drivers/gpu/drm/i915/i915_pci.c
2025-10-02T15:24:50.8865864Z patching file drivers/gpu/drm/i915/i915_perf.c
2025-10-02T15:24:50.8866267Z patching file drivers/gpu/drm/i915/i915_perf_types.h
2025-10-02T15:24:50.8867551Z patching file drivers/gpu/drm/i915/i915_pmu.c
2025-10-02T15:24:50.8871599Z patching file drivers/gpu/drm/i915/i915_reg.h
2025-10-02T15:24:50.8879051Z patching file drivers/gpu/drm/i915/i915_request.c
2025-10-02T15:24:50.8881678Z patching file drivers/gpu/drm/i915/i915_request.h
2025-10-02T15:24:50.8882686Z patching file drivers/gpu/drm/i915/i915_scheduler.c
2025-10-02T15:24:50.8884291Z patching file drivers/gpu/drm/i915/i915_sw_fence.c
2025-10-02T15:24:50.8891043Z patching file drivers/gpu/drm/i915/i915_sysfs.c
2025-10-02T15:24:50.8891426Z patching file drivers/gpu/drm/i915/i915_vma.c
2025-10-02T15:24:50.8891809Z patching file drivers/gpu/drm/i915/intel_dram.c
2025-10-02T15:24:50.8892178Z patching file drivers/gpu/drm/i915/intel_gvt.c
2025-10-02T15:24:50.8909220Z patching file drivers/gpu/drm/i915/intel_gvt.h
2025-10-02T15:24:50.8909810Z patching file drivers/gpu/drm/i915/intel_pch.c
2025-10-02T15:24:50.8910360Z patching file drivers/gpu/drm/i915/intel_pch.h
2025-10-02T15:24:50.8910834Z patching file drivers/gpu/drm/i915/intel_pm.c
2025-10-02T15:24:50.8911265Z patching file drivers/gpu/drm/i915/intel_runtime_pm.c
2025-10-02T15:24:50.8912031Z patching file drivers/gpu/drm/i915/intel_runtime_pm.h
2025-10-02T15:24:50.8912441Z patching file drivers/gpu/drm/i915/intel_sideband.c
2025-10-02T15:24:50.8912845Z patching file drivers/gpu/drm/i915/intel_sideband.h
2025-10-02T15:24:50.8913350Z patching file drivers/gpu/drm/i915/intel_uncore.c
2025-10-02T15:24:50.8913810Z patching file drivers/gpu/drm/i915/intel_uncore.h
2025-10-02T15:24:50.8914791Z patching file drivers/gpu/drm/i915/selftests/i915_gem_gtt.c
2025-10-02T15:24:50.8915247Z patching file drivers/gpu/drm/i915/selftests/i915_request.c
2025-10-02T15:24:50.8915678Z patching file drivers/gpu/drm/i915/selftests/mock_request.c
2025-10-02T15:24:50.8916073Z patching file drivers/gpu/drm/imx/dcss/dcss-crtc.c
2025-10-02T15:24:50.8916592Z patching file drivers/gpu/drm/imx/dcss/dcss-dev.c
2025-10-02T15:24:50.8917000Z patching file drivers/gpu/drm/imx/dcss/dcss-plane.c
2025-10-02T15:24:50.8917397Z patching file drivers/gpu/drm/imx/imx-drm-core.c
2025-10-02T15:24:50.8920203Z patching file drivers/gpu/drm/imx/imx-ldb.c
2025-10-02T15:24:50.8922589Z patching file drivers/gpu/drm/imx/imx-tve.c
2025-10-02T15:24:50.8923356Z patching file drivers/gpu/drm/imx/ipuv3-crtc.c
2025-10-02T15:24:50.8923798Z patching file drivers/gpu/drm/imx/parallel-display.c
2025-10-02T15:24:50.8924237Z patching file drivers/gpu/drm/ingenic/ingenic-drm-drv.c
2025-10-02T15:24:50.8924639Z patching file drivers/gpu/drm/ingenic/ingenic-ipu.c
2025-10-02T15:24:50.8925021Z patching file drivers/gpu/drm/lima/lima_bcast.c
2025-10-02T15:24:50.8925411Z patching file drivers/gpu/drm/lima/lima_bcast.h
2025-10-02T15:24:50.8925791Z patching file drivers/gpu/drm/lima/lima_device.c
2025-10-02T15:24:50.8926200Z patching file drivers/gpu/drm/lima/lima_drv.c
2025-10-02T15:24:50.8929971Z patching file drivers/gpu/drm/lima/lima_gem.c
2025-10-02T15:24:50.8930360Z patching file drivers/gpu/drm/lima/lima_gp.c
2025-10-02T15:24:50.8930744Z patching file drivers/gpu/drm/lima/lima_mmu.c
2025-10-02T15:24:50.8931118Z patching file drivers/gpu/drm/lima/lima_pp.c
2025-10-02T15:24:50.8931919Z patching file drivers/gpu/drm/lima/lima_sched.c
2025-10-02T15:24:50.8933067Z patching file drivers/gpu/drm/lima/lima_sched.h
2025-10-02T15:24:50.8934516Z patching file drivers/gpu/drm/mcde/mcde_drv.c
2025-10-02T15:24:50.8939332Z patching file drivers/gpu/drm/mcde/mcde_dsi.c
2025-10-02T15:24:50.8941348Z patching file drivers/gpu/drm/mediatek/mtk_cec.c
2025-10-02T15:24:50.8941981Z patching file drivers/gpu/drm/mediatek/mtk_disp_ovl.c
2025-10-02T15:24:50.8943184Z patching file drivers/gpu/drm/mediatek/mtk_dpi.c
2025-10-02T15:24:50.8943916Z patching file drivers/gpu/drm/mediatek/mtk_drm_crtc.c
2025-10-02T15:24:50.8944990Z patching file drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.c
2025-10-02T15:24:50.8945692Z patching file drivers/gpu/drm/mediatek/mtk_drm_ddp_comp.h
2025-10-02T15:24:50.8946313Z patching file drivers/gpu/drm/mediatek/mtk_drm_drv.c
2025-10-02T15:24:50.8946725Z patching file drivers/gpu/drm/mediatek/mtk_drm_gem.c
2025-10-02T15:24:50.8947742Z patching file drivers/gpu/drm/mediatek/mtk_dsi.c
2025-10-02T15:24:50.8950691Z patching file drivers/gpu/drm/mediatek/mtk_hdmi.c
2025-10-02T15:24:50.8953111Z patching file drivers/gpu/drm/mediatek/mtk_mipi_tx.c
2025-10-02T15:24:50.8953986Z patching file drivers/gpu/drm/meson/meson_drv.c
2025-10-02T15:24:50.8955760Z patching file drivers/gpu/drm/meson/meson_dw_hdmi.c
2025-10-02T15:24:50.8957948Z patching file drivers/gpu/drm/meson/meson_osd_afbcd.c
2025-10-02T15:24:50.8958899Z patching file drivers/gpu/drm/meson/meson_osd_afbcd.h
2025-10-02T15:24:50.8959982Z patching file drivers/gpu/drm/meson/meson_plane.c
2025-10-02T15:24:50.8961777Z patching file drivers/gpu/drm/meson/meson_registers.h
2025-10-02T15:24:50.8963848Z patching file drivers/gpu/drm/meson/meson_viu.c
2025-10-02T15:24:50.8965257Z patching file drivers/gpu/drm/meson/meson_vpp.c
2025-10-02T15:24:50.8966253Z patching file drivers/gpu/drm/mgag200/mgag200_drv.h
2025-10-02T15:24:50.8967298Z patching file drivers/gpu/drm/mgag200/mgag200_i2c.c
2025-10-02T15:24:50.8968578Z patching file drivers/gpu/drm/mgag200/mgag200_mode.c
2025-10-02T15:24:50.8971017Z patching file drivers/gpu/drm/mgag200/mgag200_reg.h
2025-10-02T15:24:50.8972222Z patching file drivers/gpu/drm/msm/Kconfig
2025-10-02T15:24:50.8973088Z patching file drivers/gpu/drm/msm/Makefile
2025-10-02T15:24:50.8974282Z patching file drivers/gpu/drm/msm/adreno/a2xx_gpu.c
2025-10-02T15:24:50.8975604Z patching file drivers/gpu/drm/msm/adreno/a3xx_gpu.c
2025-10-02T15:24:50.8977073Z patching file drivers/gpu/drm/msm/adreno/a4xx_gpu.c
2025-10-02T15:24:50.8978809Z patching file drivers/gpu/drm/msm/adreno/a5xx_gpu.c
2025-10-02T15:24:50.8981575Z patching file drivers/gpu/drm/msm/adreno/a5xx_gpu.h
2025-10-02T15:24:50.8982589Z patching file drivers/gpu/drm/msm/adreno/a5xx_power.c
2025-10-02T15:24:50.8983900Z patching file drivers/gpu/drm/msm/adreno/a5xx_preempt.c
2025-10-02T15:24:50.8985457Z patching file drivers/gpu/drm/msm/adreno/a6xx_gmu.c
2025-10-02T15:24:50.8987555Z patching file drivers/gpu/drm/msm/adreno/a6xx_gmu.h
2025-10-02T15:24:50.8988846Z patching file drivers/gpu/drm/msm/adreno/a6xx_gpu.c
2025-10-02T15:24:50.8991779Z patching file drivers/gpu/drm/msm/adreno/a6xx_gpu.h
2025-10-02T15:24:50.8992948Z patching file drivers/gpu/drm/msm/adreno/a6xx_gpu_state.c
2025-10-02T15:24:50.8994471Z patching file drivers/gpu/drm/msm/adreno/a6xx_gpu_state.h
2025-10-02T15:24:50.8995979Z patching file drivers/gpu/drm/msm/adreno/a6xx_hfi.c
2025-10-02T15:24:50.8997299Z patching file drivers/gpu/drm/msm/adreno/adreno_device.c
2025-10-02T15:24:50.8998213Z patching file drivers/gpu/drm/msm/adreno/adreno_gpu.c
2025-10-02T15:24:50.9000437Z patching file drivers/gpu/drm/msm/adreno/adreno_gpu.h
2025-10-02T15:24:50.9001169Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_core_perf.c
2025-10-02T15:24:50.9002500Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_core_perf.h
2025-10-02T15:24:50.9003637Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_crtc.c
2025-10-02T15:24:50.9006141Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c
2025-10-02T15:24:50.9008535Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_cmd.c
2025-10-02T15:24:50.9015566Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_vid.c
2025-10-02T15:24:50.9016204Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_catalog.c
2025-10-02T15:24:50.9016644Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_ctl.c
2025-10-02T15:24:50.9017090Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_dspp.c
2025-10-02T15:24:50.9017515Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_intf.c
2025-10-02T15:24:50.9017943Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_hw_sspp.c
2025-10-02T15:24:50.9018360Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c
2025-10-02T15:24:50.9018780Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_kms.h
2025-10-02T15:24:50.9019189Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_mdss.c
2025-10-02T15:24:50.9024222Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_plane.c
2025-10-02T15:24:50.9024654Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_rm.c
2025-10-02T15:24:50.9025072Z patching file drivers/gpu/drm/msm/disp/dpu1/dpu_vbif.c
2025-10-02T15:24:50.9025494Z patching file drivers/gpu/drm/msm/disp/mdp4/mdp4_crtc.c
2025-10-02T15:24:50.9025932Z patching file drivers/gpu/drm/msm/disp/mdp4/mdp4_kms.c
2025-10-02T15:24:50.9028841Z patching file drivers/gpu/drm/msm/disp/mdp4/mdp4_lvds_connector.c
2025-10-02T15:24:50.9029424Z patching file drivers/gpu/drm/msm/disp/mdp4/mdp4_plane.c
2025-10-02T15:24:50.9030046Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_cmd_encoder.c
2025-10-02T15:24:50.9030473Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_crtc.c
2025-10-02T15:24:50.9032161Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c
2025-10-02T15:24:50.9033514Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_mixer.c
2025-10-02T15:24:50.9034432Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_mixer.h
2025-10-02T15:24:50.9035240Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_pipe.c
2025-10-02T15:24:50.9036195Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_pipe.h
2025-10-02T15:24:50.9037239Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_plane.c
2025-10-02T15:24:50.9048190Z patching file drivers/gpu/drm/msm/disp/mdp5/mdp5_smp.c
2025-10-02T15:24:50.9048587Z patching file drivers/gpu/drm/msm/dp/dp_audio.c
2025-10-02T15:24:50.9048971Z patching file drivers/gpu/drm/msm/dp/dp_audio.h
2025-10-02T15:24:50.9049351Z patching file drivers/gpu/drm/msm/dp/dp_aux.c
2025-10-02T15:24:50.9049905Z patching file drivers/gpu/drm/msm/dp/dp_catalog.c
2025-10-02T15:24:50.9050313Z patching file drivers/gpu/drm/msm/dp/dp_catalog.h
2025-10-02T15:24:50.9050700Z patching file drivers/gpu/drm/msm/dp/dp_ctrl.c
2025-10-02T15:24:50.9051084Z patching file drivers/gpu/drm/msm/dp/dp_display.c
2025-10-02T15:24:50.9051480Z patching file drivers/gpu/drm/msm/dp/dp_display.h
2025-10-02T15:24:50.9051847Z patching file drivers/gpu/drm/msm/dp/dp_hpd.c
2025-10-02T15:24:50.9052222Z patching file drivers/gpu/drm/msm/dp/dp_link.c
2025-10-02T15:24:50.9053902Z patching file drivers/gpu/drm/msm/dp/dp_link.h
2025-10-02T15:24:50.9054607Z patching file drivers/gpu/drm/msm/dp/dp_panel.c
2025-10-02T15:24:50.9056128Z patching file drivers/gpu/drm/msm/dp/dp_reg.h
2025-10-02T15:24:50.9057136Z patching file drivers/gpu/drm/msm/dsi/dsi.c
2025-10-02T15:24:50.9058311Z patching file drivers/gpu/drm/msm/dsi/dsi_cfg.c
2025-10-02T15:24:50.9060269Z patching file drivers/gpu/drm/msm/dsi/dsi_host.c
2025-10-02T15:24:50.9063072Z patching file drivers/gpu/drm/msm/dsi/dsi_manager.c
2025-10-02T15:24:50.9063846Z patching file drivers/gpu/drm/msm/dsi/phy/dsi_phy.c
2025-10-02T15:24:50.9070485Z patching file drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c
2025-10-02T15:24:50.9071088Z patching file drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c
2025-10-02T15:24:50.9071494Z patching file drivers/gpu/drm/msm/dsi/pll/dsi_pll.c
2025-10-02T15:24:50.9071886Z patching file drivers/gpu/drm/msm/dsi/pll/dsi_pll.h
2025-10-02T15:24:50.9072318Z patching file drivers/gpu/drm/msm/dsi/pll/dsi_pll_10nm.c
2025-10-02T15:24:50.9072742Z patching file drivers/gpu/drm/msm/dsi/pll/dsi_pll_7nm.c
2025-10-02T15:24:50.9073132Z patching file drivers/gpu/drm/msm/edp/edp_ctrl.c
2025-10-02T15:24:50.9073760Z patching file drivers/gpu/drm/msm/hdmi/hdmi.c
2025-10-02T15:24:50.9076450Z patching file drivers/gpu/drm/msm/hdmi/hdmi.h
2025-10-02T15:24:50.9076925Z patching file drivers/gpu/drm/msm/hdmi/hdmi_bridge.c
2025-10-02T15:24:50.9077461Z patching file drivers/gpu/drm/msm/hdmi/hdmi_connector.c
2025-10-02T15:24:50.9088766Z patching file drivers/gpu/drm/msm/hdmi/hdmi_hpd.c
2025-10-02T15:24:50.9089651Z patching file drivers/gpu/drm/msm/hdmi/hdmi_i2c.c
2025-10-02T15:24:50.9090055Z patching file drivers/gpu/drm/msm/msm_debugfs.c
2025-10-02T15:24:50.9090433Z patching file drivers/gpu/drm/msm/msm_drv.c
2025-10-02T15:24:50.9090802Z patching file drivers/gpu/drm/msm/msm_drv.h
2025-10-02T15:24:50.9091173Z patching file drivers/gpu/drm/msm/msm_fence.c
2025-10-02T15:24:50.9091544Z patching file drivers/gpu/drm/msm/msm_gem.c
2025-10-02T15:24:50.9091941Z patching file drivers/gpu/drm/msm/msm_gem_prime.c
2025-10-02T15:24:50.9092345Z patching file drivers/gpu/drm/msm/msm_gem_shrinker.c
2025-10-02T15:24:50.9092748Z patching file drivers/gpu/drm/msm/msm_gem_submit.c
2025-10-02T15:24:50.9093118Z patching file drivers/gpu/drm/msm/msm_gpu.c
2025-10-02T15:24:50.9093484Z patching file drivers/gpu/drm/msm/msm_gpu.h
2025-10-02T15:24:50.9093857Z patching file drivers/gpu/drm/msm/msm_iommu.c
2025-10-02T15:24:50.9094238Z patching file drivers/gpu/drm/msm/msm_rd.c
2025-10-02T15:24:50.9094634Z patching file drivers/gpu/drm/msm/msm_ringbuffer.c
2025-10-02T15:24:50.9095074Z patching file drivers/gpu/drm/msm/msm_ringbuffer.h
2025-10-02T15:24:50.9096260Z patching file drivers/gpu/drm/mxsfb/Kconfig
2025-10-02T15:24:50.9097312Z patching file drivers/gpu/drm/mxsfb/mxsfb_drv.c
2025-10-02T15:24:50.9098503Z patching file drivers/gpu/drm/mxsfb/mxsfb_drv.h
2025-10-02T15:24:50.9099262Z patching file drivers/gpu/drm/mxsfb/mxsfb_kms.c
2025-10-02T15:24:50.9101051Z patching file drivers/gpu/drm/mxsfb/mxsfb_regs.h
2025-10-02T15:24:50.9101995Z patching file drivers/gpu/drm/nouveau/dispnv04/disp.c
2025-10-02T15:24:50.9103567Z patching file drivers/gpu/drm/nouveau/dispnv04/tvnv17.c
2025-10-02T15:24:50.9110282Z patching file drivers/gpu/drm/nouveau/dispnv50/atom.h
2025-10-02T15:24:50.9114056Z patching file drivers/gpu/drm/nouveau/dispnv50/base507c.c
2025-10-02T15:24:50.9114526Z patching file drivers/gpu/drm/nouveau/dispnv50/base827c.c
2025-10-02T15:24:50.9114944Z patching file drivers/gpu/drm/nouveau/dispnv50/crc.c
2025-10-02T15:24:50.9115372Z patching file drivers/gpu/drm/nouveau/dispnv50/disp.c
2025-10-02T15:24:50.9115784Z patching file drivers/gpu/drm/nouveau/dispnv50/disp.h
2025-10-02T15:24:50.9116191Z patching file drivers/gpu/drm/nouveau/dispnv50/head.c
2025-10-02T15:24:50.9118769Z patching file drivers/gpu/drm/nouveau/dispnv50/head.h
2025-10-02T15:24:50.9119231Z patching file drivers/gpu/drm/nouveau/dispnv50/head917d.c
2025-10-02T15:24:50.9119821Z patching file drivers/gpu/drm/nouveau/dispnv50/wimmc37b.c
2025-10-02T15:24:50.9120252Z patching file drivers/gpu/drm/nouveau/dispnv50/wndw.c
2025-10-02T15:24:50.9120656Z patching file drivers/gpu/drm/nouveau/dispnv50/wndw.h
2025-10-02T15:24:50.9121153Z patching file drivers/gpu/drm/nouveau/include/nvhw/class/cl917d.h
2025-10-02T15:24:50.9121623Z patching file drivers/gpu/drm/nouveau/include/nvif/push.h
2025-10-02T15:24:50.9126791Z patching file drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/conn.h
2025-10-02T15:24:50.9127534Z patching file drivers/gpu/drm/nouveau/nouveau_acpi.c
2025-10-02T15:24:50.9128106Z patching file drivers/gpu/drm/nouveau/nouveau_backlight.c
2025-10-02T15:24:50.9128528Z patching file drivers/gpu/drm/nouveau/nouveau_bios.c
2025-10-02T15:24:50.9128943Z patching file drivers/gpu/drm/nouveau/nouveau_bo.c
2025-10-02T15:24:50.9129350Z patching file drivers/gpu/drm/nouveau/nouveau_chan.c
2025-10-02T15:24:50.9131042Z patching file drivers/gpu/drm/nouveau/nouveau_connector.c
2025-10-02T15:24:50.9132510Z patching file drivers/gpu/drm/nouveau/nouveau_debugfs.c
2025-10-02T15:24:50.9133454Z patching file drivers/gpu/drm/nouveau/nouveau_display.c
2025-10-02T15:24:50.9134857Z patching file drivers/gpu/drm/nouveau/nouveau_dmem.c
2025-10-02T15:24:50.9135916Z patching file drivers/gpu/drm/nouveau/nouveau_dp.c
2025-10-02T15:24:50.9137183Z patching file drivers/gpu/drm/nouveau/nouveau_drm.c
2025-10-02T15:24:50.9139208Z patching file drivers/gpu/drm/nouveau/nouveau_drv.h
2025-10-02T15:24:50.9140319Z patching file drivers/gpu/drm/nouveau/nouveau_fbcon.c
2025-10-02T15:24:50.9141666Z patching file drivers/gpu/drm/nouveau/nouveau_fence.c
2025-10-02T15:24:50.9142596Z patching file drivers/gpu/drm/nouveau/nouveau_gem.c
2025-10-02T15:24:50.9150284Z patching file drivers/gpu/drm/nouveau/nouveau_prime.c
2025-10-02T15:24:50.9152546Z patching file drivers/gpu/drm/nouveau/nouveau_svm.c
2025-10-02T15:24:50.9153153Z patching file drivers/gpu/drm/nouveau/nouveau_vmm.c
2025-10-02T15:24:50.9154613Z patching file drivers/gpu/drm/nouveau/nv04_fence.c
2025-10-02T15:24:50.9155365Z patching file drivers/gpu/drm/nouveau/nvkm/engine/device/ctrl.c
2025-10-02T15:24:50.9156346Z patching file drivers/gpu/drm/nouveau/nvkm/engine/device/tegra.c
2025-10-02T15:24:50.9157266Z patching file drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.c
2025-10-02T15:24:50.9158247Z patching file drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.h
2025-10-02T15:24:50.9158954Z patching file drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigv100.c
2025-10-02T15:24:50.9160320Z patching file drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.c
2025-10-02T15:24:50.9161042Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.h
2025-10-02T15:24:50.9162384Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk104.c
2025-10-02T15:24:50.9163171Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110.c
2025-10-02T15:24:50.9164295Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110b.c
2025-10-02T15:24:50.9165082Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk208.c
2025-10-02T15:24:50.9166489Z patching file drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c
2025-10-02T15:24:50.9167876Z patching file drivers/gpu/drm/nouveau/nvkm/falcon/base.c
2025-10-02T15:24:50.9168540Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm200.c
2025-10-02T15:24:50.9169273Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp102.c
2025-10-02T15:24:50.9170173Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/acr/hsfw.c
2025-10-02T15:24:50.9170820Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/bios/base.c
2025-10-02T15:24:50.9171951Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadow.c
2025-10-02T15:24:50.9173523Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowof.c
2025-10-02T15:24:50.9174227Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/clk/base.c
2025-10-02T15:24:50.9175071Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.c
2025-10-02T15:24:50.9175827Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gf100.c
2025-10-02T15:24:50.9176771Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gk104.c
2025-10-02T15:24:50.9178653Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv50.c
2025-10-02T15:24:50.9179402Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/mmu/base.c
2025-10-02T15:24:50.9180384Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmtu102.c
2025-10-02T15:24:50.9181092Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.c
2025-10-02T15:24:50.9181703Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm200.c
2025-10-02T15:24:50.9182290Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm20b.c
2025-10-02T15:24:50.9183400Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp102.c
2025-10-02T15:24:50.9184061Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp10b.c
2025-10-02T15:24:50.9184775Z patching file drivers/gpu/drm/nouveau/nvkm/subdev/pmu/priv.h
2025-10-02T15:24:50.9185414Z patching file drivers/gpu/drm/omapdrm/dss/dsi.c
2025-10-02T15:24:50.9186156Z patching file drivers/gpu/drm/omapdrm/dss/dss.c
2025-10-02T15:24:50.9188393Z patching file drivers/gpu/drm/omapdrm/omap_dmm_tiler.c
2025-10-02T15:24:50.9190084Z patching file drivers/gpu/drm/omapdrm/omap_drv.c
2025-10-02T15:24:50.9191961Z patching file drivers/gpu/drm/omapdrm/omap_gem.c
2025-10-02T15:24:50.9193958Z patching file drivers/gpu/drm/panel/Kconfig
2025-10-02T15:24:50.9194832Z patching file drivers/gpu/drm/panel/panel-arm-versatile.c
2025-10-02T15:24:50.9196219Z patching file drivers/gpu/drm/panel/panel-boe-tv101wum-nl6.c
2025-10-02T15:24:50.9197809Z patching file drivers/gpu/drm/panel/panel-elida-kd35t133.c
2025-10-02T15:24:50.9198942Z patching file drivers/gpu/drm/panel/panel-ilitek-ili9881c.c
2025-10-02T15:24:50.9200638Z patching file drivers/gpu/drm/panel/panel-innolux-p079zca.c
2025-10-02T15:24:50.9201938Z patching file drivers/gpu/drm/panel/panel-kingdisplay-kd097d04.c
2025-10-02T15:24:50.9203108Z patching file drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
2025-10-02T15:24:50.9204442Z patching file drivers/gpu/drm/panel/panel-novatek-nt35510.c
2025-10-02T15:24:50.9206189Z patching file drivers/gpu/drm/panel/panel-orisetech-otm8009a.c
2025-10-02T15:24:50.9207966Z patching file drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.c
2025-10-02T15:24:50.9208651Z patching file drivers/gpu/drm/panel/panel-samsung-s6d16d0.c
2025-10-02T15:24:50.9209987Z patching file drivers/gpu/drm/panel/panel-samsung-s6e63m0-dsi.c
2025-10-02T15:24:50.9211335Z patching file drivers/gpu/drm/panel/panel-sharp-ls043t1le01.c
2025-10-02T15:24:50.9212787Z patching file drivers/gpu/drm/panel/panel-simple.c
2025-10-02T15:24:50.9216085Z patching file drivers/gpu/drm/panel/panel-sitronix-st7701.c
2025-10-02T15:24:50.9217090Z patching file drivers/gpu/drm/panel/panel-sitronix-st7703.c
2025-10-02T15:24:50.9218240Z patching file drivers/gpu/drm/panel/panel-sony-acx424akp.c
2025-10-02T15:24:50.9219214Z patching file drivers/gpu/drm/panel/panel-tpo-tpg110.c
2025-10-02T15:24:50.9220340Z patching file drivers/gpu/drm/panel/panel-visionox-rm69299.c
2025-10-02T15:24:50.9221165Z patching file drivers/gpu/drm/panfrost/Kconfig
2025-10-02T15:24:50.9222019Z patching file drivers/gpu/drm/panfrost/panfrost_device.c
2025-10-02T15:24:50.9222906Z patching file drivers/gpu/drm/panfrost/panfrost_device.h
2025-10-02T15:24:50.9223913Z patching file drivers/gpu/drm/panfrost/panfrost_drv.c
2025-10-02T15:24:50.9225242Z patching file drivers/gpu/drm/panfrost/panfrost_gem.c
2025-10-02T15:24:50.9226282Z patching file drivers/gpu/drm/panfrost/panfrost_gem.h
2025-10-02T15:24:50.9227280Z patching file drivers/gpu/drm/panfrost/panfrost_gpu.c
2025-10-02T15:24:50.9235065Z patching file drivers/gpu/drm/panfrost/panfrost_job.c
2025-10-02T15:24:50.9235472Z patching file drivers/gpu/drm/panfrost/panfrost_mmu.c
2025-10-02T15:24:50.9235880Z patching file drivers/gpu/drm/panfrost/panfrost_mmu.h
2025-10-02T15:24:50.9236293Z patching file drivers/gpu/drm/panfrost/panfrost_regs.h
2025-10-02T15:24:50.9236647Z patching file drivers/gpu/drm/pl111/Kconfig
2025-10-02T15:24:50.9237030Z patching file drivers/gpu/drm/pl111/pl111_drv.c
2025-10-02T15:24:50.9237437Z patching file drivers/gpu/drm/pl111/pl111_versatile.c
2025-10-02T15:24:50.9237799Z patching file drivers/gpu/drm/qxl/qxl_cmd.c
2025-10-02T15:24:50.9239021Z patching file drivers/gpu/drm/qxl/qxl_display.c
2025-10-02T15:24:50.9241498Z patching file drivers/gpu/drm/qxl/qxl_drv.h
2025-10-02T15:24:50.9242211Z patching file drivers/gpu/drm/qxl/qxl_dumb.c
2025-10-02T15:24:50.9242767Z patching file drivers/gpu/drm/qxl/qxl_gem.c
2025-10-02T15:24:50.9243654Z patching file drivers/gpu/drm/qxl/qxl_ioctl.c
2025-10-02T15:24:50.9245453Z patching file drivers/gpu/drm/qxl/qxl_object.c
2025-10-02T15:24:50.9246233Z patching file drivers/gpu/drm/qxl/qxl_object.h
2025-10-02T15:24:50.9246971Z patching file drivers/gpu/drm/qxl/qxl_release.c
2025-10-02T15:24:50.9248015Z patching file drivers/gpu/drm/radeon/.gitignore
2025-10-02T15:24:50.9248801Z patching file drivers/gpu/drm/radeon/Kconfig
2025-10-02T15:24:50.9249790Z patching file drivers/gpu/drm/radeon/Makefile
2025-10-02T15:24:50.9253459Z patching file drivers/gpu/drm/radeon/atombios.h
2025-10-02T15:24:50.9260044Z patching file drivers/gpu/drm/radeon/atombios_encoders.c
2025-10-02T15:24:50.9263882Z patching file drivers/gpu/drm/radeon/ci_dpm.c
2025-10-02T15:24:50.9269441Z patching file drivers/gpu/drm/radeon/cik.c
2025-10-02T15:24:50.9274571Z patching file drivers/gpu/drm/radeon/cypress_dpm.c
2025-10-02T15:24:50.9277510Z patching file drivers/gpu/drm/radeon/evergreen.c
2025-10-02T15:24:50.9281764Z patching file drivers/gpu/drm/radeon/evergreen_cs.c
2025-10-02T15:24:50.9285256Z patching file drivers/gpu/drm/radeon/ni.c
2025-10-02T15:24:50.9288368Z patching file drivers/gpu/drm/radeon/ni_dpm.c
2025-10-02T15:24:50.9292252Z patching file drivers/gpu/drm/radeon/r100.c
2025-10-02T15:24:50.9295416Z patching file drivers/gpu/drm/radeon/r300.c
2025-10-02T15:24:50.9298435Z patching file drivers/gpu/drm/radeon/r600_cs.c
2025-10-02T15:24:50.9301458Z patching file drivers/gpu/drm/radeon/radeon.h
2025-10-02T15:24:50.9304168Z patching file drivers/gpu/drm/radeon/radeon_asic.h
2025-10-02T15:24:50.9307308Z patching file drivers/gpu/drm/radeon/radeon_atombios.c
2025-10-02T15:24:50.9311346Z patching file drivers/gpu/drm/radeon/radeon_bios.c
2025-10-02T15:24:50.9313755Z patching file drivers/gpu/drm/radeon/radeon_connectors.c
2025-10-02T15:24:50.9315659Z patching file drivers/gpu/drm/radeon/radeon_cs.c
2025-10-02T15:24:50.9317160Z patching file drivers/gpu/drm/radeon/radeon_device.c
2025-10-02T15:24:50.9319123Z patching file drivers/gpu/drm/radeon/radeon_display.c
2025-10-02T15:24:50.9321179Z patching file drivers/gpu/drm/radeon/radeon_dp_mst.c
2025-10-02T15:24:50.9322399Z patching file drivers/gpu/drm/radeon/radeon_drv.c
2025-10-02T15:24:50.9323702Z patching file drivers/gpu/drm/radeon/radeon_encoders.c
2025-10-02T15:24:50.9325275Z patching file drivers/gpu/drm/radeon/radeon_gem.c
2025-10-02T15:24:50.9326871Z patching file drivers/gpu/drm/radeon/radeon_kms.c
2025-10-02T15:24:50.9329011Z patching file drivers/gpu/drm/radeon/radeon_pm.c
2025-10-02T15:24:50.9331544Z patching file drivers/gpu/drm/radeon/radeon_prime.c
2025-10-02T15:24:50.9332240Z patching file drivers/gpu/drm/radeon/radeon_ttm.c
2025-10-02T15:24:50.9333495Z patching file drivers/gpu/drm/radeon/radeon_uvd.c
2025-10-02T15:24:50.9334746Z patching file drivers/gpu/drm/radeon/radeon_vce.c
2025-10-02T15:24:50.9336012Z patching file drivers/gpu/drm/radeon/radeon_vm.c
2025-10-02T15:24:50.9337266Z patching file drivers/gpu/drm/radeon/rs400.c
2025-10-02T15:24:50.9338326Z patching file drivers/gpu/drm/radeon/rv740_dpm.c
2025-10-02T15:24:50.9340998Z patching file drivers/gpu/drm/radeon/si.c
2025-10-02T15:24:50.9346694Z patching file drivers/gpu/drm/radeon/si_dpm.c
2025-10-02T15:24:50.9353878Z patching file drivers/gpu/drm/radeon/sumo_dpm.c
2025-10-02T15:24:50.9354465Z patching file drivers/gpu/drm/radeon/trinity_dpm.c
2025-10-02T15:24:50.9357552Z patching file drivers/gpu/drm/rcar-du/Kconfig
2025-10-02T15:24:50.9363340Z patching file drivers/gpu/drm/rcar-du/rcar_cmm.c
2025-10-02T15:24:50.9363743Z patching file drivers/gpu/drm/rcar-du/rcar_du_crtc.c
2025-10-02T15:24:50.9364130Z patching file drivers/gpu/drm/rcar-du/rcar_du_drv.h
2025-10-02T15:24:50.9364527Z patching file drivers/gpu/drm/rcar-du/rcar_du_encoder.c
2025-10-02T15:24:50.9364901Z patching file drivers/gpu/drm/rcar-du/rcar_du_kms.c
2025-10-02T15:24:50.9365353Z patching file drivers/gpu/drm/rockchip/analogix_dp-rockchip.c
2025-10-02T15:24:50.9365744Z patching file drivers/gpu/drm/rockchip/cdn-dp-core.c
2025-10-02T15:24:50.9366122Z patching file drivers/gpu/drm/rockchip/cdn-dp-reg.c
2025-10-02T15:24:50.9366560Z patching file drivers/gpu/drm/rockchip/dw-mipi-dsi-rockchip.c
2025-10-02T15:24:50.9371840Z patching file drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c
2025-10-02T15:24:50.9372245Z patching file drivers/gpu/drm/rockchip/inno_hdmi.c
2025-10-02T15:24:50.9372630Z patching file drivers/gpu/drm/rockchip/rk3066_hdmi.c
2025-10-02T15:24:50.9373120Z patching file drivers/gpu/drm/rockchip/rockchip_drm_fb.c
2025-10-02T15:24:50.9373521Z patching file drivers/gpu/drm/rockchip/rockchip_drm_gem.c
2025-10-02T15:24:50.9373948Z patching file drivers/gpu/drm/rockchip/rockchip_drm_vop.c
2025-10-02T15:24:50.9374302Z patching file drivers/gpu/drm/rockchip/rockchip_drm_vop.h
2025-10-02T15:24:50.9374767Z patching file drivers/gpu/drm/rockchip/rockchip_lvds.c
2025-10-02T15:24:50.9375927Z patching file drivers/gpu/drm/rockchip/rockchip_vop_reg.c
2025-10-02T15:24:50.9376944Z patching file drivers/gpu/drm/rockchip/rockchip_vop_reg.h
2025-10-02T15:24:50.9378292Z patching file drivers/gpu/drm/scheduler/gpu_scheduler_trace.h
2025-10-02T15:24:50.9378995Z patching file drivers/gpu/drm/scheduler/sched_entity.c
2025-10-02T15:24:50.9380644Z patching file drivers/gpu/drm/scheduler/sched_main.c
2025-10-02T15:24:50.9383313Z patching file drivers/gpu/drm/sti/Makefile
2025-10-02T15:24:50.9383684Z patching file drivers/gpu/drm/sti/sti_dvo.c
2025-10-02T15:24:50.9384032Z patching file drivers/gpu/drm/sti/sti_hda.c
2025-10-02T15:24:50.9385056Z patching file drivers/gpu/drm/sti/sti_hdmi.c
2025-10-02T15:24:50.9386494Z patching file drivers/gpu/drm/sti/sti_mixer.c
2025-10-02T15:24:50.9387362Z patching file drivers/gpu/drm/stm/drv.c
2025-10-02T15:24:50.9388448Z patching file drivers/gpu/drm/stm/ltdc.c
2025-10-02T15:24:50.9390121Z patching file drivers/gpu/drm/sun4i/Kconfig
2025-10-02T15:24:50.9390922Z patching file drivers/gpu/drm/sun4i/sun4i_drv.c
2025-10-02T15:24:50.9392370Z patching file drivers/gpu/drm/sun4i/sun4i_tcon.c
2025-10-02T15:24:50.9394663Z patching file drivers/gpu/drm/sun4i/sun4i_tcon.h
2025-10-02T15:24:50.9395598Z patching file drivers/gpu/drm/sun4i/sun6i_mipi_dsi.c
2025-10-02T15:24:50.9397192Z patching file drivers/gpu/drm/sun4i/sun8i_csc.h
2025-10-02T15:24:50.9397988Z patching file drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c
2025-10-02T15:24:50.9399866Z patching file drivers/gpu/drm/sun4i/sun8i_dw_hdmi.h
2025-10-02T15:24:50.9400798Z patching file drivers/gpu/drm/sun4i/sun8i_hdmi_phy.c
2025-10-02T15:24:50.9403279Z patching file drivers/gpu/drm/sun4i/sun8i_mixer.h
2025-10-02T15:24:50.9404445Z patching file drivers/gpu/drm/tegra/dc.c
2025-10-02T15:24:50.9406591Z patching file drivers/gpu/drm/tegra/dpaux.c
2025-10-02T15:24:50.9407895Z patching file drivers/gpu/drm/tegra/drm.c
2025-10-02T15:24:50.9409649Z patching file drivers/gpu/drm/tegra/dsi.c
2025-10-02T15:24:50.9411373Z patching file drivers/gpu/drm/tegra/fb.c
2025-10-02T15:24:50.9413285Z patching file drivers/gpu/drm/tegra/hdmi.c
2025-10-02T15:24:50.9416356Z patching file drivers/gpu/drm/tegra/hub.c
2025-10-02T15:24:50.9416718Z patching file drivers/gpu/drm/tegra/hub.h
2025-10-02T15:24:50.9417152Z patching file drivers/gpu/drm/tegra/output.c
2025-10-02T15:24:50.9417845Z patching file drivers/gpu/drm/tegra/rgb.c
2025-10-02T15:24:50.9419654Z patching file drivers/gpu/drm/tegra/sor.c
2025-10-02T15:24:50.9422821Z patching file drivers/gpu/drm/tegra/vic.c
2025-10-02T15:24:50.9423823Z patching file drivers/gpu/drm/tidss/tidss_crtc.c
2025-10-02T15:24:50.9425489Z patching file drivers/gpu/drm/tidss/tidss_dispc.c
2025-10-02T15:24:50.9427763Z patching file drivers/gpu/drm/tidss/tidss_plane.c
2025-10-02T15:24:50.9428763Z patching file drivers/gpu/drm/tilcdc/tilcdc_crtc.c
2025-10-02T15:24:50.9431022Z patching file drivers/gpu/drm/tilcdc/tilcdc_external.c
2025-10-02T15:24:50.9431722Z patching file drivers/gpu/drm/tiny/gm12u320.c
2025-10-02T15:24:50.9433440Z patching file drivers/gpu/drm/tiny/ili9486.c
2025-10-02T15:24:50.9434857Z patching file drivers/gpu/drm/tiny/repaper.c
2025-10-02T15:24:50.9436137Z patching file drivers/gpu/drm/tiny/st7735r.c
2025-10-02T15:24:50.9437630Z patching file drivers/gpu/drm/ttm/ttm_bo.c
2025-10-02T15:24:50.9441674Z patching file drivers/gpu/drm/ttm/ttm_bo_util.c
2025-10-02T15:24:50.9442231Z patching file drivers/gpu/drm/ttm/ttm_bo_vm.c
2025-10-02T15:24:50.9442621Z patching file drivers/gpu/drm/ttm/ttm_memory.c
2025-10-02T15:24:50.9443044Z patching file drivers/gpu/drm/ttm/ttm_range_manager.c
2025-10-02T15:24:50.9443644Z patching file drivers/gpu/drm/ttm/ttm_resource.c
2025-10-02T15:24:50.9445371Z patching file drivers/gpu/drm/tve200/tve200_drv.c
2025-10-02T15:24:50.9445937Z patching file drivers/gpu/drm/udl/udl_connector.c
2025-10-02T15:24:50.9446335Z patching file drivers/gpu/drm/udl/udl_drv.c
2025-10-02T15:24:50.9452522Z patching file drivers/gpu/drm/udl/udl_drv.h
2025-10-02T15:24:50.9453231Z patching file drivers/gpu/drm/udl/udl_main.c
2025-10-02T15:24:50.9454755Z patching file drivers/gpu/drm/udl/udl_modeset.c
2025-10-02T15:24:50.9455705Z patching file drivers/gpu/drm/v3d/v3d_drv.h
2025-10-02T15:24:50.9456469Z patching file drivers/gpu/drm/v3d/v3d_gem.c
2025-10-02T15:24:50.9457312Z patching file drivers/gpu/drm/v3d/v3d_irq.c
2025-10-02T15:24:50.9459886Z patching file drivers/gpu/drm/v3d/v3d_mmu.c
2025-10-02T15:24:50.9461001Z patching file drivers/gpu/drm/v3d/v3d_sched.c
2025-10-02T15:24:50.9461654Z patching file drivers/gpu/drm/vboxvideo/hgsmi_base.c
2025-10-02T15:24:50.9462311Z patching file drivers/gpu/drm/vboxvideo/vbox_main.c
2025-10-02T15:24:50.9463310Z patching file drivers/gpu/drm/vboxvideo/vboxvideo.h
2025-10-02T15:24:50.9467323Z patching file drivers/gpu/drm/vc4/vc4_bo.c
2025-10-02T15:24:50.9468148Z patching file drivers/gpu/drm/vc4/vc4_crtc.c
2025-10-02T15:24:50.9468703Z patching file drivers/gpu/drm/vc4/vc4_dpi.c
2025-10-02T15:24:50.9469082Z patching file drivers/gpu/drm/vc4/vc4_drv.c
2025-10-02T15:24:50.9472414Z patching file drivers/gpu/drm/vc4/vc4_drv.h
2025-10-02T15:24:50.9472965Z patching file drivers/gpu/drm/vc4/vc4_dsi.c
2025-10-02T15:24:50.9475502Z patching file drivers/gpu/drm/vc4/vc4_hdmi.c
2025-10-02T15:24:50.9479216Z patching file drivers/gpu/drm/vc4/vc4_hdmi_regs.h
2025-10-02T15:24:50.9480209Z patching file drivers/gpu/drm/vc4/vc4_hvs.c
2025-10-02T15:24:50.9484133Z patching file drivers/gpu/drm/vc4/vc4_plane.c
2025-10-02T15:24:50.9484530Z patching file drivers/gpu/drm/vc4/vc4_regs.h
2025-10-02T15:24:50.9486135Z patching file drivers/gpu/drm/vc4/vc4_txp.c
2025-10-02T15:24:50.9488874Z patching file drivers/gpu/drm/vc4/vc4_vec.c
2025-10-02T15:24:50.9489274Z patching file drivers/gpu/drm/vgem/vgem_fence.c
2025-10-02T15:24:50.9492810Z patching file drivers/gpu/drm/virtio/virtgpu_display.c
2025-10-02T15:24:50.9493349Z patching file drivers/gpu/drm/virtio/virtgpu_gem.c
2025-10-02T15:24:50.9493775Z patching file drivers/gpu/drm/virtio/virtgpu_ioctl.c
2025-10-02T15:24:50.9494183Z patching file drivers/gpu/drm/virtio/virtgpu_kms.c
2025-10-02T15:24:50.9494617Z patching file drivers/gpu/drm/virtio/virtgpu_object.c
2025-10-02T15:24:50.9497804Z patching file drivers/gpu/drm/virtio/virtgpu_plane.c
2025-10-02T15:24:50.9498324Z patching file drivers/gpu/drm/virtio/virtgpu_vq.c
2025-10-02T15:24:50.9498691Z patching file drivers/gpu/drm/vkms/vkms_crtc.c
2025-10-02T15:24:50.9499060Z patching file drivers/gpu/drm/vkms/vkms_drv.c
2025-10-02T15:24:50.9502835Z patching file drivers/gpu/drm/vmwgfx/device_include/svga3d_surfacedefs.h
2025-10-02T15:24:50.9503114Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_binding.c
2025-10-02T15:24:50.9503500Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_blit.c
2025-10-02T15:24:50.9505021Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_bo.c
2025-10-02T15:24:50.9507231Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.c
2025-10-02T15:24:50.9509825Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf_res.c
2025-10-02T15:24:50.9510438Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_cotable.c
2025-10-02T15:24:50.9511428Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
2025-10-02T15:24:50.9513827Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
2025-10-02T15:24:50.9516836Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c
2025-10-02T15:24:50.9520796Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_fb.c
2025-10-02T15:24:50.9522963Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_fence.c
2025-10-02T15:24:50.9524389Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_kms.c
2025-10-02T15:24:50.9527395Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_mob.c
2025-10-02T15:24:50.9529005Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_msg.c
2025-10-02T15:24:50.9529413Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c
2025-10-02T15:24:50.9530968Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_resource.c
2025-10-02T15:24:50.9532443Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_scrn.c
2025-10-02T15:24:50.9535249Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_shader.c
2025-10-02T15:24:50.9546956Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_so.c
2025-10-02T15:24:50.9551408Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
2025-10-02T15:24:50.9555500Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c
2025-10-02T15:24:50.9556526Z patching file drivers/gpu/drm/vmwgfx/vmwgfx_validation.c
2025-10-02T15:24:50.9558401Z patching file drivers/gpu/drm/xen/xen_drm_front.c
2025-10-02T15:24:50.9558823Z patching file drivers/gpu/drm/xlnx/zynqmp_disp.c
2025-10-02T15:24:50.9559218Z patching file drivers/gpu/drm/xlnx/zynqmp_dp.c
2025-10-02T15:24:50.9559764Z patching file drivers/gpu/drm/xlnx/zynqmp_dpsub.c
2025-10-02T15:24:50.9560136Z patching file drivers/gpu/drm/zte/Kconfig
2025-10-02T15:24:50.9560494Z patching file drivers/gpu/host1x/bus.c
2025-10-02T15:24:50.9560851Z patching file drivers/gpu/host1x/dev.c
2025-10-02T15:24:50.9561239Z patching file drivers/gpu/host1x/hw/syncpt_hw.c
2025-10-02T15:24:50.9561627Z patching file drivers/gpu/ipu-v3/ipu-common.c
2025-10-02T15:24:50.9562008Z patching file drivers/gpu/ipu-v3/ipu-cpmem.c
2025-10-02T15:24:50.9562371Z patching file drivers/gpu/ipu-v3/ipu-di.c
2025-10-02T15:24:50.9562729Z patching file drivers/greybus/interface.c
2025-10-02T15:24:50.9563069Z patching file drivers/greybus/svc.c
2025-10-02T15:24:50.9563418Z patching file drivers/hid/Kconfig
2025-10-02T15:24:50.9563767Z patching file drivers/hid/hid-a4tech.c
2025-10-02T15:24:50.9564113Z patching file drivers/hid/hid-alps.c
2025-10-02T15:24:50.9564466Z patching file drivers/hid/hid-apple.c
2025-10-02T15:24:50.9566623Z patching file drivers/hid/hid-appleir.c
2025-10-02T15:24:50.9568042Z patching file drivers/hid/hid-asus.c
2025-10-02T15:24:50.9569664Z patching file drivers/hid/hid-betopff.c
2025-10-02T15:24:50.9570193Z patching file drivers/hid/hid-bigbenff.c
2025-10-02T15:24:50.9572130Z patching file drivers/hid/hid-chicony.c
2025-10-02T15:24:50.9573712Z patching file drivers/hid/hid-core.c
2025-10-02T15:24:50.9577628Z patching file drivers/hid/hid-corsair.c
2025-10-02T15:24:50.9577850Z patching file drivers/hid/hid-cougar.c
2025-10-02T15:24:50.9579422Z patching file drivers/hid/hid-cp2112.c
2025-10-02T15:24:50.9581328Z patching file drivers/hid/hid-debug.c
2025-10-02T15:24:50.9583080Z patching file drivers/hid/hid-elan.c
2025-10-02T15:24:50.9584307Z patching file drivers/hid/hid-elo.c
2025-10-02T15:24:50.9585337Z patching file drivers/hid/hid-glorious.c
2025-10-02T15:24:50.9586777Z patching file drivers/hid/hid-google-hammer.c
2025-10-02T15:24:50.9588939Z patching file drivers/hid/hid-gt683r.c
2025-10-02T15:24:50.9589912Z patching file drivers/hid/hid-holtek-kbd.c
2025-10-02T15:24:50.9590952Z patching file drivers/hid/hid-holtek-mouse.c
2025-10-02T15:24:50.9592050Z patching file drivers/hid/hid-hyperv.c
2025-10-02T15:24:50.9593893Z patching file drivers/hid/hid-ids.h
2025-10-02T15:24:50.9596707Z patching file drivers/hid/hid-input.c
2025-10-02T15:24:50.9598850Z patching file drivers/hid/hid-ite.c
2025-10-02T15:24:50.9599812Z patching file drivers/hid/hid-led.c
2025-10-02T15:24:50.9601584Z patching file drivers/hid/hid-lenovo.c
2025-10-02T15:24:50.9604127Z patching file drivers/hid/hid-lg.c
2025-10-02T15:24:50.9606012Z patching file drivers/hid/hid-lg4ff.c
2025-10-02T15:24:50.9608265Z patching file drivers/hid/hid-logitech-dj.c
2025-10-02T15:24:50.9611656Z patching file drivers/hid/hid-logitech-hidpp.c
2025-10-02T15:24:50.9620310Z patching file drivers/hid/hid-magicmouse.c
2025-10-02T15:24:50.9620680Z patching file drivers/hid/hid-mcp2221.c
2025-10-02T15:24:50.9621013Z patching file drivers/hid/hid-mf.c
2025-10-02T15:24:50.9621369Z patching file drivers/hid/hid-microsoft.c
2025-10-02T15:24:50.9621732Z patching file drivers/hid/hid-multitouch.c
2025-10-02T15:24:50.9624627Z patching file drivers/hid/hid-ntrig.c
2025-10-02T15:24:50.9626128Z patching file drivers/hid/hid-plantronics.c
2025-10-02T15:24:50.9627990Z patching file drivers/hid/hid-prodikeys.c
2025-10-02T15:24:50.9629625Z patching file drivers/hid/hid-quirks.c
2025-10-02T15:24:50.9632446Z patching file drivers/hid/hid-roccat-arvo.c
2025-10-02T15:24:50.9633494Z patching file drivers/hid/hid-roccat-isku.c
2025-10-02T15:24:50.9634504Z patching file drivers/hid/hid-roccat-kone.c
2025-10-02T15:24:50.9635368Z patching file drivers/hid/hid-roccat-koneplus.c
2025-10-02T15:24:50.9636551Z patching file drivers/hid/hid-roccat-konepure.c
2025-10-02T15:24:50.9644481Z patching file drivers/hid/hid-roccat-kovaplus.c
2025-10-02T15:24:50.9645429Z patching file drivers/hid/hid-roccat-lua.c
2025-10-02T15:24:50.9646033Z patching file drivers/hid/hid-roccat-pyra.c
2025-10-02T15:24:50.9647259Z patching file drivers/hid/hid-roccat-ryos.c
2025-10-02T15:24:50.9647792Z patching file drivers/hid/hid-roccat-savu.c
2025-10-02T15:24:50.9648856Z patching file drivers/hid/hid-roccat.c
2025-10-02T15:24:50.9649423Z patching file drivers/hid/hid-saitek.c
2025-10-02T15:24:50.9650575Z patching file drivers/hid/hid-samsung.c
2025-10-02T15:24:50.9651131Z patching file drivers/hid/hid-sensor-custom.c
2025-10-02T15:24:50.9651922Z patching file drivers/hid/hid-sensor-hub.c
2025-10-02T15:24:50.9652464Z patching file drivers/hid/hid-steam.c
2025-10-02T15:24:50.9654626Z patching file drivers/hid/hid-u2fzero.c
2025-10-02T15:24:50.9656140Z patching file drivers/hid/hid-uclogic-core.c
2025-10-02T15:24:50.9656545Z patching file drivers/hid/hid-uclogic-params.c
2025-10-02T15:24:50.9656913Z patching file drivers/hid/hid-vivaldi.c
2025-10-02T15:24:50.9657799Z patching file drivers/hid/hidraw.c
2025-10-02T15:24:50.9658419Z patching file drivers/hid/i2c-hid/i2c-hid-core.c
2025-10-02T15:24:50.9660598Z patching file drivers/hid/i2c-hid/i2c-hid-dmi-quirks.c
2025-10-02T15:24:50.9662155Z patching file drivers/hid/intel-ish-hid/ipc/ipc.c
2025-10-02T15:24:50.9663630Z patching file drivers/hid/intel-ish-hid/ipc/pci-ish.c
2025-10-02T15:24:50.9664868Z patching file drivers/hid/intel-ish-hid/ishtp-fw-loader.c
2025-10-02T15:24:50.9666779Z patching file drivers/hid/intel-ish-hid/ishtp-hid.c
2025-10-02T15:24:50.9667443Z patching file drivers/hid/intel-ish-hid/ishtp-hid.h
2025-10-02T15:24:50.9668783Z patching file drivers/hid/intel-ish-hid/ishtp/client.c
2025-10-02T15:24:50.9671483Z patching file drivers/hid/intel-ish-hid/ishtp/dma-if.c
2025-10-02T15:24:50.9672116Z patching file drivers/hid/uhid.c
2025-10-02T15:24:50.9673601Z patching file drivers/hid/usbhid/hid-core.c
2025-10-02T15:24:50.9676122Z patching file drivers/hid/usbhid/hid-pidff.c
2025-10-02T15:24:50.9678232Z patching file drivers/hid/usbhid/usbkbd.c
2025-10-02T15:24:50.9679277Z patching file drivers/hid/wacom.h
2025-10-02T15:24:50.9681420Z patching file drivers/hid/wacom_sys.c
2025-10-02T15:24:50.9686360Z patching file drivers/hid/wacom_wac.c
2025-10-02T15:24:50.9691421Z patching file drivers/hid/wacom_wac.h
2025-10-02T15:24:50.9693619Z patching file drivers/hsi/clients/ssi_protocol.c
2025-10-02T15:24:50.9694660Z patching file drivers/hsi/controllers/omap_ssi_core.c
2025-10-02T15:24:50.9696477Z patching file drivers/hsi/controllers/omap_ssi_port.c
2025-10-02T15:24:50.9698374Z patching file drivers/hsi/hsi_core.c
2025-10-02T15:24:50.9700113Z patching file drivers/hv/channel.c
2025-10-02T15:24:50.9702737Z patching file drivers/hv/channel_mgmt.c
2025-10-02T15:24:50.9705391Z patching file drivers/hv/connection.c
2025-10-02T15:24:50.9707435Z patching file drivers/hv/hv_balloon.c
2025-10-02T15:24:50.9708869Z patching file drivers/hv/hv_kvp.c
2025-10-02T15:24:50.9710871Z patching file drivers/hv/hv_snapshot.c
2025-10-02T15:24:50.9712000Z patching file drivers/hv/hv_util.c
2025-10-02T15:24:50.9713397Z patching file drivers/hv/hyperv_vmbus.h
2025-10-02T15:24:50.9715143Z patching file drivers/hv/ring_buffer.c
2025-10-02T15:24:50.9716855Z patching file drivers/hv/vmbus_drv.c
2025-10-02T15:24:50.9720132Z patching file drivers/hwmon/Kconfig
2025-10-02T15:24:50.9722727Z patching file drivers/hwmon/acpi_power_meter.c
2025-10-02T15:24:50.9724789Z patching file drivers/hwmon/ad7314.c
2025-10-02T15:24:50.9725406Z patching file drivers/hwmon/adc128d818.c
2025-10-02T15:24:50.9727093Z patching file drivers/hwmon/adt7470.c
2025-10-02T15:24:50.9729458Z patching file drivers/hwmon/adt7475.c
2025-10-02T15:24:50.9731832Z patching file drivers/hwmon/amc6821.c
2025-10-02T15:24:50.9733370Z patching file drivers/hwmon/amd_energy.c
2025-10-02T15:24:50.9735729Z patching file drivers/hwmon/aspeed-pwm-tacho.c
2025-10-02T15:24:50.9737449Z patching file drivers/hwmon/axi-fan-control.c
2025-10-02T15:24:50.9739204Z patching file drivers/hwmon/coretemp.c
2025-10-02T15:24:50.9741919Z patching file drivers/hwmon/corsair-cpro.c
2025-10-02T15:24:50.9743716Z patching file drivers/hwmon/dell-smm-hwmon.c
2025-10-02T15:24:50.9745672Z patching file drivers/hwmon/drivetemp.c
2025-10-02T15:24:50.9747658Z patching file drivers/hwmon/f71882fg.c
2025-10-02T15:24:50.9750275Z patching file drivers/hwmon/gpio-fan.c
2025-10-02T15:24:50.9752275Z patching file drivers/hwmon/gsc-hwmon.c
2025-10-02T15:24:50.9753683Z patching file drivers/hwmon/hwmon.c
2025-10-02T15:24:50.9755323Z patching file drivers/hwmon/i5500_temp.c
2025-10-02T15:24:50.9756658Z patching file drivers/hwmon/ibmaem.c
2025-10-02T15:24:50.9758194Z patching file drivers/hwmon/ibmpex.c
2025-10-02T15:24:50.9760248Z patching file drivers/hwmon/ina3221.c
2025-10-02T15:24:50.9762003Z patching file drivers/hwmon/it87.c
2025-10-02T15:24:50.9765475Z patching file drivers/hwmon/jc42.c
2025-10-02T15:24:50.9767675Z patching file drivers/hwmon/k10temp.c
2025-10-02T15:24:50.9769399Z patching file drivers/hwmon/lm70.c
2025-10-02T15:24:50.9771073Z patching file drivers/hwmon/lm80.c
2025-10-02T15:24:50.9772701Z patching file drivers/hwmon/lm90.c
2025-10-02T15:24:50.9776456Z patching file drivers/hwmon/lm95234.c
2025-10-02T15:24:50.9778208Z patching file drivers/hwmon/ltc2945.c
2025-10-02T15:24:50.9779288Z patching file drivers/hwmon/ltc2947-core.c
2025-10-02T15:24:50.9781389Z patching file drivers/hwmon/max16065.c
2025-10-02T15:24:50.9782969Z patching file drivers/hwmon/max31722.c
2025-10-02T15:24:50.9784033Z patching file drivers/hwmon/max31790.c
2025-10-02T15:24:50.9785728Z patching file drivers/hwmon/max6697.c
2025-10-02T15:24:50.9787245Z patching file drivers/hwmon/mlxreg-fan.c
2025-10-02T15:24:50.9788791Z patching file drivers/hwmon/mr75203.c
2025-10-02T15:24:50.9792132Z patching file drivers/hwmon/nct6775.c
2025-10-02T15:24:50.9795542Z patching file drivers/hwmon/nct7802.c
2025-10-02T15:24:50.9797224Z patching file drivers/hwmon/ntc_thermistor.c
2025-10-02T15:24:50.9798923Z patching file drivers/hwmon/occ/common.c
2025-10-02T15:24:50.9801844Z patching file drivers/hwmon/occ/common.h
2025-10-02T15:24:50.9803443Z patching file drivers/hwmon/pmbus/adm1266.c
2025-10-02T15:24:50.9804117Z patching file drivers/hwmon/pmbus/adm1275.c
2025-10-02T15:24:50.9805960Z patching file drivers/hwmon/pmbus/bel-pfe.c
2025-10-02T15:24:50.9807637Z patching file drivers/hwmon/pmbus/ibm-cffps.c
2025-10-02T15:24:50.9808272Z patching file drivers/hwmon/pmbus/isl68137.c
2025-10-02T15:24:50.9810683Z patching file drivers/hwmon/pmbus/lm25066.c
2025-10-02T15:24:50.9811382Z patching file drivers/hwmon/pmbus/max34440.c
2025-10-02T15:24:50.9812781Z patching file drivers/hwmon/pmbus/mp2975.c
2025-10-02T15:24:50.9814035Z patching file drivers/hwmon/pmbus/pmbus.c
2025-10-02T15:24:50.9815146Z patching file drivers/hwmon/pmbus/pmbus.h
2025-10-02T15:24:50.9817056Z patching file drivers/hwmon/pmbus/pmbus_core.c
2025-10-02T15:24:50.9819918Z patching file drivers/hwmon/pmbus/pxe1610.c
2025-10-02T15:24:50.9820726Z patching file drivers/hwmon/pmbus/ucd9000.c
2025-10-02T15:24:50.9822328Z patching file drivers/hwmon/pwm-fan.c
2025-10-02T15:24:50.9823588Z patching file drivers/hwmon/sch56xx-common.c
2025-10-02T15:24:50.9824807Z patching file drivers/hwmon/scpi-hwmon.c
2025-10-02T15:24:50.9825954Z patching file drivers/hwmon/shtc1.c
2025-10-02T15:24:50.9827099Z patching file drivers/hwmon/tmp401.c
2025-10-02T15:24:50.9828513Z patching file drivers/hwmon/tmp421.c
2025-10-02T15:24:50.9830151Z patching file drivers/hwmon/tmp513.c
2025-10-02T15:24:50.9832066Z patching file drivers/hwmon/w83627ehf.c
2025-10-02T15:24:50.9834760Z patching file drivers/hwmon/w83791d.c
2025-10-02T15:24:50.9837362Z patching file drivers/hwmon/w83792d.c
2025-10-02T15:24:50.9840189Z patching file drivers/hwmon/w83793.c
2025-10-02T15:24:50.9842482Z patching file drivers/hwmon/xgene-hwmon.c
2025-10-02T15:24:50.9843983Z patching file drivers/hwspinlock/hwspinlock_core.c
2025-10-02T15:24:50.9845621Z patching file drivers/hwspinlock/hwspinlock_internal.h
2025-10-02T15:24:50.9846131Z patching file drivers/hwspinlock/qcom_hwspinlock.c
2025-10-02T15:24:50.9847417Z patching file drivers/hwtracing/coresight/coresight-catu.c
2025-10-02T15:24:50.9848906Z patching file drivers/hwtracing/coresight/coresight-core.c
2025-10-02T15:24:50.9851159Z patching file drivers/hwtracing/coresight/coresight-cpu-debug.c
2025-10-02T15:24:50.9852584Z patching file drivers/hwtracing/coresight/coresight-cti-core.c
2025-10-02T15:24:50.9854170Z patching file drivers/hwtracing/coresight/coresight-etb10.c
2025-10-02T15:24:50.9855698Z patching file drivers/hwtracing/coresight/coresight-etm-perf.c
2025-10-02T15:24:50.9856941Z patching file drivers/hwtracing/coresight/coresight-etm3x-core.c
2025-10-02T15:24:50.9858645Z patching file drivers/hwtracing/coresight/coresight-etm4x-core.c
2025-10-02T15:24:50.9861583Z patching file drivers/hwtracing/coresight/coresight-etm4x-sysfs.c
2025-10-02T15:24:50.9863578Z patching file drivers/hwtracing/coresight/coresight-etm4x.h
2025-10-02T15:24:50.9864699Z patching file drivers/hwtracing/coresight/coresight-funnel.c
2025-10-02T15:24:50.9865979Z patching file drivers/hwtracing/coresight/coresight-platform.c
2025-10-02T15:24:50.9867285Z patching file drivers/hwtracing/coresight/coresight-priv.h
2025-10-02T15:24:50.9868359Z patching file drivers/hwtracing/coresight/coresight-replicator.c
2025-10-02T15:24:50.9869820Z patching file drivers/hwtracing/coresight/coresight-stm.c
2025-10-02T15:24:50.9871716Z patching file drivers/hwtracing/coresight/coresight-tmc-core.c
2025-10-02T15:24:50.9872800Z patching file drivers/hwtracing/coresight/coresight-tmc-etf.c
2025-10-02T15:24:50.9874785Z patching file drivers/hwtracing/coresight/coresight-tmc-etr.c
2025-10-02T15:24:50.9876841Z patching file drivers/hwtracing/coresight/coresight-tmc.h
2025-10-02T15:24:50.9877606Z patching file drivers/hwtracing/coresight/coresight-tpiu.c
2025-10-02T15:24:50.9878813Z patching file drivers/hwtracing/intel_th/core.c
2025-10-02T15:24:50.9880808Z patching file drivers/hwtracing/intel_th/gth.c
2025-10-02T15:24:50.9882216Z patching file drivers/hwtracing/intel_th/intel_th.h
2025-10-02T15:24:50.9883147Z patching file drivers/hwtracing/intel_th/msu-sink.c
2025-10-02T15:24:50.9884687Z patching file drivers/hwtracing/intel_th/msu.c
2025-10-02T15:24:50.9886791Z patching file drivers/hwtracing/intel_th/pci.c
2025-10-02T15:24:50.9888404Z patching file drivers/hwtracing/stm/core.c
2025-10-02T15:24:50.9890044Z patching file drivers/hwtracing/stm/heartbeat.c
2025-10-02T15:24:50.9891549Z patching file drivers/i2c/busses/Kconfig
2025-10-02T15:24:50.9893592Z patching file drivers/i2c/busses/i2c-ali1535.c
2025-10-02T15:24:50.9894716Z patching file drivers/i2c/busses/i2c-ali15x3.c
2025-10-02T15:24:50.9896421Z patching file drivers/i2c/busses/i2c-aspeed.c
2025-10-02T15:24:50.9898777Z patching file drivers/i2c/busses/i2c-at91-master.c
2025-10-02T15:24:50.9900142Z patching file drivers/i2c/busses/i2c-at91-slave.c
2025-10-02T15:24:50.9901430Z patching file drivers/i2c/busses/i2c-bcm-iproc.c
2025-10-02T15:24:50.9904255Z patching file drivers/i2c/busses/i2c-bcm2835.c
2025-10-02T15:24:50.9905452Z patching file drivers/i2c/busses/i2c-brcmstb.c
2025-10-02T15:24:50.9907369Z patching file drivers/i2c/busses/i2c-cadence.c
2025-10-02T15:24:50.9909789Z patching file drivers/i2c/busses/i2c-cbus-gpio.c
2025-10-02T15:24:50.9910717Z patching file drivers/i2c/busses/i2c-cros-ec-tunnel.c
2025-10-02T15:24:50.9911876Z patching file drivers/i2c/busses/i2c-designware-common.c
2025-10-02T15:24:50.9913916Z patching file drivers/i2c/busses/i2c-designware-master.c
2025-10-02T15:24:50.9915564Z patching file drivers/i2c/busses/i2c-designware-pcidrv.c
2025-10-02T15:24:50.9916597Z patching file drivers/i2c/busses/i2c-designware-platdrv.c
2025-10-02T15:24:50.9918129Z patching file drivers/i2c/busses/i2c-designware-slave.c
2025-10-02T15:24:50.9919005Z patching file drivers/i2c/busses/i2c-emev2.c
2025-10-02T15:24:50.9920595Z patching file drivers/i2c/busses/i2c-exynos5.c
2025-10-02T15:24:50.9922034Z patching file drivers/i2c/busses/i2c-highlander.c
2025-10-02T15:24:50.9923226Z patching file drivers/i2c/busses/i2c-hix5hd2.c
2025-10-02T15:24:50.9924830Z patching file drivers/i2c/busses/i2c-i801.c
2025-10-02T15:24:50.9927654Z patching file drivers/i2c/busses/i2c-ibm_iic.c
2025-10-02T15:24:50.9929318Z patching file drivers/i2c/busses/i2c-img-scb.c
2025-10-02T15:24:50.9931544Z patching file drivers/i2c/busses/i2c-imx-lpi2c.c
2025-10-02T15:24:50.9933286Z patching file drivers/i2c/busses/i2c-imx.c
2025-10-02T15:24:50.9935262Z patching file drivers/i2c/busses/i2c-iop3xx.c
2025-10-02T15:24:50.9936461Z patching file drivers/i2c/busses/i2c-isch.c
2025-10-02T15:24:50.9938968Z patching file drivers/i2c/busses/i2c-ismt.c
2025-10-02T15:24:50.9940730Z patching file drivers/i2c/busses/i2c-jz4780.c
2025-10-02T15:24:50.9942384Z patching file drivers/i2c/busses/i2c-meson.c
2025-10-02T15:24:50.9944209Z patching file drivers/i2c/busses/i2c-mlxbf.c
2025-10-02T15:24:50.9947669Z patching file drivers/i2c/busses/i2c-mpc.c
2025-10-02T15:24:50.9950144Z patching file drivers/i2c/busses/i2c-mt65xx.c
2025-10-02T15:24:50.9952841Z patching file drivers/i2c/busses/i2c-mt7621.c
2025-10-02T15:24:50.9954158Z patching file drivers/i2c/busses/i2c-mxs.c
2025-10-02T15:24:50.9955812Z patching file drivers/i2c/busses/i2c-nomadik.c
2025-10-02T15:24:50.9958083Z patching file drivers/i2c/busses/i2c-npcm7xx.c
2025-10-02T15:24:50.9962267Z patching file drivers/i2c/busses/i2c-ocores.c
2025-10-02T15:24:50.9963897Z patching file drivers/i2c/busses/i2c-octeon-core.c
2025-10-02T15:24:50.9965761Z patching file drivers/i2c/busses/i2c-omap.c
2025-10-02T15:24:50.9967832Z patching file drivers/i2c/busses/i2c-pasemi.c
2025-10-02T15:24:50.9968979Z patching file drivers/i2c/busses/i2c-piix4.c
2025-10-02T15:24:50.9970920Z patching file drivers/i2c/busses/i2c-pnx.c
2025-10-02T15:24:50.9972997Z patching file drivers/i2c/busses/i2c-pxa-pci.c
2025-10-02T15:24:50.9974319Z patching file drivers/i2c/busses/i2c-pxa.c
2025-10-02T15:24:50.9976205Z patching file drivers/i2c/busses/i2c-qcom-cci.c
2025-10-02T15:24:50.9977851Z patching file drivers/i2c/busses/i2c-qcom-geni.c
2025-10-02T15:24:50.9980290Z patching file drivers/i2c/busses/i2c-qup.c
2025-10-02T15:24:50.9983097Z patching file drivers/i2c/busses/i2c-rcar.c
2025-10-02T15:24:50.9985815Z patching file drivers/i2c/busses/i2c-riic.c
2025-10-02T15:24:50.9987297Z patching file drivers/i2c/busses/i2c-rk3x.c
2025-10-02T15:24:50.9990040Z patching file drivers/i2c/busses/i2c-robotfuzz-osif.c
2025-10-02T15:24:50.9991625Z patching file drivers/i2c/busses/i2c-s3c2410.c
2025-10-02T15:24:50.9993411Z patching file drivers/i2c/busses/i2c-sh7760.c
2025-10-02T15:24:50.9994866Z patching file drivers/i2c/busses/i2c-sh_mobile.c
2025-10-02T15:24:50.9996420Z patching file drivers/i2c/busses/i2c-sis630.c
2025-10-02T15:24:50.9997665Z patching file drivers/i2c/busses/i2c-sprd.c
2025-10-02T15:24:50.9999256Z patching file drivers/i2c/busses/i2c-stm32.c
2025-10-02T15:24:51.0000958Z patching file drivers/i2c/busses/i2c-stm32f7.c
2025-10-02T15:24:51.0004196Z patching file drivers/i2c/busses/i2c-sun6i-p2wi.c
2025-10-02T15:24:51.0005387Z patching file drivers/i2c/busses/i2c-synquacer.c
2025-10-02T15:24:51.0006646Z patching file drivers/i2c/busses/i2c-tegra-bpmp.c
2025-10-02T15:24:51.0008154Z patching file drivers/i2c/busses/i2c-tegra.c
2025-10-02T15:24:51.0011283Z patching file drivers/i2c/busses/i2c-thunderx-pcidrv.c
2025-10-02T15:24:51.0012087Z patching file drivers/i2c/busses/i2c-tiny-usb.c
2025-10-02T15:24:51.0013382Z patching file drivers/i2c/busses/i2c-xgene-slimpro.c
2025-10-02T15:24:51.0020621Z patching file drivers/i2c/busses/i2c-xiic.c
2025-10-02T15:24:51.0021210Z patching file drivers/i2c/busses/i2c-xlp9xx.c
2025-10-02T15:24:51.0022320Z patching file drivers/i2c/busses/i2c-xlr.c
2025-10-02T15:24:51.0023148Z patching file drivers/i2c/i2c-core-acpi.c
2025-10-02T15:24:51.0023749Z patching file drivers/i2c/i2c-core-base.c
2025-10-02T15:24:51.0024258Z patching file drivers/i2c/i2c-core.h
2025-10-02T15:24:51.0025467Z patching file drivers/i2c/i2c-dev.c
2025-10-02T15:24:51.0026147Z patching file drivers/i2c/i2c-mux.c
2025-10-02T15:24:51.0027099Z patching file drivers/i2c/i2c-smbus.c
2025-10-02T15:24:51.0028668Z patching file drivers/i2c/muxes/i2c-demux-pinctrl.c
2025-10-02T15:24:51.0030011Z patching file drivers/i2c/muxes/i2c-mux-gpmux.c
2025-10-02T15:24:51.0031078Z patching file drivers/i2c/muxes/i2c-mux-pinctrl.c
2025-10-02T15:24:51.0031843Z patching file drivers/i2c/muxes/i2c-mux-reg.c
2025-10-02T15:24:51.0032777Z patching file drivers/i3c/internals.h
2025-10-02T15:24:51.0034075Z patching file drivers/i3c/master.c
2025-10-02T15:24:51.0038186Z patching file drivers/i3c/master/i3c-master-cdns.c
2025-10-02T15:24:51.0040043Z patching file drivers/ide/falconide.c
2025-10-02T15:24:51.0041254Z patching file drivers/ide/ide-atapi.c
2025-10-02T15:24:51.0042874Z patching file drivers/ide/ide-io.c
2025-10-02T15:24:51.0044290Z patching file drivers/ide/ide-pm.c
2025-10-02T15:24:51.0045682Z patching file drivers/idle/intel_idle.c
2025-10-02T15:24:51.0048077Z patching file drivers/iio/Kconfig
2025-10-02T15:24:51.0048799Z patching file drivers/iio/Makefile
2025-10-02T15:24:51.0049952Z patching file drivers/iio/accel/Kconfig
2025-10-02T15:24:51.0051205Z patching file drivers/iio/accel/adis16201.c
2025-10-02T15:24:51.0052303Z patching file drivers/iio/accel/adis16209.c
2025-10-02T15:24:51.0053522Z patching file drivers/iio/accel/bma180.c
2025-10-02T15:24:51.0055651Z patching file drivers/iio/accel/bma220_spi.c
2025-10-02T15:24:51.0056619Z patching file drivers/iio/accel/bma400.h
2025-10-02T15:24:51.0057820Z patching file drivers/iio/accel/bma400_core.c
2025-10-02T15:24:51.0059918Z patching file drivers/iio/accel/bmc150-accel-core.c
2025-10-02T15:24:51.0061760Z patching file drivers/iio/accel/hid-sensor-accel-3d.c
2025-10-02T15:24:51.0063491Z patching file drivers/iio/accel/kxcjk-1013.c
2025-10-02T15:24:51.0065258Z patching file drivers/iio/accel/kxsd9.c
2025-10-02T15:24:51.0066841Z patching file drivers/iio/accel/mma8452.c
2025-10-02T15:24:51.0069616Z patching file drivers/iio/accel/mma9551.c
2025-10-02T15:24:51.0071227Z patching file drivers/iio/accel/mma9551_core.c
2025-10-02T15:24:51.0072732Z patching file drivers/iio/accel/mma9553.c
2025-10-02T15:24:51.0074446Z patching file drivers/iio/accel/mxc4005.c
2025-10-02T15:24:51.0075784Z patching file drivers/iio/accel/st_accel_core.c
2025-10-02T15:24:51.0077137Z patching file drivers/iio/accel/st_accel_i2c.c
2025-10-02T15:24:51.0078058Z patching file drivers/iio/accel/st_accel_spi.c
2025-10-02T15:24:51.0079041Z patching file drivers/iio/accel/stk8312.c
2025-10-02T15:24:51.0080426Z patching file drivers/iio/accel/stk8ba50.c
2025-10-02T15:24:51.0081876Z patching file drivers/iio/adc/Kconfig
2025-10-02T15:24:51.0084203Z patching file drivers/iio/adc/ab8500-gpadc.c
2025-10-02T15:24:51.0085576Z patching file drivers/iio/adc/ad7091r-base.c
2025-10-02T15:24:51.0087054Z patching file drivers/iio/adc/ad7091r-base.h
2025-10-02T15:24:51.0087937Z patching file drivers/iio/adc/ad7091r5.c
2025-10-02T15:24:51.0089023Z patching file drivers/iio/adc/ad7124.c
2025-10-02T15:24:51.0091103Z patching file drivers/iio/adc/ad7192.c
2025-10-02T15:24:51.0092668Z patching file drivers/iio/adc/ad7266.c
2025-10-02T15:24:51.0093614Z patching file drivers/iio/adc/ad7292.c
2025-10-02T15:24:51.0094605Z patching file drivers/iio/adc/ad7476.c
2025-10-02T15:24:51.0095825Z patching file drivers/iio/adc/ad7606.c
2025-10-02T15:24:51.0097109Z patching file drivers/iio/adc/ad7606_spi.c
2025-10-02T15:24:51.0098180Z patching file drivers/iio/adc/ad7768-1.c
2025-10-02T15:24:51.0099801Z patching file drivers/iio/adc/ad7780.c
2025-10-02T15:24:51.0100818Z patching file drivers/iio/adc/ad7791.c
2025-10-02T15:24:51.0102141Z patching file drivers/iio/adc/ad7793.c
2025-10-02T15:24:51.0103421Z patching file drivers/iio/adc/ad7923.c
2025-10-02T15:24:51.0104628Z patching file drivers/iio/adc/ad7949.c
2025-10-02T15:24:51.0105457Z patching file drivers/iio/adc/ad9467.c
2025-10-02T15:24:51.0107225Z patching file drivers/iio/adc/ad_sigma_delta.c
2025-10-02T15:24:51.0108609Z patching file drivers/iio/adc/adi-axi-adc.c
2025-10-02T15:24:51.0110046Z patching file drivers/iio/adc/aspeed_adc.c
2025-10-02T15:24:51.0111596Z patching file drivers/iio/adc/at91-sama5d2_adc.c
2025-10-02T15:24:51.0113832Z patching file drivers/iio/adc/at91_adc.c
2025-10-02T15:24:51.0115468Z patching file drivers/iio/adc/axp20x_adc.c
2025-10-02T15:24:51.0116663Z patching file drivers/iio/adc/axp288_adc.c
2025-10-02T15:24:51.0117647Z patching file drivers/iio/adc/berlin2-adc.c
2025-10-02T15:24:51.0118715Z patching file drivers/iio/adc/dln2-adc.c
2025-10-02T15:24:51.0120478Z patching file drivers/iio/adc/exynos_adc.c
2025-10-02T15:24:51.0121923Z patching file drivers/iio/adc/hx711.c
2025-10-02T15:24:51.0122885Z patching file drivers/iio/adc/ltc2497.c
2025-10-02T15:24:51.0123875Z patching file drivers/iio/adc/max1027.c
2025-10-02T15:24:51.0125443Z patching file drivers/iio/adc/max1363.c
2025-10-02T15:24:51.0127287Z patching file drivers/iio/adc/mcp3911.c
2025-10-02T15:24:51.0128299Z patching file drivers/iio/adc/men_z188_adc.c
2025-10-02T15:24:51.0129807Z patching file drivers/iio/adc/meson_saradc.c
2025-10-02T15:24:51.0131313Z patching file drivers/iio/adc/mp2629_adc.c
2025-10-02T15:24:51.0132167Z patching file drivers/iio/adc/mt6577_auxadc.c
2025-10-02T15:24:51.0133470Z patching file drivers/iio/adc/mxs-lradc-adc.c
2025-10-02T15:24:51.0134962Z patching file drivers/iio/adc/palmas_gpadc.c
2025-10-02T15:24:51.0136400Z patching file drivers/iio/adc/qcom-spmi-vadc.c
2025-10-02T15:24:51.0137696Z patching file drivers/iio/adc/rockchip_saradc.c
2025-10-02T15:24:51.0138729Z patching file drivers/iio/adc/sc27xx_adc.c
2025-10-02T15:24:51.0140082Z patching file drivers/iio/adc/stm32-adc-core.c
2025-10-02T15:24:51.0142135Z patching file drivers/iio/adc/stm32-adc.c
2025-10-02T15:24:51.0144345Z patching file drivers/iio/adc/stm32-dfsdm-adc.c
2025-10-02T15:24:51.0145843Z patching file drivers/iio/adc/stmpe-adc.c
2025-10-02T15:24:51.0146846Z patching file drivers/iio/adc/stx104.c
2025-10-02T15:24:51.0148563Z patching file drivers/iio/adc/ti-adc081c.c
2025-10-02T15:24:51.0149697Z patching file drivers/iio/adc/ti-adc128s052.c
2025-10-02T15:24:51.0151131Z patching file drivers/iio/adc/ti-ads1015.c
2025-10-02T15:24:51.0152579Z patching file drivers/iio/adc/ti-ads124s08.c
2025-10-02T15:24:51.0153893Z patching file drivers/iio/adc/ti-ads7950.c
2025-10-02T15:24:51.0155100Z patching file drivers/iio/adc/ti-ads8688.c
2025-10-02T15:24:51.0157046Z patching file drivers/iio/adc/ti_am335x_adc.c
2025-10-02T15:24:51.0158460Z patching file drivers/iio/adc/twl6030-gpadc.c
2025-10-02T15:24:51.0159955Z patching file drivers/iio/adc/vf610_adc.c
2025-10-02T15:24:51.0161614Z patching file drivers/iio/adc/xilinx-xadc-core.c
2025-10-02T15:24:51.0163960Z patching file drivers/iio/addac/Kconfig
2025-10-02T15:24:51.0164702Z patching file drivers/iio/addac/Makefile
2025-10-02T15:24:51.0165675Z patching file drivers/iio/afe/iio-rescale.c
2025-10-02T15:24:51.0166831Z patching file drivers/iio/buffer/industrialio-buffer-dmaengine.c
2025-10-02T15:24:51.0167802Z patching file drivers/iio/chemical/atlas-sensor.c
2025-10-02T15:24:51.0168793Z patching file drivers/iio/chemical/bme680.h
2025-10-02T15:24:51.0169870Z patching file drivers/iio/chemical/bme680_core.c
2025-10-02T15:24:51.0171654Z patching file drivers/iio/chemical/ccs811.c
2025-10-02T15:24:51.0172628Z patching file drivers/iio/chemical/pms7003.c
2025-10-02T15:24:51.0173615Z patching file drivers/iio/chemical/sps30.c
2025-10-02T15:24:51.0175205Z patching file drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.c
2025-10-02T15:24:51.0176105Z patching file drivers/iio/common/hid-sensors/Kconfig
2025-10-02T15:24:51.0176893Z patching file drivers/iio/common/hid-sensors/hid-sensor-trigger.c
2025-10-02T15:24:51.0177994Z patching file drivers/iio/common/ms_sensors/ms_sensors_i2c.c
2025-10-02T15:24:51.0179326Z patching file drivers/iio/common/ssp_sensors/ssp_spi.c
2025-10-02T15:24:51.0180608Z patching file drivers/iio/common/st_sensors/st_sensors_core.c
2025-10-02T15:24:51.0181788Z patching file drivers/iio/common/st_sensors/st_sensors_trigger.c
2025-10-02T15:24:51.0182781Z patching file drivers/iio/dac/Kconfig
2025-10-02T15:24:51.0183767Z patching file drivers/iio/dac/Makefile
2025-10-02T15:24:51.0184574Z patching file drivers/iio/dac/ad5446.c
2025-10-02T15:24:51.0185660Z patching file drivers/iio/dac/ad5504.c
2025-10-02T15:24:51.0186688Z patching file drivers/iio/dac/ad5592r-base.c
2025-10-02T15:24:51.0187720Z patching file drivers/iio/dac/ad5593r.c
2025-10-02T15:24:51.0188669Z patching file drivers/iio/dac/ad5624r_spi.c
2025-10-02T15:24:51.0189835Z patching file drivers/iio/dac/ad5770r.c
2025-10-02T15:24:51.0191068Z patching file drivers/iio/dac/cio-dac.c
2025-10-02T15:24:51.0191919Z patching file drivers/iio/dac/mcp4725.c
2025-10-02T15:24:51.0193139Z patching file drivers/iio/dac/ti-dac5571.c
2025-10-02T15:24:51.0194180Z patching file drivers/iio/dummy/iio_simple_dummy.c
2025-10-02T15:24:51.0195341Z patching file drivers/iio/dummy/iio_simple_dummy_buffer.c
2025-10-02T15:24:51.0196247Z patching file drivers/iio/frequency/adf4350.c
2025-10-02T15:24:51.0197227Z patching file drivers/iio/gyro/Kconfig
2025-10-02T15:24:51.0198177Z patching file drivers/iio/gyro/adis16136.c
2025-10-02T15:24:51.0199185Z patching file drivers/iio/gyro/adis16260.c
2025-10-02T15:24:51.0200442Z patching file drivers/iio/gyro/adxrs290.c
2025-10-02T15:24:51.0201921Z patching file drivers/iio/gyro/bmg160_core.c
2025-10-02T15:24:51.0203452Z patching file drivers/iio/gyro/fxas21002c_core.c
2025-10-02T15:24:51.0204572Z patching file drivers/iio/gyro/itg3200_buffer.c
2025-10-02T15:24:51.0205595Z patching file drivers/iio/gyro/mpu3050-core.c
2025-10-02T15:24:51.0207174Z patching file drivers/iio/gyro/st_gyro_core.c
2025-10-02T15:24:51.0207991Z patching file drivers/iio/gyro/st_gyro_i2c.c
2025-10-02T15:24:51.0208774Z patching file drivers/iio/gyro/st_gyro_spi.c
2025-10-02T15:24:51.0209852Z patching file drivers/iio/health/afe4403.c
2025-10-02T15:24:51.0211348Z patching file drivers/iio/health/afe4404.c
2025-10-02T15:24:51.0212389Z patching file drivers/iio/humidity/Kconfig
2025-10-02T15:24:51.0213111Z patching file drivers/iio/humidity/am2315.c
2025-10-02T15:24:51.0214102Z patching file drivers/iio/humidity/hdc100x.c
2025-10-02T15:24:51.0215134Z patching file drivers/iio/humidity/hid-sensor-humidity.c
2025-10-02T15:24:51.0216155Z patching file drivers/iio/imu/adis.c
2025-10-02T15:24:51.0218181Z patching file drivers/iio/imu/adis16400.c
2025-10-02T15:24:51.0219696Z patching file drivers/iio/imu/adis16460.c
2025-10-02T15:24:51.0221013Z patching file drivers/iio/imu/adis16475.c
2025-10-02T15:24:51.0222710Z patching file drivers/iio/imu/adis16480.c
2025-10-02T15:24:51.0224109Z patching file drivers/iio/imu/adis_buffer.c
2025-10-02T15:24:51.0224906Z patching file drivers/iio/imu/adis_trigger.c
2025-10-02T15:24:51.0225853Z patching file drivers/iio/imu/bmi160/bmi160.h
2025-10-02T15:24:51.0226735Z patching file drivers/iio/imu/bmi160/bmi160_core.c
2025-10-02T15:24:51.0228220Z patching file drivers/iio/imu/fxos8700_core.c
2025-10-02T15:24:51.0230048Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600.h
2025-10-02T15:24:51.0231132Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_accel.c
2025-10-02T15:24:51.0232222Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
2025-10-02T15:24:51.0233656Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_core.c
2025-10-02T15:24:51.0234999Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_gyro.c
2025-10-02T15:24:51.0235938Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_i2c.c
2025-10-02T15:24:51.0236644Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_spi.c
2025-10-02T15:24:51.0237342Z patching file drivers/iio/imu/inv_icm42600/inv_icm42600_temp.c
2025-10-02T15:24:51.0238753Z patching file drivers/iio/imu/inv_mpu6050/inv_mpu_core.c
2025-10-02T15:24:51.0240957Z patching file drivers/iio/imu/kmx61.c
2025-10-02T15:24:51.0242542Z patching file drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.c
2025-10-02T15:24:51.0244091Z patching file drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
2025-10-02T15:24:51.0246160Z patching file drivers/iio/industrialio-buffer.c
2025-10-02T15:24:51.0247584Z patching file drivers/iio/industrialio-sw-trigger.c
2025-10-02T15:24:51.0248410Z patching file drivers/iio/industrialio-trigger.c
2025-10-02T15:24:51.0249844Z patching file drivers/iio/inkern.c
2025-10-02T15:24:51.0251492Z patching file drivers/iio/light/Kconfig
2025-10-02T15:24:51.0252513Z patching file drivers/iio/light/al3010.c
2025-10-02T15:24:51.0253624Z patching file drivers/iio/light/apds9960.c
2025-10-02T15:24:51.0255220Z patching file drivers/iio/light/as73211.c
2025-10-02T15:24:51.0256581Z patching file drivers/iio/light/cm32181.c
2025-10-02T15:24:51.0257642Z patching file drivers/iio/light/gp2ap002.c
2025-10-02T15:24:51.0259020Z patching file drivers/iio/light/hid-sensor-prox.c
2025-10-02T15:24:51.0260046Z patching file drivers/iio/light/isl29028.c
2025-10-02T15:24:51.0261362Z patching file drivers/iio/light/isl29125.c
2025-10-02T15:24:51.0262679Z patching file drivers/iio/light/ltr501.c
2025-10-02T15:24:51.0264353Z patching file drivers/iio/light/max44009.c
2025-10-02T15:24:51.0265444Z patching file drivers/iio/light/opt3001.c
2025-10-02T15:24:51.0266957Z patching file drivers/iio/light/rpr0521.c
2025-10-02T15:24:51.0268188Z patching file drivers/iio/light/st_uvis25.h
2025-10-02T15:24:51.0268933Z patching file drivers/iio/light/st_uvis25_core.c
2025-10-02T15:24:51.0270048Z patching file drivers/iio/light/stk3310.c
2025-10-02T15:24:51.0271462Z patching file drivers/iio/light/tcs3414.c
2025-10-02T15:24:51.0272419Z patching file drivers/iio/light/tcs3472.c
2025-10-02T15:24:51.0273674Z patching file drivers/iio/light/tsl2583.c
2025-10-02T15:24:51.0275357Z patching file drivers/iio/light/tsl2772.c
2025-10-02T15:24:51.0277096Z patching file drivers/iio/light/vcnl4000.c
2025-10-02T15:24:51.0278487Z patching file drivers/iio/light/vcnl4035.c
2025-10-02T15:24:51.0279938Z patching file drivers/iio/light/veml6030.c
2025-10-02T15:24:51.0281292Z patching file drivers/iio/magnetometer/Kconfig
2025-10-02T15:24:51.0282171Z patching file drivers/iio/magnetometer/ak8975.c
2025-10-02T15:24:51.0283812Z patching file drivers/iio/magnetometer/bmc150_magn.c
2025-10-02T15:24:51.0285138Z patching file drivers/iio/magnetometer/hmc5843.h
2025-10-02T15:24:51.0285937Z patching file drivers/iio/magnetometer/hmc5843_core.c
2025-10-02T15:24:51.0287063Z patching file drivers/iio/magnetometer/mag3110.c
2025-10-02T15:24:51.0288190Z patching file drivers/iio/magnetometer/rm3100-core.c
2025-10-02T15:24:51.0289304Z patching file drivers/iio/magnetometer/st_magn_core.c
2025-10-02T15:24:51.0290547Z patching file drivers/iio/magnetometer/st_magn_i2c.c
2025-10-02T15:24:51.0291310Z patching file drivers/iio/magnetometer/st_magn_spi.c
2025-10-02T15:24:51.0292180Z patching file drivers/iio/orientation/Kconfig
2025-10-02T15:24:51.0293062Z patching file drivers/iio/potentiostat/lmp91000.c
2025-10-02T15:24:51.0294020Z patching file drivers/iio/pressure/Kconfig
2025-10-02T15:24:51.0295155Z patching file drivers/iio/pressure/bmp280-core.c
2025-10-02T15:24:51.0296723Z patching file drivers/iio/pressure/dps310.c
2025-10-02T15:24:51.0298573Z patching file drivers/iio/pressure/mpl3115.c
2025-10-02T15:24:51.0299296Z patching file drivers/iio/pressure/ms5611.h
2025-10-02T15:24:51.0300395Z patching file drivers/iio/pressure/ms5611_core.c
2025-10-02T15:24:51.0301792Z patching file drivers/iio/pressure/ms5611_i2c.c
2025-10-02T15:24:51.0302441Z patching file drivers/iio/pressure/ms5611_spi.c
2025-10-02T15:24:51.0303697Z patching file drivers/iio/pressure/st_pressure_core.c
2025-10-02T15:24:51.0304748Z patching file drivers/iio/pressure/st_pressure_i2c.c
2025-10-02T15:24:51.0305485Z patching file drivers/iio/pressure/st_pressure_spi.c
2025-10-02T15:24:51.0306910Z patching file drivers/iio/pressure/zpa2326.c
2025-10-02T15:24:51.0308637Z patching file drivers/iio/proximity/Kconfig
2025-10-02T15:24:51.0309179Z patching file drivers/iio/proximity/as3935.c
2025-10-02T15:24:51.0310650Z patching file drivers/iio/proximity/isl29501.c
2025-10-02T15:24:51.0311863Z patching file drivers/iio/proximity/pulsedlight-lidar-lite-v2.c
2025-10-02T15:24:51.0312773Z patching file drivers/iio/proximity/srf08.c
2025-10-02T15:24:51.0313786Z patching file drivers/iio/proximity/vl53l0x-i2c.c
2025-10-02T15:24:51.0314660Z patching file drivers/iio/temperature/Kconfig
2025-10-02T15:24:51.0315542Z patching file drivers/iio/temperature/hid-sensor-temperature.c
2025-10-02T15:24:51.0317016Z patching file drivers/iio/temperature/ltc2983.c
2025-10-02T15:24:51.0318865Z patching file drivers/iio/temperature/mlx90632.c
2025-10-02T15:24:51.0320073Z patching file drivers/iio/trigger/iio-trig-hrtimer.c
2025-10-02T15:24:51.0320952Z patching file drivers/iio/trigger/iio-trig-sysfs.c
2025-10-02T15:24:51.0322012Z patching file drivers/iio/trigger/stm32-timer-trigger.c
2025-10-02T15:24:51.0323551Z patching file drivers/infiniband/core/addr.c
2025-10-02T15:24:51.0325152Z patching file drivers/infiniband/core/cache.c
2025-10-02T15:24:51.0327723Z patching file drivers/infiniband/core/cm.c
2025-10-02T15:24:51.0332238Z patching file drivers/infiniband/core/cma.c
2025-10-02T15:24:51.0337156Z patching file drivers/infiniband/core/cma_configfs.c
2025-10-02T15:24:51.0338025Z patching file drivers/infiniband/core/cma_priv.h
2025-10-02T15:24:51.0339760Z patching file drivers/infiniband/core/device.c
2025-10-02T15:24:51.0343310Z patching file drivers/infiniband/core/iwcm.c
2025-10-02T15:24:51.0345255Z patching file drivers/infiniband/core/iwcm.h
2025-10-02T15:24:51.0346905Z patching file drivers/infiniband/core/mad.c
2025-10-02T15:24:51.0350861Z patching file drivers/infiniband/core/nldev.c
2025-10-02T15:24:51.0353474Z patching file drivers/infiniband/core/restrack.c
2025-10-02T15:24:51.0354463Z patching file drivers/infiniband/core/rw.c
2025-10-02T15:24:51.0356476Z patching file drivers/infiniband/core/sa_query.c
2025-10-02T15:24:51.0359102Z patching file drivers/infiniband/core/ucma.c
2025-10-02T15:24:51.0362450Z patching file drivers/infiniband/core/umem.c
2025-10-02T15:24:51.0363399Z patching file drivers/infiniband/core/umem_odp.c
2025-10-02T15:24:51.0365068Z patching file drivers/infiniband/core/user_mad.c
2025-10-02T15:24:51.0368424Z patching file drivers/infiniband/core/uverbs_cmd.c
2025-10-02T15:24:51.0372376Z patching file drivers/infiniband/core/uverbs_main.c
2025-10-02T15:24:51.0374066Z patching file drivers/infiniband/core/uverbs_marshall.c
2025-10-02T15:24:51.0374914Z patching file drivers/infiniband/core/uverbs_std_types_counters.c
2025-10-02T15:24:51.0375996Z patching file drivers/infiniband/core/uverbs_std_types_device.c
2025-10-02T15:24:51.0377426Z patching file drivers/infiniband/core/uverbs_std_types_mr.c
2025-10-02T15:24:51.0378259Z patching file drivers/infiniband/core/uverbs_uapi.c
2025-10-02T15:24:51.0380517Z patching file drivers/infiniband/core/verbs.c
2025-10-02T15:24:51.0384222Z patching file drivers/infiniband/hw/bnxt_re/ib_verbs.c
2025-10-02T15:24:51.0388646Z patching file drivers/infiniband/hw/bnxt_re/main.c
2025-10-02T15:24:51.0391659Z patching file drivers/infiniband/hw/bnxt_re/qplib_fp.c
2025-10-02T15:24:51.0394807Z patching file drivers/infiniband/hw/bnxt_re/qplib_fp.h
2025-10-02T15:24:51.0396263Z patching file drivers/infiniband/hw/bnxt_re/qplib_rcfw.c
2025-10-02T15:24:51.0398302Z patching file drivers/infiniband/hw/bnxt_re/qplib_rcfw.h
2025-10-02T15:24:51.0399391Z patching file drivers/infiniband/hw/bnxt_re/qplib_res.c
2025-10-02T15:24:51.0401067Z patching file drivers/infiniband/hw/bnxt_re/qplib_res.h
2025-10-02T15:24:51.0401788Z patching file drivers/infiniband/hw/bnxt_re/qplib_sp.c
2025-10-02T15:24:51.0403186Z patching file drivers/infiniband/hw/bnxt_re/qplib_sp.h
2025-10-02T15:24:51.0404931Z patching file drivers/infiniband/hw/cxgb4/cm.c
2025-10-02T15:24:51.0407675Z patching file drivers/infiniband/hw/cxgb4/cq.c
2025-10-02T15:24:51.0409122Z patching file drivers/infiniband/hw/cxgb4/device.c
2025-10-02T15:24:51.0410526Z patching file drivers/infiniband/hw/cxgb4/provider.c
2025-10-02T15:24:51.0412312Z patching file drivers/infiniband/hw/cxgb4/qp.c
2025-10-02T15:24:51.0414511Z patching file drivers/infiniband/hw/cxgb4/resource.c
2025-10-02T15:24:51.0415976Z patching file drivers/infiniband/hw/efa/efa_main.c
2025-10-02T15:24:51.0417654Z patching file drivers/infiniband/hw/efa/efa_verbs.c
2025-10-02T15:24:51.0420253Z patching file drivers/infiniband/hw/hfi1/affinity.c
2025-10-02T15:24:51.0425993Z patching file drivers/infiniband/hw/hfi1/chip.c
2025-10-02T15:24:51.0434536Z patching file drivers/infiniband/hw/hfi1/driver.c
2025-10-02T15:24:51.0436044Z patching file drivers/infiniband/hw/hfi1/efivar.c
2025-10-02T15:24:51.0437382Z patching file drivers/infiniband/hw/hfi1/file_ops.c
2025-10-02T15:24:51.0440116Z patching file drivers/infiniband/hw/hfi1/firmware.c
2025-10-02T15:24:51.0450456Z patching file drivers/infiniband/hw/hfi1/hfi.h
2025-10-02T15:24:51.0450905Z patching file drivers/infiniband/hw/hfi1/init.c
2025-10-02T15:24:51.0451305Z patching file drivers/infiniband/hw/hfi1/ipoib.h
2025-10-02T15:24:51.0451736Z patching file drivers/infiniband/hw/hfi1/ipoib_main.c
2025-10-02T15:24:51.0452203Z patching file drivers/infiniband/hw/hfi1/ipoib_tx.c
2025-10-02T15:24:51.0453376Z patching file drivers/infiniband/hw/hfi1/mmu_rb.c
2025-10-02T15:24:51.0455778Z patching file drivers/infiniband/hw/hfi1/mmu_rb.h
2025-10-02T15:24:51.0456310Z patching file drivers/infiniband/hw/hfi1/netdev_rx.c
2025-10-02T15:24:51.0458129Z patching file drivers/infiniband/hw/hfi1/pcie.c
2025-10-02T15:24:51.0460133Z patching file drivers/infiniband/hw/hfi1/pio.c
2025-10-02T15:24:51.0462625Z patching file drivers/infiniband/hw/hfi1/sdma.c
2025-10-02T15:24:51.0466086Z patching file drivers/infiniband/hw/hfi1/sdma.h
2025-10-02T15:24:51.0467467Z patching file drivers/infiniband/hw/hfi1/sdma_txreq.h
2025-10-02T15:24:51.0468356Z patching file drivers/infiniband/hw/hfi1/trace_mmu.h
2025-10-02T15:24:51.0469656Z patching file drivers/infiniband/hw/hfi1/trace_tx.h
2025-10-02T15:24:51.0472428Z patching file drivers/infiniband/hw/hfi1/user_exp_rcv.c
2025-10-02T15:24:51.0480393Z patching file drivers/infiniband/hw/hfi1/user_exp_rcv.h
2025-10-02T15:24:51.0480981Z patching file drivers/infiniband/hw/hfi1/user_sdma.c
2025-10-02T15:24:51.0482428Z patching file drivers/infiniband/hw/hfi1/user_sdma.h
2025-10-02T15:24:51.0483180Z patching file drivers/infiniband/hw/hfi1/verbs.c
2025-10-02T15:24:51.0483894Z patching file drivers/infiniband/hw/hfi1/vnic_sdma.c
2025-10-02T15:24:51.0485115Z patching file drivers/infiniband/hw/hns/hns_roce_ah.c
2025-10-02T15:24:51.0486007Z patching file drivers/infiniband/hw/hns/hns_roce_alloc.c
2025-10-02T15:24:51.0487505Z patching file drivers/infiniband/hw/hns/hns_roce_cmd.c
2025-10-02T15:24:51.0489057Z patching file drivers/infiniband/hw/hns/hns_roce_cmd.h
2025-10-02T15:24:51.0490052Z patching file drivers/infiniband/hw/hns/hns_roce_common.h
2025-10-02T15:24:51.0491566Z patching file drivers/infiniband/hw/hns/hns_roce_cq.c
2025-10-02T15:24:51.0492866Z patching file drivers/infiniband/hw/hns/hns_roce_db.c
2025-10-02T15:24:51.0493834Z patching file drivers/infiniband/hw/hns/hns_roce_device.h
2025-10-02T15:24:51.0496983Z patching file drivers/infiniband/hw/hns/hns_roce_hem.c
2025-10-02T15:24:51.0501351Z patching file drivers/infiniband/hw/hns/hns_roce_hem.h
2025-10-02T15:24:51.0503753Z patching file drivers/infiniband/hw/hns/hns_roce_hw_v1.c
2025-10-02T15:24:51.0508332Z patching file drivers/infiniband/hw/hns/hns_roce_hw_v1.h
2025-10-02T15:24:51.0511724Z patching file drivers/infiniband/hw/hns/hns_roce_hw_v2.c
2025-10-02T15:24:51.0517847Z patching file drivers/infiniband/hw/hns/hns_roce_hw_v2.h
2025-10-02T15:24:51.0519415Z patching file drivers/infiniband/hw/hns/hns_roce_main.c
2025-10-02T15:24:51.0521139Z patching file drivers/infiniband/hw/hns/hns_roce_mr.c
2025-10-02T15:24:51.0523233Z patching file drivers/infiniband/hw/hns/hns_roce_pd.c
2025-10-02T15:24:51.0524384Z patching file drivers/infiniband/hw/hns/hns_roce_qp.c
2025-10-02T15:24:51.0527210Z patching file drivers/infiniband/hw/hns/hns_roce_restrack.c
2025-10-02T15:24:51.0527724Z patching file drivers/infiniband/hw/hns/hns_roce_srq.c
2025-10-02T15:24:51.0529679Z patching file drivers/infiniband/hw/i40iw/i40iw.h
2025-10-02T15:24:51.0532008Z patching file drivers/infiniband/hw/i40iw/i40iw_ctrl.c
2025-10-02T15:24:51.0535186Z patching file drivers/infiniband/hw/i40iw/i40iw_pble.c
2025-10-02T15:24:51.0536539Z patching file drivers/infiniband/hw/i40iw/i40iw_type.h
2025-10-02T15:24:51.0538624Z patching file drivers/infiniband/hw/i40iw/i40iw_verbs.c
2025-10-02T15:24:51.0541199Z patching file drivers/infiniband/hw/mlx4/alias_GUID.c
2025-10-02T15:24:51.0542985Z patching file drivers/infiniband/hw/mlx4/mad.c
2025-10-02T15:24:51.0545668Z patching file drivers/infiniband/hw/mlx4/main.c
2025-10-02T15:24:51.0548230Z patching file drivers/infiniband/hw/mlx4/mr.c
2025-10-02T15:24:51.0550602Z patching file drivers/infiniband/hw/mlx4/qp.c
2025-10-02T15:24:51.0553693Z patching file drivers/infiniband/hw/mlx4/sysfs.c
2025-10-02T15:24:51.0555029Z patching file drivers/infiniband/hw/mlx5/counters.c
2025-10-02T15:24:51.0556555Z patching file drivers/infiniband/hw/mlx5/cq.c
2025-10-02T15:24:51.0558906Z patching file drivers/infiniband/hw/mlx5/devx.c
2025-10-02T15:24:51.0562977Z patching file drivers/infiniband/hw/mlx5/fs.c
2025-10-02T15:24:51.0565171Z patching file drivers/infiniband/hw/mlx5/mad.c
2025-10-02T15:24:51.0567361Z patching file drivers/infiniband/hw/mlx5/main.c
2025-10-02T15:24:51.0571653Z patching file drivers/infiniband/hw/mlx5/mr.c
2025-10-02T15:24:51.0575062Z patching file drivers/infiniband/hw/mlx5/qp.c
2025-10-02T15:24:51.0578958Z patching file drivers/infiniband/hw/mlx5/qpc.c
2025-10-02T15:24:51.0580490Z patching file drivers/infiniband/hw/mlx5/srq.c
2025-10-02T15:24:51.0581942Z patching file drivers/infiniband/hw/mlx5/wr.c
2025-10-02T15:24:51.0583913Z patching file drivers/infiniband/hw/mthca/mthca_cmd.c
2025-10-02T15:24:51.0585911Z patching file drivers/infiniband/hw/mthca/mthca_cq.c
2025-10-02T15:24:51.0587238Z patching file drivers/infiniband/hw/mthca/mthca_dev.h
2025-10-02T15:24:51.0588532Z patching file drivers/infiniband/hw/mthca/mthca_main.c
2025-10-02T15:24:51.0590687Z patching file drivers/infiniband/hw/mthca/mthca_qp.c
2025-10-02T15:24:51.0593331Z patching file drivers/infiniband/hw/ocrdma/ocrdma_verbs.c
2025-10-02T15:24:51.0595656Z patching file drivers/infiniband/hw/qedr/main.c
2025-10-02T15:24:51.0597069Z patching file drivers/infiniband/hw/qedr/qedr.h
2025-10-02T15:24:51.0598291Z patching file drivers/infiniband/hw/qedr/qedr_iw_cm.c
2025-10-02T15:24:51.0600698Z patching file drivers/infiniband/hw/qedr/verbs.c
2025-10-02T15:24:51.0604333Z patching file drivers/infiniband/hw/qib/qib_fs.c
2025-10-02T15:24:51.0605545Z patching file drivers/infiniband/hw/qib/qib_user_sdma.c
2025-10-02T15:24:51.0607942Z patching file drivers/infiniband/hw/usnic/usnic_ib_main.c
2025-10-02T15:24:51.0609295Z patching file drivers/infiniband/hw/usnic/usnic_ib_verbs.c
2025-10-02T15:24:51.0610723Z patching file drivers/infiniband/hw/usnic/usnic_uiom.c
2025-10-02T15:24:51.0612045Z patching file drivers/infiniband/hw/usnic/usnic_uiom_interval_tree.c
2025-10-02T15:24:51.0613018Z patching file drivers/infiniband/hw/vmw_pvrdma/pvrdma.h
2025-10-02T15:24:51.0614235Z patching file drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.c
2025-10-02T15:24:51.0615258Z patching file drivers/infiniband/sw/rdmavt/Kconfig
2025-10-02T15:24:51.0616227Z patching file drivers/infiniband/sw/rdmavt/mr.c
2025-10-02T15:24:51.0618662Z patching file drivers/infiniband/sw/rdmavt/qp.c
2025-10-02T15:24:51.0621582Z patching file drivers/infiniband/sw/rdmavt/vt.c
2025-10-02T15:24:51.0622694Z patching file drivers/infiniband/sw/rxe/Kconfig
2025-10-02T15:24:51.0623584Z patching file drivers/infiniband/sw/rxe/rxe.c
2025-10-02T15:24:51.0624490Z patching file drivers/infiniband/sw/rxe/rxe_av.c
2025-10-02T15:24:51.0625435Z patching file drivers/infiniband/sw/rxe/rxe_comp.c
2025-10-02T15:24:51.0627954Z patching file drivers/infiniband/sw/rxe/rxe_cq.c
2025-10-02T15:24:51.0628654Z patching file drivers/infiniband/sw/rxe/rxe_mr.c
2025-10-02T15:24:51.0629831Z patching file drivers/infiniband/sw/rxe/rxe_net.c
2025-10-02T15:24:51.0631420Z patching file drivers/infiniband/sw/rxe/rxe_opcode.c
2025-10-02T15:24:51.0632627Z patching file drivers/infiniband/sw/rxe/rxe_param.h
2025-10-02T15:24:51.0633660Z patching file drivers/infiniband/sw/rxe/rxe_qp.c
2025-10-02T15:24:51.0635540Z patching file drivers/infiniband/sw/rxe/rxe_recv.c
2025-10-02T15:24:51.0636800Z patching file drivers/infiniband/sw/rxe/rxe_req.c
2025-10-02T15:24:51.0638397Z patching file drivers/infiniband/sw/rxe/rxe_resp.c
2025-10-02T15:24:51.0639892Z patching file drivers/infiniband/sw/rxe/rxe_task.c
2025-10-02T15:24:51.0640768Z patching file drivers/infiniband/sw/rxe/rxe_task.h
2025-10-02T15:24:51.0642024Z patching file drivers/infiniband/sw/rxe/rxe_verbs.c
2025-10-02T15:24:51.0643456Z patching file drivers/infiniband/sw/rxe/rxe_verbs.h
2025-10-02T15:24:51.0644446Z patching file drivers/infiniband/sw/siw/Kconfig
2025-10-02T15:24:51.0645370Z patching file drivers/infiniband/sw/siw/siw.h
2025-10-02T15:24:51.0647320Z patching file drivers/infiniband/sw/siw/siw_cm.c
2025-10-02T15:24:51.0649691Z patching file drivers/infiniband/sw/siw/siw_cq.c
2025-10-02T15:24:51.0650578Z patching file drivers/infiniband/sw/siw/siw_main.c
2025-10-02T15:24:51.0652190Z patching file drivers/infiniband/sw/siw/siw_mem.c
2025-10-02T15:24:51.0653810Z patching file drivers/infiniband/sw/siw/siw_qp.c
2025-10-02T15:24:51.0656806Z patching file drivers/infiniband/sw/siw/siw_qp_rx.c
2025-10-02T15:24:51.0659409Z patching file drivers/infiniband/sw/siw/siw_qp_tx.c
2025-10-02T15:24:51.0661637Z patching file drivers/infiniband/sw/siw/siw_verbs.c
2025-10-02T15:24:51.0664637Z patching file drivers/infiniband/ulp/ipoib/ipoib_main.c
2025-10-02T15:24:51.0667150Z patching file drivers/infiniband/ulp/ipoib/ipoib_multicast.c
2025-10-02T15:24:51.0668390Z patching file drivers/infiniband/ulp/ipoib/ipoib_netlink.c
2025-10-02T15:24:51.0669412Z patching file drivers/infiniband/ulp/ipoib/ipoib_vlan.c
2025-10-02T15:24:51.0670914Z patching file drivers/infiniband/ulp/iser/iscsi_iser.c
2025-10-02T15:24:51.0672779Z patching file drivers/infiniband/ulp/iser/iscsi_iser.h
2025-10-02T15:24:51.0673964Z patching file drivers/infiniband/ulp/iser/iser_initiator.c
2025-10-02T15:24:51.0675207Z patching file drivers/infiniband/ulp/iser/iser_memory.c
2025-10-02T15:24:51.0676831Z patching file drivers/infiniband/ulp/iser/iser_verbs.c
2025-10-02T15:24:51.0678865Z patching file drivers/infiniband/ulp/isert/ib_isert.c
2025-10-02T15:24:51.0681682Z patching file drivers/infiniband/ulp/isert/ib_isert.h
2025-10-02T15:24:51.0682506Z patching file drivers/infiniband/ulp/rtrs/rtrs-clt-sysfs.c
2025-10-02T15:24:51.0684525Z patching file drivers/infiniband/ulp/rtrs/rtrs-clt.c
2025-10-02T15:24:51.0688202Z patching file drivers/infiniband/ulp/rtrs/rtrs-clt.h
2025-10-02T15:24:51.0688854Z patching file drivers/infiniband/ulp/rtrs/rtrs-pri.h
2025-10-02T15:24:51.0690626Z patching file drivers/infiniband/ulp/rtrs/rtrs-srv-sysfs.c
2025-10-02T15:24:51.0692358Z patching file drivers/infiniband/ulp/rtrs/rtrs-srv.c
2025-10-02T15:24:51.0695649Z patching file drivers/infiniband/ulp/rtrs/rtrs.c
2025-10-02T15:24:51.0698424Z patching file drivers/infiniband/ulp/srp/ib_srp.c
2025-10-02T15:24:51.0702895Z patching file drivers/infiniband/ulp/srp/ib_srp.h
2025-10-02T15:24:51.0705007Z patching file drivers/infiniband/ulp/srpt/ib_srpt.c
2025-10-02T15:24:51.0708659Z patching file drivers/infiniband/ulp/srpt/ib_srpt.h
2025-10-02T15:24:51.0709961Z patching file drivers/input/ff-core.c
2025-10-02T15:24:51.0711186Z patching file drivers/input/input-mt.c
2025-10-02T15:24:51.0713075Z patching file drivers/input/input.c
2025-10-02T15:24:51.0715861Z patching file drivers/input/joydev.c
2025-10-02T15:24:51.0721018Z patching file drivers/input/joystick/Kconfig
2025-10-02T15:24:51.0722170Z patching file drivers/input/joystick/iforce/iforce-main.c
2025-10-02T15:24:51.0723356Z patching file drivers/input/joystick/iforce/iforce-serio.c
2025-10-02T15:24:51.0724606Z patching file drivers/input/joystick/iforce/iforce-usb.c
2025-10-02T15:24:51.0725413Z patching file drivers/input/joystick/iforce/iforce.h
2025-10-02T15:24:51.0726375Z patching file drivers/input/joystick/spaceball.c
2025-10-02T15:24:51.0728106Z patching file drivers/input/joystick/xpad.c
2025-10-02T15:24:51.0731344Z patching file drivers/input/keyboard/Kconfig
2025-10-02T15:24:51.0732964Z patching file drivers/input/keyboard/adp5589-keys.c
2025-10-02T15:24:51.0735003Z patching file drivers/input/keyboard/applespi.c
2025-10-02T15:24:51.0737538Z patching file drivers/input/keyboard/atkbd.c
2025-10-02T15:24:51.0739981Z patching file drivers/input/keyboard/gpio_keys_polled.c
2025-10-02T15:24:51.0740931Z patching file drivers/input/keyboard/hil_kbd.c
2025-10-02T15:24:51.0742105Z patching file drivers/input/keyboard/ipaq-micro-keys.c
2025-10-02T15:24:51.0743068Z patching file drivers/input/keyboard/nspire-keypad.c
2025-10-02T15:24:51.0744274Z patching file drivers/input/keyboard/omap4-keypad.c
2025-10-02T15:24:51.0746238Z patching file drivers/input/keyboard/qt1050.c
2025-10-02T15:24:51.0747113Z patching file drivers/input/keyboard/snvs_pwrkey.c
2025-10-02T15:24:51.0748773Z patching file drivers/input/misc/adxl34x.c
2025-10-02T15:24:51.0750439Z patching file drivers/input/misc/drv260x.c
2025-10-02T15:24:51.0752336Z patching file drivers/input/misc/ims-pcu.c
2025-10-02T15:24:51.0754712Z patching file drivers/input/misc/iqs269a.c
2025-10-02T15:24:51.0758515Z patching file drivers/input/misc/pm8xxx-vibrator.c
2025-10-02T15:24:51.0759940Z patching file drivers/input/misc/powermate.c
2025-10-02T15:24:51.0760962Z patching file drivers/input/misc/rk805-pwrkey.c
2025-10-02T15:24:51.0761930Z patching file drivers/input/misc/soc_button_array.c
2025-10-02T15:24:51.0763236Z patching file drivers/input/misc/sparcspkr.c
2025-10-02T15:24:51.0764506Z patching file drivers/input/misc/uinput.c
2025-10-02T15:24:51.0767129Z patching file drivers/input/mouse/alps.c
2025-10-02T15:24:51.0770133Z patching file drivers/input/mouse/appletouch.c
2025-10-02T15:24:51.0771691Z patching file drivers/input/mouse/bcm5974.c
2025-10-02T15:24:51.0773325Z patching file drivers/input/mouse/cyapa_gen6.c
2025-10-02T15:24:51.0774611Z patching file drivers/input/mouse/elan_i2c.h
2025-10-02T15:24:51.0775810Z patching file drivers/input/mouse/elan_i2c_core.c
2025-10-02T15:24:51.0778067Z patching file drivers/input/mouse/elan_i2c_smbus.c
2025-10-02T15:24:51.0779733Z patching file drivers/input/mouse/elantech.c
2025-10-02T15:24:51.0782879Z patching file drivers/input/mouse/elantech.h
2025-10-02T15:24:51.0783814Z patching file drivers/input/mouse/focaltech.c
2025-10-02T15:24:51.0785250Z patching file drivers/input/mouse/synaptics.c
2025-10-02T15:24:51.0787597Z patching file drivers/input/rmi4/rmi_bus.c
2025-10-02T15:24:51.0788742Z patching file drivers/input/rmi4/rmi_driver.c
2025-10-02T15:24:51.0790625Z patching file drivers/input/rmi4/rmi_f34.c
2025-10-02T15:24:51.0792675Z patching file drivers/input/rmi4/rmi_smbus.c
2025-10-02T15:24:51.0793827Z patching file drivers/input/serio/ambakmi.c
2025-10-02T15:24:51.0794845Z patching file drivers/input/serio/gscps2.c
2025-10-02T15:24:51.0795992Z patching file drivers/input/serio/i8042-acpipnpio.h
2025-10-02T15:24:51.0801200Z patching file drivers/input/serio/i8042-x86ia64io.h
2025-10-02T15:24:51.0804866Z patching file drivers/input/serio/i8042.c
2025-10-02T15:24:51.0807251Z patching file drivers/input/serio/i8042.h
2025-10-02T15:24:51.0808158Z patching file drivers/input/serio/ioc3kbd.c
2025-10-02T15:24:51.0809040Z patching file drivers/input/serio/serport.c
2025-10-02T15:24:51.0810779Z patching file drivers/input/tablet/aiptek.c
2025-10-02T15:24:51.0813413Z patching file drivers/input/touchscreen/ads7846.c
2025-10-02T15:24:51.0817317Z patching file drivers/input/touchscreen/atmel_mxt_ts.c
2025-10-02T15:24:51.0820400Z patching file drivers/input/touchscreen/elants_i2c.c
2025-10-02T15:24:51.0822897Z patching file drivers/input/touchscreen/elo.c
2025-10-02T15:24:51.0824306Z patching file drivers/input/touchscreen/goodix.c
2025-10-02T15:24:51.0826921Z patching file drivers/input/touchscreen/hideep.c
2025-10-02T15:24:51.0828374Z patching file drivers/input/touchscreen/ili210x.c
2025-10-02T15:24:51.0830799Z patching file drivers/input/touchscreen/melfas_mip4.c
2025-10-02T15:24:51.0832490Z patching file drivers/input/touchscreen/of_touchscreen.c
2025-10-02T15:24:51.0833691Z patching file drivers/input/touchscreen/raspberrypi-ts.c
2025-10-02T15:24:51.0834979Z patching file drivers/input/touchscreen/raydium_i2c_ts.c
2025-10-02T15:24:51.0836702Z patching file drivers/input/touchscreen/s6sy761.c
2025-10-02T15:24:51.0837996Z patching file drivers/input/touchscreen/silead.c
2025-10-02T15:24:51.0840219Z patching file drivers/input/touchscreen/stmfts.c
2025-10-02T15:24:51.0841812Z patching file drivers/input/touchscreen/sur40.c
2025-10-02T15:24:51.0844122Z patching file drivers/input/touchscreen/usbtouchscreen.c
2025-10-02T15:24:51.0846042Z patching file drivers/input/touchscreen/zinitix.c
2025-10-02T15:24:51.0847740Z patching file drivers/interconnect/core.c
2025-10-02T15:24:51.0849686Z patching file drivers/interconnect/imx/imx.c
2025-10-02T15:24:51.0850732Z patching file drivers/interconnect/imx/imx8mq.c
2025-10-02T15:24:51.0851695Z patching file drivers/interconnect/qcom/Kconfig
2025-10-02T15:24:51.0852727Z patching file drivers/interconnect/qcom/bcm-voter.c
2025-10-02T15:24:51.0853848Z patching file drivers/interconnect/qcom/icc-rpmh.c
2025-10-02T15:24:51.0854957Z patching file drivers/interconnect/qcom/icc-rpmh.h
2025-10-02T15:24:51.0855952Z patching file drivers/interconnect/qcom/osm-l3.c
2025-10-02T15:24:51.0857067Z patching file drivers/interconnect/qcom/sc7180.c
2025-10-02T15:24:51.0859691Z patching file drivers/interconnect/qcom/sm8150.c
2025-10-02T15:24:51.0860840Z patching file drivers/iommu/amd/amd_iommu.h
2025-10-02T15:24:51.0861978Z patching file drivers/iommu/amd/amd_iommu_types.h
2025-10-02T15:24:51.0864509Z patching file drivers/iommu/amd/init.c
2025-10-02T15:24:51.0869333Z patching file drivers/iommu/amd/iommu.c
2025-10-02T15:24:51.0872852Z patching file drivers/iommu/amd/iommu_v2.c
2025-10-02T15:24:51.0875356Z patching file drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
2025-10-02T15:24:51.0878440Z patching file drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.h
2025-10-02T15:24:51.0879672Z patching file drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c
2025-10-02T15:24:51.0881507Z patching file drivers/iommu/arm/arm-smmu/arm-smmu.c
2025-10-02T15:24:51.0884247Z patching file drivers/iommu/arm/arm-smmu/arm-smmu.h
2025-10-02T15:24:51.0885386Z patching file drivers/iommu/arm/arm-smmu/qcom_iommu.c
2025-10-02T15:24:51.0886953Z patching file drivers/iommu/dma-iommu.c
2025-10-02T15:24:51.0889104Z patching file drivers/iommu/exynos-iommu.c
2025-10-02T15:24:51.0891271Z patching file drivers/iommu/fsl_pamu.c
2025-10-02T15:24:51.0893511Z patching file drivers/iommu/intel/dmar.c
2025-10-02T15:24:51.0897457Z patching file drivers/iommu/intel/iommu.c
2025-10-02T15:24:51.0902636Z patching file drivers/iommu/intel/irq_remapping.c
2025-10-02T15:24:51.0904306Z patching file drivers/iommu/intel/pasid.c
2025-10-02T15:24:51.0906319Z patching file drivers/iommu/intel/pasid.h
2025-10-02T15:24:51.0907432Z patching file drivers/iommu/intel/svm.c
2025-10-02T15:24:51.0910384Z patching file drivers/iommu/io-pgtable-arm-v7s.c
2025-10-02T15:24:51.0911819Z patching file drivers/iommu/io-pgtable-arm.c
2025-10-02T15:24:51.0914413Z patching file drivers/iommu/iommu.c
2025-10-02T15:24:51.0917469Z patching file drivers/iommu/iova.c
2025-10-02T15:24:51.0918946Z patching file drivers/iommu/ipmmu-vmsa.c
2025-10-02T15:24:51.0920727Z patching file drivers/iommu/msm_iommu.c
2025-10-02T15:24:51.0922238Z patching file drivers/iommu/mtk_iommu.c
2025-10-02T15:24:51.0923734Z patching file drivers/iommu/mtk_iommu_v1.c
2025-10-02T15:24:51.0925064Z patching file drivers/iommu/omap-iommu-debug.c
2025-10-02T15:24:51.0926401Z patching file drivers/iommu/omap-iommu.c
2025-10-02T15:24:51.0928765Z patching file drivers/iommu/rockchip-iommu.c
2025-10-02T15:24:51.0930763Z patching file drivers/iommu/sun50i-iommu.c
2025-10-02T15:24:51.0932478Z patching file drivers/iommu/virtio-iommu.c
2025-10-02T15:24:51.0934112Z patching file drivers/ipack/carriers/tpci200.c
2025-10-02T15:24:51.0936375Z patching file drivers/ipack/devices/ipoctal.c
2025-10-02T15:24:51.0938092Z patching file drivers/irqchip/Kconfig
2025-10-02T15:24:51.0939687Z patching file drivers/irqchip/irq-alpine-msi.c
2025-10-02T15:24:51.0941007Z patching file drivers/irqchip/irq-armada-370-xp.c
2025-10-02T15:24:51.0943283Z patching file drivers/irqchip/irq-aspeed-i2c-ic.c
2025-10-02T15:24:51.0944279Z patching file drivers/irqchip/irq-aspeed-scu-ic.c
2025-10-02T15:24:51.0945253Z patching file drivers/irqchip/irq-aspeed-vic.c
2025-10-02T15:24:51.0946195Z patching file drivers/irqchip/irq-bcm6345-l1.c
2025-10-02T15:24:51.0947127Z patching file drivers/irqchip/irq-bcm7120-l2.c
2025-10-02T15:24:51.0948073Z patching file drivers/irqchip/irq-brcmstb-l2.c
2025-10-02T15:24:51.0949428Z patching file drivers/irqchip/irq-csky-apb-intc.c
2025-10-02T15:24:51.0950741Z patching file drivers/irqchip/irq-gic-common.c
2025-10-02T15:24:51.0953494Z patching file drivers/irqchip/irq-gic-common.h
2025-10-02T15:24:51.0956703Z patching file drivers/irqchip/irq-gic-pm.c
2025-10-02T15:24:51.0957661Z patching file drivers/irqchip/irq-gic-realview.c
2025-10-02T15:24:51.0958613Z patching file drivers/irqchip/irq-gic-v2m.c
2025-10-02T15:24:51.0959834Z patching file drivers/irqchip/irq-gic-v3-its.c
2025-10-02T15:24:51.0960959Z patching file drivers/irqchip/irq-gic-v3-mbi.c
2025-10-02T15:24:51.0961929Z patching file drivers/irqchip/irq-gic-v3.c
2025-10-02T15:24:51.0964158Z patching file drivers/irqchip/irq-gic.c
2025-10-02T15:24:51.0966817Z patching file drivers/irqchip/irq-imx-irqsteer.c
2025-10-02T15:24:51.0968849Z patching file drivers/irqchip/irq-ingenic-tcu.c
2025-10-02T15:24:51.0970959Z patching file drivers/irqchip/irq-ingenic.c
2025-10-02T15:24:51.0971810Z patching file drivers/irqchip/irq-jcore-aic.c
2025-10-02T15:24:51.0973160Z patching file drivers/irqchip/irq-loongson-pch-msi.c
2025-10-02T15:24:51.0974475Z patching file drivers/irqchip/irq-loongson-pch-pic.c
2025-10-02T15:24:51.0976011Z patching file drivers/irqchip/irq-mbigen.c
2025-10-02T15:24:51.0976793Z patching file drivers/irqchip/irq-meson-gpio.c
2025-10-02T15:24:51.0978938Z patching file drivers/irqchip/irq-mips-cpu.c
2025-10-02T15:24:51.0981149Z patching file drivers/irqchip/irq-mips-gic.c
2025-10-02T15:24:51.0982190Z patching file drivers/irqchip/irq-mtk-cirq.c
2025-10-02T15:24:51.0984008Z patching file drivers/irqchip/irq-mvebu-gicp.c
2025-10-02T15:24:51.0984867Z patching file drivers/irqchip/irq-mxs.c
2025-10-02T15:24:51.0986100Z patching file drivers/irqchip/irq-nvic.c
2025-10-02T15:24:51.0987308Z patching file drivers/irqchip/irq-or1k-pic.c
2025-10-02T15:24:51.0989215Z patching file drivers/irqchip/irq-sifive-plic.c
2025-10-02T15:24:51.0990405Z patching file drivers/irqchip/irq-sni-exiu.c
2025-10-02T15:24:51.0991261Z patching file drivers/irqchip/irq-stm32-exti.c
2025-10-02T15:24:51.0992659Z patching file drivers/irqchip/irq-sun4i.c
2025-10-02T15:24:51.0993520Z patching file drivers/irqchip/irq-sunxi-nmi.c
2025-10-02T15:24:51.0994382Z patching file drivers/irqchip/irq-tegra.c
2025-10-02T15:24:51.0995274Z patching file drivers/irqchip/irq-ti-sci-inta.c
2025-10-02T15:24:51.0997329Z patching file drivers/irqchip/irq-ti-sci-intr.c
2025-10-02T15:24:51.0998270Z patching file drivers/irqchip/irq-vic.c
2025-10-02T15:24:51.0999092Z patching file drivers/irqchip/irq-xilinx-intc.c
2025-10-02T15:24:51.1000139Z patching file drivers/irqchip/irq-xtensa-mx.c
2025-10-02T15:24:51.1002613Z patching file drivers/irqchip/irqchip.c
2025-10-02T15:24:51.1003959Z patching file drivers/irqchip/qcom-pdc.c
2025-10-02T15:24:51.1004802Z patching file drivers/isdn/capi/kcapi.c
2025-10-02T15:24:51.1006832Z patching file drivers/isdn/hardware/mISDN/hfcmulti.c
2025-10-02T15:24:51.1009629Z patching file drivers/isdn/hardware/mISDN/hfcpci.c
2025-10-02T15:24:51.1012801Z patching file drivers/isdn/hardware/mISDN/hfcsusb.c
2025-10-02T15:24:51.1015726Z patching file drivers/isdn/hardware/mISDN/mISDNinfineon.c
2025-10-02T15:24:51.1017228Z patching file drivers/isdn/hardware/mISDN/mISDNipac.c
2025-10-02T15:24:51.1019211Z patching file drivers/isdn/hardware/mISDN/netjet.c
2025-10-02T15:24:51.1020810Z patching file drivers/isdn/mISDN/Kconfig
2025-10-02T15:24:51.1021625Z patching file drivers/isdn/mISDN/core.c
2025-10-02T15:24:51.1022910Z patching file drivers/isdn/mISDN/core.h
2025-10-02T15:24:51.1023704Z patching file drivers/isdn/mISDN/dsp.h
2025-10-02T15:24:51.1025114Z patching file drivers/isdn/mISDN/dsp_cmx.c
2025-10-02T15:24:51.1027381Z patching file drivers/isdn/mISDN/dsp_core.c
2025-10-02T15:24:51.1028751Z patching file drivers/isdn/mISDN/dsp_hwec.c
2025-10-02T15:24:51.1029750Z patching file drivers/isdn/mISDN/dsp_pipeline.c
2025-10-02T15:24:51.1031336Z patching file drivers/isdn/mISDN/l1oip.h
2025-10-02T15:24:51.1032512Z patching file drivers/isdn/mISDN/l1oip_core.c
2025-10-02T15:24:51.1034412Z patching file drivers/isdn/mISDN/layer1.c
2025-10-02T15:24:51.1035614Z patching file drivers/leds/Kconfig
2025-10-02T15:24:51.1037239Z patching file drivers/leds/led-class-multicolor.c
2025-10-02T15:24:51.1039114Z patching file drivers/leds/led-class.c
2025-10-02T15:24:51.1041219Z patching file drivers/leds/led-triggers.c
2025-10-02T15:24:51.1042237Z patching file drivers/leds/leds-as3645a.c
2025-10-02T15:24:51.1044149Z patching file drivers/leds/leds-aw2013.c
2025-10-02T15:24:51.1045716Z patching file drivers/leds/leds-is31fl32xx.c
2025-10-02T15:24:51.1046587Z patching file drivers/leds/leds-ktd2692.c
2025-10-02T15:24:51.1047906Z patching file drivers/leds/leds-lm3601x.c
2025-10-02T15:24:51.1060689Z patching file drivers/leds/leds-lm36274.c
2025-10-02T15:24:51.1061781Z patching file drivers/leds/leds-lm3692x.c
2025-10-02T15:24:51.1062862Z patching file drivers/leds/leds-lm3697.c
2025-10-02T15:24:51.1063658Z patching file drivers/leds/leds-lp50xx.c
2025-10-02T15:24:51.1064459Z patching file drivers/leds/leds-lp5523.c
2025-10-02T15:24:51.1065326Z patching file drivers/leds/leds-lp55xx-common.c
2025-10-02T15:24:51.1066229Z patching file drivers/leds/leds-lp8860.c
2025-10-02T15:24:51.1067061Z patching file drivers/leds/leds-lt3593.c
2025-10-02T15:24:51.1067889Z patching file drivers/leds/leds-netxbig.c
2025-10-02T15:24:51.1068703Z patching file drivers/leds/leds-pwm.c
2025-10-02T15:24:51.1069674Z patching file drivers/leds/leds-sgm3140.c
2025-10-02T15:24:51.1070512Z patching file drivers/leds/leds-spi-byte.c
2025-10-02T15:24:51.1071236Z patching file drivers/leds/leds-ss4200.c
2025-10-02T15:24:51.1071980Z patching file drivers/leds/leds-tca6507.c
2025-10-02T15:24:51.1072475Z patching file drivers/leds/leds-tlc591xx.c
2025-10-02T15:24:51.1073314Z patching file drivers/leds/leds-turris-omnia.c
2025-10-02T15:24:51.1074231Z patching file drivers/leds/trigger/ledtrig-audio.c
2025-10-02T15:24:51.1075160Z patching file drivers/leds/trigger/ledtrig-cpu.c
2025-10-02T15:24:51.1076165Z patching file drivers/leds/trigger/ledtrig-netdev.c
2025-10-02T15:24:51.1077073Z patching file drivers/leds/trigger/ledtrig-panic.c
2025-10-02T15:24:51.1077913Z patching file drivers/lightnvm/Kconfig
2025-10-02T15:24:51.1079278Z patching file drivers/lightnvm/core.c
2025-10-02T15:24:51.1080417Z patching file drivers/macintosh/Kconfig
2025-10-02T15:24:51.1081251Z patching file drivers/macintosh/Makefile
2025-10-02T15:24:51.1082093Z patching file drivers/macintosh/adb-iop.c
2025-10-02T15:24:51.1082926Z patching file drivers/macintosh/adb.c
2025-10-02T15:24:51.1083745Z patching file drivers/macintosh/macio-adb.c
2025-10-02T15:24:51.1084598Z patching file drivers/macintosh/macio_asic.c
2025-10-02T15:24:51.1085667Z patching file drivers/macintosh/therm_windtunnel.c
2025-10-02T15:24:51.1086779Z patching file drivers/macintosh/via-macii.c
2025-10-02T15:24:51.1087629Z patching file drivers/macintosh/via-pmu.c
2025-10-02T15:24:51.1088529Z patching file drivers/macintosh/windfarm_lm75_sensor.c
2025-10-02T15:24:51.1091098Z patching file drivers/macintosh/windfarm_smu_sat.c
2025-10-02T15:24:51.1092514Z patching file drivers/macintosh/windfarm_smu_sensors.c
2025-10-02T15:24:51.1093465Z patching file drivers/mailbox/arm_mhu_db.c
2025-10-02T15:24:51.1094325Z patching file drivers/mailbox/bcm-flexrm-mailbox.c
2025-10-02T15:24:51.1095242Z patching file drivers/mailbox/bcm2835-mailbox.c
2025-10-02T15:24:51.1096113Z patching file drivers/mailbox/imx-mailbox.c
2025-10-02T15:24:51.1096954Z patching file drivers/mailbox/mailbox-test.c
2025-10-02T15:24:51.1097799Z patching file drivers/mailbox/mailbox.c
2025-10-02T15:24:51.1098637Z patching file drivers/mailbox/mtk-cmdq-mailbox.c
2025-10-02T15:24:51.1099739Z patching file drivers/mailbox/qcom-apcs-ipc-mailbox.c
2025-10-02T15:24:51.1100656Z patching file drivers/mailbox/qcom-ipcc.c
2025-10-02T15:24:51.1101512Z patching file drivers/mailbox/rockchip-mailbox.c
2025-10-02T15:24:51.1102405Z patching file drivers/mailbox/sprd-mailbox.c
2025-10-02T15:24:51.1104462Z patching file drivers/mailbox/tegra-hsp.c
2025-10-02T15:24:51.1106201Z patching file drivers/mailbox/ti-msgmgr.c
2025-10-02T15:24:51.1107097Z patching file drivers/mailbox/zynqmp-ipi-mailbox.c
2025-10-02T15:24:51.1108885Z patching file drivers/mcb/mcb-core.c
2025-10-02T15:24:51.1111404Z patching file drivers/mcb/mcb-lpc.c
2025-10-02T15:24:51.1113634Z patching file drivers/mcb/mcb-parse.c
2025-10-02T15:24:51.1115546Z patching file drivers/mcb/mcb-pci.c
2025-10-02T15:24:51.1116362Z patching file drivers/md/Kconfig
2025-10-02T15:24:51.1117156Z patching file drivers/md/bcache/bcache.h
2025-10-02T15:24:51.1117969Z patching file drivers/md/bcache/bset.c
2025-10-02T15:24:51.1118869Z patching file drivers/md/bcache/bset.h
2025-10-02T15:24:51.1121044Z patching file drivers/md/bcache/btree.c
2025-10-02T15:24:51.1124836Z patching file drivers/md/bcache/btree.h
2025-10-02T15:24:51.1125714Z patching file drivers/md/bcache/features.c
2025-10-02T15:24:51.1126743Z patching file drivers/md/bcache/features.h
2025-10-02T15:24:51.1127880Z patching file drivers/md/bcache/journal.c
2025-10-02T15:24:51.1129347Z patching file drivers/md/bcache/journal.h
2025-10-02T15:24:51.1130750Z patching file drivers/md/bcache/request.c
2025-10-02T15:24:51.1133132Z patching file drivers/md/bcache/super.c
2025-10-02T15:24:51.1136654Z patching file drivers/md/bcache/sysfs.c
2025-10-02T15:24:51.1138439Z patching file drivers/md/bcache/writeback.c
2025-10-02T15:24:51.1140901Z patching file drivers/md/bcache/writeback.h
2025-10-02T15:24:51.1142126Z patching file drivers/md/dm-bufio.c
2025-10-02T15:24:51.1144792Z patching file drivers/md/dm-cache-metadata.c
2025-10-02T15:24:51.1147348Z patching file drivers/md/dm-cache-policy-smq.c
2025-10-02T15:24:51.1150585Z patching file drivers/md/dm-cache-target.c
2025-10-02T15:24:51.1154514Z patching file drivers/md/dm-clone-metadata.c
2025-10-02T15:24:51.1156385Z patching file drivers/md/dm-clone-target.c
2025-10-02T15:24:51.1158319Z patching file drivers/md/dm-core.h
2025-10-02T15:24:51.1160388Z patching file drivers/md/dm-crypt.c
2025-10-02T15:24:51.1163885Z patching file drivers/md/dm-delay.c
2025-10-02T15:24:51.1165032Z patching file drivers/md/dm-ebs-target.c
2025-10-02T15:24:51.1166569Z patching file drivers/md/dm-era-target.c
2025-10-02T15:24:51.1168952Z patching file drivers/md/dm-flakey.c
2025-10-02T15:24:51.1170586Z patching file drivers/md/dm-historical-service-time.c
2025-10-02T15:24:51.1171709Z patching file drivers/md/dm-init.c
2025-10-02T15:24:51.1173898Z patching file drivers/md/dm-integrity.c
2025-10-02T15:24:51.1178234Z patching file drivers/md/dm-ioctl.c
2025-10-02T15:24:51.1180662Z patching file drivers/md/dm-log.c
2025-10-02T15:24:51.1182005Z patching file drivers/md/dm-queue-length.c
2025-10-02T15:24:51.1183963Z patching file drivers/md/dm-raid.c
2025-10-02T15:24:51.1187674Z patching file drivers/md/dm-raid1.c
2025-10-02T15:24:51.1189318Z patching file drivers/md/dm-round-robin.c
2025-10-02T15:24:51.1190303Z patching file drivers/md/dm-rq.c
2025-10-02T15:24:51.1191908Z patching file drivers/md/dm-service-time.c
2025-10-02T15:24:51.1193386Z patching file drivers/md/dm-snap.c
2025-10-02T15:24:51.1196063Z patching file drivers/md/dm-stats.c
2025-10-02T15:24:51.1197568Z patching file drivers/md/dm-stats.h
2025-10-02T15:24:51.1198698Z patching file drivers/md/dm-table.c
2025-10-02T15:24:51.1202095Z patching file drivers/md/dm-thin-metadata.c
2025-10-02T15:24:51.1205169Z patching file drivers/md/dm-thin.c
2025-10-02T15:24:51.1208147Z patching file drivers/md/dm-unstripe.c
2025-10-02T15:24:51.1209104Z patching file drivers/md/dm-verity-fec.c
2025-10-02T15:24:51.1210945Z patching file drivers/md/dm-verity-fec.h
2025-10-02T15:24:51.1212005Z patching file drivers/md/dm-verity-target.c
2025-10-02T15:24:51.1213793Z patching file drivers/md/dm-verity-verify-sig.c
2025-10-02T15:24:51.1214654Z patching file drivers/md/dm-verity.h
2025-10-02T15:24:51.1216227Z patching file drivers/md/dm-writecache.c
2025-10-02T15:24:51.1220360Z patching file drivers/md/dm-zoned-metadata.c
2025-10-02T15:24:51.1223243Z patching file drivers/md/dm-zoned-target.c
2025-10-02T15:24:51.1225578Z patching file drivers/md/dm.c
2025-10-02T15:24:51.1229133Z patching file drivers/md/dm.h
2025-10-02T15:24:51.1230841Z patching file drivers/md/md-bitmap.c
2025-10-02T15:24:51.1234494Z patching file drivers/md/md-cluster.c
2025-10-02T15:24:51.1239081Z patching file drivers/md/md.c
2025-10-02T15:24:51.1246742Z patching file drivers/md/md.h
2025-10-02T15:24:51.1248386Z patching file drivers/md/persistent-data/dm-array.c
2025-10-02T15:24:51.1250043Z patching file drivers/md/persistent-data/dm-btree-internal.h
2025-10-02T15:24:51.1251150Z patching file drivers/md/persistent-data/dm-btree-remove.c
2025-10-02T15:24:51.1252506Z patching file drivers/md/persistent-data/dm-btree.c
2025-10-02T15:24:51.1254146Z patching file drivers/md/persistent-data/dm-space-map-common.c
2025-10-02T15:24:51.1255389Z patching file drivers/md/persistent-data/dm-space-map-common.h
2025-10-02T15:24:51.1256710Z patching file drivers/md/persistent-data/dm-space-map-disk.c
2025-10-02T15:24:51.1257815Z patching file drivers/md/persistent-data/dm-space-map-metadata.c
2025-10-02T15:24:51.1259032Z patching file drivers/md/raid0.c
2025-10-02T15:24:51.1261374Z patching file drivers/md/raid0.h
2025-10-02T15:24:51.1262928Z patching file drivers/md/raid1.c
2025-10-02T15:24:51.1267246Z patching file drivers/md/raid10.c
2025-10-02T15:24:51.1273965Z patching file drivers/md/raid5.c
2025-10-02T15:24:51.1279455Z patching file drivers/media/Kconfig
2025-10-02T15:24:51.1281079Z patching file drivers/media/cec/core/cec-adap.c
2025-10-02T15:24:51.1285179Z patching file drivers/media/cec/core/cec-api.c
2025-10-02T15:24:51.1286572Z patching file drivers/media/cec/core/cec-core.c
2025-10-02T15:24:51.1287725Z patching file drivers/media/cec/core/cec-pin-priv.h
2025-10-02T15:24:51.1288923Z patching file drivers/media/cec/core/cec-pin.c
2025-10-02T15:24:51.1291522Z patching file drivers/media/cec/core/cec-priv.h
2025-10-02T15:24:51.1292474Z patching file drivers/media/cec/i2c/Kconfig
2025-10-02T15:24:51.1293385Z patching file drivers/media/cec/platform/Makefile
2025-10-02T15:24:51.1294441Z patching file drivers/media/cec/platform/cros-ec/cros-ec-cec.c
2025-10-02T15:24:51.1295505Z patching file drivers/media/cec/platform/s5p/s5p_cec.c
2025-10-02T15:24:51.1296562Z patching file drivers/media/cec/platform/stm32/stm32-cec.c
2025-10-02T15:24:51.1297633Z patching file drivers/media/cec/platform/tegra/tegra_cec.c
2025-10-02T15:24:51.1298821Z patching file drivers/media/cec/usb/pulse8/pulse8-cec.c
2025-10-02T15:24:51.1300829Z patching file drivers/media/cec/usb/rainshadow/rainshadow-cec.c
2025-10-02T15:24:51.1302064Z patching file drivers/media/common/saa7146/saa7146_core.c
2025-10-02T15:24:51.1303279Z patching file drivers/media/common/saa7146/saa7146_fops.c
2025-10-02T15:24:51.1304725Z patching file drivers/media/common/saa7146/saa7146_video.c
2025-10-02T15:24:51.1307055Z patching file drivers/media/common/siano/smscoreapi.c
2025-10-02T15:24:51.1309912Z patching file drivers/media/common/siano/smscoreapi.h
2025-10-02T15:24:51.1311494Z patching file drivers/media/common/siano/smsdvb-main.c
2025-10-02T15:24:51.1314147Z patching file drivers/media/common/v4l2-tpg/v4l2-tpg-core.c
2025-10-02T15:24:51.1317343Z patching file drivers/media/common/videobuf2/videobuf2-core.c
2025-10-02T15:24:51.1320882Z patching file drivers/media/common/videobuf2/videobuf2-dma-contig.c
2025-10-02T15:24:51.1322074Z patching file drivers/media/common/videobuf2/videobuf2-dma-sg.c
2025-10-02T15:24:51.1323521Z patching file drivers/media/common/videobuf2/videobuf2-v4l2.c
2025-10-02T15:24:51.1325312Z patching file drivers/media/dvb-core/dmxdev.c
2025-10-02T15:24:51.1327772Z patching file drivers/media/dvb-core/dvb_ca_en50221.c
2025-10-02T15:24:51.1330520Z patching file drivers/media/dvb-core/dvb_demux.c
2025-10-02T15:24:51.1332862Z patching file drivers/media/dvb-core/dvb_frontend.c
2025-10-02T15:24:51.1335877Z patching file drivers/media/dvb-core/dvb_net.c
2025-10-02T15:24:51.1338155Z patching file drivers/media/dvb-core/dvb_vb2.c
2025-10-02T15:24:51.1339335Z patching file drivers/media/dvb-core/dvbdev.c
2025-10-02T15:24:51.1342279Z patching file drivers/media/dvb-frontends/as102_fe_types.h
2025-10-02T15:24:51.1343309Z patching file drivers/media/dvb-frontends/ascot2e.c
2025-10-02T15:24:51.1344481Z patching file drivers/media/dvb-frontends/atbm8830.c
2025-10-02T15:24:51.1345797Z patching file drivers/media/dvb-frontends/au8522_dig.c
2025-10-02T15:24:51.1347309Z patching file drivers/media/dvb-frontends/bcm3510.c
2025-10-02T15:24:51.1348893Z patching file drivers/media/dvb-frontends/cx22700.c
2025-10-02T15:24:51.1350340Z patching file drivers/media/dvb-frontends/cx22702.c
2025-10-02T15:24:51.1351763Z patching file drivers/media/dvb-frontends/cx24110.c
2025-10-02T15:24:51.1353301Z patching file drivers/media/dvb-frontends/cx24113.c
2025-10-02T15:24:51.1354924Z patching file drivers/media/dvb-frontends/cx24116.c
2025-10-02T15:24:51.1357349Z patching file drivers/media/dvb-frontends/cx24120.c
2025-10-02T15:24:51.1359295Z patching file drivers/media/dvb-frontends/cx24123.c
2025-10-02T15:24:51.1361257Z patching file drivers/media/dvb-frontends/cxd2820r_core.c
2025-10-02T15:24:51.1363746Z patching file drivers/media/dvb-frontends/cxd2841er.c
2025-10-02T15:24:51.1367367Z patching file drivers/media/dvb-frontends/cxd2880/cxd2880_top.c
2025-10-02T15:24:51.1369158Z patching file drivers/media/dvb-frontends/dib0070.c
2025-10-02T15:24:51.1371704Z patching file drivers/media/dvb-frontends/dib0090.c
2025-10-02T15:24:51.1374357Z patching file drivers/media/dvb-frontends/dib3000mb.c
2025-10-02T15:24:51.1375872Z patching file drivers/media/dvb-frontends/dib3000mc.c
2025-10-02T15:24:51.1377833Z patching file drivers/media/dvb-frontends/dib7000m.c
2025-10-02T15:24:51.1380672Z patching file drivers/media/dvb-frontends/dib7000p.c
2025-10-02T15:24:51.1384502Z patching file drivers/media/dvb-frontends/dib8000.c
2025-10-02T15:24:51.1388765Z patching file drivers/media/dvb-frontends/dib9000.c
2025-10-02T15:24:51.1393987Z patching file drivers/media/dvb-frontends/drx39xyj/drxj.c
2025-10-02T15:24:51.1401071Z patching file drivers/media/dvb-frontends/drxd_hard.c
2025-10-02T15:24:51.1405144Z patching file drivers/media/dvb-frontends/drxk_hard.c
2025-10-02T15:24:51.1410130Z patching file drivers/media/dvb-frontends/ds3000.c
2025-10-02T15:24:51.1412342Z patching file drivers/media/dvb-frontends/dvb-pll.c
2025-10-02T15:24:51.1413310Z patching file drivers/media/dvb-frontends/ec100.c
2025-10-02T15:24:51.1414254Z patching file drivers/media/dvb-frontends/helene.c
2025-10-02T15:24:51.1415729Z patching file drivers/media/dvb-frontends/horus3a.c
2025-10-02T15:24:51.1417887Z patching file drivers/media/dvb-frontends/isl6405.c
2025-10-02T15:24:51.1419098Z patching file drivers/media/dvb-frontends/isl6421.c
2025-10-02T15:24:51.1421081Z patching file drivers/media/dvb-frontends/isl6423.c
2025-10-02T15:24:51.1423510Z patching file drivers/media/dvb-frontends/itd1000.c
2025-10-02T15:24:51.1424482Z patching file drivers/media/dvb-frontends/ix2505v.c
2025-10-02T15:24:51.1426469Z patching file drivers/media/dvb-frontends/l64781.c
2025-10-02T15:24:51.1427629Z patching file drivers/media/dvb-frontends/lg2160.c
2025-10-02T15:24:51.1428804Z patching file drivers/media/dvb-frontends/lgdt3305.c
2025-10-02T15:24:51.1429978Z patching file drivers/media/dvb-frontends/lgdt3306a.c
2025-10-02T15:24:51.1431179Z patching file drivers/media/dvb-frontends/lgdt330x.c
2025-10-02T15:24:51.1432944Z patching file drivers/media/dvb-frontends/lgs8gxx.c
2025-10-02T15:24:51.1434268Z patching file drivers/media/dvb-frontends/lnbh25.c
2025-10-02T15:24:51.1438933Z patching file drivers/media/dvb-frontends/lnbp21.c
2025-10-02T15:24:51.1441311Z patching file drivers/media/dvb-frontends/lnbp22.c
2025-10-02T15:24:51.1443320Z patching file drivers/media/dvb-frontends/m88ds3103.c
2025-10-02T15:24:51.1445824Z patching file drivers/media/dvb-frontends/m88rs2000.c
2025-10-02T15:24:51.1446812Z patching file drivers/media/dvb-frontends/mb86a16.c
2025-10-02T15:24:51.1448892Z patching file drivers/media/dvb-frontends/mb86a20s.c
2025-10-02T15:24:51.1450019Z patching file drivers/media/dvb-frontends/mn88443x.c
2025-10-02T15:24:51.1450972Z patching file drivers/media/dvb-frontends/mt312.c
2025-10-02T15:24:51.1451908Z patching file drivers/media/dvb-frontends/mt352.c
2025-10-02T15:24:51.1452849Z patching file drivers/media/dvb-frontends/mxl5xx.c
2025-10-02T15:24:51.1455334Z patching file drivers/media/dvb-frontends/nxt200x.c
2025-10-02T15:24:51.1458184Z patching file drivers/media/dvb-frontends/nxt6000.c
2025-10-02T15:24:51.1460240Z patching file drivers/media/dvb-frontends/or51132.c
2025-10-02T15:24:51.1461775Z patching file drivers/media/dvb-frontends/or51211.c
2025-10-02T15:24:51.1468135Z patching file drivers/media/dvb-frontends/rtl2830.c
2025-10-02T15:24:51.1470014Z patching file drivers/media/dvb-frontends/rtl2832.c
2025-10-02T15:24:51.1471986Z patching file drivers/media/dvb-frontends/s5h1409.c
2025-10-02T15:24:51.1474391Z patching file drivers/media/dvb-frontends/s5h1411.c
2025-10-02T15:24:51.1476785Z patching file drivers/media/dvb-frontends/s5h1420.c
2025-10-02T15:24:51.1477884Z patching file drivers/media/dvb-frontends/s5h1432.c
2025-10-02T15:24:51.1478702Z patching file drivers/media/dvb-frontends/s921.c
2025-10-02T15:24:51.1479309Z patching file drivers/media/dvb-frontends/si21xx.c
2025-10-02T15:24:51.1480150Z patching file drivers/media/dvb-frontends/sp8870.c
2025-10-02T15:24:51.1480715Z patching file drivers/media/dvb-frontends/sp887x.c
2025-10-02T15:24:51.1482533Z patching file drivers/media/dvb-frontends/stb0899_algo.c
2025-10-02T15:24:51.1483552Z patching file drivers/media/dvb-frontends/stb0899_drv.c
2025-10-02T15:24:51.1484537Z patching file drivers/media/dvb-frontends/stb6000.c
2025-10-02T15:24:51.1485489Z patching file drivers/media/dvb-frontends/stb6100.c
2025-10-02T15:24:51.1486452Z patching file drivers/media/dvb-frontends/stv0288.c
2025-10-02T15:24:51.1487388Z patching file drivers/media/dvb-frontends/stv0297.c
2025-10-02T15:24:51.1488328Z patching file drivers/media/dvb-frontends/stv0299.c
2025-10-02T15:24:51.1489260Z patching file drivers/media/dvb-frontends/stv0367.c
2025-10-02T15:24:51.1490384Z patching file drivers/media/dvb-frontends/stv0900_core.c
2025-10-02T15:24:51.1492681Z patching file drivers/media/dvb-frontends/stv090x.c
2025-10-02T15:24:51.1493870Z patching file drivers/media/dvb-frontends/stv6110.c
2025-10-02T15:24:51.1495775Z patching file drivers/media/dvb-frontends/stv6110x.c
2025-10-02T15:24:51.1497938Z patching file drivers/media/dvb-frontends/tda10021.c
2025-10-02T15:24:51.1500047Z patching file drivers/media/dvb-frontends/tda10023.c
2025-10-02T15:24:51.1501020Z patching file drivers/media/dvb-frontends/tda10048.c
2025-10-02T15:24:51.1501990Z patching file drivers/media/dvb-frontends/tda1004x.c
2025-10-02T15:24:51.1502956Z patching file drivers/media/dvb-frontends/tda10086.c
2025-10-02T15:24:51.1503951Z patching file drivers/media/dvb-frontends/tda18271c2dd.c
2025-10-02T15:24:51.1505493Z patching file drivers/media/dvb-frontends/tda665x.c
2025-10-02T15:24:51.1506462Z patching file drivers/media/dvb-frontends/tda8083.c
2025-10-02T15:24:51.1507938Z patching file drivers/media/dvb-frontends/tda8261.c
2025-10-02T15:24:51.1509634Z patching file drivers/media/dvb-frontends/tda826x.c
2025-10-02T15:24:51.1511033Z patching file drivers/media/dvb-frontends/ts2020.c
2025-10-02T15:24:51.1512381Z patching file drivers/media/dvb-frontends/tua6100.c
2025-10-02T15:24:51.1513542Z patching file drivers/media/dvb-frontends/ves1820.c
2025-10-02T15:24:51.1514493Z patching file drivers/media/dvb-frontends/ves1x93.c
2025-10-02T15:24:51.1515429Z patching file drivers/media/dvb-frontends/zl10036.c
2025-10-02T15:24:51.1516380Z patching file drivers/media/dvb-frontends/zl10039.c
2025-10-02T15:24:51.1526365Z patching file drivers/media/dvb-frontends/zl10353.c
2025-10-02T15:24:51.1527362Z patching file drivers/media/firewire/firedtv-avc.c
2025-10-02T15:24:51.1528328Z patching file drivers/media/firewire/firedtv-ci.c
2025-10-02T15:24:51.1529235Z patching file drivers/media/i2c/ad5820.c
2025-10-02T15:24:51.1530293Z patching file drivers/media/i2c/adv748x/adv748x.h
2025-10-02T15:24:51.1531232Z patching file drivers/media/i2c/adv7511-v4l2.c
2025-10-02T15:24:51.1532129Z patching file drivers/media/i2c/adv7604.c
2025-10-02T15:24:51.1532958Z patching file drivers/media/i2c/adv7842.c
2025-10-02T15:24:51.1533842Z patching file drivers/media/i2c/et8ek8/et8ek8_driver.c
2025-10-02T15:24:51.1534762Z patching file drivers/media/i2c/hi556.c
2025-10-02T15:24:51.1535589Z patching file drivers/media/i2c/imx214.c
2025-10-02T15:24:51.1536410Z patching file drivers/media/i2c/imx219.c
2025-10-02T15:24:51.1537233Z patching file drivers/media/i2c/imx258.c
2025-10-02T15:24:51.1538070Z patching file drivers/media/i2c/ir-kbd-i2c.c
2025-10-02T15:24:51.1538969Z patching file drivers/media/i2c/m5mols/m5mols_core.c
2025-10-02T15:24:51.1540020Z patching file drivers/media/i2c/max2175.c
2025-10-02T15:24:51.1540869Z patching file drivers/media/i2c/max9271.c
2025-10-02T15:24:51.1541700Z patching file drivers/media/i2c/max9286.c
2025-10-02T15:24:51.1542887Z patching file drivers/media/i2c/mt9p031.c
2025-10-02T15:24:51.1545089Z patching file drivers/media/i2c/ov2659.c
2025-10-02T15:24:51.1548012Z patching file drivers/media/i2c/ov2680.c
2025-10-02T15:24:51.1550764Z patching file drivers/media/i2c/ov2740.c
2025-10-02T15:24:51.1553204Z patching file drivers/media/i2c/ov5640.c
2025-10-02T15:24:51.1556037Z patching file drivers/media/i2c/ov5670.c
2025-10-02T15:24:51.1570651Z patching file drivers/media/i2c/ov5675.c
2025-10-02T15:24:51.1571730Z patching file drivers/media/i2c/ov7251.c
2025-10-02T15:24:51.1573683Z patching file drivers/media/i2c/ov7670.c
2025-10-02T15:24:51.1574525Z patching file drivers/media/i2c/ov772x.c
2025-10-02T15:24:51.1576728Z patching file drivers/media/i2c/ov8856.c
2025-10-02T15:24:51.1577584Z patching file drivers/media/i2c/rdacm20.c
2025-10-02T15:24:51.1578478Z patching file drivers/media/i2c/s5c73m3/s5c73m3-core.c
2025-10-02T15:24:51.1579439Z patching file drivers/media/i2c/s5c73m3/s5c73m3.h
2025-10-02T15:24:51.1581646Z patching file drivers/media/i2c/s5k4ecgx.c
2025-10-02T15:24:51.1583591Z patching file drivers/media/i2c/s5k5baf.c
2025-10-02T15:24:51.1584438Z patching file drivers/media/i2c/s5k6aa.c
2025-10-02T15:24:51.1586436Z patching file drivers/media/i2c/saa6588.c
2025-10-02T15:24:51.1588386Z patching file drivers/media/i2c/smiapp/smiapp-core.c
2025-10-02T15:24:51.1590352Z patching file drivers/media/i2c/tc358743.c
2025-10-02T15:24:51.1592126Z patching file drivers/media/i2c/tda1997x.c
2025-10-02T15:24:51.1592847Z patching file drivers/media/i2c/tvp5150.c
2025-10-02T15:24:51.1593354Z patching file drivers/media/mc/Makefile
2025-10-02T15:24:51.1594194Z patching file drivers/media/mc/mc-devnode.c
2025-10-02T15:24:51.1594905Z patching file drivers/media/pci/b2c2/flexcop-pci.c
2025-10-02T15:24:51.1595488Z patching file drivers/media/pci/bt8xx/bt878.c
2025-10-02T15:24:51.1596028Z patching file drivers/media/pci/bt8xx/bttv-driver.c
2025-10-02T15:24:51.1597802Z patching file drivers/media/pci/bt8xx/dst.c
2025-10-02T15:24:51.1600157Z patching file drivers/media/pci/bt8xx/dst_ca.c
2025-10-02T15:24:51.1602276Z patching file drivers/media/pci/cobalt/cobalt-driver.c
2025-10-02T15:24:51.1605224Z patching file drivers/media/pci/cobalt/cobalt-driver.h
2025-10-02T15:24:51.1606231Z patching file drivers/media/pci/cx23885/cx23885-alsa.c
2025-10-02T15:24:51.1607204Z patching file drivers/media/pci/cx23885/cx23885-core.c
2025-10-02T15:24:51.1609430Z patching file drivers/media/pci/cx23885/cx23885-dvb.c
2025-10-02T15:24:51.1611979Z patching file drivers/media/pci/cx23885/cx23885-video.c
2025-10-02T15:24:51.1613996Z patching file drivers/media/pci/cx25821/cx25821-core.c
2025-10-02T15:24:51.1615917Z patching file drivers/media/pci/cx88/cx88-mpeg.c
2025-10-02T15:24:51.1617010Z patching file drivers/media/pci/cx88/cx88-vbi.c
2025-10-02T15:24:51.1617950Z patching file drivers/media/pci/cx88/cx88-video.c
2025-10-02T15:24:51.1619843Z patching file drivers/media/pci/ddbridge/ddbridge-dummy-fe.c
2025-10-02T15:24:51.1621045Z patching file drivers/media/pci/ddbridge/ddbridge-main.c
2025-10-02T15:24:51.1623362Z patching file drivers/media/pci/dm1105/dm1105.c
2025-10-02T15:24:51.1624308Z patching file drivers/media/pci/intel/ipu3/Kconfig
2025-10-02T15:24:51.1627420Z patching file drivers/media/pci/intel/ipu3/ipu3-cio2.c
2025-10-02T15:24:51.1629166Z patching file drivers/media/pci/intel/ipu3/ipu3-cio2.h
2025-10-02T15:24:51.1631368Z patching file drivers/media/pci/ivtv/ivtv-driver.h
2025-10-02T15:24:51.1632310Z patching file drivers/media/pci/ivtv/ivtv-ioctl.c
2025-10-02T15:24:51.1633261Z patching file drivers/media/pci/ivtv/ivtv-streams.c
2025-10-02T15:24:51.1635424Z patching file drivers/media/pci/netup_unidvb/netup_unidvb_core.c
2025-10-02T15:24:51.1636849Z patching file drivers/media/pci/netup_unidvb/netup_unidvb_spi.c
2025-10-02T15:24:51.1637882Z patching file drivers/media/pci/ngene/ngene-core.c
2025-10-02T15:24:51.1639010Z patching file drivers/media/pci/ngene/ngene.h
2025-10-02T15:24:51.1640086Z patching file drivers/media/pci/saa7134/saa7134-alsa.c
2025-10-02T15:24:51.1641584Z patching file drivers/media/pci/saa7134/saa7134-core.c
2025-10-02T15:24:51.1642855Z patching file drivers/media/pci/saa7134/saa7134-dvb.c
2025-10-02T15:24:51.1644026Z patching file drivers/media/pci/saa7134/saa7134-empress.c
2025-10-02T15:24:51.1645323Z patching file drivers/media/pci/saa7134/saa7134-ts.c
2025-10-02T15:24:51.1646490Z patching file drivers/media/pci/saa7134/saa7134-vbi.c
2025-10-02T15:24:51.1647323Z patching file drivers/media/pci/saa7134/saa7134-video.c
2025-10-02T15:24:51.1648483Z patching file drivers/media/pci/saa7146/hexium_gemini.c
2025-10-02T15:24:51.1649430Z patching file drivers/media/pci/saa7146/hexium_orion.c
2025-10-02T15:24:51.1650788Z patching file drivers/media/pci/saa7146/mxb.c
2025-10-02T15:24:51.1653576Z patching file drivers/media/pci/saa7164/saa7164-core.c
2025-10-02T15:24:51.1654809Z patching file drivers/media/pci/saa7164/saa7164-encoder.c
2025-10-02T15:24:51.1657810Z patching file drivers/media/pci/smipcie/smipcie-ir.c
2025-10-02T15:24:51.1658262Z patching file drivers/media/pci/solo6x10/solo6x10-core.c
2025-10-02T15:24:51.1658995Z patching file drivers/media/pci/solo6x10/solo6x10-g723.c
2025-10-02T15:24:51.1660116Z patching file drivers/media/pci/solo6x10/solo6x10-offsets.h
2025-10-02T15:24:51.1660871Z patching file drivers/media/pci/sta2x11/Kconfig
2025-10-02T15:24:51.1662047Z patching file drivers/media/pci/sta2x11/sta2x11_vip.c
2025-10-02T15:24:51.1664066Z patching file drivers/media/pci/ttpci/av7110_av.c
2025-10-02T15:24:51.1666180Z patching file drivers/media/pci/ttpci/budget-av.c
2025-10-02T15:24:51.1668052Z patching file drivers/media/pci/tw686x/tw686x-core.c
2025-10-02T15:24:51.1669390Z patching file drivers/media/pci/tw686x/tw686x-video.c
2025-10-02T15:24:51.1671627Z patching file drivers/media/platform/am437x/am437x-vpfe.c
2025-10-02T15:24:51.1673978Z patching file drivers/media/platform/aspeed-video.c
2025-10-02T15:24:51.1677305Z patching file drivers/media/platform/coda/coda-bit.c
2025-10-02T15:24:51.1680218Z patching file drivers/media/platform/coda/coda-common.c
2025-10-02T15:24:51.1683625Z patching file drivers/media/platform/coda/coda-jpeg.c
2025-10-02T15:24:51.1686094Z patching file drivers/media/platform/coda/imx-vdoa.c
2025-10-02T15:24:51.1686859Z patching file drivers/media/platform/davinci/vpbe_display.c
2025-10-02T15:24:51.1688309Z patching file drivers/media/platform/davinci/vpbe_venc.c
2025-10-02T15:24:51.1689309Z patching file drivers/media/platform/davinci/vpif.c
2025-10-02T15:24:51.1690619Z patching file drivers/media/platform/exynos-gsc/gsc-m2m.c
2025-10-02T15:24:51.1692092Z patching file drivers/media/platform/exynos4-is/fimc-capture.c
2025-10-02T15:24:51.1693696Z patching file drivers/media/platform/exynos4-is/fimc-core.c
2025-10-02T15:24:51.1694709Z patching file drivers/media/platform/exynos4-is/fimc-is-regs.c
2025-10-02T15:24:51.1695640Z patching file drivers/media/platform/exynos4-is/fimc-is.c
2025-10-02T15:24:51.1696827Z patching file drivers/media/platform/exynos4-is/fimc-isp-video.c
2025-10-02T15:24:51.1697747Z patching file drivers/media/platform/exynos4-is/fimc-isp-video.h
2025-10-02T15:24:51.1698809Z patching file drivers/media/platform/exynos4-is/fimc-isp.c
2025-10-02T15:24:51.1699749Z patching file drivers/media/platform/exynos4-is/fimc-lite.c
2025-10-02T15:24:51.1701399Z patching file drivers/media/platform/exynos4-is/fimc-m2m.c
2025-10-02T15:24:51.1702577Z patching file drivers/media/platform/exynos4-is/media-dev.c
2025-10-02T15:24:51.1704111Z patching file drivers/media/platform/exynos4-is/media-dev.h
2025-10-02T15:24:51.1705015Z patching file drivers/media/platform/exynos4-is/mipi-csis.c
2025-10-02T15:24:51.1706465Z patching file drivers/media/platform/imx-pxp.c
2025-10-02T15:24:51.1708398Z patching file drivers/media/platform/marvell-ccic/mcam-core.c
2025-10-02T15:24:51.1710785Z patching file drivers/media/platform/mtk-jpeg/mtk_jpeg_core.c
2025-10-02T15:24:51.1711959Z patching file drivers/media/platform/mtk-mdp/mtk_mdp_ipi.h
2025-10-02T15:24:51.1712949Z patching file drivers/media/platform/mtk-mdp/mtk_mdp_m2m.c
2025-10-02T15:24:51.1714010Z patching file drivers/media/platform/mtk-mdp/mtk_mdp_vpu.c
2025-10-02T15:24:51.1717019Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_drv.c
2025-10-02T15:24:51.1717615Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.c
2025-10-02T15:24:51.1718689Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_dec_pm.h
2025-10-02T15:24:51.1720053Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_enc.c
2025-10-02T15:24:51.1720683Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_enc_drv.c
2025-10-02T15:24:51.1721191Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_enc_pm.c
2025-10-02T15:24:51.1722823Z patching file drivers/media/platform/mtk-vcodec/mtk_vcodec_fw_vpu.c
2025-10-02T15:24:51.1723338Z patching file drivers/media/platform/mtk-vcodec/vdec/vdec_vp9_if.c
2025-10-02T15:24:51.1725220Z patching file drivers/media/platform/mtk-vcodec/venc/venc_h264_if.c
2025-10-02T15:24:51.1726497Z patching file drivers/media/platform/mtk-vpu/mtk_vpu.c
2025-10-02T15:24:51.1728011Z patching file drivers/media/platform/mtk-vpu/mtk_vpu.h
2025-10-02T15:24:51.1729000Z patching file drivers/media/platform/omap3isp/isp.c
2025-10-02T15:24:51.1732668Z patching file drivers/media/platform/omap3isp/ispccdc.c
2025-10-02T15:24:51.1735448Z patching file drivers/media/platform/omap3isp/ispstat.c
2025-10-02T15:24:51.1736823Z patching file drivers/media/platform/pxa_camera.c
2025-10-02T15:24:51.1738842Z patching file drivers/media/platform/qcom/camss/camss-vfe.c
2025-10-02T15:24:51.1740785Z patching file drivers/media/platform/qcom/camss/camss-video.c
2025-10-02T15:24:51.1741991Z patching file drivers/media/platform/qcom/camss/camss.c
2025-10-02T15:24:51.1743101Z patching file drivers/media/platform/qcom/venus/Makefile
2025-10-02T15:24:51.1743807Z patching file drivers/media/platform/qcom/venus/core.c
2025-10-02T15:24:51.1745379Z patching file drivers/media/platform/qcom/venus/core.h
2025-10-02T15:24:51.1746465Z patching file drivers/media/platform/qcom/venus/dbgfs.c
2025-10-02T15:24:51.1747158Z patching file drivers/media/platform/qcom/venus/dbgfs.h
2025-10-02T15:24:51.1748062Z patching file drivers/media/platform/qcom/venus/firmware.c
2025-10-02T15:24:51.1748982Z patching file drivers/media/platform/qcom/venus/helpers.c
2025-10-02T15:24:51.1750748Z patching file drivers/media/platform/qcom/venus/helpers.h
2025-10-02T15:24:51.1751651Z patching file drivers/media/platform/qcom/venus/hfi.c
2025-10-02T15:24:51.1752697Z patching file drivers/media/platform/qcom/venus/hfi_msgs.c
2025-10-02T15:24:51.1753956Z patching file drivers/media/platform/qcom/venus/hfi_parser.c
2025-10-02T15:24:51.1757229Z patching file drivers/media/platform/qcom/venus/hfi_parser.h
2025-10-02T15:24:51.1757685Z patching file drivers/media/platform/qcom/venus/hfi_platform.c
2025-10-02T15:24:51.1758477Z patching file drivers/media/platform/qcom/venus/hfi_platform.h
2025-10-02T15:24:51.1760024Z patching file drivers/media/platform/qcom/venus/hfi_platform_v4.c
2025-10-02T15:24:51.1760963Z patching file drivers/media/platform/qcom/venus/hfi_venus.c
2025-10-02T15:24:51.1764231Z patching file drivers/media/platform/qcom/venus/hfi_venus_io.h
2025-10-02T15:24:51.1765786Z patching file drivers/media/platform/qcom/venus/pm_helpers.c
2025-10-02T15:24:51.1768541Z patching file drivers/media/platform/qcom/venus/pm_helpers.h
2025-10-02T15:24:51.1769414Z patching file drivers/media/platform/qcom/venus/vdec.c
2025-10-02T15:24:51.1772526Z patching file drivers/media/platform/qcom/venus/venc.c
2025-10-02T15:24:51.1774515Z patching file drivers/media/platform/rcar-vin/rcar-csi2.c
2025-10-02T15:24:51.1776065Z patching file drivers/media/platform/rcar-vin/rcar-dma.c
2025-10-02T15:24:51.1777214Z patching file drivers/media/platform/rcar-vin/rcar-v4l2.c
2025-10-02T15:24:51.1778551Z patching file drivers/media/platform/rcar_drif.c
2025-10-02T15:24:51.1780481Z patching file drivers/media/platform/rcar_fdp1.c
2025-10-02T15:24:51.1782591Z patching file drivers/media/platform/rockchip/rga/rga-buf.c
2025-10-02T15:24:51.1783885Z patching file drivers/media/platform/rockchip/rga/rga.c
2025-10-02T15:24:51.1785175Z patching file drivers/media/platform/s3c-camif/camif-capture.c
2025-10-02T15:24:51.1786755Z patching file drivers/media/platform/s3c-camif/camif-core.c
2025-10-02T15:24:51.1787542Z patching file drivers/media/platform/s5p-g2d/g2d.c
2025-10-02T15:24:51.1789451Z patching file drivers/media/platform/s5p-jpeg/jpeg-core.c
2025-10-02T15:24:51.1792702Z patching file drivers/media/platform/s5p-mfc/s5p_mfc.c
2025-10-02T15:24:51.1793675Z patching file drivers/media/platform/s5p-mfc/s5p_mfc_ctrl.c
2025-10-02T15:24:51.1795501Z patching file drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
2025-10-02T15:24:51.1798062Z patching file drivers/media/platform/s5p-mfc/s5p_mfc_opr_v6.c
2025-10-02T15:24:51.1801369Z patching file drivers/media/platform/sh_vou.c
2025-10-02T15:24:51.1802734Z patching file drivers/media/platform/sti/bdisp/Makefile
2025-10-02T15:24:51.1803755Z patching file drivers/media/platform/sti/bdisp/bdisp-debug.c
2025-10-02T15:24:51.1805023Z patching file drivers/media/platform/sti/bdisp/bdisp-v4l2.c
2025-10-02T15:24:51.1807211Z patching file drivers/media/platform/sti/c8sectpfe/c8sectpfe-core.c
2025-10-02T15:24:51.1808460Z patching file drivers/media/platform/sti/delta/Makefile
2025-10-02T15:24:51.1809826Z patching file drivers/media/platform/sti/delta/delta-v4l2.c
2025-10-02T15:24:51.1811535Z patching file drivers/media/platform/sti/hva/Makefile
2025-10-02T15:24:51.1812298Z patching file drivers/media/platform/sti/hva/hva-hw.c
2025-10-02T15:24:51.1813372Z patching file drivers/media/platform/stm32/stm32-dcmi.c
2025-10-02T15:24:51.1815666Z patching file drivers/media/platform/sunxi/sun4i-csi/sun4i_csi.c
2025-10-02T15:24:51.1816483Z patching file drivers/media/platform/sunxi/sun4i-csi/sun4i_csi.h
2025-10-02T15:24:51.1817370Z patching file drivers/media/platform/sunxi/sun6i-csi/sun6i_video.c
2025-10-02T15:24:51.1818205Z patching file drivers/media/platform/sunxi/sun8i-di/sun8i-di.c
2025-10-02T15:24:51.1820232Z patching file drivers/media/platform/sunxi/sun8i-rotate/sun8i_rotate.c
2025-10-02T15:24:51.1821069Z patching file drivers/media/platform/ti-vpe/cal.c
2025-10-02T15:24:51.1822763Z patching file drivers/media/platform/ti-vpe/cal.h
2025-10-02T15:24:51.1823462Z patching file drivers/media/platform/video-mux.c
2025-10-02T15:24:51.1824776Z patching file drivers/media/platform/vsp1/vsp1_drm.c
2025-10-02T15:24:51.1826096Z patching file drivers/media/platform/vsp1/vsp1_drv.c
2025-10-02T15:24:51.1827292Z patching file drivers/media/platform/vsp1/vsp1_histo.c
2025-10-02T15:24:51.1850677Z patching file drivers/media/platform/vsp1/vsp1_pipe.h
2025-10-02T15:24:51.1851107Z patching file drivers/media/platform/vsp1/vsp1_rpf.c
2025-10-02T15:24:51.1851548Z patching file drivers/media/platform/xilinx/xilinx-vipp.c
2025-10-02T15:24:51.1851919Z patching file drivers/media/radio/radio-isa.c
2025-10-02T15:24:51.1852300Z patching file drivers/media/radio/radio-shark.c
2025-10-02T15:24:51.1852676Z patching file drivers/media/radio/radio-shark2.c
2025-10-02T15:24:51.1853061Z patching file drivers/media/radio/radio-wl1273.c
2025-10-02T15:24:51.1853492Z patching file drivers/media/radio/si470x/radio-si470x-i2c.c
2025-10-02T15:24:51.1853927Z patching file drivers/media/radio/si470x/radio-si470x-usb.c
2025-10-02T15:24:51.1854332Z patching file drivers/media/radio/wl128x/fmdrv_common.c
2025-10-02T15:24:51.1854673Z patching file drivers/media/rc/Makefile
2025-10-02T15:24:51.1855027Z patching file drivers/media/rc/bpf-lirc.c
2025-10-02T15:24:51.1855371Z patching file drivers/media/rc/ene_ir.c
2025-10-02T15:24:51.1855740Z patching file drivers/media/rc/gpio-ir-recv.c
2025-10-02T15:24:51.1856092Z patching file drivers/media/rc/gpio-ir-tx.c
2025-10-02T15:24:51.1856455Z patching file drivers/media/rc/igorplugusb.c
2025-10-02T15:24:51.1856799Z patching file drivers/media/rc/iguanair.c
2025-10-02T15:24:51.1857132Z patching file drivers/media/rc/imon.c
2025-10-02T15:24:51.1857667Z patching file drivers/media/rc/ir-mce_kbd-decoder.c
2025-10-02T15:24:51.1858235Z patching file drivers/media/rc/ir-sharp-decoder.c
2025-10-02T15:24:51.1858587Z patching file drivers/media/rc/ir_toy.c
2025-10-02T15:24:51.1858942Z patching file drivers/media/rc/ite-cir.c
2025-10-02T15:24:51.1859317Z patching file drivers/media/rc/keymaps/Makefile
2025-10-02T15:24:51.1859850Z patching file drivers/media/rc/keymaps/rc-cec.c
2025-10-02T15:24:51.1860238Z patching file drivers/media/rc/lirc_dev.c
2025-10-02T15:24:51.1862245Z patching file drivers/media/rc/mceusb.c
2025-10-02T15:24:51.1864475Z patching file drivers/media/rc/rc-core-priv.h
2025-10-02T15:24:51.1865302Z patching file drivers/media/rc/rc-loopback.c
2025-10-02T15:24:51.1866971Z patching file drivers/media/rc/rc-main.c
2025-10-02T15:24:51.1869268Z patching file drivers/media/rc/redrat3.c
2025-10-02T15:24:51.1871458Z patching file drivers/media/rc/serial_ir.c
2025-10-02T15:24:51.1872759Z patching file drivers/media/rc/streamzap.c
2025-10-02T15:24:51.1874530Z patching file drivers/media/rc/sunxi-cir.c
2025-10-02T15:24:51.1875811Z patching file drivers/media/spi/cxd2880-spi.c
2025-10-02T15:24:51.1878063Z patching file drivers/media/test-drivers/vidtv/vidtv_bridge.c
2025-10-02T15:24:51.1878847Z patching file drivers/media/test-drivers/vidtv/vidtv_channel.c
2025-10-02T15:24:51.1880849Z patching file drivers/media/test-drivers/vidtv/vidtv_mux.c
2025-10-02T15:24:51.1884419Z patching file drivers/media/test-drivers/vidtv/vidtv_psi.c
2025-10-02T15:24:51.1890961Z patching file drivers/media/test-drivers/vidtv/vidtv_s302m.c
2025-10-02T15:24:51.1891687Z patching file drivers/media/test-drivers/vim2m.c
2025-10-02T15:24:51.1892719Z patching file drivers/media/test-drivers/vimc/vimc-core.c
2025-10-02T15:24:51.1893413Z patching file drivers/media/test-drivers/vivid/vivid-core.c
2025-10-02T15:24:51.1894022Z patching file drivers/media/test-drivers/vivid/vivid-core.h
2025-10-02T15:24:51.1894752Z patching file drivers/media/test-drivers/vivid/vivid-rds-gen.c
2025-10-02T15:24:51.1895539Z patching file drivers/media/test-drivers/vivid/vivid-vid-cap.c
2025-10-02T15:24:51.1897733Z patching file drivers/media/test-drivers/vivid/vivid-vid-out.c
2025-10-02T15:24:51.1898974Z patching file drivers/media/tuners/fc0011.c
2025-10-02T15:24:51.1900535Z patching file drivers/media/tuners/fc0012.c
2025-10-02T15:24:51.1901602Z patching file drivers/media/tuners/fc0013.c
2025-10-02T15:24:51.1902227Z patching file drivers/media/tuners/m88rs6000t.c
2025-10-02T15:24:51.1903537Z patching file drivers/media/tuners/max2165.c
2025-10-02T15:24:51.1904602Z patching file drivers/media/tuners/mc44s803.c
2025-10-02T15:24:51.1905465Z patching file drivers/media/tuners/msi001.c
2025-10-02T15:24:51.1906402Z patching file drivers/media/tuners/mt2060.c
2025-10-02T15:24:51.1907952Z patching file drivers/media/tuners/mt2131.c
2025-10-02T15:24:51.1908579Z patching file drivers/media/tuners/mt2266.c
2025-10-02T15:24:51.1910346Z patching file drivers/media/tuners/mxl5005s.c
2025-10-02T15:24:51.1913741Z patching file drivers/media/tuners/qm1d1c0042.c
2025-10-02T15:24:51.1915031Z patching file drivers/media/tuners/qt1010.c
2025-10-02T15:24:51.1916136Z patching file drivers/media/tuners/si2157.c
2025-10-02T15:24:51.1917670Z patching file drivers/media/tuners/tda18218.c
2025-10-02T15:24:51.1918722Z patching file drivers/media/tuners/xc4000.c
2025-10-02T15:24:51.1920603Z patching file drivers/media/tuners/xc5000.c
2025-10-02T15:24:51.1922106Z patching file drivers/media/usb/au0828/au0828-core.c
2025-10-02T15:24:51.1923228Z patching file drivers/media/usb/b2c2/flexcop-usb.c
2025-10-02T15:24:51.1924221Z patching file drivers/media/usb/b2c2/flexcop-usb.h
2025-10-02T15:24:51.1924947Z patching file drivers/media/usb/cpia2/cpia2.h
2025-10-02T15:24:51.1926335Z patching file drivers/media/usb/cpia2/cpia2_core.c
2025-10-02T15:24:51.1928103Z patching file drivers/media/usb/cpia2/cpia2_usb.c
2025-10-02T15:24:51.1929877Z patching file drivers/media/usb/cx231xx/cx231xx-417.c
2025-10-02T15:24:51.1931948Z patching file drivers/media/usb/cx231xx/cx231xx-cards.c
2025-10-02T15:24:51.1933411Z patching file drivers/media/usb/cx231xx/cx231xx-core.c
2025-10-02T15:24:51.1936034Z patching file drivers/media/usb/dvb-usb-v2/af9035.c
2025-10-02T15:24:51.1938338Z patching file drivers/media/usb/dvb-usb-v2/anysee.c
2025-10-02T15:24:51.1940207Z patching file drivers/media/usb/dvb-usb-v2/az6007.c
2025-10-02T15:24:51.1941854Z patching file drivers/media/usb/dvb-usb-v2/ce6230.c
2025-10-02T15:24:51.1942747Z patching file drivers/media/usb/dvb-usb-v2/ec168.c
2025-10-02T15:24:51.1943933Z patching file drivers/media/usb/dvb-usb-v2/gl861.c
2025-10-02T15:24:51.1945439Z patching file drivers/media/usb/dvb-usb-v2/lmedm04.c
2025-10-02T15:24:51.1947441Z patching file drivers/media/usb/dvb-usb-v2/mxl111sf.c
2025-10-02T15:24:51.1950225Z patching file drivers/media/usb/dvb-usb-v2/rtl28xxu.c
2025-10-02T15:24:51.1952606Z patching file drivers/media/usb/dvb-usb/af9005.c
2025-10-02T15:24:51.1954537Z patching file drivers/media/usb/dvb-usb/az6027.c
2025-10-02T15:24:51.1955833Z patching file drivers/media/usb/dvb-usb/cinergyT2-core.c
2025-10-02T15:24:51.1957445Z patching file drivers/media/usb/dvb-usb/cxusb.c
2025-10-02T15:24:51.1959746Z patching file drivers/media/usb/dvb-usb/dib0700_core.c
2025-10-02T15:24:51.1962381Z patching file drivers/media/usb/dvb-usb/dib0700_devices.c
2025-10-02T15:24:51.1965244Z patching file drivers/media/usb/dvb-usb/dibusb-common.c
2025-10-02T15:24:51.1966105Z patching file drivers/media/usb/dvb-usb/digitv.c
2025-10-02T15:24:51.1966840Z patching file drivers/media/usb/dvb-usb/dtv5100.c
2025-10-02T15:24:51.1967575Z patching file drivers/media/usb/dvb-usb/dvb-usb-i2c.c
2025-10-02T15:24:51.1968270Z patching file drivers/media/usb/dvb-usb/dvb-usb-init.c
2025-10-02T15:24:51.1969376Z patching file drivers/media/usb/dvb-usb/dvb-usb.h
2025-10-02T15:24:51.1970929Z patching file drivers/media/usb/dvb-usb/dw2102.c
2025-10-02T15:24:51.1973624Z patching file drivers/media/usb/dvb-usb/gp8psk.c
2025-10-02T15:24:51.1974496Z patching file drivers/media/usb/dvb-usb/m920x.c
2025-10-02T15:24:51.1975903Z patching file drivers/media/usb/dvb-usb/nova-t-usb2.c
2025-10-02T15:24:51.1976600Z patching file drivers/media/usb/dvb-usb/vp702x.c
2025-10-02T15:24:51.1978438Z patching file drivers/media/usb/em28xx/em28xx-cards.c
2025-10-02T15:24:51.1981549Z patching file drivers/media/usb/em28xx/em28xx-core.c
2025-10-02T15:24:51.1983276Z patching file drivers/media/usb/em28xx/em28xx-dvb.c
2025-10-02T15:24:51.1984668Z patching file drivers/media/usb/em28xx/em28xx-input.c
2025-10-02T15:24:51.1986443Z patching file drivers/media/usb/go7007/go7007-driver.c
2025-10-02T15:24:51.1988679Z patching file drivers/media/usb/go7007/go7007-i2c.c
2025-10-02T15:24:51.1989754Z patching file drivers/media/usb/go7007/go7007-usb.c
2025-10-02T15:24:51.1991760Z patching file drivers/media/usb/go7007/s2250-board.c
2025-10-02T15:24:51.1993475Z patching file drivers/media/usb/gspca/cpia1.c
2025-10-02T15:24:51.1995720Z patching file drivers/media/usb/gspca/gl860/gl860.c
2025-10-02T15:24:51.1997268Z patching file drivers/media/usb/gspca/gspca.c
2025-10-02T15:24:51.1999202Z patching file drivers/media/usb/gspca/gspca.h
2025-10-02T15:24:51.2000368Z patching file drivers/media/usb/gspca/m5602/m5602_mt9m111.c
2025-10-02T15:24:51.2002035Z patching file drivers/media/usb/gspca/m5602/m5602_po1030.c
2025-10-02T15:24:51.2003542Z patching file drivers/media/usb/gspca/ov534.c
2025-10-02T15:24:51.2005342Z patching file drivers/media/usb/gspca/sq905.c
2025-10-02T15:24:51.2006501Z patching file drivers/media/usb/gspca/stv06xx/stv06xx.c
2025-10-02T15:24:51.2007839Z patching file drivers/media/usb/gspca/stv06xx/stv06xx_hdcs.c
2025-10-02T15:24:51.2009317Z patching file drivers/media/usb/gspca/sunplus.c
2025-10-02T15:24:51.2011188Z patching file drivers/media/usb/gspca/vicam.c
2025-10-02T15:24:51.2012139Z patching file drivers/media/usb/hdpvr/hdpvr-i2c.c
2025-10-02T15:24:51.2013331Z patching file drivers/media/usb/hdpvr/hdpvr-video.c
2025-10-02T15:24:51.2015405Z patching file drivers/media/usb/msi2500/msi2500.c
2025-10-02T15:24:51.2017270Z patching file drivers/media/usb/pvrusb2/pvrusb2-context.c
2025-10-02T15:24:51.2018309Z patching file drivers/media/usb/pvrusb2/pvrusb2-dvb.c
2025-10-02T15:24:51.2021205Z patching file drivers/media/usb/pvrusb2/pvrusb2-hdw.c
2025-10-02T15:24:51.2024955Z patching file drivers/media/usb/pvrusb2/pvrusb2-v4l2.c
2025-10-02T15:24:51.2026845Z patching file drivers/media/usb/pwc/pwc-if.c
2025-10-02T15:24:51.2029242Z patching file drivers/media/usb/s2255/s2255drv.c
2025-10-02T15:24:51.2032192Z patching file drivers/media/usb/siano/smsusb.c
2025-10-02T15:24:51.2033439Z patching file drivers/media/usb/stk1160/stk1160-core.c
2025-10-02T15:24:51.2034635Z patching file drivers/media/usb/stk1160/stk1160-v4l.c
2025-10-02T15:24:51.2036069Z patching file drivers/media/usb/stk1160/stk1160-video.c
2025-10-02T15:24:51.2037209Z patching file drivers/media/usb/stk1160/stk1160.h
2025-10-02T15:24:51.2038587Z patching file drivers/media/usb/stkwebcam/stk-webcam.c
2025-10-02T15:24:51.2040362Z patching file drivers/media/usb/tm6000/tm6000-dvb.c
2025-10-02T15:24:51.2041736Z patching file drivers/media/usb/tm6000/tm6000-video.c
2025-10-02T15:24:51.2043837Z patching file drivers/media/usb/ttusb-dec/ttusb_dec.c
2025-10-02T15:24:51.2045535Z patching file drivers/media/usb/usbtv/usbtv-audio.c
2025-10-02T15:24:51.2047018Z patching file drivers/media/usb/usbtv/usbtv-video.c
2025-10-02T15:24:51.2049074Z patching file drivers/media/usb/uvc/uvc_ctrl.c
2025-10-02T15:24:51.2052949Z patching file drivers/media/usb/uvc/uvc_driver.c
2025-10-02T15:24:51.2056111Z patching file drivers/media/usb/uvc/uvc_entity.c
2025-10-02T15:24:51.2056624Z patching file drivers/media/usb/uvc/uvc_queue.c
2025-10-02T15:24:51.2057857Z patching file drivers/media/usb/uvc/uvc_status.c
2025-10-02T15:24:51.2059755Z patching file drivers/media/usb/uvc/uvc_v4l2.c
2025-10-02T15:24:51.2062573Z patching file drivers/media/usb/uvc/uvc_video.c
2025-10-02T15:24:51.2065399Z patching file drivers/media/usb/uvc/uvcvideo.h
2025-10-02T15:24:51.2089144Z patching file drivers/media/usb/zr364xx/zr364xx.c
2025-10-02T15:24:51.2089722Z patching file drivers/media/v4l2-core/v4l2-async.c
2025-10-02T15:24:51.2090130Z patching file drivers/media/v4l2-core/v4l2-ctrls.c
2025-10-02T15:24:51.2090519Z patching file drivers/media/v4l2-core/v4l2-dev.c
2025-10-02T15:24:51.2091148Z patching file drivers/media/v4l2-core/v4l2-dv-timings.c
2025-10-02T15:24:51.2091535Z patching file drivers/media/v4l2-core/v4l2-fh.c
2025-10-02T15:24:51.2091918Z patching file drivers/media/v4l2-core/v4l2-fwnode.c
2025-10-02T15:24:51.2092310Z patching file drivers/media/v4l2-core/v4l2-ioctl.c
2025-10-02T15:24:51.2092688Z patching file drivers/media/v4l2-core/v4l2-mc.c
2025-10-02T15:24:51.2093085Z patching file drivers/media/v4l2-core/v4l2-mem2mem.c
2025-10-02T15:24:51.2093486Z patching file drivers/media/v4l2-core/v4l2-subdev.c
2025-10-02T15:24:51.2094113Z patching file drivers/media/v4l2-core/videobuf-dma-contig.c
2025-10-02T15:24:51.2095280Z patching file drivers/memory/Kconfig
2025-10-02T15:24:51.2096305Z patching file drivers/memory/atmel-ebi.c
2025-10-02T15:24:51.2097694Z patching file drivers/memory/atmel-sdramc.c
2025-10-02T15:24:51.2111313Z patching file drivers/memory/brcmstb_dpfe.c
2025-10-02T15:24:51.2111886Z patching file drivers/memory/emif.c
2025-10-02T15:24:51.2113033Z patching file drivers/memory/fsl_ifc.c
2025-10-02T15:24:51.2113673Z patching file drivers/memory/jz4780-nemc.c
2025-10-02T15:24:51.2114260Z patching file drivers/memory/mtk-smi.c
2025-10-02T15:24:51.2114898Z patching file drivers/memory/mvebu-devbus.c
2025-10-02T15:24:51.2115486Z patching file drivers/memory/of_memory.c
2025-10-02T15:24:51.2116090Z patching file drivers/memory/omap-gpmc.c
2025-10-02T15:24:51.2116690Z patching file drivers/memory/pl172.c
2025-10-02T15:24:51.2118044Z patching file drivers/memory/pl353-smc.c
2025-10-02T15:24:51.2118439Z patching file drivers/memory/renesas-rpc-if.c
2025-10-02T15:24:51.2118858Z patching file drivers/memory/samsung/exynos5422-dmc.c
2025-10-02T15:24:51.2119237Z patching file drivers/memory/stm32-fmc2-ebi.c
2025-10-02T15:24:51.2119799Z patching file drivers/memory/tegra/tegra124-emc.c
2025-10-02T15:24:51.2121449Z patching file drivers/memory/tegra/tegra30-emc.c
2025-10-02T15:24:51.2121813Z patching file drivers/memory/ti-aemif.c
2025-10-02T15:24:51.2123436Z patching file drivers/memstick/core/memstick.c
2025-10-02T15:24:51.2124598Z patching file drivers/memstick/core/ms_block.c
2025-10-02T15:24:51.2127122Z patching file drivers/memstick/host/jmb38x_ms.c
2025-10-02T15:24:51.2129149Z patching file drivers/memstick/host/r592.c
2025-10-02T15:24:51.2130378Z patching file drivers/memstick/host/rtsx_usb_ms.c
2025-10-02T15:24:51.2137492Z patching file drivers/message/fusion/mptlan.c
2025-10-02T15:24:51.2137932Z patching file drivers/message/fusion/mptsas.c
2025-10-02T15:24:51.2138956Z patching file drivers/mfd/Kconfig
2025-10-02T15:24:51.2141248Z patching file drivers/mfd/ab8500-core.c
2025-10-02T15:24:51.2147590Z patching file drivers/mfd/altera-sysmgr.c
2025-10-02T15:24:51.2147961Z patching file drivers/mfd/arizona-core.c
2025-10-02T15:24:51.2148315Z patching file drivers/mfd/arizona-irq.c
2025-10-02T15:24:51.2148663Z patching file drivers/mfd/asic3.c
2025-10-02T15:24:51.2149020Z patching file drivers/mfd/atmel-flexcom.c
2025-10-02T15:24:51.2149359Z patching file drivers/mfd/axp20x.c
2025-10-02T15:24:51.2149957Z patching file drivers/mfd/bd9571mwv.c
2025-10-02T15:24:51.2150885Z patching file drivers/mfd/da9052-i2c.c
2025-10-02T15:24:51.2151801Z patching file drivers/mfd/da9052-spi.c
2025-10-02T15:24:51.2152854Z patching file drivers/mfd/da9063-i2c.c
2025-10-02T15:24:51.2154318Z patching file drivers/mfd/davinci_voicecodec.c
2025-10-02T15:24:51.2155996Z patching file drivers/mfd/db8500-prcmu.c
2025-10-02T15:24:51.2159037Z patching file drivers/mfd/dln2.c
2025-10-02T15:24:51.2170502Z patching file drivers/mfd/ene-kb3930.c
2025-10-02T15:24:51.2171072Z patching file drivers/mfd/exynos-lpass.c
2025-10-02T15:24:51.2171950Z patching file drivers/mfd/fsl-imx25-tsadc.c
2025-10-02T15:24:51.2172541Z patching file drivers/mfd/gateworks-gsc.c
2025-10-02T15:24:51.2172900Z patching file drivers/mfd/htc-i2cpld.c
2025-10-02T15:24:51.2173279Z patching file drivers/mfd/intel-lpss-acpi.c
2025-10-02T15:24:51.2173668Z patching file drivers/mfd/intel_soc_pmic_bxtwc.c
2025-10-02T15:24:51.2174275Z patching file drivers/mfd/intel_soc_pmic_core.c
2025-10-02T15:24:51.2174636Z patching file drivers/mfd/ipaq-micro.c
2025-10-02T15:24:51.2174989Z patching file drivers/mfd/lp8788-irq.c
2025-10-02T15:24:51.2175326Z patching file drivers/mfd/lp8788.c
2025-10-02T15:24:51.2175674Z patching file drivers/mfd/lpc_ich.c
2025-10-02T15:24:51.2176016Z patching file drivers/mfd/lpc_sch.c
2025-10-02T15:24:51.2176365Z patching file drivers/mfd/max14577.c
2025-10-02T15:24:51.2177363Z patching file drivers/mfd/max77620.c
2025-10-02T15:24:51.2178799Z patching file drivers/mfd/mc13xxx-core.c
2025-10-02T15:24:51.2180353Z patching file drivers/mfd/mfd-core.c
2025-10-02T15:24:51.2181918Z patching file drivers/mfd/motorola-cpcap.c
2025-10-02T15:24:51.2183262Z patching file drivers/mfd/omap-usb-tll.c
2025-10-02T15:24:51.2184168Z patching file drivers/mfd/pcf50633-adc.c
2025-10-02T15:24:51.2185382Z patching file drivers/mfd/rn5t618.c
2025-10-02T15:24:51.2186286Z patching file drivers/mfd/rt5033.c
2025-10-02T15:24:51.2187746Z patching file drivers/mfd/sm501.c
2025-10-02T15:24:51.2197528Z patching file drivers/mfd/stm32-timers.c
2025-10-02T15:24:51.2198730Z patching file drivers/mfd/stmfx.c
2025-10-02T15:24:51.2200239Z patching file drivers/mfd/stmpe-i2c.c
2025-10-02T15:24:51.2200681Z patching file drivers/mfd/stmpe-spi.c
2025-10-02T15:24:51.2201270Z patching file drivers/mfd/stmpe.c
2025-10-02T15:24:51.2201614Z patching file drivers/mfd/syscon.c
2025-10-02T15:24:51.2201958Z patching file drivers/mfd/t7l66xb.c
2025-10-02T15:24:51.2202297Z patching file drivers/mfd/tc3589x.c
2025-10-02T15:24:51.2202631Z patching file drivers/mfd/tps65010.c
2025-10-02T15:24:51.2202993Z patching file drivers/mfd/tqmx86.c
2025-10-02T15:24:51.2203348Z patching file drivers/mfd/wm831x-auxadc.c
2025-10-02T15:24:51.2203697Z patching file drivers/mfd/wm8994-irq.c
2025-10-02T15:24:51.2204224Z patching file drivers/misc/apds990x.c
2025-10-02T15:24:51.2205028Z patching file drivers/misc/atmel-ssc.c
2025-10-02T15:24:51.2206113Z patching file drivers/misc/cardreader/alcor_pci.c
2025-10-02T15:24:51.2207411Z patching file drivers/misc/cardreader/rts5227.c
2025-10-02T15:24:51.2209059Z patching file drivers/misc/cardreader/rtsx_pcr.c
2025-10-02T15:24:51.2211176Z patching file drivers/misc/cardreader/rtsx_usb.c
2025-10-02T15:24:51.2212584Z patching file drivers/misc/cb710/sgbuf2.c
2025-10-02T15:24:51.2213587Z patching file drivers/misc/cxl/guest.c
2025-10-02T15:24:51.2215460Z patching file drivers/misc/cxl/irq.c
2025-10-02T15:24:51.2216828Z patching file drivers/misc/cxl/pci.c
2025-10-02T15:24:51.2225472Z patching file drivers/misc/eeprom/Kconfig
2025-10-02T15:24:51.2225872Z patching file drivers/misc/eeprom/at24.c
2025-10-02T15:24:51.2226288Z patching file drivers/misc/eeprom/digsy_mtc_eeprom.c
2025-10-02T15:24:51.2226653Z patching file drivers/misc/eeprom/ee1004.c
2025-10-02T15:24:51.2227042Z patching file drivers/misc/eeprom/eeprom_93cx6.c
2025-10-02T15:24:51.2227436Z patching file drivers/misc/eeprom/eeprom_93xx46.c
2025-10-02T15:24:51.2232069Z patching file drivers/misc/eeprom/idt_89hpesx.c
2025-10-02T15:24:51.2233121Z patching file drivers/misc/fastrpc.c
2025-10-02T15:24:51.2233574Z patching file drivers/misc/habanalabs/common/debugfs.c
2025-10-02T15:24:51.2233990Z patching file drivers/misc/habanalabs/common/device.c
2025-10-02T15:24:51.2236217Z patching file drivers/misc/habanalabs/common/firmware_if.c
2025-10-02T15:24:51.2236956Z patching file drivers/misc/habanalabs/common/habanalabs_drv.c
2025-10-02T15:24:51.2237631Z patching file drivers/misc/habanalabs/common/habanalabs_ioctl.c
2025-10-02T15:24:51.2239689Z patching file drivers/misc/habanalabs/common/pci.c
2025-10-02T15:24:51.2240922Z patching file drivers/misc/habanalabs/gaudi/gaudi.c
2025-10-02T15:24:51.2245720Z patching file drivers/misc/habanalabs/gaudi/gaudi_coresight.c
2025-10-02T15:24:51.2250377Z patching file drivers/misc/habanalabs/gaudi/gaudi_security.c
2025-10-02T15:24:51.2257648Z patching file drivers/misc/habanalabs/goya/goya.c
2025-10-02T15:24:51.2261727Z patching file drivers/misc/ibmasm/module.c
2025-10-02T15:24:51.2262911Z patching file drivers/misc/ics932s401.c
2025-10-02T15:24:51.2263556Z patching file drivers/misc/kgdbts.c
2025-10-02T15:24:51.2266664Z patching file drivers/misc/lattice-ecp3-config.c
2025-10-02T15:24:51.2267061Z patching file drivers/misc/lis3lv02d/lis3lv02d.c
2025-10-02T15:24:51.2267658Z patching file drivers/misc/lis3lv02d/lis3lv02d.h
2025-10-02T15:24:51.2268770Z patching file drivers/misc/lkdtm/Makefile
2025-10-02T15:24:51.2269257Z patching file drivers/misc/lkdtm/bugs.c
2025-10-02T15:24:51.2269954Z patching file drivers/misc/lkdtm/core.c
2025-10-02T15:24:51.2270653Z patching file drivers/misc/lkdtm/rodata.c
2025-10-02T15:24:51.2271509Z patching file drivers/misc/lkdtm/usercopy.c
2025-10-02T15:24:51.2272142Z patching file drivers/misc/mei/bus-fixup.c
2025-10-02T15:24:51.2272903Z patching file drivers/misc/mei/client.c
2025-10-02T15:24:51.2274602Z patching file drivers/misc/mei/hbm.c
2025-10-02T15:24:51.2275685Z patching file drivers/misc/mei/hw-me-regs.h
2025-10-02T15:24:51.2276533Z patching file drivers/misc/mei/interrupt.c
2025-10-02T15:24:51.2278113Z patching file drivers/misc/mei/main.c
2025-10-02T15:24:51.2279427Z patching file drivers/misc/mei/pci-me.c
2025-10-02T15:24:51.2281311Z patching file drivers/misc/ocxl/config.c
2025-10-02T15:24:51.2282652Z patching file drivers/misc/ocxl/file.c
2025-10-02T15:24:51.2284125Z patching file drivers/misc/pci_endpoint_test.c
2025-10-02T15:24:51.2286133Z patching file drivers/misc/pvpanic.c
2025-10-02T15:24:51.2287179Z patching file drivers/misc/sgi-gru/grufault.c
2025-10-02T15:24:51.2288528Z patching file drivers/misc/sgi-gru/grukservices.c
2025-10-02T15:24:51.2289926Z patching file drivers/misc/sgi-gru/grumain.c
2025-10-02T15:24:51.2291534Z patching file drivers/misc/sgi-gru/grutables.h
2025-10-02T15:24:51.2292314Z patching file drivers/misc/sgi-gru/grutlbpurge.c
2025-10-02T15:24:51.2293487Z patching file drivers/misc/sram.c
2025-10-02T15:24:51.2294978Z patching file drivers/misc/ti-st/st_core.c
2025-10-02T15:24:51.2296332Z patching file drivers/misc/tifm_7xx1.c
2025-10-02T15:24:51.2308306Z patching file drivers/misc/uacce/uacce.c
2025-10-02T15:24:51.2308907Z patching file drivers/misc/vmw_vmci/vmci_context.c
2025-10-02T15:24:51.2309309Z patching file drivers/misc/vmw_vmci/vmci_datagram.c
2025-10-02T15:24:51.2309841Z patching file drivers/misc/vmw_vmci/vmci_doorbell.c
2025-10-02T15:24:51.2310223Z patching file drivers/misc/vmw_vmci/vmci_event.c
2025-10-02T15:24:51.2310598Z patching file drivers/misc/vmw_vmci/vmci_guest.c
2025-10-02T15:24:51.2310974Z patching file drivers/misc/vmw_vmci/vmci_host.c
2025-10-02T15:24:51.2311386Z patching file drivers/misc/vmw_vmci/vmci_queue_pair.c
2025-10-02T15:24:51.2311797Z patching file drivers/misc/vmw_vmci/vmci_resource.c
2025-10-02T15:24:51.2312883Z patching file drivers/mmc/core/block.c
2025-10-02T15:24:51.2316525Z patching file drivers/mmc/core/bus.c
2025-10-02T15:24:51.2317312Z patching file drivers/mmc/core/card.h
2025-10-02T15:24:51.2319092Z patching file drivers/mmc/core/core.c
2025-10-02T15:24:51.2321734Z patching file drivers/mmc/core/core.h
2025-10-02T15:24:51.2322571Z patching file drivers/mmc/core/host.c
2025-10-02T15:24:51.2324851Z patching file drivers/mmc/core/mmc.c
2025-10-02T15:24:51.2327318Z patching file drivers/mmc/core/mmc_ops.c
2025-10-02T15:24:51.2328766Z patching file drivers/mmc/core/mmc_ops.h
2025-10-02T15:24:51.2330479Z patching file drivers/mmc/core/mmc_test.c
2025-10-02T15:24:51.2332917Z patching file drivers/mmc/core/queue.c
2025-10-02T15:24:51.2333859Z patching file drivers/mmc/core/quirks.h
2025-10-02T15:24:51.2335084Z patching file drivers/mmc/core/regulator.c
2025-10-02T15:24:51.2336559Z patching file drivers/mmc/core/sd.c
2025-10-02T15:24:51.2338627Z patching file drivers/mmc/core/sdio.c
2025-10-02T15:24:51.2340594Z patching file drivers/mmc/core/sdio_bus.c
2025-10-02T15:24:51.2341420Z patching file drivers/mmc/core/sdio_cis.c
2025-10-02T15:24:51.2342891Z patching file drivers/mmc/core/slot-gpio.c
2025-10-02T15:24:51.2344524Z patching file drivers/mmc/host/Kconfig
2025-10-02T15:24:51.2346838Z patching file drivers/mmc/host/alcor.c
2025-10-02T15:24:51.2348863Z patching file drivers/mmc/host/atmel-mci.c
2025-10-02T15:24:51.2351799Z patching file drivers/mmc/host/au1xmmc.c
2025-10-02T15:24:51.2353760Z patching file drivers/mmc/host/bcm2835.c
2025-10-02T15:24:51.2355615Z patching file drivers/mmc/host/cavium-octeon.c
2025-10-02T15:24:51.2357460Z patching file drivers/mmc/host/cavium-thunderx.c
2025-10-02T15:24:51.2358851Z patching file drivers/mmc/host/cqhci.c
2025-10-02T15:24:51.2360460Z patching file drivers/mmc/host/davinci_mmc.c
2025-10-02T15:24:51.2362478Z patching file drivers/mmc/host/dw_mmc-exynos.c
2025-10-02T15:24:51.2364671Z patching file drivers/mmc/host/dw_mmc.c
2025-10-02T15:24:51.2367699Z patching file drivers/mmc/host/jz4740_mmc.c
2025-10-02T15:24:51.2369865Z patching file drivers/mmc/host/meson-gx-mmc.c
2025-10-02T15:24:51.2372634Z patching file drivers/mmc/host/meson-mx-sdhc-mmc.c
2025-10-02T15:24:51.2374554Z patching file drivers/mmc/host/meson-mx-sdio.c
2025-10-02T15:24:51.2376435Z patching file drivers/mmc/host/mmc_hsq.c
2025-10-02T15:24:51.2377678Z patching file drivers/mmc/host/mmc_spi.c
2025-10-02T15:24:51.2381192Z patching file drivers/mmc/host/mmci.c
2025-10-02T15:24:51.2383799Z patching file drivers/mmc/host/mmci_stm32_sdmmc.c
2025-10-02T15:24:51.2385881Z patching file drivers/mmc/host/moxart-mmc.c
2025-10-02T15:24:51.2388415Z patching file drivers/mmc/host/mtk-sd.c
2025-10-02T15:24:51.2391716Z patching file drivers/mmc/host/mvsdio.c
2025-10-02T15:24:51.2393425Z patching file drivers/mmc/host/mxcmmc.c
2025-10-02T15:24:51.2395185Z patching file drivers/mmc/host/mxs-mmc.c
2025-10-02T15:24:51.2396918Z patching file drivers/mmc/host/omap.c
2025-10-02T15:24:51.2399250Z patching file drivers/mmc/host/omap_hsmmc.c
2025-10-02T15:24:51.2401635Z patching file drivers/mmc/host/owl-mmc.c
2025-10-02T15:24:51.2404080Z patching file drivers/mmc/host/pxamci.c
2025-10-02T15:24:51.2405527Z patching file drivers/mmc/host/renesas_sdhi_core.c
2025-10-02T15:24:51.2407661Z patching file drivers/mmc/host/renesas_sdhi_internal_dmac.c
2025-10-02T15:24:51.2409855Z patching file drivers/mmc/host/rtsx_pci_sdmmc.c
2025-10-02T15:24:51.2411904Z patching file drivers/mmc/host/rtsx_usb_sdmmc.c
2025-10-02T15:24:51.2413984Z patching file drivers/mmc/host/sdhci-acpi.c
2025-10-02T15:24:51.2415914Z patching file drivers/mmc/host/sdhci-brcmstb.c
2025-10-02T15:24:51.2417717Z patching file drivers/mmc/host/sdhci-cqhci.h
2025-10-02T15:24:51.2419909Z patching file drivers/mmc/host/sdhci-esdhc-imx.c
2025-10-02T15:24:51.2422840Z patching file drivers/mmc/host/sdhci-iproc.c
2025-10-02T15:24:51.2424875Z patching file drivers/mmc/host/sdhci-msm.c
2025-10-02T15:24:51.2428201Z patching file drivers/mmc/host/sdhci-of-arasan.c
2025-10-02T15:24:51.2430632Z patching file drivers/mmc/host/sdhci-of-aspeed.c
2025-10-02T15:24:51.2432386Z patching file drivers/mmc/host/sdhci-of-at91.c
2025-10-02T15:24:51.2433660Z patching file drivers/mmc/host/sdhci-of-dwcmshc.c
2025-10-02T15:24:51.2435573Z patching file drivers/mmc/host/sdhci-of-esdhc.c
2025-10-02T15:24:51.2437793Z patching file drivers/mmc/host/sdhci-omap.c
2025-10-02T15:24:51.2441082Z patching file drivers/mmc/host/sdhci-pci-core.c
2025-10-02T15:24:51.2444147Z patching file drivers/mmc/host/sdhci-pci-gli.c
2025-10-02T15:24:51.2445854Z patching file drivers/mmc/host/sdhci-pci-o2micro.c
2025-10-02T15:24:51.2447557Z patching file drivers/mmc/host/sdhci-pci.h
2025-10-02T15:24:51.2449097Z patching file drivers/mmc/host/sdhci-pltfm.h
2025-10-02T15:24:51.2450164Z patching file drivers/mmc/host/sdhci-pxav3.c
2025-10-02T15:24:51.2451907Z patching file drivers/mmc/host/sdhci-sprd.c
2025-10-02T15:24:51.2454010Z patching file drivers/mmc/host/sdhci-tegra.c
2025-10-02T15:24:51.2457094Z patching file drivers/mmc/host/sdhci-xenon-phy.c
2025-10-02T15:24:51.2458880Z patching file drivers/mmc/host/sdhci-xenon.c
2025-10-02T15:24:51.2461682Z patching file drivers/mmc/host/sdhci.c
2025-10-02T15:24:51.2465787Z patching file drivers/mmc/host/sdhci.h
2025-10-02T15:24:51.2467583Z patching file drivers/mmc/host/sdhci_am654.c
2025-10-02T15:24:51.2470850Z patching file drivers/mmc/host/sdhci_f_sdh30.c
2025-10-02T15:24:51.2471917Z patching file drivers/mmc/host/sh_mmcif.c
2025-10-02T15:24:51.2473803Z patching file drivers/mmc/host/sunxi-mmc.c
2025-10-02T15:24:51.2475347Z patching file drivers/mmc/host/tmio_mmc.h
2025-10-02T15:24:51.2476690Z patching file drivers/mmc/host/tmio_mmc_core.c
2025-10-02T15:24:51.2478244Z patching file drivers/mmc/host/toshsd.c
2025-10-02T15:24:51.2479686Z patching file drivers/mmc/host/uniphier-sd.c
2025-10-02T15:24:51.2481386Z patching file drivers/mmc/host/usdhi6rol0.c
2025-10-02T15:24:51.2483319Z patching file drivers/mmc/host/via-sdmmc.c
2025-10-02T15:24:51.2485276Z patching file drivers/mmc/host/vub300.c
2025-10-02T15:24:51.2487957Z patching file drivers/mmc/host/wbsd.c
2025-10-02T15:24:51.2489801Z patching file drivers/mmc/host/wmt-sdmmc.c
2025-10-02T15:24:51.2491553Z patching file drivers/most/core.c
2025-10-02T15:24:51.2493159Z patching file drivers/most/most_usb.c
2025-10-02T15:24:51.2494568Z patching file drivers/mtd/chips/Kconfig
2025-10-02T15:24:51.2496172Z patching file drivers/mtd/chips/cfi_cmdset_0001.c
2025-10-02T15:24:51.2498832Z patching file drivers/mtd/chips/cfi_cmdset_0002.c
2025-10-02T15:24:51.2502336Z patching file drivers/mtd/devices/docg3.c
2025-10-02T15:24:51.2504037Z patching file drivers/mtd/devices/powernv_flash.c
2025-10-02T15:24:51.2504791Z patching file drivers/mtd/devices/slram.c
2025-10-02T15:24:51.2506359Z patching file drivers/mtd/devices/st_spi_fsm.c
2025-10-02T15:24:51.2508204Z patching file drivers/mtd/ftl.c
2025-10-02T15:24:51.2509678Z patching file drivers/mtd/hyperbus/hbmc-am654.c
2025-10-02T15:24:51.2510526Z patching file drivers/mtd/hyperbus/rpc-if.c
2025-10-02T15:24:51.2511527Z patching file drivers/mtd/inftlcore.c
2025-10-02T15:24:51.2512927Z patching file drivers/mtd/lpddr/lpddr2_nvm.c
2025-10-02T15:24:51.2513935Z patching file drivers/mtd/maps/Kconfig
2025-10-02T15:24:51.2514937Z patching file drivers/mtd/maps/physmap-bt1-rom.c
2025-10-02T15:24:51.2515791Z patching file drivers/mtd/maps/physmap-core.c
2025-10-02T15:24:51.2517055Z patching file drivers/mtd/maps/physmap-versatile.c
2025-10-02T15:24:51.2517812Z patching file drivers/mtd/maps/pxa2xx-flash.c
2025-10-02T15:24:51.2518715Z patching file drivers/mtd/mtd_blkdevs.c
2025-10-02T15:24:51.2519895Z patching file drivers/mtd/mtdblock.c
2025-10-02T15:24:51.2521295Z patching file drivers/mtd/mtdchar.c
2025-10-02T15:24:51.2522807Z patching file drivers/mtd/mtdconcat.c
2025-10-02T15:24:51.2524718Z patching file drivers/mtd/mtdcore.c
2025-10-02T15:24:51.2526678Z patching file drivers/mtd/mtdpart.c
2025-10-02T15:24:51.2527771Z patching file drivers/mtd/mtdpstore.c
2025-10-02T15:24:51.2528814Z patching file drivers/mtd/nand/bbt.c
2025-10-02T15:24:51.2529818Z patching file drivers/mtd/nand/onenand/generic.c
2025-10-02T15:24:51.2531814Z patching file drivers/mtd/nand/onenand/onenand_base.c
2025-10-02T15:24:51.2534278Z patching file drivers/mtd/nand/raw/ams-delta.c
2025-10-02T15:24:51.2536238Z patching file drivers/mtd/nand/raw/arasan-nand-controller.c
2025-10-02T15:24:51.2539351Z patching file drivers/mtd/nand/raw/atmel/nand-controller.c
2025-10-02T15:24:51.2542571Z patching file drivers/mtd/nand/raw/atmel/pmecc.c
2025-10-02T15:24:51.2550753Z patching file drivers/mtd/nand/raw/atmel/pmecc.h
2025-10-02T15:24:51.2551373Z patching file drivers/mtd/nand/raw/au1550nd.c
2025-10-02T15:24:51.2552606Z patching file drivers/mtd/nand/raw/brcmnand/brcmnand.c
2025-10-02T15:24:51.2553271Z patching file drivers/mtd/nand/raw/brcmnand/brcmnand.h
2025-10-02T15:24:51.2553741Z patching file drivers/mtd/nand/raw/cadence-nand-controller.c
2025-10-02T15:24:51.2554134Z patching file drivers/mtd/nand/raw/cafe_nand.c
2025-10-02T15:24:51.2555546Z patching file drivers/mtd/nand/raw/davinci_nand.c
2025-10-02T15:24:51.2557230Z patching file drivers/mtd/nand/raw/denali_pci.c
2025-10-02T15:24:51.2558608Z patching file drivers/mtd/nand/raw/diskonchip.c
2025-10-02T15:24:51.2560776Z patching file drivers/mtd/nand/raw/fsl_elbc_nand.c
2025-10-02T15:24:51.2562851Z patching file drivers/mtd/nand/raw/fsl_ifc_nand.c
2025-10-02T15:24:51.2564123Z patching file drivers/mtd/nand/raw/fsl_upm.c
2025-10-02T15:24:51.2565305Z patching file drivers/mtd/nand/raw/fsmc_nand.c
2025-10-02T15:24:51.2567121Z patching file drivers/mtd/nand/raw/gpio.c
2025-10-02T15:24:51.2568949Z patching file drivers/mtd/nand/raw/gpmi-nand/gpmi-nand.c
2025-10-02T15:24:51.2572210Z patching file drivers/mtd/nand/raw/ingenic/ingenic_ecc.h
2025-10-02T15:24:51.2572977Z patching file drivers/mtd/nand/raw/lpc32xx_mlc.c
2025-10-02T15:24:51.2575489Z patching file drivers/mtd/nand/raw/marvell_nand.c
2025-10-02T15:24:51.2579157Z patching file drivers/mtd/nand/raw/meson_nand.c
2025-10-02T15:24:51.2581020Z patching file drivers/mtd/nand/raw/mpc5121_nfc.c
2025-10-02T15:24:51.2582674Z patching file drivers/mtd/nand/raw/mtk_ecc.c
2025-10-02T15:24:51.2590405Z patching file drivers/mtd/nand/raw/mtk_nand.c
2025-10-02T15:24:51.2591151Z patching file drivers/mtd/nand/raw/nand_base.c
2025-10-02T15:24:51.2593296Z patching file drivers/mtd/nand/raw/nand_hynix.c
2025-10-02T15:24:51.2593993Z patching file drivers/mtd/nand/raw/nand_timings.c
2025-10-02T15:24:51.2596298Z patching file drivers/mtd/nand/raw/nandsim.c
2025-10-02T15:24:51.2598250Z patching file drivers/mtd/nand/raw/omap_elm.c
2025-10-02T15:24:51.2599788Z patching file drivers/mtd/nand/raw/orion_nand.c
2025-10-02T15:24:51.2600859Z patching file drivers/mtd/nand/raw/pasemi_nand.c
2025-10-02T15:24:51.2602156Z patching file drivers/mtd/nand/raw/plat_nand.c
2025-10-02T15:24:51.2603835Z patching file drivers/mtd/nand/raw/qcom_nandc.c
2025-10-02T15:24:51.2606741Z patching file drivers/mtd/nand/raw/r852.c
2025-10-02T15:24:51.2608257Z patching file drivers/mtd/nand/raw/sh_flctl.c
2025-10-02T15:24:51.2609691Z patching file drivers/mtd/nand/raw/socrates_nand.c
2025-10-02T15:24:51.2611255Z patching file drivers/mtd/nand/raw/stm32_fmc2_nand.c
2025-10-02T15:24:51.2613859Z patching file drivers/mtd/nand/raw/sunxi_nand.c
2025-10-02T15:24:51.2615411Z patching file drivers/mtd/nand/raw/xway_nand.c
2025-10-02T15:24:51.2616419Z patching file drivers/mtd/nand/spi/core.c
2025-10-02T15:24:51.2617641Z patching file drivers/mtd/nand/spi/gigadevice.c
2025-10-02T15:24:51.2618739Z patching file drivers/mtd/nand/spi/macronix.c
2025-10-02T15:24:51.2619893Z patching file drivers/mtd/nand/spi/micron.c
2025-10-02T15:24:51.2620865Z patching file drivers/mtd/nand/spi/toshiba.c
2025-10-02T15:24:51.2621575Z patching file drivers/mtd/parsers/afs.c
2025-10-02T15:24:51.2622644Z patching file drivers/mtd/parsers/bcm47xxpart.c
2025-10-02T15:24:51.2629371Z patching file drivers/mtd/parsers/cmdlinepart.c
2025-10-02T15:24:51.2630823Z patching file drivers/mtd/parsers/parser_imagetag.c
2025-10-02T15:24:51.2631211Z patching file drivers/mtd/parsers/redboot.c
2025-10-02T15:24:51.2632388Z patching file drivers/mtd/sm_ftl.c
2025-10-02T15:24:51.2632771Z patching file drivers/mtd/spi-nor/atmel.c
2025-10-02T15:24:51.2633213Z patching file drivers/mtd/spi-nor/controllers/hisi-sfc.c
2025-10-02T15:24:51.2633700Z patching file drivers/mtd/spi-nor/controllers/intel-spi-pci.c
2025-10-02T15:24:51.2634138Z patching file drivers/mtd/spi-nor/controllers/intel-spi.c
2025-10-02T15:24:51.2634678Z patching file drivers/mtd/spi-nor/core.c
2025-10-02T15:24:51.2637599Z patching file drivers/mtd/spi-nor/core.h
2025-10-02T15:24:51.2638274Z patching file drivers/mtd/spi-nor/macronix.c
2025-10-02T15:24:51.2640147Z patching file drivers/mtd/spi-nor/sfdp.c
2025-10-02T15:24:51.2641293Z patching file drivers/mtd/spi-nor/sst.c
2025-10-02T15:24:51.2642192Z patching file drivers/mtd/tests/Makefile
2025-10-02T15:24:51.2643025Z patching file drivers/mtd/tests/mtd_test.c
2025-10-02T15:24:51.2644701Z patching file drivers/mtd/ubi/attach.c
2025-10-02T15:24:51.2646796Z patching file drivers/mtd/ubi/build.c
2025-10-02T15:24:51.2648676Z patching file drivers/mtd/ubi/eba.c
2025-10-02T15:24:51.2650233Z patching file drivers/mtd/ubi/fastmap-wl.c
2025-10-02T15:24:51.2651740Z patching file drivers/mtd/ubi/fastmap.c
2025-10-02T15:24:51.2653449Z patching file drivers/mtd/ubi/ubi.h
2025-10-02T15:24:51.2655062Z patching file drivers/mtd/ubi/vmt.c
2025-10-02T15:24:51.2656981Z patching file drivers/mtd/ubi/vtbl.c
2025-10-02T15:24:51.2658075Z patching file drivers/mtd/ubi/wl.c
2025-10-02T15:24:51.2660814Z patching file drivers/net/Kconfig
2025-10-02T15:24:51.2661472Z patching file drivers/net/Makefile
2025-10-02T15:24:51.2662406Z patching file drivers/net/appletalk/cops.c
2025-10-02T15:24:51.2663898Z patching file drivers/net/arcnet/arc-rimi.c
2025-10-02T15:24:51.2665048Z patching file drivers/net/arcnet/arcdevice.h
2025-10-02T15:24:51.2666441Z patching file drivers/net/arcnet/arcnet.c
2025-10-02T15:24:51.2668287Z patching file drivers/net/arcnet/com20020-isa.c
2025-10-02T15:24:51.2669255Z patching file drivers/net/arcnet/com20020-pci.c
2025-10-02T15:24:51.2671569Z patching file drivers/net/arcnet/com20020_cs.c
2025-10-02T15:24:51.2672418Z patching file drivers/net/arcnet/com90io.c
2025-10-02T15:24:51.2673202Z patching file drivers/net/arcnet/com90xx.c
2025-10-02T15:24:51.2674412Z patching file drivers/net/bareudp.c
2025-10-02T15:24:51.2677324Z patching file drivers/net/bonding/bond_3ad.c
2025-10-02T15:24:51.2680208Z patching file drivers/net/bonding/bond_alb.c
2025-10-02T15:24:51.2682232Z patching file drivers/net/bonding/bond_debugfs.c
2025-10-02T15:24:51.2684280Z patching file drivers/net/bonding/bond_main.c
2025-10-02T15:24:51.2689212Z patching file drivers/net/bonding/bond_options.c
2025-10-02T15:24:51.2691833Z patching file drivers/net/bonding/bond_sysfs_slave.c
2025-10-02T15:24:51.2692544Z patching file drivers/net/caif/caif_serial.c
2025-10-02T15:24:51.2693813Z patching file drivers/net/caif/caif_virtio.c
2025-10-02T15:24:51.2694840Z patching file drivers/net/can/Kconfig
2025-10-02T15:24:51.2695459Z patching file drivers/net/can/Makefile
2025-10-02T15:24:51.2696268Z patching file drivers/net/can/c_can/c_can.c
2025-10-02T15:24:51.2698046Z patching file drivers/net/can/c_can/c_can_pci.c
2025-10-02T15:24:51.2698696Z patching file drivers/net/can/c_can/c_can_platform.c
2025-10-02T15:24:51.2700045Z patching file drivers/net/can/cc770/cc770_isa.c
2025-10-02T15:24:51.2701309Z patching file drivers/net/can/dev.c
2025-10-02T15:24:51.2704983Z patching file drivers/net/can/dev/Makefile
2025-10-02T15:24:51.2705794Z patching file drivers/net/can/dev/dev.c
2025-10-02T15:24:51.2709779Z patching file drivers/net/can/dev/rx-offload.c
2025-10-02T15:24:51.2711876Z patching file drivers/net/can/flexcan.c
2025-10-02T15:24:51.2714314Z patching file drivers/net/can/grcan.c
2025-10-02T15:24:51.2717317Z patching file drivers/net/can/kvaser_pciefd.c
2025-10-02T15:24:51.2720096Z patching file drivers/net/can/m_can/m_can.c
2025-10-02T15:24:51.2722096Z patching file drivers/net/can/m_can/m_can.h
2025-10-02T15:24:51.2722739Z patching file drivers/net/can/m_can/m_can_platform.c
2025-10-02T15:24:51.2723935Z patching file drivers/net/can/m_can/tcan4x5x.c
2025-10-02T15:24:51.2724937Z patching file drivers/net/can/mscan/mpc5xxx_can.c
2025-10-02T15:24:51.2726235Z patching file drivers/net/can/pch_can.c
2025-10-02T15:24:51.2727982Z patching file drivers/net/can/peak_canfd/peak_canfd.c
2025-10-02T15:24:51.2729422Z patching file drivers/net/can/rcar/rcar_can.c
2025-10-02T15:24:51.2731526Z patching file drivers/net/can/rcar/rcar_canfd.c
2025-10-02T15:24:51.2733309Z patching file drivers/net/can/rx-offload.c
2025-10-02T15:24:51.2735284Z patching file drivers/net/can/sja1000/ems_pcmcia.c
2025-10-02T15:24:51.2736398Z patching file drivers/net/can/sja1000/peak_pci.c
2025-10-02T15:24:51.2737601Z patching file drivers/net/can/sja1000/sja1000.c
2025-10-02T15:24:51.2738570Z patching file drivers/net/can/sja1000/sja1000_isa.c
2025-10-02T15:24:51.2739396Z patching file drivers/net/can/slcan.c
2025-10-02T15:24:51.2740616Z patching file drivers/net/can/softing/softing_cs.c
2025-10-02T15:24:51.2741561Z patching file drivers/net/can/softing/softing_fw.c
2025-10-02T15:24:51.2742732Z patching file drivers/net/can/spi/hi311x.c
2025-10-02T15:24:51.2744176Z patching file drivers/net/can/spi/mcp251x.c
2025-10-02T15:24:51.2747594Z patching file drivers/net/can/spi/mcp251xfd/mcp251xfd-core.c
2025-10-02T15:24:51.2751103Z patching file drivers/net/can/spi/mcp251xfd/mcp251xfd.h
2025-10-02T15:24:51.2751766Z patching file drivers/net/can/sun4i_can.c
2025-10-02T15:24:51.2753024Z patching file drivers/net/can/usb/ems_usb.c
2025-10-02T15:24:51.2754545Z patching file drivers/net/can/usb/esd_usb2.c
2025-10-02T15:24:51.2755996Z patching file drivers/net/can/usb/gs_usb.c
2025-10-02T15:24:51.2757570Z patching file drivers/net/can/usb/kvaser_usb/kvaser_usb.h
2025-10-02T15:24:51.2758713Z patching file drivers/net/can/usb/kvaser_usb/kvaser_usb_core.c
2025-10-02T15:24:51.2761839Z patching file drivers/net/can/usb/kvaser_usb/kvaser_usb_hydra.c
2025-10-02T15:24:51.2765006Z patching file drivers/net/can/usb/kvaser_usb/kvaser_usb_leaf.c
2025-10-02T15:24:51.2770205Z patching file drivers/net/can/usb/mcba_usb.c
2025-10-02T15:24:51.2772588Z patching file drivers/net/can/usb/peak_usb/pcan_usb.c
2025-10-02T15:24:51.2774089Z patching file drivers/net/can/usb/peak_usb/pcan_usb_core.c
2025-10-02T15:24:51.2776476Z patching file drivers/net/can/usb/peak_usb/pcan_usb_fd.c
2025-10-02T15:24:51.2777697Z patching file drivers/net/can/usb/usb_8dev.c
2025-10-02T15:24:51.2780026Z patching file drivers/net/can/vcan.c
2025-10-02T15:24:51.2780408Z patching file drivers/net/can/vxcan.c
2025-10-02T15:24:51.2782215Z patching file drivers/net/can/xilinx_can.c
2025-10-02T15:24:51.2784773Z patching file drivers/net/dsa/Kconfig
2025-10-02T15:24:51.2785410Z patching file drivers/net/dsa/b53/b53_common.c
2025-10-02T15:24:51.2789145Z patching file drivers/net/dsa/b53/b53_mmap.c
2025-10-02T15:24:51.2789979Z patching file drivers/net/dsa/b53/b53_priv.h
2025-10-02T15:24:51.2791225Z patching file drivers/net/dsa/b53/b53_regs.h
2025-10-02T15:24:51.2792938Z patching file drivers/net/dsa/bcm_sf2.c
2025-10-02T15:24:51.2795341Z patching file drivers/net/dsa/bcm_sf2_cfp.c
2025-10-02T15:24:51.2796928Z patching file drivers/net/dsa/dsa_loop.c
2025-10-02T15:24:51.2798397Z patching file drivers/net/dsa/lan9303-core.c
2025-10-02T15:24:51.2800957Z patching file drivers/net/dsa/lan9303_mdio.c
2025-10-02T15:24:51.2802228Z patching file drivers/net/dsa/lantiq_gswip.c
2025-10-02T15:24:51.2817890Z patching file drivers/net/dsa/microchip/ksz8795.c
2025-10-02T15:24:51.2818337Z patching file drivers/net/dsa/microchip/ksz8795_spi.c
2025-10-02T15:24:51.2818752Z patching file drivers/net/dsa/microchip/ksz9477.c
2025-10-02T15:24:51.2819153Z patching file drivers/net/dsa/microchip/ksz9477_spi.c
2025-10-02T15:24:51.2819716Z patching file drivers/net/dsa/microchip/ksz_common.c
2025-10-02T15:24:51.2820116Z patching file drivers/net/dsa/microchip/ksz_common.h
2025-10-02T15:24:51.2820466Z patching file drivers/net/dsa/mt7530.c
2025-10-02T15:24:51.2820822Z patching file drivers/net/dsa/mv88e6060.c
2025-10-02T15:24:51.2821208Z patching file drivers/net/dsa/mv88e6xxx/Makefile
2025-10-02T15:24:51.2821598Z patching file drivers/net/dsa/mv88e6xxx/chip.c
2025-10-02T15:24:51.2826089Z patching file drivers/net/dsa/mv88e6xxx/chip.h
2025-10-02T15:24:51.2827356Z patching file drivers/net/dsa/mv88e6xxx/global1.c
2025-10-02T15:24:51.2828891Z patching file drivers/net/dsa/mv88e6xxx/global1.h
2025-10-02T15:24:51.2829955Z patching file drivers/net/dsa/mv88e6xxx/global1_atu.c
2025-10-02T15:24:51.2831844Z patching file drivers/net/dsa/mv88e6xxx/global1_vtu.c
2025-10-02T15:24:51.2833065Z patching file drivers/net/dsa/mv88e6xxx/global2.c
2025-10-02T15:24:51.2834786Z patching file drivers/net/dsa/mv88e6xxx/global2.h
2025-10-02T15:24:51.2835663Z patching file drivers/net/dsa/mv88e6xxx/phy.c
2025-10-02T15:24:51.2837178Z patching file drivers/net/dsa/mv88e6xxx/port.c
2025-10-02T15:24:51.2838892Z patching file drivers/net/dsa/mv88e6xxx/serdes.c
2025-10-02T15:24:51.2840309Z patching file drivers/net/dsa/mv88e6xxx/serdes.h
2025-10-02T15:24:51.2841401Z patching file drivers/net/dsa/mv88e6xxx/trace.c
2025-10-02T15:24:51.2842454Z patching file drivers/net/dsa/mv88e6xxx/trace.h
2025-10-02T15:24:51.2844251Z patching file drivers/net/dsa/ocelot/felix.c
2025-10-02T15:24:51.2846096Z patching file drivers/net/dsa/ocelot/felix_vsc9959.c
2025-10-02T15:24:51.2848344Z patching file drivers/net/dsa/ocelot/seville_vsc9953.c
2025-10-02T15:24:51.2849986Z patching file drivers/net/dsa/qca/ar9331.c
2025-10-02T15:24:51.2852222Z patching file drivers/net/dsa/realtek-smi-core.c
2025-10-02T15:24:51.2853241Z patching file drivers/net/dsa/rtl8366rb.c
2025-10-02T15:24:51.2855636Z patching file drivers/net/dsa/sja1105/sja1105_devlink.c
2025-10-02T15:24:51.2856356Z patching file drivers/net/dsa/sja1105/sja1105_dynamic_config.c
2025-10-02T15:24:51.2859069Z patching file drivers/net/dsa/sja1105/sja1105_main.c
2025-10-02T15:24:51.2863734Z patching file drivers/net/dsa/vitesse-vsc73xx-core.c
2025-10-02T15:24:51.2865860Z patching file drivers/net/dummy.c
2025-10-02T15:24:51.2866689Z patching file drivers/net/ethernet/3com/3c589_cs.c
2025-10-02T15:24:51.2868846Z patching file drivers/net/ethernet/8390/mcf8390.c
2025-10-02T15:24:51.2869656Z patching file drivers/net/ethernet/Kconfig
2025-10-02T15:24:51.2871276Z patching file drivers/net/ethernet/aeroflex/greth.c
2025-10-02T15:24:51.2874576Z patching file drivers/net/ethernet/agere/et131x.c
2025-10-02T15:24:51.2878029Z patching file drivers/net/ethernet/allwinner/sun4i-emac.c
2025-10-02T15:24:51.2879844Z patching file drivers/net/ethernet/altera/altera_tse_main.c
2025-10-02T15:24:51.2882928Z patching file drivers/net/ethernet/amazon/ena/ena_com.c
2025-10-02T15:24:51.2885549Z patching file drivers/net/ethernet/amazon/ena/ena_eth_com.c
2025-10-02T15:24:51.2887873Z patching file drivers/net/ethernet/amazon/ena/ena_netdev.c
2025-10-02T15:24:51.2891861Z patching file drivers/net/ethernet/amd/atarilance.c
2025-10-02T15:24:51.2894007Z patching file drivers/net/ethernet/amd/lance.c
2025-10-02T15:24:51.2895222Z patching file drivers/net/ethernet/amd/mvme147.c
2025-10-02T15:24:51.2897192Z patching file drivers/net/ethernet/amd/nmclan_cs.c
2025-10-02T15:24:51.2898790Z patching file drivers/net/ethernet/amd/pcnet32.c
2025-10-02T15:24:51.2901365Z patching file drivers/net/ethernet/amd/xgbe/xgbe-common.h
2025-10-02T15:24:51.2903026Z patching file drivers/net/ethernet/amd/xgbe/xgbe-desc.c
2025-10-02T15:24:51.2904890Z patching file drivers/net/ethernet/amd/xgbe/xgbe-dev.c
2025-10-02T15:24:51.2907842Z patching file drivers/net/ethernet/amd/xgbe/xgbe-drv.c
2025-10-02T15:24:51.2909961Z patching file drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
2025-10-02T15:24:51.2911144Z patching file drivers/net/ethernet/amd/xgbe/xgbe-i2c.c
2025-10-02T15:24:51.2912300Z patching file drivers/net/ethernet/amd/xgbe/xgbe-mdio.c
2025-10-02T15:24:51.2914232Z patching file drivers/net/ethernet/amd/xgbe/xgbe-pci.c
2025-10-02T15:24:51.2916003Z patching file drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.c
2025-10-02T15:24:51.2918599Z patching file drivers/net/ethernet/amd/xgbe/xgbe.h
2025-10-02T15:24:51.2920473Z patching file drivers/net/ethernet/apm/xgene-v2/main.c
2025-10-02T15:24:51.2922669Z patching file drivers/net/ethernet/apm/xgene/xgene_enet_main.c
2025-10-02T15:24:51.2924410Z patching file drivers/net/ethernet/apple/bmac.c
2025-10-02T15:24:51.2925847Z patching file drivers/net/ethernet/apple/mace.c
2025-10-02T15:24:51.2926770Z patching file drivers/net/ethernet/aquantia/atlantic/aq_common.h
2025-10-02T15:24:51.2927749Z patching file drivers/net/ethernet/aquantia/atlantic/aq_ethtool.c
2025-10-02T15:24:51.2928951Z patching file drivers/net/ethernet/aquantia/atlantic/aq_hw.h
2025-10-02T15:24:51.2930116Z patching file drivers/net/ethernet/aquantia/atlantic/aq_macsec.c
2025-10-02T15:24:51.2932189Z patching file drivers/net/ethernet/aquantia/atlantic/aq_macsec.h
2025-10-02T15:24:51.2932699Z patching file drivers/net/ethernet/aquantia/atlantic/aq_main.c
2025-10-02T15:24:51.2933430Z patching file drivers/net/ethernet/aquantia/atlantic/aq_main.h
2025-10-02T15:24:51.2934471Z patching file drivers/net/ethernet/aquantia/atlantic/aq_nic.c
2025-10-02T15:24:51.2936091Z patching file drivers/net/ethernet/aquantia/atlantic/aq_nic.h
2025-10-02T15:24:51.2936596Z patching file drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c
2025-10-02T15:24:51.2937988Z patching file drivers/net/ethernet/aquantia/atlantic/aq_ring.c
2025-10-02T15:24:51.2938736Z patching file drivers/net/ethernet/aquantia/atlantic/aq_vec.c
2025-10-02T15:24:51.2940584Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.c
2025-10-02T15:24:51.2942119Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.c
2025-10-02T15:24:51.2943177Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.c
2025-10-02T15:24:51.2944268Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.c
2025-10-02T15:24:51.2945100Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.h
2025-10-02T15:24:51.2945789Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils.h
2025-10-02T15:24:51.2946926Z patching file drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils_fw.c
2025-10-02T15:24:51.2948723Z patching file drivers/net/ethernet/aquantia/atlantic/macsec/macsec_api.c
2025-10-02T15:24:51.2950162Z patching file drivers/net/ethernet/arc/Kconfig
2025-10-02T15:24:51.2950929Z patching file drivers/net/ethernet/arc/emac_main.c
2025-10-02T15:24:51.2953091Z patching file drivers/net/ethernet/atheros/ag71xx.c
2025-10-02T15:24:51.2954883Z patching file drivers/net/ethernet/atheros/alx/ethtool.c
2025-10-02T15:24:51.2955813Z patching file drivers/net/ethernet/atheros/alx/main.c
2025-10-02T15:24:51.2958113Z patching file drivers/net/ethernet/atheros/atl1c/atl1c_main.c
2025-10-02T15:24:51.2960660Z patching file drivers/net/ethernet/atheros/atl1e/atl1e_main.c
2025-10-02T15:24:51.2963174Z patching file drivers/net/ethernet/atheros/atlx/atl1.c
2025-10-02T15:24:51.2965685Z patching file drivers/net/ethernet/broadcom/Makefile
2025-10-02T15:24:51.2966840Z patching file drivers/net/ethernet/broadcom/b44.c
2025-10-02T15:24:51.2969684Z patching file drivers/net/ethernet/broadcom/bcmsysport.c
2025-10-02T15:24:51.2972097Z patching file drivers/net/ethernet/broadcom/bcmsysport.h
2025-10-02T15:24:51.2972770Z patching file drivers/net/ethernet/broadcom/bgmac-bcma.c
2025-10-02T15:24:51.2973686Z patching file drivers/net/ethernet/broadcom/bgmac-platform.c
2025-10-02T15:24:51.2974704Z patching file drivers/net/ethernet/broadcom/bgmac.c
2025-10-02T15:24:51.2976301Z patching file drivers/net/ethernet/broadcom/bgmac.h
2025-10-02T15:24:51.2979257Z patching file drivers/net/ethernet/broadcom/bnx2.c
2025-10-02T15:24:51.2984074Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x.h
2025-10-02T15:24:51.2987047Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
2025-10-02T15:24:51.2990269Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.h
2025-10-02T15:24:51.2991401Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_fw_defs.h
2025-10-02T15:24:51.2993445Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_hsi.h
2025-10-02T15:24:51.2996607Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_init_ops.h
2025-10-02T15:24:51.3002441Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
2025-10-02T15:24:51.3010384Z patching file drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c
2025-10-02T15:24:51.3020720Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt.c
2025-10-02T15:24:51.3028288Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt.h
2025-10-02T15:24:51.3031079Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.c
2025-10-02T15:24:51.3032333Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_devlink.c
2025-10-02T15:24:51.3034797Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.c
2025-10-02T15:24:51.3038348Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c
2025-10-02T15:24:51.3040345Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c
2025-10-02T15:24:51.3042985Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.c
2025-10-02T15:24:51.3043842Z patching file drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.c
2025-10-02T15:24:51.3045955Z patching file drivers/net/ethernet/broadcom/cnic.c
2025-10-02T15:24:51.3050306Z patching file drivers/net/ethernet/broadcom/genet/bcmgenet.c
2025-10-02T15:24:51.3053663Z patching file drivers/net/ethernet/broadcom/genet/bcmgenet.h
2025-10-02T15:24:51.3054943Z patching file drivers/net/ethernet/broadcom/genet/bcmgenet_wol.c
2025-10-02T15:24:51.3055597Z patching file drivers/net/ethernet/broadcom/genet/bcmmii.c
2025-10-02T15:24:51.3062200Z patching file drivers/net/ethernet/broadcom/tg3.c
2025-10-02T15:24:51.3072050Z patching file drivers/net/ethernet/broadcom/tg3.h
2025-10-02T15:24:51.3074599Z patching file drivers/net/ethernet/brocade/bna/bna_types.h
2025-10-02T15:24:51.3076511Z patching file drivers/net/ethernet/brocade/bna/bnad.c
2025-10-02T15:24:51.3080092Z patching file drivers/net/ethernet/brocade/bna/bnad_debugfs.c
2025-10-02T15:24:51.3081449Z patching file drivers/net/ethernet/cadence/macb.h
2025-10-02T15:24:51.3084209Z patching file drivers/net/ethernet/cadence/macb_main.c
2025-10-02T15:24:51.3087831Z patching file drivers/net/ethernet/cadence/macb_pci.c
2025-10-02T15:24:51.3088498Z patching file drivers/net/ethernet/cadence/macb_ptp.c
2025-10-02T15:24:51.3090425Z patching file drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.c
2025-10-02T15:24:51.3092485Z patching file drivers/net/ethernet/cavium/liquidio/cn23xx_pf_regs.h
2025-10-02T15:24:51.3094125Z patching file drivers/net/ethernet/cavium/liquidio/cn66xx_regs.h
2025-10-02T15:24:51.3096330Z patching file drivers/net/ethernet/cavium/liquidio/lio_main.c
2025-10-02T15:24:51.3107804Z patching file drivers/net/ethernet/cavium/liquidio/lio_vf_main.c
2025-10-02T15:24:51.3108278Z patching file drivers/net/ethernet/cavium/liquidio/lio_vf_rep.c
2025-10-02T15:24:51.3108777Z patching file drivers/net/ethernet/cavium/liquidio/request_manager.c
2025-10-02T15:24:51.3109221Z patching file drivers/net/ethernet/cavium/thunder/nic_main.c
2025-10-02T15:24:51.3110092Z patching file drivers/net/ethernet/cavium/thunder/nicvf_main.c
2025-10-02T15:24:51.3110995Z patching file drivers/net/ethernet/cavium/thunder/nicvf_queues.c
2025-10-02T15:24:51.3113410Z patching file drivers/net/ethernet/cavium/thunder/thunder_bgx.c
2025-10-02T15:24:51.3115652Z patching file drivers/net/ethernet/chelsio/cxgb/cxgb2.c
2025-10-02T15:24:51.3118102Z patching file drivers/net/ethernet/chelsio/cxgb3/cxgb3_main.c
2025-10-02T15:24:51.3121751Z patching file drivers/net/ethernet/chelsio/cxgb3/t3_hw.c
2025-10-02T15:24:51.3133830Z patching file drivers/net/ethernet/chelsio/cxgb4/cudbg_lib.c
2025-10-02T15:24:51.3134263Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4.h
2025-10-02T15:24:51.3134727Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_debugfs.c
2025-10-02T15:24:51.3136482Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.c
2025-10-02T15:24:51.3146473Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.c
2025-10-02T15:24:51.3147110Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
2025-10-02T15:24:51.3159929Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.c
2025-10-02T15:24:51.3160435Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_mqprio.c
2025-10-02T15:24:51.3160876Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.c
2025-10-02T15:24:51.3161299Z patching file drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.h
2025-10-02T15:24:51.3161692Z patching file drivers/net/ethernet/chelsio/cxgb4/sge.c
2025-10-02T15:24:51.3163108Z patching file drivers/net/ethernet/chelsio/cxgb4/t4_hw.c
2025-10-02T15:24:51.3169793Z patching file drivers/net/ethernet/chelsio/cxgb4/t4_hw.h
2025-10-02T15:24:51.3170737Z patching file drivers/net/ethernet/chelsio/cxgb4/t4_pci_id_tbl.h
2025-10-02T15:24:51.3172501Z patching file drivers/net/ethernet/chelsio/cxgb4/t4_tcb.h
2025-10-02T15:24:51.3173574Z patching file drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c
2025-10-02T15:24:51.3177357Z patching file drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.c
2025-10-02T15:24:51.3180727Z patching file drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.h
2025-10-02T15:24:51.3181660Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls.h
2025-10-02T15:24:51.3183652Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.c
2025-10-02T15:24:51.3184854Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_cm.h
2025-10-02T15:24:51.3185670Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_hw.c
2025-10-02T15:24:51.3187162Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_io.c
2025-10-02T15:24:51.3188532Z patching file drivers/net/ethernet/chelsio/inline_crypto/chtls/chtls_main.c
2025-10-02T15:24:51.3189360Z patching file drivers/net/ethernet/chelsio/libcxgb/libcxgb_cm.c
2025-10-02T15:24:51.3190981Z patching file drivers/net/ethernet/cisco/enic/enic_main.c
2025-10-02T15:24:51.3194159Z patching file drivers/net/ethernet/cortina/gemini.c
2025-10-02T15:24:51.3196419Z patching file drivers/net/ethernet/cortina/gemini.h
2025-10-02T15:24:51.3197821Z patching file drivers/net/ethernet/davicom/dm9000.c
2025-10-02T15:24:51.3200872Z patching file drivers/net/ethernet/dec/tulip/de4x5.c
2025-10-02T15:24:51.3205199Z patching file drivers/net/ethernet/dec/tulip/tulip_core.c
2025-10-02T15:24:51.3207499Z patching file drivers/net/ethernet/dec/tulip/winbond-840.c
2025-10-02T15:24:51.3209935Z patching file drivers/net/ethernet/dlink/dl2k.c
2025-10-02T15:24:51.3212410Z patching file drivers/net/ethernet/dlink/dl2k.h
2025-10-02T15:24:51.3213294Z patching file drivers/net/ethernet/dnet.c
2025-10-02T15:24:51.3215079Z patching file drivers/net/ethernet/ec_bhf.c
2025-10-02T15:24:51.3216316Z patching file drivers/net/ethernet/emulex/benet/be.h
2025-10-02T15:24:51.3218635Z patching file drivers/net/ethernet/emulex/benet/be_cmds.c
2025-10-02T15:24:51.3226558Z patching file drivers/net/ethernet/emulex/benet/be_cmds.h
2025-10-02T15:24:51.3228342Z patching file drivers/net/ethernet/emulex/benet/be_ethtool.c
2025-10-02T15:24:51.3232273Z patching file drivers/net/ethernet/emulex/benet/be_main.c
2025-10-02T15:24:51.3234873Z patching file drivers/net/ethernet/ethoc.c
2025-10-02T15:24:51.3236617Z patching file drivers/net/ethernet/ezchip/nps_enet.c
2025-10-02T15:24:51.3237827Z patching file drivers/net/ethernet/faraday/ftgmac100.c
2025-10-02T15:24:51.3240693Z patching file drivers/net/ethernet/faraday/ftgmac100.h
2025-10-02T15:24:51.3241813Z patching file drivers/net/ethernet/freescale/Makefile
2025-10-02T15:24:51.3243241Z patching file drivers/net/ethernet/freescale/dpaa/dpaa_eth.c
2025-10-02T15:24:51.3246691Z patching file drivers/net/ethernet/freescale/dpaa/dpaa_ethtool.c
2025-10-02T15:24:51.3248975Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c
2025-10-02T15:24:51.3254242Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.h
2025-10-02T15:24:51.3255899Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-ethtool.c
2025-10-02T15:24:51.3256744Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.c
2025-10-02T15:24:51.3258179Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-mac.h
2025-10-02T15:24:51.3258869Z patching file drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp.c
2025-10-02T15:24:51.3259801Z patching file drivers/net/ethernet/freescale/dpaa2/dpni-cmd.h
2025-10-02T15:24:51.3260441Z patching file drivers/net/ethernet/freescale/dpaa2/dpni.c
2025-10-02T15:24:51.3262525Z patching file drivers/net/ethernet/freescale/dpaa2/dpni.h
2025-10-02T15:24:51.3263919Z patching file drivers/net/ethernet/freescale/enetc/enetc.c
2025-10-02T15:24:51.3266449Z patching file drivers/net/ethernet/freescale/enetc/enetc.h
2025-10-02T15:24:51.3267751Z patching file drivers/net/ethernet/freescale/enetc/enetc_ethtool.c
2025-10-02T15:24:51.3268637Z patching file drivers/net/ethernet/freescale/enetc/enetc_hw.h
2025-10-02T15:24:51.3270195Z patching file drivers/net/ethernet/freescale/enetc/enetc_pf.c
2025-10-02T15:24:51.3272925Z patching file drivers/net/ethernet/freescale/enetc/enetc_ptp.c
2025-10-02T15:24:51.3274163Z patching file drivers/net/ethernet/freescale/enetc/enetc_qos.c
2025-10-02T15:24:51.3275878Z patching file drivers/net/ethernet/freescale/enetc/enetc_vf.c
2025-10-02T15:24:51.3277064Z patching file drivers/net/ethernet/freescale/fec.h
2025-10-02T15:24:51.3279235Z patching file drivers/net/ethernet/freescale/fec_main.c
2025-10-02T15:24:51.3284006Z patching file drivers/net/ethernet/freescale/fec_mpc52xx_phy.c
2025-10-02T15:24:51.3285564Z patching file drivers/net/ethernet/freescale/fec_ptp.c
2025-10-02T15:24:51.3286651Z patching file drivers/net/ethernet/freescale/fman/fman_port.c
2025-10-02T15:24:51.3289088Z patching file drivers/net/ethernet/freescale/fman/mac.c
2025-10-02T15:24:51.3290487Z patching file drivers/net/ethernet/freescale/fs_enet/mac-fec.c
2025-10-02T15:24:51.3291475Z patching file drivers/net/ethernet/freescale/fs_enet/mii-bitbang.c
2025-10-02T15:24:51.3292330Z patching file drivers/net/ethernet/freescale/fs_enet/mii-fec.c
2025-10-02T15:24:51.3293626Z patching file drivers/net/ethernet/freescale/gianfar.c
2025-10-02T15:24:51.3296233Z patching file drivers/net/ethernet/freescale/gianfar_ethtool.c
2025-10-02T15:24:51.3298514Z patching file drivers/net/ethernet/freescale/ucc_geth.c
2025-10-02T15:24:51.3301167Z patching file drivers/net/ethernet/freescale/ucc_geth.h
2025-10-02T15:24:51.3302616Z patching file drivers/net/ethernet/freescale/xgmac_mdio.c
2025-10-02T15:24:51.3303610Z patching file drivers/net/ethernet/fujitsu/fmvj18x_cs.c
2025-10-02T15:24:51.3305550Z patching file drivers/net/ethernet/google/gve/gve.h
2025-10-02T15:24:51.3306753Z patching file drivers/net/ethernet/google/gve/gve_adminq.c
2025-10-02T15:24:51.3308025Z patching file drivers/net/ethernet/google/gve/gve_adminq.h
2025-10-02T15:24:51.3308938Z patching file drivers/net/ethernet/google/gve/gve_ethtool.c
2025-10-02T15:24:51.3311084Z patching file drivers/net/ethernet/google/gve/gve_main.c
2025-10-02T15:24:51.3313530Z patching file drivers/net/ethernet/google/gve/gve_tx.c
2025-10-02T15:24:51.3314934Z patching file drivers/net/ethernet/hisilicon/hip04_eth.c
2025-10-02T15:24:51.3316727Z patching file drivers/net/ethernet/hisilicon/hisi_femac.c
2025-10-02T15:24:51.3318287Z patching file drivers/net/ethernet/hisilicon/hix5hd2_gmac.c
2025-10-02T15:24:51.3538099Z patching file drivers/net/ethernet/hisilicon/hns/hnae.c
2025-10-02T15:24:51.3538634Z patching file drivers/net/ethernet/hisilicon/hns/hns_dsaf_mac.c
2025-10-02T15:24:51.3540880Z patching file drivers/net/ethernet/hisilicon/hns/hns_dsaf_misc.c
2025-10-02T15:24:51.3543865Z patching file drivers/net/ethernet/hisilicon/hns/hns_enet.c
2025-10-02T15:24:51.3544893Z patching file drivers/net/ethernet/hisilicon/hns/hns_ethtool.c
2025-10-02T15:24:51.3546892Z patching file drivers/net/ethernet/hisilicon/hns3/hclge_mbx.h
2025-10-02T15:24:51.3547544Z patching file drivers/net/ethernet/hisilicon/hns3/hnae3.c
2025-10-02T15:24:51.3549155Z patching file drivers/net/ethernet/hisilicon/hns3/hnae3.h
2025-10-02T15:24:51.3550974Z patching file drivers/net/ethernet/hisilicon/hns3/hns3_debugfs.c
2025-10-02T15:24:51.3553263Z patching file drivers/net/ethernet/hisilicon/hns3/hns3_enet.c
2025-10-02T15:24:51.3557940Z patching file drivers/net/ethernet/hisilicon/hns3/hns3_enet.h
2025-10-02T15:24:51.3559799Z patching file drivers/net/ethernet/hisilicon/hns3/hns3_ethtool.c
2025-10-02T15:24:51.3562169Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.c
2025-10-02T15:24:51.3563180Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_cmd.h
2025-10-02T15:24:51.3564994Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_dcb.c
2025-10-02T15:24:51.3566888Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_debugfs.c
2025-10-02T15:24:51.3569056Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_err.c
2025-10-02T15:24:51.3571288Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_err.h
2025-10-02T15:24:51.3590545Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
2025-10-02T15:24:51.3591542Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.h
2025-10-02T15:24:51.3592714Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mbx.c
2025-10-02T15:24:51.3593497Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_mdio.c
2025-10-02T15:24:51.3594100Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c
2025-10-02T15:24:51.3594635Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.h
2025-10-02T15:24:51.3595236Z patching file drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_trace.h
2025-10-02T15:24:51.3595818Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_cmd.c
2025-10-02T15:24:51.3596388Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_cmd.h
2025-10-02T15:24:51.3596984Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c
2025-10-02T15:24:51.3602682Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.h
2025-10-02T15:24:51.3603209Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_mbx.c
2025-10-02T15:24:51.3616739Z patching file drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_trace.h
2025-10-02T15:24:51.3617193Z patching file drivers/net/ethernet/hisilicon/hns_mdio.c
2025-10-02T15:24:51.3617656Z patching file drivers/net/ethernet/huawei/hinic/hinic_debugfs.c
2025-10-02T15:24:51.3618675Z patching file drivers/net/ethernet/huawei/hinic/hinic_dev.h
2025-10-02T15:24:51.3619162Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_api_cmd.c
2025-10-02T15:24:51.3619777Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_cmdq.c
2025-10-02T15:24:51.3620235Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_dev.c
2025-10-02T15:24:51.3620683Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_eqs.c
2025-10-02T15:24:51.3621128Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_mgmt.c
2025-10-02T15:24:51.3621567Z patching file drivers/net/ethernet/huawei/hinic/hinic_hw_wq.c
2025-10-02T15:24:51.3622003Z patching file drivers/net/ethernet/huawei/hinic/hinic_main.c
2025-10-02T15:24:51.3622677Z patching file drivers/net/ethernet/huawei/hinic/hinic_rx.c
2025-10-02T15:24:51.3623115Z patching file drivers/net/ethernet/huawei/hinic/hinic_sriov.c
2025-10-02T15:24:51.3623546Z patching file drivers/net/ethernet/huawei/hinic/hinic_tx.c
2025-10-02T15:24:51.3623925Z patching file drivers/net/ethernet/i825xx/82596.c
2025-10-02T15:24:51.3624467Z patching file drivers/net/ethernet/i825xx/sni_82596.c
2025-10-02T15:24:51.3625537Z patching file drivers/net/ethernet/i825xx/sun3_82586.c
2025-10-02T15:24:51.3628915Z patching file drivers/net/ethernet/ibm/ehea/ehea_main.c
2025-10-02T15:24:51.3631759Z patching file drivers/net/ethernet/ibm/emac/mal.c
2025-10-02T15:24:51.3633335Z patching file drivers/net/ethernet/ibm/ibmveth.c
2025-10-02T15:24:51.3636188Z patching file drivers/net/ethernet/ibm/ibmvnic.c
2025-10-02T15:24:51.3643430Z patching file drivers/net/ethernet/ibm/ibmvnic.h
2025-10-02T15:24:51.3645865Z patching file drivers/net/ethernet/intel/e100.c
2025-10-02T15:24:51.3650304Z patching file drivers/net/ethernet/intel/e1000e/82571.c
2025-10-02T15:24:51.3652546Z patching file drivers/net/ethernet/intel/e1000e/defines.h
2025-10-02T15:24:51.3653729Z patching file drivers/net/ethernet/intel/e1000e/e1000.h
2025-10-02T15:24:51.3655575Z patching file drivers/net/ethernet/intel/e1000e/ethtool.c
2025-10-02T15:24:51.3659884Z patching file drivers/net/ethernet/intel/e1000e/ich8lan.c
2025-10-02T15:24:51.3664182Z patching file drivers/net/ethernet/intel/e1000e/ich8lan.h
2025-10-02T15:24:51.3667259Z patching file drivers/net/ethernet/intel/e1000e/netdev.c
2025-10-02T15:24:51.3672548Z patching file drivers/net/ethernet/intel/e1000e/nvm.c
2025-10-02T15:24:51.3673632Z patching file drivers/net/ethernet/intel/fm10k/fm10k.h
2025-10-02T15:24:51.3675598Z patching file drivers/net/ethernet/intel/fm10k/fm10k_main.c
2025-10-02T15:24:51.3678064Z patching file drivers/net/ethernet/intel/fm10k/fm10k_pci.c
2025-10-02T15:24:51.3680719Z patching file drivers/net/ethernet/intel/i40e/i40e.h
2025-10-02T15:24:51.3683327Z patching file drivers/net/ethernet/intel/i40e/i40e_adminq_cmd.h
2025-10-02T15:24:51.3685378Z patching file drivers/net/ethernet/intel/i40e/i40e_alloc.h
2025-10-02T15:24:51.3686514Z patching file drivers/net/ethernet/intel/i40e/i40e_client.c
2025-10-02T15:24:51.3689372Z patching file drivers/net/ethernet/intel/i40e/i40e_common.c
2025-10-02T15:24:51.3693751Z patching file drivers/net/ethernet/intel/i40e/i40e_debugfs.c
2025-10-02T15:24:51.3695835Z patching file drivers/net/ethernet/intel/i40e/i40e_diag.c
2025-10-02T15:24:51.3696564Z patching file drivers/net/ethernet/intel/i40e/i40e_diag.h
2025-10-02T15:24:51.3698937Z patching file drivers/net/ethernet/intel/i40e/i40e_ethtool.c
2025-10-02T15:24:51.3707869Z patching file drivers/net/ethernet/intel/i40e/i40e_main.c
2025-10-02T15:24:51.3719799Z patching file drivers/net/ethernet/intel/i40e/i40e_nvm.c
2025-10-02T15:24:51.3721969Z patching file drivers/net/ethernet/intel/i40e/i40e_ptp.c
2025-10-02T15:24:51.3723701Z patching file drivers/net/ethernet/intel/i40e/i40e_register.h
2025-10-02T15:24:51.3726372Z patching file drivers/net/ethernet/intel/i40e/i40e_txrx.c
2025-10-02T15:24:51.3729985Z patching file drivers/net/ethernet/intel/i40e/i40e_txrx.h
2025-10-02T15:24:51.3731606Z patching file drivers/net/ethernet/intel/i40e/i40e_type.h
2025-10-02T15:24:51.3734498Z patching file drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.c
2025-10-02T15:24:51.3740727Z patching file drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.h
2025-10-02T15:24:51.3741702Z patching file drivers/net/ethernet/intel/i40e/i40e_xsk.c
2025-10-02T15:24:51.3743674Z patching file drivers/net/ethernet/intel/i40e/i40e_xsk.h
2025-10-02T15:24:51.3744298Z patching file drivers/net/ethernet/intel/iavf/iavf.h
2025-10-02T15:24:51.3745792Z patching file drivers/net/ethernet/intel/iavf/iavf_adminq.c
2025-10-02T15:24:51.3747443Z patching file drivers/net/ethernet/intel/iavf/iavf_common.c
2025-10-02T15:24:51.3748978Z patching file drivers/net/ethernet/intel/iavf/iavf_ethtool.c
2025-10-02T15:24:51.3752062Z patching file drivers/net/ethernet/intel/iavf/iavf_main.c
2025-10-02T15:24:51.3756070Z patching file drivers/net/ethernet/intel/iavf/iavf_register.h
2025-10-02T15:24:51.3757420Z patching file drivers/net/ethernet/intel/iavf/iavf_txrx.c
2025-10-02T15:24:51.3759987Z patching file drivers/net/ethernet/intel/iavf/iavf_virtchnl.c
2025-10-02T15:24:51.3762007Z patching file drivers/net/ethernet/intel/ice/ice.h
2025-10-02T15:24:51.3764090Z patching file drivers/net/ethernet/intel/ice/ice_adminq_cmd.h
2025-10-02T15:24:51.3766274Z patching file drivers/net/ethernet/intel/ice/ice_arfs.c
2025-10-02T15:24:51.3768149Z patching file drivers/net/ethernet/intel/ice/ice_base.c
2025-10-02T15:24:51.3770823Z patching file drivers/net/ethernet/intel/ice/ice_common.c
2025-10-02T15:24:51.3774073Z patching file drivers/net/ethernet/intel/ice/ice_controlq.h
2025-10-02T15:24:51.3774869Z patching file drivers/net/ethernet/intel/ice/ice_dcb.c
2025-10-02T15:24:51.3777238Z patching file drivers/net/ethernet/intel/ice/ice_dcb_lib.c
2025-10-02T15:24:51.3779193Z patching file drivers/net/ethernet/intel/ice/ice_dcb_nl.c
2025-10-02T15:24:51.3781396Z patching file drivers/net/ethernet/intel/ice/ice_devids.h
2025-10-02T15:24:51.3782332Z patching file drivers/net/ethernet/intel/ice/ice_devlink.c
2025-10-02T15:24:51.3784759Z patching file drivers/net/ethernet/intel/ice/ice_ethtool.c
2025-10-02T15:24:51.3789257Z patching file drivers/net/ethernet/intel/ice/ice_ethtool_fdir.c
2025-10-02T15:24:51.3792623Z patching file drivers/net/ethernet/intel/ice/ice_flex_pipe.c
2025-10-02T15:24:51.3795908Z patching file drivers/net/ethernet/intel/ice/ice_fltr.c
2025-10-02T15:24:51.3796795Z patching file drivers/net/ethernet/intel/ice/ice_hw_autogen.h
2025-10-02T15:24:51.3798114Z patching file drivers/net/ethernet/intel/ice/ice_lan_tx_rx.h
2025-10-02T15:24:51.3800461Z patching file drivers/net/ethernet/intel/ice/ice_lib.c
2025-10-02T15:24:51.3805312Z patching file drivers/net/ethernet/intel/ice/ice_main.c
2025-10-02T15:24:51.3811206Z patching file drivers/net/ethernet/intel/ice/ice_sched.c
2025-10-02T15:24:51.3814300Z patching file drivers/net/ethernet/intel/ice/ice_switch.c
2025-10-02T15:24:51.3817342Z patching file drivers/net/ethernet/intel/ice/ice_txrx.c
2025-10-02T15:24:51.3820044Z patching file drivers/net/ethernet/intel/ice/ice_txrx.h
2025-10-02T15:24:51.3820899Z patching file drivers/net/ethernet/intel/ice/ice_type.h
2025-10-02T15:24:51.3823516Z patching file drivers/net/ethernet/intel/ice/ice_virtchnl_pf.c
2025-10-02T15:24:51.3826946Z patching file drivers/net/ethernet/intel/ice/ice_virtchnl_pf.h
2025-10-02T15:24:51.3828229Z patching file drivers/net/ethernet/intel/ice/ice_xsk.c
2025-10-02T15:24:51.3830378Z patching file drivers/net/ethernet/intel/igb/e1000_mac.c
2025-10-02T15:24:51.3832164Z patching file drivers/net/ethernet/intel/igb/igb.h
2025-10-02T15:24:51.3834287Z patching file drivers/net/ethernet/intel/igb/igb_ethtool.c
2025-10-02T15:24:51.3839240Z patching file drivers/net/ethernet/intel/igb/igb_main.c
2025-10-02T15:24:51.3846304Z patching file drivers/net/ethernet/intel/igb/igb_ptp.c
2025-10-02T15:24:51.3848176Z patching file drivers/net/ethernet/intel/igbvf/igbvf.h
2025-10-02T15:24:51.3849898Z patching file drivers/net/ethernet/intel/igbvf/netdev.c
2025-10-02T15:24:51.3852342Z patching file drivers/net/ethernet/intel/igbvf/vf.c
2025-10-02T15:24:51.3853230Z patching file drivers/net/ethernet/intel/igc/igc.h
2025-10-02T15:24:51.3854963Z patching file drivers/net/ethernet/intel/igc/igc_base.c
2025-10-02T15:24:51.3855938Z patching file drivers/net/ethernet/intel/igc/igc_defines.h
2025-10-02T15:24:51.3857758Z patching file drivers/net/ethernet/intel/igc/igc_ethtool.c
2025-10-02T15:24:51.3860760Z patching file drivers/net/ethernet/intel/igc/igc_hw.h
2025-10-02T15:24:51.3861607Z patching file drivers/net/ethernet/intel/igc/igc_i225.c
2025-10-02T15:24:51.3863254Z patching file drivers/net/ethernet/intel/igc/igc_mac.c
2025-10-02T15:24:51.3865770Z patching file drivers/net/ethernet/intel/igc/igc_main.c
2025-10-02T15:24:51.3870715Z patching file drivers/net/ethernet/intel/igc/igc_phy.c
2025-10-02T15:24:51.3872475Z patching file drivers/net/ethernet/intel/igc/igc_ptp.c
2025-10-02T15:24:51.3874191Z patching file drivers/net/ethernet/intel/igc/igc_regs.h
2025-10-02T15:24:51.3875146Z patching file drivers/net/ethernet/intel/igc/igc_tsn.c
2025-10-02T15:24:51.3876343Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe.h
2025-10-02T15:24:51.3878416Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_82598.c
2025-10-02T15:24:51.3881268Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_82599.c
2025-10-02T15:24:51.3885193Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_common.c
2025-10-02T15:24:51.3890872Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c
2025-10-02T15:24:51.3893961Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_ipsec.c
2025-10-02T15:24:51.3899021Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
2025-10-02T15:24:51.3906167Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.c
2025-10-02T15:24:51.3907428Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.h
2025-10-02T15:24:51.3909181Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_phy.c
2025-10-02T15:24:51.3912909Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_phy.h
2025-10-02T15:24:51.3913991Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
2025-10-02T15:24:51.3916885Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c
2025-10-02T15:24:51.3920157Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_type.h
2025-10-02T15:24:51.3923746Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_x540.c
2025-10-02T15:24:51.3926799Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_x550.c
2025-10-02T15:24:51.3931516Z patching file drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c
2025-10-02T15:24:51.3932820Z patching file drivers/net/ethernet/intel/ixgbevf/ipsec.c
2025-10-02T15:24:51.3935710Z patching file drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
2025-10-02T15:24:51.3939829Z patching file drivers/net/ethernet/jme.c
2025-10-02T15:24:51.3942571Z patching file drivers/net/ethernet/korina.c
2025-10-02T15:24:51.3944297Z patching file drivers/net/ethernet/lantiq_etop.c
2025-10-02T15:24:51.3945797Z patching file drivers/net/ethernet/lantiq_xrx200.c
2025-10-02T15:24:51.3948064Z patching file drivers/net/ethernet/marvell/mv643xx_eth.c
2025-10-02T15:24:51.3951945Z patching file drivers/net/ethernet/marvell/mvneta.c
2025-10-02T15:24:51.3955983Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2.h
2025-10-02T15:24:51.3958319Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_cls.c
2025-10-02T15:24:51.3960397Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_debugfs.c
2025-10-02T15:24:51.3963458Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c
2025-10-02T15:24:51.3968857Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c
2025-10-02T15:24:51.3971503Z patching file drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.h
2025-10-02T15:24:51.3972630Z patching file drivers/net/ethernet/marvell/octeontx2/af/cgx.c
2025-10-02T15:24:51.3990567Z patching file drivers/net/ethernet/marvell/octeontx2/af/cgx.h
2025-10-02T15:24:51.3991321Z patching file drivers/net/ethernet/marvell/octeontx2/af/cgx_fw_if.h
2025-10-02T15:24:51.3992728Z patching file drivers/net/ethernet/marvell/octeontx2/af/mbox.h
2025-10-02T15:24:51.3993180Z patching file drivers/net/ethernet/marvell/octeontx2/af/npc.h
2025-10-02T15:24:51.3993678Z patching file drivers/net/ethernet/marvell/octeontx2/af/npc_profile.h
2025-10-02T15:24:51.3994130Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu.c
2025-10-02T15:24:51.3994566Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu.h
2025-10-02T15:24:51.3995027Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_cgx.c
2025-10-02T15:24:51.3995514Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_debugfs.c
2025-10-02T15:24:51.3996224Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_nix.c
2025-10-02T15:24:51.3999407Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_npc.c
2025-10-02T15:24:51.4002119Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_reg.c
2025-10-02T15:24:51.4002631Z patching file drivers/net/ethernet/marvell/octeontx2/af/rvu_struct.h
2025-10-02T15:24:51.4013863Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c
2025-10-02T15:24:51.4014392Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.h
2025-10-02T15:24:51.4014905Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_ethtool.c
2025-10-02T15:24:51.4015400Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c
2025-10-02T15:24:51.4015898Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.c
2025-10-02T15:24:51.4016375Z patching file drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c
2025-10-02T15:24:51.4016871Z patching file drivers/net/ethernet/marvell/prestera/prestera_main.c
2025-10-02T15:24:51.4017356Z patching file drivers/net/ethernet/marvell/prestera/prestera_rxtx.c
2025-10-02T15:24:51.4017895Z patching file drivers/net/ethernet/marvell/prestera/prestera_switchdev.c
2025-10-02T15:24:51.4018322Z patching file drivers/net/ethernet/marvell/pxa168_eth.c
2025-10-02T15:24:51.4020773Z patching file drivers/net/ethernet/marvell/sky2.c
2025-10-02T15:24:51.4024483Z patching file drivers/net/ethernet/marvell/sky2.h
2025-10-02T15:24:51.4044827Z patching file drivers/net/ethernet/mediatek/mtk_eth_soc.c
2025-10-02T15:24:51.4045262Z patching file drivers/net/ethernet/mediatek/mtk_eth_soc.h
2025-10-02T15:24:51.4045721Z patching file drivers/net/ethernet/mediatek/mtk_sgmii.c
2025-10-02T15:24:51.4046157Z patching file drivers/net/ethernet/mediatek/mtk_star_emac.c
2025-10-02T15:24:51.4046575Z patching file drivers/net/ethernet/mellanox/mlx4/alloc.c
2025-10-02T15:24:51.4047006Z patching file drivers/net/ethernet/mellanox/mlx4/en_clock.c
2025-10-02T15:24:51.4047447Z patching file drivers/net/ethernet/mellanox/mlx4/en_ethtool.c
2025-10-02T15:24:51.4047876Z patching file drivers/net/ethernet/mellanox/mlx4/en_netdev.c
2025-10-02T15:24:51.4048305Z patching file drivers/net/ethernet/mellanox/mlx4/en_tx.c
2025-10-02T15:24:51.4048726Z patching file drivers/net/ethernet/mellanox/mlx4/fw.c
2025-10-02T15:24:51.4049683Z patching file drivers/net/ethernet/mellanox/mlx4/fw.h
2025-10-02T15:24:51.4051330Z patching file drivers/net/ethernet/mellanox/mlx4/main.c
2025-10-02T15:24:51.4054450Z patching file drivers/net/ethernet/mellanox/mlx4/mlx4_en.h
2025-10-02T15:24:51.4056132Z patching file drivers/net/ethernet/mellanox/mlx4/port.c
2025-10-02T15:24:51.4058599Z patching file drivers/net/ethernet/mellanox/mlx4/qp.c
2025-10-02T15:24:51.4070099Z patching file drivers/net/ethernet/mellanox/mlx4/resource_tracker.c
2025-10-02T15:24:51.4070733Z patching file drivers/net/ethernet/mellanox/mlx5/core/cmd.c
2025-10-02T15:24:51.4071182Z patching file drivers/net/ethernet/mellanox/mlx5/core/cq.c
2025-10-02T15:24:51.4071646Z patching file drivers/net/ethernet/mellanox/mlx5/core/debugfs.c
2025-10-02T15:24:51.4072091Z patching file drivers/net/ethernet/mellanox/mlx5/core/devlink.c
2025-10-02T15:24:51.4072608Z patching file drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.c
2025-10-02T15:24:51.4073118Z patching file drivers/net/ethernet/mellanox/mlx5/core/diag/rsc_dump.c
2025-10-02T15:24:51.4073566Z patching file drivers/net/ethernet/mellanox/mlx5/core/en.h
2025-10-02T15:24:51.4074463Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/fs.h
2025-10-02T15:24:51.4075554Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/health.c
2025-10-02T15:24:51.4076587Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/port.c
2025-10-02T15:24:51.4078187Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/port_buffer.c
2025-10-02T15:24:51.4080277Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/port_buffer.h
2025-10-02T15:24:51.4080769Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/rep/bond.c
2025-10-02T15:24:51.4083464Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/rep/neigh.c
2025-10-02T15:24:51.4084168Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/rep/tc.c
2025-10-02T15:24:51.4084886Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/reporter_tx.c
2025-10-02T15:24:51.4086438Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.c
2025-10-02T15:24:51.4088629Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_geneve.c
2025-10-02T15:24:51.4089883Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_vxlan.c
2025-10-02T15:24:51.4090487Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/txrx.h
2025-10-02T15:24:51.4093572Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/xdp.h
2025-10-02T15:24:51.4094085Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/xsk/pool.c
2025-10-02T15:24:51.4096011Z patching file drivers/net/ethernet/mellanox/mlx5/core/en/xsk/setup.c
2025-10-02T15:24:51.4096552Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/en_accel.h
2025-10-02T15:24:51.4097066Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/fs_tcp.c
2025-10-02T15:24:51.4097590Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.c
2025-10-02T15:24:51.4098659Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.c
2025-10-02T15:24:51.4100026Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_stats.c
2025-10-02T15:24:51.4101215Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls.c
2025-10-02T15:24:51.4102970Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_rx.c
2025-10-02T15:24:51.4103484Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_tx.c
2025-10-02T15:24:51.4103947Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_arfs.c
2025-10-02T15:24:51.4104980Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.c
2025-10-02T15:24:51.4106188Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.c
2025-10-02T15:24:51.4109116Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_fs.c
2025-10-02T15:24:51.4110884Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_fs_ethtool.c
2025-10-02T15:24:51.4113794Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_main.c
2025-10-02T15:24:51.4119168Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
2025-10-02T15:24:51.4130517Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_rx.c
2025-10-02T15:24:51.4131173Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_selftest.c
2025-10-02T15:24:51.4131640Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_stats.c
2025-10-02T15:24:51.4132094Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
2025-10-02T15:24:51.4132548Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_tc.h
2025-10-02T15:24:51.4132980Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_tx.c
2025-10-02T15:24:51.4133792Z patching file drivers/net/ethernet/mellanox/mlx5/core/en_txrx.c
2025-10-02T15:24:51.4137339Z patching file drivers/net/ethernet/mellanox/mlx5/core/eq.c
2025-10-02T15:24:51.4138005Z patching file drivers/net/ethernet/mellanox/mlx5/core/esw/acl/egress_lgcy.c
2025-10-02T15:24:51.4138755Z patching file drivers/net/ethernet/mellanox/mlx5/core/esw/acl/egress_ofld.c
2025-10-02T15:24:51.4139315Z patching file drivers/net/ethernet/mellanox/mlx5/core/esw/acl/ingress_lgcy.c
2025-10-02T15:24:51.4140017Z patching file drivers/net/ethernet/mellanox/mlx5/core/esw/acl/ingress_ofld.c
2025-10-02T15:24:51.4142292Z patching file drivers/net/ethernet/mellanox/mlx5/core/eswitch.c
2025-10-02T15:24:51.4144380Z patching file drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
2025-10-02T15:24:51.4145930Z patching file drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
2025-10-02T15:24:51.4149143Z patching file drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_termtbl.c
2025-10-02T15:24:51.4162043Z patching file drivers/net/ethernet/mellanox/mlx5/core/events.c
2025-10-02T15:24:51.4162539Z patching file drivers/net/ethernet/mellanox/mlx5/core/fpga/conn.c
2025-10-02T15:24:51.4163121Z patching file drivers/net/ethernet/mellanox/mlx5/core/fpga/ipsec.c
2025-10-02T15:24:51.4164239Z patching file drivers/net/ethernet/mellanox/mlx5/core/fs_core.c
2025-10-02T15:24:51.4164718Z patching file drivers/net/ethernet/mellanox/mlx5/core/fw_reset.c
2025-10-02T15:24:51.4165178Z patching file drivers/net/ethernet/mellanox/mlx5/core/health.c
2025-10-02T15:24:51.4165680Z patching file drivers/net/ethernet/mellanox/mlx5/core/ipoib/ethtool.c
2025-10-02T15:24:51.4166158Z patching file drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c
2025-10-02T15:24:51.4166573Z patching file drivers/net/ethernet/mellanox/mlx5/core/lag.c
2025-10-02T15:24:51.4167028Z patching file drivers/net/ethernet/mellanox/mlx5/core/lag_mp.c
2025-10-02T15:24:51.4167491Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/clock.c
2025-10-02T15:24:51.4168112Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/clock.h
2025-10-02T15:24:51.4169068Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.c
2025-10-02T15:24:51.4171386Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.h
2025-10-02T15:24:51.4171856Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/eq.h
2025-10-02T15:24:51.4172584Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/fs_chains.c
2025-10-02T15:24:51.4174709Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/geneve.c
2025-10-02T15:24:51.4175192Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/mlx5.h
2025-10-02T15:24:51.4176152Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/mpfs.c
2025-10-02T15:24:51.4177050Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/mpfs.h
2025-10-02T15:24:51.4177823Z patching file drivers/net/ethernet/mellanox/mlx5/core/lib/pci_vsc.c
2025-10-02T15:24:51.4180369Z patching file drivers/net/ethernet/mellanox/mlx5/core/main.c
2025-10-02T15:24:51.4181960Z patching file drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.h
2025-10-02T15:24:51.4183045Z patching file drivers/net/ethernet/mellanox/mlx5/core/mr.c
2025-10-02T15:24:51.4184495Z patching file drivers/net/ethernet/mellanox/mlx5/core/pagealloc.c
2025-10-02T15:24:51.4186583Z patching file drivers/net/ethernet/mellanox/mlx5/core/pci_irq.c
2025-10-02T15:24:51.4188019Z patching file drivers/net/ethernet/mellanox/mlx5/core/rdma.c
2025-10-02T15:24:51.4189308Z patching file drivers/net/ethernet/mellanox/mlx5/core/rdma.h
2025-10-02T15:24:51.4190427Z patching file drivers/net/ethernet/mellanox/mlx5/core/sriov.c
2025-10-02T15:24:51.4191681Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c
2025-10-02T15:24:51.4194008Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_cmd.c
2025-10-02T15:24:51.4195281Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_domain.c
2025-10-02T15:24:51.4197016Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_fw.c
2025-10-02T15:24:51.4197932Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_rule.c
2025-10-02T15:24:51.4200031Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_send.c
2025-10-02T15:24:51.4202022Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste.c
2025-10-02T15:24:51.4204621Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.c
2025-10-02T15:24:51.4205524Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/dr_types.h
2025-10-02T15:24:51.4207410Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.c
2025-10-02T15:24:51.4209665Z patching file drivers/net/ethernet/mellanox/mlx5/core/steering/mlx5dr.h
2025-10-02T15:24:51.4210164Z patching file drivers/net/ethernet/mellanox/mlx5/core/transobj.c
2025-10-02T15:24:51.4211443Z patching file drivers/net/ethernet/mellanox/mlx5/core/vport.c
2025-10-02T15:24:51.4213387Z patching file drivers/net/ethernet/mellanox/mlxfw/mlxfw_fsm.c
2025-10-02T15:24:51.4215156Z patching file drivers/net/ethernet/mellanox/mlxfw/mlxfw_mfa2_tlv_multi.c
2025-10-02T15:24:51.4216776Z patching file drivers/net/ethernet/mellanox/mlxsw/cmd.h
2025-10-02T15:24:51.4218245Z patching file drivers/net/ethernet/mellanox/mlxsw/core.c
2025-10-02T15:24:51.4221289Z patching file drivers/net/ethernet/mellanox/mlxsw/core_thermal.c
2025-10-02T15:24:51.4223349Z patching file drivers/net/ethernet/mellanox/mlxsw/i2c.c
2025-10-02T15:24:51.4225641Z patching file drivers/net/ethernet/mellanox/mlxsw/minimal.c
2025-10-02T15:24:51.4226740Z patching file drivers/net/ethernet/mellanox/mlxsw/pci.c
2025-10-02T15:24:51.4229351Z patching file drivers/net/ethernet/mellanox/mlxsw/pci_hw.h
2025-10-02T15:24:51.4233713Z patching file drivers/net/ethernet/mellanox/mlxsw/reg.h
2025-10-02T15:24:51.4241347Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum.c
2025-10-02T15:24:51.4245313Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum.h
2025-10-02T15:24:51.4247620Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_atcam.c
2025-10-02T15:24:51.4249294Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.c
2025-10-02T15:24:51.4251140Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_erp.c
2025-10-02T15:24:51.4253647Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.c
2025-10-02T15:24:51.4256731Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.h
2025-10-02T15:24:51.4257854Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.c
2025-10-02T15:24:51.4259013Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.h
2025-10-02T15:24:51.4260213Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_dcb.c
2025-10-02T15:24:51.4262385Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_ethtool.c
2025-10-02T15:24:51.4264216Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_ipip.c
2025-10-02T15:24:51.4266835Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_mr.c
2025-10-02T15:24:51.4268624Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_nve.c
2025-10-02T15:24:51.4270326Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.c
2025-10-02T15:24:51.4271621Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_ptp.c
2025-10-02T15:24:51.4275552Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_router.c
2025-10-02T15:24:51.4281036Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c
2025-10-02T15:24:51.4282543Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_span.h
2025-10-02T15:24:51.4284587Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.c
2025-10-02T15:24:51.4287785Z patching file drivers/net/ethernet/mellanox/mlxsw/spectrum_trap.c
2025-10-02T15:24:51.4290010Z patching file drivers/net/ethernet/mellanox/mlxsw/switchx2.c
2025-10-02T15:24:51.4292422Z patching file drivers/net/ethernet/mellanox/mlxsw/trap.h
2025-10-02T15:24:51.4292865Z patching file drivers/net/ethernet/micrel/Makefile
2025-10-02T15:24:51.4293814Z patching file drivers/net/ethernet/micrel/ks8842.c
2025-10-02T15:24:51.4295917Z patching file drivers/net/ethernet/micrel/ks8851.h
2025-10-02T15:24:51.4296823Z patching file drivers/net/ethernet/micrel/ks8851_common.c
2025-10-02T15:24:51.4299075Z patching file drivers/net/ethernet/micrel/ks8851_par.c
2025-10-02T15:24:51.4300003Z patching file drivers/net/ethernet/micrel/ks8851_spi.c
2025-10-02T15:24:51.4303690Z patching file drivers/net/ethernet/micrel/ksz884x.c
2025-10-02T15:24:51.4308427Z patching file drivers/net/ethernet/microchip/encx24j600-regmap.c
2025-10-02T15:24:51.4309412Z patching file drivers/net/ethernet/microchip/encx24j600.c
2025-10-02T15:24:51.4311703Z patching file drivers/net/ethernet/microchip/encx24j600_hw.h
2025-10-02T15:24:51.4312357Z patching file drivers/net/ethernet/microchip/lan743x_ethtool.c
2025-10-02T15:24:51.4314657Z patching file drivers/net/ethernet/microchip/lan743x_main.c
2025-10-02T15:24:51.4318489Z patching file drivers/net/ethernet/microchip/lan743x_main.h
2025-10-02T15:24:51.4320240Z patching file drivers/net/ethernet/moxa/moxart_ether.c
2025-10-02T15:24:51.4322434Z patching file drivers/net/ethernet/mscc/ocelot.c
2025-10-02T15:24:51.4324913Z patching file drivers/net/ethernet/mscc/ocelot_flower.c
2025-10-02T15:24:51.4326441Z patching file drivers/net/ethernet/mscc/ocelot_io.c
2025-10-02T15:24:51.4327667Z patching file drivers/net/ethernet/mscc/ocelot_net.c
2025-10-02T15:24:51.4329790Z patching file drivers/net/ethernet/mscc/ocelot_vcap.c
2025-10-02T15:24:51.4331973Z patching file drivers/net/ethernet/mscc/ocelot_vsc7514.c
2025-10-02T15:24:51.4334700Z patching file drivers/net/ethernet/myricom/myri10ge/myri10ge.c
2025-10-02T15:24:51.4337765Z patching file drivers/net/ethernet/natsemi/macsonic.c
2025-10-02T15:24:51.4339910Z patching file drivers/net/ethernet/natsemi/natsemi.c
2025-10-02T15:24:51.4343209Z patching file drivers/net/ethernet/natsemi/ns83820.c
2025-10-02T15:24:51.4345598Z patching file drivers/net/ethernet/natsemi/sonic.c
2025-10-02T15:24:51.4346741Z patching file drivers/net/ethernet/natsemi/xtsonic.c
2025-10-02T15:24:51.4350133Z patching file drivers/net/ethernet/neterion/s2io.c
2025-10-02T15:24:51.4356346Z patching file drivers/net/ethernet/neterion/vxge/vxge-config.c
2025-10-02T15:24:51.4360835Z patching file drivers/net/ethernet/neterion/vxge/vxge-main.c
2025-10-02T15:24:51.4364189Z patching file drivers/net/ethernet/netronome/nfp/bpf/cmsg.c
2025-10-02T15:24:51.4365158Z patching file drivers/net/ethernet/netronome/nfp/bpf/main.c
2025-10-02T15:24:51.4366369Z patching file drivers/net/ethernet/netronome/nfp/bpf/main.h
2025-10-02T15:24:51.4367774Z patching file drivers/net/ethernet/netronome/nfp/bpf/offload.c
2025-10-02T15:24:51.4369306Z patching file drivers/net/ethernet/netronome/nfp/flower/lag_conf.c
2025-10-02T15:24:51.4370777Z patching file drivers/net/ethernet/netronome/nfp/flower/main.c
2025-10-02T15:24:51.4372205Z patching file drivers/net/ethernet/netronome/nfp/flower/main.h
2025-10-02T15:24:51.4373536Z patching file drivers/net/ethernet/netronome/nfp/flower/metadata.c
2025-10-02T15:24:51.4375357Z patching file drivers/net/ethernet/netronome/nfp/flower/offload.c
2025-10-02T15:24:51.4377776Z patching file drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.c
2025-10-02T15:24:51.4379748Z patching file drivers/net/ethernet/netronome/nfp/nfp_asm.c
2025-10-02T15:24:51.4380544Z patching file drivers/net/ethernet/netronome/nfp/nfp_devlink.c
2025-10-02T15:24:51.4382104Z patching file drivers/net/ethernet/netronome/nfp/nfp_net.h
2025-10-02T15:24:51.4384291Z patching file drivers/net/ethernet/netronome/nfp/nfp_net_common.c
2025-10-02T15:24:51.4387252Z patching file drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.c
2025-10-02T15:24:51.4389373Z patching file drivers/net/ethernet/netronome/nfp/nfpcore/nfp6000_pcie.c
2025-10-02T15:24:51.4391402Z patching file drivers/net/ethernet/netronome/nfp/nfpcore/nfp_cppcore.c
2025-10-02T15:24:51.4393217Z patching file drivers/net/ethernet/ni/nixge.c
2025-10-02T15:24:51.4396880Z patching file drivers/net/ethernet/nvidia/forcedeth.c
2025-10-02T15:24:51.4401091Z patching file drivers/net/ethernet/nxp/lpc_eth.c
2025-10-02T15:24:51.4403797Z patching file drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c
2025-10-02T15:24:51.4406800Z patching file drivers/net/ethernet/pasemi/pasemi_mac.c
2025-10-02T15:24:51.4408832Z patching file drivers/net/ethernet/pensando/ionic/ionic_bus_pci.c
2025-10-02T15:24:51.4410017Z patching file drivers/net/ethernet/pensando/ionic/ionic_dev.c
2025-10-02T15:24:51.4411227Z patching file drivers/net/ethernet/pensando/ionic/ionic_dev.h
2025-10-02T15:24:51.4412268Z patching file drivers/net/ethernet/pensando/ionic/ionic_devlink.c
2025-10-02T15:24:51.4413355Z patching file drivers/net/ethernet/pensando/ionic/ionic_ethtool.c
2025-10-02T15:24:51.4415651Z patching file drivers/net/ethernet/pensando/ionic/ionic_lif.c
2025-10-02T15:24:51.4418882Z patching file drivers/net/ethernet/pensando/ionic/ionic_main.c
2025-10-02T15:24:51.4420396Z patching file drivers/net/ethernet/pensando/ionic/ionic_txrx.c
2025-10-02T15:24:51.4422537Z patching file drivers/net/ethernet/qlogic/Kconfig
2025-10-02T15:24:51.4424418Z patching file drivers/net/ethernet/qlogic/netxen/netxen_nic_main.c
2025-10-02T15:24:51.4427689Z patching file drivers/net/ethernet/qlogic/qed/qed_cxt.c
2025-10-02T15:24:51.4430596Z patching file drivers/net/ethernet/qlogic/qed/qed_dcbx.c
2025-10-02T15:24:51.4434717Z patching file drivers/net/ethernet/qlogic/qed/qed_debug.c
2025-10-02T15:24:51.4440575Z patching file drivers/net/ethernet/qlogic/qed/qed_dev.c
2025-10-02T15:24:51.4444694Z patching file drivers/net/ethernet/qlogic/qed/qed_iwarp.c
2025-10-02T15:24:51.4447925Z patching file drivers/net/ethernet/qlogic/qed/qed_l2.c
2025-10-02T15:24:51.4451199Z patching file drivers/net/ethernet/qlogic/qed/qed_ll2.c
2025-10-02T15:24:51.4453764Z patching file drivers/net/ethernet/qlogic/qed/qed_ll2.h
2025-10-02T15:24:51.4455516Z patching file drivers/net/ethernet/qlogic/qed/qed_main.c
2025-10-02T15:24:51.4467208Z patching file drivers/net/ethernet/qlogic/qed/qed_mcp.c
2025-10-02T15:24:51.4468411Z patching file drivers/net/ethernet/qlogic/qed/qed_mng_tlv.c
2025-10-02T15:24:51.4468957Z patching file drivers/net/ethernet/qlogic/qed/qed_rdma.c
2025-10-02T15:24:51.4469650Z patching file drivers/net/ethernet/qlogic/qed/qed_roce.c
2025-10-02T15:24:51.4471062Z patching file drivers/net/ethernet/qlogic/qed/qed_sriov.c
2025-10-02T15:24:51.4475415Z patching file drivers/net/ethernet/qlogic/qed/qed_sriov.h
2025-10-02T15:24:51.4476644Z patching file drivers/net/ethernet/qlogic/qed/qed_vf.c
2025-10-02T15:24:51.4478714Z patching file drivers/net/ethernet/qlogic/qede/qede.h
2025-10-02T15:24:51.4480709Z patching file drivers/net/ethernet/qlogic/qede/qede_ethtool.c
2025-10-02T15:24:51.4483440Z patching file drivers/net/ethernet/qlogic/qede/qede_filter.c
2025-10-02T15:24:51.4486465Z patching file drivers/net/ethernet/qlogic/qede/qede_fp.c
2025-10-02T15:24:51.4490785Z patching file drivers/net/ethernet/qlogic/qede/qede_main.c
2025-10-02T15:24:51.4493162Z patching file drivers/net/ethernet/qlogic/qla3xxx.c
2025-10-02T15:24:51.4499292Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.c
2025-10-02T15:24:51.4503593Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c
2025-10-02T15:24:51.4506085Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_ctx.c
2025-10-02T15:24:51.4507718Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_dcb.h
2025-10-02T15:24:51.4509688Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_ethtool.c
2025-10-02T15:24:51.4511752Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_init.c
2025-10-02T15:24:51.4513707Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c
2025-10-02T15:24:51.4516859Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c
2025-10-02T15:24:51.4520751Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_minidump.c
2025-10-02T15:24:51.4522332Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov.h
2025-10-02T15:24:51.4524024Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.c
2025-10-02T15:24:51.4526744Z patching file drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_pf.c
2025-10-02T15:24:51.4529436Z patching file drivers/net/ethernet/qualcomm/emac/emac-mac.c
2025-10-02T15:24:51.4531167Z patching file drivers/net/ethernet/qualcomm/emac/emac.c
2025-10-02T15:24:51.4533070Z patching file drivers/net/ethernet/qualcomm/qca_debug.c
2025-10-02T15:24:51.4535192Z patching file drivers/net/ethernet/qualcomm/qca_spi.c
2025-10-02T15:24:51.4536912Z patching file drivers/net/ethernet/qualcomm/qca_spi.h
2025-10-02T15:24:51.4537525Z patching file drivers/net/ethernet/qualcomm/qca_uart.c
2025-10-02T15:24:51.4538258Z patching file drivers/net/ethernet/qualcomm/rmnet/rmnet_config.c
2025-10-02T15:24:51.4539080Z patching file drivers/net/ethernet/qualcomm/rmnet/rmnet_config.h
2025-10-02T15:24:51.4540003Z patching file drivers/net/ethernet/qualcomm/rmnet/rmnet_vnd.c
2025-10-02T15:24:51.4540883Z patching file drivers/net/ethernet/qualcomm/rmnet/rmnet_vnd.h
2025-10-02T15:24:51.4542046Z patching file drivers/net/ethernet/rdc/r6040.c
2025-10-02T15:24:51.4545164Z patching file drivers/net/ethernet/realtek/r8169_main.c
2025-10-02T15:24:51.4552005Z patching file drivers/net/ethernet/realtek/r8169_phy_config.c
2025-10-02T15:24:51.4554211Z patching file drivers/net/ethernet/renesas/ravb_main.c
2025-10-02T15:24:51.4557680Z patching file drivers/net/ethernet/renesas/sh_eth.c
2025-10-02T15:24:51.4561900Z patching file drivers/net/ethernet/rocker/rocker_main.c
2025-10-02T15:24:51.4565125Z patching file drivers/net/ethernet/rocker/rocker_ofdpa.c
2025-10-02T15:24:51.4568713Z patching file drivers/net/ethernet/samsung/sxgbe/sxgbe_main.c
2025-10-02T15:24:51.4570838Z patching file drivers/net/ethernet/seeq/ether3.c
2025-10-02T15:24:51.4573468Z patching file drivers/net/ethernet/sfc/ef10.c
2025-10-02T15:24:51.4577665Z patching file drivers/net/ethernet/sfc/ef100_netdev.c
2025-10-02T15:24:51.4579004Z patching file drivers/net/ethernet/sfc/ef100_nic.c
2025-10-02T15:24:51.4580960Z patching file drivers/net/ethernet/sfc/ef100_tx.c
2025-10-02T15:24:51.4582063Z patching file drivers/net/ethernet/sfc/ef10_sriov.c
2025-10-02T15:24:51.4583997Z patching file drivers/net/ethernet/sfc/efx.c
2025-10-02T15:24:51.4586438Z patching file drivers/net/ethernet/sfc/efx_channels.c
2025-10-02T15:24:51.4588744Z patching file drivers/net/ethernet/sfc/efx_common.c
2025-10-02T15:24:51.4590838Z patching file drivers/net/ethernet/sfc/efx_common.h
2025-10-02T15:24:51.4591973Z patching file drivers/net/ethernet/sfc/ethtool_common.c
2025-10-02T15:24:51.4594057Z patching file drivers/net/ethernet/sfc/falcon/rx.c
2025-10-02T15:24:51.4597152Z patching file drivers/net/ethernet/sfc/farch.c
2025-10-02T15:24:51.4599280Z patching file drivers/net/ethernet/sfc/filter.h
2025-10-02T15:24:51.4601124Z patching file drivers/net/ethernet/sfc/mcdi.c
2025-10-02T15:24:51.4603718Z patching file drivers/net/ethernet/sfc/mcdi_port_common.c
2025-10-02T15:24:51.4606265Z patching file drivers/net/ethernet/sfc/net_driver.h
2025-10-02T15:24:51.4608507Z patching file drivers/net/ethernet/sfc/nic.c
2025-10-02T15:24:51.4610436Z patching file drivers/net/ethernet/sfc/ptp.c
2025-10-02T15:24:51.4612993Z patching file drivers/net/ethernet/sfc/ptp.h
2025-10-02T15:24:51.4614066Z patching file drivers/net/ethernet/sfc/rx_common.c
2025-10-02T15:24:51.4616350Z patching file drivers/net/ethernet/sfc/siena_sriov.c
2025-10-02T15:24:51.4618581Z patching file drivers/net/ethernet/sfc/tx.c
2025-10-02T15:24:51.4620191Z patching file drivers/net/ethernet/sfc/tx_tso.c
2025-10-02T15:24:51.4621232Z patching file drivers/net/ethernet/sgi/ioc3-eth.c
2025-10-02T15:24:51.4623433Z patching file drivers/net/ethernet/sis/sis900.c
2025-10-02T15:24:51.4626411Z patching file drivers/net/ethernet/smsc/epic100.c
2025-10-02T15:24:51.4628774Z patching file drivers/net/ethernet/smsc/smc911x.c
2025-10-02T15:24:51.4631353Z patching file drivers/net/ethernet/smsc/smc91x.h
2025-10-02T15:24:51.4633605Z patching file drivers/net/ethernet/smsc/smsc911x.c
2025-10-02T15:24:51.4636433Z patching file drivers/net/ethernet/socionext/netsec.c
2025-10-02T15:24:51.4638944Z patching file drivers/net/ethernet/stmicro/stmmac/altr_tse_pcs.c
2025-10-02T15:24:51.4639926Z patching file drivers/net/ethernet/stmicro/stmmac/altr_tse_pcs.h
2025-10-02T15:24:51.4640974Z patching file drivers/net/ethernet/stmicro/stmmac/common.h
2025-10-02T15:24:51.4642482Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
2025-10-02T15:24:51.4644272Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-generic.c
2025-10-02T15:24:51.4644950Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-intel-plat.c
2025-10-02T15:24:51.4646296Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-intel.c
2025-10-02T15:24:51.4646972Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-ipq806x.c
2025-10-02T15:24:51.4648356Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-meson8b.c
2025-10-02T15:24:51.4650230Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
2025-10-02T15:24:51.4651424Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c
2025-10-02T15:24:51.4653619Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
2025-10-02T15:24:51.4655654Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-stm32.c
2025-10-02T15:24:51.4656508Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-sun8i.c
2025-10-02T15:24:51.4659856Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac-sunxi.c
2025-10-02T15:24:51.4660765Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac1000.h
2025-10-02T15:24:51.4661949Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac1000_dma.c
2025-10-02T15:24:51.4663495Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac4_core.c
2025-10-02T15:24:51.4665732Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac4_descs.c
2025-10-02T15:24:51.4667214Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.c
2025-10-02T15:24:51.4668846Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.c
2025-10-02T15:24:51.4670326Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac5.c
2025-10-02T15:24:51.4671520Z patching file drivers/net/ethernet/stmicro/stmmac/dwmac_dma.h
2025-10-02T15:24:51.4672613Z patching file drivers/net/ethernet/stmicro/stmmac/dwxgmac2.h
2025-10-02T15:24:51.4675326Z patching file drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.c
2025-10-02T15:24:51.4678350Z patching file drivers/net/ethernet/stmicro/stmmac/dwxgmac2_descs.c
2025-10-02T15:24:51.4679014Z patching file drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.c
2025-10-02T15:24:51.4680958Z patching file drivers/net/ethernet/stmicro/stmmac/enh_desc.c
2025-10-02T15:24:51.4682669Z patching file drivers/net/ethernet/stmicro/stmmac/hwif.h
2025-10-02T15:24:51.4684374Z patching file drivers/net/ethernet/stmicro/stmmac/mmc_core.c
2025-10-02T15:24:51.4685742Z patching file drivers/net/ethernet/stmicro/stmmac/norm_desc.c
2025-10-02T15:24:51.4687876Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac.h
2025-10-02T15:24:51.4688619Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c
2025-10-02T15:24:51.4691510Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.c
2025-10-02T15:24:51.4693182Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
2025-10-02T15:24:51.4700738Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c
2025-10-02T15:24:51.4702843Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c
2025-10-02T15:24:51.4704248Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
2025-10-02T15:24:51.4706201Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_ptp.h
2025-10-02T15:24:51.4707402Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.c
2025-10-02T15:24:51.4709929Z patching file drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c
2025-10-02T15:24:51.4711755Z patching file drivers/net/ethernet/sun/Kconfig
2025-10-02T15:24:51.4713893Z patching file drivers/net/ethernet/sun/cassini.c
2025-10-02T15:24:51.4717880Z patching file drivers/net/ethernet/sun/ldmvsw.c
2025-10-02T15:24:51.4721321Z patching file drivers/net/ethernet/sun/niu.c
2025-10-02T15:24:51.4728977Z patching file drivers/net/ethernet/sun/niu.h
2025-10-02T15:24:51.4732803Z patching file drivers/net/ethernet/sun/sungem.c
2025-10-02T15:24:51.4736318Z patching file drivers/net/ethernet/sun/sunhme.c
2025-10-02T15:24:51.4739433Z patching file drivers/net/ethernet/sun/sunvnet.c
2025-10-02T15:24:51.4741015Z patching file drivers/net/ethernet/tehuti/tehuti.c
2025-10-02T15:24:51.4744166Z patching file drivers/net/ethernet/ti/am65-cpsw-nuss.c
2025-10-02T15:24:51.4747612Z patching file drivers/net/ethernet/ti/am65-cpts.c
2025-10-02T15:24:51.4749449Z patching file drivers/net/ethernet/ti/cpsw.c
2025-10-02T15:24:51.4751779Z patching file drivers/net/ethernet/ti/cpsw_ale.c
2025-10-02T15:24:51.4753940Z patching file drivers/net/ethernet/ti/cpsw_new.c
2025-10-02T15:24:51.4756504Z patching file drivers/net/ethernet/ti/cpsw_priv.c
2025-10-02T15:24:51.4758187Z patching file drivers/net/ethernet/ti/cpsw_priv.h
2025-10-02T15:24:51.4759654Z patching file drivers/net/ethernet/ti/cpts.c
2025-10-02T15:24:51.4761624Z patching file drivers/net/ethernet/ti/davinci_emac.c
2025-10-02T15:24:51.4764249Z patching file drivers/net/ethernet/ti/netcp_core.c
2025-10-02T15:24:51.4767245Z patching file drivers/net/ethernet/ti/tlan.c
2025-10-02T15:24:51.4770566Z patching file drivers/net/ethernet/toshiba/ps3_gelic_net.c
2025-10-02T15:24:51.4773131Z patching file drivers/net/ethernet/toshiba/ps3_gelic_net.h
2025-10-02T15:24:51.4774457Z patching file drivers/net/ethernet/toshiba/ps3_gelic_wireless.c
2025-10-02T15:24:51.4777769Z patching file drivers/net/ethernet/toshiba/spider_net.c
2025-10-02T15:24:51.4780353Z patching file drivers/net/ethernet/tundra/tsi108_eth.c
2025-10-02T15:24:51.4782701Z patching file drivers/net/ethernet/wiznet/w5100.c
2025-10-02T15:24:51.4784356Z patching file drivers/net/ethernet/xilinx/ll_temac_main.c
2025-10-02T15:24:51.4786886Z patching file drivers/net/ethernet/xilinx/xilinx_axienet.h
2025-10-02T15:24:51.4788654Z patching file drivers/net/ethernet/xilinx/xilinx_axienet_main.c
2025-10-02T15:24:51.4793297Z patching file drivers/net/ethernet/xilinx/xilinx_emaclite.c
2025-10-02T15:24:51.4795687Z patching file drivers/net/ethernet/xircom/xirc2ps_cs.c
2025-10-02T15:24:51.4798021Z patching file drivers/net/ethernet/xscale/ixp4xx_eth.c
2025-10-02T15:24:51.4799843Z patching file drivers/net/fddi/Kconfig
2025-10-02T15:24:51.4801703Z patching file drivers/net/fddi/defxx.c
2025-10-02T15:24:51.4806697Z patching file drivers/net/fddi/defza.c
2025-10-02T15:24:51.4807473Z patching file drivers/net/fjes/fjes_hw.c
2025-10-02T15:24:51.4809989Z patching file drivers/net/fjes/fjes_main.c
2025-10-02T15:24:51.4812193Z patching file drivers/net/geneve.c
2025-10-02T15:24:51.4816018Z patching file drivers/net/gtp.c
2025-10-02T15:24:51.4818456Z patching file drivers/net/hamradio/6pack.c
2025-10-02T15:24:51.4820460Z patching file drivers/net/hamradio/baycom_epp.c
2025-10-02T15:24:51.4822006Z patching file drivers/net/hamradio/bpqether.c
2025-10-02T15:24:51.4823105Z patching file drivers/net/hamradio/mkiss.c
2025-10-02T15:24:51.4825002Z patching file drivers/net/hamradio/scc.c
2025-10-02T15:24:51.4827349Z patching file drivers/net/hamradio/yam.c
2025-10-02T15:24:51.4829213Z patching file drivers/net/hippi/rrunner.c
2025-10-02T15:24:51.4831089Z patching file drivers/net/hyperv/Kconfig
2025-10-02T15:24:51.4832090Z patching file drivers/net/hyperv/hyperv_net.h
2025-10-02T15:24:51.4834674Z patching file drivers/net/hyperv/netvsc.c
2025-10-02T15:24:51.4837461Z patching file drivers/net/hyperv/netvsc_drv.c
2025-10-02T15:24:51.4841475Z patching file drivers/net/hyperv/rndis_filter.c
2025-10-02T15:24:51.4842582Z patching file drivers/net/ieee802154/Kconfig
2025-10-02T15:24:51.4843412Z patching file drivers/net/ieee802154/adf7242.c
2025-10-02T15:24:51.4845091Z patching file drivers/net/ieee802154/at86rf230.c
2025-10-02T15:24:51.4846643Z patching file drivers/net/ieee802154/atusb.c
2025-10-02T15:24:51.4848395Z patching file drivers/net/ieee802154/ca8210.c
2025-10-02T15:24:51.4851019Z patching file drivers/net/ieee802154/cc2520.c
2025-10-02T15:24:51.4852151Z patching file drivers/net/ieee802154/mac802154_hwsim.c
2025-10-02T15:24:51.4853614Z patching file drivers/net/ieee802154/mcr20a.c
2025-10-02T15:24:51.4854735Z patching file drivers/net/ifb.c
2025-10-02T15:24:51.4856133Z patching file drivers/net/ipa/gsi.c
2025-10-02T15:24:51.4857742Z patching file drivers/net/ipa/gsi_private.h
2025-10-02T15:24:51.4858170Z patching file drivers/net/ipa/gsi_reg.h
2025-10-02T15:24:51.4859266Z patching file drivers/net/ipa/gsi_trans.c
2025-10-02T15:24:51.4860407Z patching file drivers/net/ipa/ipa.h
2025-10-02T15:24:51.4861203Z patching file drivers/net/ipa/ipa_cmd.c
2025-10-02T15:24:51.4862681Z patching file drivers/net/ipa/ipa_data.h
2025-10-02T15:24:51.4863647Z patching file drivers/net/ipa/ipa_endpoint.c
2025-10-02T15:24:51.4865297Z patching file drivers/net/ipa/ipa_endpoint.h
2025-10-02T15:24:51.4865962Z patching file drivers/net/ipa/ipa_main.c
2025-10-02T15:24:51.4867063Z patching file drivers/net/ipa/ipa_mem.c
2025-10-02T15:24:51.4867893Z patching file drivers/net/ipa/ipa_modem.c
2025-10-02T15:24:51.4868848Z patching file drivers/net/ipa/ipa_qmi.c
2025-10-02T15:24:51.4870107Z patching file drivers/net/ipa/ipa_qmi_msg.c
2025-10-02T15:24:51.4871160Z patching file drivers/net/ipa/ipa_qmi_msg.h
2025-10-02T15:24:51.4872089Z patching file drivers/net/ipa/ipa_table.c
2025-10-02T15:24:51.4873568Z patching file drivers/net/ipa/ipa_table.h
2025-10-02T15:24:51.4874207Z patching file drivers/net/ipvlan/ipvlan_core.c
2025-10-02T15:24:51.4875656Z patching file drivers/net/ipvlan/ipvlan_l3s.c
2025-10-02T15:24:51.4876305Z patching file drivers/net/ipvlan/ipvlan_main.c
2025-10-02T15:24:51.4877378Z patching file drivers/net/ipvlan/ipvtap.c
2025-10-02T15:24:51.4878038Z patching file drivers/net/loopback.c
2025-10-02T15:24:51.4880076Z patching file drivers/net/macsec.c
2025-10-02T15:24:51.4884507Z patching file drivers/net/macvlan.c
2025-10-02T15:24:51.4885969Z patching file drivers/net/macvtap.c
2025-10-02T15:24:51.4886462Z patching file drivers/net/mdio/mdio-aspeed.c
2025-10-02T15:24:51.4887223Z patching file drivers/net/mdio/mdio-bcm-unimac.c
2025-10-02T15:24:51.4887963Z patching file drivers/net/mdio/mdio-bitbang.c
2025-10-02T15:24:51.4888599Z patching file drivers/net/mdio/mdio-cavium.c
2025-10-02T15:24:51.4889212Z patching file drivers/net/mdio/mdio-gpio.c
2025-10-02T15:24:51.4890236Z patching file drivers/net/mdio/mdio-ipq4019.c
2025-10-02T15:24:51.4890919Z patching file drivers/net/mdio/mdio-ipq8064.c
2025-10-02T15:24:51.4891827Z patching file drivers/net/mdio/mdio-mscc-miim.c
2025-10-02T15:24:51.4892527Z patching file drivers/net/mdio/mdio-mux-bcm-iproc.c
2025-10-02T15:24:51.4893237Z patching file drivers/net/mdio/mdio-mux-gpio.c
2025-10-02T15:24:51.4893937Z patching file drivers/net/mdio/mdio-mux-meson-g12a.c
2025-10-02T15:24:51.4894755Z patching file drivers/net/mdio/mdio-mux-mmioreg.c
2025-10-02T15:24:51.4895436Z patching file drivers/net/mdio/mdio-mux-multiplexer.c
2025-10-02T15:24:51.4895983Z patching file drivers/net/mdio/mdio-mux.c
2025-10-02T15:24:51.4896900Z patching file drivers/net/mdio/mdio-mvusb.c
2025-10-02T15:24:51.4897476Z patching file drivers/net/mdio/mdio-octeon.c
2025-10-02T15:24:51.4898115Z patching file drivers/net/mdio/mdio-thunder.c
2025-10-02T15:24:51.4898810Z patching file drivers/net/mdio/mdio-xgene.c
2025-10-02T15:24:51.4899751Z patching file drivers/net/mdio/of_mdio.c
2025-10-02T15:24:51.4901350Z patching file drivers/net/net_failover.c
2025-10-02T15:24:51.4902119Z patching file drivers/net/netconsole.c
2025-10-02T15:24:51.4903441Z patching file drivers/net/netdevsim/bpf.c
2025-10-02T15:24:51.4904423Z patching file drivers/net/netdevsim/dev.c
2025-10-02T15:24:51.4905877Z patching file drivers/net/netdevsim/health.c
2025-10-02T15:24:51.4906401Z patching file drivers/net/netdevsim/ipsec.c
2025-10-02T15:24:51.4907349Z patching file drivers/net/netdevsim/netdev.c
2025-10-02T15:24:51.4908075Z patching file drivers/net/netdevsim/netdevsim.h
2025-10-02T15:24:51.4908779Z patching file drivers/net/netdevsim/udp_tunnels.c
2025-10-02T15:24:51.4909862Z patching file drivers/net/ntb_netdev.c
2025-10-02T15:24:51.4910991Z patching file drivers/net/phy/aquantia_main.c
2025-10-02T15:24:51.4912446Z patching file drivers/net/phy/at803x.c
2025-10-02T15:24:51.4913477Z patching file drivers/net/phy/bcm-phy-lib.c
2025-10-02T15:24:51.4914533Z patching file drivers/net/phy/bcm7xxx.c
2025-10-02T15:24:51.4915873Z patching file drivers/net/phy/bcm84881.c
2025-10-02T15:24:51.4916538Z patching file drivers/net/phy/broadcom.c
2025-10-02T15:24:51.4918653Z patching file drivers/net/phy/dp83640.c
2025-10-02T15:24:51.4920074Z patching file drivers/net/phy/dp83640_reg.h
2025-10-02T15:24:51.4921061Z patching file drivers/net/phy/dp83822.c
2025-10-02T15:24:51.4922642Z patching file drivers/net/phy/dp83848.c
2025-10-02T15:24:51.4923660Z patching file drivers/net/phy/dp83867.c
2025-10-02T15:24:51.4925414Z patching file drivers/net/phy/dp83869.c
2025-10-02T15:24:51.4926770Z patching file drivers/net/phy/dp83tc811.c
2025-10-02T15:24:51.4927824Z patching file drivers/net/phy/intel-xway.c
2025-10-02T15:24:51.4928843Z patching file drivers/net/phy/lxt.c
2025-10-02T15:24:51.4930655Z patching file drivers/net/phy/marvell.c
2025-10-02T15:24:51.4933292Z patching file drivers/net/phy/marvell10g.c
2025-10-02T15:24:51.4934660Z patching file drivers/net/phy/mdio_bus.c
2025-10-02T15:24:51.4936308Z patching file drivers/net/phy/mdio_device.c
2025-10-02T15:24:51.4980139Z patching file drivers/net/phy/mdio_devres.c
2025-10-02T15:24:51.4980812Z patching file drivers/net/phy/meson-gxl.c
2025-10-02T15:24:51.4981195Z patching file drivers/net/phy/micrel.c
2025-10-02T15:24:51.4981569Z patching file drivers/net/phy/microchip.c
2025-10-02T15:24:51.4981974Z patching file drivers/net/phy/microchip_t1.c
2025-10-02T15:24:51.4982337Z patching file drivers/net/phy/mscc/mscc.h
2025-10-02T15:24:51.4982727Z patching file drivers/net/phy/mscc/mscc_macsec.c
2025-10-02T15:24:51.4983116Z patching file drivers/net/phy/mscc/mscc_macsec.h
2025-10-02T15:24:51.4983490Z patching file drivers/net/phy/mscc/mscc_main.c
2025-10-02T15:24:51.4983870Z patching file drivers/net/phy/mscc/mscc_ptp.c
2025-10-02T15:24:51.4984232Z patching file drivers/net/phy/mscc/mscc_ptp.h
2025-10-02T15:24:51.4984588Z patching file drivers/net/phy/phy-core.c
2025-10-02T15:24:51.4984945Z patching file drivers/net/phy/phy.c
2025-10-02T15:24:51.4985323Z patching file drivers/net/phy/phy_device.c
2025-10-02T15:24:51.4985717Z patching file drivers/net/phy/phy_led_triggers.c
2025-10-02T15:24:51.4986073Z patching file drivers/net/phy/phylink.c
2025-10-02T15:24:51.4986415Z patching file drivers/net/phy/realtek.c
2025-10-02T15:24:51.4986762Z patching file drivers/net/phy/sfp-bus.c
2025-10-02T15:24:51.4987103Z patching file drivers/net/phy/sfp.c
2025-10-02T15:24:51.4987444Z patching file drivers/net/phy/smsc.c
2025-10-02T15:24:51.4987788Z patching file drivers/net/phy/vitesse.c
2025-10-02T15:24:51.4988175Z patching file drivers/net/phy/xilinx_gmii2rgmii.c
2025-10-02T15:24:51.4988526Z patching file drivers/net/plip/plip.c
2025-10-02T15:24:51.4988882Z patching file drivers/net/ppp/ppp_async.c
2025-10-02T15:24:51.4989247Z patching file drivers/net/ppp/ppp_generic.c
2025-10-02T15:24:51.4990778Z patching file drivers/net/ppp/ppp_synctty.c
2025-10-02T15:24:51.4991155Z patching file drivers/net/ppp/pptp.c
2025-10-02T15:24:51.4991506Z patching file drivers/net/slip/slhc.c
2025-10-02T15:24:51.4992097Z patching file drivers/net/slip/slip.c
2025-10-02T15:24:51.4992452Z patching file drivers/net/sungem_phy.c
2025-10-02T15:24:51.4992788Z patching file drivers/net/tap.c
2025-10-02T15:24:51.4994107Z patching file drivers/net/team/team.c
2025-10-02T15:24:51.4994482Z patching file drivers/net/thunderbolt.c
2025-10-02T15:24:51.4997063Z patching file drivers/net/tun.c
2025-10-02T15:24:51.5001801Z patching file drivers/net/usb/Kconfig
2025-10-02T15:24:51.5003908Z patching file drivers/net/usb/aqc111.c
2025-10-02T15:24:51.5005913Z patching file drivers/net/usb/ax88172a.c
2025-10-02T15:24:51.5007949Z patching file drivers/net/usb/ax88179_178a.c
2025-10-02T15:24:51.5010073Z patching file drivers/net/usb/cdc-phonet.c
2025-10-02T15:24:51.5012172Z patching file drivers/net/usb/cdc_eem.c
2025-10-02T15:24:51.5013261Z patching file drivers/net/usb/cdc_ether.c
2025-10-02T15:24:51.5013931Z patching file drivers/net/usb/cdc_mbim.c
2025-10-02T15:24:51.5014573Z patching file drivers/net/usb/cdc_ncm.c
2025-10-02T15:24:51.5015181Z patching file drivers/net/usb/ch9200.c
2025-10-02T15:24:51.5015837Z patching file drivers/net/usb/cx82310_eth.c
2025-10-02T15:24:51.5016302Z patching file drivers/net/usb/dm9601.c
2025-10-02T15:24:51.5017522Z patching file drivers/net/usb/gl620a.c
2025-10-02T15:24:51.5017983Z patching file drivers/net/usb/hso.c
2025-10-02T15:24:51.5021239Z patching file drivers/net/usb/ipheth.c
2025-10-02T15:24:51.5021866Z patching file drivers/net/usb/kalmia.c
2025-10-02T15:24:51.5022720Z patching file drivers/net/usb/kaweth.c
2025-10-02T15:24:51.5024770Z patching file drivers/net/usb/lan78xx.c
2025-10-02T15:24:51.5031002Z patching file drivers/net/usb/mcs7830.c
2025-10-02T15:24:51.5032431Z patching file drivers/net/usb/pegasus.c
2025-10-02T15:24:51.5033989Z patching file drivers/net/usb/plusb.c
2025-10-02T15:24:51.5035034Z patching file drivers/net/usb/qmi_wwan.c
2025-10-02T15:24:51.5039075Z patching file drivers/net/usb/r8152.c
2025-10-02T15:24:51.5044597Z patching file drivers/net/usb/rndis_host.c
2025-10-02T15:24:51.5045954Z patching file drivers/net/usb/rtl8150.c
2025-10-02T15:24:51.5047770Z patching file drivers/net/usb/sierra_net.c
2025-10-02T15:24:51.5049380Z patching file drivers/net/usb/smsc75xx.c
2025-10-02T15:24:51.5052439Z patching file drivers/net/usb/smsc95xx.c
2025-10-02T15:24:51.5054958Z patching file drivers/net/usb/sr9700.c
2025-10-02T15:24:51.5056110Z patching file drivers/net/usb/sr9800.c
2025-10-02T15:24:51.5057657Z patching file drivers/net/usb/usbnet.c
2025-10-02T15:24:51.5059973Z patching file drivers/net/usb/zaurus.c
2025-10-02T15:24:51.5061538Z patching file drivers/net/veth.c
2025-10-02T15:24:51.5063700Z patching file drivers/net/virtio_net.c
2025-10-02T15:24:51.5068714Z patching file drivers/net/vmxnet3/vmxnet3_drv.c
2025-10-02T15:24:51.5072440Z patching file drivers/net/vmxnet3/vmxnet3_ethtool.c
2025-10-02T15:24:51.5074639Z patching file drivers/net/vrf.c
2025-10-02T15:24:51.5078167Z patching file drivers/net/vxlan.c
2025-10-02T15:24:51.5088787Z patching file drivers/net/vxlan/Makefile
2025-10-02T15:24:51.5089833Z patching file drivers/net/vxlan/vxlan_core.c
2025-10-02T15:24:51.5101037Z patching file drivers/net/wan/Kconfig
2025-10-02T15:24:51.5102629Z patching file drivers/net/wan/farsync.c
2025-10-02T15:24:51.5105182Z patching file drivers/net/wan/fsl_ucc_hdlc.c
2025-10-02T15:24:51.5106921Z patching file drivers/net/wan/hdlc_ppp.c
2025-10-02T15:24:51.5108650Z patching file drivers/net/wan/hdlc_x25.c
2025-10-02T15:24:51.5110100Z patching file drivers/net/wan/lapbether.c
2025-10-02T15:24:51.5112159Z patching file drivers/net/wan/lmc/lmc_main.c
2025-10-02T15:24:51.5115784Z patching file drivers/net/wimax/i2400m/op-rfkill.c
2025-10-02T15:24:51.5116177Z patching file drivers/net/wireguard/Makefile
2025-10-02T15:24:51.5116570Z patching file drivers/net/wireguard/allowedips.c
2025-10-02T15:24:51.5117571Z patching file drivers/net/wireguard/allowedips.h
2025-10-02T15:24:51.5118399Z patching file drivers/net/wireguard/device.c
2025-10-02T15:24:51.5120482Z patching file drivers/net/wireguard/device.h
2025-10-02T15:24:51.5121343Z patching file drivers/net/wireguard/main.c
2025-10-02T15:24:51.5122296Z patching file drivers/net/wireguard/netlink.c
2025-10-02T15:24:51.5124126Z patching file drivers/net/wireguard/noise.c
2025-10-02T15:24:51.5125686Z patching file drivers/net/wireguard/peer.c
2025-10-02T15:24:51.5127110Z patching file drivers/net/wireguard/peer.h
2025-10-02T15:24:51.5127771Z patching file drivers/net/wireguard/queueing.c
2025-10-02T15:24:51.5129062Z patching file drivers/net/wireguard/queueing.h
2025-10-02T15:24:51.5148867Z patching file drivers/net/wireguard/ratelimiter.c
2025-10-02T15:24:51.5149266Z patching file drivers/net/wireguard/receive.c
2025-10-02T15:24:51.5149905Z patching file drivers/net/wireguard/selftest/allowedips.c
2025-10-02T15:24:51.5150359Z patching file drivers/net/wireguard/selftest/ratelimiter.c
2025-10-02T15:24:51.5150750Z patching file drivers/net/wireguard/send.c
2025-10-02T15:24:51.5151122Z patching file drivers/net/wireguard/socket.c
2025-10-02T15:24:51.5151494Z patching file drivers/net/wireguard/timers.c
2025-10-02T15:24:51.5151900Z patching file drivers/net/wireless/admtek/adm8211.c
2025-10-02T15:24:51.5152316Z patching file drivers/net/wireless/ath/ar5523/ar5523.c
2025-10-02T15:24:51.5152680Z patching file drivers/net/wireless/ath/ath.h
2025-10-02T15:24:51.5153071Z patching file drivers/net/wireless/ath/ath10k/ahb.c
2025-10-02T15:24:51.5153468Z patching file drivers/net/wireless/ath/ath10k/core.c
2025-10-02T15:24:51.5153868Z patching file drivers/net/wireless/ath/ath10k/core.h
2025-10-02T15:24:51.5154307Z patching file drivers/net/wireless/ath/ath10k/debug.c
2025-10-02T15:24:51.5156835Z patching file drivers/net/wireless/ath/ath10k/debugfs_sta.c
2025-10-02T15:24:51.5157972Z patching file drivers/net/wireless/ath/ath10k/htc.c
2025-10-02T15:24:51.5159861Z patching file drivers/net/wireless/ath/ath10k/htt.h
2025-10-02T15:24:51.5163093Z patching file drivers/net/wireless/ath/ath10k/htt_rx.c
2025-10-02T15:24:51.5170476Z patching file drivers/net/wireless/ath/ath10k/htt_tx.c
2025-10-02T15:24:51.5171085Z patching file drivers/net/wireless/ath/ath10k/hw.h
2025-10-02T15:24:51.5175095Z patching file drivers/net/wireless/ath/ath10k/mac.c
2025-10-02T15:24:51.5182027Z patching file drivers/net/wireless/ath/ath10k/pci.c
2025-10-02T15:24:51.5185463Z patching file drivers/net/wireless/ath/ath10k/rx_desc.h
2025-10-02T15:24:51.5187181Z patching file drivers/net/wireless/ath/ath10k/sdio.c
2025-10-02T15:24:51.5189732Z patching file drivers/net/wireless/ath/ath10k/snoc.c
2025-10-02T15:24:51.5191661Z patching file drivers/net/wireless/ath/ath10k/targaddrs.h
2025-10-02T15:24:51.5192624Z patching file drivers/net/wireless/ath/ath10k/txrx.c
2025-10-02T15:24:51.5193702Z patching file drivers/net/wireless/ath/ath10k/usb.c
2025-10-02T15:24:51.5196073Z patching file drivers/net/wireless/ath/ath10k/wmi-tlv.c
2025-10-02T15:24:51.5201880Z patching file drivers/net/wireless/ath/ath10k/wmi.c
2025-10-02T15:24:51.5208757Z patching file drivers/net/wireless/ath/ath10k/wmi.h
2025-10-02T15:24:51.5214343Z patching file drivers/net/wireless/ath/ath10k/wow.c
2025-10-02T15:24:51.5215728Z patching file drivers/net/wireless/ath/ath11k/ahb.c
2025-10-02T15:24:51.5217662Z patching file drivers/net/wireless/ath/ath11k/core.c
2025-10-02T15:24:51.5218762Z patching file drivers/net/wireless/ath/ath11k/core.h
2025-10-02T15:24:51.5220238Z patching file drivers/net/wireless/ath/ath11k/dbring.c
2025-10-02T15:24:51.5221632Z patching file drivers/net/wireless/ath/ath11k/debug.h
2025-10-02T15:24:51.5222316Z patching file drivers/net/wireless/ath/ath11k/debugfs.c
2025-10-02T15:24:51.5223891Z patching file drivers/net/wireless/ath/ath11k/dp.h
2025-10-02T15:24:51.5227456Z patching file drivers/net/wireless/ath/ath11k/dp_rx.c
2025-10-02T15:24:51.5231968Z patching file drivers/net/wireless/ath/ath11k/dp_rx.h
2025-10-02T15:24:51.5232806Z patching file drivers/net/wireless/ath/ath11k/dp_tx.c
2025-10-02T15:24:51.5235474Z patching file drivers/net/wireless/ath/ath11k/hal.c
2025-10-02T15:24:51.5236333Z patching file drivers/net/wireless/ath/ath11k/hal.h
2025-10-02T15:24:51.5237750Z patching file drivers/net/wireless/ath/ath11k/hw.c
2025-10-02T15:24:51.5241106Z patching file drivers/net/wireless/ath/ath11k/mac.c
2025-10-02T15:24:51.5245059Z patching file drivers/net/wireless/ath/ath11k/mhi.c
2025-10-02T15:24:51.5245983Z patching file drivers/net/wireless/ath/ath11k/pci.c
2025-10-02T15:24:51.5247355Z patching file drivers/net/wireless/ath/ath11k/peer.c
2025-10-02T15:24:51.5248137Z patching file drivers/net/wireless/ath/ath11k/peer.h
2025-10-02T15:24:51.5249195Z patching file drivers/net/wireless/ath/ath11k/qmi.c
2025-10-02T15:24:51.5251328Z patching file drivers/net/wireless/ath/ath11k/qmi.h
2025-10-02T15:24:51.5252205Z patching file drivers/net/wireless/ath/ath11k/reg.c
2025-10-02T15:24:51.5253657Z patching file drivers/net/wireless/ath/ath11k/reg.h
2025-10-02T15:24:51.5254516Z patching file drivers/net/wireless/ath/ath11k/spectral.c
2025-10-02T15:24:51.5257239Z patching file drivers/net/wireless/ath/ath11k/wmi.c
2025-10-02T15:24:51.5262625Z patching file drivers/net/wireless/ath/ath11k/wmi.h
2025-10-02T15:24:51.5265460Z patching file drivers/net/wireless/ath/ath5k/Kconfig
2025-10-02T15:24:51.5266204Z patching file drivers/net/wireless/ath/ath5k/eeprom.c
2025-10-02T15:24:51.5267516Z patching file drivers/net/wireless/ath/ath5k/led.c
2025-10-02T15:24:51.5268445Z patching file drivers/net/wireless/ath/ath5k/mac80211-ops.c
2025-10-02T15:24:51.5269723Z patching file drivers/net/wireless/ath/ath5k/pci.c
2025-10-02T15:24:51.5270334Z patching file drivers/net/wireless/ath/ath6kl/bmi.c
2025-10-02T15:24:51.5271585Z patching file drivers/net/wireless/ath/ath6kl/debug.c
2025-10-02T15:24:51.5273189Z patching file drivers/net/wireless/ath/ath6kl/htc.h
2025-10-02T15:24:51.5274675Z patching file drivers/net/wireless/ath/ath6kl/htc_mbox.c
2025-10-02T15:24:51.5276842Z patching file drivers/net/wireless/ath/ath6kl/htc_pipe.c
2025-10-02T15:24:51.5278164Z patching file drivers/net/wireless/ath/ath6kl/usb.c
2025-10-02T15:24:51.5280399Z patching file drivers/net/wireless/ath/ath6kl/wmi.c
2025-10-02T15:24:51.5283099Z patching file drivers/net/wireless/ath/ath9k/Kconfig
2025-10-02T15:24:51.5284039Z patching file drivers/net/wireless/ath/ath9k/ahb.c
2025-10-02T15:24:51.5285306Z patching file drivers/net/wireless/ath/ath9k/antenna.c
2025-10-02T15:24:51.5287880Z patching file drivers/net/wireless/ath/ath9k/ar9003_eeprom.c
2025-10-02T15:24:51.5291558Z patching file drivers/net/wireless/ath/ath9k/ar9003_hw.c
2025-10-02T15:24:51.5293450Z patching file drivers/net/wireless/ath/ath9k/ar9003_phy.h
2025-10-02T15:24:51.5295325Z patching file drivers/net/wireless/ath/ath9k/ath9k.h
2025-10-02T15:24:51.5297032Z patching file drivers/net/wireless/ath/ath9k/debug.c
2025-10-02T15:24:51.5299109Z patching file drivers/net/wireless/ath/ath9k/hif_usb.c
2025-10-02T15:24:51.5301948Z patching file drivers/net/wireless/ath/ath9k/htc.h
2025-10-02T15:24:51.5303726Z patching file drivers/net/wireless/ath/ath9k/htc_drv_beacon.c
2025-10-02T15:24:51.5304842Z patching file drivers/net/wireless/ath/ath9k/htc_drv_debug.c
2025-10-02T15:24:51.5306538Z patching file drivers/net/wireless/ath/ath9k/htc_drv_init.c
2025-10-02T15:24:51.5308644Z patching file drivers/net/wireless/ath/ath9k/htc_drv_main.c
2025-10-02T15:24:51.5311152Z patching file drivers/net/wireless/ath/ath9k/htc_drv_txrx.c
2025-10-02T15:24:51.5313109Z patching file drivers/net/wireless/ath/ath9k/htc_hst.c
2025-10-02T15:24:51.5315589Z patching file drivers/net/wireless/ath/ath9k/hw.c
2025-10-02T15:24:51.5318450Z patching file drivers/net/wireless/ath/ath9k/hw.h
2025-10-02T15:24:51.5320262Z patching file drivers/net/wireless/ath/ath9k/mac.h
2025-10-02T15:24:51.5322418Z patching file drivers/net/wireless/ath/ath9k/main.c
2025-10-02T15:24:51.5325322Z patching file drivers/net/wireless/ath/ath9k/pci.c
2025-10-02T15:24:51.5326842Z patching file drivers/net/wireless/ath/ath9k/wmi.c
2025-10-02T15:24:51.5329093Z patching file drivers/net/wireless/ath/ath9k/xmit.c
2025-10-02T15:24:51.5331907Z patching file drivers/net/wireless/ath/carl9170/Kconfig
2025-10-02T15:24:51.5333231Z patching file drivers/net/wireless/ath/carl9170/main.c
2025-10-02T15:24:51.5335456Z patching file drivers/net/wireless/ath/carl9170/tx.c
2025-10-02T15:24:51.5337387Z patching file drivers/net/wireless/ath/carl9170/usb.c
2025-10-02T15:24:51.5339210Z patching file drivers/net/wireless/ath/dfs_pattern_detector.c
2025-10-02T15:24:51.5340265Z patching file drivers/net/wireless/ath/key.c
2025-10-02T15:24:51.5342089Z patching file drivers/net/wireless/ath/regd.c
2025-10-02T15:24:51.5343646Z patching file drivers/net/wireless/ath/wcn36xx/dxe.c
2025-10-02T15:24:51.5346155Z patching file drivers/net/wireless/ath/wcn36xx/main.c
2025-10-02T15:24:51.5348428Z patching file drivers/net/wireless/ath/wcn36xx/pmc.c
2025-10-02T15:24:51.5349956Z patching file drivers/net/wireless/ath/wcn36xx/smd.c
2025-10-02T15:24:51.5352823Z patching file drivers/net/wireless/ath/wcn36xx/txrx.c
2025-10-02T15:24:51.5354657Z patching file drivers/net/wireless/ath/wcn36xx/txrx.h
2025-10-02T15:24:51.5355266Z patching file drivers/net/wireless/ath/wcn36xx/wcn36xx.h
2025-10-02T15:24:51.5356525Z patching file drivers/net/wireless/ath/wil6210/Kconfig
2025-10-02T15:24:51.5358212Z patching file drivers/net/wireless/ath/wil6210/debugfs.c
2025-10-02T15:24:51.5361268Z patching file drivers/net/wireless/ath/wil6210/txrx.c
2025-10-02T15:24:51.5363601Z patching file drivers/net/wireless/ath/wil6210/txrx.h
2025-10-02T15:24:51.5365297Z patching file drivers/net/wireless/ath/wil6210/txrx_edma.c
2025-10-02T15:24:51.5367198Z patching file drivers/net/wireless/ath/wil6210/txrx_edma.h
2025-10-02T15:24:51.5369106Z patching file drivers/net/wireless/atmel/at76c50x-usb.c
2025-10-02T15:24:51.5371498Z patching file drivers/net/wireless/atmel/atmel_cs.c
2025-10-02T15:24:51.5372815Z patching file drivers/net/wireless/broadcom/b43/b43.h
2025-10-02T15:24:51.5375149Z patching file drivers/net/wireless/broadcom/b43/dma.c
2025-10-02T15:24:51.5378427Z patching file drivers/net/wireless/broadcom/b43/main.c
2025-10-02T15:24:51.5382967Z patching file drivers/net/wireless/broadcom/b43/phy_g.c
2025-10-02T15:24:51.5387105Z patching file drivers/net/wireless/broadcom/b43/phy_n.c
2025-10-02T15:24:51.5391388Z patching file drivers/net/wireless/broadcom/b43/pio.c
2025-10-02T15:24:51.5393106Z patching file drivers/net/wireless/broadcom/b43legacy/b43legacy.h
2025-10-02T15:24:51.5395013Z patching file drivers/net/wireless/broadcom/b43legacy/phy.c
2025-10-02T15:24:51.5397544Z patching file drivers/net/wireless/broadcom/b43legacy/radio.c
2025-10-02T15:24:51.5399777Z patching file drivers/net/wireless/broadcom/brcm80211/Kconfig
2025-10-02T15:24:51.5400867Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.c
2025-10-02T15:24:51.5402732Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/bus.h
2025-10-02T15:24:51.5405787Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.c
2025-10-02T15:24:51.5410861Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/common.c
2025-10-02T15:24:51.5412203Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/core.c
2025-10-02T15:24:51.5414358Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/dmi.c
2025-10-02T15:24:51.5415490Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/firmware.c
2025-10-02T15:24:51.5417199Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/fweh.c
2025-10-02T15:24:51.5418469Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/msgbuf.c
2025-10-02T15:24:51.5421150Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.c
2025-10-02T15:24:51.5423723Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.h
2025-10-02T15:24:51.5424466Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/pno.c
2025-10-02T15:24:51.5427079Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.c
2025-10-02T15:24:51.5430762Z patching file drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.c
2025-10-02T15:24:51.5433072Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/mac80211_if.c
2025-10-02T15:24:51.5435861Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_cmn.c
2025-10-02T15:24:51.5439161Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_lcn.c
2025-10-02T15:24:51.5453886Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.c
2025-10-02T15:24:51.5468716Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy_shim.c
2025-10-02T15:24:51.5469638Z patching file drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy_shim.h
2025-10-02T15:24:51.5472196Z patching file drivers/net/wireless/cisco/airo.c
2025-10-02T15:24:51.5479919Z patching file drivers/net/wireless/intel/ipw2x00/ipw2200.c
2025-10-02T15:24:51.5487883Z patching file drivers/net/wireless/intel/ipw2x00/libipw_rx.c
2025-10-02T15:24:51.5490157Z patching file drivers/net/wireless/intel/ipw2x00/libipw_tx.c
2025-10-02T15:24:51.5491540Z patching file drivers/net/wireless/intel/ipw2x00/libipw_wx.c
2025-10-02T15:24:51.5493980Z patching file drivers/net/wireless/intel/iwlegacy/3945-mac.c
2025-10-02T15:24:51.5498551Z patching file drivers/net/wireless/intel/iwlegacy/4965-mac.c
2025-10-02T15:24:51.5503128Z patching file drivers/net/wireless/intel/iwlegacy/4965-rs.c
2025-10-02T15:24:51.5506619Z patching file drivers/net/wireless/intel/iwlegacy/common.c
2025-10-02T15:24:51.5509361Z patching file drivers/net/wireless/intel/iwlwifi/cfg/22000.c
2025-10-02T15:24:51.5511022Z patching file drivers/net/wireless/intel/iwlwifi/dvm/mac80211.c
2025-10-02T15:24:51.5513154Z patching file drivers/net/wireless/intel/iwlwifi/dvm/main.c
2025-10-02T15:24:51.5525450Z patching file drivers/net/wireless/intel/iwlwifi/dvm/rs.c
2025-10-02T15:24:51.5526145Z patching file drivers/net/wireless/intel/iwlwifi/dvm/sta.c
2025-10-02T15:24:51.5526802Z patching file drivers/net/wireless/intel/iwlwifi/fw/acpi.c
2025-10-02T15:24:51.5528072Z patching file drivers/net/wireless/intel/iwlwifi/fw/acpi.h
2025-10-02T15:24:51.5528855Z patching file drivers/net/wireless/intel/iwlwifi/fw/api/commands.h
2025-10-02T15:24:51.5530079Z patching file drivers/net/wireless/intel/iwlwifi/fw/api/nvm-reg.h
2025-10-02T15:24:51.5530917Z patching file drivers/net/wireless/intel/iwlwifi/fw/api/scan.h
2025-10-02T15:24:51.5531587Z patching file drivers/net/wireless/intel/iwlwifi/fw/dbg.c
2025-10-02T15:24:51.5532452Z patching file drivers/net/wireless/intel/iwlwifi/fw/debugfs.c
2025-10-02T15:24:51.5533345Z patching file drivers/net/wireless/intel/iwlwifi/fw/error-dump.h
2025-10-02T15:24:51.5534364Z patching file drivers/net/wireless/intel/iwlwifi/fw/file.h
2025-10-02T15:24:51.5535667Z patching file drivers/net/wireless/intel/iwlwifi/fw/pnvm.c
2025-10-02T15:24:51.5536317Z patching file drivers/net/wireless/intel/iwlwifi/fw/pnvm.h
2025-10-02T15:24:51.5537197Z patching file drivers/net/wireless/intel/iwlwifi/fw/runtime.h
2025-10-02T15:24:51.5538071Z patching file drivers/net/wireless/intel/iwlwifi/iwl-config.h
2025-10-02T15:24:51.5538999Z patching file drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c
2025-10-02T15:24:51.5539751Z patching file drivers/net/wireless/intel/iwlwifi/iwl-drv.c
2025-10-02T15:24:51.5542266Z patching file drivers/net/wireless/intel/iwlwifi/iwl-drv.h
2025-10-02T15:24:51.5543257Z patching file drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c
2025-10-02T15:24:51.5544831Z patching file drivers/net/wireless/intel/iwlwifi/iwl-prph.h
2025-10-02T15:24:51.5546097Z patching file drivers/net/wireless/intel/iwlwifi/mvm/debugfs-vif.c
2025-10-02T15:24:51.5547343Z patching file drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c
2025-10-02T15:24:51.5549309Z patching file drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.c
2025-10-02T15:24:51.5550781Z patching file drivers/net/wireless/intel/iwlwifi/mvm/fw.c
2025-10-02T15:24:51.5553346Z patching file drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.c
2025-10-02T15:24:51.5555857Z patching file drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
2025-10-02T15:24:51.5560402Z patching file drivers/net/wireless/intel/iwlwifi/mvm/mvm.h
2025-10-02T15:24:51.5561745Z patching file drivers/net/wireless/intel/iwlwifi/mvm/nvm.c
2025-10-02T15:24:51.5563042Z patching file drivers/net/wireless/intel/iwlwifi/mvm/ops.c
2025-10-02T15:24:51.5565555Z patching file drivers/net/wireless/intel/iwlwifi/mvm/power.c
2025-10-02T15:24:51.5567072Z patching file drivers/net/wireless/intel/iwlwifi/mvm/rs.c
2025-10-02T15:24:51.5570773Z patching file drivers/net/wireless/intel/iwlwifi/mvm/rs.h
2025-10-02T15:24:51.5572633Z patching file drivers/net/wireless/intel/iwlwifi/mvm/rxmq.c
2025-10-02T15:24:51.5575406Z patching file drivers/net/wireless/intel/iwlwifi/mvm/scan.c
2025-10-02T15:24:51.5579751Z patching file drivers/net/wireless/intel/iwlwifi/mvm/sta.c
2025-10-02T15:24:51.5588485Z patching file drivers/net/wireless/intel/iwlwifi/mvm/time-event.c
2025-10-02T15:24:51.5588931Z patching file drivers/net/wireless/intel/iwlwifi/mvm/tx.c
2025-10-02T15:24:51.5589397Z patching file drivers/net/wireless/intel/iwlwifi/mvm/utils.c
2025-10-02T15:24:51.5590778Z patching file drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.c
2025-10-02T15:24:51.5592118Z patching file drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info.c
2025-10-02T15:24:51.5593385Z patching file drivers/net/wireless/intel/iwlwifi/pcie/drv.c
2025-10-02T15:24:51.5600522Z patching file drivers/net/wireless/intel/iwlwifi/pcie/internal.h
2025-10-02T15:24:51.5601149Z patching file drivers/net/wireless/intel/iwlwifi/pcie/rx.c
2025-10-02T15:24:51.5601647Z patching file drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.c
2025-10-02T15:24:51.5602111Z patching file drivers/net/wireless/intel/iwlwifi/pcie/trans.c
2025-10-02T15:24:51.5604153Z patching file drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c
2025-10-02T15:24:51.5606019Z patching file drivers/net/wireless/intel/iwlwifi/pcie/tx.c
2025-10-02T15:24:51.5608676Z patching file drivers/net/wireless/intel/iwlwifi/queue/tx.c
2025-10-02T15:24:51.5611029Z patching file drivers/net/wireless/intersil/orinoco/hw.c
2025-10-02T15:24:51.5612670Z patching file drivers/net/wireless/intersil/orinoco/orinoco_cs.c
2025-10-02T15:24:51.5614056Z patching file drivers/net/wireless/intersil/orinoco/orinoco_usb.c
2025-10-02T15:24:51.5616010Z patching file drivers/net/wireless/intersil/orinoco/spectrum_cs.c
2025-10-02T15:24:51.5617644Z patching file drivers/net/wireless/intersil/p54/fwio.c
2025-10-02T15:24:51.5625341Z patching file drivers/net/wireless/intersil/p54/main.c
2025-10-02T15:24:51.5625811Z patching file drivers/net/wireless/intersil/p54/p54.h
2025-10-02T15:24:51.5626247Z patching file drivers/net/wireless/intersil/p54/p54spi.c
2025-10-02T15:24:51.5626677Z patching file drivers/net/wireless/intersil/p54/txrx.c
2025-10-02T15:24:51.5627069Z patching file drivers/net/wireless/mac80211_hwsim.c
2025-10-02T15:24:51.5629839Z patching file drivers/net/wireless/marvell/libertas/Kconfig
2025-10-02T15:24:51.5631246Z patching file drivers/net/wireless/marvell/libertas/cfg.c
2025-10-02T15:24:51.5633565Z patching file drivers/net/wireless/marvell/libertas/cmd.c
2025-10-02T15:24:51.5635451Z patching file drivers/net/wireless/marvell/libertas/cmdresp.c
2025-10-02T15:24:51.5636750Z patching file drivers/net/wireless/marvell/libertas/if_usb.c
2025-10-02T15:24:51.5638460Z patching file drivers/net/wireless/marvell/libertas/main.c
2025-10-02T15:24:51.5640404Z patching file drivers/net/wireless/marvell/libertas/mesh.c
2025-10-02T15:24:51.5642439Z patching file drivers/net/wireless/marvell/libertas_tf/if_usb.c
2025-10-02T15:24:51.5644191Z patching file drivers/net/wireless/marvell/mwifiex/11h.c
2025-10-02T15:24:51.5645300Z patching file drivers/net/wireless/marvell/mwifiex/11n.c
2025-10-02T15:24:51.5647413Z patching file drivers/net/wireless/marvell/mwifiex/11n_rxreorder.c
2025-10-02T15:24:51.5649942Z patching file drivers/net/wireless/marvell/mwifiex/cfg80211.c
2025-10-02T15:24:51.5654069Z patching file drivers/net/wireless/marvell/mwifiex/debugfs.c
2025-10-02T15:24:51.5656187Z patching file drivers/net/wireless/marvell/mwifiex/fw.h
2025-10-02T15:24:51.5658303Z patching file drivers/net/wireless/marvell/mwifiex/ioctl.h
2025-10-02T15:24:51.5660174Z patching file drivers/net/wireless/marvell/mwifiex/join.c
2025-10-02T15:24:51.5662407Z patching file drivers/net/wireless/marvell/mwifiex/main.c
2025-10-02T15:24:51.5664962Z patching file drivers/net/wireless/marvell/mwifiex/main.h
2025-10-02T15:24:51.5668023Z patching file drivers/net/wireless/marvell/mwifiex/pcie.c
2025-10-02T15:24:51.5671876Z patching file drivers/net/wireless/marvell/mwifiex/pcie.h
2025-10-02T15:24:51.5673603Z patching file drivers/net/wireless/marvell/mwifiex/scan.c
2025-10-02T15:24:51.5677005Z patching file drivers/net/wireless/marvell/mwifiex/sdio.c
2025-10-02T15:24:51.5680552Z patching file drivers/net/wireless/marvell/mwifiex/sta_event.c
2025-10-02T15:24:51.5682027Z patching file drivers/net/wireless/marvell/mwifiex/sta_rx.c
2025-10-02T15:24:51.5683340Z patching file drivers/net/wireless/marvell/mwifiex/tdls.c
2025-10-02T15:24:51.5685553Z patching file drivers/net/wireless/marvell/mwifiex/uap_cmd.c
2025-10-02T15:24:51.5687217Z patching file drivers/net/wireless/marvell/mwifiex/uap_txrx.c
2025-10-02T15:24:51.5689193Z patching file drivers/net/wireless/marvell/mwifiex/usb.c
2025-10-02T15:24:51.5691377Z patching file drivers/net/wireless/marvell/mwifiex/util.c
2025-10-02T15:24:51.5694450Z patching file drivers/net/wireless/marvell/mwl8k.c
2025-10-02T15:24:51.5698759Z patching file drivers/net/wireless/mediatek/mt76/dma.c
2025-10-02T15:24:51.5701191Z patching file drivers/net/wireless/mediatek/mt76/mac80211.c
2025-10-02T15:24:51.5702896Z patching file drivers/net/wireless/mediatek/mt76/mt76.h
2025-10-02T15:24:51.5704588Z patching file drivers/net/wireless/mediatek/mt76/mt7603/core.c
2025-10-02T15:24:51.5705487Z patching file drivers/net/wireless/mediatek/mt76/mt7603/eeprom.c
2025-10-02T15:24:51.5706748Z patching file drivers/net/wireless/mediatek/mt76/mt7603/mac.c
2025-10-02T15:24:51.5708619Z patching file drivers/net/wireless/mediatek/mt76/mt7603/main.c
2025-10-02T15:24:51.5710138Z patching file drivers/net/wireless/mediatek/mt76/mt7603/pci.c
2025-10-02T15:24:51.5711373Z patching file drivers/net/wireless/mediatek/mt76/mt7615/dma.c
2025-10-02T15:24:51.5712535Z patching file drivers/net/wireless/mediatek/mt76/mt7615/eeprom.c
2025-10-02T15:24:51.5713867Z patching file drivers/net/wireless/mediatek/mt76/mt7615/mac.c
2025-10-02T15:24:51.5717013Z patching file drivers/net/wireless/mediatek/mt76/mt7615/main.c
2025-10-02T15:24:51.5719815Z patching file drivers/net/wireless/mediatek/mt76/mt7615/mcu.c
2025-10-02T15:24:51.5723369Z patching file drivers/net/wireless/mediatek/mt76/mt7615/mmio.c
2025-10-02T15:24:51.5724328Z patching file drivers/net/wireless/mediatek/mt76/mt7615/mt7615.h
2025-10-02T15:24:51.5726423Z patching file drivers/net/wireless/mediatek/mt76/mt7615/pci_init.c
2025-10-02T15:24:51.5727397Z patching file drivers/net/wireless/mediatek/mt76/mt7615/pci_mac.c
2025-10-02T15:24:51.5728290Z patching file drivers/net/wireless/mediatek/mt76/mt7615/sdio_txrx.c
2025-10-02T15:24:51.5729134Z patching file drivers/net/wireless/mediatek/mt76/mt7615/usb_sdio.c
2025-10-02T15:24:51.5730307Z patching file drivers/net/wireless/mediatek/mt76/mt76x0/eeprom.c
2025-10-02T15:24:51.5731601Z patching file drivers/net/wireless/mediatek/mt76/mt76x0/init.c
2025-10-02T15:24:51.5732838Z patching file drivers/net/wireless/mediatek/mt76/mt76x0/pci.c
2025-10-02T15:24:51.5733907Z patching file drivers/net/wireless/mediatek/mt76/mt76x0/phy.c
2025-10-02T15:24:51.5735622Z patching file drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.c
2025-10-02T15:24:51.5736735Z patching file drivers/net/wireless/mediatek/mt76/mt76x02_mac.c
2025-10-02T15:24:51.5738832Z patching file drivers/net/wireless/mediatek/mt76/mt76x02_usb_mcu.c
2025-10-02T15:24:51.5740194Z patching file drivers/net/wireless/mediatek/mt76/mt76x02_util.c
2025-10-02T15:24:51.5741385Z patching file drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.c
2025-10-02T15:24:51.5742624Z patching file drivers/net/wireless/mediatek/mt76/mt76x2/pci.c
2025-10-02T15:24:51.5743796Z patching file drivers/net/wireless/mediatek/mt76/mt76x2/usb.c
2025-10-02T15:24:51.5744678Z patching file drivers/net/wireless/mediatek/mt76/mt76x2/usb_init.c
2025-10-02T15:24:51.5745596Z patching file drivers/net/wireless/mediatek/mt76/mt7915/debugfs.c
2025-10-02T15:24:51.5746808Z patching file drivers/net/wireless/mediatek/mt76/mt7915/eeprom.c
2025-10-02T15:24:51.5748097Z patching file drivers/net/wireless/mediatek/mt76/mt7915/init.c
2025-10-02T15:24:51.5750186Z patching file drivers/net/wireless/mediatek/mt76/mt7915/mac.c
2025-10-02T15:24:51.5752196Z patching file drivers/net/wireless/mediatek/mt76/mt7915/main.c
2025-10-02T15:24:51.5754559Z patching file drivers/net/wireless/mediatek/mt76/mt7915/mcu.c
2025-10-02T15:24:51.5757856Z patching file drivers/net/wireless/mediatek/mt76/mt7915/mt7915.h
2025-10-02T15:24:51.5759254Z patching file drivers/net/wireless/mediatek/mt76/mt7915/pci.c
2025-10-02T15:24:51.5760194Z patching file drivers/net/wireless/mediatek/mt76/sdio.c
2025-10-02T15:24:51.5761068Z patching file drivers/net/wireless/mediatek/mt76/testmode.c
2025-10-02T15:24:51.5762497Z patching file drivers/net/wireless/mediatek/mt76/tx.c
2025-10-02T15:24:51.5763934Z patching file drivers/net/wireless/mediatek/mt76/usb.c
2025-10-02T15:24:51.5765507Z patching file drivers/net/wireless/mediatek/mt7601u/dma.c
2025-10-02T15:24:51.5767060Z patching file drivers/net/wireless/mediatek/mt7601u/eeprom.c
2025-10-02T15:24:51.5767698Z patching file drivers/net/wireless/mediatek/mt7601u/usb.c
2025-10-02T15:24:51.5769687Z patching file drivers/net/wireless/microchip/wilc1000/cfg80211.c
2025-10-02T15:24:51.5772743Z patching file drivers/net/wireless/microchip/wilc1000/hif.c
2025-10-02T15:24:51.5780600Z patching file drivers/net/wireless/microchip/wilc1000/netdev.c
2025-10-02T15:24:51.5781726Z patching file drivers/net/wireless/microchip/wilc1000/sdio.c
2025-10-02T15:24:51.5782836Z patching file drivers/net/wireless/quantenna/qtnfmac/core.c
2025-10-02T15:24:51.5783878Z patching file drivers/net/wireless/quantenna/qtnfmac/event.c
2025-10-02T15:24:51.5785126Z patching file drivers/net/wireless/quantenna/qtnfmac/pcie/pcie.c
2025-10-02T15:24:51.5786220Z patching file drivers/net/wireless/ralink/rt2x00/rt2800lib.c
2025-10-02T15:24:51.5792901Z patching file drivers/net/wireless/ralink/rt2x00/rt2x00dev.c
2025-10-02T15:24:51.5794449Z patching file drivers/net/wireless/ralink/rt2x00/rt2x00mac.c
2025-10-02T15:24:51.5796005Z patching file drivers/net/wireless/ralink/rt2x00/rt2x00usb.c
2025-10-02T15:24:51.5798413Z patching file drivers/net/wireless/ray_cs.c
2025-10-02T15:24:51.5801980Z patching file drivers/net/wireless/realtek/rtl818x/rtl8180/dev.c
2025-10-02T15:24:51.5804717Z patching file drivers/net/wireless/realtek/rtl818x/rtl8187/dev.c
2025-10-02T15:24:51.5806387Z patching file drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8225.c
2025-10-02T15:24:51.5808342Z patching file drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.h
2025-10-02T15:24:51.5811309Z patching file drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192e.c
2025-10-02T15:24:51.5815075Z patching file drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
2025-10-02T15:24:51.5821416Z patching file drivers/net/wireless/realtek/rtlwifi/base.c
2025-10-02T15:24:51.5824346Z patching file drivers/net/wireless/realtek/rtlwifi/base.h
2025-10-02T15:24:51.5825397Z patching file drivers/net/wireless/realtek/rtlwifi/core.c
2025-10-02T15:24:51.5827676Z patching file drivers/net/wireless/realtek/rtlwifi/debug.c
2025-10-02T15:24:51.5829717Z patching file drivers/net/wireless/realtek/rtlwifi/pci.c
2025-10-02T15:24:51.5833257Z patching file drivers/net/wireless/realtek/rtlwifi/pci.h
2025-10-02T15:24:51.5834362Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.c
2025-10-02T15:24:51.5837102Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8188ee/hw.c
2025-10-02T15:24:51.5840144Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8188ee/phy.c
2025-10-02T15:24:51.5843884Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.c
2025-10-02T15:24:51.5846493Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.c
2025-10-02T15:24:51.5848039Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.h
2025-10-02T15:24:51.5850098Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.c
2025-10-02T15:24:51.5851241Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.h
2025-10-02T15:24:51.5853323Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192cu/hw.c
2025-10-02T15:24:51.5854749Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192cu/phy.c
2025-10-02T15:24:51.5857319Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c
2025-10-02T15:24:51.5860845Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192de/trx.c
2025-10-02T15:24:51.5863177Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192de/trx.h
2025-10-02T15:24:51.5865414Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c
2025-10-02T15:24:51.5868327Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.c
2025-10-02T15:24:51.5871106Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8192se/sw.c
2025-10-02T15:24:51.5872529Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.c
2025-10-02T15:24:51.5873934Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8723ae/phy.c
2025-10-02T15:24:51.5876633Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.c
2025-10-02T15:24:51.5879965Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8723be/phy.c
2025-10-02T15:24:51.5882564Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/fw.h
2025-10-02T15:24:51.5885279Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.c
2025-10-02T15:24:51.5889123Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.c
2025-10-02T15:24:51.5893757Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/table.c
2025-10-02T15:24:51.5898221Z patching file drivers/net/wireless/realtek/rtlwifi/rtl8821ae/table.h
2025-10-02T15:24:51.5900720Z patching file drivers/net/wireless/realtek/rtlwifi/usb.c
2025-10-02T15:24:51.5902049Z patching file drivers/net/wireless/realtek/rtlwifi/wifi.h
2025-10-02T15:24:51.5904781Z patching file drivers/net/wireless/realtek/rtw88/Kconfig
2025-10-02T15:24:51.5906811Z patching file drivers/net/wireless/realtek/rtw88/Makefile
2025-10-02T15:24:51.5908098Z patching file drivers/net/wireless/realtek/rtw88/debug.c
2025-10-02T15:24:51.5909120Z patching file drivers/net/wireless/realtek/rtw88/fw.c
2025-10-02T15:24:51.5910746Z patching file drivers/net/wireless/realtek/rtw88/fw.h
2025-10-02T15:24:51.5912263Z patching file drivers/net/wireless/realtek/rtw88/mac.c
2025-10-02T15:24:51.5914037Z patching file drivers/net/wireless/realtek/rtw88/mac80211.c
2025-10-02T15:24:51.5915755Z patching file drivers/net/wireless/realtek/rtw88/main.c
2025-10-02T15:24:51.5918540Z patching file drivers/net/wireless/realtek/rtw88/main.h
2025-10-02T15:24:51.5920818Z patching file drivers/net/wireless/realtek/rtw88/phy.c
2025-10-02T15:24:51.5923264Z patching file drivers/net/wireless/realtek/rtw88/phy.h
2025-10-02T15:24:51.5924293Z patching file drivers/net/wireless/realtek/rtw88/reg.h
2025-10-02T15:24:51.5925942Z patching file drivers/net/wireless/realtek/rtw88/rtw8821c.c
2025-10-02T15:24:51.5928326Z patching file drivers/net/wireless/realtek/rtw88/rtw8821c.h
2025-10-02T15:24:51.5929896Z patching file drivers/net/wireless/realtek/rtw88/rtw8822b.c
2025-10-02T15:24:51.5933567Z patching file drivers/net/wireless/realtek/rtw88/rtw8822c.c
2025-10-02T15:24:51.5937145Z patching file drivers/net/wireless/realtek/rtw88/util.c
2025-10-02T15:24:51.5938165Z patching file drivers/net/wireless/realtek/rtw88/wow.c
2025-10-02T15:24:51.5940650Z patching file drivers/net/wireless/rndis_wlan.c
2025-10-02T15:24:51.5943718Z patching file drivers/net/wireless/rsi/rsi_91x_coex.c
2025-10-02T15:24:51.5944722Z patching file drivers/net/wireless/rsi/rsi_91x_core.c
2025-10-02T15:24:51.5945895Z patching file drivers/net/wireless/rsi/rsi_91x_hal.c
2025-10-02T15:24:51.5948489Z patching file drivers/net/wireless/rsi/rsi_91x_mac80211.c
2025-10-02T15:24:51.5951206Z patching file drivers/net/wireless/rsi/rsi_91x_main.c
2025-10-02T15:24:51.5953040Z patching file drivers/net/wireless/rsi/rsi_91x_mgmt.c
2025-10-02T15:24:51.5956154Z patching file drivers/net/wireless/rsi/rsi_91x_sdio.c
2025-10-02T15:24:51.5957707Z patching file drivers/net/wireless/rsi/rsi_91x_sdio_ops.c
2025-10-02T15:24:51.5959192Z patching file drivers/net/wireless/rsi/rsi_91x_usb.c
2025-10-02T15:24:51.5961147Z patching file drivers/net/wireless/rsi/rsi_hal.h
2025-10-02T15:24:51.5962149Z patching file drivers/net/wireless/rsi/rsi_main.h
2025-10-02T15:24:51.5963522Z patching file drivers/net/wireless/rsi/rsi_sdio.h
2025-10-02T15:24:51.5964472Z patching file drivers/net/wireless/rsi/rsi_usb.h
2025-10-02T15:24:51.5965432Z patching file drivers/net/wireless/st/cw1200/bh.c
2025-10-02T15:24:51.5966709Z patching file drivers/net/wireless/st/cw1200/cw1200_sdio.c
2025-10-02T15:24:51.5967733Z patching file drivers/net/wireless/st/cw1200/main.c
2025-10-02T15:24:51.5969231Z patching file drivers/net/wireless/st/cw1200/scan.c
2025-10-02T15:24:51.5971289Z patching file drivers/net/wireless/st/cw1200/sta.c
2025-10-02T15:24:51.5973620Z patching file drivers/net/wireless/st/cw1200/txrx.c
2025-10-02T15:24:51.5975307Z patching file drivers/net/wireless/ti/wl1251/cmd.c
2025-10-02T15:24:51.5976303Z patching file drivers/net/wireless/ti/wl1251/tx.c
2025-10-02T15:24:51.5978045Z patching file drivers/net/wireless/ti/wl12xx/main.c
2025-10-02T15:24:51.5980262Z patching file drivers/net/wireless/ti/wlcore/boot.c
2025-10-02T15:24:51.5981249Z patching file drivers/net/wireless/ti/wlcore/debugfs.h
2025-10-02T15:24:51.5983854Z patching file drivers/net/wireless/ti/wlcore/main.c
2025-10-02T15:24:51.5987674Z patching file drivers/net/wireless/ti/wlcore/wlcore.h
2025-10-02T15:24:51.5988814Z patching file drivers/net/wireless/virt_wifi.c
2025-10-02T15:24:51.5990728Z patching file drivers/net/wireless/wl3501.h
2025-10-02T15:24:51.5992582Z patching file drivers/net/wireless/wl3501_cs.c
2025-10-02T15:24:51.5995394Z patching file drivers/net/wireless/zydas/zd1211rw/zd_mac.c
2025-10-02T15:24:51.5997022Z patching file drivers/net/xen-netback/common.h
2025-10-02T15:24:51.5998209Z patching file drivers/net/xen-netback/hash.c
2025-10-02T15:24:51.5999414Z patching file drivers/net/xen-netback/interface.c
2025-10-02T15:24:51.6001589Z patching file drivers/net/xen-netback/netback.c
2025-10-02T15:24:51.6004568Z patching file drivers/net/xen-netback/rx.c
2025-10-02T15:24:51.6006360Z patching file drivers/net/xen-netback/xenbus.c
2025-10-02T15:24:51.6008507Z patching file drivers/net/xen-netfront.c
2025-10-02T15:24:51.6014014Z patching file drivers/nfc/fdp/fdp.c
2025-10-02T15:24:51.6015152Z patching file drivers/nfc/fdp/fdp.h
2025-10-02T15:24:51.6016019Z patching file drivers/nfc/fdp/i2c.c
2025-10-02T15:24:51.6017369Z patching file drivers/nfc/nfcmrvl/i2c.c
2025-10-02T15:24:51.6018361Z patching file drivers/nfc/nfcmrvl/main.c
2025-10-02T15:24:51.6019405Z patching file drivers/nfc/nfcmrvl/spi.c
2025-10-02T15:24:51.6020662Z patching file drivers/nfc/nfcmrvl/usb.c
2025-10-02T15:24:51.6021823Z patching file drivers/nfc/nfcsim.c
2025-10-02T15:24:51.6022982Z patching file drivers/nfc/nxp-nci/core.c
2025-10-02T15:24:51.6024060Z patching file drivers/nfc/nxp-nci/i2c.c
2025-10-02T15:24:51.6025822Z patching file drivers/nfc/pn533/pn533.c
2025-10-02T15:24:51.6028665Z patching file drivers/nfc/pn533/uart.c
2025-10-02T15:24:51.6029680Z patching file drivers/nfc/pn533/usb.c
2025-10-02T15:24:51.6031529Z patching file drivers/nfc/port100.c
2025-10-02T15:24:51.6033260Z patching file drivers/nfc/s3fwrn5/core.c
2025-10-02T15:24:51.6034256Z patching file drivers/nfc/s3fwrn5/firmware.c
2025-10-02T15:24:51.6035378Z patching file drivers/nfc/st-nci/ndlc.c
2025-10-02T15:24:51.6036467Z patching file drivers/nfc/st-nci/se.c
2025-10-02T15:24:51.6038027Z patching file drivers/nfc/st21nfca/i2c.c
2025-10-02T15:24:51.6039343Z patching file drivers/nfc/st21nfca/se.c
2025-10-02T15:24:51.6041160Z patching file drivers/nfc/st21nfca/st21nfca.h
2025-10-02T15:24:51.6042551Z patching file drivers/nfc/trf7970a.c
2025-10-02T15:24:51.6045646Z patching file drivers/ntb/hw/amd/ntb_hw_amd.c
2025-10-02T15:24:51.6048317Z patching file drivers/ntb/hw/idt/ntb_hw_idt.c
2025-10-02T15:24:51.6051571Z patching file drivers/ntb/hw/intel/ntb_hw_gen1.c
2025-10-02T15:24:51.6053600Z patching file drivers/ntb/hw/intel/ntb_hw_gen3.c
2025-10-02T15:24:51.6054760Z patching file drivers/ntb/hw/intel/ntb_hw_gen4.c
2025-10-02T15:24:51.6055942Z patching file drivers/ntb/hw/intel/ntb_hw_gen4.h
2025-10-02T15:24:51.6057280Z patching file drivers/ntb/hw/mscc/ntb_hw_switchtec.c
2025-10-02T15:24:51.6059880Z patching file drivers/ntb/ntb_transport.c
2025-10-02T15:24:51.6062468Z patching file drivers/ntb/test/ntb_msi_test.c
2025-10-02T15:24:51.6064330Z patching file drivers/ntb/test/ntb_perf.c
2025-10-02T15:24:51.6066340Z patching file drivers/ntb/test/ntb_tool.c
2025-10-02T15:24:51.6067823Z patching file drivers/nubus/proc.c
2025-10-02T15:24:51.6069910Z patching file drivers/nvdimm/bus.c
2025-10-02T15:24:51.6071120Z patching file drivers/nvdimm/core.c
2025-10-02T15:24:51.6072280Z patching file drivers/nvdimm/dax_devs.c
2025-10-02T15:24:51.6081041Z patching file drivers/nvdimm/dimm_devs.c
2025-10-02T15:24:51.6082256Z patching file drivers/nvdimm/label.c
2025-10-02T15:24:51.6084395Z patching file drivers/nvdimm/namespace_devs.c
2025-10-02T15:24:51.6086280Z patching file drivers/nvdimm/nd.h
2025-10-02T15:24:51.6088122Z patching file drivers/nvdimm/nd_virtio.c
2025-10-02T15:24:51.6088962Z patching file drivers/nvdimm/of_pmem.c
2025-10-02T15:24:51.6089952Z patching file drivers/nvdimm/pmem.c
2025-10-02T15:24:51.6090770Z patching file drivers/nvdimm/region_devs.c
2025-10-02T15:24:51.6091603Z patching file drivers/nvdimm/security.c
2025-10-02T15:24:51.6092422Z patching file drivers/nvme/host/Kconfig
2025-10-02T15:24:51.6093222Z patching file drivers/nvme/host/core.c
2025-10-02T15:24:51.6095042Z patching file drivers/nvme/host/fabrics.c
2025-10-02T15:24:51.6097301Z patching file drivers/nvme/host/fabrics.h
2025-10-02T15:24:51.6098946Z patching file drivers/nvme/host/fc.c
2025-10-02T15:24:51.6103072Z patching file drivers/nvme/host/hwmon.c
2025-10-02T15:24:51.6104324Z patching file drivers/nvme/host/lightnvm.c
2025-10-02T15:24:51.6106646Z patching file drivers/nvme/host/multipath.c
2025-10-02T15:24:51.6107991Z patching file drivers/nvme/host/nvme.h
2025-10-02T15:24:51.6111429Z patching file drivers/nvme/host/pci.c
2025-10-02T15:24:51.6117428Z patching file drivers/nvme/host/rdma.c
2025-10-02T15:24:51.6130308Z patching file drivers/nvme/host/tcp.c
2025-10-02T15:24:51.6131144Z patching file drivers/nvme/host/trace.h
2025-10-02T15:24:51.6132004Z patching file drivers/nvme/target/admin-cmd.c
2025-10-02T15:24:51.6132891Z patching file drivers/nvme/target/configfs.c
2025-10-02T15:24:51.6133762Z patching file drivers/nvme/target/core.c
2025-10-02T15:24:51.6134609Z patching file drivers/nvme/target/discovery.c
2025-10-02T15:24:51.6135512Z patching file drivers/nvme/target/fabrics-cmd.c
2025-10-02T15:24:51.6136403Z patching file drivers/nvme/target/fc.c
2025-10-02T15:24:51.6139962Z patching file drivers/nvme/target/fcloop.c
2025-10-02T15:24:51.6141695Z patching file drivers/nvme/target/io-cmd-bdev.c
2025-10-02T15:24:51.6142910Z patching file drivers/nvme/target/io-cmd-file.c
2025-10-02T15:24:51.6144096Z patching file drivers/nvme/target/loop.c
2025-10-02T15:24:51.6145641Z patching file drivers/nvme/target/nvmet.h
2025-10-02T15:24:51.6147249Z patching file drivers/nvme/target/passthru.c
2025-10-02T15:24:51.6158029Z patching file drivers/nvme/target/rdma.c
2025-10-02T15:24:51.6185112Z patching file drivers/nvme/target/tcp.c
2025-10-02T15:24:51.6195016Z patching file drivers/nvme/target/trace.c
2025-10-02T15:24:51.6206732Z patching file drivers/nvme/target/trace.h
2025-10-02T15:24:51.6207585Z patching file drivers/nvmem/core.c
2025-10-02T15:24:51.6208526Z patching file drivers/nvmem/imx-ocotp.c
2025-10-02T15:24:51.6209382Z patching file drivers/nvmem/meson-efuse.c
2025-10-02T15:24:51.6210423Z patching file drivers/nvmem/qcom-spmi-sdam.c
2025-10-02T15:24:51.6211284Z patching file drivers/nvmem/qfprom.c
2025-10-02T15:24:51.6212103Z patching file drivers/of/address.c
2025-10-02T15:24:51.6213169Z patching file drivers/of/base.c
2025-10-02T15:24:51.6213967Z patching file drivers/of/device.c
2025-10-02T15:24:51.6214763Z patching file drivers/of/dynamic.c
2025-10-02T15:24:51.6215898Z patching file drivers/of/fdt.c
2025-10-02T15:24:51.6216664Z patching file drivers/of/irq.c
2025-10-02T15:24:51.6217431Z patching file drivers/of/kobj.c
2025-10-02T15:24:51.6218240Z patching file drivers/of/of_reserved_mem.c
2025-10-02T15:24:51.6219067Z patching file drivers/of/overlay.c
2025-10-02T15:24:51.6220032Z patching file drivers/of/platform.c
2025-10-02T15:24:51.6220850Z patching file drivers/of/property.c
2025-10-02T15:24:51.6221752Z patching file drivers/of/unittest-data/tests-phandle.dtsi
2025-10-02T15:24:51.6222694Z patching file drivers/of/unittest.c
2025-10-02T15:24:51.6223506Z patching file drivers/opp/core.c
2025-10-02T15:24:51.6224318Z patching file drivers/opp/debugfs.c
2025-10-02T15:24:51.6225124Z patching file drivers/opp/of.c
2025-10-02T15:24:51.6226253Z patching file drivers/parisc/ccio-dma.c
2025-10-02T15:24:51.6227088Z patching file drivers/parisc/dino.c
2025-10-02T15:24:51.6227891Z patching file drivers/parisc/gsc.c
2025-10-02T15:24:51.6228686Z patching file drivers/parisc/gsc.h
2025-10-02T15:24:51.6229657Z patching file drivers/parisc/iosapic.c
2025-10-02T15:24:51.6230540Z patching file drivers/parisc/iosapic_private.h
2025-10-02T15:24:51.6231419Z patching file drivers/parisc/lasi.c
2025-10-02T15:24:51.6232230Z patching file drivers/parisc/lba_pci.c
2025-10-02T15:24:51.6233045Z patching file drivers/parisc/led.c
2025-10-02T15:24:51.6233853Z patching file drivers/parisc/pdc_stable.c
2025-10-02T15:24:51.6234703Z patching file drivers/parisc/sba_iommu.c
2025-10-02T15:24:51.6235527Z patching file drivers/parisc/wax.c
2025-10-02T15:24:51.6236811Z patching file drivers/parport/ieee1284_ops.c
2025-10-02T15:24:51.6237908Z patching file drivers/parport/parport_pc.c
2025-10-02T15:24:51.6238781Z patching file drivers/parport/parport_serial.c
2025-10-02T15:24:51.6239812Z patching file drivers/parport/procfs.c
2025-10-02T15:24:51.6240645Z patching file drivers/pci/access.c
2025-10-02T15:24:51.6241553Z patching file drivers/pci/controller/cadence/pci-j721e.c
2025-10-02T15:24:51.6242619Z patching file drivers/pci/controller/cadence/pcie-cadence-ep.c
2025-10-02T15:24:51.6243729Z patching file drivers/pci/controller/cadence/pcie-cadence-host.c
2025-10-02T15:24:51.6244850Z patching file drivers/pci/controller/cadence/pcie-cadence-plat.c
2025-10-02T15:24:51.6245926Z patching file drivers/pci/controller/cadence/pcie-cadence.c
2025-10-02T15:24:51.6246978Z patching file drivers/pci/controller/cadence/pcie-cadence.h
2025-10-02T15:24:51.6247987Z patching file drivers/pci/controller/dwc/pci-exynos.c
2025-10-02T15:24:51.6248966Z patching file drivers/pci/controller/dwc/pci-imx6.c
2025-10-02T15:24:51.6250096Z patching file drivers/pci/controller/dwc/pci-keystone.c
2025-10-02T15:24:51.6251093Z patching file drivers/pci/controller/dwc/pcie-al.c
2025-10-02T15:24:51.6252131Z patching file drivers/pci/controller/dwc/pcie-designware-ep.c
2025-10-02T15:24:51.6253255Z patching file drivers/pci/controller/dwc/pcie-designware-host.c
2025-10-02T15:24:51.6254338Z patching file drivers/pci/controller/dwc/pcie-designware.c
2025-10-02T15:24:51.6255375Z patching file drivers/pci/controller/dwc/pcie-intel-gw.c
2025-10-02T15:24:51.6256368Z patching file drivers/pci/controller/dwc/pcie-qcom.c
2025-10-02T15:24:51.6257353Z patching file drivers/pci/controller/dwc/pcie-tegra194.c
2025-10-02T15:24:51.6258358Z patching file drivers/pci/controller/dwc/pcie-uniphier.c
2025-10-02T15:24:51.6259337Z patching file drivers/pci/controller/pci-aardvark.c
2025-10-02T15:24:51.6260482Z patching file drivers/pci/controller/pci-ftpci100.c
2025-10-02T15:24:51.6261446Z patching file drivers/pci/controller/pci-hyperv.c
2025-10-02T15:24:51.6264341Z patching file drivers/pci/controller/pci-loongson.c
2025-10-02T15:24:51.6265697Z patching file drivers/pci/controller/pci-mvebu.c
2025-10-02T15:24:51.6268005Z patching file drivers/pci/controller/pci-tegra.c
2025-10-02T15:24:51.6270588Z patching file drivers/pci/controller/pci-thunder-ecam.c
2025-10-02T15:24:51.6271623Z patching file drivers/pci/controller/pci-thunder-pem.c
2025-10-02T15:24:51.6272742Z patching file drivers/pci/controller/pci-xgene-msi.c
2025-10-02T15:24:51.6274950Z patching file drivers/pci/controller/pci-xgene.c
2025-10-02T15:24:51.6276236Z patching file drivers/pci/controller/pcie-brcmstb.c
2025-10-02T15:24:51.6277939Z patching file drivers/pci/controller/pcie-iproc-bcma.c
2025-10-02T15:24:51.6280297Z patching file drivers/pci/controller/pcie-iproc-msi.c
2025-10-02T15:24:51.6281513Z patching file drivers/pci/controller/pcie-iproc.c
2025-10-02T15:24:51.6283316Z patching file drivers/pci/controller/pcie-mediatek.c
2025-10-02T15:24:51.6284999Z patching file drivers/pci/controller/pcie-rcar-ep.c
2025-10-02T15:24:51.6286401Z patching file drivers/pci/controller/pcie-rcar-host.c
2025-10-02T15:24:51.6288033Z patching file drivers/pci/controller/pcie-rockchip-ep.c
2025-10-02T15:24:51.6290631Z patching file drivers/pci/controller/pcie-rockchip-host.c
2025-10-02T15:24:51.6291936Z patching file drivers/pci/controller/pcie-rockchip.c
2025-10-02T15:24:51.6293265Z patching file drivers/pci/controller/pcie-rockchip.h
2025-10-02T15:24:51.6294622Z patching file drivers/pci/controller/pcie-xilinx-cpm.c
2025-10-02T15:24:51.6296111Z patching file drivers/pci/controller/pcie-xilinx-nwl.c
2025-10-02T15:24:51.6298379Z patching file drivers/pci/endpoint/functions/pci-epf-test.c
2025-10-02T15:24:51.6300000Z patching file drivers/pci/endpoint/pci-ep-cfs.c
2025-10-02T15:24:51.6301232Z patching file drivers/pci/endpoint/pci-epc-core.c
2025-10-02T15:24:51.6302668Z patching file drivers/pci/endpoint/pci-epf-core.c
2025-10-02T15:24:51.6303760Z patching file drivers/pci/hotplug/TODO
2025-10-02T15:24:51.6304858Z patching file drivers/pci/hotplug/acpiphp_glue.c
2025-10-02T15:24:51.6306579Z patching file drivers/pci/hotplug/cpqphp_pci.c
2025-10-02T15:24:51.6309307Z patching file drivers/pci/hotplug/ibmphp_ebda.c
2025-10-02T15:24:51.6310461Z patching file drivers/pci/hotplug/pciehp.h
2025-10-02T15:24:51.6311619Z patching file drivers/pci/hotplug/pciehp_core.c
2025-10-02T15:24:51.6312702Z patching file drivers/pci/hotplug/pciehp_ctrl.c
2025-10-02T15:24:51.6313996Z patching file drivers/pci/hotplug/pciehp_hpc.c
2025-10-02T15:24:51.6316455Z patching file drivers/pci/hotplug/pciehp_pci.c
2025-10-02T15:24:51.6317388Z patching file drivers/pci/hotplug/pnv_php.c
2025-10-02T15:24:51.6320448Z patching file drivers/pci/hotplug/rpadlpar_sysfs.c
2025-10-02T15:24:51.6321458Z patching file drivers/pci/hotplug/s390_pci_hpc.c
2025-10-02T15:24:51.6322351Z patching file drivers/pci/irq.c
2025-10-02T15:24:51.6323132Z patching file drivers/pci/msi.c
2025-10-02T15:24:51.6326151Z patching file drivers/pci/of.c
2025-10-02T15:24:51.6327204Z patching file drivers/pci/p2pdma.c
2025-10-02T15:24:51.6329783Z patching file drivers/pci/pci-acpi.c
2025-10-02T15:24:51.6331156Z patching file drivers/pci/pci-bridge-emul.c
2025-10-02T15:24:51.6332841Z patching file drivers/pci/pci-bridge-emul.h
2025-10-02T15:24:51.6333995Z patching file drivers/pci/pci-driver.c
2025-10-02T15:24:51.6336492Z patching file drivers/pci/pci-label.c
2025-10-02T15:24:51.6337357Z patching file drivers/pci/pci-sysfs.c
2025-10-02T15:24:51.6341579Z patching file drivers/pci/pci.c
2025-10-02T15:24:51.6348333Z patching file drivers/pci/pci.h
2025-10-02T15:24:51.6349922Z patching file drivers/pci/pcie/Kconfig
2025-10-02T15:24:51.6350829Z patching file drivers/pci/pcie/Makefile
2025-10-02T15:24:51.6351883Z patching file drivers/pci/pcie/aer.c
2025-10-02T15:24:51.6354866Z patching file drivers/pci/pcie/aspm.c
2025-10-02T15:24:51.6357096Z patching file drivers/pci/pcie/bw_notification.c
2025-10-02T15:24:51.6358058Z patching file drivers/pci/pcie/dpc.c
2025-10-02T15:24:51.6359703Z patching file drivers/pci/pcie/edr.c
2025-10-02T15:24:51.6360919Z patching file drivers/pci/pcie/err.c
2025-10-02T15:24:51.6362363Z patching file drivers/pci/pcie/portdrv.h
2025-10-02T15:24:51.6363338Z patching file drivers/pci/pcie/portdrv_core.c
2025-10-02T15:24:51.6364850Z patching file drivers/pci/pcie/portdrv_pci.c
2025-10-02T15:24:51.6365760Z patching file drivers/pci/pcie/rcec.c
2025-10-02T15:24:51.6367916Z patching file drivers/pci/probe.c
2025-10-02T15:24:51.6372708Z patching file drivers/pci/quirks.c
2025-10-02T15:24:51.6378855Z patching file drivers/pci/remove.c
2025-10-02T15:24:51.6380026Z patching file drivers/pci/setup-bus.c
2025-10-02T15:24:51.6383105Z patching file drivers/pci/setup-res.c
2025-10-02T15:24:51.6384198Z patching file drivers/pci/slot.c
2025-10-02T15:24:51.6385804Z patching file drivers/pci/switch/switchtec.c
2025-10-02T15:24:51.6388047Z patching file drivers/pci/syscall.c
2025-10-02T15:24:51.6388895Z patching file drivers/pci/vpd.c
2025-10-02T15:24:51.6390450Z patching file drivers/pcmcia/Kconfig
2025-10-02T15:24:51.6391672Z patching file drivers/pcmcia/cs.c
2025-10-02T15:24:51.6393548Z patching file drivers/pcmcia/ds.c
2025-10-02T15:24:51.6395447Z patching file drivers/pcmcia/i82092.c
2025-10-02T15:24:51.6396544Z patching file drivers/pcmcia/omap_cf.c
2025-10-02T15:24:51.6397605Z patching file drivers/pcmcia/rsrc_iodyn.c
2025-10-02T15:24:51.6398777Z patching file drivers/pcmcia/rsrc_nonstatic.c
2025-10-02T15:24:51.6401265Z patching file drivers/pcmcia/yenta_socket.c
2025-10-02T15:24:51.6403205Z patching file drivers/perf/arm-cmn.c
2025-10-02T15:24:51.6405605Z patching file drivers/perf/arm_dsu_pmu.c
2025-10-02T15:24:51.6406886Z patching file drivers/perf/arm_pmu.c
2025-10-02T15:24:51.6408364Z patching file drivers/perf/arm_pmu_platform.c
2025-10-02T15:24:51.6409716Z patching file drivers/perf/arm_smmuv3_pmu.c
2025-10-02T15:24:51.6412124Z patching file drivers/perf/arm_spe_pmu.c
2025-10-02T15:24:51.6413751Z patching file drivers/perf/fsl_imx8_ddr_perf.c
2025-10-02T15:24:51.6415761Z patching file drivers/perf/qcom_l2_pmu.c
2025-10-02T15:24:51.6417570Z patching file drivers/phy/Kconfig
2025-10-02T15:24:51.6418814Z patching file drivers/phy/amlogic/phy-meson8b-usb2.c
2025-10-02T15:24:51.6420601Z patching file drivers/phy/broadcom/phy-bcm-cygnus-pcie.c
2025-10-02T15:24:51.6421822Z patching file drivers/phy/broadcom/phy-bcm-kona-usb2.c
2025-10-02T15:24:51.6422868Z patching file drivers/phy/broadcom/phy-bcm-ns-usb2.c
2025-10-02T15:24:51.6423843Z patching file drivers/phy/broadcom/phy-bcm-ns-usb3.c
2025-10-02T15:24:51.6425410Z patching file drivers/phy/broadcom/phy-bcm-ns2-usbdrd.c
2025-10-02T15:24:51.6426470Z patching file drivers/phy/broadcom/phy-bcm-sr-pcie.c
2025-10-02T15:24:51.6427491Z patching file drivers/phy/broadcom/phy-bcm-sr-usb.c
2025-10-02T15:24:51.6428607Z patching file drivers/phy/broadcom/phy-brcm-sata.c
2025-10-02T15:24:51.6430385Z patching file drivers/phy/broadcom/phy-brcm-usb-init-synopsys.c
2025-10-02T15:24:51.6431778Z patching file drivers/phy/broadcom/phy-brcm-usb-init.h
2025-10-02T15:24:51.6432795Z patching file drivers/phy/broadcom/phy-brcm-usb.c
2025-10-02T15:24:51.6434946Z patching file drivers/phy/cadence/phy-cadence-sierra.c
2025-10-02T15:24:51.6437287Z patching file drivers/phy/cadence/phy-cadence-torrent.c
2025-10-02T15:24:51.6440473Z patching file drivers/phy/hisilicon/phy-hisi-inno-usb2.c
2025-10-02T15:24:51.6441552Z patching file drivers/phy/intel/phy-intel-keembay-emmc.c
2025-10-02T15:24:51.6442593Z patching file drivers/phy/lantiq/phy-lantiq-rcu-usb2.c
2025-10-02T15:24:51.6443564Z patching file drivers/phy/marvell/Kconfig
2025-10-02T15:24:51.6444464Z patching file drivers/phy/marvell/phy-berlin-usb.c
2025-10-02T15:24:51.6445422Z patching file drivers/phy/mediatek/Kconfig
2025-10-02T15:24:51.6446375Z patching file drivers/phy/mediatek/phy-mtk-hdmi.c
2025-10-02T15:24:51.6447336Z patching file drivers/phy/mediatek/phy-mtk-tphy.c
2025-10-02T15:24:51.6448654Z patching file drivers/phy/motorola/phy-cpcap-usb.c
2025-10-02T15:24:51.6450177Z patching file drivers/phy/motorola/phy-mapphone-mdm6600.c
2025-10-02T15:24:51.6451745Z patching file drivers/phy/phy-core-mipi-dphy.c
2025-10-02T15:24:51.6452735Z patching file drivers/phy/phy-core.c
2025-10-02T15:24:51.6455757Z patching file drivers/phy/qualcomm/phy-qcom-qmp.c
2025-10-02T15:24:51.6459702Z patching file drivers/phy/qualcomm/phy-qcom-qusb2.c
2025-10-02T15:24:51.6460921Z patching file drivers/phy/qualcomm/phy-qcom-snps-femto-v2.c
2025-10-02T15:24:51.6462568Z patching file drivers/phy/qualcomm/phy-qcom-usb-hsic.c
2025-10-02T15:24:51.6463575Z patching file drivers/phy/ralink/phy-ralink-usb.c
2025-10-02T15:24:51.6464746Z patching file drivers/phy/renesas/phy-rcar-gen3-usb2.c
2025-10-02T15:24:51.6466255Z patching file drivers/phy/rockchip/phy-rockchip-emmc.c
2025-10-02T15:24:51.6467633Z patching file drivers/phy/rockchip/phy-rockchip-inno-hdmi.c
2025-10-02T15:24:51.6469912Z patching file drivers/phy/rockchip/phy-rockchip-inno-usb2.c
2025-10-02T15:24:51.6471581Z patching file drivers/phy/rockchip/phy-rockchip-pcie.c
2025-10-02T15:24:51.6473005Z patching file drivers/phy/rockchip/phy-rockchip-typec.c
2025-10-02T15:24:51.6474576Z patching file drivers/phy/rockchip/phy-rockchip-usb.c
2025-10-02T15:24:51.6476054Z patching file drivers/phy/samsung/phy-exynos5-usbdrd.c
2025-10-02T15:24:51.6477535Z patching file drivers/phy/samsung/phy-exynos5250-sata.c
2025-10-02T15:24:51.6478696Z patching file drivers/phy/socionext/phy-uniphier-pcie.c
2025-10-02T15:24:51.6479918Z patching file drivers/phy/socionext/phy-uniphier-usb3ss.c
2025-10-02T15:24:51.6481355Z patching file drivers/phy/st/phy-miphy28lp.c
2025-10-02T15:24:51.6483164Z patching file drivers/phy/st/phy-stm32-usbphyc.c
2025-10-02T15:24:51.6484455Z patching file drivers/phy/tegra/xusb-tegra186.c
2025-10-02T15:24:51.6486668Z patching file drivers/phy/tegra/xusb.c
2025-10-02T15:24:51.6488685Z patching file drivers/phy/ti/Kconfig
2025-10-02T15:24:51.6489752Z patching file drivers/phy/ti/phy-am654-serdes.c
2025-10-02T15:24:51.6490959Z patching file drivers/phy/ti/phy-dm816x-usb.c
2025-10-02T15:24:51.6491982Z patching file drivers/phy/ti/phy-gmii-sel.c
2025-10-02T15:24:51.6493208Z patching file drivers/phy/ti/phy-j721e-wiz.c
2025-10-02T15:24:51.6494797Z patching file drivers/phy/ti/phy-omap-control.c
2025-10-02T15:24:51.6496079Z patching file drivers/phy/ti/phy-omap-usb2.c
2025-10-02T15:24:51.6497680Z patching file drivers/phy/ti/phy-ti-pipe3.c
2025-10-02T15:24:51.6499891Z patching file drivers/phy/ti/phy-twl4030-usb.c
2025-10-02T15:24:51.6501235Z patching file drivers/phy/xilinx/phy-zynqmp.c
2025-10-02T15:24:51.6502798Z patching file drivers/pinctrl/Kconfig
2025-10-02T15:24:51.6504082Z patching file drivers/pinctrl/actions/pinctrl-owl.c
2025-10-02T15:24:51.6506369Z patching file drivers/pinctrl/aspeed/pinctrl-aspeed-g6.c
2025-10-02T15:24:51.6509353Z patching file drivers/pinctrl/aspeed/pinctrl-aspeed.c
2025-10-02T15:24:51.6510794Z patching file drivers/pinctrl/bcm/pinctrl-bcm281xx.c
2025-10-02T15:24:51.6513560Z patching file drivers/pinctrl/bcm/pinctrl-bcm2835.c
2025-10-02T15:24:51.6515252Z patching file drivers/pinctrl/bcm/pinctrl-ns.c
2025-10-02T15:24:51.6516510Z patching file drivers/pinctrl/cirrus/Kconfig
2025-10-02T15:24:51.6517861Z patching file drivers/pinctrl/core.c
2025-10-02T15:24:51.6520936Z patching file drivers/pinctrl/devicetree.c
2025-10-02T15:24:51.6521882Z patching file drivers/pinctrl/freescale/Kconfig
2025-10-02T15:24:51.6523066Z patching file drivers/pinctrl/freescale/pinctrl-imx1-core.c
2025-10-02T15:24:51.6524296Z patching file drivers/pinctrl/freescale/pinctrl-mxs.c
2025-10-02T15:24:51.6525920Z patching file drivers/pinctrl/intel/pinctrl-cherryview.c
2025-10-02T15:24:51.6528516Z patching file drivers/pinctrl/intel/pinctrl-intel.c
2025-10-02T15:24:51.6531376Z patching file drivers/pinctrl/intel/pinctrl-lewisburg.c
2025-10-02T15:24:51.6532440Z patching file drivers/pinctrl/intel/pinctrl-tigerlake.c
2025-10-02T15:24:51.6533603Z patching file drivers/pinctrl/mediatek/Kconfig
2025-10-02T15:24:51.6534579Z patching file drivers/pinctrl/mediatek/mtk-eint.c
2025-10-02T15:24:51.6535952Z patching file drivers/pinctrl/mediatek/pinctrl-mt8192.c
2025-10-02T15:24:51.6538318Z patching file drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c
2025-10-02T15:24:51.6539959Z patching file drivers/pinctrl/mediatek/pinctrl-mtk-common.c
2025-10-02T15:24:51.6541833Z patching file drivers/pinctrl/mediatek/pinctrl-paris.c
2025-10-02T15:24:51.6544462Z patching file drivers/pinctrl/meson/pinctrl-meson-a1.c
2025-10-02T15:24:51.6545882Z patching file drivers/pinctrl/meson/pinctrl-meson-axg.c
2025-10-02T15:24:51.6547428Z patching file drivers/pinctrl/meson/pinctrl-meson.c
2025-10-02T15:24:51.6548986Z patching file drivers/pinctrl/mvebu/pinctrl-armada-37xx.c
2025-10-02T15:24:51.6551504Z patching file drivers/pinctrl/mvebu/pinctrl-dove.c
2025-10-02T15:24:51.6553601Z patching file drivers/pinctrl/nomadik/pinctrl-nomadik.c
2025-10-02T15:24:51.6557214Z patching file drivers/pinctrl/nuvoton/pinctrl-npcm7xx.c
2025-10-02T15:24:51.6561423Z patching file drivers/pinctrl/pinconf-generic.c
2025-10-02T15:24:51.6562129Z patching file drivers/pinctrl/pinctrl-amd.c
2025-10-02T15:24:51.6562874Z patching file drivers/pinctrl/pinctrl-amd.h
2025-10-02T15:24:51.6563841Z patching file drivers/pinctrl/pinctrl-at91-pio4.c
2025-10-02T15:24:51.6565976Z patching file drivers/pinctrl/pinctrl-at91.c
2025-10-02T15:24:51.6568077Z patching file drivers/pinctrl/pinctrl-equilibrium.c
2025-10-02T15:24:51.6569715Z patching file drivers/pinctrl/pinctrl-falcon.c
2025-10-02T15:24:51.6580517Z patching file drivers/pinctrl/pinctrl-ingenic.c
2025-10-02T15:24:51.6581661Z patching file drivers/pinctrl/pinctrl-mcp23s08.c
2025-10-02T15:24:51.6583434Z patching file drivers/pinctrl/pinctrl-mcp23s08_spi.c
2025-10-02T15:24:51.6584361Z patching file drivers/pinctrl/pinctrl-ocelot.c
2025-10-02T15:24:51.6585261Z patching file drivers/pinctrl/pinctrl-pistachio.c
2025-10-02T15:24:51.6586171Z patching file drivers/pinctrl/pinctrl-rockchip.c
2025-10-02T15:24:51.6591087Z patching file drivers/pinctrl/pinctrl-rockchip.h
2025-10-02T15:24:51.6593944Z patching file drivers/pinctrl/pinctrl-single.c
2025-10-02T15:24:51.6595978Z patching file drivers/pinctrl/pinctrl-st.c
2025-10-02T15:24:51.6598115Z patching file drivers/pinctrl/pinctrl-stmfx.c
2025-10-02T15:24:51.6600318Z patching file drivers/pinctrl/pinctrl-sx150x.c
2025-10-02T15:24:51.6601807Z patching file drivers/pinctrl/qcom/pinctrl-msm.c
2025-10-02T15:24:51.6604026Z patching file drivers/pinctrl/qcom/pinctrl-msm.h
2025-10-02T15:24:51.6612978Z patching file drivers/pinctrl/qcom/pinctrl-msm8916.c
2025-10-02T15:24:51.6613915Z patching file drivers/pinctrl/qcom/pinctrl-msm8976.c
2025-10-02T15:24:51.6614847Z patching file drivers/pinctrl/qcom/pinctrl-sdm845.c
2025-10-02T15:24:51.6615788Z patching file drivers/pinctrl/qcom/pinctrl-sm8250.c
2025-10-02T15:24:51.6616595Z patching file drivers/pinctrl/qcom/pinctrl-spmi-gpio.c
2025-10-02T15:24:51.6617205Z patching file drivers/pinctrl/qcom/pinctrl-ssbi-mpp.c
2025-10-02T15:24:51.6617768Z patching file drivers/pinctrl/renesas/Kconfig
2025-10-02T15:24:51.6618636Z patching file drivers/pinctrl/renesas/core.c
2025-10-02T15:24:51.6619298Z patching file drivers/pinctrl/renesas/pfc-r8a77470.c
2025-10-02T15:24:51.6628421Z patching file drivers/pinctrl/renesas/pfc-r8a77950.c
2025-10-02T15:24:51.6629414Z patching file drivers/pinctrl/renesas/pfc-r8a77951.c
2025-10-02T15:24:51.6634458Z patching file drivers/pinctrl/renesas/pfc-r8a7796.c
2025-10-02T15:24:51.6640502Z patching file drivers/pinctrl/renesas/pfc-r8a77965.c
2025-10-02T15:24:51.6646125Z patching file drivers/pinctrl/renesas/pfc-r8a77990.c
2025-10-02T15:24:51.6650196Z patching file drivers/pinctrl/renesas/pinctrl-rza2.c
2025-10-02T15:24:51.6651679Z patching file drivers/pinctrl/renesas/pinctrl-rzn1.c
2025-10-02T15:24:51.6653095Z patching file drivers/pinctrl/samsung/Kconfig
2025-10-02T15:24:51.6655389Z patching file drivers/pinctrl/samsung/pinctrl-exynos.c
2025-10-02T15:24:51.6656586Z patching file drivers/pinctrl/samsung/pinctrl-samsung.c
2025-10-02T15:24:51.6658915Z patching file drivers/pinctrl/stm32/pinctrl-stm32.c
2025-10-02T15:24:51.6660772Z patching file drivers/pinctrl/sunxi/pinctrl-sun50i-a100-r.c
2025-10-02T15:24:51.6661960Z patching file drivers/pinctrl/sunxi/pinctrl-sun50i-a100.c
2025-10-02T15:24:51.6663596Z patching file drivers/pinctrl/sunxi/pinctrl-sun50i-h6-r.c
2025-10-02T15:24:51.6665506Z patching file drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c
2025-10-02T15:24:51.6666910Z patching file drivers/pinctrl/sunxi/pinctrl-suniv-f1c100s.c
2025-10-02T15:24:51.6668066Z patching file drivers/pinctrl/sunxi/pinctrl-sunxi.c
2025-10-02T15:24:51.6669153Z patching file drivers/pinctrl/tegra/pinctrl-tegra.c
2025-10-02T15:24:51.6670301Z patching file drivers/pinctrl/ti/pinctrl-ti-iodelay.c
2025-10-02T15:24:51.6671624Z patching file drivers/platform/Kconfig
2025-10-02T15:24:51.6672437Z patching file drivers/platform/Makefile
2025-10-02T15:24:51.6673267Z patching file drivers/platform/chrome/Makefile
2025-10-02T15:24:51.6674213Z patching file drivers/platform/chrome/chromeos_laptop.c
2025-10-02T15:24:51.6675622Z patching file drivers/platform/chrome/cros_ec.c
2025-10-02T15:24:51.6677441Z patching file drivers/platform/chrome/cros_ec.h
2025-10-02T15:24:51.6678377Z patching file drivers/platform/chrome/cros_ec_chardev.c
2025-10-02T15:24:51.6680625Z patching file drivers/platform/chrome/cros_ec_debugfs.c
2025-10-02T15:24:51.6683135Z patching file drivers/platform/chrome/cros_ec_i2c.c
2025-10-02T15:24:51.6684108Z patching file drivers/platform/chrome/cros_ec_lpc.c
2025-10-02T15:24:51.6685369Z patching file drivers/platform/chrome/cros_ec_proto.c
2025-10-02T15:24:51.6686394Z patching file drivers/platform/chrome/cros_ec_sensorhub_ring.c
2025-10-02T15:24:51.6687433Z patching file drivers/platform/chrome/cros_ec_sensorhub_trace.h
2025-10-02T15:24:51.6688404Z patching file drivers/platform/chrome/cros_ec_spi.c
2025-10-02T15:24:51.6689903Z patching file drivers/platform/chrome/cros_ec_trace.h
2025-10-02T15:24:51.6690921Z patching file drivers/platform/chrome/cros_ec_typec.c
2025-10-02T15:24:51.6692338Z patching file drivers/platform/chrome/cros_usbpd_notify.c
2025-10-02T15:24:51.6693294Z patching file drivers/platform/mellanox/Kconfig
2025-10-02T15:24:51.6694435Z patching file drivers/platform/mellanox/mlxbf-bootctl.c
2025-10-02T15:24:51.6696556Z patching file drivers/platform/mellanox/mlxbf-tmfifo.c
2025-10-02T15:24:51.6698927Z patching file drivers/platform/mellanox/mlxreg-io.c
2025-10-02T15:24:51.6700123Z patching file drivers/platform/mips/Kconfig
2025-10-02T15:24:51.6701008Z patching file drivers/platform/mips/cpu_hwmon.c
2025-10-02T15:24:51.6702936Z patching file drivers/platform/olpc/olpc-ec.c
2025-10-02T15:24:51.6704318Z patching file drivers/platform/surface/Kconfig
2025-10-02T15:24:51.6706174Z patching file drivers/platform/surface/Makefile
2025-10-02T15:24:51.6706757Z patching file drivers/platform/x86/Kconfig
2025-10-02T15:24:51.6708345Z patching file drivers/platform/x86/acer-wmi.c
2025-10-02T15:24:51.6711758Z patching file drivers/platform/x86/apple-gmux.c
2025-10-02T15:24:51.6713628Z patching file drivers/platform/x86/asus-laptop.c
2025-10-02T15:24:51.6715674Z patching file drivers/platform/x86/asus-nb-wmi.c
2025-10-02T15:24:51.6718332Z patching file drivers/platform/x86/asus-wmi.c
2025-10-02T15:24:51.6722101Z patching file drivers/platform/x86/asus-wmi.h
2025-10-02T15:24:51.6724378Z patching file drivers/platform/x86/dell-smbios-base.c
2025-10-02T15:24:51.6726404Z patching file drivers/platform/x86/dell-smbios-wmi.c
2025-10-02T15:24:51.6727332Z patching file drivers/platform/x86/dell-wmi.c
2025-10-02T15:24:51.6729237Z patching file drivers/platform/x86/dell_rbu.c
2025-10-02T15:24:51.6731049Z patching file drivers/platform/x86/fujitsu-laptop.c
2025-10-02T15:24:51.6732172Z patching file drivers/platform/x86/hp-wireless.c
2025-10-02T15:24:51.6732840Z patching file drivers/platform/x86/hp-wmi.c
2025-10-02T15:24:51.6733688Z patching file drivers/platform/x86/hp_accel.c
2025-10-02T15:24:51.6734978Z patching file drivers/platform/x86/huawei-wmi.c
2025-10-02T15:24:51.6736757Z patching file drivers/platform/x86/i2c-multi-instantiate.c
2025-10-02T15:24:51.6738072Z patching file drivers/platform/x86/ideapad-laptop.c
2025-10-02T15:24:51.6740059Z patching file drivers/platform/x86/intel-hid.c
2025-10-02T15:24:51.6741479Z patching file drivers/platform/x86/intel-vbtn.c
2025-10-02T15:24:51.6743069Z patching file drivers/platform/x86/intel_bxtwc_tmu.c
2025-10-02T15:24:51.6743823Z patching file drivers/platform/x86/intel_int0002_vgpio.c
2025-10-02T15:24:51.6745811Z patching file drivers/platform/x86/intel_pmc_core.c
2025-10-02T15:24:51.6747881Z patching file drivers/platform/x86/intel_pmc_core_pltdrv.c
2025-10-02T15:24:51.6748707Z patching file drivers/platform/x86/intel_punit_ipc.c
2025-10-02T15:24:51.6750450Z patching file drivers/platform/x86/intel_scu_ipc.c
2025-10-02T15:24:51.6752358Z patching file drivers/platform/x86/intel_speed_select_if/isst_if_common.c
2025-10-02T15:24:51.6754133Z patching file drivers/platform/x86/intel_speed_select_if/isst_if_mbox_pci.c
2025-10-02T15:24:51.6755310Z patching file drivers/platform/x86/intel_telemetry_core.c
2025-10-02T15:24:51.6757216Z patching file drivers/platform/x86/mlx-platform.c
2025-10-02T15:24:51.6760724Z patching file drivers/platform/x86/msi-laptop.c
2025-10-02T15:24:51.6762470Z patching file drivers/platform/x86/mxm-wmi.c
2025-10-02T15:24:51.6763490Z patching file drivers/platform/x86/pcengines-apuv2.c
2025-10-02T15:24:51.6764804Z patching file drivers/platform/x86/pmc_atom.c
2025-10-02T15:24:51.6766493Z patching file drivers/platform/x86/samsung-laptop.c
2025-10-02T15:24:51.6769224Z patching file drivers/platform/x86/sony-laptop.c
2025-10-02T15:24:51.6772220Z patching file drivers/platform/x86/surface3_power.c
2025-10-02T15:24:51.6775693Z patching file drivers/platform/x86/thinkpad_acpi.c
2025-10-02T15:24:51.6782010Z patching file drivers/platform/x86/toshiba_acpi.c
2025-10-02T15:24:51.6784064Z patching file drivers/platform/x86/touchscreen_dmi.c
2025-10-02T15:24:51.6786842Z patching file drivers/platform/x86/wmi.c
2025-10-02T15:24:51.6788905Z patching file drivers/pnp/core.c
2025-10-02T15:24:51.6789816Z patching file drivers/pnp/pnpacpi/rsparser.c
2025-10-02T15:24:51.6791186Z patching file drivers/power/reset/arm-versatile-reboot.c
2025-10-02T15:24:51.6791699Z patching file drivers/power/reset/at91-reset.c
2025-10-02T15:24:51.6792537Z patching file drivers/power/reset/at91-sama5d2_shdwc.c
2025-10-02T15:24:51.6793279Z patching file drivers/power/reset/brcmstb-reboot.c
2025-10-02T15:24:51.6793904Z patching file drivers/power/reset/gemini-poweroff.c
2025-10-02T15:24:51.6794552Z patching file drivers/power/reset/gpio-poweroff.c
2025-10-02T15:24:51.6795251Z patching file drivers/power/reset/ltc2952-poweroff.c
2025-10-02T15:24:51.6795953Z patching file drivers/power/reset/mt6323-poweroff.c
2025-10-02T15:24:51.6796837Z patching file drivers/power/supply/Kconfig
2025-10-02T15:24:51.6798342Z patching file drivers/power/supply/ab8500_btemp.c
2025-10-02T15:24:51.6800498Z patching file drivers/power/supply/ab8500_charger.c
2025-10-02T15:24:51.6803377Z patching file drivers/power/supply/ab8500_fg.c
2025-10-02T15:24:51.6805427Z patching file drivers/power/supply/adp5061.c
2025-10-02T15:24:51.6806280Z patching file drivers/power/supply/axp20x_battery.c
2025-10-02T15:24:51.6807786Z patching file drivers/power/supply/axp20x_usb_power.c
2025-10-02T15:24:51.6808698Z patching file drivers/power/supply/axp288_charger.c
2025-10-02T15:24:51.6810647Z patching file drivers/power/supply/axp288_fuel_gauge.c
2025-10-02T15:24:51.6812140Z patching file drivers/power/supply/bq24190_charger.c
2025-10-02T15:24:51.6814173Z patching file drivers/power/supply/bq25890_charger.c
2025-10-02T15:24:51.6815522Z patching file drivers/power/supply/bq25980_charger.c
2025-10-02T15:24:51.6817184Z patching file drivers/power/supply/bq27xxx_battery.c
2025-10-02T15:24:51.6820389Z patching file drivers/power/supply/bq27xxx_battery_i2c.c
2025-10-02T15:24:51.6821753Z patching file drivers/power/supply/charger-manager.c
2025-10-02T15:24:51.6823231Z patching file drivers/power/supply/cpcap-battery.c
2025-10-02T15:24:51.6824376Z patching file drivers/power/supply/cpcap-charger.c
2025-10-02T15:24:51.6825545Z patching file drivers/power/supply/cros_usbpd-charger.c
2025-10-02T15:24:51.6827733Z patching file drivers/power/supply/cw2015_battery.c
2025-10-02T15:24:51.6828697Z patching file drivers/power/supply/da9150-charger.c
2025-10-02T15:24:51.6830150Z patching file drivers/power/supply/da9150-fg.c
2025-10-02T15:24:51.6830967Z patching file drivers/power/supply/generic-adc-battery.c
2025-10-02T15:24:51.6831721Z patching file drivers/power/supply/gpio-charger.c
2025-10-02T15:24:51.6832694Z patching file drivers/power/supply/lp8788-charger.c
2025-10-02T15:24:51.6833750Z patching file drivers/power/supply/max14577_charger.c
2025-10-02T15:24:51.6834782Z patching file drivers/power/supply/max17040_battery.c
2025-10-02T15:24:51.6835890Z patching file drivers/power/supply/max17042_battery.c
2025-10-02T15:24:51.6837506Z patching file drivers/power/supply/max77693_charger.c
2025-10-02T15:24:51.6838497Z patching file drivers/power/supply/pm2301_charger.c
2025-10-02T15:24:51.6840238Z patching file drivers/power/supply/power_supply_core.c
2025-10-02T15:24:51.6841926Z patching file drivers/power/supply/power_supply_leds.c
2025-10-02T15:24:51.6842559Z patching file drivers/power/supply/power_supply_sysfs.c
2025-10-02T15:24:51.6843467Z patching file drivers/power/supply/rt5033_battery.c
2025-10-02T15:24:51.6844832Z patching file drivers/power/supply/rt9455_charger.c
2025-10-02T15:24:51.6846278Z patching file drivers/power/supply/s3c_adc_battery.c
2025-10-02T15:24:51.6847008Z patching file drivers/power/supply/sbs-charger.c
2025-10-02T15:24:51.6847843Z patching file drivers/power/supply/sc2731_charger.c
2025-10-02T15:24:51.6849217Z patching file drivers/power/supply/sc27xx_fuel_gauge.c
2025-10-02T15:24:51.6851093Z patching file drivers/power/supply/smb347-charger.c
2025-10-02T15:24:51.6852576Z patching file drivers/power/supply/tps65090-charger.c
2025-10-02T15:24:51.6853989Z patching file drivers/power/supply/tps65217_charger.c
2025-10-02T15:24:51.6854696Z patching file drivers/power/supply/ucs1002_power.c
2025-10-02T15:24:51.6855689Z patching file drivers/power/supply/wm8350_power.c
2025-10-02T15:24:51.6856764Z patching file drivers/powercap/Kconfig
2025-10-02T15:24:51.6857595Z patching file drivers/powercap/intel_rapl_common.c
2025-10-02T15:24:51.6859004Z patching file drivers/powercap/intel_rapl_msr.c
2025-10-02T15:24:51.6859741Z patching file drivers/powercap/powercap_sys.c
2025-10-02T15:24:51.6861203Z patching file drivers/pps/clients/pps-gpio.c
2025-10-02T15:24:51.6861716Z patching file drivers/pps/clients/pps-ktimer.c
2025-10-02T15:24:51.6862379Z patching file drivers/pps/clients/pps-ldisc.c
2025-10-02T15:24:51.6862950Z patching file drivers/pps/clients/pps_parport.c
2025-10-02T15:24:51.6863794Z patching file drivers/pps/kapi.c
2025-10-02T15:24:51.6864406Z patching file drivers/pps/kc.c
2025-10-02T15:24:51.6865105Z patching file drivers/pps/pps.c
2025-10-02T15:24:51.6866911Z patching file drivers/ps3/ps3stor_lib.c
2025-10-02T15:24:51.6867503Z patching file drivers/ptp/Kconfig
2025-10-02T15:24:51.6868270Z patching file drivers/ptp/ptp_chardev.c
2025-10-02T15:24:51.6869164Z patching file drivers/ptp/ptp_clock.c
2025-10-02T15:24:51.6870622Z patching file drivers/ptp/ptp_pch.c
2025-10-02T15:24:51.6871246Z patching file drivers/ptp/ptp_private.h
2025-10-02T15:24:51.6871955Z patching file drivers/ptp/ptp_qoriq.c
2025-10-02T15:24:51.6872973Z patching file drivers/ptp/ptp_sysfs.c
2025-10-02T15:24:51.6873762Z patching file drivers/pwm/pwm-atmel.c
2025-10-02T15:24:51.6874561Z patching file drivers/pwm/pwm-brcmstb.c
2025-10-02T15:24:51.6875331Z patching file drivers/pwm/pwm-cros-ec.c
2025-10-02T15:24:51.6876116Z patching file drivers/pwm/pwm-fsl-ftm.c
2025-10-02T15:24:51.6877093Z patching file drivers/pwm/pwm-hibvt.c
2025-10-02T15:24:51.6877746Z patching file drivers/pwm/pwm-img.c
2025-10-02T15:24:51.6878683Z patching file drivers/pwm/pwm-imx-tpm.c
2025-10-02T15:24:51.6879644Z patching file drivers/pwm/pwm-imx1.c
2025-10-02T15:24:51.6880550Z patching file drivers/pwm/pwm-imx27.c
2025-10-02T15:24:51.6881831Z patching file drivers/pwm/pwm-iqs620a.c
2025-10-02T15:24:51.6882403Z patching file drivers/pwm/pwm-jz4740.c
2025-10-02T15:24:51.6883152Z patching file drivers/pwm/pwm-lp3943.c
2025-10-02T15:24:51.6883977Z patching file drivers/pwm/pwm-lpc18xx-sct.c
2025-10-02T15:24:51.6885132Z patching file drivers/pwm/pwm-lpc32xx.c
2025-10-02T15:24:51.6885731Z patching file drivers/pwm/pwm-mediatek.c
2025-10-02T15:24:51.6887183Z patching file drivers/pwm/pwm-meson.c
2025-10-02T15:24:51.6888188Z patching file drivers/pwm/pwm-mtk-disp.c
2025-10-02T15:24:51.6889205Z patching file drivers/pwm/pwm-mxs.c
2025-10-02T15:24:51.6890025Z patching file drivers/pwm/pwm-rcar.c
2025-10-02T15:24:51.6891115Z patching file drivers/pwm/pwm-rockchip.c
2025-10-02T15:24:51.6891962Z patching file drivers/pwm/pwm-sifive.c
2025-10-02T15:24:51.6893486Z patching file drivers/pwm/pwm-spear.c
2025-10-02T15:24:51.6893877Z patching file drivers/pwm/pwm-sprd.c
2025-10-02T15:24:51.6894721Z patching file drivers/pwm/pwm-sti.c
2025-10-02T15:24:51.6896108Z patching file drivers/pwm/pwm-stm32-lp.c
2025-10-02T15:24:51.6896716Z patching file drivers/pwm/pwm-stm32.c
2025-10-02T15:24:51.6898365Z patching file drivers/pwm/pwm-sun4i.c
2025-10-02T15:24:51.6899065Z patching file drivers/pwm/pwm-tegra.c
2025-10-02T15:24:51.6900166Z patching file drivers/pwm/pwm-zx.c
2025-10-02T15:24:51.6900907Z patching file drivers/pwm/sysfs.c
2025-10-02T15:24:51.6902680Z patching file drivers/rapidio/devices/rio_mport_cdev.c
2025-10-02T15:24:51.6904537Z patching file drivers/rapidio/rio-scan.c
2025-10-02T15:24:51.6906100Z patching file drivers/rapidio/rio.c
2025-10-02T15:24:51.6908032Z patching file drivers/rapidio/rio_cm.c
2025-10-02T15:24:51.6909822Z patching file drivers/ras/cec.c
2025-10-02T15:24:51.6910673Z patching file drivers/regulator/ad5398.c
2025-10-02T15:24:51.6912068Z patching file drivers/regulator/axp20x-regulator.c
2025-10-02T15:24:51.6913499Z patching file drivers/regulator/bd71828-regulator.c
2025-10-02T15:24:51.6915041Z patching file drivers/regulator/bd718x7-regulator.c
2025-10-02T15:24:51.6917065Z patching file drivers/regulator/bd9571mwv-regulator.c
2025-10-02T15:24:51.6917695Z patching file drivers/regulator/bd9576-regulator.c
2025-10-02T15:24:51.6920069Z patching file drivers/regulator/core.c
2025-10-02T15:24:51.6924447Z patching file drivers/regulator/cros-ec-regulator.c
2025-10-02T15:24:51.6925021Z patching file drivers/regulator/da9052-regulator.c
2025-10-02T15:24:51.6926051Z patching file drivers/regulator/da9211-regulator.c
2025-10-02T15:24:51.6926954Z patching file drivers/regulator/fan53555.c
2025-10-02T15:24:51.6927835Z patching file drivers/regulator/fan53880.c
2025-10-02T15:24:51.6928593Z patching file drivers/regulator/fixed.c
2025-10-02T15:24:51.6929435Z patching file drivers/regulator/gpio-regulator.c
2025-10-02T15:24:51.6930611Z patching file drivers/regulator/helpers.c
2025-10-02T15:24:51.6932787Z patching file drivers/regulator/hi6421-regulator.c
2025-10-02T15:24:51.6933946Z patching file drivers/regulator/hi655x-regulator.c
2025-10-02T15:24:51.6935143Z patching file drivers/regulator/max14577-regulator.c
2025-10-02T15:24:51.6936573Z patching file drivers/regulator/max77620-regulator.c
2025-10-02T15:24:51.6938346Z patching file drivers/regulator/max77802-regulator.c
2025-10-02T15:24:51.6940205Z patching file drivers/regulator/mt6358-regulator.c
2025-10-02T15:24:51.6941296Z patching file drivers/regulator/mt6360-regulator.c
2025-10-02T15:24:51.6942986Z patching file drivers/regulator/of_regulator.c
2025-10-02T15:24:51.6944475Z patching file drivers/regulator/pca9450-regulator.c
2025-10-02T15:24:51.6946720Z patching file drivers/regulator/pfuze100-regulator.c
2025-10-02T15:24:51.6948322Z patching file drivers/regulator/pwm-regulator.c
2025-10-02T15:24:51.6949701Z patching file drivers/regulator/qcom-rpmh-regulator.c
2025-10-02T15:24:51.6951821Z patching file drivers/regulator/qcom_rpm-regulator.c
2025-10-02T15:24:51.6953700Z patching file drivers/regulator/qcom_smd-regulator.c
2025-10-02T15:24:51.6956262Z patching file drivers/regulator/rk808-regulator.c
2025-10-02T15:24:51.6957859Z patching file drivers/regulator/rohm-regulator.c
2025-10-02T15:24:51.6958566Z patching file drivers/regulator/rpi-panel-attiny-regulator.c
2025-10-02T15:24:51.6960154Z patching file drivers/regulator/rt4801-regulator.c
2025-10-02T15:24:51.6961216Z patching file drivers/regulator/rtmv20-regulator.c
2025-10-02T15:24:51.6962758Z patching file drivers/regulator/s5m8767.c
2025-10-02T15:24:51.6965199Z patching file drivers/regulator/slg51000-regulator.c
2025-10-02T15:24:51.6966255Z patching file drivers/regulator/stm32-pwr.c
2025-10-02T15:24:51.6968335Z patching file drivers/regulator/tps65910-regulator.c
2025-10-02T15:24:51.6970344Z patching file drivers/regulator/twl6030-regulator.c
2025-10-02T15:24:51.6972139Z patching file drivers/regulator/uniphier-regulator.c
2025-10-02T15:24:51.6973127Z patching file drivers/regulator/vctrl-regulator.c
2025-10-02T15:24:51.6975295Z patching file drivers/regulator/vqmmc-ipq4019-regulator.c
2025-10-02T15:24:51.6975798Z patching file drivers/regulator/wm8994-regulator.c
2025-10-02T15:24:51.6977122Z patching file drivers/remoteproc/Kconfig
2025-10-02T15:24:51.6978118Z patching file drivers/remoteproc/imx_rproc.c
2025-10-02T15:24:51.6979142Z patching file drivers/remoteproc/mtk_common.h
2025-10-02T15:24:51.6980430Z patching file drivers/remoteproc/mtk_scp.c
2025-10-02T15:24:51.6982056Z patching file drivers/remoteproc/mtk_scp_ipi.c
2025-10-02T15:24:51.6982786Z patching file drivers/remoteproc/qcom_pil_info.c
2025-10-02T15:24:51.6983751Z patching file drivers/remoteproc/qcom_q6v5_adsp.c
2025-10-02T15:24:51.6985714Z patching file drivers/remoteproc/qcom_q6v5_mss.c
2025-10-02T15:24:51.6988330Z patching file drivers/remoteproc/qcom_q6v5_pas.c
2025-10-02T15:24:51.6990042Z patching file drivers/remoteproc/qcom_sysmon.c
2025-10-02T15:24:51.6992015Z patching file drivers/remoteproc/qcom_wcnss.c
2025-10-02T15:24:51.6993055Z patching file drivers/remoteproc/remoteproc_cdev.c
2025-10-02T15:24:51.6994680Z patching file drivers/remoteproc/remoteproc_core.c
2025-10-02T15:24:51.6997282Z patching file drivers/remoteproc/remoteproc_debugfs.c
2025-10-02T15:24:51.6997981Z patching file drivers/remoteproc/remoteproc_internal.h
2025-10-02T15:24:51.6999231Z patching file drivers/remoteproc/st_remoteproc.c
2025-10-02T15:24:51.7000230Z patching file drivers/remoteproc/stm32_rproc.c
2025-10-02T15:24:51.7002352Z patching file drivers/remoteproc/ti_k3_dsp_remoteproc.c
2025-10-02T15:24:51.7003792Z patching file drivers/remoteproc/ti_k3_r5_remoteproc.c
2025-10-02T15:24:51.7005623Z patching file drivers/reset/Kconfig
2025-10-02T15:24:51.7006993Z patching file drivers/reset/core.c
2025-10-02T15:24:51.7008457Z patching file drivers/reset/hisilicon/hi6220_reset.c
2025-10-02T15:24:51.7009257Z patching file drivers/reset/reset-a10sr.c
2025-10-02T15:24:51.7009910Z patching file drivers/reset/reset-berlin.c
2025-10-02T15:24:51.7011039Z patching file drivers/reset/reset-brcmstb-rescal.c
2025-10-02T15:24:51.7011788Z patching file drivers/reset/reset-brcmstb.c
2025-10-02T15:24:51.7012650Z patching file drivers/reset/reset-imx7.c
2025-10-02T15:24:51.7013678Z patching file drivers/reset/reset-socfpga.c
2025-10-02T15:24:51.7014629Z patching file drivers/reset/reset-ti-syscon.c
2025-10-02T15:24:51.7015512Z patching file drivers/reset/reset-zynqmp.c
2025-10-02T15:24:51.7016455Z patching file drivers/reset/tegra/reset-bpmp.c
2025-10-02T15:24:51.7017391Z patching file drivers/rpmsg/mtk_rpmsg.c
2025-10-02T15:24:51.7019081Z patching file drivers/rpmsg/qcom_glink_native.c
2025-10-02T15:24:51.7022611Z patching file drivers/rpmsg/qcom_smd.c
2025-10-02T15:24:51.7024534Z patching file drivers/rpmsg/rpmsg_char.c
2025-10-02T15:24:51.7025789Z patching file drivers/rpmsg/rpmsg_core.c
2025-10-02T15:24:51.7027314Z patching file drivers/rpmsg/rpmsg_internal.h
2025-10-02T15:24:51.7028366Z patching file drivers/rpmsg/virtio_rpmsg_bus.c
2025-10-02T15:24:51.7030731Z patching file drivers/rtc/Kconfig
2025-10-02T15:24:51.7032911Z patching file drivers/rtc/Makefile
2025-10-02T15:24:51.7033798Z patching file drivers/rtc/class.c
2025-10-02T15:24:51.7035592Z patching file drivers/rtc/interface.c
2025-10-02T15:24:51.7037341Z patching file drivers/rtc/lib.c
2025-10-02T15:24:51.7038769Z patching file drivers/rtc/lib_test.c
2025-10-02T15:24:51.7040709Z patching file drivers/rtc/proc.c
2025-10-02T15:24:51.7041944Z patching file drivers/rtc/rtc-ab-eoz9.c
2025-10-02T15:24:51.7050290Z patching file drivers/rtc/rtc-abx80x.c
2025-10-02T15:24:51.7051020Z patching file drivers/rtc/rtc-at91sam9.c
2025-10-02T15:24:51.7052114Z patching file drivers/rtc/rtc-cmos.c
2025-10-02T15:24:51.7052687Z patching file drivers/rtc/rtc-ds1307.c
2025-10-02T15:24:51.7053674Z patching file drivers/rtc/rtc-ds1347.c
2025-10-02T15:24:51.7055017Z patching file drivers/rtc/rtc-ds1685.c
2025-10-02T15:24:51.7056787Z patching file drivers/rtc/rtc-ep93xx.c
2025-10-02T15:24:51.7057930Z patching file drivers/rtc/rtc-fsl-ftm-alarm.c
2025-10-02T15:24:51.7059143Z patching file drivers/rtc/rtc-hym8563.c
2025-10-02T15:24:51.7060676Z patching file drivers/rtc/rtc-isl1208.c
2025-10-02T15:24:51.7062367Z patching file drivers/rtc/rtc-max77686.c
2025-10-02T15:24:51.7063849Z patching file drivers/rtc/rtc-mc146818-lib.c
2025-10-02T15:24:51.7065702Z patching file drivers/rtc/rtc-meson-vrtc.c
2025-10-02T15:24:51.7066712Z patching file drivers/rtc/rtc-mt6397.c
2025-10-02T15:24:51.7067868Z patching file drivers/rtc/rtc-mxc_v2.c
2025-10-02T15:24:51.7069140Z patching file drivers/rtc/rtc-omap.c
2025-10-02T15:24:51.7071787Z patching file drivers/rtc/rtc-pcf2127.c
2025-10-02T15:24:51.7073210Z patching file drivers/rtc/rtc-pcf85063.c
2025-10-02T15:24:51.7074901Z patching file drivers/rtc/rtc-pcf85363.c
2025-10-02T15:24:51.7075841Z patching file drivers/rtc/rtc-pcf8563.c
2025-10-02T15:24:51.7077180Z patching file drivers/rtc/rtc-pic32.c
2025-10-02T15:24:51.7078323Z patching file drivers/rtc/rtc-pl030.c
2025-10-02T15:24:51.7079379Z patching file drivers/rtc/rtc-pl031.c
2025-10-02T15:24:51.7080955Z patching file drivers/rtc/rtc-pm8xxx.c
2025-10-02T15:24:51.7087043Z patching file drivers/rtc/rtc-pxa.c
2025-10-02T15:24:51.7087384Z patching file drivers/rtc/rtc-rv3028.c
2025-10-02T15:24:51.7087993Z patching file drivers/rtc/rtc-rv3032.c
2025-10-02T15:24:51.7088289Z patching file drivers/rtc/rtc-sh.c
2025-10-02T15:24:51.7088501Z patching file drivers/rtc/rtc-snvs.c
2025-10-02T15:24:51.7089055Z patching file drivers/rtc/rtc-st-lpc.c
2025-10-02T15:24:51.7090635Z patching file drivers/rtc/rtc-stm32.c
2025-10-02T15:24:51.7092251Z patching file drivers/rtc/rtc-sun6i.c
2025-10-02T15:24:51.7094059Z patching file drivers/rtc/rtc-tps65910.c
2025-10-02T15:24:51.7095192Z patching file drivers/rtc/rtc-wm8350.c
2025-10-02T15:24:51.7097534Z patching file drivers/s390/block/dasd.c
2025-10-02T15:24:51.7103025Z patching file drivers/s390/block/dasd_3990_erp.c
2025-10-02T15:24:51.7105644Z patching file drivers/s390/block/dasd_alias.c
2025-10-02T15:24:51.7107819Z patching file drivers/s390/block/dasd_diag.c
2025-10-02T15:24:51.7110757Z patching file drivers/s390/block/dasd_eckd.c
2025-10-02T15:24:51.7116997Z patching file drivers/s390/block/dasd_fba.c
2025-10-02T15:24:51.7118516Z patching file drivers/s390/block/dasd_int.h
2025-10-02T15:24:51.7120661Z patching file drivers/s390/block/dasd_ioctl.c
2025-10-02T15:24:51.7121957Z patching file drivers/s390/block/scm_blk.c
2025-10-02T15:24:51.7123208Z patching file drivers/s390/char/keyboard.h
2025-10-02T15:24:51.7124244Z patching file drivers/s390/char/sclp.c
2025-10-02T15:24:51.7125955Z patching file drivers/s390/char/sclp_early.c
2025-10-02T15:24:51.7126924Z patching file drivers/s390/char/sclp_sd.c
2025-10-02T15:24:51.7128426Z patching file drivers/s390/char/sclp_vt220.c
2025-10-02T15:24:51.7131445Z patching file drivers/s390/char/tape_std.c
2025-10-02T15:24:51.7131800Z patching file drivers/s390/char/zcore.c
2025-10-02T15:24:51.7133413Z patching file drivers/s390/cio/chp.c
2025-10-02T15:24:51.7134578Z patching file drivers/s390/cio/chsc.c
2025-10-02T15:24:51.7136581Z patching file drivers/s390/cio/css.c
2025-10-02T15:24:51.7138864Z patching file drivers/s390/cio/device.c
2025-10-02T15:24:51.7141567Z patching file drivers/s390/cio/device_ops.c
2025-10-02T15:24:51.7143477Z patching file drivers/s390/cio/idset.c
2025-10-02T15:24:51.7144137Z patching file drivers/s390/cio/qdio.h
2025-10-02T15:24:51.7145495Z patching file drivers/s390/cio/qdio_main.c
2025-10-02T15:24:51.7148218Z patching file drivers/s390/cio/trace.h
2025-10-02T15:24:51.7149016Z patching file drivers/s390/cio/vfio_ccw_cp.c
2025-10-02T15:24:51.7150719Z patching file drivers/s390/cio/vfio_ccw_drv.c
2025-10-02T15:24:51.7152050Z patching file drivers/s390/cio/vfio_ccw_fsm.c
2025-10-02T15:24:51.7153072Z patching file drivers/s390/cio/vfio_ccw_ops.c
2025-10-02T15:24:51.7154908Z patching file drivers/s390/crypto/ap_bus.c
2025-10-02T15:24:51.7157051Z patching file drivers/s390/crypto/ap_bus.h
2025-10-02T15:24:51.7158393Z patching file drivers/s390/crypto/ap_queue.c
2025-10-02T15:24:51.7160830Z patching file drivers/s390/crypto/pkey_api.c
2025-10-02T15:24:51.7163178Z patching file drivers/s390/crypto/vfio_ap_drv.c
2025-10-02T15:24:51.7164381Z patching file drivers/s390/crypto/vfio_ap_ops.c
2025-10-02T15:24:51.7166984Z patching file drivers/s390/crypto/vfio_ap_private.h
2025-10-02T15:24:51.7167817Z patching file drivers/s390/crypto/zcrypt_api.c
2025-10-02T15:24:51.7170479Z patching file drivers/s390/crypto/zcrypt_card.c
2025-10-02T15:24:51.7172039Z patching file drivers/s390/crypto/zcrypt_ccamisc.c
2025-10-02T15:24:51.7174213Z patching file drivers/s390/crypto/zcrypt_ep11misc.c
2025-10-02T15:24:51.7175849Z patching file drivers/s390/crypto/zcrypt_ep11misc.h
2025-10-02T15:24:51.7176616Z patching file drivers/s390/crypto/zcrypt_queue.c
2025-10-02T15:24:51.7178164Z patching file drivers/s390/net/ctcm_main.c
2025-10-02T15:24:51.7180666Z patching file drivers/s390/net/ctcm_mpc.c
2025-10-02T15:24:51.7182893Z patching file drivers/s390/net/ctcm_sysfs.c
2025-10-02T15:24:51.7184340Z patching file drivers/s390/net/lcs.c
2025-10-02T15:24:51.7187111Z patching file drivers/s390/net/netiucv.c
2025-10-02T15:24:51.7189659Z patching file drivers/s390/net/qeth_core.h
2025-10-02T15:24:51.7192905Z patching file drivers/s390/net/qeth_core_main.c
2025-10-02T15:24:51.7200580Z patching file drivers/s390/net/qeth_l2_main.c
2025-10-02T15:24:51.7203325Z patching file drivers/s390/net/qeth_l3_main.c
2025-10-02T15:24:51.7205717Z patching file drivers/s390/net/qeth_l3_sys.c
2025-10-02T15:24:51.7207110Z patching file drivers/s390/scsi/zfcp_aux.c
2025-10-02T15:24:51.7208545Z patching file drivers/s390/scsi/zfcp_fc.c
2025-10-02T15:24:51.7210551Z patching file drivers/s390/scsi/zfcp_fc.h
2025-10-02T15:24:51.7212353Z patching file drivers/s390/scsi/zfcp_fsf.c
2025-10-02T15:24:51.7215061Z patching file drivers/s390/scsi/zfcp_sysfs.c
2025-10-02T15:24:51.7216820Z patching file drivers/s390/virtio/virtio_ccw.c
2025-10-02T15:24:51.7220567Z patching file drivers/scsi/3w-9xxx.c
2025-10-02T15:24:51.7223517Z patching file drivers/scsi/3w-xxxx.c
2025-10-02T15:24:51.7226530Z patching file drivers/scsi/53c700.c
2025-10-02T15:24:51.7229923Z patching file drivers/scsi/BusLogic.c
2025-10-02T15:24:51.7233728Z patching file drivers/scsi/BusLogic.h
2025-10-02T15:24:51.7237123Z patching file drivers/scsi/FlashPoint.c
2025-10-02T15:24:51.7243101Z patching file drivers/scsi/Kconfig
2025-10-02T15:24:51.7245602Z patching file drivers/scsi/aacraid/aacraid.h
2025-10-02T15:24:51.7248315Z patching file drivers/scsi/aacraid/commctrl.c
2025-10-02T15:24:51.7250094Z patching file drivers/scsi/aacraid/comminit.c
2025-10-02T15:24:51.7251677Z patching file drivers/scsi/aacraid/linit.c
2025-10-02T15:24:51.7256198Z patching file drivers/scsi/advansys.c
2025-10-02T15:24:51.7262588Z patching file drivers/scsi/aha152x.c
2025-10-02T15:24:51.7266344Z patching file drivers/scsi/aic7xxx/aic7xxx_core.c
2025-10-02T15:24:51.7270426Z patching file drivers/scsi/aic94xx/aic94xx_init.c
2025-10-02T15:24:51.7271523Z patching file drivers/scsi/aic94xx/aic94xx_scb.c
2025-10-02T15:24:51.7272971Z patching file drivers/scsi/aic94xx/aic94xx_task.c
2025-10-02T15:24:51.7273997Z patching file drivers/scsi/arcmsr/arcmsr.h
2025-10-02T15:24:51.7276255Z patching file drivers/scsi/arcmsr/arcmsr_hba.c
2025-10-02T15:24:51.7279306Z patching file drivers/scsi/be2iscsi/be_iscsi.c
2025-10-02T15:24:51.7282333Z patching file drivers/scsi/be2iscsi/be_main.c
2025-10-02T15:24:51.7285447Z patching file drivers/scsi/bfa/bfa.h
2025-10-02T15:24:51.7286999Z patching file drivers/scsi/bfa/bfa_core.c
2025-10-02T15:24:51.7288301Z patching file drivers/scsi/bfa/bfa_ioc.h
2025-10-02T15:24:51.7289846Z patching file drivers/scsi/bfa/bfad.c
2025-10-02T15:24:51.7291404Z patching file drivers/scsi/bfa/bfad_attr.c
2025-10-02T15:24:51.7294253Z patching file drivers/scsi/bfa/bfad_bsg.c
2025-10-02T15:24:51.7297522Z patching file drivers/scsi/bfa/bfad_debugfs.c
2025-10-02T15:24:51.7298698Z patching file drivers/scsi/bfa/bfad_im.c
2025-10-02T15:24:51.7300711Z patching file drivers/scsi/bnx2fc/Kconfig
2025-10-02T15:24:51.7302120Z patching file drivers/scsi/bnx2fc/bnx2fc_fcoe.c
2025-10-02T15:24:51.7305386Z patching file drivers/scsi/bnx2fc/bnx2fc_io.c
2025-10-02T15:24:51.7307546Z patching file drivers/scsi/bnx2fc/bnx2fc_tgt.c
2025-10-02T15:24:51.7309666Z patching file drivers/scsi/bnx2i/bnx2i_iscsi.c
2025-10-02T15:24:51.7312015Z patching file drivers/scsi/csiostor/csio_defs.h
2025-10-02T15:24:51.7312937Z patching file drivers/scsi/csiostor/csio_init.c
2025-10-02T15:24:51.7315036Z patching file drivers/scsi/csiostor/csio_lnode.c
2025-10-02T15:24:51.7317102Z patching file drivers/scsi/csiostor/csio_lnode.h
2025-10-02T15:24:51.7318284Z patching file drivers/scsi/cxgbi/cxgb3i/cxgb3i.c
2025-10-02T15:24:51.7320363Z patching file drivers/scsi/cxgbi/cxgb4i/Kconfig
2025-10-02T15:24:51.7321590Z patching file drivers/scsi/cxgbi/cxgb4i/cxgb4i.c
2025-10-02T15:24:51.7324641Z patching file drivers/scsi/cxgbi/libcxgbi.c
2025-10-02T15:24:51.7328340Z patching file drivers/scsi/dc395x.c
2025-10-02T15:24:51.7332157Z patching file drivers/scsi/device_handler/scsi_dh_alua.c
2025-10-02T15:24:51.7333918Z patching file drivers/scsi/device_handler/scsi_dh_emc.c
2025-10-02T15:24:51.7335023Z patching file drivers/scsi/device_handler/scsi_dh_rdac.c
2025-10-02T15:24:51.7345217Z patching file drivers/scsi/dpt_i2o.c
2025-10-02T15:24:51.7345803Z patching file drivers/scsi/dpti.h
2025-10-02T15:24:51.7346209Z patching file drivers/scsi/fcoe/fcoe.c
2025-10-02T15:24:51.7346596Z patching file drivers/scsi/fcoe/fcoe_ctlr.c
2025-10-02T15:24:51.7349120Z patching file drivers/scsi/fcoe/fcoe_sysfs.c
2025-10-02T15:24:51.7351083Z patching file drivers/scsi/fnic/fnic_debugfs.c
2025-10-02T15:24:51.7352616Z patching file drivers/scsi/fnic/fnic_main.c
2025-10-02T15:24:51.7354444Z patching file drivers/scsi/fnic/vnic_dev.c
2025-10-02T15:24:51.7356988Z patching file drivers/scsi/hisi_sas/hisi_sas_main.c
2025-10-02T15:24:51.7360658Z patching file drivers/scsi/hisi_sas/hisi_sas_v1_hw.c
2025-10-02T15:24:51.7363724Z patching file drivers/scsi/hisi_sas/hisi_sas_v2_hw.c
2025-10-02T15:24:51.7367519Z patching file drivers/scsi/hisi_sas/hisi_sas_v3_hw.c
2025-10-02T15:24:51.7371374Z patching file drivers/scsi/hosts.c
2025-10-02T15:24:51.7375664Z patching file drivers/scsi/hpsa.c
2025-10-02T15:24:51.7382356Z patching file drivers/scsi/ibmvscsi/ibmvfc.c
2025-10-02T15:24:51.7387046Z patching file drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c
2025-10-02T15:24:51.7390024Z patching file drivers/scsi/ibmvscsi_tgt/libsrp.c
2025-10-02T15:24:51.7393877Z patching file drivers/scsi/ipr.c
2025-10-02T15:24:51.7399896Z patching file drivers/scsi/isci/init.c
2025-10-02T15:24:51.7401662Z patching file drivers/scsi/isci/port.c
2025-10-02T15:24:51.7404512Z patching file drivers/scsi/isci/request.c
2025-10-02T15:24:51.7407414Z patching file drivers/scsi/isci/task.c
2025-10-02T15:24:51.7409083Z patching file drivers/scsi/iscsi_tcp.c
2025-10-02T15:24:51.7411347Z patching file drivers/scsi/iscsi_tcp.h
2025-10-02T15:24:51.7412007Z patching file drivers/scsi/jazz_esp.c
2025-10-02T15:24:51.7413647Z patching file drivers/scsi/libfc/fc_exch.c
2025-10-02T15:24:51.7416339Z patching file drivers/scsi/libfc/fc_fcp.c
2025-10-02T15:24:51.7419048Z patching file drivers/scsi/libfc/fc_lport.c
2025-10-02T15:24:51.7421731Z patching file drivers/scsi/libfc/fc_rport.c
2025-10-02T15:24:51.7424891Z patching file drivers/scsi/libiscsi.c
2025-10-02T15:24:51.7429824Z patching file drivers/scsi/libsas/sas_ata.c
2025-10-02T15:24:51.7430999Z patching file drivers/scsi/libsas/sas_event.c
2025-10-02T15:24:51.7433088Z patching file drivers/scsi/libsas/sas_expander.c
2025-10-02T15:24:51.7435088Z patching file drivers/scsi/libsas/sas_init.c
2025-10-02T15:24:51.7436261Z patching file drivers/scsi/libsas/sas_internal.h
2025-10-02T15:24:51.7437403Z patching file drivers/scsi/libsas/sas_port.c
2025-10-02T15:24:51.7438647Z patching file drivers/scsi/libsas/sas_scsi_host.c
2025-10-02T15:24:51.7440227Z patching file drivers/scsi/libsas/sas_task.c
2025-10-02T15:24:51.7441386Z patching file drivers/scsi/lpfc/lpfc.h
2025-10-02T15:24:51.7445332Z patching file drivers/scsi/lpfc/lpfc_attr.c
2025-10-02T15:24:51.7450312Z patching file drivers/scsi/lpfc/lpfc_crtn.h
2025-10-02T15:24:51.7453328Z patching file drivers/scsi/lpfc/lpfc_debugfs.c
2025-10-02T15:24:51.7457517Z patching file drivers/scsi/lpfc/lpfc_disc.h
2025-10-02T15:24:51.7461273Z patching file drivers/scsi/lpfc/lpfc_els.c
2025-10-02T15:24:51.7468649Z patching file drivers/scsi/lpfc/lpfc_hbadisc.c
2025-10-02T15:24:51.7474290Z patching file drivers/scsi/lpfc/lpfc_hw4.h
2025-10-02T15:24:51.7481549Z patching file drivers/scsi/lpfc/lpfc_init.c
2025-10-02T15:24:51.7490150Z patching file drivers/scsi/lpfc/lpfc_mbox.c
2025-10-02T15:24:51.7492673Z patching file drivers/scsi/lpfc/lpfc_mem.c
2025-10-02T15:24:51.7494914Z patching file drivers/scsi/lpfc/lpfc_nportdisc.c
2025-10-02T15:24:51.7498212Z patching file drivers/scsi/lpfc/lpfc_nvme.c
2025-10-02T15:24:51.7501696Z patching file drivers/scsi/lpfc/lpfc_nvmet.c
2025-10-02T15:24:51.7506061Z patching file drivers/scsi/lpfc/lpfc_scsi.c
2025-10-02T15:24:51.7515717Z patching file drivers/scsi/lpfc/lpfc_sli.c
2025-10-02T15:24:51.7531625Z patching file drivers/scsi/lpfc/lpfc_sli4.h
2025-10-02T15:24:51.7534276Z patching file drivers/scsi/megaraid.c
2025-10-02T15:24:51.7537922Z patching file drivers/scsi/megaraid/megaraid_mm.c
2025-10-02T15:24:51.7540208Z patching file drivers/scsi/megaraid/megaraid_sas.h
2025-10-02T15:24:51.7545112Z patching file drivers/scsi/megaraid/megaraid_sas_base.c
2025-10-02T15:24:51.7553448Z patching file drivers/scsi/megaraid/megaraid_sas_fp.c
2025-10-02T15:24:51.7556017Z patching file drivers/scsi/megaraid/megaraid_sas_fusion.c
2025-10-02T15:24:51.7562585Z patching file drivers/scsi/mpt3sas/mpt3sas_base.c
2025-10-02T15:24:51.7570825Z patching file drivers/scsi/mpt3sas/mpt3sas_base.h
2025-10-02T15:24:51.7573755Z patching file drivers/scsi/mpt3sas/mpt3sas_ctl.c
2025-10-02T15:24:51.7580245Z patching file drivers/scsi/mpt3sas/mpt3sas_scsih.c
2025-10-02T15:24:51.7588788Z patching file drivers/scsi/mpt3sas/mpt3sas_transport.c
2025-10-02T15:24:51.7591248Z patching file drivers/scsi/mvsas/mv_init.c
2025-10-02T15:24:51.7593098Z patching file drivers/scsi/mvsas/mv_sas.c
2025-10-02T15:24:51.7596622Z patching file drivers/scsi/myrb.c
2025-10-02T15:24:51.7600858Z patching file drivers/scsi/myrs.c
2025-10-02T15:24:51.7604074Z patching file drivers/scsi/pcmcia/fdomain_cs.c
2025-10-02T15:24:51.7604978Z patching file drivers/scsi/pm8001/pm8001_ctl.c
2025-10-02T15:24:51.7607757Z patching file drivers/scsi/pm8001/pm8001_hwi.c
2025-10-02T15:24:51.7623723Z patching file drivers/scsi/pm8001/pm8001_init.c
2025-10-02T15:24:51.7626437Z patching file drivers/scsi/pm8001/pm8001_sas.c
2025-10-02T15:24:51.7630822Z patching file drivers/scsi/pm8001/pm8001_sas.h
2025-10-02T15:24:51.7633610Z patching file drivers/scsi/pm8001/pm80xx_hwi.c
2025-10-02T15:24:51.7651943Z patching file drivers/scsi/pm8001/pm80xx_hwi.h
2025-10-02T15:24:51.7655019Z patching file drivers/scsi/pmcraid.c
2025-10-02T15:24:51.7659321Z patching file drivers/scsi/qedf/qedf_dbg.h
2025-10-02T15:24:51.7660246Z patching file drivers/scsi/qedf/qedf_debugfs.c
2025-10-02T15:24:51.7662481Z patching file drivers/scsi/qedf/qedf_io.c
2025-10-02T15:24:51.7666229Z patching file drivers/scsi/qedf/qedf_main.c
2025-10-02T15:24:51.7670636Z patching file drivers/scsi/qedi/qedi.h
2025-10-02T15:24:51.7671475Z patching file drivers/scsi/qedi/qedi_debugfs.c
2025-10-02T15:24:51.7673164Z patching file drivers/scsi/qedi/qedi_fw.c
2025-10-02T15:24:51.7676412Z patching file drivers/scsi/qedi/qedi_iscsi.c
2025-10-02T15:24:51.7679359Z patching file drivers/scsi/qedi/qedi_main.c
2025-10-02T15:24:51.7683833Z patching file drivers/scsi/qla1280.c
2025-10-02T15:24:51.7687576Z patching file drivers/scsi/qla1280.h
2025-10-02T15:24:51.7690145Z patching file drivers/scsi/qla2xxx/qla_attr.c
2025-10-02T15:24:51.7694295Z patching file drivers/scsi/qla2xxx/qla_bsg.c
2025-10-02T15:24:51.7697386Z patching file drivers/scsi/qla2xxx/qla_dbg.c
2025-10-02T15:24:51.7701541Z patching file drivers/scsi/qla2xxx/qla_def.h
2025-10-02T15:24:51.7705258Z patching file drivers/scsi/qla2xxx/qla_dfs.c
2025-10-02T15:24:51.7707375Z patching file drivers/scsi/qla2xxx/qla_gbl.h
2025-10-02T15:24:51.7710280Z patching file drivers/scsi/qla2xxx/qla_gs.c
2025-10-02T15:24:51.7715548Z patching file drivers/scsi/qla2xxx/qla_init.c
2025-10-02T15:24:51.7722786Z patching file drivers/scsi/qla2xxx/qla_inline.h
2025-10-02T15:24:51.7724896Z patching file drivers/scsi/qla2xxx/qla_iocb.c
2025-10-02T15:24:51.7729058Z patching file drivers/scsi/qla2xxx/qla_isr.c
2025-10-02T15:24:51.7733856Z patching file drivers/scsi/qla2xxx/qla_mbx.c
2025-10-02T15:24:51.7738213Z patching file drivers/scsi/qla2xxx/qla_mid.c
2025-10-02T15:24:51.7740608Z patching file drivers/scsi/qla2xxx/qla_mr.c
2025-10-02T15:24:51.7743543Z patching file drivers/scsi/qla2xxx/qla_nvme.c
2025-10-02T15:24:51.7746205Z patching file drivers/scsi/qla2xxx/qla_nx.c
2025-10-02T15:24:51.7751283Z patching file drivers/scsi/qla2xxx/qla_os.c
2025-10-02T15:24:51.7758133Z patching file drivers/scsi/qla2xxx/qla_sup.c
2025-10-02T15:24:51.7763246Z patching file drivers/scsi/qla2xxx/qla_target.c
2025-10-02T15:24:51.7768011Z patching file drivers/scsi/qla2xxx/qla_target.h
2025-10-02T15:24:51.7769859Z patching file drivers/scsi/qla2xxx/qla_tmpl.c
2025-10-02T15:24:51.7771467Z patching file drivers/scsi/qla2xxx/qla_tmpl.h
2025-10-02T15:24:51.7772775Z patching file drivers/scsi/qla2xxx/tcm_qla2xxx.c
2025-10-02T15:24:51.7777425Z patching file drivers/scsi/qla4xxx/ql4_os.c
2025-10-02T15:24:51.7783116Z patching file drivers/scsi/raid_class.c
2025-10-02T15:24:51.7784190Z patching file drivers/scsi/scsi.c
2025-10-02T15:24:51.7787746Z patching file drivers/scsi/scsi_debug.c
2025-10-02T15:24:51.7793154Z patching file drivers/scsi/scsi_debugfs.c
2025-10-02T15:24:51.7794070Z patching file drivers/scsi/scsi_devinfo.c
2025-10-02T15:24:51.7796331Z patching file drivers/scsi/scsi_error.c
2025-10-02T15:24:51.7800307Z patching file drivers/scsi/scsi_lib.c
2025-10-02T15:24:51.7804067Z patching file drivers/scsi/scsi_pm.c
2025-10-02T15:24:51.7804735Z patching file drivers/scsi/scsi_priv.h
2025-10-02T15:24:51.7805909Z patching file drivers/scsi/scsi_proc.c
2025-10-02T15:24:51.7807993Z patching file drivers/scsi/scsi_scan.c
2025-10-02T15:24:51.7810610Z patching file drivers/scsi/scsi_sysfs.c
2025-10-02T15:24:51.7813914Z patching file drivers/scsi/scsi_transport_iscsi.c
2025-10-02T15:24:51.7820704Z patching file drivers/scsi/scsi_transport_sas.c
2025-10-02T15:24:51.7823288Z patching file drivers/scsi/scsi_transport_spi.c
2025-10-02T15:24:51.7825526Z patching file drivers/scsi/scsi_transport_srp.c
2025-10-02T15:24:51.7827851Z patching file drivers/scsi/sd.c
2025-10-02T15:24:51.7831531Z patching file drivers/scsi/sd_zbc.c
2025-10-02T15:24:51.7833246Z patching file drivers/scsi/ses.c
2025-10-02T15:24:51.7835911Z patching file drivers/scsi/sg.c
2025-10-02T15:24:51.7840901Z patching file drivers/scsi/smartpqi/smartpqi_init.c
2025-10-02T15:24:51.7846120Z patching file drivers/scsi/sni_53c710.c
2025-10-02T15:24:51.7846992Z patching file drivers/scsi/snic/snic_disc.c
2025-10-02T15:24:51.7848713Z patching file drivers/scsi/sr.c
2025-10-02T15:24:51.7850545Z patching file drivers/scsi/sr_vendor.c
2025-10-02T15:24:51.7852884Z patching file drivers/scsi/st.c
2025-10-02T15:24:51.7856522Z patching file drivers/scsi/st.h
2025-10-02T15:24:51.7857732Z patching file drivers/scsi/stex.c
2025-10-02T15:24:51.7860686Z patching file drivers/scsi/storvsc_drv.c
2025-10-02T15:24:51.7863552Z patching file drivers/scsi/sun3x_esp.c
2025-10-02T15:24:51.7864608Z patching file drivers/scsi/ufs/Kconfig
2025-10-02T15:24:51.7865447Z patching file drivers/scsi/ufs/cdns-pltfrm.c
2025-10-02T15:24:51.7866442Z patching file drivers/scsi/ufs/tc-dwc-g210-pci.c
2025-10-02T15:24:51.7867316Z patching file drivers/scsi/ufs/ti-j721e-ufs.c
2025-10-02T15:24:51.7868423Z patching file drivers/scsi/ufs/ufs-exynos.c
2025-10-02T15:24:51.7870851Z patching file drivers/scsi/ufs/ufs-exynos.h
2025-10-02T15:24:51.7871580Z patching file drivers/scsi/ufs/ufs-hisi.c
2025-10-02T15:24:51.7873253Z patching file drivers/scsi/ufs/ufs-mediatek.c
2025-10-02T15:24:51.7875074Z patching file drivers/scsi/ufs/ufs-qcom.c
2025-10-02T15:24:51.7877283Z patching file drivers/scsi/ufs/ufs-qcom.h
2025-10-02T15:24:51.7878421Z patching file drivers/scsi/ufs/ufs-sysfs.c
2025-10-02T15:24:51.7880276Z patching file drivers/scsi/ufs/ufs.h
2025-10-02T15:24:51.7881421Z patching file drivers/scsi/ufs/ufs_bsg.c
2025-10-02T15:24:51.7882424Z patching file drivers/scsi/ufs/ufshcd-pci.c
2025-10-02T15:24:51.7884159Z patching file drivers/scsi/ufs/ufshcd-pltfrm.c
2025-10-02T15:24:51.7887683Z patching file drivers/scsi/ufs/ufshcd.c
2025-10-02T15:24:51.7894633Z patching file drivers/scsi/ufs/ufshcd.h
2025-10-02T15:24:51.7896547Z patching file drivers/scsi/ufs/ufshci.h
2025-10-02T15:24:51.7897939Z patching file drivers/scsi/virtio_scsi.c
2025-10-02T15:24:51.7900126Z patching file drivers/scsi/vmw_pvscsi.c
2025-10-02T15:24:51.7902063Z patching file drivers/scsi/vmw_pvscsi.h
2025-10-02T15:24:51.7903335Z patching file drivers/scsi/xen-scsifront.c
2025-10-02T15:24:51.7905168Z patching file drivers/scsi/zorro7xx.c
2025-10-02T15:24:51.7906059Z patching file drivers/sh/clk/core.c
2025-10-02T15:24:51.7907313Z patching file drivers/sh/intc/core.c
2025-10-02T15:24:51.7908740Z patching file drivers/sh/maple/maple.c
2025-10-02T15:24:51.7910660Z patching file drivers/siox/siox-core.c
2025-10-02T15:24:51.7912133Z patching file drivers/slimbus/core.c
2025-10-02T15:24:51.7913142Z patching file drivers/slimbus/messaging.c
2025-10-02T15:24:51.7914613Z patching file drivers/slimbus/qcom-ctrl.c
2025-10-02T15:24:51.7916316Z patching file drivers/slimbus/qcom-ngd-ctrl.c
2025-10-02T15:24:51.7918106Z patching file drivers/slimbus/stream.c
2025-10-02T15:24:51.7919149Z patching file drivers/soc/amlogic/meson-canvas.c
2025-10-02T15:24:51.7920162Z patching file drivers/soc/amlogic/meson-mx-socinfo.c
2025-10-02T15:24:51.7921165Z patching file drivers/soc/amlogic/meson-secure-pwrc.c
2025-10-02T15:24:51.7922181Z patching file drivers/soc/aspeed/aspeed-lpc-ctrl.c
2025-10-02T15:24:51.7923175Z patching file drivers/soc/aspeed/aspeed-lpc-snoop.c
2025-10-02T15:24:51.7925000Z patching file drivers/soc/aspeed/aspeed-p2a-ctrl.c
2025-10-02T15:24:51.7925918Z patching file drivers/soc/atmel/soc.c
2025-10-02T15:24:51.7927379Z patching file drivers/soc/bcm/brcmstb/pm/pm-arm.c
2025-10-02T15:24:51.7929135Z patching file drivers/soc/fsl/Kconfig
2025-10-02T15:24:51.7929925Z patching file drivers/soc/fsl/dpaa2-console.c
2025-10-02T15:24:51.7931372Z patching file drivers/soc/fsl/dpio/dpio-service.c
2025-10-02T15:24:51.7933179Z patching file drivers/soc/fsl/dpio/qbman-portal.c
2025-10-02T15:24:51.7935046Z patching file drivers/soc/fsl/guts.c
2025-10-02T15:24:51.7936950Z patching file drivers/soc/fsl/qbman/qman.c
2025-10-02T15:24:51.7939912Z patching file drivers/soc/fsl/qe/Kconfig
2025-10-02T15:24:51.7940442Z patching file drivers/soc/fsl/qe/qe_io.c
2025-10-02T15:24:51.7941457Z patching file drivers/soc/imx/Kconfig
2025-10-02T15:24:51.7942224Z patching file drivers/soc/imx/soc-imx.c
2025-10-02T15:24:51.7943351Z patching file drivers/soc/ixp4xx/ixp4xx-npe.c
2025-10-02T15:24:51.7944752Z patching file drivers/soc/ixp4xx/ixp4xx-qmgr.c
2025-10-02T15:24:51.7945888Z patching file drivers/soc/mediatek/mtk-cmdq-helper.c
2025-10-02T15:24:51.7947199Z patching file drivers/soc/mediatek/mtk-mmsys.c
2025-10-02T15:24:51.7948378Z patching file drivers/soc/mediatek/mtk-scpsys.c
2025-10-02T15:24:51.7949956Z patching file drivers/soc/qcom/Kconfig
2025-10-02T15:24:51.7950900Z patching file drivers/soc/qcom/apr.c
2025-10-02T15:24:51.7953237Z patching file drivers/soc/qcom/cmd-db.c
2025-10-02T15:24:51.7954361Z patching file drivers/soc/qcom/cpr.c
2025-10-02T15:24:51.7956414Z patching file drivers/soc/qcom/llcc-qcom.c
2025-10-02T15:24:51.7957372Z patching file drivers/soc/qcom/mdt_loader.c
2025-10-02T15:24:51.7958941Z patching file drivers/soc/qcom/ocmem.c
2025-10-02T15:24:51.7960332Z patching file drivers/soc/qcom/pdr_interface.c
2025-10-02T15:24:51.7962224Z patching file drivers/soc/qcom/qcom-geni-se.c
2025-10-02T15:24:51.7964231Z patching file drivers/soc/qcom/qcom_aoss.c
2025-10-02T15:24:51.7965444Z patching file drivers/soc/qcom/qmi_encdec.c
2025-10-02T15:24:51.7967170Z patching file drivers/soc/qcom/rpmh-rsc.c
2025-10-02T15:24:51.7968775Z patching file drivers/soc/qcom/rpmh.c
2025-10-02T15:24:51.7969845Z patching file drivers/soc/qcom/rpmhpd.c
2025-10-02T15:24:51.7971545Z patching file drivers/soc/qcom/rpmpd.c
2025-10-02T15:24:51.7972365Z patching file drivers/soc/qcom/smem_state.c
2025-10-02T15:24:51.7973495Z patching file drivers/soc/qcom/smp2p.c
2025-10-02T15:24:51.7975029Z patching file drivers/soc/qcom/smsm.c
2025-10-02T15:24:51.7976724Z patching file drivers/soc/qcom/socinfo.c
2025-10-02T15:24:51.7977848Z patching file drivers/soc/renesas/r8a77980-sysc.c
2025-10-02T15:24:51.7978726Z patching file drivers/soc/renesas/r8a779a0-sysc.c
2025-10-02T15:24:51.7979985Z patching file drivers/soc/renesas/rmobile-sysc.c
2025-10-02T15:24:51.7981248Z patching file drivers/soc/rockchip/Kconfig
2025-10-02T15:24:51.7981840Z patching file drivers/soc/rockchip/grf.c
2025-10-02T15:24:51.7982870Z patching file drivers/soc/rockchip/io-domain.c
2025-10-02T15:24:51.7984425Z patching file drivers/soc/samsung/Kconfig
2025-10-02T15:24:51.7984977Z patching file drivers/soc/samsung/Makefile
2025-10-02T15:24:51.7985841Z patching file drivers/soc/samsung/exynos-asv.c
2025-10-02T15:24:51.7986986Z patching file drivers/soc/samsung/exynos-asv.h
2025-10-02T15:24:51.7987624Z patching file drivers/soc/samsung/exynos-chipid.c
2025-10-02T15:24:51.7989186Z patching file drivers/soc/sunxi/sunxi_sram.c
2025-10-02T15:24:51.7990809Z patching file drivers/soc/tegra/Kconfig
2025-10-02T15:24:51.7991706Z patching file drivers/soc/tegra/fuse/fuse-tegra.c
2025-10-02T15:24:51.8000441Z patching file drivers/soc/tegra/fuse/fuse-tegra30.c
2025-10-02T15:24:51.8002370Z patching file drivers/soc/tegra/fuse/fuse.h
2025-10-02T15:24:51.8003128Z patching file drivers/soc/tegra/fuse/speedo-tegra210.c
2025-10-02T15:24:51.8004265Z patching file drivers/soc/tegra/pmc.c
2025-10-02T15:24:51.8004885Z patching file drivers/soc/tegra/regulators-tegra30.c
2025-10-02T15:24:51.8005397Z patching file drivers/soc/ti/k3-socinfo.c
2025-10-02T15:24:51.8005859Z patching file drivers/soc/ti/knav_dma.c
2025-10-02T15:24:51.8006416Z patching file drivers/soc/ti/knav_qmss_queue.c
2025-10-02T15:24:51.8006968Z patching file drivers/soc/ti/omap_prm.c
2025-10-02T15:24:51.8007890Z patching file drivers/soc/ti/pm33xx.c
2025-10-02T15:24:51.8008462Z patching file drivers/soc/ti/pruss.c
2025-10-02T15:24:51.8009310Z patching file drivers/soc/ti/smartreflex.c
2025-10-02T15:24:51.8011308Z patching file drivers/soc/ti/ti_sci_pm_domains.c
2025-10-02T15:24:51.8012392Z patching file drivers/soc/ti/wkup_m3_ipc.c
2025-10-02T15:24:51.8013711Z patching file drivers/soc/ux500/ux500-soc-id.c
2025-10-02T15:24:51.8014385Z patching file drivers/soc/versatile/soc-integrator.c
2025-10-02T15:24:51.8015578Z patching file drivers/soc/versatile/soc-realview.c
2025-10-02T15:24:51.8016523Z patching file drivers/soc/xilinx/zynqmp_pm_domains.c
2025-10-02T15:24:51.8017151Z patching file drivers/soc/xilinx/zynqmp_power.c
2025-10-02T15:24:51.8018489Z patching file drivers/soundwire/bus.c
2025-10-02T15:24:51.8021345Z patching file drivers/soundwire/bus_type.c
2025-10-02T15:24:51.8022622Z patching file drivers/soundwire/cadence_master.c
2025-10-02T15:24:51.8026556Z patching file drivers/soundwire/cadence_master.h
2025-10-02T15:24:51.8027326Z patching file drivers/soundwire/debugfs.c
2025-10-02T15:24:51.8028040Z patching file drivers/soundwire/intel.c
2025-10-02T15:24:51.8029039Z patching file drivers/soundwire/intel_init.c
2025-10-02T15:24:51.8030111Z patching file drivers/soundwire/master.c
2025-10-02T15:24:51.8031113Z patching file drivers/soundwire/qcom.c
2025-10-02T15:24:51.8032697Z patching file drivers/soundwire/stream.c
2025-10-02T15:24:51.8035053Z patching file drivers/soundwire/sysfs_slave_dpn.c
2025-10-02T15:24:51.8036430Z patching file drivers/spi/Kconfig
2025-10-02T15:24:51.8038065Z patching file drivers/spi/atmel-quadspi.c
2025-10-02T15:24:51.8040411Z patching file drivers/spi/spi-altera.c
2025-10-02T15:24:51.8040957Z patching file drivers/spi/spi-amd.c
2025-10-02T15:24:51.8042526Z patching file drivers/spi/spi-ar934x.c
2025-10-02T15:24:51.8043816Z patching file drivers/spi/spi-armada-3700.c
2025-10-02T15:24:51.8044974Z patching file drivers/spi/spi-ath79.c
2025-10-02T15:24:51.8046126Z patching file drivers/spi/spi-atmel.c
2025-10-02T15:24:51.8049397Z patching file drivers/spi/spi-bcm-qspi.c
2025-10-02T15:24:51.8052085Z patching file drivers/spi/spi-bcm2835.c
2025-10-02T15:24:51.8054275Z patching file drivers/spi/spi-bcm63xx-hsspi.c
2025-10-02T15:24:51.8055674Z patching file drivers/spi/spi-bcm63xx.c
2025-10-02T15:24:51.8057204Z patching file drivers/spi/spi-bitbang.c
2025-10-02T15:24:51.8058501Z patching file drivers/spi/spi-cadence-quadspi.c
2025-10-02T15:24:51.8060715Z patching file drivers/spi/spi-cadence.c
2025-10-02T15:24:51.8062303Z patching file drivers/spi/spi-coldfire-qspi.c
2025-10-02T15:24:51.8063677Z patching file drivers/spi/spi-davinci.c
2025-10-02T15:24:51.8065309Z patching file drivers/spi/spi-dln2.c
2025-10-02T15:24:51.8066615Z patching file drivers/spi/spi-dw-bt1.c
2025-10-02T15:24:51.8067907Z patching file drivers/spi/spi-dw-core.c
2025-10-02T15:24:51.8069605Z patching file drivers/spi/spi-dw-dma.c
2025-10-02T15:24:51.8070883Z patching file drivers/spi/spi-fsl-cpm.c
2025-10-02T15:24:51.8072491Z patching file drivers/spi/spi-fsl-dspi.c
2025-10-02T15:24:51.8075124Z patching file drivers/spi/spi-fsl-lpspi.c
2025-10-02T15:24:51.8077201Z patching file drivers/spi/spi-fsl-qspi.c
2025-10-02T15:24:51.8078795Z patching file drivers/spi/spi-fsl-spi.c
2025-10-02T15:24:51.8081112Z patching file drivers/spi/spi-geni-qcom.c
2025-10-02T15:24:51.8082956Z patching file drivers/spi/spi-gpio.c
2025-10-02T15:24:51.8084356Z patching file drivers/spi/spi-hisi-sfc-v3xx.c
2025-10-02T15:24:51.8086432Z patching file drivers/spi/spi-img-spfi.c
2025-10-02T15:24:51.8088804Z patching file drivers/spi/spi-imx.c
2025-10-02T15:24:51.8092121Z patching file drivers/spi/spi-loopback-test.c
2025-10-02T15:24:51.8093638Z patching file drivers/spi/spi-mem.c
2025-10-02T15:24:51.8095025Z patching file drivers/spi/spi-meson-spicc.c
2025-10-02T15:24:51.8097136Z patching file drivers/spi/spi-meson-spifc.c
2025-10-02T15:24:51.8098175Z patching file drivers/spi/spi-mpc52xx.c
2025-10-02T15:24:51.8099753Z patching file drivers/spi/spi-mt65xx.c
2025-10-02T15:24:51.8101208Z patching file drivers/spi/spi-mt7621.c
2025-10-02T15:24:51.8102533Z patching file drivers/spi/spi-mtk-nor.c
2025-10-02T15:24:51.8103626Z patching file drivers/spi/spi-mux.c
2025-10-02T15:24:51.8104682Z patching file drivers/spi/spi-mxic.c
2025-10-02T15:24:51.8106110Z patching file drivers/spi/spi-mxs.c
2025-10-02T15:24:51.8107466Z patching file drivers/spi/spi-npcm-fiu.c
2025-10-02T15:24:51.8109164Z patching file drivers/spi/spi-nxp-fspi.c
2025-10-02T15:24:51.8111081Z patching file drivers/spi/spi-omap-100k.c
2025-10-02T15:24:51.8112345Z patching file drivers/spi/spi-omap-uwire.c
2025-10-02T15:24:51.8113767Z patching file drivers/spi/spi-omap2-mcspi.c
2025-10-02T15:24:51.8115762Z patching file drivers/spi/spi-pic32.c
2025-10-02T15:24:51.8117633Z patching file drivers/spi/spi-pl022.c
2025-10-02T15:24:51.8120116Z patching file drivers/spi/spi-ppc4xx.c
2025-10-02T15:24:51.8121232Z patching file drivers/spi/spi-pxa2xx-pci.c
2025-10-02T15:24:51.8123040Z patching file drivers/spi/spi-pxa2xx.c
2025-10-02T15:24:51.8125262Z patching file drivers/spi/spi-qcom-qspi.c
2025-10-02T15:24:51.8127052Z patching file drivers/spi/spi-qup.c
2025-10-02T15:24:51.8129176Z patching file drivers/spi/spi-rb4xx.c
2025-10-02T15:24:51.8130027Z patching file drivers/spi/spi-rockchip.c
2025-10-02T15:24:51.8131870Z patching file drivers/spi/spi-rpc-if.c
2025-10-02T15:24:51.8133060Z patching file drivers/spi/spi-rspi.c
2025-10-02T15:24:51.8135126Z patching file drivers/spi/spi-s3c64xx.c
2025-10-02T15:24:51.8136877Z patching file drivers/spi/spi-sc18is602.c
2025-10-02T15:24:51.8138173Z patching file drivers/spi/spi-sh-msiof.c
2025-10-02T15:24:51.8140449Z patching file drivers/spi/spi-sh.c
2025-10-02T15:24:51.8141561Z patching file drivers/spi/spi-sprd-adi.c
2025-10-02T15:24:51.8142931Z patching file drivers/spi/spi-sprd.c
2025-10-02T15:24:51.8144364Z patching file drivers/spi/spi-st-ssc4.c
2025-10-02T15:24:51.8145628Z patching file drivers/spi/spi-stm32-qspi.c
2025-10-02T15:24:51.8147711Z patching file drivers/spi/spi-stm32.c
2025-10-02T15:24:51.8150760Z patching file drivers/spi/spi-sun4i.c
2025-10-02T15:24:51.8152043Z patching file drivers/spi/spi-sun6i.c
2025-10-02T15:24:51.8153345Z patching file drivers/spi/spi-synquacer.c
2025-10-02T15:24:51.8155256Z patching file drivers/spi/spi-tegra114.c
2025-10-02T15:24:51.8157166Z patching file drivers/spi/spi-tegra20-sflash.c
2025-10-02T15:24:51.8158541Z patching file drivers/spi/spi-tegra20-slink.c
2025-10-02T15:24:51.8160526Z patching file drivers/spi/spi-ti-qspi.c
2025-10-02T15:24:51.8162402Z patching file drivers/spi/spi-topcliff-pch.c
2025-10-02T15:24:51.8164355Z patching file drivers/spi/spi-uniphier.c
2025-10-02T15:24:51.8165992Z patching file drivers/spi/spi-zynq-qspi.c
2025-10-02T15:24:51.8167933Z patching file drivers/spi/spi-zynqmp-gqspi.c
2025-10-02T15:24:51.8172105Z patching file drivers/spi/spi.c
2025-10-02T15:24:51.8176756Z patching file drivers/spi/spidev.c
2025-10-02T15:24:51.8178505Z patching file drivers/spmi/spmi-pmic-arb.c
2025-10-02T15:24:51.8180454Z patching file drivers/spmi/spmi.c
2025-10-02T15:24:51.8181809Z patching file drivers/ssb/main.c
2025-10-02T15:24:51.8183206Z patching file drivers/ssb/scan.c
2025-10-02T15:24:51.8184075Z patching file drivers/ssb/sdio.c
2025-10-02T15:24:51.8185554Z patching file drivers/staging/android/ion/ion.c
2025-10-02T15:24:51.8187004Z patching file drivers/staging/axis-fifo/axis-fifo.c
2025-10-02T15:24:51.8188382Z patching file drivers/staging/board/board.c
2025-10-02T15:24:51.8189196Z patching file drivers/staging/clocking-wizard/Kconfig
2025-10-02T15:24:51.8191084Z patching file drivers/staging/comedi/comedi_fops.c
2025-10-02T15:24:51.8194158Z patching file drivers/staging/comedi/comedi_internal.h
2025-10-02T15:24:51.8194963Z patching file drivers/staging/comedi/drivers.c
2025-10-02T15:24:51.8197225Z patching file drivers/staging/comedi/drivers/addi_apci_1032.c
2025-10-02T15:24:51.8198422Z patching file drivers/staging/comedi/drivers/addi_apci_1500.c
2025-10-02T15:24:51.8200348Z patching file drivers/staging/comedi/drivers/adv_pci1710.c
2025-10-02T15:24:51.8201985Z patching file drivers/staging/comedi/drivers/adv_pci1760.c
2025-10-02T15:24:51.8203038Z patching file drivers/staging/comedi/drivers/aio_iiro_16.c
2025-10-02T15:24:51.8204521Z patching file drivers/staging/comedi/drivers/cb_pcidas.c
2025-10-02T15:24:51.8207202Z patching file drivers/staging/comedi/drivers/cb_pcidas64.c
2025-10-02T15:24:51.8210763Z patching file drivers/staging/comedi/drivers/comedi_test.c
2025-10-02T15:24:51.8212613Z patching file drivers/staging/comedi/drivers/das16m1.c
2025-10-02T15:24:51.8213974Z patching file drivers/staging/comedi/drivers/das6402.c
2025-10-02T15:24:51.8215431Z patching file drivers/staging/comedi/drivers/das800.c
2025-10-02T15:24:51.8216866Z patching file drivers/staging/comedi/drivers/dmm32at.c
2025-10-02T15:24:51.8218339Z patching file drivers/staging/comedi/drivers/dt9812.c
2025-10-02T15:24:51.8220480Z patching file drivers/staging/comedi/drivers/jr3_pci.c
2025-10-02T15:24:51.8222208Z patching file drivers/staging/comedi/drivers/me4000.c
2025-10-02T15:24:51.8223827Z patching file drivers/staging/comedi/drivers/mf6x4.c
2025-10-02T15:24:51.8225091Z patching file drivers/staging/comedi/drivers/ni_usb6501.c
2025-10-02T15:24:51.8226393Z patching file drivers/staging/comedi/drivers/pcl711.c
2025-10-02T15:24:51.8227858Z patching file drivers/staging/comedi/drivers/pcl812.c
2025-10-02T15:24:51.8229831Z patching file drivers/staging/comedi/drivers/pcl818.c
2025-10-02T15:24:51.8231535Z patching file drivers/staging/comedi/drivers/tests/ni_routes_test.c
2025-10-02T15:24:51.8233068Z patching file drivers/staging/comedi/drivers/vmk80xx.c
2025-10-02T15:24:51.8235520Z patching file drivers/staging/emxx_udc/emxx_udc.c
2025-10-02T15:24:51.8238168Z patching file drivers/staging/fbtft/fb_agm1264k-fl.c
2025-10-02T15:24:51.8239120Z patching file drivers/staging/fbtft/fb_bd663474.c
2025-10-02T15:24:51.8240204Z patching file drivers/staging/fbtft/fb_ili9163.c
2025-10-02T15:24:51.8241262Z patching file drivers/staging/fbtft/fb_ili9320.c
2025-10-02T15:24:51.8242208Z patching file drivers/staging/fbtft/fb_ili9325.c
2025-10-02T15:24:51.8243075Z patching file drivers/staging/fbtft/fb_ili9340.c
2025-10-02T15:24:51.8243916Z patching file drivers/staging/fbtft/fb_s6d1121.c
2025-10-02T15:24:51.8244880Z patching file drivers/staging/fbtft/fb_sh1106.c
2025-10-02T15:24:51.8245666Z patching file drivers/staging/fbtft/fb_ssd1289.c
2025-10-02T15:24:51.8246690Z patching file drivers/staging/fbtft/fb_ssd1325.c
2025-10-02T15:24:51.8247561Z patching file drivers/staging/fbtft/fb_ssd1331.c
2025-10-02T15:24:51.8248583Z patching file drivers/staging/fbtft/fb_ssd1351.c
2025-10-02T15:24:51.8249646Z patching file drivers/staging/fbtft/fb_st7789v.c
2025-10-02T15:24:51.8250552Z patching file drivers/staging/fbtft/fb_upd161704.c
2025-10-02T15:24:51.8251522Z patching file drivers/staging/fbtft/fb_watterott.c
2025-10-02T15:24:51.8252367Z patching file drivers/staging/fbtft/fbtft-bus.c
2025-10-02T15:24:51.8253659Z patching file drivers/staging/fbtft/fbtft-core.c
2025-10-02T15:24:51.8255656Z patching file drivers/staging/fbtft/fbtft-io.c
2025-10-02T15:24:51.8256577Z patching file drivers/staging/fbtft/fbtft.h
2025-10-02T15:24:51.8258210Z patching file drivers/staging/fieldbus/anybuss/host.c
2025-10-02T15:24:51.8260669Z patching file drivers/staging/fwserial/fwserial.c
2025-10-02T15:24:51.8263444Z patching file drivers/staging/gasket/gasket_interrupt.c
2025-10-02T15:24:51.8264718Z patching file drivers/staging/gdm724x/gdm_lte.c
2025-10-02T15:24:51.8266413Z patching file drivers/staging/gdm724x/gdm_usb.c
2025-10-02T15:24:51.8267897Z patching file drivers/staging/greybus/arche-apb-ctrl.c
2025-10-02T15:24:51.8268887Z patching file drivers/staging/greybus/arche-platform.c
2025-10-02T15:24:51.8270586Z patching file drivers/staging/greybus/audio_codec.c
2025-10-02T15:24:51.8272065Z patching file drivers/staging/greybus/audio_helper.c
2025-10-02T15:24:51.8273480Z patching file drivers/staging/greybus/audio_topology.c
2025-10-02T15:24:51.8275717Z patching file drivers/staging/greybus/light.c
2025-10-02T15:24:51.8277514Z patching file drivers/staging/greybus/uart.c
2025-10-02T15:24:51.8279679Z patching file drivers/staging/hikey9xx/hi6421-spmi-pmic.c
2025-10-02T15:24:51.8280490Z patching file drivers/staging/hikey9xx/hisi-spmi-controller.c
2025-10-02T15:24:51.8282018Z patching file drivers/staging/iio/accel/adis16203.c
2025-10-02T15:24:51.8282669Z patching file drivers/staging/iio/accel/adis16240.c
2025-10-02T15:24:51.8284181Z patching file drivers/staging/iio/adc/ad7280a.c
2025-10-02T15:24:51.8285319Z patching file drivers/staging/iio/adc/ad7816.c
2025-10-02T15:24:51.8286389Z patching file drivers/staging/iio/cdc/ad7746.c
2025-10-02T15:24:51.8287855Z patching file drivers/staging/iio/frequency/ad9832.c
2025-10-02T15:24:51.8288808Z patching file drivers/staging/iio/frequency/ad9834.c
2025-10-02T15:24:51.8290432Z patching file drivers/staging/iio/impedance-analyzer/ad5933.c
2025-10-02T15:24:51.8291587Z patching file drivers/staging/iio/resolver/ad2s1210.c
2025-10-02T15:24:51.8292858Z patching file drivers/staging/ks7010/Kconfig
2025-10-02T15:24:51.8293649Z patching file drivers/staging/ks7010/ks7010_sdio.c
2025-10-02T15:24:51.8296021Z patching file drivers/staging/ks7010/ks_wlan_net.c
2025-10-02T15:24:51.8299043Z patching file drivers/staging/media/allegro-dvt/allegro-core.c
2025-10-02T15:24:51.8301813Z patching file drivers/staging/media/atomisp/Kconfig
2025-10-02T15:24:51.8302735Z patching file drivers/staging/media/atomisp/i2c/atomisp-lm3554.c
2025-10-02T15:24:51.8304592Z patching file drivers/staging/media/atomisp/i2c/atomisp-mt9m114.c
2025-10-02T15:24:51.8306335Z patching file drivers/staging/media/atomisp/i2c/ov2680.h
2025-10-02T15:24:51.8308057Z patching file drivers/staging/media/atomisp/pci/atomisp_acc.c
2025-10-02T15:24:51.8311379Z patching file drivers/staging/media/atomisp/pci/atomisp_cmd.c
2025-10-02T15:24:51.8316045Z patching file drivers/staging/media/atomisp/pci/atomisp_fops.c
2025-10-02T15:24:51.8317964Z patching file drivers/staging/media/atomisp/pci/atomisp_gmin_platform.c
2025-10-02T15:24:51.8320426Z patching file drivers/staging/media/atomisp/pci/atomisp_ioctl.c
2025-10-02T15:24:51.8323775Z patching file drivers/staging/media/atomisp/pci/atomisp_subdev.c
2025-10-02T15:24:51.8325632Z patching file drivers/staging/media/atomisp/pci/atomisp_subdev.h
2025-10-02T15:24:51.8327163Z patching file drivers/staging/media/atomisp/pci/atomisp_v4l2.c
2025-10-02T15:24:51.8329093Z patching file drivers/staging/media/atomisp/pci/atomisp_v4l2.h
2025-10-02T15:24:51.8329925Z patching file drivers/staging/media/atomisp/pci/hmm/hmm.c
2025-10-02T15:24:51.8331748Z patching file drivers/staging/media/atomisp/pci/hmm/hmm_bo.c
2025-10-02T15:24:51.8333602Z patching file drivers/staging/media/atomisp/pci/isp/kernels/bh/bh_2/ia_css_bh.host.c
2025-10-02T15:24:51.8334507Z patching file drivers/staging/media/atomisp/pci/isp/kernels/raw_aa_binning/raw_aa_binning_1.0/ia_css_raa.host.c
2025-10-02T15:24:51.8335489Z patching file drivers/staging/media/atomisp/pci/isp/kernels/s3a/s3a_1.0/ia_css_s3a.host.c
2025-10-02T15:24:51.8337233Z patching file drivers/staging/media/atomisp/pci/runtime/binary/src/binary.c
2025-10-02T15:24:51.8341999Z patching file drivers/staging/media/atomisp/pci/sh_css.c
2025-10-02T15:24:51.8347595Z patching file drivers/staging/media/atomisp/pci/sh_css_frac.h
2025-10-02T15:24:51.8348698Z patching file drivers/staging/media/atomisp/pci/sh_css_mipi.c
2025-10-02T15:24:51.8351822Z patching file drivers/staging/media/atomisp/pci/sh_css_params.c
2025-10-02T15:24:51.8356078Z patching file drivers/staging/media/hantro/hantro_drv.c
2025-10-02T15:24:51.8357855Z patching file drivers/staging/media/hantro/hantro_g1_vp8_dec.c
2025-10-02T15:24:51.8358752Z patching file drivers/staging/media/hantro/hantro_h1_jpeg_enc.c
2025-10-02T15:24:51.8359813Z patching file drivers/staging/media/hantro/hantro_h1_regs.h
2025-10-02T15:24:51.8360853Z patching file drivers/staging/media/hantro/hantro_v4l2.c
2025-10-02T15:24:51.8362584Z patching file drivers/staging/media/hantro/rk3399_vpu_hw_vp8_dec.c
2025-10-02T15:24:51.8363890Z patching file drivers/staging/media/imx/imx-media-capture.c
2025-10-02T15:24:51.8365645Z patching file drivers/staging/media/imx/imx-media-csc-scaler.c
2025-10-02T15:24:51.8367552Z patching file drivers/staging/media/imx/imx-media-csi.c
2025-10-02T15:24:51.8369900Z patching file drivers/staging/media/imx/imx-media-dev-common.c
2025-10-02T15:24:51.8370658Z patching file drivers/staging/media/imx/imx-media-dev.c
2025-10-02T15:24:51.8371616Z patching file drivers/staging/media/imx/imx-media-of.c
2025-10-02T15:24:51.8372604Z patching file drivers/staging/media/imx/imx6-mipi-csi2.c
2025-10-02T15:24:51.8374456Z patching file drivers/staging/media/imx/imx7-media-csi.c
2025-10-02T15:24:51.8376509Z patching file drivers/staging/media/imx/imx7-mipi-csis.c
2025-10-02T15:24:51.8378314Z patching file drivers/staging/media/ipu3/ipu3-css-fw.c
2025-10-02T15:24:51.8378929Z patching file drivers/staging/media/ipu3/ipu3-css-fw.h
2025-10-02T15:24:51.8380461Z patching file drivers/staging/media/ipu3/ipu3-v4l2.c
2025-10-02T15:24:51.8382669Z patching file drivers/staging/media/meson/vdec/esparser.c
2025-10-02T15:24:51.8383926Z patching file drivers/staging/media/meson/vdec/vdec.c
2025-10-02T15:24:51.8385638Z patching file drivers/staging/media/meson/vdec/vdec_helpers.c
2025-10-02T15:24:51.8386489Z patching file drivers/staging/media/meson/vdec/vdec_helpers.h
2025-10-02T15:24:51.8387283Z patching file drivers/staging/media/meson/vdec/vdec_hevc.c
2025-10-02T15:24:51.8388620Z patching file drivers/staging/media/omap4iss/iss.c
2025-10-02T15:24:51.8390631Z patching file drivers/staging/media/rkisp1/rkisp1-capture.c
2025-10-02T15:24:51.8392320Z patching file drivers/staging/media/rkisp1/rkisp1-dev.c
2025-10-02T15:24:51.8393936Z patching file drivers/staging/media/rkisp1/rkisp1-params.c
2025-10-02T15:24:51.8395686Z patching file drivers/staging/media/rkisp1/rkisp1-resizer.c
2025-10-02T15:24:51.8397350Z patching file drivers/staging/media/rkvdec/rkvdec-h264.c
2025-10-02T15:24:51.8399340Z patching file drivers/staging/media/rkvdec/rkvdec.c
2025-10-02T15:24:51.8401548Z patching file drivers/staging/media/sunxi/cedrus/cedrus.c
2025-10-02T15:24:51.8402940Z patching file drivers/staging/media/sunxi/cedrus/cedrus_h264.c
2025-10-02T15:24:51.8404252Z patching file drivers/staging/media/sunxi/cedrus/cedrus_h265.c
2025-10-02T15:24:51.8405477Z patching file drivers/staging/media/sunxi/cedrus/cedrus_hw.c
2025-10-02T15:24:51.8406661Z patching file drivers/staging/media/sunxi/cedrus/cedrus_regs.h
2025-10-02T15:24:51.8408001Z patching file drivers/staging/media/sunxi/cedrus/cedrus_video.c
2025-10-02T15:24:51.8409285Z patching file drivers/staging/media/tegra-video/csi.c
2025-10-02T15:24:51.8410647Z patching file drivers/staging/media/tegra-video/csi.h
2025-10-02T15:24:51.8411635Z patching file drivers/staging/media/zoran/zoran.h
2025-10-02T15:24:51.8412913Z patching file drivers/staging/media/zoran/zoran_card.c
2025-10-02T15:24:51.8415305Z patching file drivers/staging/media/zoran/zoran_device.c
2025-10-02T15:24:51.8416692Z patching file drivers/staging/media/zoran/zoran_driver.c
2025-10-02T15:24:51.8418535Z patching file drivers/staging/most/dim2/Makefile
2025-10-02T15:24:51.8419391Z patching file drivers/staging/most/dim2/dim2.c
2025-10-02T15:24:51.8421706Z patching file drivers/staging/most/dim2/sysfs.c
2025-10-02T15:24:51.8422310Z patching file drivers/staging/most/dim2/sysfs.h
2025-10-02T15:24:51.8423414Z patching file drivers/staging/most/sound/sound.c
2025-10-02T15:24:51.8424616Z patching file drivers/staging/mt7621-dma/Makefile
2025-10-02T15:24:51.8425493Z patching file drivers/staging/mt7621-dma/hsdma-mt7621.c
2025-10-02T15:24:51.8428532Z patching file drivers/staging/mt7621-dma/mtk-hsdma.c
2025-10-02T15:24:51.8431241Z patching file drivers/staging/mt7621-dts/gbpc1.dts
2025-10-02T15:24:51.8432411Z patching file drivers/staging/mt7621-dts/gbpc2.dts
2025-10-02T15:24:51.8440228Z patching file drivers/staging/mt7621-dts/mt7621.dtsi
2025-10-02T15:24:51.8440738Z patching file drivers/staging/mt7621-pinctrl/pinctrl-rt2880.c
2025-10-02T15:24:51.8441140Z patching file drivers/staging/nvec/nvec_power.c
2025-10-02T15:24:51.8441558Z patching file drivers/staging/rtl8188eu/core/rtw_ap.c
2025-10-02T15:24:51.8442023Z patching file drivers/staging/rtl8188eu/os_dep/ioctl_linux.c
2025-10-02T15:24:51.8442935Z patching file drivers/staging/rtl8188eu/os_dep/usb_intf.c
2025-10-02T15:24:51.8444038Z patching file drivers/staging/rtl8192e/Kconfig
2025-10-02T15:24:51.8445906Z patching file drivers/staging/rtl8192e/rtl8192e/rtl_core.c
2025-10-02T15:24:51.8448937Z patching file drivers/staging/rtl8192e/rtl8192e/rtl_dm.c
2025-10-02T15:24:51.8451882Z patching file drivers/staging/rtl8192e/rtl8192e/rtl_wx.c
2025-10-02T15:24:51.8453677Z patching file drivers/staging/rtl8192e/rtllib.h
2025-10-02T15:24:51.8455687Z patching file drivers/staging/rtl8192e/rtllib_module.c
2025-10-02T15:24:51.8457452Z patching file drivers/staging/rtl8192e/rtllib_rx.c
2025-10-02T15:24:51.8460780Z patching file drivers/staging/rtl8192e/rtllib_softmac.c
2025-10-02T15:24:51.8464324Z patching file drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c
2025-10-02T15:24:51.8467324Z patching file drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.c
2025-10-02T15:24:51.8470196Z patching file drivers/staging/rtl8192u/r8192U.h
2025-10-02T15:24:51.8472713Z patching file drivers/staging/rtl8192u/r8192U_core.c
2025-10-02T15:24:51.8477414Z patching file drivers/staging/rtl8192u/r8192U_dm.c
2025-10-02T15:24:51.8480155Z patching file drivers/staging/rtl8192u/r8192U_dm.h
2025-10-02T15:24:51.8481314Z patching file drivers/staging/rtl8192u/r8192U_wx.c
2025-10-02T15:24:51.8482980Z patching file drivers/staging/rtl8712/hal_init.c
2025-10-02T15:24:51.8483910Z patching file drivers/staging/rtl8712/ieee80211.c
2025-10-02T15:24:51.8485479Z patching file drivers/staging/rtl8712/os_intfs.c
2025-10-02T15:24:51.8486694Z patching file drivers/staging/rtl8712/rtl8712_cmd.c
2025-10-02T15:24:51.8488465Z patching file drivers/staging/rtl8712/rtl8712_led.c
2025-10-02T15:24:51.8490938Z patching file drivers/staging/rtl8712/rtl871x_cmd.c
2025-10-02T15:24:51.8492784Z patching file drivers/staging/rtl8712/rtl871x_ioctl_linux.c
2025-10-02T15:24:51.8494866Z patching file drivers/staging/rtl8712/rtl871x_led.h
2025-10-02T15:24:51.8496006Z patching file drivers/staging/rtl8712/rtl871x_mlme.c
2025-10-02T15:24:51.8497870Z patching file drivers/staging/rtl8712/rtl871x_pwrctrl.c
2025-10-02T15:24:51.8498590Z patching file drivers/staging/rtl8712/rtl871x_pwrctrl.h
2025-10-02T15:24:51.8499831Z patching file drivers/staging/rtl8712/rtl871x_xmit.c
2025-10-02T15:24:51.8501761Z patching file drivers/staging/rtl8712/usb_intf.c
2025-10-02T15:24:51.8503239Z patching file drivers/staging/rtl8712/usb_ops.c
2025-10-02T15:24:51.8504287Z patching file drivers/staging/rtl8712/usb_ops_linux.c
2025-10-02T15:24:51.8505760Z patching file drivers/staging/rtl8712/wifi.h
2025-10-02T15:24:51.8506714Z patching file drivers/staging/rtl8712/xmit_linux.c
2025-10-02T15:24:51.8508513Z patching file drivers/staging/rtl8723bs/core/rtw_cmd.c
2025-10-02T15:24:51.8511642Z patching file drivers/staging/rtl8723bs/core/rtw_mlme.c
2025-10-02T15:24:51.8514515Z patching file drivers/staging/rtl8723bs/core/rtw_security.c
2025-10-02T15:24:51.8516806Z patching file drivers/staging/rtl8723bs/hal/odm.h
2025-10-02T15:24:51.8518421Z patching file drivers/staging/rtl8723bs/hal/sdio_ops.c
2025-10-02T15:24:51.8520748Z patching file drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.c
2025-10-02T15:24:51.8524216Z patching file drivers/staging/rtl8723bs/os_dep/ioctl_linux.c
2025-10-02T15:24:51.8527122Z patching file drivers/staging/rtl8723bs/os_dep/wifi_regd.c
2025-10-02T15:24:51.8528607Z patching file drivers/staging/rts5208/rtsx_scsi.c
2025-10-02T15:24:51.8530970Z patching file drivers/staging/vc04_services/bcm2835-audio/bcm2835-ctl.c
2025-10-02T15:24:51.8531784Z patching file drivers/staging/vc04_services/bcm2835-audio/bcm2835-pcm.c
2025-10-02T15:24:51.8532711Z patching file drivers/staging/vc04_services/bcm2835-audio/bcm2835.c
2025-10-02T15:24:51.8533759Z patching file drivers/staging/vc04_services/include/linux/raspberrypi/vchiq.h
2025-10-02T15:24:51.8535405Z patching file drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.c
2025-10-02T15:24:51.8537554Z patching file drivers/staging/vc04_services/interface/vchiq_arm/vchiq_arm.h
2025-10-02T15:24:51.8539220Z patching file drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c
2025-10-02T15:24:51.8541767Z patching file drivers/staging/vc04_services/vchiq-mmal/Kconfig
2025-10-02T15:24:51.8542855Z patching file drivers/staging/vc04_services/vchiq-mmal/mmal-vchiq.c
2025-10-02T15:24:51.8544907Z patching file drivers/staging/vt6655/device_main.c
2025-10-02T15:24:51.8546519Z patching file drivers/staging/wfx/bus_sdio.c
2025-10-02T15:24:51.8547596Z patching file drivers/staging/wfx/data_tx.c
2025-10-02T15:24:51.8548813Z patching file drivers/staging/wfx/data_tx.h
2025-10-02T15:24:51.8549708Z patching file drivers/staging/wfx/main.c
2025-10-02T15:24:51.8552056Z patching file drivers/staging/wlan-ng/hfa384x_usb.c
2025-10-02T15:24:51.8555398Z patching file drivers/target/iscsi/cxgbit/cxgbit_ddp.c
2025-10-02T15:24:51.8556812Z patching file drivers/target/iscsi/cxgbit/cxgbit_target.c
2025-10-02T15:24:51.8559855Z patching file drivers/target/iscsi/iscsi_target.c
2025-10-02T15:24:51.8563040Z patching file drivers/target/iscsi/iscsi_target_configfs.c
2025-10-02T15:24:51.8565061Z patching file drivers/target/iscsi/iscsi_target_nego.c
2025-10-02T15:24:51.8566868Z patching file drivers/target/iscsi/iscsi_target_parameters.c
2025-10-02T15:24:51.8568516Z patching file drivers/target/iscsi/iscsi_target_tpg.c
2025-10-02T15:24:51.8569965Z patching file drivers/target/loopback/tcm_loop.c
2025-10-02T15:24:51.8571933Z patching file drivers/target/target_core_alua.c
2025-10-02T15:24:51.8574477Z patching file drivers/target/target_core_configfs.c
2025-10-02T15:24:51.8577117Z patching file drivers/target/target_core_device.c
2025-10-02T15:24:51.8578913Z patching file drivers/target/target_core_file.c
2025-10-02T15:24:51.8580508Z patching file drivers/target/target_core_iblock.c
2025-10-02T15:24:51.8581665Z patching file drivers/target/target_core_internal.h
2025-10-02T15:24:51.8583619Z patching file drivers/target/target_core_pr.c
2025-10-02T15:24:51.8586589Z patching file drivers/target/target_core_pscsi.c
2025-10-02T15:24:51.8588173Z patching file drivers/target/target_core_sbc.c
2025-10-02T15:24:51.8590172Z patching file drivers/target/target_core_tmr.c
2025-10-02T15:24:51.8592632Z patching file drivers/target/target_core_transport.c
2025-10-02T15:24:51.8596275Z patching file drivers/target/target_core_user.c
2025-10-02T15:24:51.8598782Z patching file drivers/target/target_core_xcopy.c
2025-10-02T15:24:51.8600430Z patching file drivers/target/target_core_xcopy.h
2025-10-02T15:24:51.8601179Z patching file drivers/target/tcm_fc/tfc_cmd.c
2025-10-02T15:24:51.8602259Z patching file drivers/tee/amdtee/amdtee_if.h
2025-10-02T15:24:51.8603082Z patching file drivers/tee/amdtee/amdtee_private.h
2025-10-02T15:24:51.8603964Z patching file drivers/tee/amdtee/call.c
2025-10-02T15:24:51.8605196Z patching file drivers/tee/amdtee/core.c
2025-10-02T15:24:51.8606681Z patching file drivers/tee/optee/call.c
2025-10-02T15:24:51.8608132Z patching file drivers/tee/optee/core.c
2025-10-02T15:24:51.8609653Z patching file drivers/tee/optee/device.c
2025-10-02T15:24:51.8610684Z patching file drivers/tee/optee/optee_msg.h
2025-10-02T15:24:51.8611714Z patching file drivers/tee/optee/optee_private.h
2025-10-02T15:24:51.8612659Z patching file drivers/tee/optee/rpc.c
2025-10-02T15:24:51.8614050Z patching file drivers/tee/optee/shm_pool.c
2025-10-02T15:24:51.8614769Z patching file drivers/tee/optee/supp.c
2025-10-02T15:24:51.8616154Z patching file drivers/tee/tee_core.c
2025-10-02T15:24:51.8617699Z patching file drivers/tee/tee_shm.c
2025-10-02T15:24:51.8619609Z patching file drivers/thermal/broadcom/bcm2711_thermal.c
2025-10-02T15:24:51.8620129Z patching file drivers/thermal/broadcom/sr-thermal.c
2025-10-02T15:24:51.8621171Z patching file drivers/thermal/cpufreq_cooling.c
2025-10-02T15:24:51.8622291Z patching file drivers/thermal/gov_fair_share.c
2025-10-02T15:24:51.8623157Z patching file drivers/thermal/hisi_thermal.c
2025-10-02T15:24:51.8624213Z patching file drivers/thermal/imx8mm_thermal.c
2025-10-02T15:24:51.8625122Z patching file drivers/thermal/imx_sc_thermal.c
2025-10-02T15:24:51.8626224Z patching file drivers/thermal/imx_thermal.c
2025-10-02T15:24:51.8628061Z patching file drivers/thermal/intel/Kconfig
2025-10-02T15:24:51.8628921Z patching file drivers/thermal/intel/int340x_thermal/int3400_thermal.c
2025-10-02T15:24:51.8630196Z patching file drivers/thermal/intel/int340x_thermal/int3402_thermal.c
2025-10-02T15:24:51.8631004Z patching file drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.c
2025-10-02T15:24:51.8632185Z patching file drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.h
2025-10-02T15:24:51.8633198Z patching file drivers/thermal/intel/int340x_thermal/processor_thermal_device.c
2025-10-02T15:24:51.8634408Z patching file drivers/thermal/intel/intel_powerclamp.c
2025-10-02T15:24:51.8635712Z patching file drivers/thermal/intel/intel_quark_dts_thermal.c
2025-10-02T15:24:51.8636642Z patching file drivers/thermal/intel/intel_soc_dts_iosf.c
2025-10-02T15:24:51.8637816Z patching file drivers/thermal/intel/x86_pkg_temp_thermal.c
2025-10-02T15:24:51.8638696Z patching file drivers/thermal/qcom/tsens-v0_1.c
2025-10-02T15:24:51.8639798Z patching file drivers/thermal/qcom/tsens-v1.c
2025-10-02T15:24:51.8641262Z patching file drivers/thermal/qcom/tsens.c
2025-10-02T15:24:51.8642754Z patching file drivers/thermal/qcom/tsens.h
2025-10-02T15:24:51.8643655Z patching file drivers/thermal/qoriq_thermal.c
2025-10-02T15:24:51.8644716Z patching file drivers/thermal/rcar_gen3_thermal.c
2025-10-02T15:24:51.8646147Z patching file drivers/thermal/rockchip_thermal.c
2025-10-02T15:24:51.8647882Z patching file drivers/thermal/samsung/exynos_tmu.c
2025-10-02T15:24:51.8649253Z patching file drivers/thermal/sprd_thermal.c
2025-10-02T15:24:51.8650784Z patching file drivers/thermal/sun8i_thermal.c
2025-10-02T15:24:51.8652420Z patching file drivers/thermal/thermal_core.c
2025-10-02T15:24:51.8654790Z patching file drivers/thermal/thermal_netlink.c
2025-10-02T15:24:51.8655861Z patching file drivers/thermal/thermal_of.c
2025-10-02T15:24:51.8657603Z patching file drivers/thermal/thermal_sysfs.c
2025-10-02T15:24:51.8658971Z patching file drivers/thunderbolt/acpi.c
2025-10-02T15:24:51.8660056Z patching file drivers/thunderbolt/ctl.c
2025-10-02T15:24:51.8661601Z patching file drivers/thunderbolt/dma_port.c
2025-10-02T15:24:51.8662658Z patching file drivers/thunderbolt/domain.c
2025-10-02T15:24:51.8664364Z patching file drivers/thunderbolt/icm.c
2025-10-02T15:24:51.8667119Z patching file drivers/thunderbolt/nhi.c
2025-10-02T15:24:51.8668506Z patching file drivers/thunderbolt/nhi.h
2025-10-02T15:24:51.8669268Z patching file drivers/thunderbolt/retimer.c
2025-10-02T15:24:51.8671211Z patching file drivers/thunderbolt/switch.c
2025-10-02T15:24:51.8673867Z patching file drivers/thunderbolt/tb.c
2025-10-02T15:24:51.8675562Z patching file drivers/thunderbolt/tb.h
2025-10-02T15:24:51.8676908Z patching file drivers/thunderbolt/tb_regs.h
2025-10-02T15:24:51.8678232Z patching file drivers/thunderbolt/test.c
2025-10-02T15:24:51.8679962Z patching file drivers/thunderbolt/tunnel.c
2025-10-02T15:24:51.8681781Z patching file drivers/thunderbolt/usb4.c
2025-10-02T15:24:51.8683891Z patching file drivers/tty/amiserial.c
2025-10-02T15:24:51.8686254Z patching file drivers/tty/cyclades.c
2025-10-02T15:24:51.8688818Z patching file drivers/tty/goldfish.c
2025-10-02T15:24:51.8690023Z patching file drivers/tty/hvc/hvc_console.c
2025-10-02T15:24:51.8691673Z patching file drivers/tty/hvc/hvc_iucv.c
2025-10-02T15:24:51.8693165Z patching file drivers/tty/hvc/hvc_xen.c
2025-10-02T15:24:51.8695321Z patching file drivers/tty/hvc/hvsi.c
2025-10-02T15:24:51.8697091Z patching file drivers/tty/moxa.c
2025-10-02T15:24:51.8699611Z patching file drivers/tty/mxser.c
2025-10-02T15:24:51.8702336Z patching file drivers/tty/n_gsm.c
2025-10-02T15:24:51.8706781Z patching file drivers/tty/n_hdlc.c
2025-10-02T15:24:51.8708296Z patching file drivers/tty/n_null.c
2025-10-02T15:24:51.8709250Z patching file drivers/tty/n_r3964.c
2025-10-02T15:24:51.8710923Z patching file drivers/tty/n_tracerouter.c
2025-10-02T15:24:51.8711732Z patching file drivers/tty/n_tracesink.c
2025-10-02T15:24:51.8713255Z patching file drivers/tty/n_tty.c
2025-10-02T15:24:51.8716282Z patching file drivers/tty/nozomi.c
2025-10-02T15:24:51.8717992Z patching file drivers/tty/pty.c
2025-10-02T15:24:51.8719389Z patching file drivers/tty/serial/8250/8250.h
2025-10-02T15:24:51.8720927Z patching file drivers/tty/serial/8250/8250_aspeed_vuart.c
2025-10-02T15:24:51.8722028Z patching file drivers/tty/serial/8250/8250_core.c
2025-10-02T15:24:51.8723666Z patching file drivers/tty/serial/8250/8250_dma.c
2025-10-02T15:24:51.8724732Z patching file drivers/tty/serial/8250/8250_dw.c
2025-10-02T15:24:51.8725983Z patching file drivers/tty/serial/8250/8250_dwlib.c
2025-10-02T15:24:51.8726736Z patching file drivers/tty/serial/8250/8250_early.c
2025-10-02T15:24:51.8727710Z patching file drivers/tty/serial/8250/8250_em.c
2025-10-02T15:24:51.8728708Z patching file drivers/tty/serial/8250/8250_exar.c
2025-10-02T15:24:51.8731005Z patching file drivers/tty/serial/8250/8250_fintek.c
2025-10-02T15:24:51.8731721Z patching file drivers/tty/serial/8250/8250_gsc.c
2025-10-02T15:24:51.8732571Z patching file drivers/tty/serial/8250/8250_lpss.c
2025-10-02T15:24:51.8733971Z patching file drivers/tty/serial/8250/8250_mid.c
2025-10-02T15:24:51.8735088Z patching file drivers/tty/serial/8250/8250_mtk.c
2025-10-02T15:24:51.8736618Z patching file drivers/tty/serial/8250/8250_of.c
2025-10-02T15:24:51.8737938Z patching file drivers/tty/serial/8250/8250_omap.c
2025-10-02T15:24:51.8741995Z patching file drivers/tty/serial/8250/8250_pci.c
2025-10-02T15:24:51.8748124Z patching file drivers/tty/serial/8250/8250_port.c
2025-10-02T15:24:51.8751631Z patching file drivers/tty/serial/8250/8250_pxa.c
2025-10-02T15:24:51.8752345Z patching file drivers/tty/serial/8250/8250_tegra.c
2025-10-02T15:24:51.8753354Z patching file drivers/tty/serial/8250/Kconfig
2025-10-02T15:24:51.8754789Z patching file drivers/tty/serial/8250/serial_cs.c
2025-10-02T15:24:51.8756446Z patching file drivers/tty/serial/Kconfig
2025-10-02T15:24:51.8758149Z patching file drivers/tty/serial/altera_uart.c
2025-10-02T15:24:51.8759711Z patching file drivers/tty/serial/amba-pl010.c
2025-10-02T15:24:51.8761555Z patching file drivers/tty/serial/amba-pl011.c
2025-10-02T15:24:51.8764877Z patching file drivers/tty/serial/ar933x_uart.c
2025-10-02T15:24:51.8766295Z patching file drivers/tty/serial/arc_uart.c
2025-10-02T15:24:51.8768157Z patching file drivers/tty/serial/atmel_serial.c
2025-10-02T15:24:51.8770865Z patching file drivers/tty/serial/cpm_uart/cpm_uart_core.c
2025-10-02T15:24:51.8772425Z patching file drivers/tty/serial/digicolor-usart.c
2025-10-02T15:24:51.8774127Z patching file drivers/tty/serial/fsl_lpuart.c
2025-10-02T15:24:51.8777468Z patching file drivers/tty/serial/icom.c
2025-10-02T15:24:51.8779734Z patching file drivers/tty/serial/imx.c
2025-10-02T15:24:51.8782246Z patching file drivers/tty/serial/jsm/jsm_driver.c
2025-10-02T15:24:51.8783342Z patching file drivers/tty/serial/jsm/jsm_neo.c
2025-10-02T15:24:51.8784912Z patching file drivers/tty/serial/jsm/jsm_tty.c
2025-10-02T15:24:51.8786228Z patching file drivers/tty/serial/kgdboc.c
2025-10-02T15:24:51.8787665Z patching file drivers/tty/serial/lantiq.c
2025-10-02T15:24:51.8789020Z patching file drivers/tty/serial/lpc32xx_hs.c
2025-10-02T15:24:51.8790383Z patching file drivers/tty/serial/max3100.c
2025-10-02T15:24:51.8792198Z patching file drivers/tty/serial/max310x.c
2025-10-02T15:24:51.8795290Z patching file drivers/tty/serial/mcf.c
2025-10-02T15:24:51.8796529Z patching file drivers/tty/serial/meson_uart.c
2025-10-02T15:24:51.8798117Z patching file drivers/tty/serial/milbeaut_usio.c
2025-10-02T15:24:51.8799722Z patching file drivers/tty/serial/msm_serial.c
2025-10-02T15:24:51.8801703Z patching file drivers/tty/serial/mvebu-uart.c
2025-10-02T15:24:51.8803809Z patching file drivers/tty/serial/mxs-auart.c
2025-10-02T15:24:51.8805790Z patching file drivers/tty/serial/omap-serial.c
2025-10-02T15:24:51.8807860Z patching file drivers/tty/serial/owl-uart.c
2025-10-02T15:24:51.8809454Z patching file drivers/tty/serial/pch_uart.c
2025-10-02T15:24:51.8811986Z patching file drivers/tty/serial/pmac_zilog.c
2025-10-02T15:24:51.8814151Z patching file drivers/tty/serial/qcom_geni_serial.c
2025-10-02T15:24:51.8816059Z patching file drivers/tty/serial/rda-uart.c
2025-10-02T15:24:51.8817409Z patching file drivers/tty/serial/rp2.c
2025-10-02T15:24:51.8819069Z patching file drivers/tty/serial/sa1100.c
2025-10-02T15:24:51.8821153Z patching file drivers/tty/serial/samsung_tty.c
2025-10-02T15:24:51.8823566Z patching file drivers/tty/serial/sc16is7xx.c
2025-10-02T15:24:51.8826227Z patching file drivers/tty/serial/serial-tegra.c
2025-10-02T15:24:51.8828680Z patching file drivers/tty/serial/serial_core.c
2025-10-02T15:24:51.8832093Z patching file drivers/tty/serial/serial_txx9.c
2025-10-02T15:24:51.8834194Z patching file drivers/tty/serial/sh-sci.c
2025-10-02T15:24:51.8837478Z patching file drivers/tty/serial/sifive.c
2025-10-02T15:24:51.8839366Z patching file drivers/tty/serial/sprd_serial.c
2025-10-02T15:24:51.8841096Z patching file drivers/tty/serial/st-asc.c
2025-10-02T15:24:51.8842664Z patching file drivers/tty/serial/stm32-usart.c
2025-10-02T15:24:51.8847199Z patching file drivers/tty/serial/stm32-usart.h
2025-10-02T15:24:51.8848271Z patching file drivers/tty/serial/sunsab.c
2025-10-02T15:24:51.8849864Z patching file drivers/tty/serial/tegra-tcu.c
2025-10-02T15:24:51.8850884Z patching file drivers/tty/serial/uartlite.c
2025-10-02T15:24:51.8852682Z patching file drivers/tty/serial/ucc_uart.c
2025-10-02T15:24:51.8854594Z patching file drivers/tty/serial/xilinx_uartps.c
2025-10-02T15:24:51.8857301Z patching file drivers/tty/synclink_gt.c
2025-10-02T15:24:51.8861354Z patching file drivers/tty/sysrq.c
2025-10-02T15:24:51.8862562Z patching file drivers/tty/tty.h
2025-10-02T15:24:51.8864001Z patching file drivers/tty/tty_audit.c
2025-10-02T15:24:51.8864721Z patching file drivers/tty/tty_baudrate.c
2025-10-02T15:24:51.8865766Z patching file drivers/tty/tty_buffer.c
2025-10-02T15:24:51.8867867Z patching file drivers/tty/tty_io.c
2025-10-02T15:24:51.8871522Z patching file drivers/tty/tty_ioctl.c
2025-10-02T15:24:51.8873072Z patching file drivers/tty/tty_jobctrl.c
2025-10-02T15:24:51.8874427Z patching file drivers/tty/tty_ldisc.c
2025-10-02T15:24:51.8875427Z patching file drivers/tty/tty_mutex.c
2025-10-02T15:24:51.8876212Z patching file drivers/tty/tty_port.c
2025-10-02T15:24:51.8877659Z patching file drivers/tty/vcc.c
2025-10-02T15:24:51.8879187Z patching file drivers/tty/vt/consolemap.c
2025-10-02T15:24:51.8880453Z patching file drivers/tty/vt/defkeymap.c_shipped
2025-10-02T15:24:51.8882422Z patching file drivers/tty/vt/keyboard.c
2025-10-02T15:24:51.8884243Z patching file drivers/tty/vt/vc_screen.c
2025-10-02T15:24:51.8886445Z patching file drivers/tty/vt/vt.c
2025-10-02T15:24:51.8890083Z patching file drivers/tty/vt/vt_ioctl.c
2025-10-02T15:24:51.8892213Z patching file drivers/uio/uio.c
2025-10-02T15:24:51.8893447Z patching file drivers/uio/uio_dmem_genirq.c
2025-10-02T15:24:51.8894401Z patching file drivers/uio/uio_hv_generic.c
2025-10-02T15:24:51.8896100Z patching file drivers/usb/atm/cxacru.c
2025-10-02T15:24:51.8897965Z patching file drivers/usb/cdns3/cdns3-imx.c
2025-10-02T15:24:51.8898871Z patching file drivers/usb/cdns3/cdns3-pci-wrap.c
2025-10-02T15:24:51.8899877Z patching file drivers/usb/cdns3/core.c
2025-10-02T15:24:51.8901254Z patching file drivers/usb/cdns3/core.h
2025-10-02T15:24:51.8902071Z patching file drivers/usb/cdns3/drd.c
2025-10-02T15:24:51.8903656Z patching file drivers/usb/cdns3/drd.h
2025-10-02T15:24:51.8905046Z patching file drivers/usb/cdns3/ep0.c
2025-10-02T15:24:51.8907022Z patching file drivers/usb/cdns3/gadget.c
2025-10-02T15:24:51.8910950Z patching file drivers/usb/cdns3/gadget.h
2025-10-02T15:24:51.8912534Z patching file drivers/usb/cdns3/host-export.h
2025-10-02T15:24:51.8913093Z patching file drivers/usb/cdns3/host.c
2025-10-02T15:24:51.8914418Z patching file drivers/usb/chipidea/ci.h
2025-10-02T15:24:51.8915536Z patching file drivers/usb/chipidea/ci_hdrc_imx.c
2025-10-02T15:24:51.8917359Z patching file drivers/usb/chipidea/core.c
2025-10-02T15:24:51.8919009Z patching file drivers/usb/chipidea/host.c
2025-10-02T15:24:51.8920011Z patching file drivers/usb/chipidea/otg.c
2025-10-02T15:24:51.8921079Z patching file drivers/usb/chipidea/otg_fsm.c
2025-10-02T15:24:51.8922704Z patching file drivers/usb/chipidea/udc.c
2025-10-02T15:24:51.8924826Z patching file drivers/usb/chipidea/usbmisc_imx.c
2025-10-02T15:24:51.8926728Z patching file drivers/usb/class/cdc-acm.c
2025-10-02T15:24:51.8929306Z patching file drivers/usb/class/cdc-acm.h
2025-10-02T15:24:51.8930312Z patching file drivers/usb/class/cdc-wdm.c
2025-10-02T15:24:51.8932544Z patching file drivers/usb/class/usblp.c
2025-10-02T15:24:51.8934613Z patching file drivers/usb/class/usbtmc.c
2025-10-02T15:24:51.8936910Z patching file drivers/usb/common/Kconfig
2025-10-02T15:24:51.8937550Z patching file drivers/usb/common/common.c
2025-10-02T15:24:51.8938899Z patching file drivers/usb/common/debug.c
2025-10-02T15:24:51.8940168Z patching file drivers/usb/common/ulpi.c
2025-10-02T15:24:51.8941165Z patching file drivers/usb/common/usb-conn-gpio.c
2025-10-02T15:24:51.8942296Z patching file drivers/usb/common/usb-otg-fsm.c
2025-10-02T15:24:51.8943240Z patching file drivers/usb/core/buffer.c
2025-10-02T15:24:51.8944391Z patching file drivers/usb/core/config.c
2025-10-02T15:24:51.8947461Z patching file drivers/usb/core/devices.c
2025-10-02T15:24:51.8949623Z patching file drivers/usb/core/devio.c
2025-10-02T15:24:51.8952226Z patching file drivers/usb/core/endpoint.c
2025-10-02T15:24:51.8953019Z patching file drivers/usb/core/hcd-pci.c
2025-10-02T15:24:51.8955289Z patching file drivers/usb/core/hcd.c
2025-10-02T15:24:51.8976685Z patching file drivers/usb/core/hub.c
2025-10-02T15:24:51.8977295Z patching file drivers/usb/core/hub.h
2025-10-02T15:24:51.8977665Z patching file drivers/usb/core/message.c
2025-10-02T15:24:51.8978012Z patching file drivers/usb/core/port.c
2025-10-02T15:24:51.8978361Z patching file drivers/usb/core/quirks.c
2025-10-02T15:24:51.8978704Z patching file drivers/usb/core/sysfs.c
2025-10-02T15:24:51.8979037Z patching file drivers/usb/core/urb.c
2025-10-02T15:24:51.8979387Z patching file drivers/usb/core/usb-acpi.c
2025-10-02T15:24:51.8979850Z patching file drivers/usb/core/usb.c
2025-10-02T15:24:51.8980178Z patching file drivers/usb/core/usb.h
2025-10-02T15:24:51.8980522Z patching file drivers/usb/dwc2/core.c
2025-10-02T15:24:51.8980850Z patching file drivers/usb/dwc2/core.h
2025-10-02T15:24:51.8982472Z patching file drivers/usb/dwc2/core_intr.c
2025-10-02T15:24:51.8984047Z patching file drivers/usb/dwc2/drd.c
2025-10-02T15:24:51.8986400Z patching file drivers/usb/dwc2/gadget.c
2025-10-02T15:24:51.8992272Z patching file drivers/usb/dwc2/hcd.c
2025-10-02T15:24:51.8996142Z patching file drivers/usb/dwc2/hcd_ddma.c
2025-10-02T15:24:51.8998979Z patching file drivers/usb/dwc2/hcd_intr.c
2025-10-02T15:24:51.9001474Z patching file drivers/usb/dwc2/hcd_queue.c
2025-10-02T15:24:51.9003265Z patching file drivers/usb/dwc2/hw.h
2025-10-02T15:24:51.9004546Z patching file drivers/usb/dwc2/platform.c
2025-10-02T15:24:51.9006287Z patching file drivers/usb/dwc3/core.c
2025-10-02T15:24:51.9009956Z patching file drivers/usb/dwc3/core.h
2025-10-02T15:24:51.9011760Z patching file drivers/usb/dwc3/debug.h
2025-10-02T15:24:51.9012862Z patching file drivers/usb/dwc3/debugfs.c
2025-10-02T15:24:51.9014870Z patching file drivers/usb/dwc3/drd.c
2025-10-02T15:24:51.9016074Z patching file drivers/usb/dwc3/dwc3-exynos.c
2025-10-02T15:24:51.9017123Z patching file drivers/usb/dwc3/dwc3-meson-g12a.c
2025-10-02T15:24:51.9018588Z patching file drivers/usb/dwc3/dwc3-omap.c
2025-10-02T15:24:51.9019893Z patching file drivers/usb/dwc3/dwc3-pci.c
2025-10-02T15:24:51.9021127Z patching file drivers/usb/dwc3/dwc3-qcom.c
2025-10-02T15:24:51.9023302Z patching file drivers/usb/dwc3/dwc3-st.c
2025-10-02T15:24:51.9024532Z patching file drivers/usb/dwc3/ep0.c
2025-10-02T15:24:51.9026638Z patching file drivers/usb/dwc3/gadget.c
2025-10-02T15:24:51.9031719Z patching file drivers/usb/dwc3/host.c
2025-10-02T15:24:51.9032369Z patching file drivers/usb/dwc3/ulpi.c
2025-10-02T15:24:51.9033537Z patching file drivers/usb/early/xhci-dbc.c
2025-10-02T15:24:51.9034823Z patching file drivers/usb/gadget/Kconfig
2025-10-02T15:24:51.9036358Z patching file drivers/usb/gadget/composite.c
2025-10-02T15:24:51.9038532Z patching file drivers/usb/gadget/config.c
2025-10-02T15:24:51.9040027Z patching file drivers/usb/gadget/configfs.c
2025-10-02T15:24:51.9042205Z patching file drivers/usb/gadget/function/f_acm.c
2025-10-02T15:24:51.9043556Z patching file drivers/usb/gadget/function/f_ecm.c
2025-10-02T15:24:51.9044838Z patching file drivers/usb/gadget/function/f_eem.c
2025-10-02T15:24:51.9047005Z patching file drivers/usb/gadget/function/f_fs.c
2025-10-02T15:24:51.9050669Z patching file drivers/usb/gadget/function/f_hid.c
2025-10-02T15:24:51.9053662Z patching file drivers/usb/gadget/function/f_loopback.c
2025-10-02T15:24:51.9055659Z patching file drivers/usb/gadget/function/f_mass_storage.c
2025-10-02T15:24:51.9058045Z patching file drivers/usb/gadget/function/f_midi.c
2025-10-02T15:24:51.9060115Z patching file drivers/usb/gadget/function/f_ncm.c
2025-10-02T15:24:51.9062392Z patching file drivers/usb/gadget/function/f_printer.c
2025-10-02T15:24:51.9064433Z patching file drivers/usb/gadget/function/f_rndis.c
2025-10-02T15:24:51.9065694Z patching file drivers/usb/gadget/function/f_serial.c
2025-10-02T15:24:51.9067052Z patching file drivers/usb/gadget/function/f_sourcesink.c
2025-10-02T15:24:51.9068451Z patching file drivers/usb/gadget/function/f_subset.c
2025-10-02T15:24:51.9070085Z patching file drivers/usb/gadget/function/f_tcm.c
2025-10-02T15:24:51.9072344Z patching file drivers/usb/gadget/function/f_uac1.c
2025-10-02T15:24:51.9073906Z patching file drivers/usb/gadget/function/f_uac2.c
2025-10-02T15:24:51.9075859Z patching file drivers/usb/gadget/function/f_uvc.c
2025-10-02T15:24:51.9077523Z patching file drivers/usb/gadget/function/rndis.c
2025-10-02T15:24:51.9078968Z patching file drivers/usb/gadget/function/rndis.h
2025-10-02T15:24:51.9079977Z patching file drivers/usb/gadget/function/storage_common.c
2025-10-02T15:24:51.9081108Z patching file drivers/usb/gadget/function/u_audio.c
2025-10-02T15:24:51.9082643Z patching file drivers/usb/gadget/function/u_ether.c
2025-10-02T15:24:51.9084309Z patching file drivers/usb/gadget/function/u_ether_configfs.h
2025-10-02T15:24:51.9084950Z patching file drivers/usb/gadget/function/u_hid.h
2025-10-02T15:24:51.9086201Z patching file drivers/usb/gadget/function/u_serial.c
2025-10-02T15:24:51.9087877Z patching file drivers/usb/gadget/function/uvc.h
2025-10-02T15:24:51.9089424Z patching file drivers/usb/gadget/function/uvc_configfs.c
2025-10-02T15:24:51.9091622Z patching file drivers/usb/gadget/function/uvc_queue.c
2025-10-02T15:24:51.9092514Z patching file drivers/usb/gadget/function/uvc_v4l2.c
2025-10-02T15:24:51.9093654Z patching file drivers/usb/gadget/function/uvc_video.c
2025-10-02T15:24:51.9094599Z patching file drivers/usb/gadget/legacy/acm_ms.c
2025-10-02T15:24:51.9095525Z patching file drivers/usb/gadget/legacy/dbgp.c
2025-10-02T15:24:51.9096531Z patching file drivers/usb/gadget/legacy/ether.c
2025-10-02T15:24:51.9097498Z patching file drivers/usb/gadget/legacy/hid.c
2025-10-02T15:24:51.9098985Z patching file drivers/usb/gadget/legacy/inode.c
2025-10-02T15:24:51.9101413Z patching file drivers/usb/gadget/legacy/raw_gadget.c
2025-10-02T15:24:51.9103300Z patching file drivers/usb/gadget/legacy/webcam.c
2025-10-02T15:24:51.9104386Z patching file drivers/usb/gadget/udc/Kconfig
2025-10-02T15:24:51.9105540Z patching file drivers/usb/gadget/udc/amd5536udc_pci.c
2025-10-02T15:24:51.9106636Z patching file drivers/usb/gadget/udc/aspeed-vhub/core.c
2025-10-02T15:24:51.9107659Z patching file drivers/usb/gadget/udc/aspeed-vhub/dev.c
2025-10-02T15:24:51.9109157Z patching file drivers/usb/gadget/udc/aspeed-vhub/epn.c
2025-10-02T15:24:51.9110704Z patching file drivers/usb/gadget/udc/aspeed-vhub/hub.c
2025-10-02T15:24:51.9112437Z patching file drivers/usb/gadget/udc/at91_udc.c
2025-10-02T15:24:51.9114091Z patching file drivers/usb/gadget/udc/bdc/Kconfig
2025-10-02T15:24:51.9114840Z patching file drivers/usb/gadget/udc/bdc/bdc_core.c
2025-10-02T15:24:51.9116235Z patching file drivers/usb/gadget/udc/bdc/bdc_udc.c
2025-10-02T15:24:51.9117662Z patching file drivers/usb/gadget/udc/core.c
2025-10-02T15:24:51.9120169Z patching file drivers/usb/gadget/udc/dummy_hcd.c
2025-10-02T15:24:51.9122793Z patching file drivers/usb/gadget/udc/fotg210-udc.c
2025-10-02T15:24:51.9124878Z patching file drivers/usb/gadget/udc/fsl_qe_udc.c
2025-10-02T15:24:51.9127373Z patching file drivers/usb/gadget/udc/fsl_udc_core.c
2025-10-02T15:24:51.9129954Z patching file drivers/usb/gadget/udc/lpc32xx_udc.c
2025-10-02T15:24:51.9132409Z patching file drivers/usb/gadget/udc/max3420_udc.c
2025-10-02T15:24:51.9134198Z patching file drivers/usb/gadget/udc/mv_u3d_core.c
2025-10-02T15:24:51.9136488Z patching file drivers/usb/gadget/udc/net2272.c
2025-10-02T15:24:51.9139223Z patching file drivers/usb/gadget/udc/pch_udc.c
2025-10-02T15:24:51.9142462Z patching file drivers/usb/gadget/udc/r8a66597-udc.c
2025-10-02T15:24:51.9144704Z patching file drivers/usb/gadget/udc/renesas_usb3.c
2025-10-02T15:24:51.9147292Z patching file drivers/usb/gadget/udc/s3c2410_udc.c
2025-10-02T15:24:51.9149128Z patching file drivers/usb/gadget/udc/snps_udc_plat.c
2025-10-02T15:24:51.9151099Z patching file drivers/usb/gadget/udc/tegra-xudc.c
2025-10-02T15:24:51.9154512Z patching file drivers/usb/gadget/udc/udc-xilinx.c
2025-10-02T15:24:51.9156598Z patching file drivers/usb/host/bcma-hcd.c
2025-10-02T15:24:51.9157820Z patching file drivers/usb/host/ehci-fsl.c
2025-10-02T15:24:51.9159656Z patching file drivers/usb/host/ehci-hcd.c
2025-10-02T15:24:51.9161801Z patching file drivers/usb/host/ehci-hub.c
2025-10-02T15:24:51.9163331Z patching file drivers/usb/host/ehci-mv.c
2025-10-02T15:24:51.9164342Z patching file drivers/usb/host/ehci-omap.c
2025-10-02T15:24:51.9165298Z patching file drivers/usb/host/ehci-orion.c
2025-10-02T15:24:51.9166382Z patching file drivers/usb/host/ehci-pci.c
2025-10-02T15:24:51.9167714Z patching file drivers/usb/host/ehci-platform.c
2025-10-02T15:24:51.9168640Z patching file drivers/usb/host/ehci-ppc-of.c
2025-10-02T15:24:51.9169666Z patching file drivers/usb/host/ehci-sh.c
2025-10-02T15:24:51.9170656Z patching file drivers/usb/host/ehci-spear.c
2025-10-02T15:24:51.9171934Z patching file drivers/usb/host/ehci.h
2025-10-02T15:24:51.9174695Z patching file drivers/usb/host/fotg210-hcd.c
2025-10-02T15:24:51.9178389Z patching file drivers/usb/host/fotg210.h
2025-10-02T15:24:51.9179936Z patching file drivers/usb/host/isp116x-hcd.c
2025-10-02T15:24:51.9182042Z patching file drivers/usb/host/max3421-hcd.c
2025-10-02T15:24:51.9184369Z patching file drivers/usb/host/ohci-at91.c
2025-10-02T15:24:51.9185928Z patching file drivers/usb/host/ohci-hcd.c
2025-10-02T15:24:51.9187442Z patching file drivers/usb/host/ohci-nxp.c
2025-10-02T15:24:51.9188197Z patching file drivers/usb/host/ohci-pci.c
2025-10-02T15:24:51.9189289Z patching file drivers/usb/host/ohci-ppc-of.c
2025-10-02T15:24:51.9190436Z patching file drivers/usb/host/ohci-tmio.c
2025-10-02T15:24:51.9192609Z patching file drivers/usb/host/oxu210hp-hcd.c
2025-10-02T15:24:51.9195444Z patching file drivers/usb/host/pci-quirks.c
2025-10-02T15:24:51.9197191Z patching file drivers/usb/host/sl811-hcd.c
2025-10-02T15:24:51.9198910Z patching file drivers/usb/host/uhci-pci.c
2025-10-02T15:24:51.9199944Z patching file drivers/usb/host/uhci-platform.c
2025-10-02T15:24:51.9201311Z patching file drivers/usb/host/xhci-dbgcap.c
2025-10-02T15:24:51.9203518Z patching file drivers/usb/host/xhci-dbgcap.h
2025-10-02T15:24:51.9204391Z patching file drivers/usb/host/xhci-dbgtty.c
2025-10-02T15:24:51.9205849Z patching file drivers/usb/host/xhci-debugfs.c
2025-10-02T15:24:51.9207175Z patching file drivers/usb/host/xhci-ext-caps.h
2025-10-02T15:24:51.9208465Z patching file drivers/usb/host/xhci-hub.c
2025-10-02T15:24:51.9212428Z patching file drivers/usb/host/xhci-mem.c
2025-10-02T15:24:51.9215326Z patching file drivers/usb/host/xhci-mtk-sch.c
2025-10-02T15:24:51.9217497Z patching file drivers/usb/host/xhci-mtk.c
2025-10-02T15:24:51.9218703Z patching file drivers/usb/host/xhci-mtk.h
2025-10-02T15:24:51.9219869Z patching file drivers/usb/host/xhci-mvebu.c
2025-10-02T15:24:51.9220874Z patching file drivers/usb/host/xhci-mvebu.h
2025-10-02T15:24:51.9221936Z patching file drivers/usb/host/xhci-pci-renesas.c
2025-10-02T15:24:51.9223453Z patching file drivers/usb/host/xhci-pci.c
2025-10-02T15:24:51.9225403Z patching file drivers/usb/host/xhci-pci.h
2025-10-02T15:24:51.9226218Z patching file drivers/usb/host/xhci-plat.c
2025-10-02T15:24:51.9227695Z patching file drivers/usb/host/xhci-plat.h
2025-10-02T15:24:51.9228383Z patching file drivers/usb/host/xhci-rcar.c
2025-10-02T15:24:51.9230753Z patching file drivers/usb/host/xhci-ring.c
2025-10-02T15:24:51.9236937Z patching file drivers/usb/host/xhci-tegra.c
2025-10-02T15:24:51.9238809Z patching file drivers/usb/host/xhci-trace.h
2025-10-02T15:24:51.9241884Z patching file drivers/usb/host/xhci.c
2025-10-02T15:24:51.9247162Z patching file drivers/usb/host/xhci.h
2025-10-02T15:24:51.9250671Z patching file drivers/usb/misc/appledisplay.c
2025-10-02T15:24:51.9251639Z patching file drivers/usb/misc/chaoskey.c
2025-10-02T15:24:51.9252996Z patching file drivers/usb/misc/cypress_cy7c63.c
2025-10-02T15:24:51.9254481Z patching file drivers/usb/misc/ftdi-elan.c
2025-10-02T15:24:51.9256418Z patching file drivers/usb/misc/idmouse.c
2025-10-02T15:24:51.9257634Z patching file drivers/usb/misc/iowarrior.c
2025-10-02T15:24:51.9259344Z patching file drivers/usb/misc/legousbtower.c
2025-10-02T15:24:51.9260632Z patching file drivers/usb/misc/sisusbvga/Kconfig
2025-10-02T15:24:51.9262168Z patching file drivers/usb/misc/sisusbvga/sisusb.c
2025-10-02T15:24:51.9264201Z patching file drivers/usb/misc/trancevibrator.c
2025-10-02T15:24:51.9264971Z patching file drivers/usb/misc/uss720.c
2025-10-02T15:24:51.9266433Z patching file drivers/usb/misc/yurex.c
2025-10-02T15:24:51.9267814Z patching file drivers/usb/mon/mon_bin.c
2025-10-02T15:24:51.9269646Z patching file drivers/usb/mtu3/mtu3_core.c
2025-10-02T15:24:51.9270962Z patching file drivers/usb/mtu3/mtu3_debugfs.c
2025-10-02T15:24:51.9271887Z patching file drivers/usb/mtu3/mtu3_dr.c
2025-10-02T15:24:51.9272900Z patching file drivers/usb/mtu3/mtu3_gadget.c
2025-10-02T15:24:51.9274308Z patching file drivers/usb/mtu3/mtu3_qmu.c
2025-10-02T15:24:51.9275595Z patching file drivers/usb/musb/Kconfig
2025-10-02T15:24:51.9276370Z patching file drivers/usb/musb/da8xx.c
2025-10-02T15:24:51.9277762Z patching file drivers/usb/musb/mediatek.c
2025-10-02T15:24:51.9279603Z patching file drivers/usb/musb/musb_core.c
2025-10-02T15:24:51.9282598Z patching file drivers/usb/musb/musb_core.h
2025-10-02T15:24:51.9283581Z patching file drivers/usb/musb/musb_debugfs.c
2025-10-02T15:24:51.9284795Z patching file drivers/usb/musb/musb_dsps.c
2025-10-02T15:24:51.9286567Z patching file drivers/usb/musb/musb_gadget.c
2025-10-02T15:24:51.9289178Z patching file drivers/usb/musb/musb_host.c
2025-10-02T15:24:51.9291527Z patching file drivers/usb/musb/musb_virthub.c
2025-10-02T15:24:51.9292567Z patching file drivers/usb/musb/omap2430.c
2025-10-02T15:24:51.9293909Z patching file drivers/usb/musb/sunxi.c
2025-10-02T15:24:51.9295325Z patching file drivers/usb/musb/tusb6010.c
2025-10-02T15:24:51.9296940Z patching file drivers/usb/phy/phy-fsl-usb.c
2025-10-02T15:24:51.9298327Z patching file drivers/usb/phy/phy-mxs-usb.c
2025-10-02T15:24:51.9299414Z patching file drivers/usb/phy/phy-tahvo.c
2025-10-02T15:24:51.9300635Z patching file drivers/usb/phy/phy-twl6030-usb.c
2025-10-02T15:24:51.9301634Z patching file drivers/usb/phy/phy.c
2025-10-02T15:24:51.9303063Z patching file drivers/usb/renesas_usbhs/common.c
2025-10-02T15:24:51.9304726Z patching file drivers/usb/renesas_usbhs/fifo.c
2025-10-02T15:24:51.9306415Z patching file drivers/usb/renesas_usbhs/mod_gadget.c
2025-10-02T15:24:51.9307757Z patching file drivers/usb/renesas_usbhs/pipe.c
2025-10-02T15:24:51.9308700Z patching file drivers/usb/renesas_usbhs/rza.c
2025-10-02T15:24:51.9309429Z patching file drivers/usb/roles/class.c
2025-10-02T15:24:51.9311269Z patching file drivers/usb/serial/Kconfig
2025-10-02T15:24:51.9312561Z patching file drivers/usb/serial/ch341.c
2025-10-02T15:24:51.9314351Z patching file drivers/usb/serial/cp210x.c
2025-10-02T15:24:51.9317207Z patching file drivers/usb/serial/digi_acceleport.c
2025-10-02T15:24:51.9324842Z patching file drivers/usb/serial/f81232.c
2025-10-02T15:24:51.9325290Z patching file drivers/usb/serial/f81534.c
2025-10-02T15:24:51.9325672Z patching file drivers/usb/serial/ftdi_sio.c
2025-10-02T15:24:51.9326045Z patching file drivers/usb/serial/ftdi_sio_ids.h
2025-10-02T15:24:51.9328263Z patching file drivers/usb/serial/io_edgeport.c
2025-10-02T15:24:51.9331311Z patching file drivers/usb/serial/io_ti.c
2025-10-02T15:24:51.9333497Z patching file drivers/usb/serial/io_usbvend.h
2025-10-02T15:24:51.9334919Z patching file drivers/usb/serial/iuu_phoenix.c
2025-10-02T15:24:51.9337021Z patching file drivers/usb/serial/keyspan.c
2025-10-02T15:24:51.9339649Z patching file drivers/usb/serial/keyspan_pda.c
2025-10-02T15:24:51.9341507Z patching file drivers/usb/serial/mos7720.c
2025-10-02T15:24:51.9343592Z patching file drivers/usb/serial/mos7840.c
2025-10-02T15:24:51.9345389Z patching file drivers/usb/serial/omninet.c
2025-10-02T15:24:51.9346873Z patching file drivers/usb/serial/option.c
2025-10-02T15:24:51.9351808Z patching file drivers/usb/serial/pl2303.c
2025-10-02T15:24:51.9353223Z patching file drivers/usb/serial/pl2303.h
2025-10-02T15:24:51.9354102Z patching file drivers/usb/serial/qcserial.c
2025-10-02T15:24:51.9355545Z patching file drivers/usb/serial/quatech2.c
2025-10-02T15:24:51.9357088Z patching file drivers/usb/serial/sierra.c
2025-10-02T15:24:51.9358790Z patching file drivers/usb/serial/ti_usb_3410_5052.c
2025-10-02T15:24:51.9360547Z patching file drivers/usb/serial/usb-serial-simple.c
2025-10-02T15:24:51.9362103Z patching file drivers/usb/serial/usb-serial.c
2025-10-02T15:24:51.9363501Z patching file drivers/usb/serial/usb_debug.c
2025-10-02T15:24:51.9364415Z patching file drivers/usb/serial/usb_wwan.c
2025-10-02T15:24:51.9365898Z patching file drivers/usb/serial/whiteheat.c
2025-10-02T15:24:51.9367362Z patching file drivers/usb/storage/alauda.c
2025-10-02T15:24:51.9369390Z patching file drivers/usb/storage/ene_ub6250.c
2025-10-02T15:24:51.9372542Z patching file drivers/usb/storage/isd200.c
2025-10-02T15:24:51.9374166Z patching file drivers/usb/storage/karma.c
2025-10-02T15:24:51.9375211Z patching file drivers/usb/storage/realtek_cr.c
2025-10-02T15:24:51.9376661Z patching file drivers/usb/storage/scsiglue.c
2025-10-02T15:24:51.9378222Z patching file drivers/usb/storage/transport.c
2025-10-02T15:24:51.9379823Z patching file drivers/usb/storage/uas-detect.h
2025-10-02T15:24:51.9380923Z patching file drivers/usb/storage/uas.c
2025-10-02T15:24:51.9382357Z patching file drivers/usb/storage/unusual_cypress.h
2025-10-02T15:24:51.9383597Z patching file drivers/usb/storage/unusual_devs.h
2025-10-02T15:24:51.9385759Z patching file drivers/usb/storage/unusual_uas.h
2025-10-02T15:24:51.9387078Z patching file drivers/usb/storage/usb.c
2025-10-02T15:24:51.9388355Z patching file drivers/usb/typec/Kconfig
2025-10-02T15:24:51.9389076Z patching file drivers/usb/typec/altmodes/Kconfig
2025-10-02T15:24:51.9390152Z patching file drivers/usb/typec/altmodes/displayport.c
2025-10-02T15:24:51.9391864Z patching file drivers/usb/typec/bus.c
2025-10-02T15:24:51.9393260Z patching file drivers/usb/typec/class.c
2025-10-02T15:24:51.9394923Z patching file drivers/usb/typec/mux.c
2025-10-02T15:24:51.9396251Z patching file drivers/usb/typec/mux/intel_pmc_mux.c
2025-10-02T15:24:51.9397870Z patching file drivers/usb/typec/stusb160x.c
2025-10-02T15:24:51.9398942Z patching file drivers/usb/typec/tcpm/Kconfig
2025-10-02T15:24:51.9400118Z patching file drivers/usb/typec/tcpm/fusb302.c
2025-10-02T15:24:51.9402093Z patching file drivers/usb/typec/tcpm/tcpci.c
2025-10-02T15:24:51.9403218Z patching file drivers/usb/typec/tcpm/tcpci.h
2025-10-02T15:24:51.9404123Z patching file drivers/usb/typec/tcpm/tcpci_maxim.c
2025-10-02T15:24:51.9405242Z patching file drivers/usb/typec/tcpm/tcpci_mt6360.c
2025-10-02T15:24:51.9406196Z patching file drivers/usb/typec/tcpm/tcpci_rt1711h.c
2025-10-02T15:24:51.9408403Z patching file drivers/usb/typec/tcpm/tcpm.c
2025-10-02T15:24:51.9412520Z patching file drivers/usb/typec/tcpm/wcove.c
2025-10-02T15:24:51.9413576Z patching file drivers/usb/typec/tps6598x.c
2025-10-02T15:24:51.9414942Z patching file drivers/usb/typec/ucsi/displayport.c
2025-10-02T15:24:51.9415663Z patching file drivers/usb/typec/ucsi/psy.c
2025-10-02T15:24:51.9416755Z patching file drivers/usb/typec/ucsi/ucsi.c
2025-10-02T15:24:51.9419237Z patching file drivers/usb/typec/ucsi/ucsi.h
2025-10-02T15:24:51.9420444Z patching file drivers/usb/typec/ucsi/ucsi_acpi.c
2025-10-02T15:24:51.9422158Z patching file drivers/usb/typec/ucsi/ucsi_ccg.c
2025-10-02T15:24:51.9423697Z patching file drivers/usb/usbip/stub_dev.c
2025-10-02T15:24:51.9425148Z patching file drivers/usb/usbip/stub_rx.c
2025-10-02T15:24:51.9426756Z patching file drivers/usb/usbip/usbip_common.h
2025-10-02T15:24:51.9427378Z patching file drivers/usb/usbip/usbip_event.c
2025-10-02T15:24:51.9428464Z patching file drivers/usb/usbip/vhci_hcd.c
2025-10-02T15:24:51.9430581Z patching file drivers/usb/usbip/vhci_sysfs.c
2025-10-02T15:24:51.9433051Z patching file drivers/usb/usbip/vudc_dev.c
2025-10-02T15:24:51.9433936Z patching file drivers/usb/usbip/vudc_sysfs.c
2025-10-02T15:24:51.9435343Z patching file drivers/vdpa/ifcvf/ifcvf_base.c
2025-10-02T15:24:51.9436168Z patching file drivers/vdpa/mlx5/core/mlx5_vdpa.h
2025-10-02T15:24:51.9437031Z patching file drivers/vdpa/mlx5/core/mr.c
2025-10-02T15:24:51.9438914Z patching file drivers/vdpa/mlx5/net/mlx5_vnet.c
2025-10-02T15:24:51.9441786Z patching file drivers/vdpa/vdpa_sim/vdpa_sim.c
2025-10-02T15:24:51.9443351Z patching file drivers/vfio/Kconfig
2025-10-02T15:24:51.9444291Z patching file drivers/vfio/fsl-mc/vfio_fsl_mc.c
2025-10-02T15:24:51.9445889Z patching file drivers/vfio/fsl-mc/vfio_fsl_mc_intr.c
2025-10-02T15:24:51.9446498Z patching file drivers/vfio/mdev/mdev_private.h
2025-10-02T15:24:51.9447222Z patching file drivers/vfio/mdev/mdev_sysfs.c
2025-10-02T15:24:51.9448202Z patching file drivers/vfio/pci/Kconfig
2025-10-02T15:24:51.9449749Z patching file drivers/vfio/pci/vfio_pci.c
2025-10-02T15:24:51.9453020Z patching file drivers/vfio/pci/vfio_pci_config.c
2025-10-02T15:24:51.9454985Z patching file drivers/vfio/pci/vfio_pci_intrs.c
2025-10-02T15:24:51.9456902Z patching file drivers/vfio/pci/vfio_pci_nvlink2.c
2025-10-02T15:24:51.9457847Z patching file drivers/vfio/pci/vfio_pci_rdwr.c
2025-10-02T15:24:51.9458791Z patching file drivers/vfio/pci/vfio_pci_zdev.c
2025-10-02T15:24:51.9459718Z patching file drivers/vfio/platform/vfio_amba.c
2025-10-02T15:24:51.9460791Z patching file drivers/vfio/platform/vfio_platform_common.c
2025-10-02T15:24:51.9462093Z patching file drivers/vfio/platform/vfio_platform_irq.c
2025-10-02T15:24:51.9464156Z patching file drivers/vfio/vfio.c
2025-10-02T15:24:51.9467762Z patching file drivers/vfio/vfio_iommu_type1.c
2025-10-02T15:24:51.9471728Z patching file drivers/vfio/virqfd.c
2025-10-02T15:24:51.9473082Z patching file drivers/vhost/net.c
2025-10-02T15:24:51.9475801Z patching file drivers/vhost/scsi.c
2025-10-02T15:24:51.9478216Z patching file drivers/vhost/vdpa.c
2025-10-02T15:24:51.9481259Z patching file drivers/vhost/vhost.c
2025-10-02T15:24:51.9483768Z patching file drivers/vhost/vhost.h
2025-10-02T15:24:51.9484890Z patching file drivers/vhost/vringh.c
2025-10-02T15:24:51.9487141Z patching file drivers/vhost/vsock.c
2025-10-02T15:24:51.9489073Z patching file drivers/video/backlight/backlight.c
2025-10-02T15:24:51.9490324Z patching file drivers/video/backlight/bd6107.c
2025-10-02T15:24:51.9491340Z patching file drivers/video/backlight/da9052_bl.c
2025-10-02T15:24:51.9492270Z patching file drivers/video/backlight/gpio_backlight.c
2025-10-02T15:24:51.9493272Z patching file drivers/video/backlight/ktd253-backlight.c
2025-10-02T15:24:51.9494493Z patching file drivers/video/backlight/led_bl.c
2025-10-02T15:24:51.9495555Z patching file drivers/video/backlight/lm3630a_bl.c
2025-10-02T15:24:51.9497387Z patching file drivers/video/backlight/lm3639_bl.c
2025-10-02T15:24:51.9498332Z patching file drivers/video/backlight/lp8788_bl.c
2025-10-02T15:24:51.9499266Z patching file drivers/video/backlight/lv5207lp.c
2025-10-02T15:24:51.9500462Z patching file drivers/video/backlight/pwm_bl.c
2025-10-02T15:24:51.9502569Z patching file drivers/video/backlight/qcom-wled.c
2025-10-02T15:24:51.9505102Z patching file drivers/video/console/Kconfig
2025-10-02T15:24:51.9505916Z patching file drivers/video/console/sticon.c
2025-10-02T15:24:51.9507369Z patching file drivers/video/console/sticore.c
2025-10-02T15:24:51.9509706Z patching file drivers/video/console/vgacon.c
2025-10-02T15:24:51.9512385Z patching file drivers/video/fbdev/Kconfig
2025-10-02T15:24:51.9514804Z patching file drivers/video/fbdev/amba-clcd.c
2025-10-02T15:24:51.9516641Z patching file drivers/video/fbdev/arcfb.c
2025-10-02T15:24:51.9518540Z patching file drivers/video/fbdev/arkfb.c
2025-10-02T15:24:51.9520361Z patching file drivers/video/fbdev/asiliantfb.c
2025-10-02T15:24:51.9522600Z patching file drivers/video/fbdev/atafb.c
2025-10-02T15:24:51.9525555Z patching file drivers/video/fbdev/atmel_lcdfb.c
2025-10-02T15:24:51.9528152Z patching file drivers/video/fbdev/aty/atyfb_base.c
2025-10-02T15:24:51.9531391Z patching file drivers/video/fbdev/au1100fb.c
2025-10-02T15:24:51.9533109Z patching file drivers/video/fbdev/au1200fb.c
2025-10-02T15:24:51.9535261Z patching file drivers/video/fbdev/chipsfb.c
2025-10-02T15:24:51.9537228Z patching file drivers/video/fbdev/cirrusfb.c
2025-10-02T15:24:51.9540099Z patching file drivers/video/fbdev/controlfb.c
2025-10-02T15:24:51.9541514Z patching file drivers/video/fbdev/core/bitblit.c
2025-10-02T15:24:51.9542534Z patching file drivers/video/fbdev/core/fb_defio.c
2025-10-02T15:24:51.9543489Z patching file drivers/video/fbdev/core/fbcmap.c
2025-10-02T15:24:51.9545563Z patching file drivers/video/fbdev/core/fbcon.c
2025-10-02T15:24:51.9548849Z patching file drivers/video/fbdev/core/fbcon.h
2025-10-02T15:24:51.9550023Z patching file drivers/video/fbdev/core/fbcon_ccw.c
2025-10-02T15:24:51.9551337Z patching file drivers/video/fbdev/core/fbcon_cw.c
2025-10-02T15:24:51.9552498Z patching file drivers/video/fbdev/core/fbcon_rotate.h
2025-10-02T15:24:51.9553357Z patching file drivers/video/fbdev/core/fbcon_ud.c
2025-10-02T15:24:51.9554779Z patching file drivers/video/fbdev/core/fbcvt.c
2025-10-02T15:24:51.9556589Z patching file drivers/video/fbdev/core/fbmem.c
2025-10-02T15:24:51.9559031Z patching file drivers/video/fbdev/core/fbmon.c
2025-10-02T15:24:51.9561208Z patching file drivers/video/fbdev/core/modedb.c
2025-10-02T15:24:51.9562698Z patching file drivers/video/fbdev/core/sysimgblt.c
2025-10-02T15:24:51.9563881Z patching file drivers/video/fbdev/core/tileblit.c
2025-10-02T15:24:51.9565292Z patching file drivers/video/fbdev/ep93xx-fb.c
2025-10-02T15:24:51.9567231Z patching file drivers/video/fbdev/fsl-diu-fb.c
2025-10-02T15:24:51.9569640Z patching file drivers/video/fbdev/gbefb.c
2025-10-02T15:24:51.9571474Z patching file drivers/video/fbdev/geode/lxfb_core.c
2025-10-02T15:24:51.9572906Z patching file drivers/video/fbdev/hgafb.c
2025-10-02T15:24:51.9574652Z patching file drivers/video/fbdev/hpfb.c
2025-10-02T15:24:51.9576032Z patching file drivers/video/fbdev/hyperv_fb.c
2025-10-02T15:24:51.9578603Z patching file drivers/video/fbdev/i740fb.c
2025-10-02T15:24:51.9580851Z patching file drivers/video/fbdev/imsttfb.c
2025-10-02T15:24:51.9583199Z patching file drivers/video/fbdev/imxfb.c
2025-10-02T15:24:51.9585210Z patching file drivers/video/fbdev/intelfb/intelfbdrv.c
2025-10-02T15:24:51.9587139Z patching file drivers/video/fbdev/kyro/fbdev.c
2025-10-02T15:24:51.9589180Z patching file drivers/video/fbdev/matrox/matroxfb_base.c
2025-10-02T15:24:51.9591826Z patching file drivers/video/fbdev/mmp/hw/mmp_ctrl.c
2025-10-02T15:24:51.9592754Z patching file drivers/video/fbdev/nvidia/nv_i2c.c
2025-10-02T15:24:51.9593909Z patching file drivers/video/fbdev/nvidia/nvidia.c
2025-10-02T15:24:51.9596025Z patching file drivers/video/fbdev/omap/lcd_mipid.c
2025-10-02T15:24:51.9597289Z patching file drivers/video/fbdev/omap2/omapfb/displays/connector-dvi.c
2025-10-02T15:24:51.9598521Z patching file drivers/video/fbdev/omap2/omapfb/displays/panel-dsi-cm.c
2025-10-02T15:24:51.9600743Z patching file drivers/video/fbdev/omap2/omapfb/displays/panel-sony-acx565akm.c
2025-10-02T15:24:51.9602008Z patching file drivers/video/fbdev/omap2/omapfb/displays/panel-tpo-td043mtea1.c
2025-10-02T15:24:51.9604318Z patching file drivers/video/fbdev/omap2/omapfb/dss/dispc.c
2025-10-02T15:24:51.9607253Z patching file drivers/video/fbdev/omap2/omapfb/dss/dss-of.c
2025-10-02T15:24:51.9608418Z patching file drivers/video/fbdev/pm2fb.c
2025-10-02T15:24:51.9611099Z patching file drivers/video/fbdev/pxa3xx-gcu.c
2025-10-02T15:24:51.9613173Z patching file drivers/video/fbdev/pxafb.c
2025-10-02T15:24:51.9615824Z patching file drivers/video/fbdev/riva/fbdev.c
2025-10-02T15:24:51.9618459Z patching file drivers/video/fbdev/s3fb.c
2025-10-02T15:24:51.9620870Z patching file drivers/video/fbdev/savage/savagefb_driver.c
2025-10-02T15:24:51.9623212Z patching file drivers/video/fbdev/sh7760fb.c
2025-10-02T15:24:51.9625254Z patching file drivers/video/fbdev/sh_mobile_lcdcfb.c
2025-10-02T15:24:51.9628427Z patching file drivers/video/fbdev/sis/init.c
2025-10-02T15:24:51.9634280Z patching file drivers/video/fbdev/sis/init301.c
2025-10-02T15:24:51.9642122Z patching file drivers/video/fbdev/sis/sis_main.c
2025-10-02T15:24:51.9646607Z patching file drivers/video/fbdev/sm501fb.c
2025-10-02T15:24:51.9649067Z patching file drivers/video/fbdev/sm712fb.c
2025-10-02T15:24:51.9651815Z patching file drivers/video/fbdev/smscufx.c
2025-10-02T15:24:51.9654590Z patching file drivers/video/fbdev/sticore.h
2025-10-02T15:24:51.9656236Z patching file drivers/video/fbdev/stifb.c
2025-10-02T15:24:51.9658749Z patching file drivers/video/fbdev/tgafb.c
2025-10-02T15:24:51.9661279Z patching file drivers/video/fbdev/udlfb.c
2025-10-02T15:24:51.9664075Z patching file drivers/video/fbdev/uvesafb.c
2025-10-02T15:24:51.9666361Z patching file drivers/video/fbdev/vermilion/vermilion.c
2025-10-02T15:24:51.9668224Z patching file drivers/video/fbdev/vga16fb.c
2025-10-02T15:24:51.9670344Z patching file drivers/video/fbdev/via/accel.c
2025-10-02T15:24:51.9671444Z patching file drivers/video/fbdev/via/via-core.c
2025-10-02T15:24:51.9673253Z patching file drivers/video/fbdev/vt8623fb.c
2025-10-02T15:24:51.9675200Z patching file drivers/video/fbdev/w100fb.c
2025-10-02T15:24:51.9677613Z patching file drivers/virt/nitro_enclaves/ne_misc_dev.c
2025-10-02T15:24:51.9679891Z patching file drivers/virt/vboxguest/vboxguest_linux.c
2025-10-02T15:24:51.9681173Z patching file drivers/virt/vboxguest/vboxguest_utils.c
2025-10-02T15:24:51.9682979Z patching file drivers/virtio/virtio.c
2025-10-02T15:24:51.9684627Z patching file drivers/virtio/virtio_balloon.c
2025-10-02T15:24:51.9686283Z patching file drivers/virtio/virtio_mmio.c
2025-10-02T15:24:51.9688190Z patching file drivers/virtio/virtio_pci_common.c
2025-10-02T15:24:51.9690200Z patching file drivers/virtio/virtio_ring.c
2025-10-02T15:24:51.9692776Z patching file drivers/virtio/virtio_vdpa.c
2025-10-02T15:24:51.9694156Z patching file drivers/visorbus/visorchipset.c
2025-10-02T15:24:51.9696564Z patching file drivers/vme/bridges/vme_fake.c
2025-10-02T15:24:51.9698670Z patching file drivers/vme/bridges/vme_tsi148.c
2025-10-02T15:24:51.9701281Z patching file drivers/w1/slaves/w1_ds2438.c
2025-10-02T15:24:51.9702195Z patching file drivers/w1/slaves/w1_ds28e04.c
2025-10-02T15:24:51.9704001Z patching file drivers/w1/slaves/w1_therm.c
2025-10-02T15:24:51.9706513Z patching file drivers/w1/w1.c
2025-10-02T15:24:51.9708035Z patching file drivers/w1/w1_int.c
2025-10-02T15:24:51.9709998Z patching file drivers/watchdog/Kconfig
2025-10-02T15:24:51.9712507Z patching file drivers/watchdog/armada_37xx_wdt.c
2025-10-02T15:24:51.9713523Z patching file drivers/watchdog/aspeed_wdt.c
2025-10-02T15:24:51.9715013Z patching file drivers/watchdog/at91sam9_wdt.c
2025-10-02T15:24:51.9717221Z patching file drivers/watchdog/bcm2835_wdt.c
2025-10-02T15:24:51.9718058Z patching file drivers/watchdog/da9052_wdt.c
2025-10-02T15:24:51.9719088Z patching file drivers/watchdog/diag288_wdt.c
2025-10-02T15:24:51.9720486Z patching file drivers/watchdog/dw_wdt.c
2025-10-02T15:24:51.9722235Z patching file drivers/watchdog/f71808e_wdt.c
2025-10-02T15:24:51.9723858Z patching file drivers/watchdog/hpwdt.c
2025-10-02T15:24:51.9724977Z patching file drivers/watchdog/iTCO_wdt.c
2025-10-02T15:24:51.9726726Z patching file drivers/watchdog/imx_sc_wdt.c
2025-10-02T15:24:51.9727772Z patching file drivers/watchdog/intel-mid_wdt.c
2025-10-02T15:24:51.9728859Z patching file drivers/watchdog/it87_wdt.c
2025-10-02T15:24:51.9730644Z patching file drivers/watchdog/jz4740_wdt.c
2025-10-02T15:24:51.9731588Z patching file drivers/watchdog/lpc18xx_wdt.c
2025-10-02T15:24:51.9732704Z patching file drivers/watchdog/mei_wdt.c
2025-10-02T15:24:51.9734102Z patching file drivers/watchdog/menz69_wdt.c
2025-10-02T15:24:51.9734934Z patching file drivers/watchdog/mtk_wdt.c
2025-10-02T15:24:51.9736216Z patching file drivers/watchdog/omap_wdt.c
2025-10-02T15:24:51.9737554Z patching file drivers/watchdog/pcwd_usb.c
2025-10-02T15:24:51.9738919Z patching file drivers/watchdog/qcom-wdt.c
2025-10-02T15:24:51.9740494Z patching file drivers/watchdog/rti_wdt.c
2025-10-02T15:24:51.9742081Z patching file drivers/watchdog/sbc60xxwdt.c
2025-10-02T15:24:51.9743142Z patching file drivers/watchdog/sbsa_gwdt.c
2025-10-02T15:24:51.9744268Z patching file drivers/watchdog/sc520_wdt.c
2025-10-02T15:24:51.9745408Z patching file drivers/watchdog/sp5100_tco.c
2025-10-02T15:24:51.9746996Z patching file drivers/watchdog/sp805_wdt.c
2025-10-02T15:24:51.9747968Z patching file drivers/watchdog/sprd_wdt.c
2025-10-02T15:24:51.9749734Z patching file drivers/watchdog/stm32_iwdg.c
2025-10-02T15:24:51.9750617Z patching file drivers/watchdog/ts4800_wdt.c
2025-10-02T15:24:51.9751726Z patching file drivers/watchdog/w83877f_wdt.c
2025-10-02T15:24:51.9752878Z patching file drivers/watchdog/watchdog_core.c
2025-10-02T15:24:51.9754595Z patching file drivers/watchdog/watchdog_dev.c
2025-10-02T15:24:51.9756402Z patching file drivers/watchdog/wdat_wdt.c
2025-10-02T15:24:51.9757536Z patching file drivers/watchdog/ziirave_wdt.c
2025-10-02T15:24:51.9759006Z patching file drivers/xen/Kconfig
2025-10-02T15:24:51.9760232Z patching file drivers/xen/balloon.c
2025-10-02T15:24:51.9762678Z patching file drivers/xen/events/events_2l.c
2025-10-02T15:24:51.9764140Z patching file drivers/xen/events/events_base.c
2025-10-02T15:24:51.9767599Z patching file drivers/xen/events/events_fifo.c
2025-10-02T15:24:51.9768315Z patching file drivers/xen/events/events_internal.h
2025-10-02T15:24:51.9769116Z patching file drivers/xen/features.c
2025-10-02T15:24:51.9770203Z patching file drivers/xen/gntalloc.c
2025-10-02T15:24:51.9771611Z patching file drivers/xen/gntdev-common.h
2025-10-02T15:24:51.9772659Z patching file drivers/xen/gntdev-dmabuf.c
2025-10-02T15:24:51.9774739Z patching file drivers/xen/gntdev.c
2025-10-02T15:24:51.9778046Z patching file drivers/xen/grant-table.c
2025-10-02T15:24:51.9780266Z patching file drivers/xen/pcpu.c
2025-10-02T15:24:51.9781446Z patching file drivers/xen/platform-pci.c
2025-10-02T15:24:51.9782789Z patching file drivers/xen/privcmd.c
2025-10-02T15:24:51.9784941Z patching file drivers/xen/pvcalls-back.c
2025-10-02T15:24:51.9786905Z patching file drivers/xen/pvcalls-front.c
2025-10-02T15:24:51.9788561Z patching file drivers/xen/swiotlb-xen.c
2025-10-02T15:24:51.9789939Z patching file drivers/xen/unpopulated-alloc.c
2025-10-02T15:24:51.9791181Z patching file drivers/xen/xen-pciback/conf_space.c
2025-10-02T15:24:51.9792436Z patching file drivers/xen/xen-pciback/conf_space_capability.c
2025-10-02T15:24:51.9793535Z patching file drivers/xen/xen-pciback/conf_space_header.c
2025-10-02T15:24:51.9794566Z patching file drivers/xen/xen-pciback/vpci.c
2025-10-02T15:24:51.9795742Z patching file drivers/xen/xen-pciback/xenbus.c
2025-10-02T15:24:51.9797832Z patching file drivers/xen/xen-scsiback.c
2025-10-02T15:24:51.9799839Z patching file drivers/xen/xenbus/xenbus.h
2025-10-02T15:24:51.9800763Z patching file drivers/xen/xenbus/xenbus_client.c
2025-10-02T15:24:51.9802743Z patching file drivers/xen/xenbus/xenbus_comms.c
2025-10-02T15:24:51.9803710Z patching file drivers/xen/xenbus/xenbus_dev_frontend.c
2025-10-02T15:24:51.9805161Z patching file drivers/xen/xenbus/xenbus_probe.c
2025-10-02T15:24:51.9807292Z patching file drivers/xen/xenbus/xenbus_probe_backend.c
2025-10-02T15:24:51.9808308Z patching file drivers/xen/xenbus/xenbus_xs.c
2025-10-02T15:24:51.9810360Z patching file drivers/xen/xenfs/xensyms.c
2025-10-02T15:24:51.9811033Z patching file drivers/xen/xlate_mmu.c
2025-10-02T15:24:51.9812377Z patching file fs/9p/vfs_file.c
2025-10-02T15:24:51.9814160Z patching file fs/9p/vfs_inode.c
2025-10-02T15:24:51.9815950Z patching file fs/9p/vfs_inode_dotl.c
2025-10-02T15:24:51.9817595Z patching file fs/9p/vfs_super.c
2025-10-02T15:24:51.9818846Z patching file fs/Kconfig
2025-10-02T15:24:51.9820034Z patching file fs/Makefile
2025-10-02T15:24:51.9821471Z patching file fs/affs/file.c
2025-10-02T15:24:51.9823203Z patching file fs/affs/namei.c
2025-10-02T15:24:51.9824243Z patching file fs/afs/afs.h
2025-10-02T15:24:51.9825192Z patching file fs/afs/afs_vl.h
2025-10-02T15:24:51.9826059Z patching file fs/afs/callback.c
2025-10-02T15:24:51.9827134Z patching file fs/afs/cell.c
2025-10-02T15:24:51.9828794Z patching file fs/afs/cmservice.c
2025-10-02T15:24:51.9830996Z patching file fs/afs/dir.c
2025-10-02T15:24:51.9833686Z patching file fs/afs/dir_edit.c
2025-10-02T15:24:51.9834489Z patching file fs/afs/dir_silly.c
2025-10-02T15:24:51.9835620Z patching file fs/afs/dynroot.c
2025-10-02T15:24:51.9836945Z patching file fs/afs/file.c
2025-10-02T15:24:51.9838401Z patching file fs/afs/flock.c
2025-10-02T15:24:51.9839703Z patching file fs/afs/fs_operation.c
2025-10-02T15:24:51.9840832Z patching file fs/afs/fs_probe.c
2025-10-02T15:24:51.9842668Z patching file fs/afs/fsclient.c
2025-10-02T15:24:51.9844830Z patching file fs/afs/inode.c
2025-10-02T15:24:51.9846860Z patching file fs/afs/internal.h
2025-10-02T15:24:51.9849104Z patching file fs/afs/main.c
2025-10-02T15:24:51.9849979Z patching file fs/afs/misc.c
2025-10-02T15:24:51.9850965Z patching file fs/afs/mntpt.c
2025-10-02T15:24:51.9852466Z patching file fs/afs/rxrpc.c
2025-10-02T15:24:51.9854354Z patching file fs/afs/server.c
2025-10-02T15:24:51.9855456Z patching file fs/afs/server_list.c
2025-10-02T15:24:51.9856447Z patching file fs/afs/super.c
2025-10-02T15:24:51.9858036Z patching file fs/afs/vl_alias.c
2025-10-02T15:24:51.9859076Z patching file fs/afs/vl_probe.c
2025-10-02T15:24:51.9860274Z patching file fs/afs/vl_rotate.c
2025-10-02T15:24:51.9861860Z patching file fs/afs/vlclient.c
2025-10-02T15:24:51.9863106Z patching file fs/afs/volume.c
2025-10-02T15:24:51.9864773Z patching file fs/afs/write.c
2025-10-02T15:24:51.9865963Z patching file fs/afs/xattr.c
2025-10-02T15:24:51.9867111Z patching file fs/afs/xdr_fs.h
2025-10-02T15:24:51.9868643Z patching file fs/afs/yfsclient.c
2025-10-02T15:24:51.9871417Z patching file fs/aio.c
2025-10-02T15:24:51.9874393Z patching file fs/attr.c
2025-10-02T15:24:51.9876013Z patching file fs/autofs/dev-ioctl.c
2025-10-02T15:24:51.9877179Z patching file fs/autofs/waitq.c
2025-10-02T15:24:51.9878627Z patching file fs/bfs/inode.c
2025-10-02T15:24:51.9880711Z patching file fs/binfmt_elf.c
2025-10-02T15:24:51.9884141Z patching file fs/binfmt_elf_fdpic.c
2025-10-02T15:24:51.9886641Z patching file fs/binfmt_flat.c
2025-10-02T15:24:51.9888514Z patching file fs/binfmt_misc.c
2025-10-02T15:24:51.9891708Z patching file fs/block_dev.c
2025-10-02T15:24:51.9894084Z patching file fs/btrfs/Kconfig
2025-10-02T15:24:51.9894699Z patching file fs/btrfs/async-thread.c
2025-10-02T15:24:51.9896678Z patching file fs/btrfs/backref.c
2025-10-02T15:24:51.9900268Z patching file fs/btrfs/backref.h
2025-10-02T15:24:51.9902377Z patching file fs/btrfs/block-group.c
2025-10-02T15:24:51.9905802Z patching file fs/btrfs/block-group.h
2025-10-02T15:24:51.9906769Z patching file fs/btrfs/block-rsv.c
2025-10-02T15:24:51.9908013Z patching file fs/btrfs/btrfs_inode.h
2025-10-02T15:24:51.9910062Z patching file fs/btrfs/compression.c
2025-10-02T15:24:51.9913346Z patching file fs/btrfs/ctree.c
2025-10-02T15:24:51.9919271Z patching file fs/btrfs/ctree.h
2025-10-02T15:24:51.9922568Z patching file fs/btrfs/delalloc-space.c
2025-10-02T15:24:51.9924213Z patching file fs/btrfs/delayed-inode.c
2025-10-02T15:24:51.9926877Z patching file fs/btrfs/delayed-ref.c
2025-10-02T15:24:51.9928993Z patching file fs/btrfs/delayed-ref.h
2025-10-02T15:24:51.9930421Z patching file fs/btrfs/dev-replace.c
2025-10-02T15:24:51.9932489Z patching file fs/btrfs/dir-item.c
2025-10-02T15:24:51.9934344Z patching file fs/btrfs/discard.c
2025-10-02T15:24:51.9937251Z patching file fs/btrfs/disk-io.c
2025-10-02T15:24:51.9941641Z patching file fs/btrfs/disk-io.h
2025-10-02T15:24:51.9942332Z patching file fs/btrfs/export.c
2025-10-02T15:24:51.9943726Z patching file fs/btrfs/export.h
2025-10-02T15:24:51.9946448Z patching file fs/btrfs/extent-tree.c
2025-10-02T15:24:51.9955053Z patching file fs/btrfs/extent_io.c
2025-10-02T15:24:51.9959888Z patching file fs/btrfs/extent_io.h
2025-10-02T15:24:51.9961567Z patching file fs/btrfs/file-item.c
2025-10-02T15:24:51.9964035Z patching file fs/btrfs/file.c
2025-10-02T15:24:51.9968897Z patching file fs/btrfs/free-space-cache.c
2025-10-02T15:24:51.9972967Z patching file fs/btrfs/free-space-tree.c
2025-10-02T15:24:51.9974861Z patching file fs/btrfs/inode-map.c
2025-10-02T15:24:51.9975975Z patching file fs/btrfs/inode-map.h
2025-10-02T15:24:51.9979702Z patching file fs/btrfs/inode.c
2025-10-02T15:24:51.9988129Z patching file fs/btrfs/ioctl.c
2025-10-02T15:24:51.9992740Z patching file fs/btrfs/locking.c
2025-10-02T15:24:51.9995108Z patching file fs/btrfs/locking.h
2025-10-02T15:24:51.9996234Z patching file fs/btrfs/print-tree.c
2025-10-02T15:24:51.9997605Z patching file fs/btrfs/print-tree.h
2025-10-02T15:24:51.9999821Z patching file fs/btrfs/qgroup.c
2025-10-02T15:24:52.0004070Z patching file fs/btrfs/qgroup.h
2025-10-02T15:24:52.0005893Z patching file fs/btrfs/raid56.c
2025-10-02T15:24:52.0008706Z patching file fs/btrfs/rcu-string.h
2025-10-02T15:24:52.0009789Z patching file fs/btrfs/ref-verify.c
2025-10-02T15:24:52.0011968Z patching file fs/btrfs/reflink.c
2025-10-02T15:24:52.0014807Z patching file fs/btrfs/relocation.c
2025-10-02T15:24:52.0018261Z patching file fs/btrfs/root-tree.c
2025-10-02T15:24:52.0020580Z patching file fs/btrfs/scrub.c
2025-10-02T15:24:52.0025307Z patching file fs/btrfs/send.c
2025-10-02T15:24:52.0030834Z patching file fs/btrfs/space-info.c
2025-10-02T15:24:52.0032719Z patching file fs/btrfs/space-info.h
2025-10-02T15:24:52.0034416Z patching file fs/btrfs/super.c
2025-10-02T15:24:52.0037541Z patching file fs/btrfs/sysfs.c
2025-10-02T15:24:52.0039713Z patching file fs/btrfs/tests/btrfs-tests.c
2025-10-02T15:24:52.0040377Z patching file fs/btrfs/tests/qgroup-tests.c
2025-10-02T15:24:52.0042608Z patching file fs/btrfs/transaction.c
2025-10-02T15:24:52.0045565Z patching file fs/btrfs/transaction.h
2025-10-02T15:24:52.0046905Z patching file fs/btrfs/tree-checker.c
2025-10-02T15:24:52.0049921Z patching file fs/btrfs/tree-defrag.c
2025-10-02T15:24:52.0052719Z patching file fs/btrfs/tree-log.c
2025-10-02T15:24:52.0060089Z patching file fs/btrfs/volumes.c
2025-10-02T15:24:52.0065825Z patching file fs/btrfs/volumes.h
2025-10-02T15:24:52.0067167Z patching file fs/btrfs/xattr.c
2025-10-02T15:24:52.0068820Z patching file fs/btrfs/zlib.c
2025-10-02T15:24:52.0071052Z patching file fs/buffer.c
2025-10-02T15:24:52.0073775Z patching file fs/cachefiles/bind.c
2025-10-02T15:24:52.0074645Z patching file fs/cachefiles/namei.c
2025-10-02T15:24:52.0076484Z patching file fs/cachefiles/rdwr.c
2025-10-02T15:24:52.0078459Z patching file fs/ceph/addr.c
2025-10-02T15:24:52.0081894Z patching file fs/ceph/caps.c
2025-10-02T15:24:52.0086608Z patching file fs/ceph/dir.c
2025-10-02T15:24:52.0088720Z patching file fs/ceph/export.c
2025-10-02T15:24:52.0090630Z patching file fs/ceph/file.c
2025-10-02T15:24:52.0093874Z patching file fs/ceph/inode.c
2025-10-02T15:24:52.0096322Z patching file fs/ceph/locks.c
2025-10-02T15:24:52.0098710Z patching file fs/ceph/mds_client.c
2025-10-02T15:24:52.0103338Z patching file fs/ceph/mds_client.h
2025-10-02T15:24:52.0104462Z patching file fs/ceph/mdsmap.c
2025-10-02T15:24:52.0105513Z patching file fs/ceph/metric.c
2025-10-02T15:24:52.0106955Z patching file fs/ceph/snap.c
2025-10-02T15:24:52.0109301Z patching file fs/ceph/strings.c
2025-10-02T15:24:52.0110375Z patching file fs/ceph/super.c
2025-10-02T15:24:52.0112703Z patching file fs/ceph/super.h
2025-10-02T15:24:52.0114839Z patching file fs/ceph/xattr.c
2025-10-02T15:24:52.0116778Z patching file fs/char_dev.c
2025-10-02T15:24:52.0118174Z patching file fs/cifs/cifs_debug.c
2025-10-02T15:24:52.0120048Z patching file fs/cifs/cifs_dfs_ref.c
2025-10-02T15:24:52.0120972Z patching file fs/cifs/cifs_spnego.c
2025-10-02T15:24:52.0122007Z patching file fs/cifs/cifs_unicode.c
2025-10-02T15:24:52.0124012Z patching file fs/cifs/cifsfs.c
2025-10-02T15:24:52.0125941Z patching file fs/cifs/cifsfs.h
2025-10-02T15:24:52.0127512Z patching file fs/cifs/cifsglob.h
2025-10-02T15:24:52.0130794Z patching file fs/cifs/cifspdu.h
2025-10-02T15:24:52.0133323Z patching file fs/cifs/cifsproto.h
2025-10-02T15:24:52.0136337Z patching file fs/cifs/cifssmb.c
2025-10-02T15:24:52.0141622Z patching file fs/cifs/connect.c
2025-10-02T15:24:52.0145745Z patching file fs/cifs/dfs_cache.c
2025-10-02T15:24:52.0147649Z patching file fs/cifs/dir.c
2025-10-02T15:24:52.0150223Z patching file fs/cifs/file.c
2025-10-02T15:24:52.0154563Z patching file fs/cifs/inode.c
2025-10-02T15:24:52.0157037Z patching file fs/cifs/ioctl.c
2025-10-02T15:24:52.0157999Z patching file fs/cifs/link.c
2025-10-02T15:24:52.0159855Z patching file fs/cifs/misc.c
2025-10-02T15:24:52.0161947Z patching file fs/cifs/readdir.c
2025-10-02T15:24:52.0163890Z patching file fs/cifs/sess.c
2025-10-02T15:24:52.0165894Z patching file fs/cifs/smb2file.c
2025-10-02T15:24:52.0166633Z patching file fs/cifs/smb2glob.h
2025-10-02T15:24:52.0167652Z patching file fs/cifs/smb2inode.c
2025-10-02T15:24:52.0169714Z patching file fs/cifs/smb2misc.c
2025-10-02T15:24:52.0172899Z patching file fs/cifs/smb2ops.c
2025-10-02T15:24:52.0180694Z patching file fs/cifs/smb2pdu.c
2025-10-02T15:24:52.0185826Z patching file fs/cifs/smb2pdu.h
2025-10-02T15:24:52.0188607Z patching file fs/cifs/smb2proto.h
2025-10-02T15:24:52.0189890Z patching file fs/cifs/smb2transport.c
2025-10-02T15:24:52.0192448Z patching file fs/cifs/smbdirect.c
2025-10-02T15:24:52.0195305Z patching file fs/cifs/transport.c
2025-10-02T15:24:52.0198096Z patching file fs/cifs/xattr.c
2025-10-02T15:24:52.0199221Z patching file fs/coda/upcall.c
2025-10-02T15:24:52.0201510Z patching file fs/configfs/dir.c
2025-10-02T15:24:52.0203802Z patching file fs/configfs/file.c
2025-10-02T15:24:52.0205393Z patching file fs/coredump.c
2025-10-02T15:24:52.0207910Z patching file fs/crypto/fname.c
2025-10-02T15:24:52.0209005Z patching file fs/crypto/fscrypt_private.h
2025-10-02T15:24:52.0211143Z patching file fs/crypto/hkdf.c
2025-10-02T15:24:52.0211834Z patching file fs/crypto/hooks.c
2025-10-02T15:24:52.0213701Z patching file fs/crypto/keyring.c
2025-10-02T15:24:52.0217047Z patching file fs/crypto/keysetup.c
2025-10-02T15:24:52.0219790Z patching file fs/crypto/policy.c
2025-10-02T15:24:52.0221698Z patching file fs/dax.c
2025-10-02T15:24:52.0224811Z patching file fs/dcache.c
2025-10-02T15:24:52.0227703Z patching file fs/debugfs/file.c
2025-10-02T15:24:52.0229925Z patching file fs/debugfs/inode.c
2025-10-02T15:24:52.0231624Z patching file fs/debugfs/internal.h
2025-10-02T15:24:52.0232266Z patching file fs/devpts/inode.c
2025-10-02T15:24:52.0233907Z patching file fs/direct-io.c
2025-10-02T15:24:52.0235730Z patching file fs/dlm/ast.c
2025-10-02T15:24:52.0236635Z patching file fs/dlm/config.c
2025-10-02T15:24:52.0238635Z patching file fs/dlm/debug_fs.c
2025-10-02T15:24:52.0241445Z patching file fs/dlm/lock.c
2025-10-02T15:24:52.0245848Z patching file fs/dlm/lowcomms.c
2025-10-02T15:24:52.0247925Z patching file fs/dlm/midcomms.c
2025-10-02T15:24:52.0248567Z patching file fs/dlm/plock.c
2025-10-02T15:24:52.0251162Z patching file fs/dlm/recover.c
2025-10-02T15:24:52.0253326Z patching file fs/ecryptfs/crypto.c
2025-10-02T15:24:52.0255671Z patching file fs/ecryptfs/inode.c
2025-10-02T15:24:52.0257888Z patching file fs/ecryptfs/keystore.c
2025-10-02T15:24:52.0260599Z patching file fs/ecryptfs/main.c
2025-10-02T15:24:52.0262000Z patching file fs/efivarfs/inode.c
2025-10-02T15:24:52.0262626Z patching file fs/efivarfs/internal.h
2025-10-02T15:24:52.0263436Z patching file fs/efivarfs/super.c
2025-10-02T15:24:52.0264598Z patching file fs/erofs/data.c
2025-10-02T15:24:52.0265717Z patching file fs/erofs/decompressor.c
2025-10-02T15:24:52.0267304Z patching file fs/erofs/erofs_fs.h
2025-10-02T15:24:52.0268229Z patching file fs/erofs/inode.c
2025-10-02T15:24:52.0269370Z patching file fs/erofs/internal.h
2025-10-02T15:24:52.0270677Z patching file fs/erofs/super.c
2025-10-02T15:24:52.0272035Z patching file fs/erofs/utils.c
2025-10-02T15:24:52.0272991Z patching file fs/erofs/xattr.c
2025-10-02T15:24:52.0274706Z patching file fs/erofs/zdata.c
2025-10-02T15:24:52.0276563Z patching file fs/erofs/zmap.c
2025-10-02T15:24:52.0277618Z patching file fs/erofs/zpvec.h
2025-10-02T15:24:52.0278711Z patching file fs/eventfd.c
2025-10-02T15:24:52.0281525Z patching file fs/eventpoll.c
2025-10-02T15:24:52.0284380Z patching file fs/exec.c
2025-10-02T15:24:52.0287147Z patching file fs/exfat/balloc.c
2025-10-02T15:24:52.0288682Z patching file fs/exfat/dir.c
2025-10-02T15:24:52.0291260Z patching file fs/exfat/exfat_fs.h
2025-10-02T15:24:52.0292304Z patching file fs/exfat/exfat_raw.h
2025-10-02T15:24:52.0293198Z patching file fs/exfat/fatent.c
2025-10-02T15:24:52.0294255Z patching file fs/exfat/file.c
2025-10-02T15:24:52.0303113Z patching file fs/exfat/inode.c
2025-10-02T15:24:52.0303530Z patching file fs/exfat/namei.c
2025-10-02T15:24:52.0303877Z patching file fs/exfat/nls.c
2025-10-02T15:24:52.0304227Z patching file fs/exfat/super.c
2025-10-02T15:24:52.0304568Z patching file fs/exportfs/expfs.c
2025-10-02T15:24:52.0304906Z patching file fs/ext2/balloc.c
2025-10-02T15:24:52.0307000Z patching file fs/ext2/ext2.h
2025-10-02T15:24:52.0308850Z patching file fs/ext2/super.c
2025-10-02T15:24:52.0311252Z patching file fs/ext2/xattr.c
2025-10-02T15:24:52.0312720Z patching file fs/ext4/Kconfig
2025-10-02T15:24:52.0313433Z patching file fs/ext4/acl.c
2025-10-02T15:24:52.0314462Z patching file fs/ext4/acl.h
2025-10-02T15:24:52.0315475Z patching file fs/ext4/balloc.c
2025-10-02T15:24:52.0317616Z patching file fs/ext4/block_validity.c
2025-10-02T15:24:52.0318773Z patching file fs/ext4/dir.c
2025-10-02T15:24:52.0321394Z patching file fs/ext4/ext4.h
2025-10-02T15:24:52.0324995Z patching file fs/ext4/ext4_jbd2.c
2025-10-02T15:24:52.0327451Z patching file fs/ext4/extents.c
2025-10-02T15:24:52.0334526Z patching file fs/ext4/extents_status.c
2025-10-02T15:24:52.0338125Z patching file fs/ext4/extents_status.h
2025-10-02T15:24:52.0339796Z patching file fs/ext4/fast_commit.c
2025-10-02T15:24:52.0343962Z patching file fs/ext4/fast_commit.h
2025-10-02T15:24:52.0344761Z patching file fs/ext4/file.c
2025-10-02T15:24:52.0347138Z patching file fs/ext4/fsmap.c
2025-10-02T15:24:52.0349201Z patching file fs/ext4/ialloc.c
2025-10-02T15:24:52.0352204Z patching file fs/ext4/indirect.c
2025-10-02T15:24:52.0354454Z patching file fs/ext4/inline.c
2025-10-02T15:24:52.0358821Z patching file fs/ext4/inode.c
2025-10-02T15:24:52.0365511Z patching file fs/ext4/ioctl.c
2025-10-02T15:24:52.0368965Z patching file fs/ext4/mballoc.c
2025-10-02T15:24:52.0376636Z patching file fs/ext4/mballoc.h
2025-10-02T15:24:52.0377687Z patching file fs/ext4/migrate.c
2025-10-02T15:24:52.0379807Z patching file fs/ext4/mmp.c
2025-10-02T15:24:52.0381743Z patching file fs/ext4/move_extent.c
2025-10-02T15:24:52.0384100Z patching file fs/ext4/namei.c
2025-10-02T15:24:52.0389706Z patching file fs/ext4/page-io.c
2025-10-02T15:24:52.0391658Z patching file fs/ext4/resize.c
2025-10-02T15:24:52.0395999Z patching file fs/ext4/super.c
2025-10-02T15:24:52.0402859Z patching file fs/ext4/symlink.c
2025-10-02T15:24:52.0403587Z patching file fs/ext4/sysfs.c
2025-10-02T15:24:52.0405347Z patching file fs/ext4/verity.c
2025-10-02T15:24:52.0407586Z patching file fs/ext4/xattr.c
2025-10-02T15:24:52.0411740Z patching file fs/ext4/xattr.h
2025-10-02T15:24:52.0412691Z patching file fs/f2fs/acl.c
2025-10-02T15:24:52.0414391Z patching file fs/f2fs/checkpoint.c
2025-10-02T15:24:52.0417036Z patching file fs/f2fs/compress.c
2025-10-02T15:24:52.0420877Z patching file fs/f2fs/data.c
2025-10-02T15:24:52.0424636Z patching file fs/f2fs/debug.c
2025-10-02T15:24:52.0426154Z patching file fs/f2fs/dir.c
2025-10-02T15:24:52.0427915Z patching file fs/f2fs/extent_cache.c
2025-10-02T15:24:52.0430433Z patching file fs/f2fs/f2fs.h
2025-10-02T15:24:52.0435737Z patching file fs/f2fs/file.c
2025-10-02T15:24:52.0441194Z patching file fs/f2fs/gc.c
2025-10-02T15:24:52.0444211Z patching file fs/f2fs/inline.c
2025-10-02T15:24:52.0446130Z patching file fs/f2fs/inode.c
2025-10-02T15:24:52.0448070Z patching file fs/f2fs/namei.c
2025-10-02T15:24:52.0451161Z patching file fs/f2fs/node.c
2025-10-02T15:24:52.0454269Z patching file fs/f2fs/node.h
2025-10-02T15:24:52.0455298Z patching file fs/f2fs/recovery.c
2025-10-02T15:24:52.0458400Z patching file fs/f2fs/segment.c
2025-10-02T15:24:52.0463445Z patching file fs/f2fs/segment.h
2025-10-02T15:24:52.0465315Z patching file fs/f2fs/shrinker.c
2025-10-02T15:24:52.0467110Z patching file fs/f2fs/super.c
2025-10-02T15:24:52.0471672Z patching file fs/f2fs/sysfs.c
2025-10-02T15:24:52.0473263Z patching file fs/f2fs/verity.c
2025-10-02T15:24:52.0474865Z patching file fs/f2fs/xattr.c
2025-10-02T15:24:52.0476633Z patching file fs/fat/fatent.c
2025-10-02T15:24:52.0478085Z patching file fs/fat/namei_vfat.c
2025-10-02T15:24:52.0479724Z patching file fs/fat/nfs.c
2025-10-02T15:24:52.0480991Z patching file fs/fcntl.c
2025-10-02T15:24:52.0483534Z patching file fs/fhandle.c
2025-10-02T15:24:52.0484635Z patching file fs/file.c
2025-10-02T15:24:52.0487885Z patching file fs/file_table.c
2025-10-02T15:24:52.0488864Z patching file fs/filesystems.c
2025-10-02T15:24:52.0491000Z patching file fs/fs-writeback.c
2025-10-02T15:24:52.0494020Z patching file fs/fs_context.c
2025-10-02T15:24:52.0495508Z patching file fs/fscache/cookie.c
2025-10-02T15:24:52.0497112Z patching file fs/fscache/internal.h
2025-10-02T15:24:52.0498002Z patching file fs/fscache/main.c
2025-10-02T15:24:52.0499053Z patching file fs/fuse/acl.c
2025-10-02T15:24:52.0500095Z patching file fs/fuse/control.c
2025-10-02T15:24:52.0501551Z patching file fs/fuse/cuse.c
2025-10-02T15:24:52.0502948Z patching file fs/fuse/dax.c
2025-10-02T15:24:52.0505175Z patching file fs/fuse/dev.c
2025-10-02T15:24:52.0507914Z patching file fs/fuse/dir.c
2025-10-02T15:24:52.0511376Z patching file fs/fuse/file.c
2025-10-02T15:24:52.0515115Z patching file fs/fuse/fuse_i.h
2025-10-02T15:24:52.0517186Z patching file fs/fuse/inode.c
2025-10-02T15:24:52.0519807Z patching file fs/fuse/readdir.c
2025-10-02T15:24:52.0521469Z patching file fs/fuse/virtio_fs.c
2025-10-02T15:24:52.0523659Z patching file fs/fuse/xattr.c
2025-10-02T15:24:52.0524781Z patching file fs/gfs2/aops.c
2025-10-02T15:24:52.0526926Z patching file fs/gfs2/bmap.c
2025-10-02T15:24:52.0529732Z patching file fs/gfs2/file.c
2025-10-02T15:24:52.0532143Z patching file fs/gfs2/glock.c
2025-10-02T15:24:52.0534923Z patching file fs/gfs2/glops.c
2025-10-02T15:24:52.0536784Z patching file fs/gfs2/inode.c
2025-10-02T15:24:52.0539198Z patching file fs/gfs2/lock_dlm.c
2025-10-02T15:24:52.0541396Z patching file fs/gfs2/log.c
2025-10-02T15:24:52.0543289Z patching file fs/gfs2/lops.c
2025-10-02T15:24:52.0545061Z patching file fs/gfs2/ops_fstype.c
2025-10-02T15:24:52.0547653Z patching file fs/gfs2/quota.c
2025-10-02T15:24:52.0549940Z patching file fs/gfs2/recovery.c
2025-10-02T15:24:52.0551784Z patching file fs/gfs2/rgrp.c
2025-10-02T15:24:52.0554432Z patching file fs/gfs2/rgrp.h
2025-10-02T15:24:52.0555394Z patching file fs/gfs2/super.c
2025-10-02T15:24:52.0558094Z patching file fs/gfs2/trans.c
2025-10-02T15:24:52.0558791Z patching file fs/gfs2/util.c
2025-10-02T15:24:52.0560495Z patching file fs/gfs2/util.h
2025-10-02T15:24:52.0561218Z patching file fs/hfs/bfind.c
2025-10-02T15:24:52.0562410Z patching file fs/hfs/bnode.c
2025-10-02T15:24:52.0564064Z patching file fs/hfs/btree.h
2025-10-02T15:24:52.0571019Z patching file fs/hfs/inode.c
2025-10-02T15:24:52.0572282Z patching file fs/hfs/super.c
2025-10-02T15:24:52.0573394Z patching file fs/hfs/trans.c
2025-10-02T15:24:52.0574379Z patching file fs/hfsplus/bfind.c
2025-10-02T15:24:52.0575356Z patching file fs/hfsplus/bnode.c
2025-10-02T15:24:52.0577342Z patching file fs/hfsplus/extents.c
2025-10-02T15:24:52.0578517Z patching file fs/hfsplus/hfsplus_fs.h
2025-10-02T15:24:52.0580321Z patching file fs/hfsplus/inode.c
2025-10-02T15:24:52.0581754Z patching file fs/hfsplus/options.c
2025-10-02T15:24:52.0582746Z patching file fs/hfsplus/super.c
2025-10-02T15:24:52.0584217Z patching file fs/hfsplus/unicode.c
2025-10-02T15:24:52.0585434Z patching file fs/hfsplus/wrapper.c
2025-10-02T15:24:52.0586249Z patching file fs/hfsplus/xattr.c
2025-10-02T15:24:52.0588099Z patching file fs/hostfs/hostfs_kern.c
2025-10-02T15:24:52.0589953Z patching file fs/hugetlbfs/inode.c
2025-10-02T15:24:52.0592458Z patching file fs/init.c
2025-10-02T15:24:52.0594084Z patching file fs/inode.c
2025-10-02T15:24:52.0597062Z patching file fs/internal.h
2025-10-02T15:24:52.0598525Z patching file fs/io-wq.c
2025-10-02T15:24:52.0602028Z patching file fs/io-wq.h
2025-10-02T15:24:52.0605688Z patching file fs/io_uring.c
2025-10-02T15:24:52.0623429Z patching file fs/ioctl.c
2025-10-02T15:24:52.0625185Z patching file fs/iomap/buffered-io.c
2025-10-02T15:24:52.0627184Z patching file fs/iomap/direct-io.c
2025-10-02T15:24:52.0628087Z patching file fs/iomap/seek.c
2025-10-02T15:24:52.0629241Z patching file fs/iomap/swapfile.c
2025-10-02T15:24:52.0630520Z patching file fs/isofs/dir.c
2025-10-02T15:24:52.0631359Z patching file fs/isofs/export.c
2025-10-02T15:24:52.0632701Z patching file fs/isofs/inode.c
2025-10-02T15:24:52.0635010Z patching file fs/isofs/isofs.h
2025-10-02T15:24:52.0635488Z patching file fs/isofs/joliet.c
2025-10-02T15:24:52.0636279Z patching file fs/isofs/namei.c
2025-10-02T15:24:52.0637446Z patching file fs/jbd2/checkpoint.c
2025-10-02T15:24:52.0639854Z patching file fs/jbd2/commit.c
2025-10-02T15:24:52.0642438Z patching file fs/jbd2/journal.c
2025-10-02T15:24:52.0645166Z patching file fs/jbd2/recovery.c
2025-10-02T15:24:52.0647340Z patching file fs/jbd2/transaction.c
2025-10-02T15:24:52.0650529Z patching file fs/jffs2/build.c
2025-10-02T15:24:52.0651542Z patching file fs/jffs2/compr_rtime.c
2025-10-02T15:24:52.0652516Z patching file fs/jffs2/erase.c
2025-10-02T15:24:52.0653666Z patching file fs/jffs2/file.c
2025-10-02T15:24:52.0655400Z patching file fs/jffs2/fs.c
2025-10-02T15:24:52.0656383Z patching file fs/jffs2/jffs2_fs_sb.h
2025-10-02T15:24:52.0657712Z patching file fs/jffs2/readinode.c
2025-10-02T15:24:52.0660050Z patching file fs/jffs2/scan.c
2025-10-02T15:24:52.0661997Z patching file fs/jffs2/summary.c
2025-10-02T15:24:52.0663201Z patching file fs/jffs2/super.c
2025-10-02T15:24:52.0664974Z patching file fs/jffs2/xattr.c
2025-10-02T15:24:52.0666747Z patching file fs/jffs2/xattr.h
2025-10-02T15:24:52.0667493Z patching file fs/jfs/file.c
2025-10-02T15:24:52.0668360Z patching file fs/jfs/inode.c
2025-10-02T15:24:52.0669819Z patching file fs/jfs/jfs_discard.c
2025-10-02T15:24:52.0671792Z patching file fs/jfs/jfs_dmap.c
2025-10-02T15:24:52.0675803Z patching file fs/jfs/jfs_dmap.h
2025-10-02T15:24:52.0677835Z patching file fs/jfs/jfs_dtree.c
2025-10-02T15:24:52.0681305Z patching file fs/jfs/jfs_extent.c
2025-10-02T15:24:52.0682261Z patching file fs/jfs/jfs_filsys.h
2025-10-02T15:24:52.0684279Z patching file fs/jfs/jfs_imap.c
2025-10-02T15:24:52.0687351Z patching file fs/jfs/jfs_logmgr.c
2025-10-02T15:24:52.0689440Z patching file fs/jfs/jfs_mount.c
2025-10-02T15:24:52.0691929Z patching file fs/jfs/jfs_txnmgr.c
2025-10-02T15:24:52.0694621Z patching file fs/jfs/namei.c
2025-10-02T15:24:52.0696520Z patching file fs/jfs/xattr.c
2025-10-02T15:24:52.0698414Z patching file fs/kernel_read_file.c
2025-10-02T15:24:52.0699648Z patching file fs/kernfs/dir.c
2025-10-02T15:24:52.0702100Z patching file fs/kernfs/file.c
2025-10-02T15:24:52.0704397Z patching file fs/libfs.c
2025-10-02T15:24:52.0706397Z patching file fs/lockd/clnt4xdr.c
2025-10-02T15:24:52.0707481Z patching file fs/lockd/clntproc.c
2025-10-02T15:24:52.0709164Z patching file fs/lockd/host.c
2025-10-02T15:24:52.0710485Z patching file fs/lockd/mon.c
2025-10-02T15:24:52.0711990Z patching file fs/lockd/svc.c
2025-10-02T15:24:52.0714506Z patching file fs/lockd/svc4proc.c
2025-10-02T15:24:52.0716800Z patching file fs/lockd/svclock.c
2025-10-02T15:24:52.0719113Z patching file fs/lockd/svcproc.c
2025-10-02T15:24:52.0721470Z patching file fs/lockd/svcsubs.c
2025-10-02T15:24:52.0723146Z patching file fs/lockd/svcxdr.h
2025-10-02T15:24:52.0724248Z patching file fs/lockd/xdr.c
2025-10-02T15:24:52.0726570Z patching file fs/lockd/xdr4.c
2025-10-02T15:24:52.0729856Z patching file fs/locks.c
2025-10-02T15:24:52.0733150Z patching file fs/mbcache.c
2025-10-02T15:24:52.0735135Z patching file fs/minix/inode.c
2025-10-02T15:24:52.0737601Z patching file fs/namei.c
2025-10-02T15:24:52.0743679Z patching file fs/namespace.c
2025-10-02T15:24:52.0747311Z patching file fs/nfs/Kconfig
2025-10-02T15:24:52.0748483Z patching file fs/nfs/blocklayout/blocklayout.c
2025-10-02T15:24:52.0750310Z patching file fs/nfs/blocklayout/dev.c
2025-10-02T15:24:52.0751510Z patching file fs/nfs/blocklayout/extent_tree.c
2025-10-02T15:24:52.0753083Z patching file fs/nfs/callback.c
2025-10-02T15:24:52.0755039Z patching file fs/nfs/callback.h
2025-10-02T15:24:52.0755826Z patching file fs/nfs/callback_proc.c
2025-10-02T15:24:52.0757532Z patching file fs/nfs/callback_xdr.c
2025-10-02T15:24:52.0759831Z patching file fs/nfs/client.c
2025-10-02T15:24:52.0762304Z patching file fs/nfs/delegation.c
2025-10-02T15:24:52.0764795Z patching file fs/nfs/delegation.h
2025-10-02T15:24:52.0766203Z patching file fs/nfs/dir.c
2025-10-02T15:24:52.0769335Z patching file fs/nfs/direct.c
2025-10-02T15:24:52.0771879Z patching file fs/nfs/export.c
2025-10-02T15:24:52.0772888Z patching file fs/nfs/file.c
2025-10-02T15:24:52.0775025Z patching file fs/nfs/filelayout/filelayout.c
2025-10-02T15:24:52.0776669Z patching file fs/nfs/filelayout/filelayoutdev.c
2025-10-02T15:24:52.0778568Z patching file fs/nfs/flexfilelayout/flexfilelayout.c
2025-10-02T15:24:52.0782236Z patching file fs/nfs/flexfilelayout/flexfilelayoutdev.c
2025-10-02T15:24:52.0783882Z patching file fs/nfs/fs_context.c
2025-10-02T15:24:52.0786259Z patching file fs/nfs/inode.c
2025-10-02T15:24:52.0789871Z patching file fs/nfs/internal.h
2025-10-02T15:24:52.0791145Z patching file fs/nfs/namespace.c
2025-10-02T15:24:52.0792175Z patching file fs/nfs/netns.h
2025-10-02T15:24:52.0793259Z patching file fs/nfs/nfs2xdr.c
2025-10-02T15:24:52.0794764Z patching file fs/nfs/nfs3client.c
2025-10-02T15:24:52.0795821Z patching file fs/nfs/nfs3proc.c
2025-10-02T15:24:52.0798215Z patching file fs/nfs/nfs3xdr.c
2025-10-02T15:24:52.0800625Z patching file fs/nfs/nfs42.h
2025-10-02T15:24:52.0801573Z patching file fs/nfs/nfs42proc.c
2025-10-02T15:24:52.0804262Z patching file fs/nfs/nfs42xdr.c
2025-10-02T15:24:52.0806498Z patching file fs/nfs/nfs4_fs.h
2025-10-02T15:24:52.0807967Z patching file fs/nfs/nfs4client.c
2025-10-02T15:24:52.0810483Z patching file fs/nfs/nfs4file.c
2025-10-02T15:24:52.0811902Z patching file fs/nfs/nfs4idmap.c
2025-10-02T15:24:52.0813913Z patching file fs/nfs/nfs4namespace.c
2025-10-02T15:24:52.0817920Z patching file fs/nfs/nfs4proc.c
2025-10-02T15:24:52.0826095Z patching file fs/nfs/nfs4session.h
2025-10-02T15:24:52.0827381Z patching file fs/nfs/nfs4state.c
2025-10-02T15:24:52.0830715Z patching file fs/nfs/nfs4super.c
2025-10-02T15:24:52.0832118Z patching file fs/nfs/nfs4trace.h
2025-10-02T15:24:52.0836231Z patching file fs/nfs/nfs4xdr.c
2025-10-02T15:24:52.0840767Z patching file fs/nfs/nfsroot.c
2025-10-02T15:24:52.0841973Z patching file fs/nfs/pagelist.c
2025-10-02T15:24:52.0845278Z patching file fs/nfs/pnfs.c
2025-10-02T15:24:52.0849698Z patching file fs/nfs/pnfs.h
2025-10-02T15:24:52.0851325Z patching file fs/nfs/pnfs_dev.c
2025-10-02T15:24:52.0852642Z patching file fs/nfs/pnfs_nfs.c
2025-10-02T15:24:52.0855172Z patching file fs/nfs/read.c
2025-10-02T15:24:52.0856543Z patching file fs/nfs/super.c
2025-10-02T15:24:52.0858847Z patching file fs/nfs/sysfs.c
2025-10-02T15:24:52.0860520Z patching file fs/nfs/write.c
2025-10-02T15:24:52.0863936Z patching file fs/nfs_common/Makefile
2025-10-02T15:24:52.0864795Z patching file fs/nfs_common/grace.c
2025-10-02T15:24:52.0865635Z patching file fs/nfs_common/nfs_ssc.c
2025-10-02T15:24:52.0866461Z patching file fs/nfs_common/nfsacl.c
2025-10-02T15:24:52.0867543Z patching file fs/nfsd/Kconfig
2025-10-02T15:24:52.0868777Z patching file fs/nfsd/Makefile
2025-10-02T15:24:52.0869778Z patching file fs/nfsd/acl.h
2025-10-02T15:24:52.0870760Z patching file fs/nfsd/blocklayout.c
2025-10-02T15:24:52.0871997Z patching file fs/nfsd/blocklayoutxdr.c
2025-10-02T15:24:52.0872845Z patching file fs/nfsd/cache.h
2025-10-02T15:24:52.0873841Z patching file fs/nfsd/export.c
2025-10-02T15:24:52.0876114Z patching file fs/nfsd/export.h
2025-10-02T15:24:52.0877116Z patching file fs/nfsd/filecache.c
2025-10-02T15:24:52.0882227Z patching file fs/nfsd/filecache.h
2025-10-02T15:24:52.0883077Z patching file fs/nfsd/flexfilelayout.c
2025-10-02T15:24:52.0883947Z patching file fs/nfsd/flexfilelayoutxdr.c
2025-10-02T15:24:52.0884796Z patching file fs/nfsd/lockd.c
2025-10-02T15:24:52.0885573Z patching file fs/nfsd/netns.h
2025-10-02T15:24:52.0886949Z patching file fs/nfsd/nfs2acl.c
2025-10-02T15:24:52.0889208Z patching file fs/nfsd/nfs3acl.c
2025-10-02T15:24:52.0890992Z patching file fs/nfsd/nfs3proc.c
2025-10-02T15:24:52.0894843Z patching file fs/nfsd/nfs3xdr.c
2025-10-02T15:24:52.0900138Z patching file fs/nfsd/nfs4acl.c
2025-10-02T15:24:52.0901948Z patching file fs/nfsd/nfs4callback.c
2025-10-02T15:24:52.0905026Z patching file fs/nfsd/nfs4idmap.c
2025-10-02T15:24:52.0906357Z patching file fs/nfsd/nfs4layouts.c
2025-10-02T15:24:52.0908694Z patching file fs/nfsd/nfs4proc.c
2025-10-02T15:24:52.0916660Z patching file fs/nfsd/nfs4recover.c
2025-10-02T15:24:52.0920769Z patching file fs/nfsd/nfs4state.c
2025-10-02T15:24:52.0934413Z patching file fs/nfsd/nfs4xdr.c
2025-10-02T15:24:52.0947410Z patching file fs/nfsd/nfscache.c
2025-10-02T15:24:52.0950324Z patching file fs/nfsd/nfsctl.c
2025-10-02T15:24:52.0953465Z patching file fs/nfsd/nfsd.h
2025-10-02T15:24:52.0955119Z patching file fs/nfsd/nfsfh.c
2025-10-02T15:24:52.0957672Z patching file fs/nfsd/nfsfh.h
2025-10-02T15:24:52.0959770Z patching file fs/nfsd/nfsproc.c
2025-10-02T15:24:52.0962988Z patching file fs/nfsd/nfssvc.c
2025-10-02T15:24:52.0966442Z patching file fs/nfsd/nfsxdr.c
2025-10-02T15:24:52.0970055Z patching file fs/nfsd/state.h
2025-10-02T15:24:52.0971989Z patching file fs/nfsd/stats.c
2025-10-02T15:24:52.0973129Z patching file fs/nfsd/stats.h
2025-10-02T15:24:52.0974188Z patching file fs/nfsd/trace.c
2025-10-02T15:24:52.0975171Z patching file fs/nfsd/trace.h
2025-10-02T15:24:52.0979976Z patching file fs/nfsd/vfs.c
2025-10-02T15:24:52.0985134Z patching file fs/nfsd/vfs.h
2025-10-02T15:24:52.0986284Z patching file fs/nfsd/xdr.h
2025-10-02T15:24:52.0987701Z patching file fs/nfsd/xdr3.h
2025-10-02T15:24:52.0989888Z patching file fs/nfsd/xdr4.h
2025-10-02T15:24:52.0992235Z patching file fs/nfsd/xdr4cb.h
2025-10-02T15:24:52.0993031Z patching file fs/nilfs2/alloc.c
2025-10-02T15:24:52.0994663Z patching file fs/nilfs2/alloc.h
2025-10-02T15:24:52.0995550Z patching file fs/nilfs2/bmap.c
2025-10-02T15:24:52.0996753Z patching file fs/nilfs2/btnode.c
2025-10-02T15:24:52.0998048Z patching file fs/nilfs2/btnode.h
2025-10-02T15:24:52.0999631Z patching file fs/nilfs2/btree.c
2025-10-02T15:24:52.1002749Z patching file fs/nilfs2/dat.c
2025-10-02T15:24:52.1004039Z patching file fs/nilfs2/dir.c
2025-10-02T15:24:52.1006438Z patching file fs/nilfs2/direct.c
2025-10-02T15:24:52.1007346Z patching file fs/nilfs2/file.c
2025-10-02T15:24:52.1008314Z patching file fs/nilfs2/gcinode.c
2025-10-02T15:24:52.1009405Z patching file fs/nilfs2/ifile.c
2025-10-02T15:24:52.1010779Z patching file fs/nilfs2/inode.c
2025-10-02T15:24:52.1014062Z patching file fs/nilfs2/ioctl.c
2025-10-02T15:24:52.1015554Z patching file fs/nilfs2/mdt.c
2025-10-02T15:24:52.1017184Z patching file fs/nilfs2/mdt.h
2025-10-02T15:24:52.1018141Z patching file fs/nilfs2/namei.c
2025-10-02T15:24:52.1020065Z patching file fs/nilfs2/nilfs.h
2025-10-02T15:24:52.1021563Z patching file fs/nilfs2/page.c
2025-10-02T15:24:52.1023098Z patching file fs/nilfs2/page.h
2025-10-02T15:24:52.1024124Z patching file fs/nilfs2/recovery.c
2025-10-02T15:24:52.1025800Z patching file fs/nilfs2/segbuf.c
2025-10-02T15:24:52.1027851Z patching file fs/nilfs2/segment.c
2025-10-02T15:24:52.1032323Z patching file fs/nilfs2/sufile.c
2025-10-02T15:24:52.1034270Z patching file fs/nilfs2/super.c
2025-10-02T15:24:52.1036665Z patching file fs/nilfs2/sysfs.c
2025-10-02T15:24:52.1040012Z patching file fs/nilfs2/sysfs.h
2025-10-02T15:24:52.1040839Z patching file fs/nilfs2/the_nilfs.c
2025-10-02T15:24:52.1043263Z patching file fs/nilfs2/the_nilfs.h
2025-10-02T15:24:52.1044334Z patching file fs/nls/nls_base.c
2025-10-02T15:24:52.1045652Z patching file fs/notify/dnotify/dnotify.c
2025-10-02T15:24:52.1047280Z patching file fs/notify/fanotify/fanotify.c
2025-10-02T15:24:52.1051392Z patching file fs/notify/fanotify/fanotify.h
2025-10-02T15:24:52.1053733Z patching file fs/notify/fanotify/fanotify_user.c
2025-10-02T15:24:52.1058607Z patching file fs/notify/fdinfo.c
2025-10-02T15:24:52.1059450Z patching file fs/notify/fsnotify.c
2025-10-02T15:24:52.1062556Z patching file fs/notify/fsnotify.h
2025-10-02T15:24:52.1063387Z patching file fs/notify/group.c
2025-10-02T15:24:52.1070582Z patching file fs/notify/inotify/inotify.h
2025-10-02T15:24:52.1072510Z patching file fs/notify/inotify/inotify_fsnotify.c
2025-10-02T15:24:52.1073486Z patching file fs/notify/inotify/inotify_user.c
2025-10-02T15:24:52.1074372Z patching file fs/notify/mark.c
2025-10-02T15:24:52.1075630Z patching file fs/notify/notification.c
2025-10-02T15:24:52.1076462Z patching file fs/ntfs/attrib.c
2025-10-02T15:24:52.1077243Z patching file fs/ntfs/inode.c
2025-10-02T15:24:52.1079120Z patching file fs/ntfs/super.c
2025-10-02T15:24:52.1084546Z patching file fs/ocfs2/alloc.c
2025-10-02T15:24:52.1100153Z patching file fs/ocfs2/aops.c
2025-10-02T15:24:52.1101841Z patching file fs/ocfs2/aops.h
2025-10-02T15:24:52.1102611Z patching file fs/ocfs2/buffer_head_io.c
2025-10-02T15:24:52.1103453Z patching file fs/ocfs2/cluster/heartbeat.c
2025-10-02T15:24:52.1104270Z patching file fs/ocfs2/dir.c
2025-10-02T15:24:52.1105215Z patching file fs/ocfs2/dlmfs/userdlm.c
2025-10-02T15:24:52.1106022Z patching file fs/ocfs2/dlmglue.c
2025-10-02T15:24:52.1107023Z patching file fs/ocfs2/extent_map.c
2025-10-02T15:24:52.1108050Z patching file fs/ocfs2/file.c
2025-10-02T15:24:52.1110291Z patching file fs/ocfs2/filecheck.c
2025-10-02T15:24:52.1121915Z patching file fs/ocfs2/journal.c
2025-10-02T15:24:52.1122547Z patching file fs/ocfs2/journal.h
2025-10-02T15:24:52.1123027Z patching file fs/ocfs2/move_extents.c
2025-10-02T15:24:52.1123497Z patching file fs/ocfs2/namei.c
2025-10-02T15:24:52.1123943Z patching file fs/ocfs2/ocfs2.h
2025-10-02T15:24:52.1125109Z patching file fs/ocfs2/ocfs2_trace.h
2025-10-02T15:24:52.1127067Z patching file fs/ocfs2/quota_global.c
2025-10-02T15:24:52.1150382Z patching file fs/ocfs2/quota_local.c
2025-10-02T15:24:52.1151219Z patching file fs/ocfs2/refcounttree.c
2025-10-02T15:24:52.1151755Z patching file fs/ocfs2/resize.c
2025-10-02T15:24:52.1152215Z patching file fs/ocfs2/slot_map.c
2025-10-02T15:24:52.1152671Z patching file fs/ocfs2/stackglue.c
2025-10-02T15:24:52.1153118Z patching file fs/ocfs2/suballoc.c
2025-10-02T15:24:52.1153555Z patching file fs/ocfs2/super.c
2025-10-02T15:24:52.1154001Z patching file fs/ocfs2/symlink.c
2025-10-02T15:24:52.1154429Z patching file fs/ocfs2/xattr.c
2025-10-02T15:24:52.1155849Z patching file fs/open.c
2025-10-02T15:24:52.1158048Z patching file fs/openpromfs/inode.c
2025-10-02T15:24:52.1159054Z patching file fs/orangefs/dcache.c
2025-10-02T15:24:52.1160253Z patching file fs/orangefs/inode.c
2025-10-02T15:24:52.1161969Z patching file fs/orangefs/orangefs-bufmap.c
2025-10-02T15:24:52.1163164Z patching file fs/orangefs/orangefs-debugfs.c
2025-10-02T15:24:52.1165036Z patching file fs/orangefs/orangefs-mod.c
2025-10-02T15:24:52.1165981Z patching file fs/orangefs/super.c
2025-10-02T15:24:52.1167670Z patching file fs/overlayfs/copy_up.c
2025-10-02T15:24:52.1169385Z patching file fs/overlayfs/dir.c
2025-10-02T15:24:52.1171570Z patching file fs/overlayfs/export.c
2025-10-02T15:24:52.1172933Z patching file fs/overlayfs/file.c
2025-10-02T15:24:52.1175655Z patching file fs/overlayfs/inode.c
2025-10-02T15:24:52.1177161Z patching file fs/overlayfs/namei.c
2025-10-02T15:24:52.1178905Z patching file fs/overlayfs/overlayfs.h
2025-10-02T15:24:52.1180338Z patching file fs/overlayfs/ovl_entry.h
2025-10-02T15:24:52.1181368Z patching file fs/overlayfs/readdir.c
2025-10-02T15:24:52.2479386Z patching file fs/overlayfs/super.c
2025-10-02T15:24:52.2491841Z patching file fs/overlayfs/util.c
2025-10-02T15:24:52.2492652Z patching file fs/pipe.c
2025-10-02T15:24:52.2493378Z patching file fs/pnode.c
2025-10-02T15:24:52.2494107Z patching file fs/pnode.h
2025-10-02T15:24:52.2494931Z patching file fs/proc/array.c
2025-10-02T15:24:52.2495686Z patching file fs/proc/base.c
2025-10-02T15:24:52.2496450Z patching file fs/proc/bootconfig.c
2025-10-02T15:24:52.2497226Z patching file fs/proc/fd.c
2025-10-02T15:24:52.2497970Z patching file fs/proc/generic.c
2025-10-02T15:24:52.2498735Z patching file fs/proc/inode.c
2025-10-02T15:24:52.2499671Z patching file fs/proc/internal.h
2025-10-02T15:24:52.2500430Z patching file fs/proc/kcore.c
2025-10-02T15:24:52.2501155Z patching file fs/proc/proc_net.c
2025-10-02T15:24:52.2501928Z patching file fs/proc/proc_sysctl.c
2025-10-02T15:24:52.2502800Z patching file fs/proc/self.c
2025-10-02T15:24:52.2503540Z patching file fs/proc/softirqs.c
2025-10-02T15:24:52.2504282Z patching file fs/proc/stat.c
2025-10-02T15:24:52.2505002Z patching file fs/proc/task_mmu.c
2025-10-02T15:24:52.2505745Z patching file fs/proc/task_nommu.c
2025-10-02T15:24:52.2506499Z patching file fs/proc/uptime.c
2025-10-02T15:24:52.2507239Z patching file fs/proc/vmcore.c
2025-10-02T15:24:52.2507974Z patching file fs/proc_namespace.c
2025-10-02T15:24:52.2508717Z patching file fs/pstore/Kconfig
2025-10-02T15:24:52.2509454Z patching file fs/pstore/inode.c
2025-10-02T15:24:52.2510338Z patching file fs/pstore/platform.c
2025-10-02T15:24:52.2511088Z patching file fs/pstore/ram.c
2025-10-02T15:24:52.2511812Z patching file fs/pstore/ram_core.c
2025-10-02T15:24:52.2512551Z patching file fs/pstore/zone.c
2025-10-02T15:24:52.2513273Z patching file fs/qnx4/dir.c
2025-10-02T15:24:52.2514222Z patching file fs/quota/dquot.c
2025-10-02T15:24:52.2514956Z patching file fs/quota/quota_tree.c
2025-10-02T15:24:52.2515712Z patching file fs/quota/quota_v2.c
2025-10-02T15:24:52.2516463Z patching file fs/ramfs/inode.c
2025-10-02T15:24:52.2517185Z patching file fs/read_write.c
2025-10-02T15:24:52.2517903Z patching file fs/readdir.c
2025-10-02T15:24:52.2518625Z patching file fs/reiserfs/journal.c
2025-10-02T15:24:52.2519373Z patching file fs/reiserfs/namei.c
2025-10-02T15:24:52.2520271Z patching file fs/reiserfs/stree.c
2025-10-02T15:24:52.2521050Z patching file fs/reiserfs/super.c
2025-10-02T15:24:52.2521801Z patching file fs/reiserfs/xattr.h
2025-10-02T15:24:52.2522602Z patching file fs/reiserfs/xattr_security.c
2025-10-02T15:24:52.2523522Z patching file fs/remap_range.c
2025-10-02T15:24:52.2524280Z patching file fs/select.c
2025-10-02T15:24:52.2524991Z patching file fs/seq_file.c
2025-10-02T15:24:52.2525797Z patching file fs/signalfd.c
2025-10-02T15:24:52.2526628Z patching file fs/splice.c
2025-10-02T15:24:52.2527490Z patching file fs/squashfs/block.c
2025-10-02T15:24:52.2528249Z patching file fs/squashfs/export.c
2025-10-02T15:24:52.2529003Z patching file fs/squashfs/file.c
2025-10-02T15:24:52.2529933Z patching file fs/squashfs/id.c
2025-10-02T15:24:52.2530670Z patching file fs/squashfs/inode.c
2025-10-02T15:24:52.2531433Z patching file fs/squashfs/squashfs_fs.h
2025-10-02T15:24:52.2532230Z patching file fs/squashfs/squashfs_fs_sb.h
2025-10-02T15:24:52.2533021Z patching file fs/squashfs/super.c
2025-10-02T15:24:52.2533783Z patching file fs/squashfs/xattr.h
2025-10-02T15:24:52.2534548Z patching file fs/squashfs/xattr_id.c
2025-10-02T15:24:52.2535303Z patching file fs/stat.c
2025-10-02T15:24:52.2536004Z patching file fs/statfs.c
2025-10-02T15:24:52.2536795Z patching file fs/super.c
2025-10-02T15:24:52.2537618Z patching file fs/sync.c
2025-10-02T15:24:52.2538305Z patching file fs/sysfs/file.c
2025-10-02T15:24:52.2539030Z patching file fs/sysv/itree.c
2025-10-02T15:24:52.2539947Z patching file fs/tracefs/inode.c
2025-10-02T15:24:52.2540703Z patching file fs/ubifs/auth.c
2025-10-02T15:24:52.2541539Z patching file fs/ubifs/budget.c
2025-10-02T15:24:52.2542276Z patching file fs/ubifs/debug.c
2025-10-02T15:24:52.2543277Z patching file fs/ubifs/dir.c
2025-10-02T15:24:52.2544017Z patching file fs/ubifs/file.c
2025-10-02T15:24:52.2544734Z patching file fs/ubifs/gc.c
2025-10-02T15:24:52.2545446Z patching file fs/ubifs/io.c
2025-10-02T15:24:52.2546159Z patching file fs/ubifs/ioctl.c
2025-10-02T15:24:52.2546891Z patching file fs/ubifs/journal.c
2025-10-02T15:24:52.2547621Z patching file fs/ubifs/replay.c
2025-10-02T15:24:52.2548346Z patching file fs/ubifs/super.c
2025-10-02T15:24:52.2549060Z patching file fs/ubifs/tnc.c
2025-10-02T15:24:52.2550070Z patching file fs/ubifs/tnc_commit.c
2025-10-02T15:24:52.2551027Z patching file fs/ubifs/ubifs.h
2025-10-02T15:24:52.2551812Z patching file fs/ubifs/xattr.c
2025-10-02T15:24:52.2552648Z patching file fs/udf/balloc.c
2025-10-02T15:24:52.2553364Z patching file fs/udf/dir.c
2025-10-02T15:24:52.2554080Z patching file fs/udf/file.c
2025-10-02T15:24:52.2554790Z patching file fs/udf/ialloc.c
2025-10-02T15:24:52.2555507Z patching file fs/udf/inode.c
2025-10-02T15:24:52.2556228Z patching file fs/udf/misc.c
2025-10-02T15:24:52.2556934Z patching file fs/udf/namei.c
2025-10-02T15:24:52.2557642Z patching file fs/udf/super.c
2025-10-02T15:24:52.2558396Z patching file fs/udf/truncate.c
2025-10-02T15:24:52.2559114Z patching file fs/udf/udf_i.h
2025-10-02T15:24:52.2559967Z patching file fs/udf/udf_sb.h
2025-10-02T15:24:52.2560683Z patching file fs/udf/udftime.c
2025-10-02T15:24:52.2561410Z patching file fs/udf/unicode.c
2025-10-02T15:24:52.2562130Z patching file fs/userfaultfd.c
2025-10-02T15:24:52.2562866Z patching file fs/vboxsf/dir.c
2025-10-02T15:24:52.2563584Z patching file fs/vboxsf/file.c
2025-10-02T15:24:52.2564308Z patching file fs/vboxsf/super.c
2025-10-02T15:24:52.2565035Z patching file fs/vboxsf/vfsmod.h
2025-10-02T15:24:52.2565766Z patching file fs/verity/enable.c
2025-10-02T15:24:52.2566690Z patching file fs/verity/open.c
2025-10-02T15:24:52.2567430Z patching file fs/verity/signature.c
2025-10-02T15:24:52.2568179Z patching file fs/verity/verify.c
2025-10-02T15:24:52.2568898Z patching file fs/xattr.c
2025-10-02T15:24:52.2569852Z patching file fs/xfs/libxfs/xfs_attr.c
2025-10-02T15:24:52.2570659Z patching file fs/xfs/libxfs/xfs_attr_remote.c
2025-10-02T15:24:52.2571485Z patching file fs/xfs/libxfs/xfs_bmap.c
2025-10-02T15:24:52.2572264Z patching file fs/xfs/libxfs/xfs_btree.c
2025-10-02T15:24:52.2573558Z patching file fs/xfs/libxfs/xfs_da_btree.c
2025-10-02T15:24:52.2574423Z patching file fs/xfs/libxfs/xfs_dir2.h
2025-10-02T15:24:52.2575218Z patching file fs/xfs/libxfs/xfs_dir2_sf.c
2025-10-02T15:24:52.2576039Z patching file fs/xfs/libxfs/xfs_inode_buf.c
2025-10-02T15:24:52.2576869Z patching file fs/xfs/libxfs/xfs_log_format.h
2025-10-02T15:24:52.2577696Z patching file fs/xfs/libxfs/xfs_sb.c
2025-10-02T15:24:52.2578483Z patching file fs/xfs/libxfs/xfs_types.h
2025-10-02T15:24:52.2579399Z patching file fs/xfs/scrub/bitmap.c
2025-10-02T15:24:52.2581046Z patching file fs/xfs/scrub/trace.h
2025-10-02T15:24:52.2581826Z patching file fs/xfs/xfs_aops.c
2025-10-02T15:24:52.2582591Z patching file fs/xfs/xfs_bmap_item.c
2025-10-02T15:24:52.2583370Z patching file fs/xfs/xfs_bmap_util.c
2025-10-02T15:24:52.2584137Z patching file fs/xfs/xfs_buf.c
2025-10-02T15:24:52.2584892Z patching file fs/xfs/xfs_buf_item.c
2025-10-02T15:24:52.2585687Z patching file fs/xfs/xfs_buf_item_recover.c
2025-10-02T15:24:52.2586603Z patching file fs/xfs/xfs_dquot.c
2025-10-02T15:24:52.2587373Z patching file fs/xfs/xfs_dquot_item.c
2025-10-02T15:24:52.2588153Z patching file fs/xfs/xfs_error.c
2025-10-02T15:24:52.2588919Z patching file fs/xfs/xfs_extent_busy.c
2025-10-02T15:24:52.2589861Z patching file fs/xfs/xfs_extent_busy.h
2025-10-02T15:24:52.2590665Z patching file fs/xfs/xfs_extfree_item.c
2025-10-02T15:24:52.2591178Z patching file fs/xfs/xfs_file.c
2025-10-02T15:24:52.2591769Z patching file fs/xfs/xfs_filestream.c
2025-10-02T15:24:52.2592247Z patching file fs/xfs/xfs_fsops.c
2025-10-02T15:24:52.2592797Z patching file fs/xfs/xfs_icache.c
2025-10-02T15:24:52.2593246Z patching file fs/xfs/xfs_inode.c
2025-10-02T15:24:52.2593953Z patching file fs/xfs/xfs_inode_item.c
2025-10-02T15:24:52.2594504Z patching file fs/xfs/xfs_inode_item.h
2025-10-02T15:24:52.2595013Z patching file fs/xfs/xfs_inode_item_recover.c
2025-10-02T15:24:52.2596123Z patching file fs/xfs/xfs_ioctl.c
2025-10-02T15:24:52.2596890Z patching file fs/xfs/xfs_ioctl.h
2025-10-02T15:24:52.2597642Z patching file fs/xfs/xfs_iomap.c
2025-10-02T15:24:52.2598395Z patching file fs/xfs/xfs_iops.c
2025-10-02T15:24:52.2599004Z patching file fs/xfs/xfs_iops.h
2025-10-02T15:24:52.2599993Z patching file fs/xfs/xfs_iwalk.c
2025-10-02T15:24:52.2600781Z patching file fs/xfs/xfs_log.c
2025-10-02T15:24:52.2601760Z patching file fs/xfs/xfs_log.h
2025-10-02T15:24:52.2602665Z patching file fs/xfs/xfs_log_cil.c
2025-10-02T15:24:52.2603664Z patching file fs/xfs/xfs_log_priv.h
2025-10-02T15:24:52.2604552Z patching file fs/xfs/xfs_log_recover.c
2025-10-02T15:24:52.2605437Z patching file fs/xfs/xfs_mount.c
2025-10-02T15:24:52.2606204Z patching file fs/xfs/xfs_mount.h
2025-10-02T15:24:52.2606977Z patching file fs/xfs/xfs_pnfs.c
2025-10-02T15:24:52.2607950Z patching file fs/xfs/xfs_qm.c
2025-10-02T15:24:52.2608729Z patching file fs/xfs/xfs_refcount_item.c
2025-10-02T15:24:52.2609780Z patching file fs/xfs/xfs_reflink.c
2025-10-02T15:24:52.2610433Z patching file fs/xfs/xfs_rmap_item.c
2025-10-02T15:24:52.2610882Z patching file fs/xfs/xfs_super.c
2025-10-02T15:24:52.2611319Z patching file fs/xfs/xfs_symlink.c
2025-10-02T15:24:52.2611772Z patching file fs/xfs/xfs_trans.c
2025-10-02T15:24:52.2612551Z patching file fs/xfs/xfs_trans.h
2025-10-02T15:24:52.2613154Z patching file fs/xfs/xfs_trans_dquot.c
2025-10-02T15:24:52.2613918Z patching file fs/zonefs/Kconfig
2025-10-02T15:24:52.2614530Z patching file fs/zonefs/super.c
2025-10-02T15:24:52.2615086Z patching file include/acpi/acexcep.h
2025-10-02T15:24:52.2616033Z patching file include/acpi/acpi_bus.h
2025-10-02T15:24:52.2617078Z patching file include/acpi/actypes.h
2025-10-02T15:24:52.2617887Z patching file include/acpi/apei.h
2025-10-02T15:24:52.2618689Z patching file include/acpi/cppc_acpi.h
2025-10-02T15:24:52.2619643Z patching file include/acpi/ghes.h
2025-10-02T15:24:52.2620462Z patching file include/asm-generic/Kbuild
2025-10-02T15:24:52.2621294Z patching file include/asm-generic/barrier.h
2025-10-02T15:24:52.2622168Z patching file include/asm-generic/bitops/atomic.h
2025-10-02T15:24:52.2623057Z patching file include/asm-generic/bugs.h
2025-10-02T15:24:52.2623858Z patching file include/asm-generic/io.h
2025-10-02T15:24:52.2624709Z patching file include/asm-generic/pgtable-nop4d.h
2025-10-02T15:24:52.2625636Z patching file include/asm-generic/pgtable-nopmd.h
2025-10-02T15:24:52.2626490Z patching file include/asm-generic/pgtable-nopud.h
2025-10-02T15:24:52.2627392Z patching file include/asm-generic/preempt.h
2025-10-02T15:24:52.2628092Z patching file include/asm-generic/qspinlock.h
2025-10-02T15:24:52.2628997Z patching file include/asm-generic/sections.h
2025-10-02T15:24:52.2629780Z patching file include/asm-generic/tlb.h
2025-10-02T15:24:52.2630554Z patching file include/asm-generic/vmlinux.lds.h
2025-10-02T15:24:52.2631308Z patching file include/asm-generic/word-at-a-time.h
2025-10-02T15:24:52.2632591Z patching file include/clocksource/hyperv_timer.h
2025-10-02T15:24:52.2633513Z patching file include/clocksource/timer-ti-dm.h
2025-10-02T15:24:52.2634389Z patching file include/crypto/acompress.h
2025-10-02T15:24:52.2635197Z patching file include/crypto/aead.h
2025-10-02T15:24:52.2635995Z patching file include/crypto/akcipher.h
2025-10-02T15:24:52.2636804Z patching file include/crypto/algapi.h
2025-10-02T15:24:52.2637610Z patching file include/crypto/blake2s.h
2025-10-02T15:24:52.2638416Z patching file include/crypto/chacha.h
2025-10-02T15:24:52.2639213Z patching file include/crypto/drbg.h
2025-10-02T15:24:52.2640142Z patching file include/crypto/hash.h
2025-10-02T15:24:52.2640940Z patching file include/crypto/if_alg.h
2025-10-02T15:24:52.2641777Z patching file include/crypto/internal/blake2s.h
2025-10-02T15:24:52.2642647Z patching file include/crypto/internal/hash.h
2025-10-02T15:24:52.2643480Z patching file include/crypto/internal/poly1305.h
2025-10-02T15:24:52.2644001Z patching file include/crypto/kpp.h
2025-10-02T15:24:52.2644754Z patching file include/crypto/poly1305.h
2025-10-02T15:24:52.2645547Z patching file include/crypto/public_key.h
2025-10-02T15:24:52.2646353Z patching file include/crypto/rng.h
2025-10-02T15:24:52.2647103Z patching file include/crypto/skcipher.h
2025-10-02T15:24:52.2647832Z patching file include/drm/drm_atomic.h
2025-10-02T15:24:52.2648621Z patching file include/drm/drm_auth.h
2025-10-02T15:24:52.2649250Z patching file include/drm/drm_bridge.h
2025-10-02T15:24:52.2650223Z patching file include/drm/drm_color_mgmt.h
2025-10-02T15:24:52.2650707Z patching file include/drm/drm_connector.h
2025-10-02T15:24:52.2651393Z patching file include/drm/drm_dp_helper.h
2025-10-02T15:24:52.2652135Z patching file include/drm/drm_dp_mst_helper.h
2025-10-02T15:24:52.2652627Z patching file include/drm/drm_edid.h
2025-10-02T15:24:52.2653242Z patching file include/drm/drm_file.h
2025-10-02T15:24:52.2654021Z patching file include/drm/drm_fixed.h
2025-10-02T15:24:52.2654804Z patching file include/drm/drm_ioctl.h
2025-10-02T15:24:52.2655531Z patching file include/drm/drm_mipi_dsi.h
2025-10-02T15:24:52.2656331Z patching file include/drm/drm_print.h
2025-10-02T15:24:52.2657142Z patching file include/drm/drm_probe_helper.h
2025-10-02T15:24:52.2657831Z patching file include/drm/spsc_queue.h
2025-10-02T15:24:52.2658605Z patching file include/drm/ttm/ttm_bo_api.h
2025-10-02T15:24:52.2659126Z patching file include/dt-bindings/clock/imx8mp-clock.h
2025-10-02T15:24:52.2660027Z patching file include/dt-bindings/clock/imx8mq-clock.h
2025-10-02T15:24:52.2661042Z patching file include/dt-bindings/clock/qcom,videocc-sm8150.h
2025-10-02T15:24:52.2661948Z patching file include/dt-bindings/iio/addac/adi,ad74413r.h
2025-10-02T15:24:52.2662825Z patching file include/dt-bindings/sound/apq8016-lpass.h
2025-10-02T15:24:52.2671330Z patching file include/dt-bindings/sound/qcom,lpass.h
2025-10-02T15:24:52.2672381Z patching file include/dt-bindings/sound/sc7180-lpass.h
2025-10-02T15:24:52.2673325Z patching file include/keys/system_keyring.h
2025-10-02T15:24:52.2674183Z patching file include/keys/trusted-type.h
2025-10-02T15:24:52.2675012Z patching file include/kvm/arm_vgic.h
2025-10-02T15:24:52.2675674Z patching file include/linux/acpi.h
2025-10-02T15:24:52.2676431Z patching file include/linux/acpi_iort.h
2025-10-02T15:24:52.2677131Z patching file include/linux/amba/bus.h
2025-10-02T15:24:52.2677830Z patching file include/linux/arm-smccc.h
2025-10-02T15:24:52.2678553Z patching file include/linux/arm_sdei.h
2025-10-02T15:24:52.2679362Z patching file include/linux/async.h
2025-10-02T15:24:52.2680330Z patching file include/linux/ata.h
2025-10-02T15:24:52.2681112Z patching file include/linux/atmdev.h
2025-10-02T15:24:52.2681735Z patching file include/linux/avf/virtchnl.h
2025-10-02T15:24:52.2682248Z patching file include/linux/backing-dev.h
2025-10-02T15:24:52.2682739Z patching file include/linux/binfmts.h
2025-10-02T15:24:52.2683212Z patching file include/linux/bio.h
2025-10-02T15:24:52.2683789Z patching file include/linux/bitfield.h
2025-10-02T15:24:52.2684272Z patching file include/linux/bitmap.h
2025-10-02T15:24:52.2684826Z patching file include/linux/bits.h
2025-10-02T15:24:52.2685298Z patching file include/linux/blk-cgroup.h
2025-10-02T15:24:52.2685792Z patching file include/linux/blk-crypto.h
2025-10-02T15:24:52.2686382Z patching file include/linux/blk-mq.h
2025-10-02T15:24:52.2686922Z patching file include/linux/blk-pm.h
2025-10-02T15:24:52.2687389Z patching file include/linux/blk_types.h
2025-10-02T15:24:52.2687859Z patching file include/linux/blkdev.h
2025-10-02T15:24:52.2688324Z patching file include/linux/blktrace_api.h
2025-10-02T15:24:52.2688905Z patching file include/linux/bootconfig.h
2025-10-02T15:24:52.2689400Z patching file include/linux/bpf-cgroup.h
2025-10-02T15:24:52.2690156Z patching file include/linux/bpf.h
2025-10-02T15:24:52.2690621Z patching file include/linux/bpf_types.h
2025-10-02T15:24:52.2691277Z patching file include/linux/bpf_verifier.h
2025-10-02T15:24:52.2691768Z patching file include/linux/brcmphy.h
2025-10-02T15:24:52.2692230Z patching file include/linux/btf_ids.h
2025-10-02T15:24:52.2692686Z patching file include/linux/buffer_head.h
2025-10-02T15:24:52.2693291Z patching file include/linux/cacheinfo.h
2025-10-02T15:24:52.2693771Z patching file include/linux/can/can-ml.h
2025-10-02T15:24:52.2694361Z patching file include/linux/can/platform/sja1000.h
2025-10-02T15:24:52.2694907Z patching file include/linux/can/skb.h
2025-10-02T15:24:52.2695375Z patching file include/linux/cc_platform.h
2025-10-02T15:24:52.2695961Z patching file include/linux/ceph/ceph_fs.h
2025-10-02T15:24:52.2696445Z patching file include/linux/ceph/msgr.h
2025-10-02T15:24:52.2697014Z patching file include/linux/ceph/osd_client.h
2025-10-02T15:24:52.2697525Z patching file include/linux/cgroup-defs.h
2025-10-02T15:24:52.2697997Z patching file include/linux/cgroup.h
2025-10-02T15:24:52.2698564Z patching file include/linux/clk-provider.h
2025-10-02T15:24:52.2699053Z patching file include/linux/clk.h
2025-10-02T15:24:52.2699702Z patching file include/linux/clocksource.h
2025-10-02T15:24:52.2700185Z patching file include/linux/compat.h
2025-10-02T15:24:52.2700673Z patching file include/linux/compiler-clang.h
2025-10-02T15:24:52.2701172Z patching file include/linux/compiler-gcc.h
2025-10-02T15:24:52.2701652Z patching file include/linux/compiler.h
2025-10-02T15:24:52.2702279Z patching file include/linux/compiler_attributes.h
2025-10-02T15:24:52.2702826Z patching file include/linux/compiler_types.h
2025-10-02T15:24:52.2703421Z patching file include/linux/console.h
2025-10-02T15:24:52.2703911Z patching file include/linux/console_struct.h
2025-10-02T15:24:52.2704398Z patching file include/linux/const.h
2025-10-02T15:24:52.2705147Z patching file include/linux/context_tracking.h
2025-10-02T15:24:52.2705651Z patching file include/linux/coredump.h
2025-10-02T15:24:52.2706222Z patching file include/linux/cpu.h
2025-10-02T15:24:52.2706697Z patching file include/linux/cpuhotplug.h
2025-10-02T15:24:52.2707247Z patching file include/linux/cpumask.h
2025-10-02T15:24:52.2707843Z patching file include/linux/cpuset.h
2025-10-02T15:24:52.2708352Z patching file include/linux/cred.h
2025-10-02T15:24:52.2708805Z patching file include/linux/crypto.h
2025-10-02T15:24:52.2709378Z patching file include/linux/debug_locks.h
2025-10-02T15:24:52.2710096Z patching file include/linux/debugfs.h
2025-10-02T15:24:52.2710558Z patching file include/linux/devfreq.h
2025-10-02T15:24:52.2711027Z patching file include/linux/device-mapper.h
2025-10-02T15:24:52.2711628Z patching file include/linux/device.h
2025-10-02T15:24:52.2712096Z patching file include/linux/device/driver.h
2025-10-02T15:24:52.2712677Z patching file include/linux/dim.h
2025-10-02T15:24:52.2713154Z patching file include/linux/dm-bufio.h
2025-10-02T15:24:52.2713642Z patching file include/linux/dma-map-ops.h
2025-10-02T15:24:52.2714230Z patching file include/linux/dma-mapping.h
2025-10-02T15:24:52.2714710Z patching file include/linux/dmaengine.h
2025-10-02T15:24:52.2715229Z patching file include/linux/dnotify.h
2025-10-02T15:24:52.2715762Z patching file include/linux/dynamic_debug.h
2025-10-02T15:24:52.2716248Z patching file include/linux/eeprom_93cx6.h
2025-10-02T15:24:52.2716731Z patching file include/linux/eeprom_93xx46.h
2025-10-02T15:24:52.2717233Z patching file include/linux/efi.h
2025-10-02T15:24:52.2717765Z patching file include/linux/elevator.h
2025-10-02T15:24:52.2718229Z patching file include/linux/elfcore.h
2025-10-02T15:24:52.2718694Z patching file include/linux/energy_model.h
2025-10-02T15:24:52.2719265Z patching file include/linux/entry-common.h
2025-10-02T15:24:52.2719977Z patching file include/linux/entry-kvm.h
2025-10-02T15:24:52.2720470Z patching file include/linux/errno.h
2025-10-02T15:24:52.2721079Z patching file include/linux/etherdevice.h
2025-10-02T15:24:52.2721633Z patching file include/linux/ethtool.h
2025-10-02T15:24:52.2722171Z patching file include/linux/ethtool_netlink.h
2025-10-02T15:24:52.2722807Z patching file include/linux/eventfd.h
2025-10-02T15:24:52.2723433Z patching file include/linux/eventpoll.h
2025-10-02T15:24:52.2723918Z patching file include/linux/exportfs.h
2025-10-02T15:24:52.2724381Z patching file include/linux/extcon.h
2025-10-02T15:24:52.2724838Z patching file include/linux/f2fs_fs.h
2025-10-02T15:24:52.2725297Z patching file include/linux/fanotify.h
2025-10-02T15:24:52.2725914Z patching file include/linux/fbcon.h
2025-10-02T15:24:52.2726366Z patching file include/linux/fcntl.h
2025-10-02T15:24:52.2726820Z patching file include/linux/fdtable.h
2025-10-02T15:24:52.2727415Z patching file include/linux/filter.h
2025-10-02T15:24:52.2727953Z patching file include/linux/firmware/intel/stratix10-svc-client.h
2025-10-02T15:24:52.2728554Z patching file include/linux/firmware/xlnx-zynqmp.h
2025-10-02T15:24:52.2729235Z patching file include/linux/font.h
2025-10-02T15:24:52.2729926Z patching file include/linux/fpga/fpga-region.h
2025-10-02T15:24:52.2730438Z patching file include/linux/fs.h
2025-10-02T15:24:52.2731007Z patching file include/linux/fs_context.h
2025-10-02T15:24:52.2731533Z patching file include/linux/fscrypt.h
2025-10-02T15:24:52.2732131Z patching file include/linux/fsl/enetc_mdio.h
2025-10-02T15:24:52.2732624Z patching file include/linux/fsnotify.h
2025-10-02T15:24:52.2733249Z patching file include/linux/fsnotify_backend.h
2025-10-02T15:24:52.2733747Z patching file include/linux/ftrace.h
2025-10-02T15:24:52.2733985Z patching file include/linux/genhd.h
2025-10-02T15:24:52.2734269Z patching file include/linux/gfp.h
2025-10-02T15:24:52.2734484Z patching file include/linux/gpio/consumer.h
2025-10-02T15:24:52.2734703Z patching file include/linux/gpio/driver.h
2025-10-02T15:24:52.2734894Z patching file include/linux/hid.h
2025-10-02T15:24:52.2735089Z patching file include/linux/highmem.h
2025-10-02T15:24:52.2735612Z patching file include/linux/host1x.h
2025-10-02T15:24:52.2735833Z patching file include/linux/hrtimer.h
2025-10-02T15:24:52.2736033Z patching file include/linux/huge_mm.h
2025-10-02T15:24:52.2736228Z patching file include/linux/hugetlb.h
2025-10-02T15:24:52.2736445Z patching file include/linux/hugetlb_cgroup.h
2025-10-02T15:24:52.2736652Z patching file include/linux/hw_random.h
2025-10-02T15:24:52.2736869Z patching file include/linux/hwspinlock.h
2025-10-02T15:24:52.2737189Z patching file include/linux/hyperv.h
2025-10-02T15:24:52.2737387Z patching file include/linux/i2c.h
2025-10-02T15:24:52.2737588Z patching file include/linux/i3c/master.h
2025-10-02T15:24:52.2737780Z patching file include/linux/i8253.h
2025-10-02T15:24:52.2738085Z patching file include/linux/icmpv6.h
2025-10-02T15:24:52.2738281Z patching file include/linux/idr.h
2025-10-02T15:24:52.2738474Z patching file include/linux/if_arp.h
2025-10-02T15:24:52.2738737Z patching file include/linux/if_macvlan.h
2025-10-02T15:24:52.2738996Z patching file include/linux/if_team.h
2025-10-02T15:24:52.2739201Z patching file include/linux/if_vlan.h
2025-10-02T15:24:52.2739396Z patching file include/linux/igmp.h
2025-10-02T15:24:52.2739851Z patching file include/linux/iio/adc/ad_sigma_delta.h
2025-10-02T15:24:52.2740088Z patching file include/linux/iio/adc/adi-axi-adc.h
2025-10-02T15:24:52.2740352Z patching file include/linux/iio/common/cros_ec_sensors_core.h
2025-10-02T15:24:52.2740971Z patching file include/linux/iio/common/st_sensors.h
2025-10-02T15:24:52.2742429Z patching file include/linux/iio/imu/adis.h
2025-10-02T15:24:52.2744148Z patching file include/linux/ima.h
2025-10-02T15:24:52.2745165Z patching file include/linux/indirect_call_wrapper.h
2025-10-02T15:24:52.2746123Z patching file include/linux/inetdevice.h
2025-10-02T15:24:52.2747822Z patching file include/linux/intel-iommu.h
2025-10-02T15:24:52.2749759Z patching file include/linux/interrupt.h
2025-10-02T15:24:52.2751748Z patching file include/linux/io_uring.h
2025-10-02T15:24:52.2752894Z patching file include/linux/iommu.h
2025-10-02T15:24:52.2754937Z patching file include/linux/iopoll.h
2025-10-02T15:24:52.2755920Z patching file include/linux/ioport.h
2025-10-02T15:24:52.2757254Z patching file include/linux/iova.h
2025-10-02T15:24:52.2758167Z patching file include/linux/ipc_namespace.h
2025-10-02T15:24:52.2759290Z patching file include/linux/ipv6.h
2025-10-02T15:24:52.2761244Z patching file include/linux/irq.h
2025-10-02T15:24:52.2763280Z patching file include/linux/irqchip/arm-gic-v4.h
2025-10-02T15:24:52.2764221Z patching file include/linux/irqdesc.h
2025-10-02T15:24:52.2765437Z patching file include/linux/irqdomain.h
2025-10-02T15:24:52.2767122Z patching file include/linux/irqflags.h
2025-10-02T15:24:52.2769074Z patching file include/linux/iversion.h
2025-10-02T15:24:52.2770878Z patching file include/linux/jbd2.h
2025-10-02T15:24:52.2773002Z patching file include/linux/jiffies.h
2025-10-02T15:24:52.2774129Z patching file include/linux/jump_label.h
2025-10-02T15:24:52.2775329Z patching file include/linux/kallsyms.h
2025-10-02T15:24:52.2776576Z patching file include/linux/kasan.h
2025-10-02T15:24:52.2777596Z patching file include/linux/kcov.h
2025-10-02T15:24:52.2778537Z patching file include/linux/kd.h
2025-10-02T15:24:52.2779820Z patching file include/linux/kdev_t.h
2025-10-02T15:24:52.2781484Z patching file include/linux/kernel.h
2025-10-02T15:24:52.2783596Z patching file include/linux/kernel_stat.h
2025-10-02T15:24:52.2784430Z patching file include/linux/kexec.h
2025-10-02T15:24:52.2786183Z patching file include/linux/key-type.h
2025-10-02T15:24:52.2787078Z patching file include/linux/key.h
2025-10-02T15:24:52.2788762Z patching file include/linux/kfifo.h
2025-10-02T15:24:52.2790640Z patching file include/linux/kgdb.h
2025-10-02T15:24:52.2791694Z patching file include/linux/khugepaged.h
2025-10-02T15:24:52.2792728Z patching file include/linux/kprobes.h
2025-10-02T15:24:52.2794308Z patching file include/linux/kstrtox.h
2025-10-02T15:24:52.2796314Z patching file include/linux/kthread.h
2025-10-02T15:24:52.2797497Z patching file include/linux/kvm_host.h
2025-10-02T15:24:52.2800092Z patching file include/linux/leds.h
2025-10-02T15:24:52.2802095Z patching file include/linux/libata.h
2025-10-02T15:24:52.2804426Z patching file include/linux/linkage.h
2025-10-02T15:24:52.2805423Z patching file include/linux/list_sort.h
2025-10-02T15:24:52.2806464Z patching file include/linux/local_lock_internal.h
2025-10-02T15:24:52.2807422Z patching file include/linux/lockd/bind.h
2025-10-02T15:24:52.2808278Z patching file include/linux/lockd/lockd.h
2025-10-02T15:24:52.2809371Z patching file include/linux/lockd/xdr.h
2025-10-02T15:24:52.2810491Z patching file include/linux/lockd/xdr4.h
2025-10-02T15:24:52.2811853Z patching file include/linux/lockdep.h
2025-10-02T15:24:52.2813813Z patching file include/linux/lockdep_types.h
2025-10-02T15:24:52.2814627Z patching file include/linux/lsm_hook_defs.h
2025-10-02T15:24:52.2816716Z patching file include/linux/lsm_hooks.h
2025-10-02T15:24:52.2819025Z patching file include/linux/mailbox/zynqmp-ipi-message.h
2025-10-02T15:24:52.2819888Z patching file include/linux/mailbox_controller.h
2025-10-02T15:24:52.2821118Z patching file include/linux/marvell_phy.h
2025-10-02T15:24:52.2821976Z patching file include/linux/mbcache.h
2025-10-02T15:24:52.2823107Z patching file include/linux/mc146818rtc.h
2025-10-02T15:24:52.2824075Z patching file include/linux/mcb.h
2025-10-02T15:24:52.2825132Z patching file include/linux/mdio.h
2025-10-02T15:24:52.2826749Z patching file include/linux/memblock.h
2025-10-02T15:24:52.2828547Z patching file include/linux/memcontrol.h
2025-10-02T15:24:52.2830707Z patching file include/linux/memfd.h
2025-10-02T15:24:52.2831494Z patching file include/linux/memory.h
2025-10-02T15:24:52.2832651Z patching file include/linux/memory_hotplug.h
2025-10-02T15:24:52.2833740Z patching file include/linux/memregion.h
2025-10-02T15:24:52.2834642Z patching file include/linux/memremap.h
2025-10-02T15:24:52.2835716Z patching file include/linux/mfd/abx500/ux500_chargalg.h
2025-10-02T15:24:52.2836608Z patching file include/linux/mfd/core.h
2025-10-02T15:24:52.2837797Z patching file include/linux/mfd/da9063/registers.h
2025-10-02T15:24:52.2840115Z patching file include/linux/mfd/intel-m10-bmc.h
2025-10-02T15:24:52.2840556Z patching file include/linux/mfd/rohm-bd70528.h
2025-10-02T15:24:52.2841950Z patching file include/linux/mfd/rohm-bd71828.h
2025-10-02T15:24:52.2842897Z patching file include/linux/mfd/rohm-generic.h
2025-10-02T15:24:52.2843888Z patching file include/linux/mfd/rt5033-private.h
2025-10-02T15:24:52.2844898Z patching file include/linux/mfd/t7l66xb.h
2025-10-02T15:24:52.2845991Z patching file include/linux/mhi.h
2025-10-02T15:24:52.2847766Z patching file include/linux/minmax.h
2025-10-02T15:24:52.2848917Z patching file include/linux/mlx4/device.h
2025-10-02T15:24:52.2851343Z patching file include/linux/mlx5/device.h
2025-10-02T15:24:52.2853069Z patching file include/linux/mlx5/driver.h
2025-10-02T15:24:52.2855174Z patching file include/linux/mlx5/fs.h
2025-10-02T15:24:52.2858198Z patching file include/linux/mlx5/mlx5_ifc.h
2025-10-02T15:24:52.2863447Z patching file include/linux/mlx5/mpfs.h
2025-10-02T15:24:52.2864223Z patching file include/linux/mlx5/qp.h
2025-10-02T15:24:52.2865324Z patching file include/linux/mlx5/transobj.h
2025-10-02T15:24:52.2867333Z patching file include/linux/mm.h
2025-10-02T15:24:52.2870871Z patching file include/linux/mm_types.h
2025-10-02T15:24:52.2872594Z patching file include/linux/mman.h
2025-10-02T15:24:52.2873435Z patching file include/linux/mmc/card.h
2025-10-02T15:24:52.2874496Z patching file include/linux/mmc/host.h
2025-10-02T15:24:52.2876131Z patching file include/linux/mmc/mmc.h
2025-10-02T15:24:52.2877057Z patching file include/linux/mmc/slot-gpio.h
2025-10-02T15:24:52.2877951Z patching file include/linux/mmdebug.h
2025-10-02T15:24:52.2879160Z patching file include/linux/mmu_notifier.h
2025-10-02T15:24:52.2881384Z patching file include/linux/mmzone.h
2025-10-02T15:24:52.2883933Z patching file include/linux/mod_devicetable.h
2025-10-02T15:24:52.2885244Z patching file include/linux/module.h
2025-10-02T15:24:52.2887289Z patching file include/linux/moduleloader.h
2025-10-02T15:24:52.2888184Z patching file include/linux/moduleparam.h
2025-10-02T15:24:52.2889931Z patching file include/linux/mroute.h
2025-10-02T15:24:52.2890876Z patching file include/linux/msi.h
2025-10-02T15:24:52.2892508Z patching file include/linux/mtd/cfi.h
2025-10-02T15:24:52.2893396Z patching file include/linux/mtd/mtd.h
2025-10-02T15:24:52.2895238Z patching file include/linux/mtd/rawnand.h
2025-10-02T15:24:52.2897624Z patching file include/linux/mutex.h
2025-10-02T15:24:52.2898493Z patching file include/linux/namei.h
2025-10-02T15:24:52.2899686Z patching file include/linux/net.h
2025-10-02T15:24:52.2900783Z patching file include/linux/netdev_features.h
2025-10-02T15:24:52.2903457Z patching file include/linux/netdevice.h
2025-10-02T15:24:52.2907971Z patching file include/linux/netfilter.h
2025-10-02T15:24:52.2909092Z patching file include/linux/netfilter/ipset/ip_set.h
2025-10-02T15:24:52.2910455Z patching file include/linux/netfilter/nf_conntrack_common.h
2025-10-02T15:24:52.2911334Z patching file include/linux/netfilter/nf_conntrack_sctp.h
2025-10-02T15:24:52.2912128Z patching file include/linux/netfilter/nfnetlink.h
2025-10-02T15:24:52.2913108Z patching file include/linux/netfilter/x_tables.h
2025-10-02T15:24:52.2914325Z patching file include/linux/netfilter_arp/arp_tables.h
2025-10-02T15:24:52.2915246Z patching file include/linux/netfilter_bridge/ebtables.h
2025-10-02T15:24:52.2916256Z patching file include/linux/netfilter_defs.h
2025-10-02T15:24:52.2917190Z patching file include/linux/netpoll.h
2025-10-02T15:24:52.2918091Z patching file include/linux/nfs.h
2025-10-02T15:24:52.2919268Z patching file include/linux/nfs4.h
2025-10-02T15:24:52.2921312Z patching file include/linux/nfs_fs.h
2025-10-02T15:24:52.2922788Z patching file include/linux/nfs_fs_sb.h
2025-10-02T15:24:52.2924808Z patching file include/linux/nfs_page.h
2025-10-02T15:24:52.2925668Z patching file include/linux/nfs_ssc.h
2025-10-02T15:24:52.2927077Z patching file include/linux/nfs_xdr.h
2025-10-02T15:24:52.2929206Z patching file include/linux/nfsacl.h
2025-10-02T15:24:52.2930128Z patching file include/linux/nls.h
2025-10-02T15:24:52.2931123Z patching file include/linux/nmi.h
2025-10-02T15:24:52.2932247Z patching file include/linux/nodemask.h
2025-10-02T15:24:52.2934310Z patching file include/linux/nospec.h
2025-10-02T15:24:52.2934906Z patching file include/linux/nvme-tcp.h
2025-10-02T15:24:52.2936329Z patching file include/linux/nvme.h
2025-10-02T15:24:52.2938500Z patching file include/linux/nvmem-provider.h
2025-10-02T15:24:52.2939278Z patching file include/linux/objagg.h
2025-10-02T15:24:52.2940417Z patching file include/linux/objtool.h
2025-10-02T15:24:52.2942327Z patching file include/linux/of.h
2025-10-02T15:24:52.2945135Z patching file include/linux/of_device.h
2025-10-02T15:24:52.2945736Z patching file include/linux/of_mdio.h
2025-10-02T15:24:52.2946915Z patching file include/linux/once.h
2025-10-02T15:24:52.2948006Z patching file include/linux/overflow.h
2025-10-02T15:24:52.2950586Z patching file include/linux/padata.h
2025-10-02T15:24:52.2951578Z patching file include/linux/pagemap.h
2025-10-02T15:24:52.2953495Z patching file include/linux/pci-epc.h
2025-10-02T15:24:52.2954476Z patching file include/linux/pci-epf.h
2025-10-02T15:24:52.2956392Z patching file include/linux/pci.h
2025-10-02T15:24:52.2960025Z patching file include/linux/pci_ids.h
2025-10-02T15:24:52.2963687Z patching file include/linux/perf_event.h
2025-10-02T15:24:52.2966191Z patching file include/linux/pgtable.h
2025-10-02T15:24:52.2968299Z patching file include/linux/phy.h
2025-10-02T15:24:52.2970658Z patching file include/linux/phy/tegra/xusb.h
2025-10-02T15:24:52.2971820Z patching file include/linux/pid.h
2025-10-02T15:24:52.2972869Z patching file include/linux/pipe_fs_i.h
2025-10-02T15:24:52.2974390Z patching file include/linux/platform_data/cros_ec_proto.h
2025-10-02T15:24:52.2975803Z patching file include/linux/platform_data/gpio-omap.h
2025-10-02T15:24:52.2976923Z patching file include/linux/platform_data/intel-spi.h
2025-10-02T15:24:52.2977617Z patching file include/linux/platform_data/ti-sysc.h
2025-10-02T15:24:52.2978747Z patching file include/linux/platform_data/x86/asus-wmi.h
2025-10-02T15:24:52.2979822Z patching file include/linux/platform_data/x86/pmc_atom.h
2025-10-02T15:24:52.2980836Z patching file include/linux/platform_data/x86/soc.h
2025-10-02T15:24:52.2981985Z patching file include/linux/platform_device.h
2025-10-02T15:24:52.2983512Z patching file include/linux/pm.h
2025-10-02T15:24:52.2985219Z patching file include/linux/pm_runtime.h
2025-10-02T15:24:52.2986884Z patching file include/linux/pm_wakeirq.h
2025-10-02T15:24:52.2987891Z patching file include/linux/poll.h
2025-10-02T15:24:52.2989072Z patching file include/linux/posix-timers.h
2025-10-02T15:24:52.2990525Z patching file include/linux/power/bq27xxx_battery.h
2025-10-02T15:24:52.2991525Z patching file include/linux/power/max17042_battery.h
2025-10-02T15:24:52.2993012Z patching file include/linux/power_supply.h
2025-10-02T15:24:52.2994091Z patching file include/linux/pps_kernel.h
2025-10-02T15:24:52.2995245Z patching file include/linux/prandom.h
2025-10-02T15:24:52.2996619Z patching file include/linux/printk.h
2025-10-02T15:24:52.2997869Z patching file include/linux/proc_fs.h
2025-10-02T15:24:52.2999372Z patching file include/linux/property.h
2025-10-02T15:24:52.3000764Z patching file include/linux/psi.h
2025-10-02T15:24:52.3001860Z patching file include/linux/psi_types.h
2025-10-02T15:24:52.3003739Z patching file include/linux/pstore.h
2025-10-02T15:24:52.3004858Z patching file include/linux/ptp_clock_kernel.h
2025-10-02T15:24:52.3006259Z patching file include/linux/ptrace.h
2025-10-02T15:24:52.3007468Z patching file include/linux/pwm.h
2025-10-02T15:24:52.3008959Z patching file include/linux/qcom-geni-se.h
2025-10-02T15:24:52.3010333Z patching file include/linux/qed/qed_eth_if.h
2025-10-02T15:24:52.3011756Z patching file include/linux/quota.h
2025-10-02T15:24:52.3013140Z patching file include/linux/quotaops.h
2025-10-02T15:24:52.3014226Z patching file include/linux/raid_class.h
2025-10-02T15:24:52.3015320Z patching file include/linux/ramfs.h
2025-10-02T15:24:52.3016398Z patching file include/linux/random.h
2025-10-02T15:24:52.3017689Z patching file include/linux/ratelimit_types.h
2025-10-02T15:24:52.3019044Z patching file include/linux/rcupdate.h
2025-10-02T15:24:52.3021486Z patching file include/linux/rcutree.h
2025-10-02T15:24:52.3022911Z patching file include/linux/regmap.h
2025-10-02T15:24:52.3025339Z patching file include/linux/regulator/consumer.h
2025-10-02T15:24:52.3027302Z patching file include/linux/regulator/driver.h
2025-10-02T15:24:52.3028080Z patching file include/linux/regulator/pca9450.h
2025-10-02T15:24:52.3030331Z patching file include/linux/remoteproc.h
2025-10-02T15:24:52.3035395Z patching file include/linux/ring_buffer.h
2025-10-02T15:24:52.3036032Z patching file include/linux/rmap.h
2025-10-02T15:24:52.3036399Z patching file include/linux/rpmsg.h
2025-10-02T15:24:52.3036769Z patching file include/linux/rtsx_usb.h
2025-10-02T15:24:52.3037107Z patching file include/linux/rwsem.h
2025-10-02T15:24:52.3037590Z patching file include/linux/sched.h
2025-10-02T15:24:52.3040868Z patching file include/linux/sched/jobctl.h
2025-10-02T15:24:52.3041254Z patching file include/linux/sched/mm.h
2025-10-02T15:24:52.3043934Z patching file include/linux/sched/signal.h
2025-10-02T15:24:52.3044388Z patching file include/linux/sched/smt.h
2025-10-02T15:24:52.3044837Z patching file include/linux/sched/task.h
2025-10-02T15:24:52.3045739Z patching file include/linux/sched/task_stack.h
2025-10-02T15:24:52.3047418Z patching file include/linux/sched/user.h
2025-10-02T15:24:52.3047778Z patching file include/linux/seccomp.h
2025-10-02T15:24:52.3048785Z patching file include/linux/security.h
2025-10-02T15:24:52.3054560Z patching file include/linux/seq_buf.h
2025-10-02T15:24:52.3055002Z patching file include/linux/seq_file.h
2025-10-02T15:24:52.3055439Z patching file include/linux/seqlock.h
2025-10-02T15:24:52.3056296Z patching file include/linux/serial_8250.h
2025-10-02T15:24:52.3057406Z patching file include/linux/serial_core.h
2025-10-02T15:24:52.3059195Z patching file include/linux/sh_intc.h
2025-10-02T15:24:52.3063680Z patching file include/linux/siphash.h
2025-10-02T15:24:52.3064125Z patching file include/linux/skbuff.h
2025-10-02T15:24:52.3068097Z patching file include/linux/skmsg.h
2025-10-02T15:24:52.3069038Z patching file include/linux/smp.h
2025-10-02T15:24:52.3070267Z patching file include/linux/soc/mediatek/mtk-mmsys.h
2025-10-02T15:24:52.3071158Z patching file include/linux/soc/qcom/apr.h
2025-10-02T15:24:52.3072136Z patching file include/linux/soc/samsung/exynos-chipid.h
2025-10-02T15:24:52.3073211Z patching file include/linux/soc/ti/ti_sci_protocol.h
2025-10-02T15:24:52.3074525Z patching file include/linux/socket.h
2025-10-02T15:24:52.3076133Z patching file include/linux/sockptr.h
2025-10-02T15:24:52.3082165Z patching file include/linux/soundwire/sdw.h
2025-10-02T15:24:52.3082539Z patching file include/linux/spi/spi.h
2025-10-02T15:24:52.3082884Z patching file include/linux/srcu.h
2025-10-02T15:24:52.3083202Z patching file include/linux/srcutiny.h
2025-10-02T15:24:52.3083548Z patching file include/linux/static_call.h
2025-10-02T15:24:52.3084111Z patching file include/linux/static_call_types.h
2025-10-02T15:24:52.3084464Z patching file include/linux/stddef.h
2025-10-02T15:24:52.3085180Z patching file include/linux/stmmac.h
2025-10-02T15:24:52.3086653Z patching file include/linux/stop_machine.h
2025-10-02T15:24:52.3093672Z patching file include/linux/string.h
2025-10-02T15:24:52.3094150Z patching file include/linux/sunrpc/cache.h
2025-10-02T15:24:52.3094608Z patching file include/linux/sunrpc/clnt.h
2025-10-02T15:24:52.3095082Z patching file include/linux/sunrpc/msg_prot.h
2025-10-02T15:24:52.3095568Z patching file include/linux/sunrpc/rpc_pipe_fs.h
2025-10-02T15:24:52.3096019Z patching file include/linux/sunrpc/sched.h
2025-10-02T15:24:52.3096398Z patching file include/linux/sunrpc/svc.h
2025-10-02T15:24:52.3096804Z patching file include/linux/sunrpc/svc_rdma.h
2025-10-02T15:24:52.3097420Z patching file include/linux/sunrpc/svc_xprt.h
2025-10-02T15:24:52.3098257Z patching file include/linux/sunrpc/svcauth.h
2025-10-02T15:24:52.3098961Z patching file include/linux/sunrpc/svcsock.h
2025-10-02T15:24:52.3099741Z patching file include/linux/sunrpc/xdr.h
2025-10-02T15:24:52.3101586Z patching file include/linux/sunrpc/xprt.h
2025-10-02T15:24:52.3102224Z patching file include/linux/sunrpc/xprtsock.h
2025-10-02T15:24:52.3103349Z patching file include/linux/suspend.h
2025-10-02T15:24:52.3104935Z patching file include/linux/swap.h
2025-10-02T15:24:52.3106404Z patching file include/linux/swapops.h
2025-10-02T15:24:52.3107548Z patching file include/linux/swiotlb.h
2025-10-02T15:24:52.3118145Z patching file include/linux/syscalls.h
2025-10-02T15:24:52.3118767Z patching file include/linux/sysctl.h
2025-10-02T15:24:52.3119130Z patching file include/linux/task_work.h
2025-10-02T15:24:52.3119635Z patching file include/linux/tcp.h
2025-10-02T15:24:52.3119990Z patching file include/linux/tee_drv.h
2025-10-02T15:24:52.3120464Z patching file include/linux/thermal.h
2025-10-02T15:24:52.3121452Z patching file include/linux/thread_info.h
2025-10-02T15:24:52.3121800Z patching file include/linux/tick.h
2025-10-02T15:24:52.3122150Z patching file include/linux/timer.h
2025-10-02T15:24:52.3122550Z patching file include/linux/timerqueue.h
2025-10-02T15:24:52.3122897Z patching file include/linux/timex.h
2025-10-02T15:24:52.3123252Z patching file include/linux/topology.h
2025-10-02T15:24:52.3123617Z patching file include/linux/tpm.h
2025-10-02T15:24:52.3130385Z patching file include/linux/tpm_eventlog.h
2025-10-02T15:24:52.3131062Z patching file include/linux/trace_events.h
2025-10-02T15:24:52.3131632Z patching file include/linux/trace_seq.h
2025-10-02T15:24:52.3132290Z patching file include/linux/tracehook.h
2025-10-02T15:24:52.3132979Z patching file include/linux/tracepoint.h
2025-10-02T15:24:52.3133693Z patching file include/linux/tty.h
2025-10-02T15:24:52.3134260Z patching file include/linux/tty_driver.h
2025-10-02T15:24:52.3134918Z patching file include/linux/tty_flip.h
2025-10-02T15:24:52.3135499Z patching file include/linux/tty_ldisc.h
2025-10-02T15:24:52.3136276Z patching file include/linux/types.h
2025-10-02T15:24:52.3137340Z patching file include/linux/u64_stats_sync.h
2025-10-02T15:24:52.3138401Z patching file include/linux/uacce.h
2025-10-02T15:24:52.3139652Z patching file include/linux/uaccess.h
2025-10-02T15:24:52.3140859Z patching file include/linux/udp.h
2025-10-02T15:24:52.3143026Z patching file include/linux/uio.h
2025-10-02T15:24:52.3143603Z patching file include/linux/units.h
2025-10-02T15:24:52.3144997Z patching file include/linux/usb.h
2025-10-02T15:24:52.3147758Z patching file include/linux/usb/ch9.h
2025-10-02T15:24:52.3149109Z patching file include/linux/usb/gadget.h
2025-10-02T15:24:52.3151170Z patching file include/linux/usb/hcd.h
2025-10-02T15:24:52.3152837Z patching file include/linux/usb/otg-fsm.h
2025-10-02T15:24:52.3154030Z patching file include/linux/usb/pd.h
2025-10-02T15:24:52.3155042Z patching file include/linux/usb/role.h
2025-10-02T15:24:52.3155919Z patching file include/linux/usb/typec_altmode.h
2025-10-02T15:24:52.3156809Z patching file include/linux/usb/typec_dp.h
2025-10-02T15:24:52.3157769Z patching file include/linux/usb/usbnet.h
2025-10-02T15:24:52.3158814Z patching file include/linux/usb_usual.h
2025-10-02T15:24:52.3159899Z patching file include/linux/user_namespace.h
2025-10-02T15:24:52.3160947Z patching file include/linux/usermode_driver.h
2025-10-02T15:24:52.3161764Z patching file include/linux/util_macros.h
2025-10-02T15:24:52.3162910Z patching file include/linux/vdpa.h
2025-10-02T15:24:52.3164066Z patching file include/linux/vfio.h
2025-10-02T15:24:52.3165238Z patching file include/linux/virtio.h
2025-10-02T15:24:52.3166386Z patching file include/linux/virtio_config.h
2025-10-02T15:24:52.3167580Z patching file include/linux/virtio_net.h
2025-10-02T15:24:52.3168945Z patching file include/linux/vmalloc.h
2025-10-02T15:24:52.3170409Z patching file include/linux/vmstat.h
2025-10-02T15:24:52.3171554Z patching file include/linux/vt_buffer.h
2025-10-02T15:24:52.3172954Z patching file include/linux/wait.h
2025-10-02T15:24:52.3174793Z patching file include/linux/watch_queue.h
2025-10-02T15:24:52.3175879Z patching file include/linux/workqueue.h
2025-10-02T15:24:52.3177556Z patching file include/linux/ww_mutex.h
2025-10-02T15:24:52.3179046Z patching file include/linux/xarray.h
2025-10-02T15:24:52.3181659Z patching file include/linux/zsmalloc.h
2025-10-02T15:24:52.3182643Z patching file include/media/cec.h
2025-10-02T15:24:52.3184107Z patching file include/media/dvb_net.h
2025-10-02T15:24:52.3185085Z patching file include/media/dvbdev.h
2025-10-02T15:24:52.3186521Z patching file include/media/hevc-ctrls.h
2025-10-02T15:24:52.3187532Z patching file include/media/media-dev-allocator.h
2025-10-02T15:24:52.3188435Z patching file include/media/rc-map.h
2025-10-02T15:24:52.3189662Z patching file include/media/v4l2-async.h
2025-10-02T15:24:52.3190966Z patching file include/media/v4l2-common.h
2025-10-02T15:24:52.3192809Z patching file include/media/v4l2-ctrls.h
2025-10-02T15:24:52.3194797Z patching file include/media/v4l2-dv-timings.h
2025-10-02T15:24:52.3195892Z patching file include/media/v4l2-fwnode.h
2025-10-02T15:24:52.3197101Z patching file include/media/v4l2-h264.h
2025-10-02T15:24:52.3197973Z patching file include/media/v4l2-jpeg.h
2025-10-02T15:24:52.3198967Z patching file include/media/v4l2-mediabus.h
2025-10-02T15:24:52.3200326Z patching file include/media/v4l2-mem2mem.h
2025-10-02T15:24:52.3202043Z patching file include/media/v4l2-subdev.h
2025-10-02T15:24:52.3204054Z patching file include/memory/renesas-rpc-if.h
2025-10-02T15:24:52.3204888Z patching file include/net/act_api.h
2025-10-02T15:24:52.3206356Z patching file include/net/addrconf.h
2025-10-02T15:24:52.3207980Z patching file include/net/af_unix.h
2025-10-02T15:24:52.3210256Z patching file include/net/af_vsock.h
2025-10-02T15:24:52.3211059Z patching file include/net/arp.h
2025-10-02T15:24:52.3212045Z patching file include/net/ax25.h
2025-10-02T15:24:52.3213643Z patching file include/net/bluetooth/bluetooth.h
2025-10-02T15:24:52.3215488Z patching file include/net/bluetooth/hci.h
2025-10-02T15:24:52.3218116Z patching file include/net/bluetooth/hci_core.h
2025-10-02T15:24:52.3220612Z patching file include/net/bluetooth/hci_mon.h
2025-10-02T15:24:52.3222049Z patching file include/net/bluetooth/l2cap.h
2025-10-02T15:24:52.3223153Z patching file include/net/bluetooth/mgmt.h
2025-10-02T15:24:52.3224740Z patching file include/net/bond_3ad.h
2025-10-02T15:24:52.3226499Z patching file include/net/bond_alb.h
2025-10-02T15:24:52.3227082Z patching file include/net/bonding.h
2025-10-02T15:24:52.3228895Z patching file include/net/busy_poll.h
2025-10-02T15:24:52.3230249Z patching file include/net/caif/caif_dev.h
2025-10-02T15:24:52.3230637Z patching file include/net/caif/cfcnfg.h
2025-10-02T15:24:52.3231355Z patching file include/net/caif/cfserl.h
2025-10-02T15:24:52.3234497Z patching file include/net/cfg80211.h
2025-10-02T15:24:52.3239761Z patching file include/net/cfg802154.h
2025-10-02T15:24:52.3241373Z patching file include/net/checksum.h
2025-10-02T15:24:52.3242693Z patching file include/net/compat.h
2025-10-02T15:24:52.3243937Z patching file include/net/dn.h
2025-10-02T15:24:52.3245069Z patching file include/net/dn_dev.h
2025-10-02T15:24:52.3246628Z patching file include/net/dn_fib.h
2025-10-02T15:24:52.3248484Z patching file include/net/dn_neigh.h
2025-10-02T15:24:52.3249105Z patching file include/net/dn_nsp.h
2025-10-02T15:24:52.3251219Z patching file include/net/dn_route.h
2025-10-02T15:24:52.3252113Z patching file include/net/dst.h
2025-10-02T15:24:52.3253724Z patching file include/net/dst_cache.h
2025-10-02T15:24:52.3255394Z patching file include/net/dst_metadata.h
2025-10-02T15:24:52.3255739Z patching file include/net/dst_ops.h
2025-10-02T15:24:52.3256422Z patching file include/net/fib_rules.h
2025-10-02T15:24:52.3257752Z patching file include/net/flow.h
2025-10-02T15:24:52.3259386Z patching file include/net/flow_dissector.h
2025-10-02T15:24:52.3261191Z patching file include/net/flow_offload.h
2025-10-02T15:24:52.3262744Z patching file include/net/genetlink.h
2025-10-02T15:24:52.3264389Z patching file include/net/icmp.h
2025-10-02T15:24:52.3264781Z patching file include/net/ieee802154_netdev.h
2025-10-02T15:24:52.3266050Z patching file include/net/if_inet6.h
2025-10-02T15:24:52.3267787Z patching file include/net/inet6_hashtables.h
2025-10-02T15:24:52.3268427Z patching file include/net/inet_connection_sock.h
2025-10-02T15:24:52.3270462Z patching file include/net/inet_frag.h
2025-10-02T15:24:52.3271552Z patching file include/net/inet_hashtables.h
2025-10-02T15:24:52.3273370Z patching file include/net/inet_sock.h
2025-10-02T15:24:52.3274264Z patching file include/net/ip.h
2025-10-02T15:24:52.3276380Z patching file include/net/ip6_fib.h
2025-10-02T15:24:52.3278240Z patching file include/net/ip6_route.h
2025-10-02T15:24:52.3278898Z patching file include/net/ip6_tunnel.h
2025-10-02T15:24:52.3280564Z patching file include/net/ip_fib.h
2025-10-02T15:24:52.3281700Z patching file include/net/ip_tunnels.h
2025-10-02T15:24:52.3283891Z patching file include/net/ip_vs.h
2025-10-02T15:24:52.3286027Z patching file include/net/ipv6.h
2025-10-02T15:24:52.3288024Z patching file include/net/ipv6_frag.h
2025-10-02T15:24:52.3288671Z patching file include/net/ipv6_stubs.h
2025-10-02T15:24:52.3289804Z patching file include/net/kcm.h
2025-10-02T15:24:52.3290865Z patching file include/net/l3mdev.h
2025-10-02T15:24:52.3291902Z patching file include/net/lapb.h
2025-10-02T15:24:52.3292907Z patching file include/net/llc.h
2025-10-02T15:24:52.3293969Z patching file include/net/llc_pdu.h
2025-10-02T15:24:52.3295686Z patching file include/net/lwtunnel.h
2025-10-02T15:24:52.3298434Z patching file include/net/mac80211.h
2025-10-02T15:24:52.3303175Z patching file include/net/macsec.h
2025-10-02T15:24:52.3303914Z patching file include/net/mptcp.h
2025-10-02T15:24:52.3305039Z patching file include/net/mrp.h
2025-10-02T15:24:52.3306104Z patching file include/net/neighbour.h
2025-10-02T15:24:52.3307900Z patching file include/net/net_namespace.h
2025-10-02T15:24:52.3309167Z patching file include/net/netfilter/ipv4/nf_reject.h
2025-10-02T15:24:52.3310141Z patching file include/net/netfilter/ipv6/nf_reject.h
2025-10-02T15:24:52.3311079Z patching file include/net/netfilter/nf_conntrack.h
2025-10-02T15:24:52.3312232Z patching file include/net/netfilter/nf_conntrack_core.h
2025-10-02T15:24:52.3313069Z patching file include/net/netfilter/nf_flow_table.h
2025-10-02T15:24:52.3313981Z patching file include/net/netfilter/nf_nat_redirect.h
2025-10-02T15:24:52.3314795Z patching file include/net/netfilter/nf_queue.h
2025-10-02T15:24:52.3315963Z patching file include/net/netfilter/nf_tables.h
2025-10-02T15:24:52.3319417Z patching file include/net/netfilter/nf_tables_core.h
2025-10-02T15:24:52.3320111Z patching file include/net/netfilter/nf_tables_offload.h
2025-10-02T15:24:52.3321269Z patching file include/net/netfilter/nf_tproxy.h
2025-10-02T15:24:52.3322213Z patching file include/net/netfilter/nft_fib.h
2025-10-02T15:24:52.3323021Z patching file include/net/netfilter/nft_meta.h
2025-10-02T15:24:52.3323832Z patching file include/net/netns/ipv4.h
2025-10-02T15:24:52.3325499Z patching file include/net/netns/ipv6.h
2025-10-02T15:24:52.3326082Z patching file include/net/netns/netfilter.h
2025-10-02T15:24:52.3326878Z patching file include/net/netns/nftables.h
2025-10-02T15:24:52.3327548Z patching file include/net/netns/xfrm.h
2025-10-02T15:24:52.3328611Z patching file include/net/nexthop.h
2025-10-02T15:24:52.3330377Z patching file include/net/nfc/nci_core.h
2025-10-02T15:24:52.3331353Z patching file include/net/nfc/nfc.h
2025-10-02T15:24:52.3332596Z patching file include/net/nl802154.h
2025-10-02T15:24:52.3334044Z patching file include/net/page_pool.h
2025-10-02T15:24:52.3335149Z patching file include/net/pkt_cls.h
2025-10-02T15:24:52.3336821Z patching file include/net/pkt_sched.h
2025-10-02T15:24:52.3337739Z patching file include/net/protocol.h
2025-10-02T15:24:52.3338684Z patching file include/net/psample.h
2025-10-02T15:24:52.3339711Z patching file include/net/raw.h
2025-10-02T15:24:52.3340953Z patching file include/net/red.h
2025-10-02T15:24:52.3342021Z patching file include/net/route.h
2025-10-02T15:24:52.3343533Z patching file include/net/rpl.h
2025-10-02T15:24:52.3344200Z patching file include/net/rtnetlink.h
2025-10-02T15:24:52.3345957Z patching file include/net/sch_generic.h
2025-10-02T15:24:52.3348122Z patching file include/net/scm.h
2025-10-02T15:24:52.3348952Z patching file include/net/sctp/constants.h
2025-10-02T15:24:52.3350293Z patching file include/net/sctp/sctp.h
2025-10-02T15:24:52.3351693Z patching file include/net/sctp/stream_sched.h
2025-10-02T15:24:52.3352836Z patching file include/net/sctp/structs.h
2025-10-02T15:24:52.3355395Z patching file include/net/secure_seq.h
2025-10-02T15:24:52.3356921Z patching file include/net/sock.h
2025-10-02T15:24:52.3361167Z patching file include/net/sock_reuseport.h
2025-10-02T15:24:52.3361877Z patching file include/net/strparser.h
2025-10-02T15:24:52.3362933Z patching file include/net/switchdev.h
2025-10-02T15:24:52.3364062Z patching file include/net/tc_act/tc_ctinfo.h
2025-10-02T15:24:52.3364688Z patching file include/net/tc_act/tc_pedit.h
2025-10-02T15:24:52.3365345Z patching file include/net/tc_act/tc_vlan.h
2025-10-02T15:24:52.3366890Z patching file include/net/tcp.h
2025-10-02T15:24:52.3370479Z patching file include/net/tls.h
2025-10-02T15:24:52.3372300Z patching file include/net/udp.h
2025-10-02T15:24:52.3373985Z patching file include/net/udp_tunnel.h
2025-10-02T15:24:52.3374888Z patching file include/net/udplite.h
2025-10-02T15:24:52.3375938Z patching file include/net/vxlan.h
2025-10-02T15:24:52.3377382Z patching file include/net/xdp.h
2025-10-02T15:24:52.3378317Z patching file include/net/xdp_sock.h
2025-10-02T15:24:52.3380127Z patching file include/net/xfrm.h
2025-10-02T15:24:52.3382899Z patching file include/net/xsk_buff_pool.h
2025-10-02T15:24:52.3383803Z patching file include/rdma/ib_addr.h
2025-10-02T15:24:52.3386098Z patching file include/rdma/ib_verbs.h
2025-10-02T15:24:52.3389769Z patching file include/rdma/rdma_netlink.h
2025-10-02T15:24:52.3390676Z patching file include/rdma/uverbs_ioctl.h
2025-10-02T15:24:52.3392481Z patching file include/scsi/fc/fc_ms.h
2025-10-02T15:24:52.3393218Z patching file include/scsi/libfcoe.h
2025-10-02T15:24:52.3394339Z patching file include/scsi/libiscsi.h
2025-10-02T15:24:52.3395923Z patching file include/scsi/libsas.h
2025-10-02T15:24:52.3397102Z patching file include/scsi/scsi.h
2025-10-02T15:24:52.3398142Z patching file include/scsi/scsi_cmnd.h
2025-10-02T15:24:52.3399149Z patching file include/scsi/scsi_dh.h
2025-10-02T15:24:52.3400077Z patching file include/scsi/scsi_eh.h
2025-10-02T15:24:52.3401118Z patching file include/scsi/scsi_host.h
2025-10-02T15:24:52.3402942Z patching file include/scsi/scsi_transport_iscsi.h
2025-10-02T15:24:52.3404265Z patching file include/soc/bcm2835/raspberrypi-firmware.h
2025-10-02T15:24:52.3405802Z patching file include/soc/fsl/qman.h
2025-10-02T15:24:52.3407666Z patching file include/soc/mscc/ocelot.h
2025-10-02T15:24:52.3409105Z patching file include/sound/control.h
2025-10-02T15:24:52.3410339Z patching file include/sound/core.h
2025-10-02T15:24:52.3411811Z patching file include/sound/dmaengine_pcm.h
2025-10-02T15:24:52.3412847Z patching file include/sound/hda_codec.h
2025-10-02T15:24:52.3414519Z patching file include/sound/hdaudio.h
2025-10-02T15:24:52.3415756Z patching file include/sound/hdaudio_ext.h
2025-10-02T15:24:52.3416749Z patching file include/sound/intel-nhlt.h
2025-10-02T15:24:52.3417683Z patching file include/sound/jack.h
2025-10-02T15:24:52.3419278Z patching file include/sound/pcm.h
2025-10-02T15:24:52.3421573Z patching file include/sound/soc-acpi.h
2025-10-02T15:24:52.3422355Z patching file include/sound/soc-card.h
2025-10-02T15:24:52.3423487Z patching file include/sound/soc-dai.h
2025-10-02T15:24:52.3425314Z patching file include/sound/soc-dapm.h
2025-10-02T15:24:52.3426969Z patching file include/sound/soc-dpcm.h
2025-10-02T15:24:52.3428211Z patching file include/sound/soc.h
2025-10-02T15:24:52.3430377Z patching file include/target/target_core_backend.h
2025-10-02T15:24:52.3431413Z patching file include/target/target_core_base.h
2025-10-02T15:24:52.3433563Z patching file include/trace/events/afs.h
2025-10-02T15:24:52.3435673Z patching file include/trace/events/asoc.h
2025-10-02T15:24:52.3436600Z patching file include/trace/events/block.h
2025-10-02T15:24:52.3438927Z patching file include/trace/events/btrfs.h
2025-10-02T15:24:52.3441177Z patching file include/trace/events/cgroup.h
2025-10-02T15:24:52.3442738Z patching file include/trace/events/erofs.h
2025-10-02T15:24:52.3450416Z patching file include/trace/events/ext4.h
2025-10-02T15:24:52.3451180Z patching file include/trace/events/f2fs.h
2025-10-02T15:24:52.3452343Z patching file include/trace/events/io_uring.h
2025-10-02T15:24:52.3452961Z patching file include/trace/events/jbd2.h
2025-10-02T15:24:52.3453695Z patching file include/trace/events/libata.h
2025-10-02T15:24:52.3454308Z patching file include/trace/events/neigh.h
2025-10-02T15:24:52.3455715Z patching file include/trace/events/oom.h
2025-10-02T15:24:52.3456112Z patching file include/trace/events/qdisc.h
2025-10-02T15:24:52.3456844Z patching file include/trace/events/qrtr.h
2025-10-02T15:24:52.3457309Z patching file include/trace/events/random.h
2025-10-02T15:24:52.3459792Z patching file include/trace/events/rcu.h
2025-10-02T15:24:52.3460947Z patching file include/trace/events/rpcgss.h
2025-10-02T15:24:52.3462681Z patching file include/trace/events/rxrpc.h
2025-10-02T15:24:52.3464772Z patching file include/trace/events/sched.h
2025-10-02T15:24:52.3466227Z patching file include/trace/events/sock.h
2025-10-02T15:24:52.3467413Z patching file include/trace/events/spmi.h
2025-10-02T15:24:52.3468996Z patching file include/trace/events/sunrpc.h
2025-10-02T15:24:52.3472344Z patching file include/trace/events/timer.h
2025-10-02T15:24:52.3474034Z patching file include/trace/events/vmscan.h
2025-10-02T15:24:52.3475672Z patching file include/trace/events/writeback.h
2025-10-02T15:24:52.3476932Z patching file include/trace/trace_events.h
2025-10-02T15:24:52.3478532Z patching file include/uapi/asm-generic/hugetlb_encode.h
2025-10-02T15:24:52.3479178Z patching file include/uapi/asm-generic/poll.h
2025-10-02T15:24:52.3479981Z patching file include/uapi/asm-generic/unistd.h
2025-10-02T15:24:52.3481956Z patching file include/uapi/drm/drm_fourcc.h
2025-10-02T15:24:52.3490489Z patching file include/uapi/linux/affs_hardblocks.h
2025-10-02T15:24:52.3491280Z patching file include/uapi/linux/android/binder.h
2025-10-02T15:24:52.3492491Z patching file include/uapi/linux/audit.h
2025-10-02T15:24:52.3493116Z patching file include/uapi/linux/auto_dev-ioctl.h
2025-10-02T15:24:52.3493898Z patching file include/uapi/linux/bcache.h
2025-10-02T15:24:52.3494611Z patching file include/uapi/linux/binfmts.h
2025-10-02T15:24:52.3495246Z patching file include/uapi/linux/blkzoned.h
2025-10-02T15:24:52.3495989Z patching file include/uapi/linux/bpf.h
2025-10-02T15:24:52.3496664Z patching file include/uapi/linux/btrfs.h
2025-10-02T15:24:52.3498330Z patching file include/uapi/linux/can/error.h
2025-10-02T15:24:52.3498714Z patching file include/uapi/linux/can/isotp.h
2025-10-02T15:24:52.3499885Z patching file include/uapi/linux/capability.h
2025-10-02T15:24:52.3501726Z patching file include/uapi/linux/cec.h
2025-10-02T15:24:52.3503294Z patching file include/uapi/linux/const.h
2025-10-02T15:24:52.3504359Z patching file include/uapi/linux/devlink.h
2025-10-02T15:24:52.3505641Z patching file include/uapi/linux/dma-buf.h
2025-10-02T15:24:52.3506594Z patching file include/uapi/linux/dn.h
2025-10-02T15:24:52.3508667Z patching file include/uapi/linux/ethtool.h
2025-10-02T15:24:52.3511782Z patching file include/uapi/linux/ethtool_netlink.h
2025-10-02T15:24:52.3512823Z patching file include/uapi/linux/eventpoll.h
2025-10-02T15:24:52.3514723Z patching file include/uapi/linux/f2fs.h
2025-10-02T15:24:52.3515593Z patching file include/uapi/linux/fanotify.h
2025-10-02T15:24:52.3517115Z patching file include/uapi/linux/fscrypt.h
2025-10-02T15:24:52.3518317Z patching file include/uapi/linux/gtp.h
2025-10-02T15:24:52.3519344Z patching file include/uapi/linux/idxd.h
2025-10-02T15:24:52.3520694Z patching file include/uapi/linux/if_alg.h
2025-10-02T15:24:52.3521646Z patching file include/uapi/linux/if_link.h
2025-10-02T15:24:52.3523365Z patching file include/uapi/linux/if_packet.h
2025-10-02T15:24:52.3524682Z patching file include/uapi/linux/in.h
2025-10-02T15:24:52.3526014Z patching file include/uapi/linux/in6.h
2025-10-02T15:24:52.3527394Z patching file include/uapi/linux/input-event-codes.h
2025-10-02T15:24:52.3529175Z patching file include/uapi/linux/io_uring.h
2025-10-02T15:24:52.3530943Z patching file include/uapi/linux/ip.h
2025-10-02T15:24:52.3532095Z patching file include/uapi/linux/ipv6.h
2025-10-02T15:24:52.3533220Z patching file include/uapi/linux/kernel.h
2025-10-02T15:24:52.3534347Z patching file include/uapi/linux/kfd_ioctl.h
2025-10-02T15:24:52.3535684Z patching file include/uapi/linux/l2tp.h
2025-10-02T15:24:52.3536856Z patching file include/uapi/linux/lightnvm.h
2025-10-02T15:24:52.3537960Z patching file include/uapi/linux/mount.h
2025-10-02T15:24:52.3538983Z patching file include/uapi/linux/mroute6.h
2025-10-02T15:24:52.3540060Z patching file include/uapi/linux/neighbour.h
2025-10-02T15:24:52.3541548Z patching file include/uapi/linux/netfilter/nf_conntrack_common.h
2025-10-02T15:24:52.3542674Z patching file include/uapi/linux/netfilter/nf_conntrack_sctp.h
2025-10-02T15:24:52.3543627Z patching file include/uapi/linux/netfilter/nf_tables.h
2025-10-02T15:24:52.3545957Z patching file include/uapi/linux/netfilter/nfnetlink_cthelper.h
2025-10-02T15:24:52.3547001Z patching file include/uapi/linux/netfilter/nfnetlink_cttimeout.h
2025-10-02T15:24:52.3547953Z patching file include/uapi/linux/netfilter/x_tables.h
2025-10-02T15:24:52.3548603Z patching file include/uapi/linux/netfilter/xt_IDLETIMER.h
2025-10-02T15:24:52.3551485Z patching file include/uapi/linux/netfilter/xt_SECMARK.h
2025-10-02T15:24:52.3551957Z patching file include/uapi/linux/netfilter_bridge/ebtables.h
2025-10-02T15:24:52.3552366Z patching file include/uapi/linux/netfilter_decnet.h
2025-10-02T15:24:52.3553035Z patching file include/uapi/linux/netlink.h
2025-10-02T15:24:52.3554324Z patching file include/uapi/linux/nfc.h
2025-10-02T15:24:52.3555396Z patching file include/uapi/linux/nfs3.h
2025-10-02T15:24:52.3556285Z patching file include/uapi/linux/nfsd/nfsfh.h
2025-10-02T15:24:52.3557564Z patching file include/uapi/linux/openat2.h
2025-10-02T15:24:52.3558675Z patching file include/uapi/linux/pci_regs.h
2025-10-02T15:24:52.3562158Z patching file include/uapi/linux/perf_event.h
2025-10-02T15:24:52.3563527Z patching file include/uapi/linux/pkt_cls.h
2025-10-02T15:24:52.3565075Z patching file include/uapi/linux/pkt_sched.h
2025-10-02T15:24:52.3566019Z patching file include/uapi/linux/psample.h
2025-10-02T15:24:52.3566878Z patching file include/uapi/linux/ptrace.h
2025-10-02T15:24:52.3567832Z patching file include/uapi/linux/rpl.h
2025-10-02T15:24:52.3568739Z patching file include/uapi/linux/rseq.h
2025-10-02T15:24:52.3570312Z patching file include/uapi/linux/rtnetlink.h
2025-10-02T15:24:52.3573618Z patching file include/uapi/linux/serial_reg.h
2025-10-02T15:24:52.3575318Z patching file include/uapi/linux/stddef.h
2025-10-02T15:24:52.3575669Z patching file include/uapi/linux/swab.h
2025-10-02T15:24:52.3576031Z patching file include/uapi/linux/sync_file.h
2025-10-02T15:24:52.3576382Z patching file include/uapi/linux/sysctl.h
2025-10-02T15:24:52.3576973Z patching file include/uapi/linux/tcp.h
2025-10-02T15:24:52.3578106Z patching file include/uapi/linux/termios.h
2025-10-02T15:24:52.3578911Z patching file include/uapi/linux/tty_flags.h
2025-10-02T15:24:52.3580127Z patching file include/uapi/linux/types.h
2025-10-02T15:24:52.3581293Z patching file include/uapi/linux/usb/ch9.h
2025-10-02T15:24:52.3583491Z patching file include/uapi/linux/usb/video.h
2025-10-02T15:24:52.3584482Z patching file include/uapi/linux/uvcvideo.h
2025-10-02T15:24:52.3588429Z patching file include/uapi/linux/v4l2-subdev.h
2025-10-02T15:24:52.3588907Z patching file include/uapi/linux/videodev2.h
2025-10-02T15:24:52.3590754Z patching file include/uapi/linux/virtio_crypto.h
2025-10-02T15:24:52.3592430Z patching file include/uapi/linux/vm_sockets.h
2025-10-02T15:24:52.3593537Z patching file include/uapi/linux/xfrm.h
2025-10-02T15:24:52.3600317Z patching file include/uapi/linux/zorro_ids.h
2025-10-02T15:24:52.3601292Z patching file include/uapi/rdma/vmw_pvrdma-abi.h
2025-10-02T15:24:52.3601656Z patching file include/uapi/scsi/fc/fc_els.h
2025-10-02T15:24:52.3602033Z patching file include/uapi/sound/asequencer.h
2025-10-02T15:24:52.3604201Z patching file include/uapi/sound/skl-tplg-interface.h
2025-10-02T15:24:52.3604606Z patching file include/video/of_display_timing.h
2025-10-02T15:24:52.3604960Z patching file include/xen/grant_table.h
2025-10-02T15:24:52.3605346Z patching file include/xen/interface/io/ring.h
2025-10-02T15:24:52.3610638Z patching file include/xen/interface/xen-mca.h
2025-10-02T15:24:52.3611179Z patching file include/xen/xen.h
2025-10-02T15:24:52.3612324Z patching file include/xen/xenbus.h
2025-10-02T15:24:52.3612950Z patching file init/Kconfig
2025-10-02T15:24:52.3613473Z patching file init/do_mounts.c
2025-10-02T15:24:52.3614028Z patching file init/init_task.c
2025-10-02T15:24:52.3615078Z patching file init/initramfs.c
2025-10-02T15:24:52.3615631Z patching file init/main.c
2025-10-02T15:24:52.3616470Z patching file io_uring/Makefile
2025-10-02T15:24:52.3617417Z patching file io_uring/io-wq.c
2025-10-02T15:24:52.3621490Z patching file io_uring/io-wq.h
2025-10-02T15:24:52.3623218Z patching file io_uring/io_uring.c
2025-10-02T15:24:52.3645968Z patching file ipc/mqueue.c
2025-10-02T15:24:52.3648285Z patching file ipc/msg.c
2025-10-02T15:24:52.3650506Z patching file ipc/sem.c
2025-10-02T15:24:52.3653114Z patching file ipc/shm.c
2025-10-02T15:24:52.3656618Z patching file ipc/util.c
2025-10-02T15:24:52.3657489Z patching file kernel/.gitignore
2025-10-02T15:24:52.3658165Z patching file kernel/Makefile
2025-10-02T15:24:52.3659620Z patching file kernel/acct.c
2025-10-02T15:24:52.3661691Z patching file kernel/async.c
2025-10-02T15:24:52.3663611Z patching file kernel/audit.c
2025-10-02T15:24:52.3666519Z patching file kernel/audit.h
2025-10-02T15:24:52.3667237Z patching file kernel/audit_fsnotify.c
2025-10-02T15:24:52.3668783Z patching file kernel/audit_tree.c
2025-10-02T15:24:52.3670827Z patching file kernel/audit_watch.c
2025-10-02T15:24:52.3673167Z patching file kernel/auditfilter.c
2025-10-02T15:24:52.3675011Z patching file kernel/auditsc.c
2025-10-02T15:24:52.3677661Z patching file kernel/bounds.c
2025-10-02T15:24:52.3679389Z patching file kernel/bpf/arraymap.c
2025-10-02T15:24:52.3680947Z patching file kernel/bpf/bpf_inode_storage.c
2025-10-02T15:24:52.3682726Z patching file kernel/bpf/bpf_iter.c
2025-10-02T15:24:52.3683386Z patching file kernel/bpf/bpf_local_storage.c
2025-10-02T15:24:52.3684990Z patching file kernel/bpf/bpf_lru_list.c
2025-10-02T15:24:52.3687129Z patching file kernel/bpf/bpf_lru_list.h
2025-10-02T15:24:52.3688064Z patching file kernel/bpf/bpf_struct_ops.c
2025-10-02T15:24:52.3690371Z patching file kernel/bpf/btf.c
2025-10-02T15:24:52.3694658Z patching file kernel/bpf/cgroup.c
2025-10-02T15:24:52.3697567Z patching file kernel/bpf/core.c
2025-10-02T15:24:52.3700612Z patching file kernel/bpf/cpumap.c
2025-10-02T15:24:52.3702256Z patching file kernel/bpf/devmap.c
2025-10-02T15:24:52.3703898Z patching file kernel/bpf/disasm.c
2025-10-02T15:24:52.3705880Z patching file kernel/bpf/hashtab.c
2025-10-02T15:24:52.3708001Z patching file kernel/bpf/helpers.c
2025-10-02T15:24:52.3710199Z patching file kernel/bpf/inode.c
2025-10-02T15:24:52.3712266Z patching file kernel/bpf/local_storage.c
2025-10-02T15:24:52.3712999Z patching file kernel/bpf/lpm_trie.c
2025-10-02T15:24:52.3714841Z patching file kernel/bpf/map_in_map.c
2025-10-02T15:24:52.3716322Z patching file kernel/bpf/map_in_map.h
2025-10-02T15:24:52.3717449Z patching file kernel/bpf/percpu_freelist.c
2025-10-02T15:24:52.3718505Z patching file kernel/bpf/preload/Makefile
2025-10-02T15:24:52.3719059Z patching file kernel/bpf/preload/bpf_preload_kern.c
2025-10-02T15:24:52.3719722Z patching file kernel/bpf/queue_stack_maps.c
2025-10-02T15:24:52.3720496Z patching file kernel/bpf/ringbuf.c
2025-10-02T15:24:52.3722482Z patching file kernel/bpf/stackmap.c
2025-10-02T15:24:52.3725415Z patching file kernel/bpf/syscall.c
2025-10-02T15:24:52.3729402Z patching file kernel/bpf/task_iter.c
2025-10-02T15:24:52.3731235Z patching file kernel/bpf/trampoline.c
2025-10-02T15:24:52.3738798Z patching file kernel/bpf/verifier.c
2025-10-02T15:24:52.3753682Z patching file kernel/cgroup/cgroup-internal.h
2025-10-02T15:24:52.3754751Z patching file kernel/cgroup/cgroup-v1.c
2025-10-02T15:24:52.3758107Z patching file kernel/cgroup/cgroup.c
2025-10-02T15:24:52.3764866Z patching file kernel/cgroup/cpuset.c
2025-10-02T15:24:52.3769318Z patching file kernel/cgroup/namespace.c
2025-10-02T15:24:52.3770047Z patching file kernel/cgroup/rstat.c
2025-10-02T15:24:52.3771257Z patching file kernel/compat.c
2025-10-02T15:24:52.3772779Z patching file kernel/cpu.c
2025-10-02T15:24:52.3775130Z patching file kernel/cpu_pm.c
2025-10-02T15:24:52.3776415Z patching file kernel/crash_core.c
2025-10-02T15:24:52.3777602Z patching file kernel/cred.c
2025-10-02T15:24:52.3779667Z patching file kernel/debug/debug_core.c
2025-10-02T15:24:52.3781342Z patching file kernel/debug/kdb/kdb_io.c
2025-10-02T15:24:52.3783426Z patching file kernel/debug/kdb/kdb_main.c
2025-10-02T15:24:52.3785600Z patching file kernel/debug/kdb/kdb_private.h
2025-10-02T15:24:52.3786537Z patching file kernel/debug/kdb/kdb_support.c
2025-10-02T15:24:52.3787814Z patching file kernel/dma/coherent.c
2025-10-02T15:24:52.3788759Z patching file kernel/dma/contiguous.c
2025-10-02T15:24:52.3790116Z patching file kernel/dma/debug.c
2025-10-02T15:24:52.3792196Z patching file kernel/dma/direct.c
2025-10-02T15:24:52.3793207Z patching file kernel/dma/direct.h
2025-10-02T15:24:52.3794012Z patching file kernel/dma/mapping.c
2025-10-02T15:24:52.3795023Z patching file kernel/dma/ops_helpers.c
2025-10-02T15:24:52.3795800Z patching file kernel/dma/pool.c
2025-10-02T15:24:52.3796718Z patching file kernel/dma/remap.c
2025-10-02T15:24:52.3797607Z patching file kernel/dma/swiotlb.c
2025-10-02T15:24:52.3799801Z patching file kernel/entry/common.c
2025-10-02T15:24:52.3800757Z patching file kernel/entry/kvm.c
2025-10-02T15:24:52.3804795Z patching file kernel/events/core.c
2025-10-02T15:24:52.3814426Z patching file kernel/events/internal.h
2025-10-02T15:24:52.3815466Z patching file kernel/events/ring_buffer.c
2025-10-02T15:24:52.3817299Z patching file kernel/events/uprobes.c
2025-10-02T15:24:52.3819659Z patching file kernel/exit.c
2025-10-02T15:24:52.3821651Z patching file kernel/fail_function.c
2025-10-02T15:24:52.3823242Z patching file kernel/fork.c
2025-10-02T15:24:52.3827266Z patching file kernel/futex.c
2025-10-02T15:24:52.3835182Z patching file kernel/futex/Makefile
2025-10-02T15:24:52.3835838Z patching file kernel/futex/core.c
2025-10-02T15:24:52.3844730Z patching file kernel/gcov/clang.c
2025-10-02T15:24:52.3846272Z patching file kernel/gcov/gcc_4_7.c
2025-10-02T15:24:52.3847475Z patching file kernel/gen_kheaders.sh
2025-10-02T15:24:52.3848225Z patching file kernel/irq/Kconfig
2025-10-02T15:24:52.3849119Z patching file kernel/irq/affinity.c
2025-10-02T15:24:52.3850687Z patching file kernel/irq/chip.c
2025-10-02T15:24:52.3852460Z patching file kernel/irq/cpuhotplug.c
2025-10-02T15:24:52.3853140Z patching file kernel/irq/dummychip.c
2025-10-02T15:24:52.3854040Z patching file kernel/irq/generic-chip.c
2025-10-02T15:24:52.3855078Z patching file kernel/irq/handle.c
2025-10-02T15:24:52.3856029Z patching file kernel/irq/internals.h
2025-10-02T15:24:52.3857409Z patching file kernel/irq/irqdesc.c
2025-10-02T15:24:52.3859138Z patching file kernel/irq/irqdomain.c
2025-10-02T15:24:52.3862673Z patching file kernel/irq/manage.c
2025-10-02T15:24:52.3865427Z patching file kernel/irq/matrix.c
2025-10-02T15:24:52.3866507Z patching file kernel/irq/msi.c
2025-10-02T15:24:52.3867874Z patching file kernel/irq/proc.c
2025-10-02T15:24:52.3868949Z patching file kernel/irq/timings.c
2025-10-02T15:24:52.3870859Z patching file kernel/jump_label.c
2025-10-02T15:24:52.3872098Z patching file kernel/kallsyms.c
2025-10-02T15:24:52.3873124Z patching file kernel/kcmp.c
2025-10-02T15:24:52.3874644Z patching file kernel/kcov.c
2025-10-02T15:24:52.3875679Z patching file kernel/kcsan/Makefile
2025-10-02T15:24:52.3876644Z patching file kernel/kcsan/core.c
2025-10-02T15:24:52.3878256Z patching file kernel/kcsan/debugfs.c
2025-10-02T15:24:52.3879843Z patching file kernel/kcsan/kcsan-test.c
2025-10-02T15:24:52.3881373Z patching file kernel/kcsan/kcsan.h
2025-10-02T15:24:52.3882077Z patching file kernel/kcsan/report.c
2025-10-02T15:24:52.3883424Z patching file kernel/kexec.c
2025-10-02T15:24:52.3884907Z patching file kernel/kexec_core.c
2025-10-02T15:24:52.3886698Z patching file kernel/kexec_elf.c
2025-10-02T15:24:52.3888093Z patching file kernel/kexec_file.c
2025-10-02T15:24:52.3889955Z patching file kernel/kexec_internal.h
2025-10-02T15:24:52.3890777Z patching file kernel/kheaders.c
2025-10-02T15:24:52.3892448Z patching file kernel/kprobes.c
2025-10-02T15:24:52.3895210Z patching file kernel/ksysfs.c
2025-10-02T15:24:52.3896433Z patching file kernel/kthread.c
2025-10-02T15:24:52.3898829Z patching file kernel/livepatch/core.c
2025-10-02T15:24:52.3900608Z patching file kernel/livepatch/transition.c
2025-10-02T15:24:52.3903209Z patching file kernel/locking/lockdep.c
2025-10-02T15:24:52.3908103Z patching file kernel/locking/lockdep_internals.h
2025-10-02T15:24:52.3909042Z patching file kernel/locking/lockdep_proc.c
2025-10-02T15:24:52.3910633Z patching file kernel/locking/mutex-debug.c
2025-10-02T15:24:52.3911226Z patching file kernel/locking/mutex-debug.h
2025-10-02T15:24:52.3912275Z patching file kernel/locking/mutex.c
2025-10-02T15:24:52.3914175Z patching file kernel/locking/mutex.h
2025-10-02T15:24:52.3914703Z patching file kernel/locking/qrwlock.c
2025-10-02T15:24:52.3916103Z patching file kernel/locking/rtmutex.c
2025-10-02T15:24:52.3925399Z patching file kernel/locking/rtmutex_common.h
2025-10-02T15:24:52.3925787Z patching file kernel/locking/rwsem.c
2025-10-02T15:24:52.3926146Z patching file kernel/locking/semaphore.c
2025-10-02T15:24:52.3926432Z patching file kernel/locking/test-ww_mutex.c
2025-10-02T15:24:52.3926789Z patching file kernel/module.c
2025-10-02T15:24:52.3949710Z patching file kernel/module_signature.c
2025-10-02T15:24:52.3950066Z patching file kernel/module_signing.c
2025-10-02T15:24:52.3950403Z patching file kernel/padata.c
2025-10-02T15:24:52.3950738Z patching file kernel/panic.c
2025-10-02T15:24:52.3951059Z patching file kernel/params.c
2025-10-02T15:24:52.3951368Z patching file kernel/pid.c
2025-10-02T15:24:52.3951708Z patching file kernel/pid_namespace.c
2025-10-02T15:24:52.3952051Z patching file kernel/power/console.c
2025-10-02T15:24:52.3952409Z patching file kernel/power/energy_model.c
2025-10-02T15:24:52.3952762Z patching file kernel/power/hibernate.c
2025-10-02T15:24:52.3953091Z patching file kernel/power/main.c
2025-10-02T15:24:52.3953429Z patching file kernel/power/process.c
2025-10-02T15:24:52.3953778Z patching file kernel/power/snapshot.c
2025-10-02T15:24:52.3954116Z patching file kernel/power/suspend.c
2025-10-02T15:24:52.3954467Z patching file kernel/power/suspend_test.c
2025-10-02T15:24:52.3956029Z patching file kernel/power/swap.c
2025-10-02T15:24:52.3956531Z patching file kernel/power/user.c
2025-10-02T15:24:52.3957535Z patching file kernel/power/wakelock.c
2025-10-02T15:24:52.3958253Z patching file kernel/printk/printk.c
2025-10-02T15:24:52.3962407Z patching file kernel/printk/printk_ringbuffer.c
2025-10-02T15:24:52.3964642Z patching file kernel/printk/printk_safe.c
2025-10-02T15:24:52.3965744Z patching file kernel/profile.c
2025-10-02T15:24:52.3967523Z patching file kernel/ptrace.c
2025-10-02T15:24:52.3969949Z patching file kernel/rcu/Kconfig
2025-10-02T15:24:52.3970773Z patching file kernel/rcu/rcu.h
2025-10-02T15:24:52.3972064Z patching file kernel/rcu/rcuscale.c
2025-10-02T15:24:52.3975447Z patching file kernel/rcu/rcutorture.c
2025-10-02T15:24:52.3978190Z patching file kernel/rcu/refscale.c
2025-10-02T15:24:52.3979349Z patching file kernel/rcu/srcutiny.c
2025-10-02T15:24:52.3981226Z patching file kernel/rcu/srcutree.c
2025-10-02T15:24:52.3983673Z patching file kernel/rcu/tasks.h
2025-10-02T15:24:52.3987783Z patching file kernel/rcu/tree.c
2025-10-02T15:24:52.3994025Z patching file kernel/rcu/tree.h
2025-10-02T15:24:52.3995184Z patching file kernel/rcu/tree_exp.h
2025-10-02T15:24:52.3998493Z patching file kernel/rcu/tree_plugin.h
2025-10-02T15:24:52.4000792Z patching file kernel/rcu/tree_stall.h
2025-10-02T15:24:52.4002698Z patching file kernel/rcu/update.c
2025-10-02T15:24:52.4004251Z patching file kernel/reboot.c
2025-10-02T15:24:52.4005387Z patching file kernel/relay.c
2025-10-02T15:24:52.4007807Z patching file kernel/resource.c
2025-10-02T15:24:52.4010406Z patching file kernel/rseq.c
2025-10-02T15:24:52.4012118Z patching file kernel/scftorture.c
2025-10-02T15:24:52.4015857Z patching file kernel/sched/core.c
2025-10-02T15:24:52.4024239Z patching file kernel/sched/cpuacct.c
2025-10-02T15:24:52.4025913Z patching file kernel/sched/cpufreq_schedutil.c
2025-10-02T15:24:52.4028330Z patching file kernel/sched/cputime.c
2025-10-02T15:24:52.4030047Z patching file kernel/sched/deadline.c
2025-10-02T15:24:52.4033644Z patching file kernel/sched/debug.c
2025-10-02T15:24:52.4038385Z patching file kernel/sched/fair.c
2025-10-02T15:24:52.4051189Z patching file kernel/sched/features.h
2025-10-02T15:24:52.4052286Z patching file kernel/sched/idle.c
2025-10-02T15:24:52.4053412Z patching file kernel/sched/membarrier.c
2025-10-02T15:24:52.4054820Z patching file kernel/sched/pelt.h
2025-10-02T15:24:52.4055976Z patching file kernel/sched/psi.c
2025-10-02T15:24:52.4058980Z patching file kernel/sched/rt.c
2025-10-02T15:24:52.4062958Z patching file kernel/sched/sched.h
2025-10-02T15:24:52.4066800Z patching file kernel/sched/topology.c
2025-10-02T15:24:52.4069908Z patching file kernel/sched/wait.c
2025-10-02T15:24:52.4071369Z patching file kernel/seccomp.c
2025-10-02T15:24:52.4074906Z patching file kernel/signal.c
2025-10-02T15:24:52.4079438Z patching file kernel/smp.c
2025-10-02T15:24:52.4081884Z patching file kernel/smpboot.c
2025-10-02T15:24:52.4082927Z patching file kernel/stackleak.c
2025-10-02T15:24:52.4084374Z patching file kernel/static_call.c
2025-10-02T15:24:52.4086537Z patching file kernel/sys.c
2025-10-02T15:24:52.4089900Z patching file kernel/sys_ni.c
2025-10-02T15:24:52.4091851Z patching file kernel/sysctl.c
2025-10-02T15:24:52.4097056Z patching file kernel/task_work.c
2025-10-02T15:24:52.4098615Z patching file kernel/time/alarmtimer.c
2025-10-02T15:24:52.4100770Z patching file kernel/time/clocksource.c
2025-10-02T15:24:52.4104171Z patching file kernel/time/hrtimer.c
2025-10-02T15:24:52.4107895Z patching file kernel/time/jiffies.c
2025-10-02T15:24:52.4110036Z patching file kernel/time/ntp.c
2025-10-02T15:24:52.4110653Z patching file kernel/time/posix-clock.c
2025-10-02T15:24:52.4112054Z patching file kernel/time/posix-cpu-timers.c
2025-10-02T15:24:52.4114344Z patching file kernel/time/posix-stubs.c
2025-10-02T15:24:52.4115794Z patching file kernel/time/posix-timers.c
2025-10-02T15:24:52.4118163Z patching file kernel/time/tick-broadcast.c
2025-10-02T15:24:52.4119935Z patching file kernel/time/tick-common.c
2025-10-02T15:24:52.4121453Z patching file kernel/time/tick-internal.h
2025-10-02T15:24:52.4122719Z patching file kernel/time/tick-sched.c
2025-10-02T15:24:52.4125113Z patching file kernel/time/tick-sched.h
2025-10-02T15:24:52.4125769Z patching file kernel/time/time.c
2025-10-02T15:24:52.4127474Z patching file kernel/time/timekeeping.c
2025-10-02T15:24:52.4129977Z patching file kernel/time/timer.c
2025-10-02T15:24:52.4133436Z patching file kernel/torture.c
2025-10-02T15:24:52.4135140Z patching file kernel/trace/Kconfig
2025-10-02T15:24:52.4136945Z patching file kernel/trace/blktrace.c
2025-10-02T15:24:52.4139928Z patching file kernel/trace/bpf_trace.c
2025-10-02T15:24:52.4142781Z patching file kernel/trace/fgraph.c
2025-10-02T15:24:52.4145807Z patching file kernel/trace/ftrace.c
2025-10-02T15:24:52.4151783Z patching file kernel/trace/kprobe_event_gen_test.c
2025-10-02T15:24:52.4152866Z patching file kernel/trace/preemptirq_delay_test.c
2025-10-02T15:24:52.4155388Z patching file kernel/trace/ring_buffer.c
2025-10-02T15:24:52.4161917Z patching file kernel/trace/synth_event_gen_test.c
2025-10-02T15:24:52.4165358Z patching file kernel/trace/trace.c
2025-10-02T15:24:52.4174735Z patching file kernel/trace/trace.h
2025-10-02T15:24:52.4177607Z patching file kernel/trace/trace_boot.c
2025-10-02T15:24:52.4178530Z patching file kernel/trace/trace_clock.c
2025-10-02T15:24:52.4179872Z patching file kernel/trace/trace_dynevent.c
2025-10-02T15:24:52.4181299Z patching file kernel/trace/trace_event_perf.c
2025-10-02T15:24:52.4183508Z patching file kernel/trace/trace_events.c
2025-10-02T15:24:52.4187257Z patching file kernel/trace/trace_events_filter.c
2025-10-02T15:24:52.4191217Z patching file kernel/trace/trace_events_hist.c
2025-10-02T15:24:52.4195655Z patching file kernel/trace/trace_events_inject.c
2025-10-02T15:24:52.4196839Z patching file kernel/trace/trace_events_synth.c
2025-10-02T15:24:52.4200061Z patching file kernel/trace/trace_events_trigger.c
2025-10-02T15:24:52.4202390Z patching file kernel/trace/trace_functions.c
2025-10-02T15:24:52.4203935Z patching file kernel/trace/trace_functions_graph.c
2025-10-02T15:24:52.4205722Z patching file kernel/trace/trace_irqsoff.c
2025-10-02T15:24:52.4207585Z patching file kernel/trace/trace_kprobe.c
2025-10-02T15:24:52.4211406Z patching file kernel/trace/trace_output.c
2025-10-02T15:24:52.4213115Z patching file kernel/trace/trace_preemptirq.c
2025-10-02T15:24:52.4214052Z patching file kernel/trace/trace_probe.c
2025-10-02T15:24:52.4216046Z patching file kernel/trace/trace_probe.h
2025-10-02T15:24:52.4217098Z patching file kernel/trace/trace_probe_tmpl.h
2025-10-02T15:24:52.4218719Z patching file kernel/trace/trace_selftest.c
2025-10-02T15:24:52.4220180Z patching file kernel/trace/trace_synth.h
2025-10-02T15:24:52.4221674Z patching file kernel/trace/trace_uprobe.c
2025-10-02T15:24:52.4223822Z patching file kernel/trace/tracing_map.c
2025-10-02T15:24:52.4225972Z patching file kernel/tracepoint.c
2025-10-02T15:24:52.4228312Z patching file kernel/tsacct.c
2025-10-02T15:24:52.4228996Z patching file kernel/ucount.c
2025-10-02T15:24:52.4229962Z patching file kernel/up.c
2025-10-02T15:24:52.4231426Z patching file kernel/user_namespace.c
2025-10-02T15:24:52.4233445Z patching file kernel/usermode_driver.c
2025-10-02T15:24:52.4234372Z patching file kernel/watch_queue.c
2025-10-02T15:24:52.4236694Z patching file kernel/watchdog.c
2025-10-02T15:24:52.4238652Z patching file kernel/watchdog_hld.c
2025-10-02T15:24:52.4241435Z patching file kernel/workqueue.c
2025-10-02T15:24:52.4246530Z patching file lib/842/842_compress.c
2025-10-02T15:24:52.4247608Z patching file lib/Kconfig
2025-10-02T15:24:52.4249848Z patching file lib/Kconfig.debug
2025-10-02T15:24:52.4252695Z patching file lib/Makefile
2025-10-02T15:24:52.4254229Z patching file lib/assoc_array.c
2025-10-02T15:24:52.4256612Z patching file lib/bitmap.c
2025-10-02T15:24:52.4258498Z patching file lib/bug.c
2025-10-02T15:24:52.4259285Z patching file lib/clz_ctz.c
2025-10-02T15:24:52.4260546Z patching file lib/cpu_rmap.c
2025-10-02T15:24:52.4261635Z patching file lib/cpumask.c
2025-10-02T15:24:52.4262920Z patching file lib/crypto/Kconfig
2025-10-02T15:24:52.4263896Z patching file lib/crypto/Makefile
2025-10-02T15:24:52.4264736Z patching file lib/crypto/blake2s-generic.c
2025-10-02T15:24:52.4265639Z patching file lib/crypto/blake2s-selftest.c
2025-10-02T15:24:52.4267289Z patching file lib/crypto/blake2s.c
2025-10-02T15:24:52.4268204Z patching file lib/crypto/poly1305-donna32.c
2025-10-02T15:24:52.4269121Z patching file lib/crypto/poly1305-donna64.c
2025-10-02T15:24:52.4269995Z patching file lib/crypto/poly1305.c
2025-10-02T15:24:52.4270961Z patching file lib/debug_locks.c
2025-10-02T15:24:52.4272154Z patching file lib/debugobjects.c
2025-10-02T15:24:52.4275509Z patching file lib/decompress_bunzip2.c
2025-10-02T15:24:52.4276615Z patching file lib/decompress_unlz4.c
2025-10-02T15:24:52.4277886Z patching file lib/decompress_unxz.c
2025-10-02T15:24:52.4278764Z patching file lib/dim/dim.c
2025-10-02T15:24:52.4279828Z patching file lib/dim/net_dim.c
2025-10-02T15:24:52.4280931Z patching file lib/dim/rdma_dim.c
2025-10-02T15:24:52.4282062Z patching file lib/dynamic_debug.c
2025-10-02T15:24:52.4284054Z patching file lib/dynamic_queue_limits.c
2025-10-02T15:24:52.4284802Z patching file lib/errname.c
2025-10-02T15:24:52.4286001Z patching file lib/fonts/fonts.c
2025-10-02T15:24:52.4287306Z patching file lib/genalloc.c
2025-10-02T15:24:52.4289237Z patching file lib/generic-radix-tree.c
2025-10-02T15:24:52.4290214Z patching file lib/hexdump.c
2025-10-02T15:24:52.4291819Z patching file lib/idr.c
2025-10-02T15:24:52.4293641Z patching file lib/iov_iter.c
2025-10-02T15:24:52.4296321Z patching file lib/kobject.c
2025-10-02T15:24:52.4298204Z patching file lib/kobject_uevent.c
2025-10-02T15:24:52.4299884Z patching file lib/kstrtox.c
2025-10-02T15:24:52.4301011Z patching file lib/kstrtox.h
2025-10-02T15:24:52.4301881Z patching file lib/kunit/try-catch.c
2025-10-02T15:24:52.4302834Z patching file lib/list_debug.c
2025-10-02T15:24:52.4303827Z patching file lib/list_sort.c
2025-10-02T15:24:52.4305260Z patching file lib/livepatch/test_klp_callbacks_busy.c
2025-10-02T15:24:52.4306721Z patching file lib/locking-selftest.c
2025-10-02T15:24:52.4309144Z patching file lib/lockref.c
2025-10-02T15:24:52.4309900Z patching file lib/logic_pio.c
2025-10-02T15:24:52.4311542Z patching file lib/lz4/lz4_decompress.c
2025-10-02T15:24:52.4312714Z patching file lib/lz4/lz4defs.h
2025-10-02T15:24:52.4313739Z patching file lib/math/div64.c
2025-10-02T15:24:52.4314668Z patching file lib/math/prime_numbers.c
2025-10-02T15:24:52.4315606Z patching file lib/math/rational.c
2025-10-02T15:24:52.4316596Z patching file lib/memneq.c
2025-10-02T15:24:52.4319075Z patching file lib/mpi/ec.c
2025-10-02T15:24:52.4321021Z patching file lib/mpi/mpi-cmp.c
2025-10-02T15:24:52.4321523Z patching file lib/mpi/mpi-mod.c
2025-10-02T15:24:52.4322535Z patching file lib/mpi/mpicoder.c
2025-10-02T15:24:52.4323699Z patching file lib/mpi/mpiutil.c
2025-10-02T15:24:52.4325285Z patching file lib/nlattr.c
2025-10-02T15:24:52.4327002Z patching file lib/nodemask.c
2025-10-02T15:24:52.4327613Z patching file lib/notifier-error-inject.c
2025-10-02T15:24:52.4328839Z patching file lib/objagg.c
2025-10-02T15:24:52.4330673Z patching file lib/once.c
2025-10-02T15:24:52.4331728Z patching file lib/parser.c
2025-10-02T15:24:52.4332995Z patching file lib/percpu-refcount.c
2025-10-02T15:24:52.4334721Z patching file lib/radix-tree.c
2025-10-02T15:24:52.4336548Z patching file lib/raid6/Makefile
2025-10-02T15:24:52.4337050Z patching file lib/raid6/test/Makefile
2025-10-02T15:24:52.4337859Z patching file lib/raid6/test/test.c
2025-10-02T15:24:52.4339164Z patching file lib/random32.c
2025-10-02T15:24:52.4340741Z patching file lib/ratelimit.c
2025-10-02T15:24:52.4341775Z patching file lib/seq_buf.c
2025-10-02T15:24:52.4343104Z patching file lib/sg_split.c
2025-10-02T15:24:52.4344050Z patching file lib/sha1.c
2025-10-02T15:24:52.4345759Z patching file lib/siphash.c
2025-10-02T15:24:52.4347477Z patching file lib/smp_processor_id.c
2025-10-02T15:24:52.4348398Z patching file lib/stackdepot.c
2025-10-02T15:24:52.4350124Z patching file lib/string_helpers.c
2025-10-02T15:24:52.4351250Z patching file lib/test_blackhole_dev.c
2025-10-02T15:24:52.4353786Z patching file lib/test_bpf.c
2025-10-02T15:24:52.4357638Z patching file lib/test_firmware.c
2025-10-02T15:24:52.4360415Z patching file lib/test_hmm.c
2025-10-02T15:24:52.4362265Z patching file lib/test_ida.c
2025-10-02T15:24:52.4363346Z patching file lib/test_kasan.c
2025-10-02T15:24:52.4365493Z patching file lib/test_kmod.c
2025-10-02T15:24:52.4367366Z patching file lib/test_list_sort.c
2025-10-02T15:24:52.4368162Z patching file lib/test_lockup.c
2025-10-02T15:24:52.4369936Z patching file lib/test_meminit.c
2025-10-02T15:24:52.4371291Z patching file lib/test_objagg.c
2025-10-02T15:24:52.4373126Z patching file lib/test_overflow.c
2025-10-02T15:24:52.4375100Z patching file lib/test_stackinit.c
2025-10-02T15:24:52.4375885Z patching file lib/test_ubsan.c
2025-10-02T15:24:52.4378248Z patching file lib/test_xarray.c
2025-10-02T15:24:52.4380601Z patching file lib/ts_bm.c
2025-10-02T15:24:52.4381532Z patching file lib/ubsan.c
2025-10-02T15:24:52.4382699Z patching file lib/ubsan.h
2025-10-02T15:24:52.4383629Z patching file lib/usercopy.c
2025-10-02T15:24:52.4384536Z patching file lib/vdso/Makefile
2025-10-02T15:24:52.4385331Z patching file lib/vdso/gettimeofday.c
2025-10-02T15:24:52.4387608Z patching file lib/vsprintf.c
2025-10-02T15:24:52.4391191Z patching file lib/xarray.c
2025-10-02T15:24:52.4393365Z patching file lib/xz/xz_crc32.c
2025-10-02T15:24:52.4394180Z patching file lib/xz/xz_dec_lzma2.c
2025-10-02T15:24:52.4396146Z patching file lib/xz/xz_dec_stream.c
2025-10-02T15:24:52.4397044Z patching file lib/xz/xz_private.h
2025-10-02T15:24:52.4398116Z patching file lib/zlib_dfltcc/Makefile
2025-10-02T15:24:52.4398758Z patching file lib/zlib_dfltcc/dfltcc.c
2025-10-02T15:24:52.4399900Z patching file lib/zlib_dfltcc/dfltcc_deflate.c
2025-10-02T15:24:52.4400989Z patching file lib/zlib_dfltcc/dfltcc_inflate.c
2025-10-02T15:24:52.4401799Z patching file lib/zlib_dfltcc/dfltcc_syms.c
2025-10-02T15:24:52.4403286Z patching file mm/backing-dev.c
2025-10-02T15:24:52.4405098Z patching file mm/cma.c
2025-10-02T15:24:52.4407109Z patching file mm/compaction.c
2025-10-02T15:24:52.4410471Z patching file mm/debug_vm_pgtable.c
2025-10-02T15:24:52.4413740Z patching file mm/filemap.c
2025-10-02T15:24:52.4416655Z patching file mm/frame_vector.c
2025-10-02T15:24:52.4418606Z patching file mm/gup.c
2025-10-02T15:24:52.4423307Z patching file mm/hmm.c
2025-10-02T15:24:52.4425309Z patching file mm/huge_memory.c
2025-10-02T15:24:52.4431457Z patching file mm/hugetlb.c
2025-10-02T15:24:52.4439100Z patching file mm/hugetlb_cgroup.c
2025-10-02T15:24:52.4440781Z patching file mm/init-mm.c
2025-10-02T15:24:52.4441480Z patching file mm/internal.h
2025-10-02T15:24:52.4443476Z patching file mm/kasan/init.c
2025-10-02T15:24:52.4444417Z patching file mm/kasan/quarantine.c
2025-10-02T15:24:52.4445464Z patching file mm/kasan/report.c
2025-10-02T15:24:52.4447458Z patching file mm/khugepaged.c
2025-10-02T15:24:52.4451247Z patching file mm/kmemleak.c
2025-10-02T15:24:52.4454732Z patching file mm/ksm.c
2025-10-02T15:24:52.4457344Z patching file mm/maccess.c
2025-10-02T15:24:52.4458521Z patching file mm/madvise.c
2025-10-02T15:24:52.4461842Z patching file mm/memblock.c
2025-10-02T15:24:52.4465529Z patching file mm/memcontrol.c
2025-10-02T15:24:52.4472511Z patching file mm/memfd.c
2025-10-02T15:24:52.4474236Z patching file mm/memory-failure.c
2025-10-02T15:24:52.4478901Z patching file mm/memory.c
2025-10-02T15:24:52.4485088Z patching file mm/memory_hotplug.c
2025-10-02T15:24:52.4488451Z patching file mm/mempolicy.c
2025-10-02T15:24:52.4491800Z patching file mm/memremap.c
2025-10-02T15:24:52.4493123Z patching file mm/memtest.c
2025-10-02T15:24:52.4494708Z patching file mm/migrate.c
2025-10-02T15:24:52.4498136Z patching file mm/mincore.c
2025-10-02T15:24:52.4500081Z patching file mm/mmap.c
2025-10-02T15:24:52.4504330Z patching file mm/mmu_gather.c
2025-10-02T15:24:52.4505929Z patching file mm/mmu_notifier.c
2025-10-02T15:24:52.4507606Z patching file mm/mmzone.c
2025-10-02T15:24:52.4508676Z patching file mm/mprotect.c
2025-10-02T15:24:52.4510380Z patching file mm/mremap.c
2025-10-02T15:24:52.4512052Z patching file mm/nommu.c
2025-10-02T15:24:52.4514489Z patching file mm/oom_kill.c
2025-10-02T15:24:52.4517539Z patching file mm/page-writeback.c
2025-10-02T15:24:52.4522942Z patching file mm/page_alloc.c
2025-10-02T15:24:52.4532190Z patching file mm/page_io.c
2025-10-02T15:24:52.4533562Z patching file mm/page_vma_mapped.c
2025-10-02T15:24:52.4535783Z patching file mm/pagewalk.c
2025-10-02T15:24:52.4537121Z patching file mm/percpu-internal.h
2025-10-02T15:24:52.4538160Z patching file mm/percpu-stats.c
2025-10-02T15:24:52.4540399Z patching file mm/percpu.c
2025-10-02T15:24:52.4543235Z patching file mm/pgtable-generic.c
2025-10-02T15:24:52.4544631Z patching file mm/process_vm_access.c
2025-10-02T15:24:52.4545348Z patching file mm/ptdump.c
2025-10-02T15:24:52.4546693Z patching file mm/readahead.c
2025-10-02T15:24:52.4548365Z patching file mm/rmap.c
2025-10-02T15:24:52.4552799Z patching file mm/shmem.c
2025-10-02T15:24:52.4558364Z patching file mm/slab.c
2025-10-02T15:24:52.4561466Z patching file mm/slab.h
2025-10-02T15:24:52.4563117Z patching file mm/slab_common.c
2025-10-02T15:24:52.4565096Z patching file mm/slob.c
2025-10-02T15:24:52.4567737Z patching file mm/slub.c
2025-10-02T15:24:52.4573549Z patching file mm/sparse.c
2025-10-02T15:24:52.4575291Z patching file mm/swap_state.c
2025-10-02T15:24:52.4577625Z patching file mm/swapfile.c
2025-10-02T15:24:52.4582638Z patching file mm/truncate.c
2025-10-02T15:24:52.4584276Z patching file mm/usercopy.c
2025-10-02T15:24:52.4585332Z patching file mm/userfaultfd.c
2025-10-02T15:24:52.4587050Z patching file mm/util.c
2025-10-02T15:24:52.4589964Z patching file mm/vmalloc.c
2025-10-02T15:24:52.4594251Z patching file mm/vmscan.c
2025-10-02T15:24:52.4599086Z patching file mm/vmstat.c
2025-10-02T15:24:52.4601195Z patching file mm/z3fold.c
2025-10-02T15:24:52.4604440Z patching file mm/zsmalloc.c
2025-10-02T15:24:52.4607152Z patching file net/6lowpan/debugfs.c
2025-10-02T15:24:52.4607970Z patching file net/802/garp.c
2025-10-02T15:24:52.4609716Z patching file net/802/mrp.c
2025-10-02T15:24:52.4611378Z patching file net/802/psnap.c
2025-10-02T15:24:52.4612246Z patching file net/8021q/vlan.c
2025-10-02T15:24:52.4613956Z patching file net/8021q/vlan.h
2025-10-02T15:24:52.4614849Z patching file net/8021q/vlan_core.c
2025-10-02T15:24:52.4616458Z patching file net/8021q/vlan_dev.c
2025-10-02T15:24:52.4618112Z patching file net/8021q/vlan_netlink.c
2025-10-02T15:24:52.4619807Z patching file net/9p/client.c
2025-10-02T15:24:52.4622262Z patching file net/9p/protocol.c
2025-10-02T15:24:52.4623499Z patching file net/9p/trans_fd.c
2025-10-02T15:24:52.4625461Z patching file net/9p/trans_rdma.c
2025-10-02T15:24:52.4626978Z patching file net/9p/trans_virtio.c
2025-10-02T15:24:52.4628193Z patching file net/9p/trans_xen.c
2025-10-02T15:24:52.4630025Z patching file net/Kconfig
2025-10-02T15:24:52.4631452Z patching file net/Makefile
2025-10-02T15:24:52.4632331Z patching file net/appletalk/aarp.c
2025-10-02T15:24:52.4634589Z patching file net/appletalk/ddp.c
2025-10-02T15:24:52.4636933Z patching file net/atm/clip.c
2025-10-02T15:24:52.4638848Z patching file net/atm/common.c
2025-10-02T15:24:52.4640522Z patching file net/atm/ioctl.c
2025-10-02T15:24:52.4642095Z patching file net/atm/lec.c
2025-10-02T15:24:52.4644685Z patching file net/atm/mpc.c
2025-10-02T15:24:52.4646434Z patching file net/atm/mpoa_proc.c
2025-10-02T15:24:52.4647187Z patching file net/atm/raw.c
2025-10-02T15:24:52.4648052Z patching file net/atm/resources.c
2025-10-02T15:24:52.4649975Z patching file net/ax25/af_ax25.c
2025-10-02T15:24:52.4652450Z patching file net/ax25/ax25_dev.c
2025-10-02T15:24:52.4653476Z patching file net/ax25/ax25_in.c
2025-10-02T15:24:52.4654561Z patching file net/ax25/ax25_route.c
2025-10-02T15:24:52.4656038Z patching file net/ax25/ax25_subr.c
2025-10-02T15:24:52.4657981Z patching file net/batman-adv/bat_iv_ogm.c
2025-10-02T15:24:52.4660756Z patching file net/batman-adv/bat_v.c
2025-10-02T15:24:52.4662339Z patching file net/batman-adv/bat_v_elp.c
2025-10-02T15:24:52.4664395Z patching file net/batman-adv/bat_v_elp.h
2025-10-02T15:24:52.4665283Z patching file net/batman-adv/bat_v_ogm.c
2025-10-02T15:24:52.4667881Z patching file net/batman-adv/bridge_loop_avoidance.c
2025-10-02T15:24:52.4670811Z patching file net/batman-adv/distributed-arp-table.c
2025-10-02T15:24:52.4672888Z patching file net/batman-adv/fragmentation.c
2025-10-02T15:24:52.4674197Z patching file net/batman-adv/gateway_client.c
2025-10-02T15:24:52.4675467Z patching file net/batman-adv/gateway_client.h
2025-10-02T15:24:52.4676422Z patching file net/batman-adv/gateway_common.c
2025-10-02T15:24:52.4677616Z patching file net/batman-adv/hard-interface.c
2025-10-02T15:24:52.4680007Z patching file net/batman-adv/hard-interface.h
2025-10-02T15:24:52.4680463Z patching file net/batman-adv/icmp_socket.c
2025-10-02T15:24:52.4681630Z patching file net/batman-adv/main.c
2025-10-02T15:24:52.4683862Z patching file net/batman-adv/multicast.c
2025-10-02T15:24:52.4686309Z patching file net/batman-adv/multicast.h
2025-10-02T15:24:52.4687389Z patching file net/batman-adv/netlink.c
2025-10-02T15:24:52.4690188Z patching file net/batman-adv/network-coding.c
2025-10-02T15:24:52.4692732Z patching file net/batman-adv/originator.c
2025-10-02T15:24:52.4695012Z patching file net/batman-adv/originator.h
2025-10-02T15:24:52.4696742Z patching file net/batman-adv/soft-interface.c
2025-10-02T15:24:52.4698587Z patching file net/batman-adv/soft-interface.h
2025-10-02T15:24:52.4699786Z patching file net/batman-adv/tp_meter.c
2025-10-02T15:24:52.4702993Z patching file net/batman-adv/translation-table.c
2025-10-02T15:24:52.4706692Z patching file net/batman-adv/translation-table.h
2025-10-02T15:24:52.4707474Z patching file net/batman-adv/tvlv.c
2025-10-02T15:24:52.4709444Z patching file net/batman-adv/types.h
2025-10-02T15:24:52.4712063Z patching file net/bluetooth/6lowpan.c
2025-10-02T15:24:52.4713997Z patching file net/bluetooth/a2mp.c
2025-10-02T15:24:52.4715235Z patching file net/bluetooth/af_bluetooth.c
2025-10-02T15:24:52.4716936Z patching file net/bluetooth/amp.c
2025-10-02T15:24:52.4718031Z patching file net/bluetooth/bnep/core.c
2025-10-02T15:24:52.4719682Z patching file net/bluetooth/cmtp/cmtp.h
2025-10-02T15:24:52.4720465Z patching file net/bluetooth/cmtp/core.c
2025-10-02T15:24:52.4721670Z patching file net/bluetooth/ecdh_helper.h
2025-10-02T15:24:52.4722908Z patching file net/bluetooth/hci_conn.c
2025-10-02T15:24:52.4726538Z patching file net/bluetooth/hci_core.c
2025-10-02T15:24:52.4731054Z patching file net/bluetooth/hci_debugfs.c
2025-10-02T15:24:52.4734452Z patching file net/bluetooth/hci_event.c
2025-10-02T15:24:52.4741628Z patching file net/bluetooth/hci_request.c
2025-10-02T15:24:52.4745920Z patching file net/bluetooth/hci_sock.c
2025-10-02T15:24:52.4748379Z patching file net/bluetooth/hci_sysfs.c
2025-10-02T15:24:52.4749741Z patching file net/bluetooth/hidp/core.c
2025-10-02T15:24:52.4753669Z patching file net/bluetooth/l2cap_core.c
2025-10-02T15:24:52.4760792Z patching file net/bluetooth/l2cap_sock.c
2025-10-02T15:24:52.4765585Z patching file net/bluetooth/mgmt.c
2025-10-02T15:24:52.4770849Z patching file net/bluetooth/mgmt_config.c
2025-10-02T15:24:52.4772298Z patching file net/bluetooth/rfcomm/core.c
2025-10-02T15:24:52.4774656Z patching file net/bluetooth/rfcomm/sock.c
2025-10-02T15:24:52.4776670Z patching file net/bluetooth/sco.c
2025-10-02T15:24:52.4780132Z patching file net/bluetooth/smp.c
2025-10-02T15:24:52.4785194Z patching file net/bluetooth/smp.h
2025-10-02T15:24:52.4786095Z patching file net/bpf/test_run.c
2025-10-02T15:24:52.4788612Z patching file net/bpfilter/main.c
2025-10-02T15:24:52.4789216Z patching file net/bridge/br.c
2025-10-02T15:24:52.4790624Z patching file net/bridge/br_arp_nd_proxy.c
2025-10-02T15:24:52.4791769Z patching file net/bridge/br_device.c
2025-10-02T15:24:52.4793237Z patching file net/bridge/br_fdb.c
2025-10-02T15:24:52.4795186Z patching file net/bridge/br_forward.c
2025-10-02T15:24:52.4796192Z patching file net/bridge/br_if.c
2025-10-02T15:24:52.4797914Z patching file net/bridge/br_input.c
2025-10-02T15:24:52.4799096Z patching file net/bridge/br_mrp.c
2025-10-02T15:24:52.4801254Z patching file net/bridge/br_mrp_switchdev.c
2025-10-02T15:24:52.4803144Z patching file net/bridge/br_multicast.c
2025-10-02T15:24:52.4806278Z patching file net/bridge/br_netfilter_hooks.c
2025-10-02T15:24:52.4808129Z patching file net/bridge/br_netfilter_ipv6.c
2025-10-02T15:24:52.4809137Z patching file net/bridge/br_netlink.c
2025-10-02T15:24:52.4811369Z patching file net/bridge/br_nf_core.c
2025-10-02T15:24:52.4812313Z patching file net/bridge/br_private.h
2025-10-02T15:24:52.4814377Z patching file net/bridge/br_private_mrp.h
2025-10-02T15:24:52.4814858Z patching file net/bridge/br_private_tunnel.h
2025-10-02T15:24:52.4816173Z patching file net/bridge/br_stp_if.c
2025-10-02T15:24:52.4816868Z patching file net/bridge/br_switchdev.c
2025-10-02T15:24:52.4817810Z patching file net/bridge/br_sysfs_if.c
2025-10-02T15:24:52.4819841Z patching file net/bridge/br_vlan.c
2025-10-02T15:24:52.4822043Z patching file net/bridge/br_vlan_tunnel.c
2025-10-02T15:24:52.4823149Z patching file net/bridge/netfilter/ebtable_broute.c
2025-10-02T15:24:52.4824050Z patching file net/bridge/netfilter/ebtable_filter.c
2025-10-02T15:24:52.4824922Z patching file net/bridge/netfilter/ebtable_nat.c
2025-10-02T15:24:52.4826623Z patching file net/bridge/netfilter/ebtables.c
2025-10-02T15:24:52.4829124Z patching file net/bridge/netfilter/nf_conntrack_bridge.c
2025-10-02T15:24:52.4830133Z patching file net/bridge/netfilter/nft_meta_bridge.c
2025-10-02T15:24:52.4831159Z patching file net/bridge/netfilter/nft_reject_bridge.c
2025-10-02T15:24:52.4832682Z patching file net/caif/caif_dev.c
2025-10-02T15:24:52.4834225Z patching file net/caif/caif_socket.c
2025-10-02T15:24:52.4835644Z patching file net/caif/caif_usb.c
2025-10-02T15:24:52.4836697Z patching file net/caif/cfcnfg.c
2025-10-02T15:24:52.4838267Z patching file net/caif/cfctrl.c
2025-10-02T15:24:52.4840364Z patching file net/caif/cfserl.c
2025-10-02T15:24:52.4841245Z patching file net/caif/chnl_net.c
2025-10-02T15:24:52.4842989Z patching file net/can/af_can.c
2025-10-02T15:24:52.4844928Z patching file net/can/af_can.h
2025-10-02T15:24:52.4845918Z patching file net/can/bcm.c
2025-10-02T15:24:52.4849651Z patching file net/can/gw.c
2025-10-02T15:24:52.4852372Z patching file net/can/isotp.c
2025-10-02T15:24:52.4856410Z patching file net/can/j1939/address-claim.c
2025-10-02T15:24:52.4857261Z patching file net/can/j1939/bus.c
2025-10-02T15:24:52.4858231Z patching file net/can/j1939/j1939-priv.h
2025-10-02T15:24:52.4859339Z patching file net/can/j1939/main.c
2025-10-02T15:24:52.4861741Z patching file net/can/j1939/socket.c
2025-10-02T15:24:52.4864222Z patching file net/can/j1939/transport.c
2025-10-02T15:24:52.4867244Z patching file net/can/proc.c
2025-10-02T15:24:52.4868888Z patching file net/can/raw.c
2025-10-02T15:24:52.4872014Z patching file net/ceph/messenger.c
2025-10-02T15:24:52.4874861Z patching file net/ceph/mon_client.c
2025-10-02T15:24:52.4877913Z patching file net/ceph/osd_client.c
2025-10-02T15:24:52.4882616Z patching file net/compat.c
2025-10-02T15:24:52.4883549Z patching file net/core/Makefile
2025-10-02T15:24:52.4884634Z patching file net/core/bpf_sk_storage.c
2025-10-02T15:24:52.4886546Z patching file net/core/datagram.c
2025-10-02T15:24:52.4890834Z patching file net/core/dev.c
2025-10-02T15:24:52.4898470Z patching file net/core/dev_ioctl.c
2025-10-02T15:24:52.4902449Z patching file net/core/devlink.c
2025-10-02T15:24:52.4908392Z patching file net/core/drop_monitor.c
2025-10-02T15:24:52.4910982Z patching file net/core/dst.c
2025-10-02T15:24:52.4912453Z patching file net/core/dst_cache.c
2025-10-02T15:24:52.4913488Z patching file net/core/fib_rules.c
2025-10-02T15:24:52.4917732Z patching file net/core/filter.c
2025-10-02T15:24:52.4925681Z patching file net/core/flow_dissector.c
2025-10-02T15:24:52.4928231Z patching file net/core/flow_offload.c
2025-10-02T15:24:52.4929868Z patching file net/core/gen_estimator.c
2025-10-02T15:24:52.4930735Z patching file net/core/gro_cells.c
2025-10-02T15:24:52.4931650Z patching file net/core/link_watch.c
2025-10-02T15:24:52.4932862Z patching file net/core/lwt_bpf.c
2025-10-02T15:24:52.4934446Z patching file net/core/lwtunnel.c
2025-10-02T15:24:52.4936393Z patching file net/core/neighbour.c
2025-10-02T15:24:52.4940310Z patching file net/core/net-procfs.c
2025-10-02T15:24:52.4942137Z patching file net/core/net-sysfs.c
2025-10-02T15:24:52.4944984Z patching file net/core/net_namespace.c
2025-10-02T15:24:52.4947451Z patching file net/core/netclassid_cgroup.c
2025-10-02T15:24:52.4948239Z patching file net/core/netpoll.c
2025-10-02T15:24:52.4950119Z patching file net/core/netprio_cgroup.c
2025-10-02T15:24:52.4951256Z patching file net/core/page_pool.c
2025-10-02T15:24:52.4953801Z patching file net/core/pktgen.c
2025-10-02T15:24:52.4956587Z patching file net/core/request_sock.c
2025-10-02T15:24:52.4958743Z patching file net/core/rtnetlink.c
2025-10-02T15:24:52.4963326Z patching file net/core/scm.c
2025-10-02T15:24:52.4964167Z patching file net/core/secure_seq.c
2025-10-02T15:24:52.4966989Z patching file net/core/skbuff.c
2025-10-02T15:24:52.4972154Z patching file net/core/skmsg.c
2025-10-02T15:24:52.4975422Z patching file net/core/sock.c
2025-10-02T15:24:52.4980091Z patching file net/core/sock_destructor.h
2025-10-02T15:24:52.4981192Z patching file net/core/sock_diag.c
2025-10-02T15:24:52.4983023Z patching file net/core/sock_map.c
2025-10-02T15:24:52.4985200Z patching file net/core/sock_reuseport.c
2025-10-02T15:24:52.4986157Z patching file net/core/stream.c
2025-10-02T15:24:52.4987622Z patching file net/core/sysctl_net_core.c
2025-10-02T15:24:52.4989103Z patching file net/core/utils.c
2025-10-02T15:24:52.4990383Z patching file net/core/xdp.c
2025-10-02T15:24:52.4992726Z patching file net/dcb/dcbnl.c
2025-10-02T15:24:52.5004269Z patching file net/dccp/dccp.h
2025-10-02T15:24:52.5004692Z patching file net/dccp/feat.c
2025-10-02T15:24:52.5005048Z patching file net/dccp/ipv4.c
2025-10-02T15:24:52.5005377Z patching file net/dccp/ipv6.c
2025-10-02T15:24:52.5005732Z patching file net/dccp/minisocks.c
2025-10-02T15:24:52.5006074Z patching file net/dccp/output.c
2025-10-02T15:24:52.5006422Z patching file net/dccp/proto.c
2025-10-02T15:24:52.5006787Z patching file net/decnet/Kconfig
2025-10-02T15:24:52.5007782Z patching file net/decnet/Makefile
2025-10-02T15:24:52.5008361Z patching file net/decnet/README
2025-10-02T15:24:52.5009863Z patching file net/decnet/af_decnet.c
2025-10-02T15:24:52.5014491Z patching file net/decnet/dn_dev.c
2025-10-02T15:24:52.5017883Z patching file net/decnet/dn_fib.c
2025-10-02T15:24:52.5020591Z patching file net/decnet/dn_neigh.c
2025-10-02T15:24:52.5022861Z patching file net/decnet/dn_nsp_in.c
2025-10-02T15:24:52.5025462Z patching file net/decnet/dn_nsp_out.c
2025-10-02T15:24:52.5028085Z patching file net/decnet/dn_route.c
2025-10-02T15:24:52.5032352Z patching file net/decnet/dn_rules.c
2025-10-02T15:24:52.5033793Z patching file net/decnet/dn_table.c
2025-10-02T15:24:52.5036382Z patching file net/decnet/dn_timer.c
2025-10-02T15:24:52.5037316Z patching file net/decnet/netfilter/Kconfig
2025-10-02T15:24:52.5037922Z patching file net/decnet/netfilter/Makefile
2025-10-02T15:24:52.5039751Z patching file net/decnet/netfilter/dn_rtmsg.c
2025-10-02T15:24:52.5046168Z patching file net/decnet/sysctl_net_decnet.c
2025-10-02T15:24:52.5046552Z patching file net/dns_resolver/dns_key.c
2025-10-02T15:24:52.5046905Z patching file net/dsa/dsa2.c
2025-10-02T15:24:52.5047244Z patching file net/dsa/master.c
2025-10-02T15:24:52.5047591Z patching file net/dsa/port.c
2025-10-02T15:24:52.5047952Z patching file net/dsa/slave.c
2025-10-02T15:24:52.5052007Z patching file net/dsa/switch.c
2025-10-02T15:24:52.5052710Z patching file net/dsa/tag_8021q.c
2025-10-02T15:24:52.5053205Z patching file net/dsa/tag_ar9331.c
2025-10-02T15:24:52.5055255Z patching file net/dsa/tag_brcm.c
2025-10-02T15:24:52.5057585Z patching file net/dsa/tag_dsa.c
2025-10-02T15:24:52.5058770Z patching file net/dsa/tag_edsa.c
2025-10-02T15:24:52.5059102Z patching file net/dsa/tag_gswip.c
2025-10-02T15:24:52.5059428Z patching file net/dsa/tag_ksz.c
2025-10-02T15:24:52.5059903Z patching file net/dsa/tag_lan9303.c
2025-10-02T15:24:52.5060212Z patching file net/dsa/tag_mtk.c
2025-10-02T15:24:52.5060991Z patching file net/dsa/tag_ocelot.c
2025-10-02T15:24:52.5061538Z patching file net/dsa/tag_qca.c
2025-10-02T15:24:52.5061995Z patching file net/dsa/tag_rtl4_a.c
2025-10-02T15:24:52.5062455Z patching file net/dsa/tag_sja1105.c
2025-10-02T15:24:52.5067906Z patching file net/dsa/tag_trailer.c
2025-10-02T15:24:52.5068258Z patching file net/ethernet/eth.c
2025-10-02T15:24:52.5068873Z patching file net/ethtool/bitset.c
2025-10-02T15:24:52.5069216Z patching file net/ethtool/channels.c
2025-10-02T15:24:52.5070608Z patching file net/ethtool/common.c
2025-10-02T15:24:52.5071044Z patching file net/ethtool/eee.c
2025-10-02T15:24:52.5071422Z patching file net/ethtool/features.c
2025-10-02T15:24:52.5072613Z patching file net/ethtool/ioctl.c
2025-10-02T15:24:52.5075974Z patching file net/ethtool/linkstate.c
2025-10-02T15:24:52.5077352Z patching file net/ethtool/netlink.c
2025-10-02T15:24:52.5078211Z patching file net/ethtool/netlink.h
2025-10-02T15:24:52.5079962Z patching file net/ethtool/pause.c
2025-10-02T15:24:52.5080519Z patching file net/ethtool/strset.c
2025-10-02T15:24:52.5081967Z patching file net/hsr/hsr_device.c
2025-10-02T15:24:52.5083823Z patching file net/hsr/hsr_forward.c
2025-10-02T15:24:52.5085641Z patching file net/hsr/hsr_forward.h
2025-10-02T15:24:52.5086857Z patching file net/hsr/hsr_framereg.c
2025-10-02T15:24:52.5087546Z patching file net/hsr/hsr_framereg.h
2025-10-02T15:24:52.5088905Z patching file net/hsr/hsr_main.c
2025-10-02T15:24:52.5089940Z patching file net/hsr/hsr_main.h
2025-10-02T15:24:52.5090454Z patching file net/hsr/hsr_slave.c
2025-10-02T15:24:52.5091647Z patching file net/ieee802154/nl-mac.c
2025-10-02T15:24:52.5093484Z patching file net/ieee802154/nl-phy.c
2025-10-02T15:24:52.5094934Z patching file net/ieee802154/nl802154.c
2025-10-02T15:24:52.5098223Z patching file net/ieee802154/socket.c
2025-10-02T15:24:52.5100348Z patching file net/ife/ife.c
2025-10-02T15:24:52.5101451Z patching file net/ipv4/Kconfig
2025-10-02T15:24:52.5103001Z patching file net/ipv4/Makefile
2025-10-02T15:24:52.5104281Z patching file net/ipv4/af_inet.c
2025-10-02T15:24:52.5107687Z patching file net/ipv4/ah4.c
2025-10-02T15:24:52.5109390Z patching file net/ipv4/arp.c
2025-10-02T15:24:52.5111834Z patching file net/ipv4/cipso_ipv4.c
2025-10-02T15:24:52.5114414Z patching file net/ipv4/datagram.c
2025-10-02T15:24:52.5116105Z patching file net/ipv4/devinet.c
2025-10-02T15:24:52.5120596Z patching file net/ipv4/esp4.c
2025-10-02T15:24:52.5121880Z patching file net/ipv4/esp4_offload.c
2025-10-02T15:24:52.5123316Z patching file net/ipv4/fib_frontend.c
2025-10-02T15:24:52.5125684Z patching file net/ipv4/fib_rules.c
2025-10-02T15:24:52.5127242Z patching file net/ipv4/fib_semantics.c
2025-10-02T15:24:52.5132125Z patching file net/ipv4/fib_trie.c
2025-10-02T15:24:52.5135196Z patching file net/ipv4/fou.c
2025-10-02T15:24:52.5137272Z patching file net/ipv4/gre_demux.c
2025-10-02T15:24:52.5137985Z patching file net/ipv4/gre_offload.c
2025-10-02T15:24:52.5139747Z patching file net/ipv4/icmp.c
2025-10-02T15:24:52.5142587Z patching file net/ipv4/igmp.c
2025-10-02T15:24:52.5147422Z patching file net/ipv4/inet_connection_sock.c
2025-10-02T15:24:52.5150041Z patching file net/ipv4/inet_diag.c
2025-10-02T15:24:52.5151821Z patching file net/ipv4/inet_fragment.c
2025-10-02T15:24:52.5153946Z patching file net/ipv4/inet_hashtables.c
2025-10-02T15:24:52.5157145Z patching file net/ipv4/inet_timewait_sock.c
2025-10-02T15:24:52.5158147Z patching file net/ipv4/inetpeer.c
2025-10-02T15:24:52.5159252Z patching file net/ipv4/ip_forward.c
2025-10-02T15:24:52.5160551Z patching file net/ipv4/ip_fragment.c
2025-10-02T15:24:52.5162357Z patching file net/ipv4/ip_gre.c
2025-10-02T15:24:52.5165158Z patching file net/ipv4/ip_input.c
2025-10-02T15:24:52.5166902Z patching file net/ipv4/ip_output.c
2025-10-02T15:24:52.5170266Z patching file net/ipv4/ip_sockglue.c
2025-10-02T15:24:52.5173782Z patching file net/ipv4/ip_tunnel.c
2025-10-02T15:24:52.5176457Z patching file net/ipv4/ip_tunnel_core.c
2025-10-02T15:24:52.5178287Z patching file net/ipv4/ip_vti.c
2025-10-02T15:24:52.5180262Z patching file net/ipv4/ipconfig.c
2025-10-02T15:24:52.5183439Z patching file net/ipv4/ipmr.c
2025-10-02T15:24:52.5186825Z patching file net/ipv4/ipmr_base.c
2025-10-02T15:24:52.5187601Z patching file net/ipv4/metrics.c
2025-10-02T15:24:52.5188984Z patching file net/ipv4/netfilter/arp_tables.c
2025-10-02T15:24:52.5191839Z patching file net/ipv4/netfilter/arptable_filter.c
2025-10-02T15:24:52.5192538Z patching file net/ipv4/netfilter/ip_tables.c
2025-10-02T15:24:52.5195238Z patching file net/ipv4/netfilter/ipt_CLUSTERIP.c
2025-10-02T15:24:52.5196845Z patching file net/ipv4/netfilter/ipt_REJECT.c
2025-10-02T15:24:52.5197396Z patching file net/ipv4/netfilter/ipt_rpfilter.c
2025-10-02T15:24:52.5198144Z patching file net/ipv4/netfilter/nf_dup_ipv4.c
2025-10-02T15:24:52.5198989Z patching file net/ipv4/netfilter/nf_reject_ipv4.c
2025-10-02T15:24:52.5200300Z patching file net/ipv4/netfilter/nf_tproxy_ipv4.c
2025-10-02T15:24:52.5201146Z patching file net/ipv4/netfilter/nft_dup_ipv4.c
2025-10-02T15:24:52.5202688Z patching file net/ipv4/netfilter/nft_fib_ipv4.c
2025-10-02T15:24:52.5203718Z patching file net/ipv4/netfilter/nft_reject_ipv4.c
2025-10-02T15:24:52.5204272Z patching file net/ipv4/nexthop.c
2025-10-02T15:24:52.5207725Z patching file net/ipv4/ping.c
2025-10-02T15:24:52.5209629Z patching file net/ipv4/proc.c
2025-10-02T15:24:52.5211780Z patching file net/ipv4/raw.c
2025-10-02T15:24:52.5214209Z patching file net/ipv4/route.c
2025-10-02T15:24:52.5218961Z patching file net/ipv4/syncookies.c
2025-10-02T15:24:52.5221090Z patching file net/ipv4/sysctl_net_ipv4.c
2025-10-02T15:24:52.5225571Z patching file net/ipv4/tcp.c
2025-10-02T15:24:52.5232882Z patching file net/ipv4/tcp_bbr.c
2025-10-02T15:24:52.5234630Z patching file net/ipv4/tcp_bpf.c
2025-10-02T15:24:52.5236561Z patching file net/ipv4/tcp_cdg.c
2025-10-02T15:24:52.5237906Z patching file net/ipv4/tcp_cong.c
2025-10-02T15:24:52.5238968Z patching file net/ipv4/tcp_cubic.c
2025-10-02T15:24:52.5240524Z patching file net/ipv4/tcp_dctcp.c
2025-10-02T15:24:52.5241663Z patching file net/ipv4/tcp_fastopen.c
2025-10-02T15:24:52.5245213Z patching file net/ipv4/tcp_input.c
2025-10-02T15:24:52.5255457Z patching file net/ipv4/tcp_ipv4.c
2025-10-02T15:24:52.5260335Z patching file net/ipv4/tcp_metrics.c
2025-10-02T15:24:52.5262905Z patching file net/ipv4/tcp_minisocks.c
2025-10-02T15:24:52.5264623Z patching file net/ipv4/tcp_offload.c
2025-10-02T15:24:52.5267071Z patching file net/ipv4/tcp_output.c
2025-10-02T15:24:52.5271658Z patching file net/ipv4/tcp_rate.c
2025-10-02T15:24:52.5272536Z patching file net/ipv4/tcp_recovery.c
2025-10-02T15:24:52.5274085Z patching file net/ipv4/tcp_timer.c
2025-10-02T15:24:52.5276286Z patching file net/ipv4/tcp_ulp.c
2025-10-02T15:24:52.5278017Z patching file net/ipv4/udp.c
2025-10-02T15:24:52.5281843Z patching file net/ipv4/udp_bpf.c
2025-10-02T15:24:52.5282692Z patching file net/ipv4/udp_offload.c
2025-10-02T15:24:52.5285732Z patching file net/ipv4/udp_tunnel_core.c
2025-10-02T15:24:52.5286681Z patching file net/ipv4/udp_tunnel_nic.c
2025-10-02T15:24:52.5288382Z patching file net/ipv4/udplite.c
2025-10-02T15:24:52.5289139Z patching file net/ipv4/xfrm4_input.c
2025-10-02T15:24:52.5290340Z patching file net/ipv4/xfrm4_policy.c
2025-10-02T15:24:52.5291538Z patching file net/ipv4/xfrm4_protocol.c
2025-10-02T15:24:52.5292561Z patching file net/ipv6/Kconfig
2025-10-02T15:24:52.5295397Z patching file net/ipv6/addrconf.c
2025-10-02T15:24:52.5300811Z patching file net/ipv6/addrconf_core.c
2025-10-02T15:24:52.5301887Z patching file net/ipv6/addrlabel.c
2025-10-02T15:24:52.5304222Z patching file net/ipv6/af_inet6.c
2025-10-02T15:24:52.5306432Z patching file net/ipv6/ah6.c
2025-10-02T15:24:52.5307997Z patching file net/ipv6/calipso.c
2025-10-02T15:24:52.5310282Z patching file net/ipv6/datagram.c
2025-10-02T15:24:52.5312146Z patching file net/ipv6/esp6.c
2025-10-02T15:24:52.5314094Z patching file net/ipv6/esp6_offload.c
2025-10-02T15:24:52.5315598Z patching file net/ipv6/exthdrs.c
2025-10-02T15:24:52.5317558Z patching file net/ipv6/exthdrs_core.c
2025-10-02T15:24:52.5318401Z patching file net/ipv6/fib6_rules.c
2025-10-02T15:24:52.5320299Z patching file net/ipv6/icmp.c
2025-10-02T15:24:52.5322298Z patching file net/ipv6/ila/ila.h
2025-10-02T15:24:52.5322818Z patching file net/ipv6/ila/ila_common.c
2025-10-02T15:24:52.5323748Z patching file net/ipv6/ila/ila_lwt.c
2025-10-02T15:24:52.5324696Z patching file net/ipv6/ila/ila_main.c
2025-10-02T15:24:52.5325676Z patching file net/ipv6/ila/ila_xlat.c
2025-10-02T15:24:52.5327354Z patching file net/ipv6/inet6_connection_sock.c
2025-10-02T15:24:52.5328337Z patching file net/ipv6/inet6_hashtables.c
2025-10-02T15:24:52.5330644Z patching file net/ipv6/ip6_fib.c
2025-10-02T15:24:52.5333557Z patching file net/ipv6/ip6_flowlabel.c
2025-10-02T15:24:52.5335371Z patching file net/ipv6/ip6_gre.c
2025-10-02T15:24:52.5338113Z patching file net/ipv6/ip6_icmp.c
2025-10-02T15:24:52.5339056Z patching file net/ipv6/ip6_input.c
2025-10-02T15:24:52.5340945Z patching file net/ipv6/ip6_offload.c
2025-10-02T15:24:52.5342788Z patching file net/ipv6/ip6_output.c
2025-10-02T15:24:52.5346431Z patching file net/ipv6/ip6_tunnel.c
2025-10-02T15:24:52.5349449Z patching file net/ipv6/ip6_vti.c
2025-10-02T15:24:52.5351987Z patching file net/ipv6/ip6mr.c
2025-10-02T15:24:52.5354614Z patching file net/ipv6/ipv6_sockglue.c
2025-10-02T15:24:52.5357494Z patching file net/ipv6/mcast.c
2025-10-02T15:24:52.5359995Z patching file net/ipv6/mcast_snoop.c
2025-10-02T15:24:52.5361490Z patching file net/ipv6/ndisc.c
2025-10-02T15:24:52.5364070Z patching file net/ipv6/netfilter.c
2025-10-02T15:24:52.5365367Z patching file net/ipv6/netfilter/ip6_tables.c
2025-10-02T15:24:52.5367799Z patching file net/ipv6/netfilter/ip6t_REJECT.c
2025-10-02T15:24:52.5368286Z patching file net/ipv6/netfilter/ip6t_rpfilter.c
2025-10-02T15:24:52.5369165Z patching file net/ipv6/netfilter/ip6t_rt.c
2025-10-02T15:24:52.5370903Z patching file net/ipv6/netfilter/nf_conntrack_reasm.c
2025-10-02T15:24:52.5371753Z patching file net/ipv6/netfilter/nf_dup_ipv6.c
2025-10-02T15:24:52.5372609Z patching file net/ipv6/netfilter/nf_reject_ipv6.c
2025-10-02T15:24:52.5373941Z patching file net/ipv6/netfilter/nf_socket_ipv6.c
2025-10-02T15:24:52.5374928Z patching file net/ipv6/netfilter/nf_tproxy_ipv6.c
2025-10-02T15:24:52.5375820Z patching file net/ipv6/netfilter/nft_dup_ipv6.c
2025-10-02T15:24:52.5376781Z patching file net/ipv6/netfilter/nft_fib_ipv6.c
2025-10-02T15:24:52.5377981Z patching file net/ipv6/netfilter/nft_reject_ipv6.c
2025-10-02T15:24:52.5378796Z patching file net/ipv6/output_core.c
2025-10-02T15:24:52.5379904Z patching file net/ipv6/ping.c
2025-10-02T15:24:52.5381522Z patching file net/ipv6/raw.c
2025-10-02T15:24:52.5383513Z patching file net/ipv6/reassembly.c
2025-10-02T15:24:52.5386292Z patching file net/ipv6/route.c
2025-10-02T15:24:52.5391703Z patching file net/ipv6/rpl.c
2025-10-02T15:24:52.5392345Z patching file net/ipv6/rpl_iptunnel.c
2025-10-02T15:24:52.5394342Z patching file net/ipv6/seg6.c
2025-10-02T15:24:52.5395513Z patching file net/ipv6/seg6_hmac.c
2025-10-02T15:24:52.5397206Z patching file net/ipv6/seg6_iptunnel.c
2025-10-02T15:24:52.5398944Z patching file net/ipv6/seg6_local.c
2025-10-02T15:24:52.5400986Z patching file net/ipv6/sit.c
2025-10-02T15:24:52.5403356Z patching file net/ipv6/syncookies.c
2025-10-02T15:24:52.5405047Z patching file net/ipv6/tcp_ipv6.c
2025-10-02T15:24:52.5408357Z patching file net/ipv6/udp.c
2025-10-02T15:24:52.5411206Z patching file net/ipv6/udp_impl.h
2025-10-02T15:24:52.5411738Z patching file net/ipv6/udp_offload.c
2025-10-02T15:24:52.5412956Z patching file net/ipv6/udplite.c
2025-10-02T15:24:52.5413904Z patching file net/ipv6/xfrm6_input.c
2025-10-02T15:24:52.5414934Z patching file net/ipv6/xfrm6_output.c
2025-10-02T15:24:52.5415965Z patching file net/ipv6/xfrm6_policy.c
2025-10-02T15:24:52.5418055Z patching file net/iucv/af_iucv.c
2025-10-02T15:24:52.5420699Z patching file net/iucv/iucv.c
2025-10-02T15:24:52.5423222Z patching file net/kcm/kcmsock.c
2025-10-02T15:24:52.5426844Z patching file net/key/af_key.c
2025-10-02T15:24:52.5430592Z patching file net/l2tp/l2tp_core.c
2025-10-02T15:24:52.5433481Z patching file net/l2tp/l2tp_core.h
2025-10-02T15:24:52.5434159Z patching file net/l2tp/l2tp_eth.c
2025-10-02T15:24:52.5435310Z patching file net/l2tp/l2tp_ip6.c
2025-10-02T15:24:52.5437106Z patching file net/l2tp/l2tp_netlink.c
2025-10-02T15:24:52.5438940Z patching file net/l2tp/l2tp_ppp.c
2025-10-02T15:24:52.5441474Z patching file net/l3mdev/l3mdev.c
2025-10-02T15:24:52.5442438Z patching file net/lapb/lapb_out.c
2025-10-02T15:24:52.5443619Z patching file net/llc/af_llc.c
2025-10-02T15:24:52.5446321Z patching file net/llc/llc_core.c
2025-10-02T15:24:52.5446717Z patching file net/llc/llc_input.c
2025-10-02T15:24:52.5447525Z patching file net/llc/llc_s_ac.c
2025-10-02T15:24:52.5448832Z patching file net/llc/llc_station.c
2025-10-02T15:24:52.5449733Z patching file net/mac80211/Kconfig
2025-10-02T15:24:52.5450955Z patching file net/mac80211/aead_api.c
2025-10-02T15:24:52.5451605Z patching file net/mac80211/aes_gmac.c
2025-10-02T15:24:52.5452692Z patching file net/mac80211/agg-rx.c
2025-10-02T15:24:52.5454422Z patching file net/mac80211/agg-tx.c
2025-10-02T15:24:52.5456321Z patching file net/mac80211/airtime.c
2025-10-02T15:24:52.5458595Z patching file net/mac80211/cfg.c
2025-10-02T15:24:52.5462367Z patching file net/mac80211/chan.c
2025-10-02T15:24:52.5464308Z patching file net/mac80211/debugfs.c
2025-10-02T15:24:52.5465693Z patching file net/mac80211/driver-ops.c
2025-10-02T15:24:52.5466951Z patching file net/mac80211/driver-ops.h
2025-10-02T15:24:52.5468502Z patching file net/mac80211/he.c
2025-10-02T15:24:52.5470109Z patching file net/mac80211/ibss.c
2025-10-02T15:24:52.5472895Z patching file net/mac80211/ieee80211_i.h
2025-10-02T15:24:52.5476116Z patching file net/mac80211/iface.c
2025-10-02T15:24:52.5478827Z patching file net/mac80211/key.c
2025-10-02T15:24:52.5480933Z patching file net/mac80211/key.h
2025-10-02T15:24:52.5482014Z patching file net/mac80211/main.c
2025-10-02T15:24:52.5484510Z patching file net/mac80211/mesh.c
2025-10-02T15:24:52.5486370Z patching file net/mac80211/mesh.h
2025-10-02T15:24:52.5488039Z patching file net/mac80211/mesh_hwmp.c
2025-10-02T15:24:52.5490070Z patching file net/mac80211/mesh_pathtbl.c
2025-10-02T15:24:52.5492598Z patching file net/mac80211/mesh_plink.c
2025-10-02T15:24:52.5494320Z patching file net/mac80211/mesh_ps.c
2025-10-02T15:24:52.5497125Z patching file net/mac80211/mlme.c
2025-10-02T15:24:52.5502045Z patching file net/mac80211/rate.c
2025-10-02T15:24:52.5504658Z patching file net/mac80211/rx.c
2025-10-02T15:24:52.5509228Z patching file net/mac80211/scan.c
2025-10-02T15:24:52.5511591Z patching file net/mac80211/spectmgmt.c
2025-10-02T15:24:52.5513320Z patching file net/mac80211/sta_info.c
2025-10-02T15:24:52.5516309Z patching file net/mac80211/sta_info.h
2025-10-02T15:24:52.5518506Z patching file net/mac80211/trace.h
2025-10-02T15:24:52.5522186Z patching file net/mac80211/tx.c
2025-10-02T15:24:52.5527346Z patching file net/mac80211/util.c
2025-10-02T15:24:52.5531335Z patching file net/mac80211/vht.c
2025-10-02T15:24:52.5532420Z patching file net/mac80211/wme.c
2025-10-02T15:24:52.5534322Z patching file net/mac80211/wpa.c
2025-10-02T15:24:52.5536010Z patching file net/mac802154/iface.c
2025-10-02T15:24:52.5537537Z patching file net/mac802154/llsec.c
2025-10-02T15:24:52.5538991Z patching file net/mac802154/rx.c
2025-10-02T15:24:52.5540084Z patching file net/mac802154/tx.c
2025-10-02T15:24:52.5541959Z patching file net/mpls/af_mpls.c
2025-10-02T15:24:52.5550504Z patching file net/mpls/mpls_gso.c
2025-10-02T15:24:52.5551715Z patching file net/mptcp/diag.c
2025-10-02T15:24:52.5552085Z patching file net/mptcp/mib.c
2025-10-02T15:24:52.5552431Z patching file net/mptcp/mib.h
2025-10-02T15:24:52.5552766Z patching file net/mptcp/mptcp_diag.c
2025-10-02T15:24:52.5553094Z patching file net/mptcp/options.c
2025-10-02T15:24:52.5553430Z patching file net/mptcp/pm.c
2025-10-02T15:24:52.5553771Z patching file net/mptcp/pm_netlink.c
2025-10-02T15:24:52.5554889Z patching file net/mptcp/protocol.c
2025-10-02T15:24:52.5558463Z patching file net/mptcp/protocol.h
2025-10-02T15:24:52.5560545Z patching file net/mptcp/subflow.c
2025-10-02T15:24:52.5564502Z patching file net/mptcp/syncookies.c
2025-10-02T15:24:52.5565617Z patching file net/mptcp/token.c
2025-10-02T15:24:52.5567194Z patching file net/mptcp/token_test.c
2025-10-02T15:24:52.5567851Z patching file net/ncsi/Kconfig
2025-10-02T15:24:52.5568618Z patching file net/ncsi/internal.h
2025-10-02T15:24:52.5570278Z patching file net/ncsi/ncsi-aen.c
2025-10-02T15:24:52.5571393Z patching file net/ncsi/ncsi-cmd.c
2025-10-02T15:24:52.5573095Z patching file net/ncsi/ncsi-manage.c
2025-10-02T15:24:52.5576150Z patching file net/ncsi/ncsi-netlink.c
2025-10-02T15:24:52.5577362Z patching file net/ncsi/ncsi-pkt.h
2025-10-02T15:24:52.5578855Z patching file net/ncsi/ncsi-rsp.c
2025-10-02T15:24:52.5581769Z patching file net/netfilter/Kconfig
2025-10-02T15:24:52.5583860Z patching file net/netfilter/core.c
2025-10-02T15:24:52.5585280Z patching file net/netfilter/ipset/ip_set_bitmap_gen.h
2025-10-02T15:24:52.5586705Z patching file net/netfilter/ipset/ip_set_bitmap_ip.c
2025-10-02T15:24:52.5588258Z patching file net/netfilter/ipset/ip_set_core.c
2025-10-02T15:24:52.5592112Z patching file net/netfilter/ipset/ip_set_hash_gen.h
2025-10-02T15:24:52.5594653Z patching file net/netfilter/ipset/ip_set_hash_ip.c
2025-10-02T15:24:52.5595682Z patching file net/netfilter/ipset/ip_set_hash_ipmark.c
2025-10-02T15:24:52.5596914Z patching file net/netfilter/ipset/ip_set_hash_ipport.c
2025-10-02T15:24:52.5597912Z patching file net/netfilter/ipset/ip_set_hash_ipportip.c
2025-10-02T15:24:52.5599258Z patching file net/netfilter/ipset/ip_set_hash_ipportnet.c
2025-10-02T15:24:52.5600682Z patching file net/netfilter/ipset/ip_set_hash_net.c
2025-10-02T15:24:52.5602055Z patching file net/netfilter/ipset/ip_set_hash_netiface.c
2025-10-02T15:24:52.5603139Z patching file net/netfilter/ipset/ip_set_hash_netnet.c
2025-10-02T15:24:52.5604650Z patching file net/netfilter/ipset/ip_set_hash_netport.c
2025-10-02T15:24:52.5605823Z patching file net/netfilter/ipset/ip_set_hash_netportnet.c
2025-10-02T15:24:52.5607423Z patching file net/netfilter/ipset/ip_set_list_set.c
2025-10-02T15:24:52.5609222Z patching file net/netfilter/ipvs/ip_vs_app.c
2025-10-02T15:24:52.5610884Z patching file net/netfilter/ipvs/ip_vs_conn.c
2025-10-02T15:24:52.5613401Z patching file net/netfilter/ipvs/ip_vs_core.c
2025-10-02T15:24:52.5616908Z patching file net/netfilter/ipvs/ip_vs_ctl.c
2025-10-02T15:24:52.5620674Z patching file net/netfilter/ipvs/ip_vs_proto.c
2025-10-02T15:24:52.5622144Z patching file net/netfilter/ipvs/ip_vs_proto_sctp.c
2025-10-02T15:24:52.5623665Z patching file net/netfilter/ipvs/ip_vs_sync.c
2025-10-02T15:24:52.5626635Z patching file net/netfilter/ipvs/ip_vs_xmit.c
2025-10-02T15:24:52.5628393Z patching file net/netfilter/nf_conncount.c
2025-10-02T15:24:52.5630652Z patching file net/netfilter/nf_conntrack_core.c
2025-10-02T15:24:52.5634874Z patching file net/netfilter/nf_conntrack_expect.c
2025-10-02T15:24:52.5636506Z patching file net/netfilter/nf_conntrack_h323_asn1.c
2025-10-02T15:24:52.5638054Z patching file net/netfilter/nf_conntrack_helper.c
2025-10-02T15:24:52.5639652Z patching file net/netfilter/nf_conntrack_irc.c
2025-10-02T15:24:52.5641945Z patching file net/netfilter/nf_conntrack_netlink.c
2025-10-02T15:24:52.5646736Z patching file net/netfilter/nf_conntrack_proto.c
2025-10-02T15:24:52.5648315Z patching file net/netfilter/nf_conntrack_proto_dccp.c
2025-10-02T15:24:52.5650087Z patching file net/netfilter/nf_conntrack_proto_gre.c
2025-10-02T15:24:52.5651548Z patching file net/netfilter/nf_conntrack_proto_icmpv6.c
2025-10-02T15:24:52.5652787Z patching file net/netfilter/nf_conntrack_proto_sctp.c
2025-10-02T15:24:52.5655618Z patching file net/netfilter/nf_conntrack_proto_tcp.c
2025-10-02T15:24:52.5657743Z patching file net/netfilter/nf_conntrack_proto_udp.c
2025-10-02T15:24:52.5659154Z patching file net/netfilter/nf_conntrack_sip.c
2025-10-02T15:24:52.5661679Z patching file net/netfilter/nf_conntrack_standalone.c
2025-10-02T15:24:52.5663953Z patching file net/netfilter/nf_flow_table_core.c
2025-10-02T15:24:52.5665434Z patching file net/netfilter/nf_flow_table_offload.c
2025-10-02T15:24:52.5667553Z patching file net/netfilter/nf_log.c
2025-10-02T15:24:52.5668940Z patching file net/netfilter/nf_nat_core.c
2025-10-02T15:24:52.5670663Z patching file net/netfilter/nf_nat_masquerade.c
2025-10-02T15:24:52.5673597Z patching file net/netfilter/nf_nat_proto.c
2025-10-02T15:24:52.5674003Z patching file net/netfilter/nf_nat_redirect.c
2025-10-02T15:24:52.5675827Z patching file net/netfilter/nf_queue.c
2025-10-02T15:24:52.5677832Z patching file net/netfilter/nf_synproxy_core.c
2025-10-02T15:24:52.5681693Z patching file net/netfilter/nf_tables_api.c
2025-10-02T15:24:52.5696625Z patching file net/netfilter/nf_tables_core.c
2025-10-02T15:24:52.5698113Z patching file net/netfilter/nf_tables_offload.c
2025-10-02T15:24:52.5700211Z patching file net/netfilter/nf_tables_trace.c
2025-10-02T15:24:52.5701366Z patching file net/netfilter/nfnetlink.c
2025-10-02T15:24:52.5702947Z patching file net/netfilter/nfnetlink_acct.c
2025-10-02T15:24:52.5704337Z patching file net/netfilter/nfnetlink_cthelper.c
2025-10-02T15:24:52.5705994Z patching file net/netfilter/nfnetlink_cttimeout.c
2025-10-02T15:24:52.5707585Z patching file net/netfilter/nfnetlink_log.c
2025-10-02T15:24:52.5709240Z patching file net/netfilter/nfnetlink_osf.c
2025-10-02T15:24:52.5711089Z patching file net/netfilter/nfnetlink_queue.c
2025-10-02T15:24:52.5713141Z patching file net/netfilter/nft_bitwise.c
2025-10-02T15:24:52.5714464Z patching file net/netfilter/nft_byteorder.c
2025-10-02T15:24:52.5715728Z patching file net/netfilter/nft_chain_filter.c
2025-10-02T15:24:52.5716978Z patching file net/netfilter/nft_cmp.c
2025-10-02T15:24:52.5718652Z patching file net/netfilter/nft_compat.c
2025-10-02T15:24:52.5720213Z patching file net/netfilter/nft_connlimit.c
2025-10-02T15:24:52.5721134Z patching file net/netfilter/nft_counter.c
2025-10-02T15:24:52.5722482Z patching file net/netfilter/nft_ct.c
2025-10-02T15:24:52.5724282Z patching file net/netfilter/nft_dup_netdev.c
2025-10-02T15:24:52.5725189Z patching file net/netfilter/nft_dynset.c
2025-10-02T15:24:52.5726710Z patching file net/netfilter/nft_exthdr.c
2025-10-02T15:24:52.5728751Z patching file net/netfilter/nft_fib.c
2025-10-02T15:24:52.5729905Z patching file net/netfilter/nft_flow_offload.c
2025-10-02T15:24:52.5731105Z patching file net/netfilter/nft_fwd_netdev.c
2025-10-02T15:24:52.5732175Z patching file net/netfilter/nft_hash.c
2025-10-02T15:24:52.5733265Z patching file net/netfilter/nft_immediate.c
2025-10-02T15:24:52.5734764Z patching file net/netfilter/nft_limit.c
2025-10-02T15:24:52.5735664Z patching file net/netfilter/nft_lookup.c
2025-10-02T15:24:52.5736882Z patching file net/netfilter/nft_masq.c
2025-10-02T15:24:52.5738062Z patching file net/netfilter/nft_meta.c
2025-10-02T15:24:52.5739636Z patching file net/netfilter/nft_nat.c
2025-10-02T15:24:52.5740894Z patching file net/netfilter/nft_numgen.c
2025-10-02T15:24:52.5741878Z patching file net/netfilter/nft_objref.c
2025-10-02T15:24:52.5743116Z patching file net/netfilter/nft_osf.c
2025-10-02T15:24:52.5744169Z patching file net/netfilter/nft_payload.c
2025-10-02T15:24:52.5745990Z patching file net/netfilter/nft_queue.c
2025-10-02T15:24:52.5746835Z patching file net/netfilter/nft_range.c
2025-10-02T15:24:52.5747820Z patching file net/netfilter/nft_redir.c
2025-10-02T15:24:52.5749221Z patching file net/netfilter/nft_reject.c
2025-10-02T15:24:52.5750098Z patching file net/netfilter/nft_reject_inet.c
2025-10-02T15:24:52.5751359Z patching file net/netfilter/nft_rt.c
2025-10-02T15:24:52.5752316Z patching file net/netfilter/nft_set_bitmap.c
2025-10-02T15:24:52.5753560Z patching file net/netfilter/nft_set_hash.c
2025-10-02T15:24:52.5756082Z patching file net/netfilter/nft_set_pipapo.c
2025-10-02T15:24:52.5759658Z patching file net/netfilter/nft_set_pipapo.h
2025-10-02T15:24:52.5761099Z patching file net/netfilter/nft_set_pipapo_avx2.c
2025-10-02T15:24:52.5762792Z patching file net/netfilter/nft_set_rbtree.c
2025-10-02T15:24:52.5765211Z patching file net/netfilter/nft_socket.c
2025-10-02T15:24:52.5766544Z patching file net/netfilter/nft_synproxy.c
2025-10-02T15:24:52.5767587Z patching file net/netfilter/nft_tproxy.c
2025-10-02T15:24:52.5768993Z patching file net/netfilter/nft_tunnel.c
2025-10-02T15:24:52.5770562Z patching file net/netfilter/nft_xfrm.c
2025-10-02T15:24:52.5772027Z patching file net/netfilter/x_tables.c
2025-10-02T15:24:52.5774079Z patching file net/netfilter/xt_CT.c
2025-10-02T15:24:52.5775128Z patching file net/netfilter/xt_IDLETIMER.c
2025-10-02T15:24:52.5776398Z patching file net/netfilter/xt_LED.c
2025-10-02T15:24:52.5777155Z patching file net/netfilter/xt_RATEEST.c
2025-10-02T15:24:52.5778065Z patching file net/netfilter/xt_REDIRECT.c
2025-10-02T15:24:52.5778936Z patching file net/netfilter/xt_SECMARK.c
2025-10-02T15:24:52.5780377Z patching file net/netfilter/xt_connmark.c
2025-10-02T15:24:52.5781400Z patching file net/netfilter/xt_nfacct.c
2025-10-02T15:24:52.5782266Z patching file net/netfilter/xt_osf.c
2025-10-02T15:24:52.5783080Z patching file net/netfilter/xt_owner.c
2025-10-02T15:24:52.5784395Z patching file net/netfilter/xt_recent.c
2025-10-02T15:24:52.5785627Z patching file net/netfilter/xt_sctp.c
2025-10-02T15:24:52.5786396Z patching file net/netfilter/xt_u32.c
2025-10-02T15:24:52.5787494Z patching file net/netlabel/netlabel_calipso.c
2025-10-02T15:24:52.5788914Z patching file net/netlabel/netlabel_cipso_v4.c
2025-10-02T15:24:52.5790666Z patching file net/netlabel/netlabel_kapi.c
2025-10-02T15:24:52.5792163Z patching file net/netlabel/netlabel_mgmt.c
2025-10-02T15:24:52.5793838Z patching file net/netlabel/netlabel_unlabeled.c
2025-10-02T15:24:52.5795233Z patching file net/netlabel/netlabel_user.h
2025-10-02T15:24:52.5796615Z patching file net/netlink/af_netlink.c
2025-10-02T15:24:52.5800234Z patching file net/netlink/af_netlink.h
2025-10-02T15:24:52.5801530Z patching file net/netlink/diag.c
2025-10-02T15:24:52.5802491Z patching file net/netlink/genetlink.c
2025-10-02T15:24:52.5804374Z patching file net/netlink/policy.c
2025-10-02T15:24:52.5805728Z patching file net/netrom/af_netrom.c
2025-10-02T15:24:52.5807588Z patching file net/netrom/nr_dev.c
2025-10-02T15:24:52.5808428Z patching file net/netrom/nr_in.c
2025-10-02T15:24:52.5809325Z patching file net/netrom/nr_out.c
2025-10-02T15:24:52.5810679Z patching file net/netrom/nr_route.c
2025-10-02T15:24:52.5812295Z patching file net/netrom/nr_subr.c
2025-10-02T15:24:52.5813332Z patching file net/netrom/nr_timer.c
2025-10-02T15:24:52.5814635Z patching file net/nfc/af_nfc.c
2025-10-02T15:24:52.5815615Z patching file net/nfc/core.c
2025-10-02T15:24:52.5817901Z patching file net/nfc/digital_core.c
2025-10-02T15:24:52.5819723Z patching file net/nfc/digital_dep.c
2025-10-02T15:24:52.5821599Z patching file net/nfc/digital_technology.c
2025-10-02T15:24:52.5823289Z patching file net/nfc/hci/llc_shdlc.c
2025-10-02T15:24:52.5824600Z patching file net/nfc/llcp.h
2025-10-02T15:24:52.5825753Z patching file net/nfc/llcp_commands.c
2025-10-02T15:24:52.5827811Z patching file net/nfc/llcp_core.c
2025-10-02T15:24:52.5831659Z patching file net/nfc/llcp_sock.c
2025-10-02T15:24:52.5833393Z patching file net/nfc/nci/core.c
2025-10-02T15:24:52.5835432Z patching file net/nfc/nci/data.c
2025-10-02T15:24:52.5836641Z patching file net/nfc/nci/hci.c
2025-10-02T15:24:52.5838081Z patching file net/nfc/nci/ntf.c
2025-10-02T15:24:52.5839638Z patching file net/nfc/nci/rsp.c
2025-10-02T15:24:52.5840640Z patching file net/nfc/nci/spi.c
2025-10-02T15:24:52.5841679Z patching file net/nfc/nci/uart.c
2025-10-02T15:24:52.5843099Z patching file net/nfc/netlink.c
2025-10-02T15:24:52.5845475Z patching file net/nfc/nfc.h
2025-10-02T15:24:52.5846500Z patching file net/nfc/rawsock.c
2025-10-02T15:24:52.5847571Z patching file net/nsh/nsh.c
2025-10-02T15:24:52.5858027Z patching file net/openvswitch/actions.c
2025-10-02T15:24:52.5858925Z patching file net/openvswitch/conntrack.c
2025-10-02T15:24:52.5859974Z patching file net/openvswitch/datapath.c
2025-10-02T15:24:52.5860832Z patching file net/openvswitch/flow.c
2025-10-02T15:24:52.5861700Z patching file net/openvswitch/flow_netlink.c
2025-10-02T15:24:52.5865115Z patching file net/openvswitch/meter.c
2025-10-02T15:24:52.5866220Z patching file net/openvswitch/vport.c
2025-10-02T15:24:52.5868644Z patching file net/packet/af_packet.c
2025-10-02T15:24:52.5874391Z patching file net/packet/diag.c
2025-10-02T15:24:52.5875228Z patching file net/packet/internal.h
2025-10-02T15:24:52.5876531Z patching file net/phonet/pep.c
2025-10-02T15:24:52.5878194Z patching file net/phonet/pn_netlink.c
2025-10-02T15:24:52.5880423Z patching file net/psample/psample.c
2025-10-02T15:24:52.5881312Z patching file net/qrtr/Makefile
2025-10-02T15:24:52.5882095Z patching file net/qrtr/af_qrtr.c
2025-10-02T15:24:52.5885966Z patching file net/qrtr/mhi.c
2025-10-02T15:24:52.5886756Z patching file net/qrtr/ns.c
2025-10-02T15:24:52.5888897Z patching file net/qrtr/qrtr.c
2025-10-02T15:24:52.5892175Z patching file net/qrtr/qrtr.h
2025-10-02T15:24:52.5892979Z patching file net/qrtr/tun.c
2025-10-02T15:24:52.5894121Z patching file net/rds/af_rds.c
2025-10-02T15:24:52.5895710Z patching file net/rds/connection.c
2025-10-02T15:24:52.5897173Z patching file net/rds/ib.c
2025-10-02T15:24:52.5898457Z patching file net/rds/ib.h
2025-10-02T15:24:52.5900079Z patching file net/rds/ib_cm.c
2025-10-02T15:24:52.5902680Z patching file net/rds/ib_frmr.c
2025-10-02T15:24:52.5903910Z patching file net/rds/ib_recv.c
2025-10-02T15:24:52.5906134Z patching file net/rds/ib_send.c
2025-10-02T15:24:52.5907510Z patching file net/rds/message.c
2025-10-02T15:24:52.5908907Z patching file net/rds/rdma.c
2025-10-02T15:24:52.5910537Z patching file net/rds/rdma_transport.c
2025-10-02T15:24:52.5911706Z patching file net/rds/recv.c
2025-10-02T15:24:52.5913824Z patching file net/rds/send.c
2025-10-02T15:24:52.5915445Z patching file net/rds/tcp.c
2025-10-02T15:24:52.5916797Z patching file net/rds/tcp.h
2025-10-02T15:24:52.5917621Z patching file net/rds/tcp_connect.c
2025-10-02T15:24:52.5918753Z patching file net/rds/tcp_listen.c
2025-10-02T15:24:52.5920042Z patching file net/rfkill/rfkill-gpio.c
2025-10-02T15:24:52.5921637Z patching file net/rose/af_rose.c
2025-10-02T15:24:52.5924425Z patching file net/rose/rose_link.c
2025-10-02T15:24:52.5925593Z patching file net/rose/rose_loopback.c
2025-10-02T15:24:52.5926654Z patching file net/rose/rose_route.c
2025-10-02T15:24:52.5927602Z patching file net/rose/rose_timer.c
2025-10-02T15:24:52.5940824Z patching file net/rxrpc/af_rxrpc.c
2025-10-02T15:24:52.5941919Z patching file net/rxrpc/ar-internal.h
2025-10-02T15:24:52.5943092Z patching file net/rxrpc/call_accept.c
2025-10-02T15:24:52.5944208Z patching file net/rxrpc/call_event.c
2025-10-02T15:24:52.5945295Z patching file net/rxrpc/call_object.c
2025-10-02T15:24:52.5946969Z patching file net/rxrpc/conn_client.c
2025-10-02T15:24:52.5949872Z patching file net/rxrpc/conn_event.c
2025-10-02T15:24:52.5950716Z patching file net/rxrpc/conn_object.c
2025-10-02T15:24:52.5956220Z patching file net/rxrpc/conn_service.c
2025-10-02T15:24:52.5957845Z patching file net/rxrpc/input.c
2025-10-02T15:24:52.5958646Z patching file net/rxrpc/key.c
2025-10-02T15:24:52.5959626Z patching file net/rxrpc/local_object.c
2025-10-02T15:24:52.5960487Z patching file net/rxrpc/net_ns.c
2025-10-02T15:24:52.5961301Z patching file net/rxrpc/output.c
2025-10-02T15:24:52.5962100Z patching file net/rxrpc/peer_object.c
2025-10-02T15:24:52.5962927Z patching file net/rxrpc/proc.c
2025-10-02T15:24:52.5963711Z patching file net/rxrpc/recvmsg.c
2025-10-02T15:24:52.5964493Z patching file net/rxrpc/rtt.c
2025-10-02T15:24:52.5965246Z patching file net/rxrpc/rxkad.c
2025-10-02T15:24:52.5966014Z patching file net/rxrpc/sendmsg.c
2025-10-02T15:24:52.5967331Z patching file net/rxrpc/skbuff.c
2025-10-02T15:24:52.5968632Z patching file net/rxrpc/sysctl.c
2025-10-02T15:24:52.5970459Z patching file net/sched/Kconfig
2025-10-02T15:24:52.5971251Z patching file net/sched/Makefile
2025-10-02T15:24:52.5972045Z patching file net/sched/act_api.c
2025-10-02T15:24:52.5974175Z patching file net/sched/act_bpf.c
2025-10-02T15:24:52.5974999Z patching file net/sched/act_connmark.c
2025-10-02T15:24:52.5976134Z patching file net/sched/act_ct.c
2025-10-02T15:24:52.5977243Z patching file net/sched/act_ctinfo.c
2025-10-02T15:24:52.5978508Z patching file net/sched/act_gate.c
2025-10-02T15:24:52.5979329Z patching file net/sched/act_ife.c
2025-10-02T15:24:52.5980682Z patching file net/sched/act_ipt.c
2025-10-02T15:24:52.5981823Z patching file net/sched/act_mirred.c
2025-10-02T15:24:52.5983109Z patching file net/sched/act_mpls.c
2025-10-02T15:24:52.5984103Z patching file net/sched/act_nat.c
2025-10-02T15:24:52.5985685Z patching file net/sched/act_pedit.c
2025-10-02T15:24:52.5986857Z patching file net/sched/act_police.c
2025-10-02T15:24:52.5989130Z patching file net/sched/act_sample.c
2025-10-02T15:24:52.5990193Z patching file net/sched/act_simple.c
2025-10-02T15:24:52.5991102Z patching file net/sched/act_skbedit.c
2025-10-02T15:24:52.5991937Z patching file net/sched/act_skbmod.c
2025-10-02T15:24:52.5993615Z patching file net/sched/act_tunnel_key.c
2025-10-02T15:24:52.5994788Z patching file net/sched/act_vlan.c
2025-10-02T15:24:52.5996058Z patching file net/sched/cls_api.c
2025-10-02T15:24:52.5998677Z patching file net/sched/cls_flow.c
2025-10-02T15:24:52.6001524Z patching file net/sched/cls_flower.c
2025-10-02T15:24:52.6005293Z patching file net/sched/cls_fw.c
2025-10-02T15:24:52.6006305Z patching file net/sched/cls_route.c
2025-10-02T15:24:52.6008265Z patching file net/sched/cls_rsvp.c
2025-10-02T15:24:52.6010807Z patching file net/sched/cls_rsvp.h
2025-10-02T15:24:52.6013903Z patching file net/sched/cls_rsvp6.c
2025-10-02T15:24:52.6014737Z patching file net/sched/cls_tcindex.c
2025-10-02T15:24:52.6019771Z patching file net/sched/cls_u32.c
2025-10-02T15:24:52.6022661Z patching file net/sched/em_text.c
2025-10-02T15:24:52.6023477Z patching file net/sched/ematch.c
2025-10-02T15:24:52.6024278Z patching file net/sched/sch_api.c
2025-10-02T15:24:52.6025422Z patching file net/sched/sch_atm.c
2025-10-02T15:24:52.6029030Z patching file net/sched/sch_cake.c
2025-10-02T15:24:52.6033206Z patching file net/sched/sch_cbq.c
2025-10-02T15:24:52.6037770Z patching file net/sched/sch_cbs.c
2025-10-02T15:24:52.6038762Z patching file net/sched/sch_choke.c
2025-10-02T15:24:52.6041051Z patching file net/sched/sch_codel.c
2025-10-02T15:24:52.6043037Z patching file net/sched/sch_drr.c
2025-10-02T15:24:52.6044266Z patching file net/sched/sch_dsmark.c
2025-10-02T15:24:52.6045744Z patching file net/sched/sch_etf.c
2025-10-02T15:24:52.6047018Z patching file net/sched/sch_ets.c
2025-10-02T15:24:52.6049017Z patching file net/sched/sch_fifo.c
2025-10-02T15:24:52.6050513Z patching file net/sched/sch_fq.c
2025-10-02T15:24:52.6052249Z patching file net/sched/sch_fq_codel.c
2025-10-02T15:24:52.6053902Z patching file net/sched/sch_fq_pie.c
2025-10-02T15:24:52.6055925Z patching file net/sched/sch_generic.c
2025-10-02T15:24:52.6058644Z patching file net/sched/sch_gred.c
2025-10-02T15:24:52.6061307Z patching file net/sched/sch_hfsc.c
2025-10-02T15:24:52.6063156Z patching file net/sched/sch_hhf.c
2025-10-02T15:24:52.6064874Z patching file net/sched/sch_htb.c
2025-10-02T15:24:52.6067041Z patching file net/sched/sch_ingress.c
2025-10-02T15:24:52.6068594Z patching file net/sched/sch_mq.c
2025-10-02T15:24:52.6070079Z patching file net/sched/sch_mqprio.c
2025-10-02T15:24:52.6072067Z patching file net/sched/sch_multiq.c
2025-10-02T15:24:52.6073416Z patching file net/sched/sch_netem.c
2025-10-02T15:24:52.6076448Z patching file net/sched/sch_pie.c
2025-10-02T15:24:52.6077776Z patching file net/sched/sch_plug.c
2025-10-02T15:24:52.6078916Z patching file net/sched/sch_prio.c
2025-10-02T15:24:52.6080539Z patching file net/sched/sch_qfq.c
2025-10-02T15:24:52.6084172Z patching file net/sched/sch_red.c
2025-10-02T15:24:52.6085445Z patching file net/sched/sch_sfb.c
2025-10-02T15:24:52.6086939Z patching file net/sched/sch_sfq.c
2025-10-02T15:24:52.6089199Z patching file net/sched/sch_skbprio.c
2025-10-02T15:24:52.6091356Z patching file net/sched/sch_taprio.c
2025-10-02T15:24:52.6094233Z patching file net/sched/sch_tbf.c
2025-10-02T15:24:52.6095821Z patching file net/sched/sch_teql.c
2025-10-02T15:24:52.6097471Z patching file net/sctp/associola.c
2025-10-02T15:24:52.6100061Z patching file net/sctp/auth.c
2025-10-02T15:24:52.6101291Z patching file net/sctp/bind_addr.c
2025-10-02T15:24:52.6102908Z patching file net/sctp/diag.c
2025-10-02T15:24:52.6104368Z patching file net/sctp/endpointola.c
2025-10-02T15:24:52.6105750Z patching file net/sctp/input.c
2025-10-02T15:24:52.6108320Z patching file net/sctp/ipv6.c
2025-10-02T15:24:52.6110985Z patching file net/sctp/outqueue.c
2025-10-02T15:24:52.6112961Z patching file net/sctp/proc.c
2025-10-02T15:24:52.6114509Z patching file net/sctp/protocol.c
2025-10-02T15:24:52.6118020Z patching file net/sctp/sm_make_chunk.c
2025-10-02T15:24:52.6121480Z patching file net/sctp/sm_sideeffect.c
2025-10-02T15:24:52.6125323Z patching file net/sctp/sm_statefuns.c
2025-10-02T15:24:52.6133161Z patching file net/sctp/socket.c
2025-10-02T15:24:52.6138824Z patching file net/sctp/stream.c
2025-10-02T15:24:52.6140516Z patching file net/sctp/stream_interleave.c
2025-10-02T15:24:52.6142058Z patching file net/sctp/stream_sched.c
2025-10-02T15:24:52.6142926Z patching file net/sctp/stream_sched_prio.c
2025-10-02T15:24:52.6144297Z patching file net/sctp/stream_sched_rr.c
2025-10-02T15:24:52.6145080Z patching file net/sctp/sysctl.c
2025-10-02T15:24:52.6146851Z patching file net/sctp/transport.c
2025-10-02T15:24:52.6148653Z patching file net/smc/af_smc.c
2025-10-02T15:24:52.6151552Z patching file net/smc/smc.h
2025-10-02T15:24:52.6152605Z patching file net/smc/smc_cdc.c
2025-10-02T15:24:52.6154257Z patching file net/smc/smc_cdc.h
2025-10-02T15:24:52.6155338Z patching file net/smc/smc_clc.c
2025-10-02T15:24:52.6156799Z patching file net/smc/smc_clc.h
2025-10-02T15:24:52.6157888Z patching file net/smc/smc_close.c
2025-10-02T15:24:52.6159750Z patching file net/smc/smc_core.c
2025-10-02T15:24:52.6162964Z patching file net/smc/smc_core.h
2025-10-02T15:24:52.6163791Z patching file net/smc/smc_diag.c
2025-10-02T15:24:52.6164844Z patching file net/smc/smc_ib.c
2025-10-02T15:24:52.6166029Z patching file net/smc/smc_ib.h
2025-10-02T15:24:52.6166941Z patching file net/smc/smc_ism.c
2025-10-02T15:24:52.6168568Z patching file net/smc/smc_llc.c
2025-10-02T15:24:52.6172001Z patching file net/smc/smc_pnet.c
2025-10-02T15:24:52.6174261Z patching file net/smc/smc_pnet.h
2025-10-02T15:24:52.6175259Z patching file net/smc/smc_rx.c
2025-10-02T15:24:52.6176548Z patching file net/smc/smc_rx.h
2025-10-02T15:24:52.6177519Z patching file net/smc/smc_tx.c
2025-10-02T15:24:52.6178952Z patching file net/smc/smc_wr.c
2025-10-02T15:24:52.6181080Z patching file net/smc/smc_wr.h
2025-10-02T15:24:52.6182974Z patching file net/socket.c
2025-10-02T15:24:52.6186958Z patching file net/strparser/strparser.c
2025-10-02T15:24:52.6187830Z patching file net/sunrpc/addr.c
2025-10-02T15:24:52.6189241Z patching file net/sunrpc/auth.c
2025-10-02T15:24:52.6191562Z patching file net/sunrpc/auth_gss/auth_gss.c
2025-10-02T15:24:52.6194071Z patching file net/sunrpc/auth_gss/auth_gss_internal.h
2025-10-02T15:24:52.6195072Z patching file net/sunrpc/auth_gss/gss_krb5_keys.c
2025-10-02T15:24:52.6196049Z patching file net/sunrpc/auth_gss/gss_krb5_mech.c
2025-10-02T15:24:52.6197433Z patching file net/sunrpc/auth_gss/gss_rpc_upcall.c
2025-10-02T15:24:52.6198503Z patching file net/sunrpc/auth_gss/gss_rpc_xdr.c
2025-10-02T15:24:52.6200764Z patching file net/sunrpc/auth_gss/svcauth_gss.c
2025-10-02T15:24:52.6203800Z patching file net/sunrpc/backchannel_rqst.c
2025-10-02T15:24:52.6205001Z patching file net/sunrpc/cache.c
2025-10-02T15:24:52.6207973Z patching file net/sunrpc/clnt.c
2025-10-02T15:24:52.6211591Z patching file net/sunrpc/debugfs.c
2025-10-02T15:24:52.6212658Z patching file net/sunrpc/rpc_pipe.c
2025-10-02T15:24:52.6214830Z patching file net/sunrpc/rpcb_clnt.c
2025-10-02T15:24:52.6216411Z patching file net/sunrpc/sched.c
2025-10-02T15:24:52.6218817Z patching file net/sunrpc/stats.c
2025-10-02T15:24:52.6220041Z patching file net/sunrpc/svc.c
2025-10-02T15:24:52.6224158Z patching file net/sunrpc/svc_xprt.c
2025-10-02T15:24:52.6226761Z patching file net/sunrpc/svcauth.c
2025-10-02T15:24:52.6227612Z patching file net/sunrpc/svcauth_unix.c
2025-10-02T15:24:52.6229961Z patching file net/sunrpc/svcsock.c
2025-10-02T15:24:52.6232714Z patching file net/sunrpc/xdr.c
2025-10-02T15:24:52.6235622Z patching file net/sunrpc/xprt.c
2025-10-02T15:24:52.6238724Z patching file net/sunrpc/xprtmultipath.c
2025-10-02T15:24:52.6240027Z patching file net/sunrpc/xprtrdma/frwr_ops.c
2025-10-02T15:24:52.6241342Z patching file net/sunrpc/xprtrdma/module.c
2025-10-02T15:24:52.6242593Z patching file net/sunrpc/xprtrdma/rpc_rdma.c
2025-10-02T15:24:52.6244889Z patching file net/sunrpc/xprtrdma/svc_rdma_backchannel.c
2025-10-02T15:24:52.6245885Z patching file net/sunrpc/xprtrdma/svc_rdma_rw.c
2025-10-02T15:24:52.6247211Z patching file net/sunrpc/xprtrdma/svc_rdma_sendto.c
2025-10-02T15:24:52.6249116Z patching file net/sunrpc/xprtrdma/svc_rdma_transport.c
2025-10-02T15:24:52.6250519Z patching file net/sunrpc/xprtrdma/transport.c
2025-10-02T15:24:52.6252451Z patching file net/sunrpc/xprtrdma/verbs.c
2025-10-02T15:24:52.6254595Z patching file net/sunrpc/xprtrdma/xprt_rdma.h
2025-10-02T15:24:52.6256468Z patching file net/sunrpc/xprtsock.c
2025-10-02T15:24:52.6259875Z patching file net/switchdev/switchdev.c
2025-10-02T15:24:52.6261374Z patching file net/tipc/bcast.c
2025-10-02T15:24:52.6262846Z patching file net/tipc/bearer.c
2025-10-02T15:24:52.6265010Z patching file net/tipc/bearer.h
2025-10-02T15:24:52.6265904Z patching file net/tipc/core.c
2025-10-02T15:24:52.6267802Z patching file net/tipc/core.h
2025-10-02T15:24:52.6269245Z patching file net/tipc/crypto.c
2025-10-02T15:24:52.6271817Z patching file net/tipc/crypto.h
2025-10-02T15:24:52.6272618Z patching file net/tipc/discover.c
2025-10-02T15:24:52.6274537Z patching file net/tipc/link.c
2025-10-02T15:24:52.6277106Z patching file net/tipc/link.h
2025-10-02T15:24:52.6277893Z patching file net/tipc/monitor.c
2025-10-02T15:24:52.6279610Z patching file net/tipc/msg.c
2025-10-02T15:24:52.6281304Z patching file net/tipc/msg.h
2025-10-02T15:24:52.6282817Z patching file net/tipc/name_distr.c
2025-10-02T15:24:52.6283573Z patching file net/tipc/name_distr.h
2025-10-02T15:24:52.6284659Z patching file net/tipc/name_table.c
2025-10-02T15:24:52.6286200Z patching file net/tipc/name_table.h
2025-10-02T15:24:52.6287179Z patching file net/tipc/net.c
2025-10-02T15:24:52.6288362Z patching file net/tipc/netlink.c
2025-10-02T15:24:52.6289910Z patching file net/tipc/netlink_compat.c
2025-10-02T15:24:52.6292782Z patching file net/tipc/node.c
2025-10-02T15:24:52.6296672Z patching file net/tipc/socket.c
2025-10-02T15:24:52.6300119Z patching file net/tipc/subscr.h
2025-10-02T15:24:52.6301233Z patching file net/tipc/topsrv.c
2025-10-02T15:24:52.6303211Z patching file net/tipc/udp_media.c
2025-10-02T15:24:52.6305539Z patching file net/tls/tls_device.c
2025-10-02T15:24:52.6307884Z patching file net/tls/tls_device_fallback.c
2025-10-02T15:24:52.6308829Z patching file net/tls/tls_main.c
2025-10-02T15:24:52.6311371Z patching file net/tls/tls_proc.c
2025-10-02T15:24:52.6312451Z patching file net/tls/tls_sw.c
2025-10-02T15:24:52.6316436Z patching file net/unix/af_unix.c
2025-10-02T15:24:52.6320068Z patching file net/unix/diag.c
2025-10-02T15:24:52.6321459Z patching file net/unix/garbage.c
2025-10-02T15:24:52.6322873Z patching file net/unix/scm.c
2025-10-02T15:24:52.6324428Z patching file net/vmw_vsock/af_vsock.c
2025-10-02T15:24:52.6328283Z patching file net/vmw_vsock/hyperv_transport.c
2025-10-02T15:24:52.6329669Z patching file net/vmw_vsock/virtio_transport.c
2025-10-02T15:24:52.6342100Z patching file net/vmw_vsock/virtio_transport_common.c
2025-10-02T15:24:52.6343149Z patching file net/vmw_vsock/vmci_transport.c
2025-10-02T15:24:52.6344082Z patching file net/wireless/Kconfig
2025-10-02T15:24:52.6344913Z patching file net/wireless/Makefile
2025-10-02T15:24:52.6345767Z patching file net/wireless/certs/wens.hex
2025-10-02T15:24:52.6346621Z patching file net/wireless/core.c
2025-10-02T15:24:52.6347398Z patching file net/wireless/core.h
2025-10-02T15:24:52.6348168Z patching file net/wireless/debugfs.c
2025-10-02T15:24:52.6348964Z patching file net/wireless/mlme.c
2025-10-02T15:24:52.6352508Z patching file net/wireless/nl80211.c
2025-10-02T15:24:52.6361902Z patching file net/wireless/pmsr.c
2025-10-02T15:24:52.6364458Z patching file net/wireless/reg.c
2025-10-02T15:24:52.6368323Z patching file net/wireless/scan.c
2025-10-02T15:24:52.6372999Z patching file net/wireless/sme.c
2025-10-02T15:24:52.6375626Z patching file net/wireless/trace.h
2025-10-02T15:24:52.6379052Z patching file net/wireless/util.c
2025-10-02T15:24:52.6381988Z patching file net/wireless/wext-core.c
2025-10-02T15:24:52.6383314Z patching file net/wireless/wext-spy.c
2025-10-02T15:24:52.6384740Z patching file net/x25/af_x25.c
2025-10-02T15:24:52.6386992Z patching file net/x25/x25_dev.c
2025-10-02T15:24:52.6387821Z patching file net/xdp/xdp_umem.c
2025-10-02T15:24:52.6388957Z patching file net/xdp/xsk.c
2025-10-02T15:24:52.6391540Z patching file net/xdp/xsk_buff_pool.c
2025-10-02T15:24:52.6392553Z patching file net/xdp/xsk_queue.h
2025-10-02T15:24:52.6393701Z patching file net/xfrm/Makefile
2025-10-02T15:24:52.6394529Z patching file net/xfrm/espintcp.c
2025-10-02T15:24:52.6395728Z patching file net/xfrm/xfrm_compat.c
2025-10-02T15:24:52.6397961Z patching file net/xfrm/xfrm_device.c
2025-10-02T15:24:52.6399211Z patching file net/xfrm/xfrm_input.c
2025-10-02T15:24:52.6401034Z patching file net/xfrm/xfrm_interface.c
2025-10-02T15:24:52.6403962Z patching file net/xfrm/xfrm_interface_core.c
2025-10-02T15:24:52.6407346Z patching file net/xfrm/xfrm_ipcomp.c
2025-10-02T15:24:52.6408208Z patching file net/xfrm/xfrm_output.c
2025-10-02T15:24:52.6410996Z patching file net/xfrm/xfrm_policy.c
2025-10-02T15:24:52.6415587Z patching file net/xfrm/xfrm_replay.c
2025-10-02T15:24:52.6417305Z patching file net/xfrm/xfrm_state.c
2025-10-02T15:24:52.6421388Z patching file net/xfrm/xfrm_user.c
2025-10-02T15:24:52.6425411Z patching file samples/Kconfig
2025-10-02T15:24:52.6426222Z patching file samples/Makefile
2025-10-02T15:24:52.6427220Z patching file samples/bpf/hbm.c
2025-10-02T15:24:52.6428423Z patching file samples/bpf/lwt_len_hist.sh
2025-10-02T15:24:52.6429348Z patching file samples/bpf/tcp_basertt_kern.c
2025-10-02T15:24:52.6430608Z patching file samples/bpf/test_cgrp2_sock.c
2025-10-02T15:24:52.6431789Z patching file samples/bpf/test_lwt_bpf.sh
2025-10-02T15:24:52.6432978Z patching file samples/bpf/test_override_return.sh
2025-10-02T15:24:52.6433754Z patching file samples/bpf/tracex1_kern.c
2025-10-02T15:24:52.6434489Z patching file samples/bpf/tracex6_kern.c
2025-10-02T15:24:52.6435431Z patching file samples/bpf/tracex7_user.c
2025-10-02T15:24:52.6436485Z patching file samples/bpf/xdp_adjust_tail_kern.c
2025-10-02T15:24:52.6438527Z patching file samples/bpf/xdp_redirect_cpu_user.c
2025-10-02T15:24:52.6440117Z patching file samples/bpf/xdp_redirect_user.c
2025-10-02T15:24:52.6441559Z patching file samples/bpf/xdpsock_user.c
2025-10-02T15:24:52.6444167Z patching file samples/fanotify/.gitignore
2025-10-02T15:24:52.6445062Z patching file samples/fanotify/Makefile
2025-10-02T15:24:52.6445955Z patching file samples/fanotify/fs-monitor.c
2025-10-02T15:24:52.6446926Z patching file samples/ftrace/ftrace-direct-modify.c
2025-10-02T15:24:52.6447933Z patching file samples/ftrace/ftrace-direct-too.c
2025-10-02T15:24:52.6448990Z patching file samples/ftrace/ftrace-direct.c
2025-10-02T15:24:52.6450139Z patching file samples/ftrace/sample-trace-array.c
2025-10-02T15:24:52.6451152Z patching file samples/hw_breakpoint/data_breakpoint.c
2025-10-02T15:24:52.6452158Z patching file samples/kfifo/bytestream-example.c
2025-10-02T15:24:52.6453134Z patching file samples/kfifo/inttype-example.c
2025-10-02T15:24:52.6454068Z patching file samples/kfifo/record-example.c
2025-10-02T15:24:52.6455003Z patching file samples/kprobes/kretprobe_example.c
2025-10-02T15:24:52.6455963Z patching file samples/mei/mei-amt-version.c
2025-10-02T15:24:52.6456926Z patching file samples/pktgen/pktgen_sample04_many_flows.sh
2025-10-02T15:24:52.6458097Z patching file samples/pktgen/pktgen_sample05_flow_per_thread.sh
2025-10-02T15:24:52.6459118Z patching file samples/vfio-mdev/mdpy-fb.c
2025-10-02T15:24:52.6460202Z patching file samples/watch_queue/watch_test.c
2025-10-02T15:24:52.6461123Z patching file scripts/Kbuild.include
2025-10-02T15:24:52.6461966Z patching file scripts/Kconfig.include
2025-10-02T15:24:52.6462809Z patching file scripts/Makefile
2025-10-02T15:24:52.6463643Z patching file scripts/Makefile.build
2025-10-02T15:24:52.6465001Z patching file scripts/Makefile.dtbinst
2025-10-02T15:24:52.6466079Z patching file scripts/Makefile.extrawarn
2025-10-02T15:24:52.6466988Z patching file scripts/Makefile.gcc-plugins
2025-10-02T15:24:52.6467850Z patching file scripts/Makefile.kasan
2025-10-02T15:24:52.6468725Z patching file scripts/Makefile.modpost
2025-10-02T15:24:52.6470073Z patching file scripts/Makefile.ubsan
2025-10-02T15:24:52.6471180Z patching file scripts/as-version.sh
2025-10-02T15:24:52.6473115Z patching file scripts/asn1_compiler.c
2025-10-02T15:24:52.6474734Z patching file scripts/bloat-o-meter
2025-10-02T15:24:52.6475796Z patching file scripts/bpf_helpers_doc.py
2025-10-02T15:24:52.6477246Z patching file scripts/checkkconfigsymbols.py
2025-10-02T15:24:52.6490318Z patching file scripts/checkpatch.pl
2025-10-02T15:24:52.6492114Z patching file scripts/checkstack.pl
2025-10-02T15:24:52.6493942Z patching file scripts/clang-tools/gen_compile_commands.py
2025-10-02T15:24:52.6494924Z patching file scripts/clang-tools/run-clang-tools.py
2025-10-02T15:24:52.6495820Z patching file scripts/config
2025-10-02T15:24:52.6496708Z patching file scripts/decode_stacktrace.sh
2025-10-02T15:24:52.6497505Z patching file scripts/depmod.sh
2025-10-02T15:24:52.6498511Z patching file scripts/diffconfig
2025-10-02T15:24:52.6499272Z patching file scripts/dtc/Makefile
2025-10-02T15:24:52.6500193Z patching file scripts/dtc/dtx_diff
2025-10-02T15:24:52.6501601Z patching file scripts/dummy-tools/dummy-plugin-dir/include/plugin-version.h
2025-10-02T15:24:52.6503036Z patching file scripts/dummy-tools/gcc
2025-10-02T15:24:52.6504289Z patching file scripts/extract-cert.c
2025-10-02T15:24:52.6505214Z patching file scripts/faddr2line
2025-10-02T15:24:52.6505997Z patching file scripts/gcc-plugin.sh
2025-10-02T15:24:52.6506792Z patching file scripts/gcc-plugins/Kconfig
2025-10-02T15:24:52.6507624Z patching file scripts/gcc-plugins/Makefile
2025-10-02T15:24:52.6508763Z patching file scripts/gcc-plugins/gcc-common.h
2025-10-02T15:24:52.6509867Z patching file scripts/gcc-plugins/latent_entropy_plugin.c
2025-10-02T15:24:52.6510907Z patching file scripts/gcc-plugins/randomize_layout_plugin.c
2025-10-02T15:24:52.6511908Z patching file scripts/gcc-plugins/stackleak_plugin.c
2025-10-02T15:24:52.6512890Z patching file scripts/gcc-x86_32-has-stack-protector.sh
2025-10-02T15:24:52.6513877Z patching file scripts/gcc-x86_64-has-stack-protector.sh
2025-10-02T15:24:52.6517756Z patching file scripts/gdb/linux/clk.py
2025-10-02T15:24:52.6525218Z patching file scripts/gdb/linux/config.py
2025-10-02T15:24:52.6526059Z patching file scripts/gdb/linux/genpd.py
2025-10-02T15:24:52.6526887Z patching file scripts/gdb/linux/timerlist.py
2025-10-02T15:24:52.6527716Z patching file scripts/gdb/linux/utils.py
2025-10-02T15:24:52.6528516Z patching file scripts/gen_autoksyms.sh
2025-10-02T15:24:52.6529310Z patching file scripts/gen_ksymdeps.sh
2025-10-02T15:24:52.6530276Z patching file scripts/genksyms/genksyms.c
2025-10-02T15:24:52.6531085Z patching file scripts/genksyms/genksyms.h
2025-10-02T15:24:52.6536975Z patching file scripts/genksyms/parse.y
2025-10-02T15:24:52.6537770Z patching file scripts/get_abi.pl
2025-10-02T15:24:52.6538527Z patching file scripts/kallsyms.c
2025-10-02T15:24:52.6539290Z patching file scripts/kconfig/confdata.c
2025-10-02T15:24:52.6540222Z patching file scripts/kconfig/expr.c
2025-10-02T15:24:52.6541033Z patching file scripts/kconfig/expr.h
2025-10-02T15:24:52.6541804Z patching file scripts/kconfig/gconf.c
2025-10-02T15:24:52.6542596Z patching file scripts/kconfig/lexer.l
2025-10-02T15:24:52.6543438Z patching file scripts/kconfig/lxdialog/inputbox.c
2025-10-02T15:24:52.6544344Z patching file scripts/kconfig/lxdialog/menubox.c
2025-10-02T15:24:52.6545190Z patching file scripts/kconfig/menu.c
2025-10-02T15:24:52.6545989Z patching file scripts/kconfig/merge_config.sh
2025-10-02T15:24:52.6546812Z patching file scripts/kconfig/nconf.c
2025-10-02T15:24:52.6547611Z patching file scripts/kconfig/nconf.gui.c
2025-10-02T15:24:52.6548392Z patching file scripts/kconfig/preprocess.c
2025-10-02T15:24:52.6550027Z patching file scripts/kconfig/qconf.cc
2025-10-02T15:24:52.6550853Z patching file scripts/kconfig/symbol.c
2025-10-02T15:24:52.6551879Z patching file scripts/kernel-doc
2025-10-02T15:24:52.6552676Z patching file scripts/leaking_addresses.pl
2025-10-02T15:24:52.6554875Z patching file scripts/link-vmlinux.sh
2025-10-02T15:24:52.6555935Z patching file scripts/lld-version.sh
2025-10-02T15:24:52.6557122Z patching file scripts/mkcompile_h
2025-10-02T15:24:52.6558236Z patching file scripts/mksysmap
2025-10-02T15:24:52.6559224Z patching file scripts/mod/file2alias.c
2025-10-02T15:24:52.6560609Z patching file scripts/mod/modpost.c
2025-10-02T15:24:52.6561529Z patching file scripts/mod/sumversion.c
2025-10-02T15:24:52.6562296Z patching file scripts/module.lds.S
2025-10-02T15:24:52.6563096Z patching file scripts/package/mkdebian
2025-10-02T15:24:52.6563928Z patching file scripts/package/mkspec
2025-10-02T15:24:52.6564741Z patching file scripts/pahole-flags.sh
2025-10-02T15:24:52.6565530Z patching file scripts/recordmcount.c
2025-10-02T15:24:52.6566316Z patching file scripts/recordmcount.h
2025-10-02T15:24:52.6567102Z patching file scripts/recordmcount.pl
2025-10-02T15:24:52.6568655Z patching file scripts/selinux/install_policy.sh
2025-10-02T15:24:52.6570069Z patching file scripts/show_delta
2025-10-02T15:24:52.6571660Z patching file scripts/sign-file.c
2025-10-02T15:24:52.6572433Z patching file scripts/sorttable.h
2025-10-02T15:24:52.6574936Z patching file scripts/sphinx-pre-install
2025-10-02T15:24:52.6575752Z patching file scripts/split-man.pl
2025-10-02T15:24:52.6576635Z patching file scripts/tags.sh
2025-10-02T15:24:52.6580179Z patching file scripts/tools-support-relr.sh
2025-10-02T15:24:52.6581061Z patching file scripts/tracing/draw_functrace.py
2025-10-02T15:24:52.6581956Z patching file scripts/tracing/ftrace-bisect.sh
2025-10-02T15:24:52.6583063Z patching file security/Kconfig
2025-10-02T15:24:52.6584792Z patching file security/Kconfig.hardening
2025-10-02T15:24:52.6585651Z patching file security/apparmor/apparmorfs.c
2025-10-02T15:24:52.6586657Z patching file security/apparmor/audit.c
2025-10-02T15:24:52.6587634Z patching file security/apparmor/capability.c
2025-10-02T15:24:52.6588311Z patching file security/apparmor/domain.c
2025-10-02T15:24:52.6589160Z patching file security/apparmor/include/audit.h
2025-10-02T15:24:52.6590195Z patching file security/apparmor/include/lib.h
2025-10-02T15:24:52.6591061Z patching file security/apparmor/include/match.h
2025-10-02T15:24:52.6591942Z patching file security/apparmor/include/policy.h
2025-10-02T15:24:52.6593042Z patching file security/apparmor/label.c
2025-10-02T15:24:52.6595897Z patching file security/apparmor/lsm.c
2025-10-02T15:24:52.6598122Z patching file security/apparmor/match.c
2025-10-02T15:24:52.6599317Z patching file security/apparmor/mount.c
2025-10-02T15:24:52.6601165Z patching file security/apparmor/policy.c
2025-10-02T15:24:52.6602670Z patching file security/apparmor/policy_ns.c
2025-10-02T15:24:52.6604541Z patching file security/apparmor/policy_unpack.c
2025-10-02T15:24:52.6606555Z patching file security/apparmor/policy_unpack_test.c
2025-10-02T15:24:52.6608329Z patching file security/commoncap.c
2025-10-02T15:24:52.6609374Z patching file security/device_cgroup.c
2025-10-02T15:24:52.6612395Z patching file security/inode.c
2025-10-02T15:24:52.6614894Z patching file security/integrity/digsig.c
2025-10-02T15:24:52.6615965Z patching file security/integrity/evm/evm_main.c
2025-10-02T15:24:52.6616869Z patching file security/integrity/evm/evm_secfs.c
2025-10-02T15:24:52.6617927Z patching file security/integrity/iint.c
2025-10-02T15:24:52.6618755Z patching file security/integrity/ima/Kconfig
2025-10-02T15:24:52.6621036Z patching file security/integrity/ima/ima.h
2025-10-02T15:24:52.6622098Z patching file security/integrity/ima/ima_api.c
2025-10-02T15:24:52.6623292Z patching file security/integrity/ima/ima_appraise.c
2025-10-02T15:24:52.6624514Z patching file security/integrity/ima/ima_crypto.c
2025-10-02T15:24:52.6625586Z patching file security/integrity/ima/ima_fs.c
2025-10-02T15:24:52.6627130Z patching file security/integrity/ima/ima_kexec.c
2025-10-02T15:24:52.6628050Z patching file security/integrity/ima/ima_main.c
2025-10-02T15:24:52.6628957Z patching file security/integrity/ima/ima_modsig.c
2025-10-02T15:24:52.6630447Z patching file security/integrity/ima/ima_mok.c
2025-10-02T15:24:52.6631377Z patching file security/integrity/ima/ima_policy.c
2025-10-02T15:24:52.6634761Z patching file security/integrity/ima/ima_template.c
2025-10-02T15:24:52.6635737Z patching file security/integrity/ima/ima_template_lib.c
2025-10-02T15:24:52.6636670Z patching file security/integrity/integrity.h
2025-10-02T15:24:52.6637547Z patching file security/integrity/integrity_audit.c
2025-10-02T15:24:52.6638548Z patching file security/integrity/platform_certs/keyring_handler.c
2025-10-02T15:24:52.6639782Z patching file security/integrity/platform_certs/keyring_handler.h
2025-10-02T15:24:52.6640832Z patching file security/integrity/platform_certs/load_uefi.c
2025-10-02T15:24:52.6641795Z patching file security/keys/Kconfig
2025-10-02T15:24:52.6642573Z patching file security/keys/gc.c
2025-10-02T15:24:52.6643339Z patching file security/keys/internal.h
2025-10-02T15:24:52.6644381Z patching file security/keys/key.c
2025-10-02T15:24:52.6646680Z patching file security/keys/keyctl.c
2025-10-02T15:24:52.6648753Z patching file security/keys/keyctl_pkey.c
2025-10-02T15:24:52.6650348Z patching file security/keys/keyring.c
2025-10-02T15:24:52.6652318Z patching file security/keys/proc.c
2025-10-02T15:24:52.6653328Z patching file security/keys/request_key.c
2025-10-02T15:24:52.6655408Z patching file security/keys/trusted-keys/trusted_tpm1.c
2025-10-02T15:24:52.6657038Z patching file security/keys/trusted-keys/trusted_tpm2.c
2025-10-02T15:24:52.6658364Z patching file security/loadpin/loadpin.c
2025-10-02T15:24:52.6659599Z patching file security/lsm_audit.c
2025-10-02T15:24:52.6660886Z patching file security/safesetid/securityfs.c
2025-10-02T15:24:52.6662346Z patching file security/security.c
2025-10-02T15:24:52.6665610Z patching file security/selinux/Makefile
2025-10-02T15:24:52.6666542Z patching file security/selinux/avc.c
2025-10-02T15:24:52.6670723Z patching file security/selinux/hooks.c
2025-10-02T15:24:52.6676509Z patching file security/selinux/include/audit.h
2025-10-02T15:24:52.6677099Z patching file security/selinux/include/classmap.h
2025-10-02T15:24:52.6678187Z patching file security/selinux/include/policycap.h
2025-10-02T15:24:52.6678897Z patching file security/selinux/include/policycap_names.h
2025-10-02T15:24:52.6679694Z patching file security/selinux/include/security.h
2025-10-02T15:24:52.6680717Z patching file security/selinux/include/xfrm.h
2025-10-02T15:24:52.6681228Z patching file security/selinux/nlmsgtab.c
2025-10-02T15:24:52.6682613Z patching file security/selinux/selinuxfs.c
2025-10-02T15:24:52.6684189Z patching file security/selinux/ss/avtab.c
2025-10-02T15:24:52.6685487Z patching file security/selinux/ss/avtab.h
2025-10-02T15:24:52.6686003Z patching file security/selinux/ss/conditional.c
2025-10-02T15:24:52.6687034Z patching file security/selinux/ss/hashtab.c
2025-10-02T15:24:52.6688608Z patching file security/selinux/ss/policydb.c
2025-10-02T15:24:52.6690879Z patching file security/selinux/ss/policydb.h
2025-10-02T15:24:52.6692354Z patching file security/selinux/ss/services.c
2025-10-02T15:24:52.6696067Z patching file security/selinux/ss/sidtab.c
2025-10-02T15:24:52.6696768Z patching file security/selinux/ss/sidtab.h
2025-10-02T15:24:52.6697486Z patching file security/selinux/xfrm.c
2025-10-02T15:24:52.6698520Z patching file security/smack/smack.h
2025-10-02T15:24:52.6699325Z patching file security/smack/smack_access.c
2025-10-02T15:24:52.6701731Z patching file security/smack/smack_lsm.c
2025-10-02T15:24:52.6705324Z patching file security/smack/smackfs.c
2025-10-02T15:24:52.6707314Z patching file security/tomoyo/Makefile
2025-10-02T15:24:52.6708471Z patching file security/tomoyo/common.c
2025-10-02T15:24:52.6710665Z patching file security/tomoyo/domain.c
2025-10-02T15:24:52.6711922Z patching file security/tomoyo/file.c
2025-10-02T15:24:52.6713100Z patching file security/tomoyo/load_policy.c
2025-10-02T15:24:52.6713559Z patching file security/tomoyo/network.c
2025-10-02T15:24:52.6714697Z patching file security/tomoyo/tomoyo.c
2025-10-02T15:24:52.6715618Z patching file security/tomoyo/util.c
2025-10-02T15:24:52.6717048Z patching file sound/Kconfig
2025-10-02T15:24:52.6717482Z patching file sound/ac97/bus.c
2025-10-02T15:24:52.6718605Z patching file sound/aoa/soundbus/i2sbus/core.c
2025-10-02T15:24:52.6719783Z patching file sound/arm/aaci.c
2025-10-02T15:24:52.6721095Z patching file sound/core/Makefile
2025-10-02T15:24:52.6722034Z patching file sound/core/control.c
2025-10-02T15:24:52.6723756Z patching file sound/core/control_compat.c
2025-10-02T15:24:52.6724549Z patching file sound/core/info.c
2025-10-02T15:24:52.6725991Z patching file sound/core/init.c
2025-10-02T15:24:52.6727088Z patching file sound/core/jack.c
2025-10-02T15:24:52.6728129Z patching file sound/core/memalloc.c
2025-10-02T15:24:52.6728722Z patching file sound/core/misc.c
2025-10-02T15:24:52.6730392Z patching file sound/core/oss/mixer_oss.c
2025-10-02T15:24:52.6733398Z patching file sound/core/oss/pcm_oss.c
2025-10-02T15:24:52.6736439Z patching file sound/core/oss/pcm_plugin.c
2025-10-02T15:24:52.6737422Z patching file sound/core/oss/pcm_plugin.h
2025-10-02T15:24:52.6738674Z patching file sound/core/pcm.c
2025-10-02T15:24:52.6740932Z patching file sound/core/pcm_compat.c
2025-10-02T15:24:52.6742437Z patching file sound/core/pcm_dmaengine.c
2025-10-02T15:24:52.6744412Z patching file sound/core/pcm_lib.c
2025-10-02T15:24:52.6746620Z patching file sound/core/pcm_local.h
2025-10-02T15:24:52.6747338Z patching file sound/core/pcm_memory.c
2025-10-02T15:24:52.6749216Z patching file sound/core/pcm_misc.c
2025-10-02T15:24:52.6751576Z patching file sound/core/pcm_native.c
2025-10-02T15:24:52.6756052Z patching file sound/core/rawmidi.c
2025-10-02T15:24:52.6758588Z patching file sound/core/seq/oss/seq_oss_midi.c
2025-10-02T15:24:52.6760101Z patching file sound/core/seq/oss/seq_oss_synth.c
2025-10-02T15:24:52.6762226Z patching file sound/core/seq/seq_clientmgr.c
2025-10-02T15:24:52.6764500Z patching file sound/core/seq/seq_memory.c
2025-10-02T15:24:52.6765459Z patching file sound/core/seq/seq_midi.c
2025-10-02T15:24:52.6767008Z patching file sound/core/seq/seq_ports.c
2025-10-02T15:24:52.6768599Z patching file sound/core/seq/seq_queue.c
2025-10-02T15:24:52.6770010Z patching file sound/core/seq/seq_queue.h
2025-10-02T15:24:52.6770930Z patching file sound/core/seq/seq_timer.c
2025-10-02T15:24:52.6772188Z patching file sound/core/seq/seq_virmidi.c
2025-10-02T15:24:52.6784043Z patching file sound/core/seq_device.c
2025-10-02T15:24:52.6784461Z patching file sound/core/sound_oss.c
2025-10-02T15:24:52.6784827Z patching file sound/core/timer.c
2025-10-02T15:24:52.6785197Z patching file sound/drivers/aloop.c
2025-10-02T15:24:52.6785545Z patching file sound/drivers/mts64.c
2025-10-02T15:24:52.6785925Z patching file sound/drivers/opl3/opl3_midi.c
2025-10-02T15:24:52.6786277Z patching file sound/firewire/Kconfig
2025-10-02T15:24:52.6786686Z patching file sound/firewire/amdtp-stream-trace.h
2025-10-02T15:24:52.6787064Z patching file sound/firewire/amdtp-stream.c
2025-10-02T15:24:52.6788915Z patching file sound/firewire/bebob/bebob.c
2025-10-02T15:24:52.6790337Z patching file sound/firewire/bebob/bebob_stream.c
2025-10-02T15:24:52.6792065Z patching file sound/firewire/dice/dice-alesis.c
2025-10-02T15:24:52.6792820Z patching file sound/firewire/dice/dice-stream.c
2025-10-02T15:24:52.6794029Z patching file sound/firewire/dice/dice-tcelectronic.c
2025-10-02T15:24:52.6794947Z patching file sound/firewire/digi00x/digi00x-stream.c
2025-10-02T15:24:52.6795989Z patching file sound/firewire/fcp.c
2025-10-02T15:24:52.6797243Z patching file sound/firewire/fireface/ff-protocol-latter.c
2025-10-02T15:24:52.6799116Z patching file sound/firewire/fireface/ff-transaction.c
2025-10-02T15:24:52.6800140Z patching file sound/firewire/fireworks/fireworks_hwdep.c
2025-10-02T15:24:52.6801233Z patching file sound/firewire/motu/motu-hwdep.c
2025-10-02T15:24:52.6802372Z patching file sound/firewire/motu/motu-protocol-v2.c
2025-10-02T15:24:52.6803362Z patching file sound/firewire/oxfw/oxfw.c
2025-10-02T15:24:52.6804519Z patching file sound/firewire/tascam/amdtp-tascam.c
2025-10-02T15:24:52.6805474Z patching file sound/firewire/tascam/tascam-stream.c
2025-10-02T15:24:52.6806630Z patching file sound/firewire/tascam/tascam-transaction.c
2025-10-02T15:24:52.6807733Z patching file sound/hda/ext/hdac_ext_stream.c
2025-10-02T15:24:52.6809924Z patching file sound/hda/hdac_controller.c
2025-10-02T15:24:52.6811051Z patching file sound/hda/hdac_device.c
2025-10-02T15:24:52.6812789Z patching file sound/hda/hdac_regmap.c
2025-10-02T15:24:52.6813857Z patching file sound/hda/hdac_stream.c
2025-10-02T15:24:52.6815687Z patching file sound/hda/hdac_sysfs.c
2025-10-02T15:24:52.6816694Z patching file sound/hda/hdmi_chmap.c
2025-10-02T15:24:52.6818433Z patching file sound/hda/intel-dsp-config.c
2025-10-02T15:24:52.6820122Z patching file sound/hda/intel-nhlt.c
2025-10-02T15:24:52.6821133Z patching file sound/i2c/cs8427.c
2025-10-02T15:24:52.6822607Z patching file sound/isa/Kconfig
2025-10-02T15:24:52.6823661Z patching file sound/isa/cmi8330.c
2025-10-02T15:24:52.6825315Z patching file sound/isa/cs423x/cs4236.c
2025-10-02T15:24:52.6826515Z patching file sound/isa/gus/gus_dma.c
2025-10-02T15:24:52.6827497Z patching file sound/isa/gus/gus_main.c
2025-10-02T15:24:52.6829213Z patching file sound/isa/sb/emu8000.c
2025-10-02T15:24:52.6831196Z patching file sound/isa/sb/sb16_csp.c
2025-10-02T15:24:52.6833157Z patching file sound/isa/sb/sb16_main.c
2025-10-02T15:24:52.6834269Z patching file sound/isa/sb/sb8.c
2025-10-02T15:24:52.6836020Z patching file sound/isa/wavefront/wavefront_synth.c
2025-10-02T15:24:52.6838141Z patching file sound/oss/dmasound/dmasound.h
2025-10-02T15:24:52.6839359Z patching file sound/oss/dmasound/dmasound_core.c
2025-10-02T15:24:52.6842016Z patching file sound/pci/Kconfig
2025-10-02T15:24:52.6844148Z patching file sound/pci/ac97/ac97_codec.c
2025-10-02T15:24:52.6847287Z patching file sound/pci/asihpi/hpi6205.c
2025-10-02T15:24:52.6849695Z patching file sound/pci/asihpi/hpimsgx.c
2025-10-02T15:24:52.6850850Z patching file sound/pci/asihpi/hpioctl.c
2025-10-02T15:24:52.6852016Z patching file sound/pci/au88x0/au88x0.h
2025-10-02T15:24:52.6853975Z patching file sound/pci/au88x0/au88x0_core.c
2025-10-02T15:24:52.6857117Z patching file sound/pci/cmipci.c
2025-10-02T15:24:52.6860044Z patching file sound/pci/ctxfi/ctamixer.c
2025-10-02T15:24:52.6861298Z patching file sound/pci/ctxfi/ctatc.c
2025-10-02T15:24:52.6863378Z patching file sound/pci/ctxfi/ctdaio.c
2025-10-02T15:24:52.6864468Z patching file sound/pci/ctxfi/cthardware.h
2025-10-02T15:24:52.6866185Z patching file sound/pci/ctxfi/cthw20k2.c
2025-10-02T15:24:52.6868250Z patching file sound/pci/ctxfi/ctresource.c
2025-10-02T15:24:52.6868923Z patching file sound/pci/ctxfi/ctresource.h
2025-10-02T15:24:52.6870073Z patching file sound/pci/ctxfi/ctsrc.c
2025-10-02T15:24:52.6872410Z patching file sound/pci/emu10k1/emufx.c
2025-10-02T15:24:52.6875640Z patching file sound/pci/emu10k1/emupcm.c
2025-10-02T15:24:52.6878224Z patching file sound/pci/es1968.c
2025-10-02T15:24:52.6881095Z patching file sound/pci/hda/hda_auto_parser.c
2025-10-02T15:24:52.6882756Z patching file sound/pci/hda/hda_beep.c
2025-10-02T15:24:52.6883647Z patching file sound/pci/hda/hda_beep.h
2025-10-02T15:24:52.6884504Z patching file sound/pci/hda/hda_bind.c
2025-10-02T15:24:52.6886874Z patching file sound/pci/hda/hda_codec.c
2025-10-02T15:24:52.6890469Z patching file sound/pci/hda/hda_controller.c
2025-10-02T15:24:52.6892285Z patching file sound/pci/hda/hda_controller.h
2025-10-02T15:24:52.6894919Z patching file sound/pci/hda/hda_generic.c
2025-10-02T15:24:52.6899161Z patching file sound/pci/hda/hda_generic.h
2025-10-02T15:24:52.6901094Z patching file sound/pci/hda/hda_intel.c
2025-10-02T15:24:52.6904698Z patching file sound/pci/hda/hda_intel.h
2025-10-02T15:24:52.6905481Z patching file sound/pci/hda/hda_local.h
2025-10-02T15:24:52.6907313Z patching file sound/pci/hda/hda_sysfs.c
2025-10-02T15:24:52.6908263Z patching file sound/pci/hda/hda_tegra.c
2025-10-02T15:24:52.6910229Z patching file sound/pci/hda/ideapad_s740_helper.c
2025-10-02T15:24:52.6915286Z patching file sound/pci/hda/patch_ca0132.c
2025-10-02T15:24:52.6921193Z patching file sound/pci/hda/patch_cirrus.c
2025-10-02T15:24:52.6922965Z patching file sound/pci/hda/patch_conexant.c
2025-10-02T15:24:52.6926524Z patching file sound/pci/hda/patch_hdmi.c
2025-10-02T15:24:52.6933161Z patching file sound/pci/hda/patch_realtek.c
2025-10-02T15:24:52.6948265Z patching file sound/pci/hda/patch_sigmatel.c
2025-10-02T15:24:52.6952515Z patching file sound/pci/hda/patch_via.c
2025-10-02T15:24:52.6954828Z patching file sound/pci/ice1712/aureon.c
2025-10-02T15:24:52.6957510Z patching file sound/pci/intel8x0.c
2025-10-02T15:24:52.6960597Z patching file sound/pci/lx6464es/lx_core.c
2025-10-02T15:24:52.6962461Z patching file sound/pci/oxygen/oxygen_mixer.c
2025-10-02T15:24:52.6965458Z patching file sound/pci/rme9652/hdsp.c
2025-10-02T15:24:52.6970740Z patching file sound/pci/rme9652/hdspm.c
2025-10-02T15:24:52.6975346Z patching file sound/pci/rme9652/rme9652.c
2025-10-02T15:24:52.6978528Z patching file sound/pci/ymfpci/ymfpci.c
2025-10-02T15:24:52.6980636Z patching file sound/pci/ymfpci/ymfpci_main.c
2025-10-02T15:24:52.6984012Z patching file sound/ppc/powermac.c
2025-10-02T15:24:52.6984734Z patching file sound/sh/Kconfig
2025-10-02T15:24:52.6986048Z patching file sound/sh/aica.c
2025-10-02T15:24:52.6987307Z patching file sound/soc/amd/acp-da7219-max98357a.c
2025-10-02T15:24:52.6988988Z patching file sound/soc/amd/acp-pcm-dma.c
2025-10-02T15:24:52.6990729Z patching file sound/soc/amd/raven/acp3x-pcm-dma.c
2025-10-02T15:24:52.6992079Z patching file sound/soc/amd/raven/acp3x.h
2025-10-02T15:24:52.6992932Z patching file sound/soc/amd/raven/pci-acp3x.c
2025-10-02T15:24:52.6994802Z patching file sound/soc/amd/renoir/acp3x-pdm-dma.c
2025-10-02T15:24:52.6995802Z patching file sound/soc/amd/renoir/rn-pci-acp3x.c
2025-10-02T15:24:52.6997136Z patching file sound/soc/atmel/Kconfig
2025-10-02T15:24:52.6998290Z patching file sound/soc/atmel/atmel-classd.c
2025-10-02T15:24:52.6999778Z patching file sound/soc/atmel/atmel-i2s.c
2025-10-02T15:24:52.7001785Z patching file sound/soc/atmel/atmel-pdmic.c
2025-10-02T15:24:52.7002938Z patching file sound/soc/atmel/atmel_ssc_dai.c
2025-10-02T15:24:52.7004786Z patching file sound/soc/atmel/mchp-spdifrx.c
2025-10-02T15:24:52.7008110Z patching file sound/soc/atmel/mchp-spdiftx.c
2025-10-02T15:24:52.7009715Z patching file sound/soc/atmel/sam9g20_wm8731.c
2025-10-02T15:24:52.7010864Z patching file sound/soc/atmel/sam9x5_wm8731.c
2025-10-02T15:24:52.7011821Z patching file sound/soc/atmel/tse850-pcm5142.c
2025-10-02T15:24:52.7012817Z patching file sound/soc/au1x/db1200.c
2025-10-02T15:24:52.7014400Z patching file sound/soc/codecs/Kconfig
2025-10-02T15:24:52.7016930Z patching file sound/soc/codecs/adau7118.c
2025-10-02T15:24:52.7018453Z patching file sound/soc/codecs/ak4458.c
2025-10-02T15:24:52.7020161Z patching file sound/soc/codecs/ak5558.c
2025-10-02T15:24:52.7022164Z patching file sound/soc/codecs/arizona.c
2025-10-02T15:24:52.7025510Z patching file sound/soc/codecs/cpcap.c
2025-10-02T15:24:52.7027691Z patching file sound/soc/codecs/cros_ec_codec.c
2025-10-02T15:24:52.7029412Z patching file sound/soc/codecs/cs35l33.c
2025-10-02T15:24:52.7031592Z patching file sound/soc/codecs/cs35l34.c
2025-10-02T15:24:52.7033943Z patching file sound/soc/codecs/cs35l36.c
2025-10-02T15:24:52.7036007Z patching file sound/soc/codecs/cs4265.c
2025-10-02T15:24:52.7037900Z patching file sound/soc/codecs/cs42l42.c
2025-10-02T15:24:52.7042010Z patching file sound/soc/codecs/cs42l42.h
2025-10-02T15:24:52.7043615Z patching file sound/soc/codecs/cs42l51-i2c.c
2025-10-02T15:24:52.7045132Z patching file sound/soc/codecs/cs42l51.c
2025-10-02T15:24:52.7046345Z patching file sound/soc/codecs/cs42l51.h
2025-10-02T15:24:52.7047655Z patching file sound/soc/codecs/cs42l52.c
2025-10-02T15:24:52.7049761Z patching file sound/soc/codecs/cs42l56.c
2025-10-02T15:24:52.7052673Z patching file sound/soc/codecs/cs43130.c
2025-10-02T15:24:52.7055511Z patching file sound/soc/codecs/cs47l15.c
2025-10-02T15:24:52.7057752Z patching file sound/soc/codecs/cs53l30.c
2025-10-02T15:24:52.7060009Z patching file sound/soc/codecs/cx2072x.c
2025-10-02T15:24:52.7062335Z patching file sound/soc/codecs/da7210.c
2025-10-02T15:24:52.7068010Z patching file sound/soc/codecs/da7219-aad.c
2025-10-02T15:24:52.7068381Z patching file sound/soc/codecs/da7219.c
2025-10-02T15:24:52.7068726Z patching file sound/soc/codecs/es8316.c
2025-10-02T15:24:52.7070466Z patching file sound/soc/codecs/es8328.c
2025-10-02T15:24:52.7072488Z patching file sound/soc/codecs/hdac_hda.c
2025-10-02T15:24:52.7073911Z patching file sound/soc/codecs/hdac_hda.h
2025-10-02T15:24:52.7075419Z patching file sound/soc/codecs/hdac_hdmi.c
2025-10-02T15:24:52.7078135Z patching file sound/soc/codecs/hdmi-codec.c
2025-10-02T15:24:52.7080283Z patching file sound/soc/codecs/jz4725b.c
2025-10-02T15:24:52.7083172Z patching file sound/soc/codecs/madera.c
2025-10-02T15:24:52.7086906Z patching file sound/soc/codecs/max9759.c
2025-10-02T15:24:52.7088500Z patching file sound/soc/codecs/max98088.c
2025-10-02T15:24:52.7091929Z patching file sound/soc/codecs/max98090.c
2025-10-02T15:24:52.7095321Z patching file sound/soc/codecs/max98373-i2c.c
2025-10-02T15:24:52.7096445Z patching file sound/soc/codecs/max98373-sdw.c
2025-10-02T15:24:52.7098295Z patching file sound/soc/codecs/max98373.c
2025-10-02T15:24:52.7099826Z patching file sound/soc/codecs/max98373.h
2025-10-02T15:24:52.7101195Z patching file sound/soc/codecs/max98390.c
2025-10-02T15:24:52.7103280Z patching file sound/soc/codecs/msm8916-wcd-analog.c
2025-10-02T15:24:52.7105268Z patching file sound/soc/codecs/msm8916-wcd-digital.c
2025-10-02T15:24:52.7107848Z patching file sound/soc/codecs/mt6358.c
2025-10-02T15:24:52.7110747Z patching file sound/soc/codecs/mt6660.c
2025-10-02T15:24:52.7112303Z patching file sound/soc/codecs/nau8822.c
2025-10-02T15:24:52.7114207Z patching file sound/soc/codecs/nau8822.h
2025-10-02T15:24:52.7115700Z patching file sound/soc/codecs/nau8824.c
2025-10-02T15:24:52.7118661Z patching file sound/soc/codecs/pcm512x.c
2025-10-02T15:24:52.7120954Z patching file sound/soc/codecs/rk3328_codec.c
2025-10-02T15:24:52.7122522Z patching file sound/soc/codecs/rt1015.c
2025-10-02T15:24:52.7124293Z patching file sound/soc/codecs/rt1308-sdw.c
2025-10-02T15:24:52.7125437Z patching file sound/soc/codecs/rt1308-sdw.h
2025-10-02T15:24:52.7126651Z patching file sound/soc/codecs/rt286.c
2025-10-02T15:24:52.7128644Z patching file sound/soc/codecs/rt298.c
2025-10-02T15:24:52.7131045Z patching file sound/soc/codecs/rt5514.c
2025-10-02T15:24:52.7133133Z patching file sound/soc/codecs/rt5631.c
2025-10-02T15:24:52.7135775Z patching file sound/soc/codecs/rt5640.c
2025-10-02T15:24:52.7139166Z patching file sound/soc/codecs/rt5645.c
2025-10-02T15:24:52.7143197Z patching file sound/soc/codecs/rt5651.c
2025-10-02T15:24:52.7146233Z patching file sound/soc/codecs/rt5659.c
2025-10-02T15:24:52.7150285Z patching file sound/soc/codecs/rt5663.c
2025-10-02T15:24:52.7154122Z patching file sound/soc/codecs/rt5665.c
2025-10-02T15:24:52.7158013Z patching file sound/soc/codecs/rt5668.c
2025-10-02T15:24:52.7161255Z patching file sound/soc/codecs/rt5670.c
2025-10-02T15:24:52.7163908Z patching file sound/soc/codecs/rt5682-i2c.c
2025-10-02T15:24:52.7165181Z patching file sound/soc/codecs/rt5682-sdw.c
2025-10-02T15:24:52.7167630Z patching file sound/soc/codecs/rt5682.c
2025-10-02T15:24:52.7170643Z patching file sound/soc/codecs/rt700-sdw.c
2025-10-02T15:24:52.7172218Z patching file sound/soc/codecs/rt700.c
2025-10-02T15:24:52.7174034Z patching file sound/soc/codecs/rt711-sdw.c
2025-10-02T15:24:52.7175003Z patching file sound/soc/codecs/rt711-sdw.h
2025-10-02T15:24:52.7176476Z patching file sound/soc/codecs/rt711.c
2025-10-02T15:24:52.7178566Z patching file sound/soc/codecs/rt711.h
2025-10-02T15:24:52.7179819Z patching file sound/soc/codecs/rt715-sdw.c
2025-10-02T15:24:52.7181768Z patching file sound/soc/codecs/rt715.c
2025-10-02T15:24:52.7183541Z patching file sound/soc/codecs/sgtl5000.c
2025-10-02T15:24:52.7185717Z patching file sound/soc/codecs/sgtl5000.h
2025-10-02T15:24:52.7186776Z patching file sound/soc/codecs/ssm2602.c
2025-10-02T15:24:52.7188490Z patching file sound/soc/codecs/sti-sas.c
2025-10-02T15:24:52.7189836Z patching file sound/soc/codecs/tas2552.c
2025-10-02T15:24:52.7191663Z patching file sound/soc/codecs/tas2562.h
2025-10-02T15:24:52.7192588Z patching file sound/soc/codecs/tas2764.c
2025-10-02T15:24:52.7194997Z patching file sound/soc/codecs/tas2764.h
2025-10-02T15:24:52.7195950Z patching file sound/soc/codecs/tas2770.c
2025-10-02T15:24:52.7198377Z patching file sound/soc/codecs/tas2770.h
2025-10-02T15:24:52.7199394Z patching file sound/soc/codecs/tda7419.c
2025-10-02T15:24:52.7201613Z patching file sound/soc/codecs/tlv320adcx140.c
2025-10-02T15:24:52.7203645Z patching file sound/soc/codecs/tlv320aic31xx.c
2025-10-02T15:24:52.7205635Z patching file sound/soc/codecs/tlv320aic31xx.h
2025-10-02T15:24:52.7206911Z patching file sound/soc/codecs/tlv320aic32x4.c
2025-10-02T15:24:52.7209830Z patching file sound/soc/codecs/tscs454.c
2025-10-02T15:24:52.7213737Z patching file sound/soc/codecs/wcd9335.c
2025-10-02T15:24:52.7218643Z patching file sound/soc/codecs/wcd934x.c
2025-10-02T15:24:52.7223123Z patching file sound/soc/codecs/wm0010.c
2025-10-02T15:24:52.7224834Z patching file sound/soc/codecs/wm2000.c
2025-10-02T15:24:52.7226962Z patching file sound/soc/codecs/wm5110.c
2025-10-02T15:24:52.7230002Z patching file sound/soc/codecs/wm8350.c
2025-10-02T15:24:52.7232261Z patching file sound/soc/codecs/wm8731.c
2025-10-02T15:24:52.7234352Z patching file sound/soc/codecs/wm8904.c
2025-10-02T15:24:52.7236801Z patching file sound/soc/codecs/wm8940.c
2025-10-02T15:24:52.7238420Z patching file sound/soc/codecs/wm8958-dsp2.c
2025-10-02T15:24:52.7240725Z patching file sound/soc/codecs/wm8960.c
2025-10-02T15:24:52.7243543Z patching file sound/soc/codecs/wm8962.c
2025-10-02T15:24:52.7247080Z patching file sound/soc/codecs/wm8974.c
2025-10-02T15:24:52.7249787Z patching file sound/soc/codecs/wm8994.c
2025-10-02T15:24:52.7253330Z patching file sound/soc/codecs/wm8997.c
2025-10-02T15:24:52.7255539Z patching file sound/soc/codecs/wm8998.c
2025-10-02T15:24:52.7258366Z patching file sound/soc/codecs/wm_adsp.c
2025-10-02T15:24:52.7261972Z patching file sound/soc/codecs/wsa881x.c
2025-10-02T15:24:52.7263869Z patching file sound/soc/dwc/dwc-i2s.c
2025-10-02T15:24:52.7265650Z patching file sound/soc/fsl/eukrea-tlv320.c
2025-10-02T15:24:52.7266707Z patching file sound/soc/fsl/fsl-asoc-card.c
2025-10-02T15:24:52.7268607Z patching file sound/soc/fsl/fsl_asrc.c
2025-10-02T15:24:52.7270898Z patching file sound/soc/fsl/fsl_asrc_dma.c
2025-10-02T15:24:52.7272584Z patching file sound/soc/fsl/fsl_easrc.c
2025-10-02T15:24:52.7274899Z patching file sound/soc/fsl/fsl_easrc.h
2025-10-02T15:24:52.7276414Z patching file sound/soc/fsl/fsl_esai.c
2025-10-02T15:24:52.7278291Z patching file sound/soc/fsl/fsl_micfil.c
2025-10-02T15:24:52.7280667Z patching file sound/soc/fsl/fsl_micfil.h
2025-10-02T15:24:52.7282731Z patching file sound/soc/fsl/fsl_mqs.c
2025-10-02T15:24:52.7283921Z patching file sound/soc/fsl/fsl_sai.c
2025-10-02T15:24:52.7286097Z patching file sound/soc/fsl/fsl_sai.h
2025-10-02T15:24:52.7287277Z patching file sound/soc/fsl/fsl_spdif.c
2025-10-02T15:24:52.7289969Z patching file sound/soc/fsl/fsl_ssi.c
2025-10-02T15:24:52.7292053Z patching file sound/soc/fsl/imx-audmix.c
2025-10-02T15:24:52.7293001Z patching file sound/soc/fsl/imx-es8328.c
2025-10-02T15:24:52.7293968Z patching file sound/soc/fsl/imx-sgtl5000.c
2025-10-02T15:24:52.7295163Z patching file sound/soc/fsl/mpc5200_dma.c
2025-10-02T15:24:52.7296301Z patching file sound/soc/fsl/pcm030-audio-fabric.c
2025-10-02T15:24:52.7297177Z patching file sound/soc/generic/Kconfig
2025-10-02T15:24:52.7298088Z patching file sound/soc/generic/audio-graph-card.c
2025-10-02T15:24:52.7299791Z patching file sound/soc/generic/simple-card-utils.c
2025-10-02T15:24:52.7301195Z patching file sound/soc/generic/simple-card.c
2025-10-02T15:24:52.7302630Z patching file sound/soc/hisilicon/hi6210-i2s.c
2025-10-02T15:24:52.7303886Z patching file sound/soc/img/img-i2s-in.c
2025-10-02T15:24:52.7305049Z patching file sound/soc/intel/Kconfig
2025-10-02T15:24:52.7305873Z patching file sound/soc/intel/Makefile
2025-10-02T15:24:52.7306986Z patching file sound/soc/intel/atom/sst-mfld-platform-pcm.c
2025-10-02T15:24:52.7308818Z patching file sound/soc/intel/boards/Kconfig
2025-10-02T15:24:52.7310231Z patching file sound/soc/intel/boards/bxt_da7219_max98357a.c
2025-10-02T15:24:52.7312162Z patching file sound/soc/intel/boards/bxt_rt298.c
2025-10-02T15:24:52.7313268Z patching file sound/soc/intel/boards/bytcht_es8316.c
2025-10-02T15:24:52.7315259Z patching file sound/soc/intel/boards/bytcr_rt5640.c
2025-10-02T15:24:52.7318627Z patching file sound/soc/intel/boards/bytcr_rt5651.c
2025-10-02T15:24:52.7321030Z patching file sound/soc/intel/boards/glk_rt5682_max98357a.c
2025-10-02T15:24:52.7322043Z patching file sound/soc/intel/boards/haswell.c
2025-10-02T15:24:52.7323170Z patching file sound/soc/intel/boards/kbl_da7219_max98357a.c
2025-10-02T15:24:52.7324896Z patching file sound/soc/intel/boards/kbl_da7219_max98927.c
2025-10-02T15:24:52.7327103Z patching file sound/soc/intel/boards/kbl_rt5660.c
2025-10-02T15:24:52.7328273Z patching file sound/soc/intel/boards/kbl_rt5663_max98927.c
2025-10-02T15:24:52.7330217Z patching file sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c
2025-10-02T15:24:52.7331479Z patching file sound/soc/intel/boards/skl_hda_dsp_generic.c
2025-10-02T15:24:52.7332577Z patching file sound/soc/intel/boards/skl_nau88l25_max98357a.c
2025-10-02T15:24:52.7333783Z patching file sound/soc/intel/boards/skl_rt286.c
2025-10-02T15:24:52.7335403Z patching file sound/soc/intel/boards/sof_da7219_max98373.c
2025-10-02T15:24:52.7336370Z patching file sound/soc/intel/boards/sof_maxim_common.c
2025-10-02T15:24:52.7337410Z patching file sound/soc/intel/boards/sof_pcm512x.c
2025-10-02T15:24:52.7338962Z patching file sound/soc/intel/boards/sof_rt5682.c
2025-10-02T15:24:52.7341103Z patching file sound/soc/intel/boards/sof_sdw.c
2025-10-02T15:24:52.7343773Z patching file sound/soc/intel/boards/sof_sdw_common.h
2025-10-02T15:24:52.7344460Z patching file sound/soc/intel/boards/sof_wm8804.c
2025-10-02T15:24:52.7345623Z patching file sound/soc/intel/catpt/dsp.c
2025-10-02T15:24:52.7347336Z patching file sound/soc/intel/common/soc-acpi-intel-bxt-match.c
2025-10-02T15:24:52.7347921Z patching file sound/soc/intel/common/soc-acpi-intel-cml-match.c
2025-10-02T15:24:52.7348950Z patching file sound/soc/intel/common/soc-acpi-intel-glk-match.c
2025-10-02T15:24:52.7349997Z patching file sound/soc/intel/common/soc-acpi-intel-jsl-match.c
2025-10-02T15:24:52.7350895Z patching file sound/soc/intel/common/soc-acpi-intel-kbl-match.c
2025-10-02T15:24:52.7351784Z patching file sound/soc/intel/common/soc-acpi-intel-tgl-match.c
2025-10-02T15:24:52.7352906Z patching file sound/soc/intel/common/soc-intel-quirks.h
2025-10-02T15:24:52.7354164Z patching file sound/soc/intel/keembay/kmb_platform.c
2025-10-02T15:24:52.7355852Z patching file sound/soc/intel/skylake/Makefile
2025-10-02T15:24:52.7356574Z patching file sound/soc/intel/skylake/cnl-sst.c
2025-10-02T15:24:52.7358232Z patching file sound/soc/intel/skylake/skl-messages.c
2025-10-02T15:24:52.7360122Z patching file sound/soc/intel/skylake/skl-nhlt.c
2025-10-02T15:24:52.7361931Z patching file sound/soc/intel/skylake/skl-pcm.c
2025-10-02T15:24:52.7364178Z patching file sound/soc/intel/skylake/skl-sst-ipc.c
2025-10-02T15:24:52.7365466Z patching file sound/soc/intel/skylake/skl-sst-utils.c
2025-10-02T15:24:52.7367562Z patching file sound/soc/intel/skylake/skl-topology.c
2025-10-02T15:24:52.7370795Z patching file sound/soc/intel/skylake/skl.c
2025-10-02T15:24:52.7372416Z patching file sound/soc/jz4740/jz4740-i2s.c
2025-10-02T15:24:52.7374108Z patching file sound/soc/kirkwood/kirkwood-dma.c
2025-10-02T15:24:52.7375152Z patching file sound/soc/mediatek/common/mtk-afe-platform-driver.c
2025-10-02T15:24:52.7376394Z patching file sound/soc/mediatek/common/mtk-btcvsd.c
2025-10-02T15:24:52.7378473Z patching file sound/soc/mediatek/mt2701/mt2701-wm8960.c
2025-10-02T15:24:52.7379761Z patching file sound/soc/mediatek/mt6797/mt6797-mt6351.c
2025-10-02T15:24:52.7381387Z patching file sound/soc/mediatek/mt8173/mt8173-afe-pcm.c
2025-10-02T15:24:52.7383292Z patching file sound/soc/mediatek/mt8173/mt8173-max98090.c
2025-10-02T15:24:52.7384135Z patching file sound/soc/mediatek/mt8173/mt8173-rt5650-rt5514.c
2025-10-02T15:24:52.7385171Z patching file sound/soc/mediatek/mt8173/mt8173-rt5650-rt5676.c
2025-10-02T15:24:52.7386258Z patching file sound/soc/mediatek/mt8173/mt8173-rt5650.c
2025-10-02T15:24:52.7388083Z patching file sound/soc/mediatek/mt8183/mt8183-afe-pcm.c
2025-10-02T15:24:52.7390261Z patching file sound/soc/mediatek/mt8183/mt8183-da7219-max98357.c
2025-10-02T15:24:52.7392223Z patching file sound/soc/mediatek/mt8183/mt8183-mt6358-ts3a227-max98357.c
2025-10-02T15:24:52.7393134Z patching file sound/soc/meson/Kconfig
2025-10-02T15:24:52.7394085Z patching file sound/soc/meson/aiu-acodec-ctrl.c
2025-10-02T15:24:52.7394973Z patching file sound/soc/meson/aiu-codec-ctrl.c
2025-10-02T15:24:52.7395992Z patching file sound/soc/meson/aiu-encoder-i2s.c
2025-10-02T15:24:52.7397200Z patching file sound/soc/meson/aiu-fifo-i2s.c
2025-10-02T15:24:52.7398189Z patching file sound/soc/meson/aiu-fifo.c
2025-10-02T15:24:52.7399181Z patching file sound/soc/meson/aiu.c
2025-10-02T15:24:52.7400574Z patching file sound/soc/meson/aiu.h
2025-10-02T15:24:52.7401519Z patching file sound/soc/meson/axg-card.c
2025-10-02T15:24:52.7402592Z patching file sound/soc/meson/axg-fifo.c
2025-10-02T15:24:52.7403886Z patching file sound/soc/meson/axg-pdm.c
2025-10-02T15:24:52.7405255Z patching file sound/soc/meson/axg-spdifin.c
2025-10-02T15:24:52.7406634Z patching file sound/soc/meson/axg-spdifout.c
2025-10-02T15:24:52.7407710Z patching file sound/soc/meson/axg-tdm-formatter.c
2025-10-02T15:24:52.7409302Z patching file sound/soc/meson/axg-tdm-interface.c
2025-10-02T15:24:52.7410867Z patching file sound/soc/meson/axg-tdmin.c
2025-10-02T15:24:52.7411831Z patching file sound/soc/meson/g12a-toacodec.c
2025-10-02T15:24:52.7412888Z patching file sound/soc/meson/g12a-tohdmitx.c
2025-10-02T15:24:52.7414039Z patching file sound/soc/meson/meson-card-utils.c
2025-10-02T15:24:52.7415102Z patching file sound/soc/meson/t9015.c
2025-10-02T15:24:52.7416712Z patching file sound/soc/mxs/mxs-saif.c
2025-10-02T15:24:52.7419048Z patching file sound/soc/mxs/mxs-sgtl5000.c
2025-10-02T15:24:52.7419917Z patching file sound/soc/pxa/Kconfig
2025-10-02T15:24:52.7420946Z patching file sound/soc/pxa/mmp-pcm.c
2025-10-02T15:24:52.7422080Z patching file sound/soc/pxa/pxa-ssp.c
2025-10-02T15:24:52.7423581Z patching file sound/soc/pxa/spitz.c
2025-10-02T15:24:52.7425236Z patching file sound/soc/qcom/Kconfig
2025-10-02T15:24:52.7425812Z patching file sound/soc/qcom/common.c
2025-10-02T15:24:52.7426894Z patching file sound/soc/qcom/lpass-apq8016.c
2025-10-02T15:24:52.7428074Z patching file sound/soc/qcom/lpass-cpu.c
2025-10-02T15:24:52.7430829Z patching file sound/soc/qcom/lpass-hdmi.c
2025-10-02T15:24:52.7431553Z patching file sound/soc/qcom/lpass-ipq806x.c
2025-10-02T15:24:52.7432491Z patching file sound/soc/qcom/lpass-lpaif-reg.h
2025-10-02T15:24:52.7433598Z patching file sound/soc/qcom/lpass-platform.c
2025-10-02T15:24:52.7435520Z patching file sound/soc/qcom/lpass-sc7180.c
2025-10-02T15:24:52.7436378Z patching file sound/soc/qcom/lpass.h
2025-10-02T15:24:52.7437524Z patching file sound/soc/qcom/qdsp6/q6adm.c
2025-10-02T15:24:52.7438652Z patching file sound/soc/qcom/qdsp6/q6afe-clocks.c
2025-10-02T15:24:52.7441174Z patching file sound/soc/qcom/qdsp6/q6afe.c
2025-10-02T15:24:52.7443081Z patching file sound/soc/qcom/qdsp6/q6afe.h
2025-10-02T15:24:52.7444601Z patching file sound/soc/qcom/qdsp6/q6asm-dai.c
2025-10-02T15:24:52.7446828Z patching file sound/soc/qcom/qdsp6/q6routing.c
2025-10-02T15:24:52.7448639Z patching file sound/soc/qcom/sdm845.c
2025-10-02T15:24:52.7449967Z patching file sound/soc/rockchip/rockchip_i2s.c
2025-10-02T15:24:52.7452141Z patching file sound/soc/rockchip/rockchip_pdm.c
2025-10-02T15:24:52.7452849Z patching file sound/soc/rockchip/rockchip_spdif.c
2025-10-02T15:24:52.7453902Z patching file sound/soc/samsung/Kconfig
2025-10-02T15:24:52.7455025Z patching file sound/soc/samsung/aries_wm8994.c
2025-10-02T15:24:52.7457806Z patching file sound/soc/samsung/arndale.c
2025-10-02T15:24:52.7460380Z patching file sound/soc/samsung/h1940_uda1380.c
2025-10-02T15:24:52.7461444Z patching file sound/soc/samsung/idma.c
2025-10-02T15:24:52.7462038Z patching file sound/soc/samsung/littlemill.c
2025-10-02T15:24:52.7463632Z patching file sound/soc/samsung/lowland.c
2025-10-02T15:24:52.7464172Z patching file sound/soc/samsung/odroid.c
2025-10-02T15:24:52.7464906Z patching file sound/soc/samsung/rx1950_uda1380.c
2025-10-02T15:24:52.7465491Z patching file sound/soc/samsung/smdk_wm8994.c
2025-10-02T15:24:52.7466094Z patching file sound/soc/samsung/smdk_wm8994pcm.c
2025-10-02T15:24:52.7466758Z patching file sound/soc/samsung/snow.c
2025-10-02T15:24:52.7467370Z patching file sound/soc/samsung/speyside.c
2025-10-02T15:24:52.7467887Z patching file sound/soc/samsung/tm2_wm5110.c
2025-10-02T15:24:52.7468578Z patching file sound/soc/samsung/tobermory.c
2025-10-02T15:24:52.7470589Z patching file sound/soc/sh/fsi.c
2025-10-02T15:24:52.7472173Z patching file sound/soc/sh/rcar/adg.c
2025-10-02T15:24:52.7473687Z patching file sound/soc/sh/rcar/core.c
2025-10-02T15:24:52.7475787Z patching file sound/soc/sh/rcar/ctu.c
2025-10-02T15:24:52.7476871Z patching file sound/soc/sh/rcar/dvc.c
2025-10-02T15:24:52.7477818Z patching file sound/soc/sh/rcar/mix.c
2025-10-02T15:24:52.7479050Z patching file sound/soc/sh/rcar/rsnd.h
2025-10-02T15:24:52.7480892Z patching file sound/soc/sh/rcar/src.c
2025-10-02T15:24:52.7482475Z patching file sound/soc/sh/rcar/ssi.c
2025-10-02T15:24:52.7484205Z patching file sound/soc/sh/siu.h
2025-10-02T15:24:52.7484883Z patching file sound/soc/sh/siu_pcm.c
2025-10-02T15:24:52.7486339Z patching file sound/soc/soc-component.c
2025-10-02T15:24:52.7488261Z patching file sound/soc/soc-compress.c
2025-10-02T15:24:52.7490382Z patching file sound/soc/soc-core.c
2025-10-02T15:24:52.7493795Z patching file sound/soc/soc-dai.c
2025-10-02T15:24:52.7496147Z patching file sound/soc/soc-dapm.c
2025-10-02T15:24:52.7500859Z patching file sound/soc/soc-generic-dmaengine-pcm.c
2025-10-02T15:24:52.7502015Z patching file sound/soc/soc-ops.c
2025-10-02T15:24:52.7504753Z patching file sound/soc/soc-pcm.c
2025-10-02T15:24:52.7508439Z patching file sound/soc/soc-topology.c
2025-10-02T15:24:52.7512020Z patching file sound/soc/soc-utils.c
2025-10-02T15:24:52.7512616Z patching file sound/soc/sof/core.c
2025-10-02T15:24:52.7513480Z patching file sound/soc/sof/debug.c
2025-10-02T15:24:52.7514886Z patching file sound/soc/sof/imx/imx8m.c
2025-10-02T15:24:52.7515823Z patching file sound/soc/sof/intel/Kconfig
2025-10-02T15:24:52.7517701Z patching file sound/soc/sof/intel/hda-codec.c
2025-10-02T15:24:52.7518331Z patching file sound/soc/sof/intel/hda-dai.c
2025-10-02T15:24:52.7520231Z patching file sound/soc/sof/intel/hda-dsp.c
2025-10-02T15:24:52.7521943Z patching file sound/soc/sof/intel/hda-ipc.c
2025-10-02T15:24:52.7523064Z patching file sound/soc/sof/intel/hda-loader.c
2025-10-02T15:24:52.7524313Z patching file sound/soc/sof/intel/hda-stream.c
2025-10-02T15:24:52.7526003Z patching file sound/soc/sof/intel/hda.c
2025-10-02T15:24:52.7527707Z patching file sound/soc/sof/loader.c
2025-10-02T15:24:52.7528951Z patching file sound/soc/sof/sof-pci-dev.c
2025-10-02T15:24:52.7531586Z patching file sound/soc/sof/topology.c
2025-10-02T15:24:52.7534895Z patching file sound/soc/sti/uniperif_player.c
2025-10-02T15:24:52.7536385Z patching file sound/soc/sti/uniperif_reader.c
2025-10-02T15:24:52.7537942Z patching file sound/soc/stm/stm32_sai_sub.c
2025-10-02T15:24:52.7540003Z patching file sound/soc/stm/stm32_spdifrx.c
2025-10-02T15:24:52.7541979Z patching file sound/soc/sunxi/sun4i-codec.c
2025-10-02T15:24:52.7544408Z patching file sound/soc/sunxi/sun4i-i2s.c
2025-10-02T15:24:52.7546259Z patching file sound/soc/sunxi/sun4i-spdif.c
2025-10-02T15:24:52.7547759Z patching file sound/soc/tegra/tegra186_dspk.c
2025-10-02T15:24:52.7550133Z patching file sound/soc/tegra/tegra210_admaif.c
2025-10-02T15:24:52.7551935Z patching file sound/soc/tegra/tegra210_ahub.c
2025-10-02T15:24:52.7553243Z patching file sound/soc/tegra/tegra210_dmic.c
2025-10-02T15:24:52.7555415Z patching file sound/soc/tegra/tegra210_i2s.c
2025-10-02T15:24:52.7558136Z patching file sound/soc/tegra/tegra_alc5632.c
2025-10-02T15:24:52.7559250Z patching file sound/soc/tegra/tegra_max98090.c
2025-10-02T15:24:52.7560204Z patching file sound/soc/tegra/tegra_rt5640.c
2025-10-02T15:24:52.7560567Z patching file sound/soc/tegra/tegra_rt5677.c
2025-10-02T15:24:52.7561340Z patching file sound/soc/tegra/tegra_sgtl5000.c
2025-10-02T15:24:52.7562217Z patching file sound/soc/tegra/tegra_wm8753.c
2025-10-02T15:24:52.7563263Z patching file sound/soc/tegra/tegra_wm8903.c
2025-10-02T15:24:52.7565367Z patching file sound/soc/tegra/tegra_wm9712.c
2025-10-02T15:24:52.7565943Z patching file sound/soc/tegra/trimslice.c
2025-10-02T15:24:52.7567324Z patching file sound/soc/ti/ams-delta.c
2025-10-02T15:24:52.7567841Z patching file sound/soc/ti/davinci-i2s.c
2025-10-02T15:24:52.7569639Z patching file sound/soc/ti/davinci-mcasp.c
2025-10-02T15:24:52.7572122Z patching file sound/soc/ti/j721e-evm.c
2025-10-02T15:24:52.7574032Z patching file sound/soc/ti/omap-hdmi.c
2025-10-02T15:24:52.7575414Z patching file sound/soc/ti/omap-mcbsp.c
2025-10-02T15:24:52.7577071Z patching file sound/soc/uniphier/Kconfig
2025-10-02T15:24:52.7577767Z patching file sound/soc/uniphier/aio-dma.c
2025-10-02T15:24:52.7579125Z patching file sound/soc/xilinx/xlnx_formatter_pcm.c
2025-10-02T15:24:52.7581120Z patching file sound/spi/at73c213.c
2025-10-02T15:24:52.7582785Z patching file sound/synth/emux/emux.c
2025-10-02T15:24:52.7583629Z patching file sound/synth/emux/emux_nrpn.c
2025-10-02T15:24:52.7585106Z patching file sound/synth/emux/soundfont.c
2025-10-02T15:24:52.7586976Z patching file sound/usb/6fire/chip.c
2025-10-02T15:24:52.7587831Z patching file sound/usb/6fire/comm.c
2025-10-02T15:24:52.7588878Z patching file sound/usb/6fire/firmware.c
2025-10-02T15:24:52.7590377Z patching file sound/usb/bcd2000/bcd2000.c
2025-10-02T15:24:52.7591633Z patching file sound/usb/caiaq/audio.c
2025-10-02T15:24:52.7592744Z patching file sound/usb/caiaq/audio.h
2025-10-02T15:24:52.7593543Z patching file sound/usb/caiaq/device.c
2025-10-02T15:24:52.7595156Z patching file sound/usb/caiaq/input.c
2025-10-02T15:24:52.7596514Z patching file sound/usb/caiaq/input.h
2025-10-02T15:24:52.7597561Z patching file sound/usb/card.c
2025-10-02T15:24:52.7599766Z patching file sound/usb/clock.c
2025-10-02T15:24:52.7601884Z patching file sound/usb/endpoint.c
2025-10-02T15:24:52.7603796Z patching file sound/usb/format.c
2025-10-02T15:24:52.7605594Z patching file sound/usb/line6/driver.c
2025-10-02T15:24:52.7607365Z patching file sound/usb/line6/driver.h
2025-10-02T15:24:52.7608160Z patching file sound/usb/line6/midi.c
2025-10-02T15:24:52.7609277Z patching file sound/usb/line6/midibuf.c
2025-10-02T15:24:52.7610467Z patching file sound/usb/line6/midibuf.h
2025-10-02T15:24:52.7611323Z patching file sound/usb/line6/pod.c
2025-10-02T15:24:52.7612729Z patching file sound/usb/line6/podhd.c
2025-10-02T15:24:52.7614025Z patching file sound/usb/line6/toneport.c
2025-10-02T15:24:52.7614958Z patching file sound/usb/line6/variax.c
2025-10-02T15:24:52.7616397Z patching file sound/usb/midi.c
2025-10-02T15:24:52.7618730Z patching file sound/usb/misc/ua101.c
2025-10-02T15:24:52.7620916Z patching file sound/usb/mixer.c
2025-10-02T15:24:52.7623768Z patching file sound/usb/mixer.h
2025-10-02T15:24:52.7624487Z patching file sound/usb/mixer_maps.c
2025-10-02T15:24:52.7627099Z patching file sound/usb/mixer_quirks.c
2025-10-02T15:24:52.7632568Z patching file sound/usb/mixer_scarlett_gen2.c
2025-10-02T15:24:52.7635118Z patching file sound/usb/mixer_scarlett_gen2.h
2025-10-02T15:24:52.7635983Z patching file sound/usb/mixer_us16x08.c
2025-10-02T15:24:52.7638335Z patching file sound/usb/pcm.c
2025-10-02T15:24:52.7641026Z patching file sound/usb/quirks-table.h
2025-10-02T15:24:52.7644687Z patching file sound/usb/quirks.c
2025-10-02T15:24:52.7647489Z patching file sound/usb/stream.c
2025-10-02T15:24:52.7649458Z patching file sound/usb/usbaudio.h
2025-10-02T15:24:52.7650670Z patching file sound/usb/usx2y/us122l.c
2025-10-02T15:24:52.7652874Z patching file sound/usb/usx2y/us122l.h
2025-10-02T15:24:52.7653345Z patching file sound/usb/usx2y/usX2Yhwdep.c
2025-10-02T15:24:52.7655029Z patching file sound/usb/usx2y/usX2Yhwdep.h
2025-10-02T15:24:52.7655999Z patching file sound/usb/usx2y/usb_stream.c
2025-10-02T15:24:52.7658325Z patching file sound/usb/usx2y/usb_stream.h
2025-10-02T15:24:52.7658785Z patching file sound/usb/usx2y/usbus428ctldefs.h
2025-10-02T15:24:52.7660414Z patching file sound/usb/usx2y/usbusx2y.c
2025-10-02T15:24:52.7662540Z patching file sound/usb/usx2y/usbusx2y.h
2025-10-02T15:24:52.7663824Z patching file sound/usb/usx2y/usbusx2yaudio.c
2025-10-02T15:24:52.7667716Z patching file sound/usb/usx2y/usx2yhwdeppcm.c
2025-10-02T15:24:52.7671196Z patching file sound/usb/usx2y/usx2yhwdeppcm.h
2025-10-02T15:24:52.7671813Z patching file sound/usb/validate.c
2025-10-02T15:24:52.7673502Z patching file sound/x86/intel_hdmi_audio.c
2025-10-02T15:24:52.7675412Z patching file tools/arch/ia64/include/asm/barrier.h
2025-10-02T15:24:52.7676416Z patching file tools/arch/parisc/include/uapi/asm/errno.h
2025-10-02T15:24:52.7677242Z patching file tools/arch/parisc/include/uapi/asm/mman.h
2025-10-02T15:24:52.7678303Z patching file tools/arch/x86/include/asm/cpufeatures.h
2025-10-02T15:24:52.7680366Z patching file tools/arch/x86/include/asm/disabled-features.h
2025-10-02T15:24:52.7691300Z patching file tools/arch/x86/include/asm/inat.h
2025-10-02T15:24:52.7691766Z patching file tools/arch/x86/include/asm/insn.h
2025-10-02T15:24:52.7692376Z patching file tools/arch/x86/include/asm/msr-index.h
2025-10-02T15:24:52.7692654Z patching file tools/arch/x86/include/asm/required-features.h
2025-10-02T15:24:52.7692873Z patching file tools/arch/x86/lib/inat.c
2025-10-02T15:24:52.7693088Z patching file tools/arch/x86/lib/insn.c
2025-10-02T15:24:52.7693458Z patching file tools/arch/x86/lib/memcpy_64.S
2025-10-02T15:24:52.7693740Z patching file tools/arch/x86/lib/memset_64.S
2025-10-02T15:24:52.7693990Z patching file tools/arch/x86/lib/x86-opcode-map.txt
2025-10-02T15:24:52.7694329Z patching file tools/bootconfig/main.c
2025-10-02T15:24:52.7694585Z patching file tools/bootconfig/scripts/bconf2ftrace.sh
2025-10-02T15:24:52.7694819Z patching file tools/bootconfig/scripts/ftrace2bconf.sh
2025-10-02T15:24:52.7695289Z patching file tools/bootconfig/test-bootconfig.sh
2025-10-02T15:24:52.7696381Z patching file tools/bpf/Makefile
2025-10-02T15:24:52.7697202Z patching file tools/bpf/bpftool/Documentation/Makefile
2025-10-02T15:24:52.7697969Z patching file tools/bpf/bpftool/Documentation/bpftool-cgroup.rst
2025-10-02T15:24:52.7698911Z patching file tools/bpf/bpftool/Documentation/bpftool-prog.rst
2025-10-02T15:24:52.7700158Z patching file tools/bpf/bpftool/Makefile
2025-10-02T15:24:52.7701514Z patching file tools/bpf/bpftool/bash-completion/bpftool
2025-10-02T15:24:52.7703124Z patching file tools/bpf/bpftool/btf.c
2025-10-02T15:24:52.7704517Z patching file tools/bpf/bpftool/btf_dumper.c
2025-10-02T15:24:52.7705728Z patching file tools/bpf/bpftool/cgroup.c
2025-10-02T15:24:52.7706865Z patching file tools/bpf/bpftool/common.c
2025-10-02T15:24:52.7708274Z patching file tools/bpf/bpftool/feature.c
2025-10-02T15:24:52.7710083Z patching file tools/bpf/bpftool/jit_disasm.c
2025-10-02T15:24:52.7710839Z patching file tools/bpf/bpftool/json_writer.c
2025-10-02T15:24:52.7711786Z patching file tools/bpf/bpftool/main.c
2025-10-02T15:24:52.7713294Z patching file tools/bpf/bpftool/map.c
2025-10-02T15:24:52.7714900Z patching file tools/bpf/bpftool/net.c
2025-10-02T15:24:52.7716638Z patching file tools/bpf/bpftool/prog.c
2025-10-02T15:24:52.7718628Z patching file tools/bpf/bpftool/skeleton/profiler.bpf.c
2025-10-02T15:24:52.7720023Z patching file tools/bpf/bpftool/xlated_dumper.c
2025-10-02T15:24:52.7720792Z patching file tools/bpf/resolve_btfids/.gitignore
2025-10-02T15:24:52.7721484Z patching file tools/bpf/resolve_btfids/Makefile
2025-10-02T15:24:52.7722855Z patching file tools/bpf/resolve_btfids/main.c
2025-10-02T15:24:52.7724161Z patching file tools/build/Makefile
2025-10-02T15:24:52.7724671Z patching file tools/build/Makefile.build
2025-10-02T15:24:52.7725603Z patching file tools/build/Makefile.feature
2025-10-02T15:24:52.7726844Z patching file tools/build/feature/Makefile
2025-10-02T15:24:52.7727927Z patching file tools/build/feature/test-all.c
2025-10-02T15:24:52.7728979Z patching file tools/build/feature/test-libcrypto.c
2025-10-02T15:24:52.7730036Z patching file tools/build/feature/test-libpython-version.c
2025-10-02T15:24:52.7730975Z patching file tools/cgroup/memcg_slabinfo.py
2025-10-02T15:24:52.7732058Z patching file tools/gpio/gpio-event-mon.c
2025-10-02T15:24:52.7732941Z patching file tools/gpio/gpio-watch.c
2025-10-02T15:24:52.7733775Z patching file tools/gpio/lsgpio.c
2025-10-02T15:24:52.7734739Z patching file tools/hv/vmbus_testing
2025-10-02T15:24:52.7736342Z patching file tools/iio/iio_generic_buffer.c
2025-10-02T15:24:52.7738176Z patching file tools/iio/iio_utils.c
2025-10-02T15:24:52.7740156Z patching file tools/include/asm-generic/hugetlb_encode.h
2025-10-02T15:24:52.7741032Z patching file tools/include/asm/alternative-asm.h
2025-10-02T15:24:52.7741773Z patching file tools/include/asm/alternative.h
2025-10-02T15:24:52.7742923Z patching file tools/include/linux/align.h
2025-10-02T15:24:52.7743991Z patching file tools/include/linux/bitmap.h
2025-10-02T15:24:52.7744997Z patching file tools/include/linux/bits.h
2025-10-02T15:24:52.7745783Z patching file tools/include/linux/btf_ids.h
2025-10-02T15:24:52.7746708Z patching file tools/include/linux/compiler-gcc.h
2025-10-02T15:24:52.7747475Z patching file tools/include/linux/const.h
2025-10-02T15:24:52.7748317Z patching file tools/include/linux/kconfig.h
2025-10-02T15:24:52.7749783Z patching file tools/include/linux/objtool.h
2025-10-02T15:24:52.7751063Z patching file tools/include/linux/overflow.h
2025-10-02T15:24:52.7752357Z patching file tools/include/linux/sched/mm.h
2025-10-02T15:24:52.7753304Z patching file tools/include/linux/static_call_types.h
2025-10-02T15:24:52.7754225Z patching file tools/include/linux/string.h
2025-10-02T15:24:52.7755756Z patching file tools/include/nolibc/nolibc.h
2025-10-02T15:24:52.7758459Z patching file tools/include/uapi/asm/errno.h
2025-10-02T15:24:52.7760675Z patching file tools/include/uapi/linux/bpf.h
2025-10-02T15:24:52.7764522Z patching file tools/include/uapi/linux/const.h
2025-10-02T15:24:52.7765076Z patching file tools/include/uapi/linux/fscrypt.h
2025-10-02T15:24:52.7766226Z patching file tools/include/uapi/linux/in.h
2025-10-02T15:24:52.7767175Z patching file tools/include/uapi/linux/openat2.h
2025-10-02T15:24:52.7768255Z patching file tools/include/uapi/linux/perf_event.h
2025-10-02T15:24:52.7770074Z patching file tools/include/uapi/linux/tcp.h
2025-10-02T15:24:52.7772772Z patching file tools/kvm/kvm_stat/kvm_stat
2025-10-02T15:24:52.7774736Z patching file tools/kvm/kvm_stat/kvm_stat.service
2025-10-02T15:24:52.7775298Z patching file tools/lib/api/io.h
2025-10-02T15:24:52.7776313Z patching file tools/lib/bpf/Makefile
2025-10-02T15:24:52.7777796Z patching file tools/lib/bpf/bpf.h
2025-10-02T15:24:52.7778723Z patching file tools/lib/bpf/bpf_core_read.h
2025-10-02T15:24:52.7779996Z patching file tools/lib/bpf/bpf_helpers.h
2025-10-02T15:24:52.7781043Z patching file tools/lib/bpf/bpf_tracing.h
2025-10-02T15:24:52.7783519Z patching file tools/lib/bpf/btf.c
2025-10-02T15:24:52.7786578Z patching file tools/lib/bpf/btf.h
2025-10-02T15:24:52.7787643Z patching file tools/lib/bpf/btf_dump.c
2025-10-02T15:24:52.7793314Z patching file tools/lib/bpf/libbpf.c
2025-10-02T15:24:52.7799877Z patching file tools/lib/bpf/libbpf.h
2025-10-02T15:24:52.7801042Z patching file tools/lib/bpf/libbpf_probes.c
2025-10-02T15:24:52.7802122Z patching file tools/lib/bpf/netlink.c
2025-10-02T15:24:52.7803286Z patching file tools/lib/bpf/nlattr.c
2025-10-02T15:24:52.7804279Z patching file tools/lib/bpf/ringbuf.c
2025-10-02T15:24:52.7806019Z patching file tools/lib/bpf/xsk.c
2025-10-02T15:24:52.7808183Z patching file tools/lib/perf/evlist.c
2025-10-02T15:24:52.7810051Z patching file tools/lib/perf/include/internal/evlist.h
2025-10-02T15:24:52.7810848Z patching file tools/lib/perf/include/perf/event.h
2025-10-02T15:24:52.7811910Z patching file tools/lib/perf/tests/test-cpumap.c
2025-10-02T15:24:52.7812789Z patching file tools/lib/perf/tests/test-evlist.c
2025-10-02T15:24:52.7813855Z patching file tools/lib/perf/tests/test-evsel.c
2025-10-02T15:24:52.7814712Z patching file tools/lib/perf/tests/test-threadmap.c
2025-10-02T15:24:52.7815291Z patching file tools/lib/string.c
2025-10-02T15:24:52.7816519Z patching file tools/lib/subcmd/help.c
2025-10-02T15:24:52.7817610Z patching file tools/lib/subcmd/parse-options.c
2025-10-02T15:24:52.7818986Z patching file tools/lib/subcmd/subcmd-util.h
2025-10-02T15:24:52.7819986Z patching file tools/memory-model/lock.cat
2025-10-02T15:24:52.7821245Z patching file tools/objtool/Documentation/stack-validation.txt
2025-10-02T15:24:52.7822179Z patching file tools/objtool/Makefile
2025-10-02T15:24:52.7822995Z patching file tools/objtool/arch.h
2025-10-02T15:24:52.7824071Z patching file tools/objtool/arch/x86/decode.c
2025-10-02T15:24:52.7825906Z patching file tools/objtool/arch/x86/include/arch_special.h
2025-10-02T15:24:52.7826318Z patching file tools/objtool/arch/x86/special.c
2025-10-02T15:24:52.7827091Z patching file tools/objtool/builtin-check.c
2025-10-02T15:24:52.7827876Z patching file tools/objtool/builtin-orc.c
2025-10-02T15:24:52.7828692Z patching file tools/objtool/builtin.h
2025-10-02T15:24:52.7829431Z patching file tools/objtool/cfi.h
2025-10-02T15:24:52.7831382Z patching file tools/objtool/check.c
2025-10-02T15:24:52.7837185Z patching file tools/objtool/check.h
2025-10-02T15:24:52.7838142Z patching file tools/objtool/elf.c
2025-10-02T15:24:52.7841163Z patching file tools/objtool/elf.h
2025-10-02T15:24:52.7842093Z patching file tools/objtool/objtool.c
2025-10-02T15:24:52.7842863Z patching file tools/objtool/objtool.h
2025-10-02T15:24:52.7843702Z patching file tools/objtool/orc_gen.c
2025-10-02T15:24:52.7845765Z patching file tools/objtool/special.c
2025-10-02T15:24:52.7846358Z patching file tools/objtool/sync-check.sh
2025-10-02T15:24:52.7847151Z patching file tools/objtool/weak.c
2025-10-02T15:24:52.7848783Z patching file tools/perf/Makefile.config
2025-10-02T15:24:52.7851396Z patching file tools/perf/Makefile.perf
2025-10-02T15:24:52.7853099Z patching file tools/perf/arch/arm/include/perf_regs.h
2025-10-02T15:24:52.7853681Z patching file tools/perf/arch/arm64/include/perf_regs.h
2025-10-02T15:24:52.7854464Z patching file tools/perf/arch/arm64/util/Build
2025-10-02T15:24:52.7855212Z patching file tools/perf/arch/arm64/util/arm-spe.c
2025-10-02T15:24:52.7856038Z patching file tools/perf/arch/arm64/util/machine.c
2025-10-02T15:24:52.7856967Z patching file tools/perf/arch/csky/include/perf_regs.h
2025-10-02T15:24:52.7857887Z patching file tools/perf/arch/powerpc/include/perf_regs.h
2025-10-02T15:24:52.7858782Z patching file tools/perf/arch/riscv/include/perf_regs.h
2025-10-02T15:24:52.7859820Z patching file tools/perf/arch/s390/include/perf_regs.h
2025-10-02T15:24:52.7860665Z patching file tools/perf/arch/s390/util/machine.c
2025-10-02T15:24:52.7861496Z patching file tools/perf/arch/x86/include/perf_regs.h
2025-10-02T15:24:52.7862272Z patching file tools/perf/bench/bench.h
2025-10-02T15:24:52.7863226Z patching file tools/perf/bench/epoll-wait.c
2025-10-02T15:24:52.7864872Z patching file tools/perf/bench/futex-lock-pi.c
2025-10-02T15:24:52.7865638Z patching file tools/perf/bench/futex-requeue.c
2025-10-02T15:24:52.7866638Z patching file tools/perf/bench/futex-wake-parallel.c
2025-10-02T15:24:52.7867573Z patching file tools/perf/bench/futex-wake.c
2025-10-02T15:24:52.7868622Z patching file tools/perf/bench/inject-buildid.c
2025-10-02T15:24:52.7871029Z patching file tools/perf/bench/numa.c
2025-10-02T15:24:52.7872811Z patching file tools/perf/builtin-bench.c
2025-10-02T15:24:52.7874659Z patching file tools/perf/builtin-c2c.c
2025-10-02T15:24:52.7877180Z patching file tools/perf/builtin-ftrace.c
2025-10-02T15:24:52.7878640Z patching file tools/perf/builtin-inject.c
2025-10-02T15:24:52.7881180Z patching file tools/perf/builtin-record.c
2025-10-02T15:24:52.7883961Z patching file tools/perf/builtin-report.c
2025-10-02T15:24:52.7886988Z patching file tools/perf/builtin-sched.c
2025-10-02T15:24:52.7890827Z patching file tools/perf/builtin-script.c
2025-10-02T15:24:52.7894342Z patching file tools/perf/builtin-top.c
2025-10-02T15:24:52.7897411Z patching file tools/perf/builtin-trace.c
2025-10-02T15:24:52.7901225Z patching file tools/perf/check-headers.sh
2025-10-02T15:24:52.7902134Z patching file tools/perf/perf-completion.sh
2025-10-02T15:24:52.7903209Z patching file tools/perf/perf.c
2025-10-02T15:24:52.7904300Z patching file tools/perf/pmu-events/Build
2025-10-02T15:24:52.7905481Z patching file tools/perf/pmu-events/arch/arm64/ampere/emag/cache.json
2025-10-02T15:24:52.7907253Z patching file tools/perf/pmu-events/arch/powerpc/power9/other.json
2025-10-02T15:24:52.7909908Z patching file tools/perf/pmu-events/arch/powerpc/power9/pipeline.json
2025-10-02T15:24:52.7911051Z patching file tools/perf/pmu-events/arch/x86/amdzen1/cache.json
2025-10-02T15:24:52.7912044Z patching file tools/perf/pmu-events/arch/x86/amdzen1/recommended.json
2025-10-02T15:24:52.7913065Z patching file tools/perf/pmu-events/arch/x86/amdzen2/cache.json
2025-10-02T15:24:52.7914156Z patching file tools/perf/pmu-events/arch/x86/amdzen2/recommended.json
2025-10-02T15:24:52.7915221Z patching file tools/perf/pmu-events/jevents.c
2025-10-02T15:24:52.7917351Z patching file tools/perf/python/tracepoint.py
2025-10-02T15:24:52.7917928Z patching file tools/perf/python/twatch.py
2025-10-02T15:24:52.7920554Z patching file tools/perf/scripts/python/exported-sql-viewer.py
2025-10-02T15:24:52.7924098Z patching file tools/perf/tests/bp_account.c
2025-10-02T15:24:52.7924800Z patching file tools/perf/tests/bpf.c
2025-10-02T15:24:52.7926379Z patching file tools/perf/tests/builtin-test.c
2025-10-02T15:24:52.7927654Z patching file tools/perf/tests/event_update.c
2025-10-02T15:24:52.7928494Z patching file tools/perf/tests/expand-cgroup.c
2025-10-02T15:24:52.7929343Z patching file tools/perf/tests/maps.c
2025-10-02T15:24:52.7930985Z patching file tools/perf/tests/pmu-events.c
2025-10-02T15:24:52.7932032Z patching file tools/perf/tests/sample-parsing.c
2025-10-02T15:24:52.7933157Z patching file tools/perf/tests/shell/record+zstd_comp_decomp.sh
2025-10-02T15:24:52.7934016Z patching file tools/perf/tests/shell/test_uprobe_from_different_cu.sh
2025-10-02T15:24:52.7935261Z patching file tools/perf/tests/switch-tracking.c
2025-10-02T15:24:52.7936383Z patching file tools/perf/tests/topology.c
2025-10-02T15:24:52.7937360Z patching file tools/perf/trace/beauty/fsconfig.sh
2025-10-02T15:24:52.7938423Z patching file tools/perf/trace/beauty/include/linux/socket.h
2025-10-02T15:24:52.7943006Z patching file tools/perf/ui/browsers/hists.c
2025-10-02T15:24:52.7944292Z patching file tools/perf/ui/hist.c
2025-10-02T15:24:52.7946195Z patching file tools/perf/util/Build
2025-10-02T15:24:52.7948131Z patching file tools/perf/util/annotate.c
2025-10-02T15:24:52.7951026Z patching file tools/perf/util/annotate.h
2025-10-02T15:24:52.7952576Z patching file tools/perf/util/arm-spe.c
2025-10-02T15:24:52.7954733Z patching file tools/perf/util/auxtrace.c
2025-10-02T15:24:52.7957291Z patching file tools/perf/util/block-info.c
2025-10-02T15:24:52.7958915Z patching file tools/perf/util/bpf-event.c
2025-10-02T15:24:52.7960580Z patching file tools/perf/util/bpf-event.h
2025-10-02T15:24:52.7961765Z patching file tools/perf/util/bpf-loader.c
2025-10-02T15:24:52.7964318Z patching file tools/perf/util/cs-etm.c
2025-10-02T15:24:52.7967273Z patching file tools/perf/util/data.c
2025-10-02T15:24:52.7968513Z patching file tools/perf/util/data.h
2025-10-02T15:24:52.7970079Z patching file tools/perf/util/debug.c
2025-10-02T15:24:52.7971365Z patching file tools/perf/util/dso.c
2025-10-02T15:24:52.7973583Z patching file tools/perf/util/dsos.c
2025-10-02T15:24:52.7974806Z patching file tools/perf/util/dwarf-aux.c
2025-10-02T15:24:52.7976736Z patching file tools/perf/util/env.c
2025-10-02T15:24:52.7978408Z patching file tools/perf/util/env.h
2025-10-02T15:24:52.7980066Z patching file tools/perf/util/event.c
2025-10-02T15:24:52.7982410Z patching file tools/perf/util/evlist.c
2025-10-02T15:24:52.7983847Z patching file tools/perf/util/evlist.h
2025-10-02T15:24:52.7985918Z patching file tools/perf/util/evsel.c
2025-10-02T15:24:52.7988485Z patching file tools/perf/util/genelf.c
2025-10-02T15:24:52.7989711Z patching file tools/perf/util/genelf.h
2025-10-02T15:24:52.7990825Z patching file tools/perf/util/get_current_dir_name.c
2025-10-02T15:24:52.7992733Z patching file tools/perf/util/header.c
2025-10-02T15:24:52.7997390Z patching file tools/perf/util/hist.h
2025-10-02T15:24:52.7999680Z patching file tools/perf/util/intel-pt-decoder/intel-pt-decoder.c
2025-10-02T15:24:52.8003605Z patching file tools/perf/util/intel-pt-decoder/intel-pt-decoder.h
2025-10-02T15:24:52.8005385Z patching file tools/perf/util/intel-pt.c
2025-10-02T15:24:52.8008944Z patching file tools/perf/util/jitdump.c
2025-10-02T15:24:52.8010858Z patching file tools/perf/util/llvm-utils.c
2025-10-02T15:24:52.8011880Z patching file tools/perf/util/lzma.c
2025-10-02T15:24:52.8014275Z patching file tools/perf/util/machine.c
2025-10-02T15:24:52.8017026Z patching file tools/perf/util/map.c
2025-10-02T15:24:52.8019243Z patching file tools/perf/util/parse-events.c
2025-10-02T15:24:52.8022209Z patching file tools/perf/util/parse-regs-options.c
2025-10-02T15:24:52.8022968Z patching file tools/perf/util/perf_regs.h
2025-10-02T15:24:52.8024453Z patching file tools/perf/util/pmu.c
2025-10-02T15:24:52.8026425Z patching file tools/perf/util/pmu.h
2025-10-02T15:24:52.8027906Z patching file tools/perf/util/pmu.l
2025-10-02T15:24:52.8028350Z patching file tools/perf/util/pmu.y
2025-10-02T15:24:52.8030980Z patching file tools/perf/util/probe-event.c
2025-10-02T15:24:52.8033836Z patching file tools/perf/util/probe-file.c
2025-10-02T15:24:52.8035743Z patching file tools/perf/util/probe-finder.c
2025-10-02T15:24:52.8038098Z patching file tools/perf/util/probe-finder.h
2025-10-02T15:24:52.8039251Z patching file tools/perf/util/python.c
2025-10-02T15:24:52.8042002Z patching file tools/perf/util/scripting-engines/trace-event-python.c
2025-10-02T15:24:52.8045291Z patching file tools/perf/util/session.c
2025-10-02T15:24:52.8048356Z patching file tools/perf/util/setup.py
2025-10-02T15:24:52.8048999Z patching file tools/perf/util/smt.c
2025-10-02T15:24:52.8050576Z patching file tools/perf/util/sort.c
2025-10-02T15:24:52.8054259Z patching file tools/perf/util/sort.h
2025-10-02T15:24:52.8055614Z patching file tools/perf/util/stat-display.c
2025-10-02T15:24:52.8057816Z patching file tools/perf/util/symbol-elf.c
2025-10-02T15:24:52.8061014Z patching file tools/perf/util/symbol.c
2025-10-02T15:24:52.8063734Z patching file tools/perf/util/symbol.h
2025-10-02T15:24:52.8064623Z patching file tools/perf/util/symbol_fprintf.c
2025-10-02T15:24:52.8066230Z patching file tools/perf/util/synthetic-events.c
2025-10-02T15:24:52.8068381Z patching file tools/perf/util/thread_map.c
2025-10-02T15:24:52.8069641Z patching file tools/perf/util/time-utils.c
2025-10-02T15:24:52.8071127Z patching file tools/perf/util/trace-event-read.c
2025-10-02T15:24:52.8072097Z patching file tools/perf/util/units.c
2025-10-02T15:24:52.8072985Z patching file tools/perf/util/unwind-libdw.c
2025-10-02T15:24:52.8074475Z patching file tools/perf/util/util.c
2025-10-02T15:24:52.8075288Z patching file tools/perf/util/util.h
2025-10-02T15:24:52.8076380Z patching file tools/perf/util/vdso.c
2025-10-02T15:24:52.8077431Z patching file tools/power/acpi/Makefile.config
2025-10-02T15:24:52.8078241Z patching file tools/power/cpupower/Makefile
2025-10-02T15:24:52.8079840Z patching file tools/power/cpupower/bench/Makefile
2025-10-02T15:24:52.8080740Z patching file tools/power/cpupower/bench/parse.c
2025-10-02T15:24:52.8081848Z patching file tools/power/cpupower/utils/idle_monitor/mperf_monitor.c
2025-10-02T15:24:52.8084069Z patching file tools/power/x86/intel-speed-select/isst-config.c
2025-10-02T15:24:52.8086778Z patching file tools/power/x86/intel-speed-select/isst-display.c
2025-10-02T15:24:52.8088382Z patching file tools/power/x86/intel_pstate_tracer/intel_pstate_tracer.py
2025-10-02T15:24:52.8089598Z patching file tools/power/x86/turbostat/turbostat.8
2025-10-02T15:24:52.8092313Z patching file tools/power/x86/turbostat/turbostat.c
2025-10-02T15:24:52.8097727Z patching file tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy.c
2025-10-02T15:24:52.8099174Z patching file tools/scripts/Makefile.include
2025-10-02T15:24:52.8100233Z patching file tools/testing/ktest/compare-ktest-sample.pl
2025-10-02T15:24:52.8102136Z patching file tools/testing/ktest/ktest.pl
2025-10-02T15:24:52.8106259Z patching file tools/testing/ktest/sample.conf
2025-10-02T15:24:52.8108189Z patching file tools/testing/kunit/kunit.py
2025-10-02T15:24:52.8108854Z patching file tools/testing/kunit/kunit_config.py
2025-10-02T15:24:52.8110037Z patching file tools/testing/kunit/kunit_tool_test.py
2025-10-02T15:24:52.8111297Z patching file tools/testing/radix-tree/idr-test.c
2025-10-02T15:24:52.8112574Z patching file tools/testing/radix-tree/multiorder.c
2025-10-02T15:24:52.8113479Z patching file tools/testing/radix-tree/regression1.c
2025-10-02T15:24:52.8114304Z patching file tools/testing/radix-tree/xarray.c
2025-10-02T15:24:52.8115277Z patching file tools/testing/selftests/Makefile
2025-10-02T15:24:52.8116527Z patching file tools/testing/selftests/arm64/fp/sve-ptrace.c
2025-10-02T15:24:52.8117524Z patching file tools/testing/selftests/arm64/fp/sve-test.S
2025-10-02T15:24:52.8118693Z patching file tools/testing/selftests/arm64/mte/Makefile
2025-10-02T15:24:52.8119758Z patching file tools/testing/selftests/arm64/mte/check_tags_inclusion.c
2025-10-02T15:24:52.8120755Z patching file tools/testing/selftests/arm64/mte/mte_common_util.c
2025-10-02T15:24:52.8121846Z patching file tools/testing/selftests/arm64/pauth/pac.c
2025-10-02T15:24:52.8123169Z patching file tools/testing/selftests/arm64/signal/test_signals.h
2025-10-02T15:24:52.8124088Z patching file tools/testing/selftests/arm64/signal/test_signals_utils.c
2025-10-02T15:24:52.8125269Z patching file tools/testing/selftests/arm64/signal/testcases/testcases.c
2025-10-02T15:24:52.8126107Z patching file tools/testing/selftests/arm64/tags/tags_test.c
2025-10-02T15:24:52.8126999Z patching file tools/testing/selftests/bpf/.gitignore
2025-10-02T15:24:52.8127931Z patching file tools/testing/selftests/bpf/Makefile
2025-10-02T15:24:52.8129856Z patching file tools/testing/selftests/bpf/bench.c
2025-10-02T15:24:52.8130863Z patching file tools/testing/selftests/bpf/benchs/run_bench_rename.sh
2025-10-02T15:24:52.8131834Z patching file tools/testing/selftests/bpf/map_tests/sk_storage_map.c
2025-10-02T15:24:52.8133502Z patching file tools/testing/selftests/bpf/prog_tests/align.c
2025-10-02T15:24:52.8135241Z patching file tools/testing/selftests/bpf/prog_tests/bpf_tcp_ca.c
2025-10-02T15:24:52.8137734Z patching file tools/testing/selftests/bpf/prog_tests/btf.c
2025-10-02T15:24:52.8141991Z patching file tools/testing/selftests/bpf/prog_tests/btf_map_in_map.c
2025-10-02T15:24:52.8142905Z patching file tools/testing/selftests/bpf/prog_tests/btf_skc_cls_ingress.c
2025-10-02T15:24:52.8144169Z patching file tools/testing/selftests/bpf/prog_tests/cg_storage_multi.c
2025-10-02T15:24:52.8145398Z patching file tools/testing/selftests/bpf/prog_tests/cls_redirect.c
2025-10-02T15:24:52.8146714Z patching file tools/testing/selftests/bpf/prog_tests/core_reloc.c
2025-10-02T15:24:52.8148815Z patching file tools/testing/selftests/bpf/prog_tests/flow_dissector.c
2025-10-02T15:24:52.8149966Z patching file tools/testing/selftests/bpf/prog_tests/kfree_skb.c
2025-10-02T15:24:52.8151041Z patching file tools/testing/selftests/bpf/prog_tests/perf_buffer.c
2025-10-02T15:24:52.8152195Z patching file tools/testing/selftests/bpf/prog_tests/send_signal.c
2025-10-02T15:24:52.8153314Z patching file tools/testing/selftests/bpf/prog_tests/sk_assign.c
2025-10-02T15:24:52.8155060Z patching file tools/testing/selftests/bpf/prog_tests/sk_lookup.c
2025-10-02T15:24:52.8157054Z patching file tools/testing/selftests/bpf/prog_tests/skb_ctx.c
2025-10-02T15:24:52.8157907Z patching file tools/testing/selftests/bpf/prog_tests/sock_fields.c
2025-10-02T15:24:52.8159983Z patching file tools/testing/selftests/bpf/prog_tests/sockmap_basic.c
2025-10-02T15:24:52.8160928Z patching file tools/testing/selftests/bpf/prog_tests/sockopt_inherit.c
2025-10-02T15:24:52.8162100Z patching file tools/testing/selftests/bpf/prog_tests/sockopt_sk.c
2025-10-02T15:24:52.8163226Z patching file tools/testing/selftests/bpf/prog_tests/tcp_rtt.c
2025-10-02T15:24:52.8164214Z patching file tools/testing/selftests/bpf/progs/bpf_iter_task.c
2025-10-02T15:24:52.8165169Z patching file tools/testing/selftests/bpf/progs/bpf_iter_tcp4.c
2025-10-02T15:24:52.8166375Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_arr_kind.c
2025-10-02T15:24:52.8167445Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_arr_value_type.c
2025-10-02T15:24:52.8168284Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_int_kind.c
2025-10-02T15:24:52.8169180Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_int_sz.c
2025-10-02T15:24:52.8170268Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_int_type.c
2025-10-02T15:24:52.8171235Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___err_wrong_struct_type.c
2025-10-02T15:24:52.8172311Z patching file tools/testing/selftests/bpf/progs/btf__core_reloc_existence___wrong_field_defs.c
2025-10-02T15:24:52.8173487Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_bitfields.c
2025-10-02T15:24:52.8174373Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_multidim.c
2025-10-02T15:24:52.8175235Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_packing.c
2025-10-02T15:24:52.8176326Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_padding.c
2025-10-02T15:24:52.8177761Z patching file tools/testing/selftests/bpf/progs/btf_dump_test_case_syntax.c
2025-10-02T15:24:52.8178711Z patching file tools/testing/selftests/bpf/progs/cg_storage_multi.h
2025-10-02T15:24:52.8179750Z patching file tools/testing/selftests/bpf/progs/connect4_prog.c
2025-10-02T15:24:52.8180988Z patching file tools/testing/selftests/bpf/progs/core_reloc_types.h
2025-10-02T15:24:52.8182671Z patching file tools/testing/selftests/bpf/progs/local_storage.c
2025-10-02T15:24:52.8183700Z patching file tools/testing/selftests/bpf/progs/netif_receive_skb.c
2025-10-02T15:24:52.8184968Z patching file tools/testing/selftests/bpf/progs/profiler.inc.h
2025-10-02T15:24:52.8186691Z patching file tools/testing/selftests/bpf/progs/pyperf180.c
2025-10-02T15:24:52.8187426Z patching file tools/testing/selftests/bpf/progs/sockopt_sk.c
2025-10-02T15:24:52.8188648Z patching file tools/testing/selftests/bpf/progs/strobemeta.h
2025-10-02T15:24:52.8190378Z patching file tools/testing/selftests/bpf/progs/test_cls_redirect.h
2025-10-02T15:24:52.8190949Z patching file tools/testing/selftests/bpf/progs/test_core_autosize.c
2025-10-02T15:24:52.8192354Z patching file tools/testing/selftests/bpf/progs/test_global_func10.c
2025-10-02T15:24:52.8193589Z patching file tools/testing/selftests/bpf/progs/test_sk_assign.c
2025-10-02T15:24:52.8194763Z patching file tools/testing/selftests/bpf/progs/test_sk_assign_libbpf.c
2025-10-02T15:24:52.8196013Z patching file tools/testing/selftests/bpf/progs/test_sk_lookup.c
2025-10-02T15:24:52.8197942Z patching file tools/testing/selftests/bpf/progs/test_sock_fields.c
2025-10-02T15:24:52.8198988Z patching file tools/testing/selftests/bpf/progs/test_sockmap_kern.h
2025-10-02T15:24:52.8201037Z patching file tools/testing/selftests/bpf/progs/test_tunnel_kern.c
2025-10-02T15:24:52.8202198Z patching file tools/testing/selftests/bpf/progs/xdp_tx.c
2025-10-02T15:24:52.8203083Z patching file tools/testing/selftests/bpf/test_cpp.cpp
2025-10-02T15:24:52.8203944Z patching file tools/testing/selftests/bpf/test_lirc_mode2.sh
2025-10-02T15:24:52.8205050Z patching file tools/testing/selftests/bpf/test_lru_map.c
2025-10-02T15:24:52.8206725Z patching file tools/testing/selftests/bpf/test_lwt_ip_encap.sh
2025-10-02T15:24:52.8208447Z patching file tools/testing/selftests/bpf/test_maps.c
2025-10-02T15:24:52.8210890Z patching file tools/testing/selftests/bpf/test_offload.py
2025-10-02T15:24:52.8212853Z patching file tools/testing/selftests/bpf/test_progs.c
2025-10-02T15:24:52.8213980Z patching file tools/testing/selftests/bpf/test_progs.h
2025-10-02T15:24:52.8215495Z patching file tools/testing/selftests/bpf/test_sockmap.c
2025-10-02T15:24:52.8218912Z patching file tools/testing/selftests/bpf/test_tc_tunnel.sh
2025-10-02T15:24:52.8220170Z patching file tools/testing/selftests/bpf/test_tunnel.sh
2025-10-02T15:24:52.8222330Z patching file tools/testing/selftests/bpf/test_verifier.c
2025-10-02T15:24:52.8224228Z patching file tools/testing/selftests/bpf/test_xdp_redirect.sh
2025-10-02T15:24:52.8225018Z patching file tools/testing/selftests/bpf/test_xdp_veth.sh
2025-10-02T15:24:52.8225950Z patching file tools/testing/selftests/bpf/verifier/and.c
2025-10-02T15:24:52.8226937Z patching file tools/testing/selftests/bpf/verifier/array_access.c
2025-10-02T15:24:52.8228012Z patching file tools/testing/selftests/bpf/verifier/basic_stack.c
2025-10-02T15:24:52.8228992Z patching file tools/testing/selftests/bpf/verifier/bounds.c
2025-10-02T15:24:52.8231082Z patching file tools/testing/selftests/bpf/verifier/bounds_deduction.c
2025-10-02T15:24:52.8232335Z patching file tools/testing/selftests/bpf/verifier/bounds_mix_sign_unsign.c
2025-10-02T15:24:52.8235167Z patching file tools/testing/selftests/bpf/verifier/calls.c
2025-10-02T15:24:52.8237387Z patching file tools/testing/selftests/bpf/verifier/const_or.c
2025-10-02T15:24:52.8238109Z patching file tools/testing/selftests/bpf/verifier/ctx_sk_lookup.c
2025-10-02T15:24:52.8239340Z patching file tools/testing/selftests/bpf/verifier/dead_code.c
2025-10-02T15:24:52.8240846Z patching file tools/testing/selftests/bpf/verifier/helper_access_var_len.c
2025-10-02T15:24:52.8242843Z patching file tools/testing/selftests/bpf/verifier/int_ptr.c
2025-10-02T15:24:52.8243745Z patching file tools/testing/selftests/bpf/verifier/jmp32.c
2025-10-02T15:24:52.8245568Z patching file tools/testing/selftests/bpf/verifier/jset.c
2025-10-02T15:24:52.8246435Z patching file tools/testing/selftests/bpf/verifier/map_ptr.c
2025-10-02T15:24:52.8247400Z patching file tools/testing/selftests/bpf/verifier/raw_stack.c
2025-10-02T15:24:52.8248890Z patching file tools/testing/selftests/bpf/verifier/ref_tracking.c
2025-10-02T15:24:52.8250693Z patching file tools/testing/selftests/bpf/verifier/search_pruning.c
2025-10-02T15:24:52.8251768Z patching file tools/testing/selftests/bpf/verifier/sock.c
2025-10-02T15:24:52.8253701Z patching file tools/testing/selftests/bpf/verifier/spill_fill.c
2025-10-02T15:24:52.8255460Z patching file tools/testing/selftests/bpf/verifier/stack_ptr.c
2025-10-02T15:24:52.8256811Z patching file tools/testing/selftests/bpf/verifier/unpriv.c
2025-10-02T15:24:52.8258557Z patching file tools/testing/selftests/bpf/verifier/value_ptr_arith.c
2025-10-02T15:24:52.8260590Z patching file tools/testing/selftests/bpf/verifier/var_off.c
2025-10-02T15:24:52.8262685Z patching file tools/testing/selftests/bpf/verifier/xdp_direct_packet_access.c
2025-10-02T15:24:52.8266167Z patching file tools/testing/selftests/breakpoints/step_after_suspend_test.c
2025-10-02T15:24:52.8266893Z patching file tools/testing/selftests/cgroup/cgroup_util.c
2025-10-02T15:24:52.8268107Z patching file tools/testing/selftests/cgroup/test_core.c
2025-10-02T15:24:52.8270182Z patching file tools/testing/selftests/cgroup/test_stress.sh
2025-10-02T15:24:52.8270865Z patching file tools/testing/selftests/clone3/clone3.c
2025-10-02T15:24:52.8271822Z patching file tools/testing/selftests/core/close_range_test.c
2025-10-02T15:24:52.8272875Z patching file tools/testing/selftests/dmabuf-heaps/Makefile
2025-10-02T15:24:52.8273708Z patching file tools/testing/selftests/dmabuf-heaps/dmabuf-heap.c
2025-10-02T15:24:52.8275299Z patching file tools/testing/selftests/drivers/net/mlxsw/devlink_trap_l3_drops.sh
2025-10-02T15:24:52.8276503Z patching file tools/testing/selftests/drivers/net/mlxsw/devlink_trap_l3_exceptions.sh
2025-10-02T15:24:52.8277554Z patching file tools/testing/selftests/drivers/net/mlxsw/mirror_gre_scale.sh
2025-10-02T15:24:52.8278499Z patching file tools/testing/selftests/drivers/net/mlxsw/qos_dscp_bridge.sh
2025-10-02T15:24:52.8279701Z patching file tools/testing/selftests/drivers/net/mlxsw/qos_pfc.sh
2025-10-02T15:24:52.8281662Z patching file tools/testing/selftests/drivers/net/mlxsw/sch_red_core.sh
2025-10-02T15:24:52.8282669Z patching file tools/testing/selftests/drivers/net/mlxsw/sharedbuffer.sh
2025-10-02T15:24:52.8283950Z patching file tools/testing/selftests/drivers/net/mlxsw/sharedbuffer_configuration.py
2025-10-02T15:24:52.8285218Z patching file tools/testing/selftests/drivers/net/mlxsw/spectrum-2/tc_flower.sh
2025-10-02T15:24:52.8287492Z patching file tools/testing/selftests/drivers/net/mlxsw/tc_flower_scale.sh
2025-10-02T15:24:52.8288102Z patching file tools/testing/selftests/drivers/net/mlxsw/tc_police_scale.sh
2025-10-02T15:24:52.8288900Z patching file tools/testing/selftests/drivers/net/mlxsw/vxlan_flooding.sh
2025-10-02T15:24:52.8290436Z patching file tools/testing/selftests/drivers/net/netdevsim/devlink.sh
2025-10-02T15:24:52.8291767Z patching file tools/testing/selftests/drivers/net/netdevsim/udp_tunnel_nic.sh
2025-10-02T15:24:52.8293509Z patching file tools/testing/selftests/drivers/net/ocelot/tc_flower_chains.sh
2025-10-02T15:24:52.8294370Z patching file tools/testing/selftests/efivarfs/create-read.c
2025-10-02T15:24:52.8295201Z patching file tools/testing/selftests/efivarfs/efivarfs.sh
2025-10-02T15:24:52.8295993Z patching file tools/testing/selftests/exec/Makefile
2025-10-02T15:24:52.8297048Z patching file tools/testing/selftests/filesystems/binderfs/Makefile
2025-10-02T15:24:52.8297867Z patching file tools/testing/selftests/firmware/fw_namespace.c
2025-10-02T15:24:52.8298783Z patching file tools/testing/selftests/ftrace/ftracetest
2025-10-02T15:24:52.8300262Z patching file tools/testing/selftests/ftrace/test.d/event/event-no-pid.tc
2025-10-02T15:24:52.8301294Z patching file tools/testing/selftests/ftrace/test.d/event/subsystem-enable.tc
2025-10-02T15:24:52.8302306Z patching file tools/testing/selftests/ftrace/test.d/ftrace/func-filter-glob.tc
2025-10-02T15:24:52.8303168Z patching file tools/testing/selftests/ftrace/test.d/ftrace/func_event_triggers.tc
2025-10-02T15:24:52.8303933Z patching file tools/testing/selftests/ftrace/test.d/functions
2025-10-02T15:24:52.8305057Z patching file tools/testing/selftests/ftrace/test.d/instances/instance-event.tc
2025-10-02T15:24:52.8305975Z patching file tools/testing/selftests/ftrace/test.d/kprobe/kprobe_eventname.tc
2025-10-02T15:24:52.8306945Z patching file tools/testing/selftests/ftrace/test.d/kprobe/kprobe_non_uniq_symbol.tc
2025-10-02T15:24:52.8307983Z patching file tools/testing/selftests/ftrace/test.d/kprobe/kprobe_syntax_errors.tc
2025-10-02T15:24:52.8308703Z patching file tools/testing/selftests/ftrace/test.d/kprobe/profile.tc
2025-10-02T15:24:52.8309443Z patching file tools/testing/selftests/futex/Makefile
2025-10-02T15:24:52.8310721Z patching file tools/testing/selftests/futex/functional/Makefile
2025-10-02T15:24:52.8311642Z patching file tools/testing/selftests/futex/include/futextest.h
2025-10-02T15:24:52.8312532Z patching file tools/testing/selftests/gpio/Makefile
2025-10-02T15:24:52.8313481Z patching file tools/testing/selftests/intel_pstate/Makefile
2025-10-02T15:24:52.8314288Z patching file tools/testing/selftests/intel_pstate/aperf.c
2025-10-02T15:24:52.8315514Z patching file tools/testing/selftests/kcmp/kcmp_test.c
2025-10-02T15:24:52.8316334Z patching file tools/testing/selftests/kselftest/prefix.pl
2025-10-02T15:24:52.8317092Z patching file tools/testing/selftests/kselftest/runner.sh
2025-10-02T15:24:52.8318140Z patching file tools/testing/selftests/kselftest_deps.sh
2025-10-02T15:24:52.8320265Z patching file tools/testing/selftests/kselftest_harness.h
2025-10-02T15:24:52.8322117Z patching file tools/testing/selftests/kvm/kvm_create_max_vcpus.c
2025-10-02T15:24:52.8322991Z patching file tools/testing/selftests/kvm/lib/aarch64/ucall.c
2025-10-02T15:24:52.8324242Z patching file tools/testing/selftests/kvm/lib/kvm_util.c
2025-10-02T15:24:52.8326671Z patching file tools/testing/selftests/kvm/lib/x86_64/processor.c
2025-10-02T15:24:52.8327968Z patching file tools/testing/selftests/kvm/lib/x86_64/svm.c
2025-10-02T15:24:52.8329057Z patching file tools/testing/selftests/kvm/steal_time.c
2025-10-02T15:24:52.8330359Z patching file tools/testing/selftests/kvm/x86_64/mmio_warning_test.c
2025-10-02T15:24:52.8331200Z patching file tools/testing/selftests/lib.mk
2025-10-02T15:24:52.8332292Z patching file tools/testing/selftests/lkdtm/run.sh
2025-10-02T15:24:52.8333187Z patching file tools/testing/selftests/lkdtm/tests.txt
2025-10-02T15:24:52.8334194Z patching file tools/testing/selftests/memfd/fuse_test.c
2025-10-02T15:24:52.8335303Z patching file tools/testing/selftests/memfd/memfd_test.c
2025-10-02T15:24:52.8337279Z patching file tools/testing/selftests/mincore/mincore_selftest.c
2025-10-02T15:24:52.8338340Z patching file tools/testing/selftests/mqueue/mq_perf_tests.c
2025-10-02T15:24:52.8340144Z patching file tools/testing/selftests/mqueue/setting
2025-10-02T15:24:52.8477478Z patching file tools/testing/selftests/net/altnames.sh
2025-10-02T15:24:52.8478134Z patching file tools/testing/selftests/net/devlink_port_split.py
2025-10-02T15:24:52.8480057Z patching file tools/testing/selftests/net/fcnal-test.sh
2025-10-02T15:24:52.8484205Z patching file tools/testing/selftests/net/fib_nexthop_multiprefix.sh
2025-10-02T15:24:52.8485355Z patching file tools/testing/selftests/net/fib_nexthops.sh
2025-10-02T15:24:52.8488227Z patching file tools/testing/selftests/net/fib_tests.sh
2025-10-02T15:24:52.8491167Z patching file tools/testing/selftests/net/forwarding/Makefile
2025-10-02T15:24:52.8491778Z patching file tools/testing/selftests/net/forwarding/devlink_lib.sh
2025-10-02T15:24:52.8493091Z patching file tools/testing/selftests/net/forwarding/ethtool.sh
2025-10-02T15:24:52.8494117Z patching file tools/testing/selftests/net/forwarding/ethtool_extended_state.sh
2025-10-02T15:24:52.8494979Z patching file tools/testing/selftests/net/forwarding/forwarding.config.sample
2025-10-02T15:24:52.8496176Z patching file tools/testing/selftests/net/forwarding/ip6_forward_instats_vrf.sh
2025-10-02T15:24:52.8498127Z patching file tools/testing/selftests/net/forwarding/lib.sh
2025-10-02T15:24:52.8500211Z patching file tools/testing/selftests/net/forwarding/mirror_gre_bridge_1d_vlan.sh
2025-10-02T15:24:52.8501142Z patching file tools/testing/selftests/net/forwarding/mirror_gre_bridge_1q.sh
2025-10-02T15:24:52.8501860Z patching file tools/testing/selftests/net/forwarding/mirror_gre_changes.sh
2025-10-02T15:24:52.8503069Z patching file tools/testing/selftests/net/forwarding/mirror_gre_vlan_bridge_1q.sh
2025-10-02T15:24:52.8504067Z patching file tools/testing/selftests/net/forwarding/mirror_lib.sh
2025-10-02T15:24:52.8505021Z patching file tools/testing/selftests/net/forwarding/pedit_dsfield.sh
2025-10-02T15:24:52.8506132Z patching file tools/testing/selftests/net/forwarding/pedit_l4port.sh
2025-10-02T15:24:52.8507074Z patching file tools/testing/selftests/net/forwarding/router_mpath_nh.sh
2025-10-02T15:24:52.8508286Z patching file tools/testing/selftests/net/forwarding/router_multipath.sh
2025-10-02T15:24:52.8509342Z patching file tools/testing/selftests/net/forwarding/sch_red.sh
2025-10-02T15:24:52.8510798Z patching file tools/testing/selftests/net/forwarding/settings
2025-10-02T15:24:52.8512381Z patching file tools/testing/selftests/net/forwarding/skbedit_priority.sh
2025-10-02T15:24:52.8512921Z patching file tools/testing/selftests/net/forwarding/tc_actions.sh
2025-10-02T15:24:52.8514260Z patching file tools/testing/selftests/net/forwarding/tc_flower.sh
2025-10-02T15:24:52.8515612Z patching file tools/testing/selftests/net/forwarding/tc_police.sh
2025-10-02T15:24:52.8517046Z patching file tools/testing/selftests/net/forwarding/vxlan_bridge_1d.sh
2025-10-02T15:24:52.8518592Z patching file tools/testing/selftests/net/icmp_redirect.sh
2025-10-02T15:24:52.8520419Z patching file tools/testing/selftests/net/ipsec.c
2025-10-02T15:24:52.8522612Z patching file tools/testing/selftests/net/mptcp/Makefile
2025-10-02T15:24:52.8523192Z patching file tools/testing/selftests/net/mptcp/config
2025-10-02T15:24:52.8523920Z patching file tools/testing/selftests/net/mptcp/diag.sh
2025-10-02T15:24:52.8525172Z patching file tools/testing/selftests/net/mptcp/mptcp_connect.c
2025-10-02T15:24:52.8526440Z patching file tools/testing/selftests/net/mptcp/mptcp_connect.sh
2025-10-02T15:24:52.8528067Z patching file tools/testing/selftests/net/mptcp/mptcp_connect_mmap.sh
2025-10-02T15:24:52.8529022Z patching file tools/testing/selftests/net/mptcp/mptcp_join.sh
2025-10-02T15:24:52.8531149Z patching file tools/testing/selftests/net/mptcp/mptcp_lib.sh
2025-10-02T15:24:52.8532089Z patching file tools/testing/selftests/net/mptcp/pm_netlink.sh
2025-10-02T15:24:52.8533144Z patching file tools/testing/selftests/net/mptcp/simult_flows.sh
2025-10-02T15:24:52.8534393Z patching file tools/testing/selftests/net/msg_zerocopy.c
2025-10-02T15:24:52.8536576Z patching file tools/testing/selftests/net/pmtu.sh
2025-10-02T15:24:52.8539105Z patching file tools/testing/selftests/net/reuseaddr_conflict.c
2025-10-02T15:24:52.8539956Z patching file tools/testing/selftests/net/reuseaddr_ports_exhausted.c
2025-10-02T15:24:52.8541099Z patching file tools/testing/selftests/net/reuseport_bpf.c
2025-10-02T15:24:52.8542606Z patching file tools/testing/selftests/net/rtnetlink.sh
2025-10-02T15:24:52.8544201Z patching file tools/testing/selftests/net/test_vxlan_under_vrf.sh
2025-10-02T15:24:52.8545334Z patching file tools/testing/selftests/net/tls.c
2025-10-02T15:24:52.8547100Z patching file tools/testing/selftests/net/txtimestamp.c
2025-10-02T15:24:52.8556442Z patching file tools/testing/selftests/net/udpgro.sh
2025-10-02T15:24:52.8556924Z patching file tools/testing/selftests/net/udpgso.c
2025-10-02T15:24:52.8557317Z patching file tools/testing/selftests/net/udpgso_bench.sh
2025-10-02T15:24:52.8557604Z patching file tools/testing/selftests/net/udpgso_bench_rx.c
2025-10-02T15:24:52.8557869Z patching file tools/testing/selftests/net/udpgso_bench_tx.c
2025-10-02T15:24:52.8558129Z patching file tools/testing/selftests/net/vrf-xfrm-tests.sh
2025-10-02T15:24:52.8558377Z patching file tools/testing/selftests/net/xfrm_policy.sh
2025-10-02T15:24:52.8558630Z patching file tools/testing/selftests/netfilter/Makefile
2025-10-02T15:24:52.8559099Z patching file tools/testing/selftests/netfilter/conntrack_icmp_related.sh
2025-10-02T15:24:52.8559410Z patching file tools/testing/selftests/netfilter/conntrack_vrf.sh
2025-10-02T15:24:52.8559951Z patching file tools/testing/selftests/netfilter/nft_concat_range.sh
2025-10-02T15:24:52.8561447Z patching file tools/testing/selftests/netfilter/nft_conntrack_helper.sh
2025-10-02T15:24:52.8562447Z patching file tools/testing/selftests/netfilter/nft_flowtable.sh
2025-10-02T15:24:52.8563384Z patching file tools/testing/selftests/netfilter/nft_meta.sh
2025-10-02T15:24:52.8564333Z patching file tools/testing/selftests/netfilter/nft_nat.sh
2025-10-02T15:24:52.8565866Z patching file tools/testing/selftests/openat2/Makefile
2025-10-02T15:24:52.8566380Z patching file tools/testing/selftests/openat2/helpers.h
2025-10-02T15:24:52.8567293Z patching file tools/testing/selftests/openat2/openat2_test.c
2025-10-02T15:24:52.8568568Z patching file tools/testing/selftests/pidfd/pidfd.h
2025-10-02T15:24:52.8569366Z patching file tools/testing/selftests/pidfd/pidfd_fdinfo_test.c
2025-10-02T15:24:52.8571306Z patching file tools/testing/selftests/pidfd/pidfd_test.c
2025-10-02T15:24:52.8572282Z patching file tools/testing/selftests/pidfd/pidfd_wait.c
2025-10-02T15:24:52.8573625Z patching file tools/testing/selftests/powerpc/alignment/alignment_handler.c
2025-10-02T15:24:52.8574896Z patching file tools/testing/selftests/powerpc/dscr/dscr_sysfs_test.c
2025-10-02T15:24:52.8575611Z patching file tools/testing/selftests/powerpc/eeh/eeh-basic.sh
2025-10-02T15:24:52.8576448Z patching file tools/testing/selftests/powerpc/math/fpu_preempt.c
2025-10-02T15:24:52.8577243Z patching file tools/testing/selftests/powerpc/math/vmx_preempt.c
2025-10-02T15:24:52.8578272Z patching file tools/testing/selftests/powerpc/mm/pkey_exec_prot.c
2025-10-02T15:24:52.8579345Z patching file tools/testing/selftests/powerpc/mm/pkey_siginfo.c
2025-10-02T15:24:52.8580599Z patching file tools/testing/selftests/powerpc/pmu/ebb/no_handler_test.c
2025-10-02T15:24:52.8581690Z patching file tools/testing/selftests/powerpc/security/entry_flush.c
2025-10-02T15:24:52.8582487Z patching file tools/testing/selftests/powerpc/security/flush_utils.h
2025-10-02T15:24:52.8583187Z patching file tools/testing/selftests/powerpc/security/rfi_flush.c
2025-10-02T15:24:52.8584101Z patching file tools/testing/selftests/powerpc/security/spectre_v2.c
2025-10-02T15:24:52.8585035Z patching file tools/testing/selftests/proc/proc-uptime-002.c
2025-10-02T15:24:52.8585946Z patching file tools/testing/selftests/ptp/testptp.c
2025-10-02T15:24:52.8587280Z patching file tools/testing/selftests/rcutorture/bin/console-badness.sh
2025-10-02T15:24:52.8588136Z patching file tools/testing/selftests/resctrl/Makefile
2025-10-02T15:24:52.8588887Z patching file tools/testing/selftests/resctrl/README
2025-10-02T15:24:52.8589830Z patching file tools/testing/selftests/resctrl/cache.c
2025-10-02T15:24:52.8591223Z patching file tools/testing/selftests/resctrl/cat_test.c
2025-10-02T15:24:52.8592205Z patching file tools/testing/selftests/resctrl/cqm_test.c
2025-10-02T15:24:52.8593159Z patching file tools/testing/selftests/resctrl/fill_buf.c
2025-10-02T15:24:52.8594182Z patching file tools/testing/selftests/resctrl/mba_test.c
2025-10-02T15:24:52.8595129Z patching file tools/testing/selftests/resctrl/mbm_test.c
2025-10-02T15:24:52.8595892Z patching file tools/testing/selftests/resctrl/resctrl.h
2025-10-02T15:24:52.8596866Z patching file tools/testing/selftests/resctrl/resctrl_tests.c
2025-10-02T15:24:52.8598164Z patching file tools/testing/selftests/resctrl/resctrl_val.c
2025-10-02T15:24:52.8600305Z patching file tools/testing/selftests/resctrl/resctrlfs.c
2025-10-02T15:24:52.8601679Z patching file tools/testing/selftests/rseq/Makefile
2025-10-02T15:24:52.8602604Z patching file tools/testing/selftests/rseq/basic_percpu_ops_test.c
2025-10-02T15:24:52.8603555Z patching file tools/testing/selftests/rseq/compiler.h
2025-10-02T15:24:52.8605002Z patching file tools/testing/selftests/rseq/param_test.c
2025-10-02T15:24:52.8606818Z patching file tools/testing/selftests/rseq/rseq-abi.h
2025-10-02T15:24:52.8608471Z patching file tools/testing/selftests/rseq/rseq-arm.h
2025-10-02T15:24:52.8611253Z patching file tools/testing/selftests/rseq/rseq-arm64.h
2025-10-02T15:24:52.8613361Z patching file tools/testing/selftests/rseq/rseq-generic-thread-pointer.h
2025-10-02T15:24:52.8614357Z patching file tools/testing/selftests/rseq/rseq-mips.h
2025-10-02T15:24:52.8616847Z patching file tools/testing/selftests/rseq/rseq-ppc-thread-pointer.h
2025-10-02T15:24:52.8617635Z patching file tools/testing/selftests/rseq/rseq-ppc.h
2025-10-02T15:24:52.8620351Z patching file tools/testing/selftests/rseq/rseq-s390.h
2025-10-02T15:24:52.8622315Z patching file tools/testing/selftests/rseq/rseq-skip.h
2025-10-02T15:24:52.8623025Z patching file tools/testing/selftests/rseq/rseq-thread-pointer.h
2025-10-02T15:24:52.8624301Z patching file tools/testing/selftests/rseq/rseq-x86-thread-pointer.h
2025-10-02T15:24:52.8625539Z patching file tools/testing/selftests/rseq/rseq-x86.h
2025-10-02T15:24:52.8629232Z patching file tools/testing/selftests/rseq/rseq.c
2025-10-02T15:24:52.8630778Z patching file tools/testing/selftests/rseq/rseq.h
2025-10-02T15:24:52.8631733Z patching file tools/testing/selftests/rtc/settings
2025-10-02T15:24:52.8632641Z patching file tools/testing/selftests/run_kselftest.sh
2025-10-02T15:24:52.8633470Z patching file tools/testing/selftests/seccomp/Makefile
2025-10-02T15:24:52.8634130Z patching file tools/testing/selftests/seccomp/config
2025-10-02T15:24:52.8636201Z patching file tools/testing/selftests/seccomp/seccomp_bpf.c
2025-10-02T15:24:52.8639804Z patching file tools/testing/selftests/sigaltstack/current_stack_pointer.h
2025-10-02T15:24:52.8640364Z patching file tools/testing/selftests/sigaltstack/sas.c
2025-10-02T15:24:52.8641410Z patching file tools/testing/selftests/splice/short_splice_read.sh
2025-10-02T15:24:52.8642696Z patching file tools/testing/selftests/tc-testing/config
2025-10-02T15:24:52.8652207Z patching file tools/testing/selftests/tc-testing/plugin-lib/scapyPlugin.py
2025-10-02T15:24:52.8652808Z patching file tools/testing/selftests/tc-testing/settings
2025-10-02T15:24:52.8654141Z patching file tools/testing/selftests/tc-testing/tc-tests/qdiscs/fq_pie.json
2025-10-02T15:24:52.8655073Z patching file tools/testing/selftests/tc-testing/tdc.py
2025-10-02T15:24:52.8656372Z patching file tools/testing/selftests/tc-testing/tdc_batch.py
2025-10-02T15:24:52.8657183Z patching file tools/testing/selftests/tc-testing/tdc_multibatch.py
2025-10-02T15:24:52.8658102Z patching file tools/testing/selftests/timers/clocksource-switch.c
2025-10-02T15:24:52.8658931Z patching file tools/testing/selftests/timers/posix_timers.c
2025-10-02T15:24:52.8659987Z patching file tools/testing/selftests/timers/rtcpie.c
2025-10-02T15:24:52.8661004Z patching file tools/testing/selftests/timers/valid-adjtimex.c
2025-10-02T15:24:52.8662261Z patching file tools/testing/selftests/tpm2/tpm2.py
2025-10-02T15:24:52.8664528Z patching file tools/testing/selftests/ublk/test_stripe_04.sh
2025-10-02T15:24:52.8665440Z patching file tools/testing/selftests/vDSO/parse_vdso.c
2025-10-02T15:24:52.8666558Z patching file tools/testing/selftests/vDSO/vdso_standalone_test_x86.c
2025-10-02T15:24:52.8667515Z patching file tools/testing/selftests/vm/Makefile
2025-10-02T15:24:52.8669215Z patching file tools/testing/selftests/vm/charge_reserved_hugetlb.sh
2025-10-02T15:24:52.8670640Z patching file tools/testing/selftests/vm/compaction_test.c
2025-10-02T15:24:52.8672717Z patching file tools/testing/selftests/vm/hmm-tests.c
2025-10-02T15:24:52.8674691Z patching file tools/testing/selftests/vm/hugetlb_reparenting_test.sh
2025-10-02T15:24:52.8675358Z patching file tools/testing/selftests/vm/map_fixed_noreplace.c
2025-10-02T15:24:52.8677357Z patching file tools/testing/selftests/vm/protection_keys.c
2025-10-02T15:24:52.8679635Z patching file tools/testing/selftests/vm/userfaultfd.c
2025-10-02T15:24:52.8681451Z patching file tools/testing/selftests/vm/write_hugetlb_memory.sh
2025-10-02T15:24:52.8681977Z patching file tools/testing/selftests/vm/write_to_hugetlbfs.c
2025-10-02T15:24:52.8683182Z patching file tools/testing/selftests/watchdog/watchdog-test.c
2025-10-02T15:24:52.8684124Z patching file tools/testing/selftests/wireguard/netns.sh
2025-10-02T15:24:52.8686029Z patching file tools/testing/selftests/wireguard/qemu/debug.config
2025-10-02T15:24:52.8686759Z patching file tools/testing/selftests/wireguard/qemu/kernel.config
2025-10-02T15:24:52.8687602Z patching file tools/testing/selftests/x86/Makefile
2025-10-02T15:24:52.8688396Z patching file tools/testing/selftests/x86/check_cc.sh
2025-10-02T15:24:52.8689228Z patching file tools/testing/selftests/x86/iopl.c
2025-10-02T15:24:52.8691071Z patching file tools/testing/selftests/x86/test_vsyscall.c
2025-10-02T15:24:52.8692019Z patching file tools/testing/selftests/zram/zram.sh
2025-10-02T15:24:52.8692795Z patching file tools/testing/selftests/zram/zram01.sh
2025-10-02T15:24:52.8693729Z patching file tools/testing/selftests/zram/zram02.sh
2025-10-02T15:24:52.8694495Z patching file tools/testing/selftests/zram/zram_lib.sh
2025-10-02T15:24:52.8696683Z patching file tools/thermal/tmon/Makefile
2025-10-02T15:24:52.8697088Z patching file tools/thermal/tmon/sysfs.c
2025-10-02T15:24:52.8698737Z patching file tools/thermal/tmon/tmon.h
2025-10-02T15:24:52.8699840Z patching file tools/usb/testusb.c
2025-10-02T15:24:52.8701569Z patching file tools/usb/usbip/src/usbip_detach.c
2025-10-02T15:24:52.8702178Z patching file tools/virtio/Makefile
2025-10-02T15:24:52.8703075Z patching file tools/virtio/linux/bug.h
2025-10-02T15:24:52.8703863Z patching file tools/virtio/linux/build_bug.h
2025-10-02T15:24:52.8704850Z patching file tools/virtio/linux/cpumask.h
2025-10-02T15:24:52.8705778Z patching file tools/virtio/linux/gfp.h
2025-10-02T15:24:52.8706725Z patching file tools/virtio/linux/kernel.h
2025-10-02T15:24:52.8707533Z patching file tools/virtio/linux/kmsan.h
2025-10-02T15:24:52.8708554Z patching file tools/virtio/linux/scatterlist.h
2025-10-02T15:24:52.8709437Z patching file tools/virtio/linux/spinlock.h
2025-10-02T15:24:52.8710719Z patching file tools/virtio/linux/topology.h
2025-10-02T15:24:52.8711642Z patching file tools/virtio/linux/virtio.h
2025-10-02T15:24:52.8712576Z patching file tools/virtio/virtio_test.c
2025-10-02T15:24:52.8713708Z patching file tools/virtio/vringh_test.c
2025-10-02T15:24:52.8715490Z patching file tools/vm/page-types.c
2025-10-02T15:24:52.8717016Z patching file tools/vm/slabinfo-gnuplot.sh
2025-10-02T15:24:52.8718115Z patching file tools/vm/slabinfo.c
2025-10-02T15:24:52.8720134Z patching file usr/include/Makefile
2025-10-02T15:24:52.8721092Z patching file virt/kvm/async_pf.c
2025-10-02T15:24:52.8722232Z patching file virt/kvm/coalesced_mmio.c
2025-10-02T15:24:52.8723369Z patching file virt/kvm/eventfd.c
2025-10-02T15:24:52.8726058Z patching file virt/kvm/kvm_main.c
2025-10-02T15:24:52.8731153Z patching file virt/lib/irqbypass.c
2025-10-02T15:24:55.2206595Z -> Applying patch: linux-5.10.236-std-gnu11.patch...
2025-10-02T15:24:55.2218499Z patching file arch/x86/Makefile
2025-10-02T15:24:55.2222860Z -> Applying patch: 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-CLONE_NEWUSER.patch...
2025-10-02T15:24:55.2233142Z patching file include/linux/sysctl.h
2025-10-02T15:24:55.2233662Z Hunk #1 succeeded at 216 (offset 12 lines).
2025-10-02T15:24:55.2242596Z patching file init/Kconfig
2025-10-02T15:24:55.2243249Z Hunk #1 succeeded at 1189 (offset 98 lines).
2025-10-02T15:24:55.2245638Z patching file kernel/fork.c
2025-10-02T15:24:55.2246365Z Hunk #1 succeeded at 107 (offset 1 line).
2025-10-02T15:24:55.2247042Z Hunk #2 succeeded at 1975 (offset 182 lines).
2025-10-02T15:24:55.2247673Z Hunk #3 succeeded at 3066 (offset 238 lines).
2025-10-02T15:24:55.2249837Z patching file kernel/sysctl.c
2025-10-02T15:24:55.2250745Z Hunk #1 succeeded at 2039 (offset 1494 lines).
2025-10-02T15:24:55.2252616Z patching file kernel/user_namespace.c
2025-10-02T15:24:55.2260545Z -> Applying patch: 0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_special_driver-list.patch...
2025-10-02T15:24:55.2271612Z patching file drivers/hid/hid-quirks.c
2025-10-02T15:24:55.2272458Z Hunk #1 succeeded at 492 (offset 14 lines).
2025-10-02T15:24:55.2277004Z -> Applying patch: 0101-i2c-nuvoton-nc677x-hwmon-driver.patch...
2025-10-02T15:24:55.2287137Z patching file drivers/i2c/busses/Kconfig
2025-10-02T15:24:55.2287647Z Hunk #1 succeeded at 219 (offset 2 lines).
2025-10-02T15:24:55.2288668Z patching file drivers/i2c/busses/Makefile
2025-10-02T15:24:55.2289902Z patching file drivers/i2c/busses/i2c-nct6775.c
2025-10-02T15:24:55.2293078Z patching file drivers/i2c/busses/i2c-piix4.c
2025-10-02T15:24:55.2300015Z -> Applying patch: 0102-iomap-iomap_bmap-should-accept-unwritten-maps.patch...
2025-10-02T15:24:55.2311606Z patching file fs/iomap/fiemap.c
2025-10-02T15:24:55.2312466Z Hunk #1 succeeded at 110 (offset -5 lines).
2025-10-02T15:24:55.2315806Z -> Applying patch: 0104-revert-xhci-Add-support-for-Renesas-controller-with-memory.patch...
2025-10-02T15:24:55.2326490Z patching file drivers/usb/host/xhci-pci.c
2025-10-02T15:24:55.2327317Z Hunk #1 succeeded at 730 (offset 94 lines).
2025-10-02T15:24:55.2329695Z patching file drivers/usb/host/xhci-pci.c
2025-10-02T15:24:55.2330560Z Hunk #2 succeeded at 107 (offset 16 lines).
2025-10-02T15:24:55.2331284Z Hunk #3 succeeded at 451 (offset 115 lines).
2025-10-02T15:24:55.2331781Z Hunk #4 succeeded at 693 (offset 133 lines).
2025-10-02T15:24:55.2334621Z -> Applying patch: 0107-quirk-kernel-org-bug-210681-firmware_rome_error.patch...
2025-10-02T15:24:55.2346329Z patching file drivers/bluetooth/btusb.c
2025-10-02T15:24:55.2349682Z Hunk #1 succeeded at 3821 with fuzz 2 (offset -249 lines).
2025-10-02T15:24:55.2353252Z -> Applying patch: 0999-patch_realtek.patch...
2025-10-02T15:24:55.2368516Z patching file sound/pci/hda/patch_realtek.c
2025-10-02T15:24:55.2373011Z Hunk #1 succeeded at 9300 (offset -932 lines).
2025-10-02T15:24:55.2377748Z -> add config.anbox to config
2025-10-02T15:24:55.2481147Z ==> set extraversion to pkgrel
2025-10-02T15:24:55.2509743Z ==> don't run depmod on 'make install'
2025-10-02T15:24:55.2534124Z ==> get kernel version
2025-10-02T15:24:56.6753817Z SYNC include/config/auto.conf
2025-10-02T15:24:57.3033769Z HOSTCC scripts/basic/fixdep
2025-10-02T15:24:57.4977852Z HOSTCC scripts/kconfig/conf.o
2025-10-02T15:24:57.6677839Z HOSTCC scripts/kconfig/confdata.o
2025-10-02T15:24:57.9994596Z HOSTCC scripts/kconfig/expr.o
2025-10-02T15:24:58.2682198Z LEX scripts/kconfig/lexer.lex.c
2025-10-02T15:24:58.2800457Z YACC scripts/kconfig/parser.tab.[ch]
2025-10-02T15:24:58.3560417Z HOSTCC scripts/kconfig/lexer.lex.o
2025-10-02T15:24:58.6825231Z HOSTCC scripts/kconfig/parser.tab.o
2025-10-02T15:24:59.1654687Z HOSTCC scripts/kconfig/preprocess.o
2025-10-02T15:24:59.3026246Z HOSTCC scripts/kconfig/symbol.o
2025-10-02T15:24:59.6716094Z HOSTCC scripts/kconfig/util.o
2025-10-02T15:24:59.7312001Z HOSTLD scripts/kconfig/conf
2025-10-02T15:25:00.7042884Z .config:10208:warning: override: reassigning to symbol ASHMEM
2025-10-02T15:25:00.7043777Z .config:10209:warning: override: reassigning to symbol ION
2025-10-02T15:25:00.7044573Z .config:10210:warning: override: reassigning to symbol ANDROID
2025-10-02T15:25:00.7045384Z .config:10211:warning: override: reassigning to symbol ANDROID_BINDER_IPC
2025-10-02T15:25:00.7046255Z .config:10212:warning: override: reassigning to symbol ANDROID_BINDERFS
2025-10-02T15:25:00.7047111Z .config:10213:warning: override: reassigning to symbol ANDROID_BINDER_DEVICES
2025-10-02T15:25:00.7048101Z .config:10214:warning: override: reassigning to symbol ANDROID_BINDER_IPC_SELFTEST
2025-10-02T15:25:03.5561803Z SYSTBL arch/x86/include/generated/asm/syscalls_32.h
2025-10-02T15:25:04.1977846Z SYSHDR arch/x86/include/generated/asm/unistd_32_ia32.h
2025-10-02T15:25:04.2242278Z SYSHDR arch/x86/include/generated/asm/unistd_64_x32.h
2025-10-02T15:25:04.2388950Z SYSTBL arch/x86/include/generated/asm/syscalls_64.h
2025-10-02T15:25:04.8117621Z HYPERCALLS arch/x86/include/generated/asm/xen-hypercalls.h
2025-10-02T15:25:04.8590678Z SYSHDR arch/x86/include/generated/uapi/asm/unistd_32.h
2025-10-02T15:25:04.8853202Z SYSHDR arch/x86/include/generated/uapi/asm/unistd_64.h
2025-10-02T15:25:04.9085213Z SYSHDR arch/x86/include/generated/uapi/asm/unistd_x32.h
2025-10-02T15:25:05.0580750Z HOSTCC arch/x86/tools/relocs_32.o
2025-10-02T15:25:05.2574502Z HOSTCC arch/x86/tools/relocs_64.o
2025-10-02T15:25:05.4607139Z HOSTCC arch/x86/tools/relocs_common.o
2025-10-02T15:25:05.5133146Z HOSTLD arch/x86/tools/relocs
2025-10-02T15:25:05.6948902Z HOSTCC scripts/selinux/genheaders/genheaders
2025-10-02T15:25:05.8013927Z HOSTCC scripts/selinux/mdp/mdp
2025-10-02T15:25:05.9021357Z HOSTCC scripts/bin2c
2025-10-02T15:25:05.9515342Z HOSTCC scripts/kallsyms
2025-10-02T15:25:06.1757991Z HOSTCC scripts/recordmcount
2025-10-02T15:25:06.6028741Z HOSTCC scripts/sorttable
2025-10-02T15:25:06.8664755Z HOSTCC scripts/asn1_compiler
2025-10-02T15:25:07.2233437Z HOSTCC scripts/sign-file
2025-10-02T15:25:07.4346748Z HOSTCC scripts/extract-cert
2025-10-02T15:25:07.6382608Z WRAP arch/x86/include/generated/uapi/asm/bpf_perf_event.h
2025-10-02T15:25:07.6406642Z WRAP arch/x86/include/generated/uapi/asm/errno.h
2025-10-02T15:25:07.6430925Z WRAP arch/x86/include/generated/uapi/asm/fcntl.h
2025-10-02T15:25:07.6455308Z WRAP arch/x86/include/generated/uapi/asm/ioctl.h
2025-10-02T15:25:07.6480027Z WRAP arch/x86/include/generated/uapi/asm/ioctls.h
2025-10-02T15:25:07.6504190Z WRAP arch/x86/include/generated/uapi/asm/ipcbuf.h
2025-10-02T15:25:07.6528310Z WRAP arch/x86/include/generated/uapi/asm/param.h
2025-10-02T15:25:07.6553015Z WRAP arch/x86/include/generated/uapi/asm/poll.h
2025-10-02T15:25:07.6577261Z WRAP arch/x86/include/generated/uapi/asm/resource.h
2025-10-02T15:25:07.6601676Z WRAP arch/x86/include/generated/uapi/asm/socket.h
2025-10-02T15:25:07.6625827Z WRAP arch/x86/include/generated/uapi/asm/sockios.h
2025-10-02T15:25:07.6650582Z WRAP arch/x86/include/generated/uapi/asm/termbits.h
2025-10-02T15:25:07.6674640Z WRAP arch/x86/include/generated/uapi/asm/termios.h
2025-10-02T15:25:07.6699748Z WRAP arch/x86/include/generated/uapi/asm/types.h
2025-10-02T15:25:07.7306236Z WRAP arch/x86/include/generated/asm/early_ioremap.h
2025-10-02T15:25:07.7330323Z WRAP arch/x86/include/generated/asm/export.h
2025-10-02T15:25:07.7354885Z WRAP arch/x86/include/generated/asm/mcs_spinlock.h
2025-10-02T15:25:07.7379448Z WRAP arch/x86/include/generated/asm/irq_regs.h
2025-10-02T15:25:07.7404973Z WRAP arch/x86/include/generated/asm/local64.h
2025-10-02T15:25:07.7429057Z WRAP arch/x86/include/generated/asm/mm-arch-hooks.h
2025-10-02T15:25:07.7453242Z WRAP arch/x86/include/generated/asm/mmiowb.h
2025-10-02T15:25:07.7477127Z WRAP arch/x86/include/generated/asm/module.lds.h
2025-10-02T15:25:07.7501377Z WRAP arch/x86/include/generated/asm/rwonce.h
2025-10-02T15:25:07.8304267Z UPD include/config/kernel.release
2025-10-02T15:25:08.0019697Z UPD include/generated/uapi/linux/version.h
2025-10-02T15:25:08.0985736Z UPD include/generated/utsrelease.h
2025-10-02T15:25:08.1665158Z CC scripts/mod/empty.o
2025-10-02T15:25:08.2025830Z HOSTCC scripts/mod/mk_elfconfig
2025-10-02T15:25:08.2578684Z MKELF scripts/mod/elfconfig.h
2025-10-02T15:25:08.2618712Z HOSTCC scripts/mod/modpost.o
2025-10-02T15:25:08.8167530Z CC scripts/mod/devicetable-offsets.s
2025-10-02T15:25:08.8591082Z UPD scripts/mod/devicetable-offsets.h
2025-10-02T15:25:08.8650244Z HOSTCC scripts/mod/file2alias.o
2025-10-02T15:25:09.3283573Z HOSTCC scripts/mod/sumversion.o
2025-10-02T15:25:09.4707169Z HOSTLD scripts/mod/modpost
2025-10-02T15:25:09.5021135Z CC kernel/bounds.s
2025-10-02T15:25:09.5444350Z UPD include/generated/bounds.h
2025-10-02T15:25:09.5517818Z UPD include/generated/timeconst.h
2025-10-02T15:25:09.5568136Z CC arch/x86/kernel/asm-offsets.s
2025-10-02T15:25:09.8719430Z UPD include/generated/asm-offsets.h
2025-10-02T15:25:09.8770190Z CALL scripts/checksyscalls.sh
2025-10-02T15:25:09.9127116Z CALL scripts/atomic/check-atomics.sh
2025-10-02T15:25:10.0128452Z DESCEND objtool
2025-10-02T15:25:10.1579458Z gcc -o /build/linux510/src/linux-5.10/tools/objtool/fixdep /build/linux510/src/linux-5.10/tools/objtool/fixdep-in.o
2025-10-02T15:25:11.2607795Z rm -f /build/linux510/src/linux-5.10/tools/objtool/libsubcmd.a && ar rcs /build/linux510/src/linux-5.10/tools/objtool/libsubcmd.a /build/linux510/src/linux-5.10/tools/objtool/libsubcmd-in.o
2025-10-02T15:25:14.1726438Z gcc /build/linux510/src/linux-5.10/tools/objtool/objtool-in.o -lelf /build/linux510/src/linux-5.10/tools/objtool/libsubcmd.a -o /build/linux510/src/linux-5.10/tools/objtool/objtool
2025-10-02T15:25:14.2809340Z DESCEND bpf/resolve_btfids
2025-10-02T15:25:14.6358605Z
2025-10-02T15:25:14.6359276Z Auto-detecting system features:
2025-10-02T15:25:14.6373291Z ... libelf: [ ^[[32mon^[[m ]
2025-10-02T15:25:14.6386175Z ... zlib: [ ^[[32mon^[[m ]
2025-10-02T15:25:14.6399646Z ... bpf: [ ^[[32mon^[[m ]
2025-10-02T15:25:14.6400139Z
2025-10-02T15:25:14.6512993Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py --header \
2025-10-02T15:25:14.6514320Z --file /build/linux510/src/linux-5.10/tools/include/uapi/linux/bpf.h > /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libbpf/bpf_helper_defs.h
2025-10-02T15:25:14.6743079Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:42: SyntaxWarning: invalid escape sequence '\w'
2025-10-02T15:25:14.6743936Z arg_re = re.compile('((\w+ )*?(\w+|...))( (\**)(\w+))?$')
2025-10-02T15:25:14.6745081Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:44: SyntaxWarning: invalid escape sequence '\*'
2025-10-02T15:25:14.6746408Z proto_re = re.compile('(.+) (\**)(\w+)\(((([^,]+)(, )?){1,5})\)$')
2025-10-02T15:25:14.6747746Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:90: SyntaxWarning: invalid escape sequence '\*'
2025-10-02T15:25:14.6749115Z p = re.compile(' \* ?((.+) \**\w+\((((const )?(struct )?(\w+|\.\.\.)( \**\w+)?)(, )?){1,5}\))$')
2025-10-02T15:25:14.6750710Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:98: SyntaxWarning: invalid escape sequence '\*'
2025-10-02T15:25:14.6751811Z p = re.compile(' \* ?(?:\t| {5,8})Description$')
2025-10-02T15:25:14.6752971Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:112: SyntaxWarning: invalid escape sequence '\*'
2025-10-02T15:25:14.6753816Z p = re.compile(' \* ?(?:\t| {5,8})(?:\t| {8})(.*)')
2025-10-02T15:25:14.6754577Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:121: SyntaxWarning: invalid escape sequence '\*'
2025-10-02T15:25:14.6755313Z p = re.compile(' \* ?(?:\t| {5,8})Return$')
2025-10-02T15:25:14.6756045Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:135: SyntaxWarning: invalid escape sequence '\*'
2025-10-02T15:25:14.6757053Z p = re.compile(' \* ?(?:\t| {5,8})(?:\t| {8})(.*)')
2025-10-02T15:25:14.6757834Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:290: SyntaxWarning: invalid escape sequence '\ '
2025-10-02T15:25:14.6758688Z license string passed (via **attr**) to the **bpf**\ () system call, and this
2025-10-02T15:25:14.6759786Z /build/linux510/src/linux-5.10/scripts/bpf_helpers_doc.py:372: SyntaxWarning: invalid escape sequence '\ '
2025-10-02T15:25:14.6769442Z one_arg += ' {}**\ '.format(a['star'].replace('*', '\\*'))
2025-10-02T15:25:20.3306455Z rm -f -f /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libbpf/libbpf.a; ar rcs /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libbpf/libbpf.a /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libbpf/staticobjs/libbpf-in.o
2025-10-02T15:25:20.4301651Z gcc -o /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/fixdep /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/fixdep-in.o
2025-10-02T15:25:21.5097887Z rm -f /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libsubcmd/libsubcmd.a && ar rcs /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libsubcmd/libsubcmd.a /build/linux510/src/linux-5.10/tools/bpf/resolve_btfids/libsubcmd/libsubcmd-in.o
2025-10-02T15:25:21.8455031Z ==> rewrite configuration
2025-10-02T15:25:23.5869273Z yes: standard output: Broken pipe
2025-10-02T15:25:23.5933667Z ==> Starting build()...
2025-10-02T15:25:23.5934304Z ==> build
2025-10-02T15:25:26.8693003Z DESCEND objtool
2025-10-02T15:25:26.9416514Z DESCEND bpf/resolve_btfids
2025-10-02T15:25:27.0648804Z CALL scripts/atomic/check-atomics.sh
2025-10-02T15:25:27.0798150Z CALL scripts/checksyscalls.sh
2025-10-02T15:25:27.1927845Z CHK include/generated/compile.h
2025-10-02T15:25:27.1960491Z CC init/main.o
2025-10-02T15:25:27.1968251Z CC init/do_mounts.o
2025-10-02T15:25:27.2046891Z CC init/do_mounts_initrd.o
2025-10-02T15:25:27.2333000Z UPD include/generated/compile.h
2025-10-02T15:25:27.2460910Z CC init/initramfs.o
2025-10-02T15:25:27.3837671Z HOSTCC usr/gen_init_cpio
2025-10-02T15:25:27.7391896Z GEN usr/initramfs_data.cpio
2025-10-02T15:25:27.7921776Z SHIPPED usr/initramfs_inc_data
2025-10-02T15:25:27.8052118Z AS usr/initramfs_data.o
2025-10-02T15:25:27.8873854Z AR usr/built-in.a
2025-10-02T15:25:27.9291277Z CC init/calibrate.o
2025-10-02T15:25:28.1613855Z CC arch/x86/entry/vdso/vma.o
2025-10-02T15:25:28.3646588Z CC arch/x86/entry/vdso/vdso32-setup.o
2025-10-02T15:25:28.3938523Z CC arch/x86/events/amd/core.o
2025-10-02T15:25:28.6272823Z CC arch/x86/events/intel/core.o
2025-10-02T15:25:28.8653413Z CC arch/x86/events/zhaoxin/core.o
2025-10-02T15:25:28.9583896Z CC init/init_task.o
2025-10-02T15:25:29.1291312Z LDS arch/x86/entry/vdso/vdso.lds
2025-10-02T15:25:29.1580039Z AS arch/x86/entry/vdso/vdso-note.o
2025-10-02T15:25:29.1989301Z CC arch/x86/entry/vdso/vclock_gettime.o
2025-10-02T15:25:29.4800181Z CC arch/x86/events/amd/uncore.o
2025-10-02T15:25:29.6646125Z AR arch/x86/events/zhaoxin/built-in.a
2025-10-02T15:25:29.6908147Z CC arch/x86/entry/vdso/vgetcpu.o
2025-10-02T15:25:29.6912137Z CC arch/x86/xen/enlighten.o
2025-10-02T15:25:30.0557455Z CC init/version.o
2025-10-02T15:25:30.0562818Z HOSTCC arch/x86/entry/vdso/vdso2c
2025-10-02T15:25:30.3630322Z AR init/built-in.a
2025-10-02T15:25:30.3902708Z LDS arch/x86/entry/vdso/vdso32/vdso32.lds
2025-10-02T15:25:30.4311442Z CC arch/x86/xen/mmu.o
2025-10-02T15:25:30.5470184Z CC arch/x86/events/intel/bts.o
2025-10-02T15:25:30.5499281Z AS arch/x86/entry/vdso/vdso32/note.o
2025-10-02T15:25:30.5500336Z CC arch/x86/events/amd/ibs.o
2025-10-02T15:25:30.6268778Z AS arch/x86/entry/vdso/vdso32/system_call.o
2025-10-02T15:25:30.7179890Z AS arch/x86/entry/vdso/vdso32/sigreturn.o
2025-10-02T15:25:30.8023449Z CC arch/x86/entry/vdso/vdso32/vclock_gettime.o
2025-10-02T15:25:31.1056406Z CC arch/x86/events/amd/iommu.o
2025-10-02T15:25:31.2089775Z CC arch/x86/xen/time.o
2025-10-02T15:25:31.5091597Z CC arch/x86/events/intel/ds.o
2025-10-02T15:25:31.5869865Z VDSO arch/x86/entry/vdso/vdso64.so.dbg
2025-10-02T15:25:31.6724322Z VDSO arch/x86/entry/vdso/vdso32.so.dbg
2025-10-02T15:25:31.7329973Z OBJCOPY arch/x86/entry/vdso/vdso64.so
2025-10-02T15:25:31.7508223Z OBJCOPY arch/x86/entry/vdso/vdso32.so
2025-10-02T15:25:31.7653436Z VDSO2C arch/x86/entry/vdso/vdso-image-64.c
2025-10-02T15:25:31.7771514Z CC arch/x86/events/intel/knc.o
2025-10-02T15:25:31.7809393Z VDSO2C arch/x86/entry/vdso/vdso-image-32.c
2025-10-02T15:25:31.7886435Z CC arch/x86/entry/vdso/vdso-image-64.o
2025-10-02T15:25:32.0994122Z CC arch/x86/entry/vdso/vdso-image-32.o
2025-10-02T15:25:32.1889017Z CC arch/x86/xen/grant-table.o
2025-10-02T15:25:32.2571451Z CC [M] arch/x86/events/amd/power.o
2025-10-02T15:25:32.3540524Z AR arch/x86/entry/vdso/built-in.a
2025-10-02T15:25:32.3929438Z CC arch/x86/entry/vsyscall/vsyscall_64.o
2025-10-02T15:25:32.5304782Z CC arch/x86/xen/suspend.o
2025-10-02T15:25:33.0256063Z CC arch/x86/platform/pvh/enlighten.o
2025-10-02T15:25:33.3301197Z AS arch/x86/entry/vsyscall/vsyscall_emu_64.o
2025-10-02T15:25:33.4361638Z AR arch/x86/events/amd/built-in.a
2025-10-02T15:25:33.4414261Z AR arch/x86/entry/vsyscall/built-in.a
2025-10-02T15:25:33.4635646Z AS arch/x86/entry/entry.o
2025-10-02T15:25:33.4806102Z AS arch/x86/platform/pvh/head.o
2025-10-02T15:25:33.4931687Z CC arch/x86/events/intel/lbr.o
2025-10-02T15:25:33.5384737Z CC arch/x86/xen/enlighten_hvm.o
2025-10-02T15:25:33.5548214Z AS arch/x86/entry/entry_64.o
2025-10-02T15:25:33.5656846Z AR arch/x86/platform/pvh/built-in.a
2025-10-02T15:25:33.6046258Z CC arch/x86/hyperv/hv_init.o
2025-10-02T15:25:33.7418967Z CC arch/x86/entry/syscall_64.o
2025-10-02T15:25:33.9190579Z CC kernel/sched/core.o
2025-10-02T15:25:34.5676588Z CC arch/x86/entry/common.o
2025-10-02T15:25:35.1711159Z CC arch/x86/hyperv/mmu.o
2025-10-02T15:25:35.1749151Z CC arch/x86/xen/mmu_hvm.o
2025-10-02T15:25:35.4591180Z CC arch/x86/events/intel/p4.o
2025-10-02T15:25:35.7753068Z AS arch/x86/entry/thunk_64.o
2025-10-02T15:25:35.8884639Z AS arch/x86/entry/entry_64_compat.o
2025-10-02T15:25:36.0830296Z CC arch/x86/entry/syscall_32.o
2025-10-02T15:25:36.1219766Z CC arch/x86/xen/suspend_hvm.o
2025-10-02T15:25:36.6374650Z CC arch/x86/events/intel/p6.o
2025-10-02T15:25:36.7677548Z CC arch/x86/hyperv/nested.o
2025-10-02T15:25:36.9170271Z CC arch/x86/xen/platform-pci-unplug.o
2025-10-02T15:25:37.1546966Z AR arch/x86/entry/built-in.a
2025-10-02T15:25:37.2054265Z CC kernel/locking/mutex.o
2025-10-02T15:25:37.6029754Z CC arch/x86/hyperv/hv_apic.o
2025-10-02T15:25:37.6723853Z CC arch/x86/events/intel/pt.o
2025-10-02T15:25:37.7834668Z CC arch/x86/xen/setup.o
2025-10-02T15:25:38.2143929Z CC kernel/locking/semaphore.o
2025-10-02T15:25:38.5097377Z CC arch/x86/hyperv/hv_spinlock.o
2025-10-02T15:25:38.9538516Z CC kernel/locking/rwsem.o
2025-10-02T15:25:39.2151012Z AR arch/x86/hyperv/built-in.a
2025-10-02T15:25:39.2287275Z CC [M] arch/x86/events/intel/uncore.o
2025-10-02T15:25:39.3197259Z CC arch/x86/xen/apic.o
2025-10-02T15:25:39.7802860Z CC arch/x86/realmode/init.o
2025-10-02T15:25:39.9559005Z CC kernel/locking/percpu-rwsem.o
2025-10-02T15:25:40.0863461Z CC arch/x86/xen/pmu.o
2025-10-02T15:25:40.5118381Z CC kernel/locking/spinlock.o
2025-10-02T15:25:40.5532369Z CC kernel/sched/loadavg.o
2025-10-02T15:25:40.6070668Z AS arch/x86/realmode/rm/header.o
2025-10-02T15:25:40.6857003Z AS arch/x86/realmode/rm/trampoline_64.o
2025-10-02T15:25:40.7867577Z AS arch/x86/realmode/rm/stack.o
2025-10-02T15:25:40.8679083Z AS arch/x86/realmode/rm/reboot.o
2025-10-02T15:25:40.9546499Z AS arch/x86/realmode/rm/wakeup_asm.o
2025-10-02T15:25:40.9574437Z CC [M] arch/x86/events/intel/uncore_nhmex.o
2025-10-02T15:25:41.0151718Z CC kernel/locking/osq_lock.o
2025-10-02T15:25:41.0277144Z CC arch/x86/realmode/rm/wakemain.o
2025-10-02T15:25:41.1765183Z CC arch/x86/xen/suspend_pv.o
2025-10-02T15:25:41.2071623Z CC arch/x86/realmode/rm/video-mode.o
2025-10-02T15:25:41.3438508Z AS arch/x86/realmode/rm/copy.o
2025-10-02T15:25:41.3994019Z AS arch/x86/realmode/rm/bioscall.o
2025-10-02T15:25:41.4616532Z CC arch/x86/realmode/rm/regs.o
2025-10-02T15:25:41.4752293Z CC kernel/locking/qspinlock.o
2025-10-02T15:25:41.5432215Z CC arch/x86/realmode/rm/video-vga.o
2025-10-02T15:25:41.6124476Z CC kernel/sched/clock.o
2025-10-02T15:25:41.6559338Z CC arch/x86/realmode/rm/video-vesa.o
2025-10-02T15:25:41.7745074Z CC arch/x86/realmode/rm/video-bios.o
2025-10-02T15:25:41.8847802Z PASYMS arch/x86/realmode/rm/pasyms.h
2025-10-02T15:25:41.9066914Z LDS arch/x86/realmode/rm/realmode.lds
2025-10-02T15:25:41.9334192Z LD arch/x86/realmode/rm/realmode.elf
2025-10-02T15:25:41.9473067Z RELOCS arch/x86/realmode/rm/realmode.relocs
2025-10-02T15:25:41.9543508Z OBJCOPY arch/x86/realmode/rm/realmode.bin
2025-10-02T15:25:41.9768312Z AS arch/x86/realmode/rmpiggy.o
2025-10-02T15:25:42.0195742Z AR arch/x86/realmode/built-in.a
2025-10-02T15:25:42.1942415Z CC certs/system_keyring.o
2025-10-02T15:25:42.3532868Z CC arch/x86/xen/p2m.o
2025-10-02T15:25:42.3738775Z CC [M] arch/x86/events/intel/uncore_snb.o
2025-10-02T15:25:42.5739394Z CC kernel/locking/rtmutex.o
2025-10-02T15:25:42.6460712Z EXTRACT_CERTS
2025-10-02T15:25:42.6568176Z Generating X.509 key generation config
2025-10-02T15:25:42.7553042Z CC kernel/sched/cputime.o
2025-10-02T15:25:42.7996049Z CC certs/common.o
2025-10-02T15:25:43.0410913Z CC certs/blacklist.o
2025-10-02T15:25:43.4103870Z CC [M] arch/x86/events/intel/uncore_snbep.o
2025-10-02T15:25:43.5121417Z CC kernel/locking/qrwlock.o
2025-10-02T15:25:43.7244608Z EXTRACT_CERTS
2025-10-02T15:25:43.7427197Z CC certs/blacklist_nohashes.o
2025-10-02T15:25:43.7594626Z CC kernel/locking/lock_events.o
2025-10-02T15:25:43.7698457Z CC arch/x86/xen/enlighten_pv.o
2025-10-02T15:25:44.0895266Z ###
2025-10-02T15:25:44.1006826Z ### Now generating an X.509 key pair to be used for signing modules.
2025-10-02T15:25:44.1107751Z ###
2025-10-02T15:25:44.1184972Z ### If this takes a long time, you might wish to run rngd in the
2025-10-02T15:25:44.1257430Z ### background to keep the supply of entropy topped up. It
2025-10-02T15:25:44.1336618Z ### needs to be run as root, and uses a hardware random
2025-10-02T15:25:44.1381641Z ### number generator if one is available.
2025-10-02T15:25:44.1414130Z ###
2025-10-02T15:25:44.1893658Z .+...+........+.......+...+.................+.+.....+.......+..+......+.......+..+.+......+.....+.+..+.......+.....+.+..+.......+.....+.........+......+.............+..+.........+....+.....+.+.....+.......+...+......+.........+++++++++++++++++++++++++++++++++++++++++++++*..+..+.+...+..+++++++++++++++++++++++++++++++++++++++++++++*.........+..+......+....+...+++++
2025-10-02T15:25:44.2116223Z ...+.+.....+..........+..+...+....+...+..+......+...............+....+..+.+....................+....+...+.....+.+...............+...........+...+.......+.....+..........+.....+......+...+....+..+++++++++++++++++++++++++++++++++++++++++++++*..+.+..+...+.........+......+....+........+++++++++++++++++++++++++++++++++++++++++++++*....+......+......+........+ CC kernel/sched/idle.o
2025-10-02T15:25:44.2913366Z ...+...+.......+.................+.............+..+.+.........+..+.............+......+..+...+......+........................+.+...............+...+......+.....+......+...+.+.................... AR kernel/locking/built-in.a
2025-10-02T15:25:44.3042763Z +.......+............+...+ CC arch/x86/events/core.o
2025-10-02T15:25:44.4707649Z .....+.........+......+...+...............+.+.....+.+...+...........................+..+...+...+.+....................+.............+......+......+.........+..+....+...+...........+............+..............................+.........+....+..............+......+.+......+...+.....+.....................+...+...+.......+..+...+......+......+......+.......+...............+...............+......+.....+....+++++
2025-10-02T15:25:44.4966909Z -----
2025-10-02T15:25:44.5181591Z ###
2025-10-02T15:25:44.5219800Z ### Key pair generated.
2025-10-02T15:25:44.5317779Z ###
2025-10-02T15:25:44.5408404Z AS certs/revocation_certificates.o
2025-10-02T15:25:44.6160091Z EXTRACT_CERTS certs/signing_key.pem
2025-10-02T15:25:44.6262942Z AS certs/system_certificates.o
2025-10-02T15:25:44.6724311Z AR certs/built-in.a
2025-10-02T15:25:44.7191254Z CC arch/x86/kernel/fpu/init.o
2025-10-02T15:25:45.4167288Z CC arch/x86/kernel/fpu/bugs.o
2025-10-02T15:25:45.7093693Z CC arch/x86/xen/mmu_pv.o
2025-10-02T15:25:45.8141905Z CC [M] arch/x86/events/intel/cstate.o
2025-10-02T15:25:45.8796308Z CC kernel/sched/fair.o
2025-10-02T15:25:45.9599999Z CC arch/x86/kernel/fpu/core.o
2025-10-02T15:25:46.4671684Z CC arch/x86/kernel/cpu/mce/core.o
2025-10-02T15:25:46.7190310Z LD [M] arch/x86/events/intel/intel-uncore.o
2025-10-02T15:25:46.7434114Z LD [M] arch/x86/events/intel/intel-cstate.o
2025-10-02T15:25:46.7579112Z AR arch/x86/events/intel/built-in.a
2025-10-02T15:25:46.7943602Z CC arch/x86/events/probe.o
2025-10-02T15:25:47.2492040Z CC arch/x86/events/msr.o
2025-10-02T15:25:47.3699939Z CC arch/x86/kernel/fpu/regset.o
2025-10-02T15:25:48.1697153Z CC [M] arch/x86/events/rapl.o
2025-10-02T15:25:48.2556132Z CC arch/x86/kernel/fpu/signal.o
2025-10-02T15:25:48.7517996Z CC arch/x86/kernel/cpu/mce/severity.o
2025-10-02T15:25:49.2424819Z AR arch/x86/events/built-in.a
2025-10-02T15:25:49.2586196Z CC arch/x86/xen/irq.o
2025-10-02T15:25:49.2682532Z CC arch/x86/kernel/fpu/xstate.o
2025-10-02T15:25:49.3048864Z CC kernel/power/qos.o
2025-10-02T15:25:49.5612843Z CC arch/x86/kernel/cpu/mce/genpool.o
2025-10-02T15:25:50.0564932Z CC arch/x86/xen/multicalls.o
2025-10-02T15:25:50.1721958Z CC arch/x86/kernel/cpu/mce/intel.o
2025-10-02T15:25:50.4723907Z CC kernel/power/main.o
2025-10-02T15:25:50.8173328Z CC arch/x86/kernel/cpu/mce/amd.o
2025-10-02T15:25:50.8260412Z AR arch/x86/kernel/fpu/built-in.a
2025-10-02T15:25:50.9581180Z CC mm/filemap.o
2025-10-02T15:25:51.1430067Z AS arch/x86/xen/xen-asm.o
2025-10-02T15:25:51.2704409Z CC arch/x86/xen/enlighten_pvh.o
2025-10-02T15:25:51.6186925Z CC kernel/power/console.o
2025-10-02T15:25:52.3087283Z CC arch/x86/xen/trace.o
2025-10-02T15:25:52.3721363Z CC kernel/sched/rt.o
2025-10-02T15:25:52.4131526Z CC kernel/power/process.o
2025-10-02T15:25:52.6105418Z CC arch/x86/kernel/cpu/mce/threshold.o
2025-10-02T15:25:53.4895681Z CC arch/x86/kernel/cpu/mce/therm_throt.o
2025-10-02T15:25:53.5862722Z CC kernel/power/suspend.o
2025-10-02T15:25:54.3291776Z CC arch/x86/xen/smp.o
2025-10-02T15:25:54.5934036Z CC kernel/sched/deadline.o
2025-10-02T15:25:54.7871439Z CC arch/x86/kernel/cpu/mce/apei.o
2025-10-02T15:25:54.8216451Z CC kernel/power/hibernate.o
2025-10-02T15:25:55.1111118Z CC arch/x86/xen/smp_pv.o
2025-10-02T15:25:55.1513383Z CC mm/mempool.o
2025-10-02T15:25:55.5544053Z CC [M] arch/x86/kernel/cpu/mce/inject.o
2025-10-02T15:25:56.1805709Z CC kernel/power/snapshot.o
2025-10-02T15:25:56.1884181Z CC mm/oom_kill.o
2025-10-02T15:25:56.4857858Z CC arch/x86/xen/smp_hvm.o
2025-10-02T15:25:56.5726219Z AR arch/x86/kernel/cpu/mce/built-in.a
2025-10-02T15:25:56.5965910Z LD [M] arch/x86/kernel/cpu/mce/mce-inject.o
2025-10-02T15:25:56.6851102Z CC arch/x86/kernel/cpu/mtrr/mtrr.o
2025-10-02T15:25:57.2176438Z CC arch/x86/xen/spinlock.o
2025-10-02T15:25:57.5901702Z CC kernel/sched/wait.o
2025-10-02T15:25:57.8590302Z CC arch/x86/kernel/cpu/mtrr/if.o
2025-10-02T15:25:57.9352404Z CC kernel/power/swap.o
2025-10-02T15:25:57.9433817Z CC arch/x86/xen/vga.o
2025-10-02T15:25:58.2065552Z CC mm/fadvise.o
2025-10-02T15:25:58.5027412Z CC arch/x86/kernel/cpu/mtrr/generic.o
2025-10-02T15:25:58.6366312Z CC arch/x86/xen/pci-swiotlb-xen.o
2025-10-02T15:25:59.1756241Z CC mm/maccess.o
2025-10-02T15:25:59.1850067Z CC kernel/sched/wait_bit.o
2025-10-02T15:25:59.2755327Z CC kernel/power/user.o
2025-10-02T15:25:59.3503800Z CC arch/x86/xen/efi.o
2025-10-02T15:25:59.5798502Z CC arch/x86/kernel/cpu/mtrr/cleanup.o
2025-10-02T15:25:59.7338743Z CC mm/page-writeback.o
2025-10-02T15:25:59.9394298Z AR arch/x86/xen/built-in.a
2025-10-02T15:25:59.9685949Z CC kernel/printk/printk.o
2025-10-02T15:26:00.2971132Z CC kernel/power/poweroff.o
2025-10-02T15:26:00.5941983Z CC kernel/power/energy_model.o
2025-10-02T15:26:00.7866063Z AR arch/x86/kernel/cpu/mtrr/built-in.a
2025-10-02T15:26:00.8133920Z CC kernel/sched/swait.o
2025-10-02T15:26:00.8422633Z CC arch/x86/kernel/cpu/microcode/core.o
2025-10-02T15:26:01.4552654Z AR kernel/power/built-in.a
2025-10-02T15:26:01.4754566Z CC kernel/printk/printk_safe.o
2025-10-02T15:26:01.8559128Z CC arch/x86/kernel/cpu/microcode/intel.o
2025-10-02T15:26:02.0313293Z CC mm/readahead.o
2025-10-02T15:26:02.2102381Z CC kernel/sched/completion.o
2025-10-02T15:26:02.2425796Z CC kernel/sched/cpupri.o
2025-10-02T15:26:02.2703832Z CC kernel/printk/braille.o
2025-10-02T15:26:02.5617147Z CC kernel/printk/printk_ringbuffer.o
2025-10-02T15:26:02.7975831Z CC arch/x86/kernel/cpu/microcode/amd.o
2025-10-02T15:26:03.4524193Z CC mm/swap.o
2025-10-02T15:26:03.5135501Z AR kernel/printk/built-in.a
2025-10-02T15:26:03.5312216Z CC kernel/sched/cpudeadline.o
2025-10-02T15:26:03.5630561Z CC mm/truncate.o
2025-10-02T15:26:03.7208450Z CC fs/notify/dnotify/dnotify.o
2025-10-02T15:26:03.7650705Z AR arch/x86/kernel/cpu/microcode/built-in.a
2025-10-02T15:26:03.7938118Z CC arch/x86/kernel/cpu/resctrl/core.o
2025-10-02T15:26:04.5930657Z AR fs/notify/dnotify/built-in.a
2025-10-02T15:26:04.6481237Z CC fs/notify/inotify/inotify_fsnotify.o
2025-10-02T15:26:04.8686775Z CC arch/x86/kernel/cpu/resctrl/rdtgroup.o
2025-10-02T15:26:05.0261914Z CC kernel/sched/topology.o
2025-10-02T15:26:05.0410581Z CC arch/x86/kernel/cpu/resctrl/monitor.o
2025-10-02T15:26:05.5069114Z CC fs/notify/inotify/inotify_user.o
2025-10-02T15:26:05.5681921Z CC mm/vmscan.o
2025-10-02T15:26:06.0345302Z CC fs/crypto/crypto.o
2025-10-02T15:26:06.7697391Z AR fs/notify/inotify/built-in.a
2025-10-02T15:26:06.8253203Z CC fs/notify/fanotify/fanotify.o
2025-10-02T15:26:06.9659188Z CC arch/x86/kernel/cpu/resctrl/ctrlmondata.o
2025-10-02T15:26:07.0783968Z CC fs/crypto/fname.o
2025-10-02T15:26:07.2963043Z CC kernel/sched/stop_task.o
2025-10-02T15:26:07.8819986Z CC arch/x86/kernel/cpu/resctrl/pseudo_lock.o
2025-10-02T15:26:08.2105234Z CC fs/crypto/hkdf.o
2025-10-02T15:26:08.4405326Z CC fs/notify/fanotify/fanotify_user.o
2025-10-02T15:26:08.5903825Z CC kernel/sched/pelt.o
2025-10-02T15:26:09.0863619Z CC fs/crypto/hooks.o
2025-10-02T15:26:09.3741913Z AR arch/x86/kernel/cpu/resctrl/built-in.a
2025-10-02T15:26:09.3878864Z CC arch/x86/kernel/cpu/cacheinfo.o
2025-10-02T15:26:09.8564737Z CC mm/shmem.o
2025-10-02T15:26:09.9502289Z CC fs/crypto/keyring.o
2025-10-02T15:26:10.3391653Z AR fs/notify/fanotify/built-in.a
2025-10-02T15:26:10.3620055Z CC fs/notify/fsnotify.o
2025-10-02T15:26:10.4177050Z CC kernel/sched/autogroup.o
2025-10-02T15:26:10.8048980Z CC arch/x86/kernel/cpu/scattered.o
2025-10-02T15:26:11.1651250Z CC fs/crypto/keysetup.o
2025-10-02T15:26:11.3740362Z CC fs/notify/notification.o
2025-10-02T15:26:11.4460141Z CC arch/x86/kernel/cpu/topology.o
2025-10-02T15:26:11.9099871Z CC kernel/sched/stats.o
2025-10-02T15:26:12.0455426Z CC fs/notify/group.o
2025-10-02T15:26:12.0847105Z CC fs/crypto/keysetup_v1.o
2025-10-02T15:26:12.1206244Z CC arch/x86/kernel/cpu/common.o
2025-10-02T15:26:12.9849040Z CC fs/notify/mark.o
2025-10-02T15:26:13.1252694Z CC fs/crypto/policy.o
2025-10-02T15:26:13.1800102Z CC kernel/sched/debug.o
2025-10-02T15:26:13.3277017Z CC mm/util.o
2025-10-02T15:26:13.7245398Z CC arch/x86/kernel/cpu/rdrand.o
2025-10-02T15:26:14.0400950Z CC arch/x86/kernel/cpu/match.o
2025-10-02T15:26:14.0617952Z CC fs/notify/fdinfo.o
2025-10-02T15:26:14.3431788Z CC fs/crypto/bio.o
2025-10-02T15:26:14.4860017Z CC arch/x86/kernel/cpu/bugs.o
2025-10-02T15:26:14.6349885Z CC mm/mmzone.o
2025-10-02T15:26:14.8446958Z AR fs/notify/built-in.a
2025-10-02T15:26:14.8662488Z CC mm/vmstat.o
2025-10-02T15:26:15.2761321Z CC fs/crypto/inline_crypt.o
2025-10-02T15:26:15.3167602Z CC kernel/sched/cpuacct.o
2025-10-02T15:26:15.3824163Z CC fs/verity/enable.o
2025-10-02T15:26:16.2045349Z CC arch/x86/kernel/cpu/aperfmperf.o
2025-10-02T15:26:16.2162783Z AR fs/crypto/built-in.a
2025-10-02T15:26:16.2446287Z CC fs/verity/hash_algs.o
2025-10-02T15:26:16.5896582Z CC arch/x86/mm/pat/set_memory.o
2025-10-02T15:26:16.6190512Z CC kernel/sched/cpufreq.o
2025-10-02T15:26:16.7123537Z CC arch/x86/kernel/cpu/cpuid-deps.o
2025-10-02T15:26:16.8470144Z CC mm/backing-dev.o
2025-10-02T15:26:17.1199457Z CC fs/verity/init.o
2025-10-02T15:26:17.2470542Z CC arch/x86/kernel/cpu/umwait.o
2025-10-02T15:26:17.6640805Z CC fs/verity/measure.o
2025-10-02T15:26:17.8418517Z CC kernel/sched/cpufreq_schedutil.o
2025-10-02T15:26:18.0521128Z CC arch/x86/kernel/cpu/proc.o
2025-10-02T15:26:18.2871946Z CC fs/verity/open.o
2025-10-02T15:26:18.4377530Z CC mm/mm_init.o
2025-10-02T15:26:18.5916564Z CC arch/x86/mm/pat/memtype.o
2025-10-02T15:26:18.6336879Z MKCAP arch/x86/kernel/cpu/capflags.c
2025-10-02T15:26:18.9885413Z CC fs/verity/verify.o
2025-10-02T15:26:19.1177520Z CC mm/percpu.o
2025-10-02T15:26:19.4851928Z CC kernel/sched/membarrier.o
2025-10-02T15:26:19.5581338Z CC arch/x86/mm/pat/memtype_interval.o
2025-10-02T15:26:19.8238955Z CC fs/verity/signature.o
2025-10-02T15:26:20.2730996Z AR arch/x86/mm/pat/built-in.a
2025-10-02T15:26:20.2847203Z CC arch/x86/mm/init.o
2025-10-02T15:26:20.4010406Z AR fs/verity/built-in.a
2025-10-02T15:26:20.4425532Z CC fs/nfs_common/nfs_ssc.o
2025-10-02T15:26:20.8578550Z CC kernel/sched/isolation.o
2025-10-02T15:26:21.6081846Z CC [M] fs/nfs_common/nfsacl.o
2025-10-02T15:26:21.6674912Z CC arch/x86/mm/init_64.o
2025-10-02T15:26:21.7365133Z CC mm/slab_common.o
2025-10-02T15:26:21.9824486Z CC kernel/sched/psi.o
2025-10-02T15:26:22.2505586Z CC [M] fs/nfs_common/grace.o
2025-10-02T15:26:22.8526451Z LD [M] fs/nfs_common/nfs_acl.o
2025-10-02T15:26:22.8644369Z AR fs/nfs_common/built-in.a
2025-10-02T15:26:22.9107825Z CC fs/iomap/trace.o
2025-10-02T15:26:23.7807382Z CC fs/iomap/apply.o
2025-10-02T15:26:24.1084162Z CC mm/compaction.o
2025-10-02T15:26:24.2680866Z AR kernel/sched/built-in.a
2025-10-02T15:26:24.3006777Z CC kernel/irq/irqdesc.o
2025-10-02T15:26:24.4322399Z CC fs/iomap/buffered-io.o
2025-10-02T15:26:24.4339348Z CC arch/x86/mm/fault.o
2025-10-02T15:26:25.1512674Z CC kernel/irq/handle.o
2025-10-02T15:26:25.8208607Z CC kernel/irq/manage.o
2025-10-02T15:26:25.9421092Z CC arch/x86/mm/ioremap.o
2025-10-02T15:26:26.2758665Z CC fs/iomap/direct-io.o
2025-10-02T15:26:27.1097918Z CC mm/vmacache.o
2025-10-02T15:26:27.2601475Z CC arch/x86/kernel/cpu/powerflags.o
2025-10-02T15:26:27.2750352Z CC arch/x86/mm/extable.o
2025-10-02T15:26:27.3528517Z CC fs/iomap/fiemap.o
2025-10-02T15:26:27.4412179Z CC arch/x86/kernel/cpu/feat_ctl.o
2025-10-02T15:26:27.5875930Z CC kernel/irq/spurious.o
2025-10-02T15:26:27.6394483Z CC mm/interval_tree.o
2025-10-02T15:26:27.8678432Z CC arch/x86/kernel/cpu/intel.o
2025-10-02T15:26:28.1902856Z CC fs/iomap/seek.o
2025-10-02T15:26:28.3029752Z CC kernel/irq/resend.o
2025-10-02T15:26:28.3861782Z CC arch/x86/mm/mmap.o
2025-10-02T15:26:28.7346685Z CC mm/list_lru.o
2025-10-02T15:26:28.9220523Z CC fs/iomap/swapfile.o
2025-10-02T15:26:29.0228498Z CC kernel/irq/chip.o
2025-10-02T15:26:29.0805785Z CC arch/x86/kernel/cpu/intel_pconfig.o
2025-10-02T15:26:29.1903967Z CC arch/x86/mm/pgtable.o
2025-10-02T15:26:29.2873714Z CC arch/x86/kernel/cpu/tsx.o
2025-10-02T15:26:29.5107683Z CC arch/x86/kernel/cpu/intel_epb.o
2025-10-02T15:26:29.7998993Z CC mm/workingset.o
2025-10-02T15:26:29.8281222Z AR fs/iomap/built-in.a
2025-10-02T15:26:29.8797411Z CC fs/quota/dquot.o
2025-10-02T15:26:29.9395493Z CC arch/x86/kernel/cpu/amd.o
2025-10-02T15:26:30.3410622Z CC kernel/irq/dummychip.o
2025-10-02T15:26:30.4958903Z CC arch/x86/mm/physaddr.o
2025-10-02T15:26:30.7312269Z CC kernel/irq/devres.o
2025-10-02T15:26:30.9789033Z CC arch/x86/mm/setup_nx.o
2025-10-02T15:26:31.0247272Z CC mm/debug.o
2025-10-02T15:26:31.1685239Z CC arch/x86/kernel/cpu/hygon.o
2025-10-02T15:26:31.2710117Z CC kernel/irq/generic-chip.o
2025-10-02T15:26:31.3392961Z CC arch/x86/mm/tlb.o
2025-10-02T15:26:31.8876021Z CC arch/x86/kernel/cpu/centaur.o
2025-10-02T15:26:32.0884212Z CC mm/gup.o
2025-10-02T15:26:32.2854911Z CC kernel/irq/autoprobe.o
2025-10-02T15:26:32.4052847Z CC fs/quota/quota.o
2025-10-02T15:26:32.4771258Z CC arch/x86/mm/cpu_entry_area.o
2025-10-02T15:26:32.5390397Z CC arch/x86/kernel/cpu/zhaoxin.o
2025-10-02T15:26:32.8297681Z CC kernel/irq/irqdomain.o
2025-10-02T15:26:33.1024998Z CC arch/x86/kernel/cpu/perfctr-watchdog.o
2025-10-02T15:26:33.2149753Z CC arch/x86/mm/maccess.o
2025-10-02T15:26:33.5395376Z CC arch/x86/mm/hugetlbpage.o
2025-10-02T15:26:33.7708364Z CC arch/x86/kernel/cpu/vmware.o
2025-10-02T15:26:33.9850325Z CC fs/quota/kqid.o
2025-10-02T15:26:34.3181003Z CC kernel/irq/irq_sim.o
2025-10-02T15:26:34.4117398Z CC arch/x86/kernel/cpu/hypervisor.o
2025-10-02T15:26:34.5276921Z CC fs/quota/netlink.o
2025-10-02T15:26:34.5350037Z CC arch/x86/mm/dump_pagetables.o
2025-10-02T15:26:34.6701704Z CC arch/x86/kernel/cpu/mshyperv.o
2025-10-02T15:26:34.8601946Z CC kernel/irq/proc.o
2025-10-02T15:26:35.0220049Z CC mm/highmem.o
2025-10-02T15:26:35.3395673Z CC [M] fs/quota/quota_v1.o
2025-10-02T15:26:35.5311910Z CC arch/x86/mm/kmmio.o
2025-10-02T15:26:35.5554197Z CC kernel/irq/migration.o
2025-10-02T15:26:35.7075232Z CC mm/memory.o
2025-10-02T15:26:35.9739807Z CC arch/x86/kernel/cpu/acrn.o
2025-10-02T15:26:36.0027871Z CC [M] fs/quota/quota_v2.o
2025-10-02T15:26:36.1027832Z CC kernel/irq/cpuhotplug.o
2025-10-02T15:26:36.3180322Z CC arch/x86/mm/pf_in.o
2025-10-02T15:26:36.6462104Z CC [M] fs/quota/quota_tree.o
2025-10-02T15:26:36.8896209Z CC kernel/irq/pm.o
2025-10-02T15:26:36.9775678Z CC arch/x86/kernel/cpu/capflags.o
2025-10-02T15:26:36.9992687Z CC arch/x86/mm/mmio-mod.o
2025-10-02T15:26:37.0552359Z AR arch/x86/kernel/cpu/built-in.a
2025-10-02T15:26:37.0895691Z CC arch/x86/kernel/acpi/boot.o
2025-10-02T15:26:37.6934013Z AR fs/quota/built-in.a
2025-10-02T15:26:37.7668368Z CC kernel/irq/msi.o
2025-10-02T15:26:37.8182012Z CC arch/x86/mm/numa.o
2025-10-02T15:26:37.9399904Z CC fs/proc/task_mmu.o
2025-10-02T15:26:38.2076026Z CC arch/x86/kernel/acpi/sleep.o
2025-10-02T15:26:38.5660929Z CC kernel/irq/affinity.o
2025-10-02T15:26:38.8868880Z AS arch/x86/kernel/acpi/wakeup_64.o
2025-10-02T15:26:38.9331222Z CC arch/x86/kernel/acpi/apei.o
2025-10-02T15:26:39.1031500Z CC arch/x86/mm/numa_64.o
2025-10-02T15:26:39.3506286Z CC kernel/irq/matrix.o
2025-10-02T15:26:39.5531903Z CC arch/x86/kernel/acpi/cppc_msr.o
2025-10-02T15:26:39.6507532Z CC arch/x86/mm/amdtopology.o
2025-10-02T15:26:40.0428517Z CC arch/x86/kernel/acpi/cstate.o
2025-10-02T15:26:40.2378016Z CC fs/proc/inode.o
2025-10-02T15:26:40.4926982Z CC arch/x86/mm/srat.o
2025-10-02T15:26:40.5837711Z AR kernel/irq/built-in.a
2025-10-02T15:26:40.6120508Z CC kernel/rcu/update.o
2025-10-02T15:26:40.8577077Z AR arch/x86/kernel/acpi/built-in.a
2025-10-02T15:26:40.9184136Z CC arch/x86/kernel/apic/apic.o
2025-10-02T15:26:41.1771422Z CC fs/proc/root.o
2025-10-02T15:26:41.1806330Z CC arch/x86/mm/pkeys.o
2025-10-02T15:26:41.6615839Z CC mm/mincore.o
2025-10-02T15:26:41.8618321Z CC fs/proc/base.o
2025-10-02T15:26:41.9614447Z CC arch/x86/mm/kaslr.o
2025-10-02T15:26:42.0994556Z CC kernel/rcu/sync.o
2025-10-02T15:26:42.5333586Z CC kernel/rcu/srcutree.o
2025-10-02T15:26:42.6511647Z CC arch/x86/mm/pti.o
2025-10-02T15:26:42.6968508Z CC mm/mlock.o
2025-10-02T15:26:43.0901211Z CC arch/x86/kernel/apic/apic_common.o
2025-10-02T15:26:43.4245418Z CC arch/x86/mm/mem_encrypt.o
2025-10-02T15:26:43.6695898Z CC kernel/rcu/tree.o
2025-10-02T15:26:43.7819926Z CC arch/x86/kernel/apic/apic_noop.o
2025-10-02T15:26:43.9637158Z CC mm/mmap.o
2025-10-02T15:26:44.1098056Z CC arch/x86/mm/mem_encrypt_identity.o
2025-10-02T15:26:44.2369674Z CC arch/x86/kernel/apic/ipi.o
2025-10-02T15:26:44.7388666Z CC fs/proc/generic.o
2025-10-02T15:26:44.7887197Z CC arch/x86/kernel/apic/vector.o
2025-10-02T15:26:44.8286245Z AS arch/x86/mm/mem_encrypt_boot.o
2025-10-02T15:26:44.9645091Z AR arch/x86/mm/built-in.a
2025-10-02T15:26:44.9985201Z CC arch/x86/kernel/apic/hw_nmi.o
2025-10-02T15:26:45.7546219Z AR kernel/livepatch/built-in.a
2025-10-02T15:26:45.7943299Z CC arch/x86/kernel/kprobes/core.o
2025-10-02T15:26:45.9211677Z CC fs/proc/array.o
2025-10-02T15:26:46.3597517Z CC arch/x86/kernel/apic/io_apic.o
2025-10-02T15:26:46.9327143Z CC mm/mmu_gather.o
2025-10-02T15:26:47.0890054Z CC arch/x86/kernel/kprobes/opt.o
2025-10-02T15:26:47.2749946Z CC fs/proc/fd.o
2025-10-02T15:26:47.6760878Z CC kernel/rcu/rcu_segcblist.o
2025-10-02T15:26:47.9199103Z CC mm/mprotect.o
2025-10-02T15:26:48.0392742Z CC fs/proc/proc_tty.o
2025-10-02T15:26:48.1202914Z CC arch/x86/kernel/kprobes/ftrace.o
2025-10-02T15:26:48.1826544Z AR kernel/rcu/built-in.a
2025-10-02T15:26:48.2404828Z CC kernel/dma/mapping.o
2025-10-02T15:26:48.4359425Z CC arch/x86/kernel/apic/msi.o
2025-10-02T15:26:48.5547038Z CC fs/proc/cmdline.o
2025-10-02T15:26:48.8773120Z AR arch/x86/kernel/kprobes/built-in.a
2025-10-02T15:26:48.8904200Z CC kernel/dma/direct.o
2025-10-02T15:26:49.1557442Z CC fs/proc/consoles.o
2025-10-02T15:26:49.4140359Z CC fs/proc/cpuinfo.o
2025-10-02T15:26:49.4625074Z CC arch/x86/kernel/apic/x2apic_phys.o
2025-10-02T15:26:49.5425103Z CC mm/mremap.o
2025-10-02T15:26:49.6859764Z CC arch/x86/kernel/apic/x2apic_cluster.o
2025-10-02T15:26:49.9934453Z CC fs/proc/devices.o
2025-10-02T15:26:50.0860089Z CC kernel/dma/ops_helpers.o
2025-10-02T15:26:50.1695132Z CC kernel/dma/dummy.o
2025-10-02T15:26:50.3214969Z CC arch/x86/kernel/apic/apic_flat_64.o
2025-10-02T15:26:50.8324392Z CC kernel/dma/contiguous.o
2025-10-02T15:26:50.8750236Z CC mm/msync.o
2025-10-02T15:26:50.8805720Z CC arch/x86/kernel/apic/probe_64.o
2025-10-02T15:26:50.8924033Z CC ipc/compat.o
2025-10-02T15:26:50.9681723Z CC fs/proc/interrupts.o
2025-10-02T15:26:51.1512436Z AR arch/x86/kernel/apic/built-in.a
2025-10-02T15:26:51.1650934Z AS arch/x86/kernel/head_64.o
2025-10-02T15:26:51.2365527Z CC arch/x86/kernel/head64.o
2025-10-02T15:26:51.4559252Z CC kernel/dma/swiotlb.o
2025-10-02T15:26:51.6335465Z CC fs/proc/loadavg.o
2025-10-02T15:26:51.6636041Z CC ipc/util.o
2025-10-02T15:26:51.8284591Z CC mm/page_vma_mapped.o
2025-10-02T15:26:52.0321312Z CC arch/x86/kernel/ebda.o
2025-10-02T15:26:52.1289938Z CC fs/proc/meminfo.o
2025-10-02T15:26:52.7050717Z CC kernel/dma/pool.o
2025-10-02T15:26:52.7070749Z CC arch/x86/kernel/platform-quirks.o
2025-10-02T15:26:52.8514344Z CC mm/pagewalk.o
2025-10-02T15:26:53.0990335Z CC fs/proc/stat.o
2025-10-02T15:26:53.1181249Z CC ipc/msgutil.o
2025-10-02T15:26:53.1218778Z LDS arch/x86/kernel/vmlinux.lds
2025-10-02T15:26:53.1839017Z CC arch/x86/kernel/process_64.o
2025-10-02T15:26:53.4174671Z AR kernel/dma/built-in.a
2025-10-02T15:26:53.4468110Z CC kernel/entry/common.o
2025-10-02T15:26:53.8065354Z CC ipc/msg.o
2025-10-02T15:26:53.8693752Z CC fs/proc/uptime.o
2025-10-02T15:26:53.9615652Z CC mm/pgtable-generic.o
2025-10-02T15:26:54.3625296Z CC fs/proc/util.o
2025-10-02T15:26:54.4729303Z CC arch/x86/kernel/signal.o
2025-10-02T15:26:54.6335707Z CC kernel/entry/kvm.o
2025-10-02T15:26:54.8783438Z CC fs/proc/version.o
2025-10-02T15:26:54.9525340Z CC mm/rmap.o
2025-10-02T15:26:55.3042310Z CC ipc/sem.o
2025-10-02T15:26:55.3886678Z CC fs/proc/softirqs.o
2025-10-02T15:26:55.5877412Z AR kernel/entry/built-in.a
2025-10-02T15:26:55.6449251Z CC kernel/time/time.o
2025-10-02T15:26:55.7221936Z CC arch/x86/kernel/signal_compat.o
2025-10-02T15:26:55.9039782Z CC fs/proc/namespaces.o
2025-10-02T15:26:56.4183691Z CC arch/x86/kernel/traps.o
2025-10-02T15:26:56.7526179Z CC fs/proc/self.o
2025-10-02T15:26:57.0269219Z CC kernel/time/timer.o
2025-10-02T15:26:57.3343071Z CC mm/vmalloc.o
2025-10-02T15:26:57.5111083Z CC fs/proc/thread_self.o
2025-10-02T15:26:57.6281165Z CC ipc/shm.o
2025-10-02T15:26:57.8818337Z CC arch/x86/kernel/idt.o
2025-10-02T15:26:58.2244713Z CC fs/proc/proc_sysctl.o
2025-10-02T15:26:58.9550865Z CC arch/x86/kernel/irq.o
2025-10-02T15:26:59.3459917Z CC ipc/syscall.o
2025-10-02T15:26:59.3885463Z CC kernel/time/hrtimer.o
2025-10-02T15:27:00.0279963Z CC fs/proc/proc_net.o
2025-10-02T15:27:00.1125967Z CC ipc/ipc_sysctl.o
2025-10-02T15:27:00.3943455Z CC mm/ioremap.o
2025-10-02T15:27:00.8328989Z CC ipc/mqueue.o
2025-10-02T15:27:00.8707405Z CC arch/x86/kernel/irq_64.o
2025-10-02T15:27:00.9425265Z CC fs/proc/kcore.o
2025-10-02T15:27:01.0608339Z CC mm/process_vm_access.o
2025-10-02T15:27:01.1524521Z CC kernel/time/timekeeping.o
2025-10-02T15:27:01.5373779Z CC arch/x86/kernel/dumpstack_64.o
2025-10-02T15:27:01.9698564Z CC mm/page_alloc.o
2025-10-02T15:27:02.1873758Z CC fs/proc/vmcore.o
2025-10-02T15:27:02.3693245Z CC arch/x86/kernel/time.o
2025-10-02T15:27:02.8579063Z CC kernel/time/ntp.o
2025-10-02T15:27:02.8945747Z CC arch/x86/kernel/ioport.o
2025-10-02T15:27:03.0904000Z CC ipc/namespace.o
2025-10-02T15:27:03.3561946Z CC fs/proc/kmsg.o
2025-10-02T15:27:03.5877875Z CC kernel/time/clocksource.o
2025-10-02T15:27:03.7829423Z CC fs/proc/page.o
2025-10-02T15:27:03.9602338Z CC ipc/mq_sysctl.o
2025-10-02T15:27:04.0566898Z CC arch/x86/kernel/dumpstack.o
2025-10-02T15:27:04.4231261Z AR ipc/built-in.a
2025-10-02T15:27:04.4520886Z CC fs/kernfs/mount.o
2025-10-02T15:27:04.7008539Z CC kernel/time/jiffies.o
2025-10-02T15:27:04.7605857Z CC fs/proc/bootconfig.o
2025-10-02T15:27:05.0439350Z CC arch/x86/kernel/nmi.o
2025-10-02T15:27:05.2777414Z AR fs/proc/built-in.a
2025-10-02T15:27:05.2949398Z CC kernel/time/timer_list.o
2025-10-02T15:27:05.3175365Z CC fs/kernfs/inode.o
2025-10-02T15:27:05.3321262Z AS arch/x86/crypto/blake2s-core.o
2025-10-02T15:27:05.4223537Z CC arch/x86/crypto/blake2s-glue.o
2025-10-02T15:27:05.8870381Z CC [M] arch/x86/crypto/glue_helper.o
2025-10-02T15:27:06.1367738Z CC arch/x86/kernel/ldt.o
2025-10-02T15:27:06.2190752Z CC fs/kernfs/dir.o
2025-10-02T15:27:06.2918093Z CC kernel/time/timeconv.o
2025-10-02T15:27:06.7857607Z AS [M] arch/x86/crypto/twofish-x86_64-asm_64.o
2025-10-02T15:27:06.8480055Z CC [M] arch/x86/crypto/twofish_glue.o
2025-10-02T15:27:06.8606409Z CC kernel/time/timecounter.o
2025-10-02T15:27:06.9552751Z CC kernel/time/alarmtimer.o
2025-10-02T15:27:07.4052103Z CC arch/x86/kernel/setup.o
2025-10-02T15:27:07.4306467Z AS [M] arch/x86/crypto/twofish-x86_64-asm_64-3way.o
2025-10-02T15:27:07.5061028Z CC [M] arch/x86/crypto/twofish_glue_3way.o
2025-10-02T15:27:07.5675644Z CC fs/kernfs/file.o
2025-10-02T15:27:07.7440918Z CC mm/shuffle.o
2025-10-02T15:27:08.1473152Z AS [M] arch/x86/crypto/twofish-avx-x86_64-asm_64.o
2025-10-02T15:27:08.3008630Z CC kernel/time/posix-timers.o
2025-10-02T15:27:08.3076524Z CC [M] arch/x86/crypto/twofish_avx_glue.o
2025-10-02T15:27:08.3918008Z CC mm/init-mm.o
2025-10-02T15:27:08.6569890Z CC fs/kernfs/symlink.o
2025-10-02T15:27:08.7918937Z CC arch/x86/kernel/x86_init.o
2025-10-02T15:27:08.8825699Z AS [M] arch/x86/crypto/serpent-sse2-x86_64-asm_64.o
2025-10-02T15:27:08.9785007Z CC [M] arch/x86/crypto/serpent_sse2_glue.o
2025-10-02T15:27:08.9854219Z CC mm/memblock.o
2025-10-02T15:27:09.2267171Z AR fs/kernfs/built-in.a
2025-10-02T15:27:09.2554497Z CC fs/sysfs/file.o
2025-10-02T15:27:09.5344913Z AS [M] arch/x86/crypto/serpent-avx-x86_64-asm_64.o
2025-10-02T15:27:09.5991567Z CC arch/x86/kernel/i8259.o
2025-10-02T15:27:09.6074551Z CC [M] arch/x86/crypto/serpent_avx_glue.o
2025-10-02T15:27:10.0896878Z AS [M] arch/x86/crypto/serpent-avx2-asm_64.o
2025-10-02T15:27:10.1224063Z CC fs/sysfs/dir.o
2025-10-02T15:27:10.1521384Z CC kernel/time/posix-cpu-timers.o
2025-10-02T15:27:10.1920104Z CC [M] arch/x86/crypto/serpent_avx2_glue.o
2025-10-02T15:27:10.3050752Z CC arch/x86/kernel/irqinit.o
2025-10-02T15:27:10.3898752Z CC mm/madvise.o
2025-10-02T15:27:10.6171820Z CC fs/sysfs/symlink.o
2025-10-02T15:27:10.8067195Z AS [M] arch/x86/crypto/des3_ede-asm_64.o
2025-10-02T15:27:10.9634836Z CC [M] arch/x86/crypto/des3_ede_glue.o
2025-10-02T15:27:11.1446925Z CC fs/sysfs/mount.o
2025-10-02T15:27:11.5108653Z CC arch/x86/kernel/jump_label.o
2025-10-02T15:27:11.5756048Z CC kernel/time/posix-clock.o
2025-10-02T15:27:11.7449303Z AS [M] arch/x86/crypto/camellia-x86_64-asm_64.o
2025-10-02T15:27:11.8558030Z CC fs/sysfs/group.o
2025-10-02T15:27:11.8732601Z CC [M] arch/x86/crypto/camellia_glue.o
2025-10-02T15:27:11.9976273Z CC mm/page_io.o
2025-10-02T15:27:12.2037512Z CC arch/x86/kernel/irq_work.o
2025-10-02T15:27:12.4662850Z AR fs/sysfs/built-in.a
2025-10-02T15:27:12.4952741Z CC fs/configfs/inode.o
2025-10-02T15:27:12.5292953Z CC kernel/time/itimer.o
2025-10-02T15:27:12.9153821Z AS [M] arch/x86/crypto/camellia-aesni-avx-asm_64.o
2025-10-02T15:27:13.0338336Z CC [M] arch/x86/crypto/camellia_aesni_avx_glue.o
2025-10-02T15:27:13.0887973Z CC mm/swap_state.o
2025-10-02T15:27:13.2640946Z CC fs/configfs/file.o
2025-10-02T15:27:13.4426511Z CC arch/x86/kernel/probe_roms.o
2025-10-02T15:27:13.4995757Z AS [M] arch/x86/crypto/camellia-aesni-avx2-asm_64.o
2025-10-02T15:27:13.5811021Z CC [M] arch/x86/crypto/camellia_aesni_avx2_glue.o
2025-10-02T15:27:13.6423001Z CC kernel/time/clockevents.o
2025-10-02T15:27:13.9743163Z CC fs/configfs/dir.o
2025-10-02T15:27:14.0189197Z AS [M] arch/x86/crypto/blowfish-x86_64-asm_64.o
2025-10-02T15:27:14.1195197Z CC arch/x86/kernel/sys_ia32.o
2025-10-02T15:27:14.1261244Z CC [M] arch/x86/crypto/blowfish_glue.o
2025-10-02T15:27:14.5986280Z CC kernel/time/tick-common.o
2025-10-02T15:27:14.7471369Z AS [M] arch/x86/crypto/cast5-avx-x86_64-asm_64.o
2025-10-02T15:27:14.8332914Z CC mm/swapfile.o
2025-10-02T15:27:14.9039197Z CC [M] arch/x86/crypto/cast5_avx_glue.o
2025-10-02T15:27:15.0166960Z CC arch/x86/kernel/sys_x86_64.o
2025-10-02T15:27:15.5325281Z CC fs/configfs/symlink.o
2025-10-02T15:27:15.6061604Z AS [M] arch/x86/crypto/cast6-avx-x86_64-asm_64.o
2025-10-02T15:27:15.6372812Z CC kernel/time/tick-broadcast.o
2025-10-02T15:27:15.8149737Z CC arch/x86/kernel/espfix_64.o
2025-10-02T15:27:15.8301309Z CC [M] arch/x86/crypto/cast6_avx_glue.o
2025-10-02T15:27:16.1975880Z CC fs/configfs/mount.o
2025-10-02T15:27:16.3009459Z AS [M] arch/x86/crypto/aegis128-aesni-asm.o
2025-10-02T15:27:16.3740675Z CC [M] arch/x86/crypto/aegis128-aesni-glue.o
2025-10-02T15:27:16.4843674Z CC kernel/time/tick-broadcast-hrtimer.o
2025-10-02T15:27:16.7648991Z CC fs/configfs/item.o
2025-10-02T15:27:16.8894629Z CC arch/x86/kernel/ksysfs.o
2025-10-02T15:27:17.0434283Z CC kernel/time/tick-oneshot.o
2025-10-02T15:27:17.1447573Z AS [M] arch/x86/crypto/chacha-avx2-x86_64.o
2025-10-02T15:27:17.2378417Z AS [M] arch/x86/crypto/chacha-ssse3-x86_64.o
2025-10-02T15:27:17.3165973Z CC [M] arch/x86/crypto/chacha_glue.o
2025-10-02T15:27:17.3245524Z AR fs/configfs/built-in.a
2025-10-02T15:27:17.3752927Z CC fs/devpts/inode.o
2025-10-02T15:27:17.5448826Z CC kernel/time/tick-sched.o
2025-10-02T15:27:17.7150231Z CC arch/x86/kernel/bootflag.o
2025-10-02T15:27:17.8775157Z AS [M] arch/x86/crypto/chacha-avx512vl-x86_64.o
2025-10-02T15:27:17.9213274Z AS [M] arch/x86/crypto/aesni-intel_asm.o
2025-10-02T15:27:17.9983365Z CC [M] arch/x86/crypto/aesni-intel_glue.o
2025-10-02T15:27:18.1899131Z CC mm/swap_slots.o
2025-10-02T15:27:18.3412938Z AR fs/devpts/built-in.a
2025-10-02T15:27:18.3647003Z CC arch/x86/kernel/e820.o
2025-10-02T15:27:18.3861705Z CC fs/ramfs/inode.o
2025-10-02T15:27:18.6710161Z CC kernel/time/vsyscall.o
2025-10-02T15:27:19.0856144Z CC mm/frontswap.o
2025-10-02T15:27:19.0980368Z AS [M] arch/x86/crypto/aesni-intel_avx-x86_64.o
2025-10-02T15:27:19.1251826Z CC kernel/time/timekeeping_debug.o
2025-10-02T15:27:19.2094832Z CC fs/ramfs/file-mmu.o
2025-10-02T15:27:19.4444999Z AS [M] arch/x86/crypto/aes_ctrby8_avx-x86_64.o
2025-10-02T15:27:19.5799731Z AS [M] arch/x86/crypto/sha1_avx2_x86_64_asm.o
2025-10-02T15:27:19.7076256Z AS [M] arch/x86/crypto/sha1_ssse3_asm.o
2025-10-02T15:27:19.7384001Z CC arch/x86/kernel/pci-dma.o
2025-10-02T15:27:19.7744629Z CC [M] arch/x86/crypto/sha1_ssse3_glue.o
2025-10-02T15:27:19.8380049Z AR fs/ramfs/built-in.a
2025-10-02T15:27:19.8393077Z CC kernel/time/namespace.o
2025-10-02T15:27:19.8670917Z CC fs/hugetlbfs/inode.o
2025-10-02T15:27:20.1751967Z CC mm/zswap.o
2025-10-02T15:27:20.4870801Z CC arch/x86/kernel/quirks.o
2025-10-02T15:27:20.6771023Z AS [M] arch/x86/crypto/sha1_ni_asm.o
2025-10-02T15:27:20.7730006Z AS [M] arch/x86/crypto/sha256-ssse3-asm.o
2025-10-02T15:27:20.8625613Z AS [M] arch/x86/crypto/sha256-avx-asm.o
2025-10-02T15:27:20.8683736Z AR kernel/time/built-in.a
2025-10-02T15:27:20.8992856Z CC kernel/futex/core.o
2025-10-02T15:27:20.9476663Z AS [M] arch/x86/crypto/sha256-avx2-asm.o
2025-10-02T15:27:21.0403493Z CC [M] arch/x86/crypto/sha256_ssse3_glue.o
2025-10-02T15:27:21.3222785Z AR fs/hugetlbfs/built-in.a
2025-10-02T15:27:21.3247307Z CC arch/x86/kernel/topology.o
2025-10-02T15:27:21.3749911Z CC fs/exportfs/expfs.o
2025-10-02T15:27:21.6309167Z CC mm/dmapool.o
2025-10-02T15:27:21.8596166Z AS [M] arch/x86/crypto/sha256_ni_asm.o
2025-10-02T15:27:21.8711906Z CC arch/x86/kernel/kdebugfs.o
2025-10-02T15:27:21.9456192Z AS [M] arch/x86/crypto/sha512-ssse3-asm.o
2025-10-02T15:27:22.0360927Z AS [M] arch/x86/crypto/sha512-avx-asm.o
2025-10-02T15:27:22.0467115Z AR fs/exportfs/built-in.a
2025-10-02T15:27:22.0787692Z CC fs/nls/nls_base.o
2025-10-02T15:27:22.1439394Z AS [M] arch/x86/crypto/sha512-avx2-asm.o
2025-10-02T15:27:22.2422566Z CC [M] arch/x86/crypto/sha512_ssse3_glue.o
2025-10-02T15:27:22.4881820Z CC arch/x86/kernel/alternative.o
2025-10-02T15:27:22.6102905Z CC mm/hugetlb.o
2025-10-02T15:27:22.6828091Z CC fs/nls/nls_cp437.o
2025-10-02T15:27:23.0473271Z CC [M] arch/x86/crypto/blake2s-shash.o
2025-10-02T15:27:23.1675538Z CC fs/nls/nls_ascii.o
2025-10-02T15:27:23.2566415Z AR kernel/futex/built-in.a
2025-10-02T15:27:23.3100389Z CC kernel/cgroup/cgroup.o
2025-10-02T15:27:23.5988363Z CC [M] fs/nls/nls_cp737.o
2025-10-02T15:27:23.6288364Z AS [M] arch/x86/crypto/ghash-clmulni-intel_asm.o
2025-10-02T15:27:23.7215417Z CC [M] arch/x86/crypto/ghash-clmulni-intel_glue.o
2025-10-02T15:27:24.0868882Z CC [M] fs/nls/nls_cp775.o
2025-10-02T15:27:24.1714444Z CC arch/x86/kernel/i8253.o
2025-10-02T15:27:24.4018841Z CC [M] arch/x86/crypto/crc32c-intel_glue.o
2025-10-02T15:27:24.5834358Z CC [M] fs/nls/nls_cp850.o
2025-10-02T15:27:24.6413630Z CC arch/x86/kernel/hw_breakpoint.o
2025-10-02T15:27:25.0170037Z AS [M] arch/x86/crypto/crc32c-pcl-intel-asm_64.o
2025-10-02T15:27:25.0868792Z AS [M] arch/x86/crypto/crc32-pclmul_asm.o
2025-10-02T15:27:25.1165422Z CC [M] fs/nls/nls_cp852.o
2025-10-02T15:27:25.1350457Z CC [M] arch/x86/crypto/crc32-pclmul_glue.o
2025-10-02T15:27:25.5669313Z CC [M] fs/nls/nls_cp855.o
2025-10-02T15:27:25.6142296Z CC arch/x86/kernel/tsc.o
2025-10-02T15:27:25.6299363Z AS [M] arch/x86/crypto/crct10dif-pcl-asm_64.o
2025-10-02T15:27:25.7185166Z CC [M] arch/x86/crypto/crct10dif-pclmul_glue.o
2025-10-02T15:27:26.0733424Z CC [M] fs/nls/nls_cp857.o
2025-10-02T15:27:26.3107777Z PERLASM arch/x86/crypto/poly1305-x86_64-cryptogams.S
2025-10-02T15:27:26.3799714Z CC [M] arch/x86/crypto/poly1305_glue.o
2025-10-02T15:27:26.5430259Z CC [M] fs/nls/nls_cp860.o
2025-10-02T15:27:26.7317816Z CC arch/x86/kernel/tsc_msr.o
2025-10-02T15:27:27.0008729Z CC [M] fs/nls/nls_cp861.o
2025-10-02T15:27:27.0686046Z AS [M] arch/x86/crypto/nh-sse2-x86_64.o
2025-10-02T15:27:27.1361180Z CC [M] arch/x86/crypto/nhpoly1305-sse2-glue.o
2025-10-02T15:27:27.1527014Z CC arch/x86/kernel/io_delay.o
2025-10-02T15:27:27.2788048Z CC mm/mempolicy.o
2025-10-02T15:27:27.4438748Z CC [M] fs/nls/nls_cp862.o
2025-10-02T15:27:27.5732203Z CC arch/x86/kernel/rtc.o
2025-10-02T15:27:27.6207639Z AS [M] arch/x86/crypto/nh-avx2-x86_64.o
2025-10-02T15:27:27.6618768Z CC [M] arch/x86/crypto/nhpoly1305-avx2-glue.o
2025-10-02T15:27:27.9743179Z CC [M] fs/nls/nls_cp863.o
2025-10-02T15:27:28.0388805Z CC [M] arch/x86/crypto/curve25519-x86_64.o
2025-10-02T15:27:28.4091843Z CC [M] fs/nls/nls_cp864.o
2025-10-02T15:27:28.4341146Z CC kernel/cgroup/rstat.o
2025-10-02T15:27:28.5001285Z CC arch/x86/kernel/pci-iommu_table.o
2025-10-02T15:27:28.7655659Z CC [M] fs/nls/nls_cp865.o
2025-10-02T15:27:28.9578894Z LD [M] arch/x86/crypto/twofish-x86_64.o
2025-10-02T15:27:28.9858723Z LD [M] arch/x86/crypto/twofish-x86_64-3way.o
2025-10-02T15:27:29.0087815Z LD [M] arch/x86/crypto/twofish-avx-x86_64.o
2025-10-02T15:27:29.0328044Z LD [M] arch/x86/crypto/serpent-sse2-x86_64.o
2025-10-02T15:27:29.0577140Z LD [M] arch/x86/crypto/serpent-avx-x86_64.o
2025-10-02T15:27:29.0855455Z LD [M] arch/x86/crypto/serpent-avx2.o
2025-10-02T15:27:29.1077360Z LD [M] arch/x86/crypto/des3_ede-x86_64.o
2025-10-02T15:27:29.1389293Z LD [M] arch/x86/crypto/camellia-x86_64.o
2025-10-02T15:27:29.1530688Z LD [M] arch/x86/crypto/camellia-aesni-avx-x86_64.o
2025-10-02T15:27:29.1693349Z LD [M] arch/x86/crypto/camellia-aesni-avx2.o
2025-10-02T15:27:29.1733455Z CC arch/x86/kernel/resource.o
2025-10-02T15:27:29.1821085Z LD [M] arch/x86/crypto/blowfish-x86_64.o
2025-10-02T15:27:29.1936437Z CC [M] fs/nls/nls_cp866.o
2025-10-02T15:27:29.1974904Z LD [M] arch/x86/crypto/cast5-avx-x86_64.o
2025-10-02T15:27:29.2103379Z LD [M] arch/x86/crypto/cast6-avx-x86_64.o
2025-10-02T15:27:29.2229286Z LD [M] arch/x86/crypto/aegis128-aesni.o
2025-10-02T15:27:29.2355803Z LD [M] arch/x86/crypto/chacha-x86_64.o
2025-10-02T15:27:29.2567440Z LD [M] arch/x86/crypto/aesni-intel.o
2025-10-02T15:27:29.2860831Z LD [M] arch/x86/crypto/sha1-ssse3.o
2025-10-02T15:27:29.2990775Z LD [M] arch/x86/crypto/sha256-ssse3.o
2025-10-02T15:27:29.3081222Z AS arch/x86/kernel/irqflags.o
2025-10-02T15:27:29.3235997Z LD [M] arch/x86/crypto/sha512-ssse3.o
2025-10-02T15:27:29.3324350Z CC kernel/cgroup/namespace.o
2025-10-02T15:27:29.3423255Z LD [M] arch/x86/crypto/blake2s-x86_64.o
2025-10-02T15:27:29.3561011Z LD [M] arch/x86/crypto/ghash-clmulni-intel.o
2025-10-02T15:27:29.3690150Z LD [M] arch/x86/crypto/crc32c-intel.o
2025-10-02T15:27:29.3813887Z LD [M] arch/x86/crypto/crc32-pclmul.o
2025-10-02T15:27:29.3862241Z CC arch/x86/kernel/static_call.o
2025-10-02T15:27:29.3991039Z LD [M] arch/x86/crypto/crct10dif-pclmul.o
2025-10-02T15:27:29.4239253Z AS [M] arch/x86/crypto/poly1305-x86_64-cryptogams.o
2025-10-02T15:27:29.5227168Z LD [M] arch/x86/crypto/nhpoly1305-sse2.o
2025-10-02T15:27:29.5348885Z LD [M] arch/x86/crypto/nhpoly1305-avx2.o
2025-10-02T15:27:29.5569356Z AR arch/x86/crypto/built-in.a
2025-10-02T15:27:29.6582156Z CC [M] fs/nls/nls_cp869.o
2025-10-02T15:27:29.7593786Z CC mm/sparse.o
2025-10-02T15:27:29.8014746Z LD [M] arch/x86/crypto/poly1305-x86_64.o
2025-10-02T15:27:29.8344317Z CC arch/x86/kernel/process.o
2025-10-02T15:27:29.8873109Z CC arch/x86/kernel/ptrace.o
2025-10-02T15:27:30.0385045Z CC [M] fs/nls/nls_cp874.o
2025-10-02T15:27:30.1303596Z CC kernel/cgroup/cgroup-v1.o
2025-10-02T15:27:30.4107983Z CC [M] fs/nls/nls_cp932.o
2025-10-02T15:27:31.0164369Z CC [M] fs/nls/nls_euc-jp.o
2025-10-02T15:27:31.0250334Z CC mm/sparse-vmemmap.o
2025-10-02T15:27:31.4007663Z SHIPPED fs/unicode/utf8data.h
2025-10-02T15:27:31.4123607Z CC fs/unicode/utf8-core.o
2025-10-02T15:27:31.5359298Z CC arch/x86/kernel/tls.o
2025-10-02T15:27:31.6188824Z CC [M] fs/nls/nls_cp936.o
2025-10-02T15:27:31.7760420Z CC kernel/cgroup/freezer.o
2025-10-02T15:27:31.8958383Z CC mm/mmu_notifier.o
2025-10-02T15:27:31.9435845Z CC fs/unicode/utf8-norm.o
2025-10-02T15:27:32.2012527Z CC [M] fs/nls/nls_cp949.o
2025-10-02T15:27:32.6400987Z AR fs/unicode/built-in.a
2025-10-02T15:27:32.6631680Z CC arch/x86/kernel/step.o
2025-10-02T15:27:32.6780311Z CC kernel/cgroup/legacy_freezer.o
2025-10-02T15:27:32.7689427Z CC [M] fs/nls/nls_cp950.o
2025-10-02T15:27:32.8731609Z CC [M] security/keys/trusted-keys/trusted_tpm1.o
2025-10-02T15:27:33.1213065Z CC mm/ksm.o
2025-10-02T15:27:33.2723539Z CC [M] fs/nls/nls_cp1250.o
2025-10-02T15:27:33.3000810Z CC arch/x86/kernel/i8237.o
2025-10-02T15:27:33.6190279Z CC kernel/cgroup/pids.o
2025-10-02T15:27:33.6765501Z CC [M] fs/nls/nls_cp1251.o
2025-10-02T15:27:33.7155634Z CC arch/x86/kernel/stacktrace.o
2025-10-02T15:27:34.1548773Z CC [M] fs/nls/nls_iso8859-1.o
2025-10-02T15:27:34.3634807Z CC arch/x86/kernel/reboot.o
2025-10-02T15:27:34.5667656Z CC [M] security/keys/trusted-keys/trusted_tpm2.o
2025-10-02T15:27:34.6111813Z CC [M] fs/nls/nls_iso8859-2.o
2025-10-02T15:27:34.6660477Z CC kernel/cgroup/rdma.o
2025-10-02T15:27:35.3198113Z CC arch/x86/kernel/msr.o
2025-10-02T15:27:35.3332064Z CC [M] fs/nls/nls_iso8859-3.o
2025-10-02T15:27:35.4142164Z LD [M] security/keys/trusted-keys/trusted.o
2025-10-02T15:27:35.4849295Z CC [M] security/keys/encrypted-keys/encrypted.o
2025-10-02T15:27:35.5737278Z CC kernel/cgroup/cpuset.o
2025-10-02T15:27:35.8434139Z CC [M] fs/nls/nls_iso8859-4.o
2025-10-02T15:27:35.9545519Z CC arch/x86/kernel/cpuid.o
2025-10-02T15:27:36.1076319Z CC mm/page_poison.o
2025-10-02T15:27:36.2536668Z CC [M] fs/nls/nls_iso8859-5.o
2025-10-02T15:27:36.6426246Z CC mm/slub.o
2025-10-02T15:27:36.6915081Z CC arch/x86/kernel/early-quirks.o
2025-10-02T15:27:36.7254990Z CC [M] fs/nls/nls_iso8859-6.o
2025-10-02T15:27:36.7394195Z CC [M] security/keys/encrypted-keys/ecryptfs_format.o
2025-10-02T15:27:36.9411394Z CC [M] security/keys/encrypted-keys/masterkey_trusted.o
2025-10-02T15:27:37.1623596Z CC [M] fs/nls/nls_iso8859-7.o
2025-10-02T15:27:37.5958669Z CC arch/x86/kernel/smp.o
2025-10-02T15:27:37.6782018Z CC [M] fs/nls/nls_cp1255.o
2025-10-02T15:27:37.6988444Z LD [M] security/keys/encrypted-keys/encrypted-keys.o
2025-10-02T15:27:37.7578034Z CC security/keys/gc.o
2025-10-02T15:27:38.0498268Z AR kernel/cgroup/built-in.a
2025-10-02T15:27:38.0859840Z CC kernel/trace/trace_clock.o
2025-10-02T15:27:38.1555256Z CC [M] fs/nls/nls_iso8859-9.o
2025-10-02T15:27:38.5545028Z CC kernel/trace/ftrace.o
2025-10-02T15:27:38.6210969Z CC [M] fs/nls/nls_iso8859-13.o
2025-10-02T15:27:38.6236192Z CC security/keys/key.o
2025-10-02T15:27:38.8769402Z CC arch/x86/kernel/smpboot.o
2025-10-02T15:27:39.0539818Z CC [M] fs/nls/nls_iso8859-14.o
2025-10-02T15:27:39.4472229Z CC [M] fs/nls/nls_iso8859-15.o
2025-10-02T15:27:39.9195579Z CC [M] fs/nls/nls_koi8-r.o
2025-10-02T15:27:40.0071227Z CC security/keys/keyring.o
2025-10-02T15:27:40.3743759Z CC [M] fs/nls/nls_koi8-u.o
2025-10-02T15:27:40.4730790Z CC arch/x86/kernel/tsc_sync.o
2025-10-02T15:27:40.9392307Z CC [M] fs/nls/nls_koi8-ru.o
2025-10-02T15:27:41.0729009Z CC arch/x86/kernel/setup_percpu.o
2025-10-02T15:27:41.3108032Z CC mm/memory_hotplug.o
2025-10-02T15:27:41.4573495Z CC [M] fs/nls/nls_utf8.o
2025-10-02T15:27:41.5118974Z CC security/keys/keyctl.o
2025-10-02T15:27:41.8565867Z CC arch/x86/kernel/mpparse.o
2025-10-02T15:27:41.9885041Z CC [M] fs/nls/mac-celtic.o
2025-10-02T15:27:42.5081685Z CC [M] fs/nls/mac-centeuro.o
2025-10-02T15:27:42.8324023Z CC kernel/trace/ring_buffer.o
2025-10-02T15:27:43.0266679Z CC arch/x86/kernel/ftrace.o
2025-10-02T15:27:43.0795741Z CC security/keys/permission.o
2025-10-02T15:27:43.0944434Z CC [M] fs/nls/mac-croatian.o
2025-10-02T15:27:43.1468043Z CC mm/migrate.o
2025-10-02T15:27:43.4940176Z CC [M] fs/nls/mac-cyrillic.o
2025-10-02T15:27:43.7565811Z CC security/keys/process_keys.o
2025-10-02T15:27:43.9191137Z AS arch/x86/kernel/ftrace_64.o
2025-10-02T15:27:43.9784288Z CC arch/x86/kernel/trace_clock.o
2025-10-02T15:27:43.9830826Z CC [M] fs/nls/mac-gaelic.o
2025-10-02T15:27:44.2603818Z CC arch/x86/kernel/crash_core_64.o
2025-10-02T15:27:44.4914463Z CC [M] fs/nls/mac-greek.o
2025-10-02T15:27:44.7111212Z CC security/keys/request_key.o
2025-10-02T15:27:44.8274022Z CC arch/x86/kernel/machine_kexec_64.o
2025-10-02T15:27:44.9568187Z CC [M] fs/nls/mac-iceland.o
2025-10-02T15:27:45.4057013Z CC [M] fs/nls/mac-inuit.o
2025-10-02T15:27:45.5928900Z CC kernel/trace/trace.o
2025-10-02T15:27:45.7382787Z CC security/keys/request_key_auth.o
2025-10-02T15:27:45.8390530Z CC [M] fs/nls/mac-romanian.o
2025-10-02T15:27:46.1266027Z AS arch/x86/kernel/relocate_kernel_64.o
2025-10-02T15:27:46.1820683Z CC arch/x86/kernel/crash.o
2025-10-02T15:27:46.3117283Z CC [M] fs/nls/mac-roman.o
2025-10-02T15:27:46.4121092Z CC security/keys/user_defined.o
2025-10-02T15:27:46.8142059Z CC [M] fs/nls/mac-turkish.o
2025-10-02T15:27:46.9563053Z CC arch/x86/kernel/kexec-bzimage64.o
2025-10-02T15:27:47.0294485Z CC security/keys/compat.o
2025-10-02T15:27:47.2165217Z CC mm/huge_memory.o
2025-10-02T15:27:47.2736881Z AR fs/nls/built-in.a
2025-10-02T15:27:47.6633035Z CC security/keys/compat_dh.o
2025-10-02T15:27:47.6770353Z CC fs/autofs/init.o
2025-10-02T15:27:48.0962019Z CC arch/x86/kernel/crash_dump_64.o
2025-10-02T15:27:48.2524113Z CC fs/autofs/inode.o
2025-10-02T15:27:48.3279350Z CC security/keys/proc.o
2025-10-02T15:27:48.8134886Z CC arch/x86/kernel/module.o
2025-10-02T15:27:49.1967974Z CC fs/autofs/root.o
2025-10-02T15:27:49.2172802Z CC security/keys/sysctl.o
2025-10-02T15:27:49.6225108Z CC arch/x86/kernel/early_printk.o
2025-10-02T15:27:49.9874911Z CC security/keys/persistent.o
2025-10-02T15:27:50.2010817Z CC fs/autofs/symlink.o
2025-10-02T15:27:50.2851671Z CC arch/x86/kernel/hpet.o
2025-10-02T15:27:50.6531321Z CC fs/autofs/waitq.o
2025-10-02T15:27:50.7095106Z CC security/keys/dh.o
2025-10-02T15:27:50.8094518Z CC kernel/trace/trace_output.o
2025-10-02T15:27:51.0192079Z CC mm/khugepaged.o
2025-10-02T15:27:51.4497897Z CC fs/autofs/expire.o
2025-10-02T15:27:51.5662843Z CC arch/x86/kernel/amd_nb.o
2025-10-02T15:27:51.7521375Z CC security/keys/keyctl_pkey.o
2025-10-02T15:27:52.2409807Z CC fs/autofs/dev-ioctl.o
2025-10-02T15:27:52.2574940Z CC kernel/trace/trace_seq.o
2025-10-02T15:27:52.6354520Z AR security/keys/built-in.a
2025-10-02T15:27:52.6701167Z CC arch/x86/kernel/kvm.o
2025-10-02T15:27:52.6910237Z GEN security/selinux/flask.h security/selinux/av_permissions.h
2025-10-02T15:27:52.7254535Z CC security/selinux/avc.o
2025-10-02T15:27:52.9494677Z CC kernel/trace/trace_stat.o
2025-10-02T15:27:52.9609249Z AR fs/autofs/built-in.a
2025-10-02T15:27:53.0183704Z CC fs/debugfs/inode.o
2025-10-02T15:27:53.8643677Z CC kernel/trace/trace_printk.o
2025-10-02T15:27:54.1302194Z CC arch/x86/kernel/kvmclock.o
2025-10-02T15:27:54.2211543Z CC mm/page_counter.o
2025-10-02T15:27:54.2245211Z CC fs/debugfs/file.o
2025-10-02T15:27:54.6303947Z CC mm/memcontrol.o
2025-10-02T15:27:54.6998243Z CC kernel/trace/tracing_map.o
2025-10-02T15:27:54.7746661Z CC security/selinux/hooks.o
2025-10-02T15:27:55.0741250Z CC arch/x86/kernel/paravirt.o
2025-10-02T15:27:55.4896239Z AR fs/debugfs/built-in.a
2025-10-02T15:27:55.5162988Z CC fs/tracefs/inode.o
2025-10-02T15:27:56.2318715Z CC kernel/trace/trace_sched_switch.o
2025-10-02T15:27:56.2703069Z CC arch/x86/kernel/paravirt_patch.o
2025-10-02T15:27:56.3611116Z AR fs/tracefs/built-in.a
2025-10-02T15:27:56.3895479Z CC fs/pstore/inode.o
2025-10-02T15:27:56.5281645Z CC arch/x86/kernel/paravirt-spinlocks.o
2025-10-02T15:27:56.8038320Z CC arch/x86/kernel/pvclock.o
2025-10-02T15:27:57.2403487Z CC kernel/trace/trace_functions.o
2025-10-02T15:27:57.4514722Z CC fs/pstore/platform.o
2025-10-02T15:27:57.5152819Z CC arch/x86/kernel/pmem.o
2025-10-02T15:27:57.9441187Z CC arch/x86/kernel/jailhouse.o
2025-10-02T15:27:58.2886846Z CC [M] fs/pstore/ram.o
2025-10-02T15:27:58.3973613Z CC kernel/trace/trace_sched_wakeup.o
2025-10-02T15:27:58.7845066Z CC arch/x86/kernel/pcspeaker.o
2025-10-02T15:27:59.1074867Z CC arch/x86/kernel/check.o
2025-10-02T15:27:59.1274848Z CC security/selinux/selinuxfs.o
2025-10-02T15:27:59.4899286Z CC [M] fs/pstore/ram_core.o
2025-10-02T15:27:59.7501305Z CC arch/x86/kernel/pci-swiotlb.o
2025-10-02T15:27:59.9533995Z CC kernel/trace/trace_hwlat.o
2025-10-02T15:28:00.1436549Z CC mm/vmpressure.o
2025-10-02T15:28:00.2703876Z AR fs/pstore/built-in.a
2025-10-02T15:28:00.2822787Z LD [M] fs/pstore/ramoops.o
2025-10-02T15:28:00.3312001Z CC fs/efivarfs/inode.o
2025-10-02T15:28:00.6083739Z CC arch/x86/kernel/uprobes.o
2025-10-02T15:28:00.9877179Z CC fs/efivarfs/file.o
2025-10-02T15:28:01.0192194Z CC kernel/trace/trace_nop.o
2025-10-02T15:28:01.0586960Z CC mm/swap_cgroup.o
2025-10-02T15:28:01.2512072Z CC security/selinux/netlink.o
2025-10-02T15:28:01.6580434Z CC arch/x86/kernel/sysfb.o
2025-10-02T15:28:01.6760663Z CC kernel/trace/trace_stack.o
2025-10-02T15:28:01.7958699Z CC fs/efivarfs/super.o
2025-10-02T15:28:01.9368989Z CC security/selinux/nlmsgtab.o
2025-10-02T15:28:01.9769301Z CC mm/hugetlb_cgroup.o
2025-10-02T15:28:02.3214735Z CC arch/x86/kernel/sysfb_efi.o
2025-10-02T15:28:02.6572245Z CC kernel/trace/trace_mmiotrace.o
2025-10-02T15:28:02.7142940Z AR fs/efivarfs/built-in.a
2025-10-02T15:28:02.7428397Z CC [M] fs/dlm/ast.o
2025-10-02T15:28:03.1200860Z CC mm/memory-failure.o
2025-10-02T15:28:03.1515022Z CC security/selinux/netif.o
2025-10-02T15:28:03.2607286Z CC arch/x86/kernel/perf_regs.o
2025-10-02T15:28:03.4063446Z CC [M] fs/dlm/config.o
2025-10-02T15:28:03.6991040Z CC kernel/trace/trace_functions_graph.o
2025-10-02T15:28:04.0587090Z CC arch/x86/kernel/tracepoint.o
2025-10-02T15:28:04.4851380Z CC security/selinux/netnode.o
2025-10-02T15:28:04.5630882Z CC arch/x86/kernel/itmt.o
2025-10-02T15:28:05.0189905Z CC kernel/trace/blktrace.o
2025-10-02T15:28:05.1243388Z CC arch/x86/kernel/umip.o
2025-10-02T15:28:05.1916901Z CC mm/rodata_test.o
2025-10-02T15:28:05.3275744Z CC [M] fs/dlm/dir.o
2025-10-02T15:28:05.4930420Z CC mm/cleancache.o
2025-10-02T15:28:05.7282445Z CC security/selinux/netport.o
2025-10-02T15:28:06.1447543Z CC mm/page_isolation.o
2025-10-02T15:28:06.1570705Z CC [M] fs/dlm/lock.o
2025-10-02T15:28:06.2190096Z CC arch/x86/kernel/unwind_orc.o
2025-10-02T15:28:06.9387114Z CC kernel/trace/fgraph.o
2025-10-02T15:28:07.0565446Z CC security/selinux/status.o
2025-10-02T15:28:07.1914485Z CC mm/zpool.o
2025-10-02T15:28:07.2641421Z CC arch/x86/kernel/sev-es.o
2025-10-02T15:28:07.9127670Z CC mm/zbud.o
2025-10-02T15:28:08.1024795Z CC kernel/trace/trace_events.o
2025-10-02T15:28:08.2824790Z CC security/selinux/ss/ebitmap.o
2025-10-02T15:28:08.8829149Z CC arch/x86/kernel/cc_platform.o
2025-10-02T15:28:08.9292551Z CC mm/zsmalloc.o
2025-10-02T15:28:09.1655133Z CC arch/x86/kernel/audit_64.o
2025-10-02T15:28:09.6243041Z CC security/selinux/ss/hashtab.o
2025-10-02T15:28:09.7335223Z CC arch/x86/kernel/mmconf-fam10h_64.o
2025-10-02T15:28:10.3356678Z CC security/selinux/ss/symtab.o
2025-10-02T15:28:10.4294673Z CC kernel/trace/trace_export.o
2025-10-02T15:28:10.5290937Z CC [M] fs/dlm/lockspace.o
2025-10-02T15:28:10.5311260Z CC arch/x86/kernel/vsmp_64.o
2025-10-02T15:28:10.8430551Z CC security/selinux/ss/sidtab.o
2025-10-02T15:28:10.8509406Z CC mm/z3fold.o
2025-10-02T15:28:10.9355672Z AR arch/x86/kernel/built-in.a
2025-10-02T15:28:10.9810672Z CC arch/x86/ia32/ia32_signal.o
2025-10-02T15:28:11.1561640Z CC kernel/trace/trace_syscalls.o
2025-10-02T15:28:11.5491824Z CC [M] fs/dlm/main.o
2025-10-02T15:28:11.9433319Z CC arch/x86/ia32/audit.o
2025-10-02T15:28:12.1178722Z AR arch/x86/ia32/built-in.a
2025-10-02T15:28:12.2033357Z AR arch/x86/platform/atom/built-in.a
2025-10-02T15:28:12.2482165Z CC [M] fs/dlm/member.o
2025-10-02T15:28:12.2654453Z AR arch/x86/platform/ce4100/built-in.a
2025-10-02T15:28:12.3005067Z CC arch/x86/platform/efi/memmap.o
2025-10-02T15:28:12.3558026Z CC security/selinux/ss/avtab.o
2025-10-02T15:28:12.5782076Z CC kernel/trace/trace_event_perf.o
2025-10-02T15:28:12.6459801Z CC mm/early_ioremap.o
2025-10-02T15:28:13.2473046Z CC [M] fs/dlm/memory.o
2025-10-02T15:28:13.2824334Z CC arch/x86/platform/efi/quirks.o
2025-10-02T15:28:13.5135106Z CC mm/cma.o
2025-10-02T15:28:13.5585650Z CC kernel/trace/trace_events_filter.o
2025-10-02T15:28:13.6800179Z CC security/selinux/ss/policydb.o
2025-10-02T15:28:13.7961266Z CC [M] fs/dlm/midcomms.o
2025-10-02T15:28:14.2746380Z CC arch/x86/platform/efi/efi.o
2025-10-02T15:28:14.3647303Z CC [M] fs/dlm/netlink.o
2025-10-02T15:28:14.6609780Z CC mm/balloon_compaction.o
2025-10-02T15:28:15.1915223Z CC [M] fs/dlm/lowcomms.o
2025-10-02T15:28:15.3904479Z CC kernel/trace/trace_events_trigger.o
2025-10-02T15:28:15.5160787Z CC mm/cma_debug.o
2025-10-02T15:28:15.5785452Z CC arch/x86/platform/efi/efi_64.o
2025-10-02T15:28:16.2740541Z CC mm/userfaultfd.o
2025-10-02T15:28:16.8236848Z CC kernel/trace/trace_events_synth.o
2025-10-02T15:28:16.8963286Z CC security/selinux/ss/services.o
2025-10-02T15:28:17.2117595Z AS arch/x86/platform/efi/efi_stub_64.o
2025-10-02T15:28:17.2810725Z CC [M] fs/dlm/plock.o
2025-10-02T15:28:17.2886281Z AS arch/x86/platform/efi/efi_thunk_64.o
2025-10-02T15:28:17.3458870Z kernel/trace/trace_events_synth.c: In function ‘synth_event_reg’:
2025-10-02T15:28:17.3460218Z AR arch/x86/platform/efi/built-in.a
2025-10-02T15:28:17.3477000Z kernel/trace/trace_events_synth.c:847:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
2025-10-02T15:28:17.3511666Z 847 | int ret = trace_event_reg(call, type, data);
2025-10-02T15:28:17.3513326Z | ^~~
2025-10-02T15:28:17.3733039Z AR arch/x86/platform/geode/built-in.a
2025-10-02T15:28:17.4108187Z AR arch/x86/platform/goldfish/built-in.a
2025-10-02T15:28:17.4470421Z AR arch/x86/platform/iris/built-in.a
2025-10-02T15:28:17.5215903Z CC arch/x86/platform/intel/iosf_mbi.o
2025-10-02T15:28:17.8282812Z CC mm/frame_vector.o
2025-10-02T15:28:18.1892868Z CC [M] fs/dlm/rcom.o
2025-10-02T15:28:18.4441118Z CC kernel/trace/trace_events_hist.o
2025-10-02T15:28:18.5160231Z AR arch/x86/platform/intel/built-in.a
2025-10-02T15:28:18.5407171Z CC mm/usercopy.o
2025-10-02T15:28:18.5624293Z AR arch/x86/platform/intel-mid/built-in.a
2025-10-02T15:28:18.6135844Z AR arch/x86/platform/intel-quark/built-in.a
2025-10-02T15:28:18.6699307Z AR arch/x86/platform/olpc/built-in.a
2025-10-02T15:28:18.7521774Z AR arch/x86/platform/scx200/built-in.a
2025-10-02T15:28:18.7989402Z AR arch/x86/platform/sfi/built-in.a
2025-10-02T15:28:18.8364958Z AR arch/x86/platform/ts5500/built-in.a
2025-10-02T15:28:18.8749037Z AR arch/x86/platform/uv/built-in.a
2025-10-02T15:28:18.8977041Z AR arch/x86/platform/built-in.a
2025-10-02T15:28:18.9550355Z CC arch/x86/net/bpf_jit_comp.o
2025-10-02T15:28:19.1230238Z CC [M] fs/dlm/recover.o
2025-10-02T15:28:19.2227795Z CC mm/memremap.o
2025-10-02T15:28:19.8095150Z CC security/selinux/ss/conditional.o
2025-10-02T15:28:20.0570344Z CC [M] fs/dlm/recoverd.o
2025-10-02T15:28:20.3829204Z CC mm/hmm.o
2025-10-02T15:28:20.7130950Z CC [M] fs/dlm/requestqueue.o
2025-10-02T15:28:21.2464331Z CC security/selinux/ss/mls.o
2025-10-02T15:28:21.2998174Z CC [M] fs/dlm/user.o
2025-10-02T15:28:21.6743891Z AR arch/x86/net/built-in.a
2025-10-02T15:28:21.7268270Z CC arch/x86/purgatory/purgatory.o
2025-10-02T15:28:21.9434893Z CC mm/memfd.o
2025-10-02T15:28:21.9443383Z AS arch/x86/purgatory/stack.o
2025-10-02T15:28:22.0260156Z AS arch/x86/purgatory/setup-x86_64.o
2025-10-02T15:28:22.1135097Z CC arch/x86/purgatory/sha256.o
2025-10-02T15:28:22.3441202Z CC [M] fs/dlm/util.o
2025-10-02T15:28:22.5721934Z CC security/selinux/ss/context.o
2025-10-02T15:28:22.7614524Z CC [M] fs/dlm/debug_fs.o
2025-10-02T15:28:22.8869964Z CC mm/mapping_dirty_helpers.o
2025-10-02T15:28:23.1630821Z AS arch/x86/purgatory/entry64.o
2025-10-02T15:28:23.2555538Z CC arch/x86/purgatory/string.o
2025-10-02T15:28:23.5590167Z LD arch/x86/purgatory/purgatory.ro
2025-10-02T15:28:23.5775755Z LD arch/x86/purgatory/purgatory.chk
2025-10-02T15:28:23.6005966Z BIN2C arch/x86/purgatory/kexec-purgatory.c
2025-10-02T15:28:23.6205790Z CC arch/x86/purgatory/kexec-purgatory.o
2025-10-02T15:28:23.6770171Z CC security/selinux/xfrm.o
2025-10-02T15:28:23.6797168Z AR arch/x86/purgatory/built-in.a
2025-10-02T15:28:23.7060569Z CC [M] arch/x86/kvm/../../../virt/kvm/kvm_main.o
2025-10-02T15:28:23.7102478Z LD [M] fs/dlm/dlm.o
2025-10-02T15:28:23.7311745Z CC mm/ptdump.o
2025-10-02T15:28:23.8225987Z CC kernel/trace/bpf_trace.o
2025-10-02T15:28:23.8774624Z CC [M] fs/fscache/cache.o
2025-10-02T15:28:24.3365826Z CC mm/page_reporting.o
2025-10-02T15:28:25.0229230Z CC [M] fs/fscache/cookie.o
2025-10-02T15:28:25.1771820Z CC security/selinux/netlabel.o
2025-10-02T15:28:25.1808171Z CC [M] mm/hwpoison-inject.o
2025-10-02T15:28:26.0918988Z AR mm/built-in.a
2025-10-02T15:28:26.2008326Z CC kernel/trace/trace_kprobe.o
2025-10-02T15:28:26.2866080Z CC kernel/bpf/core.o
2025-10-02T15:28:26.4941172Z CC [M] fs/fscache/fsdef.o
2025-10-02T15:28:26.9391889Z CC security/selinux/ibpkey.o
2025-10-02T15:28:27.0649662Z CC [M] fs/fscache/main.o
2025-10-02T15:28:28.3125215Z AR security/selinux/built-in.a
2025-10-02T15:28:28.3733414Z CC security/smack/smack_lsm.o
2025-10-02T15:28:28.4027509Z CC kernel/trace/power-traces.o
2025-10-02T15:28:28.4044626Z CC [M] arch/x86/kvm/../../../virt/kvm/coalesced_mmio.o
2025-10-02T15:28:28.7673260Z CC [M] fs/fscache/netfs.o
2025-10-02T15:28:28.9215943Z CC kernel/bpf/syscall.o
2025-10-02T15:28:29.5145892Z CC [M] arch/x86/kvm/../../../virt/kvm/eventfd.o
2025-10-02T15:28:29.6743331Z CC [M] fs/fscache/object.o
2025-10-02T15:28:30.1823695Z CC kernel/trace/rpm-traces.o
2025-10-02T15:28:30.7137878Z CC [M] fs/fscache/operation.o
2025-10-02T15:28:31.0015368Z CC [M] arch/x86/kvm/../../../virt/kvm/irqchip.o
2025-10-02T15:28:31.2463586Z CC kernel/trace/trace_dynevent.o
2025-10-02T15:28:31.3616072Z CC security/smack/smack_access.o
2025-10-02T15:28:31.8465322Z CC [M] fs/fscache/page.o
2025-10-02T15:28:32.1046112Z CC [M] arch/x86/kvm/../../../virt/kvm/vfio.o
2025-10-02T15:28:32.1737949Z CC kernel/trace/trace_probe.o
2025-10-02T15:28:32.6936334Z CC kernel/bpf/verifier.o
2025-10-02T15:28:32.8553636Z CC security/smack/smackfs.o
2025-10-02T15:28:33.1509816Z CC [M] arch/x86/kvm/../../../virt/kvm/async_pf.o
2025-10-02T15:28:33.8478851Z CC [M] fs/fscache/proc.o
2025-10-02T15:28:33.8698374Z CC kernel/trace/trace_uprobe.o
2025-10-02T15:28:34.1622111Z CC [M] arch/x86/kvm/x86.o
2025-10-02T15:28:34.6418515Z CC [M] fs/fscache/stats.o
2025-10-02T15:28:34.9372548Z CC security/smack/smack_netfilter.o
2025-10-02T15:28:35.3957145Z CC [M] fs/fscache/object-list.o
2025-10-02T15:28:35.9334672Z CC kernel/trace/trace_boot.o
2025-10-02T15:28:36.2336600Z AR security/smack/built-in.a
2025-10-02T15:28:36.2591059Z LD [M] fs/fscache/fscache.o
2025-10-02T15:28:36.2927211Z CC security/tomoyo/audit.o
2025-10-02T15:28:36.3453445Z CC [M] fs/reiserfs/bitmap.o
2025-10-02T15:28:36.7727638Z AR kernel/trace/built-in.a
2025-10-02T15:28:36.7896980Z POLICY security/tomoyo/builtin-policy.h
2025-10-02T15:28:37.0246041Z CC crypto/asymmetric_keys/asymmetric_type.o
2025-10-02T15:28:37.9028652Z CC [M] fs/reiserfs/do_balan.o
2025-10-02T15:28:37.9125857Z CC security/tomoyo/condition.o
2025-10-02T15:28:37.9310613Z CC crypto/asymmetric_keys/restrict.o
2025-10-02T15:28:38.4990653Z CC crypto/asymmetric_keys/signature.o
2025-10-02T15:28:39.2419302Z CC crypto/asymmetric_keys/public_key.o
2025-10-02T15:28:39.2730230Z CC [M] fs/reiserfs/namei.o
2025-10-02T15:28:39.7554922Z CC security/tomoyo/domain.o
2025-10-02T15:28:40.1906609Z ASN.1 crypto/asymmetric_keys/x509.asn1.[ch]
2025-10-02T15:28:40.2038555Z ASN.1 crypto/asymmetric_keys/x509_akid.asn1.[ch]
2025-10-02T15:28:40.2192948Z CC crypto/asymmetric_keys/x509_public_key.o
2025-10-02T15:28:40.6714719Z CC kernel/bpf/inode.o
2025-10-02T15:28:40.7112312Z CC [M] fs/reiserfs/inode.o
2025-10-02T15:28:40.9281395Z ASN.1 crypto/asymmetric_keys/pkcs7.asn1.[ch]
2025-10-02T15:28:40.9420678Z CC crypto/asymmetric_keys/pkcs7_trust.o
2025-10-02T15:28:41.3922650Z CC crypto/asymmetric_keys/pkcs7_verify.o
2025-10-02T15:28:41.4662294Z CC security/tomoyo/environ.o
2025-10-02T15:28:42.0230567Z CC kernel/bpf/helpers.o
2025-10-02T15:28:42.0635964Z CC crypto/asymmetric_keys/verify_pefile.o
2025-10-02T15:28:42.7005484Z CC security/tomoyo/file.o
2025-10-02T15:28:42.8609379Z ASN.1 crypto/asymmetric_keys/mscode.asn1.[ch]
2025-10-02T15:28:42.8739021Z CC [M] crypto/asymmetric_keys/asym_tpm.o
2025-10-02T15:28:43.5178172Z CC [M] fs/reiserfs/file.o
2025-10-02T15:28:43.5498022Z CC kernel/bpf/tnum.o
2025-10-02T15:28:43.8162855Z CC kernel/bpf/bpf_iter.o
2025-10-02T15:28:44.1467706Z ASN.1 crypto/asymmetric_keys/pkcs8.asn1.[ch]
2025-10-02T15:28:44.1614806Z ASN.1 crypto/asymmetric_keys/tpm.asn1.[ch]
2025-10-02T15:28:44.1750304Z CC [M] crypto/asymmetric_keys/pkcs8.asn1.o
2025-10-02T15:28:44.1817274Z CC security/tomoyo/gc.o
2025-10-02T15:28:44.3162798Z CC [M] crypto/asymmetric_keys/pkcs8_parser.o
2025-10-02T15:28:44.7331271Z CC [M] fs/reiserfs/dir.o
2025-10-02T15:28:44.8763072Z CC [M] arch/x86/kvm/emulate.o
2025-10-02T15:28:44.9530681Z CC [M] crypto/asymmetric_keys/tpm.asn1.o
2025-10-02T15:28:45.0244531Z CC kernel/bpf/map_iter.o
2025-10-02T15:28:45.0913081Z CC [M] crypto/asymmetric_keys/tpm_parser.o
2025-10-02T15:28:45.4027662Z CC [M] fs/reiserfs/fix_node.o
2025-10-02T15:28:45.5233091Z CC security/tomoyo/group.o
2025-10-02T15:28:45.8092114Z CC crypto/asymmetric_keys/x509.asn1.o
2025-10-02T15:28:45.8779923Z CC crypto/asymmetric_keys/x509_akid.asn1.o
2025-10-02T15:28:45.9666061Z CC crypto/asymmetric_keys/x509_cert_parser.o
2025-10-02T15:28:45.9826155Z CC kernel/bpf/task_iter.o
2025-10-02T15:28:46.7492646Z CC crypto/asymmetric_keys/pkcs7.asn1.o
2025-10-02T15:28:46.7883695Z CC security/tomoyo/load_policy.o
2025-10-02T15:28:46.8153841Z CC crypto/asymmetric_keys/pkcs7_parser.o
2025-10-02T15:28:47.1908523Z CC kernel/bpf/prog_iter.o
2025-10-02T15:28:47.2991109Z CC [M] fs/reiserfs/super.o
2025-10-02T15:28:47.4567783Z CC crypto/asymmetric_keys/mscode_parser.o
2025-10-02T15:28:47.8234194Z CC crypto/asymmetric_keys/mscode.asn1.o
2025-10-02T15:28:47.8985984Z LD [M] crypto/asymmetric_keys/pkcs8_key_parser.o
2025-10-02T15:28:47.9172816Z LD [M] crypto/asymmetric_keys/tpm_key_parser.o
2025-10-02T15:28:47.9321915Z AR crypto/asymmetric_keys/built-in.a
2025-10-02T15:28:47.9580558Z CC security/tomoyo/memory.o
2025-10-02T15:28:48.0079375Z CC [M] crypto/async_tx/async_tx.o
2025-10-02T15:28:48.1445660Z CC kernel/bpf/hashtab.o
2025-10-02T15:28:48.7236471Z CC [M] crypto/async_tx/async_memcpy.o
2025-10-02T15:28:48.7791035Z CC [M] arch/x86/kvm/i8259.o
2025-10-02T15:28:49.2284581Z CC [M] fs/reiserfs/prints.o
2025-10-02T15:28:49.3587823Z CC [M] crypto/async_tx/async_xor.o
2025-10-02T15:28:49.4760665Z CC security/tomoyo/mount.o
2025-10-02T15:28:50.0825491Z CC [M] arch/x86/kvm/irq.o
2025-10-02T15:28:50.2575750Z CC [M] crypto/async_tx/async_pq.o
2025-10-02T15:28:50.2762983Z CC kernel/bpf/arraymap.o
2025-10-02T15:28:50.5091325Z CC [M] fs/reiserfs/objectid.o
2025-10-02T15:28:50.7222305Z CC security/tomoyo/network.o
2025-10-02T15:28:51.0648688Z CC [M] fs/reiserfs/lbalance.o
2025-10-02T15:28:51.0729800Z CC [M] arch/x86/kvm/lapic.o
2025-10-02T15:28:51.4563857Z CC [M] crypto/async_tx/async_raid6_recov.o
2025-10-02T15:28:52.1253750Z CC security/tomoyo/realpath.o
2025-10-02T15:28:52.1760290Z CC kernel/bpf/percpu_freelist.o
2025-10-02T15:28:52.2497793Z CC [M] fs/reiserfs/ibalance.o
2025-10-02T15:28:52.5048102Z CC [M] crypto/async_tx/raid6test.o
2025-10-02T15:28:52.6409649Z CC kernel/bpf/bpf_lru_list.o
2025-10-02T15:28:53.1919157Z CC kernel/bpf/lpm_trie.o
2025-10-02T15:28:53.3956400Z CC security/tomoyo/securityfs_if.o
2025-10-02T15:28:53.4089334Z CC [M] fs/reiserfs/stree.o
2025-10-02T15:28:53.4643190Z CC crypto/api.o
2025-10-02T15:28:53.8210880Z CC [M] arch/x86/kvm/i8254.o
2025-10-02T15:28:54.2562229Z CC crypto/cipher.o
2025-10-02T15:28:54.5014907Z CC kernel/bpf/map_in_map.o
2025-10-02T15:28:54.7090082Z CC security/tomoyo/tomoyo.o
2025-10-02T15:28:54.9861736Z CC crypto/compress.o
2025-10-02T15:28:55.0689748Z CC kernel/bpf/local_storage.o
2025-10-02T15:28:55.2112905Z CC [M] arch/x86/kvm/ioapic.o
2025-10-02T15:28:55.4416339Z CC crypto/algapi.o
2025-10-02T15:28:55.4960759Z CC [M] fs/reiserfs/hashes.o
2025-10-02T15:28:55.8271913Z CC security/tomoyo/util.o
2025-10-02T15:28:56.3187306Z CC kernel/bpf/queue_stack_maps.o
2025-10-02T15:28:56.3391188Z CC [M] fs/reiserfs/tail_conversion.o
2025-10-02T15:28:56.4843902Z CC [M] arch/x86/kvm/irq_comm.o
2025-10-02T15:28:57.1318885Z CC kernel/bpf/ringbuf.o
2025-10-02T15:28:57.2021232Z CC crypto/scatterwalk.o
2025-10-02T15:28:57.3498047Z CC [M] fs/reiserfs/journal.o
2025-10-02T15:28:57.3667901Z CC security/tomoyo/common.o
2025-10-02T15:28:57.5847555Z CC [M] arch/x86/kvm/cpuid.o
2025-10-02T15:28:57.8831326Z CC crypto/proc.o
2025-10-02T15:28:58.2774338Z CC kernel/bpf/bpf_inode_storage.o
2025-10-02T15:28:58.4805669Z CC crypto/aead.o
2025-10-02T15:28:59.3898069Z CC crypto/geniv.o
2025-10-02T15:28:59.5295788Z CC kernel/bpf/disasm.o
2025-10-02T15:28:59.6810746Z CC [M] arch/x86/kvm/pmu.o
2025-10-02T15:29:00.2141389Z CC kernel/bpf/trampoline.o
2025-10-02T15:29:00.3138458Z AR security/tomoyo/built-in.a
2025-10-02T15:29:00.3620142Z CC security/apparmor/apparmorfs.o
2025-10-02T15:29:00.3920330Z CC [M] fs/reiserfs/resize.o
2025-10-02T15:29:00.4289313Z CC crypto/skcipher.o
2025-10-02T15:29:00.7148338Z CC [M] arch/x86/kvm/mtrr.o
2025-10-02T15:29:01.3921737Z CC [M] fs/reiserfs/item_ops.o
2025-10-02T15:29:01.4815329Z CC kernel/bpf/btf.o
2025-10-02T15:29:01.8011352Z CC [M] arch/x86/kvm/hyperv.o
2025-10-02T15:29:02.0067634Z CC crypto/ahash.o
2025-10-02T15:29:02.4373228Z CC [M] fs/reiserfs/ioctl.o
2025-10-02T15:29:03.2560650Z CC crypto/shash.o
2025-10-02T15:29:03.3097251Z CC [M] fs/reiserfs/xattr.o
2025-10-02T15:29:03.4641687Z CC security/apparmor/audit.o
2025-10-02T15:29:04.1733206Z CC [M] arch/x86/kvm/debugfs.o
2025-10-02T15:29:04.4210594Z CC crypto/akcipher.o
2025-10-02T15:29:04.6622005Z CC [M] fs/reiserfs/lock.o
2025-10-02T15:29:04.7442733Z GEN security/apparmor/capability_names.h
2025-10-02T15:29:04.7775974Z CC security/apparmor/task.o
2025-10-02T15:29:05.0483643Z CC [M] arch/x86/kvm/mmu/mmu.o
2025-10-02T15:29:05.1725384Z CC kernel/bpf/dispatcher.o
2025-10-02T15:29:05.4004534Z CC crypto/kpp.o
2025-10-02T15:29:05.4186494Z CC [M] fs/reiserfs/procfs.o
2025-10-02T15:29:06.1348738Z CC crypto/dh.o
2025-10-02T15:29:06.1483714Z CC kernel/bpf/devmap.o
2025-10-02T15:29:06.2295179Z CC security/apparmor/ipc.o
2025-10-02T15:29:06.3583453Z CC [M] fs/reiserfs/xattr_user.o
2025-10-02T15:29:06.9484096Z CC crypto/dh_helper.o
2025-10-02T15:29:07.0795308Z CC [M] fs/reiserfs/xattr_trusted.o
2025-10-02T15:29:07.3751654Z ASN.1 crypto/rsapubkey.asn1.[ch]
2025-10-02T15:29:07.3921143Z ASN.1 crypto/rsaprivkey.asn1.[ch]
2025-10-02T15:29:07.4119257Z CC crypto/rsa.o
2025-10-02T15:29:07.5099780Z CC security/apparmor/lib.o
2025-10-02T15:29:07.6437264Z CC kernel/bpf/cpumap.o
2025-10-02T15:29:07.6920524Z CC [M] fs/reiserfs/xattr_security.o
2025-10-02T15:29:08.1271611Z CC crypto/rsa_helper.o
2025-10-02T15:29:08.3615674Z CC crypto/rsa-pkcs1pad.o
2025-10-02T15:29:08.4384550Z CC [M] fs/reiserfs/xattr_acl.o
2025-10-02T15:29:08.9937357Z CC security/apparmor/match.o
2025-10-02T15:29:09.2196263Z CC kernel/bpf/bpf_local_storage.o
2025-10-02T15:29:09.4375325Z LD [M] fs/reiserfs/reiserfs.o
2025-10-02T15:29:09.4608920Z CC crypto/acompress.o
2025-10-02T15:29:09.5774339Z CC [M] fs/ext4/balloc.o
2025-10-02T15:29:09.9843906Z CC security/apparmor/path.o
2025-10-02T15:29:10.3910937Z CC crypto/scompress.o
2025-10-02T15:29:10.6410594Z CC kernel/bpf/offload.o
2025-10-02T15:29:11.2891113Z CC security/apparmor/domain.o
2025-10-02T15:29:11.3491831Z CC crypto/algboss.o
2025-10-02T15:29:11.3669992Z CC [M] fs/ext4/bitmap.o
2025-10-02T15:29:12.1246351Z CC kernel/bpf/net_namespace.o
2025-10-02T15:29:12.2881068Z CC [M] fs/ext4/block_validity.o
2025-10-02T15:29:12.4702282Z CC crypto/testmgr.o
2025-10-02T15:29:12.5331558Z CC [M] arch/x86/kvm/mmu/page_track.o
2025-10-02T15:29:13.0915450Z CC crypto/hmac.o
2025-10-02T15:29:13.2205837Z CC kernel/bpf/stackmap.o
2025-10-02T15:29:13.3631175Z CC [M] fs/ext4/dir.o
2025-10-02T15:29:13.5563455Z CC [M] arch/x86/kvm/mmu/spte.o
2025-10-02T15:29:13.8724922Z CC crypto/crypto_null.o
2025-10-02T15:29:14.3256522Z CC crypto/md5.o
2025-10-02T15:29:14.6177323Z CC [M] arch/x86/kvm/mmu/tdp_iter.o
2025-10-02T15:29:14.6518090Z CC kernel/bpf/cgroup.o
2025-10-02T15:29:14.6999862Z CC [M] fs/ext4/ext4_jbd2.o
2025-10-02T15:29:14.7203102Z CC security/apparmor/policy.o
2025-10-02T15:29:14.9903102Z CC crypto/sha1_generic.o
2025-10-02T15:29:15.7089778Z CC [M] arch/x86/kvm/mmu/tdp_mmu.o
2025-10-02T15:29:15.8005739Z CC crypto/sha256_generic.o
2025-10-02T15:29:15.9063397Z CC [M] fs/ext4/extents.o
2025-10-02T15:29:16.4246148Z CC crypto/sha512_generic.o
2025-10-02T15:29:17.1781361Z CC security/apparmor/policy_unpack.o
2025-10-02T15:29:17.2537988Z CC kernel/bpf/reuseport_array.o
2025-10-02T15:29:17.2931282Z CC crypto/ctr.o
2025-10-02T15:29:17.5960502Z CC [M] arch/x86/kvm/vmx/vmx.o
2025-10-02T15:29:17.9273203Z CC crypto/aes_generic.o
2025-10-02T15:29:18.4929371Z CC kernel/bpf/sysfs_btf.o
2025-10-02T15:29:18.9892152Z CC kernel/bpf/bpf_struct_ops.o
2025-10-02T15:29:19.0286396Z CC crypto/crct10dif_common.o
2025-10-02T15:29:19.3169776Z CC security/apparmor/procattr.o
2025-10-02T15:29:19.7195858Z CC crypto/crct10dif_generic.o
2025-10-02T15:29:20.2245242Z CC crypto/lz4.o
2025-10-02T15:29:20.5552457Z CC kernel/bpf/bpf_lsm.o
2025-10-02T15:29:20.5867601Z CC [M] fs/ext4/extents_status.o
2025-10-02T15:29:20.8090941Z CC crypto/rng.o
2025-10-02T15:29:20.9099867Z CC security/apparmor/lsm.o
2025-10-02T15:29:21.6955569Z CC crypto/jitterentropy.o
2025-10-02T15:29:21.8785953Z CC crypto/jitterentropy-kcapi.o
2025-10-02T15:29:21.9080084Z AR kernel/bpf/built-in.a
2025-10-02T15:29:21.9397601Z CC kernel/events/core.o
2025-10-02T15:29:22.5084019Z CC crypto/zstd.o
2025-10-02T15:29:22.6027901Z CC [M] fs/ext4/file.o
2025-10-02T15:29:23.4155484Z CC crypto/hash_info.o
2025-10-02T15:29:23.5554868Z CC [M] crypto/crypto_engine.o
2025-10-02T15:29:24.0801544Z CC [M] fs/ext4/fsmap.o
2025-10-02T15:29:24.1333384Z CC [M] crypto/seqiv.o
2025-10-02T15:29:24.4769810Z GEN security/apparmor/rlim_names.h
2025-10-02T15:29:24.4998240Z CC security/apparmor/secid.o
2025-10-02T15:29:24.6886864Z CC [M] crypto/echainiv.o
2025-10-02T15:29:25.4169157Z ASN.1 crypto/sm2signature.asn1.[ch]
2025-10-02T15:29:25.4311924Z CC [M] crypto/crypto_user_base.o
2025-10-02T15:29:25.7431060Z CC security/apparmor/file.o
2025-10-02T15:29:25.8078443Z CC [M] fs/ext4/fsync.o
2025-10-02T15:29:26.1287587Z AS [M] arch/x86/kvm/vmx/vmenter.o
2025-10-02T15:29:26.1860613Z CC [M] arch/x86/kvm/vmx/pmu_intel.o
2025-10-02T15:29:26.8003402Z CC [M] crypto/crypto_user_stat.o
2025-10-02T15:29:26.9723746Z CC [M] fs/ext4/hash.o
2025-10-02T15:29:27.3489750Z CC [M] arch/x86/kvm/vmx/vmcs12.o
2025-10-02T15:29:27.7075855Z CC security/apparmor/policy_ns.o
2025-10-02T15:29:27.9626426Z CC [M] fs/ext4/ialloc.o
2025-10-02T15:29:28.0025150Z CC [M] crypto/cmac.o
2025-10-02T15:29:28.1217122Z CC [M] arch/x86/kvm/vmx/evmcs.o
2025-10-02T15:29:28.6391224Z CC [M] crypto/vmac.o
2025-10-02T15:29:29.2474732Z CC [M] arch/x86/kvm/vmx/nested.o
2025-10-02T15:29:29.3936552Z CC security/apparmor/label.o
2025-10-02T15:29:29.7387373Z CC kernel/events/ring_buffer.o
2025-10-02T15:29:29.9170617Z CC [M] crypto/xcbc.o
2025-10-02T15:29:30.3476830Z CC [M] fs/ext4/indirect.o
2025-10-02T15:29:30.6057450Z CC [M] crypto/md4.o
2025-10-02T15:29:31.1572231Z CC kernel/events/callchain.o
2025-10-02T15:29:31.2593086Z CC [M] crypto/rmd128.o
2025-10-02T15:29:32.0740883Z CC security/apparmor/mount.o
2025-10-02T15:29:32.1006461Z CC kernel/events/hw_breakpoint.o
2025-10-02T15:29:32.3519926Z CC [M] fs/ext4/inline.o
2025-10-02T15:29:32.3568075Z CC [M] crypto/rmd160.o
2025-10-02T15:29:33.1118920Z CC kernel/events/uprobes.o
2025-10-02T15:29:33.4612722Z CC [M] crypto/rmd256.o
2025-10-02T15:29:33.9307928Z GEN security/apparmor/net_names.h
2025-10-02T15:29:33.9609369Z GEN security/apparmor/net_names.h
2025-10-02T15:29:33.9851605Z CC security/apparmor/crypto.o
2025-10-02T15:29:34.3688860Z CC [M] crypto/rmd320.o
2025-10-02T15:29:34.6455320Z CC [M] fs/ext4/inode.o
2025-10-02T15:29:35.3675954Z AR kernel/events/built-in.a
2025-10-02T15:29:35.3946459Z CC kernel/fork.o
2025-10-02T15:29:35.5455036Z CC [M] arch/x86/kvm/vmx/posted_intr.o
2025-10-02T15:29:35.6011272Z CC [M] crypto/sha3_generic.o
2025-10-02T15:29:35.6265455Z CC security/apparmor/capability.o
2025-10-02T15:29:36.2430999Z CC [M] crypto/sm3_generic.o
2025-10-02T15:29:36.8901209Z CC [M] arch/x86/kvm/svm/svm.o
2025-10-02T15:29:37.1330549Z CC security/apparmor/resource.o
2025-10-02T15:29:37.3109790Z CC [M] crypto/streebog_generic.o
2025-10-02T15:29:38.1417574Z CC [M] crypto/wp512.o
2025-10-02T15:29:38.2649357Z CC kernel/exec_domain.o
2025-10-02T15:29:38.4730291Z CC security/apparmor/net.o
2025-10-02T15:29:39.0447941Z CC kernel/panic.o
2025-10-02T15:29:39.1714219Z CC [M] crypto/tgr192.o
2025-10-02T15:29:39.6337704Z CC [M] fs/ext4/ioctl.o
2025-10-02T15:29:39.9608990Z AR security/apparmor/built-in.a
2025-10-02T15:29:39.9871759Z CC security/yama/yama_lsm.o
2025-10-02T15:29:40.0221925Z CC kernel/cpu.o
2025-10-02T15:29:40.1022246Z CC [M] crypto/blake2b_generic.o
2025-10-02T15:29:40.2443135Z AS [M] arch/x86/kvm/svm/vmenter.o
2025-10-02T15:29:40.3001744Z CC [M] arch/x86/kvm/svm/pmu.o
2025-10-02T15:29:41.0261275Z AR security/yama/built-in.a
2025-10-02T15:29:41.0805755Z CC security/loadpin/loadpin.o
2025-10-02T15:29:41.2844178Z CC [M] crypto/blake2s_generic.o
2025-10-02T15:29:41.3110644Z CC [M] arch/x86/kvm/svm/nested.o
2025-10-02T15:29:41.5072251Z CC [M] fs/ext4/mballoc.o
2025-10-02T15:29:41.8858413Z CC [M] crypto/gf128mul.o
2025-10-02T15:29:41.9791906Z AR security/loadpin/built-in.a
2025-10-02T15:29:42.0311403Z CC security/safesetid/lsm.o
2025-10-02T15:29:42.3517016Z CC kernel/exit.o
2025-10-02T15:29:42.6684126Z CC [M] crypto/ecb.o
2025-10-02T15:29:42.8276337Z CC security/safesetid/securityfs.o
2025-10-02T15:29:42.9598715Z CC [M] arch/x86/kvm/svm/avic.o
2025-10-02T15:29:43.2417596Z CC [M] crypto/cbc.o
2025-10-02T15:29:43.6550822Z AR security/safesetid/built-in.a
2025-10-02T15:29:43.7047236Z CC security/lockdown/lockdown.o
2025-10-02T15:29:43.7939735Z CC [M] crypto/cfb.o
2025-10-02T15:29:44.3228174Z CC [M] crypto/pcbc.o
2025-10-02T15:29:44.4558525Z AR security/lockdown/built-in.a
2025-10-02T15:29:44.5083284Z CC security/bpf/hooks.o
2025-10-02T15:29:44.6019327Z CC kernel/softirq.o
2025-10-02T15:29:44.7324531Z CC [M] arch/x86/kvm/svm/sev.o
2025-10-02T15:29:44.9455711Z CC [M] crypto/cts.o
2025-10-02T15:29:45.2824366Z AR security/bpf/built-in.a
2025-10-02T15:29:45.2956185Z CC security/commoncap.o
2025-10-02T15:29:45.7989998Z CC [M] crypto/lrw.o
2025-10-02T15:29:46.0767491Z CC kernel/resource.o
2025-10-02T15:29:46.3409245Z LD [M] arch/x86/kvm/kvm.o
2025-10-02T15:29:46.4726048Z LD [M] arch/x86/kvm/kvm-intel.o
2025-10-02T15:29:46.5337172Z LD [M] arch/x86/kvm/kvm-amd.o
2025-10-02T15:29:46.5986122Z AR arch/x86/built-in.a
2025-10-02T15:29:46.6559216Z CC security/min_addr.o
2025-10-02T15:29:46.6652816Z CC [M] fs/ext4/migrate.o
2025-10-02T15:29:46.7198206Z CC [M] crypto/xts.o
2025-10-02T15:29:46.9368954Z CC [M] fs/jbd2/transaction.o
2025-10-02T15:29:47.3560429Z CC kernel/sysctl.o
2025-10-02T15:29:47.5044120Z CC security/security.o
2025-10-02T15:29:47.6155066Z CC [M] crypto/keywrap.o
2025-10-02T15:29:47.8004409Z CC [M] fs/ext4/mmp.o
2025-10-02T15:29:48.3786690Z CC [M] crypto/adiantum.o
2025-10-02T15:29:48.7225496Z CC [M] fs/jbd2/commit.o
2025-10-02T15:29:49.1488277Z CC [M] fs/ext4/move_extent.o
2025-10-02T15:29:49.2880161Z CC kernel/capability.o
2025-10-02T15:29:49.3139096Z CC [M] crypto/nhpoly1305.o
2025-10-02T15:29:49.9963039Z CC [M] crypto/gcm.o
2025-10-02T15:29:50.2155945Z CC kernel/ptrace.o
2025-10-02T15:29:50.2534627Z CC [M] fs/jbd2/recovery.o
2025-10-02T15:29:50.6251058Z CC [M] fs/ext4/namei.o
2025-10-02T15:29:50.8090547Z CC security/inode.o
2025-10-02T15:29:51.2796064Z CC [M] crypto/ccm.o
2025-10-02T15:29:51.2961884Z CC [M] fs/jbd2/checkpoint.o
2025-10-02T15:29:51.6974231Z CC security/lsm_audit.o
2025-10-02T15:29:51.8908408Z CC kernel/user.o
2025-10-02T15:29:52.1864800Z CC [M] fs/jbd2/revoke.o
2025-10-02T15:29:52.3952018Z CC kernel/signal.o
2025-10-02T15:29:52.5341280Z CC [M] crypto/chacha20poly1305.o
2025-10-02T15:29:53.0046642Z CC security/device_cgroup.o
2025-10-02T15:29:53.1883031Z CC [M] fs/jbd2/journal.o
2025-10-02T15:29:53.7164708Z CC [M] crypto/aegis128-core.o
2025-10-02T15:29:54.2531511Z AR security/built-in.a
2025-10-02T15:29:54.2929326Z CC kernel/sys.o
2025-10-02T15:29:54.3648284Z CC [M] fs/ext4/page-io.o
2025-10-02T15:29:54.7618961Z CC [M] crypto/pcrypt.o
2025-10-02T15:29:55.4563009Z CC [M] crypto/cryptd.o
2025-10-02T15:29:55.6537224Z CC [M] fs/ext4/readpage.o
2025-10-02T15:29:56.1808407Z LD [M] fs/jbd2/jbd2.o
2025-10-02T15:29:56.1851244Z CC [M] crypto/des_generic.o
2025-10-02T15:29:56.2343857Z CC [M] fs/ext4/resize.o
2025-10-02T15:29:56.6592880Z CC [M] fs/cramfs/inode.o
2025-10-02T15:29:56.7840388Z CC [M] crypto/fcrypt.o
2025-10-02T15:29:56.9648224Z CC [M] crypto/blowfish_generic.o
2025-10-02T15:29:57.1010446Z CC kernel/umh.o
2025-10-02T15:29:57.7336080Z CC block/partitions/core.o
2025-10-02T15:29:57.7503584Z CC [M] crypto/blowfish_common.o
2025-10-02T15:29:57.8414781Z CC [M] fs/cramfs/uncompress.o
2025-10-02T15:29:58.0614333Z LD [M] fs/cramfs/cramfs.o
2025-10-02T15:29:58.0936075Z CC block/bio.o
2025-10-02T15:29:58.1931096Z CC kernel/workqueue.o
2025-10-02T15:29:58.6218709Z CC [M] crypto/twofish_generic.o
2025-10-02T15:29:58.6533232Z CC [M] fs/ext4/super.o
2025-10-02T15:29:58.8524336Z CC block/partitions/aix.o
2025-10-02T15:29:59.3631083Z CC [M] crypto/twofish_common.o
2025-10-02T15:29:59.8882663Z CC block/partitions/mac.o
2025-10-02T15:29:59.9543683Z CC [M] fs/ext4/symlink.o
2025-10-02T15:30:00.2145025Z CC [M] crypto/serpent_generic.o
2025-10-02T15:30:00.7287053Z CC block/partitions/ldm.o
2025-10-02T15:30:00.8083743Z CC io_uring/io_uring.o
2025-10-02T15:30:01.8048386Z CC [M] crypto/sm4_generic.o
2025-10-02T15:30:01.9344790Z CC kernel/pid.o
2025-10-02T15:30:02.2815633Z CC [M] crypto/aes_ti.o
2025-10-02T15:30:02.5433041Z CC block/partitions/msdos.o
2025-10-02T15:30:02.7259185Z CC [M] crypto/camellia_generic.o
2025-10-02T15:30:03.6098592Z CC kernel/task_work.o
2025-10-02T15:30:03.9394582Z CC block/partitions/efi.o
2025-10-02T15:30:04.2288022Z CC [M] crypto/cast_common.o
2025-10-02T15:30:04.3386324Z CC kernel/extable.o
2025-10-02T15:30:04.7575625Z CC [M] crypto/cast5_generic.o
2025-10-02T15:30:05.0707261Z CC block/partitions/karma.o
2025-10-02T15:30:05.3184558Z CC kernel/params.o
2025-10-02T15:30:05.6801662Z CC [M] crypto/cast6_generic.o
2025-10-02T15:30:05.9452247Z AR block/partitions/built-in.a
2025-10-02T15:30:05.9665466Z CC block/elevator.o
2025-10-02T15:30:06.1901563Z CC [M] crypto/salsa20_generic.o
2025-10-02T15:30:06.5914292Z CC kernel/kthread.o
2025-10-02T15:30:06.9200250Z CC [M] crypto/chacha_generic.o
2025-10-02T15:30:07.4864984Z CC [M] crypto/poly1305_generic.o
2025-10-02T15:30:07.5873956Z CC block/blk-core.o
2025-10-02T15:30:08.1062910Z CC kernel/sys_ni.o
2025-10-02T15:30:08.1352913Z CC [M] crypto/deflate.o
2025-10-02T15:30:08.8801857Z CC [M] crypto/michael_mic.o
2025-10-02T15:30:08.8881515Z CC kernel/nsproxy.o
2025-10-02T15:30:09.0188770Z CC io_uring/io-wq.o
2025-10-02T15:30:09.3933162Z CC [M] crypto/crc32c_generic.o
2025-10-02T15:30:09.5919448Z CC [M] fs/ext4/sysfs.o
2025-10-02T15:30:10.0510871Z CC kernel/notifier.o
2025-10-02T15:30:10.1811288Z CC [M] crypto/crc32_generic.o
2025-10-02T15:30:10.5087641Z CC block/blk-sysfs.o
2025-10-02T15:30:10.5501094Z CC [M] fs/ext4/xattr.o
2025-10-02T15:30:10.6576115Z CC [M] crypto/authenc.o
2025-10-02T15:30:10.6765463Z AR io_uring/built-in.a
2025-10-02T15:30:10.8638999Z AR drivers/irqchip/built-in.a
2025-10-02T15:30:10.8841924Z CC [M] drivers/irqchip/irq-madera.o
2025-10-02T15:30:10.9122309Z CC kernel/ksysfs.o
2025-10-02T15:30:11.6722491Z CC block/blk-flush.o
2025-10-02T15:30:11.7889411Z CC kernel/cred.o
2025-10-02T15:30:11.7900852Z CC [M] crypto/authencesn.o
2025-10-02T15:30:12.0151805Z AR drivers/bus/mhi/host/built-in.a
2025-10-02T15:30:12.0339239Z CC [M] drivers/bus/mhi/host/init.o
2025-10-02T15:30:12.5208479Z CC block/blk-settings.o
2025-10-02T15:30:12.7914966Z CC kernel/reboot.o
2025-10-02T15:30:12.8615911Z CC [M] crypto/lzo.o
2025-10-02T15:30:13.3200104Z CC [M] fs/ext4/xattr_hurd.o
2025-10-02T15:30:13.4480125Z CC [M] crypto/lzo-rle.o
2025-10-02T15:30:13.4487993Z CC [M] drivers/bus/mhi/host/main.o
2025-10-02T15:30:13.6058839Z CC block/blk-ioc.o
2025-10-02T15:30:13.6280676Z CC kernel/async.o
2025-10-02T15:30:14.2011026Z CC [M] crypto/lz4hc.o
2025-10-02T15:30:14.2202287Z CC [M] fs/ext4/xattr_trusted.o
2025-10-02T15:30:14.2696505Z CC kernel/range.o
2025-10-02T15:30:14.5156735Z CC block/blk-map.o
2025-10-02T15:30:14.5805162Z CC kernel/smpboot.o
2025-10-02T15:30:14.6909325Z CC [M] crypto/xxhash_generic.o
2025-10-02T15:30:14.7507518Z CC [M] drivers/bus/mhi/host/pm.o
2025-10-02T15:30:15.0377779Z CC [M] fs/ext4/xattr_user.o
2025-10-02T15:30:15.1894391Z CC [M] crypto/842.o
2025-10-02T15:30:15.1934925Z CC kernel/ucount.o
2025-10-02T15:30:15.7290637Z CC kernel/regset.o
2025-10-02T15:30:15.7544654Z CC [M] fs/ext4/fast_commit.o
2025-10-02T15:30:15.7710664Z CC [M] crypto/ansi_cprng.o
2025-10-02T15:30:15.8236205Z CC block/blk-exec.o
2025-10-02T15:30:16.0692407Z CC [M] drivers/bus/mhi/host/boot.o
2025-10-02T15:30:16.2791977Z CC kernel/kmod.o
2025-10-02T15:30:16.4206001Z CC [M] crypto/drbg.o
2025-10-02T15:30:16.5307831Z CC block/blk-merge.o
2025-10-02T15:30:17.2823274Z CC kernel/groups.o
2025-10-02T15:30:17.2988210Z LD [M] drivers/bus/mhi/host/mhi.o
2025-10-02T15:30:17.3440505Z AR drivers/bus/mhi/built-in.a
2025-10-02T15:30:17.3939664Z AR drivers/bus/built-in.a
2025-10-02T15:30:17.4978910Z AR drivers/phy/allwinner/built-in.a
2025-10-02T15:30:17.5700038Z AR drivers/phy/amlogic/built-in.a
2025-10-02T15:30:17.6383613Z AR drivers/phy/broadcom/built-in.a
2025-10-02T15:30:17.6622673Z CC [M] drivers/phy/broadcom/phy-bcm-kona-usb2.o
2025-10-02T15:30:18.0428595Z CC [M] fs/ext4/acl.o
2025-10-02T15:30:18.2001337Z CC kernel/kcmp.o
2025-10-02T15:30:18.2163886Z CC [M] crypto/tcrypt.o
2025-10-02T15:30:18.3332813Z CC block/blk-timeout.o
2025-10-02T15:30:18.4295328Z AR drivers/phy/cadence/built-in.a
2025-10-02T15:30:18.4658987Z AR drivers/phy/freescale/built-in.a
2025-10-02T15:30:18.5026694Z AR drivers/phy/hisilicon/built-in.a
2025-10-02T15:30:18.5398729Z AR drivers/phy/intel/built-in.a
2025-10-02T15:30:18.5508292Z CC [M] drivers/phy/intel/phy-intel-lgm-emmc.o
2025-10-02T15:30:18.9139958Z CC block/blk-lib.o
2025-10-02T15:30:19.0966028Z CC [M] fs/ext4/xattr_security.o
2025-10-02T15:30:19.1765301Z CC kernel/freezer.o
2025-10-02T15:30:19.5482311Z AR drivers/phy/lantiq/built-in.a
2025-10-02T15:30:19.6210035Z AR drivers/phy/marvell/built-in.a
2025-10-02T15:30:19.6471286Z CC [M] drivers/phy/marvell/phy-pxa-28nm-hsic.o
2025-10-02T15:30:19.8839929Z CC [M] fs/ext4/verity.o
2025-10-02T15:30:19.9754685Z CC block/blk-mq.o
2025-10-02T15:30:20.0843528Z CC kernel/profile.o
2025-10-02T15:30:20.5350450Z CC [M] drivers/phy/marvell/phy-pxa-28nm-usb2.o
2025-10-02T15:30:20.7718500Z CC [M] crypto/ghash-generic.o
2025-10-02T15:30:20.9423912Z LD [M] fs/ext4/ext4.o
2025-10-02T15:30:21.1497540Z CC [M] fs/squashfs/block.o
2025-10-02T15:30:21.1990911Z CC kernel/stacktrace.o
2025-10-02T15:30:21.3374685Z CC [M] crypto/af_alg.o
2025-10-02T15:30:21.5776293Z AR drivers/phy/mediatek/built-in.a
2025-10-02T15:30:21.6143721Z AR drivers/phy/motorola/built-in.a
2025-10-02T15:30:21.6252793Z CC [M] drivers/phy/motorola/phy-cpcap-usb.o
2025-10-02T15:30:21.9077036Z CC kernel/dma.o
2025-10-02T15:30:22.1653746Z CC [M] fs/squashfs/cache.o
2025-10-02T15:30:22.3443868Z CC kernel/smp.o
2025-10-02T15:30:22.6471381Z AR drivers/phy/mscc/built-in.a
2025-10-02T15:30:22.7231539Z AR drivers/phy/qualcomm/built-in.a
2025-10-02T15:30:22.7469692Z CC [M] drivers/phy/qualcomm/phy-qcom-usb-hs.o
2025-10-02T15:30:23.0707229Z CC [M] fs/squashfs/dir.o
2025-10-02T15:30:23.0961413Z CC block/blk-mq-tag.o
2025-10-02T15:30:23.2129149Z CC kernel/uid16.o
2025-10-02T15:30:23.2820462Z CC [M] crypto/algif_hash.o
2025-10-02T15:30:23.6206067Z CC [M] drivers/phy/qualcomm/phy-qcom-usb-hsic.o
2025-10-02T15:30:23.6589769Z CC [M] fs/squashfs/export.o
2025-10-02T15:30:24.2355336Z CC [M] fs/squashfs/file.o
2025-10-02T15:30:24.3600871Z CC block/blk-stat.o
2025-10-02T15:30:24.4395255Z CC kernel/module.o
2025-10-02T15:30:24.4569867Z CC [M] crypto/algif_skcipher.o
2025-10-02T15:30:24.5381653Z AR drivers/phy/ralink/built-in.a
2025-10-02T15:30:24.6085578Z AR drivers/phy/renesas/built-in.a
2025-10-02T15:30:24.6762525Z AR drivers/phy/rockchip/built-in.a
2025-10-02T15:30:24.7462474Z AR drivers/phy/samsung/built-in.a
2025-10-02T15:30:24.8217140Z AR drivers/phy/socionext/built-in.a
2025-10-02T15:30:24.9048964Z AR drivers/phy/st/built-in.a
2025-10-02T15:30:24.9780695Z AR drivers/phy/tegra/built-in.a
2025-10-02T15:30:25.0497108Z AR drivers/phy/ti/built-in.a
2025-10-02T15:30:25.0682882Z CC [M] drivers/phy/ti/phy-tusb1210.o
2025-10-02T15:30:25.1087516Z CC [M] fs/squashfs/fragment.o
2025-10-02T15:30:25.2329910Z CC block/blk-mq-sysfs.o
2025-10-02T15:30:25.7021203Z CC [M] crypto/algif_rng.o
2025-10-02T15:30:25.7112692Z CC [M] fs/squashfs/id.o
2025-10-02T15:30:26.0611683Z AR drivers/phy/xilinx/built-in.a
2025-10-02T15:30:26.1010867Z CC drivers/phy/phy-core.o
2025-10-02T15:30:26.1013901Z CC block/blk-mq-cpumap.o
2025-10-02T15:30:26.1904772Z CC [M] fs/squashfs/inode.o
2025-10-02T15:30:26.8319990Z CC block/blk-mq-sched.o
2025-10-02T15:30:26.8603231Z CC [M] crypto/algif_aead.o
2025-10-02T15:30:26.8856946Z CC [M] fs/squashfs/namei.o
2025-10-02T15:30:27.3741268Z CC [M] drivers/phy/phy-lgm-usb.o
2025-10-02T15:30:27.4830593Z CC [M] fs/squashfs/super.o
2025-10-02T15:30:28.0490368Z CC kernel/module_signing.o
2025-10-02T15:30:28.0742667Z CC block/ioctl.o
2025-10-02T15:30:28.2915819Z CC [M] crypto/ofb.o
2025-10-02T15:30:28.3182928Z CC [M] fs/squashfs/symlink.o
2025-10-02T15:30:28.4020795Z AR drivers/phy/built-in.a
2025-10-02T15:30:28.4752136Z CC kernel/module_signature.o
2025-10-02T15:30:28.5451128Z AR drivers/pinctrl/actions/built-in.a
2025-10-02T15:30:28.6046605Z CC kernel/kallsyms.o
2025-10-02T15:30:28.6112528Z AR drivers/pinctrl/bcm/built-in.a
2025-10-02T15:30:28.6860115Z AR drivers/pinctrl/freescale/built-in.a
2025-10-02T15:30:28.7082360Z CC [M] crypto/ecc.o
2025-10-02T15:30:28.7691309Z CC drivers/pinctrl/intel/pinctrl-baytrail.o
2025-10-02T15:30:29.0079096Z CC [M] fs/squashfs/decompressor.o
2025-10-02T15:30:29.1790299Z CC block/genhd.o
2025-10-02T15:30:29.7584507Z CC kernel/acct.o
2025-10-02T15:30:29.8227988Z CC [M] fs/squashfs/file_direct.o
2025-10-02T15:30:30.0957896Z CC drivers/pinctrl/intel/pinctrl-cherryview.o
2025-10-02T15:30:30.6988770Z CC [M] fs/squashfs/page_actor.o
2025-10-02T15:30:30.9526988Z CC block/ioprio.o
2025-10-02T15:30:30.9890321Z CC [M] crypto/essiv.o
2025-10-02T15:30:30.9973309Z CC kernel/crash_core.o
2025-10-02T15:30:31.3400867Z CC [M] fs/squashfs/decompressor_multi_percpu.o
2025-10-02T15:30:31.4910056Z CC drivers/pinctrl/intel/pinctrl-lynxpoint.o
2025-10-02T15:30:31.7461574Z CC kernel/kexec_core.o
2025-10-02T15:30:31.9896149Z CC block/badblocks.o
2025-10-02T15:30:32.0836675Z CC [M] crypto/curve25519-generic.o
2025-10-02T15:30:32.1369118Z CC [M] fs/squashfs/xattr.o
2025-10-02T15:30:32.4965857Z CC drivers/pinctrl/intel/pinctrl-intel.o
2025-10-02T15:30:32.7365962Z CC [M] crypto/ecdh.o
2025-10-02T15:30:32.8184122Z CC block/blk-rq-qos.o
2025-10-02T15:30:32.9057496Z CC [M] fs/squashfs/xattr_id.o
2025-10-02T15:30:33.0888969Z CC kernel/kexec.o
2025-10-02T15:30:33.4471032Z CC [M] fs/squashfs/lz4_wrapper.o
2025-10-02T15:30:33.5611907Z CC [M] crypto/ecdh_helper.o
2025-10-02T15:30:33.5617148Z CC block/bounce.o
2025-10-02T15:30:33.9421105Z ASN.1 crypto/ecrdsa_params.asn1.[ch]
2025-10-02T15:30:33.9540954Z ASN.1 crypto/ecrdsa_pub_key.asn1.[ch]
2025-10-02T15:30:33.9618774Z CC [M] crypto/ecrdsa_params.asn1.o
2025-10-02T15:30:34.0223073Z CC drivers/pinctrl/intel/pinctrl-broxton.o
2025-10-02T15:30:34.0923012Z CC [M] crypto/ecrdsa_pub_key.asn1.o
2025-10-02T15:30:34.1025737Z CC kernel/kexec_file.o
2025-10-02T15:30:34.1591069Z CC [M] crypto/xor.o
2025-10-02T15:30:34.3071623Z CC [M] fs/squashfs/lzo_wrapper.o
2025-10-02T15:30:34.5475224Z CC drivers/pinctrl/intel/pinctrl-cannonlake.o
2025-10-02T15:30:34.6930608Z CC block/scsi_ioctl.o
2025-10-02T15:30:34.8502406Z CC [M] crypto/simd.o
2025-10-02T15:30:35.0429396Z CC drivers/pinctrl/intel/pinctrl-cedarfork.o
2025-10-02T15:30:35.1452438Z CC [M] fs/squashfs/xz_wrapper.o
2025-10-02T15:30:35.5579804Z CC kernel/compat.o
2025-10-02T15:30:35.5985259Z CC [M] crypto/sm2signature.asn1.o
2025-10-02T15:30:35.6414673Z CC drivers/pinctrl/intel/pinctrl-denverton.o
2025-10-02T15:30:35.6881041Z CC block/bsg.o
2025-10-02T15:30:35.7201033Z CC [M] crypto/sm2.o
2025-10-02T15:30:36.0845100Z CC [M] fs/squashfs/zlib_wrapper.o
2025-10-02T15:30:36.2111168Z CC drivers/pinctrl/intel/pinctrl-emmitsburg.o
2025-10-02T15:30:36.3333112Z CC kernel/utsname.o
2025-10-02T15:30:36.5776462Z CC block/bsg-lib.o
2025-10-02T15:30:36.7532548Z LD [M] crypto/crypto_user.o
2025-10-02T15:30:36.7698014Z LD [M] crypto/aegis128.o
2025-10-02T15:30:36.7753061Z CC kernel/user_namespace.o
2025-10-02T15:30:36.7847749Z LD [M] crypto/ecdh_generic.o
2025-10-02T15:30:36.8009368Z CC [M] crypto/ecrdsa.o
2025-10-02T15:30:36.8693804Z CC [M] fs/squashfs/zstd_wrapper.o
2025-10-02T15:30:36.8793262Z CC drivers/pinctrl/intel/pinctrl-geminilake.o
2025-10-02T15:30:37.3751095Z CC block/blk-cgroup.o
2025-10-02T15:30:37.5271600Z CC drivers/pinctrl/intel/pinctrl-icelake.o
2025-10-02T15:30:37.5422204Z LD [M] crypto/crypto_simd.o
2025-10-02T15:30:37.5665301Z CC crypto/rsapubkey.asn1.o
2025-10-02T15:30:37.5853072Z LD [M] fs/squashfs/squashfs.o
2025-10-02T15:30:37.6692114Z CC crypto/rsaprivkey.asn1.o
2025-10-02T15:30:37.6703957Z CC [M] fs/coda/psdev.o
2025-10-02T15:30:37.8200710Z LD [M] crypto/sm2_generic.o
2025-10-02T15:30:37.8533922Z CC kernel/pid_namespace.o
2025-10-02T15:30:38.1114544Z CC drivers/pinctrl/intel/pinctrl-jasperlake.o
2025-10-02T15:30:38.5618885Z LD [M] crypto/ecrdsa_generic.o
2025-10-02T15:30:38.6162309Z AR crypto/built-in.a
2025-10-02T15:30:38.6222474Z CC [M] fs/coda/cache.o
2025-10-02T15:30:38.6586163Z CC block/blk-cgroup-rwstat.o
2025-10-02T15:30:38.7323239Z UPD kernel/config_data
2025-10-02T15:30:38.7441208Z CC kernel/stop_machine.o
2025-10-02T15:30:38.7904570Z CC drivers/pinctrl/intel/pinctrl-lewisburg.o
2025-10-02T15:30:39.1753164Z CC [M] fs/coda/cnode.o
2025-10-02T15:30:39.3104348Z CC drivers/gpio/gpiolib.o
2025-10-02T15:30:39.3283192Z CC drivers/pinctrl/intel/pinctrl-sunrisepoint.o
2025-10-02T15:30:39.4442867Z CC block/blk-throttle.o
2025-10-02T15:30:39.8475542Z CC kernel/audit.o
2025-10-02T15:30:39.9147363Z CC drivers/pinctrl/intel/pinctrl-tigerlake.o
2025-10-02T15:30:39.9588104Z CC [M] fs/coda/inode.o
2025-10-02T15:30:40.6401207Z AR drivers/pinctrl/intel/built-in.a
2025-10-02T15:30:40.6937512Z AR drivers/pinctrl/mvebu/built-in.a
2025-10-02T15:30:40.7678147Z AR drivers/pinctrl/nomadik/built-in.a
2025-10-02T15:30:40.8270456Z AR drivers/pinctrl/sprd/built-in.a
2025-10-02T15:30:40.8374569Z CC [M] fs/coda/dir.o
2025-10-02T15:30:40.8690275Z AR drivers/pinctrl/ti/built-in.a
2025-10-02T15:30:40.9356321Z AR drivers/pinctrl/mediatek/built-in.a
2025-10-02T15:30:41.0104580Z AR drivers/pinctrl/cirrus/built-in.a
2025-10-02T15:30:41.0312534Z CC [M] drivers/pinctrl/cirrus/pinctrl-madera-core.o
2025-10-02T15:30:41.6944257Z CC block/blk-iolatency.o
2025-10-02T15:30:41.7962365Z CC [M] fs/coda/file.o
2025-10-02T15:30:42.2733687Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l15.o
2025-10-02T15:30:42.3349725Z CC kernel/auditfilter.o
2025-10-02T15:30:42.4166263Z CC drivers/gpio/gpiolib-devres.o
2025-10-02T15:30:42.6232600Z CC [M] fs/coda/upcall.o
2025-10-02T15:30:42.9624111Z CC drivers/gpio/gpiolib-legacy.o
2025-10-02T15:30:43.1020656Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l35.o
2025-10-02T15:30:43.3212361Z CC block/blk-iocost.o
2025-10-02T15:30:43.5146383Z CC drivers/gpio/gpiolib-cdev.o
2025-10-02T15:30:43.8264556Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l85.o
2025-10-02T15:30:43.8363858Z CC [M] fs/coda/coda_linux.o
2025-10-02T15:30:44.2273121Z CC kernel/auditsc.o
2025-10-02T15:30:44.5273849Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l90.o
2025-10-02T15:30:44.6328430Z CC [M] fs/coda/symlink.o
2025-10-02T15:30:45.3160562Z CC [M] drivers/pinctrl/cirrus/pinctrl-cs47l92.o
2025-10-02T15:30:45.3745667Z CC drivers/gpio/gpiolib-sysfs.o
2025-10-02T15:30:45.6914330Z CC [M] fs/coda/pioctl.o
2025-10-02T15:30:45.9909073Z LD [M] drivers/pinctrl/cirrus/pinctrl-madera.o
2025-10-02T15:30:46.0230631Z CC drivers/pinctrl/core.o
2025-10-02T15:30:46.2779636Z CC kernel/audit_watch.o
2025-10-02T15:30:46.4120062Z CC drivers/gpio/gpiolib-acpi.o
2025-10-02T15:30:46.5287683Z CC block/mq-deadline.o
2025-10-02T15:30:46.6211171Z CC [M] fs/coda/sysctl.o
2025-10-02T15:30:46.8846961Z LD [M] fs/coda/coda.o
2025-10-02T15:30:46.9488891Z CC [M] fs/minix/bitmap.o
2025-10-02T15:30:47.3078712Z CC kernel/audit_fsnotify.o
2025-10-02T15:30:47.5466886Z CC drivers/pinctrl/pinctrl-utils.o
2025-10-02T15:30:47.6471587Z CC drivers/gpio/gpio-msic.o
2025-10-02T15:30:47.7683600Z CC [M] fs/minix/itree_v1.o
2025-10-02T15:30:47.8414577Z CC block/kyber-iosched.o
2025-10-02T15:30:48.0906409Z CC drivers/pinctrl/pinmux.o
2025-10-02T15:30:48.1310555Z CC kernel/audit_tree.o
2025-10-02T15:30:48.3993070Z CC drivers/gpio/gpio-palmas.o
2025-10-02T15:30:48.6690953Z CC [M] fs/minix/itree_v2.o
2025-10-02T15:30:48.9458814Z CC drivers/pinctrl/pinconf.o
2025-10-02T15:30:49.3263835Z CC block/bfq-iosched.o
2025-10-02T15:30:49.4641786Z CC drivers/gpio/gpio-rc5t583.o
2025-10-02T15:30:49.5996909Z CC drivers/pinctrl/pinconf-generic.o
2025-10-02T15:30:49.6148521Z CC kernel/kprobes.o
2025-10-02T15:30:49.7067418Z CC [M] fs/minix/namei.o
2025-10-02T15:30:50.0756278Z CC drivers/gpio/gpio-tps6586x.o
2025-10-02T15:30:50.2121257Z CC drivers/pinctrl/pinctrl-sx150x.o
2025-10-02T15:30:50.5819924Z CC [M] fs/minix/inode.o
2025-10-02T15:30:50.6958897Z CC drivers/gpio/gpio-tps65910.o
2025-10-02T15:30:51.2055010Z CC [M] drivers/pinctrl/pinctrl-amd.o
2025-10-02T15:30:51.3123255Z CC drivers/gpio/gpio-tps68470.o
2025-10-02T15:30:51.7220099Z CC kernel/hung_task.o
2025-10-02T15:30:51.8577330Z CC [M] fs/minix/file.o
2025-10-02T15:30:51.9797613Z CC [M] drivers/gpio/gpio-mmio.o
2025-10-02T15:30:52.4110823Z CC [M] fs/minix/dir.o
2025-10-02T15:30:52.5010400Z CC [M] drivers/pinctrl/pinctrl-da9062.o
2025-10-02T15:30:52.5989113Z CC kernel/watchdog.o
2025-10-02T15:30:52.6806311Z CC block/bfq-wf2q.o
2025-10-02T15:30:52.9912608Z CC [M] drivers/gpio/gpio-adp5520.o
2025-10-02T15:30:53.2028986Z CC [M] drivers/pinctrl/pinctrl-mcp23s08_i2c.o
2025-10-02T15:30:53.4300353Z CC kernel/watchdog_hld.o
2025-10-02T15:30:53.6370327Z CC [M] drivers/gpio/gpio-adp5588.o
2025-10-02T15:30:53.7428595Z LD [M] fs/minix/minix.o
2025-10-02T15:30:53.8400632Z CC [M] drivers/pinctrl/pinctrl-mcp23s08_spi.o
2025-10-02T15:30:53.8490118Z CC [M] fs/fat/cache.o
2025-10-02T15:30:54.1666929Z CC block/bfq-cgroup.o
2025-10-02T15:30:54.2607157Z CC kernel/seccomp.o
2025-10-02T15:30:54.3401146Z CC [M] drivers/gpio/gpio-aggregator.o
2025-10-02T15:30:54.5379055Z CC [M] drivers/pinctrl/pinctrl-mcp23s08.o
2025-10-02T15:30:54.7434525Z CC [M] fs/fat/dir.o
2025-10-02T15:30:55.3332051Z CC [M] drivers/gpio/gpio-amd8111.o
2025-10-02T15:30:55.4017843Z AR drivers/pinctrl/built-in.a
2025-10-02T15:30:55.4139146Z CC block/bio-integrity.o
2025-10-02T15:30:55.5036660Z CC [M] fs/fat/fatent.o
2025-10-02T15:30:56.1069349Z CC kernel/relay.o
2025-10-02T15:30:56.1547812Z CC [M] drivers/gpio/gpio-amd-fch.o
2025-10-02T15:30:56.4492198Z CC block/blk-integrity.o
2025-10-02T15:30:56.5103064Z CC [M] drivers/gpio/gpio-amdpt.o
2025-10-02T15:30:56.6712401Z CC [M] fs/fat/file.o
2025-10-02T15:30:56.9001124Z CC drivers/pwm/core.o
2025-10-02T15:30:57.2049458Z CC [M] drivers/gpio/gpio-arizona.o
2025-10-02T15:30:57.4291166Z CC kernel/utsname_sysctl.o
2025-10-02T15:30:57.4605690Z CC block/t10-pi.o
2025-10-02T15:30:57.6588432Z CC [M] fs/fat/inode.o
2025-10-02T15:30:57.9075212Z CC kernel/delayacct.o
2025-10-02T15:30:58.2778411Z CC [M] drivers/gpio/gpio-bd9571mwv.o
2025-10-02T15:30:58.3339318Z CC block/blk-mq-pci.o
2025-10-02T15:30:58.3727097Z CC drivers/pwm/sysfs.o
2025-10-02T15:30:58.4571277Z CC kernel/taskstats.o
2025-10-02T15:30:58.9120592Z CC [M] drivers/gpio/gpio-crystalcove.o
2025-10-02T15:30:59.0921352Z CC block/blk-mq-virtio.o
2025-10-02T15:30:59.1392730Z CC drivers/pwm/pwm-crc.o
2025-10-02T15:30:59.3306224Z CC [M] fs/fat/misc.o
2025-10-02T15:30:59.4960102Z CC kernel/tsacct.o
2025-10-02T15:30:59.5764106Z CC [M] drivers/gpio/gpio-da9052.o
2025-10-02T15:30:59.7717605Z CC [M] drivers/pwm/pwm-cros-ec.o
2025-10-02T15:30:59.7941002Z CC block/blk-mq-rdma.o
2025-10-02T15:31:00.0507090Z CC kernel/tracepoint.o
2025-10-02T15:31:00.3357060Z CC [M] fs/fat/nfs.o
2025-10-02T15:31:00.4590425Z CC [M] drivers/pwm/pwm-iqs620a.o
2025-10-02T15:31:00.4724537Z CC [M] drivers/gpio/gpio-da9055.o
2025-10-02T15:31:00.8863335Z CC kernel/latencytop.o
2025-10-02T15:31:00.9626937Z CC [M] drivers/pwm/pwm-lp3943.o
2025-10-02T15:31:00.9996403Z CC [M] fs/fat/namei_vfat.o
2025-10-02T15:31:01.0423050Z CC block/blk-zoned.o
2025-10-02T15:31:01.0746740Z CC [M] drivers/gpio/gpio-dln2.o
2025-10-02T15:31:01.5336217Z CC kernel/irq_work.o
2025-10-02T15:31:01.7603274Z CC [M] drivers/pwm/pwm-lpss.o
2025-10-02T15:31:01.8665070Z CC [M] drivers/gpio/gpio-dwapb.o
2025-10-02T15:31:02.0846745Z CC kernel/static_call.o
2025-10-02T15:31:02.1597854Z CC block/blk-wbt.o
2025-10-02T15:31:02.3201196Z CC [M] fs/fat/namei_msdos.o
2025-10-02T15:31:02.4169816Z CC [M] drivers/pwm/pwm-lpss-pci.o
2025-10-02T15:31:02.7730507Z CC kernel/user-return-notifier.o
2025-10-02T15:31:03.0685439Z CC [M] drivers/gpio/gpio-exar.o
2025-10-02T15:31:03.0693380Z CC kernel/padata.o
2025-10-02T15:31:03.1270981Z CC [M] drivers/pwm/pwm-lpss-platform.o
2025-10-02T15:31:03.3022214Z LD [M] fs/fat/fat.o
2025-10-02T15:31:03.3548133Z LD [M] fs/fat/vfat.o
2025-10-02T15:31:03.3828561Z LD [M] fs/fat/msdos.o
2025-10-02T15:31:03.4830637Z CC [M] fs/exfat/inode.o
2025-10-02T15:31:03.6595635Z CC [M] drivers/pwm/pwm-pca9685.o
2025-10-02T15:31:03.7153512Z CC block/blk-mq-debugfs.o
2025-10-02T15:31:03.8006188Z CC [M] drivers/gpio/gpio-f7188x.o
2025-10-02T15:31:04.0847831Z CC kernel/crash_dump.o
2025-10-02T15:31:04.4372150Z CC [M] drivers/pwm/pwm-twl.o
2025-10-02T15:31:04.5470777Z CC [M] drivers/gpio/gpio-ich.o
2025-10-02T15:31:04.6371944Z CC kernel/jump_label.o
2025-10-02T15:31:04.7365241Z CC [M] fs/exfat/namei.o
2025-10-02T15:31:04.8102555Z CC block/blk-mq-debugfs-zoned.o
2025-10-02T15:31:05.1889449Z CC [M] drivers/pwm/pwm-twl-led.o
2025-10-02T15:31:05.4051153Z CC [M] drivers/gpio/gpio-it87.o
2025-10-02T15:31:05.4886855Z CC block/sed-opal.o
2025-10-02T15:31:05.5465133Z CC kernel/iomem.o
2025-10-02T15:31:05.7996283Z AR drivers/pwm/built-in.a
2025-10-02T15:31:06.0054195Z CC [M] fs/exfat/dir.o
2025-10-02T15:31:06.1158752Z CC [M] sound/core/oss/mixer_oss.o
2025-10-02T15:31:06.1240460Z CC kernel/rseq.o
2025-10-02T15:31:06.2322212Z CC [M] drivers/gpio/gpio-janz-ttl.o
2025-10-02T15:31:07.0291013Z CC [M] drivers/gpio/gpio-kempld.o
2025-10-02T15:31:07.2149905Z CC block/blk-pm.o
2025-10-02T15:31:07.2551808Z CC kernel/watch_queue.o
2025-10-02T15:31:07.3211008Z CC [M] fs/exfat/super.o
2025-10-02T15:31:07.6072023Z CC [M] sound/core/oss/pcm_oss.o
2025-10-02T15:31:07.6689836Z CC [M] drivers/gpio/gpio-lp3943.o
2025-10-02T15:31:07.7901113Z CC block/keyslot-manager.o
2025-10-02T15:31:08.2974068Z CC [M] fs/exfat/fatent.o
2025-10-02T15:31:08.4922979Z CC [M] drivers/gpio/gpio-lp873x.o
2025-10-02T15:31:08.5156892Z CHK kernel/kheaders_data.tar.xz
2025-10-02T15:31:08.6402314Z CC block/blk-crypto.o
2025-10-02T15:31:08.7991230Z GEN kernel/kheaders_data.tar.xz
2025-10-02T15:31:09.1230393Z CC [M] fs/exfat/cache.o
2025-10-02T15:31:09.5148703Z CC block/blk-crypto-fallback.o
2025-10-02T15:31:09.5307736Z CC [M] drivers/gpio/gpio-madera.o
2025-10-02T15:31:09.9072766Z CC [M] sound/core/oss/pcm_plugin.o
2025-10-02T15:31:10.2169180Z CC [M] fs/exfat/nls.o
2025-10-02T15:31:10.3102229Z CC [M] drivers/gpio/gpio-max3191x.o
2025-10-02T15:31:10.8187067Z AR block/built-in.a
2025-10-02T15:31:10.8515768Z CC [M] sound/core/oss/io.o
2025-10-02T15:31:11.2144209Z CC [M] sound/core/seq/oss/seq_oss.o
2025-10-02T15:31:11.3258158Z CC [M] fs/exfat/misc.o
2025-10-02T15:31:11.3922587Z CC [M] drivers/gpio/gpio-max7300.o
2025-10-02T15:31:11.7062311Z CC [M] sound/core/oss/copy.o
2025-10-02T15:31:11.9512499Z CC [M] sound/core/seq/oss/seq_oss_init.o
2025-10-02T15:31:12.1377327Z CC [M] drivers/gpio/gpio-max7301.o
2025-10-02T15:31:12.2533775Z CC [M] fs/exfat/file.o
2025-10-02T15:31:12.5087009Z CC [M] sound/core/oss/linear.o
2025-10-02T15:31:12.7431937Z CC [M] drivers/gpio/gpio-max730x.o
2025-10-02T15:31:12.8013256Z CC [M] sound/core/seq/oss/seq_oss_timer.o
2025-10-02T15:31:13.2054684Z CC [M] fs/exfat/balloc.o
2025-10-02T15:31:13.3579663Z CC [M] sound/core/oss/mulaw.o
2025-10-02T15:31:13.4264887Z CC [M] drivers/gpio/gpio-max732x.o
2025-10-02T15:31:13.6463667Z CC [M] sound/core/seq/oss/seq_oss_ioctl.o
2025-10-02T15:31:14.1307677Z LD [M] fs/exfat/exfat.o
2025-10-02T15:31:14.1969288Z CC [M] fs/isofs/namei.o
2025-10-02T15:31:14.2424875Z CC [M] sound/core/oss/route.o
2025-10-02T15:31:14.2557742Z CC [M] drivers/gpio/gpio-mb86s7x.o
2025-10-02T15:31:14.4515213Z CC [M] sound/core/seq/oss/seq_oss_event.o
2025-10-02T15:31:14.9988245Z CC [M] sound/core/oss/rate.o
2025-10-02T15:31:15.0103258Z CC [M] drivers/gpio/gpio-mc33880.o
2025-10-02T15:31:15.0716082Z CC [M] fs/isofs/inode.o
2025-10-02T15:31:15.3288997Z CC [M] sound/core/seq/oss/seq_oss_rw.o
2025-10-02T15:31:15.8359822Z CC [M] drivers/gpio/gpio-menz127.o
2025-10-02T15:31:15.9363755Z LD [M] sound/core/oss/snd-mixer-oss.o
2025-10-02T15:31:15.9511409Z LD [M] sound/core/oss/snd-pcm-oss.o
2025-10-02T15:31:16.0047285Z CC [M] sound/core/seq/seq.o
2025-10-02T15:31:16.1282300Z CC [M] sound/core/seq/oss/seq_oss_synth.o
2025-10-02T15:31:16.5802073Z CC [M] drivers/gpio/gpio-ml-ioh.o
2025-10-02T15:31:16.6960184Z CC [M] sound/core/seq/oss/seq_oss_midi.o
2025-10-02T15:31:16.8950844Z CC [M] fs/isofs/dir.o
2025-10-02T15:31:17.3636872Z CC [M] fs/hfsplus/super.o
2025-10-02T15:31:17.6971816Z CC [M] drivers/gpio/gpio-mockup.o
2025-10-02T15:31:17.7269404Z CC [M] sound/core/seq/oss/seq_oss_readq.o
2025-10-02T15:31:17.8660404Z CC [M] fs/isofs/util.o
2025-10-02T15:31:18.6113071Z CC [M] sound/core/seq/oss/seq_oss_writeq.o
2025-10-02T15:31:18.6251003Z CC [M] fs/isofs/rock.o
2025-10-02T15:31:18.6988653Z CC [M] drivers/gpio/gpio-pca953x.o
2025-10-02T15:31:18.7476952Z CC [M] fs/hfsplus/options.o
2025-10-02T15:31:19.4808664Z LD [M] sound/core/seq/oss/snd-seq-oss.o
2025-10-02T15:31:19.5860066Z CC [M] sound/core/seq/seq_lock.o
2025-10-02T15:31:19.7174762Z CC [M] fs/hfsplus/inode.o
2025-10-02T15:31:19.8297485Z CC [M] fs/isofs/export.o
2025-10-02T15:31:20.1615130Z CC [M] sound/core/seq/seq_clientmgr.o
2025-10-02T15:31:20.3544858Z CC [M] drivers/gpio/gpio-pca9570.o
2025-10-02T15:31:20.5973433Z CC [M] fs/isofs/joliet.o
2025-10-02T15:31:20.7342014Z CC [M] fs/hfsplus/ioctl.o
2025-10-02T15:31:21.2202520Z CC [M] drivers/gpio/gpio-pcf857x.o
2025-10-02T15:31:21.3932741Z CC [M] fs/isofs/compress.o
2025-10-02T15:31:21.8716037Z CC [M] fs/hfsplus/extents.o
2025-10-02T15:31:22.0475081Z CC [M] sound/core/seq/seq_memory.o
2025-10-02T15:31:22.1475060Z CC [M] drivers/gpio/gpio-pcie-idio-24.o
2025-10-02T15:31:22.6198770Z LD [M] fs/isofs/isofs.o
2025-10-02T15:31:22.7448254Z CC drivers/pci/pcie/portdrv_core.o
2025-10-02T15:31:23.0072194Z CC [M] fs/hfsplus/catalog.o
2025-10-02T15:31:23.2065933Z CC [M] sound/core/seq/seq_queue.o
2025-10-02T15:31:23.2986066Z CC [M] drivers/gpio/gpio-pci-idio-16.o
2025-10-02T15:31:23.8778845Z CC drivers/pci/pcie/portdrv_pci.o
2025-10-02T15:31:24.0582913Z CC [M] fs/hfsplus/dir.o
2025-10-02T15:31:24.1817325Z CC [M] sound/core/seq/seq_fifo.o
2025-10-02T15:31:24.2247244Z CC [M] drivers/gpio/gpio-pisosr.o
2025-10-02T15:31:24.6616757Z CC drivers/pci/pcie/err.o
2025-10-02T15:31:24.9635644Z CC [M] sound/core/seq/seq_prioq.o
2025-10-02T15:31:25.0543958Z CC [M] drivers/gpio/gpio-rdc321x.o
2025-10-02T15:31:25.1169056Z CC [M] fs/hfsplus/btree.o
2025-10-02T15:31:25.5431300Z CC drivers/pci/pcie/rcec.o
2025-10-02T15:31:25.8860004Z CC [M] drivers/gpio/gpio-sch311x.o
2025-10-02T15:31:25.9032714Z CC [M] sound/core/seq/seq_timer.o
2025-10-02T15:31:26.3592580Z CC drivers/pci/pcie/aspm.o
2025-10-02T15:31:26.4062470Z CC [M] fs/hfsplus/bnode.o
2025-10-02T15:31:26.7580804Z CC [M] drivers/gpio/gpio-sch.o
2025-10-02T15:31:26.8226156Z CC [M] sound/core/seq/seq_system.o
2025-10-02T15:31:27.5465638Z CC [M] sound/core/seq/seq_ports.o
2025-10-02T15:31:27.6346078Z CC [M] drivers/gpio/gpio-siox.o
2025-10-02T15:31:28.0367314Z CC drivers/pci/pcie/aer.o
2025-10-02T15:31:28.0621624Z CC [M] fs/hfsplus/brec.o
2025-10-02T15:31:28.4520977Z CC [M] drivers/gpio/gpio-tpic2810.o
2025-10-02T15:31:28.6883684Z CC [M] sound/core/seq/seq_info.o
2025-10-02T15:31:29.1021046Z CC [M] fs/hfsplus/bfind.o
2025-10-02T15:31:29.2929360Z CC [M] drivers/gpio/gpio-tps65086.o
2025-10-02T15:31:29.4158432Z CC [M] sound/core/seq/seq_dummy.o
2025-10-02T15:31:29.5119269Z CC drivers/pci/pcie/pme.o
2025-10-02T15:31:29.9821794Z CC [M] drivers/gpio/gpio-tps65912.o
2025-10-02T15:31:30.0048145Z CC [M] fs/hfsplus/tables.o
2025-10-02T15:31:30.1240949Z CC [M] sound/core/seq/seq_midi.o
2025-10-02T15:31:30.6702797Z CC drivers/pci/pcie/dpc.o
2025-10-02T15:31:30.7173297Z CC [M] drivers/gpio/gpio-tqmx86.o
2025-10-02T15:31:30.7449958Z CC [M] fs/hfsplus/unicode.o
2025-10-02T15:31:30.7960527Z CC [M] sound/core/seq/seq_midi_emul.o
2025-10-02T15:31:31.6226436Z CC [M] drivers/gpio/gpio-twl4030.o
2025-10-02T15:31:31.6574765Z CC drivers/pci/pcie/ptm.o
2025-10-02T15:31:31.7531126Z CC [M] sound/core/seq/seq_midi_event.o
2025-10-02T15:31:31.8756366Z CC [M] fs/hfsplus/wrapper.o
2025-10-02T15:31:32.3853782Z CC drivers/pci/pcie/edr.o
2025-10-02T15:31:32.4714166Z CC [M] sound/core/seq/seq_virmidi.o
2025-10-02T15:31:32.4957741Z CC [M] drivers/gpio/gpio-twl6040.o
2025-10-02T15:31:33.0390045Z CC [M] fs/hfsplus/bitmap.o
2025-10-02T15:31:33.3135041Z CC [M] drivers/pci/pcie/aer_inject.o
2025-10-02T15:31:33.3849923Z CC [M] drivers/gpio/gpio-ucb1400.o
2025-10-02T15:31:33.4984078Z LD [M] sound/core/seq/snd-seq.o
2025-10-02T15:31:33.5815153Z LD [M] sound/core/seq/snd-seq-dummy.o
2025-10-02T15:31:33.6086937Z LD [M] sound/core/seq/snd-seq-midi.o
2025-10-02T15:31:33.6332463Z LD [M] sound/core/seq/snd-seq-midi-emul.o
2025-10-02T15:31:33.6552350Z LD [M] sound/core/seq/snd-seq-midi-event.o
2025-10-02T15:31:33.6795153Z LD [M] sound/core/seq/snd-seq-virmidi.o
2025-10-02T15:31:33.7713229Z CC [M] sound/core/sound.o
2025-10-02T15:31:33.9252284Z CC [M] fs/hfsplus/part_tbl.o
2025-10-02T15:31:34.2417149Z CC [M] drivers/gpio/gpio-viperboard.o
2025-10-02T15:31:34.3376939Z AR drivers/pci/pcie/built-in.a
2025-10-02T15:31:34.4145174Z CC drivers/pci/hotplug/pci_hotplug_core.o
2025-10-02T15:31:34.5825819Z CC [M] sound/core/init.o
2025-10-02T15:31:34.8217169Z CC [M] fs/hfsplus/attributes.o
2025-10-02T15:31:35.0465161Z CC [M] drivers/gpio/gpio-vx855.o
2025-10-02T15:31:35.2852682Z CC drivers/pci/hotplug/cpci_hotplug_core.o
2025-10-02T15:31:35.6709224Z CC [M] fs/hfsplus/xattr.o
2025-10-02T15:31:35.7197880Z CC [M] sound/core/memory.o
2025-10-02T15:31:36.0041538Z CC [M] drivers/gpio/gpio-wcove.o
2025-10-02T15:31:36.3046793Z CC [M] sound/core/control.o
2025-10-02T15:31:36.5494582Z CC drivers/pci/hotplug/cpci_hotplug_pci.o
2025-10-02T15:31:36.8567074Z CC [M] fs/hfsplus/xattr_user.o
2025-10-02T15:31:36.8753619Z CC [M] drivers/gpio/gpio-winbond.o
2025-10-02T15:31:37.4901387Z CC drivers/pci/hotplug/acpi_pcihp.o
2025-10-02T15:31:37.7637118Z CC [M] fs/hfsplus/xattr_security.o
2025-10-02T15:31:37.8811384Z CC [M] drivers/gpio/gpio-wm831x.o
2025-10-02T15:31:38.3825990Z CC [M] sound/core/misc.o
2025-10-02T15:31:38.4955151Z CC drivers/pci/hotplug/pciehp_core.o
2025-10-02T15:31:38.5701481Z CC [M] fs/hfsplus/xattr_trusted.o
2025-10-02T15:31:38.6749763Z CC [M] drivers/gpio/gpio-wm8350.o
2025-10-02T15:31:39.2175590Z CC [M] sound/core/device.o
2025-10-02T15:31:39.3536174Z LD [M] fs/hfsplus/hfsplus.o
2025-10-02T15:31:39.4882116Z CC [M] fs/hfs/bitmap.o
2025-10-02T15:31:39.6293796Z CC [M] drivers/gpio/gpio-wm8994.o
2025-10-02T15:31:39.7623709Z CC drivers/pci/hotplug/pciehp_ctrl.o
2025-10-02T15:31:39.8645207Z CC [M] sound/core/info.o
2025-10-02T15:31:40.1910971Z CC [M] fs/hfs/bfind.o
2025-10-02T15:31:40.4620677Z CC [M] drivers/gpio/gpio-ws16c48.o
2025-10-02T15:31:40.7738214Z CC drivers/pci/hotplug/pciehp_pci.o
2025-10-02T15:31:41.0512987Z CC [M] sound/core/info_oss.o
2025-10-02T15:31:41.1270653Z CC [M] fs/hfs/bnode.o
2025-10-02T15:31:41.4516126Z CC [M] drivers/gpio/gpio-xilinx.o
2025-10-02T15:31:41.6183515Z CC drivers/pci/hotplug/pciehp_hpc.o
2025-10-02T15:31:41.8217012Z CC [M] sound/core/isadma.o
2025-10-02T15:31:42.2915401Z CC [M] drivers/gpio/gpio-xra1403.o
2025-10-02T15:31:42.4277098Z CC [M] fs/hfs/brec.o
2025-10-02T15:31:42.4674453Z CC [M] sound/core/sound_oss.o
2025-10-02T15:31:43.0648984Z CC drivers/pci/hotplug/shpchp_core.o
2025-10-02T15:31:43.2264781Z LD [M] drivers/gpio/gpio-generic.o
2025-10-02T15:31:43.2476039Z AR drivers/gpio/built-in.a
2025-10-02T15:31:43.3370798Z CC [M] sound/core/vmaster.o
2025-10-02T15:31:43.5501911Z CC [M] fs/hfs/btree.o
2025-10-02T15:31:43.8826864Z CC drivers/pci/hotplug/shpchp_ctrl.o
2025-10-02T15:31:44.0921649Z GZIP kernel/config_data.gz
2025-10-02T15:31:44.1422851Z CC [M] sound/core/ctljack.o
2025-10-02T15:31:44.4400902Z CC net/core/sock.o
2025-10-02T15:31:44.5828866Z CC [M] fs/hfs/catalog.o
2025-10-02T15:31:44.6911140Z CC [M] sound/core/jack.o
2025-10-02T15:31:45.1835608Z CC drivers/pci/hotplug/shpchp_pci.o
2025-10-02T15:31:45.5970461Z CC [M] fs/hfs/dir.o
2025-10-02T15:31:45.6470880Z CC [M] sound/core/hwdep.o
2025-10-02T15:31:46.0217959Z CC drivers/pci/hotplug/shpchp_sysfs.o
2025-10-02T15:31:46.4931862Z CC [M] fs/hfs/extent.o
2025-10-02T15:31:46.6409843Z CC [M] sound/core/timer.o
2025-10-02T15:31:47.1021042Z CC drivers/pci/hotplug/shpchp_hpc.o
2025-10-02T15:31:47.5246351Z CC [M] fs/hfs/inode.o
2025-10-02T15:31:48.4177090Z CC net/core/request_sock.o
2025-10-02T15:31:48.5247635Z CC drivers/pci/hotplug/acpiphp_core.o
2025-10-02T15:31:48.7306416Z CC [M] sound/core/hrtimer.o
2025-10-02T15:31:48.7977396Z CC [M] fs/hfs/attr.o
2025-10-02T15:31:49.1854655Z CC [M] sound/core/pcm.o
2025-10-02T15:31:49.3984140Z CC [M] fs/hfs/mdb.o
2025-10-02T15:31:49.6314818Z CC net/core/skbuff.o
2025-10-02T15:31:49.6626149Z CC drivers/pci/hotplug/acpiphp_glue.o
2025-10-02T15:31:50.1609711Z CC [M] fs/hfs/part_tbl.o
2025-10-02T15:31:50.3186126Z CC [M] sound/core/pcm_native.o
2025-10-02T15:31:50.6970969Z CC [M] fs/hfs/string.o
2025-10-02T15:31:51.0978048Z CC [M] drivers/pci/hotplug/cpcihp_zt5550.o
2025-10-02T15:31:51.4013710Z CC [M] fs/hfs/super.o
2025-10-02T15:31:51.9591717Z CC [M] drivers/pci/hotplug/cpcihp_generic.o
2025-10-02T15:31:52.4281505Z CC [M] fs/hfs/sysdep.o
2025-10-02T15:31:52.6486308Z CC [M] drivers/pci/hotplug/acpiphp_ibm.o
2025-10-02T15:31:53.1309137Z CC [M] fs/hfs/trans.o
2025-10-02T15:31:53.5457815Z CC [M] sound/core/pcm_lib.o
2025-10-02T15:31:53.6533134Z LD [M] fs/hfs/hfs.o
2025-10-02T15:31:53.7227919Z CC [M] fs/ecryptfs/dentry.o
2025-10-02T15:31:53.7899106Z AR drivers/pci/hotplug/built-in.a
2025-10-02T15:31:53.9360434Z CC drivers/pci/controller/dwc/pcie-designware.o
2025-10-02T15:31:54.6045887Z CC [M] fs/ecryptfs/file.o
2025-10-02T15:31:54.8951671Z CC drivers/pci/controller/dwc/pcie-designware-host.o
2025-10-02T15:31:55.2388353Z CC net/core/datagram.o
2025-10-02T15:31:55.5198156Z CC [M] sound/core/pcm_misc.o
2025-10-02T15:31:55.6266063Z CC [M] fs/ecryptfs/inode.o
2025-10-02T15:31:55.9032273Z CC drivers/pci/controller/dwc/pcie-designware-plat.o
2025-10-02T15:31:56.2768756Z CC [M] sound/core/pcm_memory.o
2025-10-02T15:31:56.3611638Z CC kernel/configs.o
2025-10-02T15:31:56.5770340Z CC drivers/pci/controller/dwc/pci-meson.o
2025-10-02T15:31:56.8620320Z CC net/core/stream.o
2025-10-02T15:31:56.9713946Z CC [M] kernel/kheaders.o
2025-10-02T15:31:57.1172294Z CC [M] fs/ecryptfs/main.o
2025-10-02T15:31:57.1838393Z CC [M] sound/core/memalloc.o
2025-10-02T15:31:57.4825580Z AR kernel/built-in.a
2025-10-02T15:31:57.5711696Z CC [M] fs/ecryptfs/super.o
2025-10-02T15:31:57.6723522Z AR drivers/pci/controller/dwc/built-in.a
2025-10-02T15:31:57.7292066Z AR drivers/pci/controller/mobiveil/built-in.a
2025-10-02T15:31:57.7770931Z CC [M] drivers/pci/controller/pci-hyperv.o
2025-10-02T15:31:57.8618456Z CC [M] sound/core/pcm_timer.o
2025-10-02T15:31:58.0979051Z CC net/core/scm.o
2025-10-02T15:31:58.3396540Z CC [M] fs/ecryptfs/mmap.o
2025-10-02T15:31:58.3406795Z CC [M] sound/i2c/other/ak4117.o
2025-10-02T15:31:58.6369664Z CC [M] sound/core/sgbuf.o
2025-10-02T15:31:59.3577335Z CC [M] sound/i2c/other/ak4xxx-adda.o
2025-10-02T15:31:59.3704683Z CC [M] fs/ecryptfs/read_write.o
2025-10-02T15:31:59.4055722Z CC net/core/gen_stats.o
2025-10-02T15:31:59.4390866Z CC [M] sound/core/pcm_drm_eld.o
2025-10-02T15:31:59.6499410Z CC [M] drivers/pci/controller/pci-hyperv-intf.o
2025-10-02T15:32:00.0999735Z CC [M] sound/core/pcm_iec958.o
2025-10-02T15:32:00.2311425Z CC [M] drivers/pci/controller/vmd.o
2025-10-02T15:32:00.2722673Z CC [M] sound/i2c/other/ak4114.o
2025-10-02T15:32:00.3668853Z CC [M] fs/ecryptfs/crypto.o
2025-10-02T15:32:00.6298718Z CC net/core/gen_estimator.o
2025-10-02T15:32:00.8410440Z CC [M] sound/core/pcm_dmaengine.o
2025-10-02T15:32:01.0708374Z AR drivers/pci/controller/built-in.a
2025-10-02T15:32:01.1091584Z CC [M] sound/i2c/other/ak4113.o
2025-10-02T15:32:01.1242982Z AR drivers/pci/switch/built-in.a
2025-10-02T15:32:01.1354469Z CC [M] drivers/pci/switch/switchtec.o
2025-10-02T15:32:01.9359208Z CC [M] sound/core/seq_device.o
2025-10-02T15:32:01.9766885Z LD [M] sound/i2c/other/snd-ak4xxx-adda.o
2025-10-02T15:32:01.9893296Z CC [M] sound/i2c/other/pt2258.o
2025-10-02T15:32:02.0234781Z CC net/core/net_namespace.o
2025-10-02T15:32:02.0572299Z CC [M] fs/ecryptfs/keystore.o
2025-10-02T15:32:02.6465985Z LD [M] sound/i2c/other/snd-ak4117.o
2025-10-02T15:32:02.6473738Z CC [M] sound/core/rawmidi.o
2025-10-02T15:32:02.6621974Z LD [M] sound/i2c/other/snd-ak4114.o
2025-10-02T15:32:02.6727838Z CC drivers/pci/access.o
2025-10-02T15:32:02.6760651Z LD [M] sound/i2c/other/snd-ak4113.o
2025-10-02T15:32:02.6884301Z LD [M] sound/i2c/other/snd-pt2258.o
2025-10-02T15:32:02.7443009Z CC [M] sound/i2c/cs8427.o
2025-10-02T15:32:03.6838170Z CC net/core/secure_seq.o
2025-10-02T15:32:03.7143718Z CC [M] fs/ecryptfs/kthread.o
2025-10-02T15:32:03.7734562Z CC drivers/pci/bus.o
2025-10-02T15:32:03.7993639Z CC [M] sound/i2c/i2c.o
2025-10-02T15:32:04.4669271Z CC [M] sound/core/compress_offload.o
2025-10-02T15:32:04.5391798Z LD [M] sound/i2c/snd-cs8427.o
2025-10-02T15:32:04.5605199Z LD [M] sound/i2c/snd-i2c.o
2025-10-02T15:32:04.6339117Z CC net/ethernet/eth.o
2025-10-02T15:32:04.6692359Z CC drivers/pci/probe.o
2025-10-02T15:32:04.6837394Z CC [M] fs/ecryptfs/debug.o
2025-10-02T15:32:04.9558874Z CC net/core/flow_dissector.o
2025-10-02T15:32:05.4357692Z LD [M] fs/ecryptfs/ecryptfs.o
2025-10-02T15:32:05.5229245Z CC [M] fs/nfs/filelayout/filelayout.o
2025-10-02T15:32:05.6191262Z LD [M] sound/core/snd.o
2025-10-02T15:32:05.6868522Z LD [M] sound/core/snd-hwdep.o
2025-10-02T15:32:05.7118029Z LD [M] sound/core/snd-timer.o
2025-10-02T15:32:05.7427049Z LD [M] sound/core/snd-hrtimer.o
2025-10-02T15:32:05.7646907Z LD [M] sound/core/snd-pcm.o
2025-10-02T15:32:05.8326885Z LD [M] sound/core/snd-pcm-dmaengine.o
2025-10-02T15:32:05.8589441Z LD [M] sound/core/snd-seq-device.o
2025-10-02T15:32:05.8869955Z LD [M] sound/core/snd-rawmidi.o
2025-10-02T15:32:05.9150115Z LD [M] sound/core/snd-compress.o
2025-10-02T15:32:06.1140537Z AR net/ethernet/built-in.a
2025-10-02T15:32:06.1169248Z CC [M] sound/drivers/opl3/opl3_lib.o
2025-10-02T15:32:06.2138083Z CC [M] fs/nfs/blocklayout/blocklayout.o
2025-10-02T15:32:06.5933863Z CC drivers/pci/host-bridge.o
2025-10-02T15:32:06.7987841Z CC [M] sound/drivers/opl3/opl3_synth.o
2025-10-02T15:32:07.2941331Z CC drivers/pci/remove.o
2025-10-02T15:32:07.3924688Z CC net/core/sysctl_net_core.o
2025-10-02T15:32:07.5795901Z CC [M] fs/nfs/filelayout/filelayoutdev.o
2025-10-02T15:32:07.7121638Z CC [M] sound/drivers/opl3/opl3_seq.o
2025-10-02T15:32:07.9663361Z CC drivers/pci/pci.o
2025-10-02T15:32:08.0318587Z CC [M] fs/nfs/blocklayout/dev.o
2025-10-02T15:32:08.3163019Z CC [M] sound/drivers/opl3/opl3_midi.o
2025-10-02T15:32:08.6571705Z CC net/core/dev.o
2025-10-02T15:32:09.1401288Z LD [M] fs/nfs/filelayout/nfs_layout_nfsv41_files.o
2025-10-02T15:32:09.2343632Z CC [M] sound/drivers/mpu401/mpu401_uart.o
2025-10-02T15:32:09.3029109Z CC [M] sound/drivers/opl3/opl3_drums.o
2025-10-02T15:32:09.6200447Z CC [M] fs/nfs/blocklayout/extent_tree.o
2025-10-02T15:32:09.9184509Z CC [M] sound/drivers/opl3/opl3_oss.o
2025-10-02T15:32:09.9641314Z CC [M] sound/drivers/mpu401/mpu401.o
2025-10-02T15:32:10.5727667Z LD [M] sound/drivers/opl3/snd-opl3-lib.o
2025-10-02T15:32:10.5989305Z LD [M] sound/drivers/opl3/snd-opl3-synth.o
2025-10-02T15:32:10.7286495Z CC drivers/video/console/dummycon.o
2025-10-02T15:32:10.8351576Z LD [M] sound/drivers/mpu401/snd-mpu401-uart.o
2025-10-02T15:32:10.8597717Z LD [M] sound/drivers/mpu401/snd-mpu401.o
2025-10-02T15:32:10.9602773Z CC [M] sound/drivers/vx/vx_core.o
2025-10-02T15:32:11.2852388Z CC [M] fs/nfs/blocklayout/rpc_pipefs.o
2025-10-02T15:32:11.3663811Z CC drivers/pci/pci-driver.o
2025-10-02T15:32:11.4485074Z CC drivers/video/console/vgacon.o
2025-10-02T15:32:11.9745085Z CC [M] sound/drivers/vx/vx_hwdep.o
2025-10-02T15:32:12.6272056Z CC [M] sound/drivers/vx/vx_pcm.o
2025-10-02T15:32:12.7094128Z LD [M] fs/nfs/blocklayout/blocklayoutdriver.o
2025-10-02T15:32:12.8135007Z CC drivers/pci/search.o
2025-10-02T15:32:12.8187583Z CC [M] fs/nfs/flexfilelayout/flexfilelayout.o
2025-10-02T15:32:12.9592983Z AR drivers/video/console/built-in.a
2025-10-02T15:32:13.0178461Z CC drivers/video/backlight/backlight.o
2025-10-02T15:32:13.7398863Z CC drivers/pci/pci-sysfs.o
2025-10-02T15:32:13.8081846Z CC [M] sound/drivers/vx/vx_mixer.o
2025-10-02T15:32:14.1324354Z CC [M] drivers/video/backlight/ams369fg06.o
2025-10-02T15:32:14.8395285Z CC [M] sound/drivers/vx/vx_cmd.o
2025-10-02T15:32:15.0925156Z CC [M] drivers/video/backlight/lcd.o
2025-10-02T15:32:15.3103781Z CC drivers/pci/rom.o
2025-10-02T15:32:15.5129196Z CC [M] fs/nfs/flexfilelayout/flexfilelayoutdev.o
2025-10-02T15:32:15.5549731Z CC [M] sound/drivers/vx/vx_uer.o
2025-10-02T15:32:15.9138308Z CC [M] drivers/video/backlight/hx8357.o
2025-10-02T15:32:16.1350925Z CC drivers/pci/setup-res.o
2025-10-02T15:32:16.2342211Z LD [M] sound/drivers/vx/snd-vx-lib.o
2025-10-02T15:32:16.2938686Z CC [M] sound/drivers/dummy.o
2025-10-02T15:32:16.7113110Z CC net/core/dev_addr_lists.o
2025-10-02T15:32:16.8916738Z CC [M] drivers/video/backlight/ili922x.o
2025-10-02T15:32:16.9624547Z CC drivers/pci/irq.o
2025-10-02T15:32:17.2066300Z CC [M] sound/drivers/aloop.o
2025-10-02T15:32:17.3718802Z LD [M] fs/nfs/flexfilelayout/nfs_layout_flexfiles.o
2025-10-02T15:32:17.4481326Z CC [M] fs/nfs/client.o
2025-10-02T15:32:17.5025654Z CC drivers/pci/vpd.o
2025-10-02T15:32:17.9576192Z CC [M] drivers/video/backlight/ili9320.o
2025-10-02T15:32:18.2685098Z CC net/core/dst.o
2025-10-02T15:32:18.4916389Z CC [M] sound/drivers/virmidi.o
2025-10-02T15:32:18.5491015Z CC drivers/pci/setup-bus.o
2025-10-02T15:32:18.8663648Z CC [M] drivers/video/backlight/l4f00242t03.o
2025-10-02T15:32:19.0273235Z CC [M] sound/drivers/serial-u16550.o
2025-10-02T15:32:19.3576164Z CC [M] fs/nfs/dir.o
2025-10-02T15:32:19.7568622Z CC net/core/netevent.o
2025-10-02T15:32:19.9078703Z CC [M] sound/drivers/mtpav.o
2025-10-02T15:32:19.9415120Z CC [M] drivers/video/backlight/lms283gf05.o
2025-10-02T15:32:20.5618482Z CC net/core/neighbour.o
2025-10-02T15:32:20.5875779Z CC [M] sound/drivers/mts64.o
2025-10-02T15:32:20.6035398Z CC drivers/pci/vc.o
2025-10-02T15:32:20.8560774Z CC [M] drivers/video/backlight/lms501kf03.o
2025-10-02T15:32:21.4025477Z CC drivers/pci/mmap.o
2025-10-02T15:32:21.5247266Z CC [M] sound/drivers/portman2x4.o
2025-10-02T15:32:21.8400590Z CC [M] drivers/video/backlight/ltv350qv.o
2025-10-02T15:32:21.9444841Z CC drivers/pci/setup-irq.o
2025-10-02T15:32:22.3012024Z LD [M] sound/drivers/snd-dummy.o
2025-10-02T15:32:22.3267023Z LD [M] sound/drivers/snd-aloop.o
2025-10-02T15:32:22.3517301Z LD [M] sound/drivers/snd-virmidi.o
2025-10-02T15:32:22.3746160Z LD [M] sound/drivers/snd-serial-u16550.o
2025-10-02T15:32:22.4000742Z LD [M] sound/drivers/snd-mtpav.o
2025-10-02T15:32:22.4250103Z LD [M] sound/drivers/snd-mts64.o
2025-10-02T15:32:22.4518386Z LD [M] sound/drivers/snd-portman2x4.o
2025-10-02T15:32:22.5688019Z CC drivers/pci/proc.o
2025-10-02T15:32:22.6313750Z CC [M] drivers/video/backlight/otm3225a.o
2025-10-02T15:32:22.8036046Z CC [M] fs/nfs/file.o
2025-10-02T15:32:23.0511162Z CC [M] sound/isa/sb/sb_common.o
2025-10-02T15:32:23.3931539Z CC [M] drivers/video/backlight/platform_lcd.o
2025-10-02T15:32:23.5708919Z CC drivers/pci/slot.o
2025-10-02T15:32:23.8640777Z CC [M] sound/isa/sb/sb_mixer.o
2025-10-02T15:32:24.2749938Z CC [M] drivers/video/backlight/tdo24m.o
2025-10-02T15:32:24.3916668Z CC net/core/rtnetlink.o
2025-10-02T15:32:24.4861354Z CC drivers/pci/pci-acpi.o
2025-10-02T15:32:24.5573051Z CC [M] fs/nfs/getroot.o
2025-10-02T15:32:24.9867700Z LD [M] sound/isa/sb/snd-sb-common.o
2025-10-02T15:32:25.1084165Z CC [M] drivers/video/backlight/vgg2432a4.o
2025-10-02T15:32:25.2684530Z CC [M] sound/pci/ac97/ac97_codec.o
2025-10-02T15:32:25.5772939Z CC drivers/pci/quirks.o
2025-10-02T15:32:25.8586123Z CC [M] drivers/video/backlight/88pm860x_bl.o
2025-10-02T15:32:25.9972851Z CC [M] fs/nfs/inode.o
2025-10-02T15:32:26.5812848Z CC [M] drivers/video/backlight/aat2870_bl.o
2025-10-02T15:32:27.3731759Z CC [M] drivers/video/backlight/adp5520_bl.o
2025-10-02T15:32:28.0629699Z CC drivers/pci/msi.o
2025-10-02T15:32:28.3570968Z CC [M] drivers/video/backlight/adp8860_bl.o
2025-10-02T15:32:28.6377004Z CC net/core/utils.o
2025-10-02T15:32:28.6808993Z CC [M] fs/nfs/super.o
2025-10-02T15:32:29.5663051Z CC drivers/pci/ats.o
2025-10-02T15:32:29.6443741Z CC [M] drivers/video/backlight/adp8870_bl.o
2025-10-02T15:32:29.9488813Z CC net/core/link_watch.o
2025-10-02T15:32:30.1584372Z CC [M] sound/pci/ac97/ac97_pcm.o
2025-10-02T15:32:30.5245053Z CC drivers/pci/iov.o
2025-10-02T15:32:30.7018934Z CC [M] fs/nfs/io.o
2025-10-02T15:32:30.7039179Z CC [M] drivers/video/backlight/apple_bl.o
2025-10-02T15:32:31.0612670Z CC net/core/filter.o
2025-10-02T15:32:31.1954514Z CC [M] sound/pci/ac97/ac97_proc.o
2025-10-02T15:32:31.4190957Z CC [M] drivers/video/backlight/as3711_bl.o
2025-10-02T15:32:31.7561650Z CC drivers/pci/pci-label.o
2025-10-02T15:32:31.9122412Z CC [M] fs/nfs/direct.o
2025-10-02T15:32:32.1378160Z CC [M] drivers/video/backlight/bd6107.o
2025-10-02T15:32:32.3960822Z LD [M] sound/pci/ac97/snd-ac97-codec.o
2025-10-02T15:32:32.4991429Z CC [M] sound/pci/ali5451/ali5451.o
2025-10-02T15:32:32.6780942Z CC drivers/pci/pci-stub.o
2025-10-02T15:32:32.8194844Z CC [M] drivers/video/backlight/da903x_bl.o
2025-10-02T15:32:33.3538003Z CC drivers/pci/p2pdma.o
2025-10-02T15:32:33.5357414Z CC [M] fs/nfs/pagelist.o
2025-10-02T15:32:33.7887470Z CC [M] drivers/video/backlight/da9052_bl.o
2025-10-02T15:32:34.2747044Z LD [M] sound/pci/ali5451/snd-ali5451.o
2025-10-02T15:32:34.3681219Z CC [M] sound/pci/asihpi/asihpi.o
2025-10-02T15:32:34.4809010Z CC [M] drivers/pci/pci-pf-stub.o
2025-10-02T15:32:34.6393637Z CC [M] drivers/video/backlight/gpio_backlight.o
2025-10-02T15:32:35.2234067Z CC [M] drivers/pci/xen-pcifront.o
2025-10-02T15:32:35.4743177Z CC [M] drivers/video/backlight/ktd253-backlight.o
2025-10-02T15:32:35.6024085Z CC [M] fs/nfs/read.o
2025-10-02T15:32:36.2661425Z CC [M] sound/pci/asihpi/hpioctl.o
2025-10-02T15:32:36.3291201Z CC [M] drivers/video/backlight/lm3533_bl.o
2025-10-02T15:32:36.5629639Z AR drivers/pci/built-in.a
2025-10-02T15:32:36.6421525Z CC [M] sound/pci/asihpi/hpimsginit.o
2025-10-02T15:32:37.2851276Z AR virt/lib/built-in.a
2025-10-02T15:32:37.2932915Z CC [M] drivers/video/backlight/lm3630a_bl.o
2025-10-02T15:32:37.3007758Z CC [M] virt/lib/irqbypass.o
2025-10-02T15:32:37.3268843Z CC [M] sound/pci/asihpi/hpicmn.o
2025-10-02T15:32:37.4397353Z CC [M] fs/nfs/symlink.o
2025-10-02T15:32:37.9872075Z AR virt/built-in.a
2025-10-02T15:32:38.0251213Z CC [M] drivers/video/backlight/lm3639_bl.o
2025-10-02T15:32:38.2052648Z CC [M] sound/pci/asihpi/hpifunc.o
2025-10-02T15:32:38.3171221Z CC [M] sound/pci/au88x0/au8810.o
2025-10-02T15:32:38.4872134Z CC net/core/sock_diag.o
2025-10-02T15:32:38.7344830Z CC [M] fs/nfs/unlink.o
2025-10-02T15:32:39.0057866Z CC [M] drivers/video/backlight/lp855x_bl.o
2025-10-02T15:32:39.5970248Z CC net/core/dev_ioctl.o
2025-10-02T15:32:40.0816084Z CC [M] sound/pci/asihpi/hpidebug.o
2025-10-02T15:32:40.1565509Z CC [M] drivers/video/backlight/lp8788_bl.o
2025-10-02T15:32:40.3331971Z CC [M] fs/nfs/write.o
2025-10-02T15:32:40.7433603Z CC [M] sound/pci/asihpi/hpidspcd.o
2025-10-02T15:32:41.0140192Z CC net/core/tso.o
2025-10-02T15:32:41.1155176Z CC [M] drivers/video/backlight/lv5207lp.o
2025-10-02T15:32:41.2160378Z CC [M] sound/pci/au88x0/au8820.o
2025-10-02T15:32:41.3326232Z CC [M] sound/pci/asihpi/hpios.o
2025-10-02T15:32:41.9475703Z CC [M] drivers/video/backlight/max8925_bl.o
2025-10-02T15:32:41.9700570Z CC [M] sound/pci/asihpi/hpi6000.o
2025-10-02T15:32:42.1381701Z CC net/core/sock_reuseport.o
2025-10-02T15:32:42.8941657Z CC [M] drivers/video/backlight/pandora_bl.o
2025-10-02T15:32:43.0787449Z CC [M] fs/nfs/namespace.o
2025-10-02T15:32:43.3267945Z CC [M] sound/pci/asihpi/hpi6205.o
2025-10-02T15:32:43.4284523Z CC net/core/fib_notifier.o
2025-10-02T15:32:43.5909050Z CC [M] sound/pci/au88x0/au8830.o
2025-10-02T15:32:43.6803819Z CC [M] drivers/video/backlight/pcf50633-backlight.o
2025-10-02T15:32:44.4396593Z CC [M] fs/nfs/mount_clnt.o
2025-10-02T15:32:44.4762177Z CC net/core/xdp.o
2025-10-02T15:32:44.8493505Z CC [M] sound/pci/asihpi/hpimsgx.o
2025-10-02T15:32:44.8732828Z CC [M] drivers/video/backlight/pwm_bl.o
2025-10-02T15:32:45.8631964Z CC [M] fs/nfs/nfstrace.o
2025-10-02T15:32:45.9141962Z CC [M] drivers/video/backlight/qcom-wled.o
2025-10-02T15:32:45.9325400Z LD [M] sound/pci/asihpi/snd-asihpi.o
2025-10-02T15:32:46.0192322Z CC net/core/flow_offload.o
2025-10-02T15:32:46.0332655Z CC [M] fs/nfsd/trace.o
2025-10-02T15:32:46.6567178Z LD [M] sound/pci/au88x0/snd-au8810.o
2025-10-02T15:32:46.6909983Z LD [M] sound/pci/au88x0/snd-au8820.o
2025-10-02T15:32:46.7207200Z LD [M] sound/pci/au88x0/snd-au8830.o
2025-10-02T15:32:46.7794902Z CC [M] drivers/video/backlight/kb3886_bl.o
2025-10-02T15:32:46.8244433Z CC [M] sound/pci/aw2/aw2-alsa.o
2025-10-02T15:32:47.4777284Z CC net/core/net-sysfs.o
2025-10-02T15:32:47.5500111Z CC [M] drivers/video/backlight/sky81452-backlight.o
2025-10-02T15:32:47.7609446Z CC [M] sound/pci/aw2/aw2-saa7146.o
2025-10-02T15:32:48.5222133Z CC [M] drivers/video/backlight/wm831x_bl.o
2025-10-02T15:32:48.5568396Z LD [M] sound/pci/aw2/snd-aw2.o
2025-10-02T15:32:48.6056867Z CC [M] sound/pci/ctxfi/xfi.o
2025-10-02T15:32:49.3401208Z CC [M] drivers/video/backlight/arcxcnn_bl.o
2025-10-02T15:32:49.3819410Z CC [M] sound/pci/ctxfi/ctatc.o
2025-10-02T15:32:49.5330861Z CC net/core/page_pool.o
2025-10-02T15:32:49.5389814Z CC [M] fs/nfs/export.o
2025-10-02T15:32:50.3791415Z CC [M] drivers/video/backlight/rave-sp-backlight.o
2025-10-02T15:32:50.6136761Z CC [M] fs/nfsd/nfssvc.o
2025-10-02T15:32:50.6262946Z CC net/core/net-procfs.o
2025-10-02T15:32:50.7975110Z CC [M] sound/pci/ctxfi/ctvmem.o
2025-10-02T15:32:50.8820454Z CC [M] fs/nfs/sysfs.o
2025-10-02T15:32:51.1860200Z AR drivers/video/backlight/built-in.a
2025-10-02T15:32:51.4427084Z CC drivers/video/fbdev/core/fb_cmdline.o
2025-10-02T15:32:51.5205481Z CC [M] sound/pci/ctxfi/ctpcm.o
2025-10-02T15:32:51.7322375Z CC net/core/netpoll.o
2025-10-02T15:32:52.0812698Z CC drivers/video/fbdev/core/fb_notify.o
2025-10-02T15:32:52.1952966Z CC [M] fs/nfs/fs_context.o
2025-10-02T15:32:52.2955970Z CC [M] sound/pci/ctxfi/ctmixer.o
2025-10-02T15:32:52.6545574Z CC [M] fs/nfsd/nfsctl.o
2025-10-02T15:32:52.7574778Z CC drivers/video/fbdev/core/fbmem.o
2025-10-02T15:32:53.4984167Z CC [M] sound/pci/ctxfi/ctresource.o
2025-10-02T15:32:53.6132550Z CC net/core/fib_rules.o
2025-10-02T15:32:53.8124618Z CC [M] fs/nfs/sysctl.o
2025-10-02T15:32:54.1004366Z CC drivers/video/fbdev/core/fbmon.o
2025-10-02T15:32:54.3850531Z CC [M] sound/pci/ctxfi/ctsrc.o
2025-10-02T15:32:54.8328068Z CC [M] fs/nfs/fscache.o
2025-10-02T15:32:54.9478176Z CC drivers/video/fbdev/core/fbcmap.o
2025-10-02T15:32:55.0533607Z CC [M] fs/nfsd/nfsfh.o
2025-10-02T15:32:55.3251046Z CC [M] sound/pci/ctxfi/ctamixer.o
2025-10-02T15:32:55.4151762Z CC net/core/net-traces.o
2025-10-02T15:32:55.9438993Z CC drivers/video/fbdev/core/fbsysfs.o
2025-10-02T15:32:56.1618517Z CC [M] sound/pci/ctxfi/ctdaio.o
2025-10-02T15:32:56.4581886Z CC [M] fs/nfs/fscache-index.o
2025-10-02T15:32:56.9262845Z CC drivers/video/fbdev/core/modedb.o
2025-10-02T15:32:57.0518553Z CC [M] fs/nfsd/vfs.o
2025-10-02T15:32:57.1613400Z CC [M] sound/pci/ctxfi/ctimap.o
2025-10-02T15:32:57.4785764Z CC [M] sound/pci/ctxfi/cthardware.o
2025-10-02T15:32:57.6444707Z CC [M] fs/nfs/nfs2super.o
2025-10-02T15:32:58.1194826Z CC drivers/video/fbdev/core/fbcvt.o
2025-10-02T15:32:58.1730446Z CC [M] sound/pci/ctxfi/cttimer.o
2025-10-02T15:32:58.8098482Z CC [M] fs/nfs/proc.o
2025-10-02T15:32:58.9534667Z CC [M] sound/pci/ctxfi/cthw20k2.o
2025-10-02T15:32:59.0439014Z CC drivers/video/fbdev/core/fb_defio.o
2025-10-02T15:32:59.8123492Z CC [M] fs/nfsd/export.o
2025-10-02T15:32:59.8989236Z CC net/core/drop_monitor.o
2025-10-02T15:33:00.0378107Z CC drivers/video/fbdev/core/fbcon.o
2025-10-02T15:33:00.3803545Z CC [M] sound/pci/ctxfi/cthw20k1.o
2025-10-02T15:33:00.5544622Z CC [M] fs/nfs/nfs2xdr.o
2025-10-02T15:33:01.7896762Z CC net/core/timestamping.o
2025-10-02T15:33:01.9540686Z LD [M] sound/pci/ctxfi/snd-ctxfi.o
2025-10-02T15:33:02.0230775Z CC [M] sound/pci/ca0106/ca0106_main.o
2025-10-02T15:33:02.1898363Z CC [M] fs/nfsd/auth.o
2025-10-02T15:33:02.5080082Z CC [M] fs/nfs/nfs3super.o
2025-10-02T15:33:02.7820717Z CC drivers/video/fbdev/core/bitblit.o
2025-10-02T15:33:03.0875813Z CC net/core/ptp_classifier.o
2025-10-02T15:33:03.2466647Z CC [M] sound/pci/ca0106/ca0106_mixer.o
2025-10-02T15:33:03.2673022Z CC [M] fs/nfsd/lockd.o
2025-10-02T15:33:03.7099823Z CC [M] fs/nfs/nfs3client.o
2025-10-02T15:33:03.9065407Z CC drivers/video/fbdev/core/softcursor.o
2025-10-02T15:33:04.1998223Z CC [M] sound/pci/ca0106/ca_midi.o
2025-10-02T15:33:04.2901955Z CC net/core/netprio_cgroup.o
2025-10-02T15:33:04.4052969Z CC [M] fs/nfsd/nfscache.o
2025-10-02T15:33:04.6817238Z CC [M] sound/pci/ca0106/ca0106_proc.o
2025-10-02T15:33:04.6911241Z CC drivers/video/fbdev/core/tileblit.o
2025-10-02T15:33:04.7610646Z CC [M] fs/nfs/nfs3proc.o
2025-10-02T15:33:05.5114686Z CC drivers/video/fbdev/core/fbcon_rotate.o
2025-10-02T15:33:05.5256792Z LD [M] sound/pci/ca0106/snd-ca0106.o
2025-10-02T15:33:05.5404204Z CC net/core/netclassid_cgroup.o
2025-10-02T15:33:05.6037898Z CC [M] sound/pci/cs46xx/cs46xx.o
2025-10-02T15:33:06.3040015Z CC [M] fs/nfsd/stats.o
2025-10-02T15:33:06.4195238Z CC [M] sound/pci/cs46xx/cs46xx_lib.o
2025-10-02T15:33:06.4931359Z CC drivers/video/fbdev/core/fbcon_cw.o
2025-10-02T15:33:06.6084413Z CC [M] fs/nfs/nfs3xdr.o
2025-10-02T15:33:06.7055552Z CC net/core/lwtunnel.o
2025-10-02T15:33:07.5421026Z CC [M] fs/nfsd/filecache.o
2025-10-02T15:33:07.7394216Z CC drivers/video/fbdev/core/fbcon_ud.o
2025-10-02T15:33:07.9124044Z CC net/core/lwt_bpf.o
2025-10-02T15:33:08.7145325Z CC [M] fs/nfs/nfs3acl.o
2025-10-02T15:33:08.7454882Z CC [M] sound/pci/cs46xx/dsp_spos.o
2025-10-02T15:33:08.8584409Z CC drivers/video/fbdev/core/fbcon_ccw.o
2025-10-02T15:33:09.6527632Z CC net/core/dst_cache.o
2025-10-02T15:33:09.9605744Z CC drivers/video/fbdev/core/cfbfillrect.o
2025-10-02T15:33:10.2017006Z CC [M] sound/pci/cs46xx/dsp_spos_scb_lib.o
2025-10-02T15:33:10.2444973Z CC [M] fs/nfsd/nfs3proc.o
2025-10-02T15:33:10.3204413Z CC [M] fs/nfs/nfs4proc.o
2025-10-02T15:33:10.8908151Z CC net/core/devlink.o
2025-10-02T15:33:11.0213409Z CC drivers/video/fbdev/core/cfbcopyarea.o
2025-10-02T15:33:11.4812028Z LD [M] sound/pci/cs46xx/snd-cs46xx.o
2025-10-02T15:33:11.5650756Z CC [M] sound/pci/lola/lola.o
2025-10-02T15:33:11.9491161Z CC [M] fs/nfsd/nfs3xdr.o
2025-10-02T15:33:12.2150833Z CC drivers/video/fbdev/core/cfbimgblt.o
2025-10-02T15:33:12.5659708Z CC [M] sound/pci/lola/lola_pcm.o
2025-10-02T15:33:13.1376939Z CC [M] drivers/video/fbdev/core/sysfillrect.o
2025-10-02T15:33:13.8130398Z CC [M] sound/pci/lola/lola_clock.o
2025-10-02T15:33:13.9070938Z CC [M] fs/nfsd/nfs3acl.o
2025-10-02T15:33:14.0424559Z CC [M] drivers/video/fbdev/core/syscopyarea.o
2025-10-02T15:33:14.6485057Z CC [M] sound/pci/lola/lola_mixer.o
2025-10-02T15:33:15.1096365Z CC [M] drivers/video/fbdev/core/sysimgblt.o
2025-10-02T15:33:15.1347317Z CC [M] fs/nfsd/nfs4proc.o
2025-10-02T15:33:15.6955241Z CC [M] sound/pci/lola/lola_proc.o
2025-10-02T15:33:16.1154421Z CC [M] drivers/video/fbdev/core/fb_sys_fops.o
2025-10-02T15:33:16.5268820Z LD [M] sound/pci/lola/snd-lola.o
2025-10-02T15:33:16.5804998Z CC [M] sound/pci/lx6464es/lx6464es.o
2025-10-02T15:33:16.8796079Z AR drivers/video/fbdev/core/built-in.a
2025-10-02T15:33:17.0065962Z AR drivers/video/fbdev/omap2/omapfb/dss/built-in.a
2025-10-02T15:33:17.0787073Z AR drivers/video/fbdev/omap2/omapfb/displays/built-in.a
2025-10-02T15:33:17.1220447Z AR drivers/video/fbdev/omap2/omapfb/built-in.a
2025-10-02T15:33:17.1616022Z AR drivers/video/fbdev/omap2/built-in.a
2025-10-02T15:33:17.2044749Z CC drivers/video/fbdev/vesafb.o
2025-10-02T15:33:17.5183888Z CC [M] fs/nfs/nfs4xdr.o
2025-10-02T15:33:17.6709291Z CC [M] sound/pci/lx6464es/lx_core.o
2025-10-02T15:33:18.2070757Z CC drivers/video/fbdev/efifb.o
2025-10-02T15:33:18.3056887Z CC [M] fs/nfsd/nfs4xdr.o
2025-10-02T15:33:18.3062858Z CC net/core/gro_cells.o
2025-10-02T15:33:18.6994287Z LD [M] sound/pci/lx6464es/snd-lx6464es.o
2025-10-02T15:33:18.7509307Z CC [M] sound/pci/echoaudio/darla20.o
2025-10-02T15:33:19.3400902Z CC net/core/skmsg.o
2025-10-02T15:33:19.5655618Z CC drivers/video/fbdev/simplefb.o
2025-10-02T15:33:20.5246278Z CC [M] sound/pci/echoaudio/gina20.o
2025-10-02T15:33:20.7168656Z CC [M] drivers/video/fbdev/xen-fbfront.o
2025-10-02T15:33:21.5075506Z CC net/core/sock_map.o
2025-10-02T15:33:21.9126278Z CC [M] drivers/video/fbdev/hyperv_fb.o
2025-10-02T15:33:22.6619077Z CC [M] sound/pci/echoaudio/layla20.o
2025-10-02T15:33:22.8236231Z CC [M] fs/nfsd/nfs4state.o
2025-10-02T15:33:23.0252183Z AR drivers/video/fbdev/built-in.a
2025-10-02T15:33:23.0636562Z CC drivers/video/hdmi.o
2025-10-02T15:33:23.6694601Z CC [M] fs/nfs/nfs4state.o
2025-10-02T15:33:23.7101034Z CC net/core/bpf_sk_storage.o
2025-10-02T15:33:24.0725061Z CC drivers/video/display_timing.o
2025-10-02T15:33:24.4389276Z CC drivers/video/videomode.o
2025-10-02T15:33:24.6738646Z AR drivers/video/built-in.a
2025-10-02T15:33:24.7381942Z CC drivers/idle/intel_idle.o
2025-10-02T15:33:24.8500050Z CC [M] sound/pci/echoaudio/darla24.o
2025-10-02T15:33:25.4493249Z CC [M] net/core/pktgen.o
2025-10-02T15:33:26.1490641Z AR drivers/idle/built-in.a
2025-10-02T15:33:26.2084285Z CC drivers/char/ipmi/ipmi_dmi.o
2025-10-02T15:33:26.5552706Z CC [M] fs/nfs/nfs4renewd.o
2025-10-02T15:33:26.7584369Z CC [M] sound/pci/echoaudio/gina24.o
2025-10-02T15:33:27.0214961Z CC drivers/char/ipmi/ipmi_plat_data.o
2025-10-02T15:33:27.7456723Z CC [M] drivers/char/ipmi/ipmi_msghandler.o
2025-10-02T15:33:27.8302383Z CC [M] fs/nfs/nfs4super.o
2025-10-02T15:33:28.6522661Z CC [M] net/core/failover.o
2025-10-02T15:33:28.9204845Z CC [M] sound/pci/echoaudio/layla24.o
2025-10-02T15:33:29.1942052Z CC [M] fs/nfs/nfs4file.o
2025-10-02T15:33:29.9080657Z AR net/core/built-in.a
2025-10-02T15:33:30.0123777Z CC net/802/fc.o
2025-10-02T15:33:30.1488105Z CC [M] fs/nfsd/nfs4idmap.o
2025-10-02T15:33:30.5142774Z CC [M] drivers/char/ipmi/ipmi_devintf.o
2025-10-02T15:33:30.8517847Z CC [M] fs/nfs/delegation.o
2025-10-02T15:33:30.9752152Z CC [M] net/802/p8022.o
2025-10-02T15:33:31.2680447Z CC [M] sound/pci/echoaudio/mona.o
2025-10-02T15:33:31.4245548Z CC [M] drivers/char/ipmi/ipmi_si_intf.o
2025-10-02T15:33:31.8032785Z CC [M] fs/nfsd/nfs4acl.o
2025-10-02T15:33:32.1169997Z CC [M] net/802/psnap.o
2025-10-02T15:33:32.9580506Z CC [M] fs/nfs/nfs4idmap.o
2025-10-02T15:33:32.9872548Z CC [M] drivers/char/ipmi/ipmi_kcs_sm.o
2025-10-02T15:33:33.1236009Z CC [M] net/802/fddi.o
2025-10-02T15:33:33.1501815Z CC [M] sound/pci/echoaudio/mia.o
2025-10-02T15:33:33.6146060Z CC [M] fs/nfsd/nfs4callback.o
2025-10-02T15:33:33.8837193Z CC [M] drivers/char/ipmi/ipmi_smic_sm.o
2025-10-02T15:33:34.3519414Z CC [M] net/802/stp.o
2025-10-02T15:33:34.8108037Z CC [M] drivers/char/ipmi/ipmi_bt_sm.o
2025-10-02T15:33:34.9089425Z CC [M] fs/nfs/callback.o
2025-10-02T15:33:35.2450589Z CC [M] sound/pci/echoaudio/echo3g.o
2025-10-02T15:33:35.3951486Z CC [M] net/802/garp.o
2025-10-02T15:33:35.6711903Z CC [M] drivers/char/ipmi/ipmi_si_hotmod.o
2025-10-02T15:33:35.9497181Z CC [M] fs/nfsd/nfs4recover.o
2025-10-02T15:33:36.2415219Z CC [M] fs/nfs/callback_xdr.o
2025-10-02T15:33:36.4269978Z CC [M] drivers/char/ipmi/ipmi_si_hardcode.o
2025-10-02T15:33:36.7931103Z CC [M] net/802/mrp.o
2025-10-02T15:33:37.2443996Z CC [M] drivers/char/ipmi/ipmi_si_platform.o
2025-10-02T15:33:37.5341319Z CC [M] sound/pci/echoaudio/indigo.o
2025-10-02T15:33:38.0950799Z CC [M] fs/nfsd/nfs4layouts.o
2025-10-02T15:33:38.1659043Z CC [M] drivers/char/ipmi/ipmi_si_port_io.o
2025-10-02T15:33:38.1746086Z AR net/802/built-in.a
2025-10-02T15:33:38.2189397Z CC [M] fs/nfs/callback_proc.o
2025-10-02T15:33:38.2901083Z CC net/sched/sch_generic.o
2025-10-02T15:33:38.8494067Z CC [M] drivers/char/ipmi/ipmi_si_mem_io.o
2025-10-02T15:33:39.5000581Z CC [M] sound/pci/echoaudio/indigoio.o
2025-10-02T15:33:39.5725858Z CC [M] drivers/char/ipmi/ipmi_si_pci.o
2025-10-02T15:33:39.8426751Z CC [M] fs/nfs/nfs4namespace.o
2025-10-02T15:33:40.1123273Z CC [M] fs/nfsd/blocklayout.o
2025-10-02T15:33:40.3061626Z CC [M] drivers/char/ipmi/ipmi_ssif.o
2025-10-02T15:33:40.8238477Z CC net/sched/sch_mq.o
2025-10-02T15:33:41.4378151Z CC [M] sound/pci/echoaudio/indigodj.o
2025-10-02T15:33:41.4628724Z CC [M] fs/nfs/nfs4getroot.o
2025-10-02T15:33:41.5670960Z CC [M] fs/nfsd/blocklayoutxdr.o
2025-10-02T15:33:41.8162352Z CC [M] drivers/char/ipmi/ipmi_watchdog.o
2025-10-02T15:33:41.9113206Z CC net/sched/sch_api.o
2025-10-02T15:33:42.6761701Z CC [M] fs/nfs/nfs4client.o
2025-10-02T15:33:42.9413961Z CC [M] drivers/char/ipmi/ipmi_poweroff.o
2025-10-02T15:33:42.9724702Z LD [M] fs/nfsd/nfsd.o
2025-10-02T15:33:43.2335341Z CC [M] sound/pci/echoaudio/indigoiox.o
2025-10-02T15:33:43.2527329Z CC [M] sound/pci/emu10k1/emu10k1.o
2025-10-02T15:33:43.6871652Z CC [M] drivers/char/ipmi/ipmb_dev_int.o
2025-10-02T15:33:44.1911226Z CC [M] sound/pci/emu10k1/emu10k1_main.o
2025-10-02T15:33:44.2990285Z CC [M] fs/nfs/nfs4session.o
2025-10-02T15:33:44.4193579Z LD [M] drivers/char/ipmi/ipmi_si.o
2025-10-02T15:33:44.4485048Z AR drivers/char/ipmi/built-in.a
2025-10-02T15:33:44.6163522Z CC drivers/acpi/acpica/dsargs.o
2025-10-02T15:33:44.6931920Z CC net/sched/sch_blackhole.o
2025-10-02T15:33:45.1861759Z CC drivers/acpi/acpica/dscontrol.o
2025-10-02T15:33:45.2096449Z CC [M] sound/pci/echoaudio/indigodjx.o
2025-10-02T15:33:45.5450736Z CC [M] sound/pci/emu10k1/irq.o
2025-10-02T15:33:45.5735242Z CC drivers/acpi/acpica/dsdebug.o
2025-10-02T15:33:45.5890993Z CC net/sched/cls_api.o
2025-10-02T15:33:45.6984054Z CC [M] fs/nfs/dns_resolve.o
2025-10-02T15:33:46.0099240Z CC drivers/acpi/acpica/dsfield.o
2025-10-02T15:33:46.3171159Z CC [M] sound/pci/emu10k1/memory.o
2025-10-02T15:33:46.6246001Z CC drivers/acpi/acpica/dsinit.o
2025-10-02T15:33:46.7757177Z CC [M] fs/nfs/nfs4trace.o
2025-10-02T15:33:47.0738913Z CC drivers/acpi/acpica/dsmethod.o
2025-10-02T15:33:47.1101891Z LD [M] sound/pci/echoaudio/snd-darla20.o
2025-10-02T15:33:47.1408716Z LD [M] sound/pci/echoaudio/snd-gina20.o
2025-10-02T15:33:47.1703296Z LD [M] sound/pci/echoaudio/snd-layla20.o
2025-10-02T15:33:47.1998330Z LD [M] sound/pci/echoaudio/snd-darla24.o
2025-10-02T15:33:47.2311093Z LD [M] sound/pci/echoaudio/snd-gina24.o
2025-10-02T15:33:47.2609237Z LD [M] sound/pci/echoaudio/snd-layla24.o
2025-10-02T15:33:47.2967055Z LD [M] sound/pci/echoaudio/snd-mona.o
2025-10-02T15:33:47.3314811Z LD [M] sound/pci/echoaudio/snd-mia.o
2025-10-02T15:33:47.3398637Z CC [M] sound/pci/emu10k1/voice.o
2025-10-02T15:33:47.3567313Z LD [M] sound/pci/echoaudio/snd-echo3g.o
2025-10-02T15:33:47.3881604Z LD [M] sound/pci/echoaudio/snd-indigo.o
2025-10-02T15:33:47.4191235Z LD [M] sound/pci/echoaudio/snd-indigoio.o
2025-10-02T15:33:47.4521558Z LD [M] sound/pci/echoaudio/snd-indigodj.o
2025-10-02T15:33:47.4832742Z LD [M] sound/pci/echoaudio/snd-indigoiox.o
2025-10-02T15:33:47.5108102Z LD [M] sound/pci/echoaudio/snd-indigodjx.o
2025-10-02T15:33:47.7701527Z CC drivers/acpi/acpica/dsmthdat.o
2025-10-02T15:33:47.9269166Z CC arch/x86/pci/i386.o
2025-10-02T15:33:48.0673152Z CC [M] sound/pci/emu10k1/emumpu401.o
2025-10-02T15:33:48.4068725Z CC drivers/acpi/acpica/dsobject.o
2025-10-02T15:33:48.8664315Z CC arch/x86/pci/init.o
2025-10-02T15:33:48.9544796Z CC drivers/acpi/acpica/dsopcode.o
2025-10-02T15:33:48.9761703Z CC [M] sound/pci/emu10k1/emupcm.o
2025-10-02T15:33:49.3404225Z CC net/sched/act_api.o
2025-10-02T15:33:49.4621816Z CC drivers/acpi/acpica/dspkginit.o
2025-10-02T15:33:49.5515147Z CC arch/x86/pci/mmconfig_64.o
2025-10-02T15:33:50.1755934Z CC drivers/acpi/acpica/dsutils.o
2025-10-02T15:33:50.3359102Z CC arch/x86/pci/direct.o
2025-10-02T15:33:50.6502683Z CC [M] sound/pci/emu10k1/io.o
2025-10-02T15:33:50.7532765Z CC drivers/acpi/acpica/dswexec.o
2025-10-02T15:33:51.1413250Z CC arch/x86/pci/mmconfig-shared.o
2025-10-02T15:33:51.2082809Z CC [M] fs/nfs/nfs4sysctl.o
2025-10-02T15:33:51.3007250Z CC net/sched/sch_fifo.o
2025-10-02T15:33:51.3683521Z CC drivers/acpi/acpica/dswload.o
2025-10-02T15:33:51.6894169Z CC [M] sound/pci/emu10k1/emumixer.o
2025-10-02T15:33:52.0838672Z CC drivers/acpi/acpica/dswload2.o
2025-10-02T15:33:52.1982450Z CC arch/x86/pci/xen.o
2025-10-02T15:33:52.2427828Z CC [M] fs/nfs/pnfs.o
2025-10-02T15:33:52.3088960Z CC net/sched/sch_fq_codel.o
2025-10-02T15:33:52.7076188Z CC drivers/acpi/acpica/dswscope.o
2025-10-02T15:33:53.1077312Z CC drivers/acpi/acpica/dswstate.o
2025-10-02T15:33:53.1271496Z CC [M] sound/pci/emu10k1/emufx.o
2025-10-02T15:33:53.4767363Z CC arch/x86/pci/fixup.o
2025-10-02T15:33:53.7371419Z CC drivers/acpi/acpica/evevent.o
2025-10-02T15:33:53.9444090Z CC net/sched/ematch.o
2025-10-02T15:33:54.1187965Z CC drivers/acpi/acpica/evgpe.o
2025-10-02T15:33:54.2707461Z CC arch/x86/pci/acpi.o
2025-10-02T15:33:54.7552905Z CC drivers/acpi/acpica/evgpeblk.o
2025-10-02T15:33:55.1973313Z CC arch/x86/pci/legacy.o
2025-10-02T15:33:55.2487121Z CC [M] net/sched/act_police.o
2025-10-02T15:33:55.4204489Z CC drivers/acpi/acpica/evgpeinit.o
2025-10-02T15:33:55.8165724Z CC [M] sound/pci/emu10k1/timer.o
2025-10-02T15:33:55.8625971Z CC arch/x86/pci/irq.o
2025-10-02T15:33:55.9843731Z CC drivers/acpi/acpica/evgpeutil.o
2025-10-02T15:33:56.1825016Z CC [M] fs/nfs/pnfs_dev.o
2025-10-02T15:33:56.4350505Z CC [M] net/sched/act_gact.o
2025-10-02T15:33:56.4536821Z CC [M] sound/pci/emu10k1/p16v.o
2025-10-02T15:33:56.5312240Z CC drivers/acpi/acpica/evglock.o
2025-10-02T15:33:57.0497265Z CC drivers/acpi/acpica/evhandler.o
2025-10-02T15:33:57.1937136Z CC arch/x86/pci/common.o
2025-10-02T15:33:57.5077679Z CC [M] net/sched/act_mirred.o
2025-10-02T15:33:57.5166962Z CC drivers/acpi/acpica/evmisc.o
2025-10-02T15:33:57.5218727Z CC [M] sound/pci/emu10k1/emuproc.o
2025-10-02T15:33:57.5715466Z CC [M] fs/nfs/pnfs_nfs.o
2025-10-02T15:33:58.0095967Z CC drivers/acpi/acpica/evregion.o
2025-10-02T15:33:58.2156409Z CC arch/x86/pci/early.o
2025-10-02T15:33:58.5912216Z CC drivers/acpi/acpica/evrgnini.o
2025-10-02T15:33:58.7730481Z CC [M] sound/pci/emu10k1/emu10k1_synth.o
2025-10-02T15:33:58.7754141Z CC [M] net/sched/act_sample.o
2025-10-02T15:33:58.8343414Z CC arch/x86/pci/bus_numa.o
2025-10-02T15:33:59.1667311Z CC drivers/acpi/acpica/evsci.o
2025-10-02T15:33:59.4605895Z CC [M] fs/nfs/nfs42proc.o
2025-10-02T15:33:59.5397721Z CC [M] sound/pci/emu10k1/emu10k1_callback.o
2025-10-02T15:33:59.6141667Z CC arch/x86/pci/amd_bus.o
2025-10-02T15:33:59.6272629Z CC drivers/acpi/acpica/evxface.o
2025-10-02T15:33:59.8108686Z CC [M] net/sched/act_ipt.o
2025-10-02T15:34:00.2342649Z CC drivers/acpi/acpica/evxfevnt.o
2025-10-02T15:34:00.4134717Z CC [M] sound/pci/emu10k1/emu10k1_patch.o
2025-10-02T15:34:00.5448172Z AR arch/x86/pci/built-in.a
2025-10-02T15:34:00.5721914Z CC [M] fs/nfs/nfs42xattr.o
2025-10-02T15:34:00.6510648Z CC drivers/acpi/acpica/evxfgpe.o
2025-10-02T15:34:01.0669045Z CC [M] sound/pci/emu10k1/emu10k1x.o
2025-10-02T15:34:01.1378177Z CC [M] net/sched/act_nat.o
2025-10-02T15:34:01.4184343Z CC drivers/acpi/acpica/evxfregn.o
2025-10-02T15:34:01.9130439Z CC drivers/acpi/acpica/exconcat.o
2025-10-02T15:34:01.9179752Z CC [M] fs/lockd/clntlock.o
2025-10-02T15:34:02.3637543Z CC drivers/acpi/acpica/exconfig.o
2025-10-02T15:34:02.3824310Z LD [M] fs/nfs/nfs.o
2025-10-02T15:34:02.5071241Z LD [M] fs/nfs/nfsv2.o
2025-10-02T15:34:02.5133823Z LD [M] sound/pci/emu10k1/snd-emu10k1.o
2025-10-02T15:34:02.5499144Z LD [M] fs/nfs/nfsv3.o
2025-10-02T15:34:02.5571201Z LD [M] sound/pci/emu10k1/snd-emu10k1-synth.o
2025-10-02T15:34:02.5653285Z LD [M] sound/pci/emu10k1/snd-emu10k1x.o
2025-10-02T15:34:02.5682853Z CC [M] net/sched/act_pedit.o
2025-10-02T15:34:02.5890950Z LD [M] fs/nfs/nfsv4.o
2025-10-02T15:34:02.6235170Z CC [M] sound/pci/hda/hda_bind.o
2025-10-02T15:34:02.7698703Z CC [M] sound/pci/hda/hda_codec.o
2025-10-02T15:34:02.9475111Z CC drivers/acpi/acpica/exconvrt.o
2025-10-02T15:34:03.1567761Z CC [M] fs/lockd/clntproc.o
2025-10-02T15:34:03.4278173Z CC drivers/acpi/acpica/excreate.o
2025-10-02T15:34:03.4952126Z CC [M] fs/lockd/clntxdr.o
2025-10-02T15:34:03.8648276Z CC drivers/acpi/acpica/exdebug.o
2025-10-02T15:34:04.2239720Z CC [M] net/sched/act_simple.o
2025-10-02T15:34:04.4720024Z CC drivers/acpi/acpica/exdump.o
2025-10-02T15:34:04.5950273Z CC net/netlink/af_netlink.o
2025-10-02T15:34:04.7528563Z CC [M] fs/lockd/host.o
2025-10-02T15:34:05.1907728Z CC drivers/acpi/acpica/exfield.o
2025-10-02T15:34:05.4087720Z CC [M] net/sched/act_skbedit.o
2025-10-02T15:34:05.7152678Z CC [M] sound/pci/hda/hda_jack.o
2025-10-02T15:34:05.7466376Z CC drivers/acpi/acpica/exfldio.o
2025-10-02T15:34:06.4071710Z CC [M] fs/lockd/svc.o
2025-10-02T15:34:06.5032856Z CC drivers/acpi/acpica/exmisc.o
2025-10-02T15:34:06.7794361Z CC [M] sound/pci/hda/hda_auto_parser.o
2025-10-02T15:34:06.7823212Z CC [M] net/sched/act_csum.o
2025-10-02T15:34:07.1462035Z CC drivers/acpi/acpica/exmutex.o
2025-10-02T15:34:07.6527793Z CC net/netlink/genetlink.o
2025-10-02T15:34:07.6724585Z CC drivers/acpi/acpica/exnames.o
2025-10-02T15:34:08.0562671Z CC [M] fs/lockd/svclock.o
2025-10-02T15:34:08.1593460Z CC [M] sound/pci/hda/hda_sysfs.o
2025-10-02T15:34:08.2983841Z CC [M] net/sched/act_mpls.o
2025-10-02T15:34:08.3419010Z CC drivers/acpi/acpica/exoparg1.o
2025-10-02T15:34:08.8747566Z CC drivers/acpi/acpica/exoparg2.o
2025-10-02T15:34:09.3115706Z CC [M] sound/pci/hda/hda_controller.o
2025-10-02T15:34:09.3627002Z CC drivers/acpi/acpica/exoparg3.o
2025-10-02T15:34:09.5738026Z CC [M] net/sched/act_vlan.o
2025-10-02T15:34:09.8469082Z CC [M] fs/lockd/svcshare.o
2025-10-02T15:34:09.8508705Z CC net/netlink/policy.o
2025-10-02T15:34:09.9341235Z CC drivers/acpi/acpica/exoparg6.o
2025-10-02T15:34:10.4985861Z CC drivers/acpi/acpica/exprep.o
2025-10-02T15:34:10.6443513Z CC [M] net/sched/act_bpf.o
2025-10-02T15:34:10.7881074Z CC [M] sound/pci/hda/hda_proc.o
2025-10-02T15:34:10.9334104Z CC [M] net/netlink/diag.o
2025-10-02T15:34:11.0443873Z CC drivers/acpi/acpica/exregion.o
2025-10-02T15:34:11.1238052Z CC [M] fs/lockd/svcproc.o
2025-10-02T15:34:11.8177158Z CC [M] net/sched/act_connmark.o
2025-10-02T15:34:11.9338272Z CC [M] sound/pci/hda/hda_hwdep.o
2025-10-02T15:34:11.9848823Z CC drivers/acpi/acpica/exresnte.o
2025-10-02T15:34:12.1080071Z AR net/netlink/built-in.a
2025-10-02T15:34:12.1297126Z LD [M] net/netlink/netlink_diag.o
2025-10-02T15:34:12.1913222Z CC [M] fs/lockd/svcsubs.o
2025-10-02T15:34:12.4673342Z CC drivers/acpi/acpica/exresolv.o
2025-10-02T15:34:12.5768613Z CC [M] sound/pci/hda/hda_beep.o
2025-10-02T15:34:12.6787759Z CC arch/x86/power/cpu.o
2025-10-02T15:34:13.0871201Z CC drivers/acpi/acpica/exresop.o
2025-10-02T15:34:13.1074303Z CC [M] net/sched/act_ctinfo.o
2025-10-02T15:34:13.3895576Z CC [M] sound/pci/hda/hda_generic.o
2025-10-02T15:34:13.6441335Z CC [M] fs/lockd/mon.o
2025-10-02T15:34:13.7861481Z CC drivers/acpi/acpica/exserial.o
2025-10-02T15:34:13.8215487Z CC arch/x86/power/hibernate_64.o
2025-10-02T15:34:14.2734956Z CC drivers/acpi/acpica/exstore.o
2025-10-02T15:34:14.5921630Z CC [M] net/sched/act_skbmod.o
2025-10-02T15:34:14.8462356Z AS arch/x86/power/hibernate_asm_64.o
2025-10-02T15:34:14.8901389Z CC arch/x86/power/hibernate.o
2025-10-02T15:34:14.9378195Z CC drivers/acpi/acpica/exstoren.o
2025-10-02T15:34:15.1510396Z CC [M] fs/lockd/xdr.o
2025-10-02T15:34:15.3611600Z CC drivers/acpi/acpica/exstorob.o
2025-10-02T15:34:15.7122613Z CC [M] net/sched/act_ife.o
2025-10-02T15:34:15.9013831Z CC drivers/acpi/acpica/exsystem.o
2025-10-02T15:34:16.1340709Z AR arch/x86/power/built-in.a
2025-10-02T15:34:16.1578903Z CC drivers/acpi/acpica/extrace.o
2025-10-02T15:34:16.4701223Z CC [M] fs/lockd/clnt4xdr.o
2025-10-02T15:34:16.4988067Z CC [M] fs/cifs/trace.o
2025-10-02T15:34:16.8460693Z CC drivers/acpi/acpica/exutils.o
2025-10-02T15:34:16.9429001Z CC [M] net/sched/act_meta_mark.o
2025-10-02T15:34:17.4938725Z CC drivers/acpi/acpica/hwacpi.o
2025-10-02T15:34:17.7400552Z CC [M] sound/pci/hda/patch_realtek.o
2025-10-02T15:34:17.7833314Z CC [M] fs/lockd/xdr4.o
2025-10-02T15:34:17.9031086Z CC [M] net/sched/act_meta_skbprio.o
2025-10-02T15:34:18.0289752Z CC drivers/acpi/acpica/hwesleep.o
2025-10-02T15:34:18.5091660Z CC drivers/acpi/acpica/hwgpe.o
2025-10-02T15:34:18.8459841Z CC [M] net/sched/act_meta_skbtcindex.o
2025-10-02T15:34:18.9454615Z CC [M] fs/cifs/cifsfs.o
2025-10-02T15:34:18.9965260Z CC drivers/acpi/acpica/hwregs.o
2025-10-02T15:34:19.4777597Z CC [M] fs/lockd/svc4proc.o
2025-10-02T15:34:19.7096179Z CC drivers/acpi/acpica/hwsleep.o
2025-10-02T15:34:19.7263993Z CC [M] net/sched/act_tunnel_key.o
2025-10-02T15:34:20.2758552Z CC drivers/acpi/acpica/hwvalid.o
2025-10-02T15:34:20.8392388Z CC drivers/acpi/acpica/hwxface.o
2025-10-02T15:34:20.9861973Z CC [M] fs/lockd/procfs.o
2025-10-02T15:34:21.0536180Z CC [M] fs/cifs/cifssmb.o
2025-10-02T15:34:21.1763319Z CC [M] sound/pci/hda/patch_cmedia.o
2025-10-02T15:34:21.3262296Z CC [M] net/sched/act_ct.o
2025-10-02T15:34:21.3526865Z CC drivers/acpi/acpica/hwxfsleep.o
2025-10-02T15:34:21.7000656Z LD [M] fs/lockd/lockd.o
2025-10-02T15:34:21.8211263Z CC drivers/acpi/acpica/hwpci.o
2025-10-02T15:34:21.8857524Z CC drivers/pnp/pnpacpi/core.o
2025-10-02T15:34:21.9063979Z CC [M] sound/pci/hda/patch_analog.o
2025-10-02T15:34:22.3905563Z CC drivers/acpi/acpica/nsaccess.o
2025-10-02T15:34:22.4812896Z CC drivers/pnp/pnpacpi/rsparser.o
2025-10-02T15:34:23.0470146Z CC [M] sound/pci/hda/patch_sigmatel.o
2025-10-02T15:34:23.0934681Z CC drivers/acpi/acpica/nsalloc.o
2025-10-02T15:34:23.5636077Z AR drivers/pnp/pnpacpi/built-in.a
2025-10-02T15:34:23.5859408Z CC drivers/pnp/core.o
2025-10-02T15:34:23.6499002Z CC drivers/acpi/acpica/nsarguments.o
2025-10-02T15:34:23.7259773Z CC [M] net/sched/act_gate.o
2025-10-02T15:34:24.1472912Z CC drivers/acpi/acpica/nsconvert.o
2025-10-02T15:34:24.4529415Z CC drivers/pnp/card.o
2025-10-02T15:34:24.7084330Z CC drivers/acpi/acpica/nsdump.o
2025-10-02T15:34:24.7392388Z CC [M] sound/pci/hda/patch_si3054.o
2025-10-02T15:34:24.9849229Z CC [M] net/sched/sch_htb.o
2025-10-02T15:34:25.2777804Z CC drivers/acpi/acpica/nseval.o
2025-10-02T15:34:25.3607017Z CC drivers/pnp/driver.o
2025-10-02T15:34:25.6579879Z CC [M] sound/pci/hda/patch_cirrus.o
2025-10-02T15:34:25.6976720Z CC drivers/acpi/acpica/nsinit.o
2025-10-02T15:34:26.0228911Z CC [M] fs/cifs/cifs_debug.o
2025-10-02T15:34:26.1134336Z CC drivers/pnp/resource.o
2025-10-02T15:34:26.3219989Z CC drivers/acpi/acpica/nsload.o
2025-10-02T15:34:26.6185490Z CC [M] sound/pci/hda/patch_ca0110.o
2025-10-02T15:34:26.7602936Z CC [M] net/sched/sch_hfsc.o
2025-10-02T15:34:26.7874279Z CC drivers/acpi/acpica/nsnames.o
2025-10-02T15:34:27.3727142Z CC drivers/acpi/acpica/nsobject.o
2025-10-02T15:34:27.4437310Z CC drivers/pnp/manager.o
2025-10-02T15:34:27.4619222Z CC [M] sound/pci/hda/patch_ca0132.o
2025-10-02T15:34:27.8302832Z CC [M] fs/cifs/connect.o
2025-10-02T15:34:27.8745666Z CC drivers/acpi/acpica/nsparse.o
2025-10-02T15:34:28.0126665Z CC drivers/pnp/support.o
2025-10-02T15:34:28.3920008Z CC drivers/acpi/acpica/nspredef.o
2025-10-02T15:34:28.6035442Z CC drivers/pnp/interface.o
2025-10-02T15:34:28.6958913Z CC [M] net/sched/sch_red.o
2025-10-02T15:34:28.8416875Z CC drivers/acpi/acpica/nsprepkg.o
2025-10-02T15:34:29.3446142Z CC drivers/pnp/quirks.o
2025-10-02T15:34:29.5253413Z CC drivers/acpi/acpica/nsrepair.o
2025-10-02T15:34:30.0697833Z CC drivers/acpi/acpica/nsrepair2.o
2025-10-02T15:34:30.1905600Z CC drivers/pnp/system.o
2025-10-02T15:34:30.4528242Z CC [M] net/sched/sch_gred.o
2025-10-02T15:34:30.5574101Z CC drivers/acpi/acpica/nssearch.o
2025-10-02T15:34:30.6122685Z AR drivers/pnp/built-in.a
2025-10-02T15:34:30.6418127Z CC drivers/acpi/numa/srat.o
2025-10-02T15:34:31.0473947Z CC drivers/acpi/acpica/nsutils.o
2025-10-02T15:34:31.4550379Z CC drivers/acpi/numa/hmat.o
2025-10-02T15:34:31.7307732Z CC drivers/acpi/acpica/nswalk.o
2025-10-02T15:34:32.1505440Z CC drivers/acpi/acpica/nsxfeval.o
2025-10-02T15:34:32.2846095Z CC [M] sound/pci/hda/patch_conexant.o
2025-10-02T15:34:32.5617768Z CC [M] net/sched/sch_ingress.o
2025-10-02T15:34:32.6461939Z AR drivers/acpi/numa/built-in.a
2025-10-02T15:34:32.6603388Z CC [M] sound/pci/hda/patch_via.o
2025-10-02T15:34:32.7097363Z CC [M] fs/cifs/dir.o
2025-10-02T15:34:32.7646443Z CC drivers/acpi/acpica/nsxfname.o
2025-10-02T15:34:33.3911666Z CC drivers/acpi/acpica/nsxfobj.o
2025-10-02T15:34:33.4031248Z CC [M] sound/pci/ice1712/ice1712.o
2025-10-02T15:34:33.7614363Z CC [M] sound/pci/hda/patch_hdmi.o
2025-10-02T15:34:33.7895522Z CC [M] net/sched/sch_sfb.o
2025-10-02T15:34:33.8196735Z CC drivers/acpi/acpica/psargs.o
2025-10-02T15:34:34.6161122Z CC drivers/acpi/acpica/psloop.o
2025-10-02T15:34:34.9274863Z CC [M] fs/cifs/file.o
2025-10-02T15:34:35.1560903Z CC drivers/acpi/acpica/psobject.o
2025-10-02T15:34:35.2832025Z CC [M] sound/pci/ice1712/delta.o
2025-10-02T15:34:35.3152724Z CC [M] net/sched/sch_sfq.o
2025-10-02T15:34:35.8090305Z CC drivers/acpi/acpica/psopcode.o
2025-10-02T15:34:36.3822902Z CC drivers/acpi/acpica/psopinfo.o
2025-10-02T15:34:36.4590642Z CC [M] sound/pci/ice1712/hoontech.o
2025-10-02T15:34:36.4854424Z CC [M] sound/pci/hda/hda_eld.o
2025-10-02T15:34:36.8186217Z CC drivers/acpi/acpica/psparse.o
2025-10-02T15:34:37.0138136Z CC [M] net/sched/sch_tbf.o
2025-10-02T15:34:37.3347425Z CC [M] sound/pci/ice1712/ews.o
2025-10-02T15:34:37.3909257Z CC drivers/acpi/acpica/psscope.o
2025-10-02T15:34:37.5117342Z CC [M] sound/pci/hda/hda_intel.o
2025-10-02T15:34:37.8775051Z CC drivers/acpi/acpica/pstree.o
2025-10-02T15:34:38.2638353Z CC [M] net/sched/sch_teql.o
2025-10-02T15:34:38.4271210Z CC drivers/acpi/acpica/psutils.o
2025-10-02T15:34:38.5773254Z CC [M] sound/pci/ice1712/ak4xxx.o
2025-10-02T15:34:38.9520062Z CC drivers/acpi/acpica/pswalk.o
2025-10-02T15:34:39.3943181Z LD [M] sound/pci/hda/snd-hda-codec.o
2025-10-02T15:34:39.4051212Z CC drivers/acpi/acpica/psxface.o
2025-10-02T15:34:39.4461883Z CC [M] sound/pci/ice1712/ice1724.o
2025-10-02T15:34:39.4488409Z LD [M] sound/pci/hda/snd-hda-codec-generic.o
2025-10-02T15:34:39.4847059Z LD [M] sound/pci/hda/snd-hda-codec-realtek.o
2025-10-02T15:34:39.5260215Z CC [M] net/sched/sch_prio.o
2025-10-02T15:34:39.5264895Z LD [M] sound/pci/hda/snd-hda-codec-cmedia.o
2025-10-02T15:34:39.5423172Z LD [M] sound/pci/hda/snd-hda-codec-analog.o
2025-10-02T15:34:39.5568377Z LD [M] sound/pci/hda/snd-hda-codec-idt.o
2025-10-02T15:34:39.5729383Z LD [M] sound/pci/hda/snd-hda-codec-si3054.o
2025-10-02T15:34:39.5871419Z LD [M] sound/pci/hda/snd-hda-codec-cirrus.o
2025-10-02T15:34:39.6030755Z LD [M] sound/pci/hda/snd-hda-codec-ca0110.o
2025-10-02T15:34:39.6161516Z LD [M] sound/pci/hda/snd-hda-codec-ca0132.o
2025-10-02T15:34:39.6392927Z LD [M] sound/pci/hda/snd-hda-codec-conexant.o
2025-10-02T15:34:39.6538827Z LD [M] sound/pci/hda/snd-hda-codec-via.o
2025-10-02T15:34:39.6686263Z LD [M] sound/pci/hda/snd-hda-codec-hdmi.o
2025-10-02T15:34:39.6878584Z LD [M] sound/pci/hda/snd-hda-intel.o
2025-10-02T15:34:39.8473585Z CC drivers/acpi/acpica/rsaddr.o
2025-10-02T15:34:39.9012396Z CC arch/x86/video/fbdev.o
2025-10-02T15:34:40.2645093Z CC drivers/acpi/acpica/rscalc.o
2025-10-02T15:34:40.6494767Z AR arch/x86/video/built-in.a
2025-10-02T15:34:40.6762719Z CC [M] fs/ufs/balloc.o
2025-10-02T15:34:40.8568624Z CC [M] fs/cifs/inode.o
2025-10-02T15:34:40.9103871Z CC drivers/acpi/acpica/rscreate.o
2025-10-02T15:34:40.9591241Z CC [M] net/sched/sch_multiq.o
2025-10-02T15:34:41.4862106Z CC [M] sound/pci/ice1712/amp.o
2025-10-02T15:34:41.6973070Z CC drivers/acpi/acpica/rsdumpinfo.o
2025-10-02T15:34:42.0723118Z CC [M] sound/pci/ice1712/revo.o
2025-10-02T15:34:42.1915060Z CC drivers/acpi/acpica/rsinfo.o
2025-10-02T15:34:42.2113693Z CC [M] fs/ufs/cylinder.o
2025-10-02T15:34:42.5681536Z CC [M] net/sched/sch_netem.o
2025-10-02T15:34:42.5977769Z CC drivers/acpi/acpica/rsio.o
2025-10-02T15:34:42.9144274Z CC [M] fs/ufs/dir.o
2025-10-02T15:34:42.9874120Z CC [M] sound/pci/ice1712/aureon.o
2025-10-02T15:34:43.0087776Z CC drivers/acpi/acpica/rsirq.o
2025-10-02T15:34:43.5151322Z CC drivers/acpi/acpica/rslist.o
2025-10-02T15:34:44.0354324Z CC drivers/acpi/acpica/rsmemory.o
2025-10-02T15:34:44.2269898Z CC [M] fs/ufs/file.o
2025-10-02T15:34:44.2708680Z CC [M] net/sched/sch_drr.o
2025-10-02T15:34:44.4424154Z CC [M] fs/cifs/link.o
2025-10-02T15:34:44.4673229Z CC drivers/acpi/acpica/rsmisc.o
2025-10-02T15:34:44.4976838Z CC [M] sound/pci/ice1712/vt1720_mobo.o
2025-10-02T15:34:44.7001073Z CC [M] fs/ufs/ialloc.o
2025-10-02T15:34:45.0939819Z CC drivers/acpi/acpica/rsserial.o
2025-10-02T15:34:45.1975736Z CC [M] sound/pci/ice1712/pontis.o
2025-10-02T15:34:45.5307672Z CC drivers/acpi/acpica/rsutils.o
2025-10-02T15:34:45.5371042Z CC [M] net/sched/sch_plug.o
2025-10-02T15:34:45.6504490Z CC [M] fs/ufs/inode.o
2025-10-02T15:34:46.1009769Z CC drivers/acpi/acpica/rsxface.o
2025-10-02T15:34:46.1978696Z CC [M] fs/cifs/misc.o
2025-10-02T15:34:46.4141640Z CC [M] sound/pci/ice1712/prodigy192.o
2025-10-02T15:34:46.7147787Z CC [M] net/sched/sch_ets.o
2025-10-02T15:34:46.7242783Z CC drivers/acpi/acpica/tbdata.o
2025-10-02T15:34:47.3346799Z CC [M] sound/pci/ice1712/prodigy_hifi.o
2025-10-02T15:34:47.4257814Z CC drivers/acpi/acpica/tbfadt.o
2025-10-02T15:34:47.5552970Z CC [M] fs/ufs/namei.o
2025-10-02T15:34:48.0510635Z CC drivers/acpi/acpica/tbfind.o
2025-10-02T15:34:48.1512327Z CC [M] fs/cifs/netmisc.o
2025-10-02T15:34:48.4623942Z CC [M] net/sched/sch_mqprio.o
2025-10-02T15:34:48.4693040Z CC [M] sound/pci/ice1712/juli.o
2025-10-02T15:34:48.5073550Z CC [M] fs/ufs/super.o
2025-10-02T15:34:48.5869439Z CC drivers/acpi/acpica/tbinstal.o
2025-10-02T15:34:49.0989399Z CC drivers/acpi/acpica/tbprint.o
2025-10-02T15:34:49.4459942Z CC [M] fs/cifs/smbencrypt.o
2025-10-02T15:34:49.4730981Z CC [M] sound/pci/ice1712/phase.o
2025-10-02T15:34:49.6617942Z CC drivers/acpi/acpica/tbutils.o
2025-10-02T15:34:49.8595651Z CC [M] net/sched/sch_skbprio.o
2025-10-02T15:34:50.2300074Z CC [M] fs/ufs/util.o
2025-10-02T15:34:50.2830877Z CC drivers/acpi/acpica/tbxface.o
2025-10-02T15:34:50.3500735Z CC [M] sound/pci/ice1712/wtm.o
2025-10-02T15:34:50.8991169Z CC drivers/acpi/acpica/tbxfload.o
2025-10-02T15:34:50.9554765Z CC [M] fs/cifs/transport.o
2025-10-02T15:34:51.1242286Z CC [M] sound/pci/ice1712/se.o
2025-10-02T15:34:51.2207826Z LD [M] fs/ufs/ufs.o
2025-10-02T15:34:51.2840748Z CC [M] net/sched/sch_choke.o
2025-10-02T15:34:51.3029987Z AR drivers/amba/built-in.a
2025-10-02T15:34:51.3469911Z CC [M] net/sched/sch_qfq.o
2025-10-02T15:34:51.4534223Z CC drivers/acpi/acpica/tbxfroot.o
2025-10-02T15:34:51.8253450Z CC drivers/acpi/acpica/utaddress.o
2025-10-02T15:34:52.1736367Z CC [M] sound/pci/ice1712/maya44.o
2025-10-02T15:34:52.2635343Z CC drivers/acpi/acpica/utalloc.o
2025-10-02T15:34:52.5383576Z CC net/bpf/test_run.o
2025-10-02T15:34:52.7381565Z CC drivers/acpi/acpica/utascii.o
2025-10-02T15:34:53.2001998Z CC [M] sound/pci/ice1712/quartet.o
2025-10-02T15:34:53.2620650Z CC drivers/acpi/acpica/utbuffer.o
2025-10-02T15:34:53.3544772Z CC [M] net/sched/sch_codel.o
2025-10-02T15:34:53.4549842Z CC [M] fs/cifs/asn1.o
2025-10-02T15:34:53.7980826Z CC drivers/acpi/acpica/utcopy.o
2025-10-02T15:34:54.1995758Z CC [M] sound/pci/ice1712/psc724.o
2025-10-02T15:34:54.5048061Z CC drivers/acpi/acpica/utexcep.o
2025-10-02T15:34:54.6208080Z AR net/bpf/built-in.a
2025-10-02T15:34:54.6478224Z CC [M] net/sched/sch_cake.o
2025-10-02T15:34:54.8850300Z CC drivers/acpi/acpica/utdebug.o
2025-10-02T15:34:54.9452812Z CC [M] sound/pci/ice1712/wm8766.o
2025-10-02T15:34:54.9931988Z CC [M] sound/synth/emux/emux.o
2025-10-02T15:34:55.0740249Z CC [M] fs/cifs/cifs_unicode.o
2025-10-02T15:34:55.4640268Z CC drivers/acpi/acpica/utdecode.o
2025-10-02T15:34:55.4644187Z CC [M] sound/pci/ice1712/wm8776.o
2025-10-02T15:34:55.6231589Z CC [M] sound/synth/emux/emux_synth.o
2025-10-02T15:34:55.9341894Z CC drivers/acpi/acpica/utdelete.o
2025-10-02T15:34:56.1301596Z LD [M] sound/pci/ice1712/snd-ice17xx-ak4xxx.o
2025-10-02T15:34:56.1540850Z LD [M] sound/pci/ice1712/snd-ice1712.o
2025-10-02T15:34:56.1981487Z LD [M] sound/pci/ice1712/snd-ice1724.o
2025-10-02T15:34:56.3456564Z CC [M] sound/pci/korg1212/korg1212.o
2025-10-02T15:34:56.4853377Z CC drivers/acpi/acpica/uterror.o
2025-10-02T15:34:56.5033618Z CC [M] sound/synth/emux/emux_seq.o
2025-10-02T15:34:56.6977653Z CC [M] fs/cifs/nterr.o
2025-10-02T15:34:56.9890857Z CC drivers/acpi/acpica/uteval.o
2025-10-02T15:34:57.1319362Z CC [M] fs/cifs/cifsencrypt.o
2025-10-02T15:34:57.3096336Z CC [M] sound/synth/emux/emux_nrpn.o
2025-10-02T15:34:57.4417634Z CC drivers/acpi/acpica/utglobal.o
2025-10-02T15:34:57.5845486Z CC [M] net/sched/sch_fq.o
2025-10-02T15:34:57.9154753Z CC drivers/acpi/acpica/uthex.o
2025-10-02T15:34:57.9382482Z CC [M] sound/synth/emux/emux_effect.o
2025-10-02T15:34:57.9423197Z LD [M] sound/pci/korg1212/snd-korg1212.o
2025-10-02T15:34:58.0343955Z CC [M] sound/pci/mixart/mixart.o
2025-10-02T15:34:58.3110525Z CC drivers/acpi/acpica/utids.o
2025-10-02T15:34:58.5776434Z CC [M] sound/synth/emux/emux_hwdep.o
2025-10-02T15:34:58.8544413Z CC drivers/acpi/acpica/utinit.o
2025-10-02T15:34:59.1013908Z CC [M] fs/cifs/readdir.o
2025-10-02T15:34:59.2587929Z CC [M] sound/synth/emux/soundfont.o
2025-10-02T15:34:59.2671146Z CC drivers/acpi/acpica/utlock.o
2025-10-02T15:34:59.4217061Z CC [M] net/sched/sch_hhf.o
2025-10-02T15:34:59.4389778Z CC [M] sound/pci/mixart/mixart_core.o
2025-10-02T15:34:59.6452924Z CC drivers/acpi/acpica/utmath.o
2025-10-02T15:35:00.0373472Z CC drivers/acpi/acpica/utmisc.o
2025-10-02T15:35:00.1627938Z CC [M] sound/synth/emux/emux_proc.o
2025-10-02T15:35:00.4773327Z CC drivers/acpi/acpica/utmutex.o
2025-10-02T15:35:00.6707547Z CC [M] sound/pci/mixart/mixart_hwdep.o
2025-10-02T15:35:00.7332812Z CC [M] sound/synth/emux/emux_oss.o
2025-10-02T15:35:00.8963495Z CC [M] net/sched/sch_pie.o
2025-10-02T15:35:01.0268474Z CC drivers/acpi/acpica/utnonansi.o
2025-10-02T15:35:01.2513849Z CC [M] fs/cifs/ioctl.o
2025-10-02T15:35:01.4532055Z CC drivers/acpi/acpica/utobject.o
2025-10-02T15:35:01.5210618Z LD [M] sound/synth/emux/snd-emux-synth.o
2025-10-02T15:35:01.5915759Z CC [M] sound/synth/util_mem.o
2025-10-02T15:35:01.7060408Z CC [M] sound/pci/mixart/mixart_mixer.o
2025-10-02T15:35:02.0866145Z CC drivers/acpi/acpica/utosi.o
2025-10-02T15:35:02.2265854Z CC [M] net/sched/sch_fq_pie.o
2025-10-02T15:35:02.3551246Z LD [M] sound/synth/snd-util-mem.o
2025-10-02T15:35:02.4416044Z CC drivers/acpi/apei/apei-base.o
2025-10-02T15:35:02.6246778Z CC drivers/acpi/acpica/utownerid.o
2025-10-02T15:35:02.6308449Z LD [M] sound/pci/mixart/snd-mixart.o
2025-10-02T15:35:02.7065154Z CC [M] sound/pci/nm256/nm256.o
2025-10-02T15:35:02.7981451Z CC [M] fs/cifs/sess.o
2025-10-02T15:35:03.0446948Z CC drivers/acpi/acpica/utpredef.o
2025-10-02T15:35:03.5258788Z CC drivers/acpi/acpica/utresdecode.o
2025-10-02T15:35:03.5647843Z CC drivers/acpi/apei/hest.o
2025-10-02T15:35:03.7773351Z CC [M] net/sched/sch_cbs.o
2025-10-02T15:35:03.9134275Z LD [M] sound/pci/nm256/snd-nm256.o
2025-10-02T15:35:03.9576181Z CC drivers/acpi/acpica/utresrc.o
2025-10-02T15:35:03.9914530Z CC [M] sound/pci/oxygen/oxygen_io.o
2025-10-02T15:35:04.3220378Z CC drivers/acpi/apei/erst.o
2025-10-02T15:35:04.4550159Z CC drivers/acpi/acpica/utstate.o
2025-10-02T15:35:04.5763138Z CC [M] sound/pci/oxygen/oxygen_lib.o
2025-10-02T15:35:04.8141719Z CC [M] net/sched/sch_etf.o
2025-10-02T15:35:05.0986598Z CC drivers/acpi/acpica/utstring.o
2025-10-02T15:35:05.4262309Z CC [M] fs/cifs/export.o
2025-10-02T15:35:05.5921086Z CC [M] sound/pci/oxygen/oxygen_mixer.o
2025-10-02T15:35:05.6146809Z CC drivers/acpi/acpica/utstrsuppt.o
2025-10-02T15:35:05.7148481Z CC drivers/acpi/apei/bert.o
2025-10-02T15:35:05.9865984Z CC [M] net/sched/sch_taprio.o
2025-10-02T15:35:06.2140938Z CC drivers/acpi/acpica/utstrtoul64.o
2025-10-02T15:35:06.2881343Z CC [M] fs/cifs/smb1ops.o
2025-10-02T15:35:06.4459250Z CC drivers/acpi/apei/ghes.o
2025-10-02T15:35:06.7198249Z CC drivers/acpi/acpica/utxface.o
2025-10-02T15:35:06.7851315Z CC [M] sound/pci/oxygen/oxygen_pcm.o
2025-10-02T15:35:07.2790903Z CC drivers/acpi/acpica/utxfinit.o
2025-10-02T15:35:07.7832457Z CC drivers/acpi/acpica/utxferror.o
2025-10-02T15:35:07.8539070Z CC [M] sound/pci/oxygen/oxygen.o
2025-10-02T15:35:07.9648248Z CC [M] drivers/acpi/apei/einj.o
2025-10-02T15:35:08.1086535Z CC [M] fs/cifs/winucase.o
2025-10-02T15:35:08.2193928Z CC [M] fs/cifs/smb2ops.o
2025-10-02T15:35:08.2270916Z CC [M] net/sched/cls_u32.o
2025-10-02T15:35:08.4370110Z CC drivers/acpi/acpica/utxfmutex.o
2025-10-02T15:35:08.7888021Z CC [M] sound/pci/oxygen/xonar_dg_mixer.o
2025-10-02T15:35:08.8820798Z AR drivers/acpi/acpica/built-in.a
2025-10-02T15:35:08.9807157Z CC [M] drivers/acpi/apei/erst-dbg.o
2025-10-02T15:35:09.1316473Z AR arch/x86/oprofile/built-in.a
2025-10-02T15:35:09.1539767Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/oprof.o
2025-10-02T15:35:09.7182896Z CC [M] sound/pci/oxygen/xonar_dg.o
2025-10-02T15:35:09.7769762Z AR drivers/acpi/apei/built-in.a
2025-10-02T15:35:09.8424582Z CC drivers/acpi/pmic/intel_pmic.o
2025-10-02T15:35:09.9268741Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/cpu_buffer.o
2025-10-02T15:35:10.0811672Z CC [M] net/sched/cls_route.o
2025-10-02T15:35:10.4585402Z CC drivers/acpi/pmic/intel_pmic_bytcrc.o
2025-10-02T15:35:10.4609984Z CC [M] sound/pci/oxygen/virtuoso.o
2025-10-02T15:35:10.6687950Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/buffer_sync.o
2025-10-02T15:35:11.0010147Z CC drivers/acpi/pmic/intel_pmic_chtcrc.o
2025-10-02T15:35:11.1326921Z CC [M] sound/pci/oxygen/xonar_lib.o
2025-10-02T15:35:11.5201755Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/event_buffer.o
2025-10-02T15:35:11.6882511Z CC drivers/acpi/pmic/intel_pmic_xpower.o
2025-10-02T15:35:11.7495304Z CC [M] sound/pci/oxygen/xonar_pcm179x.o
2025-10-02T15:35:11.8095689Z CC [M] net/sched/cls_fw.o
2025-10-02T15:35:12.0862918Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.o
2025-10-02T15:35:12.2964042Z CC drivers/acpi/pmic/intel_pmic_bxtwc.o
2025-10-02T15:35:12.6020859Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/oprofilefs.o
2025-10-02T15:35:12.8290874Z CC [M] sound/pci/oxygen/xonar_cs43xx.o
2025-10-02T15:35:13.0583182Z CC drivers/acpi/pmic/intel_pmic_chtwc.o
2025-10-02T15:35:13.0769393Z CC [M] net/sched/cls_basic.o
2025-10-02T15:35:13.0789089Z CC [M] fs/cifs/smb2maperror.o
2025-10-02T15:35:13.3116688Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/oprofile_stats.o
2025-10-02T15:35:13.5568690Z CC drivers/acpi/pmic/intel_pmic_chtdc_ti.o
2025-10-02T15:35:13.7654275Z CC [M] sound/pci/oxygen/xonar_wm87x6.o
2025-10-02T15:35:13.8360021Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/timer_int.o
2025-10-02T15:35:14.0807712Z CC drivers/acpi/pmic/tps68470_pmic.o
2025-10-02T15:35:14.3560942Z CC [M] fs/cifs/smb2transport.o
2025-10-02T15:35:14.3973950Z CC [M] net/sched/cls_flow.o
2025-10-02T15:35:14.4183232Z CC [M] arch/x86/oprofile/../../../drivers/oprofile/nmi_timer_int.o
2025-10-02T15:35:14.6917970Z AR drivers/acpi/pmic/built-in.a
2025-10-02T15:35:14.7474727Z CC drivers/acpi/dptf/int340x_thermal.o
2025-10-02T15:35:15.1974679Z CC [M] sound/pci/oxygen/xonar_hdmi.o
2025-10-02T15:35:15.2103339Z CC [M] arch/x86/oprofile/init.o
2025-10-02T15:35:15.2876322Z CC [M] drivers/acpi/dptf/dptf_power.o
2025-10-02T15:35:15.4662581Z CC [M] arch/x86/oprofile/backtrace.o
2025-10-02T15:35:15.8657110Z LD [M] sound/pci/oxygen/snd-oxygen-lib.o
2025-10-02T15:35:15.8904883Z LD [M] sound/pci/oxygen/snd-oxygen.o
2025-10-02T15:35:15.9065887Z LD [M] sound/pci/oxygen/snd-virtuoso.o
2025-10-02T15:35:15.9551374Z CC [M] drivers/acpi/dptf/dptf_pch_fivr.o
2025-10-02T15:35:15.9774726Z CC [M] sound/pci/pcxhr/pcxhr.o
2025-10-02T15:35:16.0901066Z CC [M] fs/cifs/smb2misc.o
2025-10-02T15:35:16.2231230Z CC [M] net/sched/cls_cgroup.o
2025-10-02T15:35:16.2910129Z CC [M] arch/x86/oprofile/nmi_int.o
2025-10-02T15:35:16.5072278Z AR drivers/acpi/dptf/built-in.a
2025-10-02T15:35:16.6022329Z CC [M] drivers/acpi/nfit/core.o
2025-10-02T15:35:17.2615942Z CC [M] arch/x86/oprofile/op_model_amd.o
2025-10-02T15:35:17.2834292Z CC [M] sound/pci/pcxhr/pcxhr_hwdep.o
2025-10-02T15:35:17.4077769Z CC [M] net/sched/cls_bpf.o
2025-10-02T15:35:17.8699989Z CC [M] fs/cifs/smb2pdu.o
2025-10-02T15:35:18.1960556Z CC [M] arch/x86/oprofile/op_model_ppro.o
2025-10-02T15:35:18.2015213Z CC [M] sound/pci/pcxhr/pcxhr_mixer.o
2025-10-02T15:35:18.9585729Z CC [M] arch/x86/oprofile/op_model_p4.o
2025-10-02T15:35:19.2577257Z CC [M] sound/pci/pcxhr/pcxhr_core.o
2025-10-02T15:35:19.2653015Z CC [M] net/sched/cls_flower.o
2025-10-02T15:35:19.6849963Z CC [M] drivers/acpi/nfit/intel.o
2025-10-02T15:35:19.9472655Z LD [M] arch/x86/oprofile/oprofile.o
2025-10-02T15:35:20.0379876Z CC [M] net/sched/cls_matchall.o
2025-10-02T15:35:20.5085138Z CC [M] sound/pci/pcxhr/pcxhr_mix22.o
2025-10-02T15:35:20.6829096Z CC [M] drivers/acpi/nfit/mce.o
2025-10-02T15:35:21.3114190Z CC [M] fs/jffs2/compr.o
2025-10-02T15:35:21.4135771Z LD [M] drivers/acpi/nfit/nfit.o
2025-10-02T15:35:21.4464653Z LD [M] sound/pci/pcxhr/snd-pcxhr.o
2025-10-02T15:35:21.4823174Z CC drivers/acpi/tables.o
2025-10-02T15:35:21.5066560Z CC [M] sound/pci/riptide/riptide.o
2025-10-02T15:35:22.0023080Z CC [M] fs/jffs2/dir.o
2025-10-02T15:35:22.3900260Z CC drivers/acpi/blacklist.o
2025-10-02T15:35:22.5143639Z CC [M] net/sched/em_cmp.o
2025-10-02T15:35:22.7147886Z CC [M] fs/cifs/smb2inode.o
2025-10-02T15:35:22.9036420Z CC [M] fs/jffs2/file.o
2025-10-02T15:35:22.9685168Z CC drivers/acpi/osi.o
2025-10-02T15:35:23.2387075Z LD [M] sound/pci/riptide/snd-riptide.o
2025-10-02T15:35:23.3234939Z CC [M] sound/pci/rme9652/rme9652.o
2025-10-02T15:35:23.3323914Z CC [M] net/sched/em_nbyte.o
2025-10-02T15:35:23.4997516Z CC drivers/acpi/osl.o
2025-10-02T15:35:23.6345953Z CC [M] fs/jffs2/ioctl.o
2025-10-02T15:35:24.2572844Z CC [M] fs/jffs2/nodelist.o
2025-10-02T15:35:24.2987698Z CC [M] net/sched/em_u32.o
2025-10-02T15:35:24.9232335Z CC [M] fs/cifs/smb2file.o
2025-10-02T15:35:24.9480577Z CC drivers/acpi/utils.o
2025-10-02T15:35:25.0688179Z CC [M] sound/pci/rme9652/hdsp.o
2025-10-02T15:35:25.1372803Z CC [M] fs/jffs2/malloc.o
2025-10-02T15:35:25.2445288Z CC [M] net/sched/em_meta.o
2025-10-02T15:35:26.0025871Z CC [M] fs/jffs2/read.o
2025-10-02T15:35:26.0040438Z CC drivers/acpi/reboot.o
2025-10-02T15:35:26.3811904Z CC [M] fs/cifs/cifsacl.o
2025-10-02T15:35:26.7287975Z CC drivers/acpi/nvs.o
2025-10-02T15:35:26.8466169Z CC [M] fs/jffs2/nodemgmt.o
2025-10-02T15:35:26.8884514Z CC [M] net/sched/em_text.o
2025-10-02T15:35:27.4466350Z CC drivers/acpi/wakeup.o
2025-10-02T15:35:27.7761564Z CC [M] fs/jffs2/readinode.o
2025-10-02T15:35:27.8596232Z CC [M] net/sched/em_canid.o
2025-10-02T15:35:27.9312523Z CC [M] sound/pci/rme9652/hdspm.o
2025-10-02T15:35:28.0346783Z CC drivers/acpi/sleep.o
2025-10-02T15:35:28.6501474Z CC [M] fs/cifs/fs_context.o
2025-10-02T15:35:28.9815073Z CC [M] net/sched/em_ipset.o
2025-10-02T15:35:29.2377058Z CC [M] fs/jffs2/write.o
2025-10-02T15:35:29.3943862Z CC drivers/acpi/device_sysfs.o
2025-10-02T15:35:29.8464566Z CC [M] fs/cifs/xattr.o
2025-10-02T15:35:30.2408639Z CC [M] net/sched/em_ipt.o
2025-10-02T15:35:30.2667064Z CC drivers/acpi/device_pm.o
2025-10-02T15:35:30.2740165Z CC [M] fs/jffs2/scan.o
2025-10-02T15:35:30.7715001Z LD [M] sound/pci/rme9652/snd-rme9652.o
2025-10-02T15:35:30.7859274Z LD [M] sound/pci/rme9652/snd-hdsp.o
2025-10-02T15:35:30.8025513Z LD [M] sound/pci/rme9652/snd-hdspm.o
2025-10-02T15:35:30.8599796Z CC [M] sound/pci/trident/trident.o
2025-10-02T15:35:31.5317944Z CC [M] fs/cifs/cifs_spnego.o
2025-10-02T15:35:31.5567127Z CC [M] fs/jffs2/gc.o
2025-10-02T15:35:31.6162407Z CC drivers/acpi/proc.o
2025-10-02T15:35:31.6780787Z CC [M] sound/pci/trident/trident_main.o
2025-10-02T15:35:31.7712470Z AR net/sched/built-in.a
2025-10-02T15:35:32.1515594Z CC net/ethtool/ioctl.o
2025-10-02T15:35:32.5479111Z CC drivers/acpi/bus.o
2025-10-02T15:35:32.7927732Z CC [M] fs/cifs/dns_resolve.o
2025-10-02T15:35:32.9663016Z CC [M] fs/jffs2/symlink.o
2025-10-02T15:35:33.4912163Z CC [M] fs/jffs2/build.o
2025-10-02T15:35:33.8836954Z CC drivers/acpi/glue.o
2025-10-02T15:35:34.2052075Z CC [M] sound/pci/trident/trident_memory.o
2025-10-02T15:35:34.2420504Z CC [M] fs/jffs2/erase.o
2025-10-02T15:35:34.3005080Z CC [M] fs/cifs/cifs_dfs_ref.o
2025-10-02T15:35:34.7662570Z CC drivers/acpi/scan.o
2025-10-02T15:35:34.8538216Z CC net/ethtool/common.o
2025-10-02T15:35:35.1076368Z LD [M] sound/pci/trident/snd-trident.o
2025-10-02T15:35:35.1615132Z CC [M] sound/pci/ymfpci/ymfpci.o
2025-10-02T15:35:35.2183281Z CC [M] fs/jffs2/background.o
2025-10-02T15:35:35.8894805Z CC net/ethtool/netlink.o
2025-10-02T15:35:35.9863508Z CC [M] fs/jffs2/fs.o
2025-10-02T15:35:36.0212418Z CC [M] fs/cifs/dfs_cache.o
2025-10-02T15:35:36.0803083Z CC [M] sound/pci/ymfpci/ymfpci_main.o
2025-10-02T15:35:36.4530238Z CC drivers/acpi/resource.o
2025-10-02T15:35:37.0272951Z CC [M] fs/jffs2/writev.o
2025-10-02T15:35:37.3168436Z CC net/ethtool/bitset.o
2025-10-02T15:35:37.3467004Z CC drivers/acpi/acpi_processor.o
2025-10-02T15:35:37.7790941Z CC [M] fs/jffs2/super.o
2025-10-02T15:35:37.7965767Z LD [M] sound/pci/ymfpci/snd-ymfpci.o
2025-10-02T15:35:37.8954217Z CC [M] sound/pci/vx222/vx222.o
2025-10-02T15:35:38.4482843Z CC [M] fs/cifs/fscache.o
2025-10-02T15:35:38.4792018Z CC drivers/acpi/processor_core.o
2025-10-02T15:35:38.6072300Z CC [M] fs/jffs2/debug.o
2025-10-02T15:35:38.7604150Z CC [M] sound/pci/vx222/vx222_ops.o
2025-10-02T15:35:38.9425389Z CC net/ethtool/strset.o
2025-10-02T15:35:39.1370078Z CC drivers/acpi/processor_pdc.o
2025-10-02T15:35:39.3790038Z CC [M] fs/jffs2/wbuf.o
2025-10-02T15:35:39.6934899Z LD [M] sound/pci/vx222/snd-vx222.o
2025-10-02T15:35:39.7408103Z CC [M] sound/pci/ad1889.o
2025-10-02T15:35:39.8217663Z CC drivers/acpi/ec.o
2025-10-02T15:35:39.8440224Z CC [M] fs/cifs/cache.o
2025-10-02T15:35:40.3827272Z CC net/ethtool/linkinfo.o
2025-10-02T15:35:40.6830968Z CC [M] fs/jffs2/xattr.o
2025-10-02T15:35:40.7783576Z CC [M] sound/pci/als300.o
2025-10-02T15:35:41.2446076Z LD [M] fs/cifs/cifs.o
2025-10-02T15:35:41.3829902Z CC net/ethtool/linkmodes.o
2025-10-02T15:35:41.4491454Z CC [M] sound/pci/als4000.o
2025-10-02T15:35:41.5847758Z CC drivers/acpi/dock.o
2025-10-02T15:35:42.0442774Z CC net/ethtool/linkstate.o
2025-10-02T15:35:42.2228673Z CC [M] fs/jffs2/xattr_trusted.o
2025-10-02T15:35:42.3468518Z CC drivers/acpi/pci_root.o
2025-10-02T15:35:42.4437027Z CC [M] sound/pci/atiixp.o
2025-10-02T15:35:42.5359118Z CC [M] fs/ubifs/shrinker.o
2025-10-02T15:35:42.8555080Z CC [M] fs/jffs2/xattr_user.o
2025-10-02T15:35:43.3028176Z CC net/ethtool/debug.o
2025-10-02T15:35:43.4233689Z CC [M] fs/ubifs/journal.o
2025-10-02T15:35:43.4510038Z CC drivers/acpi/pci_link.o
2025-10-02T15:35:43.5399055Z CC [M] fs/jffs2/security.o
2025-10-02T15:35:43.8823971Z CC [M] sound/pci/atiixp_modem.o
2025-10-02T15:35:44.3387108Z CC net/ethtool/wol.o
2025-10-02T15:35:44.3542475Z CC [M] fs/jffs2/acl.o
2025-10-02T15:35:44.5215389Z CC drivers/acpi/pci_irq.o
2025-10-02T15:35:44.9431997Z CC [M] sound/pci/azt3328.o
2025-10-02T15:35:45.1904842Z CC [M] fs/jffs2/compr_rtime.o
2025-10-02T15:35:45.2119113Z CC [M] fs/ubifs/file.o
2025-10-02T15:35:45.4931839Z CC drivers/acpi/acpi_lpss.o
2025-10-02T15:35:45.6118469Z CC net/ethtool/features.o
2025-10-02T15:35:45.7266984Z CC [M] fs/jffs2/compr_zlib.o
2025-10-02T15:35:46.2245588Z CC [M] sound/pci/bt87x.o
2025-10-02T15:35:46.4031176Z CC [M] fs/jffs2/summary.o
2025-10-02T15:35:46.8896527Z CC net/ethtool/privflags.o
2025-10-02T15:35:46.9234453Z CC drivers/acpi/acpi_apd.o
2025-10-02T15:35:47.0242174Z CC [M] fs/ubifs/dir.o
2025-10-02T15:35:47.3854504Z CC [M] sound/pci/cmipci.o
2025-10-02T15:35:47.4744788Z LD [M] fs/jffs2/jffs2.o
2025-10-02T15:35:47.5701546Z CC drivers/acpi/acpi_platform.o
2025-10-02T15:35:47.5902105Z CC net/ethtool/rings.o
2025-10-02T15:35:48.0886651Z AR drivers/clk/actions/built-in.a
2025-10-02T15:35:48.1657749Z AR drivers/clk/analogbits/built-in.a
2025-10-02T15:35:48.2458774Z AR drivers/clk/bcm/built-in.a
2025-10-02T15:35:48.3189999Z AR drivers/clk/imgtec/built-in.a
2025-10-02T15:35:48.3374527Z CC drivers/acpi/acpi_pnp.o
2025-10-02T15:35:48.3871101Z AR drivers/clk/imx/built-in.a
2025-10-02T15:35:48.4577821Z AR drivers/clk/ingenic/built-in.a
2025-10-02T15:35:48.5340658Z AR drivers/clk/mediatek/built-in.a
2025-10-02T15:35:48.5960489Z CC [M] fs/ubifs/super.o
2025-10-02T15:35:48.6120198Z AR drivers/clk/mvebu/built-in.a
2025-10-02T15:35:48.6657156Z AR drivers/clk/renesas/built-in.a
2025-10-02T15:35:48.7419858Z AR drivers/clk/sprd/built-in.a
2025-10-02T15:35:48.8078726Z AR drivers/clk/ti/built-in.a
2025-10-02T15:35:48.8343648Z CC net/ethtool/channels.o
2025-10-02T15:35:48.8571923Z AR drivers/clk/versatile/built-in.a
2025-10-02T15:35:48.8914791Z CC drivers/acpi/power.o
2025-10-02T15:35:48.9353157Z CC drivers/clk/x86/clk-pmc-atom.o
2025-10-02T15:35:49.2809442Z CC [M] sound/pci/cs4281.o
2025-10-02T15:35:49.5800511Z CC drivers/clk/x86/clk-fch.o
2025-10-02T15:35:49.9545020Z CC drivers/acpi/event.o
2025-10-02T15:35:50.2061201Z CC drivers/clk/x86/clk-lpt.o
2025-10-02T15:35:50.2799179Z CC net/ethtool/coalesce.o
2025-10-02T15:35:50.5151318Z CC [M] sound/pci/ens1370.o
2025-10-02T15:35:50.5330919Z CC [M] fs/ubifs/sb.o
2025-10-02T15:35:50.6538725Z AR drivers/clk/x86/built-in.a
2025-10-02T15:35:50.6670563Z CC drivers/clk/clk-devres.o
2025-10-02T15:35:50.7722579Z CC drivers/acpi/evged.o
2025-10-02T15:35:51.1782922Z CC drivers/clk/clk-bulk.o
2025-10-02T15:35:51.4001153Z CC drivers/acpi/sysfs.o
2025-10-02T15:35:51.6789246Z CC drivers/clk/clkdev.o
2025-10-02T15:35:51.7051146Z CC net/ethtool/pause.o
2025-10-02T15:35:51.7501934Z CC [M] fs/ubifs/io.o
2025-10-02T15:35:51.8141185Z CC [M] sound/pci/ak4531_codec.o
2025-10-02T15:35:52.2585924Z CC drivers/clk/clk.o
2025-10-02T15:35:52.5411685Z CC drivers/acpi/property.o
2025-10-02T15:35:52.7090934Z CC [M] sound/pci/ens1371.o
2025-10-02T15:35:53.2217407Z CC net/ethtool/eee.o
2025-10-02T15:35:53.3007782Z CC [M] fs/ubifs/tnc.o
2025-10-02T15:35:53.7471585Z CC drivers/acpi/acpi_cmos_rtc.o
2025-10-02T15:35:54.3016242Z CC [M] sound/pci/es1938.o
2025-10-02T15:35:54.3916778Z CC net/ethtool/tsinfo.o
2025-10-02T15:35:54.4021167Z CC drivers/acpi/x86/apple.o
2025-10-02T15:35:55.1948623Z CC drivers/acpi/x86/utils.o
2025-10-02T15:35:55.3805513Z CC net/ethtool/cabletest.o
2025-10-02T15:35:55.7103469Z CC [M] sound/pci/es1968.o
2025-10-02T15:35:55.7571110Z CC drivers/acpi/debugfs.o
2025-10-02T15:35:55.8078137Z CC drivers/clk/clk-divider.o
2025-10-02T15:35:55.9744715Z CC [M] fs/ubifs/master.o
2025-10-02T15:35:56.2811673Z CC drivers/acpi/acpi_lpat.o
2025-10-02T15:35:56.6072947Z CC drivers/clk/clk-fixed-factor.o
2025-10-02T15:35:56.6685146Z CC net/ethtool/tunnels.o
2025-10-02T15:35:56.9030363Z CC drivers/acpi/acpi_lpit.o
2025-10-02T15:35:57.0443745Z CC drivers/clk/clk-fixed-rate.o
2025-10-02T15:35:57.3531368Z CC [M] fs/ubifs/scan.o
2025-10-02T15:35:57.5190367Z CC drivers/acpi/acpi_watchdog.o
2025-10-02T15:35:57.5416100Z CC drivers/clk/clk-gate.o
2025-10-02T15:35:57.8735262Z AR net/ethtool/built-in.a
2025-10-02T15:35:57.9803905Z CC [M] net/netfilter/ipset/ip_set_core.o
2025-10-02T15:35:58.0597006Z CC [M] sound/pci/fm801.o
2025-10-02T15:35:58.1250671Z CC drivers/clk/clk-multiplier.o
2025-10-02T15:35:58.1715092Z CC drivers/acpi/acpi_adxl.o
2025-10-02T15:35:58.3754931Z CC [M] fs/ubifs/replay.o
2025-10-02T15:35:58.7230981Z CC drivers/acpi/ac.o
2025-10-02T15:35:58.7232352Z CC drivers/clk/clk-mux.o
2025-10-02T15:35:59.2471853Z CC drivers/clk/clk-composite.o
2025-10-02T15:35:59.4082128Z CC drivers/acpi/button.o
2025-10-02T15:35:59.7152340Z CC [M] fs/ubifs/log.o
2025-10-02T15:35:59.7516267Z CC [M] sound/pci/intel8x0.o
2025-10-02T15:35:59.8668072Z CC drivers/clk/clk-fractional-divider.o
2025-10-02T15:36:00.3512341Z CC drivers/acpi/fan.o
2025-10-02T15:36:00.5098285Z CC drivers/clk/clk-gpio.o
2025-10-02T15:36:00.5770937Z CC [M] net/netfilter/ipset/ip_set_getport.o
2025-10-02T15:36:00.8008354Z CC [M] fs/ubifs/commit.o
2025-10-02T15:36:00.9633248Z CC drivers/acpi/pci_slot.o
2025-10-02T15:36:01.2250991Z CC [M] drivers/clk/clk-cdce706.o
2025-10-02T15:36:01.6766718Z CC [M] sound/pci/intel8x0m.o
2025-10-02T15:36:01.7486976Z CC drivers/acpi/processor_driver.o
2025-10-02T15:36:01.8868541Z CC [M] net/netfilter/ipset/pfxlen.o
2025-10-02T15:36:01.9091381Z CC [M] fs/ubifs/gc.o
2025-10-02T15:36:02.2802616Z CC [M] drivers/clk/clk-cs2000-cp.o
2025-10-02T15:36:02.2901030Z CC drivers/acpi/processor_idle.o
2025-10-02T15:36:02.9297921Z CC [M] drivers/clk/clk-max9485.o
2025-10-02T15:36:02.9340993Z CC [M] sound/pci/maestro3.o
2025-10-02T15:36:02.9535344Z CC [M] net/netfilter/ipset/ip_set_bitmap_ip.o
2025-10-02T15:36:03.3755480Z CC [M] fs/ubifs/orphan.o
2025-10-02T15:36:03.5444632Z CC drivers/acpi/processor_throttling.o
2025-10-02T15:36:03.8601858Z CC [M] drivers/clk/clk-palmas.o
2025-10-02T15:36:04.4620474Z CC [M] net/netfilter/ipset/ip_set_bitmap_ipmac.o
2025-10-02T15:36:04.5050685Z CC [M] sound/pci/rme32.o
2025-10-02T15:36:04.6251592Z CC drivers/acpi/processor_thermal.o
2025-10-02T15:36:04.7408418Z CC [M] drivers/clk/clk-pwm.o
2025-10-02T15:36:04.9392393Z CC [M] fs/ubifs/budget.o
2025-10-02T15:36:05.2285672Z CC drivers/acpi/processor_perflib.o
2025-10-02T15:36:05.3812527Z CC [M] drivers/clk/clk-s2mps11.o
2025-10-02T15:36:05.9651215Z CC [M] drivers/clk/clk-si5341.o
2025-10-02T15:36:05.9685925Z CC [M] sound/pci/rme96.o
2025-10-02T15:36:06.0401201Z CC [M] net/netfilter/ipset/ip_set_bitmap_port.o
2025-10-02T15:36:06.0447670Z CC [M] fs/ubifs/find.o
2025-10-02T15:36:06.1316447Z CC drivers/acpi/container.o
2025-10-02T15:36:06.7263098Z CC drivers/acpi/thermal.o
2025-10-02T15:36:07.2230542Z CC [M] drivers/clk/clk-si5351.o
2025-10-02T15:36:07.3516488Z CC [M] net/netfilter/ipset/ip_set_hash_ip.o
2025-10-02T15:36:07.4577103Z CC [M] fs/ubifs/tnc_commit.o
2025-10-02T15:36:07.7128841Z CC [M] sound/pci/sonicvibes.o
2025-10-02T15:36:08.0468555Z CC drivers/acpi/acpi_memhotplug.o
2025-10-02T15:36:08.6601237Z CC [M] drivers/clk/clk-si544.o
2025-10-02T15:36:08.7774178Z CC drivers/acpi/ioapic.o
2025-10-02T15:36:08.7982094Z CC [M] fs/ubifs/compress.o
2025-10-02T15:36:08.9659132Z CC [M] sound/pci/via82xx.o
2025-10-02T15:36:09.4135163Z CC [M] drivers/clk/clk-twl6040.o
2025-10-02T15:36:09.6504661Z CC [M] fs/ubifs/lpt.o
2025-10-02T15:36:09.6643518Z CC drivers/acpi/battery.o
2025-10-02T15:36:10.2759353Z CC [M] drivers/clk/clk-wm831x.o
2025-10-02T15:36:10.6142956Z CC [M] sound/pci/via82xx_modem.o
2025-10-02T15:36:10.6647895Z CC [M] net/netfilter/ipset/ip_set_hash_ipmac.o
2025-10-02T15:36:10.9844656Z AR drivers/clk/built-in.a
2025-10-02T15:36:11.1063383Z CC drivers/acpi/hed.o
2025-10-02T15:36:11.1651518Z LD [M] sound/pci/snd-ad1889.o
2025-10-02T15:36:11.1942077Z CC [M] net/netfilter/ipset/ip_set_hash_ipmark.o
2025-10-02T15:36:11.6539211Z CC drivers/acpi/bgrt.o
2025-10-02T15:36:11.7346803Z LD [M] sound/pci/snd-als300.o
2025-10-02T15:36:11.7609968Z LD [M] sound/pci/snd-als4000.o
2025-10-02T15:36:11.7889063Z LD [M] sound/pci/snd-atiixp.o
2025-10-02T15:36:11.8101589Z LD [M] sound/pci/snd-atiixp-modem.o
2025-10-02T15:36:11.8246734Z LD [M] sound/pci/snd-azt3328.o
2025-10-02T15:36:11.8407194Z LD [M] sound/pci/snd-bt87x.o
2025-10-02T15:36:11.8545227Z LD [M] sound/pci/snd-cmipci.o
2025-10-02T15:36:11.8709403Z LD [M] sound/pci/snd-cs4281.o
2025-10-02T15:36:11.8856516Z LD [M] sound/pci/snd-ens1370.o
2025-10-02T15:36:11.9008799Z LD [M] sound/pci/snd-ens1371.o
2025-10-02T15:36:11.9152421Z LD [M] sound/pci/snd-es1938.o
2025-10-02T15:36:11.9296952Z LD [M] sound/pci/snd-es1968.o
2025-10-02T15:36:11.9475514Z LD [M] sound/pci/snd-fm801.o
2025-10-02T15:36:11.9643765Z LD [M] sound/pci/snd-intel8x0.o
2025-10-02T15:36:11.9831943Z LD [M] sound/pci/snd-intel8x0m.o
2025-10-02T15:36:12.0040929Z LD [M] sound/pci/snd-maestro3.o
2025-10-02T15:36:12.0121599Z CC [M] fs/ubifs/lprops.o
2025-10-02T15:36:12.0378199Z LD [M] sound/pci/snd-rme32.o
2025-10-02T15:36:12.0692004Z LD [M] sound/pci/snd-rme96.o
2025-10-02T15:36:12.0987084Z LD [M] sound/pci/snd-sonicvibes.o
2025-10-02T15:36:12.1278067Z LD [M] sound/pci/snd-via82xx.o
2025-10-02T15:36:12.1576269Z LD [M] sound/pci/snd-via82xx-modem.o
2025-10-02T15:36:12.2650218Z CC drivers/acpi/cppc_acpi.o
2025-10-02T15:36:12.4893865Z CC [M] sound/usb/misc/ua101.o
2025-10-02T15:36:13.4466936Z CC drivers/acpi/spcr.o
2025-10-02T15:36:13.6266446Z CC [M] fs/ubifs/recovery.o
2025-10-02T15:36:13.6709187Z CC [M] drivers/acpi/acpi_ipmi.o
2025-10-02T15:36:13.8154805Z LD [M] sound/usb/misc/snd-ua101.o
2025-10-02T15:36:13.8636693Z CC [M] sound/usb/usx2y/usbusx2y.o
2025-10-02T15:36:14.2345154Z CC [M] sound/usb/caiaq/device.o
2025-10-02T15:36:14.4969060Z CC [M] net/netfilter/ipset/ip_set_hash_ipport.o
2025-10-02T15:36:14.6455592Z CC [M] drivers/acpi/acpi_video.o
2025-10-02T15:36:14.6815824Z CC [M] sound/usb/usx2y/usX2Yhwdep.o
2025-10-02T15:36:15.1416714Z CC [M] sound/usb/caiaq/audio.o
2025-10-02T15:36:15.1538841Z CC [M] fs/ubifs/ioctl.o
2025-10-02T15:36:15.4979441Z CC [M] sound/usb/usx2y/usx2yhwdeppcm.o
2025-10-02T15:36:16.0870932Z CC [M] fs/ubifs/lpt_commit.o
2025-10-02T15:36:16.4235126Z CC [M] drivers/acpi/video_detect.o
2025-10-02T15:36:16.5485556Z CC [M] sound/usb/caiaq/midi.o
2025-10-02T15:36:17.2110842Z CC [M] sound/usb/usx2y/us122l.o
2025-10-02T15:36:17.2120785Z CC [M] drivers/acpi/acpi_tad.o
2025-10-02T15:36:17.3158730Z CC [M] sound/usb/caiaq/control.o
2025-10-02T15:36:17.7681165Z CC [M] net/netfilter/ipset/ip_set_hash_ipportip.o
2025-10-02T15:36:17.8539940Z CC [M] fs/ubifs/tnc_misc.o
2025-10-02T15:36:18.0256362Z CC [M] sound/usb/caiaq/input.o
2025-10-02T15:36:18.4153483Z CC [M] drivers/acpi/sbshc.o
2025-10-02T15:36:18.5688793Z LD [M] sound/usb/usx2y/snd-usb-usx2y.o
2025-10-02T15:36:18.5860072Z LD [M] sound/usb/usx2y/snd-usb-us122l.o
2025-10-02T15:36:18.7761336Z CC lib/math/div64.o
2025-10-02T15:36:18.8814182Z CC lib/math/gcd.o
2025-10-02T15:36:18.9125096Z LD [M] sound/usb/caiaq/snd-usb-caiaq.o
2025-10-02T15:36:18.9829236Z CC [M] fs/ubifs/debug.o
2025-10-02T15:36:18.9922478Z CC [M] sound/usb/6fire/chip.o
2025-10-02T15:36:19.0148201Z CC lib/math/lcm.o
2025-10-02T15:36:19.1069012Z CC lib/math/int_pow.o
2025-10-02T15:36:19.2157148Z CC lib/math/int_sqrt.o
2025-10-02T15:36:19.3269733Z CC lib/math/reciprocal_div.o
2025-10-02T15:36:19.4643085Z CC lib/math/rational.o
2025-10-02T15:36:19.5231283Z CC [M] drivers/acpi/sbs.o
2025-10-02T15:36:19.5740949Z CC [M] lib/math/cordic.o
2025-10-02T15:36:19.9235762Z CC [M] sound/usb/6fire/comm.o
2025-10-02T15:36:19.9711887Z AR lib/math/built-in.a
2025-10-02T15:36:20.0172077Z CC lib/crypto/chacha.o
2025-10-02T15:36:20.2366539Z CC lib/crypto/aes.o
2025-10-02T15:36:20.4834167Z CC [M] drivers/acpi/ec_sys.o
2025-10-02T15:36:20.7236986Z CC [M] sound/usb/6fire/midi.o
2025-10-02T15:36:20.9364763Z CC lib/crypto/blake2s.o
2025-10-02T15:36:20.9656108Z CC [M] net/netfilter/ipset/ip_set_hash_ipportnet.o
2025-10-02T15:36:21.1599385Z CC [M] fs/ubifs/misc.o
2025-10-02T15:36:21.2462806Z CC [M] drivers/acpi/custom_method.o
2025-10-02T15:36:21.3750629Z CC [M] sound/usb/6fire/control.o
2025-10-02T15:36:21.4642355Z CC lib/crypto/blake2s-generic.o
2025-10-02T15:36:21.9509375Z CC [M] fs/ubifs/crypto.o
2025-10-02T15:36:22.0131260Z CC [M] drivers/acpi/acpi_pad.o
2025-10-02T15:36:22.0984796Z CC [M] sound/usb/6fire/firmware.o
2025-10-02T15:36:22.4286653Z CC lib/crypto/sha256.o
2025-10-02T15:36:22.7827311Z CC [M] drivers/acpi/acpi_extlog.o
2025-10-02T15:36:22.8471137Z CC [M] fs/ubifs/xattr.o
2025-10-02T15:36:22.9158645Z CC [M] sound/usb/6fire/pcm.o
2025-10-02T15:36:23.6507882Z CC [M] lib/crypto/libchacha.o
2025-10-02T15:36:23.7396910Z CC [M] drivers/acpi/acpi_configfs.o
2025-10-02T15:36:23.8832205Z LD [M] sound/usb/6fire/snd-usb-6fire.o
2025-10-02T15:36:23.8875108Z CC [M] fs/ubifs/auth.o
2025-10-02T15:36:23.9352792Z CC [M] sound/usb/hiface/chip.o
2025-10-02T15:36:24.1564700Z CC [M] lib/crypto/arc4.o
2025-10-02T15:36:24.6266176Z CC [M] lib/crypto/chacha20poly1305.o
2025-10-02T15:36:24.6405633Z CC [M] net/netfilter/ipset/ip_set_hash_mac.o
2025-10-02T15:36:24.6761326Z CC [M] sound/usb/hiface/pcm.o
2025-10-02T15:36:24.7325567Z LD [M] drivers/acpi/video.o
2025-10-02T15:36:24.7503464Z AR drivers/acpi/built-in.a
2025-10-02T15:36:24.8700577Z LD [M] fs/ubifs/ubifs.o
2025-10-02T15:36:24.9405754Z CC drivers/dma/dw/core.o
2025-10-02T15:36:25.0555130Z CC [M] fs/affs/super.o
2025-10-02T15:36:25.4812896Z CC [M] lib/crypto/curve25519-hacl64.o
2025-10-02T15:36:25.8900242Z LD [M] sound/usb/hiface/snd-usb-hiface.o
2025-10-02T15:36:25.9814130Z CC [M] sound/usb/bcd2000/bcd2000.o
2025-10-02T15:36:26.2056576Z CC [M] fs/affs/namei.o
2025-10-02T15:36:26.3826993Z CC drivers/dma/dw/dw.o
2025-10-02T15:36:26.5825516Z CC [M] net/netfilter/ipset/ip_set_hash_net.o
2025-10-02T15:36:26.8452012Z LD [M] sound/usb/bcd2000/snd-bcd2000.o
2025-10-02T15:36:26.9323752Z CC [M] sound/usb/line6/capture.o
2025-10-02T15:36:27.0276742Z CC drivers/dma/dw/idma32.o
2025-10-02T15:36:27.2736936Z CC [M] fs/affs/inode.o
2025-10-02T15:36:27.7945430Z CC [M] sound/usb/line6/driver.o
2025-10-02T15:36:27.8287939Z CC drivers/dma/dw/acpi.o
2025-10-02T15:36:28.2257202Z CC [M] fs/affs/file.o
2025-10-02T15:36:28.6864733Z CC drivers/dma/dw/pci.o
2025-10-02T15:36:28.8279286Z CC [M] sound/usb/line6/midi.o
2025-10-02T15:36:28.9481127Z CC [M] lib/crypto/curve25519-generic.o
2025-10-02T15:36:29.4024700Z CC [M] drivers/dma/dw/platform.o
2025-10-02T15:36:29.4460749Z CC [M] lib/crypto/curve25519.o
2025-10-02T15:36:29.6976843Z CC [M] sound/usb/line6/midibuf.o
2025-10-02T15:36:29.8211998Z CC [M] fs/affs/dir.o
2025-10-02T15:36:29.9807294Z CC [M] lib/crypto/des.o
2025-10-02T15:36:30.1142695Z CC [M] net/netfilter/ipset/ip_set_hash_netport.o
2025-10-02T15:36:30.1682976Z AR drivers/dma/dw/built-in.a
2025-10-02T15:36:30.1820349Z LD [M] drivers/dma/dw/dw_dmac.o
2025-10-02T15:36:30.2345678Z CC [M] sound/usb/line6/pcm.o
2025-10-02T15:36:30.2551338Z CC drivers/dma/hsu/hsu.o
2025-10-02T15:36:30.6600663Z CC [M] fs/affs/amigaffs.o
2025-10-02T15:36:31.1501522Z CC [M] lib/crypto/poly1305-donna64.o
2025-10-02T15:36:31.2252720Z AR drivers/dma/hsu/built-in.a
2025-10-02T15:36:31.2518519Z AR drivers/dma/mediatek/built-in.a
2025-10-02T15:36:31.2545185Z CC [M] sound/usb/line6/playback.o
2025-10-02T15:36:31.3198346Z AR drivers/dma/qcom/built-in.a
2025-10-02T15:36:31.3449115Z CC [M] drivers/dma/qcom/hidma_mgmt.o
2025-10-02T15:36:31.5975959Z CC [M] lib/crypto/poly1305.o
2025-10-02T15:36:31.7898201Z CC [M] fs/affs/bitmap.o
2025-10-02T15:36:32.0784514Z CC [M] sound/usb/line6/pod.o
2025-10-02T15:36:32.1041269Z CC [M] drivers/dma/qcom/hidma_mgmt_sys.o
2025-10-02T15:36:32.1745620Z LD [M] lib/crypto/libarc4.o
2025-10-02T15:36:32.1977678Z LD [M] lib/crypto/libchacha20poly1305.o
2025-10-02T15:36:32.2242179Z LD [M] lib/crypto/libcurve25519-generic.o
2025-10-02T15:36:32.2559727Z LD [M] lib/crypto/libcurve25519.o
2025-10-02T15:36:32.2747225Z LD [M] lib/crypto/libdes.o
2025-10-02T15:36:32.3040224Z LD [M] lib/crypto/libpoly1305.o
2025-10-02T15:36:32.3323829Z AR lib/crypto/built-in.a
2025-10-02T15:36:32.4840739Z CC lib/zlib_inflate/inffast.o
2025-10-02T15:36:32.7156440Z CC [M] fs/affs/symlink.o
2025-10-02T15:36:32.7506238Z CC [M] drivers/dma/qcom/hidma_ll.o
2025-10-02T15:36:32.8167253Z CC [M] sound/usb/line6/podhd.o
2025-10-02T15:36:32.8429891Z CC lib/zlib_inflate/inflate.o
2025-10-02T15:36:33.4032116Z LD [M] fs/affs/affs.o
2025-10-02T15:36:33.5115801Z CC [M] fs/romfs/storage.o
2025-10-02T15:36:33.6217008Z CC [M] net/netfilter/ipset/ip_set_hash_netiface.o
2025-10-02T15:36:33.6230649Z CC [M] sound/usb/line6/toneport.o
2025-10-02T15:36:33.7024357Z CC lib/zlib_inflate/infutil.o
2025-10-02T15:36:33.7404647Z CC [M] drivers/dma/qcom/hidma.o
2025-10-02T15:36:34.1394673Z CC lib/zlib_inflate/inftrees.o
2025-10-02T15:36:34.2904654Z CC [M] fs/romfs/super.o
2025-10-02T15:36:34.3970946Z CC [M] sound/usb/line6/variax.o
2025-10-02T15:36:34.4908627Z CC lib/zlib_inflate/inflate_syms.o
2025-10-02T15:36:34.9481280Z AR lib/zlib_inflate/built-in.a
2025-10-02T15:36:34.9945656Z CC lib/zlib_deflate/deflate.o
2025-10-02T15:36:35.1164826Z CC [M] drivers/dma/qcom/hidma_dbg.o
2025-10-02T15:36:35.1382707Z LD [M] sound/usb/line6/snd-usb-line6.o
2025-10-02T15:36:35.1606333Z LD [M] sound/usb/line6/snd-usb-pod.o
2025-10-02T15:36:35.1751101Z LD [M] sound/usb/line6/snd-usb-podhd.o
2025-10-02T15:36:35.1873719Z LD [M] sound/usb/line6/snd-usb-toneport.o
2025-10-02T15:36:35.2081237Z LD [M] sound/usb/line6/snd-usb-variax.o
2025-10-02T15:36:35.2716730Z LD [M] fs/romfs/romfs.o
2025-10-02T15:36:35.3018342Z CC [M] sound/usb/card.o
2025-10-02T15:36:35.3531976Z CC [M] fs/fuse/dev.o
2025-10-02T15:36:35.9510772Z LD [M] drivers/dma/qcom/hdma_mgmt.o
2025-10-02T15:36:35.9780099Z LD [M] drivers/dma/qcom/hdma.o
2025-10-02T15:36:36.0147193Z CC lib/zlib_deflate/deftree.o
2025-10-02T15:36:36.0877856Z AR drivers/dma/ti/built-in.a
2025-10-02T15:36:36.1578221Z AR drivers/dma/xilinx/built-in.a
2025-10-02T15:36:36.2259782Z CC [M] drivers/dma/dw-edma/dw-edma-core.o
2025-10-02T15:36:36.4437169Z CC [M] sound/usb/clock.o
2025-10-02T15:36:36.9416989Z CC lib/zlib_deflate/deflate_syms.o
2025-10-02T15:36:37.2083822Z CC [M] net/netfilter/ipset/ip_set_hash_netnet.o
2025-10-02T15:36:37.3219090Z CC [M] sound/usb/endpoint.o
2025-10-02T15:36:37.3588452Z AR lib/zlib_deflate/built-in.a
2025-10-02T15:36:37.3858570Z CC lib/lzo/lzo1x_compress.o
2025-10-02T15:36:37.5305271Z CC [M] drivers/dma/dw-edma/dw-edma-v0-core.o
2025-10-02T15:36:37.8977127Z CC lib/lzo/lzo1x_decompress_safe.o
2025-10-02T15:36:38.0184970Z CC [M] fs/fuse/dir.o
2025-10-02T15:36:38.5190149Z CC [M] drivers/dma/dw-edma/dw-edma-v0-debugfs.o
2025-10-02T15:36:38.5276721Z AR lib/lzo/built-in.a
2025-10-02T15:36:38.5535588Z CC lib/lz4/lz4_compress.o
2025-10-02T15:36:38.6323727Z CC [M] sound/usb/format.o
2025-10-02T15:36:39.2606496Z CC [M] drivers/dma/dw-edma/dw-edma-pcie.o
2025-10-02T15:36:39.6435699Z CC [M] sound/usb/helper.o
2025-10-02T15:36:40.0206732Z CC [M] fs/fuse/file.o
2025-10-02T15:36:40.0592738Z LD [M] drivers/dma/dw-edma/dw-edma.o
2025-10-02T15:36:40.1143824Z CC [M] drivers/dma/ioat/init.o
2025-10-02T15:36:40.3506083Z CC [M] sound/usb/mixer.o
2025-10-02T15:36:40.6976254Z CC lib/lz4/lz4_decompress.o
2025-10-02T15:36:41.3341205Z CC [M] net/netfilter/ipset/ip_set_hash_netportnet.o
2025-10-02T15:36:41.3656107Z CC [M] drivers/dma/ioat/dma.o
2025-10-02T15:36:42.3229225Z CC [M] lib/lz4/lz4hc_compress.o
2025-10-02T15:36:42.8253969Z CC [M] drivers/dma/ioat/prep.o
2025-10-02T15:36:42.8749841Z CC [M] sound/usb/mixer_quirks.o
2025-10-02T15:36:43.2182600Z CC [M] fs/fuse/inode.o
2025-10-02T15:36:43.8858944Z AR lib/lz4/built-in.a
2025-10-02T15:36:43.9294343Z CC lib/zstd/fse_compress.o
2025-10-02T15:36:44.2332707Z CC [M] drivers/dma/ioat/dca.o
2025-10-02T15:36:44.6533678Z CC [M] sound/usb/mixer_scarlett.o
2025-10-02T15:36:44.7562932Z CC lib/zstd/huf_compress.o
2025-10-02T15:36:44.9228759Z CC [M] fs/fuse/control.o
2025-10-02T15:36:45.1098881Z CC [M] drivers/dma/ioat/sysfs.o
2025-10-02T15:36:45.2021276Z CC [M] net/netfilter/ipset/ip_set_list_set.o
2025-10-02T15:36:45.6390852Z CC lib/zstd/compress.o
2025-10-02T15:36:45.6932711Z CC [M] sound/usb/mixer_scarlett_gen2.o
2025-10-02T15:36:45.8118452Z LD [M] drivers/dma/ioat/ioatdma.o
2025-10-02T15:36:45.9226402Z CC [M] drivers/dma/idxd/init.o
2025-10-02T15:36:45.9451738Z CC [M] fs/fuse/xattr.o
2025-10-02T15:36:46.6963076Z LD [M] net/netfilter/ipset/ip_set.o
2025-10-02T15:36:46.8438530Z CC [M] fs/fuse/acl.o
2025-10-02T15:36:46.8711170Z CC [M] net/netfilter/ipvs/ip_vs_conn.o
2025-10-02T15:36:46.9284859Z CC [M] sound/usb/mixer_us16x08.o
2025-10-02T15:36:47.0352798Z CC [M] drivers/dma/idxd/irq.o
2025-10-02T15:36:47.5646388Z CC [M] fs/fuse/readdir.o
2025-10-02T15:36:47.9212735Z CC [M] sound/usb/mixer_s1810c.o
2025-10-02T15:36:47.9360545Z CC [M] drivers/dma/idxd/device.o
2025-10-02T15:36:48.7253008Z CC [M] sound/usb/pcm.o
2025-10-02T15:36:48.7526304Z CC [M] fs/fuse/dax.o
2025-10-02T15:36:48.9574831Z CC [M] net/netfilter/ipvs/ip_vs_core.o
2025-10-02T15:36:49.2895590Z CC [M] drivers/dma/idxd/sysfs.o
2025-10-02T15:36:50.1743788Z CC [M] fs/fuse/cuse.o
2025-10-02T15:36:50.3738409Z CC [M] sound/usb/power.o
2025-10-02T15:36:50.6932869Z CC [M] drivers/dma/idxd/submit.o
2025-10-02T15:36:51.0231121Z CC [M] sound/usb/proc.o
2025-10-02T15:36:51.2628534Z CC [M] fs/fuse/virtio_fs.o
2025-10-02T15:36:51.4667464Z CC [M] drivers/dma/idxd/dma.o
2025-10-02T15:36:51.5935318Z CC [M] net/netfilter/ipvs/ip_vs_ctl.o
2025-10-02T15:36:51.7844688Z CC [M] sound/usb/quirks.o
2025-10-02T15:36:52.3883772Z CC [M] drivers/dma/idxd/cdev.o
2025-10-02T15:36:53.1619868Z LD [M] fs/fuse/fuse.o
2025-10-02T15:36:53.2224560Z LD [M] fs/fuse/virtiofs.o
2025-10-02T15:36:53.2590287Z LD [M] drivers/dma/idxd/idxd.o
2025-10-02T15:36:53.2740676Z CC [M] sound/usb/stream.o
2025-10-02T15:36:53.3089234Z CC [M] fs/overlayfs/super.o
2025-10-02T15:36:53.3308031Z CC [M] drivers/dma/sf-pdma/sf-pdma.o
2025-10-02T15:36:54.3617105Z CC drivers/dma/dmaengine.o
2025-10-02T15:36:54.6801511Z CC [M] sound/usb/validate.o
2025-10-02T15:36:54.9124804Z CC [M] net/netfilter/ipvs/ip_vs_sched.o
2025-10-02T15:36:55.0642577Z CC [M] fs/overlayfs/namei.o
2025-10-02T15:36:55.3234679Z CC [M] sound/usb/media.o
2025-10-02T15:36:55.8752719Z CC drivers/dma/virt-dma.o
2025-10-02T15:36:56.0768702Z CC [M] sound/usb/midi.o
2025-10-02T15:36:56.3895515Z CC [M] fs/overlayfs/util.o
2025-10-02T15:36:56.4058813Z CC [M] net/netfilter/ipvs/ip_vs_xmit.o
2025-10-02T15:36:56.6044166Z CC drivers/dma/acpi-dma.o
2025-10-02T15:36:57.3511363Z CC [M] drivers/dma/altera-msgdma.o
2025-10-02T15:36:57.5870818Z CC [M] fs/overlayfs/inode.o
2025-10-02T15:36:57.9424304Z LD [M] sound/usb/snd-usb-audio.o
2025-10-02T15:36:57.9944175Z LD [M] sound/usb/snd-usbmidi-lib.o
2025-10-02T15:36:58.0711123Z CC [M] sound/firewire/dice/dice-transaction.o
2025-10-02T15:36:58.3748208Z CC [M] drivers/dma/idma64.o
2025-10-02T15:36:58.6724316Z CC [M] fs/overlayfs/file.o
2025-10-02T15:36:58.9763227Z CC [M] sound/firewire/dice/dice-stream.o
2025-10-02T15:36:59.1483123Z CC lib/zstd/entropy_common.o
2025-10-02T15:36:59.2148546Z CC [M] net/netfilter/ipvs/ip_vs_app.o
2025-10-02T15:36:59.4459318Z CC lib/zstd/fse_decompress.o
2025-10-02T15:36:59.4510261Z CC [M] drivers/dma/plx_dma.o
2025-10-02T15:36:59.7468201Z CC [M] fs/overlayfs/dir.o
2025-10-02T15:36:59.9438681Z CC [M] sound/firewire/dice/dice-proc.o
2025-10-02T15:36:59.9848680Z CC lib/zstd/zstd_common.o
2025-10-02T15:37:00.1194463Z CC lib/zstd/huf_decompress.o
2025-10-02T15:37:00.4281983Z AR drivers/dma/built-in.a
2025-10-02T15:37:00.5770656Z AR drivers/soc/bcm/built-in.a
2025-10-02T15:37:00.6499034Z AR drivers/soc/fsl/built-in.a
2025-10-02T15:37:00.7155907Z AR drivers/soc/imx/built-in.a
2025-10-02T15:37:00.7469437Z CC [M] sound/firewire/dice/dice-midi.o
2025-10-02T15:37:00.7839428Z CC [M] net/netfilter/ipvs/ip_vs_sync.o
2025-10-02T15:37:00.7846938Z AR drivers/soc/mediatek/built-in.a
2025-10-02T15:37:00.8554469Z AR drivers/soc/amlogic/built-in.a
2025-10-02T15:37:00.9307909Z AR drivers/soc/qcom/built-in.a
2025-10-02T15:37:00.9561223Z CC [M] drivers/soc/qcom/qmi_encdec.o
2025-10-02T15:37:01.1176319Z CC [M] fs/overlayfs/readdir.o
2025-10-02T15:37:01.5715511Z CC [M] sound/firewire/dice/dice-pcm.o
2025-10-02T15:37:01.9120408Z CC [M] drivers/soc/qcom/qmi_interface.o
2025-10-02T15:37:02.1539318Z CC lib/zstd/decompress.o
2025-10-02T15:37:02.2923444Z CC [M] fs/overlayfs/copy_up.o
2025-10-02T15:37:02.5511210Z CC [M] sound/firewire/dice/dice-hwdep.o
2025-10-02T15:37:02.6238725Z CC [M] net/netfilter/ipvs/ip_vs_est.o
2025-10-02T15:37:03.3200634Z CC [M] sound/firewire/dice/dice.o
2025-10-02T15:37:03.4100002Z CC [M] fs/overlayfs/export.o
2025-10-02T15:37:03.4998445Z LD [M] drivers/soc/qcom/qmi_helpers.o
2025-10-02T15:37:03.5476229Z AR drivers/soc/renesas/built-in.a
2025-10-02T15:37:03.5838917Z AR drivers/soc/sunxi/built-in.a
2025-10-02T15:37:03.6188305Z AR drivers/soc/ti/built-in.a
2025-10-02T15:37:03.6537938Z AR drivers/soc/xilinx/built-in.a
2025-10-02T15:37:03.6642013Z CC [M] drivers/soc/xilinx/xlnx_vcu.o
2025-10-02T15:37:03.7867299Z CC [M] net/netfilter/ipvs/ip_vs_proto.o
2025-10-02T15:37:04.2370892Z CC [M] sound/firewire/dice/dice-tcelectronic.o
2025-10-02T15:37:04.2706071Z AR drivers/soc/built-in.a
2025-10-02T15:37:04.3154216Z CC drivers/virtio/virtio.o
2025-10-02T15:37:04.3557927Z LD [M] fs/overlayfs/overlay.o
2025-10-02T15:37:04.4220761Z CC [M] fs/orangefs/acl.o
2025-10-02T15:37:05.0253289Z AR lib/zstd/built-in.a
2025-10-02T15:37:05.0522013Z CC lib/xz/xz_dec_syms.o
2025-10-02T15:37:05.0673903Z CC [M] sound/firewire/dice/dice-alesis.o
2025-10-02T15:37:05.1038616Z CC drivers/virtio/virtio_ring.o
2025-10-02T15:37:05.2230702Z CC [M] net/netfilter/ipvs/ip_vs_pe.o
2025-10-02T15:37:05.3096573Z CC [M] fs/orangefs/file.o
2025-10-02T15:37:05.4962430Z CC lib/xz/xz_dec_stream.o
2025-10-02T15:37:05.6497458Z CC [M] sound/firewire/dice/dice-extension.o
2025-10-02T15:37:06.2707172Z CC lib/xz/xz_dec_lzma2.o
2025-10-02T15:37:06.3672469Z CC [M] sound/firewire/dice/dice-mytek.o
2025-10-02T15:37:06.3807669Z CC [M] fs/orangefs/orangefs-cache.o
2025-10-02T15:37:06.5355444Z CC [M] net/netfilter/ipvs/ip_vs_proto_tcp.o
2025-10-02T15:37:06.8357941Z CC [M] drivers/virtio/virtio_mmio.o
2025-10-02T15:37:07.1126191Z CC lib/xz/xz_dec_bcj.o
2025-10-02T15:37:07.1206209Z CC [M] sound/firewire/dice/dice-presonus.o
2025-10-02T15:37:07.2160852Z CC [M] fs/orangefs/orangefs-utils.o
2025-10-02T15:37:07.7836320Z LD [M] sound/firewire/dice/snd-dice.o
2025-10-02T15:37:07.8134594Z CC [M] drivers/virtio/virtio_pci_modern.o
2025-10-02T15:37:07.8450099Z AR lib/xz/built-in.a
2025-10-02T15:37:07.8753952Z CC [M] sound/firewire/oxfw/oxfw-command.o
2025-10-02T15:37:07.8862086Z CC lib/mpi/generic_mpih-lshift.o
2025-10-02T15:37:08.2127966Z CC [M] fs/orangefs/xattr.o
2025-10-02T15:37:08.3857679Z CC [M] net/netfilter/ipvs/ip_vs_proto_udp.o
2025-10-02T15:37:08.4595317Z CC lib/mpi/generic_mpih-mul1.o
2025-10-02T15:37:08.7152281Z CC [M] sound/firewire/oxfw/oxfw-stream.o
2025-10-02T15:37:08.7164484Z CC [M] drivers/virtio/virtio_pci_common.o
2025-10-02T15:37:09.0724065Z CC lib/mpi/generic_mpih-mul2.o
2025-10-02T15:37:09.1830852Z CC [M] fs/orangefs/dcache.o
2025-10-02T15:37:09.6324630Z CC lib/mpi/generic_mpih-mul3.o
2025-10-02T15:37:09.7455582Z CC [M] sound/firewire/oxfw/oxfw-pcm.o
2025-10-02T15:37:09.8206006Z CC [M] drivers/virtio/virtio_pci_legacy.o
2025-10-02T15:37:09.8948474Z CC [M] net/netfilter/ipvs/ip_vs_proto_ah_esp.o
2025-10-02T15:37:10.2003122Z CC [M] fs/orangefs/inode.o
2025-10-02T15:37:10.3021997Z CC lib/mpi/generic_mpih-rshift.o
2025-10-02T15:37:10.4455753Z CC [M] drivers/virtio/virtio_balloon.o
2025-10-02T15:37:10.8412935Z CC [M] sound/firewire/oxfw/oxfw-proc.o
2025-10-02T15:37:11.0349841Z CC [M] net/netfilter/ipvs/ip_vs_proto_sctp.o
2025-10-02T15:37:11.1851234Z CC lib/mpi/generic_mpih-sub1.o
2025-10-02T15:37:11.6267081Z CC [M] sound/firewire/oxfw/oxfw-midi.o
2025-10-02T15:37:11.8132518Z CC [M] fs/orangefs/orangefs-sysfs.o
2025-10-02T15:37:11.8181207Z CC lib/mpi/generic_mpih-add1.o
2025-10-02T15:37:11.8308619Z CC [M] drivers/virtio/virtio_input.o
2025-10-02T15:37:12.4092771Z CC [M] net/netfilter/ipvs/ip_vs_nfct.o
2025-10-02T15:37:12.4631817Z CC lib/mpi/ec.o
2025-10-02T15:37:12.5163783Z CC [M] sound/firewire/oxfw/oxfw-hwdep.o
2025-10-02T15:37:12.6932125Z CC [M] fs/orangefs/orangefs-mod.o
2025-10-02T15:37:12.8090380Z CC [M] drivers/virtio/virtio_vdpa.o
2025-10-02T15:37:13.2710615Z CC [M] sound/firewire/oxfw/oxfw-spkr.o
2025-10-02T15:37:13.6160483Z CC [M] drivers/virtio/virtio_mem.o
2025-10-02T15:37:13.6269751Z CC [M] fs/orangefs/super.o
2025-10-02T15:37:13.7060123Z CC [M] net/netfilter/ipvs/ip_vs_rr.o
2025-10-02T15:37:13.9250051Z CC lib/mpi/mpicoder.o
2025-10-02T15:37:14.1616731Z CC [M] sound/firewire/oxfw/oxfw-scs1x.o
2025-10-02T15:37:14.6474037Z CC [M] fs/orangefs/devorangefs-req.o
2025-10-02T15:37:14.9537785Z CC [M] sound/firewire/oxfw/oxfw.o
2025-10-02T15:37:15.0421190Z CC lib/mpi/mpi-add.o
2025-10-02T15:37:15.0690452Z CC [M] net/netfilter/ipvs/ip_vs_wrr.o
2025-10-02T15:37:15.2637512Z CC [M] drivers/virtio/virtio_dma_buf.o
2025-10-02T15:37:15.6599391Z LD [M] sound/firewire/oxfw/snd-oxfw.o
2025-10-02T15:37:15.7162975Z CC [M] sound/firewire/fireworks/fireworks_transaction.o
2025-10-02T15:37:15.7809906Z CC [M] fs/orangefs/namei.o
2025-10-02T15:37:15.8916082Z CC lib/mpi/mpi-bit.o
2025-10-02T15:37:16.0051348Z LD [M] drivers/virtio/virtio_pci.o
2025-10-02T15:37:16.0382721Z AR drivers/virtio/built-in.a
2025-10-02T15:37:16.2190254Z CC drivers/xen/events/events_base.o
2025-10-02T15:37:16.3376006Z CC [M] net/netfilter/ipvs/ip_vs_lc.o
2025-10-02T15:37:16.5107325Z CC [M] sound/firewire/fireworks/fireworks_command.o
2025-10-02T15:37:16.5991480Z CC lib/mpi/mpi-cmp.o
2025-10-02T15:37:16.8093954Z CC [M] fs/orangefs/symlink.o
2025-10-02T15:37:17.2464640Z CC lib/mpi/mpi-sub-ui.o
2025-10-02T15:37:17.3900136Z CC [M] sound/firewire/fireworks/fireworks_stream.o
2025-10-02T15:37:17.5081322Z CC [M] fs/orangefs/dir.o
2025-10-02T15:37:17.5362153Z CC [M] net/netfilter/ipvs/ip_vs_wlc.o
2025-10-02T15:37:17.8599884Z CC lib/mpi/mpi-div.o
2025-10-02T15:37:18.3206408Z CC [M] sound/firewire/fireworks/fireworks_proc.o
2025-10-02T15:37:18.5863145Z CC [M] fs/orangefs/orangefs-bufmap.o
2025-10-02T15:37:18.6392230Z CC lib/mpi/mpi-inv.o
2025-10-02T15:37:18.6780359Z CC drivers/xen/events/events_2l.o
2025-10-02T15:37:18.7480986Z CC [M] net/netfilter/ipvs/ip_vs_fo.o
2025-10-02T15:37:19.1081049Z CC [M] sound/firewire/fireworks/fireworks_midi.o
2025-10-02T15:37:19.2982571Z CC lib/mpi/mpi-mod.o
2025-10-02T15:37:19.6554156Z CC drivers/xen/events/events_fifo.o
2025-10-02T15:37:19.6566690Z CC [M] fs/orangefs/orangefs-debugfs.o
2025-10-02T15:37:19.8301475Z CC [M] sound/firewire/fireworks/fireworks_pcm.o
2025-10-02T15:37:19.9117651Z CC lib/mpi/mpi-mul.o
2025-10-02T15:37:19.9640181Z CC [M] net/netfilter/ipvs/ip_vs_ovf.o
2025-10-02T15:37:20.5967930Z CC [M] sound/firewire/fireworks/fireworks_hwdep.o
2025-10-02T15:37:20.6400599Z CC lib/mpi/mpih-cmp.o
2025-10-02T15:37:20.7187887Z AR drivers/xen/events/built-in.a
2025-10-02T15:37:20.7780118Z CC drivers/xen/xenbus/xenbus_client.o
2025-10-02T15:37:20.9103843Z CC [M] fs/orangefs/waitqueue.o
2025-10-02T15:37:21.1828524Z CC lib/mpi/mpih-div.o
2025-10-02T15:37:21.3178821Z CC [M] net/netfilter/ipvs/ip_vs_lblc.o
2025-10-02T15:37:21.5429306Z CC [M] sound/firewire/fireworks/fireworks.o
2025-10-02T15:37:21.9092268Z LD [M] fs/orangefs/orangefs.o
2025-10-02T15:37:21.9821997Z CC drivers/xen/xenbus/xenbus_comms.o
2025-10-02T15:37:22.0420506Z CC [M] fs/udf/balloc.o
2025-10-02T15:37:22.2566207Z CC lib/mpi/mpih-mul.o
2025-10-02T15:37:22.4352568Z LD [M] sound/firewire/fireworks/snd-fireworks.o
2025-10-02T15:37:22.5367779Z CC [M] sound/firewire/bebob/bebob_command.o
2025-10-02T15:37:22.6706078Z CC [M] net/netfilter/ipvs/ip_vs_lblcr.o
2025-10-02T15:37:22.8422286Z CC drivers/xen/xenbus/xenbus_xs.o
2025-10-02T15:37:23.2103937Z CC [M] fs/udf/dir.o
2025-10-02T15:37:23.4498847Z CC lib/mpi/mpi-pow.o
2025-10-02T15:37:23.4777983Z CC [M] sound/firewire/bebob/bebob_stream.o
2025-10-02T15:37:23.9568122Z CC drivers/xen/xenbus/xenbus_probe.o
2025-10-02T15:37:24.0087787Z CC [M] net/netfilter/ipvs/ip_vs_dh.o
2025-10-02T15:37:24.1764129Z CC [M] fs/udf/file.o
2025-10-02T15:37:24.3053416Z CC lib/mpi/mpiutil.o
2025-10-02T15:37:24.5069790Z CC [M] sound/firewire/bebob/bebob_proc.o
2025-10-02T15:37:24.9265987Z CC [M] fs/udf/ialloc.o
2025-10-02T15:37:25.2197269Z AR lib/mpi/built-in.a
2025-10-02T15:37:25.2388910Z CC [M] net/netfilter/ipvs/ip_vs_sh.o
2025-10-02T15:37:25.2692772Z CC lib/dim/dim.o
2025-10-02T15:37:25.3651137Z CC [M] sound/firewire/bebob/bebob_midi.o
2025-10-02T15:37:25.3743590Z CC drivers/xen/xenbus/xenbus_probe_backend.o
2025-10-02T15:37:25.6366452Z CC [M] fs/udf/inode.o
2025-10-02T15:37:25.6809975Z CC lib/dim/net_dim.o
2025-10-02T15:37:26.0412434Z CC [M] sound/firewire/bebob/bebob_pcm.o
2025-10-02T15:37:26.0987810Z CC drivers/xen/xenbus/xenbus_dev_frontend.o
2025-10-02T15:37:26.2418321Z CC lib/dim/rdma_dim.o
2025-10-02T15:37:26.6163502Z CC [M] net/netfilter/ipvs/ip_vs_mh.o
2025-10-02T15:37:26.7643397Z CC [M] sound/firewire/bebob/bebob_hwdep.o
2025-10-02T15:37:26.7704518Z AR lib/dim/built-in.a
2025-10-02T15:37:26.7974748Z CC lib/fonts/fonts.o
2025-10-02T15:37:27.1391642Z CC drivers/xen/xenbus/xenbus_dev_backend.o
2025-10-02T15:37:27.2626782Z CC lib/fonts/font_8x16.o
2025-10-02T15:37:27.6217798Z CC lib/fonts/font_ter16x32.o
2025-10-02T15:37:27.6735149Z CC [M] sound/firewire/bebob/bebob_terratec.o
2025-10-02T15:37:27.7785856Z CC [M] fs/udf/lowlevel.o
2025-10-02T15:37:27.9422980Z AR lib/fonts/built-in.a
2025-10-02T15:37:27.9762101Z CC lib/pldmfw/pldmfw.o
2025-10-02T15:37:28.0983532Z CC drivers/xen/xenbus/xenbus_probe_frontend.o
2025-10-02T15:37:28.2404805Z CC [M] net/netfilter/ipvs/ip_vs_sed.o
2025-10-02T15:37:28.3529337Z CC [M] fs/udf/namei.o
2025-10-02T15:37:28.4232877Z CC [M] sound/firewire/bebob/bebob_yamaha_terratec.o
2025-10-02T15:37:29.0217179Z AR lib/pldmfw/built-in.a
2025-10-02T15:37:29.0469092Z CC [M] lib/842/842_compress.o
2025-10-02T15:37:29.0842244Z CC [M] sound/firewire/bebob/bebob_focusrite.o
2025-10-02T15:37:29.1028248Z AR drivers/xen/xenbus/built-in.a
2025-10-02T15:37:29.1561375Z CC [M] drivers/xen/xenfs/super.o
2025-10-02T15:37:29.3604681Z CC [M] net/netfilter/ipvs/ip_vs_nq.o
2025-10-02T15:37:29.8791457Z CC [M] drivers/xen/xenfs/xenstored.o
2025-10-02T15:37:29.9037740Z CC [M] sound/firewire/bebob/bebob_maudio.o
2025-10-02T15:37:29.9116795Z CC [M] fs/udf/partition.o
2025-10-02T15:37:30.1190969Z CC [M] lib/842/842_decompress.o
2025-10-02T15:37:30.5158969Z CC [M] drivers/xen/xenfs/xensyms.o
2025-10-02T15:37:30.6266009Z CC [M] fs/udf/super.o
2025-10-02T15:37:30.6968033Z CC [M] sound/firewire/bebob/bebob.o
2025-10-02T15:37:30.7059264Z CC [M] net/netfilter/ipvs/ip_vs_ftp.o
2025-10-02T15:37:30.8821247Z CC [M] lib/reed_solomon/reed_solomon.o
2025-10-02T15:37:31.2628129Z LD [M] drivers/xen/xenfs/xenfs.o
2025-10-02T15:37:31.3103613Z CC [M] drivers/xen/xen-pciback/pci_stub.o
2025-10-02T15:37:31.5366121Z LD [M] sound/firewire/bebob/snd-bebob.o
2025-10-02T15:37:31.5972985Z CC [M] sound/firewire/digi00x/amdtp-dot.o
2025-10-02T15:37:32.1702673Z CC [M] lib/raid6/algos.o
2025-10-02T15:37:32.3561092Z CC [M] net/netfilter/ipvs/ip_vs_pe_sip.o
2025-10-02T15:37:32.3615075Z CC [M] sound/firewire/digi00x/digi00x-stream.o
2025-10-02T15:37:32.5414805Z CC [M] fs/udf/truncate.o
2025-10-02T15:37:32.8192039Z CC [M] lib/raid6/recov.o
2025-10-02T15:37:33.1680150Z CC [M] drivers/xen/xen-pciback/pciback_ops.o
2025-10-02T15:37:33.1739435Z CC [M] sound/firewire/digi00x/digi00x-proc.o
2025-10-02T15:37:33.4053640Z CC [M] fs/udf/symlink.o
2025-10-02T15:37:33.4675905Z HOSTCC lib/raid6/mktables
2025-10-02T15:37:33.6486669Z LD [M] net/netfilter/ipvs/ip_vs.o
2025-10-02T15:37:33.6695832Z UNROLL lib/raid6/int1.c
2025-10-02T15:37:33.6797626Z UNROLL lib/raid6/int2.c
2025-10-02T15:37:33.6890285Z UNROLL lib/raid6/int4.c
2025-10-02T15:37:33.6986983Z UNROLL lib/raid6/int8.c
2025-10-02T15:37:33.7087346Z UNROLL lib/raid6/int16.c
2025-10-02T15:37:33.7202517Z UNROLL lib/raid6/int32.c
2025-10-02T15:37:33.7316250Z CC [M] lib/raid6/recov_ssse3.o
2025-10-02T15:37:33.8108164Z CC net/netfilter/core.o
2025-10-02T15:37:33.8886338Z CC [M] sound/firewire/digi00x/digi00x-pcm.o
2025-10-02T15:37:34.2756222Z CC [M] fs/udf/directory.o
2025-10-02T15:37:34.2961094Z CC [M] lib/raid6/recov_avx2.o
2025-10-02T15:37:34.3011584Z CC [M] drivers/xen/xen-pciback/xenbus.o
2025-10-02T15:37:34.7165287Z CC [M] sound/firewire/digi00x/digi00x-hwdep.o
2025-10-02T15:37:34.8568216Z CC [M] lib/raid6/mmx.o
2025-10-02T15:37:34.9215565Z CC [M] lib/raid6/sse1.o
2025-10-02T15:37:34.9929756Z CC [M] lib/raid6/sse2.o
2025-10-02T15:37:35.0613548Z CC [M] fs/udf/misc.o
2025-10-02T15:37:35.3540557Z CC [M] sound/firewire/digi00x/digi00x-transaction.o
2025-10-02T15:37:35.4623077Z CC net/netfilter/nf_log.o
2025-10-02T15:37:35.5913292Z CC [M] drivers/xen/xen-pciback/conf_space.o
2025-10-02T15:37:35.7569816Z CC [M] fs/udf/udftime.o
2025-10-02T15:37:35.9129223Z CC [M] lib/raid6/avx2.o
2025-10-02T15:37:36.0777956Z CC [M] sound/firewire/digi00x/digi00x-midi.o
2025-10-02T15:37:36.4115480Z CC [M] fs/udf/unicode.o
2025-10-02T15:37:36.5975736Z CC [M] drivers/xen/xen-pciback/conf_space_header.o
2025-10-02T15:37:36.7450041Z CC [M] lib/raid6/avx512.o
2025-10-02T15:37:36.8421251Z CC net/netfilter/nf_queue.o
2025-10-02T15:37:36.8448395Z CC [M] sound/firewire/digi00x/digi00x.o
2025-10-02T15:37:37.2608237Z LD [M] fs/udf/udf.o
2025-10-02T15:37:37.3314940Z CC [M] fs/omfs/bitmap.o
2025-10-02T15:37:37.5197064Z CC [M] drivers/xen/xen-pciback/conf_space_capability.o
2025-10-02T15:37:37.5206113Z CC [M] lib/raid6/recov_avx512.o
2025-10-02T15:37:37.6792594Z LD [M] sound/firewire/digi00x/snd-firewire-digi00x.o
2025-10-02T15:37:37.7853343Z CC [M] sound/firewire/tascam/tascam-proc.o
2025-10-02T15:37:37.9418362Z CC [M] fs/omfs/dir.o
2025-10-02T15:37:38.2188053Z TABLE lib/raid6/tables.c
2025-10-02T15:37:38.2387644Z CC [M] lib/raid6/int1.o
2025-10-02T15:37:38.3230785Z CC net/netfilter/nf_sockopt.o
2025-10-02T15:37:38.4568635Z CC [M] drivers/xen/xen-pciback/conf_space_quirks.o
2025-10-02T15:37:38.5380849Z CC [M] sound/firewire/tascam/amdtp-tascam.o
2025-10-02T15:37:38.7509801Z CC [M] fs/omfs/file.o
2025-10-02T15:37:38.9608996Z CC [M] lib/raid6/int2.o
2025-10-02T15:37:39.2864736Z CC [M] drivers/xen/xen-pciback/vpci.o
2025-10-02T15:37:39.3897581Z CC [M] sound/firewire/tascam/tascam-stream.o
2025-10-02T15:37:39.4524318Z CC net/netfilter/utils.o
2025-10-02T15:37:39.5432017Z CC [M] fs/omfs/inode.o
2025-10-02T15:37:39.6172454Z CC [M] lib/raid6/int4.o
2025-10-02T15:37:40.1665859Z CC [M] drivers/xen/xen-pciback/passthrough.o
2025-10-02T15:37:40.2828747Z CC [M] sound/firewire/tascam/tascam-pcm.o
2025-10-02T15:37:40.4319211Z CC [M] lib/raid6/int8.o
2025-10-02T15:37:40.5940819Z LD [M] fs/omfs/omfs.o
2025-10-02T15:37:40.6454372Z CC [M] fs/jfs/super.o
2025-10-02T15:37:40.7954547Z CC [M] net/netfilter/nfnetlink.o
2025-10-02T15:37:41.0276013Z LD [M] drivers/xen/xen-pciback/xen-pciback.o
2025-10-02T15:37:41.1097614Z CC drivers/xen/cpu_hotplug.o
2025-10-02T15:37:41.1361804Z CC [M] sound/firewire/tascam/tascam-hwdep.o
2025-10-02T15:37:41.2163787Z CC [M] lib/raid6/int16.o
2025-10-02T15:37:41.7959125Z CC [M] fs/jfs/file.o
2025-10-02T15:37:41.8751784Z CC drivers/xen/grant-table.o
2025-10-02T15:37:41.8849001Z CC [M] lib/raid6/int32.o
2025-10-02T15:37:41.9412556Z CC [M] sound/firewire/tascam/tascam-transaction.o
2025-10-02T15:37:42.3368074Z CC [M] net/netfilter/nfnetlink_acct.o
2025-10-02T15:37:42.4393251Z CC [M] lib/raid6/tables.o
2025-10-02T15:37:42.5150274Z CC [M] fs/jfs/inode.o
2025-10-02T15:37:42.6784902Z CC [M] sound/firewire/tascam/tascam-midi.o
2025-10-02T15:37:43.1630972Z LD [M] lib/raid6/raid6_pq.o
2025-10-02T15:37:43.2013514Z CC lib/argv_split.o
2025-10-02T15:37:43.5292762Z CC [M] sound/firewire/tascam/tascam.o
2025-10-02T15:37:43.5485703Z CC [M] fs/jfs/namei.o
2025-10-02T15:37:43.6031214Z CC lib/bug.o
2025-10-02T15:37:43.6898007Z CC drivers/xen/features.o
2025-10-02T15:37:43.7595420Z CC [M] net/netfilter/nfnetlink_queue.o
2025-10-02T15:37:44.2154416Z LD [M] sound/firewire/tascam/snd-firewire-tascam.o
2025-10-02T15:37:44.2792722Z CC [M] sound/firewire/motu/motu.o
2025-10-02T15:37:44.3241167Z CC lib/clz_tab.o
2025-10-02T15:37:44.4224677Z CC drivers/xen/balloon.o
2025-10-02T15:37:44.4437765Z CC lib/cmdline.o
2025-10-02T15:37:44.6324341Z CC lib/cpumask.o
2025-10-02T15:37:44.8361257Z CC [M] fs/jfs/jfs_mount.o
2025-10-02T15:37:45.0382539Z CC [M] sound/firewire/motu/amdtp-motu.o
2025-10-02T15:37:45.2703215Z CC lib/ctype.o
2025-10-02T15:37:45.4225160Z CC lib/dec_and_lock.o
2025-10-02T15:37:45.5748671Z CC [M] fs/jfs/jfs_umount.o
2025-10-02T15:37:45.6245582Z CC drivers/xen/manage.o
2025-10-02T15:37:45.7124454Z CC lib/decompress.o
2025-10-02T15:37:45.9046176Z CC lib/decompress_bunzip2.o
2025-10-02T15:37:46.0294504Z CC [M] net/netfilter/nfnetlink_log.o
2025-10-02T15:37:46.1002316Z CC [M] fs/jfs/jfs_xtree.o
2025-10-02T15:37:46.3684029Z CC [M] sound/firewire/motu/motu-transaction.o
2025-10-02T15:37:46.4591097Z CC drivers/xen/time.o
2025-10-02T15:37:46.7160636Z CC lib/decompress_inflate.o
2025-10-02T15:37:47.2184721Z CC [M] sound/firewire/motu/motu-stream.o
2025-10-02T15:37:47.3435125Z CC drivers/xen/mem-reservation.o
2025-10-02T15:37:47.3860057Z CC lib/decompress_unlz4.o
2025-10-02T15:37:47.8985507Z CC [M] net/netfilter/nfnetlink_osf.o
2025-10-02T15:37:47.9860996Z CC [M] sound/firewire/motu/motu-proc.o
2025-10-02T15:37:47.9923729Z CC lib/decompress_unlzma.o
2025-10-02T15:37:48.0693337Z CC drivers/xen/pci.o
2025-10-02T15:37:48.1130390Z CC [M] fs/jfs/jfs_imap.o
2025-10-02T15:37:48.7209954Z CC [M] sound/firewire/motu/motu-pcm.o
2025-10-02T15:37:48.8415314Z CC lib/decompress_unlzo.o
2025-10-02T15:37:49.0630358Z CC drivers/xen/dbgp.o
2025-10-02T15:37:49.3540538Z CC [M] net/netfilter/nf_conntrack_core.o
2025-10-02T15:37:49.4445607Z CC lib/decompress_unxz.o
2025-10-02T15:37:49.6033972Z CC [M] sound/firewire/motu/motu-midi.o
2025-10-02T15:37:49.8215701Z CC [M] fs/jfs/jfs_debug.o
2025-10-02T15:37:49.8818340Z CC lib/decompress_unzstd.o
2025-10-02T15:37:50.0634988Z CC drivers/xen/acpi.o
2025-10-02T15:37:50.2430972Z CC [M] fs/jfs/jfs_dmap.o
2025-10-02T15:37:50.3087554Z CC lib/dump_stack.o
2025-10-02T15:37:50.5624715Z CC [M] sound/firewire/motu/motu-hwdep.o
2025-10-02T15:37:50.8794084Z CC lib/earlycpio.o
2025-10-02T15:37:50.9488107Z CC drivers/xen/xen-acpi-pad.o
2025-10-02T15:37:51.1324549Z CC lib/extable.o
2025-10-02T15:37:51.4435867Z CC [M] sound/firewire/motu/motu-protocol-v2.o
2025-10-02T15:37:51.7203334Z CC lib/flex_proportions.o
2025-10-02T15:37:51.8221345Z CC drivers/xen/pcpu.o
2025-10-02T15:37:51.9312536Z CC [M] fs/jfs/jfs_unicode.o
2025-10-02T15:37:52.2140813Z CC [M] net/netfilter/nf_conntrack_standalone.o
2025-10-02T15:37:52.2845466Z CC lib/idr.o
2025-10-02T15:37:52.3203042Z CC [M] sound/firewire/motu/motu-protocol-v3.o
2025-10-02T15:37:52.4237166Z CC [M] fs/jfs/jfs_dtree.o
2025-10-02T15:37:52.8752553Z CC lib/irq_regs.o
2025-10-02T15:37:52.9122980Z CC drivers/xen/biomerge.o
2025-10-02T15:37:53.0493621Z CC lib/is_single_threaded.o
2025-10-02T15:37:53.2282392Z LD [M] sound/firewire/motu/snd-firewire-motu.o
2025-10-02T15:37:53.3406247Z CC [M] sound/firewire/fireface/ff.o
2025-10-02T15:37:53.5380590Z CC drivers/xen/xen-balloon.o
2025-10-02T15:37:53.5570908Z CC lib/klist.o
2025-10-02T15:37:53.6940811Z CC [M] net/netfilter/nf_conntrack_expect.o
2025-10-02T15:37:54.1608135Z CC lib/kobject.o
2025-10-02T15:37:54.1749313Z CC [M] sound/firewire/fireface/ff-transaction.o
2025-10-02T15:37:54.3024399Z CC drivers/xen/sys-hypervisor.o
2025-10-02T15:37:55.0287655Z CC [M] fs/jfs/jfs_inode.o
2025-10-02T15:37:55.0333936Z CC lib/kobject_uevent.o
2025-10-02T15:37:55.0490477Z CC [M] sound/firewire/fireface/ff-midi.o
2025-10-02T15:37:55.2946767Z CC drivers/xen/platform-pci.o
2025-10-02T15:37:55.3286874Z CC [M] net/netfilter/nf_conntrack_helper.o
2025-10-02T15:37:55.4793180Z CC [M] fs/jfs/jfs_discard.o
2025-10-02T15:37:55.7307653Z CC [M] sound/firewire/fireface/ff-proc.o
2025-10-02T15:37:56.1522387Z CC [M] fs/jfs/jfs_extent.o
2025-10-02T15:37:56.2461705Z CC drivers/xen/swiotlb-xen.o
2025-10-02T15:37:56.4126259Z CC [M] sound/firewire/fireface/amdtp-ff.o
2025-10-02T15:37:56.6296181Z CC lib/logic_pio.o
2025-10-02T15:37:56.7240961Z CC [M] fs/jfs/symlink.o
2025-10-02T15:37:56.8553384Z CC [M] net/netfilter/nf_conntrack_proto.o
2025-10-02T15:37:57.1612236Z CC [M] sound/firewire/fireface/ff-stream.o
2025-10-02T15:37:57.2649696Z CC [M] fs/jfs/jfs_metapage.o
2025-10-02T15:37:57.3914675Z CC lib/memcat_p.o
2025-10-02T15:37:57.5339051Z CC drivers/xen/mcelog.o
2025-10-02T15:37:57.7275269Z CC lib/memneq.o
2025-10-02T15:37:58.0623345Z CC lib/nmi_backtrace.o
2025-10-02T15:37:58.1870306Z CC [M] sound/firewire/fireface/ff-pcm.o
2025-10-02T15:37:58.3986696Z CC [M] net/netfilter/nf_conntrack_proto_generic.o
2025-10-02T15:37:58.4554718Z CC drivers/xen/efi.o
2025-10-02T15:37:58.5581667Z CC [M] fs/jfs/jfs_logmgr.o
2025-10-02T15:37:58.8048503Z CC lib/nodemask.o
2025-10-02T15:37:58.9664140Z CC [M] sound/firewire/fireface/ff-hwdep.o
2025-10-02T15:37:59.2625890Z CC drivers/xen/xlate_mmu.o
2025-10-02T15:37:59.3390744Z CC lib/plist.o
2025-10-02T15:37:59.4786798Z CC [M] net/netfilter/nf_conntrack_proto_tcp.o
2025-10-02T15:37:59.5920877Z CC lib/radix-tree.o
2025-10-02T15:37:59.7114123Z CC [M] sound/firewire/fireface/ff-protocol-former.o
2025-10-02T15:38:00.0227003Z CC [M] fs/jfs/jfs_txnmgr.o
2025-10-02T15:38:00.0780801Z CC drivers/xen/pvcalls-back.o
2025-10-02T15:38:00.7289710Z CC [M] sound/firewire/fireface/ff-protocol-latter.o
2025-10-02T15:38:00.9782542Z CC lib/ratelimit.o
2025-10-02T15:38:01.4866042Z CC lib/rbtree.o
2025-10-02T15:38:01.5095314Z CC [M] net/netfilter/nf_conntrack_proto_udp.o
2025-10-02T15:38:01.5108773Z LD [M] sound/firewire/fireface/snd-fireface.o
2025-10-02T15:38:01.5948969Z CC [M] sound/firewire/lib.o
2025-10-02T15:38:01.6680206Z CC [M] fs/jfs/jfs_uniupr.o
2025-10-02T15:38:01.8368439Z CC drivers/xen/unpopulated-alloc.o
2025-10-02T15:38:02.0390806Z CC lib/seq_buf.o
2025-10-02T15:38:02.1154096Z CC [M] fs/jfs/resize.o
2025-10-02T15:38:02.2732300Z CC [M] sound/firewire/iso-resources.o
2025-10-02T15:38:02.7152181Z CC [M] drivers/xen/evtchn.o
2025-10-02T15:38:02.7293159Z CC lib/sha1.o
2025-10-02T15:38:02.7820198Z CC [M] net/netfilter/nf_conntrack_proto_icmp.o
2025-10-02T15:38:02.9084205Z CC lib/show_mem.o
2025-10-02T15:38:02.9085468Z CC [M] sound/firewire/packets-buffer.o
2025-10-02T15:38:02.9861978Z CC [M] fs/jfs/xattr.o
2025-10-02T15:38:03.5047981Z CC lib/siphash.o
2025-10-02T15:38:03.5542789Z CC [M] sound/firewire/fcp.o
2025-10-02T15:38:03.8514890Z CC [M] drivers/xen/gntdev.o
2025-10-02T15:38:04.1520858Z CC [M] net/netfilter/nf_conntrack_extend.o
2025-10-02T15:38:04.2493676Z CC lib/string.o
2025-10-02T15:38:04.3172502Z CC [M] fs/jfs/ioctl.o
2025-10-02T15:38:04.3260669Z CC [M] sound/firewire/cmp.o
2025-10-02T15:38:05.0326540Z CC [M] sound/firewire/amdtp-stream.o
2025-10-02T15:38:05.0608631Z CC lib/timerqueue.o
2025-10-02T15:38:05.1720758Z CC [M] fs/jfs/acl.o
2025-10-02T15:38:05.3100257Z CC lib/vsprintf.o
2025-10-02T15:38:05.3589024Z CC [M] drivers/xen/gntdev-dmabuf.o
2025-10-02T15:38:05.3891551Z CC [M] net/netfilter/nf_conntrack_acct.o
2025-10-02T15:38:05.8797242Z LD [M] fs/jfs/jfs.o
2025-10-02T15:38:05.9753775Z CC [M] fs/xfs/xfs_trace.o
2025-10-02T15:38:06.5598419Z CC [M] drivers/xen/gntalloc.o
2025-10-02T15:38:06.6180599Z CC [M] sound/firewire/amdtp-am824.o
2025-10-02T15:38:06.7319831Z CC [M] net/netfilter/nf_conntrack_seqadj.o
2025-10-02T15:38:07.4399040Z CC [M] sound/firewire/isight.o
2025-10-02T15:38:07.6113151Z CC [M] drivers/xen/privcmd.o
2025-10-02T15:38:08.3536837Z CC [M] net/netfilter/nf_conntrack_proto_icmpv6.o
2025-10-02T15:38:08.4887317Z LD [M] sound/firewire/snd-firewire-lib.o
2025-10-02T15:38:08.5108877Z LD [M] sound/firewire/snd-isight.o
2025-10-02T15:38:08.7447290Z CC [M] sound/pcmcia/vx/vxpocket.o
2025-10-02T15:38:08.7633613Z CC lib/win_minmax.o
2025-10-02T15:38:09.0510229Z CC [M] drivers/xen/privcmd-buf.o
2025-10-02T15:38:09.2540691Z CC lib/xarray.o
2025-10-02T15:38:09.6841469Z CC [M] sound/pcmcia/vx/vxp_ops.o
2025-10-02T15:38:09.7990114Z CC [M] net/netfilter/nf_conntrack_timeout.o
2025-10-02T15:38:09.8326959Z CC [M] drivers/xen/xen-acpi-processor.o
2025-10-02T15:38:10.6147353Z CC [M] sound/pcmcia/vx/vxp_mixer.o
2025-10-02T15:38:10.9517471Z CC lib/lockref.o
2025-10-02T15:38:10.9798973Z CC [M] net/netfilter/nf_conntrack_timestamp.o
2025-10-02T15:38:11.0164137Z CC [M] drivers/xen/xen-scsiback.o
2025-10-02T15:38:11.2748028Z CC lib/bcd.o
2025-10-02T15:38:11.2820142Z LD [M] sound/pcmcia/vx/snd-vxpocket.o
2025-10-02T15:38:11.3843829Z CC [M] sound/pcmcia/pdaudiocf/pdaudiocf.o
2025-10-02T15:38:11.3862633Z CC lib/sort.o
2025-10-02T15:38:11.6905149Z CC lib/parser.o
2025-10-02T15:38:12.0538160Z CC [M] net/netfilter/nf_conntrack_ecache.o
2025-10-02T15:38:12.2003595Z CC [M] sound/pcmcia/pdaudiocf/pdaudiocf_core.o
2025-10-02T15:38:12.2708157Z CC lib/debug_locks.o
2025-10-02T15:38:12.6420782Z CC [M] drivers/xen/pvcalls-front.o
2025-10-02T15:38:12.6610750Z CC lib/random32.o
2025-10-02T15:38:13.0736637Z CC [M] sound/pcmcia/pdaudiocf/pdaudiocf_irq.o
2025-10-02T15:38:13.2327062Z CC lib/bust_spinlocks.o
2025-10-02T15:38:13.3121235Z CC [M] net/netfilter/nf_conntrack_labels.o
2025-10-02T15:38:13.8568481Z CC lib/kasprintf.o
2025-10-02T15:38:13.8984416Z CC [M] sound/pcmcia/pdaudiocf/pdaudiocf_pcm.o
2025-10-02T15:38:14.2624199Z CC lib/bitmap.o
2025-10-02T15:38:14.5784700Z CC [M] drivers/xen/xen-front-pgdir-shbuf.o
2025-10-02T15:38:14.6078556Z CC [M] net/netfilter/nf_conntrack_proto_dccp.o
2025-10-02T15:38:14.7697667Z LD [M] sound/pcmcia/pdaudiocf/snd-pdaudiocf.o
2025-10-02T15:38:14.9325007Z CC [M] sound/soc/codecs/ac97.o
2025-10-02T15:38:15.6250379Z LD [M] drivers/xen/xen-evtchn.o
2025-10-02T15:38:15.6473679Z LD [M] drivers/xen/xen-gntdev.o
2025-10-02T15:38:15.6678649Z LD [M] drivers/xen/xen-gntalloc.o
2025-10-02T15:38:15.6863483Z LD [M] drivers/xen/xen-privcmd.o
2025-10-02T15:38:15.7202796Z CC [M] sound/soc/codecs/adau-utils.o
2025-10-02T15:38:15.7249086Z AR drivers/xen/built-in.a
2025-10-02T15:38:15.8491045Z CC drivers/regulator/core.o
2025-10-02T15:38:15.9073518Z CC lib/scatterlist.o
2025-10-02T15:38:16.0109378Z CC [M] net/netfilter/nf_conntrack_proto_sctp.o
2025-10-02T15:38:16.1173437Z CC [M] sound/soc/codecs/adau1701.o
2025-10-02T15:38:17.1871852Z CC lib/list_sort.o
2025-10-02T15:38:17.2456440Z CC [M] fs/xfs/libxfs/xfs_ag.o
2025-10-02T15:38:17.3188505Z CC [M] sound/soc/codecs/adau17x1.o
2025-10-02T15:38:17.3915386Z CC lib/uuid.o
2025-10-02T15:38:17.7254359Z CC lib/iov_iter.o
2025-10-02T15:38:17.8024116Z CC [M] net/netfilter/nf_conntrack_proto_gre.o
2025-10-02T15:38:18.3111271Z CC [M] sound/soc/codecs/adau1761.o
2025-10-02T15:38:18.4194360Z CC [M] fs/xfs/libxfs/xfs_alloc.o
2025-10-02T15:38:19.2091004Z CC [M] sound/soc/codecs/adau1761-i2c.o
2025-10-02T15:38:19.4814476Z CC [M] net/netfilter/nf_conntrack_netlink.o
2025-10-02T15:38:19.7703149Z CC drivers/regulator/dummy.o
2025-10-02T15:38:19.9801247Z CC [M] sound/soc/codecs/adau1761-spi.o
2025-10-02T15:38:20.5250089Z CC drivers/regulator/fixed-helper.o
2025-10-02T15:38:20.6052904Z CC [M] sound/soc/codecs/adau7002.o
2025-10-02T15:38:21.2519708Z CC drivers/regulator/helpers.o
2025-10-02T15:38:21.3990035Z CC [M] sound/soc/codecs/adau7118.o
2025-10-02T15:38:21.5392269Z CC lib/clz_ctz.o
2025-10-02T15:38:21.7715787Z CC lib/bsearch.o
2025-10-02T15:38:22.0410980Z CC [M] fs/xfs/libxfs/xfs_alloc_btree.o
2025-10-02T15:38:22.2754364Z CC lib/find_bit.o
2025-10-02T15:38:22.4451248Z CC lib/llist.o
2025-10-02T15:38:22.4651994Z CC drivers/regulator/devres.o
2025-10-02T15:38:22.5331049Z CC [M] sound/soc/codecs/adau7118-i2c.o
2025-10-02T15:38:22.6299449Z CC lib/memweight.o
2025-10-02T15:38:22.8371682Z CC [M] net/netfilter/nfnetlink_cttimeout.o
2025-10-02T15:38:22.9339868Z CC lib/kfifo.o
2025-10-02T15:38:23.1246361Z CC [M] sound/soc/codecs/adau7118-hw.o
2025-10-02T15:38:23.4740068Z CC [M] drivers/regulator/fixed.o
2025-10-02T15:38:23.5807818Z CC [M] sound/soc/codecs/ak4104.o
2025-10-02T15:38:23.9961645Z CC lib/percpu-refcount.o
2025-10-02T15:38:24.1939088Z CC [M] fs/xfs/libxfs/xfs_attr.o
2025-10-02T15:38:24.2941380Z CC [M] net/netfilter/nfnetlink_cthelper.o
2025-10-02T15:38:24.3151459Z CC [M] drivers/regulator/virtual.o
2025-10-02T15:38:24.4372573Z CC [M] sound/soc/codecs/ak4118.o
2025-10-02T15:38:24.5418190Z CC lib/rhashtable.o
2025-10-02T15:38:25.2421422Z CC [M] sound/soc/codecs/ak4458.o
2025-10-02T15:38:25.3618521Z CC [M] drivers/regulator/userspace-consumer.o
2025-10-02T15:38:25.9297810Z CC lib/once.o
2025-10-02T15:38:25.9736704Z CC [M] net/netfilter/nf_conntrack_amanda.o
2025-10-02T15:38:26.2439767Z CC [M] sound/soc/codecs/ak4554.o
2025-10-02T15:38:26.3870658Z CC lib/refcount.o
2025-10-02T15:38:26.4401904Z CC [M] drivers/regulator/88pg86x.o
2025-10-02T15:38:26.7713277Z CC lib/usercopy.o
2025-10-02T15:38:26.8833551Z CC [M] sound/soc/codecs/ak4613.o
2025-10-02T15:38:27.0922393Z CC [M] fs/xfs/libxfs/xfs_attr_leaf.o
2025-10-02T15:38:27.1363911Z CC lib/errseq.o
2025-10-02T15:38:27.1496817Z CC [M] drivers/regulator/88pm800-regulator.o
2025-10-02T15:38:27.2226238Z CC [M] net/netfilter/nf_conntrack_ftp.o
2025-10-02T15:38:27.3412142Z CC lib/bucket_locks.o
2025-10-02T15:38:27.8985999Z CC [M] sound/soc/codecs/ak4642.o
2025-10-02T15:38:27.9414712Z CC lib/generic-radix-tree.o
2025-10-02T15:38:27.9994299Z CC [M] drivers/regulator/88pm8607.o
2025-10-02T15:38:28.8002197Z CC [M] sound/soc/codecs/ak5386.o
2025-10-02T15:38:28.8047540Z CC [M] drivers/regulator/aat2870-regulator.o
2025-10-02T15:38:28.8089387Z CC lib/string_helpers.o
2025-10-02T15:38:28.9133630Z CC [M] net/netfilter/nf_conntrack_h323_main.o
2025-10-02T15:38:29.7294363Z CC lib/hexdump.o
2025-10-02T15:38:29.8122781Z CC [M] drivers/regulator/ab3100.o
2025-10-02T15:38:29.8575178Z CC [M] sound/soc/codecs/ak5558.o
2025-10-02T15:38:30.0554508Z CC lib/kstrtox.o
2025-10-02T15:38:30.6448440Z CC [M] drivers/regulator/act8865-regulator.o
2025-10-02T15:38:30.7754928Z CC [M] fs/xfs/libxfs/xfs_attr_remote.o
2025-10-02T15:38:30.8283307Z CC lib/test-kstrtox.o
2025-10-02T15:38:30.9022727Z CC [M] sound/soc/codecs/alc5623.o
2025-10-02T15:38:31.3374612Z CC [M] net/netfilter/nf_conntrack_h323_asn1.o
2025-10-02T15:38:31.5693617Z CC [M] drivers/regulator/ad5398.o
2025-10-02T15:38:31.6284501Z CC lib/iomap.o
2025-10-02T15:38:31.7721667Z CC [M] sound/soc/codecs/bd28623.o
2025-10-02T15:38:32.1035465Z CC [M] net/netfilter/nf_conntrack_irc.o
2025-10-02T15:38:32.6363877Z CC lib/pci_iomap.o
2025-10-02T15:38:32.6931345Z CC [M] drivers/regulator/arizona-ldo1.o
2025-10-02T15:38:32.7941280Z CC [M] sound/soc/codecs/cros_ec_codec.o
2025-10-02T15:38:32.8848030Z CC [M] fs/xfs/libxfs/xfs_bit.o
2025-10-02T15:38:33.2766011Z CC lib/iomap_copy.o
2025-10-02T15:38:33.3592971Z CC [M] net/netfilter/nf_conntrack_broadcast.o
2025-10-02T15:38:33.5076073Z CC lib/devres.o
2025-10-02T15:38:33.5551909Z CC [M] drivers/regulator/arizona-micsupp.o
2025-10-02T15:38:33.6374156Z CC [M] fs/xfs/libxfs/xfs_bmap.o
2025-10-02T15:38:34.3065891Z CC [M] sound/soc/codecs/cs35l32.o
2025-10-02T15:38:34.3777106Z CC lib/check_signature.o
2025-10-02T15:38:34.5780395Z CC [M] net/netfilter/nf_conntrack_netbios_ns.o
2025-10-02T15:38:34.5894857Z CC lib/btree.o
2025-10-02T15:38:34.6440464Z CC [M] drivers/regulator/as3711-regulator.o
2025-10-02T15:38:35.5354177Z CC [M] drivers/regulator/axp20x-regulator.o
2025-10-02T15:38:35.5644952Z CC [M] sound/soc/codecs/cs35l33.o
2025-10-02T15:38:35.6896309Z CC lib/interval_tree.o
2025-10-02T15:38:35.9304563Z CC [M] net/netfilter/nf_conntrack_snmp.o
2025-10-02T15:38:36.1843624Z CC lib/assoc_array.o
2025-10-02T15:38:36.3709939Z CC [M] drivers/regulator/bcm590xx-regulator.o
2025-10-02T15:38:37.0374900Z CC [M] sound/soc/codecs/cs35l34.o
2025-10-02T15:38:37.2545235Z CC [M] drivers/regulator/bd9571mwv-regulator.o
2025-10-02T15:38:37.2842898Z CC [M] net/netfilter/nf_conntrack_pptp.o
2025-10-02T15:38:37.3710973Z CC lib/list_debug.o
2025-10-02T15:38:37.6472192Z CC lib/bitrev.o
2025-10-02T15:38:38.0445346Z CC lib/linear_ranges.o
2025-10-02T15:38:38.1643348Z CC [M] drivers/regulator/da903x-regulator.o
2025-10-02T15:38:38.2910683Z CC [M] sound/soc/codecs/cs35l35.o
2025-10-02T15:38:38.3939894Z CC [M] fs/xfs/libxfs/xfs_bmap_btree.o
2025-10-02T15:38:38.5140444Z CC lib/packing.o
2025-10-02T15:38:38.7447990Z CC [M] net/netfilter/nf_conntrack_sane.o
2025-10-02T15:38:39.0250037Z CC [M] drivers/regulator/da9052-regulator.o
2025-10-02T15:38:39.1380239Z CC lib/crc-ccitt.o
2025-10-02T15:38:39.6088836Z CC lib/crc-t10dif.o
2025-10-02T15:38:39.6530843Z CC [M] sound/soc/codecs/cs35l36.o
2025-10-02T15:38:39.8640841Z CC [M] net/netfilter/nf_conntrack_sip.o
2025-10-02T15:38:40.0585021Z CC [M] drivers/regulator/da9055-regulator.o
2025-10-02T15:38:40.2161045Z HOSTCC lib/gen_crc32table
2025-10-02T15:38:40.4668192Z CC lib/xxhash.o
2025-10-02T15:38:40.7451564Z CC [M] fs/xfs/libxfs/xfs_btree.o
2025-10-02T15:38:41.0265006Z CC [M] drivers/regulator/da9062-regulator.o
2025-10-02T15:38:41.0372752Z CC [M] sound/soc/codecs/cs42l42.o
2025-10-02T15:38:41.2521492Z CC lib/genalloc.o
2025-10-02T15:38:41.7058327Z CC [M] net/netfilter/nf_conntrack_tftp.o
2025-10-02T15:38:41.8400150Z CC [M] drivers/regulator/da9210-regulator.o
2025-10-02T15:38:42.2291279Z CC lib/textsearch.o
2025-10-02T15:38:42.4927780Z CC [M] sound/soc/codecs/cs42l51.o
2025-10-02T15:38:42.7154363Z CC lib/percpu_counter.o
2025-10-02T15:38:42.7302660Z CC [M] drivers/regulator/da9211-regulator.o
2025-10-02T15:38:42.9483539Z CC [M] net/netfilter/nf_log_common.o
2025-10-02T15:38:43.1543676Z CC lib/error-inject.o
2025-10-02T15:38:43.3295476Z CC [M] sound/soc/codecs/cs42l51-i2c.o
2025-10-02T15:38:43.8151400Z CC [M] drivers/regulator/fan53555.o
2025-10-02T15:38:43.9431364Z CC lib/syscall.o
2025-10-02T15:38:44.0299842Z CC [M] sound/soc/codecs/cs42l52.o
2025-10-02T15:38:44.4218730Z CC [M] net/netfilter/nf_log_netdev.o
2025-10-02T15:38:44.6628046Z CC lib/dynamic_debug.o
2025-10-02T15:38:44.8910950Z CC [M] drivers/regulator/gpio-regulator.o
2025-10-02T15:38:45.1530948Z CC [M] sound/soc/codecs/cs42l56.o
2025-10-02T15:38:45.3666938Z CC [M] fs/xfs/libxfs/xfs_btree_staging.o
2025-10-02T15:38:45.6301207Z CC [M] net/netfilter/nf_nat_core.o
2025-10-02T15:38:45.8478174Z CC [M] drivers/regulator/isl6271a-regulator.o
2025-10-02T15:38:46.1731611Z CC [M] sound/soc/codecs/cs42l73.o
2025-10-02T15:38:46.5618616Z CC lib/errname.o
2025-10-02T15:38:46.6788946Z CC lib/nlattr.o
2025-10-02T15:38:46.9875461Z CC [M] drivers/regulator/isl9305.o
2025-10-02T15:38:47.3380384Z CC [M] sound/soc/codecs/cs4234.o
2025-10-02T15:38:47.5975773Z CC [M] fs/xfs/libxfs/xfs_da_btree.o
2025-10-02T15:38:47.7072357Z CC [M] net/netfilter/nf_nat_proto.o
2025-10-02T15:38:47.8645518Z CC lib/atomic64_test.o
2025-10-02T15:38:47.9051239Z CC [M] drivers/regulator/lm363x-regulator.o
2025-10-02T15:38:48.4786345Z CC [M] sound/soc/codecs/cs4265.o
2025-10-02T15:38:48.7935347Z CC [M] drivers/regulator/lp3971.o
2025-10-02T15:38:49.2842216Z CC [M] sound/soc/codecs/cs4270.o
2025-10-02T15:38:49.3215643Z CC lib/cpu_rmap.o
2025-10-02T15:38:49.3972621Z CC [M] net/netfilter/nf_nat_helper.o
2025-10-02T15:38:49.8724144Z CC lib/dynamic_queue_limits.o
2025-10-02T15:38:49.8968632Z CC [M] drivers/regulator/lp3972.o
2025-10-02T15:38:50.1684967Z CC lib/glob.o
2025-10-02T15:38:50.4044225Z CC [M] sound/soc/codecs/cs4271.o
2025-10-02T15:38:50.5331216Z CC lib/strncpy_from_user.o
2025-10-02T15:38:50.7035765Z CC [M] net/netfilter/nf_nat_redirect.o
2025-10-02T15:38:50.9166771Z CC [M] drivers/regulator/lp872x.o
2025-10-02T15:38:51.0245534Z CC [M] fs/xfs/libxfs/xfs_defer.o
2025-10-02T15:38:51.2194226Z CC lib/strnlen_user.o
2025-10-02T15:38:51.6293263Z CC [M] sound/soc/codecs/cs4271-i2c.o
2025-10-02T15:38:51.7994156Z CC lib/net_utils.o
2025-10-02T15:38:51.8564161Z CC [M] drivers/regulator/lp8788-buck.o
2025-10-02T15:38:51.8990727Z CC [M] net/netfilter/nf_nat_masquerade.o
2025-10-02T15:38:52.3226437Z CC [M] sound/soc/codecs/cs4271-spi.o
2025-10-02T15:38:52.5135764Z CC lib/sg_pool.o
2025-10-02T15:38:52.8487450Z CC [M] drivers/regulator/lp8788-ldo.o
2025-10-02T15:38:53.0239084Z CC [M] sound/soc/codecs/cs42xx8.o
2025-10-02T15:38:53.1744267Z CC lib/memregion.o
2025-10-02T15:38:53.4026841Z CC [M] fs/xfs/libxfs/xfs_dir2.o
2025-10-02T15:38:53.4831224Z CC [M] net/netfilter/nf_nat_amanda.o
2025-10-02T15:38:53.6401511Z CC lib/irq_poll.o
2025-10-02T15:38:53.6835299Z CC [M] drivers/regulator/lp8755.o
2025-10-02T15:38:54.0762856Z CC [M] sound/soc/codecs/cs42xx8-i2c.o
2025-10-02T15:38:54.3440644Z CC lib/bootconfig.o
2025-10-02T15:38:54.6675093Z CC [M] net/netfilter/nf_nat_ftp.o
2025-10-02T15:38:54.7694422Z CC [M] drivers/regulator/ltc3589.o
2025-10-02T15:38:54.9499333Z CC [M] sound/soc/codecs/cs43130.o
2025-10-02T15:38:55.3243106Z CC lib/asn1_decoder.o
2025-10-02T15:38:55.6571594Z CC [M] fs/xfs/libxfs/xfs_dir2_block.o
2025-10-02T15:38:55.7226283Z CC [M] drivers/regulator/ltc3676.o
2025-10-02T15:38:55.9074055Z CC [M] net/netfilter/nf_nat_irc.o
2025-10-02T15:38:56.0012782Z GEN lib/oid_registry_data.c
2025-10-02T15:38:56.0295891Z CC lib/ucs2_string.o
2025-10-02T15:38:56.5775127Z CC lib/sbitmap.o
2025-10-02T15:38:56.6570349Z CC [M] drivers/regulator/max14577-regulator.o
2025-10-02T15:38:56.9117024Z CC [M] sound/soc/codecs/cs4341.o
2025-10-02T15:38:57.1138845Z CC [M] net/netfilter/nf_nat_sip.o
2025-10-02T15:38:57.6188154Z CC [M] lib/crc16.o
2025-10-02T15:38:57.6800499Z CC [M] drivers/regulator/max1586.o
2025-10-02T15:38:57.7240853Z CC [M] sound/soc/codecs/cs4349.o
2025-10-02T15:38:57.9350446Z CC [M] lib/crc-itu-t.o
2025-10-02T15:38:58.2446617Z CC [M] fs/xfs/libxfs/xfs_dir2_data.o
2025-10-02T15:38:58.3338142Z HOSTCC lib/gen_crc64table
2025-10-02T15:38:58.4666171Z CC [M] lib/crc4.o
2025-10-02T15:38:58.5395297Z CC [M] sound/soc/codecs/cs53l30.o
2025-10-02T15:38:58.5909969Z CC [M] drivers/regulator/max8649.o
2025-10-02T15:38:58.6391271Z CC [M] net/netfilter/nf_nat_tftp.o
2025-10-02T15:38:58.8822474Z CC [M] lib/crc7.o
2025-10-02T15:38:59.3298740Z CC [M] lib/libcrc32c.o
2025-10-02T15:38:59.4579294Z CC [M] drivers/regulator/max8660.o
2025-10-02T15:38:59.7137711Z CC [M] net/netfilter/nf_synproxy_core.o
2025-10-02T15:38:59.7540199Z CC [M] fs/xfs/libxfs/xfs_dir2_leaf.o
2025-10-02T15:38:59.8863175Z CC [M] sound/soc/codecs/cx2072x.o
2025-10-02T15:38:59.8930191Z CC [M] lib/crc8.o
2025-10-02T15:39:00.3074400Z CC [M] lib/ts_kmp.o
2025-10-02T15:39:00.3911609Z CC [M] drivers/regulator/max8907-regulator.o
2025-10-02T15:39:00.9201602Z CC [M] lib/ts_bm.o
2025-10-02T15:39:01.1361258Z CC [M] drivers/regulator/max8925-regulator.o
2025-10-02T15:39:01.1857279Z CC [M] sound/soc/codecs/da7213.o
2025-10-02T15:39:01.5569159Z CC [M] lib/ts_fsm.o
2025-10-02T15:39:01.8042641Z CC [M] net/netfilter/nf_conncount.o
2025-10-02T15:39:02.1696682Z CC [M] lib/lru_cache.o
2025-10-02T15:39:02.2498965Z CC [M] drivers/regulator/max8952.o
2025-10-02T15:39:02.5161104Z CC [M] fs/xfs/libxfs/xfs_dir2_node.o
2025-10-02T15:39:02.7548567Z CC [M] sound/soc/codecs/da7219.o
2025-10-02T15:39:03.1941278Z CC [M] lib/parman.o
2025-10-02T15:39:03.2589336Z CC [M] drivers/regulator/max8997-regulator.o
2025-10-02T15:39:03.4627494Z CC [M] net/netfilter/nf_dup_netdev.o
2025-10-02T15:39:03.7364428Z CC [M] lib/objagg.o
2025-10-02T15:39:04.3380853Z CC [M] net/netfilter/nf_tables_core.o
2025-10-02T15:39:04.3894672Z CC [M] sound/soc/codecs/da7219-aad.o
2025-10-02T15:39:04.5241161Z CC [M] drivers/regulator/max8998.o
2025-10-02T15:39:05.3738272Z CC [M] fs/xfs/libxfs/xfs_dir2_sf.o
2025-10-02T15:39:05.5022515Z CC [M] sound/soc/codecs/dmic.o
2025-10-02T15:39:05.6559149Z CC [M] net/netfilter/nf_tables_api.o
2025-10-02T15:39:05.6773075Z GEN lib/crc64table.h
2025-10-02T15:39:05.6842163Z AR lib/lib.a
2025-10-02T15:39:05.7126478Z GEN lib/crc32table.h
2025-10-02T15:39:05.7212829Z CC lib/oid_registry.o
2025-10-02T15:39:05.7674523Z CC [M] drivers/regulator/max77693-regulator.o
2025-10-02T15:39:06.1794933Z CC [M] sound/soc/codecs/es7134.o
2025-10-02T15:39:06.2357616Z CC [M] lib/crc64.o
2025-10-02T15:39:06.7514645Z CC [M] drivers/regulator/max77826-regulator.o
2025-10-02T15:39:06.8755634Z CC lib/crc32.o
2025-10-02T15:39:06.8819038Z CC [M] sound/soc/codecs/es7241.o
2025-10-02T15:39:07.5471364Z AR lib/built-in.a
2025-10-02T15:39:07.5748182Z CC [M] drivers/regulator/mc13783-regulator.o
2025-10-02T15:39:07.6219307Z CC [M] sound/soc/generic/simple-card-utils.o
2025-10-02T15:39:07.6916911Z CC [M] sound/soc/codecs/es8316.o
2025-10-02T15:39:07.8854609Z CC [M] fs/xfs/libxfs/xfs_dquot_buf.o
2025-10-02T15:39:08.3996248Z CC [M] drivers/regulator/mc13892-regulator.o
2025-10-02T15:39:08.6415684Z CC [M] sound/soc/generic/simple-card.o
2025-10-02T15:39:08.7175573Z CC [M] fs/xfs/libxfs/xfs_ialloc.o
2025-10-02T15:39:08.7614734Z CC [M] sound/soc/codecs/es8328.o
2025-10-02T15:39:09.4958926Z LD [M] sound/soc/generic/snd-soc-simple-card-utils.o
2025-10-02T15:39:09.5194970Z LD [M] sound/soc/generic/snd-soc-simple-card.o
2025-10-02T15:39:09.5954705Z CC [M] drivers/regulator/mc13xxx-regulator-core.o
2025-10-02T15:39:09.6480677Z AR net/ipv4/netfilter/built-in.a
2025-10-02T15:39:09.6648420Z CC [M] net/ipv4/netfilter/nf_defrag_ipv4.o
2025-10-02T15:39:09.7495275Z CC [M] sound/soc/codecs/es8328-i2c.o
2025-10-02T15:39:10.3575894Z CC [M] drivers/regulator/mp8859.o
2025-10-02T15:39:10.5500822Z CC [M] sound/soc/codecs/es8328-spi.o
2025-10-02T15:39:10.8211251Z CC [M] net/ipv4/netfilter/nf_socket_ipv4.o
2025-10-02T15:39:11.1386977Z CC [M] drivers/regulator/mt6311-regulator.o
2025-10-02T15:39:11.2708275Z CC [M] sound/soc/codecs/gtm601.o
2025-10-02T15:39:11.9232536Z CC [M] drivers/regulator/mt6323-regulator.o
2025-10-02T15:39:12.0668372Z CC [M] sound/soc/codecs/hdac_hdmi.o
2025-10-02T15:39:12.1922103Z CC [M] fs/xfs/libxfs/xfs_ialloc_btree.o
2025-10-02T15:39:12.4040350Z CC [M] net/ipv4/netfilter/nf_tproxy_ipv4.o
2025-10-02T15:39:12.6388410Z CC [M] drivers/regulator/mt6358-regulator.o
2025-10-02T15:39:13.5227532Z CC [M] net/netfilter/nft_chain_filter.o
2025-10-02T15:39:13.5288341Z CC [M] drivers/regulator/mt6360-regulator.o
2025-10-02T15:39:13.7961057Z CC [M] net/ipv4/netfilter/nf_log_arp.o
2025-10-02T15:39:14.1211076Z CC [M] sound/soc/codecs/hdac_hda.o
2025-10-02T15:39:14.3174815Z CC [M] drivers/regulator/mt6397-regulator.o
2025-10-02T15:39:14.4315134Z CC [M] fs/xfs/libxfs/xfs_iext_tree.o
2025-10-02T15:39:14.8745744Z CC [M] net/ipv4/netfilter/nf_log_ipv4.o
2025-10-02T15:39:14.9335955Z CC [M] sound/soc/codecs/inno_rk3036.o
2025-10-02T15:39:15.1548163Z CC [M] drivers/regulator/palmas-regulator.o
2025-10-02T15:39:15.2515950Z CC [M] net/netfilter/nf_tables_trace.o
2025-10-02T15:39:15.7793363Z CC [M] sound/soc/codecs/max9759.o
2025-10-02T15:39:16.2026953Z CC [M] net/ipv4/netfilter/nf_reject_ipv4.o
2025-10-02T15:39:16.3933754Z CC [M] net/netfilter/nft_immediate.o
2025-10-02T15:39:16.5081096Z CC [M] sound/soc/codecs/max98088.o
2025-10-02T15:39:16.6004512Z CC [M] drivers/regulator/pca9450-regulator.o
2025-10-02T15:39:17.2875935Z CC [M] fs/xfs/libxfs/xfs_inode_fork.o
2025-10-02T15:39:17.3862264Z CC [M] net/netfilter/nft_cmp.o
2025-10-02T15:39:17.4545907Z CC [M] net/ipv4/netfilter/nf_nat_h323.o
2025-10-02T15:39:17.6915561Z CC [M] drivers/regulator/pfuze100-regulator.o
2025-10-02T15:39:17.8215723Z CC [M] sound/soc/codecs/max98090.o
2025-10-02T15:39:18.7199386Z CC [M] drivers/regulator/pv88060-regulator.o
2025-10-02T15:39:18.7684241Z CC [M] net/netfilter/nft_range.o
2025-10-02T15:39:18.8707062Z CC [M] net/ipv4/netfilter/nf_nat_pptp.o
2025-10-02T15:39:19.1108493Z CC [M] sound/soc/codecs/max98357a.o
2025-10-02T15:39:19.6327511Z CC [M] drivers/regulator/pv88080-regulator.o
2025-10-02T15:39:19.6744265Z CC [M] fs/xfs/libxfs/xfs_inode_buf.o
2025-10-02T15:39:19.7850239Z CC [M] net/netfilter/nft_bitwise.o
2025-10-02T15:39:20.0032307Z CC [M] sound/soc/codecs/max9867.o
2025-10-02T15:39:20.1489452Z ASN.1 net/ipv4/netfilter/nf_nat_snmp_basic.asn1.[ch]
2025-10-02T15:39:20.1572424Z CC [M] net/ipv4/netfilter/nft_reject_ipv4.o
2025-10-02T15:39:20.6201350Z CC [M] drivers/regulator/pv88090-regulator.o
2025-10-02T15:39:20.8174427Z CC [M] sound/soc/codecs/max98927.o
2025-10-02T15:39:20.8223748Z CC [M] fs/xfs/libxfs/xfs_log_rlimit.o
2025-10-02T15:39:21.1581223Z CC [M] net/netfilter/nft_byteorder.o
2025-10-02T15:39:21.4068377Z CC [M] net/ipv4/netfilter/nft_fib_ipv4.o
2025-10-02T15:39:21.6148235Z CC [M] drivers/regulator/pwm-regulator.o
2025-10-02T15:39:21.6302887Z CC [M] fs/xfs/libxfs/xfs_ag_resv.o
2025-10-02T15:39:21.7284834Z CC [M] sound/soc/codecs/max98373.o
2025-10-02T15:39:22.3824373Z CC [M] net/netfilter/nft_payload.o
2025-10-02T15:39:22.4365055Z CC [M] drivers/regulator/tps51632-regulator.o
2025-10-02T15:39:22.5394291Z CC [M] sound/soc/codecs/max98373-i2c.o
2025-10-02T15:39:22.6455450Z CC [M] net/ipv4/netfilter/nft_dup_ipv4.o
2025-10-02T15:39:23.4462301Z CC [M] sound/soc/codecs/max98373-sdw.o
2025-10-02T15:39:23.5099763Z CC [M] drivers/regulator/pcap-regulator.o
2025-10-02T15:39:23.6401606Z CC [M] net/ipv4/netfilter/nf_flow_table_ipv4.o
2025-10-02T15:39:23.6675053Z CC [M] fs/xfs/libxfs/xfs_rmap.o
2025-10-02T15:39:23.9810667Z CC [M] net/netfilter/nft_lookup.o
2025-10-02T15:39:24.1947311Z CC [M] drivers/regulator/pcf50633-regulator.o
2025-10-02T15:39:24.3393752Z CC [M] sound/soc/codecs/max98390.o
2025-10-02T15:39:24.7461737Z CC [M] net/ipv4/netfilter/ip_tables.o
2025-10-02T15:39:24.9656229Z CC [M] net/netfilter/nft_dynset.o
2025-10-02T15:39:25.0272730Z CC [M] drivers/regulator/rpi-panel-attiny-regulator.o
2025-10-02T15:39:25.3964221Z CC [M] sound/soc/codecs/max9860.o
2025-10-02T15:39:26.0448702Z CC [M] drivers/regulator/rc5t583-regulator.o
2025-10-02T15:39:26.1815058Z CC [M] net/netfilter/nft_meta.o
2025-10-02T15:39:26.5310723Z CC [M] sound/soc/codecs/msm8916-wcd-digital.o
2025-10-02T15:39:26.9767591Z CC [M] drivers/regulator/rt4801-regulator.o
2025-10-02T15:39:27.0263798Z CC [M] net/ipv4/netfilter/iptable_filter.o
2025-10-02T15:39:27.4162959Z CC [M] sound/soc/codecs/mt6351.o
2025-10-02T15:39:27.4863292Z CC [M] fs/xfs/libxfs/xfs_rmap_btree.o
2025-10-02T15:39:27.5949657Z CC [M] net/netfilter/nft_rt.o
2025-10-02T15:39:28.0067413Z CC [M] drivers/regulator/rt5033-regulator.o
2025-10-02T15:39:28.2070146Z CC [M] net/ipv4/netfilter/iptable_mangle.o
2025-10-02T15:39:28.5815196Z CC [M] sound/soc/codecs/mt6358.o
2025-10-02T15:39:28.7964503Z CC [M] net/netfilter/nft_exthdr.o
2025-10-02T15:39:28.8641189Z CC [M] drivers/regulator/rtmv20-regulator.o
2025-10-02T15:39:29.5152070Z CC [M] net/ipv4/netfilter/iptable_nat.o
2025-10-02T15:39:29.6225174Z CC [M] fs/xfs/libxfs/xfs_refcount.o
2025-10-02T15:39:29.8306147Z CC [M] drivers/regulator/s2mpa01.o
2025-10-02T15:39:29.9540050Z CC [M] sound/soc/codecs/mt6660.o
2025-10-02T15:39:30.6130444Z CC [M] net/netfilter/nft_chain_route.o
2025-10-02T15:39:30.6530237Z CC [M] net/ipv4/netfilter/iptable_raw.o
2025-10-02T15:39:30.7204097Z CC [M] drivers/regulator/s2mps11.o
2025-10-02T15:39:31.1302897Z CC [M] sound/soc/codecs/nau8540.o
2025-10-02T15:39:31.7385231Z CC [M] net/ipv4/netfilter/iptable_security.o
2025-10-02T15:39:31.8878717Z CC [M] net/netfilter/nf_tables_offload.o
2025-10-02T15:39:32.0113086Z CC [M] drivers/regulator/s5m8767.o
2025-10-02T15:39:32.3299780Z CC [M] sound/soc/codecs/nau8810.o
2025-10-02T15:39:32.6311979Z CC [M] fs/xfs/libxfs/xfs_refcount_btree.o
2025-10-02T15:39:32.8089069Z CC [M] net/ipv4/netfilter/ipt_ah.o
2025-10-02T15:39:33.2350384Z CC [M] net/netfilter/nft_set_hash.o
2025-10-02T15:39:33.2694779Z CC [M] drivers/regulator/sky81452-regulator.o
2025-10-02T15:39:33.3030915Z CC [M] sound/soc/codecs/nau8822.o
2025-10-02T15:39:33.5873087Z CC [M] net/ipv4/netfilter/ipt_rpfilter.o
2025-10-02T15:39:33.9772291Z CC [M] drivers/regulator/slg51000-regulator.o
2025-10-02T15:39:34.4421239Z CC [M] sound/soc/codecs/nau8824.o
2025-10-02T15:39:34.8502737Z CC [M] net/ipv4/netfilter/ipt_CLUSTERIP.o
2025-10-02T15:39:34.9321896Z CC [M] fs/xfs/libxfs/xfs_sb.o
2025-10-02T15:39:35.1628394Z CC [M] drivers/regulator/tps6105x-regulator.o
2025-10-02T15:39:35.3961664Z CC [M] net/netfilter/nft_set_bitmap.o
2025-10-02T15:39:35.7632113Z CC [M] sound/soc/codecs/nau8825.o
2025-10-02T15:39:35.9310067Z CC [M] drivers/regulator/tps62360-regulator.o
2025-10-02T15:39:36.4735218Z CC [M] net/ipv4/netfilter/ipt_ECN.o
2025-10-02T15:39:36.7172876Z CC [M] net/netfilter/nft_set_rbtree.o
2025-10-02T15:39:37.1071023Z CC [M] drivers/regulator/tps65023-regulator.o
2025-10-02T15:39:37.3261818Z CC [M] sound/soc/codecs/hdmi-codec.o
2025-10-02T15:39:37.5145754Z CC [M] fs/xfs/libxfs/xfs_symlink_remote.o
2025-10-02T15:39:37.6629692Z CC [M] net/ipv4/netfilter/ipt_REJECT.o
2025-10-02T15:39:38.0781660Z CC [M] net/netfilter/nft_set_pipapo.o
2025-10-02T15:39:38.1346282Z CC [M] drivers/regulator/tps6507x-regulator.o
2025-10-02T15:39:38.3325830Z CC [M] sound/soc/codecs/pcm1681.o
2025-10-02T15:39:38.5893807Z CC [M] fs/xfs/libxfs/xfs_trans_inode.o
2025-10-02T15:39:39.1014949Z CC [M] drivers/regulator/tps65086-regulator.o
2025-10-02T15:39:39.1237986Z CC [M] sound/soc/codecs/pcm179x.o
2025-10-02T15:39:39.1800934Z CC [M] net/ipv4/netfilter/ipt_SYNPROXY.o
2025-10-02T15:39:39.4482143Z CC [M] fs/xfs/libxfs/xfs_trans_resv.o
2025-10-02T15:39:39.9045689Z CC [M] drivers/regulator/tps65090-regulator.o
2025-10-02T15:39:39.9055617Z CC [M] sound/soc/codecs/pcm1789-i2c.o
2025-10-02T15:39:40.1967213Z CC [M] net/netfilter/nft_set_pipapo_avx2.o
2025-10-02T15:39:40.3288588Z CC [M] sound/soc/codecs/pcm1789.o
2025-10-02T15:39:40.6374804Z CC [M] fs/xfs/libxfs/xfs_types.o
2025-10-02T15:39:40.8191331Z CC [M] net/ipv4/netfilter/arp_tables.o
2025-10-02T15:39:41.0054915Z CC [M] drivers/regulator/tps6524x-regulator.o
2025-10-02T15:39:41.0885900Z CC [M] sound/soc/codecs/pcm179x-i2c.o
2025-10-02T15:39:41.5720508Z CC [M] fs/xfs/libxfs/xfs_rtbitmap.o
2025-10-02T15:39:41.6417703Z CC [M] sound/soc/codecs/pcm179x-spi.o
2025-10-02T15:39:41.9773384Z CC [M] drivers/regulator/tps6586x-regulator.o
2025-10-02T15:39:42.2301771Z CC [M] net/netfilter/nft_compat.o
2025-10-02T15:39:42.3133957Z CC [M] sound/soc/codecs/pcm186x.o
2025-10-02T15:39:42.7876943Z CC [M] fs/xfs/xfs_aops.o
2025-10-02T15:39:42.8358590Z CC [M] net/ipv4/netfilter/arpt_mangle.o
2025-10-02T15:39:42.9085042Z CC [M] drivers/regulator/tps65910-regulator.o
2025-10-02T15:39:43.3090934Z CC [M] sound/soc/codecs/pcm186x-i2c.o
2025-10-02T15:39:43.8294489Z CC [M] sound/soc/codecs/pcm186x-spi.o
2025-10-02T15:39:43.9511203Z CC [M] net/netfilter/nft_connlimit.o
2025-10-02T15:39:44.0576981Z CC [M] net/ipv4/netfilter/arptable_filter.o
2025-10-02T15:39:44.0947150Z CC [M] drivers/regulator/tps65912-regulator.o
2025-10-02T15:39:44.6164408Z CC [M] sound/soc/codecs/pcm3060.o
2025-10-02T15:39:44.9092977Z CC [M] net/ipv4/netfilter/nf_dup_ipv4.o
2025-10-02T15:39:44.9171563Z CC [M] drivers/regulator/tps80031-regulator.o
2025-10-02T15:39:44.9990656Z CC [M] fs/xfs/xfs_attr_inactive.o
2025-10-02T15:39:45.3249329Z CC [M] net/netfilter/nft_numgen.o
2025-10-02T15:39:45.5406211Z CC [M] sound/soc/codecs/pcm3060-i2c.o
2025-10-02T15:39:45.9428790Z CC [M] fs/xfs/xfs_attr_list.o
2025-10-02T15:39:45.9534362Z CC [M] drivers/regulator/tps65132-regulator.o
2025-10-02T15:39:46.0365835Z CC [M] net/ipv4/netfilter/nf_nat_snmp_basic.asn1.o
2025-10-02T15:39:46.1740583Z CC [M] net/ipv4/netfilter/nf_nat_snmp_basic_main.o
2025-10-02T15:39:46.3040381Z CC [M] sound/soc/codecs/pcm3060-spi.o
2025-10-02T15:39:46.4094686Z CC [M] net/netfilter/nft_ct.o
2025-10-02T15:39:46.9094998Z CC [M] drivers/regulator/twl-regulator.o
2025-10-02T15:39:47.1230078Z CC [M] sound/soc/codecs/pcm3168a.o
2025-10-02T15:39:47.5310317Z LD [M] net/ipv4/netfilter/nf_nat_snmp_basic.o
2025-10-02T15:39:47.6697631Z CC net/ipv4/route.o
2025-10-02T15:39:47.8564597Z CC [M] drivers/regulator/twl6030-regulator.o
2025-10-02T15:39:48.0335996Z CC [M] fs/xfs/xfs_bmap_util.o
2025-10-02T15:39:48.4092581Z CC [M] net/netfilter/nft_flow_offload.o
2025-10-02T15:39:48.4214113Z CC [M] sound/soc/codecs/pcm3168a-i2c.o
2025-10-02T15:39:49.0313424Z CC [M] drivers/regulator/wm831x-dcdc.o
2025-10-02T15:39:49.1107557Z CC [M] sound/soc/codecs/pcm3168a-spi.o
2025-10-02T15:39:49.8381004Z CC [M] sound/soc/codecs/pcm512x.o
2025-10-02T15:39:49.8805367Z CC [M] net/netfilter/nft_limit.o
2025-10-02T15:39:50.1781473Z CC [M] drivers/regulator/wm831x-isink.o
2025-10-02T15:39:50.8158179Z CC [M] fs/xfs/xfs_bio_io.o
2025-10-02T15:39:50.9651789Z CC [M] drivers/regulator/wm831x-ldo.o
2025-10-02T15:39:51.1242725Z CC net/ipv4/inetpeer.o
2025-10-02T15:39:51.2138241Z CC [M] net/netfilter/nft_nat.o
2025-10-02T15:39:51.3887960Z CC [M] sound/soc/codecs/pcm512x-i2c.o
2025-10-02T15:39:51.7297288Z CC [M] fs/xfs/xfs_buf.o
2025-10-02T15:39:51.9178908Z CC [M] sound/soc/codecs/pcm512x-spi.o
2025-10-02T15:39:52.0543235Z CC [M] drivers/regulator/wm8350-regulator.o
2025-10-02T15:39:52.2393786Z CC net/ipv4/protocol.o
2025-10-02T15:39:52.4301304Z CC [M] net/netfilter/nft_objref.o
2025-10-02T15:39:52.6678813Z CC [M] sound/soc/codecs/rk3328_codec.o
2025-10-02T15:39:53.3780185Z CC [M] net/netfilter/nft_queue.o
2025-10-02T15:39:53.4881114Z CC net/ipv4/ip_input.o
2025-10-02T15:39:53.4912075Z CC [M] sound/soc/codecs/rl6231.o
2025-10-02T15:39:53.5768471Z CC [M] drivers/regulator/wm8400-regulator.o
2025-10-02T15:39:53.9505444Z CC [M] sound/soc/codecs/rl6347a.o
2025-10-02T15:39:54.4495787Z CC [M] sound/soc/codecs/rt1011.o
2025-10-02T15:39:54.5128105Z CC [M] drivers/regulator/wm8994-regulator.o
2025-10-02T15:39:54.8943300Z CC [M] net/netfilter/nft_quota.o
2025-10-02T15:39:55.0915238Z CC net/ipv4/ip_fragment.o
2025-10-02T15:39:55.2249644Z CC [M] fs/xfs/xfs_dir2_readdir.o
2025-10-02T15:39:55.3531784Z AR drivers/regulator/built-in.a
2025-10-02T15:39:55.7374645Z CC [M] net/netfilter/nft_reject.o
2025-10-02T15:39:55.9078157Z CC [M] sound/soc/codecs/rt1015.o
2025-10-02T15:39:56.3707543Z AR drivers/reset/hisilicon/built-in.a
2025-10-02T15:39:56.4105279Z CC drivers/reset/core.o
2025-10-02T15:39:56.5750843Z CC net/ipv4/ip_forward.o
2025-10-02T15:39:56.8051065Z CC [M] sound/soc/codecs/rt1308.o
2025-10-02T15:39:57.0994133Z CC [M] net/netfilter/nft_reject_inet.o
2025-10-02T15:39:57.3833691Z CC [M] drivers/reset/reset-ti-syscon.o
2025-10-02T15:39:57.6261086Z CC [M] fs/xfs/xfs_discard.o
2025-10-02T15:39:57.8251822Z CC [M] sound/soc/codecs/rt1308-sdw.o
2025-10-02T15:39:57.8622080Z AR drivers/reset/built-in.a
2025-10-02T15:39:57.8650455Z CC net/ipv4/ip_options.o
2025-10-02T15:39:57.9747949Z CC drivers/tty/vt/vt_ioctl.o
2025-10-02T15:39:58.2341288Z CC [M] net/netfilter/nft_tunnel.o
2025-10-02T15:39:58.9371084Z CC [M] sound/soc/codecs/rt286.o
2025-10-02T15:39:59.4185108Z CC drivers/tty/vt/vc_screen.o
2025-10-02T15:39:59.5061219Z CC net/ipv4/ip_output.o
2025-10-02T15:39:59.7890582Z CC [M] fs/xfs/xfs_error.o
2025-10-02T15:39:59.8934709Z CC [M] net/netfilter/nft_counter.o
2025-10-02T15:39:59.9779841Z CC [M] sound/soc/codecs/rt298.o
2025-10-02T15:40:00.4381243Z CC drivers/tty/vt/selection.o
2025-10-02T15:40:00.7045461Z CC [M] fs/xfs/xfs_export.o
2025-10-02T15:40:01.0331308Z CC [M] net/netfilter/nft_log.o
2025-10-02T15:40:01.0821229Z CC [M] sound/soc/codecs/rt5514.o
2025-10-02T15:40:01.4012549Z CC drivers/tty/vt/keyboard.o
2025-10-02T15:40:01.6609379Z CC [M] fs/xfs/xfs_extent_busy.o
2025-10-02T15:40:02.2474121Z CC [M] sound/soc/codecs/rt5514-spi.o
2025-10-02T15:40:02.4161371Z CC [M] net/netfilter/nft_masq.o
2025-10-02T15:40:02.5128474Z CC net/ipv4/ip_sockglue.o
2025-10-02T15:40:03.5067295Z CC drivers/tty/vt/consolemap.o
2025-10-02T15:40:03.5087887Z CC [M] sound/soc/codecs/rt5616.o
2025-10-02T15:40:03.5920579Z CC [M] net/netfilter/nft_redir.o
2025-10-02T15:40:03.7301066Z CC [M] fs/xfs/xfs_file.o
2025-10-02T15:40:04.4813087Z HOSTCC drivers/tty/vt/conmakehash
2025-10-02T15:40:04.6690205Z CC [M] sound/soc/codecs/rt5631.o
2025-10-02T15:40:04.7155459Z CC drivers/tty/vt/vt.o
2025-10-02T15:40:04.8073876Z CC net/ipv4/inet_hashtables.o
2025-10-02T15:40:04.9364809Z CC [M] net/netfilter/nft_hash.o
2025-10-02T15:40:06.0154751Z CC [M] sound/soc/codecs/rt5640.o
2025-10-02T15:40:06.1387215Z CC [M] net/netfilter/nft_fib.o
2025-10-02T15:40:06.6010482Z CC [M] fs/xfs/xfs_filestream.o
2025-10-02T15:40:07.0400326Z CC net/ipv4/inet_timewait_sock.o
2025-10-02T15:40:07.0950502Z CC [M] net/netfilter/nft_fib_inet.o
2025-10-02T15:40:07.6781291Z CC [M] sound/soc/codecs/rt5645.o
2025-10-02T15:40:07.8968948Z SHIPPED drivers/tty/vt/defkeymap.c
2025-10-02T15:40:07.9163808Z CONMK drivers/tty/vt/consolemap_deftbl.c
2025-10-02T15:40:07.9276064Z CC drivers/tty/vt/defkeymap.o
2025-10-02T15:40:07.9972323Z CC [M] net/netfilter/nft_fib_netdev.o
2025-10-02T15:40:08.1479779Z CC drivers/tty/vt/consolemap_deftbl.o
2025-10-02T15:40:08.2190627Z AR drivers/tty/vt/built-in.a
2025-10-02T15:40:08.2443925Z CC drivers/tty/hvc/hvc_console.o
2025-10-02T15:40:08.3548111Z CC net/ipv4/inet_connection_sock.o
2025-10-02T15:40:08.9725722Z CC [M] fs/xfs/xfs_fsmap.o
2025-10-02T15:40:09.1335969Z CC [M] net/netfilter/nft_socket.o
2025-10-02T15:40:09.3462811Z CC [M] sound/soc/codecs/rt5651.o
2025-10-02T15:40:09.4311216Z CC drivers/tty/hvc/hvc_irq.o
2025-10-02T15:40:09.9707046Z CC drivers/tty/hvc/hvc_xen.o
2025-10-02T15:40:10.3117892Z CC [M] net/netfilter/nft_osf.o
2025-10-02T15:40:10.6270004Z CC [M] sound/soc/codecs/rt5660.o
2025-10-02T15:40:10.7142807Z CC net/ipv4/tcp.o
2025-10-02T15:40:11.0781951Z AR drivers/tty/hvc/built-in.a
2025-10-02T15:40:11.1225357Z CC drivers/tty/serial/8250/8250_core.o
2025-10-02T15:40:11.5343161Z CC [M] net/netfilter/nft_tproxy.o
2025-10-02T15:40:11.7137656Z CC [M] sound/soc/codecs/rt5663.o
2025-10-02T15:40:11.8212426Z CC [M] fs/xfs/xfs_fsops.o
2025-10-02T15:40:12.3920982Z CC drivers/tty/serial/8250/8250_pnp.o
2025-10-02T15:40:12.7492823Z CC [M] net/netfilter/nft_xfrm.o
2025-10-02T15:40:12.9507287Z CC [M] fs/xfs/xfs_globals.o
2025-10-02T15:40:13.2276402Z CC drivers/tty/serial/8250/8250_port.o
2025-10-02T15:40:13.5172217Z CC [M] sound/soc/codecs/rt5670.o
2025-10-02T15:40:13.7993673Z CC [M] fs/xfs/xfs_health.o
2025-10-02T15:40:13.9269893Z CC [M] net/netfilter/nft_synproxy.o
2025-10-02T15:40:14.9229092Z CC net/ipv4/tcp_input.o
2025-10-02T15:40:15.0868009Z CC [M] sound/soc/codecs/rt5677.o
2025-10-02T15:40:15.3515154Z CC [M] net/netfilter/nft_chain_nat.o
2025-10-02T15:40:15.5305434Z CC drivers/tty/serial/8250/8250_dma.o
2025-10-02T15:40:16.0125476Z CC [M] fs/xfs/xfs_icache.o
2025-10-02T15:40:16.3932201Z CC drivers/tty/serial/8250/8250_dwlib.o
2025-10-02T15:40:16.9151292Z CC [M] net/netfilter/nft_dup_netdev.o
2025-10-02T15:40:16.9933359Z CC drivers/tty/serial/8250/8250_fintek.o
2025-10-02T15:40:17.1164259Z CC [M] sound/soc/codecs/rt5677-spi.o
2025-10-02T15:40:17.8594716Z CC drivers/tty/serial/8250/8250_pci.o
2025-10-02T15:40:17.9288882Z CC [M] net/netfilter/nft_fwd_netdev.o
2025-10-02T15:40:18.2614119Z CC [M] sound/soc/codecs/rt5682.o
2025-10-02T15:40:19.2092616Z CC [M] fs/xfs/xfs_ioctl.o
2025-10-02T15:40:19.2488746Z CC [M] net/netfilter/nf_flow_table_core.o
2025-10-02T15:40:19.4138923Z CC drivers/tty/serial/8250/8250_early.o
2025-10-02T15:40:20.0486127Z CC [M] sound/soc/codecs/rt5682-i2c.o
2025-10-02T15:40:20.0880565Z CC drivers/tty/serial/8250/8250_lpss.o
2025-10-02T15:40:20.5180890Z CC net/ipv4/tcp_output.o
2025-10-02T15:40:21.0040279Z CC drivers/tty/serial/8250/8250_mid.o
2025-10-02T15:40:21.1221749Z CC [M] sound/soc/codecs/rt5682-sdw.o
2025-10-02T15:40:21.1493358Z CC [M] net/netfilter/nf_flow_table_ip.o
2025-10-02T15:40:21.8993809Z CC [M] drivers/tty/serial/8250/8250_exar.o
2025-10-02T15:40:22.1661889Z CC [M] fs/xfs/xfs_iomap.o
2025-10-02T15:40:22.4781871Z CC [M] sound/soc/codecs/rt700.o
2025-10-02T15:40:22.6408573Z CC [M] net/netfilter/nf_flow_table_offload.o
2025-10-02T15:40:22.8674801Z CC [M] drivers/tty/serial/8250/serial_cs.o
2025-10-02T15:40:23.8762849Z CC [M] drivers/tty/serial/8250/8250_men_mcb.o
2025-10-02T15:40:23.9890913Z CC [M] sound/soc/codecs/rt700-sdw.o
2025-10-02T15:40:24.4097047Z CC [M] net/netfilter/nf_flow_table_inet.o
2025-10-02T15:40:24.5321350Z CC net/ipv4/tcp_timer.o
2025-10-02T15:40:24.5451351Z CC [M] drivers/tty/serial/8250/8250_dw.o
2025-10-02T15:40:24.8670793Z CC [M] fs/xfs/xfs_iops.o
2025-10-02T15:40:25.0262818Z CC [M] sound/soc/codecs/rt711.o
2025-10-02T15:40:25.3426009Z CC [M] net/netfilter/x_tables.o
2025-10-02T15:40:25.5118360Z AR drivers/tty/serial/8250/built-in.a
2025-10-02T15:40:25.6276429Z CC [M] drivers/tty/serial/jsm/jsm_driver.o
2025-10-02T15:40:26.3130724Z CC [M] sound/soc/codecs/rt711-sdw.o
2025-10-02T15:40:26.3596724Z CC net/ipv4/tcp_ipv4.o
2025-10-02T15:40:26.4273699Z CC [M] drivers/tty/serial/jsm/jsm_neo.o
2025-10-02T15:40:27.3372088Z CC [M] sound/soc/codecs/rt715.o
2025-10-02T15:40:27.5733008Z CC [M] net/netfilter/xt_tcpudp.o
2025-10-02T15:40:27.6271145Z CC [M] fs/xfs/xfs_inode.o
2025-10-02T15:40:27.7464086Z CC [M] drivers/tty/serial/jsm/jsm_tty.o
2025-10-02T15:40:28.4347827Z CC [M] sound/soc/codecs/rt715-sdw.o
2025-10-02T15:40:28.9424922Z CC [M] drivers/tty/serial/jsm/jsm_cls.o
2025-10-02T15:40:29.0214411Z CC [M] net/netfilter/xt_mark.o
2025-10-02T15:40:29.6141169Z CC [M] sound/soc/codecs/sgtl5000.o
2025-10-02T15:40:29.8195118Z CC net/ipv4/tcp_minisocks.o
2025-10-02T15:40:29.8414765Z LD [M] drivers/tty/serial/jsm/jsm.o
2025-10-02T15:40:29.8974458Z CC drivers/tty/serial/serial_core.o
2025-10-02T15:40:29.9131478Z CC [M] net/netfilter/xt_connmark.o
2025-10-02T15:40:30.8904069Z CC [M] sound/soc/codecs/sigmadsp.o
2025-10-02T15:40:31.2820903Z CC [M] net/netfilter/xt_set.o
2025-10-02T15:40:31.6421993Z CC [M] fs/xfs/xfs_itable.o
2025-10-02T15:40:31.7377126Z CC net/ipv4/tcp_cong.o
2025-10-02T15:40:31.8276099Z CC [M] sound/soc/codecs/sigmadsp-i2c.o
2025-10-02T15:40:32.0637636Z CC drivers/tty/serial/earlycon.o
2025-10-02T15:40:32.5468465Z CC [M] sound/soc/codecs/sigmadsp-regmap.o
2025-10-02T15:40:32.6531478Z CC [M] fs/xfs/xfs_iwalk.o
2025-10-02T15:40:32.7141743Z CC drivers/tty/serial/serial_mctrl_gpio.o
2025-10-02T15:40:32.7153648Z CC [M] net/netfilter/xt_nat.o
2025-10-02T15:40:33.1430016Z CC [M] sound/soc/codecs/si476x.o
2025-10-02T15:40:33.3291241Z CC net/ipv4/tcp_metrics.o
2025-10-02T15:40:33.3342534Z CC [M] drivers/tty/serial/max3100.o
2025-10-02T15:40:34.0341295Z CC [M] net/netfilter/xt_AUDIT.o
2025-10-02T15:40:34.2630323Z CC [M] sound/soc/codecs/spdif_receiver.o
2025-10-02T15:40:34.4613233Z CC [M] drivers/tty/serial/max310x.o
2025-10-02T15:40:34.8777497Z CC [M] sound/soc/codecs/spdif_transmitter.o
2025-10-02T15:40:35.0077595Z CC [M] fs/xfs/xfs_message.o
2025-10-02T15:40:35.2711025Z CC net/ipv4/tcp_fastopen.o
2025-10-02T15:40:35.4203657Z CC [M] net/netfilter/xt_CHECKSUM.o
2025-10-02T15:40:35.6245242Z CC [M] sound/soc/codecs/sirf-audio-codec.o
2025-10-02T15:40:35.8316447Z CC [M] fs/xfs/xfs_mount.o
2025-10-02T15:40:36.1591221Z CC [M] drivers/tty/serial/sccnxp.o
2025-10-02T15:40:36.6382770Z CC [M] sound/soc/codecs/ssm2305.o
2025-10-02T15:40:36.6934025Z CC net/ipv4/tcp_rate.o
2025-10-02T15:40:36.7997313Z CC [M] net/netfilter/xt_CLASSIFY.o
2025-10-02T15:40:37.4028977Z CC [M] sound/soc/codecs/ssm2602.o
2025-10-02T15:40:37.5932093Z CC [M] drivers/tty/serial/sc16is7xx.o
2025-10-02T15:40:37.8988359Z CC net/ipv4/tcp_recovery.o
2025-10-02T15:40:37.9829086Z CC [M] net/netfilter/xt_CONNSECMARK.o
2025-10-02T15:40:38.0613588Z CC [M] sound/soc/codecs/ssm2602-spi.o
2025-10-02T15:40:38.4391248Z CC [M] fs/xfs/xfs_mru_cache.o
2025-10-02T15:40:38.7054777Z CC [M] sound/soc/codecs/ssm2602-i2c.o
2025-10-02T15:40:39.0340300Z CC [M] drivers/tty/serial/uartlite.o
2025-10-02T15:40:39.2055053Z CC [M] net/netfilter/xt_CT.o
2025-10-02T15:40:39.3039046Z CC net/ipv4/tcp_ulp.o
2025-10-02T15:40:39.3396141Z CC [M] fs/xfs/xfs_pwork.o
2025-10-02T15:40:39.5066147Z CC [M] sound/soc/codecs/ssm4567.o
2025-10-02T15:40:39.9080131Z CC [M] drivers/tty/serial/altera_uart.o
2025-10-02T15:40:40.3092205Z CC [M] sound/soc/codecs/sta32x.o
2025-10-02T15:40:40.5580965Z CC net/ipv4/tcp_offload.o
2025-10-02T15:40:40.6104108Z CC [M] net/netfilter/xt_DSCP.o
2025-10-02T15:40:40.6743830Z CC [M] drivers/tty/serial/altera_jtaguart.o
2025-10-02T15:40:41.3828852Z CC [M] drivers/tty/serial/ifx6x60.o
2025-10-02T15:40:41.4413879Z CC [M] sound/soc/codecs/sta350.o
2025-10-02T15:40:41.6821986Z CC [M] fs/xfs/xfs_reflink.o
2025-10-02T15:40:41.9646019Z CC net/ipv4/datagram.o
2025-10-02T15:40:42.2171190Z CC [M] net/netfilter/xt_HL.o
2025-10-02T15:40:42.5604509Z CC [M] drivers/tty/serial/arc_uart.o
2025-10-02T15:40:42.7294750Z CC [M] sound/soc/codecs/sti-sas.o
2025-10-02T15:40:43.2638224Z CC [M] drivers/tty/serial/rp2.o
2025-10-02T15:40:43.2939029Z CC net/ipv4/raw.o
2025-10-02T15:40:43.3909844Z CC [M] net/netfilter/xt_HMARK.o
2025-10-02T15:40:43.5119928Z CC [M] sound/soc/codecs/tas2552.o
2025-10-02T15:40:44.2268526Z CC [M] fs/xfs/xfs_stats.o
2025-10-02T15:40:44.2999770Z CC [M] drivers/tty/serial/fsl_lpuart.o
2025-10-02T15:40:44.5804577Z CC [M] sound/soc/codecs/tas2562.o
2025-10-02T15:40:44.9322859Z CC [M] net/netfilter/xt_LED.o
2025-10-02T15:40:45.2614315Z CC [M] fs/xfs/xfs_super.o
2025-10-02T15:40:45.2901287Z CC net/ipv4/udp.o
2025-10-02T15:40:45.6561430Z CC [M] sound/soc/codecs/tas2764.o
2025-10-02T15:40:46.0321471Z CC [M] drivers/tty/serial/fsl_linflexuart.o
2025-10-02T15:40:46.0694950Z CC [M] net/netfilter/xt_LOG.o
2025-10-02T15:40:46.7441143Z CC [M] sound/soc/codecs/tas5086.o
2025-10-02T15:40:46.7619444Z CC [M] drivers/tty/serial/men_z135_uart.o
2025-10-02T15:40:47.3973052Z CC [M] net/netfilter/xt_NETMAP.o
2025-10-02T15:40:47.6366663Z CC [M] drivers/tty/serial/sprd_serial.o
2025-10-02T15:40:47.8514172Z CC [M] sound/soc/codecs/tas571x.o
2025-10-02T15:40:48.2128474Z CC [M] fs/xfs/xfs_symlink.o
2025-10-02T15:40:48.3571943Z AR drivers/tty/serial/built-in.a
2025-10-02T15:40:48.4761571Z CC drivers/tty/serdev/core.o
2025-10-02T15:40:48.8981541Z CC [M] net/netfilter/xt_NFLOG.o
2025-10-02T15:40:48.8983813Z CC [M] sound/soc/codecs/tas5720.o
2025-10-02T15:40:49.2065489Z CC net/ipv4/udplite.o
2025-10-02T15:40:49.5591765Z CC drivers/tty/serdev/serdev-ttyport.o
2025-10-02T15:40:49.6741022Z CC [M] net/netfilter/xt_NFQUEUE.o
2025-10-02T15:40:49.9635067Z CC [M] sound/soc/codecs/tas6424.o
2025-10-02T15:40:50.3667861Z AR drivers/tty/serdev/built-in.a
2025-10-02T15:40:50.3916735Z CC net/ipv4/udp_offload.o
2025-10-02T15:40:50.4241603Z AR drivers/tty/ipwireless/built-in.a
2025-10-02T15:40:50.4475748Z CC [M] drivers/tty/ipwireless/hardware.o
2025-10-02T15:40:50.5003733Z CC [M] fs/xfs/xfs_sysfs.o
2025-10-02T15:40:50.8950907Z CC [M] net/netfilter/xt_RATEEST.o
2025-10-02T15:40:51.1761040Z CC [M] sound/soc/codecs/tda7419.o
2025-10-02T15:40:51.4325722Z CC [M] fs/xfs/xfs_trans.o
2025-10-02T15:40:51.8345473Z CC [M] drivers/tty/ipwireless/main.o
2025-10-02T15:40:51.9192230Z CC [M] net/netfilter/xt_REDIRECT.o
2025-10-02T15:40:52.1538917Z CC [M] sound/soc/codecs/tas2770.o
2025-10-02T15:40:52.3990944Z CC net/ipv4/arp.o
2025-10-02T15:40:52.5979235Z CC [M] drivers/tty/ipwireless/network.o
2025-10-02T15:40:53.2302757Z CC [M] net/netfilter/xt_MASQUERADE.o
2025-10-02T15:40:53.3571620Z CC [M] sound/soc/codecs/tfa9879.o
2025-10-02T15:40:53.7653695Z CC [M] drivers/tty/ipwireless/tty.o
2025-10-02T15:40:53.8590463Z CC [M] fs/xfs/xfs_xattr.o
2025-10-02T15:40:54.2452061Z CC [M] sound/soc/codecs/tlv320aic23.o
2025-10-02T15:40:54.5487572Z CC [M] net/netfilter/xt_SECMARK.o
2025-10-02T15:40:54.6369112Z CC net/ipv4/icmp.o
2025-10-02T15:40:54.6620141Z CC [M] fs/xfs/kmem.o
2025-10-02T15:40:54.7155951Z LD [M] drivers/tty/ipwireless/ipwireless.o
2025-10-02T15:40:54.7551558Z CC drivers/tty/tty_io.o
2025-10-02T15:40:55.2578941Z CC [M] sound/soc/codecs/tlv320aic23-i2c.o
2025-10-02T15:40:55.5679118Z CC [M] net/netfilter/xt_TPROXY.o
2025-10-02T15:40:56.1631317Z CC [M] sound/soc/codecs/tlv320aic23-spi.o
2025-10-02T15:40:56.3985824Z CC net/ipv4/devinet.o
2025-10-02T15:40:56.9291235Z CC [M] fs/xfs/xfs_log.o
2025-10-02T15:40:56.9560755Z CC [M] sound/soc/codecs/tlv320aic31xx.o
2025-10-02T15:40:56.9944537Z CC drivers/tty/n_tty.o
2025-10-02T15:40:56.9949422Z CC [M] net/netfilter/xt_TCPMSS.o
2025-10-02T15:40:58.3838520Z CC [M] sound/soc/codecs/tlv320aic32x4.o
2025-10-02T15:40:58.4429372Z CC [M] net/netfilter/xt_TCPOPTSTRIP.o
2025-10-02T15:40:58.8918988Z CC drivers/tty/tty_ioctl.o
2025-10-02T15:40:58.9736367Z CC net/ipv4/af_inet.o
2025-10-02T15:40:59.6045702Z CC [M] sound/soc/codecs/tlv320aic32x4-clk.o
2025-10-02T15:40:59.9153369Z CC [M] net/netfilter/xt_TEE.o
2025-10-02T15:40:59.9514829Z CC drivers/tty/tty_ldisc.o
2025-10-02T15:41:00.3598735Z CC [M] sound/soc/codecs/tlv320aic32x4-i2c.o
2025-10-02T15:41:00.5214824Z CC [M] fs/xfs/xfs_log_cil.o
2025-10-02T15:41:00.8463073Z CC drivers/tty/tty_buffer.o
2025-10-02T15:41:01.1089340Z CC [M] sound/soc/codecs/tlv320aic32x4-spi.o
2025-10-02T15:41:01.2385549Z CC [M] net/netfilter/xt_TRACE.o
2025-10-02T15:41:01.4279154Z CC net/ipv4/igmp.o
2025-10-02T15:41:01.5823856Z CC drivers/tty/tty_port.o
2025-10-02T15:41:01.9361272Z CC [M] sound/soc/codecs/tlv320aic3x.o
2025-10-02T15:41:02.1209074Z CC [M] net/netfilter/xt_IDLETIMER.o
2025-10-02T15:41:02.4309178Z CC drivers/tty/tty_mutex.o
2025-10-02T15:41:03.0830316Z CC [M] fs/xfs/xfs_bmap_item.o
2025-10-02T15:41:03.1399391Z CC drivers/tty/tty_ldsem.o
2025-10-02T15:41:03.2067319Z CC [M] net/netfilter/xt_addrtype.o
2025-10-02T15:41:03.4585280Z CC [M] sound/soc/codecs/tlv320adcx140.o
2025-10-02T15:41:03.8200426Z CC drivers/tty/tty_baudrate.o
2025-10-02T15:41:04.0641690Z CC [M] fs/xfs/xfs_buf_item.o
2025-10-02T15:41:04.4210069Z CC drivers/tty/tty_jobctrl.o
2025-10-02T15:41:04.5189085Z CC net/ipv4/fib_frontend.o
2025-10-02T15:41:04.5910337Z CC [M] net/netfilter/xt_bpf.o
2025-10-02T15:41:04.7574225Z CC [M] sound/soc/codecs/tscs42xx.o
2025-10-02T15:41:05.3069454Z CC drivers/tty/n_null.o
2025-10-02T15:41:05.8519951Z CC [M] net/netfilter/xt_cluster.o
2025-10-02T15:41:05.8965050Z CC [M] sound/soc/codecs/tscs454.o
2025-10-02T15:41:05.9162778Z CC drivers/tty/pty.o
2025-10-02T15:41:06.4423727Z CC [M] fs/xfs/xfs_buf_item_recover.o
2025-10-02T15:41:06.5616098Z CC net/ipv4/fib_semantics.o
2025-10-02T15:41:06.8849714Z CC drivers/tty/tty_audit.o
2025-10-02T15:41:07.1401318Z CC [M] net/netfilter/xt_comment.o
2025-10-02T15:41:07.7233240Z CC drivers/tty/sysrq.o
2025-10-02T15:41:07.8078138Z CC [M] sound/soc/codecs/ts3a227e.o
2025-10-02T15:41:08.1610279Z CC [M] net/netfilter/xt_connbytes.o
2025-10-02T15:41:08.8158931Z CC [M] sound/soc/codecs/uda1334.o
2025-10-02T15:41:08.8376358Z CC [M] drivers/tty/n_hdlc.o
2025-10-02T15:41:08.9212047Z CC [M] fs/xfs/xfs_dquot_item_recover.o
2025-10-02T15:41:09.2253373Z CC net/ipv4/fib_trie.o
2025-10-02T15:41:09.3682855Z CC [M] net/netfilter/xt_connlabel.o
2025-10-02T15:41:09.7347448Z CC [M] fs/xfs/xfs_extfree_item.o
2025-10-02T15:41:09.7877116Z CC [M] drivers/tty/n_tracerouter.o
2025-10-02T15:41:09.8449174Z CC [M] sound/soc/codecs/wcd-clsh-v2.o
2025-10-02T15:41:10.5555684Z CC [M] net/netfilter/xt_connlimit.o
2025-10-02T15:41:10.5739421Z CC [M] drivers/tty/n_tracesink.o
2025-10-02T15:41:10.6536930Z CC [M] sound/soc/codecs/wcd9335.o
2025-10-02T15:41:11.2206352Z CC [M] drivers/tty/cyclades.o
2025-10-02T15:41:11.8492606Z CC net/ipv4/fib_notifier.o
2025-10-02T15:41:11.9438627Z CC [M] sound/soc/codecs/wcd934x.o
2025-10-02T15:41:12.0030146Z CC [M] fs/xfs/xfs_icreate_item.o
2025-10-02T15:41:12.2386774Z CC [M] net/netfilter/xt_conntrack.o
2025-10-02T15:41:13.1693126Z CC net/ipv4/inet_fragment.o
2025-10-02T15:41:13.2244125Z CC [M] sound/soc/codecs/wm8510.o
2025-10-02T15:41:13.5769155Z CC [M] net/netfilter/xt_cpu.o
2025-10-02T15:41:13.7658881Z CC [M] drivers/tty/isicom.o
2025-10-02T15:41:14.1881542Z CC [M] fs/xfs/xfs_inode_item.o
2025-10-02T15:41:14.2867581Z CC [M] sound/soc/codecs/wm8523.o
2025-10-02T15:41:14.4206613Z CC [M] net/netfilter/xt_dccp.o
2025-10-02T15:41:15.0510899Z CC net/ipv4/ping.o
2025-10-02T15:41:15.2451361Z CC [M] drivers/tty/moxa.o
2025-10-02T15:41:15.5521148Z CC [M] sound/soc/codecs/wm8524.o
2025-10-02T15:41:15.8189115Z CC [M] net/netfilter/xt_devgroup.o
2025-10-02T15:41:16.4087291Z CC [M] sound/soc/codecs/wm8580.o
2025-10-02T15:41:16.5229823Z CC [M] fs/xfs/xfs_inode_item_recover.o
2025-10-02T15:41:16.8515324Z CC [M] net/netfilter/xt_dscp.o
2025-10-02T15:41:16.9281697Z CC net/ipv4/ip_tunnel_core.o
2025-10-02T15:41:16.9901108Z CC [M] drivers/tty/mxser.o
2025-10-02T15:41:17.5680332Z CC [M] sound/soc/codecs/wm8711.o
2025-10-02T15:41:17.9744838Z CC [M] net/netfilter/xt_ecn.o
2025-10-02T15:41:18.5046649Z CC [M] sound/soc/codecs/wm8728.o
2025-10-02T15:41:18.7561616Z CC [M] fs/xfs/xfs_refcount_item.o
2025-10-02T15:41:18.8649285Z CC net/ipv4/gre_offload.o
2025-10-02T15:41:18.9328668Z CC [M] drivers/tty/nozomi.o
2025-10-02T15:41:19.3350558Z CC [M] net/netfilter/xt_esp.o
2025-10-02T15:41:19.4870859Z CC [M] sound/soc/codecs/wm8731.o
2025-10-02T15:41:19.8679398Z CC [M] fs/xfs/xfs_rmap_item.o
2025-10-02T15:41:20.2744412Z CC net/ipv4/metrics.o
2025-10-02T15:41:20.5311425Z CC [M] drivers/tty/ttynull.o
2025-10-02T15:41:20.6369389Z CC [M] sound/soc/codecs/wm8737.o
2025-10-02T15:41:20.6495579Z CC [M] net/netfilter/xt_hashlimit.o
2025-10-02T15:41:20.9318911Z CC [M] fs/xfs/xfs_log_recover.o
2025-10-02T15:41:21.1325242Z CC [M] drivers/tty/rocket.o
2025-10-02T15:41:21.4486576Z CC net/ipv4/netlink.o
2025-10-02T15:41:21.7956048Z CC [M] sound/soc/codecs/wm8741.o
2025-10-02T15:41:22.4400544Z CC net/ipv4/nexthop.o
2025-10-02T15:41:22.7160020Z CC [M] net/netfilter/xt_helper.o
2025-10-02T15:41:23.0746787Z CC [M] sound/soc/codecs/wm8750.o
2025-10-02T15:41:23.5006701Z CC [M] drivers/tty/synclink_gt.o
2025-10-02T15:41:24.0564087Z CC [M] sound/soc/codecs/wm8753.o
2025-10-02T15:41:24.1011997Z CC [M] net/netfilter/xt_hl.o
2025-10-02T15:41:24.2977356Z CC [M] fs/xfs/xfs_trans_ail.o
2025-10-02T15:41:24.6311403Z CC net/ipv4/udp_tunnel_stub.o
2025-10-02T15:41:25.2186775Z CC [M] net/netfilter/xt_ipcomp.o
2025-10-02T15:41:25.3804161Z CC [M] sound/soc/codecs/wm8770.o
2025-10-02T15:41:25.8286197Z CC net/ipv4/sysctl_net_ipv4.o
2025-10-02T15:41:26.2002862Z CC [M] net/netfilter/xt_iprange.o
2025-10-02T15:41:26.4378911Z CC [M] sound/soc/codecs/wm8776.o
2025-10-02T15:41:26.7650474Z CC [M] fs/xfs/xfs_trans_buf.o
2025-10-02T15:41:27.0227242Z CC [M] drivers/tty/synclinkmp.o
2025-10-02T15:41:27.1965926Z CC net/ipv4/proc.o
2025-10-02T15:41:27.2479987Z CC [M] net/netfilter/xt_ipvs.o
2025-10-02T15:41:27.3695181Z CC [M] sound/soc/codecs/wm8782.o
2025-10-02T15:41:28.1272753Z CC [M] sound/soc/codecs/wm8804.o
2025-10-02T15:41:28.7693508Z CC [M] net/netfilter/xt_l2tp.o
2025-10-02T15:41:28.9013861Z CC net/ipv4/fib_rules.o
2025-10-02T15:41:29.1494337Z CC [M] fs/xfs/xfs_dquot.o
2025-10-02T15:41:29.2154744Z CC [M] sound/soc/codecs/wm8804-i2c.o
2025-10-02T15:41:29.8357508Z CC [M] sound/soc/codecs/wm8804-spi.o
2025-10-02T15:41:30.0487008Z CC [M] net/netfilter/xt_length.o
2025-10-02T15:41:30.1801703Z CC net/ipv4/ipmr.o
2025-10-02T15:41:30.2220345Z CC [M] drivers/tty/synclink.o
2025-10-02T15:41:30.7218791Z CC [M] sound/soc/codecs/wm8903.o
2025-10-02T15:41:31.3111147Z CC [M] net/netfilter/xt_limit.o
2025-10-02T15:41:31.7206057Z CC [M] fs/xfs/xfs_dquot_item.o
2025-10-02T15:41:32.3489293Z CC [M] sound/soc/codecs/wm8904.o
2025-10-02T15:41:32.4655584Z CC [M] net/netfilter/xt_mac.o
2025-10-02T15:41:32.8543555Z CC [M] fs/xfs/xfs_trans_dquot.o
2025-10-02T15:41:33.0979105Z CC net/ipv4/ipmr_base.o
2025-10-02T15:41:33.6000544Z AR drivers/tty/built-in.a
2025-10-02T15:41:33.7011380Z CC [M] net/netfilter/xt_multiport.o
2025-10-02T15:41:33.7235276Z CC [M] sound/soc/codecs/wm8960.o
2025-10-02T15:41:33.7741433Z AR drivers/char/agp/built-in.a
2025-10-02T15:41:33.7965363Z CC [M] drivers/char/agp/backend.o
2025-10-02T15:41:34.6591201Z CC net/ipv4/syncookies.o
2025-10-02T15:41:34.6816838Z CC [M] drivers/char/agp/frontend.o
2025-10-02T15:41:34.9565752Z CC [M] net/netfilter/xt_nfacct.o
2025-10-02T15:41:35.0374280Z CC [M] sound/soc/codecs/wm8962.o
2025-10-02T15:41:35.4294524Z CC [M] fs/xfs/xfs_qm_syscalls.o
2025-10-02T15:41:35.7076596Z CC [M] drivers/char/agp/generic.o
2025-10-02T15:41:35.7774837Z CC [M] net/netfilter/xt_osf.o
2025-10-02T15:41:36.3632672Z CC net/ipv4/netfilter.o
2025-10-02T15:41:36.7182208Z CC [M] fs/xfs/xfs_qm_bhv.o
2025-10-02T15:41:36.8322782Z CC [M] drivers/char/agp/isoch.o
2025-10-02T15:41:36.9590950Z CC [M] sound/soc/codecs/wm8974.o
2025-10-02T15:41:37.2581206Z CC [M] net/netfilter/xt_owner.o
2025-10-02T15:41:37.4828164Z CC net/ipv4/tcp_cubic.o
2025-10-02T15:41:37.5729006Z CC [M] fs/xfs/xfs_qm.o
2025-10-02T15:41:37.5872625Z CC [M] drivers/char/agp/compat_ioctl.o
2025-10-02T15:41:37.9622994Z CC [M] sound/soc/codecs/wm8978.o
2025-10-02T15:41:38.3885867Z CC [M] drivers/char/agp/amd64-agp.o
2025-10-02T15:41:38.5821786Z CC [M] net/netfilter/xt_cgroup.o
2025-10-02T15:41:38.8549692Z CC net/ipv4/tcp_bpf.o
2025-10-02T15:41:38.9220884Z CC [M] sound/soc/codecs/wm8985.o
2025-10-02T15:41:39.2907795Z CC [M] drivers/char/agp/intel-agp.o
2025-10-02T15:41:40.0596608Z CC [M] net/netfilter/xt_physdev.o
2025-10-02T15:41:40.1002109Z CC [M] sound/soc/codecs/wsa881x.o
2025-10-02T15:41:40.1721629Z CC [M] drivers/char/agp/intel-gtt.o
2025-10-02T15:41:40.5084642Z CC [M] fs/xfs/xfs_quotaops.o
2025-10-02T15:41:40.6774967Z CC net/ipv4/udp_bpf.o
2025-10-02T15:41:41.0198209Z CC [M] sound/soc/codecs/zl38060.o
2025-10-02T15:41:41.1055977Z CC [M] net/netfilter/xt_pkttype.o
2025-10-02T15:41:41.3181086Z CC [M] drivers/char/agp/sis-agp.o
2025-10-02T15:41:41.6411081Z CC [M] fs/xfs/xfs_rtalloc.o
2025-10-02T15:41:41.9528142Z CC net/ipv4/cipso_ipv4.o
2025-10-02T15:41:41.9900747Z CC [M] drivers/char/agp/via-agp.o
2025-10-02T15:41:42.0182511Z CC [M] sound/soc/codecs/zx_aud96p22.o
2025-10-02T15:41:42.2096377Z CC [M] net/netfilter/xt_policy.o
2025-10-02T15:41:42.6501821Z LD [M] drivers/char/agp/agpgart.o
2025-10-02T15:41:42.7264906Z CC [M] drivers/char/hw_random/core.o
2025-10-02T15:41:42.8220884Z CC [M] sound/soc/codecs/max98504.o
2025-10-02T15:41:42.8510876Z CC [M] fs/xfs/xfs_acl.o
2025-10-02T15:41:43.5626569Z CC [M] net/netfilter/xt_quota.o
2025-10-02T15:41:43.6482745Z CC [M] drivers/char/hw_random/timeriomem-rng.o
2025-10-02T15:41:43.7177806Z CC [M] sound/soc/codecs/simple-amplifier.o
2025-10-02T15:41:44.2707980Z CC [M] drivers/char/hw_random/intel-rng.o
2025-10-02T15:41:44.2971118Z CC net/ipv4/xfrm4_policy.o
2025-10-02T15:41:44.4457771Z CC [M] net/netfilter/xt_rateest.o
2025-10-02T15:41:44.6239346Z CC [M] sound/soc/codecs/tpa6130a2.o
2025-10-02T15:41:44.9040453Z CC [M] fs/xfs/xfs_sysctl.o
2025-10-02T15:41:44.9598423Z CC [M] drivers/char/hw_random/amd-rng.o
2025-10-02T15:41:45.5074530Z CC [M] net/netfilter/xt_realm.o
2025-10-02T15:41:45.5271894Z LD [M] sound/soc/codecs/snd-soc-ac97.o
2025-10-02T15:41:45.5392636Z LD [M] sound/soc/codecs/snd-soc-adau-utils.o
2025-10-02T15:41:45.5507386Z LD [M] sound/soc/codecs/snd-soc-adau1701.o
2025-10-02T15:41:45.5639289Z LD [M] sound/soc/codecs/snd-soc-adau17x1.o
2025-10-02T15:41:45.5765763Z LD [M] sound/soc/codecs/snd-soc-adau1761.o
2025-10-02T15:41:45.5881238Z CC [M] drivers/char/hw_random/ba431-rng.o
2025-10-02T15:41:45.5906192Z LD [M] sound/soc/codecs/snd-soc-adau1761-i2c.o
2025-10-02T15:41:45.6147264Z LD [M] sound/soc/codecs/snd-soc-adau1761-spi.o
2025-10-02T15:41:45.6354426Z LD [M] sound/soc/codecs/snd-soc-adau7002.o
2025-10-02T15:41:45.6477825Z LD [M] sound/soc/codecs/snd-soc-adau7118.o
2025-10-02T15:41:45.6612568Z LD [M] sound/soc/codecs/snd-soc-adau7118-i2c.o
2025-10-02T15:41:45.6872020Z LD [M] sound/soc/codecs/snd-soc-adau7118-hw.o
2025-10-02T15:41:45.6982549Z CC net/ipv4/xfrm4_state.o
2025-10-02T15:41:45.6995521Z LD [M] sound/soc/codecs/snd-soc-ak4104.o
2025-10-02T15:41:45.7130166Z LD [M] sound/soc/codecs/snd-soc-ak4118.o
2025-10-02T15:41:45.7391486Z LD [M] sound/soc/codecs/snd-soc-ak4458.o
2025-10-02T15:41:45.7444255Z CC [M] fs/xfs/xfs_ioctl32.o
2025-10-02T15:41:45.7576389Z LD [M] sound/soc/codecs/snd-soc-ak4554.o
2025-10-02T15:41:45.7703380Z LD [M] sound/soc/codecs/snd-soc-ak4613.o
2025-10-02T15:41:45.7835935Z LD [M] sound/soc/codecs/snd-soc-ak4642.o
2025-10-02T15:41:45.7972782Z LD [M] sound/soc/codecs/snd-soc-ak5386.o
2025-10-02T15:41:45.8119688Z LD [M] sound/soc/codecs/snd-soc-ak5558.o
2025-10-02T15:41:45.8265755Z LD [M] sound/soc/codecs/snd-soc-alc5623.o
2025-10-02T15:41:45.8412983Z LD [M] sound/soc/codecs/snd-soc-bd28623.o
2025-10-02T15:41:45.8558147Z LD [M] sound/soc/codecs/snd-soc-cros-ec-codec.o
2025-10-02T15:41:45.8711749Z LD [M] sound/soc/codecs/snd-soc-cs35l32.o
2025-10-02T15:41:45.8862450Z LD [M] sound/soc/codecs/snd-soc-cs35l33.o
2025-10-02T15:41:45.9036550Z LD [M] sound/soc/codecs/snd-soc-cs35l34.o
2025-10-02T15:41:45.9182897Z LD [M] sound/soc/codecs/snd-soc-cs35l35.o
2025-10-02T15:41:45.9338386Z LD [M] sound/soc/codecs/snd-soc-cs35l36.o
2025-10-02T15:41:45.9492930Z LD [M] sound/soc/codecs/snd-soc-cs42l42.o
2025-10-02T15:41:45.9638522Z LD [M] sound/soc/codecs/snd-soc-cs42l51.o
2025-10-02T15:41:45.9784560Z LD [M] sound/soc/codecs/snd-soc-cs42l51-i2c.o
2025-10-02T15:41:45.9914917Z LD [M] sound/soc/codecs/snd-soc-cs42l52.o
2025-10-02T15:41:46.0058027Z LD [M] sound/soc/codecs/snd-soc-cs42l56.o
2025-10-02T15:41:46.0204157Z LD [M] sound/soc/codecs/snd-soc-cs42l73.o
2025-10-02T15:41:46.0343724Z LD [M] sound/soc/codecs/snd-soc-cs4234.o
2025-10-02T15:41:46.0490095Z LD [M] sound/soc/codecs/snd-soc-cs4265.o
2025-10-02T15:41:46.0624407Z LD [M] sound/soc/codecs/snd-soc-cs4270.o
2025-10-02T15:41:46.0761838Z LD [M] sound/soc/codecs/snd-soc-cs4271.o
2025-10-02T15:41:46.0961663Z LD [M] sound/soc/codecs/snd-soc-cs4271-i2c.o
2025-10-02T15:41:46.1161476Z LD [M] sound/soc/codecs/snd-soc-cs4271-spi.o
2025-10-02T15:41:46.1292028Z LD [M] sound/soc/codecs/snd-soc-cs42xx8.o
2025-10-02T15:41:46.1432111Z LD [M] sound/soc/codecs/snd-soc-cs42xx8-i2c.o
2025-10-02T15:41:46.1556687Z LD [M] sound/soc/codecs/snd-soc-cs43130.o
2025-10-02T15:41:46.1720166Z LD [M] sound/soc/codecs/snd-soc-cs4341.o
2025-10-02T15:41:46.1854455Z LD [M] sound/soc/codecs/snd-soc-cs4349.o
2025-10-02T15:41:46.1991228Z LD [M] sound/soc/codecs/snd-soc-cs53l30.o
2025-10-02T15:41:46.2134123Z LD [M] sound/soc/codecs/snd-soc-cx2072x.o
2025-10-02T15:41:46.2143031Z CC [M] drivers/char/hw_random/via-rng.o
2025-10-02T15:41:46.2398431Z LD [M] sound/soc/codecs/snd-soc-da7213.o
2025-10-02T15:41:46.2690625Z LD [M] sound/soc/codecs/snd-soc-da7219.o
2025-10-02T15:41:46.3050141Z LD [M] sound/soc/codecs/snd-soc-dmic.o
2025-10-02T15:41:46.3332464Z LD [M] sound/soc/codecs/snd-soc-es7134.o
2025-10-02T15:41:46.3582157Z LD [M] sound/soc/codecs/snd-soc-es7241.o
2025-10-02T15:41:46.3843396Z LD [M] sound/soc/codecs/snd-soc-es8316.o
2025-10-02T15:41:46.4094988Z LD [M] sound/soc/codecs/snd-soc-es8328.o
2025-10-02T15:41:46.4364813Z LD [M] sound/soc/codecs/snd-soc-es8328-i2c.o
2025-10-02T15:41:46.4582387Z LD [M] sound/soc/codecs/snd-soc-es8328-spi.o
2025-10-02T15:41:46.4740305Z LD [M] sound/soc/codecs/snd-soc-gtm601.o
2025-10-02T15:41:46.4904166Z LD [M] sound/soc/codecs/snd-soc-hdac-hdmi.o
2025-10-02T15:41:46.5063093Z LD [M] sound/soc/codecs/snd-soc-hdac-hda.o
2025-10-02T15:41:46.5233601Z LD [M] sound/soc/codecs/snd-soc-inno-rk3036.o
2025-10-02T15:41:46.5396834Z LD [M] sound/soc/codecs/snd-soc-max9759.o
2025-10-02T15:41:46.5440417Z CC [M] net/netfilter/xt_recent.o
2025-10-02T15:41:46.5588985Z LD [M] sound/soc/codecs/snd-soc-max98088.o
2025-10-02T15:41:46.5909303Z LD [M] sound/soc/codecs/snd-soc-max98090.o
2025-10-02T15:41:46.6175235Z LD [M] sound/soc/codecs/snd-soc-max98357a.o
2025-10-02T15:41:46.6319139Z LD [M] sound/soc/codecs/snd-soc-max9867.o
2025-10-02T15:41:46.6493066Z LD [M] sound/soc/codecs/snd-soc-max98927.o
2025-10-02T15:41:46.6663383Z LD [M] sound/soc/codecs/snd-soc-max98373.o
2025-10-02T15:41:46.6929685Z CC [M] drivers/char/hw_random/virtio-rng.o
2025-10-02T15:41:46.6992558Z LD [M] sound/soc/codecs/snd-soc-max98373-i2c.o
2025-10-02T15:41:46.7195266Z LD [M] sound/soc/codecs/snd-soc-max98373-sdw.o
2025-10-02T15:41:46.7383118Z LD [M] sound/soc/codecs/snd-soc-max98390.o
2025-10-02T15:41:46.7517517Z LD [M] sound/soc/codecs/snd-soc-max9860.o
2025-10-02T15:41:46.7656866Z LD [M] sound/soc/codecs/snd-soc-msm8916-digital.o
2025-10-02T15:41:46.7793348Z LD [M] sound/soc/codecs/snd-soc-mt6351.o
2025-10-02T15:41:46.7952171Z LD [M] sound/soc/codecs/snd-soc-mt6358.o
2025-10-02T15:41:46.8084150Z LD [M] sound/soc/codecs/snd-soc-mt6660.o
2025-10-02T15:41:46.8221588Z LD [M] sound/soc/codecs/snd-soc-nau8540.o
2025-10-02T15:41:46.8361682Z LD [M] sound/soc/codecs/snd-soc-nau8810.o
2025-10-02T15:41:46.8521494Z LD [M] sound/soc/codecs/snd-soc-nau8822.o
2025-10-02T15:41:46.8661796Z LD [M] sound/soc/codecs/snd-soc-nau8824.o
2025-10-02T15:41:46.8976374Z LD [M] sound/soc/codecs/snd-soc-nau8825.o
2025-10-02T15:41:46.9109176Z CC net/ipv4/xfrm4_input.o
2025-10-02T15:41:46.9292948Z LD [M] sound/soc/codecs/snd-soc-hdmi-codec.o
2025-10-02T15:41:46.9528187Z LD [M] sound/soc/codecs/snd-soc-pcm1681.o
2025-10-02T15:41:46.9799052Z LD [M] sound/soc/codecs/snd-soc-pcm179x-codec.o
2025-10-02T15:41:47.0059283Z LD [M] sound/soc/codecs/snd-soc-pcm1789-i2c.o
2025-10-02T15:41:47.0313131Z LD [M] sound/soc/codecs/snd-soc-pcm1789-codec.o
2025-10-02T15:41:47.0569711Z LD [M] sound/soc/codecs/snd-soc-pcm179x-i2c.o
2025-10-02T15:41:47.0789302Z LD [M] sound/soc/codecs/snd-soc-pcm179x-spi.o
2025-10-02T15:41:47.1058652Z LD [M] sound/soc/codecs/snd-soc-pcm186x.o
2025-10-02T15:41:47.1308877Z LD [M] sound/soc/codecs/snd-soc-pcm186x-i2c.o
2025-10-02T15:41:47.1557786Z LD [M] sound/soc/codecs/snd-soc-pcm186x-spi.o
2025-10-02T15:41:47.1807580Z LD [M] sound/soc/codecs/snd-soc-pcm3060.o
2025-10-02T15:41:47.2090086Z LD [M] sound/soc/codecs/snd-soc-pcm3060-i2c.o
2025-10-02T15:41:47.2361676Z LD [M] sound/soc/codecs/snd-soc-pcm3060-spi.o
2025-10-02T15:41:47.2559888Z LD [M] sound/soc/codecs/snd-soc-pcm3168a.o
2025-10-02T15:41:47.2837285Z LD [M] sound/soc/codecs/snd-soc-pcm3168a-i2c.o
2025-10-02T15:41:47.3070100Z LD [M] sound/soc/codecs/snd-soc-pcm3168a-spi.o
2025-10-02T15:41:47.3309647Z LD [M] sound/soc/codecs/snd-soc-pcm512x.o
2025-10-02T15:41:47.3652666Z LD [M] sound/soc/codecs/snd-soc-pcm512x-i2c.o
2025-10-02T15:41:47.3755278Z LD [M] sound/soc/codecs/snd-soc-pcm512x-spi.o
2025-10-02T15:41:47.3915080Z LD [M] sound/soc/codecs/snd-soc-rk3328.o
2025-10-02T15:41:47.4180687Z CC [M] drivers/char/hw_random/xiphera-trng.o
2025-10-02T15:41:47.4212766Z LD [M] sound/soc/codecs/snd-soc-rl6231.o
2025-10-02T15:41:47.4342685Z LD [M] sound/soc/codecs/snd-soc-rl6347a.o
2025-10-02T15:41:47.4444656Z LD [M] sound/soc/codecs/snd-soc-rt1011.o
2025-10-02T15:41:47.4585698Z LD [M] sound/soc/codecs/snd-soc-rt1015.o
2025-10-02T15:41:47.4721039Z LD [M] sound/soc/codecs/snd-soc-rt1308.o
2025-10-02T15:41:47.4845369Z LD [M] sound/soc/codecs/snd-soc-rt1308-sdw.o
2025-10-02T15:41:47.4974507Z LD [M] sound/soc/codecs/snd-soc-rt286.o
2025-10-02T15:41:47.5110246Z LD [M] sound/soc/codecs/snd-soc-rt298.o
2025-10-02T15:41:47.5249868Z LD [M] sound/soc/codecs/snd-soc-rt5514.o
2025-10-02T15:41:47.5411114Z LD [M] sound/soc/codecs/snd-soc-rt5514-spi.o
2025-10-02T15:41:47.5525271Z LD [M] sound/soc/codecs/snd-soc-rt5616.o
2025-10-02T15:41:47.5711279Z LD [M] sound/soc/codecs/snd-soc-rt5631.o
2025-10-02T15:41:47.5831293Z LD [M] sound/soc/codecs/snd-soc-rt5640.o
2025-10-02T15:41:47.5945285Z LD [M] sound/soc/codecs/snd-soc-rt5645.o
2025-10-02T15:41:47.6131222Z LD [M] sound/soc/codecs/snd-soc-rt5651.o
2025-10-02T15:41:47.6281179Z LD [M] sound/soc/codecs/snd-soc-rt5660.o
2025-10-02T15:41:47.6431192Z LD [M] sound/soc/codecs/snd-soc-rt5663.o
2025-10-02T15:41:47.6536053Z LD [M] sound/soc/codecs/snd-soc-rt5670.o
2025-10-02T15:41:47.6691957Z LD [M] sound/soc/codecs/snd-soc-rt5677.o
2025-10-02T15:41:47.6861472Z LD [M] sound/soc/codecs/snd-soc-rt5677-spi.o
2025-10-02T15:41:47.7002616Z LD [M] sound/soc/codecs/snd-soc-rt5682.o
2025-10-02T15:41:47.7163513Z LD [M] sound/soc/codecs/snd-soc-rt5682-i2c.o
2025-10-02T15:41:47.7301597Z LD [M] sound/soc/codecs/snd-soc-rt5682-sdw.o
2025-10-02T15:41:47.7440260Z LD [M] sound/soc/codecs/snd-soc-rt700.o
2025-10-02T15:41:47.7603159Z LD [M] sound/soc/codecs/snd-soc-rt711.o
2025-10-02T15:41:47.7767409Z LD [M] sound/soc/codecs/snd-soc-rt715.o
2025-10-02T15:41:47.7931506Z LD [M] sound/soc/codecs/snd-soc-sgtl5000.o
2025-10-02T15:41:47.8075943Z LD [M] sound/soc/codecs/snd-soc-sigmadsp.o
2025-10-02T15:41:47.8217426Z LD [M] sound/soc/codecs/snd-soc-sigmadsp-i2c.o
2025-10-02T15:41:47.8343836Z LD [M] sound/soc/codecs/snd-soc-sigmadsp-regmap.o
2025-10-02T15:41:47.8465964Z LD [M] sound/soc/codecs/snd-soc-si476x.o
2025-10-02T15:41:47.8655837Z LD [M] sound/soc/codecs/snd-soc-spdif-rx.o
2025-10-02T15:41:47.8785785Z LD [M] sound/soc/codecs/snd-soc-spdif-tx.o
2025-10-02T15:41:47.8941116Z LD [M] sound/soc/codecs/snd-soc-ssm2305.o
2025-10-02T15:41:47.9200907Z LD [M] sound/soc/codecs/snd-soc-ssm2602.o
2025-10-02T15:41:47.9333336Z LD [M] sound/soc/codecs/snd-soc-ssm2602-spi.o
2025-10-02T15:41:47.9443098Z LD [M] sound/soc/codecs/snd-soc-ssm2602-i2c.o
2025-10-02T15:41:47.9510882Z LD [M] drivers/char/hw_random/rng-core.o
2025-10-02T15:41:47.9556636Z LD [M] sound/soc/codecs/snd-soc-ssm4567.o
2025-10-02T15:41:47.9674131Z LD [M] sound/soc/codecs/snd-soc-sta32x.o
2025-10-02T15:41:47.9802375Z LD [M] sound/soc/codecs/snd-soc-sta350.o
2025-10-02T15:41:47.9937909Z LD [M] sound/soc/codecs/snd-soc-sti-sas.o
2025-10-02T15:41:48.0097165Z LD [M] sound/soc/codecs/snd-soc-tas2552.o
2025-10-02T15:41:48.0200393Z CC [M] fs/xfs/xfs_pnfs.o
2025-10-02T15:41:48.0260910Z LD [M] sound/soc/codecs/snd-soc-tas2562.o
2025-10-02T15:41:48.0340173Z CC [M] drivers/char/mwave/mwavedd.o
2025-10-02T15:41:48.0380207Z LD [M] sound/soc/codecs/snd-soc-tas2764.o
2025-10-02T15:41:48.0618238Z LD [M] sound/soc/codecs/snd-soc-tas5086.o
2025-10-02T15:41:48.0800168Z LD [M] sound/soc/codecs/snd-soc-tas571x.o
2025-10-02T15:41:48.0942842Z LD [M] sound/soc/codecs/snd-soc-tas5720.o
2025-10-02T15:41:48.1147357Z CC [M] net/netfilter/xt_sctp.o
2025-10-02T15:41:48.1202220Z LD [M] sound/soc/codecs/snd-soc-tas6424.o
2025-10-02T15:41:48.1326657Z LD [M] sound/soc/codecs/snd-soc-tda7419.o
2025-10-02T15:41:48.1600976Z LD [M] sound/soc/codecs/snd-soc-tas2770.o
2025-10-02T15:41:48.1851672Z LD [M] sound/soc/codecs/snd-soc-tfa9879.o
2025-10-02T15:41:48.2132188Z LD [M] sound/soc/codecs/snd-soc-tlv320aic23.o
2025-10-02T15:41:48.2368139Z LD [M] sound/soc/codecs/snd-soc-tlv320aic23-i2c.o
2025-10-02T15:41:48.2547870Z LD [M] sound/soc/codecs/snd-soc-tlv320aic23-spi.o
2025-10-02T15:41:48.2670402Z LD [M] sound/soc/codecs/snd-soc-tlv320aic31xx.o
2025-10-02T15:41:48.2813917Z LD [M] sound/soc/codecs/snd-soc-tlv320aic32x4.o
2025-10-02T15:41:48.2967032Z LD [M] sound/soc/codecs/snd-soc-tlv320aic32x4-i2c.o
2025-10-02T15:41:48.3239356Z LD [M] sound/soc/codecs/snd-soc-tlv320aic32x4-spi.o
2025-10-02T15:41:48.3491668Z LD [M] sound/soc/codecs/snd-soc-tlv320aic3x.o
2025-10-02T15:41:48.3777245Z LD [M] sound/soc/codecs/snd-soc-tlv320adcx140.o
2025-10-02T15:41:48.4103026Z LD [M] sound/soc/codecs/snd-soc-tscs42xx.o
2025-10-02T15:41:48.4128114Z CC net/ipv4/xfrm4_output.o
2025-10-02T15:41:48.4431225Z LD [M] sound/soc/codecs/snd-soc-tscs454.o
2025-10-02T15:41:48.4760417Z LD [M] sound/soc/codecs/snd-soc-ts3a227e.o
2025-10-02T15:41:48.5017918Z LD [M] sound/soc/codecs/snd-soc-uda1334.o
2025-10-02T15:41:48.5268363Z LD [M] sound/soc/codecs/snd-soc-wcd9335.o
2025-10-02T15:41:48.5613805Z LD [M] sound/soc/codecs/snd-soc-wcd934x.o
2025-10-02T15:41:48.5978501Z LD [M] sound/soc/codecs/snd-soc-wm8510.o
2025-10-02T15:41:48.6262404Z LD [M] sound/soc/codecs/snd-soc-wm8523.o
2025-10-02T15:41:48.6531504Z LD [M] sound/soc/codecs/snd-soc-wm8524.o
2025-10-02T15:41:48.6796401Z LD [M] sound/soc/codecs/snd-soc-wm8580.o
2025-10-02T15:41:48.7039210Z LD [M] sound/soc/codecs/snd-soc-wm8711.o
2025-10-02T15:41:48.7380531Z LD [M] sound/soc/codecs/snd-soc-wm8728.o
2025-10-02T15:41:48.7672078Z LD [M] sound/soc/codecs/snd-soc-wm8731.o
2025-10-02T15:41:48.7709868Z CC [M] drivers/char/mwave/smapi.o
2025-10-02T15:41:48.7823438Z LD [M] sound/soc/codecs/snd-soc-wm8737.o
2025-10-02T15:41:48.7960800Z LD [M] sound/soc/codecs/snd-soc-wm8741.o
2025-10-02T15:41:48.8101322Z LD [M] sound/soc/codecs/snd-soc-wm8750.o
2025-10-02T15:41:48.8234097Z LD [M] sound/soc/codecs/snd-soc-wm8753.o
2025-10-02T15:41:48.8373999Z LD [M] sound/soc/codecs/snd-soc-wm8770.o
2025-10-02T15:41:48.8513473Z LD [M] sound/soc/codecs/snd-soc-wm8776.o
2025-10-02T15:41:48.8671476Z LD [M] sound/soc/codecs/snd-soc-wm8782.o
2025-10-02T15:41:48.8778515Z LD [M] sound/soc/codecs/snd-soc-wm8804.o
2025-10-02T15:41:48.8956512Z LD [M] sound/soc/codecs/snd-soc-wm8804-i2c.o
2025-10-02T15:41:48.9153820Z LD [M] sound/soc/codecs/snd-soc-wm8804-spi.o
2025-10-02T15:41:48.9311326Z LD [M] sound/soc/codecs/snd-soc-wm8903.o
2025-10-02T15:41:48.9380293Z CC [M] fs/xfs/scrub/trace.o
2025-10-02T15:41:48.9482107Z LD [M] sound/soc/codecs/snd-soc-wm8904.o
2025-10-02T15:41:48.9633576Z LD [M] sound/soc/codecs/snd-soc-wm8960.o
2025-10-02T15:41:48.9777479Z LD [M] sound/soc/codecs/snd-soc-wm8962.o
2025-10-02T15:41:48.9940078Z LD [M] sound/soc/codecs/snd-soc-wm8974.o
2025-10-02T15:41:49.0080009Z LD [M] sound/soc/codecs/snd-soc-wm8978.o
2025-10-02T15:41:49.0224684Z LD [M] sound/soc/codecs/snd-soc-wm8985.o
2025-10-02T15:41:49.0373025Z LD [M] sound/soc/codecs/snd-soc-wsa881x.o
2025-10-02T15:41:49.0506306Z LD [M] sound/soc/codecs/snd-soc-zl38060.o
2025-10-02T15:41:49.0636648Z LD [M] sound/soc/codecs/snd-soc-zx-aud96p22.o
2025-10-02T15:41:49.0762082Z LD [M] sound/soc/codecs/snd-soc-max98504.o
2025-10-02T15:41:49.0894679Z LD [M] sound/soc/codecs/snd-soc-simple-amplifier.o
2025-10-02T15:41:49.1034389Z LD [M] sound/soc/codecs/snd-soc-tpa6130a2.o
2025-10-02T15:41:49.2768024Z CC [M] net/netfilter/xt_socket.o
2025-10-02T15:41:49.5750718Z CC [M] drivers/char/mwave/tp3780i.o
2025-10-02T15:41:49.7212512Z CC net/ipv4/xfrm4_protocol.o
2025-10-02T15:41:50.2473692Z CC [M] sound/soc/amd/raven/pci-acp3x.o
2025-10-02T15:41:50.3098034Z CC [M] net/netfilter/xt_state.o
2025-10-02T15:41:50.4896543Z CC [M] drivers/char/mwave/3780i.o
2025-10-02T15:41:51.0792330Z CC [M] sound/soc/amd/raven/acp3x-pcm-dma.o
2025-10-02T15:41:51.1456127Z LD [M] drivers/char/mwave/mwave.o
2025-10-02T15:41:51.1664672Z CC net/ipv4/bpf_tcp_ca.o
2025-10-02T15:41:51.2246651Z CC [M] drivers/char/pcmcia/synclink_cs.o
2025-10-02T15:41:51.4050937Z CC [M] net/netfilter/xt_statistic.o
2025-10-02T15:41:52.1687155Z CC [M] sound/soc/amd/raven/acp3x-i2s.o
2025-10-02T15:41:52.2262573Z CC [M] net/netfilter/xt_string.o
2025-10-02T15:41:52.2887757Z CC [M] net/ipv4/ip_tunnel.o
2025-10-02T15:41:52.4020731Z CC [M] fs/xfs/scrub/agheader.o
2025-10-02T15:41:53.0200293Z LD [M] sound/soc/amd/raven/snd-pci-acp3x.o
2025-10-02T15:41:53.0447925Z LD [M] sound/soc/amd/raven/snd-acp3x-pcm-dma.o
2025-10-02T15:41:53.0690954Z LD [M] sound/soc/amd/raven/snd-acp3x-i2s.o
2025-10-02T15:41:53.1708929Z CC [M] sound/soc/amd/renoir/rn-pci-acp3x.o
2025-10-02T15:41:53.2146795Z CC [M] net/netfilter/xt_tcpmss.o
2025-10-02T15:41:53.4931108Z CC [M] fs/xfs/scrub/alloc.o
2025-10-02T15:41:53.7203465Z CC [M] drivers/char/pcmcia/cm4000_cs.o
2025-10-02T15:41:53.8492306Z CC [M] sound/soc/amd/renoir/acp3x-pdm-dma.o
2025-10-02T15:41:54.4853465Z CC [M] net/netfilter/xt_time.o
2025-10-02T15:41:54.5127053Z CC [M] fs/xfs/scrub/attr.o
2025-10-02T15:41:54.6304419Z CC [M] sound/soc/amd/renoir/acp3x-rn.o
2025-10-02T15:41:54.9111339Z CC [M] net/ipv4/ipip.o
2025-10-02T15:41:55.2746211Z LD [M] sound/soc/amd/renoir/snd-rn-pci-acp3x.o
2025-10-02T15:41:55.2879839Z LD [M] sound/soc/amd/renoir/snd-acp3x-pdm-dma.o
2025-10-02T15:41:55.3016371Z LD [M] sound/soc/amd/renoir/snd-acp3x-rn.o
2025-10-02T15:41:55.3413786Z CC [M] sound/soc/amd/acp-pcm-dma.o
2025-10-02T15:41:55.5421137Z CC [M] net/netfilter/xt_u32.o
2025-10-02T15:41:55.5710548Z CC [M] fs/xfs/scrub/bmap.o
2025-10-02T15:41:55.7719903Z CC [M] drivers/char/pcmcia/cm4040_cs.o
2025-10-02T15:41:56.3255053Z CC [M] net/ipv4/fou.o
2025-10-02T15:41:56.4738801Z LD [M] net/netfilter/nf_conntrack.o
2025-10-02T15:41:56.6209106Z LD [M] net/netfilter/nf_conntrack_h323.o
2025-10-02T15:41:56.6374267Z LD [M] net/netfilter/nf_nat.o
2025-10-02T15:41:56.6452370Z CC [M] fs/xfs/scrub/btree.o
2025-10-02T15:41:56.6658392Z LD [M] net/netfilter/nf_tables.o
2025-10-02T15:41:56.6836436Z CC [M] sound/soc/amd/acp-da7219-max98357a.o
2025-10-02T15:41:56.7818450Z LD [M] net/netfilter/nf_flow_table.o
2025-10-02T15:41:56.8032091Z CC [M] drivers/char/pcmcia/scr24x_cs.o
2025-10-02T15:41:56.8221895Z AR net/netfilter/built-in.a
2025-10-02T15:41:57.6376575Z CC [M] sound/soc/amd/acp-rt5645.o
2025-10-02T15:41:57.8211297Z CC [M] drivers/char/tpm/st33zp24/st33zp24.o
2025-10-02T15:41:57.8909178Z CC [M] fs/xfs/scrub/common.o
2025-10-02T15:41:58.0423028Z CC [M] drivers/char/tpm/st33zp24/i2c.o
2025-10-02T15:41:58.1417053Z CC [M] net/ipv4/gre_demux.o
2025-10-02T15:41:58.3054170Z CC [M] sound/soc/amd/acp3x-rt5682-max9836.o
2025-10-02T15:41:58.8863800Z CC [M] drivers/char/tpm/st33zp24/spi.o
2025-10-02T15:41:58.8903769Z CC [M] drivers/char/tpm/tpm-chip.o
2025-10-02T15:41:59.1026126Z CC [M] fs/xfs/scrub/dabtree.o
2025-10-02T15:41:59.4296599Z LD [M] sound/soc/amd/acp_audio_dma.o
2025-10-02T15:41:59.4440185Z LD [M] sound/soc/amd/snd-soc-acp-da7219mx98357-mach.o
2025-10-02T15:41:59.4586681Z LD [M] sound/soc/amd/snd-soc-acp-rt5645-mach.o
2025-10-02T15:41:59.4727770Z LD [M] sound/soc/amd/snd-soc-acp-rt5682-mach.o
2025-10-02T15:41:59.6316179Z LD [M] drivers/char/tpm/st33zp24/tpm_st33zp24.o
2025-10-02T15:41:59.6408442Z CC [M] net/ipv4/ip_gre.o
2025-10-02T15:41:59.6514997Z LD [M] drivers/char/tpm/st33zp24/tpm_st33zp24_i2c.o
2025-10-02T15:41:59.6653344Z LD [M] drivers/char/tpm/st33zp24/tpm_st33zp24_spi.o
2025-10-02T15:41:59.7212960Z CC [M] sound/soc/dwc/dwc-i2s.o
2025-10-02T15:41:59.8290835Z CC [M] drivers/char/tpm/tpm-dev-common.o
2025-10-02T15:41:59.8487968Z AS arch/x86/lib/clear_page_64.o
2025-10-02T15:41:59.9489957Z CC arch/x86/lib/cmdline.o
2025-10-02T15:42:00.2211507Z AS arch/x86/lib/cmpxchg16b_emu.o
2025-10-02T15:42:00.3068358Z CC [M] fs/xfs/scrub/dir.o
2025-10-02T15:42:00.3075570Z CC arch/x86/lib/copy_mc.o
2025-10-02T15:42:00.6154965Z AS arch/x86/lib/copy_mc_64.o
2025-10-02T15:42:00.6303568Z CC [M] drivers/char/tpm/tpm-dev.o
2025-10-02T15:42:00.6851419Z AS arch/x86/lib/copy_page_64.o
2025-10-02T15:42:00.7797106Z AS arch/x86/lib/copy_user_64.o
2025-10-02T15:42:00.8182683Z CC [M] sound/soc/dwc/dwc-pcm.o
2025-10-02T15:42:00.8861195Z CC arch/x86/lib/cpu.o
2025-10-02T15:42:01.2890851Z AS arch/x86/lib/csum-copy_64.o
2025-10-02T15:42:01.3374385Z CC arch/x86/lib/csum-partial_64.o
2025-10-02T15:42:01.5034271Z CC [M] drivers/char/tpm/tpm-interface.o
2025-10-02T15:42:01.6347328Z LD [M] sound/soc/dwc/designware_i2s.o
2025-10-02T15:42:01.6667331Z CC [M] fs/xfs/scrub/fscounters.o
2025-10-02T15:42:01.7134987Z CC arch/x86/lib/csum-wrappers_64.o
2025-10-02T15:42:01.7438990Z CC [M] sound/soc/hisilicon/hi6210-i2s.o
2025-10-02T15:42:01.8179383Z CC [M] net/ipv4/udp_tunnel_core.o
2025-10-02T15:42:02.1935271Z CC arch/x86/lib/delay.o
2025-10-02T15:42:02.5496143Z CC [M] drivers/char/tpm/tpm1-cmd.o
2025-10-02T15:42:02.6525763Z CC arch/x86/lib/error-inject.o
2025-10-02T15:42:02.7020680Z CC [M] sound/soc/img/img-i2s-in.o
2025-10-02T15:42:02.7826982Z CC [M] fs/xfs/scrub/health.o
2025-10-02T15:42:02.8897323Z CC [M] net/ipv4/udp_tunnel_nic.o
2025-10-02T15:42:03.2987483Z AS arch/x86/lib/getuser.o
2025-10-02T15:42:03.4110410Z GEN arch/x86/lib/inat-tables.c
2025-10-02T15:42:03.4817509Z CC arch/x86/lib/insn-eval.o
2025-10-02T15:42:03.4981611Z CC [M] sound/soc/img/img-i2s-out.o
2025-10-02T15:42:03.5597399Z CC [M] fs/xfs/scrub/ialloc.o
2025-10-02T15:42:03.5904933Z CC [M] drivers/char/tpm/tpm2-cmd.o
2025-10-02T15:42:04.3546898Z CC [M] sound/soc/img/img-parallel-out.o
2025-10-02T15:42:04.5927021Z CC arch/x86/lib/insn.o
2025-10-02T15:42:04.6582041Z CC [M] fs/xfs/scrub/inode.o
2025-10-02T15:42:04.7541969Z CC [M] net/ipv4/ip_vti.o
2025-10-02T15:42:04.7543299Z CC [M] drivers/char/tpm/tpmrm-dev.o
2025-10-02T15:42:05.1005984Z CC [M] sound/soc/img/img-spdif-in.o
2025-10-02T15:42:05.1141290Z CC arch/x86/lib/kaslr.o
2025-10-02T15:42:05.4137794Z AS arch/x86/lib/memcpy_64.o
2025-10-02T15:42:05.4871046Z AS arch/x86/lib/memmove_64.o
2025-10-02T15:42:05.5250641Z CC [M] drivers/char/tpm/tpm2-space.o
2025-10-02T15:42:05.5848488Z AS arch/x86/lib/memset_64.o
2025-10-02T15:42:05.6948176Z CC arch/x86/lib/misc.o
2025-10-02T15:42:05.8481200Z AS arch/x86/lib/putuser.o
2025-10-02T15:42:05.8636470Z CC [M] fs/xfs/scrub/parent.o
2025-10-02T15:42:05.9454714Z AS arch/x86/lib/retpoline.o
2025-10-02T15:42:06.0685419Z CC arch/x86/lib/usercopy.o
2025-10-02T15:42:06.1252522Z CC [M] net/ipv4/ah4.o
2025-10-02T15:42:06.1532029Z CC [M] sound/soc/img/img-spdif-out.o
2025-10-02T15:42:06.4182149Z CC [M] drivers/char/tpm/tpm-sysfs.o
2025-10-02T15:42:06.5695758Z CC arch/x86/lib/usercopy_64.o
2025-10-02T15:42:06.9825035Z CC [M] fs/xfs/scrub/refcount.o
2025-10-02T15:42:07.1518143Z CC arch/x86/lib/msr-smp.o
2025-10-02T15:42:07.1998642Z CC [M] drivers/char/tpm/eventlog/common.o
2025-10-02T15:42:07.2768847Z CC [M] sound/soc/img/pistachio-internal-dac.o
2025-10-02T15:42:07.4956174Z CC arch/x86/lib/cache-smp.o
2025-10-02T15:42:07.7787126Z CC [M] net/ipv4/esp4.o
2025-10-02T15:42:07.8234906Z CC arch/x86/lib/msr.o
2025-10-02T15:42:07.8905783Z CC [M] drivers/char/tpm/eventlog/tpm1.o
2025-10-02T15:42:08.0191393Z CC [M] fs/xfs/scrub/rmap.o
2025-10-02T15:42:08.4031300Z CC [M] sound/soc/intel/common/sst-dsp.o
2025-10-02T15:42:08.5974913Z AS arch/x86/lib/msr-reg.o
2025-10-02T15:42:08.6455959Z CC arch/x86/lib/msr-reg-export.o
2025-10-02T15:42:08.7727481Z CC [M] fs/xfs/scrub/scrub.o
2025-10-02T15:42:08.7886388Z AS arch/x86/lib/hweight.o
2025-10-02T15:42:08.8383503Z CC arch/x86/lib/iomem.o
2025-10-02T15:42:09.0651313Z CC [M] drivers/char/tpm/eventlog/tpm2.o
2025-10-02T15:42:09.2039438Z AS arch/x86/lib/iomap_copy_64.o
2025-10-02T15:42:09.2637478Z CC arch/x86/lib/inat.o
2025-10-02T15:42:09.4127559Z AR arch/x86/lib/built-in.a
2025-10-02T15:42:09.4247308Z AR arch/x86/lib/lib.a
2025-10-02T15:42:09.5034805Z CC [M] sound/soc/intel/atom/sst/sst.o
2025-10-02T15:42:09.5903323Z CC [M] sound/soc/intel/common/sst-ipc.o
2025-10-02T15:42:09.6735260Z CC [M] fs/xfs/scrub/symlink.o
2025-10-02T15:42:09.9734100Z CC [M] net/ipv4/esp4_offload.o
2025-10-02T15:42:10.1710639Z CC [M] drivers/char/tpm/tpm_ppi.o
2025-10-02T15:42:10.2307904Z CC [M] sound/soc/intel/common/soc-acpi-intel-byt-match.o
2025-10-02T15:42:10.4564103Z CC [M] sound/soc/intel/atom/sst/sst_ipc.o
2025-10-02T15:42:10.6583171Z CC [M] fs/xfs/scrub/rtbitmap.o
2025-10-02T15:42:10.7529238Z CC [M] sound/soc/intel/common/soc-acpi-intel-cht-match.o
2025-10-02T15:42:10.9396728Z CC [M] drivers/char/tpm/eventlog/acpi.o
2025-10-02T15:42:11.3136832Z CC [M] sound/soc/intel/atom/sst/sst_stream.o
2025-10-02T15:42:11.3621416Z CC [M] sound/soc/intel/common/soc-acpi-intel-hsw-bdw-match.o
2025-10-02T15:42:11.3864909Z CC [M] net/ipv4/ipcomp.o
2025-10-02T15:42:11.6037517Z CC [M] drivers/char/tpm/eventlog/efi.o
2025-10-02T15:42:11.6755524Z CC [M] fs/xfs/scrub/quota.o
2025-10-02T15:42:11.8959861Z CC [M] sound/soc/intel/common/soc-acpi-intel-skl-match.o
2025-10-02T15:42:12.2889294Z CC [M] drivers/char/tpm/tpm_tis_core.o
2025-10-02T15:42:12.3254316Z CC [M] sound/soc/intel/atom/sst/sst_drv_interface.o
2025-10-02T15:42:12.5330549Z CC [M] sound/soc/intel/common/soc-acpi-intel-kbl-match.o
2025-10-02T15:42:12.6318217Z CC [M] net/ipv4/xfrm4_tunnel.o
2025-10-02T15:42:12.6327460Z CC [M] fs/xfs/scrub/agheader_repair.o
2025-10-02T15:42:13.1527077Z CC [M] sound/soc/intel/common/soc-acpi-intel-bxt-match.o
2025-10-02T15:42:13.2500785Z CC [M] sound/soc/intel/atom/sst/sst_loader.o
2025-10-02T15:42:13.5675864Z CC [M] drivers/char/tpm/tpm_tis.o
2025-10-02T15:42:13.6785682Z CC [M] sound/soc/intel/common/soc-acpi-intel-glk-match.o
2025-10-02T15:42:13.9487305Z CC [M] net/ipv4/tunnel4.o
2025-10-02T15:42:13.9948890Z CC [M] fs/xfs/scrub/bitmap.o
2025-10-02T15:42:14.1633911Z CC [M] sound/soc/intel/common/soc-acpi-intel-cnl-match.o
2025-10-02T15:42:14.3036257Z CC [M] sound/soc/intel/atom/sst/sst_pvt.o
2025-10-02T15:42:14.4600009Z CC [M] drivers/char/tpm/tpm_tis_spi_main.o
2025-10-02T15:42:14.7563749Z CC [M] sound/soc/intel/common/soc-acpi-intel-cfl-match.o
2025-10-02T15:42:14.8008238Z CC [M] fs/xfs/scrub/repair.o
2025-10-02T15:42:15.2272078Z CC [M] sound/soc/intel/atom/sst/sst_pci.o
2025-10-02T15:42:15.2839725Z CC [M] sound/soc/intel/common/soc-acpi-intel-cml-match.o
2025-10-02T15:42:15.3693818Z CC [M] drivers/char/tpm/tpm_tis_spi_cr50.o
2025-10-02T15:42:15.3923651Z CC [M] net/ipv4/inet_diag.o
2025-10-02T15:42:15.7655554Z CC [M] sound/soc/intel/common/soc-acpi-intel-icl-match.o
2025-10-02T15:42:16.0559123Z CC [M] sound/soc/intel/atom/sst/sst_acpi.o
2025-10-02T15:42:16.0890172Z LD [M] fs/xfs/xfs.o
2025-10-02T15:42:16.1582991Z CC [M] drivers/char/tpm/tpm_i2c_atmel.o
2025-10-02T15:42:16.5123022Z CC [M] sound/soc/intel/common/soc-acpi-intel-tgl-match.o
2025-10-02T15:42:16.5699163Z CC [M] fs/9p/vfs_super.o
2025-10-02T15:42:16.9734284Z LD [M] sound/soc/intel/atom/sst/snd-intel-sst-core.o
2025-10-02T15:42:16.9983465Z LD [M] sound/soc/intel/atom/sst/snd-intel-sst-pci.o
2025-10-02T15:42:17.0102404Z LD [M] sound/soc/intel/atom/sst/snd-intel-sst-acpi.o
2025-10-02T15:42:17.0486357Z CC [M] sound/soc/intel/atom/sst-mfld-platform-pcm.o
2025-10-02T15:42:17.0494291Z CC [M] sound/soc/intel/common/soc-acpi-intel-ehl-match.o
2025-10-02T15:42:17.0707750Z CC [M] drivers/char/tpm/tpm_i2c_infineon.o
2025-10-02T15:42:17.1984940Z CC [M] net/ipv4/tcp_diag.o
2025-10-02T15:42:17.6451347Z CC [M] fs/9p/vfs_inode.o
2025-10-02T15:42:17.7538231Z CC [M] sound/soc/intel/common/soc-acpi-intel-jsl-match.o
2025-10-02T15:42:17.9048215Z CC [M] drivers/char/tpm/tpm_i2c_nuvoton.o
2025-10-02T15:42:18.1380459Z CC [M] sound/soc/intel/atom/sst-mfld-platform-compress.o
2025-10-02T15:42:18.2655495Z CC [M] sound/soc/intel/common/soc-acpi-intel-hda-match.o
2025-10-02T15:42:18.4493070Z CC [M] net/ipv4/udp_diag.o
2025-10-02T15:42:18.7506087Z CC [M] drivers/char/tpm/tpm_nsc.o
2025-10-02T15:42:19.0088920Z LD [M] sound/soc/intel/common/snd-soc-sst-dsp.o
2025-10-02T15:42:19.0351715Z LD [M] sound/soc/intel/common/snd-soc-sst-ipc.o
2025-10-02T15:42:19.0390576Z CC [M] sound/soc/intel/atom/sst-atom-controls.o
2025-10-02T15:42:19.0551298Z LD [M] sound/soc/intel/common/snd-soc-acpi-intel-match.o
2025-10-02T15:42:19.1730030Z CC [M] fs/afs/cache.o
2025-10-02T15:42:19.2436020Z CC [M] fs/9p/vfs_inode_dotl.o
2025-10-02T15:42:19.6849381Z CC [M] drivers/char/tpm/tpm_atmel.o
2025-10-02T15:42:19.7588025Z CC [M] net/ipv4/raw_diag.o
2025-10-02T15:42:20.3320422Z CC [M] fs/9p/vfs_addr.o
2025-10-02T15:42:20.4414627Z CC [M] fs/afs/addr_list.o
2025-10-02T15:42:20.4527791Z LD [M] sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.o
2025-10-02T15:42:20.5195004Z CC [M] drivers/char/tpm/tpm_infineon.o
2025-10-02T15:42:20.5325623Z CC [M] sound/soc/intel/catpt/device.o
2025-10-02T15:42:20.9905660Z CC [M] net/ipv4/tcp_bbr.o
2025-10-02T15:42:21.4033828Z CC [M] fs/9p/vfs_file.o
2025-10-02T15:42:21.5903501Z CC [M] drivers/char/tpm/xen-tpmfront.o
2025-10-02T15:42:21.6406539Z CC [M] sound/soc/intel/catpt/dsp.o
2025-10-02T15:42:21.7654740Z CC [M] fs/afs/callback.o
2025-10-02T15:42:22.5181878Z CC [M] fs/9p/vfs_dir.o
2025-10-02T15:42:22.6018922Z CC [M] sound/soc/intel/catpt/loader.o
2025-10-02T15:42:22.6532818Z CC [M] drivers/char/tpm/tpm_crb.o
2025-10-02T15:42:22.7765577Z CC [M] net/ipv4/tcp_bic.o
2025-10-02T15:42:23.0040788Z CC [M] fs/afs/cell.o
2025-10-02T15:42:23.4692283Z CC [M] sound/soc/intel/catpt/ipc.o
2025-10-02T15:42:23.5329787Z CC [M] fs/9p/vfs_dentry.o
2025-10-02T15:42:23.7552594Z CC [M] drivers/char/tpm/tpm_vtpm_proxy.o
2025-10-02T15:42:24.2046862Z CC [M] net/ipv4/tcp_cdg.o
2025-10-02T15:42:24.3159989Z CC [M] sound/soc/intel/catpt/messages.o
2025-10-02T15:42:24.4925636Z CC [M] fs/9p/v9fs.o
2025-10-02T15:42:24.6470969Z LD [M] drivers/char/tpm/tpm.o
2025-10-02T15:42:24.7049005Z CC [M] fs/afs/cmservice.o
2025-10-02T15:42:24.7140345Z LD [M] drivers/char/tpm/tpm_tis_spi.o
2025-10-02T15:42:24.8282943Z CC [M] drivers/char/xillybus/xillybus_core.o
2025-10-02T15:42:25.1957088Z CC [M] sound/soc/intel/catpt/pcm.o
2025-10-02T15:42:25.3991258Z CC [M] net/ipv4/tcp_dctcp.o
2025-10-02T15:42:25.5600328Z CC [M] fs/9p/fid.o
2025-10-02T15:42:26.4045318Z CC [M] drivers/char/xillybus/xillybus_pcie.o
2025-10-02T15:42:26.4078773Z CC [M] sound/soc/intel/catpt/sysfs.o
2025-10-02T15:42:26.4302511Z CC [M] fs/9p/xattr.o
2025-10-02T15:42:26.4303948Z CC [M] fs/afs/dir.o
2025-10-02T15:42:26.7653543Z CC [M] net/ipv4/tcp_westwood.o
2025-10-02T15:42:27.0377876Z CC [M] fs/9p/cache.o
2025-10-02T15:42:27.0450206Z LD [M] sound/soc/intel/catpt/snd-soc-catpt.o
2025-10-02T15:42:27.1046448Z CC [M] sound/soc/intel/skylake/skl.o
2025-10-02T15:42:27.1547284Z CC drivers/char/mem.o
2025-10-02T15:42:28.1166547Z CC [M] net/ipv4/tcp_highspeed.o
2025-10-02T15:42:28.1470535Z CC [M] fs/9p/acl.o
2025-10-02T15:42:28.2813679Z CC drivers/char/random.o
2025-10-02T15:42:28.2848402Z CC [M] sound/soc/intel/skylake/skl-pcm.o
2025-10-02T15:42:28.7161035Z CC [M] fs/afs/dir_edit.o
2025-10-02T15:42:29.1301058Z LD [M] fs/9p/9p.o
2025-10-02T15:42:29.2011384Z CC net/xfrm/xfrm_policy.o
2025-10-02T15:42:29.4688704Z CC [M] sound/soc/intel/skylake/skl-nhlt.o
2025-10-02T15:42:29.4943763Z CC [M] net/ipv4/tcp_hybla.o
2025-10-02T15:42:29.7173885Z CC drivers/char/misc.o
2025-10-02T15:42:30.4414458Z CC [M] fs/afs/dir_silly.o
2025-10-02T15:42:30.4843312Z CC drivers/char/hpet.o
2025-10-02T15:42:30.5240737Z CC [M] sound/soc/intel/skylake/skl-messages.o
2025-10-02T15:42:30.7178624Z CC [M] net/ipv4/tcp_htcp.o
2025-10-02T15:42:31.6943613Z CC [M] fs/afs/dynroot.o
2025-10-02T15:42:31.7767153Z CC drivers/char/nvram.o
2025-10-02T15:42:31.8765445Z CC [M] sound/soc/intel/skylake/skl-topology.o
2025-10-02T15:42:31.9825236Z CC [M] net/ipv4/tcp_vegas.o
2025-10-02T15:42:32.6520218Z CC [M] drivers/char/virtio_console.o
2025-10-02T15:42:32.9621429Z CC [M] fs/afs/file.o
2025-10-02T15:42:33.5476497Z CC [M] net/ipv4/tcp_nv.o
2025-10-02T15:42:34.0998801Z CC net/xfrm/xfrm_state.o
2025-10-02T15:42:34.2318984Z CC [M] sound/soc/intel/skylake/skl-sst-ipc.o
2025-10-02T15:42:34.4837347Z CC [M] drivers/char/raw.o
2025-10-02T15:42:34.9108572Z CC [M] fs/afs/flock.o
2025-10-02T15:42:35.1416741Z CC [M] net/ipv4/tcp_veno.o
2025-10-02T15:42:35.1785185Z CC [M] sound/soc/intel/skylake/skl-sst-dsp.o
2025-10-02T15:42:35.4378811Z CC [M] drivers/char/lp.o
2025-10-02T15:42:36.2147807Z CC [M] sound/soc/intel/skylake/cnl-sst-dsp.o
2025-10-02T15:42:36.4148859Z CC [M] net/ipv4/tcp_scalable.o
2025-10-02T15:42:36.5057685Z CC [M] drivers/char/applicom.o
2025-10-02T15:42:36.6779326Z CC [M] fs/afs/fsclient.o
2025-10-02T15:42:36.6960567Z CC [M] sound/soc/intel/skylake/skl-sst-cldma.o
2025-10-02T15:42:37.4128361Z CC [M] drivers/char/ppdev.o
2025-10-02T15:42:37.5812426Z CC [M] sound/soc/intel/skylake/skl-sst.o
2025-10-02T15:42:37.7338982Z CC [M] net/ipv4/tcp_lp.o
2025-10-02T15:42:37.8871151Z CC net/xfrm/xfrm_hash.o
2025-10-02T15:42:38.3297614Z CC [M] drivers/char/tlclk.o
2025-10-02T15:42:38.4546837Z CC net/xfrm/xfrm_input.o
2025-10-02T15:42:38.5537887Z CC [M] sound/soc/intel/skylake/bxt-sst.o
2025-10-02T15:42:38.9115568Z CC [M] fs/afs/fs_operation.o
2025-10-02T15:42:38.9383430Z CC [M] net/ipv4/tcp_yeah.o
2025-10-02T15:42:39.4293094Z CC [M] sound/soc/intel/skylake/cnl-sst.o
2025-10-02T15:42:39.7390219Z CC [M] drivers/char/hangcheck-timer.o
2025-10-02T15:42:40.1593834Z CC [M] fs/afs/fs_probe.o
2025-10-02T15:42:40.2141159Z CC [M] net/ipv4/tcp_illinois.o
2025-10-02T15:42:40.3335959Z CC net/xfrm/xfrm_output.o
2025-10-02T15:42:40.3672528Z CC [M] sound/soc/intel/skylake/skl-sst-utils.o
2025-10-02T15:42:40.3757371Z AR drivers/char/built-in.a
2025-10-02T15:42:40.5228973Z CC drivers/iommu/amd/iommu.o
2025-10-02T15:42:41.3749026Z CC [M] sound/soc/intel/skylake/skl-debug.o
2025-10-02T15:42:41.5751343Z CC [M] fs/afs/inode.o
2025-10-02T15:42:41.7073862Z LD [M] net/ipv4/gre.o
2025-10-02T15:42:41.7358480Z LD [M] net/ipv4/udp_tunnel.o
2025-10-02T15:42:41.7754773Z AR net/ipv4/built-in.a
2025-10-02T15:42:42.0216716Z CC net/xfrm/xfrm_sysctl.o
2025-10-02T15:42:42.1875276Z CC drivers/iommu/intel/dmar.o
2025-10-02T15:42:42.2854616Z CC [M] sound/soc/intel/skylake/skl-ssp-clk.o
2025-10-02T15:42:43.1855546Z CC [M] fs/afs/main.o
2025-10-02T15:42:43.2264410Z LD [M] sound/soc/intel/skylake/snd-soc-skl.o
2025-10-02T15:42:43.3255247Z LD [M] sound/soc/intel/skylake/snd-soc-skl-ssp-clk.o
2025-10-02T15:42:43.3398650Z CC net/xfrm/xfrm_replay.o
2025-10-02T15:42:43.4106414Z CC drivers/iommu/amd/init.o
2025-10-02T15:42:43.4223219Z CC [M] sound/soc/intel/boards/sof_rt5682.o
2025-10-02T15:42:44.0604363Z CC drivers/iommu/intel/iommu.o
2025-10-02T15:42:44.6352024Z CC [M] sound/soc/intel/boards/hda_dsp_common.o
2025-10-02T15:42:44.9341813Z CC net/xfrm/xfrm_device.o
2025-10-02T15:42:45.4698287Z CC [M] sound/soc/intel/boards/sof_maxim_common.o
2025-10-02T15:42:45.7528936Z CC drivers/iommu/amd/quirks.o
2025-10-02T15:42:45.9913152Z CC [M] fs/afs/misc.o
2025-10-02T15:42:46.3516402Z CC [M] sound/soc/intel/boards/haswell.o
2025-10-02T15:42:46.3967555Z CC net/xfrm/xfrm_proc.o
2025-10-02T15:42:46.6054537Z CC drivers/iommu/amd/iommu_v2.o
2025-10-02T15:42:47.0618692Z CC [M] fs/afs/mntpt.o
2025-10-02T15:42:47.1566506Z CC [M] sound/soc/intel/boards/bxt_da7219_max98357a.o
2025-10-02T15:42:47.6255898Z CC net/xfrm/xfrm_algo.o
2025-10-02T15:42:47.8098477Z AR drivers/iommu/amd/built-in.a
2025-10-02T15:42:47.8404622Z CC drivers/iommu/intel/pasid.o
2025-10-02T15:42:48.1731377Z CC [M] sound/soc/intel/boards/bxt_rt298.o
2025-10-02T15:42:48.2331852Z CC [M] fs/afs/rotate.o
2025-10-02T15:42:48.5687431Z CC [M] fs/afs/rxrpc.o
2025-10-02T15:42:48.8727765Z CC net/xfrm/xfrm_user.o
2025-10-02T15:42:48.9630485Z CC [M] sound/soc/intel/boards/sof_pcm512x.o
2025-10-02T15:42:48.9941955Z CC drivers/iommu/intel/trace.o
2025-10-02T15:42:49.8728209Z CC net/xfrm/espintcp.o
2025-10-02T15:42:50.0686696Z CC [M] sound/soc/intel/boards/sof_wm8804.o
2025-10-02T15:42:50.1160768Z CC drivers/iommu/intel/svm.o
2025-10-02T15:42:50.4604648Z CC [M] fs/afs/security.o
2025-10-02T15:42:51.0953113Z CC [M] sound/soc/intel/boards/glk_rt5682_max98357a.o
2025-10-02T15:42:51.4357498Z CC net/unix/af_unix.o
2025-10-02T15:42:51.4377414Z CC drivers/iommu/intel/irq_remapping.o
2025-10-02T15:42:51.7674219Z CC [M] net/xfrm/xfrm_ipcomp.o
2025-10-02T15:42:52.3146247Z CC [M] sound/soc/intel/boards/broadwell.o
2025-10-02T15:42:52.3616236Z CC [M] fs/afs/server.o
2025-10-02T15:42:53.0052694Z CC [M] sound/soc/intel/boards/bdw-rt5650.o
2025-10-02T15:42:53.0448380Z AR drivers/iommu/intel/built-in.a
2025-10-02T15:42:53.1237902Z AR drivers/iommu/arm/arm-smmu/built-in.a
2025-10-02T15:42:53.1477366Z CC [M] net/xfrm/xfrm_interface_core.o
2025-10-02T15:42:53.1880243Z AR drivers/iommu/arm/arm-smmu-v3/built-in.a
2025-10-02T15:42:53.2312046Z AR drivers/iommu/arm/built-in.a
2025-10-02T15:42:53.2823251Z CC drivers/iommu/iommu.o
2025-10-02T15:42:53.8552263Z CC [M] sound/soc/intel/boards/bdw-rt5677.o
2025-10-02T15:42:54.1135698Z CC [M] fs/afs/server_list.o
2025-10-02T15:42:54.2302040Z CC net/unix/garbage.o
2025-10-02T15:42:54.7351168Z CC [M] sound/soc/intel/boards/bytcr_rt5640.o
2025-10-02T15:42:54.9421275Z AR net/xfrm/built-in.a
2025-10-02T15:42:54.9797071Z LD [M] net/xfrm/xfrm_interface.o
2025-10-02T15:42:55.1312707Z AR drivers/gpu/drm/arm/built-in.a
2025-10-02T15:42:55.1928639Z AR drivers/gpu/drm/rcar-du/built-in.a
2025-10-02T15:42:55.2900420Z AR drivers/gpu/drm/omapdrm/dss/built-in.a
2025-10-02T15:42:55.3578439Z CC drivers/iommu/iommu-traces.o
2025-10-02T15:42:55.3581542Z AR drivers/gpu/drm/omapdrm/displays/built-in.a
2025-10-02T15:42:55.3617758Z CC [M] fs/afs/super.o
2025-10-02T15:42:55.3983626Z AR drivers/gpu/drm/omapdrm/built-in.a
2025-10-02T15:42:55.4671504Z AR drivers/gpu/drm/tilcdc/built-in.a
2025-10-02T15:42:55.5152910Z CC net/unix/sysctl_net_unix.o
2025-10-02T15:42:55.5284649Z AR drivers/gpu/drm/imx/built-in.a
2025-10-02T15:42:55.5624251Z AR drivers/gpu/drm/i2c/built-in.a
2025-10-02T15:42:55.5726917Z CC [M] drivers/gpu/drm/i2c/ch7006_drv.o
2025-10-02T15:42:55.6543010Z CC [M] sound/soc/intel/boards/bytcr_rt5651.o
2025-10-02T15:42:56.5369026Z CC [M] drivers/gpu/drm/i2c/ch7006_mode.o
2025-10-02T15:42:56.5753805Z CC drivers/iommu/iommu-sysfs.o
2025-10-02T15:42:56.6670505Z CC net/unix/scm.o
2025-10-02T15:42:56.7310951Z CC [M] sound/soc/intel/boards/cht_bsw_rt5672.o
2025-10-02T15:42:56.8163018Z CC [M] fs/afs/vlclient.o
2025-10-02T15:42:57.2523860Z CC drivers/iommu/dma-iommu.o
2025-10-02T15:42:57.4061234Z CC [M] drivers/gpu/drm/i2c/sil164_drv.o
2025-10-02T15:42:57.6679647Z CC [M] net/unix/diag.o
2025-10-02T15:42:57.8849439Z CC [M] sound/soc/intel/boards/cht_bsw_rt5645.o
2025-10-02T15:42:58.3178733Z CC [M] drivers/gpu/drm/i2c/tda998x_drv.o
2025-10-02T15:42:58.6277042Z CC drivers/iommu/ioasid.o
2025-10-02T15:42:58.6433195Z CC [M] fs/afs/vl_alias.o
2025-10-02T15:42:58.7946638Z AR net/unix/built-in.a
2025-10-02T15:42:58.8184414Z LD [M] net/unix/unix_diag.o
2025-10-02T15:42:58.8508680Z CC [M] sound/soc/intel/boards/cht_bsw_max98090_ti.o
2025-10-02T15:42:58.9271194Z AR net/ipv6/netfilter/built-in.a
2025-10-02T15:42:58.9520082Z CC [M] net/ipv6/netfilter/ip6_tables.o
2025-10-02T15:42:59.2375602Z CC drivers/iommu/iova.o
2025-10-02T15:42:59.8188947Z CC [M] sound/soc/intel/boards/cht_bsw_nau8824.o
2025-10-02T15:42:59.9885195Z CC [M] fs/afs/vl_list.o
2025-10-02T15:43:00.0625566Z CC [M] drivers/gpu/drm/i2c/tda9950.o
2025-10-02T15:43:00.3826527Z CC drivers/iommu/irq_remapping.o
2025-10-02T15:43:00.6276245Z CC [M] sound/soc/intel/boards/bytcht_cx2072x.o
2025-10-02T15:43:01.0327726Z LD [M] drivers/gpu/drm/i2c/ch7006.o
2025-10-02T15:43:01.0650895Z LD [M] drivers/gpu/drm/i2c/sil164.o
2025-10-02T15:43:01.0891466Z LD [M] drivers/gpu/drm/i2c/tda998x.o
2025-10-02T15:43:01.1943518Z AR drivers/gpu/drm/panel/built-in.a
2025-10-02T15:43:01.2048319Z CC [M] drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.o
2025-10-02T15:43:01.2071348Z CC drivers/iommu/hyperv-iommu.o
2025-10-02T15:43:01.3444579Z CC [M] sound/soc/intel/boards/bytcht_da7213.o
2025-10-02T15:43:01.4063106Z CC [M] fs/afs/vl_probe.o
2025-10-02T15:43:01.4274514Z CC [M] net/ipv6/netfilter/ip6table_filter.o
2025-10-02T15:43:02.0326234Z AR drivers/gpu/drm/bridge/analogix/built-in.a
2025-10-02T15:43:02.0555459Z CC [M] drivers/gpu/drm/bridge/analogix/analogix-anx78xx.o
2025-10-02T15:43:02.1110696Z AR drivers/iommu/built-in.a
2025-10-02T15:43:02.1674533Z AR drivers/gpu/drm/hisilicon/built-in.a
2025-10-02T15:43:02.2087932Z CC [M] drivers/gpu/drm/bridge/analogix/analogix_dp_core.o
2025-10-02T15:43:02.2848288Z CC [M] sound/soc/intel/boards/bytcht_es8316.o
2025-10-02T15:43:02.4820181Z CC [M] net/ipv6/netfilter/ip6table_mangle.o
2025-10-02T15:43:02.8311947Z CC [M] fs/afs/vl_rotate.o
2025-10-02T15:43:03.0398211Z CC [M] sound/soc/intel/boards/cml_rt1011_rt5682.o
2025-10-02T15:43:03.5391453Z CC [M] sound/soc/intel/boards/kbl_da7219_max98357a.o
2025-10-02T15:43:03.5788078Z CC [M] net/ipv6/netfilter/ip6table_raw.o
2025-10-02T15:43:03.9449221Z CC [M] drivers/gpu/drm/bridge/analogix/analogix_dp_reg.o
2025-10-02T15:43:04.1883905Z CC drivers/gpu/vga/vgaarb.o
2025-10-02T15:43:04.3044477Z CC [M] fs/afs/volume.o
2025-10-02T15:43:04.4413636Z CC [M] sound/soc/intel/boards/kbl_da7219_max98927.o
2025-10-02T15:43:04.8325400Z CC [M] net/ipv6/netfilter/ip6table_security.o
2025-10-02T15:43:05.1557832Z CC [M] drivers/gpu/drm/bridge/analogix/analogix-i2c-dptx.o
2025-10-02T15:43:05.5873351Z CC drivers/gpu/vga/vga_switcheroo.o
2025-10-02T15:43:05.7383361Z CC [M] sound/soc/intel/boards/kbl_rt5663_max98927.o
2025-10-02T15:43:05.8625778Z CC [M] fs/afs/write.o
2025-10-02T15:43:05.8718078Z LD [M] drivers/gpu/drm/bridge/analogix/analogix_dp.o
2025-10-02T15:43:05.9482531Z AR drivers/gpu/drm/bridge/cadence/built-in.a
2025-10-02T15:43:06.0144827Z AR drivers/gpu/drm/bridge/synopsys/built-in.a
2025-10-02T15:43:06.0356072Z CC [M] net/ipv6/netfilter/ip6table_nat.o
2025-10-02T15:43:06.0498016Z AR drivers/gpu/drm/bridge/built-in.a
2025-10-02T15:43:06.1168474Z AR drivers/gpu/drm/tiny/built-in.a
2025-10-02T15:43:06.1408813Z CC [M] drivers/gpu/drm/tiny/cirrus.o
2025-10-02T15:43:06.6257760Z CC [M] sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.o
2025-10-02T15:43:06.6420805Z AR drivers/gpu/vga/built-in.a
2025-10-02T15:43:06.6678511Z CC [M] drivers/gpu/drm/tiny/gm12u320.o
2025-10-02T15:43:07.2613732Z CC [M] sound/hda/ext/hdac_ext_bus.o
2025-10-02T15:43:07.3078212Z CC [M] net/ipv6/netfilter/nf_defrag_ipv6_hooks.o
2025-10-02T15:43:07.5970865Z CC [M] drivers/gpu/drm/tiny/hx8357d.o
2025-10-02T15:43:07.6978308Z CC [M] sound/soc/intel/boards/kbl_rt5660.o
2025-10-02T15:43:08.0389788Z CC [M] sound/hda/ext/hdac_ext_controller.o
2025-10-02T15:43:08.1154654Z CC [M] fs/afs/xattr.o
2025-10-02T15:43:08.3812080Z CC [M] drivers/gpu/drm/tiny/ili9225.o
2025-10-02T15:43:08.4392405Z CC [M] net/ipv6/netfilter/nf_conntrack_reasm.o
2025-10-02T15:43:08.7284666Z CC [M] sound/hda/ext/hdac_ext_stream.o
2025-10-02T15:43:08.7933101Z CC [M] sound/soc/intel/boards/skl_rt286.o
2025-10-02T15:43:09.2938080Z CC [M] drivers/gpu/drm/tiny/ili9341.o
2025-10-02T15:43:09.4362809Z CC [M] sound/soc/intel/boards/skl_nau88l25_max98357a.o
2025-10-02T15:43:09.6159276Z CC [M] fs/afs/yfsclient.o
2025-10-02T15:43:09.7722038Z LD [M] sound/hda/ext/snd-hda-ext-core.o
2025-10-02T15:43:09.8391027Z CC [M] sound/hda/hda_bus_type.o
2025-10-02T15:43:09.9915261Z CC [M] drivers/gpu/drm/tiny/ili9486.o
2025-10-02T15:43:10.1253254Z CC [M] net/ipv6/netfilter/nf_socket_ipv6.o
2025-10-02T15:43:10.2318573Z CC [M] sound/soc/intel/boards/skl_nau88l25_ssm4567.o
2025-10-02T15:43:10.5674883Z CC [M] sound/hda/hdac_bus.o
2025-10-02T15:43:10.9306608Z CC [M] drivers/gpu/drm/tiny/mi0283qt.o
2025-10-02T15:43:11.1394682Z CC [M] sound/soc/intel/boards/skl_hda_dsp_generic.o
2025-10-02T15:43:11.4283386Z CC [M] sound/hda/hdac_device.o
2025-10-02T15:43:11.6044834Z CC [M] fs/afs/proc.o
2025-10-02T15:43:11.7388915Z CC [M] net/ipv6/netfilter/nf_tproxy_ipv6.o
2025-10-02T15:43:11.9094637Z CC [M] drivers/gpu/drm/tiny/repaper.o
2025-10-02T15:43:12.0126079Z CC [M] sound/soc/intel/boards/skl_hda_dsp_common.o
2025-10-02T15:43:12.6172337Z CC [M] sound/hda/hdac_sysfs.o
2025-10-02T15:43:12.8744532Z CC [M] sound/soc/intel/boards/sof_da7219_max98373.o
2025-10-02T15:43:13.0536773Z LD [M] fs/afs/kafs.o
2025-10-02T15:43:13.1735331Z CC [M] net/ipv6/netfilter/nf_log_ipv6.o
2025-10-02T15:43:13.2867462Z CC [M] fs/nilfs2/inode.o
2025-10-02T15:43:13.4621363Z CC [M] drivers/gpu/drm/tiny/st7586.o
2025-10-02T15:43:13.5422133Z CC [M] sound/hda/hdac_regmap.o
2025-10-02T15:43:14.0301472Z CC [M] sound/soc/intel/boards/ehl_rt5660.o
2025-10-02T15:43:14.4308005Z CC [M] sound/hda/hdac_controller.o
2025-10-02T15:43:14.4979812Z CC [M] drivers/gpu/drm/tiny/st7735r.o
2025-10-02T15:43:14.5777769Z CC [M] net/ipv6/netfilter/nf_reject_ipv6.o
2025-10-02T15:43:14.7894305Z CC [M] sound/soc/intel/boards/sof_sdw.o
2025-10-02T15:43:14.7952695Z CC [M] fs/nilfs2/file.o
2025-10-02T15:43:15.3830232Z CC [M] sound/hda/hdac_stream.o
2025-10-02T15:43:15.4481549Z AR drivers/gpu/drm/xen/built-in.a
2025-10-02T15:43:15.4594280Z CC [M] drivers/gpu/drm/xen/xen_drm_front.o
2025-10-02T15:43:15.7695325Z CC [M] fs/nilfs2/dir.o
2025-10-02T15:43:15.8961128Z CC [M] net/ipv6/netfilter/nf_dup_ipv6.o
2025-10-02T15:43:16.3126819Z CC [M] sound/soc/intel/boards/sof_sdw_max98373.o
2025-10-02T15:43:16.3380900Z CC [M] sound/hda/array.o
2025-10-02T15:43:16.6611354Z CC [M] drivers/gpu/drm/xen/xen_drm_front_kms.o
2025-10-02T15:43:16.9472682Z CC [M] sound/soc/intel/boards/sof_sdw_rt1308.o
2025-10-02T15:43:17.0509209Z CC [M] sound/hda/hdmi_chmap.o
2025-10-02T15:43:17.1112192Z CC [M] fs/nilfs2/super.o
2025-10-02T15:43:17.1867471Z CC [M] net/ipv6/netfilter/nft_reject_ipv6.o
2025-10-02T15:43:17.7615812Z CC [M] drivers/gpu/drm/xen/xen_drm_front_conn.o
2025-10-02T15:43:17.9302317Z CC [M] sound/soc/intel/boards/sof_sdw_rt1316.o
2025-10-02T15:43:18.1118248Z CC [M] sound/hda/trace.o
2025-10-02T15:43:18.2898675Z CC [M] net/ipv6/netfilter/nft_dup_ipv6.o
2025-10-02T15:43:18.3376457Z CC [M] fs/nilfs2/namei.o
2025-10-02T15:43:18.6175080Z CC [M] drivers/gpu/drm/xen/xen_drm_front_evtchnl.o
2025-10-02T15:43:18.7259241Z CC [M] sound/soc/intel/boards/sof_sdw_rt5682.o
2025-10-02T15:43:19.0991945Z CC [M] sound/hda/hdac_component.o
2025-10-02T15:43:19.2443125Z CC [M] net/ipv6/netfilter/nft_fib_ipv6.o
2025-10-02T15:43:19.3338048Z CC [M] fs/nilfs2/page.o
2025-10-02T15:43:19.6185140Z CC [M] sound/soc/intel/boards/sof_sdw_rt700.o
2025-10-02T15:43:19.8385642Z CC [M] drivers/gpu/drm/xen/xen_drm_front_cfg.o
2025-10-02T15:43:19.8472975Z CC [M] sound/hda/hdac_i915.o
2025-10-02T15:43:20.4311311Z CC [M] fs/nilfs2/mdt.o
2025-10-02T15:43:20.4807999Z CC [M] sound/soc/intel/boards/sof_sdw_rt711.o
2025-10-02T15:43:20.5317538Z CC [M] sound/hda/intel-dsp-config.o
2025-10-02T15:43:20.6960410Z CC [M] net/ipv6/netfilter/nf_flow_table_ipv6.o
2025-10-02T15:43:20.7554591Z CC [M] drivers/gpu/drm/xen/xen_drm_front_gem.o
2025-10-02T15:43:21.2012371Z CC [M] sound/soc/intel/boards/sof_sdw_rt711_sdca.o
2025-10-02T15:43:21.4467631Z CC [M] sound/hda/intel-nhlt.o
2025-10-02T15:43:21.5944591Z CC [M] net/ipv6/netfilter/ip6t_ah.o
2025-10-02T15:43:21.6896194Z CC [M] fs/nilfs2/btnode.o
2025-10-02T15:43:21.8364345Z LD [M] drivers/gpu/drm/xen/drm_xen_front.o
2025-10-02T15:43:21.9010177Z LD [M] sound/hda/snd-hda-core.o
2025-10-02T15:43:21.9226229Z AR drivers/gpu/drm/xlnx/built-in.a
2025-10-02T15:43:21.9392879Z CC [M] sound/soc/intel/boards/sof_sdw_rt715.o
2025-10-02T15:43:21.9405360Z LD [M] sound/hda/snd-intel-dspcfg.o
2025-10-02T15:43:21.9624666Z CC [M] drivers/gpu/drm/ttm/ttm_memory.o
2025-10-02T15:43:22.0404551Z CC net/packet/af_packet.o
2025-10-02T15:43:22.6811899Z CC [M] sound/soc/intel/boards/sof_sdw_rt715_sdca.o
2025-10-02T15:43:22.6970308Z CC [M] fs/nilfs2/bmap.o
2025-10-02T15:43:22.8027885Z CC [M] net/ipv6/netfilter/ip6t_eui64.o
2025-10-02T15:43:22.9868565Z CC [M] drivers/gpu/drm/ttm/ttm_tt.o
2025-10-02T15:43:23.3168653Z CC [M] sound/soc/intel/boards/sof_sdw_dmic.o
2025-10-02T15:43:23.6577257Z CC [M] fs/nilfs2/btree.o
2025-10-02T15:43:24.0196485Z CC [M] sound/soc/intel/boards/sof_sdw_hdmi.o
2025-10-02T15:43:24.1461373Z CC [M] drivers/gpu/drm/ttm/ttm_bo.o
2025-10-02T15:43:24.3658126Z CC [M] net/ipv6/netfilter/ip6t_frag.o
2025-10-02T15:43:24.6885723Z LD [M] sound/soc/intel/boards/snd-soc-sof_rt5682.o
2025-10-02T15:43:24.7057657Z LD [M] sound/soc/intel/boards/snd-soc-sst-haswell.o
2025-10-02T15:43:24.7188296Z LD [M] sound/soc/intel/boards/snd-soc-sst-bxt-da7219_max98357a.o
2025-10-02T15:43:24.7357934Z LD [M] sound/soc/intel/boards/snd-soc-sst-bxt-rt298.o
2025-10-02T15:43:24.7515778Z LD [M] sound/soc/intel/boards/snd-soc-sst-sof-pcm512x.o
2025-10-02T15:43:24.7671287Z LD [M] sound/soc/intel/boards/snd-soc-sst-sof-wm8804.o
2025-10-02T15:43:24.7810193Z LD [M] sound/soc/intel/boards/snd-soc-sst-glk-rt5682_max98357a.o
2025-10-02T15:43:24.7974871Z LD [M] sound/soc/intel/boards/snd-soc-sst-broadwell.o
2025-10-02T15:43:24.8110386Z LD [M] sound/soc/intel/boards/snd-soc-sst-bdw-rt5650-mach.o
2025-10-02T15:43:24.8237841Z LD [M] sound/soc/intel/boards/snd-soc-sst-bdw-rt5677-mach.o
2025-10-02T15:43:24.8373008Z LD [M] sound/soc/intel/boards/snd-soc-sst-bytcr-rt5640.o
2025-10-02T15:43:24.8514120Z LD [M] sound/soc/intel/boards/snd-soc-sst-bytcr-rt5651.o
2025-10-02T15:43:24.8654242Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5672.o
2025-10-02T15:43:24.8790830Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5645.o
2025-10-02T15:43:24.8926388Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-max98090_ti.o
2025-10-02T15:43:24.9066176Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-nau8824.o
2025-10-02T15:43:24.9206769Z LD [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-cx2072x.o
2025-10-02T15:43:24.9342427Z LD [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-da7213.o
2025-10-02T15:43:24.9486505Z LD [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-es8316.o
2025-10-02T15:43:24.9628291Z LD [M] sound/soc/intel/boards/snd-soc-cml_rt1011_rt5682.o
2025-10-02T15:43:24.9780732Z LD [M] sound/soc/intel/boards/snd-soc-kbl_da7219_max98357a.o
2025-10-02T15:43:24.9924254Z LD [M] sound/soc/intel/boards/snd-soc-kbl_da7219_max98927.o
2025-10-02T15:43:25.0063458Z LD [M] sound/soc/intel/boards/snd-soc-kbl_rt5663_max98927.o
2025-10-02T15:43:25.0198517Z LD [M] sound/soc/intel/boards/snd-soc-kbl_rt5663_rt5514_max98927.o
2025-10-02T15:43:25.0341889Z LD [M] sound/soc/intel/boards/snd-soc-kbl_rt5660.o
2025-10-02T15:43:25.0472061Z LD [M] sound/soc/intel/boards/snd-soc-skl_rt286.o
2025-10-02T15:43:25.0610383Z LD [M] sound/soc/intel/boards/snd-skl_nau88l25_max98357a.o
2025-10-02T15:43:25.0736874Z LD [M] sound/soc/intel/boards/snd-soc-skl_nau88l25_ssm4567.o
2025-10-02T15:43:25.0867104Z LD [M] sound/soc/intel/boards/snd-soc-skl_hda_dsp.o
2025-10-02T15:43:25.1033403Z LD [M] sound/soc/intel/boards/snd-soc-sof_da7219_max98373.o
2025-10-02T15:43:25.1185203Z LD [M] sound/soc/intel/boards/snd-soc-ehl-rt5660.o
2025-10-02T15:43:25.1327478Z LD [M] sound/soc/intel/boards/snd-soc-sof-sdw.o
2025-10-02T15:43:25.4575092Z CC [M] drivers/gpu/drm/ttm/ttm_bo_util.o
2025-10-02T15:43:25.7133672Z CC [M] sound/soc/sof/intel/byt.o
2025-10-02T15:43:25.8372438Z CC [M] fs/nilfs2/direct.o
2025-10-02T15:43:25.9906614Z CC [M] net/packet/diag.o
2025-10-02T15:43:26.2244741Z CC [M] net/ipv6/netfilter/ip6t_ipv6header.o
2025-10-02T15:43:26.3954361Z CC [M] drivers/gpu/drm/ttm/ttm_bo_vm.o
2025-10-02T15:43:26.6161447Z CC [M] fs/nilfs2/dat.o
2025-10-02T15:43:26.9863133Z CC [M] sound/soc/sof/intel/intel-ipc.o
2025-10-02T15:43:27.1669133Z AR net/packet/built-in.a
2025-10-02T15:43:27.1871260Z LD [M] net/packet/af_packet_diag.o
2025-10-02T15:43:27.2674447Z CC [M] drivers/gpu/drm/scheduler/sched_main.o
2025-10-02T15:43:27.3464540Z CC [M] drivers/gpu/drm/ttm/ttm_module.o
2025-10-02T15:43:27.5340844Z CC [M] net/ipv6/netfilter/ip6t_mh.o
2025-10-02T15:43:27.5674458Z CC [M] fs/nilfs2/recovery.o
2025-10-02T15:43:27.8666996Z CC [M] sound/soc/sof/intel/hda.o
2025-10-02T15:43:27.9173963Z CC [M] drivers/gpu/drm/ttm/ttm_execbuf_util.o
2025-10-02T15:43:28.6852111Z CC [M] drivers/gpu/drm/scheduler/sched_fence.o
2025-10-02T15:43:28.7034284Z CC [M] net/ipv6/netfilter/ip6t_hbh.o
2025-10-02T15:43:28.7582854Z CC [M] fs/nilfs2/the_nilfs.o
2025-10-02T15:43:28.7702690Z CC [M] drivers/gpu/drm/ttm/ttm_page_alloc.o
2025-10-02T15:43:29.1955811Z CC [M] sound/soc/sof/intel/hda-loader.o
2025-10-02T15:43:29.2136211Z CC [M] drivers/gpu/drm/scheduler/sched_entity.o
2025-10-02T15:43:29.8502754Z CC [M] fs/nilfs2/segbuf.o
2025-10-02T15:43:30.0170012Z CC [M] net/ipv6/netfilter/ip6t_rpfilter.o
2025-10-02T15:43:30.1324202Z LD [M] drivers/gpu/drm/scheduler/gpu-sched.o
2025-10-02T15:43:30.1946470Z CC [M] sound/soc/sof/intel/hda-stream.o
2025-10-02T15:43:30.3346181Z CC [M] drivers/gpu/drm/ttm/ttm_range_manager.o
2025-10-02T15:43:30.3747461Z LDS scripts/module.lds
2025-10-02T15:43:30.4301702Z CC [M] net/ipv6/netfilter/ip6t_rt.o
2025-10-02T15:43:30.8089991Z CC [M] fs/nilfs2/segment.o
2025-10-02T15:43:31.0741171Z CC [M] drivers/gpu/drm/ttm/ttm_resource.o
2025-10-02T15:43:31.2466563Z CC [M] drivers/gpu/drm/ttm/ttm_page_alloc_dma.o
2025-10-02T15:43:31.4942437Z CC [M] sound/soc/sof/intel/hda-trace.o
2025-10-02T15:43:31.7149957Z CC [M] net/ipv6/netfilter/ip6t_srh.o
2025-10-02T15:43:31.9193579Z CC [M] sound/soc/sof/intel/hda-dsp.o
2025-10-02T15:43:32.3271285Z CC [M] sound/soc/sof/xtensa/core.o
2025-10-02T15:43:32.8951676Z CC [M] drivers/gpu/drm/ttm/ttm_agp_backend.o
2025-10-02T15:43:32.9991694Z CC [M] net/ipv6/netfilter/ip6t_NPT.o
2025-10-02T15:43:33.1366597Z LD [M] sound/soc/sof/xtensa/snd-sof-xtensa-dsp.o
2025-10-02T15:43:33.2271311Z CC [M] net/ipv6/ila/ila_main.o
2025-10-02T15:43:33.3425393Z CC [M] sound/soc/sof/intel/hda-ipc.o
2025-10-02T15:43:33.5931426Z LD [M] drivers/gpu/drm/ttm/ttm.o
2025-10-02T15:43:33.7316214Z CC [M] drivers/gpu/drm/radeon/radeon_drv.o
2025-10-02T15:43:33.8470752Z CC [M] fs/nilfs2/cpfile.o
2025-10-02T15:43:34.2788976Z CC [M] net/ipv6/netfilter/ip6t_REJECT.o
2025-10-02T15:43:34.3492783Z CC [M] sound/soc/sof/intel/hda-ctrl.o
2025-10-02T15:43:34.4660689Z CC [M] net/ipv6/ila/ila_common.o
2025-10-02T15:43:34.6893506Z CC [M] drivers/gpu/drm/radeon/radeon_device.o
2025-10-02T15:43:35.2709416Z CC [M] sound/soc/sof/intel/hda-pcm.o
2025-10-02T15:43:35.3360861Z CC [M] fs/nilfs2/sufile.o
2025-10-02T15:43:35.5765268Z CC [M] net/ipv6/netfilter/ip6t_SYNPROXY.o
2025-10-02T15:43:35.9410260Z CC [M] net/ipv6/ila/ila_lwt.o
2025-10-02T15:43:36.1638378Z CC [M] sound/soc/sof/intel/hda-dai.o
2025-10-02T15:43:36.2207122Z CC [M] drivers/gpu/drm/radeon/radeon_asic.o
2025-10-02T15:43:36.8688304Z LD [M] net/ipv6/netfilter/nf_defrag_ipv6.o
2025-10-02T15:43:36.9126911Z CC [M] fs/nilfs2/ifile.o
2025-10-02T15:43:37.1307765Z CC [M] sound/soc/sof/intel/hda-bus.o
2025-10-02T15:43:37.1612531Z CC net/strparser/strparser.o
2025-10-02T15:43:37.2411674Z CC [M] net/ipv6/ila/ila_xlat.o
2025-10-02T15:43:37.2508966Z CC [M] drivers/gpu/drm/radeon/radeon_kms.o
2025-10-02T15:43:37.8676775Z CC [M] fs/nilfs2/alloc.o
2025-10-02T15:43:37.9461904Z CC [M] sound/soc/sof/intel/apl.o
2025-10-02T15:43:38.4023989Z CC [M] drivers/gpu/drm/radeon/radeon_atombios.o
2025-10-02T15:43:38.5157686Z AR net/strparser/built-in.a
2025-10-02T15:43:38.5395115Z CC [M] drivers/gpu/drm/radeon/radeon_agp.o
2025-10-02T15:43:38.7585141Z CC [M] sound/soc/sof/intel/cnl.o
2025-10-02T15:43:39.0524749Z LD [M] net/ipv6/ila/ila.o
2025-10-02T15:43:39.1022429Z CC net/ipv6/af_inet6.o
2025-10-02T15:43:39.1659092Z CC [M] fs/nilfs2/gcinode.o
2025-10-02T15:43:39.5439297Z CC drivers/connector/cn_queue.o
2025-10-02T15:43:39.7403360Z CC [M] sound/soc/sof/intel/tgl.o
2025-10-02T15:43:39.9225152Z CC [M] fs/nilfs2/ioctl.o
2025-10-02T15:43:40.6252704Z CC [M] sound/soc/sof/intel/hda-codec.o
2025-10-02T15:43:40.8681457Z CC drivers/connector/connector.o
2025-10-02T15:43:40.9510470Z CC net/ipv6/anycast.o
2025-10-02T15:43:41.0586552Z CC [M] fs/nilfs2/sysfs.o
2025-10-02T15:43:41.6477128Z CC [M] drivers/gpu/drm/radeon/atombios_crtc.o
2025-10-02T15:43:41.6485924Z LD [M] sound/soc/sof/intel/snd-sof-intel-byt.o
2025-10-02T15:43:41.6760459Z LD [M] sound/soc/sof/intel/snd-sof-intel-ipc.o
2025-10-02T15:43:41.7042679Z LD [M] sound/soc/sof/intel/snd-sof-intel-hda-common.o
2025-10-02T15:43:41.7880710Z LD [M] sound/soc/sof/intel/snd-sof-intel-hda.o
2025-10-02T15:43:41.8763023Z CC [M] sound/soc/sof/core.o
2025-10-02T15:43:42.0231009Z CC drivers/connector/cn_proc.o
2025-10-02T15:43:42.1885493Z LD [M] fs/nilfs2/nilfs2.o
2025-10-02T15:43:42.3899887Z CC net/ipv6/ip6_output.o
2025-10-02T15:43:42.3911725Z CC [M] fs/befs/datastream.o
2025-10-02T15:43:42.7658739Z CC [M] sound/soc/sof/ops.o
2025-10-02T15:43:43.1672444Z AR drivers/connector/built-in.a
2025-10-02T15:43:43.1896535Z CC [M] sound/soc/sof/loader.o
2025-10-02T15:43:43.2181226Z CC [M] fs/befs/btree.o
2025-10-02T15:43:43.7065986Z CC [M] drivers/gpu/drm/radeon/radeon_combios.o
2025-10-02T15:43:43.7103024Z CC [M] fs/befs/super.o
2025-10-02T15:43:43.9629135Z CC [M] sound/soc/sof/ipc.o
2025-10-02T15:43:44.1505782Z CC [M] fs/befs/inode.o
2025-10-02T15:43:44.5776829Z CC [M] fs/befs/debug.o
2025-10-02T15:43:44.6795870Z CC [M] fs/befs/io.o
2025-10-02T15:43:45.0927593Z CC net/ipv6/ip6_input.o
2025-10-02T15:43:45.1200691Z CC [M] sound/soc/sof/pcm.o
2025-10-02T15:43:45.3468152Z CC [M] fs/befs/linuxvfs.o
2025-10-02T15:43:45.6715063Z CC net/8021q/vlan_core.o
2025-10-02T15:43:46.3028058Z CC [M] sound/soc/sof/pm.o
2025-10-02T15:43:46.3572492Z CC [M] drivers/gpu/drm/radeon/atom.o
2025-10-02T15:43:46.6842118Z LD [M] fs/befs/befs.o
2025-10-02T15:43:46.7811770Z CC [M] fs/cachefiles/bind.o
2025-10-02T15:43:46.9129758Z CC net/ipv6/addrconf.o
2025-10-02T15:43:47.0047398Z CC [M] net/8021q/vlan.o
2025-10-02T15:43:47.1594294Z CC [M] sound/soc/sof/debug.o
2025-10-02T15:43:47.5236976Z CC [M] fs/cachefiles/daemon.o
2025-10-02T15:43:48.0078890Z CC [M] sound/soc/sof/topology.o
2025-10-02T15:43:48.5132660Z CC [M] drivers/gpu/drm/radeon/radeon_fence.o
2025-10-02T15:43:48.5638196Z CC [M] fs/cachefiles/interface.o
2025-10-02T15:43:48.5670411Z CC [M] net/8021q/vlan_dev.o
2025-10-02T15:43:49.5788402Z CC [M] fs/cachefiles/key.o
2025-10-02T15:43:49.9250360Z CC [M] net/8021q/vlan_netlink.o
2025-10-02T15:43:49.9464927Z CC [M] drivers/gpu/drm/radeon/radeon_ttm.o
2025-10-02T15:43:50.2806496Z CC [M] sound/soc/sof/control.o
2025-10-02T15:43:50.3133759Z CC [M] fs/cachefiles/main.o
2025-10-02T15:43:50.9921148Z CC [M] net/8021q/vlan_gvrp.o
2025-10-02T15:43:51.2925052Z CC [M] sound/soc/sof/trace.o
2025-10-02T15:43:51.5422777Z CC [M] drivers/gpu/drm/radeon/radeon_object.o
2025-10-02T15:43:51.6040808Z CC [M] fs/cachefiles/namei.o
2025-10-02T15:43:51.9319865Z CC [M] net/8021q/vlan_mvrp.o
2025-10-02T15:43:51.9697818Z CC net/ipv6/addrlabel.o
2025-10-02T15:43:52.1043660Z CC [M] sound/soc/sof/utils.o
2025-10-02T15:43:52.8281708Z CC [M] net/8021q/vlanproc.o
2025-10-02T15:43:52.8844164Z CC [M] fs/cachefiles/rdwr.o
2025-10-02T15:43:52.9152497Z CC [M] drivers/gpu/drm/radeon/radeon_gart.o
2025-10-02T15:43:53.0891167Z CC [M] sound/soc/sof/sof-audio.o
2025-10-02T15:43:53.3263483Z CC net/ipv6/route.o
2025-10-02T15:43:53.9070288Z AR net/8021q/built-in.a
2025-10-02T15:43:53.9282869Z LD [M] net/8021q/8021q.o
2025-10-02T15:43:53.9318519Z CC [M] drivers/gpu/drm/radeon/radeon_legacy_crtc.o
2025-10-02T15:43:53.9792080Z CC [M] fs/cachefiles/security.o
2025-10-02T15:43:54.1496398Z CC [M] sound/soc/sof/sof-acpi-dev.o
2025-10-02T15:43:54.4784174Z CC drivers/base/power/sysfs.o
2025-10-02T15:43:54.7088839Z CC [M] fs/cachefiles/xattr.o
2025-10-02T15:43:55.0430025Z CC [M] sound/soc/sof/sof-pci-dev.o
2025-10-02T15:43:55.1339200Z CC [M] drivers/gpu/drm/radeon/radeon_legacy_encoders.o
2025-10-02T15:43:55.2914852Z CC drivers/base/power/generic_ops.o
2025-10-02T15:43:55.4953433Z LD [M] fs/cachefiles/cachefiles.o
2025-10-02T15:43:55.5733609Z CC [M] fs/ocfs2/dlmfs/userdlm.o
2025-10-02T15:43:55.9457588Z CC drivers/base/power/common.o
2025-10-02T15:43:56.2036811Z LD [M] sound/soc/sof/snd-sof.o
2025-10-02T15:43:56.2446955Z LD [M] sound/soc/sof/snd-sof-acpi.o
2025-10-02T15:43:56.2573997Z LD [M] sound/soc/sof/snd-sof-pci.o
2025-10-02T15:43:56.3255084Z CC [M] fs/ocfs2/dlmfs/dlmfs.o
2025-10-02T15:43:56.5656125Z CC drivers/base/power/qos.o
2025-10-02T15:43:56.7442595Z CC [M] drivers/gpu/drm/radeon/radeon_connectors.o
2025-10-02T15:43:56.8030994Z CC [M] sound/soc/xilinx/xlnx_i2s.o
2025-10-02T15:43:57.2168904Z LD [M] fs/ocfs2/dlmfs/ocfs2_dlmfs.o
2025-10-02T15:43:57.3062334Z CC [M] fs/ocfs2/cluster/heartbeat.o
2025-10-02T15:43:57.4423599Z CC [M] sound/soc/xilinx/xlnx_formatter_pcm.o
2025-10-02T15:43:57.8612203Z CC drivers/base/power/runtime.o
2025-10-02T15:43:58.3325075Z CC net/ipv6/ip6_fib.o
2025-10-02T15:43:58.4655797Z CC [M] sound/soc/xilinx/xlnx_spdif.o
2025-10-02T15:43:58.9420020Z CC [M] drivers/gpu/drm/radeon/radeon_encoders.o
2025-10-02T15:43:59.1679105Z CC drivers/base/power/wakeirq.o
2025-10-02T15:43:59.2575473Z LD [M] sound/soc/xilinx/snd-soc-xlnx-i2s.o
2025-10-02T15:43:59.2827145Z LD [M] sound/soc/xilinx/snd-soc-xlnx-formatter-pcm.o
2025-10-02T15:43:59.3067180Z LD [M] sound/soc/xilinx/snd-soc-xlnx-spdif.o
2025-10-02T15:43:59.4123077Z CC [M] sound/soc/xtensa/xtfpga-i2s.o
2025-10-02T15:43:59.6904728Z CC [M] fs/ocfs2/cluster/masklog.o
2025-10-02T15:43:59.8576259Z CC drivers/base/power/main.o
2025-10-02T15:44:00.0402024Z CC [M] drivers/gpu/drm/radeon/radeon_display.o
2025-10-02T15:44:00.1670431Z CC [M] fs/ocfs2/cluster/sys.o
2025-10-02T15:44:00.5603378Z LD [M] sound/soc/xtensa/snd-soc-xtfpga-i2s.o
2025-10-02T15:44:00.6055635Z CC [M] sound/soc/zte/zx-tdm.o
2025-10-02T15:44:00.7192969Z CC [M] fs/ocfs2/cluster/nodemanager.o
2025-10-02T15:44:00.8780564Z CC net/ipv6/ipv6_sockglue.o
2025-10-02T15:44:01.3656474Z CC [M] sound/soc/soc-acpi.o
2025-10-02T15:44:01.8451925Z CC drivers/base/power/wakeup.o
2025-10-02T15:44:02.0125703Z CC [M] sound/soc/soc-core.o
2025-10-02T15:44:02.2111219Z CC [M] drivers/gpu/drm/radeon/radeon_cursor.o
2025-10-02T15:44:02.2154340Z CC [M] fs/ocfs2/cluster/quorum.o
2025-10-02T15:44:02.7076454Z CC [M] fs/ocfs2/cluster/tcp.o
2025-10-02T15:44:02.9114780Z CC net/ipv6/ndisc.o
2025-10-02T15:44:03.3304815Z CC [M] drivers/gpu/drm/radeon/radeon_i2c.o
2025-10-02T15:44:03.6939350Z CC drivers/base/power/wakeup_stats.o
2025-10-02T15:44:04.2517729Z CC drivers/base/power/trace.o
2025-10-02T15:44:04.8642544Z CC [M] sound/soc/soc-dapm.o
2025-10-02T15:44:05.0467904Z CC [M] fs/ocfs2/cluster/netdebug.o
2025-10-02T15:44:05.0575478Z CC [M] drivers/gpu/drm/radeon/radeon_clocks.o
2025-10-02T15:44:05.2102543Z CC drivers/base/power/domain.o
2025-10-02T15:44:05.3306751Z CC net/ipv6/udp.o
2025-10-02T15:44:06.1572190Z CC [M] drivers/gpu/drm/radeon/radeon_fb.o
2025-10-02T15:44:06.2953327Z LD [M] fs/ocfs2/cluster/ocfs2_nodemanager.o
2025-10-02T15:44:06.4189164Z CC [M] fs/ocfs2/dlm/dlmdomain.o
2025-10-02T15:44:07.1744341Z CC drivers/base/power/domain_governor.o
2025-10-02T15:44:07.2382635Z CC [M] drivers/gpu/drm/radeon/radeon_gem.o
2025-10-02T15:44:07.7515811Z CC drivers/base/power/clock_ops.o
2025-10-02T15:44:08.3054725Z CC net/ipv6/udplite.o
2025-10-02T15:44:08.3397023Z AR drivers/base/power/built-in.a
2025-10-02T15:44:08.3917326Z AR drivers/base/firmware_loader/builtin/built-in.a
2025-10-02T15:44:08.4168175Z CC drivers/base/firmware_loader/main.o
2025-10-02T15:44:08.4465765Z CC [M] sound/soc/soc-jack.o
2025-10-02T15:44:08.6548054Z CC [M] drivers/gpu/drm/radeon/radeon_ring.o
2025-10-02T15:44:08.8665785Z CC [M] fs/ocfs2/dlm/dlmdebug.o
2025-10-02T15:44:09.4046826Z CC [M] sound/soc/soc-utils.o
2025-10-02T15:44:09.5700813Z CC net/ipv6/raw.o
2025-10-02T15:44:09.7116120Z CC drivers/base/firmware_loader/fallback_platform.o
2025-10-02T15:44:09.8731903Z CC [M] drivers/gpu/drm/radeon/radeon_irq_kms.o
2025-10-02T15:44:10.1508543Z CC [M] sound/soc/soc-dai.o
2025-10-02T15:44:10.5372691Z AR drivers/base/firmware_loader/built-in.a
2025-10-02T15:44:10.5957088Z CC drivers/base/regmap/regmap.o
2025-10-02T15:44:10.5968646Z CC [M] fs/ocfs2/dlm/dlmthread.o
2025-10-02T15:44:10.7560760Z CC [M] drivers/gpu/drm/radeon/radeon_cs.o
2025-10-02T15:44:11.2696505Z CC [M] sound/soc/soc-component.o
2025-10-02T15:44:11.6441111Z CC net/ipv6/icmp.o
2025-10-02T15:44:11.9765830Z CC [M] drivers/gpu/drm/radeon/radeon_bios.o
2025-10-02T15:44:12.3052989Z CC [M] fs/ocfs2/dlm/dlmrecovery.o
2025-10-02T15:44:12.6958721Z CC [M] sound/soc/soc-pcm.o
2025-10-02T15:44:13.1785509Z CC [M] drivers/gpu/drm/radeon/radeon_benchmark.o
2025-10-02T15:44:13.4370074Z CC net/ipv6/mcast.o
2025-10-02T15:44:13.6926641Z CC drivers/base/regmap/regcache.o
2025-10-02T15:44:14.1631359Z HOSTCC drivers/gpu/drm/radeon/mkregtable
2025-10-02T15:44:14.3670842Z CC [M] drivers/gpu/drm/radeon/rs400.o
2025-10-02T15:44:14.8330538Z CC drivers/base/regmap/regcache-rbtree.o
2025-10-02T15:44:15.2201491Z CC [M] sound/soc/soc-devres.o
2025-10-02T15:44:15.2487934Z CC [M] fs/ocfs2/dlm/dlmmaster.o
2025-10-02T15:44:15.3203362Z MKREG drivers/gpu/drm/radeon/rs600_reg_safe.h
2025-10-02T15:44:15.3321317Z CC [M] drivers/gpu/drm/radeon/rs690.o
2025-10-02T15:44:15.8194864Z CC drivers/base/regmap/regcache-flat.o
2025-10-02T15:44:15.9079328Z CC [M] sound/soc/soc-ops.o
2025-10-02T15:44:16.5208142Z CC drivers/base/regmap/regmap-debugfs.o
2025-10-02T15:44:16.6675738Z MKREG drivers/gpu/drm/radeon/rv515_reg_safe.h
2025-10-02T15:44:16.6776588Z CC [M] drivers/gpu/drm/radeon/r520.o
2025-10-02T15:44:16.7813014Z CC net/ipv6/reassembly.o
2025-10-02T15:44:17.0249311Z CC [M] sound/soc/soc-link.o
2025-10-02T15:44:17.5599701Z CC drivers/base/regmap/regmap-i2c.o
2025-10-02T15:44:17.6558568Z CC [M] drivers/gpu/drm/radeon/r600.o
2025-10-02T15:44:17.7667579Z CC [M] sound/soc/soc-card.o
2025-10-02T15:44:18.2994930Z CC [M] fs/ocfs2/dlm/dlmast.o
2025-10-02T15:44:18.3392543Z CC net/ipv6/tcp_ipv6.o
2025-10-02T15:44:18.4054943Z CC drivers/base/regmap/regmap-spi.o
2025-10-02T15:44:18.6224401Z CC [M] sound/soc/soc-topology.o
2025-10-02T15:44:19.2816065Z CC drivers/base/regmap/regmap-mmio.o
2025-10-02T15:44:19.4865444Z CC [M] fs/ocfs2/dlm/dlmconvert.o
2025-10-02T15:44:20.1210249Z CC drivers/base/regmap/regmap-irq.o
2025-10-02T15:44:20.8098321Z CC [M] fs/ocfs2/dlm/dlmlock.o
2025-10-02T15:44:20.8302883Z CC [M] sound/soc/soc-generic-dmaengine-pcm.o
2025-10-02T15:44:21.0761087Z CC [M] drivers/base/regmap/regmap-slimbus.o
2025-10-02T15:44:21.1710564Z CC net/ipv6/ping.o
2025-10-02T15:44:21.2129740Z CC [M] drivers/gpu/drm/radeon/rv770.o
2025-10-02T15:44:21.6064961Z CC [M] drivers/base/regmap/regmap-w1.o
2025-10-02T15:44:21.7867721Z CC [M] sound/soc/soc-ac97.o
2025-10-02T15:44:22.2301899Z CC [M] drivers/base/regmap/regmap-sdw.o
2025-10-02T15:44:22.3755579Z CC [M] fs/ocfs2/dlm/dlmunlock.o
2025-10-02T15:44:22.4946795Z CC net/ipv6/exthdrs.o
2025-10-02T15:44:22.7464261Z CC [M] drivers/base/regmap/regmap-sccb.o
2025-10-02T15:44:22.7641235Z CC [M] sound/soc/soc-compress.o
2025-10-02T15:44:22.9145452Z CC [M] drivers/gpu/drm/radeon/radeon_test.o
2025-10-02T15:44:23.3514558Z CC [M] drivers/base/regmap/regmap-spi-avmm.o
2025-10-02T15:44:23.7233225Z LD [M] fs/ocfs2/dlm/ocfs2_dlm.o
2025-10-02T15:44:23.7927192Z CC [M] fs/ocfs2/alloc.o
2025-10-02T15:44:23.8532790Z LD [M] sound/soc/snd-soc-acpi.o
2025-10-02T15:44:23.8818802Z LD [M] sound/soc/snd-soc-core.o
2025-10-02T15:44:24.1616269Z CC [M] sound/x86/intel_hdmi_audio.o
2025-10-02T15:44:24.2599856Z MKREG drivers/gpu/drm/radeon/r200_reg_safe.h
2025-10-02T15:44:24.2727518Z CC [M] drivers/gpu/drm/radeon/radeon_legacy_tv.o
2025-10-02T15:44:24.2802150Z AR drivers/base/regmap/built-in.a
2025-10-02T15:44:24.3463529Z AR drivers/base/test/built-in.a
2025-10-02T15:44:24.3693283Z CC drivers/base/component.o
2025-10-02T15:44:24.8429977Z CC net/ipv6/datagram.o
2025-10-02T15:44:25.2085526Z CC drivers/base/core.o
2025-10-02T15:44:25.5190439Z MKREG drivers/gpu/drm/radeon/r600_reg_safe.h
2025-10-02T15:44:25.5335022Z CC [M] drivers/gpu/drm/radeon/r600_blit_shaders.o
2025-10-02T15:44:25.6378084Z CC [M] drivers/gpu/drm/radeon/radeon_pm.o
2025-10-02T15:44:25.6709770Z LD [M] sound/x86/snd-hdmi-lpe-audio.o
2025-10-02T15:44:25.7640089Z CC [M] sound/xen/xen_snd_front.o
2025-10-02T15:44:26.5001358Z CC net/ipv6/ip6_flowlabel.o
2025-10-02T15:44:26.6995877Z CC [M] sound/xen/xen_snd_front_cfg.o
2025-10-02T15:44:27.5630823Z CC [M] drivers/gpu/drm/radeon/atombios_dp.o
2025-10-02T15:44:27.5758369Z CC [M] sound/xen/xen_snd_front_evtchnl.o
2025-10-02T15:44:28.0296131Z CC drivers/base/bus.o
2025-10-02T15:44:28.1063495Z CC net/ipv6/inet6_connection_sock.o
2025-10-02T15:44:28.6801204Z CC [M] sound/xen/xen_snd_front_alsa.o
2025-10-02T15:44:28.8788410Z CC drivers/base/dd.o
2025-10-02T15:44:28.9484357Z CC [M] drivers/gpu/drm/radeon/r600_hdmi.o
2025-10-02T15:44:29.4940024Z CC net/ipv6/udp_offload.o
2025-10-02T15:44:29.8120266Z LD [M] sound/xen/snd_xen_front.o
2025-10-02T15:44:29.8741663Z AR sound/built-in.a
2025-10-02T15:44:29.8980388Z CC [M] sound/sound_core.o
2025-10-02T15:44:30.2113924Z CC drivers/base/syscore.o
2025-10-02T15:44:30.2752769Z CC [M] drivers/gpu/drm/radeon/dce3_1_afmt.o
2025-10-02T15:44:30.6175777Z CC [M] fs/ocfs2/aops.o
2025-10-02T15:44:30.7204934Z CC [M] sound/ac97_bus.o
2025-10-02T15:44:30.8118467Z CC net/ipv6/seg6.o
2025-10-02T15:44:31.1274321Z CC drivers/base/driver.o
2025-10-02T15:44:31.2893678Z LD [M] sound/soundcore.o
2025-10-02T15:44:31.3572668Z CC [M] drivers/gpu/drm/radeon/evergreen.o
2025-10-02T15:44:31.5182721Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_drv.o
2025-10-02T15:44:31.5921335Z CC drivers/base/class.o
2025-10-02T15:44:32.0878730Z CC net/ipv6/fib6_notifier.o
2025-10-02T15:44:32.5056571Z CC drivers/base/platform.o
2025-10-02T15:44:32.7664420Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_device.o
2025-10-02T15:44:33.1144198Z CC net/ipv6/rpl.o
2025-10-02T15:44:34.0482733Z CC drivers/base/cpu.o
2025-10-02T15:44:34.1740595Z CC [M] fs/ocfs2/blockcheck.o
2025-10-02T15:44:34.2504345Z CC net/ipv6/sysctl_net_ipv6.o
2025-10-02T15:44:35.0568785Z CC drivers/base/firmware.o
2025-10-02T15:44:35.2731476Z CC [M] fs/ocfs2/buffer_head_io.o
2025-10-02T15:44:35.4106447Z CC drivers/base/init.o
2025-10-02T15:44:35.6047992Z MKREG drivers/gpu/drm/radeon/evergreen_reg_safe.h
2025-10-02T15:44:35.6222481Z MKREG drivers/gpu/drm/radeon/cayman_reg_safe.h
2025-10-02T15:44:35.6287639Z CC net/ipv6/ip6mr.o
2025-10-02T15:44:35.6456506Z CC [M] drivers/gpu/drm/radeon/evergreen_blit_shaders.o
2025-10-02T15:44:35.7951577Z CC [M] drivers/gpu/drm/radeon/evergreen_hdmi.o
2025-10-02T15:44:35.8192963Z CC drivers/base/map.o
2025-10-02T15:44:35.8527646Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_kms.o
2025-10-02T15:44:36.4170150Z CC drivers/base/devres.o
2025-10-02T15:44:37.0935249Z CC [M] drivers/gpu/drm/radeon/radeon_trace_points.o
2025-10-02T15:44:37.0965856Z CC [M] fs/ocfs2/dcache.o
2025-10-02T15:44:37.5365347Z CC drivers/base/attribute_container.o
2025-10-02T15:44:37.7325777Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_atombios.o
2025-10-02T15:44:38.2634560Z CC drivers/base/transport_class.o
2025-10-02T15:44:38.4005792Z CC [M] drivers/gpu/drm/radeon/ni.o
2025-10-02T15:44:38.4019099Z CC net/ipv6/xfrm6_policy.o
2025-10-02T15:44:38.6846841Z CC drivers/base/topology.o
2025-10-02T15:44:39.0373785Z CC [M] fs/ocfs2/dir.o
2025-10-02T15:44:39.3360056Z CC drivers/base/container.o
2025-10-02T15:44:39.4725479Z CC [M] drivers/gpu/drm/amd/amdgpu/atombios_crtc.o
2025-10-02T15:44:39.8249779Z CC drivers/base/property.o
2025-10-02T15:44:40.0234054Z CC net/ipv6/xfrm6_state.o
2025-10-02T15:44:40.7625993Z CC [M] drivers/gpu/drm/radeon/cayman_blit_shaders.o
2025-10-02T15:44:40.9120605Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_connectors.o
2025-10-02T15:44:40.9359805Z CC [M] drivers/gpu/drm/radeon/atombios_encoders.o
2025-10-02T15:44:41.0952448Z CC net/ipv6/xfrm6_input.o
2025-10-02T15:44:41.2674719Z CC drivers/base/cacheinfo.o
2025-10-02T15:44:42.0601126Z CC drivers/base/swnode.o
2025-10-02T15:44:42.4438160Z CC net/ipv6/xfrm6_output.o
2025-10-02T15:44:43.0071380Z CC [M] drivers/gpu/drm/amd/amdgpu/atom.o
2025-10-02T15:44:43.1156174Z CC [M] drivers/gpu/drm/radeon/radeon_semaphore.o
2025-10-02T15:44:43.2367651Z CC drivers/base/devtmpfs.o
2025-10-02T15:44:43.5001246Z CC [M] fs/ocfs2/dlmglue.o
2025-10-02T15:44:43.8859865Z CC net/ipv6/xfrm6_protocol.o
2025-10-02T15:44:44.1207765Z CC [M] drivers/gpu/drm/radeon/radeon_sa.o
2025-10-02T15:44:44.4005980Z CC drivers/base/isa.o
2025-10-02T15:44:45.1427544Z CC drivers/base/node.o
2025-10-02T15:44:45.1559896Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_fence.o
2025-10-02T15:44:45.3159045Z CC net/ipv6/netfilter.o
2025-10-02T15:44:45.5055057Z CC [M] drivers/gpu/drm/radeon/atombios_i2c.o
2025-10-02T15:44:46.2330777Z CC drivers/base/memory.o
2025-10-02T15:44:46.4597745Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.o
2025-10-02T15:44:46.4601166Z CC [M] fs/ocfs2/export.o
2025-10-02T15:44:46.5233192Z CC [M] drivers/gpu/drm/radeon/si.o
2025-10-02T15:44:46.6886852Z CC net/ipv6/fib6_rules.o
2025-10-02T15:44:47.1707868Z CC drivers/base/module.o
2025-10-02T15:44:47.6906647Z CC drivers/base/hypervisor.o
2025-10-02T15:44:48.0931493Z CC drivers/base/pinctrl.o
2025-10-02T15:44:48.1529423Z CC net/ipv6/proc.o
2025-10-02T15:44:48.4289926Z CC [M] fs/ocfs2/extent_map.o
2025-10-02T15:44:48.6837159Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_object.o
2025-10-02T15:44:48.7607802Z CC drivers/base/devcoredump.o
2025-10-02T15:44:49.5022541Z CC drivers/base/platform-msi.o
2025-10-02T15:44:49.6251337Z CC net/ipv6/syncookies.o
2025-10-02T15:44:50.1184617Z AR drivers/base/built-in.a
2025-10-02T15:44:50.1537584Z CC net/wireless/wext-core.o
2025-10-02T15:44:50.5138029Z CC [M] fs/ocfs2/file.o
2025-10-02T15:44:50.5510219Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gart.o
2025-10-02T15:44:51.0894992Z CC net/ipv6/calipso.o
2025-10-02T15:44:51.4994525Z CC net/wireless/wext-proc.o
2025-10-02T15:44:51.7544563Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_encoders.o
2025-10-02T15:44:52.5955255Z CC net/wireless/wext-spy.o
2025-10-02T15:44:52.9163693Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_display.o
2025-10-02T15:44:53.0146028Z CC net/ipv6/seg6_iptunnel.o
2025-10-02T15:44:53.7731694Z CC net/wireless/wext-priv.o
2025-10-02T15:44:54.4157032Z CC [M] drivers/gpu/drm/radeon/si_blit_shaders.o
2025-10-02T15:44:54.4322337Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_i2c.o
2025-10-02T15:44:54.5012513Z CC [M] fs/ocfs2/heartbeat.o
2025-10-02T15:44:54.5311453Z CC [M] drivers/gpu/drm/radeon/radeon_prime.o
2025-10-02T15:44:54.5941056Z CC net/ipv6/seg6_local.o
2025-10-02T15:44:54.7858564Z CC [M] net/wireless/core.o
2025-10-02T15:44:55.5469984Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_fb.o
2025-10-02T15:44:55.6101612Z CC [M] drivers/gpu/drm/radeon/cik.o
2025-10-02T15:44:56.1252638Z CC [M] fs/ocfs2/inode.o
2025-10-02T15:44:56.4222991Z CC net/ipv6/seg6_hmac.o
2025-10-02T15:44:56.7287842Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gem.o
2025-10-02T15:44:57.1467133Z CC [M] net/wireless/sysfs.o
2025-10-02T15:44:58.2292629Z CC net/ipv6/rpl_iptunnel.o
2025-10-02T15:44:58.4291917Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ring.o
2025-10-02T15:44:58.6936490Z CC [M] fs/ocfs2/ioctl.o
2025-10-02T15:44:58.7032466Z CC [M] net/wireless/radiotap.o
2025-10-02T15:44:59.5848903Z CC [M] net/wireless/util.o
2025-10-02T15:44:59.6601675Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_cs.o
2025-10-02T15:44:59.7883227Z CC net/ipv6/addrconf_core.o
2025-10-02T15:45:00.0100537Z CC [M] fs/ocfs2/journal.o
2025-10-02T15:45:00.6115745Z CC [M] drivers/gpu/drm/radeon/cik_blit_shaders.o
2025-10-02T15:45:00.7052997Z CC [M] drivers/gpu/drm/radeon/r600_dpm.o
2025-10-02T15:45:01.0728753Z CC net/ipv6/exthdrs_core.o
2025-10-02T15:45:01.9260037Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_bios.o
2025-10-02T15:45:02.2977936Z CC net/ipv6/ip6_checksum.o
2025-10-02T15:45:02.3727158Z CC [M] drivers/gpu/drm/radeon/rs780_dpm.o
2025-10-02T15:45:02.6746370Z CC [M] net/wireless/reg.o
2025-10-02T15:45:03.2052596Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_benchmark.o
2025-10-02T15:45:03.2325791Z CC [M] fs/ocfs2/localalloc.o
2025-10-02T15:45:03.4885402Z CC net/ipv6/ip6_icmp.o
2025-10-02T15:45:04.0011254Z CC [M] drivers/gpu/drm/radeon/rv6xx_dpm.o
2025-10-02T15:45:04.2599071Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_test.o
2025-10-02T15:45:04.5823119Z CC net/ipv6/output_core.o
2025-10-02T15:45:05.4521122Z CC [M] drivers/gpu/drm/amd/amdgpu/atombios_dp.o
2025-10-02T15:45:05.5814407Z CC [M] fs/ocfs2/locks.o
2025-10-02T15:45:05.7386835Z CC net/ipv6/protocol.o
2025-10-02T15:45:06.0352256Z CC [M] drivers/gpu/drm/radeon/rv770_dpm.o
2025-10-02T15:45:06.1604685Z CC [M] net/wireless/scan.o
2025-10-02T15:45:06.2890131Z CC [M] fs/ocfs2/mmap.o
2025-10-02T15:45:06.8133971Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_afmt.o
2025-10-02T15:45:06.8360810Z CC net/ipv6/ip6_offload.o
2025-10-02T15:45:07.8526290Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_trace_points.o
2025-10-02T15:45:07.9368235Z CC [M] fs/ocfs2/namei.o
2025-10-02T15:45:08.0886309Z CC [M] drivers/gpu/drm/radeon/rv730_dpm.o
2025-10-02T15:45:08.3000325Z CC net/ipv6/tcpv6_offload.o
2025-10-02T15:45:09.0732343Z CC [M] drivers/gpu/drm/radeon/rv740_dpm.o
2025-10-02T15:45:09.6499144Z CC net/ipv6/exthdrs_offload.o
2025-10-02T15:45:09.8581250Z CC [M] net/wireless/nl80211.o
2025-10-02T15:45:10.0351354Z CC [M] drivers/gpu/drm/radeon/rv770_smc.o
2025-10-02T15:45:10.2511475Z CC [M] drivers/gpu/drm/amd/amdgpu/atombios_encoders.o
2025-10-02T15:45:10.6933570Z CC net/ipv6/inet6_hashtables.o
2025-10-02T15:45:11.0920069Z CC [M] drivers/gpu/drm/radeon/cypress_dpm.o
2025-10-02T15:45:12.2849091Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_sa.o
2025-10-02T15:45:12.3198340Z CC net/ipv6/mcast_snoop.o
2025-10-02T15:45:12.4120153Z CC [M] fs/ocfs2/refcounttree.o
2025-10-02T15:45:12.9584354Z CC [M] drivers/gpu/drm/radeon/btc_dpm.o
2025-10-02T15:45:13.6545670Z CC [M] drivers/gpu/drm/amd/amdgpu/atombios_i2c.o
2025-10-02T15:45:13.6625754Z CC [M] net/ipv6/ah6.o
2025-10-02T15:45:14.8020877Z CC [M] drivers/gpu/drm/radeon/sumo_dpm.o
2025-10-02T15:45:14.8754286Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_dma_buf.o
2025-10-02T15:45:15.1098664Z CC [M] net/ipv6/esp6.o
2025-10-02T15:45:16.4156581Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vm.o
2025-10-02T15:45:16.8758386Z CC [M] drivers/gpu/drm/radeon/sumo_smc.o
2025-10-02T15:45:17.1607602Z CC [M] net/ipv6/esp6_offload.o
2025-10-02T15:45:17.7524931Z CC [M] fs/ocfs2/reservations.o
2025-10-02T15:45:18.0103310Z CC [M] drivers/gpu/drm/radeon/trinity_dpm.o
2025-10-02T15:45:18.6462763Z CC [M] net/ipv6/ipcomp6.o
2025-10-02T15:45:19.4560165Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ib.o
2025-10-02T15:45:19.6931239Z CC [M] fs/ocfs2/move_extents.o
2025-10-02T15:45:19.7780414Z CC [M] net/ipv6/xfrm6_tunnel.o
2025-10-02T15:45:20.0700692Z CC [M] drivers/gpu/drm/radeon/trinity_smc.o
2025-10-02T15:45:20.7287647Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_pll.o
2025-10-02T15:45:20.9367518Z CC [M] drivers/gpu/drm/radeon/ni_dpm.o
2025-10-02T15:45:21.1248596Z CC [M] net/ipv6/tunnel6.o
2025-10-02T15:45:21.2748523Z CC [M] fs/ocfs2/resize.o
2025-10-02T15:45:22.0538034Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ucode.o
2025-10-02T15:45:22.3029033Z CC [M] net/ipv6/mip6.o
2025-10-02T15:45:22.8707875Z CC [M] net/wireless/mlme.o
2025-10-02T15:45:22.9739203Z CC [M] fs/ocfs2/slot_map.o
2025-10-02T15:45:23.3362396Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_bo_list.o
2025-10-02T15:45:23.5857242Z CC [M] net/ipv6/ip6_vti.o
2025-10-02T15:45:24.1659965Z CC [M] drivers/gpu/drm/radeon/si_smc.o
2025-10-02T15:45:24.6492041Z CC [M] fs/ocfs2/suballoc.o
2025-10-02T15:45:24.8714723Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ctx.o
2025-10-02T15:45:25.0450621Z CC [M] drivers/gpu/drm/radeon/si_dpm.o
2025-10-02T15:45:25.0707003Z CC [M] net/wireless/ibss.o
2025-10-02T15:45:25.6307153Z CC [M] net/ipv6/sit.o
2025-10-02T15:45:26.3312166Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_sync.o
2025-10-02T15:45:26.9473713Z CC [M] net/wireless/sme.o
2025-10-02T15:45:27.7331928Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gtt_mgr.o
2025-10-02T15:45:28.0101744Z CC [M] net/ipv6/ip6_tunnel.o
2025-10-02T15:45:28.0772278Z CC [M] fs/ocfs2/super.o
2025-10-02T15:45:28.8431567Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vram_mgr.o
2025-10-02T15:45:29.2919862Z CC [M] drivers/gpu/drm/radeon/kv_smc.o
2025-10-02T15:45:29.3784337Z CC [M] net/wireless/chan.o
2025-10-02T15:45:30.3124203Z CC [M] drivers/gpu/drm/radeon/kv_dpm.o
2025-10-02T15:45:30.7798368Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_virt.o
2025-10-02T15:45:30.9784565Z CC [M] net/ipv6/ip6_gre.o
2025-10-02T15:45:31.4130866Z CC [M] net/wireless/ethtool.o
2025-10-02T15:45:32.4056190Z CC [M] drivers/gpu/drm/radeon/ci_smc.o
2025-10-02T15:45:32.4372507Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_atomfirmware.o
2025-10-02T15:45:32.8353878Z CC [M] net/wireless/mesh.o
2025-10-02T15:45:33.3066803Z CC [M] drivers/gpu/drm/radeon/ci_dpm.o
2025-10-02T15:45:33.8362424Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vf_error.o
2025-10-02T15:45:33.9142263Z CC [M] net/ipv6/fou6.o
2025-10-02T15:45:34.3483236Z CC [M] net/wireless/ap.o
2025-10-02T15:45:34.7968844Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_sched.o
2025-10-02T15:45:35.3792692Z CC [M] net/ipv6/ip6_udp_tunnel.o
2025-10-02T15:45:35.9811355Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_debugfs.o
2025-10-02T15:45:36.0707593Z CC [M] net/wireless/trace.o
2025-10-02T15:45:36.7602043Z AR net/ipv6/built-in.a
2025-10-02T15:45:36.8751511Z CC [M] fs/btrfs/super.o
2025-10-02T15:45:37.2130787Z CC [M] drivers/gpu/drm/radeon/dce6_afmt.o
2025-10-02T15:45:37.6465053Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ids.o
2025-10-02T15:45:38.2424026Z CC [M] drivers/gpu/drm/radeon/radeon_vm.o
2025-10-02T15:45:38.7108375Z CC [M] fs/ocfs2/symlink.o
2025-10-02T15:45:39.1947238Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.o
2025-10-02T15:45:39.4675495Z CC [M] fs/ocfs2/sysfile.o
2025-10-02T15:45:39.7909805Z CC [M] drivers/gpu/drm/radeon/radeon_ucode.o
2025-10-02T15:45:40.2845885Z CC [M] fs/ocfs2/uptodate.o
2025-10-02T15:45:40.4271873Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_mmhub.o
2025-10-02T15:45:40.7194317Z CC [M] drivers/gpu/drm/radeon/radeon_ib.o
2025-10-02T15:45:41.6164024Z CC [M] drivers/gpu/drm/radeon/radeon_sync.o
2025-10-02T15:45:41.6341201Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_xgmi.o
2025-10-02T15:45:42.2091447Z CC [M] fs/ocfs2/quota_local.o
2025-10-02T15:45:42.5202360Z CC [M] drivers/gpu/drm/radeon/radeon_audio.o
2025-10-02T15:45:42.8189393Z CC [M] fs/btrfs/ctree.o
2025-10-02T15:45:43.0003966Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_csa.o
2025-10-02T15:45:43.7470832Z CC [M] drivers/gpu/drm/radeon/radeon_dp_auxch.o
2025-10-02T15:45:43.9499258Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ras.o
2025-10-02T15:45:44.9774073Z CC [M] drivers/gpu/drm/radeon/radeon_dp_mst.o
2025-10-02T15:45:45.0873286Z CC [M] fs/ocfs2/quota_global.o
2025-10-02T15:45:46.1793551Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vm_cpu.o
2025-10-02T15:45:46.2700809Z CC [M] drivers/gpu/drm/radeon/radeon_mn.o
2025-10-02T15:45:47.0142109Z CC [M] drivers/gpu/drm/radeon/r600_dma.o
2025-10-02T15:45:47.0408278Z CC [M] fs/btrfs/extent-tree.o
2025-10-02T15:45:47.1720205Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vm_sdma.o
2025-10-02T15:45:47.3818146Z CC [M] net/wireless/ocb.o
2025-10-02T15:45:47.5072153Z CC [M] fs/ocfs2/xattr.o
2025-10-02T15:45:48.2348236Z CC [M] drivers/gpu/drm/radeon/rv770_dma.o
2025-10-02T15:45:48.6144951Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.o
2025-10-02T15:45:48.8636375Z CC [M] net/wireless/pmsr.o
2025-10-02T15:45:49.1723469Z CC [M] drivers/gpu/drm/radeon/evergreen_dma.o
2025-10-02T15:45:49.9065620Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ras_eeprom.o
2025-10-02T15:45:50.2687897Z CC [M] drivers/gpu/drm/radeon/ni_dma.o
2025-10-02T15:45:50.7354898Z CC [M] net/wireless/debugfs.o
2025-10-02T15:45:51.1084085Z CC [M] fs/btrfs/print-tree.o
2025-10-02T15:45:51.4053206Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_nbio.o
2025-10-02T15:45:51.4525153Z CC [M] drivers/gpu/drm/radeon/si_dma.o
2025-10-02T15:45:51.7348400Z CC [M] net/wireless/wext-compat.o
2025-10-02T15:45:52.3869963Z CC [M] fs/btrfs/root-tree.o
2025-10-02T15:45:52.5690887Z CC [M] drivers/gpu/drm/radeon/cik_sdma.o
2025-10-02T15:45:52.5985788Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_umc.o
2025-10-02T15:45:53.6962033Z CC [M] fs/btrfs/dir-item.o
2025-10-02T15:45:53.7881243Z CC [M] drivers/gpu/drm/amd/amdgpu/smu_v11_0_i2c.o
2025-10-02T15:45:54.2377616Z CC [M] net/wireless/wext-sme.o
2025-10-02T15:45:54.3054329Z CC [M] drivers/gpu/drm/radeon/radeon_uvd.o
2025-10-02T15:45:54.3605932Z CC [M] fs/ocfs2/acl.o
2025-10-02T15:45:54.9427657Z CC [M] fs/btrfs/file-item.o
2025-10-02T15:45:55.2023062Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_fru_eeprom.o
2025-10-02T15:45:55.3088432Z CC [M] fs/ocfs2/filecheck.o
2025-10-02T15:45:55.3608404Z GEN net/wireless/shipped-certs.c
2025-10-02T15:45:55.3852850Z CC [M] net/wireless/lib80211.o
2025-10-02T15:45:55.6228191Z CC [M] drivers/gpu/drm/radeon/uvd_v1_0.o
2025-10-02T15:45:56.1946889Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_rap.o
2025-10-02T15:45:56.2015556Z CC [M] fs/ocfs2/stackglue.o
2025-10-02T15:45:56.5741887Z CC [M] net/wireless/lib80211_crypt_wep.o
2025-10-02T15:45:56.8453091Z CC [M] drivers/gpu/drm/radeon/uvd_v2_2.o
2025-10-02T15:45:56.9117315Z CC [M] fs/btrfs/inode-item.o
2025-10-02T15:45:56.9722025Z CC [M] fs/ocfs2/stack_o2cb.o
2025-10-02T15:45:57.5126951Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_pmu.o
2025-10-02T15:45:57.5442192Z CC [M] net/wireless/lib80211_crypt_ccmp.o
2025-10-02T15:45:57.7088624Z CC [M] drivers/gpu/drm/radeon/uvd_v3_1.o
2025-10-02T15:45:58.1673681Z CC [M] fs/btrfs/inode-map.o
2025-10-02T15:45:58.3560152Z CC [M] fs/ocfs2/stack_user.o
2025-10-02T15:45:58.6534851Z CC [M] drivers/gpu/drm/amd/amdgpu/cik.o
2025-10-02T15:45:58.6677086Z CC [M] net/wireless/lib80211_crypt_tkip.o
2025-10-02T15:45:58.7044306Z CC [M] drivers/gpu/drm/radeon/uvd_v4_2.o
2025-10-02T15:45:59.3133978Z LD [M] fs/ocfs2/ocfs2.o
2025-10-02T15:45:59.3173266Z CC [M] fs/btrfs/disk-io.o
2025-10-02T15:45:59.4599125Z LD [M] fs/ocfs2/ocfs2_stackglue.o
2025-10-02T15:45:59.4733942Z LD [M] fs/ocfs2/ocfs2_stack_o2cb.o
2025-10-02T15:45:59.4884404Z LD [M] fs/ocfs2/ocfs2_stack_user.o
2025-10-02T15:45:59.5503895Z CC [M] fs/btrfs/transaction.o
2025-10-02T15:45:59.6600718Z CC [M] drivers/gpu/drm/radeon/radeon_vce.o
2025-10-02T15:46:00.0395124Z CC [M] net/wireless/shipped-certs.o
2025-10-02T15:46:00.5521347Z CC [M] drivers/gpu/drm/amd/amdgpu/cik_ih.o
2025-10-02T15:46:00.9454622Z AR net/wireless/built-in.a
2025-10-02T15:46:00.9664080Z LD [M] net/wireless/cfg80211.o
2025-10-02T15:46:01.0996670Z CC [M] drivers/gpu/drm/radeon/vce_v1_0.o
2025-10-02T15:46:01.2853067Z CC net/netlabel/netlabel_user.o
2025-10-02T15:46:01.6781388Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_v8_0.o
2025-10-02T15:46:02.0279382Z CC net/dcb/dcbnl.o
2025-10-02T15:46:02.1035882Z CC [M] drivers/gpu/drm/radeon/vce_v2_0.o
2025-10-02T15:46:02.4613296Z CC net/netlabel/netlabel_kapi.o
2025-10-02T15:46:02.7773296Z CC [M] fs/btrfs/inode.o
2025-10-02T15:46:03.0374432Z CC [M] drivers/gpu/drm/radeon/radeon_atpx_handler.o
2025-10-02T15:46:03.9590953Z CC [M] drivers/gpu/drm/radeon/radeon_acpi.o
2025-10-02T15:46:04.1371452Z CC net/netlabel/netlabel_domainhash.o
2025-10-02T15:46:04.2353588Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v7_0.o
2025-10-02T15:46:04.3221474Z CC net/dcb/dcbevent.o
2025-10-02T15:46:05.0289739Z MKREG drivers/gpu/drm/radeon/r100_reg_safe.h
2025-10-02T15:46:05.0363948Z MKREG drivers/gpu/drm/radeon/rn50_reg_safe.h
2025-10-02T15:46:05.0431995Z MKREG drivers/gpu/drm/radeon/r300_reg_safe.h
2025-10-02T15:46:05.0536578Z MKREG drivers/gpu/drm/radeon/r420_reg_safe.h
2025-10-02T15:46:05.0647650Z CC [M] drivers/gpu/drm/radeon/rs600.o
2025-10-02T15:46:05.3390880Z AR net/dcb/built-in.a
2025-10-02T15:46:05.3625993Z CC [M] fs/btrfs/file.o
2025-10-02T15:46:05.7862333Z CC net/netlabel/netlabel_addrlist.o
2025-10-02T15:46:06.6767907Z CC [M] drivers/gpu/drm/radeon/rv515.o
2025-10-02T15:46:07.0161769Z CC net/netlabel/netlabel_mgmt.o
2025-10-02T15:46:07.6233284Z CC [M] drivers/gpu/drm/amd/amdgpu/cik_sdma.o
2025-10-02T15:46:08.3982998Z CC net/netlabel/netlabel_unlabeled.o
2025-10-02T15:46:08.5778869Z CC net/netlabel/netlabel_cipso_v4.o
2025-10-02T15:46:09.5845803Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v4_2.o
2025-10-02T15:46:09.9006005Z CC [M] drivers/gpu/drm/radeon/r200.o
2025-10-02T15:46:09.9731151Z CC [M] drivers/gpu/drm/radeon/r600_cs.o
2025-10-02T15:46:10.1469099Z CC [M] fs/btrfs/tree-defrag.o
2025-10-02T15:46:10.1526059Z CC net/netlabel/netlabel_calipso.o
2025-10-02T15:46:10.9225929Z CC [M] drivers/gpu/drm/amd/amdgpu/vce_v2_0.o
2025-10-02T15:46:11.1408969Z CC [M] fs/btrfs/extent_map.o
2025-10-02T15:46:11.2107222Z CC [M] fs/btrfs/sysfs.o
2025-10-02T15:46:11.6311338Z AR net/netlabel/built-in.a
2025-10-02T15:46:11.6881206Z AR net/mpls/built-in.a
2025-10-02T15:46:11.7088768Z CC [M] net/mpls/mpls_gso.o
2025-10-02T15:46:12.1192292Z CC [M] drivers/gpu/drm/amd/amdgpu/si.o
2025-10-02T15:46:12.4560849Z CC [M] drivers/gpu/drm/radeon/evergreen_cs.o
2025-10-02T15:46:12.5960842Z CC [M] net/mpls/af_mpls.o
2025-10-02T15:46:12.9098775Z CC [M] drivers/gpu/drm/i915/i915_drv.o
2025-10-02T15:46:13.2113778Z CC [M] fs/btrfs/struct-funcs.o
2025-10-02T15:46:13.7645693Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v6_0.o
2025-10-02T15:46:14.7775249Z CC [M] fs/btrfs/xattr.o
2025-10-02T15:46:14.9951149Z CC [M] drivers/gpu/drm/i915/i915_config.o
2025-10-02T15:46:15.2853931Z CC [M] net/mpls/mpls_iptunnel.o
2025-10-02T15:46:15.4743565Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v6_0.o
2025-10-02T15:46:15.6853657Z CC [M] drivers/gpu/drm/radeon/r100.o
2025-10-02T15:46:15.9430862Z CC [M] fs/btrfs/ordered-data.o
2025-10-02T15:46:16.0091835Z CC [M] drivers/gpu/drm/i915/i915_irq.o
2025-10-02T15:46:16.6485220Z LD [M] net/mpls/mpls_router.o
2025-10-02T15:46:16.7088481Z CC net/switchdev/switchdev.o
2025-10-02T15:46:17.7124542Z CC [M] fs/btrfs/extent_io.o
2025-10-02T15:46:18.0228442Z CC [M] drivers/gpu/drm/amd/amdgpu/si_ih.o
2025-10-02T15:46:18.1167289Z AR net/switchdev/built-in.a
2025-10-02T15:46:18.1711589Z CC net/l3mdev/l3mdev.o
2025-10-02T15:46:19.0625672Z CC [M] drivers/gpu/drm/amd/amdgpu/si_dma.o
2025-10-02T15:46:19.1683502Z AR net/l3mdev/built-in.a
2025-10-02T15:46:19.1936447Z CC [M] drivers/gpu/drm/radeon/r300.o
2025-10-02T15:46:19.2019138Z CC net/ncsi/ncsi-cmd.o
2025-10-02T15:46:19.9165236Z CC [M] drivers/gpu/drm/i915/i915_getparam.o
2025-10-02T15:46:20.5416822Z CC net/ncsi/ncsi-rsp.o
2025-10-02T15:46:20.6393450Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_v6_0.o
2025-10-02T15:46:21.0233017Z CC [M] drivers/gpu/drm/radeon/r420.o
2025-10-02T15:46:21.2354733Z CC [M] drivers/gpu/drm/i915/i915_mitigations.o
2025-10-02T15:46:22.1533113Z CC net/ncsi/ncsi-aen.o
2025-10-02T15:46:22.1780461Z LD [M] drivers/gpu/drm/radeon/radeon.o
2025-10-02T15:46:22.3886951Z CC [M] drivers/gpu/drm/i915/i915_params.o
2025-10-02T15:46:22.7850939Z AR drivers/block/rnbd/built-in.a
2025-10-02T15:46:22.7958195Z CC [M] drivers/block/rnbd/rnbd-clt.o
2025-10-02T15:46:22.8732369Z CC [M] fs/btrfs/volumes.o
2025-10-02T15:46:23.0811247Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v3_1.o
2025-10-02T15:46:23.2485063Z CC net/ncsi/ncsi-manage.o
2025-10-02T15:46:23.4441846Z CC [M] drivers/gpu/drm/i915/i915_pci.o
2025-10-02T15:46:24.5624820Z CC [M] drivers/block/rnbd/rnbd-clt-sysfs.o
2025-10-02T15:46:24.5994696Z CC [M] drivers/gpu/drm/amd/amdgpu/vi.o
2025-10-02T15:46:24.6691688Z CC [M] drivers/gpu/drm/i915/i915_scatterlist.o
2025-10-02T15:46:25.2043623Z CC [M] drivers/gpu/drm/i915/i915_suspend.o
2025-10-02T15:46:25.5760013Z CC net/ncsi/ncsi-netlink.o
2025-10-02T15:46:25.8576280Z CC [M] drivers/block/rnbd/rnbd-common.o
2025-10-02T15:46:26.3801367Z CC [M] drivers/gpu/drm/amd/amdgpu/mxgpu_vi.o
2025-10-02T15:46:26.3881737Z CC [M] drivers/gpu/drm/i915/i915_switcheroo.o
2025-10-02T15:46:26.4957609Z CC [M] drivers/block/rnbd/rnbd-srv.o
2025-10-02T15:46:27.1473953Z AR net/ncsi/built-in.a
2025-10-02T15:46:27.1756245Z CC net/xdp/xsk.o
2025-10-02T15:46:27.6516595Z CC [M] drivers/gpu/drm/i915/i915_sysfs.o
2025-10-02T15:46:27.7614244Z CC [M] drivers/block/rnbd/rnbd-srv-dev.o
2025-10-02T15:46:27.8232330Z CC [M] drivers/gpu/drm/amd/amdgpu/nbio_v6_1.o
2025-10-02T15:46:28.6193169Z CC [M] drivers/block/rnbd/rnbd-srv-sysfs.o
2025-10-02T15:46:28.8540024Z CC [M] fs/btrfs/async-thread.o
2025-10-02T15:46:29.0464947Z CC net/xdp/xdp_umem.o
2025-10-02T15:46:29.0578149Z CC [M] drivers/gpu/drm/i915/i915_utils.o
2025-10-02T15:46:29.1657955Z CC [M] drivers/gpu/drm/amd/amdgpu/soc15.o
2025-10-02T15:46:29.4755183Z LD [M] drivers/block/rnbd/rnbd-client.o
2025-10-02T15:46:29.5118179Z LD [M] drivers/block/rnbd/rnbd-server.o
2025-10-02T15:46:29.6274349Z CC [M] drivers/block/xen-blkback/blkback.o
2025-10-02T15:46:30.1382081Z CC [M] fs/btrfs/ioctl.o
2025-10-02T15:46:30.2915189Z CC [M] drivers/gpu/drm/i915/intel_device_info.o
2025-10-02T15:46:30.3740373Z CC net/xdp/xsk_queue.o
2025-10-02T15:46:30.7993451Z CC [M] drivers/gpu/drm/amd/amdgpu/emu_soc.o
2025-10-02T15:46:31.4214911Z CC net/xdp/xskmap.o
2025-10-02T15:46:31.4517001Z CC [M] drivers/block/xen-blkback/xenbus.o
2025-10-02T15:46:31.8652466Z CC [M] drivers/gpu/drm/amd/amdgpu/mxgpu_ai.o
2025-10-02T15:46:31.9030338Z CC [M] drivers/gpu/drm/i915/intel_dram.o
2025-10-02T15:46:32.6240166Z CC net/xdp/xsk_buff_pool.o
2025-10-02T15:46:33.1225339Z LD [M] drivers/block/xen-blkback/xen-blkback.o
2025-10-02T15:46:33.2135498Z CC [M] drivers/block/drbd/drbd_bitmap.o
2025-10-02T15:46:33.2465182Z CC [M] drivers/gpu/drm/amd/amdgpu/nbio_v7_0.o
2025-10-02T15:46:33.4037527Z CC [M] drivers/gpu/drm/i915/intel_memory_region.o
2025-10-02T15:46:34.1105218Z CC [M] net/xdp/xsk_diag.o
2025-10-02T15:46:34.3143220Z CC [M] fs/btrfs/locking.o
2025-10-02T15:46:34.6426339Z CC [M] drivers/gpu/drm/amd/amdgpu/vega10_reg_init.o
2025-10-02T15:46:35.1990089Z CC [M] drivers/gpu/drm/i915/intel_pch.o
2025-10-02T15:46:35.4484760Z AR net/xdp/built-in.a
2025-10-02T15:46:35.4785896Z CC [M] drivers/block/drbd/drbd_proc.o
2025-10-02T15:46:35.4962368Z CC net/mptcp/protocol.o
2025-10-02T15:46:35.5744338Z CC [M] drivers/gpu/drm/amd/amdgpu/vega20_reg_init.o
2025-10-02T15:46:35.5913008Z CC [M] fs/btrfs/orphan.o
2025-10-02T15:46:36.4843595Z CC [M] drivers/gpu/drm/i915/intel_pm.o
2025-10-02T15:46:36.6180404Z CC [M] fs/btrfs/export.o
2025-10-02T15:46:36.6553187Z CC [M] drivers/gpu/drm/amd/amdgpu/nbio_v7_4.o
2025-10-02T15:46:36.8771033Z CC [M] drivers/block/drbd/drbd_worker.o
2025-10-02T15:46:37.7718082Z CC [M] fs/btrfs/tree-log.o
2025-10-02T15:46:38.0830747Z CC [M] drivers/gpu/drm/amd/amdgpu/nbio_v2_3.o
2025-10-02T15:46:38.7441552Z CC net/mptcp/subflow.o
2025-10-02T15:46:39.4333707Z CC [M] drivers/block/drbd/drbd_receiver.o
2025-10-02T15:46:39.4936622Z CC [M] drivers/gpu/drm/amd/amdgpu/nv.o
2025-10-02T15:46:40.9856281Z CC net/mptcp/options.o
2025-10-02T15:46:41.0870507Z CC [M] drivers/gpu/drm/amd/amdgpu/navi10_reg_init.o
2025-10-02T15:46:42.0066917Z CC [M] fs/btrfs/free-space-cache.o
2025-10-02T15:46:42.2546786Z CC [M] drivers/gpu/drm/amd/amdgpu/navi14_reg_init.o
2025-10-02T15:46:42.3989987Z CC [M] drivers/gpu/drm/i915/intel_runtime_pm.o
2025-10-02T15:46:42.5568763Z CC net/mptcp/token.o
2025-10-02T15:46:43.5226532Z CC [M] drivers/gpu/drm/amd/amdgpu/arct_reg_init.o
2025-10-02T15:46:43.9416884Z CC net/mptcp/crypto.o
2025-10-02T15:46:44.1404635Z CC [M] drivers/gpu/drm/i915/intel_sideband.o
2025-10-02T15:46:44.4821798Z CC [M] drivers/block/drbd/drbd_req.o
2025-10-02T15:46:44.4922466Z CC [M] drivers/gpu/drm/amd/amdgpu/navi12_reg_init.o
2025-10-02T15:46:44.7180701Z CC [M] fs/btrfs/zlib.o
2025-10-02T15:46:45.1445560Z CC net/mptcp/ctrl.o
2025-10-02T15:46:45.5154648Z CC [M] drivers/gpu/drm/amd/amdgpu/mxgpu_nv.o
2025-10-02T15:46:45.5423660Z CC [M] fs/btrfs/lzo.o
2025-10-02T15:46:45.5726699Z CC [M] drivers/gpu/drm/i915/intel_uncore.o
2025-10-02T15:46:46.4195438Z CC [M] fs/btrfs/zstd.o
2025-10-02T15:46:46.5144155Z CC net/mptcp/pm.o
2025-10-02T15:46:46.9093420Z CC [M] drivers/gpu/drm/amd/amdgpu/sienna_cichlid_reg_init.o
2025-10-02T15:46:47.0616517Z CC [M] drivers/block/drbd/drbd_actlog.o
2025-10-02T15:46:47.7923485Z CC [M] fs/btrfs/compression.o
2025-10-02T15:46:47.8052470Z CC [M] drivers/gpu/drm/amd/amdgpu/df_v1_7.o
2025-10-02T15:46:48.0505535Z CC net/mptcp/diag.o
2025-10-02T15:46:48.8637880Z CC [M] drivers/gpu/drm/amd/amdgpu/df_v3_6.o
2025-10-02T15:46:49.1783816Z CC [M] drivers/block/drbd/drbd_main.o
2025-10-02T15:46:49.3807132Z CC net/mptcp/mib.o
2025-10-02T15:46:49.6839371Z CC [M] drivers/gpu/drm/i915/intel_wakeref.o
2025-10-02T15:46:49.8265680Z CC [M] fs/btrfs/delayed-ref.o
2025-10-02T15:46:50.2411362Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v7_0.o
2025-10-02T15:46:50.3562542Z CC [M] drivers/gpu/drm/i915/vlv_suspend.o
2025-10-02T15:46:50.5741161Z CC net/mptcp/pm_netlink.o
2025-10-02T15:46:51.5814916Z CC [M] fs/btrfs/relocation.o
2025-10-02T15:46:51.8276260Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v8_0.o
2025-10-02T15:46:51.9885592Z CC [M] drivers/gpu/drm/i915/i915_memcpy.o
2025-10-02T15:46:52.2837496Z CC [M] drivers/gpu/drm/i915/i915_mm.o
2025-10-02T15:46:52.4995472Z CC net/mptcp/syncookies.o
2025-10-02T15:46:53.1500696Z CC [M] drivers/block/drbd/drbd_strings.o
2025-10-02T15:46:53.2901216Z CC [M] drivers/block/drbd/drbd_nl.o
2025-10-02T15:46:53.4362735Z CC [M] drivers/gpu/drm/i915/i915_sw_fence.o
2025-10-02T15:46:53.4881223Z CC [M] drivers/gpu/drm/amd/amdgpu/gfxhub_v1_0.o
2025-10-02T15:46:53.5672215Z CC [M] net/mptcp/mptcp_diag.o
2025-10-02T15:46:54.2434728Z CC [M] drivers/gpu/drm/i915/i915_sw_fence_work.o
2025-10-02T15:46:54.7514115Z AR net/mptcp/built-in.a
2025-10-02T15:46:54.7642258Z CC [M] drivers/gpu/drm/i915/i915_syncmap.o
2025-10-02T15:46:54.8176269Z CC [M] net/llc/llc_core.o
2025-10-02T15:46:54.8442023Z CC [M] drivers/gpu/drm/amd/amdgpu/mmhub_v1_0.o
2025-10-02T15:46:55.3267707Z CC [M] drivers/gpu/drm/i915/i915_user_extensions.o
2025-10-02T15:46:55.4872986Z CC [M] fs/btrfs/delayed-inode.o
2025-10-02T15:46:55.6559819Z CC [M] drivers/gpu/drm/i915/i915_ioc32.o
2025-10-02T15:46:55.8850197Z CC [M] net/llc/llc_input.o
2025-10-02T15:46:56.0661324Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v9_0.o
2025-10-02T15:46:56.8647692Z CC [M] drivers/gpu/drm/i915/i915_debugfs.o
2025-10-02T15:46:56.8771259Z CC [M] net/llc/llc_output.o
2025-10-02T15:46:57.7020743Z CC [M] net/llc/llc_if.o
2025-10-02T15:46:57.7279934Z CC [M] fs/btrfs/scrub.o
2025-10-02T15:46:57.9170314Z CC [M] drivers/gpu/drm/amd/amdgpu/gfxhub_v1_1.o
2025-10-02T15:46:58.1854319Z CC [M] drivers/block/drbd/drbd_interval.o
2025-10-02T15:46:58.5567217Z CC [M] drivers/block/drbd/drbd_state.o
2025-10-02T15:46:58.7326804Z CC [M] net/llc/llc_c_ev.o
2025-10-02T15:46:59.0632364Z CC [M] drivers/gpu/drm/amd/amdgpu/mmhub_v9_4.o
2025-10-02T15:46:59.3266191Z CC [M] drivers/gpu/drm/i915/i915_debugfs_params.o
2025-10-02T15:47:00.2229389Z CC [M] net/llc/llc_c_ac.o
2025-10-02T15:47:00.5851107Z CC [M] drivers/gpu/drm/amd/amdgpu/gfxhub_v2_0.o
2025-10-02T15:47:00.7113441Z CC [M] drivers/gpu/drm/i915/display/intel_display_debugfs.o
2025-10-02T15:47:01.0623973Z CC [M] fs/btrfs/reada.o
2025-10-02T15:47:01.5642629Z CC [M] drivers/block/drbd/drbd_nla.o
2025-10-02T15:47:01.9229805Z CC [M] net/llc/llc_conn.o
2025-10-02T15:47:02.1391194Z CC [M] drivers/gpu/drm/amd/amdgpu/mmhub_v2_0.o
2025-10-02T15:47:02.3090308Z CC [M] drivers/block/drbd/drbd_debugfs.o
2025-10-02T15:47:02.8211243Z CC [M] fs/btrfs/backref.o
2025-10-02T15:47:02.9566686Z CC [M] drivers/gpu/drm/i915/display/intel_pipe_crc.o
2025-10-02T15:47:03.4050840Z CC [M] drivers/gpu/drm/amd/amdgpu/gmc_v10_0.o
2025-10-02T15:47:03.4173685Z CC [M] net/llc/llc_c_st.o
2025-10-02T15:47:04.1856782Z LD [M] drivers/block/drbd/drbd.o
2025-10-02T15:47:04.2866290Z CC [M] drivers/block/mtip32xx/mtip32xx.o
2025-10-02T15:47:04.5426616Z CC [M] drivers/gpu/drm/i915/i915_pmu.o
2025-10-02T15:47:04.6185570Z CC [M] net/llc/llc_pdu.o
2025-10-02T15:47:04.9574907Z CC [M] drivers/gpu/drm/amd/amdgpu/gfxhub_v2_1.o
2025-10-02T15:47:05.5079432Z CC [M] net/llc/llc_sap.o
2025-10-02T15:47:05.9334266Z CC [M] fs/btrfs/ulist.o
2025-10-02T15:47:06.2350925Z CC [M] drivers/gpu/drm/amd/amdgpu/umc_v6_1.o
2025-10-02T15:47:06.2624969Z CC [M] drivers/gpu/drm/i915/gt/debugfs_engines.o
2025-10-02T15:47:06.8739734Z CC [M] net/llc/llc_s_ac.o
2025-10-02T15:47:07.1122244Z CC [M] fs/btrfs/qgroup.o
2025-10-02T15:47:07.1767699Z CC [M] drivers/block/rsxx/config.o
2025-10-02T15:47:07.4895577Z CC [M] drivers/gpu/drm/i915/gt/debugfs_gt.o
2025-10-02T15:47:07.6636407Z CC [M] drivers/gpu/drm/amd/amdgpu/umc_v6_0.o
2025-10-02T15:47:07.8019136Z CC [M] drivers/block/rsxx/core.o
2025-10-02T15:47:07.8952586Z CC [M] net/llc/llc_s_ev.o
2025-10-02T15:47:08.7357321Z CC [M] drivers/gpu/drm/amd/amdgpu/umc_v8_7.o
2025-10-02T15:47:08.8065260Z CC [M] drivers/gpu/drm/i915/gt/debugfs_gt_pm.o
2025-10-02T15:47:08.9540364Z CC [M] drivers/block/rsxx/cregs.o
2025-10-02T15:47:09.2145028Z CC [M] net/llc/llc_s_st.o
2025-10-02T15:47:09.7955137Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_irq.o
2025-10-02T15:47:09.8714073Z CC [M] drivers/block/rsxx/dev.o
2025-10-02T15:47:10.0895024Z CC [M] net/llc/af_llc.o
2025-10-02T15:47:10.5977305Z CC [M] drivers/gpu/drm/i915/gt/gen2_engine_cs.o
2025-10-02T15:47:10.7358627Z CC [M] fs/btrfs/send.o
2025-10-02T15:47:10.7852107Z CC [M] drivers/block/rsxx/dma.o
2025-10-02T15:47:11.2783476Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ih.o
2025-10-02T15:47:11.8494417Z CC [M] net/llc/llc_station.o
2025-10-02T15:47:11.9394378Z CC [M] drivers/gpu/drm/i915/gt/gen6_engine_cs.o
2025-10-02T15:47:12.1000730Z LD [M] drivers/block/rsxx/rsxx.o
2025-10-02T15:47:12.1658727Z CC [M] drivers/block/zram/zcomp.o
2025-10-02T15:47:12.4051988Z CC [M] drivers/gpu/drm/amd/amdgpu/iceland_ih.o
2025-10-02T15:47:12.7464725Z CC [M] drivers/block/zram/zram_drv.o
2025-10-02T15:47:13.1248604Z CC [M] drivers/gpu/drm/i915/gt/gen6_ppgtt.o
2025-10-02T15:47:13.1417901Z CC [M] net/llc/llc_proc.o
2025-10-02T15:47:13.5811343Z CC [M] drivers/gpu/drm/amd/amdgpu/tonga_ih.o
2025-10-02T15:47:14.5629310Z LD [M] drivers/block/zram/zram.o
2025-10-02T15:47:14.6110553Z CC [M] net/llc/sysctl_net_llc.o
2025-10-02T15:47:14.6358820Z CC [M] drivers/block/null_blk/main.o
2025-10-02T15:47:14.7578292Z CC [M] drivers/gpu/drm/amd/amdgpu/cz_ih.o
2025-10-02T15:47:14.7633324Z CC [M] drivers/gpu/drm/i915/gt/gen7_renderclear.o
2025-10-02T15:47:15.3506871Z LD [M] net/llc/llc.o
2025-10-02T15:47:15.3687625Z LD [M] net/llc/llc2.o
2025-10-02T15:47:15.4591367Z CC [M] net/tls/tls_main.o
2025-10-02T15:47:15.6431578Z CC [M] fs/btrfs/dev-replace.o
2025-10-02T15:47:15.9883434Z CC [M] drivers/gpu/drm/amd/amdgpu/vega10_ih.o
2025-10-02T15:47:16.2355758Z CC [M] drivers/gpu/drm/i915/gt/gen8_ppgtt.o
2025-10-02T15:47:16.5076477Z CC [M] drivers/block/null_blk/trace.o
2025-10-02T15:47:17.1371535Z CC [M] drivers/block/null_blk/zoned.o
2025-10-02T15:47:17.1933411Z CC [M] net/tls/tls_sw.o
2025-10-02T15:47:17.2531278Z CC [M] drivers/gpu/drm/amd/amdgpu/navi10_ih.o
2025-10-02T15:47:17.3641125Z CC [M] fs/btrfs/raid56.o
2025-10-02T15:47:18.4578339Z CC [M] drivers/gpu/drm/i915/gt/intel_breadcrumbs.o
2025-10-02T15:47:18.5370681Z LD [M] drivers/block/null_blk/null_blk.o
2025-10-02T15:47:18.5932902Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_psp.o
2025-10-02T15:47:18.6001058Z AR drivers/block/built-in.a
2025-10-02T15:47:18.6264105Z CC [M] drivers/block/floppy.o
2025-10-02T15:47:19.9948830Z CC [M] fs/btrfs/uuid-tree.o
2025-10-02T15:47:20.1762059Z CC [M] net/tls/tls_proc.o
2025-10-02T15:47:20.2903442Z CC [M] drivers/gpu/drm/i915/gt/intel_context.o
2025-10-02T15:47:20.5418153Z CC [M] drivers/gpu/drm/amd/amdgpu/psp_v3_1.o
2025-10-02T15:47:21.3704289Z CC [M] net/tls/trace.o
2025-10-02T15:47:21.5588873Z CC [M] fs/btrfs/props.o
2025-10-02T15:47:21.6732236Z CC [M] drivers/gpu/drm/amd/amdgpu/psp_v10_0.o
2025-10-02T15:47:21.7470883Z CC [M] drivers/gpu/drm/i915/gt/intel_context_param.o
2025-10-02T15:47:22.2524612Z CC [M] drivers/block/brd.o
2025-10-02T15:47:22.4388452Z CC [M] net/tls/tls_device.o
2025-10-02T15:47:22.7921545Z CC [M] fs/btrfs/free-space-tree.o
2025-10-02T15:47:22.8992143Z CC [M] drivers/gpu/drm/i915/gt/intel_context_sseu.o
2025-10-02T15:47:22.9531923Z CC [M] drivers/gpu/drm/amd/amdgpu/psp_v11_0.o
2025-10-02T15:47:23.4679947Z CC [M] drivers/block/loop.o
2025-10-02T15:47:24.1966778Z CC [M] drivers/gpu/drm/i915/gt/intel_engine_cs.o
2025-10-02T15:47:24.2861651Z CC [M] drivers/gpu/drm/amd/amdgpu/psp_v12_0.o
2025-10-02T15:47:24.4891371Z CC [M] fs/btrfs/tree-checker.o
2025-10-02T15:47:24.7471688Z CC [M] net/tls/tls_device_fallback.o
2025-10-02T15:47:25.6314181Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_v10_0.o
2025-10-02T15:47:25.8690265Z CC [M] drivers/block/pktcdvd.o
2025-10-02T15:47:26.2362646Z CC [M] drivers/gpu/drm/i915/gt/intel_engine_heartbeat.o
2025-10-02T15:47:26.4740304Z LD [M] net/tls/tls.o
2025-10-02T15:47:26.5617048Z CC [M] net/key/af_key.o
2025-10-02T15:47:26.6538382Z CC [M] fs/btrfs/space-info.o
2025-10-02T15:47:27.5093667Z CC [M] drivers/gpu/drm/i915/gt/intel_engine_pm.o
2025-10-02T15:47:28.1288212Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_v11_0.o
2025-10-02T15:47:28.2069084Z CC [M] drivers/block/skd_main.o
2025-10-02T15:47:28.6190929Z CC [M] fs/btrfs/block-rsv.o
2025-10-02T15:47:28.7889033Z CC [M] drivers/gpu/drm/i915/gt/intel_engine_user.o
2025-10-02T15:47:29.5985473Z CC [M] net/bridge/netfilter/nft_meta_bridge.o
2025-10-02T15:47:30.2159307Z CC [M] drivers/gpu/drm/i915/gt/intel_ggtt.o
2025-10-02T15:47:30.2190418Z CC [M] fs/btrfs/delalloc-space.o
2025-10-02T15:47:30.3986145Z CC [M] drivers/block/umem.o
2025-10-02T15:47:30.4745907Z CC [M] net/bridge/netfilter/nft_reject_bridge.o
2025-10-02T15:47:30.9566113Z CC [M] drivers/gpu/drm/amd/amdgpu/dce_virtual.o
2025-10-02T15:47:31.5368049Z CC [M] drivers/block/nbd.o
2025-10-02T15:47:31.7706599Z CC [M] fs/btrfs/block-group.o
2025-10-02T15:47:31.9779996Z CC [M] net/bridge/netfilter/nf_conntrack_bridge.o
2025-10-02T15:47:32.0413872Z CC [M] drivers/gpu/drm/i915/gt/intel_ggtt_fencing.o
2025-10-02T15:47:32.3812940Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.o
2025-10-02T15:47:33.5178730Z CC [M] net/bridge/netfilter/nf_log_bridge.o
2025-10-02T15:47:33.7912996Z CC [M] drivers/gpu/drm/i915/gt/intel_gt.o
2025-10-02T15:47:33.9311610Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_rlc.o
2025-10-02T15:47:34.2085940Z CC [M] drivers/block/cryptoloop.o
2025-10-02T15:47:34.7843589Z CC [M] net/bridge/netfilter/ebtables.o
2025-10-02T15:47:34.7913574Z CC [M] fs/btrfs/discard.o
2025-10-02T15:47:34.8864547Z CC [M] drivers/block/virtio_blk.o
2025-10-02T15:47:35.1429246Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v8_0.o
2025-10-02T15:47:35.6611815Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_buffer_pool.o
2025-10-02T15:47:36.1668946Z CC [M] fs/btrfs/reflink.o
2025-10-02T15:47:36.1793032Z CC [M] drivers/block/xen-blkfront.o
2025-10-02T15:47:37.1093578Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_clock_utils.o
2025-10-02T15:47:37.6544747Z CC [M] fs/btrfs/acl.o
2025-10-02T15:47:38.0055117Z CC [M] net/bridge/netfilter/ebtable_broute.o
2025-10-02T15:47:38.3105841Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_irq.o
2025-10-02T15:47:38.7944973Z LD [M] fs/btrfs/btrfs.o
2025-10-02T15:47:39.1741399Z CC [M] fs/gfs2/acl.o
2025-10-02T15:47:39.2149821Z CC [M] net/bridge/netfilter/ebtable_filter.o
2025-10-02T15:47:39.5033220Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v9_0.o
2025-10-02T15:47:39.6360680Z CC [M] drivers/block/rbd.o
2025-10-02T15:47:39.7190286Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_pm.o
2025-10-02T15:47:39.8429453Z CC [M] fs/gfs2/bmap.o
2025-10-02T15:47:40.2681023Z CC [M] net/bridge/netfilter/ebtable_nat.o
2025-10-02T15:47:41.0475223Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_pm_irq.o
2025-10-02T15:47:41.4357314Z CC [M] net/bridge/netfilter/ebt_802_3.o
2025-10-02T15:47:42.3467448Z CC [M] fs/gfs2/dir.o
2025-10-02T15:47:42.3711484Z CC [M] drivers/gpu/drm/i915/gt/intel_gt_requests.o
2025-10-02T15:47:42.4741015Z CC [M] net/bridge/netfilter/ebt_among.o
2025-10-02T15:47:43.7531064Z CC [M] net/bridge/netfilter/ebt_arp.o
2025-10-02T15:47:43.8982006Z CC [M] drivers/gpu/drm/i915/gt/intel_gtt.o
2025-10-02T15:47:44.4090625Z CC [M] fs/gfs2/xattr.o
2025-10-02T15:47:44.5418323Z LD [M] drivers/block/skd.o
2025-10-02T15:47:44.7109319Z CC [M] net/bridge/netfilter/ebt_ip.o
2025-10-02T15:47:44.7120670Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v9_4.o
2025-10-02T15:47:44.8562299Z CC [M] net/dsa/dsa.o
2025-10-02T15:47:45.4268560Z CC [M] drivers/gpu/drm/i915/gt/intel_llc.o
2025-10-02T15:47:45.9752718Z CC [M] drivers/gpu/drm/amd/amdgpu/gfx_v10_0.o
2025-10-02T15:47:45.9898584Z CC [M] net/bridge/netfilter/ebt_ip6.o
2025-10-02T15:47:46.1668396Z CC [M] net/dsa/dsa2.o
2025-10-02T15:47:46.2456889Z CC [M] fs/gfs2/glock.o
2025-10-02T15:47:46.6661374Z CC [M] drivers/gpu/drm/i915/gt/intel_lrc.o
2025-10-02T15:47:47.1169412Z CC [M] net/bridge/netfilter/ebt_limit.o
2025-10-02T15:47:47.9338272Z CC [M] net/dsa/master.o
2025-10-02T15:47:48.1117577Z CC [M] net/bridge/netfilter/ebt_mark_m.o
2025-10-02T15:47:49.2301823Z CC [M] net/bridge/netfilter/ebt_pkttype.o
2025-10-02T15:47:49.4731161Z CC [M] net/dsa/port.o
2025-10-02T15:47:49.8164830Z CC [M] fs/gfs2/glops.o
2025-10-02T15:47:50.1341124Z CC [M] net/bridge/netfilter/ebt_stp.o
2025-10-02T15:47:50.8751086Z CC [M] net/dsa/slave.o
2025-10-02T15:47:50.8752288Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_sdma.o
2025-10-02T15:47:50.9287425Z CC [M] drivers/gpu/drm/i915/gt/intel_mocs.o
2025-10-02T15:47:51.0690452Z CC [M] fs/gfs2/log.o
2025-10-02T15:47:51.2224763Z CC [M] net/bridge/netfilter/ebt_vlan.o
2025-10-02T15:47:51.8506127Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v2_4.o
2025-10-02T15:47:52.2566029Z CC [M] net/bridge/netfilter/ebt_arpreply.o
2025-10-02T15:47:52.3013509Z CC [M] drivers/gpu/drm/i915/gt/intel_ppgtt.o
2025-10-02T15:47:53.0301293Z CC [M] fs/gfs2/lops.o
2025-10-02T15:47:53.1236220Z CC [M] net/dsa/switch.o
2025-10-02T15:47:53.3521231Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v3_0.o
2025-10-02T15:47:53.4863807Z CC [M] net/bridge/netfilter/ebt_mark.o
2025-10-02T15:47:53.9098879Z CC [M] drivers/gpu/drm/i915/gt/intel_rc6.o
2025-10-02T15:47:54.5177499Z CC [M] net/dsa/tag_8021q.o
2025-10-02T15:47:54.5474099Z CC [M] fs/gfs2/main.o
2025-10-02T15:47:54.7117320Z CC [M] net/bridge/netfilter/ebt_dnat.o
2025-10-02T15:47:55.2667642Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v4_0.o
2025-10-02T15:47:55.2879038Z CC [M] fs/gfs2/meta_io.o
2025-10-02T15:47:55.4115473Z CC [M] drivers/gpu/drm/i915/gt/intel_renderstate.o
2025-10-02T15:47:55.8956890Z CC [M] net/bridge/netfilter/ebt_redirect.o
2025-10-02T15:47:56.1924490Z CC [M] net/dsa/tag_ar9331.o
2025-10-02T15:47:56.6003874Z CC [M] drivers/gpu/drm/i915/gt/intel_reset.o
2025-10-02T15:47:56.7331102Z CC [M] fs/gfs2/aops.o
2025-10-02T15:47:57.0914528Z CC [M] net/bridge/netfilter/ebt_snat.o
2025-10-02T15:47:57.4251362Z CC [M] net/dsa/tag_brcm.o
2025-10-02T15:47:57.4720353Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v5_0.o
2025-10-02T15:47:58.1183939Z CC [M] net/bridge/netfilter/ebt_log.o
2025-10-02T15:47:58.2280730Z CC [M] fs/gfs2/dentry.o
2025-10-02T15:47:58.8059453Z CC [M] fs/gfs2/export.o
2025-10-02T15:47:58.8286104Z CC [M] drivers/gpu/drm/i915/gt/intel_ring.o
2025-10-02T15:47:58.8635723Z CC [M] net/dsa/tag_dsa.o
2025-10-02T15:47:59.3438405Z CC [M] net/bridge/netfilter/ebt_nflog.o
2025-10-02T15:47:59.3565225Z CC [M] drivers/gpu/drm/amd/amdgpu/sdma_v5_2.o
2025-10-02T15:47:59.6255825Z CC [M] fs/gfs2/file.o
2025-10-02T15:48:00.1030576Z CC [M] net/dsa/tag_edsa.o
2025-10-02T15:48:00.2681184Z CC [M] drivers/gpu/drm/i915/gt/intel_ring_submission.o
2025-10-02T15:48:00.5789819Z CC [M] net/bridge/br.o
2025-10-02T15:48:01.2911569Z CC [M] fs/gfs2/ops_fstype.o
2025-10-02T15:48:01.3328813Z CC [M] net/dsa/tag_gswip.o
2025-10-02T15:48:01.6832890Z CC [M] drivers/gpu/drm/amd/amdgpu/mes_v10_1.o
2025-10-02T15:48:01.8393044Z CC [M] net/bridge/br_device.o
2025-10-02T15:48:02.1753686Z CC [M] drivers/gpu/drm/i915/gt/intel_rps.o
2025-10-02T15:48:02.4202880Z CC [M] net/dsa/tag_ksz.o
2025-10-02T15:48:03.0735233Z CC [M] fs/gfs2/inode.o
2025-10-02T15:48:03.2091021Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_uvd.o
2025-10-02T15:48:03.3647082Z CC [M] net/bridge/br_fdb.o
2025-10-02T15:48:03.5423236Z CC [M] net/dsa/tag_rtl4_a.o
2025-10-02T15:48:04.4484173Z CC [M] drivers/gpu/drm/i915/gt/intel_sseu.o
2025-10-02T15:48:04.7605172Z CC [M] net/dsa/tag_lan9303.o
2025-10-02T15:48:04.8824792Z CC [M] fs/gfs2/quota.o
2025-10-02T15:48:04.9502816Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v5_0.o
2025-10-02T15:48:05.7881762Z CC [M] net/bridge/br_forward.o
2025-10-02T15:48:05.9710102Z CC [M] net/dsa/tag_mtk.o
2025-10-02T15:48:06.4067436Z CC [M] drivers/gpu/drm/i915/gt/intel_sseu_debugfs.o
2025-10-02T15:48:06.5066942Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v6_0.o
2025-10-02T15:48:06.6589073Z CC [M] fs/gfs2/recovery.o
2025-10-02T15:48:07.0131016Z CC [M] net/bridge/br_if.o
2025-10-02T15:48:07.3649120Z CC [M] net/dsa/tag_ocelot.o
2025-10-02T15:48:07.5655779Z CC [M] fs/gfs2/rgrp.o
2025-10-02T15:48:08.1493322Z CC [M] drivers/gpu/drm/i915/gt/intel_timeline.o
2025-10-02T15:48:08.5088527Z CC [M] drivers/gpu/drm/amd/amdgpu/uvd_v7_0.o
2025-10-02T15:48:08.5796664Z CC [M] net/dsa/tag_qca.o
2025-10-02T15:48:08.6823349Z CC [M] net/bridge/br_input.o
2025-10-02T15:48:09.6880050Z CC [M] drivers/gpu/drm/i915/gt/intel_workarounds.o
2025-10-02T15:48:09.7850957Z CC [M] net/dsa/tag_sja1105.o
2025-10-02T15:48:09.8920617Z CC [M] fs/gfs2/super.o
2025-10-02T15:48:10.3069844Z CC [M] net/bridge/br_ioctl.o
2025-10-02T15:48:10.7571260Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vce.o
2025-10-02T15:48:11.2768782Z CC [M] net/dsa/tag_trailer.o
2025-10-02T15:48:11.5831327Z CC [M] fs/gfs2/sys.o
2025-10-02T15:48:11.6269918Z CC [M] net/bridge/br_stp.o
2025-10-02T15:48:11.9790862Z CC [M] drivers/gpu/drm/i915/gt/shmem_utils.o
2025-10-02T15:48:12.2259046Z CC [M] drivers/gpu/drm/amd/amdgpu/vce_v3_0.o
2025-10-02T15:48:12.6321645Z LD [M] net/dsa/dsa_core.o
2025-10-02T15:48:12.8437090Z CC [M] net/bridge/br_stp_bpdu.o
2025-10-02T15:48:12.8652775Z CC [M] fs/gfs2/trans.o
2025-10-02T15:48:12.9154054Z CC [M] drivers/gpu/drm/i915/gt/sysfs_engines.o
2025-10-02T15:48:13.1884418Z CC [M] drivers/gpu/drm/mgag200/mgag200_drv.o
2025-10-02T15:48:13.5338962Z CC [M] drivers/gpu/drm/amd/amdgpu/vce_v4_0.o
2025-10-02T15:48:14.0734155Z CC [M] fs/gfs2/util.o
2025-10-02T15:48:14.1589272Z CC [M] drivers/gpu/drm/mgag200/mgag200_i2c.o
2025-10-02T15:48:14.2308995Z CC [M] drivers/gpu/drm/i915/gt/gen6_renderstate.o
2025-10-02T15:48:14.2337147Z CC [M] net/bridge/br_stp_if.o
2025-10-02T15:48:14.5631715Z CC [M] drivers/gpu/drm/i915/gt/gen7_renderstate.o
2025-10-02T15:48:14.9145113Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_vcn.o
2025-10-02T15:48:15.0255752Z CC [M] fs/gfs2/lock_dlm.o
2025-10-02T15:48:15.0331275Z CC [M] drivers/gpu/drm/mgag200/mgag200_mm.o
2025-10-02T15:48:15.0463050Z CC [M] drivers/gpu/drm/i915/gt/gen8_renderstate.o
2025-10-02T15:48:15.3817090Z CC [M] drivers/gpu/drm/i915/gt/gen9_renderstate.o
2025-10-02T15:48:15.6554105Z CC [M] net/bridge/br_stp_timer.o
2025-10-02T15:48:15.6967848Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_busy.o
2025-10-02T15:48:15.7461987Z CC [M] drivers/gpu/drm/mgag200/mgag200_mode.o
2025-10-02T15:48:16.3951111Z CC [M] drivers/gpu/drm/amd/amdgpu/vcn_v1_0.o
2025-10-02T15:48:16.5192037Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_clflush.o
2025-10-02T15:48:16.8139144Z CC [M] net/bridge/br_netlink.o
2025-10-02T15:48:16.9598056Z LD [M] fs/gfs2/gfs2.o
2025-10-02T15:48:17.1858805Z CC [M] fs/f2fs/dir.o
2025-10-02T15:48:17.6006226Z LD [M] drivers/gpu/drm/mgag200/mgag200.o
2025-10-02T15:48:17.6608107Z AR drivers/misc/eeprom/built-in.a
2025-10-02T15:48:17.6713942Z CC [M] drivers/misc/eeprom/at24.o
2025-10-02T15:48:17.7260681Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_client_blt.o
2025-10-02T15:48:18.8281615Z CC [M] drivers/misc/eeprom/eeprom.o
2025-10-02T15:48:18.8663266Z CC [M] drivers/gpu/drm/amd/amdgpu/vcn_v2_0.o
2025-10-02T15:48:18.8966832Z CC [M] net/bridge/br_netlink_tunnel.o
2025-10-02T15:48:19.0875074Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_context.o
2025-10-02T15:48:19.3225068Z CC [M] fs/f2fs/file.o
2025-10-02T15:48:19.5383394Z CC [M] drivers/misc/eeprom/max6875.o
2025-10-02T15:48:20.1933478Z CC [M] drivers/misc/eeprom/eeprom_93cx6.o
2025-10-02T15:48:20.3308053Z CC [M] net/bridge/br_arp_nd_proxy.o
2025-10-02T15:48:20.7932656Z CC [M] drivers/misc/eeprom/idt_89hpesx.o
2025-10-02T15:48:21.7878061Z CC [M] drivers/gpu/drm/amd/amdgpu/vcn_v2_5.o
2025-10-02T15:48:21.8622442Z CC [M] drivers/misc/eeprom/ee1004.o
2025-10-02T15:48:21.9018099Z CC [M] net/bridge/br_sysfs_if.o
2025-10-02T15:48:21.9358778Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_dmabuf.o
2025-10-02T15:48:22.6522240Z AR drivers/misc/cb710/built-in.a
2025-10-02T15:48:22.6743704Z CC [M] drivers/misc/cb710/core.o
2025-10-02T15:48:23.2913257Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_domain.o
2025-10-02T15:48:23.4431234Z CC [M] net/bridge/br_sysfs_br.o
2025-10-02T15:48:23.5715210Z CC [M] drivers/misc/cb710/sgbuf2.o
2025-10-02T15:48:24.3211541Z LD [M] drivers/misc/cb710/cb710.o
2025-10-02T15:48:24.3357440Z CC [M] fs/f2fs/inode.o
2025-10-02T15:48:24.4079945Z AR drivers/misc/ti-st/built-in.a
2025-10-02T15:48:24.4314533Z CC [M] drivers/misc/ti-st/st_core.o
2025-10-02T15:48:24.7996630Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o
2025-10-02T15:48:24.8180532Z CC [M] drivers/gpu/drm/amd/amdgpu/vcn_v3_0.o
2025-10-02T15:48:25.1816189Z CC [M] net/bridge/br_nf_core.o
2025-10-02T15:48:25.6303380Z CC [M] drivers/misc/ti-st/st_kim.o
2025-10-02T15:48:25.8864854Z CC [M] fs/f2fs/namei.o
2025-10-02T15:48:26.5109387Z CC [M] net/bridge/br_multicast.o
2025-10-02T15:48:26.6924047Z CC [M] drivers/misc/ti-st/st_ll.o
2025-10-02T15:48:27.4780568Z LD [M] drivers/misc/ti-st/st_drv.o
2025-10-02T15:48:27.5279258Z AR drivers/misc/lis3lv02d/built-in.a
2025-10-02T15:48:27.5388862Z CC [M] drivers/misc/lis3lv02d/lis3lv02d.o
2025-10-02T15:48:27.9792079Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_jpeg.o
2025-10-02T15:48:28.2082117Z CC [M] fs/f2fs/hash.o
2025-10-02T15:48:28.3842508Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_fence.o
2025-10-02T15:48:28.8739007Z CC [M] drivers/misc/lis3lv02d/lis3lv02d_i2c.o
2025-10-02T15:48:28.9853881Z CC [M] fs/f2fs/super.o
2025-10-02T15:48:29.1786073Z CC [M] drivers/gpu/drm/amd/amdgpu/jpeg_v1_0.o
2025-10-02T15:48:29.5058952Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_internal.o
2025-10-02T15:48:29.9044350Z AR drivers/misc/cardreader/built-in.a
2025-10-02T15:48:29.9154214Z CC [M] drivers/misc/cardreader/alcor_pci.o
2025-10-02T15:48:30.3496517Z CC [M] net/bridge/br_mdb.o
2025-10-02T15:48:30.5592907Z CC [M] drivers/misc/cardreader/rtsx_pcr.o
2025-10-02T15:48:30.8879741Z CC [M] drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.o
2025-10-02T15:48:31.2189354Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_object.o
2025-10-02T15:48:32.2512908Z CC [M] net/bridge/br_vlan.o
2025-10-02T15:48:32.3779060Z CC [M] drivers/misc/cardreader/rts5209.o
2025-10-02T15:48:32.4800207Z CC [M] drivers/gpu/drm/amd/amdgpu/jpeg_v2_5.o
2025-10-02T15:48:32.8557335Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_object_blt.o
2025-10-02T15:48:33.1228560Z CC [M] drivers/misc/cardreader/rts5229.o
2025-10-02T15:48:33.8148695Z CC [M] drivers/gpu/drm/amd/amdgpu/jpeg_v3_0.o
2025-10-02T15:48:33.9194001Z CC [M] drivers/misc/cardreader/rtl8411.o
2025-10-02T15:48:34.3633526Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_lmem.o
2025-10-02T15:48:34.8439761Z CC [M] net/bridge/br_vlan_tunnel.o
2025-10-02T15:48:34.9425896Z CC [M] drivers/misc/cardreader/rts5227.o
2025-10-02T15:48:34.9542400Z CC [M] drivers/gpu/drm/amd/amdgpu/athub_v1_0.o
2025-10-02T15:48:35.3994736Z CC [M] fs/f2fs/inline.o
2025-10-02T15:48:35.5078045Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_mman.o
2025-10-02T15:48:35.7369769Z CC [M] drivers/misc/cardreader/rts5249.o
2025-10-02T15:48:35.9976471Z CC [M] drivers/gpu/drm/amd/amdgpu/athub_v2_0.o
2025-10-02T15:48:36.2855490Z CC [M] net/bridge/br_vlan_options.o
2025-10-02T15:48:36.5695335Z CC [M] drivers/misc/cardreader/rts5260.o
2025-10-02T15:48:37.3120507Z CC [M] drivers/gpu/drm/amd/amdgpu/athub_v2_1.o
2025-10-02T15:48:37.4852415Z CC [M] net/bridge/br_switchdev.o
2025-10-02T15:48:37.4909020Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_pages.o
2025-10-02T15:48:37.5104406Z CC [M] drivers/misc/cardreader/rts5261.o
2025-10-02T15:48:37.6631847Z CC [M] fs/f2fs/checkpoint.o
2025-10-02T15:48:38.3815041Z CC [M] drivers/misc/cardreader/rts5228.o
2025-10-02T15:48:38.4554574Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.o
2025-10-02T15:48:38.8513276Z CC [M] net/bridge/br_mrp_switchdev.o
2025-10-02T15:48:39.1527934Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_phys.o
2025-10-02T15:48:39.2187966Z CC [M] drivers/misc/cardreader/rtsx_usb.o
2025-10-02T15:48:39.7936062Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_module.o
2025-10-02T15:48:40.1564249Z CC [M] net/bridge/br_mrp.o
2025-10-02T15:48:40.3891148Z LD [M] drivers/misc/cardreader/rtsx_pci.o
2025-10-02T15:48:40.4021915Z CC [M] fs/f2fs/gc.o
2025-10-02T15:48:40.4267113Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device.o
2025-10-02T15:48:40.5267748Z CC [M] drivers/misc/ibmasm/module.o
2025-10-02T15:48:40.9423384Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_pm.o
2025-10-02T15:48:41.3004618Z CC [M] drivers/misc/ibmasm/ibmasmfs.o
2025-10-02T15:48:41.5457482Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_chardev.o
2025-10-02T15:48:41.7696134Z CC [M] net/bridge/br_mrp_netlink.o
2025-10-02T15:48:42.2205611Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_region.o
2025-10-02T15:48:42.5293157Z CC [M] drivers/misc/ibmasm/event.o
2025-10-02T15:48:43.2977005Z CC [M] net/bridge/br_netfilter_hooks.o
2025-10-02T15:48:43.3614473Z CC [M] drivers/misc/ibmasm/command.o
2025-10-02T15:48:43.3682501Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_topology.o
2025-10-02T15:48:43.6855297Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_shmem.o
2025-10-02T15:48:43.8071286Z CC [M] fs/f2fs/data.o
2025-10-02T15:48:44.1165037Z CC [M] drivers/misc/ibmasm/remote.o
2025-10-02T15:48:44.9049804Z CC [M] drivers/misc/ibmasm/heartbeat.o
2025-10-02T15:48:45.0836921Z CC [M] net/bridge/br_netfilter_ipv6.o
2025-10-02T15:48:45.2156357Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_pasid.o
2025-10-02T15:48:45.4725354Z CC [M] drivers/misc/ibmasm/r_heartbeat.o
2025-10-02T15:48:45.7293273Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_shrinker.o
2025-10-02T15:48:46.0626178Z CC [M] drivers/misc/ibmasm/dot_command.o
2025-10-02T15:48:46.1661741Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_doorbell.o
2025-10-02T15:48:46.3855341Z LD [M] net/bridge/bridge.o
2025-10-02T15:48:46.4933198Z LD [M] net/bridge/br_netfilter.o
2025-10-02T15:48:46.5481275Z CC [M] net/appletalk/aarp.o
2025-10-02T15:48:46.5774572Z CC [M] drivers/misc/ibmasm/lowlevel.o
2025-10-02T15:48:47.1924796Z CC [M] drivers/misc/ibmasm/uart.o
2025-10-02T15:48:47.3123062Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_stolen.o
2025-10-02T15:48:47.3417152Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_flat_memory.o
2025-10-02T15:48:47.7706063Z LD [M] drivers/misc/ibmasm/ibmasm.o
2025-10-02T15:48:47.8317415Z CC [M] drivers/misc/c2port/core.o
2025-10-02T15:48:48.2076508Z CC [M] net/appletalk/ddp.o
2025-10-02T15:48:48.2153705Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_process.o
2025-10-02T15:48:48.6282940Z CC [M] drivers/misc/c2port/c2port-duramar2150.o
2025-10-02T15:48:48.7809987Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_throttle.o
2025-10-02T15:48:49.0196807Z CC [M] drivers/misc/altera-stapl/altera-lpt.o
2025-10-02T15:48:49.2482401Z CC [M] drivers/misc/altera-stapl/altera-jtag.o
2025-10-02T15:48:49.3681267Z CC [M] fs/f2fs/node.o
2025-10-02T15:48:49.8840730Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_tiling.o
2025-10-02T15:48:50.1314322Z CC [M] drivers/misc/altera-stapl/altera-comp.o
2025-10-02T15:48:50.4346961Z CC [M] net/appletalk/dev.o
2025-10-02T15:48:50.4695837Z CC [M] drivers/misc/altera-stapl/altera.o
2025-10-02T15:48:50.5800326Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_queue.o
2025-10-02T15:48:51.2852690Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_userptr.o
2025-10-02T15:48:51.4041486Z CC [M] net/appletalk/atalk_proc.o
2025-10-02T15:48:51.4838300Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager.o
2025-10-02T15:48:52.4999369Z LD [M] drivers/misc/altera-stapl/altera-stapl.o
2025-10-02T15:48:52.5206458Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager_cik.o
2025-10-02T15:48:52.5490196Z CC [M] net/appletalk/sysctl_net_atalk.o
2025-10-02T15:48:52.6084665Z CC [M] drivers/misc/mei/hdcp/mei_hdcp.o
2025-10-02T15:48:53.1388637Z CC [M] drivers/gpu/drm/i915/gem/i915_gem_wait.o
2025-10-02T15:48:53.5748336Z CC [M] fs/f2fs/segment.o
2025-10-02T15:48:53.6121955Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager_vi.o
2025-10-02T15:48:53.7468409Z CC [M] drivers/misc/mei/init.o
2025-10-02T15:48:53.9031466Z LD [M] net/appletalk/appletalk.o
2025-10-02T15:48:54.0150410Z CC [M] net/netrom/af_netrom.o
2025-10-02T15:48:54.1841303Z CC [M] drivers/gpu/drm/i915/gem/i915_gemfs.o
2025-10-02T15:48:54.4419686Z CC [M] drivers/misc/mei/hbm.o
2025-10-02T15:48:54.7638566Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager_v9.o
2025-10-02T15:48:55.5182119Z CC [M] drivers/gpu/drm/i915/i915_active.o
2025-10-02T15:48:55.6358452Z CC [M] drivers/misc/mei/interrupt.o
2025-10-02T15:48:55.8870850Z CC [M] net/netrom/nr_dev.o
2025-10-02T15:48:56.0252007Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_mqd_manager_v10.o
2025-10-02T15:48:56.5274555Z CC [M] drivers/misc/mei/client.o
2025-10-02T15:48:56.9805974Z CC [M] net/netrom/nr_in.o
2025-10-02T15:48:57.0465749Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_kernel_queue.o
2025-10-02T15:48:57.5655320Z CC [M] drivers/gpu/drm/i915/i915_buddy.o
2025-10-02T15:48:58.0203762Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_packet_manager.o
2025-10-02T15:48:58.0883581Z CC [M] net/netrom/nr_loopback.o
2025-10-02T15:48:58.3983745Z CC [M] drivers/misc/mei/main.o
2025-10-02T15:48:58.9391003Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_packet_manager_vi.o
2025-10-02T15:48:59.0373096Z CC [M] net/netrom/nr_out.o
2025-10-02T15:48:59.3064171Z CC [M] drivers/gpu/drm/i915/i915_cmd_parser.o
2025-10-02T15:48:59.6596991Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_packet_manager_v9.o
2025-10-02T15:48:59.7753262Z CC [M] drivers/misc/mei/dma-ring.o
2025-10-02T15:48:59.9443976Z CC [M] fs/f2fs/recovery.o
2025-10-02T15:49:00.1400820Z CC [M] net/netrom/nr_route.o
2025-10-02T15:49:00.5880670Z CC [M] drivers/misc/mei/bus.o
2025-10-02T15:49:00.8289411Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_process_queue_manager.o
2025-10-02T15:49:00.9249373Z CC [M] drivers/gpu/drm/i915/i915_gem_evict.o
2025-10-02T15:49:01.5908628Z CC [M] drivers/misc/mei/bus-fixup.o
2025-10-02T15:49:01.8055937Z CC [M] fs/f2fs/shrinker.o
2025-10-02T15:49:02.1092375Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager.o
2025-10-02T15:49:02.2541306Z CC [M] net/netrom/nr_subr.o
2025-10-02T15:49:02.2860387Z CC [M] drivers/misc/mei/debugfs.o
2025-10-02T15:49:02.4857009Z CC [M] fs/f2fs/extent_cache.o
2025-10-02T15:49:02.6854980Z CC [M] drivers/gpu/drm/i915/i915_gem_gtt.o
2025-10-02T15:49:02.9183855Z CC [M] drivers/misc/mei/mei-trace.o
2025-10-02T15:49:03.6196243Z CC [M] net/netrom/nr_timer.o
2025-10-02T15:49:03.9921427Z CC [M] fs/f2fs/sysfs.o
2025-10-02T15:49:04.0386023Z CC [M] drivers/gpu/drm/i915/i915_gem.o
2025-10-02T15:49:04.1025671Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager_cik.o
2025-10-02T15:49:04.1129365Z CC [M] drivers/misc/mei/pci-me.o
2025-10-02T15:49:04.7478332Z CC [M] net/netrom/sysctl_net_netrom.o
2025-10-02T15:49:04.8910886Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager_vi.o
2025-10-02T15:49:05.1265849Z CC [M] drivers/misc/mei/hw-me.o
2025-10-02T15:49:05.4965364Z CC [M] fs/f2fs/debug.o
2025-10-02T15:49:05.7474793Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager_v9.o
2025-10-02T15:49:05.9131203Z LD [M] net/netrom/netrom.o
2025-10-02T15:49:06.0582338Z CC [M] net/rose/af_rose.o
2025-10-02T15:49:06.3231605Z CC [M] drivers/gpu/drm/i915/i915_globals.o
2025-10-02T15:49:06.6276825Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_device_queue_manager_v10.o
2025-10-02T15:49:06.6734430Z CC [M] fs/f2fs/xattr.o
2025-10-02T15:49:06.7266076Z CC [M] drivers/misc/mei/pci-txe.o
2025-10-02T15:49:07.4883295Z CC [M] drivers/misc/mei/hw-txe.o
2025-10-02T15:49:07.5850977Z CC [M] drivers/gpu/drm/i915/i915_query.o
2025-10-02T15:49:07.7701190Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_interrupt.o
2025-10-02T15:49:07.9255332Z CC [M] net/rose/rose_dev.o
2025-10-02T15:49:08.0878189Z CC [M] fs/f2fs/acl.o
2025-10-02T15:49:08.6880099Z LD [M] drivers/misc/mei/mei.o
2025-10-02T15:49:08.7406370Z LD [M] drivers/misc/mei/mei-me.o
2025-10-02T15:49:08.7733731Z LD [M] drivers/misc/mei/mei-txe.o
2025-10-02T15:49:08.8038673Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_events.o
2025-10-02T15:49:08.8711937Z CC [M] drivers/misc/vmw_vmci/vmci_context.o
2025-10-02T15:49:08.9012635Z CC [M] drivers/gpu/drm/i915/i915_request.o
2025-10-02T15:49:09.0640180Z CC [M] fs/f2fs/verity.o
2025-10-02T15:49:09.1534420Z CC [M] net/rose/rose_in.o
2025-10-02T15:49:10.0427198Z CC [M] drivers/misc/vmw_vmci/vmci_datagram.o
2025-10-02T15:49:10.1881830Z CC [M] fs/f2fs/compress.o
2025-10-02T15:49:10.2023869Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/cik_event_interrupt.o
2025-10-02T15:49:10.3150583Z CC [M] net/rose/rose_link.o
2025-10-02T15:49:10.6263798Z CC [M] drivers/misc/vmw_vmci/vmci_doorbell.o
2025-10-02T15:49:11.1290566Z CC [M] drivers/gpu/drm/i915/i915_scheduler.o
2025-10-02T15:49:11.1865106Z CC [M] drivers/misc/vmw_vmci/vmci_driver.o
2025-10-02T15:49:11.3657197Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_int_process_v9.o
2025-10-02T15:49:11.4355913Z CC [M] net/rose/rose_loopback.o
2025-10-02T15:49:11.6673634Z CC [M] drivers/misc/vmw_vmci/vmci_event.o
2025-10-02T15:49:12.3167358Z CC [M] drivers/misc/vmw_vmci/vmci_guest.o
2025-10-02T15:49:12.3821336Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_dbgdev.o
2025-10-02T15:49:12.4704155Z CC [M] net/rose/rose_out.o
2025-10-02T15:49:12.5680286Z CC [M] drivers/gpu/drm/i915/i915_trace_points.o
2025-10-02T15:49:12.5752448Z LD [M] fs/f2fs/f2fs.o
2025-10-02T15:49:12.8127898Z CC [M] fs/ceph/super.o
2025-10-02T15:49:13.3185447Z CC [M] drivers/misc/vmw_vmci/vmci_handle_array.o
2025-10-02T15:49:13.5940724Z CC [M] net/rose/rose_route.o
2025-10-02T15:49:13.7609226Z CC [M] drivers/misc/vmw_vmci/vmci_host.o
2025-10-02T15:49:13.8321510Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_dbgmgr.o
2025-10-02T15:49:14.2499213Z CC [M] fs/ceph/inode.o
2025-10-02T15:49:14.7924944Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_smi_events.o
2025-10-02T15:49:14.7969963Z CC [M] drivers/misc/vmw_vmci/vmci_queue_pair.o
2025-10-02T15:49:15.5465252Z CC [M] net/rose/rose_subr.o
2025-10-02T15:49:15.8035823Z CC [M] drivers/gpu/drm/i915/i915_vma.o
2025-10-02T15:49:15.9495891Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_crat.o
2025-10-02T15:49:16.8330323Z CC [M] drivers/misc/vmw_vmci/vmci_resource.o
2025-10-02T15:49:16.9092751Z CC [M] fs/ceph/dir.o
2025-10-02T15:49:16.9814525Z CC [M] net/rose/rose_timer.o
2025-10-02T15:49:17.2562766Z CC [M] drivers/misc/vmw_vmci/vmci_route.o
2025-10-02T15:49:17.3635021Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_iommu.o
2025-10-02T15:49:17.6002066Z LD [M] drivers/misc/vmw_vmci/vmw_vmci.o
2025-10-02T15:49:17.7195344Z CC [M] drivers/misc/genwqe/card_base.o
2025-10-02T15:49:18.1544639Z CC [M] net/rose/sysctl_net_rose.o
2025-10-02T15:49:18.1842709Z CC [M] drivers/gpu/drm/i915/intel_region_lmem.o
2025-10-02T15:49:18.4942743Z CC [M] drivers/gpu/drm/amd/amdgpu/../amdkfd/kfd_debugfs.o
2025-10-02T15:49:18.9748742Z CC [M] fs/ceph/file.o
2025-10-02T15:49:19.0874991Z CC [M] drivers/misc/genwqe/card_dev.o
2025-10-02T15:49:19.1015775Z LD [M] net/rose/rose.o
2025-10-02T15:49:19.2231836Z CC [M] net/ax25/ax25_addr.o
2025-10-02T15:49:19.2958799Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_fence.o
2025-10-02T15:49:19.3197528Z CC [M] drivers/gpu/drm/i915/intel_wopcm.o
2025-10-02T15:49:20.1646162Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gpuvm.o
2025-10-02T15:49:20.2424475Z CC [M] net/ax25/ax25_dev.o
2025-10-02T15:49:20.4622262Z CC [M] drivers/misc/genwqe/card_ddcb.o
2025-10-02T15:49:20.7429279Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_uc.o
2025-10-02T15:49:21.3241874Z CC [M] net/ax25/ax25_iface.o
2025-10-02T15:49:21.5932688Z CC [M] drivers/misc/genwqe/card_sysfs.o
2025-10-02T15:49:21.7040955Z CC [M] fs/ceph/locks.o
2025-10-02T15:49:22.1498563Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_uc_debugfs.o
2025-10-02T15:49:22.2655342Z CC [M] drivers/misc/genwqe/card_debugfs.o
2025-10-02T15:49:22.4686015Z CC [M] net/ax25/ax25_in.o
2025-10-02T15:49:22.5951184Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.o
2025-10-02T15:49:22.9557135Z CC [M] fs/ceph/addr.o
2025-10-02T15:49:23.0507543Z CC [M] drivers/misc/genwqe/card_utils.o
2025-10-02T15:49:23.0557941Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_uc_fw.o
2025-10-02T15:49:23.8210594Z CC [M] net/ax25/ax25_ip.o
2025-10-02T15:49:24.2343540Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v9.o
2025-10-02T15:49:24.4140211Z LD [M] drivers/misc/genwqe/genwqe_card.o
2025-10-02T15:49:24.4716364Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc.o
2025-10-02T15:49:24.4981356Z CC [M] drivers/misc/echo/echo.o
2025-10-02T15:49:25.0962381Z CC [M] net/ax25/ax25_out.o
2025-10-02T15:49:25.2623716Z CC [M] drivers/misc/habanalabs/common/habanalabs_drv.o
2025-10-02T15:49:25.6946966Z CC [M] fs/ceph/ioctl.o
2025-10-02T15:49:25.7847329Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_ads.o
2025-10-02T15:49:26.1173415Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_arcturus.o
2025-10-02T15:49:26.3493013Z CC [M] drivers/misc/habanalabs/common/device.o
2025-10-02T15:49:26.5329295Z CC [M] net/ax25/ax25_route.o
2025-10-02T15:49:26.7520956Z CC [M] fs/ceph/export.o
2025-10-02T15:49:26.8827012Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_ct.o
2025-10-02T15:49:27.2056485Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10.o
2025-10-02T15:49:27.5613688Z CC [M] drivers/misc/habanalabs/common/context.o
2025-10-02T15:49:27.6990789Z CC [M] net/ax25/ax25_std_in.o
2025-10-02T15:49:28.1431656Z CC [M] fs/ceph/caps.o
2025-10-02T15:49:28.3592727Z CC [M] drivers/misc/habanalabs/common/asid.o
2025-10-02T15:49:28.7336867Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v10_3.o
2025-10-02T15:49:28.8388664Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_debugfs.o
2025-10-02T15:49:28.8451727Z CC [M] net/ax25/ax25_std_subr.o
2025-10-02T15:49:29.2834463Z CC [M] drivers/misc/habanalabs/common/habanalabs_ioctl.o
2025-10-02T15:49:29.5627198Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_fw.o
2025-10-02T15:49:29.8051257Z CC [M] net/ax25/ax25_std_timer.o
2025-10-02T15:49:30.4474198Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.o
2025-10-02T15:49:30.4724825Z CC [M] drivers/misc/habanalabs/common/command_buffer.o
2025-10-02T15:49:30.7577504Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_log.o
2025-10-02T15:49:31.0343290Z CC [M] net/ax25/ax25_subr.o
2025-10-02T15:49:31.3629109Z CC [M] drivers/misc/habanalabs/common/hw_queue.o
2025-10-02T15:49:31.8762038Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_cgs.o
2025-10-02T15:49:32.2053013Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.o
2025-10-02T15:49:32.3182696Z CC [M] net/ax25/ax25_timer.o
2025-10-02T15:49:32.3726843Z CC [M] drivers/misc/habanalabs/common/irq.o
2025-10-02T15:49:32.4038927Z CC [M] fs/ceph/snap.o
2025-10-02T15:49:33.0162242Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_job.o
2025-10-02T15:49:33.0951321Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_guc_submission.o
2025-10-02T15:49:33.2355218Z CC [M] drivers/misc/habanalabs/common/sysfs.o
2025-10-02T15:49:33.4209947Z CC [M] net/ax25/ax25_uid.o
2025-10-02T15:49:34.2208324Z CC [M] fs/ceph/xattr.o
2025-10-02T15:49:34.3081268Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_acp.o
2025-10-02T15:49:34.3308866Z CC [M] drivers/misc/habanalabs/common/hwmon.o
2025-10-02T15:49:34.7529062Z CC [M] net/ax25/af_ax25.o
2025-10-02T15:49:34.8010541Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_huc.o
2025-10-02T15:49:35.4417223Z CC [M] drivers/misc/habanalabs/common/memory.o
2025-10-02T15:49:35.5215230Z CC [M] drivers/gpu/drm/amd/amdgpu/../acp/acp_hw.o
2025-10-02T15:49:35.8819257Z CC [M] fs/ceph/quota.o
2025-10-02T15:49:35.9037300Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_huc_debugfs.o
2025-10-02T15:49:36.0801251Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_ioc32.o
2025-10-02T15:49:36.6401440Z CC [M] drivers/gpu/drm/i915/gt/uc/intel_huc_fw.o
2025-10-02T15:49:36.7943626Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_atpx_handler.o
2025-10-02T15:49:36.9064897Z CC [M] drivers/misc/habanalabs/common/command_submission.o
2025-10-02T15:49:36.9921567Z CC [M] fs/ceph/io.o
2025-10-02T15:49:37.0557908Z CC [M] net/ax25/ax25_ds_in.o
2025-10-02T15:49:37.6082151Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_acpi.o
2025-10-02T15:49:37.7999076Z CC [M] drivers/gpu/drm/i915/display/intel_atomic.o
2025-10-02T15:49:37.9386034Z CC [M] fs/ceph/mds_client.o
2025-10-02T15:49:38.1050880Z CC [M] net/ax25/ax25_ds_subr.o
2025-10-02T15:49:38.4203172Z CC [M] drivers/misc/habanalabs/common/mmu.o
2025-10-02T15:49:38.7440517Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu_mn.o
2025-10-02T15:49:39.0769398Z CC [M] drivers/misc/habanalabs/common/mmu_v1.o
2025-10-02T15:49:39.2428960Z CC [M] net/ax25/ax25_ds_timer.o
2025-10-02T15:49:39.4072112Z CC [M] drivers/gpu/drm/i915/display/intel_atomic_plane.o
2025-10-02T15:49:39.8586509Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu11/arcturus_ppt.o
2025-10-02T15:49:40.4994733Z CC [M] net/ax25/sysctl_net_ax25.o
2025-10-02T15:49:40.5630465Z CC [M] drivers/misc/habanalabs/common/firmware_if.o
2025-10-02T15:49:41.0463405Z CC [M] drivers/gpu/drm/i915/display/intel_audio.o
2025-10-02T15:49:41.5522171Z CC [M] drivers/misc/habanalabs/common/pci.o
2025-10-02T15:49:41.5999270Z LD [M] net/ax25/ax25.o
2025-10-02T15:49:41.7056513Z CC [M] net/can/j1939/address-claim.o
2025-10-02T15:49:42.1491318Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu11/navi10_ppt.o
2025-10-02T15:49:42.2109386Z CC [M] fs/ceph/mdsmap.o
2025-10-02T15:49:42.4988194Z CC [M] drivers/misc/habanalabs/goya/goya.o
2025-10-02T15:49:42.6950364Z CC [M] net/can/j1939/bus.o
2025-10-02T15:49:42.9737494Z CC [M] drivers/gpu/drm/i915/display/intel_bios.o
2025-10-02T15:49:43.3192996Z CC [M] fs/ceph/strings.o
2025-10-02T15:49:43.8422255Z CC [M] fs/ceph/ceph_frag.o
2025-10-02T15:49:44.0611992Z CC [M] net/can/j1939/main.o
2025-10-02T15:49:44.2849176Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu11/sienna_cichlid_ppt.o
2025-10-02T15:49:44.3595620Z CC [M] fs/ceph/debugfs.o
2025-10-02T15:49:45.3711262Z CC [M] drivers/misc/habanalabs/goya/goya_security.o
2025-10-02T15:49:45.4657764Z CC [M] net/can/j1939/socket.o
2025-10-02T15:49:45.4919316Z CC [M] drivers/gpu/drm/i915/display/intel_bw.o
2025-10-02T15:49:45.5504755Z CC [M] fs/ceph/util.o
2025-10-02T15:49:45.9623233Z CC [M] fs/ceph/metric.o
2025-10-02T15:49:46.5618239Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu11/smu_v11_0.o
2025-10-02T15:49:46.9252577Z CC [M] drivers/misc/habanalabs/goya/goya_hwmgr.o
2025-10-02T15:49:47.0219778Z CC [M] fs/ceph/cache.o
2025-10-02T15:49:47.0746945Z CC [M] drivers/gpu/drm/i915/display/intel_cdclk.o
2025-10-02T15:49:47.3144908Z CC [M] net/can/j1939/transport.o
2025-10-02T15:49:47.6370472Z CC [M] drivers/misc/habanalabs/goya/goya_coresight.o
2025-10-02T15:49:48.2193632Z CC [M] fs/ceph/acl.o
2025-10-02T15:49:48.2790895Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu12/renoir_ppt.o
2025-10-02T15:49:48.8331338Z CC [M] drivers/misc/habanalabs/gaudi/gaudi.o
2025-10-02T15:49:49.3338072Z LD [M] fs/ceph/ceph.o
2025-10-02T15:49:49.5174172Z CC [M] fs/erofs/super.o
2025-10-02T15:49:49.7231132Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu12/smu_v12_0.o
2025-10-02T15:49:49.7477426Z LD [M] net/can/j1939/can-j1939.o
2025-10-02T15:49:49.8028312Z CC [M] net/can/af_can.o
2025-10-02T15:49:49.9736649Z CC [M] drivers/gpu/drm/i915/display/intel_color.o
2025-10-02T15:49:50.7946647Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/amdgpu_smu.o
2025-10-02T15:49:51.0745648Z CC [M] fs/erofs/inode.o
2025-10-02T15:49:51.1361757Z CC [M] net/can/proc.o
2025-10-02T15:49:52.1220453Z CC [M] fs/erofs/data.o
2025-10-02T15:49:52.2654196Z CC [M] drivers/gpu/drm/i915/display/intel_combo_phy.o
2025-10-02T15:49:52.2951234Z CC [M] net/can/raw.o
2025-10-02T15:49:52.9678095Z CC [M] drivers/misc/habanalabs/gaudi/gaudi_hwmgr.o
2025-10-02T15:49:53.0647978Z CC [M] fs/erofs/namei.o
2025-10-02T15:49:53.1063955Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/swsmu/smu_cmn.o
2025-10-02T15:49:53.5828273Z CC [M] drivers/misc/habanalabs/gaudi/gaudi_security.o
2025-10-02T15:49:53.7421836Z CC [M] net/can/bcm.o
2025-10-02T15:49:53.7489276Z CC [M] drivers/gpu/drm/i915/display/intel_connector.o
2025-10-02T15:49:53.9384506Z CC [M] fs/erofs/dir.o
2025-10-02T15:49:54.4564712Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smumgr.o
2025-10-02T15:49:54.7863160Z CC [M] fs/erofs/utils.o
2025-10-02T15:49:54.9635758Z CC [M] drivers/misc/habanalabs/gaudi/gaudi_coresight.o
2025-10-02T15:49:55.0274083Z CC [M] drivers/gpu/drm/i915/display/intel_csr.o
2025-10-02T15:49:55.3683451Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smu8_smumgr.o
2025-10-02T15:49:55.4739954Z CC [M] fs/erofs/xattr.o
2025-10-02T15:49:55.9476375Z CC [M] drivers/misc/habanalabs/common/debugfs.o
2025-10-02T15:49:56.1095844Z CC [M] net/can/gw.o
2025-10-02T15:49:56.3344687Z CC [M] drivers/gpu/drm/i915/display/intel_display.o
2025-10-02T15:49:56.6775078Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/tonga_smumgr.o
2025-10-02T15:49:56.8954010Z CC [M] fs/erofs/decompressor.o
2025-10-02T15:49:57.5100416Z LD [M] drivers/misc/habanalabs/habanalabs.o
2025-10-02T15:49:57.6652601Z CC [M] drivers/misc/uacce/uacce.o
2025-10-02T15:49:57.7668073Z CC [M] fs/erofs/zmap.o
2025-10-02T15:49:57.9635960Z CC [M] net/can/isotp.o
2025-10-02T15:49:58.7200735Z AR drivers/misc/built-in.a
2025-10-02T15:49:58.7438679Z CC [M] drivers/misc/ad525x_dpot.o
2025-10-02T15:49:58.7580029Z CC [M] fs/erofs/zdata.o
2025-10-02T15:49:59.0564493Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/fiji_smumgr.o
2025-10-02T15:49:59.9005065Z LD [M] net/can/can.o
2025-10-02T15:49:59.9181492Z CC [M] drivers/misc/ad525x_dpot-i2c.o
2025-10-02T15:49:59.9336267Z LD [M] net/can/can-raw.o
2025-10-02T15:49:59.9637312Z LD [M] net/can/can-bcm.o
2025-10-02T15:49:59.9930344Z LD [M] net/can/can-gw.o
2025-10-02T15:50:00.0245352Z LD [M] net/can/can-isotp.o
2025-10-02T15:50:00.1851160Z CC [M] net/bluetooth/rfcomm/core.o
2025-10-02T15:50:00.3733255Z LD [M] fs/erofs/erofs.o
2025-10-02T15:50:00.4350466Z CC [M] fs/vboxsf/dir.o
2025-10-02T15:50:00.6801141Z CC [M] drivers/misc/ad525x_dpot-spi.o
2025-10-02T15:50:01.3714712Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/polaris10_smumgr.o
2025-10-02T15:50:01.3984039Z CC [M] fs/vboxsf/file.o
2025-10-02T15:50:01.6204921Z CC [M] drivers/misc/ics932s401.o
2025-10-02T15:50:02.3748382Z CC [M] drivers/misc/tifm_core.o
2025-10-02T15:50:02.4861333Z CC [M] fs/vboxsf/utils.o
2025-10-02T15:50:02.6472948Z CC [M] net/bluetooth/rfcomm/sock.o
2025-10-02T15:50:03.2321894Z CC [M] drivers/misc/tifm_7xx1.o
2025-10-02T15:50:03.5905059Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/iceland_smumgr.o
2025-10-02T15:50:03.7990839Z CC [M] fs/vboxsf/vboxsf_wrappers.o
2025-10-02T15:50:04.0775409Z CC [M] drivers/misc/phantom.o
2025-10-02T15:50:04.2957691Z CC [M] net/bluetooth/rfcomm/tty.o
2025-10-02T15:50:04.6464523Z CC [M] fs/vboxsf/super.o
2025-10-02T15:50:05.0463008Z CC [M] drivers/misc/bh1770glc.o
2025-10-02T15:50:05.6178091Z LD [M] fs/vboxsf/vboxsf.o
2025-10-02T15:50:05.7211299Z CC [M] fs/zonefs/super.o
2025-10-02T15:50:06.0382012Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smu7_smumgr.o
2025-10-02T15:50:06.0982023Z LD [M] net/bluetooth/rfcomm/rfcomm.o
2025-10-02T15:50:06.1741604Z CC [M] net/bluetooth/bnep/core.o
2025-10-02T15:50:06.2551121Z CC [M] drivers/misc/apds990x.o
2025-10-02T15:50:07.3159838Z LD [M] fs/zonefs/zonefs.o
2025-10-02T15:50:07.3670685Z CC fs/open.o
2025-10-02T15:50:07.4917252Z CC [M] drivers/misc/enclosure.o
2025-10-02T15:50:07.5165406Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/vega10_smumgr.o
2025-10-02T15:50:07.7627694Z CC [M] net/bluetooth/bnep/sock.o
2025-10-02T15:50:08.2681043Z CC [M] drivers/misc/hpilo.o
2025-10-02T15:50:08.7080887Z CC [M] drivers/gpu/drm/i915/display/intel_display_power.o
2025-10-02T15:50:08.8371806Z CC [M] net/bluetooth/bnep/netdev.o
2025-10-02T15:50:09.1825268Z CC [M] drivers/misc/apds9802als.o
2025-10-02T15:50:09.1867546Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smu10_smumgr.o
2025-10-02T15:50:09.5946324Z CC fs/read_write.o
2025-10-02T15:50:09.8161424Z CC [M] drivers/misc/isl29003.o
2025-10-02T15:50:10.3180493Z LD [M] net/bluetooth/bnep/bnep.o
2025-10-02T15:50:10.3900318Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/ci_smumgr.o
2025-10-02T15:50:10.4163350Z CC [M] net/bluetooth/cmtp/core.o
2025-10-02T15:50:10.5007462Z CC [M] drivers/misc/isl29020.o
2025-10-02T15:50:11.1968515Z CC [M] drivers/misc/tsl2550.o
2025-10-02T15:50:11.7278138Z CC fs/file_table.o
2025-10-02T15:50:11.7778651Z CC [M] drivers/gpu/drm/i915/display/intel_dpio_phy.o
2025-10-02T15:50:11.7907499Z CC [M] net/bluetooth/cmtp/sock.o
2025-10-02T15:50:11.9763780Z CC [M] drivers/misc/ds1682.o
2025-10-02T15:50:12.5841485Z CC [M] drivers/misc/hmc6352.o
2025-10-02T15:50:12.6885380Z CC fs/super.o
2025-10-02T15:50:12.9418049Z CC [M] net/bluetooth/cmtp/capi.o
2025-10-02T15:50:12.9854593Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/vega12_smumgr.o
2025-10-02T15:50:13.3487559Z CC [M] drivers/misc/vmw_balloon.o
2025-10-02T15:50:13.4650634Z CC [M] drivers/gpu/drm/i915/display/intel_dpll_mgr.o
2025-10-02T15:50:14.2783993Z LD [M] net/bluetooth/cmtp/cmtp.o
2025-10-02T15:50:14.3016618Z CC fs/char_dev.o
2025-10-02T15:50:14.3401861Z CC [M] net/bluetooth/hidp/core.o
2025-10-02T15:50:14.3570900Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/vegam_smumgr.o
2025-10-02T15:50:14.8793661Z CC [M] drivers/misc/lattice-ecp3-config.o
2025-10-02T15:50:15.2262049Z CC fs/stat.o
2025-10-02T15:50:15.7215663Z CC [M] drivers/misc/pci_endpoint_test.o
2025-10-02T15:50:16.3450088Z CC fs/exec.o
2025-10-02T15:50:16.3827021Z CC [M] net/bluetooth/hidp/sock.o
2025-10-02T15:50:16.4798990Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/smu9_smumgr.o
2025-10-02T15:50:16.7412151Z CC [M] drivers/gpu/drm/i915/display/intel_dsb.o
2025-10-02T15:50:16.8223593Z CC [M] drivers/misc/pvpanic.o
2025-10-02T15:50:17.5660084Z CC [M] drivers/misc/xilinx_sdfec.o
2025-10-02T15:50:17.7810458Z LD [M] net/bluetooth/hidp/hidp.o
2025-10-02T15:50:17.7977328Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/smumgr/vega20_smumgr.o
2025-10-02T15:50:17.8143853Z CC [M] net/bluetooth/af_bluetooth.o
2025-10-02T15:50:17.9621043Z CC [M] drivers/gpu/drm/i915/display/intel_fbc.o
2025-10-02T15:50:18.5265051Z CC fs/pipe.o
2025-10-02T15:50:18.6726545Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/hwmgr.o
2025-10-02T15:50:19.1487058Z CC [M] net/sunrpc/auth_gss/auth_gss.o
2025-10-02T15:50:19.3551244Z CC [M] net/bluetooth/hci_core.o
2025-10-02T15:50:19.9707922Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/processpptables.o
2025-10-02T15:50:20.1633623Z CC [M] drivers/gpu/drm/i915/display/intel_fifo_underrun.o
2025-10-02T15:50:20.1791261Z CC fs/namei.o
2025-10-02T15:50:21.9277595Z CC [M] drivers/gpu/drm/i915/display/intel_frontbuffer.o
2025-10-02T15:50:21.9384184Z CC [M] net/sunrpc/auth_gss/gss_generic_token.o
2025-10-02T15:50:22.0092099Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/hardwaremanager.o
2025-10-02T15:50:22.7805383Z CC [M] net/sunrpc/auth_gss/gss_mech_switch.o
2025-10-02T15:50:23.1210947Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu8_hwmgr.o
2025-10-02T15:50:23.2634852Z CC [M] net/bluetooth/hci_conn.o
2025-10-02T15:50:23.2858618Z CC [M] drivers/gpu/drm/i915/display/intel_global_state.o
2025-10-02T15:50:24.1348911Z CC fs/fcntl.o
2025-10-02T15:50:24.4049885Z CC [M] net/sunrpc/auth_gss/svcauth_gss.o
2025-10-02T15:50:24.7335792Z CC [M] drivers/gpu/drm/i915/display/intel_hdcp.o
2025-10-02T15:50:25.0017878Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/pppcielanes.o
2025-10-02T15:50:25.1804487Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/process_pptables_v1_0.o
2025-10-02T15:50:25.3712033Z CC fs/ioctl.o
2025-10-02T15:50:25.6389046Z CC [M] net/bluetooth/hci_event.o
2025-10-02T15:50:26.5247016Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/ppatomctrl.o
2025-10-02T15:50:26.6254174Z CC [M] net/sunrpc/auth_gss/gss_rpc_upcall.o
2025-10-02T15:50:26.6603690Z CC fs/readdir.o
2025-10-02T15:50:27.4849948Z CC [M] drivers/gpu/drm/i915/display/intel_hotplug.o
2025-10-02T15:50:27.8458491Z CC fs/select.o
2025-10-02T15:50:27.9828550Z CC [M] net/sunrpc/auth_gss/gss_rpc_xdr.o
2025-10-02T15:50:28.2771734Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/ppatomfwctrl.o
2025-10-02T15:50:29.1284392Z CC [M] drivers/gpu/drm/i915/display/intel_lpe_audio.o
2025-10-02T15:50:29.5250378Z CC [M] net/sunrpc/auth_gss/trace.o
2025-10-02T15:50:29.5278556Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_hwmgr.o
2025-10-02T15:50:29.9791894Z CC fs/dcache.o
2025-10-02T15:50:30.6721319Z CC [M] net/bluetooth/mgmt.o
2025-10-02T15:50:30.7088323Z CC [M] drivers/gpu/drm/i915/display/intel_overlay.o
2025-10-02T15:50:31.7501115Z CC [M] net/sunrpc/auth_gss/gss_krb5_mech.o
2025-10-02T15:50:32.4554606Z CC fs/inode.o
2025-10-02T15:50:32.7118897Z CC [M] net/sunrpc/auth_gss/gss_krb5_seal.o
2025-10-02T15:50:32.8092656Z CC [M] drivers/gpu/drm/i915/display/intel_psr.o
2025-10-02T15:50:33.4934642Z CC [M] net/sunrpc/auth_gss/gss_krb5_unseal.o
2025-10-02T15:50:33.6284121Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_powertune.o
2025-10-02T15:50:34.3791666Z CC [M] net/sunrpc/auth_gss/gss_krb5_seqnum.o
2025-10-02T15:50:34.5338541Z CC fs/attr.o
2025-10-02T15:50:34.8595909Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_thermal.o
2025-10-02T15:50:35.1871999Z CC [M] drivers/gpu/drm/i915/display/intel_quirks.o
2025-10-02T15:50:35.2283116Z CC [M] net/sunrpc/auth_gss/gss_krb5_wrap.o
2025-10-02T15:50:35.4063191Z CC fs/bad_inode.o
2025-10-02T15:50:35.9563012Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_clockpowergating.o
2025-10-02T15:50:36.0740980Z CC fs/file.o
2025-10-02T15:50:36.0751474Z CC [M] net/sunrpc/auth_gss/gss_krb5_crypto.o
2025-10-02T15:50:36.5808487Z CC [M] drivers/gpu/drm/i915/display/intel_sprite.o
2025-10-02T15:50:37.0563122Z CC [M] net/bluetooth/hci_sock.o
2025-10-02T15:50:37.3279835Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_processpptables.o
2025-10-02T15:50:37.6713648Z CC [M] net/sunrpc/auth_gss/gss_krb5_keys.o
2025-10-02T15:50:37.7120255Z CC fs/filesystems.o
2025-10-02T15:50:38.6172315Z LD [M] net/sunrpc/auth_gss/auth_rpcgss.o
2025-10-02T15:50:38.6361068Z CC fs/namespace.o
2025-10-02T15:50:38.6582746Z LD [M] net/sunrpc/auth_gss/rpcsec_gss_krb5.o
2025-10-02T15:50:38.7424258Z CC [M] net/sunrpc/xprtrdma/transport.o
2025-10-02T15:50:39.0855452Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_hwmgr.o
2025-10-02T15:50:39.0911786Z CC [M] drivers/gpu/drm/i915/display/intel_tc.o
2025-10-02T15:50:39.1602882Z CC [M] net/bluetooth/hci_sysfs.o
2025-10-02T15:50:40.3053707Z CC [M] net/sunrpc/xprtrdma/rpc_rdma.o
2025-10-02T15:50:40.3960900Z CC [M] net/bluetooth/l2cap_core.o
2025-10-02T15:50:40.7693522Z CC [M] drivers/gpu/drm/i915/display/intel_vga.o
2025-10-02T15:50:42.1135479Z CC [M] drivers/gpu/drm/i915/display/intel_acpi.o
2025-10-02T15:50:42.1453334Z CC fs/seq_file.o
2025-10-02T15:50:42.6971236Z CC [M] net/sunrpc/xprtrdma/verbs.o
2025-10-02T15:50:43.0617877Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_powertune.o
2025-10-02T15:50:43.2939924Z CC fs/xattr.o
2025-10-02T15:50:43.4137587Z CC [M] drivers/gpu/drm/i915/display/intel_opregion.o
2025-10-02T15:50:44.6856692Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_thermal.o
2025-10-02T15:50:44.8489091Z CC fs/libfs.o
2025-10-02T15:50:44.9547452Z CC [M] net/sunrpc/xprtrdma/frwr_ops.o
2025-10-02T15:50:45.0281651Z CC [M] drivers/gpu/drm/i915/display/intel_fbdev.o
2025-10-02T15:50:46.2836779Z CC [M] net/bluetooth/l2cap_sock.o
2025-10-02T15:50:46.3141688Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu10_hwmgr.o
2025-10-02T15:50:46.5102152Z CC [M] drivers/gpu/drm/i915/display/dvo_ch7017.o
2025-10-02T15:50:46.5637011Z CC fs/fs-writeback.o
2025-10-02T15:50:47.0544747Z CC [M] net/sunrpc/xprtrdma/svc_rdma.o
2025-10-02T15:50:47.9478254Z CC [M] drivers/gpu/drm/i915/display/dvo_ch7xxx.o
2025-10-02T15:50:48.2635826Z CC [M] net/bluetooth/smp.o
2025-10-02T15:50:48.2651690Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/pp_psm.o
2025-10-02T15:50:48.3625325Z CC [M] net/sunrpc/xprtrdma/svc_rdma_backchannel.o
2025-10-02T15:50:49.3172432Z CC [M] drivers/gpu/drm/i915/display/dvo_ivch.o
2025-10-02T15:50:49.4516133Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega12_processpptables.o
2025-10-02T15:50:50.2076467Z CC [M] net/sunrpc/xprtrdma/svc_rdma_transport.o
2025-10-02T15:50:50.2551756Z CC fs/pnode.o
2025-10-02T15:50:50.5356372Z CC [M] drivers/gpu/drm/i915/display/dvo_ns2501.o
2025-10-02T15:50:50.5586947Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega12_hwmgr.o
2025-10-02T15:50:50.9913261Z CC fs/splice.o
2025-10-02T15:50:51.4701002Z CC [M] net/bluetooth/lib.o
2025-10-02T15:50:51.8013144Z CC [M] drivers/gpu/drm/i915/display/dvo_sil164.o
2025-10-02T15:50:52.1511025Z CC [M] net/sunrpc/xprtrdma/svc_rdma_sendto.o
2025-10-02T15:50:52.5647968Z CC [M] net/bluetooth/ecdh_helper.o
2025-10-02T15:50:52.7131557Z CC fs/sync.o
2025-10-02T15:50:52.9466706Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega12_thermal.o
2025-10-02T15:50:53.2915984Z CC [M] drivers/gpu/drm/i915/display/dvo_tfp410.o
2025-10-02T15:50:53.3929849Z CC [M] net/bluetooth/hci_request.o
2025-10-02T15:50:53.8366148Z CC fs/utimes.o
2025-10-02T15:50:54.0924772Z CC [M] net/sunrpc/xprtrdma/svc_rdma_recvfrom.o
2025-10-02T15:50:54.4063509Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/pp_overdriver.o
2025-10-02T15:50:54.5567931Z CC [M] drivers/gpu/drm/i915/display/icl_dsi.o
2025-10-02T15:50:54.6101460Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu_helper.o
2025-10-02T15:50:54.7909079Z CC fs/d_path.o
2025-10-02T15:50:55.9919256Z CC fs/stack.o
2025-10-02T15:50:56.0140419Z CC [M] net/sunrpc/xprtrdma/svc_rdma_rw.o
2025-10-02T15:50:56.0815781Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_processpptables.o
2025-10-02T15:50:56.3492985Z CC [M] net/bluetooth/mgmt_util.o
2025-10-02T15:50:56.4568034Z CC fs/fs_struct.o
2025-10-02T15:50:57.1128913Z CC fs/statfs.o
2025-10-02T15:50:57.2293240Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_hwmgr.o
2025-10-02T15:50:57.2606309Z CC [M] drivers/gpu/drm/i915/display/intel_crt.o
2025-10-02T15:50:57.6753001Z CC [M] net/bluetooth/mgmt_config.o
2025-10-02T15:50:57.8444077Z CC [M] net/sunrpc/xprtrdma/module.o
2025-10-02T15:50:58.1535125Z CC fs/fs_pin.o
2025-10-02T15:50:58.7763403Z CC fs/nsfs.o
2025-10-02T15:50:58.9968623Z CC [M] net/bluetooth/sco.o
2025-10-02T15:50:59.0863850Z CC [M] drivers/gpu/drm/i915/display/intel_ddi.o
2025-10-02T15:50:59.5818968Z CC fs/fs_types.o
2025-10-02T15:51:00.1440631Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_powertune.o
2025-10-02T15:51:00.1530438Z CC fs/fs_context.o
2025-10-02T15:51:01.1388173Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_thermal.o
2025-10-02T15:51:01.1401140Z CC [M] net/bluetooth/a2mp.o
2025-10-02T15:51:01.1932976Z CC fs/fs_parser.o
2025-10-02T15:51:01.9856462Z CC fs/fsopen.o
2025-10-02T15:51:02.4524429Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/common_baco.o
2025-10-02T15:51:02.8675028Z CC fs/init.o
2025-10-02T15:51:02.8690062Z CC [M] net/bluetooth/amp.o
2025-10-02T15:51:03.1709035Z CC [M] drivers/gpu/drm/i915/display/intel_dp.o
2025-10-02T15:51:03.2902256Z CC [M] net/sunrpc/xprtrdma/backchannel.o
2025-10-02T15:51:03.5401351Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega10_baco.o
2025-10-02T15:51:03.6196671Z CC fs/kernel_read_file.o
2025-10-02T15:51:04.4167804Z CC fs/remap_range.o
2025-10-02T15:51:04.4534732Z CC [M] net/bluetooth/leds.o
2025-10-02T15:51:04.7886404Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega20_baco.o
2025-10-02T15:51:04.9732196Z LD [M] net/sunrpc/xprtrdma/rpcrdma.o
2025-10-02T15:51:05.1526025Z CC [M] net/sunrpc/clnt.o
2025-10-02T15:51:05.5742784Z CC [M] net/bluetooth/msft.o
2025-10-02T15:51:05.6004289Z CC fs/buffer.o
2025-10-02T15:51:05.9738157Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/vega12_baco.o
2025-10-02T15:51:07.0181578Z CC [M] net/bluetooth/hci_debugfs.o
2025-10-02T15:51:07.0925341Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu9_baco.o
2025-10-02T15:51:08.0975546Z CC [M] net/sunrpc/xprt.o
2025-10-02T15:51:08.5471911Z CC [M] drivers/gpu/drm/i915/display/intel_dp_aux_backlight.o
2025-10-02T15:51:08.5612817Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/tonga_baco.o
2025-10-02T15:51:08.6709867Z CC fs/block_dev.o
2025-10-02T15:51:08.7510956Z CC [M] net/bluetooth/6lowpan.o
2025-10-02T15:51:09.5932574Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/polaris_baco.o
2025-10-02T15:51:10.1249705Z CC [M] drivers/gpu/drm/i915/display/intel_dp_hdcp.o
2025-10-02T15:51:10.3602283Z CC fs/direct-io.o
2025-10-02T15:51:10.5097734Z LD [M] net/bluetooth/bluetooth.o
2025-10-02T15:51:10.6335395Z LD [M] net/bluetooth/bluetooth_6lowpan.o
2025-10-02T15:51:10.6686791Z CC [M] net/sunrpc/socklib.o
2025-10-02T15:51:10.6845951Z CC [M] drivers/gpu/drm/i915/display/intel_dp_link_training.o
2025-10-02T15:51:11.0337390Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/fiji_baco.o
2025-10-02T15:51:11.7858061Z CC drivers/mfd/88pm860x-core.o
2025-10-02T15:51:11.7861211Z CC fs/mpage.o
2025-10-02T15:51:11.8743938Z CC [M] net/sunrpc/xprtsock.o
2025-10-02T15:51:12.1132129Z CC [M] drivers/gpu/drm/i915/display/intel_dp_mst.o
2025-10-02T15:51:12.1408185Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/ci_baco.o
2025-10-02T15:51:12.8920768Z CC drivers/mfd/88pm860x-i2c.o
2025-10-02T15:51:13.0751823Z CC fs/proc_namespace.o
2025-10-02T15:51:13.3899672Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/hwmgr/smu7_baco.o
2025-10-02T15:51:13.4604461Z CC drivers/mfd/htc-i2cpld.o
2025-10-02T15:51:13.5902925Z CC [M] drivers/gpu/drm/i915/display/intel_dsi.o
2025-10-02T15:51:13.9209417Z CC fs/eventpoll.o
2025-10-02T15:51:14.4182451Z CC drivers/mfd/arizona-core.o
2025-10-02T15:51:14.4750331Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/amd_powerplay.o
2025-10-02T15:51:14.7585102Z CC [M] net/sunrpc/sched.o
2025-10-02T15:51:14.9794754Z CC [M] drivers/gpu/drm/i915/display/intel_dsi_dcs_backlight.o
2025-10-02T15:51:15.8321260Z CC drivers/mfd/arizona-irq.o
2025-10-02T15:51:16.0845387Z CC fs/anon_inodes.o
2025-10-02T15:51:16.2813061Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/kv_dpm.o
2025-10-02T15:51:16.3808387Z CC [M] drivers/gpu/drm/i915/display/intel_dsi_vbt.o
2025-10-02T15:51:16.7362864Z CC fs/signalfd.o
2025-10-02T15:51:16.9411237Z CC drivers/mfd/wm5102-tables.o
2025-10-02T15:51:17.7668851Z CC fs/timerfd.o
2025-10-02T15:51:17.9741892Z CC [M] drivers/gpu/drm/i915/display/intel_dvo.o
2025-10-02T15:51:18.0063193Z CC drivers/mfd/wm5110-tables.o
2025-10-02T15:51:18.4073607Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/kv_smc.o
2025-10-02T15:51:18.9829136Z CC drivers/mfd/wm8997-tables.o
2025-10-02T15:51:19.0558959Z CC fs/eventfd.o
2025-10-02T15:51:19.5182243Z CC [M] drivers/gpu/drm/i915/display/intel_gmbus.o
2025-10-02T15:51:19.5539976Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/si_dpm.o
2025-10-02T15:51:19.8363626Z CC drivers/mfd/wm8998-tables.o
2025-10-02T15:51:20.3571576Z CC fs/userfaultfd.o
2025-10-02T15:51:20.7349439Z CC drivers/mfd/cs47l24-tables.o
2025-10-02T15:51:21.1669996Z CC [M] drivers/gpu/drm/i915/display/intel_hdmi.o
2025-10-02T15:51:21.5922595Z CC drivers/mfd/wm8400-core.o
2025-10-02T15:51:21.7464784Z CC [M] net/sunrpc/auth.o
2025-10-02T15:51:22.0470823Z CC fs/aio.o
2025-10-02T15:51:22.3287741Z CC drivers/mfd/wm831x-core.o
2025-10-02T15:51:22.9317814Z CC drivers/mfd/wm831x-irq.o
2025-10-02T15:51:23.6703180Z CC drivers/mfd/wm831x-otp.o
2025-10-02T15:51:23.9623115Z CC [M] net/sunrpc/auth_null.o
2025-10-02T15:51:24.2157649Z CC [M] drivers/gpu/drm/i915/display/intel_lspcon.o
2025-10-02T15:51:24.4205033Z CC drivers/mfd/wm831x-auxadc.o
2025-10-02T15:51:24.4476459Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/powerplay/si_smc.o
2025-10-02T15:51:24.4537127Z CC fs/dax.o
2025-10-02T15:51:25.0880874Z CC drivers/mfd/wm831x-i2c.o
2025-10-02T15:51:25.3687478Z CC [M] net/sunrpc/auth_unix.o
2025-10-02T15:51:25.4991302Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/amdgpu_dpm.o
2025-10-02T15:51:25.5043328Z CC [M] drivers/gpu/drm/i915/display/intel_lvds.o
2025-10-02T15:51:25.6362299Z CC drivers/mfd/wm831x-spi.o
2025-10-02T15:51:26.2865795Z CC drivers/mfd/wm8350-core.o
2025-10-02T15:51:26.8373942Z CC [M] net/sunrpc/svc.o
2025-10-02T15:51:26.8740388Z CC fs/locks.o
2025-10-02T15:51:26.9963124Z CC [M] drivers/gpu/drm/i915/display/intel_panel.o
2025-10-02T15:51:27.3834545Z CC drivers/mfd/wm8350-regmap.o
2025-10-02T15:51:27.4251563Z CC [M] drivers/gpu/drm/amd/amdgpu/../pm/amdgpu_pm.o
2025-10-02T15:51:28.1708397Z CC drivers/mfd/wm8350-gpio.o
2025-10-02T15:51:28.9693923Z CC [M] net/sunrpc/svcsock.o
2025-10-02T15:51:29.0076277Z CC [M] drivers/gpu/drm/i915/display/intel_sdvo.o
2025-10-02T15:51:29.2184347Z CC drivers/mfd/wm8350-irq.o
2025-10-02T15:51:29.5154093Z CC fs/binfmt_misc.o
2025-10-02T15:51:30.1113291Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm.o
2025-10-02T15:51:30.2997080Z CC drivers/mfd/wm8350-i2c.o
2025-10-02T15:51:30.6364676Z CC fs/binfmt_script.o
2025-10-02T15:51:31.1656530Z CC fs/binfmt_elf.o
2025-10-02T15:51:31.1937723Z CC [M] net/sunrpc/svcauth.o
2025-10-02T15:51:31.2477909Z CC drivers/mfd/tps65910.o
2025-10-02T15:51:31.9401709Z CC [M] drivers/gpu/drm/i915/display/intel_tv.o
2025-10-02T15:51:32.0695332Z CC drivers/mfd/tps68470.o
2025-10-02T15:51:32.6775723Z CC [M] net/sunrpc/svcauth_unix.o
2025-10-02T15:51:32.7888487Z CC drivers/mfd/tps80031.o
2025-10-02T15:51:32.8528610Z CC fs/compat_binfmt_elf.o
2025-10-02T15:51:33.5531114Z CC drivers/mfd/twl-core.o
2025-10-02T15:51:33.6656649Z CC [M] drivers/gpu/drm/i915/display/intel_vdsc.o
2025-10-02T15:51:34.3944993Z CC [M] net/sunrpc/addr.o
2025-10-02T15:51:34.7276144Z CC fs/posix_acl.o
2025-10-02T15:51:35.0570540Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_irq.o
2025-10-02T15:51:35.0650539Z CC [M] drivers/gpu/drm/i915/display/vlv_dsi.o
2025-10-02T15:51:35.4278989Z CC drivers/mfd/twl4030-irq.o
2025-10-02T15:51:35.7867372Z CC [M] net/sunrpc/rpcb_clnt.o
2025-10-02T15:51:36.0375856Z CC fs/coredump.o
2025-10-02T15:51:36.1781131Z CC drivers/mfd/twl6030-irq.o
2025-10-02T15:51:36.2016694Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_mst_types.o
2025-10-02T15:51:37.1089160Z CC drivers/mfd/twl4030-audio.o
2025-10-02T15:51:37.5993088Z CC [M] drivers/gpu/drm/i915/display/vlv_dsi_pll.o
2025-10-02T15:51:37.6727918Z CC drivers/mfd/twl6040.o
2025-10-02T15:51:37.6805353Z CC [M] net/sunrpc/timer.o
2025-10-02T15:51:37.7120379Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_color.o
2025-10-02T15:51:37.7879196Z CC fs/drop_caches.o
2025-10-02T15:51:38.5449968Z CC fs/fhandle.o
2025-10-02T15:51:38.7370446Z CC drivers/mfd/mfd-core.o
2025-10-02T15:51:38.7793628Z CC [M] net/sunrpc/xdr.o
2025-10-02T15:51:39.0087625Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_services.o
2025-10-02T15:51:39.1783920Z CC [M] drivers/gpu/drm/i915/i915_perf.o
2025-10-02T15:51:39.4755085Z CC fs/dcookies.o
2025-10-02T15:51:39.6921292Z CC drivers/mfd/ezx-pcap.o
2025-10-02T15:51:40.0280098Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_helpers.o
2025-10-02T15:51:40.5415450Z CC drivers/mfd/da903x.o
2025-10-02T15:51:40.5921014Z CC [M] fs/mbcache.o
2025-10-02T15:51:41.2659422Z CC [M] net/sunrpc/sunrpc_syms.o
2025-10-02T15:51:41.3311223Z CC drivers/mfd/da9052-irq.o
2025-10-02T15:51:41.3585413Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_pp_smu.o
2025-10-02T15:51:41.6150878Z AR fs/built-in.a
2025-10-02T15:51:41.8258443Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.o
2025-10-02T15:51:41.9158358Z CC drivers/mfd/da9052-core.o
2025-10-02T15:51:42.1215984Z CC [M] drivers/gpu/drm/i915/i915_gpu_error.o
2025-10-02T15:51:42.2767424Z CC [M] net/sunrpc/cache.o
2025-10-02T15:51:42.5272445Z drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c: In function ‘vmw_execbuf_process’:
2025-10-02T15:51:42.5276535Z drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c:4240:25: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
2025-10-02T15:51:42.5279693Z 4240 | struct seqno_waiter_rm_context *ctx =
2025-10-02T15:51:42.5282653Z | ^~~~~~
2025-10-02T15:51:42.6762339Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_hdcp.o
2025-10-02T15:51:42.7021197Z CC drivers/mfd/da9052-spi.o
2025-10-02T15:51:43.4452464Z CC drivers/mfd/da9052-i2c.o
2025-10-02T15:51:43.9095856Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_crc.o
2025-10-02T15:51:44.1705432Z CC drivers/mfd/lp8788.o
2025-10-02T15:51:44.2505764Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_gmr.o
2025-10-02T15:51:44.5126782Z CC [M] drivers/gpu/drm/i915/i915_vgpu.o
2025-10-02T15:51:44.9041894Z CC drivers/mfd/lp8788-irq.o
2025-10-02T15:51:44.9311207Z CC [M] net/sunrpc/rpc_pipe.o
2025-10-02T15:51:44.9498406Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/amdgpu_dm/amdgpu_dm_debugfs.o
2025-10-02T15:51:45.1415972Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_kms.o
2025-10-02T15:51:45.5108656Z CC drivers/mfd/da9055-core.o
2025-10-02T15:51:45.6103892Z CC [M] drivers/gpu/drm/i915/intel_gvt.o
2025-10-02T15:51:46.1445055Z CC drivers/mfd/da9055-i2c.o
2025-10-02T15:51:46.7347455Z CC drivers/mfd/max77843.o
2025-10-02T15:51:46.7850298Z CC [M] drivers/gpu/drm/i915/gvt/gvt.o
2025-10-02T15:51:46.9835491Z CC [M] net/sunrpc/svc_xprt.o
2025-10-02T15:51:47.0471375Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/basics/conversion.o
2025-10-02T15:51:47.2903434Z CC drivers/mfd/max8925-core.o
2025-10-02T15:51:47.3941143Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_drv.o
2025-10-02T15:51:47.6399403Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/basics/fixpt31_32.o
2025-10-02T15:51:47.9364480Z CC [M] drivers/gpu/drm/i915/gvt/aperture_gm.o
2025-10-02T15:51:48.4166090Z CC drivers/mfd/max8925-i2c.o
2025-10-02T15:51:48.4639210Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/basics/vector.o
2025-10-02T15:51:48.8482840Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_fb.o
2025-10-02T15:51:48.9673438Z CC drivers/mfd/max8997.o
2025-10-02T15:51:49.2726253Z CC [M] drivers/gpu/drm/i915/gvt/handlers.o
2025-10-02T15:51:49.6271990Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/basics/dc_common.o
2025-10-02T15:51:49.7725916Z CC [M] net/sunrpc/xprtmultipath.o
2025-10-02T15:51:49.9569760Z CC drivers/mfd/max8997-irq.o
2025-10-02T15:51:50.0143206Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_ioctl.o
2025-10-02T15:51:50.4218019Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser.o
2025-10-02T15:51:51.0837125Z CC drivers/mfd/max8998.o
2025-10-02T15:51:51.1669781Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_resource.o
2025-10-02T15:51:51.2243711Z CC [M] net/sunrpc/debugfs.o
2025-10-02T15:51:52.1363013Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser_interface.o
2025-10-02T15:51:52.1824096Z CC drivers/mfd/max8998-irq.o
2025-10-02T15:51:52.6227054Z CC [M] net/sunrpc/backchannel_rqst.o
2025-10-02T15:51:52.6794413Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.o
2025-10-02T15:51:52.7158524Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser_helper.o
2025-10-02T15:51:52.7560812Z CC drivers/mfd/abx500-core.o
2025-10-02T15:51:53.4740366Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/command_table.o
2025-10-02T15:51:53.6745113Z CC drivers/mfd/ab3100-core.o
2025-10-02T15:51:53.6893691Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_fifo.o
2025-10-02T15:51:53.8511790Z CC [M] net/sunrpc/stats.o
2025-10-02T15:51:54.5995028Z CC [M] drivers/gpu/drm/i915/gvt/vgpu.o
2025-10-02T15:51:54.9061993Z CC drivers/mfd/ab3100-otp.o
2025-10-02T15:51:55.1901184Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_irq.o
2025-10-02T15:51:55.2630480Z CC [M] net/sunrpc/sysctl.o
2025-10-02T15:51:55.6326034Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/command_table_helper.o
2025-10-02T15:51:55.7292839Z CC drivers/mfd/adp5520.o
2025-10-02T15:51:55.9976400Z CC [M] drivers/gpu/drm/i915/gvt/trace_points.o
2025-10-02T15:51:56.0740782Z LD [M] net/sunrpc/sunrpc.o
2025-10-02T15:51:56.1911372Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_ldu.o
2025-10-02T15:51:56.2848056Z CC [M] net/rxrpc/af_rxrpc.o
2025-10-02T15:51:56.3043803Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser_common.o
2025-10-02T15:51:56.5090214Z CC drivers/mfd/tps6586x.o
2025-10-02T15:51:56.9939685Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/command_table2.o
2025-10-02T15:51:57.2257686Z CC drivers/mfd/tps65090.o
2025-10-02T15:51:57.5031823Z CC [M] drivers/gpu/drm/i915/gvt/firmware.o
2025-10-02T15:51:57.5344797Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_ttm_glue.o
2025-10-02T15:51:57.6737543Z CC drivers/mfd/aat2870-core.o
2025-10-02T15:51:58.4105770Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_overlay.o
2025-10-02T15:51:58.5997705Z CC drivers/mfd/intel_msic.o
2025-10-02T15:51:58.7682452Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/command_table_helper2.o
2025-10-02T15:51:58.8613130Z CC [M] drivers/gpu/drm/i915/gvt/interrupt.o
2025-10-02T15:51:59.1953167Z CC drivers/mfd/palmas.o
2025-10-02T15:51:59.4737161Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_marker.o
2025-10-02T15:51:59.6869120Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/bios_parser2.o
2025-10-02T15:51:59.9617796Z CC [M] net/rxrpc/call_accept.o
2025-10-02T15:52:00.1869664Z CC drivers/mfd/rc5t583.o
2025-10-02T15:52:00.3662642Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_gmrid_manager.o
2025-10-02T15:52:00.5061298Z CC [M] drivers/gpu/drm/i915/gvt/gtt.o
2025-10-02T15:52:00.6904037Z CC drivers/mfd/rc5t583-irq.o
2025-10-02T15:52:01.1326554Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce60/command_table_helper_dce60.o
2025-10-02T15:52:01.3065313Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_fence.o
2025-10-02T15:52:01.4193438Z CC drivers/mfd/sec-core.o
2025-10-02T15:52:01.7185687Z CC [M] net/rxrpc/call_event.o
2025-10-02T15:52:01.8160610Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce80/command_table_helper_dce80.o
2025-10-02T15:52:02.0190774Z CC drivers/mfd/sec-irq.o
2025-10-02T15:52:02.5070380Z CC drivers/mfd/syscon.o
2025-10-02T15:52:02.7182931Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce110/command_table_helper_dce110.o
2025-10-02T15:52:02.7715220Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_bo.o
2025-10-02T15:52:02.9439256Z CC drivers/mfd/as3711.o
2025-10-02T15:52:03.4115828Z CC [M] net/rxrpc/call_object.o
2025-10-02T15:52:03.4625662Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce112/command_table_helper_dce112.o
2025-10-02T15:52:03.5353472Z CC drivers/mfd/intel_soc_pmic_core.o
2025-10-02T15:52:03.7151375Z CC [M] drivers/gpu/drm/i915/gvt/cfg_space.o
2025-10-02T15:52:03.9266642Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_scrn.o
2025-10-02T15:52:04.1321806Z CC drivers/mfd/intel_soc_pmic_crc.o
2025-10-02T15:52:04.3255768Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/bios/dce112/command_table_helper2_dce112.o
2025-10-02T15:52:04.6817739Z CC drivers/mfd/intel_soc_pmic_chtwc.o
2025-10-02T15:52:04.9734657Z CC [M] drivers/gpu/drm/i915/gvt/opregion.o
2025-10-02T15:52:05.1699671Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dce_calcs.o
2025-10-02T15:52:05.2043546Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_context.o
2025-10-02T15:52:05.2078934Z CC [M] net/rxrpc/conn_client.o
2025-10-02T15:52:05.2724007Z CC [M] drivers/mfd/88pm800.o
2025-10-02T15:52:06.0694177Z CC [M] drivers/mfd/88pm80x.o
2025-10-02T15:52:06.2104465Z CC [M] drivers/gpu/drm/i915/gvt/mmio.o
2025-10-02T15:52:06.5964469Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_surface.o
2025-10-02T15:52:06.6961261Z CC [M] drivers/mfd/88pm805.o
2025-10-02T15:52:07.2811190Z CC [M] net/rxrpc/conn_event.o
2025-10-02T15:52:07.3520794Z CC [M] drivers/mfd/sm501.o
2025-10-02T15:52:07.4975220Z CC [M] drivers/gpu/drm/i915/gvt/display.o
2025-10-02T15:52:08.3116693Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_prime.o
2025-10-02T15:52:08.6633106Z CC [M] drivers/mfd/bcm590xx.o
2025-10-02T15:52:08.7294265Z CC [M] net/rxrpc/conn_object.o
2025-10-02T15:52:09.0981293Z CC [M] drivers/gpu/drm/i915/gvt/edid.o
2025-10-02T15:52:09.2166433Z CC [M] drivers/mfd/bd9571mwv.o
2025-10-02T15:52:09.4304351Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_mob.o
2025-10-02T15:52:09.8163668Z CC [M] drivers/mfd/cros_ec_dev.o
2025-10-02T15:52:10.3113704Z CC [M] net/rxrpc/conn_service.o
2025-10-02T15:52:10.3940539Z CC [M] drivers/mfd/htc-pasic3.o
2025-10-02T15:52:10.5327898Z CC [M] drivers/gpu/drm/i915/gvt/execlist.o
2025-10-02T15:52:10.6775995Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_shader.o
2025-10-02T15:52:10.8375632Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/bw_fixed.o
2025-10-02T15:52:11.0688128Z CC [M] drivers/mfd/lp873x.o
2025-10-02T15:52:11.6504115Z CC [M] net/rxrpc/input.o
2025-10-02T15:52:11.6552743Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/custom_float.o
2025-10-02T15:52:11.8317280Z CC [M] drivers/gpu/drm/i915/gvt/scheduler.o
2025-10-02T15:52:11.9526921Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf_res.o
2025-10-02T15:52:11.9595129Z CC [M] drivers/mfd/tqmx86.o
2025-10-02T15:52:12.4842204Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calcs.o
2025-10-02T15:52:12.5255184Z CC [M] drivers/mfd/arizona-i2c.o
2025-10-02T15:52:13.0301784Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_cmdbuf.o
2025-10-02T15:52:13.2384703Z CC [M] drivers/mfd/arizona-spi.o
2025-10-02T15:52:13.7805265Z CC [M] net/rxrpc/insecure.o
2025-10-02T15:52:14.1737888Z CC [M] drivers/mfd/wcd934x.o
2025-10-02T15:52:14.2561488Z CC [M] drivers/gpu/drm/i915/gvt/sched_policy.o
2025-10-02T15:52:14.2613978Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calc_math.o
2025-10-02T15:52:14.4711942Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_stdu.o
2025-10-02T15:52:14.5306892Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/calcs/dcn_calc_auto.o
2025-10-02T15:52:14.9274368Z CC [M] drivers/mfd/wm8994-core.o
2025-10-02T15:52:15.0063935Z CC [M] net/rxrpc/key.o
2025-10-02T15:52:15.7125776Z CC [M] drivers/gpu/drm/i915/gvt/mmio_context.o
2025-10-02T15:52:15.8989709Z CC [M] drivers/mfd/wm8994-irq.o
2025-10-02T15:52:16.0592528Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_cotable.o
2025-10-02T15:52:16.6893139Z CC [M] drivers/mfd/wm8994-regmap.o
2025-10-02T15:52:17.1326849Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_so.o
2025-10-02T15:52:17.2165936Z CC [M] drivers/gpu/drm/i915/gvt/cmd_parser.o
2025-10-02T15:52:17.3378665Z CC [M] drivers/mfd/madera-core.o
2025-10-02T15:52:17.4275144Z CC [M] net/rxrpc/local_event.o
2025-10-02T15:52:17.8936781Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/clk_mgr.o
2025-10-02T15:52:18.1215053Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_binding.o
2025-10-02T15:52:18.4088706Z CC [M] drivers/mfd/cs47l15-tables.o
2025-10-02T15:52:18.6833628Z CC [M] net/rxrpc/local_object.o
2025-10-02T15:52:18.7967147Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce60/dce60_clk_mgr.o
2025-10-02T15:52:19.3345955Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_msg.o
2025-10-02T15:52:19.4255809Z CC [M] drivers/mfd/cs47l35-tables.o
2025-10-02T15:52:19.6036822Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce100/dce_clk_mgr.o
2025-10-02T15:52:19.7645692Z CC [M] drivers/gpu/drm/i915/gvt/debugfs.o
2025-10-02T15:52:20.2760552Z CC [M] net/rxrpc/misc.o
2025-10-02T15:52:20.3670831Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_simple_resource.o
2025-10-02T15:52:20.4244171Z CC [M] drivers/mfd/cs47l85-tables.o
2025-10-02T15:52:20.6033136Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce110/dce110_clk_mgr.o
2025-10-02T15:52:21.1525721Z CC [M] drivers/gpu/drm/i915/gvt/fb_decoder.o
2025-10-02T15:52:21.3365606Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_va.o
2025-10-02T15:52:21.3842313Z CC [M] drivers/mfd/cs47l90-tables.o
2025-10-02T15:52:21.4043354Z CC [M] net/rxrpc/net_ns.o
2025-10-02T15:52:21.5181971Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce112/dce112_clk_mgr.o
2025-10-02T15:52:22.2318912Z CC [M] drivers/mfd/cs47l92-tables.o
2025-10-02T15:52:22.2895344Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_blit.o
2025-10-02T15:52:22.5101558Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dce120/dce120_clk_mgr.o
2025-10-02T15:52:22.5821156Z CC [M] drivers/gpu/drm/i915/gvt/dmabuf.o
2025-10-02T15:52:22.7249861Z CC [M] net/rxrpc/output.o
2025-10-02T15:52:23.0132002Z CC [M] drivers/mfd/madera-i2c.o
2025-10-02T15:52:23.3176122Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn10/rv1_clk_mgr.o
2025-10-02T15:52:23.5136601Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_validation.o
2025-10-02T15:52:23.8543471Z CC [M] drivers/mfd/madera-spi.o
2025-10-02T15:52:24.0786488Z CC [M] drivers/gpu/drm/i915/gvt/page_track.o
2025-10-02T15:52:24.3753674Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn10/rv1_clk_mgr_vbios_smu.o
2025-10-02T15:52:24.5745888Z CC [M] drivers/mfd/tps6105x.o
2025-10-02T15:52:24.6724285Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_page_dirty.o
2025-10-02T15:52:24.8046771Z CC [M] net/rxrpc/peer_event.o
2025-10-02T15:52:25.2847744Z CC [M] drivers/gpu/drm/i915/gvt/kvmgt.o
2025-10-02T15:52:25.3771424Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn10/rv2_clk_mgr.o
2025-10-02T15:52:25.5838069Z CC [M] drivers/mfd/tps65010.o
2025-10-02T15:52:25.7682447Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_streamoutput.o
2025-10-02T15:52:26.1818405Z CC [M] net/rxrpc/peer_object.o
2025-10-02T15:52:26.4977646Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn20/dcn20_clk_mgr.o
2025-10-02T15:52:26.6080306Z CC [M] drivers/mfd/tps6507x.o
2025-10-02T15:52:26.8105834Z CC [M] drivers/gpu/drm/vmwgfx/ttm_object.o
2025-10-02T15:52:27.2684866Z CC [M] drivers/mfd/tps65086.o
2025-10-02T15:52:27.6001117Z LD [M] drivers/gpu/drm/i915/i915.o
2025-10-02T15:52:27.6847518Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn21/rn_clk_mgr.o
2025-10-02T15:52:27.7573084Z CC [M] drivers/mfd/tps65912-core.o
2025-10-02T15:52:27.8739927Z CC [M] drivers/gpu/drm/vmwgfx/ttm_lock.o
2025-10-02T15:52:27.9698512Z CC [M] net/rxrpc/recvmsg.o
2025-10-02T15:52:28.4001019Z CC [M] drivers/mfd/tps65912-i2c.o
2025-10-02T15:52:28.5544328Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx_thp.o
2025-10-02T15:52:28.7541200Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn21/rn_clk_mgr_vbios_smu.o
2025-10-02T15:52:28.7555613Z CC [M] drivers/mfd/tps65912-spi.o
2025-10-02T15:52:28.8722059Z CC [M] drivers/nfc/fdp/fdp.o
2025-10-02T15:52:29.4563942Z LD [M] drivers/gpu/drm/vmwgfx/vmwgfx.o
2025-10-02T15:52:29.5621432Z CC [M] drivers/mfd/mc13xxx-core.o
2025-10-02T15:52:29.6323672Z CC [M] drivers/nfc/pn544/pn544.o
2025-10-02T15:52:29.7472842Z CC [M] net/rxrpc/rtt.o
2025-10-02T15:52:29.7504923Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn30/dcn30_clk_mgr.o
2025-10-02T15:52:29.8111630Z CC [M] drivers/nfc/fdp/i2c.o
2025-10-02T15:52:30.3064957Z CC [M] drivers/mfd/mc13xxx-spi.o
2025-10-02T15:52:30.5763279Z CC [M] drivers/nfc/pn544/i2c.o
2025-10-02T15:52:30.6572997Z LD [M] drivers/nfc/fdp/fdp_i2c.o
2025-10-02T15:52:30.6905340Z CC [M] net/rxrpc/security.o
2025-10-02T15:52:31.0284652Z CC [M] net/kcm/kcmsock.o
2025-10-02T15:52:31.0812416Z CC [M] drivers/mfd/mc13xxx-i2c.o
2025-10-02T15:52:31.2566993Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn30/dcn30_clk_mgr_smu_msg.o
2025-10-02T15:52:31.6344151Z CC [M] drivers/nfc/pn544/mei.o
2025-10-02T15:52:31.8055164Z CC [M] drivers/mfd/ucb1400_core.o
2025-10-02T15:52:32.1170583Z CC [M] net/rxrpc/sendmsg.o
2025-10-02T15:52:32.2659230Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_audio.o
2025-10-02T15:52:32.3781226Z LD [M] drivers/nfc/pn544/pn544_i2c.o
2025-10-02T15:52:32.4057922Z LD [M] drivers/nfc/pn544/pn544_mei.o
2025-10-02T15:52:32.4813522Z CC [M] drivers/nfc/microread/microread.o
2025-10-02T15:52:32.5993763Z CC [M] drivers/mfd/axp20x.o
2025-10-02T15:52:33.0958657Z CC [M] net/kcm/kcmproc.o
2025-10-02T15:52:33.3403595Z CC [M] drivers/nfc/microread/i2c.o
2025-10-02T15:52:33.4256032Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_stream_encoder.o
2025-10-02T15:52:33.6484632Z CC [M] drivers/mfd/axp20x-i2c.o
2025-10-02T15:52:34.1021255Z CC [M] net/rxrpc/skbuff.o
2025-10-02T15:52:34.2003600Z CC [M] drivers/nfc/microread/mei.o
2025-10-02T15:52:34.2989281Z CC [M] drivers/mfd/lp3943.o
2025-10-02T15:52:34.3265202Z LD [M] net/kcm/kcm.o
2025-10-02T15:52:34.3802478Z CC [M] drivers/nfc/pn533/pn533.o
2025-10-02T15:52:34.8847433Z LD [M] drivers/nfc/microread/microread_i2c.o
2025-10-02T15:52:34.9090304Z LD [M] drivers/nfc/microread/microread_mei.o
2025-10-02T15:52:34.9260123Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_link_encoder.o
2025-10-02T15:52:34.9768152Z CC drivers/nvdimm/core.o
2025-10-02T15:52:35.0759319Z CC [M] drivers/mfd/ti-lmu.o
2025-10-02T15:52:35.4294493Z CC [M] net/rxrpc/utils.o
2025-10-02T15:52:35.7373932Z CC [M] drivers/mfd/da9062-core.o
2025-10-02T15:52:36.0134028Z CC drivers/nvdimm/bus.o
2025-10-02T15:52:36.2535377Z CC [M] drivers/nfc/pn533/usb.o
2025-10-02T15:52:36.5597963Z CC [M] drivers/mfd/da9063-core.o
2025-10-02T15:52:36.6033106Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_hwseq.o
2025-10-02T15:52:36.7599335Z CC [M] net/rxrpc/proc.o
2025-10-02T15:52:37.2061976Z CC [M] drivers/mfd/da9063-irq.o
2025-10-02T15:52:37.3592427Z CC [M] drivers/nfc/pn533/i2c.o
2025-10-02T15:52:37.4532618Z CC drivers/nvdimm/dimm_devs.o
2025-10-02T15:52:37.4688731Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_mem_input.o
2025-10-02T15:52:37.6301752Z CC [M] drivers/mfd/da9063-i2c.o
2025-10-02T15:52:38.1693902Z CC [M] net/rxrpc/rxkad.o
2025-10-02T15:52:38.2530289Z CC [M] drivers/mfd/da9150-core.o
2025-10-02T15:52:38.3849191Z CC [M] drivers/nfc/pn533/uart.o
2025-10-02T15:52:38.6202761Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_clock_source.o
2025-10-02T15:52:38.6740633Z CC drivers/nvdimm/dimm.o
2025-10-02T15:52:38.9738107Z CC [M] drivers/mfd/max14577.o
2025-10-02T15:52:39.4013308Z LD [M] drivers/nfc/pn533/pn533_usb.o
2025-10-02T15:52:39.4190318Z LD [M] drivers/nfc/pn533/pn533_i2c.o
2025-10-02T15:52:39.4363155Z LD [M] drivers/nfc/pn533/pn532_uart.o
2025-10-02T15:52:39.4777765Z CC drivers/nvdimm/region_devs.o
2025-10-02T15:52:39.5222444Z CC [M] drivers/nfc/nfcmrvl/main.o
2025-10-02T15:52:40.0471826Z CC [M] drivers/mfd/max77693.o
2025-10-02T15:52:40.1160494Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_scl_filters.o
2025-10-02T15:52:40.2225221Z CC [M] net/rxrpc/sysctl.o
2025-10-02T15:52:40.2981976Z CC [M] drivers/nfc/nfcmrvl/fw_dnld.o
2025-10-02T15:52:40.9163965Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_transform.o
2025-10-02T15:52:41.0661168Z CC [M] drivers/mfd/max8907.o
2025-10-02T15:52:41.2318462Z CC [M] drivers/nfc/nfcmrvl/usb.o
2025-10-02T15:52:41.3153265Z LD [M] net/rxrpc/rxrpc.o
2025-10-02T15:52:41.4612800Z CC [M] net/atm/addr.o
2025-10-02T15:52:41.6488547Z CC drivers/nvdimm/region.o
2025-10-02T15:52:41.7140121Z CC [M] drivers/mfd/mp2629.o
2025-10-02T15:52:42.2245763Z CC [M] drivers/nfc/nfcmrvl/uart.o
2025-10-02T15:52:42.2640879Z CC [M] drivers/mfd/pcf50633-core.o
2025-10-02T15:52:42.4693118Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_opp.o
2025-10-02T15:52:42.6098377Z CC drivers/nvdimm/namespace_devs.o
2025-10-02T15:52:42.6420804Z CC [M] net/atm/pvc.o
2025-10-02T15:52:43.0079440Z CC [M] drivers/nfc/nfcmrvl/i2c.o
2025-10-02T15:52:43.0830145Z CC [M] drivers/mfd/pcf50633-irq.o
2025-10-02T15:52:43.5451262Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_dmcu.o
2025-10-02T15:52:43.8571777Z CC [M] net/atm/signaling.o
2025-10-02T15:52:43.9015924Z CC [M] drivers/nfc/nfcmrvl/spi.o
2025-10-02T15:52:44.1231365Z CC [M] drivers/mfd/pcf50633-adc.o
2025-10-02T15:52:44.8010344Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl.o
2025-10-02T15:52:44.8160969Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_usb.o
2025-10-02T15:52:44.8451026Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_uart.o
2025-10-02T15:52:44.8657726Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_i2c.o
2025-10-02T15:52:44.8837759Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_spi.o
2025-10-02T15:52:44.9510675Z CC [M] drivers/nfc/st21nfca/core.o
2025-10-02T15:52:44.9743484Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_abm.o
2025-10-02T15:52:45.0226355Z CC drivers/nvdimm/label.o
2025-10-02T15:52:45.0504109Z CC [M] net/atm/svc.o
2025-10-02T15:52:45.1201850Z CC [M] drivers/mfd/pcf50633-gpio.o
2025-10-02T15:52:45.9200188Z CC [M] drivers/mfd/kempld-core.o
2025-10-02T15:52:45.9302998Z CC [M] drivers/nfc/st21nfca/dep.o
2025-10-02T15:52:46.0238332Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_ipp.o
2025-10-02T15:52:46.5445420Z CC [M] net/atm/ioctl.o
2025-10-02T15:52:46.5862188Z CC [M] drivers/mfd/intel_quark_i2c_gpio.o
2025-10-02T15:52:46.8770942Z CC drivers/nvdimm/badrange.o
2025-10-02T15:52:46.8861288Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_aux.o
2025-10-02T15:52:46.9568855Z CC [M] drivers/nfc/st21nfca/se.o
2025-10-02T15:52:47.3588685Z CC [M] drivers/mfd/lpc_sch.o
2025-10-02T15:52:47.7035613Z CC drivers/nvdimm/claim.o
2025-10-02T15:52:47.7261014Z CC [M] net/atm/common.o
2025-10-02T15:52:47.8048094Z CC [M] drivers/nfc/st21nfca/vendor_cmds.o
2025-10-02T15:52:47.9476261Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_i2c.o
2025-10-02T15:52:48.2059147Z CC [M] drivers/mfd/lpc_ich.o
2025-10-02T15:52:48.5371220Z CC drivers/nvdimm/btt_devs.o
2025-10-02T15:52:48.7136062Z CC [M] drivers/nfc/st21nfca/i2c.o
2025-10-02T15:52:48.8509388Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_i2c_hw.o
2025-10-02T15:52:48.9787297Z CC [M] drivers/mfd/rdc321x-southbridge.o
2025-10-02T15:52:49.2719643Z CC [M] net/atm/atm_misc.o
2025-10-02T15:52:49.5943070Z CC drivers/nvdimm/pfn_devs.o
2025-10-02T15:52:49.7501683Z CC [M] drivers/mfd/janz-cmodio.o
2025-10-02T15:52:49.7781954Z LD [M] drivers/nfc/st21nfca/st21nfca_hci.o
2025-10-02T15:52:49.8148528Z LD [M] drivers/nfc/st21nfca/st21nfca_i2c.o
2025-10-02T15:52:49.8769125Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_i2c_sw.o
2025-10-02T15:52:49.8996402Z CC [M] drivers/nfc/st-nci/ndlc.o
2025-10-02T15:52:50.2205129Z CC [M] net/atm/raw.o
2025-10-02T15:52:50.6392448Z CC [M] drivers/mfd/vx855.o
2025-10-02T15:52:50.6964703Z CC [M] drivers/nfc/st-nci/core.o
2025-10-02T15:52:50.7069191Z CC drivers/nvdimm/dax_devs.o
2025-10-02T15:52:50.9181350Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dmub_psr.o
2025-10-02T15:52:51.2660337Z CC [M] net/atm/resources.o
2025-10-02T15:52:51.2988684Z CC [M] drivers/mfd/wl1273-core.o
2025-10-02T15:52:51.4815026Z CC [M] drivers/nfc/st-nci/se.o
2025-10-02T15:52:51.5373896Z CC [M] drivers/nvdimm/pmem.o
2025-10-02T15:52:51.9280612Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dmub_abm.o
2025-10-02T15:52:51.9490048Z CC [M] drivers/mfd/si476x-cmd.o
2025-10-02T15:52:52.3747740Z CC [M] drivers/nfc/st-nci/vendor_cmds.o
2025-10-02T15:52:52.5421532Z CC [M] net/atm/atm_sysfs.o
2025-10-02T15:52:52.8860010Z CC [M] drivers/nvdimm/btt.o
2025-10-02T15:52:53.0940489Z CC [M] drivers/nfc/st-nci/i2c.o
2025-10-02T15:52:53.1378277Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dce_panel_cntl.o
2025-10-02T15:52:53.4072197Z CC [M] drivers/mfd/si476x-prop.o
2025-10-02T15:52:53.4862311Z CC [M] net/atm/proc.o
2025-10-02T15:52:53.8925692Z CC [M] drivers/nfc/st-nci/spi.o
2025-10-02T15:52:54.3762592Z CC [M] drivers/mfd/si476x-i2c.o
2025-10-02T15:52:54.4141446Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce/dmub_hw_lock_mgr.o
2025-10-02T15:52:54.6662838Z CC [M] drivers/nvdimm/blk.o
2025-10-02T15:52:54.8056612Z LD [M] drivers/nfc/st-nci/st-nci.o
2025-10-02T15:52:54.8244255Z LD [M] drivers/nfc/st-nci/st-nci_i2c.o
2025-10-02T15:52:54.8510175Z LD [M] drivers/nfc/st-nci/st-nci_spi.o
2025-10-02T15:52:54.9255541Z CC [M] net/atm/clip.o
2025-10-02T15:52:54.9439832Z CC [M] drivers/nfc/nxp-nci/core.o
2025-10-02T15:52:55.2209298Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/gpio_base.o
2025-10-02T15:52:55.4626834Z CC [M] drivers/mfd/intel-lpss.o
2025-10-02T15:52:55.5286356Z CC [M] drivers/nvdimm/e820.o
2025-10-02T15:52:55.7150121Z CC [M] drivers/nfc/nxp-nci/firmware.o
2025-10-02T15:52:55.9480680Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/gpio_service.o
2025-10-02T15:52:56.2016684Z CC [M] drivers/mfd/intel-lpss-pci.o
2025-10-02T15:52:56.2722555Z CC [M] drivers/nvdimm/virtio_pmem.o
2025-10-02T15:52:56.4684650Z CC [M] net/atm/br2684.o
2025-10-02T15:52:56.5859217Z CC [M] drivers/nfc/nxp-nci/i2c.o
2025-10-02T15:52:56.7862448Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_factory.o
2025-10-02T15:52:57.0880422Z CC [M] drivers/mfd/intel-lpss-acpi.o
2025-10-02T15:52:57.1189381Z CC [M] drivers/nvdimm/nd_virtio.o
2025-10-02T15:52:57.3720625Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_gpio.o
2025-10-02T15:52:57.4943212Z LD [M] drivers/nfc/nxp-nci/nxp-nci.o
2025-10-02T15:52:57.5222784Z LD [M] drivers/nfc/nxp-nci/nxp-nci_i2c.o
2025-10-02T15:52:57.6030709Z CC [M] drivers/nfc/s3fwrn5/core.o
2025-10-02T15:52:57.6581728Z CC [M] drivers/mfd/intel_pmc_bxt.o
2025-10-02T15:52:57.8114659Z CC [M] net/atm/lec.o
2025-10-02T15:52:57.9031329Z LD [M] drivers/nvdimm/nd_pmem.o
2025-10-02T15:52:57.9301986Z LD [M] drivers/nvdimm/nd_btt.o
2025-10-02T15:52:57.9611709Z LD [M] drivers/nvdimm/nd_blk.o
2025-10-02T15:52:57.9892909Z LD [M] drivers/nvdimm/nd_e820.o
2025-10-02T15:52:58.0171988Z AR drivers/nvdimm/built-in.a
2025-10-02T15:52:58.1221687Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_hpd.o
2025-10-02T15:52:58.1394740Z CC [M] drivers/mfd/viperboard.o
2025-10-02T15:52:58.2002779Z CC [M] net/atm/mpc.o
2025-10-02T15:52:58.3409669Z CC [M] drivers/nfc/s3fwrn5/firmware.o
2025-10-02T15:52:58.8343013Z CC [M] drivers/mfd/lm3533-core.o
2025-10-02T15:52:58.9161386Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_ddc.o
2025-10-02T15:52:59.1396333Z CC [M] drivers/nfc/s3fwrn5/nci.o
2025-10-02T15:52:59.7040933Z CC [M] drivers/mfd/lm3533-ctrlbank.o
2025-10-02T15:52:59.7296980Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_generic.o
2025-10-02T15:52:59.8906244Z CC [M] drivers/nfc/s3fwrn5/i2c.o
2025-10-02T15:53:00.0505411Z LD [M] drivers/nfc/s3fwrn5/s3fwrn5.o
2025-10-02T15:53:00.0983102Z CC [M] net/l2tp/l2tp_core.o
2025-10-02T15:53:00.1510937Z CC [M] drivers/mfd/retu-mfd.o
2025-10-02T15:53:00.1898246Z CC [M] net/atm/mpoa_caches.o
2025-10-02T15:53:00.4117486Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/hw_translate.o
2025-10-02T15:53:00.7037769Z LD [M] drivers/nfc/s3fwrn5/s3fwrn5_i2c.o
2025-10-02T15:53:00.7375845Z CC [M] drivers/mfd/iqs62x.o
2025-10-02T15:53:00.7904597Z CC [M] drivers/nfc/st95hf/spi.o
2025-10-02T15:53:01.0521290Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce60/hw_translate_dce60.o
2025-10-02T15:53:01.4589948Z CC [M] drivers/mfd/menf21bmc.o
2025-10-02T15:53:01.5729385Z CC [M] drivers/nfc/st95hf/core.o
2025-10-02T15:53:01.6323970Z CC [M] net/atm/mpoa_proc.o
2025-10-02T15:53:01.7872148Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce60/hw_factory_dce60.o
2025-10-02T15:53:01.9475564Z CC [M] drivers/mfd/dln2.o
2025-10-02T15:53:02.5238986Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce80/hw_translate_dce80.o
2025-10-02T15:53:02.5565073Z LD [M] drivers/nfc/st95hf/st95hf.o
2025-10-02T15:53:02.5887812Z AR drivers/nfc/built-in.a
2025-10-02T15:53:02.6007153Z CC [M] drivers/nfc/mei_phy.o
2025-10-02T15:53:02.8244008Z CC [M] net/atm/pppoatm.o
2025-10-02T15:53:02.8880886Z CC [M] drivers/mfd/rt5033.o
2025-10-02T15:53:03.1296009Z CC [M] net/l2tp/l2tp_ppp.o
2025-10-02T15:53:03.4621182Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce80/hw_factory_dce80.o
2025-10-02T15:53:03.5329384Z CC [M] drivers/nfc/nfcsim.o
2025-10-02T15:53:03.6030671Z CC [M] drivers/mfd/sky81452.o
2025-10-02T15:53:04.2203687Z LD [M] net/atm/atm.o
2025-10-02T15:53:04.2742892Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce110/hw_translate_dce110.o
2025-10-02T15:53:04.2846783Z LD [M] net/atm/mpoa.o
2025-10-02T15:53:04.3600873Z CC [M] drivers/gpu/drm/vgem/vgem_drv.o
2025-10-02T15:53:04.4689728Z CC [M] drivers/mfd/intel_soc_pmic_bxtwc.o
2025-10-02T15:53:04.4838042Z CC [M] drivers/nfc/port100.o
2025-10-02T15:53:04.7565059Z CC [M] net/l2tp/l2tp_ip.o
2025-10-02T15:53:05.0935677Z CC [M] drivers/mfd/intel_soc_pmic_chtdc_ti.o
2025-10-02T15:53:05.2018775Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce110/hw_factory_dce110.o
2025-10-02T15:53:05.3493127Z CC [M] drivers/gpu/drm/vgem/vgem_fence.o
2025-10-02T15:53:05.7100995Z CC [M] drivers/nfc/trf7970a.o
2025-10-02T15:53:05.7628558Z CC [M] drivers/mfd/mt6360-core.o
2025-10-02T15:53:05.9016722Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce120/hw_translate_dce120.o
2025-10-02T15:53:06.1301876Z LD [M] drivers/gpu/drm/vgem/vgem.o
2025-10-02T15:53:06.2080962Z AR drivers/dax/pmem/built-in.a
2025-10-02T15:53:06.2192789Z CC [M] drivers/dax/pmem/pmem.o
2025-10-02T15:53:06.2743060Z CC [M] net/l2tp/l2tp_netlink.o
2025-10-02T15:53:06.2822867Z CC [M] drivers/mfd/mt6397-core.o
2025-10-02T15:53:06.6793050Z CC [M] drivers/mfd/mt6397-irq.o
2025-10-02T15:53:06.7022254Z CC [M] drivers/dax/pmem/core.o
2025-10-02T15:53:06.7878005Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dce120/hw_factory_dce120.o
2025-10-02T15:53:07.3554223Z CC [M] drivers/dax/pmem/compat.o
2025-10-02T15:53:07.6171852Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn10/hw_translate_dcn10.o
2025-10-02T15:53:07.6214999Z CC [M] drivers/mfd/mt6358-irq.o
2025-10-02T15:53:07.6466627Z LD [M] drivers/dax/pmem/dax_pmem.o
2025-10-02T15:53:07.6705029Z CC [M] net/l2tp/l2tp_eth.o
2025-10-02T15:53:07.9219965Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn10/hw_factory_dcn10.o
2025-10-02T15:53:07.9234861Z LD [M] drivers/dax/pmem/dax_pmem_core.o
2025-10-02T15:53:07.9359214Z LD [M] drivers/dax/pmem/dax_pmem_compat.o
2025-10-02T15:53:07.9922031Z CC drivers/dax/hmem/device.o
2025-10-02T15:53:08.2636391Z CC [M] drivers/mfd/intel_soc_pmic_mrfld.o
2025-10-02T15:53:08.5300814Z CC [M] drivers/gpu/drm/vkms/vkms_drv.o
2025-10-02T15:53:08.5576890Z CC [M] drivers/dax/hmem/hmem.o
2025-10-02T15:53:08.8204795Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn20/hw_translate_dcn20.o
2025-10-02T15:53:08.8452912Z CC [M] net/l2tp/l2tp_debugfs.o
2025-10-02T15:53:08.8530700Z CC [M] drivers/mfd/rave-sp.o
2025-10-02T15:53:09.0655614Z AR drivers/dax/hmem/built-in.a
2025-10-02T15:53:09.0768679Z LD [M] drivers/dax/hmem/dax_hmem.o
2025-10-02T15:53:09.1065665Z CC drivers/dax/super.o
2025-10-02T15:53:09.3629656Z CC [M] drivers/mfd/intel-m10-bmc.o
2025-10-02T15:53:09.6595825Z CC [M] drivers/gpu/drm/vkms/vkms_plane.o
2025-10-02T15:53:09.8874817Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn20/hw_factory_dcn20.o
2025-10-02T15:53:09.9942906Z LD [M] drivers/mfd/wm8994.o
2025-10-02T15:53:10.0228919Z LD [M] drivers/mfd/madera.o
2025-10-02T15:53:10.0702476Z LD [M] drivers/mfd/da9063.o
2025-10-02T15:53:10.0957993Z LD [M] drivers/mfd/pcf50633.o
2025-10-02T15:53:10.1111552Z LD [M] drivers/mfd/si476x-core.o
2025-10-02T15:53:10.1308423Z LD [M] drivers/mfd/mt6397.o
2025-10-02T15:53:10.1530653Z AR drivers/mfd/built-in.a
2025-10-02T15:53:10.1677307Z CC drivers/dax/bus.o
2025-10-02T15:53:10.1922004Z CC [M] net/l2tp/l2tp_ip6.o
2025-10-02T15:53:10.5071333Z CC [M] drivers/gpu/drm/vkms/vkms_output.o
2025-10-02T15:53:10.6864154Z CC [M] net/phonet/pn_dev.o
2025-10-02T15:53:10.6875628Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn21/hw_translate_dcn21.o
2025-10-02T15:53:11.2718612Z CC [M] drivers/gpu/drm/vkms/vkms_crtc.o
2025-10-02T15:53:11.5231224Z CC [M] drivers/dax/device.o
2025-10-02T15:53:11.6362773Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn21/hw_factory_dcn21.o
2025-10-02T15:53:12.0507494Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn30/hw_translate_dcn30.o
2025-10-02T15:53:12.1300486Z CC [M] drivers/gpu/drm/vkms/vkms_gem.o
2025-10-02T15:53:12.3206115Z CC [M] net/phonet/pn_netlink.o
2025-10-02T15:53:12.3535396Z CC [M] drivers/gpu/drm/vkms/vkms_composer.o
2025-10-02T15:53:12.5291624Z CC [M] drivers/dax/kmem.o
2025-10-02T15:53:12.8890294Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/dcn30/hw_factory_dcn30.o
2025-10-02T15:53:13.0934761Z CC [M] net/phonet/socket.o
2025-10-02T15:53:13.1906818Z CC [M] drivers/gpu/drm/vkms/vkms_writeback.o
2025-10-02T15:53:13.2950905Z LD [M] drivers/dax/device_dax.o
2025-10-02T15:53:13.3196831Z AR drivers/dax/built-in.a
2025-10-02T15:53:13.3810365Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/diagnostics/hw_translate_diag.o
2025-10-02T15:53:13.7256959Z CC [M] drivers/gpu/drm/nouveau/nvif/object.o
2025-10-02T15:53:13.7431680Z CC [M] drivers/gpu/drm/gma500/accel_2d.o
2025-10-02T15:53:13.8402560Z LD [M] drivers/gpu/drm/vkms/vkms.o
2025-10-02T15:53:13.8847110Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/gpio/diagnostics/hw_factory_diag.o
2025-10-02T15:53:14.3151516Z CC drivers/dma-buf/heaps/heap-helpers.o
2025-10-02T15:53:14.4182472Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/irq_service.o
2025-10-02T15:53:14.5008559Z CC [M] drivers/gpu/drm/gma500/backlight.o
2025-10-02T15:53:14.8283970Z CC [M] net/phonet/datagram.o
2025-10-02T15:53:14.8897956Z CC [M] drivers/gpu/drm/nouveau/nvif/client.o
2025-10-02T15:53:15.0841136Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dce60/irq_service_dce60.o
2025-10-02T15:53:15.2525379Z CC [M] drivers/gpu/drm/gma500/framebuffer.o
2025-10-02T15:53:15.2834960Z CC drivers/dma-buf/heaps/system_heap.o
2025-10-02T15:53:15.7912944Z CC [M] drivers/gpu/drm/nouveau/nvif/device.o
2025-10-02T15:53:15.9562081Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dce80/irq_service_dce80.o
2025-10-02T15:53:16.0135771Z CC [M] net/phonet/sysctl.o
2025-10-02T15:53:16.0644265Z CC drivers/dma-buf/heaps/cma_heap.o
2025-10-02T15:53:16.3649952Z CC [M] drivers/gpu/drm/gma500/gem.o
2025-10-02T15:53:16.5849712Z CC [M] drivers/gpu/drm/nouveau/nvif/disp.o
2025-10-02T15:53:16.7540328Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dce110/irq_service_dce110.o
2025-10-02T15:53:16.8348682Z AR drivers/dma-buf/heaps/built-in.a
2025-10-02T15:53:16.8619341Z CC drivers/dma-buf/dma-buf.o
2025-10-02T15:53:17.1547538Z CC [M] net/phonet/af_phonet.o
2025-10-02T15:53:17.1940933Z CC [M] drivers/gpu/drm/gma500/gtt.o
2025-10-02T15:53:17.3808821Z CC [M] drivers/gpu/drm/nouveau/nvif/driver.o
2025-10-02T15:53:17.6034349Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dce120/irq_service_dce120.o
2025-10-02T15:53:18.2614875Z CC [M] drivers/gpu/drm/nouveau/nvif/fifo.o
2025-10-02T15:53:18.2780286Z CC drivers/dma-buf/dma-fence.o
2025-10-02T15:53:18.4423897Z CC [M] drivers/gpu/drm/gma500/intel_bios.o
2025-10-02T15:53:18.4471311Z CC [M] net/phonet/pep.o
2025-10-02T15:53:18.4703085Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dcn10/irq_service_dcn10.o
2025-10-02T15:53:19.1714349Z CC [M] drivers/gpu/drm/nouveau/nvif/mem.o
2025-10-02T15:53:19.4543420Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dcn20/irq_service_dcn20.o
2025-10-02T15:53:19.5665730Z CC drivers/dma-buf/dma-fence-array.o
2025-10-02T15:53:19.6554098Z CC [M] drivers/gpu/drm/gma500/intel_i2c.o
2025-10-02T15:53:20.0654749Z CC [M] drivers/gpu/drm/nouveau/nvif/mmu.o
2025-10-02T15:53:20.2036628Z CC drivers/dma-buf/dma-fence-chain.o
2025-10-02T15:53:20.2849207Z CC [M] net/phonet/pep-gprs.o
2025-10-02T15:53:20.3866815Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dcn21/irq_service_dcn21.o
2025-10-02T15:53:20.5084950Z CC [M] drivers/gpu/drm/gma500/intel_gmbus.o
2025-10-02T15:53:20.8236645Z CC drivers/dma-buf/dma-resv.o
2025-10-02T15:53:20.9825904Z CC [M] drivers/gpu/drm/nouveau/nvif/notify.o
2025-10-02T15:53:21.3706199Z LD [M] net/phonet/phonet.o
2025-10-02T15:53:21.4000813Z LD [M] net/phonet/pn_pep.o
2025-10-02T15:53:21.4729372Z CC [M] net/sctp/sm_statetable.o
2025-10-02T15:53:21.4763017Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/irq/dcn30/irq_service_dcn30.o
2025-10-02T15:53:21.5780587Z CC [M] drivers/gpu/drm/gma500/mmu.o
2025-10-02T15:53:21.9738593Z CC [M] drivers/gpu/drm/nouveau/nvif/timer.o
2025-10-02T15:53:22.0311116Z CC drivers/dma-buf/seqno-fence.o
2025-10-02T15:53:22.2845697Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/virtual/virtual_link_encoder.o
2025-10-02T15:53:22.6912328Z CC [M] net/sctp/sm_statefuns.o
2025-10-02T15:53:22.7230982Z CC [M] drivers/gpu/drm/gma500/blitter.o
2025-10-02T15:53:22.7825576Z CC drivers/dma-buf/dma-heap.o
2025-10-02T15:53:22.8192012Z CC [M] drivers/gpu/drm/nouveau/nvif/vmm.o
2025-10-02T15:53:23.0289391Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/virtual/virtual_stream_encoder.o
2025-10-02T15:53:23.5157478Z CC [M] drivers/gpu/drm/gma500/power.o
2025-10-02T15:53:23.5865791Z CC drivers/dma-buf/sync_file.o
2025-10-02T15:53:23.7958663Z CC [M] drivers/gpu/drm/nouveau/nvif/user.o
2025-10-02T15:53:23.9555484Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_resource.o
2025-10-02T15:53:24.4147632Z CC drivers/dma-buf/udmabuf.o
2025-10-02T15:53:24.4759216Z CC [M] drivers/gpu/drm/gma500/psb_drv.o
2025-10-02T15:53:24.9315841Z CC [M] drivers/gpu/drm/nouveau/nvif/userc361.o
2025-10-02T15:53:25.3770063Z CC [M] drivers/gpu/drm/gma500/gma_display.o
2025-10-02T15:53:25.5090851Z AR drivers/dma-buf/built-in.a
2025-10-02T15:53:25.5334633Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/client.o
2025-10-02T15:53:25.8350021Z CC [M] drivers/gpu/drm/gma500/gma_device.o
2025-10-02T15:53:26.5552203Z CC [M] net/sctp/sm_sideeffect.o
2025-10-02T15:53:26.5608742Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/engine.o
2025-10-02T15:53:26.6442970Z CC [M] drivers/gpu/drm/gma500/psb_intel_display.o
2025-10-02T15:53:26.7911091Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_init.o
2025-10-02T15:53:26.8747683Z CC [M] net/rds/af_rds.o
2025-10-02T15:53:27.5288174Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/enum.o
2025-10-02T15:53:27.6871054Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_hwseq.o
2025-10-02T15:53:27.7610485Z CC [M] drivers/gpu/drm/gma500/psb_intel_lvds.o
2025-10-02T15:53:28.4194000Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/event.o
2025-10-02T15:53:28.4453165Z CC [M] net/rds/bind.o
2025-10-02T15:53:28.5635832Z CC [M] net/sctp/protocol.o
2025-10-02T15:53:29.0704447Z CC [M] drivers/gpu/drm/gma500/psb_intel_modes.o
2025-10-02T15:53:29.2875325Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/firmware.o
2025-10-02T15:53:29.8565502Z CC [M] net/rds/cong.o
2025-10-02T15:53:29.9006701Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dpp.o
2025-10-02T15:53:30.2146916Z CC [M] drivers/gpu/drm/gma500/psb_intel_sdvo.o
2025-10-02T15:53:30.2841407Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/gpuobj.o
2025-10-02T15:53:30.7188877Z CC [M] net/sctp/endpointola.o
2025-10-02T15:53:30.8400018Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dpp_cm.o
2025-10-02T15:53:31.2604639Z CC [M] net/rds/connection.o
2025-10-02T15:53:31.2790808Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/ioctl.o
2025-10-02T15:53:32.0152199Z CC [M] drivers/gpu/drm/gma500/psb_lid.o
2025-10-02T15:53:32.2083150Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_hubp.o
2025-10-02T15:53:32.3031319Z CC [M] net/sctp/associola.o
2025-10-02T15:53:32.3555069Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/memory.o
2025-10-02T15:53:32.7843319Z CC [M] drivers/gpu/drm/gma500/psb_irq.o
2025-10-02T15:53:33.3017367Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/mm.o
2025-10-02T15:53:33.3115096Z CC [M] net/rds/info.o
2025-10-02T15:53:33.8625552Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_mpc.o
2025-10-02T15:53:33.8906727Z CC [M] drivers/gpu/drm/gma500/psb_device.o
2025-10-02T15:53:34.4482580Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/notify.o
2025-10-02T15:53:34.5414224Z CC [M] net/sctp/transport.o
2025-10-02T15:53:34.6590624Z CC [M] net/rds/message.o
2025-10-02T15:53:34.8149801Z CC [M] drivers/gpu/drm/gma500/mid_bios.o
2025-10-02T15:53:35.0442939Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_opp.o
2025-10-02T15:53:35.4032704Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/object.o
2025-10-02T15:53:35.8242175Z CC [M] drivers/gpu/drm/gma500/opregion.o
2025-10-02T15:53:36.0889444Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_hubbub.o
2025-10-02T15:53:36.1419824Z CC [M] net/sctp/chunk.o
2025-10-02T15:53:36.2000640Z CC [M] net/rds/recv.o
2025-10-02T15:53:36.6441980Z CC [M] drivers/gpu/drm/gma500/cdv_device.o
2025-10-02T15:53:36.6991596Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/oproxy.o
2025-10-02T15:53:37.1970051Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_optc.o
2025-10-02T15:53:37.6148669Z CC [M] net/sctp/sm_make_chunk.o
2025-10-02T15:53:37.6495689Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/option.o
2025-10-02T15:53:37.6671657Z CC [M] drivers/gpu/drm/gma500/cdv_intel_crt.o
2025-10-02T15:53:37.9745319Z CC [M] net/rds/send.o
2025-10-02T15:53:38.1147063Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_mmhubbub.o
2025-10-02T15:53:38.5480257Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/ramht.o
2025-10-02T15:53:38.6081256Z CC [M] drivers/gpu/drm/gma500/cdv_intel_display.o
2025-10-02T15:53:38.9165636Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_stream_encoder.o
2025-10-02T15:53:39.7657345Z CC [M] drivers/gpu/drm/gma500/cdv_intel_hdmi.o
2025-10-02T15:53:39.8342637Z CC [M] drivers/gpu/drm/nouveau/nvkm/core/subdev.o
2025-10-02T15:53:39.9122410Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_link_encoder.o
2025-10-02T15:53:40.2045485Z CC [M] net/sctp/ulpevent.o
2025-10-02T15:53:40.4379975Z CC [M] net/rds/stats.o
2025-10-02T15:53:40.6469815Z CC [M] drivers/gpu/drm/gma500/cdv_intel_lvds.o
2025-10-02T15:53:40.8657380Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/fw.o
2025-10-02T15:53:41.0267781Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dccg.o
2025-10-02T15:53:41.5268592Z CC [M] drivers/gpu/drm/gma500/cdv_intel_dp.o
2025-10-02T15:53:41.7672824Z CC [M] net/rds/sysctl.o
2025-10-02T15:53:41.8152064Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_vmid.o
2025-10-02T15:53:41.8951417Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/hs.o
2025-10-02T15:53:42.0309200Z CC [M] net/sctp/inqueue.o
2025-10-02T15:53:42.6290179Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dwb.o
2025-10-02T15:53:42.8027307Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/ls.o
2025-10-02T15:53:42.9142352Z CC [M] net/rds/threads.o
2025-10-02T15:53:43.2001717Z CC [M] net/sctp/outqueue.o
2025-10-02T15:53:43.2899729Z CC [M] drivers/gpu/drm/gma500/oaktrail_device.o
2025-10-02T15:53:43.6079240Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dwb_scl.o
2025-10-02T15:53:43.7569962Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/acr.o
2025-10-02T15:53:44.2752844Z CC [M] net/rds/transport.o
2025-10-02T15:53:44.4507124Z CC [M] drivers/gpu/drm/gma500/oaktrail_crtc.o
2025-10-02T15:53:44.5495371Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_dsc.o
2025-10-02T15:53:44.7465591Z CC [M] drivers/gpu/drm/nouveau/nvkm/nvfw/flcn.o
2025-10-02T15:53:45.4569407Z CC [M] net/sctp/ulpqueue.o
2025-10-02T15:53:45.6624357Z CC [M] net/rds/loop.o
2025-10-02T15:53:45.6702655Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dsc/dc_dsc.o
2025-10-02T15:53:45.6706366Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/base.o
2025-10-02T15:53:45.7540513Z CC [M] drivers/gpu/drm/gma500/oaktrail_lvds.o
2025-10-02T15:53:46.6471166Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/cmdq.o
2025-10-02T15:53:46.7840932Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dsc/rc_calc.o
2025-10-02T15:53:46.9116818Z CC [M] drivers/gpu/drm/gma500/oaktrail_lvds_i2c.o
2025-10-02T15:53:47.0888560Z CC [M] net/rds/page.o
2025-10-02T15:53:47.1581368Z CC [M] net/sctp/tsnmap.o
2025-10-02T15:53:47.7595058Z CC [M] drivers/gpu/drm/gma500/oaktrail_hdmi.o
2025-10-02T15:53:47.8073510Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/msgq.o
2025-10-02T15:53:47.8407876Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dsc/rc_calc_dpi.o
2025-10-02T15:53:48.3469193Z CC [M] net/rds/rdma.o
2025-10-02T15:53:48.5776194Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_init.o
2025-10-02T15:53:48.6759273Z CC [M] net/sctp/bind_addr.o
2025-10-02T15:53:48.8353432Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/qmgr.o
2025-10-02T15:53:48.9665174Z CC [M] drivers/gpu/drm/gma500/oaktrail_hdmi_i2c.o
2025-10-02T15:53:49.5697311Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_resource.o
2025-10-02T15:53:49.6910045Z CC [M] drivers/gpu/drm/nouveau/nvkm/falcon/v1.o
2025-10-02T15:53:49.8508256Z LD [M] drivers/gpu/drm/gma500/gma500_gfx.o
2025-10-02T15:53:49.9712851Z AR drivers/macintosh/built-in.a
2025-10-02T15:53:49.9822134Z CC [M] drivers/macintosh/mac_hid.o
2025-10-02T15:53:50.0780357Z CC [M] net/rds/rdma_transport.o
2025-10-02T15:53:50.2282645Z CC [M] net/sctp/socket.o
2025-10-02T15:53:50.5287849Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_ipp.o
2025-10-02T15:53:51.0980908Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/base.o
2025-10-02T15:53:51.2656329Z CC [M] net/sctp/primitive.o
2025-10-02T15:53:51.3315539Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_hw_sequencer.o
2025-10-02T15:53:51.3610182Z CC [M] net/rds/ib.o
2025-10-02T15:53:52.4326754Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/hsfw.o
2025-10-02T15:53:52.6196092Z CC [M] net/mac80211/main.o
2025-10-02T15:53:52.9605884Z CC [M] net/rds/ib_cm.o
2025-10-02T15:53:53.5526151Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/lsfw.o
2025-10-02T15:53:54.1060093Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_hw_sequencer_debug.o
2025-10-02T15:53:54.6304368Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm200.o
2025-10-02T15:53:54.8889053Z CC [M] net/rds/ib_recv.o
2025-10-02T15:53:55.2622998Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_dpp.o
2025-10-02T15:53:55.3397739Z CC [M] net/mac80211/status.o
2025-10-02T15:53:55.4135783Z CC [M] net/sctp/output.o
2025-10-02T15:53:56.0225187Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gm20b.o
2025-10-02T15:53:56.4577223Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_opp.o
2025-10-02T15:53:56.6651277Z CC [M] net/rds/ib_ring.o
2025-10-02T15:53:56.7967388Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp102.o
2025-10-02T15:53:57.1968441Z CC [M] net/sctp/input.o
2025-10-02T15:53:57.3791510Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_optc.o
2025-10-02T15:53:57.7726243Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp108.o
2025-10-02T15:53:57.7925995Z CC [M] net/rds/ib_send.o
2025-10-02T15:53:57.8094734Z CC [M] net/mac80211/driver-ops.o
2025-10-02T15:53:58.6996748Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/gp10b.o
2025-10-02T15:53:59.1277477Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_hubp.o
2025-10-02T15:53:59.2412725Z CC [M] net/sctp/debug.o
2025-10-02T15:53:59.5500586Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/acr/tu102.o
2025-10-02T15:53:59.7502554Z CC [M] net/rds/ib_stats.o
2025-10-02T15:54:00.0294725Z CC [M] net/mac80211/sta_info.o
2025-10-02T15:54:00.3088666Z CC [M] net/sctp/stream.o
2025-10-02T15:54:00.5275322Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_mpc.o
2025-10-02T15:54:00.6098952Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/base.o
2025-10-02T15:54:00.7220059Z CC [M] net/rds/ib_sysctl.o
2025-10-02T15:54:01.5537056Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/nv50.o
2025-10-02T15:54:01.6447948Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_dpp_dscl.o
2025-10-02T15:54:02.0168026Z CC [M] net/rds/ib_rdma.o
2025-10-02T15:54:02.1411170Z CC [M] net/sctp/auth.o
2025-10-02T15:54:02.6229652Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/g84.o
2025-10-02T15:54:02.9816985Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_dpp_cm.o
2025-10-02T15:54:03.6122087Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/gf100.o
2025-10-02T15:54:03.7231287Z CC [M] net/sctp/offload.o
2025-10-02T15:54:03.7438298Z CC [M] net/rds/ib_frmr.o
2025-10-02T15:54:03.8411860Z CC [M] net/mac80211/wep.o
2025-10-02T15:54:04.2525223Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_cm_common.o
2025-10-02T15:54:04.6781472Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/gk20a.o
2025-10-02T15:54:05.0668150Z CC [M] net/sctp/stream_sched.o
2025-10-02T15:54:05.0677163Z CC [M] net/rds/tcp.o
2025-10-02T15:54:05.1837787Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_hubbub.o
2025-10-02T15:54:05.5664350Z CC [M] net/mac80211/aead_api.o
2025-10-02T15:54:05.8526633Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/gm107.o
2025-10-02T15:54:06.3321713Z CC [M] net/mac80211/wpa.o
2025-10-02T15:54:06.3387509Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_stream_encoder.o
2025-10-02T15:54:06.3985328Z CC [M] net/sctp/stream_sched_prio.o
2025-10-02T15:54:06.4816271Z CC [M] net/rds/tcp_connect.o
2025-10-02T15:54:06.8758210Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/gm20b.o
2025-10-02T15:54:07.7148206Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_link_encoder.o
2025-10-02T15:54:07.8522105Z CC [M] net/rds/tcp_listen.o
2025-10-02T15:54:07.8837806Z CC [M] net/sctp/stream_sched_rr.o
2025-10-02T15:54:07.9002843Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bar/tu102.o
2025-10-02T15:54:08.2824958Z CC [M] net/mac80211/scan.o
2025-10-02T15:54:08.8801345Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/base.o
2025-10-02T15:54:09.1598180Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/display_mode_lib.o
2025-10-02T15:54:09.2238083Z CC [M] net/rds/tcp_recv.o
2025-10-02T15:54:09.3150308Z CC [M] net/sctp/stream_interleave.o
2025-10-02T15:54:09.8777965Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/bit.o
2025-10-02T15:54:10.1351026Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/display_rq_dlg_helpers.o
2025-10-02T15:54:10.7433170Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/boost.o
2025-10-02T15:54:10.7677568Z CC [M] net/rds/tcp_send.o
2025-10-02T15:54:10.8992457Z CC [M] net/mac80211/offchannel.o
2025-10-02T15:54:11.0108524Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dml1_display_rq_dlg_calc.o
2025-10-02T15:54:11.4516329Z CC [M] net/sctp/proc.o
2025-10-02T15:54:11.6103655Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/conn.o
2025-10-02T15:54:12.1103468Z CC [M] net/rds/tcp_stats.o
2025-10-02T15:54:12.6728276Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/cstep.o
2025-10-02T15:54:12.7795390Z CC [M] net/sctp/sysctl.o
2025-10-02T15:54:12.9235505Z CC [M] net/mac80211/ht.o
2025-10-02T15:54:12.9677187Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/display_mode_vba.o
2025-10-02T15:54:13.3245855Z LD [M] net/rds/rds.o
2025-10-02T15:54:13.3939145Z LD [M] net/rds/rds_rdma.o
2025-10-02T15:54:13.4392788Z LD [M] net/rds/rds_tcp.o
2025-10-02T15:54:13.5165629Z CC [M] drivers/gpu/drm/udl/udl_drv.o
2025-10-02T15:54:13.8541352Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/dcb.o
2025-10-02T15:54:14.0346528Z CC [M] net/sctp/ipv6.o
2025-10-02T15:54:14.2678579Z CC [M] drivers/gpu/drm/udl/udl_modeset.o
2025-10-02T15:54:14.7357197Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn20/display_rq_dlg_calc_20.o
2025-10-02T15:54:14.8104377Z CC [M] net/mac80211/agg-tx.o
2025-10-02T15:54:15.0728585Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/disp.o
2025-10-02T15:54:15.2440971Z CC [M] drivers/gpu/drm/udl/udl_connector.o
2025-10-02T15:54:15.8771319Z CC [M] net/sctp/diag.o
2025-10-02T15:54:16.1111266Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/dp.o
2025-10-02T15:54:16.2121857Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn20/display_mode_vba_20.o
2025-10-02T15:54:16.2319913Z CC [M] drivers/gpu/drm/udl/udl_main.o
2025-10-02T15:54:17.0829948Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/extdev.o
2025-10-02T15:54:17.1817318Z LD [M] net/sctp/sctp.o
2025-10-02T15:54:17.1937864Z CC [M] net/mac80211/agg-rx.o
2025-10-02T15:54:17.2054526Z CC [M] drivers/gpu/drm/udl/udl_transfer.o
2025-10-02T15:54:17.4351534Z LD [M] net/sctp/sctp_diag.o
2025-10-02T15:54:17.5282660Z AR drivers/scsi/device_handler/built-in.a
2025-10-02T15:54:17.5400936Z CC [M] drivers/scsi/device_handler/scsi_dh_rdac.o
2025-10-02T15:54:18.0186113Z LD [M] drivers/gpu/drm/udl/udl.o
2025-10-02T15:54:18.0481075Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/fan.o
2025-10-02T15:54:18.1106444Z AR drivers/scsi/megaraid/built-in.a
2025-10-02T15:54:18.1325183Z CC [M] drivers/scsi/megaraid/megaraid_mm.o
2025-10-02T15:54:18.5892833Z CC [M] drivers/scsi/device_handler/scsi_dh_hp_sw.o
2025-10-02T15:54:18.8863731Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/gpio.o
2025-10-02T15:54:19.1911233Z CC [M] net/mac80211/vht.o
2025-10-02T15:54:19.3571268Z CC [M] drivers/scsi/device_handler/scsi_dh_emc.o
2025-10-02T15:54:19.4282157Z CC [M] drivers/scsi/megaraid/megaraid_mbox.o
2025-10-02T15:54:19.8460405Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/i2c.o
2025-10-02T15:54:20.4380435Z CC [M] drivers/scsi/device_handler/scsi_dh_alua.o
2025-10-02T15:54:20.6294161Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/iccsense.o
2025-10-02T15:54:21.1373269Z CC [M] net/mac80211/he.o
2025-10-02T15:54:21.4928956Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn20/display_rq_dlg_calc_20v2.o
2025-10-02T15:54:21.5551113Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/image.o
2025-10-02T15:54:21.6785466Z CC [M] drivers/scsi/megaraid/megaraid_sas_base.o
2025-10-02T15:54:21.8701187Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn20/display_mode_vba_20v2.o
2025-10-02T15:54:22.5081629Z CC [M] net/mac80211/s1g.o
2025-10-02T15:54:22.6159797Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/init.o
2025-10-02T15:54:23.0188643Z CC [M] net/mac80211/ibss.o
2025-10-02T15:54:23.7649413Z CC [M] net/tipc/addr.o
2025-10-02T15:54:24.8610353Z CC [M] net/tipc/bcast.o
2025-10-02T15:54:25.4900155Z CC [M] net/mac80211/iface.o
2025-10-02T15:54:25.6365988Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/mxm.o
2025-10-02T15:54:25.8472488Z CC [M] drivers/scsi/megaraid/megaraid_sas_fusion.o
2025-10-02T15:54:26.6413195Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/npde.o
2025-10-02T15:54:26.8571288Z CC [M] net/tipc/bearer.o
2025-10-02T15:54:26.9042845Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn21/display_rq_dlg_calc_21.o
2025-10-02T15:54:27.6327564Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/pcir.o
2025-10-02T15:54:28.1624062Z CC [M] net/mac80211/rate.o
2025-10-02T15:54:28.3883079Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/perf.o
2025-10-02T15:54:28.6555035Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn21/display_mode_vba_21.o
2025-10-02T15:54:28.7853928Z CC [M] drivers/scsi/megaraid/megaraid_sas_fp.o
2025-10-02T15:54:29.0463320Z CC [M] net/tipc/core.o
2025-10-02T15:54:29.2312167Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/pll.o
2025-10-02T15:54:30.2622041Z CC [M] net/tipc/link.o
2025-10-02T15:54:30.3425080Z CC [M] drivers/scsi/megaraid/megaraid_sas_debugfs.o
2025-10-02T15:54:30.3781310Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/pmu.o
2025-10-02T15:54:30.3994606Z CC [M] net/mac80211/michael.o
2025-10-02T15:54:31.1172695Z LD [M] drivers/scsi/megaraid/megaraid_sas.o
2025-10-02T15:54:31.1801916Z CC [M] drivers/scsi/pcmcia/qlogic_stub.o
2025-10-02T15:54:31.2235629Z CC [M] net/mac80211/tkip.o
2025-10-02T15:54:31.4307239Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/power_budget.o
2025-10-02T15:54:32.1367986Z CC [M] drivers/scsi/pcmcia/fdomain_cs.o
2025-10-02T15:54:32.2568955Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/ramcfg.o
2025-10-02T15:54:33.1236747Z CC [M] drivers/scsi/pcmcia/aha152x_stub.o
2025-10-02T15:54:33.1712249Z CC [M] net/mac80211/aes_cmac.o
2025-10-02T15:54:33.2301732Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/rammap.o
2025-10-02T15:54:33.5373428Z CC [M] net/tipc/discover.o
2025-10-02T15:54:34.1001678Z CC [M] drivers/scsi/pcmcia/aha152x_core.o
2025-10-02T15:54:34.2116174Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadow.o
2025-10-02T15:54:34.4071267Z CC [M] net/mac80211/aes_gmac.o
2025-10-02T15:54:34.5968181Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn30/display_mode_vba_30.o
2025-10-02T15:54:34.7544842Z CC [M] net/tipc/msg.o
2025-10-02T15:54:35.3437169Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowacpi.o
2025-10-02T15:54:35.7962783Z CC [M] net/mac80211/fils_aead.o
2025-10-02T15:54:36.1803457Z CC [M] drivers/scsi/pcmcia/sym53c500_cs.o
2025-10-02T15:54:36.3057932Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowof.o
2025-10-02T15:54:36.5345493Z CC [M] net/tipc/name_distr.o
2025-10-02T15:54:37.0506169Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowpci.o
2025-10-02T15:54:37.2595470Z LD [M] drivers/scsi/pcmcia/qlogic_cs.o
2025-10-02T15:54:37.2846550Z LD [M] drivers/scsi/pcmcia/aha152x_cs.o
2025-10-02T15:54:37.4022278Z CC [M] drivers/scsi/libsas/sas_init.o
2025-10-02T15:54:37.4390790Z CC [M] net/mac80211/cfg.o
2025-10-02T15:54:37.8112845Z CC [M] net/tipc/subscr.o
2025-10-02T15:54:37.9201298Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowramin.o
2025-10-02T15:54:38.7417792Z CC [M] drivers/scsi/libsas/sas_phy.o
2025-10-02T15:54:38.8237389Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/shadowrom.o
2025-10-02T15:54:38.9079931Z CC [M] net/tipc/monitor.o
2025-10-02T15:54:39.6903045Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/timing.o
2025-10-02T15:54:39.8966272Z CC [M] drivers/scsi/libsas/sas_port.o
2025-10-02T15:54:40.5023158Z CC [M] net/tipc/name_table.o
2025-10-02T15:54:40.7990238Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/therm.o
2025-10-02T15:54:40.8670992Z CC [M] drivers/scsi/libsas/sas_event.o
2025-10-02T15:54:41.6616767Z CC [M] net/mac80211/ethtool.o
2025-10-02T15:54:41.7006202Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dml/dcn30/display_rq_dlg_calc_30.o
2025-10-02T15:54:41.7378996Z CC [M] drivers/scsi/libsas/sas_discover.o
2025-10-02T15:54:41.8765837Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/vmap.o
2025-10-02T15:54:42.4746456Z CC [M] net/tipc/net.o
2025-10-02T15:54:42.9651271Z CC [M] drivers/scsi/libsas/sas_expander.o
2025-10-02T15:54:42.9893260Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/volt.o
2025-10-02T15:54:43.6163856Z CC [M] net/tipc/netlink.o
2025-10-02T15:54:43.6948295Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_init.o
2025-10-02T15:54:43.8069837Z CC [M] net/mac80211/rx.o
2025-10-02T15:54:43.9570980Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/vpstate.o
2025-10-02T15:54:44.5231490Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_hubp.o
2025-10-02T15:54:44.6484177Z CC [M] net/tipc/netlink_compat.o
2025-10-02T15:54:44.9742155Z CC [M] drivers/scsi/libsas/sas_scsi_host.o
2025-10-02T15:54:44.9796654Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/xpio.o
2025-10-02T15:54:45.6178814Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_hubbub.o
2025-10-02T15:54:45.7360467Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/M0203.o
2025-10-02T15:54:46.4168444Z CC [M] drivers/scsi/libsas/sas_task.o
2025-10-02T15:54:46.4447696Z CC [M] net/tipc/node.o
2025-10-02T15:54:46.6864873Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/M0205.o
2025-10-02T15:54:46.7554553Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_resource.o
2025-10-02T15:54:47.3158331Z CC [M] drivers/scsi/libsas/sas_ata.o
2025-10-02T15:54:47.5626441Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/M0209.o
2025-10-02T15:54:48.4509711Z CC [M] drivers/scsi/libsas/sas_host_smp.o
2025-10-02T15:54:48.6521338Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bios/P0260.o
2025-10-02T15:54:48.7746560Z CC [M] net/mac80211/spectmgmt.o
2025-10-02T15:54:48.7935781Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_hwseq.o
2025-10-02T15:54:49.4149016Z LD [M] drivers/scsi/libsas/libsas.o
2025-10-02T15:54:49.4858391Z CC [M] drivers/scsi/libfc/fc_libfc.o
2025-10-02T15:54:49.5860532Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/base.o
2025-10-02T15:54:49.6565432Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn21/dcn21_link_encoder.o
2025-10-02T15:54:49.7275663Z CC [M] net/tipc/socket.o
2025-10-02T15:54:50.2934295Z CC [M] net/mac80211/tx.o
2025-10-02T15:54:50.5219698Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_init.o
2025-10-02T15:54:50.5717519Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/hwsq.o
2025-10-02T15:54:50.6090176Z CC [M] drivers/scsi/libfc/fc_disc.o
2025-10-02T15:54:51.4191388Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_hubbub.o
2025-10-02T15:54:51.7862035Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/nv04.o
2025-10-02T15:54:51.9036968Z CC [M] drivers/scsi/libfc/fc_exch.o
2025-10-02T15:54:52.4079283Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_hubp.o
2025-10-02T15:54:52.7962419Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/nv31.o
2025-10-02T15:54:53.6037106Z CC [M] net/tipc/eth_media.o
2025-10-02T15:54:53.7749067Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp.o
2025-10-02T15:54:53.8623253Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/nv50.o
2025-10-02T15:54:54.3618245Z drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp.c:129:6: warning: conflicting types for ‘dpp3_set_pre_degam’ due to enum/integer mismatch; have ‘void(struct dpp *, enum dc_transfer_func_predefined)’ [-Wenum-int-mismatch]
2025-10-02T15:54:54.3621785Z 129 | void dpp3_set_pre_degam(struct dpp *dpp_base, enum dc_transfer_func_predefined tr)
2025-10-02T15:54:54.3625831Z | ^~~~~~~~~~~~~~~~~~
2025-10-02T15:54:54.3633253Z In file included from drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp.c:29:
2025-10-02T15:54:54.3651800Z drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp.h:587:6: note: previous declaration of ‘dpp3_set_pre_degam’ with type ‘void(struct dpp *, uint32_t)’ {aka ‘void(struct dpp *, unsigned int)’}
2025-10-02T15:54:54.3654040Z 587 | void dpp3_set_pre_degam(struct dpp *dpp_base,
2025-10-02T15:54:54.3690639Z | ^~~~~~~~~~~~~~~~~~
2025-10-02T15:54:54.5657309Z CC [M] drivers/scsi/libfc/fc_elsct.o
2025-10-02T15:54:54.5733992Z CC [M] net/tipc/topsrv.o
2025-10-02T15:54:54.8717569Z CC [M] net/mac80211/key.o
2025-10-02T15:54:54.8932307Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/g94.o
2025-10-02T15:54:55.2363228Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_optc.o
2025-10-02T15:54:55.8402133Z CC [M] drivers/scsi/libfc/fc_frame.o
2025-10-02T15:54:55.9547421Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/bus/gf100.o
2025-10-02T15:54:56.0419841Z CC [M] net/tipc/group.o
2025-10-02T15:54:56.2352786Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dccg.o
2025-10-02T15:54:56.5498734Z CC [M] drivers/scsi/libfc/fc_lport.o
2025-10-02T15:54:56.9237130Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/base.o
2025-10-02T15:54:57.0015787Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_hwseq.o
2025-10-02T15:54:57.1405656Z CC [M] net/mac80211/util.o
2025-10-02T15:54:58.0276388Z CC [M] net/tipc/trace.o
2025-10-02T15:54:58.1910426Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_mpc.o
2025-10-02T15:54:58.2450158Z CC [M] drivers/scsi/libfc/fc_rport.o
2025-10-02T15:54:58.6925622Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv04.o
2025-10-02T15:54:59.5449240Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_vpg.o
2025-10-02T15:54:59.6735352Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv40.o
2025-10-02T15:55:00.3952189Z CC [M] drivers/scsi/libfc/fc_fcp.o
2025-10-02T15:55:00.4062238Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_afmt.o
2025-10-02T15:55:00.4208625Z CC [M] net/tipc/udp_media.o
2025-10-02T15:55:00.6063438Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/nv50.o
2025-10-02T15:55:01.2313412Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dio_stream_encoder.o
2025-10-02T15:55:02.0171255Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/g84.o
2025-10-02T15:55:02.1898796Z CC [M] net/tipc/ib_media.o
2025-10-02T15:55:02.2326965Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dwb.o
2025-10-02T15:55:02.2353485Z CC [M] net/mac80211/wme.o
2025-10-02T15:55:02.5765165Z CC [M] drivers/scsi/libfc/fc_npiv.o
2025-10-02T15:55:02.8957751Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gt215.o
2025-10-02T15:55:03.1142830Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dpp_cm.o
2025-10-02T15:55:03.1744792Z CC [M] net/tipc/sysctl.o
2025-10-02T15:55:03.5036025Z LD [M] drivers/scsi/libfc/libfc.o
2025-10-02T15:55:03.5798448Z CC [M] drivers/scsi/fcoe/fcoe.o
2025-10-02T15:55:03.8746597Z CC [M] net/mac80211/chan.o
2025-10-02T15:55:03.9675928Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dwb_cm.o
2025-10-02T15:55:04.1574866Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/mcp77.o
2025-10-02T15:55:04.4308624Z CC [M] net/tipc/crypto.o
2025-10-02T15:55:04.8710160Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_cm_common.o
2025-10-02T15:55:05.4112189Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gf100.o
2025-10-02T15:55:05.5417641Z CC [M] drivers/scsi/fcoe/fcoe_ctlr.o
2025-10-02T15:55:06.0627182Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_mmhubbub.o
2025-10-02T15:55:06.5694864Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gk104.o
2025-10-02T15:55:06.9311533Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dio_link_encoder.o
2025-10-02T15:55:07.0267251Z CC [M] net/mac80211/trace.o
2025-10-02T15:55:07.1783170Z CC [M] net/tipc/diag.o
2025-10-02T15:55:07.8927610Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_resource.o
2025-10-02T15:55:07.9031285Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gk20a.o
2025-10-02T15:55:08.2892441Z LD [M] net/tipc/tipc.o
2025-10-02T15:55:08.4252854Z CC [M] drivers/scsi/fcoe/fcoe_transport.o
2025-10-02T15:55:08.5023110Z CC drivers/nvme/host/core.o
2025-10-02T15:55:09.2483593Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/gm20b.o
2025-10-02T15:55:10.0436280Z CC [M] drivers/scsi/fcoe/fcoe_sysfs.o
2025-10-02T15:55:10.3460571Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce120/dce120_resource.o
2025-10-02T15:55:10.5495876Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/pllnv04.o
2025-10-02T15:55:11.4557079Z LD [M] drivers/scsi/fcoe/libfcoe.o
2025-10-02T15:55:11.5531361Z CC [M] drivers/scsi/fnic/fnic_attrs.o
2025-10-02T15:55:11.7498336Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/clk/pllgt215.o
2025-10-02T15:55:11.9001206Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce120/dce120_timing_generator.o
2025-10-02T15:55:12.4718861Z CC drivers/nvme/host/trace.o
2025-10-02T15:55:12.5876666Z CC [M] drivers/scsi/fnic/fnic_isr.o
2025-10-02T15:55:12.7475573Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/base.o
2025-10-02T15:55:13.3655325Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce120/dce120_hw_sequencer.o
2025-10-02T15:55:13.5719118Z CC drivers/nvme/host/multipath.o
2025-10-02T15:55:13.5969264Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv04.o
2025-10-02T15:55:13.9545626Z CC [M] drivers/scsi/fnic/fnic_main.o
2025-10-02T15:55:14.4553339Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce112/dce112_compressor.o
2025-10-02T15:55:14.8203697Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv05.o
2025-10-02T15:55:15.0678641Z CC drivers/nvme/host/zns.o
2025-10-02T15:55:15.5197653Z CC [M] drivers/scsi/fnic/fnic_res.o
2025-10-02T15:55:15.5690828Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce112/dce112_hw_sequencer.o
2025-10-02T15:55:15.6299730Z CC [M] net/mac80211/mlme.o
2025-10-02T15:55:15.9179884Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv10.o
2025-10-02T15:55:15.9828540Z CC drivers/nvme/host/hwmon.o
2025-10-02T15:55:16.5031484Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce112/dce112_resource.o
2025-10-02T15:55:16.7208988Z CC [M] drivers/scsi/fnic/fnic_fcs.o
2025-10-02T15:55:16.9657749Z CC drivers/nvme/host/pci.o
2025-10-02T15:55:17.1161115Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv1a.o
2025-10-02T15:55:17.6308383Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_timing_generator.o
2025-10-02T15:55:18.0048588Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv20.o
2025-10-02T15:55:18.5107593Z CC [M] drivers/scsi/fnic/fnic_scsi.o
2025-10-02T15:55:19.0914687Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/nv50.o
2025-10-02T15:55:19.4441528Z CC [M] drivers/nvme/host/fabrics.o
2025-10-02T15:55:19.5478706Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_compressor.o
2025-10-02T15:55:20.2204207Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/g84.o
2025-10-02T15:55:20.2986353Z CC [M] net/mac80211/tdls.o
2025-10-02T15:55:20.7336392Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_hw_sequencer.o
2025-10-02T15:55:20.8113752Z CC [M] drivers/nvme/host/rdma.o
2025-10-02T15:55:21.0982985Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/g98.o
2025-10-02T15:55:21.2835523Z CC [M] drivers/scsi/fnic/fnic_trace.o
2025-10-02T15:55:21.9310043Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gt215.o
2025-10-02T15:55:22.7737551Z CC [M] drivers/scsi/fnic/fnic_debugfs.o
2025-10-02T15:55:22.7943429Z CC [M] net/mac80211/ocb.o
2025-10-02T15:55:22.8756072Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_resource.o
2025-10-02T15:55:22.8967616Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/mcp89.o
2025-10-02T15:55:23.3715204Z CC [M] drivers/nvme/host/fc.o
2025-10-02T15:55:23.8207723Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gf100.o
2025-10-02T15:55:23.8300687Z CC [M] drivers/scsi/fnic/vnic_cq.o
2025-10-02T15:55:24.3614268Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_opp_regamma_v.o
2025-10-02T15:55:24.4151279Z CC [M] drivers/scsi/fnic/vnic_dev.o
2025-10-02T15:55:24.6052777Z CC [M] net/mac80211/airtime.o
2025-10-02T15:55:24.6606616Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gm107.o
2025-10-02T15:55:25.4848711Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gm200.o
2025-10-02T15:55:25.4894015Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_opp_csc_v.o
2025-10-02T15:55:25.7949224Z CC [M] drivers/scsi/fnic/vnic_intr.o
2025-10-02T15:55:26.2704586Z CC [M] drivers/nvme/host/tcp.o
2025-10-02T15:55:26.3670612Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/gv100.o
2025-10-02T15:55:26.5856777Z CC [M] drivers/scsi/fnic/vnic_rq.o
2025-10-02T15:55:26.6774115Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_timing_generator_v.o
2025-10-02T15:55:26.7663150Z CC [M] net/mac80211/led.o
2025-10-02T15:55:27.3388144Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/devinit/tu102.o
2025-10-02T15:55:27.4385707Z CC [M] drivers/scsi/fnic/vnic_wq_copy.o
2025-10-02T15:55:27.7916583Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_mem_input_v.o
2025-10-02T15:55:28.1691622Z CC [M] net/mac80211/debugfs.o
2025-10-02T15:55:28.3082691Z CC [M] drivers/scsi/fnic/vnic_wq.o
2025-10-02T15:55:28.3232288Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/base.o
2025-10-02T15:55:28.7800547Z LD [M] drivers/nvme/host/nvme-fabrics.o
2025-10-02T15:55:28.7943883Z LD [M] drivers/nvme/host/nvme-rdma.o
2025-10-02T15:55:28.8122590Z LD [M] drivers/nvme/host/nvme-fc.o
2025-10-02T15:55:28.8301827Z LD [M] drivers/nvme/host/nvme-tcp.o
2025-10-02T15:55:28.8475210Z AR drivers/nvme/host/built-in.a
2025-10-02T15:55:28.9146279Z AR drivers/nvme/target/built-in.a
2025-10-02T15:55:28.9405272Z CC [M] drivers/nvme/target/core.o
2025-10-02T15:55:29.1178827Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_opp_v.o
2025-10-02T15:55:29.1471148Z LD [M] drivers/scsi/fnic/fnic.o
2025-10-02T15:55:29.2185945Z CC [M] drivers/scsi/snic/snic_attrs.o
2025-10-02T15:55:29.2718153Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/user.o
2025-10-02T15:55:29.9838564Z CC [M] net/mac80211/debugfs_sta.o
2025-10-02T15:55:30.0259971Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce110/dce110_transform_v.o
2025-10-02T15:55:30.0891327Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/gp100.o
2025-10-02T15:55:30.1230235Z CC [M] drivers/scsi/snic/snic_main.o
2025-10-02T15:55:30.9239120Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/gp10b.o
2025-10-02T15:55:31.1408851Z CC [M] drivers/nvme/target/configfs.o
2025-10-02T15:55:31.4964719Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce100/dce100_resource.o
2025-10-02T15:55:31.6336511Z CC [M] drivers/scsi/snic/snic_res.o
2025-10-02T15:55:31.7847767Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/gv100.o
2025-10-02T15:55:32.4937333Z CC [M] net/mac80211/debugfs_netdev.o
2025-10-02T15:55:32.5936275Z CC [M] drivers/nvme/target/admin-cmd.o
2025-10-02T15:55:32.8212892Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fault/tu102.o
2025-10-02T15:55:32.8622051Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce100/dce100_hw_sequencer.o
2025-10-02T15:55:32.8950740Z CC [M] drivers/scsi/snic/snic_isr.o
2025-10-02T15:55:33.6336627Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_timing_generator.o
2025-10-02T15:55:33.8362765Z CC [M] drivers/nvme/target/fabrics-cmd.o
2025-10-02T15:55:33.8995487Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/base.o
2025-10-02T15:55:34.1569828Z CC [M] drivers/scsi/snic/snic_ctl.o
2025-10-02T15:55:34.2879253Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_hw_sequencer.o
2025-10-02T15:55:34.6682758Z CC [M] drivers/nvme/target/discovery.o
2025-10-02T15:55:34.7712031Z CC [M] net/mac80211/debugfs_key.o
2025-10-02T15:55:35.0863407Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv04.o
2025-10-02T15:55:35.1098137Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.o
2025-10-02T15:55:35.3498897Z CC [M] drivers/scsi/snic/snic_io.o
2025-10-02T15:55:35.7237934Z CC [M] drivers/nvme/target/io-cmd-file.o
2025-10-02T15:55:36.0091678Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv10.o
2025-10-02T15:55:36.3380488Z CC [M] net/mac80211/mesh.o
2025-10-02T15:55:36.4743442Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce60/dce60_timing_generator.o
2025-10-02T15:55:36.5265710Z CC [M] drivers/scsi/snic/snic_scsi.o
2025-10-02T15:55:36.7395336Z CC [M] drivers/nvme/target/io-cmd-bdev.o
2025-10-02T15:55:37.0373798Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv1a.o
2025-10-02T15:55:37.4066779Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce60/dce60_hw_sequencer.o
2025-10-02T15:55:37.7450944Z CC [M] drivers/nvme/target/passthru.o
2025-10-02T15:55:38.1425640Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv20.o
2025-10-02T15:55:38.3357892Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dce60/dce60_resource.o
2025-10-02T15:55:38.6704524Z CC [M] net/mac80211/mesh_pathtbl.o
2025-10-02T15:55:38.7235590Z CC [M] drivers/nvme/target/trace.o
2025-10-02T15:55:38.8989842Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv25.o
2025-10-02T15:55:39.1041337Z CC [M] drivers/scsi/snic/snic_disc.o
2025-10-02T15:55:39.3488200Z CC [M] drivers/nvme/target/loop.o
2025-10-02T15:55:39.8233362Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv30.o
2025-10-02T15:55:39.9535176Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/hdcp/hdcp_msg.o
2025-10-02T15:55:40.3306237Z CC [M] drivers/scsi/snic/vnic_cq.o
2025-10-02T15:55:40.5688323Z CC [M] net/mac80211/mesh_plink.o
2025-10-02T15:55:40.7644127Z CC [M] drivers/nvme/target/rdma.o
2025-10-02T15:55:40.8118037Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc.o
2025-10-02T15:55:40.8690926Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv35.o
2025-10-02T15:55:40.9356048Z CC [M] drivers/scsi/snic/vnic_intr.o
2025-10-02T15:55:41.5776453Z CC [M] drivers/scsi/snic/vnic_dev.o
2025-10-02T15:55:41.7904595Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv36.o
2025-10-02T15:55:42.5832313Z CC [M] drivers/scsi/snic/vnic_wq.o
2025-10-02T15:55:42.8211334Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv40.o
2025-10-02T15:55:42.8822579Z CC [M] net/mac80211/mesh_hwmp.o
2025-10-02T15:55:43.0077177Z CC [M] drivers/nvme/target/fc.o
2025-10-02T15:55:43.3067339Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link.o
2025-10-02T15:55:43.3151139Z LD [M] drivers/scsi/snic/snic.o
2025-10-02T15:55:43.3885277Z CC [M] drivers/scsi/bnx2fc/bnx2fc_els.o
2025-10-02T15:55:43.7645411Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv41.o
2025-10-02T15:55:44.7620828Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv44.o
2025-10-02T15:55:44.8503766Z CC [M] net/mac80211/mesh_sync.o
2025-10-02T15:55:45.0073693Z CC [M] drivers/scsi/bnx2fc/bnx2fc_fcoe.o
2025-10-02T15:55:45.2673643Z CC [M] drivers/nvme/target/fcloop.o
2025-10-02T15:55:45.4528719Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_resource.o
2025-10-02T15:55:45.6338556Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv46.o
2025-10-02T15:55:46.3772521Z CC [M] net/mac80211/mesh_ps.o
2025-10-02T15:55:46.5809238Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv47.o
2025-10-02T15:55:46.8592072Z CC [M] drivers/nvme/target/tcp.o
2025-10-02T15:55:47.0644855Z CC [M] drivers/scsi/bnx2fc/bnx2fc_hwi.o
2025-10-02T15:55:47.5031282Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv49.o
2025-10-02T15:55:47.7775180Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_hw_sequencer.o
2025-10-02T15:55:47.9740434Z CC [M] net/mac80211/pm.o
2025-10-02T15:55:48.4769951Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv4e.o
2025-10-02T15:55:48.4870172Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_sink.o
2025-10-02T15:55:48.9051281Z LD [M] drivers/nvme/target/nvmet.o
2025-10-02T15:55:48.9471881Z LD [M] drivers/nvme/target/nvme-loop.o
2025-10-02T15:55:48.9617557Z LD [M] drivers/nvme/target/nvmet-rdma.o
2025-10-02T15:55:48.9853271Z LD [M] drivers/nvme/target/nvmet-fc.o
2025-10-02T15:55:49.0133278Z LD [M] drivers/nvme/target/nvme-fcloop.o
2025-10-02T15:55:49.0305011Z LD [M] drivers/nvme/target/nvmet-tcp.o
2025-10-02T15:55:49.0410713Z CC [M] drivers/scsi/bnx2fc/bnx2fc_io.o
2025-10-02T15:55:49.1336842Z AR drivers/nvme/built-in.a
2025-10-02T15:55:49.1810291Z CC [M] net/mac80211/rc80211_minstrel.o
2025-10-02T15:55:49.2961325Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/nv50.o
2025-10-02T15:55:49.3447418Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_surface.o
2025-10-02T15:55:49.6147599Z CC [M] drivers/scsi/bnx2fc/bnx2fc_tgt.o
2025-10-02T15:55:50.2562428Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_hwss.o
2025-10-02T15:55:50.3934023Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/g84.o
2025-10-02T15:55:51.0033117Z CC [M] net/mac80211/rc80211_minstrel_ht.o
2025-10-02T15:55:51.0997679Z CC [M] net/smc/af_smc.o
2025-10-02T15:55:51.1267374Z CC [M] drivers/scsi/bnx2fc/bnx2fc_debug.o
2025-10-02T15:55:51.2265945Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gt215.o
2025-10-02T15:55:51.5102901Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_dp.o
2025-10-02T15:55:52.1259150Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/mcp77.o
2025-10-02T15:55:52.1985271Z LD [M] drivers/scsi/bnx2fc/bnx2fc.o
2025-10-02T15:55:52.3420984Z CC [M] drivers/scsi/qedf/qedf_dbg.o
2025-10-02T15:55:53.0837883Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/mcp89.o
2025-10-02T15:55:53.4983911Z CC [M] drivers/scsi/qedf/qedf_main.o
2025-10-02T15:55:53.6120078Z CC [M] net/mac80211/rc80211_minstrel_debugfs.o
2025-10-02T15:55:53.8027448Z CC [M] net/smc/smc_pnet.o
2025-10-02T15:55:53.8143718Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_link_ddc.o
2025-10-02T15:55:53.8783595Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gf100.o
2025-10-02T15:55:54.7217990Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_debug.o
2025-10-02T15:55:54.7672062Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gf108.o
2025-10-02T15:55:55.2572013Z CC [M] net/mac80211/rc80211_minstrel_ht_debugfs.o
2025-10-02T15:55:55.4514144Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_stream.o
2025-10-02T15:55:55.4696220Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gk104.o
2025-10-02T15:55:55.8368939Z CC [M] net/smc/smc_ib.o
2025-10-02T15:55:56.1858040Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gk110.o
2025-10-02T15:55:56.4705538Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/core/dc_vm_helper.o
2025-10-02T15:55:56.7477233Z CC [M] drivers/scsi/qedf/qedf_io.o
2025-10-02T15:55:56.8101086Z LD [M] net/mac80211/mac80211.o
2025-10-02T15:55:56.9431091Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gk20a.o
2025-10-02T15:55:57.1947850Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gm107.o
2025-10-02T15:55:57.2570907Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dc_helper.o
2025-10-02T15:55:57.5270976Z CC [M] net/smc/smc_clc.o
2025-10-02T15:55:57.8240729Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dc/dc_dmub_srv.o
2025-10-02T15:55:58.0831858Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gm200.o
2025-10-02T15:55:58.2975826Z CC [M] drivers/scsi/qedf/qedf_fip.o
2025-10-02T15:55:58.8761488Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/freesync/freesync.o
2025-10-02T15:55:59.0457536Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gm20b.o
2025-10-02T15:55:59.0858184Z CC [M] net/smc/smc_core.o
2025-10-02T15:55:59.1172463Z CC [M] drivers/scsi/arcmsr/arcmsr_attr.o
2025-10-02T15:55:59.3700843Z CC [M] drivers/scsi/qedf/qedf_attr.o
2025-10-02T15:55:59.9949070Z CC [M] drivers/scsi/arcmsr/arcmsr_hba.o
2025-10-02T15:56:00.0017694Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/color/color_gamma.o
2025-10-02T15:56:00.0844755Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gp100.o
2025-10-02T15:56:00.5238229Z CC [M] drivers/scsi/qedf/qedf_els.o
2025-10-02T15:56:00.9833420Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gp102.o
2025-10-02T15:56:01.4913699Z CC [M] net/smc/smc_wr.o
2025-10-02T15:56:01.8696480Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gp10b.o
2025-10-02T15:56:02.1457487Z CC [M] drivers/scsi/qedf/drv_scsi_fw_funcs.o
2025-10-02T15:56:02.2436311Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/color/color_table.o
2025-10-02T15:56:02.4707443Z CC [M] drivers/scsi/qedf/drv_fcoe_fw_funcs.o
2025-10-02T15:56:02.7667191Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gv100.o
2025-10-02T15:56:02.8223381Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/info_packet/info_packet.o
2025-10-02T15:56:02.8777921Z LD [M] drivers/scsi/arcmsr/arcmsr.o
2025-10-02T15:56:02.9469948Z CC [M] drivers/scsi/qedf/qedf_debugfs.o
2025-10-02T15:56:03.2883744Z CC [M] net/rfkill/core.o
2025-10-02T15:56:03.3338438Z CC [M] net/smc/smc_llc.o
2025-10-02T15:56:03.6404883Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ram.o
2025-10-02T15:56:03.8001403Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/power/power_helpers.o
2025-10-02T15:56:04.0831993Z LD [M] drivers/scsi/qedf/qedf.o
2025-10-02T15:56:04.1600848Z SHIPPED drivers/scsi/aic7xxx/aic7xxx_seq.h
2025-10-02T15:56:04.1672590Z SHIPPED drivers/scsi/aic7xxx/aic7xxx_reg.h
2025-10-02T15:56:04.1743866Z SHIPPED drivers/scsi/aic7xxx/aic7xxx_reg_print.c
2025-10-02T15:56:04.1818563Z CC [M] drivers/scsi/aic7xxx/aic7xxx_osm.o
2025-10-02T15:56:04.6585608Z CC [M] net/rfkill/input.o
2025-10-02T15:56:04.7550314Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv04.o
2025-10-02T15:56:04.7725316Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_srv.o
2025-10-02T15:56:05.2073695Z CC [M] net/rfkill/rfkill-gpio.o
2025-10-02T15:56:05.6065419Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv10.o
2025-10-02T15:56:05.6333016Z CC [M] net/smc/smc_cdc.o
2025-10-02T15:56:05.7183706Z LD [M] net/rfkill/rfkill.o
2025-10-02T15:56:05.7765056Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_reg.o
2025-10-02T15:56:05.8012152Z CC [M] drivers/scsi/aacraid/linit.o
2025-10-02T15:56:06.0237203Z CC [M] drivers/scsi/aic7xxx/aic7xxx_proc.o
2025-10-02T15:56:06.0871304Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn20.o
2025-10-02T15:56:06.3706649Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv1a.o
2025-10-02T15:56:06.4742717Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn21.o
2025-10-02T15:56:06.6846441Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/dmub/src/dmub_dcn30.o
2025-10-02T15:56:06.9726634Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp_ddc.o
2025-10-02T15:56:06.9911448Z CC [M] drivers/scsi/aic7xxx/aic7xxx_osm_pci.o
2025-10-02T15:56:07.1553721Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv20.o
2025-10-02T15:56:07.3632857Z CC [M] net/smc/smc_tx.o
2025-10-02T15:56:07.3716549Z CC [M] drivers/scsi/aacraid/aachba.o
2025-10-02T15:56:07.7446613Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp_log.o
2025-10-02T15:56:07.9350746Z SHIPPED drivers/scsi/aic7xxx/aic79xx_seq.h
2025-10-02T15:56:07.9482161Z SHIPPED drivers/scsi/aic7xxx/aic79xx_reg.h
2025-10-02T15:56:07.9637427Z SHIPPED drivers/scsi/aic7xxx/aic79xx_reg_print.c
2025-10-02T15:56:07.9794867Z CC [M] drivers/scsi/aic7xxx/aic79xx_osm.o
2025-10-02T15:56:08.1365516Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv40.o
2025-10-02T15:56:08.6311521Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp_psp.o
2025-10-02T15:56:08.8887545Z CC [M] net/smc/smc_rx.o
2025-10-02T15:56:09.1054985Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv41.o
2025-10-02T15:56:09.7415898Z CC [M] drivers/scsi/aacraid/commctrl.o
2025-10-02T15:56:09.9644085Z CC [M] drivers/scsi/aic7xxx/aic79xx_proc.o
2025-10-02T15:56:10.0785234Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv44.o
2025-10-02T15:56:10.1738090Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp.o
2025-10-02T15:56:10.4530999Z CC [M] net/smc/smc_close.o
2025-10-02T15:56:10.7821534Z CC [M] drivers/scsi/aic7xxx/aic79xx_osm_pci.o
2025-10-02T15:56:11.0595592Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv49.o
2025-10-02T15:56:11.1310445Z CC [M] drivers/scsi/aacraid/comminit.o
2025-10-02T15:56:11.4199126Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp1_execution.o
2025-10-02T15:56:11.7082084Z CC [M] drivers/scsi/aic7xxx/aic7xxx_core.o
2025-10-02T15:56:11.8661798Z CC [M] net/smc/smc_ism.o
2025-10-02T15:56:11.9776447Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv4e.o
2025-10-02T15:56:12.0664748Z CC [M] drivers/scsi/aacraid/commsup.o
2025-10-02T15:56:12.3807683Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp1_transition.o
2025-10-02T15:56:12.8904775Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramnv50.o
2025-10-02T15:56:13.5401961Z CC [M] net/smc/smc_diag.o
2025-10-02T15:56:13.6461205Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp2_execution.o
2025-10-02T15:56:13.8124097Z CC [M] drivers/scsi/aacraid/dpcsup.o
2025-10-02T15:56:14.6714485Z CC [M] drivers/scsi/aacraid/rx.o
2025-10-02T15:56:14.7341339Z CC [M] drivers/gpu/drm/amd/amdgpu/../display/modules/hdcp/hdcp2_transition.o
2025-10-02T15:56:15.0058084Z LD [M] net/smc/smc.o
2025-10-02T15:56:15.1401700Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgt215.o
2025-10-02T15:56:15.1604885Z CC [M] net/9p/mod.o
2025-10-02T15:56:15.2683336Z CC [M] drivers/scsi/aic7xxx/aic7xxx_93cx6.o
2025-10-02T15:56:15.5948108Z CC [M] drivers/scsi/aacraid/sa.o
2025-10-02T15:56:15.8770793Z CC [M] net/9p/client.o
2025-10-02T15:56:16.1288334Z LD [M] drivers/gpu/drm/amd/amdgpu/amdgpu.o
2025-10-02T15:56:16.1338743Z CC [M] drivers/scsi/aic7xxx/aic7xxx_pci.o
2025-10-02T15:56:16.3391835Z CC [M] drivers/scsi/aacraid/rkt.o
2025-10-02T15:56:17.0585344Z CC [M] drivers/scsi/aacraid/nark.o
2025-10-02T15:56:17.7264681Z CC [M] drivers/scsi/aic7xxx/aic7xxx_reg_print.o
2025-10-02T15:56:17.8851432Z CC [M] drivers/scsi/aacraid/src.o
2025-10-02T15:56:17.9492032Z CC drivers/ata/libata-core.o
2025-10-02T15:56:17.9727674Z CC [M] net/9p/error.o
2025-10-02T15:56:18.0551299Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/rammcp77.o
2025-10-02T15:56:18.4255777Z CC [M] drivers/scsi/aic7xxx/aic79xx_core.o
2025-10-02T15:56:18.6988291Z CC [M] net/9p/protocol.o
2025-10-02T15:56:18.9750739Z LD [M] drivers/scsi/aacraid/aacraid.o
2025-10-02T15:56:19.0506618Z CC [M] net/9p/trans_fd.o
2025-10-02T15:56:19.1791538Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgf100.o
2025-10-02T15:56:19.6720081Z CC [M] drivers/scsi/aic7xxx/aic79xx_pci.o
2025-10-02T15:56:20.6750043Z CC [M] net/9p/trans_common.o
2025-10-02T15:56:20.7483249Z CC [M] drivers/scsi/aic94xx/aic94xx_init.o
2025-10-02T15:56:21.4142487Z CC [M] net/9p/trans_xen.o
2025-10-02T15:56:21.8596918Z CC drivers/ata/libata-scsi.o
2025-10-02T15:56:22.0321243Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgf108.o
2025-10-02T15:56:22.1740628Z CC [M] drivers/scsi/aic94xx/aic94xx_hwi.o
2025-10-02T15:56:22.4703552Z CC [M] net/9p/trans_virtio.o
2025-10-02T15:56:22.8960674Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgk104.o
2025-10-02T15:56:23.0893405Z CC [M] drivers/scsi/aic7xxx/aic79xx_reg_print.o
2025-10-02T15:56:23.9725208Z LD [M] drivers/scsi/aic7xxx/aic7xxx.o
2025-10-02T15:56:24.0090192Z LD [M] drivers/scsi/aic7xxx/aic79xx.o
2025-10-02T15:56:24.0526212Z CC [M] drivers/scsi/aic94xx/aic94xx_reg.o
2025-10-02T15:56:24.1049200Z CC drivers/spi/spi.o
2025-10-02T15:56:24.1328410Z CC [M] net/9p/trans_rdma.o
2025-10-02T15:56:24.3841128Z CC drivers/ata/libata-eh.o
2025-10-02T15:56:25.1858438Z CC [M] drivers/scsi/aic94xx/aic94xx_sds.o
2025-10-02T15:56:25.5860126Z LD [M] net/9p/9pnet.o
2025-10-02T15:56:25.6340493Z LD [M] net/9p/9pnet_xen.o
2025-10-02T15:56:25.6574848Z LD [M] net/9p/9pnet_virtio.o
2025-10-02T15:56:25.6878650Z LD [M] net/9p/9pnet_rdma.o
2025-10-02T15:56:25.8135627Z CC [M] net/6lowpan/core.o
2025-10-02T15:56:26.3866503Z CC [M] drivers/scsi/aic94xx/aic94xx_seq.o
2025-10-02T15:56:27.0818359Z CC [M] net/6lowpan/iphc.o
2025-10-02T15:56:27.1845520Z CC drivers/spi/spi-mem.o
2025-10-02T15:56:27.3278737Z CC drivers/ata/libata-transport.o
2025-10-02T15:56:27.6693788Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgm107.o
2025-10-02T15:56:27.9754839Z CC [M] drivers/scsi/aic94xx/aic94xx_dump.o
2025-10-02T15:56:28.0834741Z CC [M] drivers/spi/spi-mux.o
2025-10-02T15:56:28.4354936Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgm200.o
2025-10-02T15:56:28.5627180Z CC drivers/ata/libata-trace.o
2025-10-02T15:56:28.7891064Z CC [M] drivers/spi/spidev.o
2025-10-02T15:56:28.9486657Z CC [M] net/6lowpan/nhc.o
2025-10-02T15:56:29.4071679Z CC [M] drivers/scsi/aic94xx/aic94xx_scb.o
2025-10-02T15:56:29.4571088Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/ramgp100.o
2025-10-02T15:56:29.5703713Z CC drivers/ata/libata-sata.o
2025-10-02T15:56:29.7958150Z CC [M] drivers/spi/spi-loopback-test.o
2025-10-02T15:56:30.1357345Z CC [M] net/6lowpan/ndisc.o
2025-10-02T15:56:30.5076711Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/sddr2.o
2025-10-02T15:56:30.5998923Z CC [M] drivers/scsi/aic94xx/aic94xx_dev.o
2025-10-02T15:56:30.7623535Z CC [M] drivers/spi/spi-altera.o
2025-10-02T15:56:30.8265206Z CC drivers/ata/libata-sff.o
2025-10-02T15:56:31.3390841Z CC [M] net/6lowpan/debugfs.o
2025-10-02T15:56:31.4455275Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/sddr3.o
2025-10-02T15:56:31.4964058Z CC [M] drivers/spi/spi-axi-spi-engine.o
2025-10-02T15:56:31.7471985Z CC [M] drivers/scsi/aic94xx/aic94xx_tmf.o
2025-10-02T15:56:32.3366783Z CC [M] drivers/spi/spi-bitbang.o
2025-10-02T15:56:32.4714891Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gddr3.o
2025-10-02T15:56:32.5077314Z CC [M] net/6lowpan/nhc_dest.o
2025-10-02T15:56:32.8062918Z CC [M] drivers/scsi/aic94xx/aic94xx_task.o
2025-10-02T15:56:32.8728396Z CC drivers/ata/libata-pmp.o
2025-10-02T15:56:33.1567561Z CC [M] drivers/spi/spi-butterfly.o
2025-10-02T15:56:33.4784569Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fb/gddr5.o
2025-10-02T15:56:33.7929923Z CC [M] drivers/spi/spi-cadence.o
2025-10-02T15:56:33.8061957Z CC [M] net/6lowpan/nhc_fragment.o
2025-10-02T15:56:33.9846260Z LD [M] drivers/scsi/aic94xx/aic94xx.o
2025-10-02T15:56:34.0878258Z CC [M] drivers/scsi/pm8001/pm8001_init.o
2025-10-02T15:56:34.0887877Z CC drivers/ata/libata-acpi.o
2025-10-02T15:56:34.4810901Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fuse/base.o
2025-10-02T15:56:34.6130782Z CC [M] drivers/spi/spi-dln2.o
2025-10-02T15:56:34.8885399Z CC [M] net/6lowpan/nhc_hop.o
2025-10-02T15:56:35.3345624Z CC drivers/ata/libata-zpodd.o
2025-10-02T15:56:35.4385701Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fuse/nv50.o
2025-10-02T15:56:35.5313659Z CC [M] drivers/scsi/pm8001/pm8001_sas.o
2025-10-02T15:56:35.6229143Z CC [M] drivers/spi/spi-dw-core.o
2025-10-02T15:56:35.8362802Z CC [M] net/6lowpan/nhc_ipv6.o
2025-10-02T15:56:36.2597090Z CC drivers/ata/libata-pata-timings.o
2025-10-02T15:56:36.3897571Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fuse/gf100.o
2025-10-02T15:56:36.9146967Z CC [M] net/6lowpan/nhc_mobility.o
2025-10-02T15:56:36.9296107Z CC [M] drivers/spi/spi-dw-dma.o
2025-10-02T15:56:36.9534565Z CC [M] drivers/scsi/pm8001/pm8001_ctl.o
2025-10-02T15:56:37.1486739Z CC drivers/ata/ahci.o
2025-10-02T15:56:37.2833847Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/fuse/gm107.o
2025-10-02T15:56:37.8550994Z CC [M] drivers/spi/spi-dw-mmio.o
2025-10-02T15:56:37.9059106Z CC [M] net/6lowpan/nhc_routing.o
2025-10-02T15:56:38.2025049Z CC [M] drivers/scsi/pm8001/pm8001_hwi.o
2025-10-02T15:56:38.2674079Z CC drivers/ata/libahci.o
2025-10-02T15:56:38.3240881Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/base.o
2025-10-02T15:56:38.7434910Z CC [M] drivers/spi/spi-dw-pci.o
2025-10-02T15:56:39.2073466Z CC [M] net/6lowpan/nhc_udp.o
2025-10-02T15:56:39.2932170Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/nv10.o
2025-10-02T15:56:39.4541848Z CC [M] drivers/spi/spi-gpio.o
2025-10-02T15:56:40.1174881Z CC [M] drivers/ata/acard-ahci.o
2025-10-02T15:56:40.2803950Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/nv50.o
2025-10-02T15:56:40.4591558Z CC [M] drivers/spi/spi-lm70llp.o
2025-10-02T15:56:40.4770045Z CC [M] net/6lowpan/nhc_ghc_ext_hop.o
2025-10-02T15:56:41.0952295Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/g94.o
2025-10-02T15:56:41.2986536Z CC [M] drivers/spi/spi-mxic.o
2025-10-02T15:56:41.3484601Z CC [M] drivers/ata/ahci_platform.o
2025-10-02T15:56:41.5997268Z CC [M] net/6lowpan/nhc_ghc_udp.o
2025-10-02T15:56:41.6921594Z CC [M] drivers/scsi/pm8001/pm80xx_hwi.o
2025-10-02T15:56:41.8115014Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/gf119.o
2025-10-02T15:56:42.0312701Z CC [M] drivers/spi/spi-nxp-fspi.o
2025-10-02T15:56:42.3623456Z CC [M] drivers/ata/libahci_platform.o
2025-10-02T15:56:42.6066514Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gpio/gk104.o
2025-10-02T15:56:42.6858303Z CC [M] net/6lowpan/nhc_ghc_icmpv6.o
2025-10-02T15:56:43.2502976Z CC [M] drivers/spi/spi-oc-tiny.o
2025-10-02T15:56:43.5585771Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gsp/base.o
2025-10-02T15:56:43.6853889Z CC [M] net/6lowpan/nhc_ghc_ext_dest.o
2025-10-02T15:56:43.7436550Z CC [M] drivers/ata/sata_inic162x.o
2025-10-02T15:56:44.0514728Z CC [M] drivers/spi/spi-pxa2xx.o
2025-10-02T15:56:44.4638893Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/gsp/gv100.o
2025-10-02T15:56:44.9493077Z CC [M] drivers/ata/sata_sil24.o
2025-10-02T15:56:44.9878367Z CC [M] net/6lowpan/nhc_ghc_ext_frag.o
2025-10-02T15:56:45.2348800Z LD [M] drivers/scsi/pm8001/pm80xx.o
2025-10-02T15:56:45.3557112Z CC [M] drivers/scsi/isci/init.o
2025-10-02T15:56:45.4241246Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/base.o
2025-10-02T15:56:45.4866021Z CC [M] drivers/spi/spi-pxa2xx-dma.o
2025-10-02T15:56:46.0699861Z CC [M] drivers/ata/sata_dwc_460ex.o
2025-10-02T15:56:46.1763032Z CC [M] net/6lowpan/nhc_ghc_ext_route.o
2025-10-02T15:56:46.2311750Z CC [M] drivers/spi/spi-pxa2xx-pci.o
2025-10-02T15:56:46.4837495Z CC [M] drivers/scsi/isci/phy.o
2025-10-02T15:56:46.7296883Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/nv04.o
2025-10-02T15:56:46.9699304Z CC [M] drivers/spi/spi-sc18is602.o
2025-10-02T15:56:47.2827458Z LD [M] net/6lowpan/6lowpan.o
2025-10-02T15:56:47.3481204Z CC [M] drivers/ata/pdc_adma.o
2025-10-02T15:56:47.4556954Z CC [M] net/ieee802154/6lowpan/core.o
2025-10-02T15:56:47.6788764Z CC [M] drivers/spi/spi-sifive.o
2025-10-02T15:56:47.7215633Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/nv4e.o
2025-10-02T15:56:47.9930382Z CC [M] drivers/scsi/isci/request.o
2025-10-02T15:56:48.3706985Z CC [M] drivers/ata/sata_qstor.o
2025-10-02T15:56:48.5615693Z CC [M] net/ieee802154/6lowpan/rx.o
2025-10-02T15:56:48.5825926Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/nv50.o
2025-10-02T15:56:48.5918595Z CC [M] drivers/spi/spi-tle62x0.o
2025-10-02T15:56:49.2664717Z CC [M] drivers/ata/sata_sx4.o
2025-10-02T15:56:49.3361071Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/g94.o
2025-10-02T15:56:49.6294876Z CC [M] drivers/spi/spi-xcomm.o
2025-10-02T15:56:49.9339334Z CC [M] net/ieee802154/6lowpan/reassembly.o
2025-10-02T15:56:50.1737085Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/gf117.o
2025-10-02T15:56:50.2127051Z CC [M] drivers/scsi/isci/remote_device.o
2025-10-02T15:56:50.4221288Z CC [M] drivers/spi/spi-xilinx.o
2025-10-02T15:56:50.6424366Z CC [M] drivers/ata/ata_piix.o
2025-10-02T15:56:51.0727230Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/gf119.o
2025-10-02T15:56:51.3218929Z CC [M] net/ieee802154/6lowpan/tx.o
2025-10-02T15:56:51.4031595Z CC [M] drivers/spi/spi-zynqmp-gqspi.o
2025-10-02T15:56:51.7076118Z CC [M] drivers/ata/sata_mv.o
2025-10-02T15:56:51.8500803Z CC [M] drivers/scsi/isci/port.o
2025-10-02T15:56:52.0084484Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/gk104.o
2025-10-02T15:56:52.3905054Z CC [M] drivers/spi/spi-amd.o
2025-10-02T15:56:52.6640292Z LD [M] net/ieee802154/6lowpan/ieee802154_6lowpan.o
2025-10-02T15:56:52.7440932Z CC [M] net/ieee802154/netlink.o
2025-10-02T15:56:52.9204853Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/gm200.o
2025-10-02T15:56:53.3436203Z CC [M] drivers/spi/spi-slave-time.o
2025-10-02T15:56:53.3880954Z CC [M] drivers/scsi/isci/host.o
2025-10-02T15:56:53.4000047Z CC [M] net/ieee802154/nl-mac.o
2025-10-02T15:56:53.7933783Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/pad.o
2025-10-02T15:56:54.1199310Z CC [M] drivers/ata/sata_nv.o
2025-10-02T15:56:54.1528837Z CC [M] drivers/spi/spi-slave-system-control.o
2025-10-02T15:56:54.8195491Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padnv04.o
2025-10-02T15:56:55.0879982Z LD [M] drivers/spi/spi-dw.o
2025-10-02T15:56:55.1059704Z LD [M] drivers/spi/spi-pxa2xx-platform.o
2025-10-02T15:56:55.1079174Z CC [M] drivers/scsi/isci/task.o
2025-10-02T15:56:55.1239779Z AR drivers/spi/built-in.a
2025-10-02T15:56:55.1998440Z CC [M] net/ieee802154/nl-phy.o
2025-10-02T15:56:55.2946077Z CC [M] drivers/scsi/qla2xxx/qla_os.o
2025-10-02T15:56:55.8141480Z CC [M] drivers/ata/sata_promise.o
2025-10-02T15:56:55.8291025Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padnv4e.o
2025-10-02T15:56:56.1976054Z CC [M] net/ieee802154/nl_policy.o
2025-10-02T15:56:56.5639964Z CC [M] drivers/scsi/isci/probe_roms.o
2025-10-02T15:56:56.7504439Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padnv50.o
2025-10-02T15:56:56.8010879Z CC [M] net/ieee802154/core.o
2025-10-02T15:56:57.3441942Z CC [M] drivers/ata/sata_sil.o
2025-10-02T15:56:57.5090867Z CC [M] drivers/scsi/isci/remote_node_context.o
2025-10-02T15:56:57.5607947Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padg94.o
2025-10-02T15:56:57.8743747Z CC [M] net/ieee802154/header_ops.o
2025-10-02T15:56:58.4126220Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgf119.o
2025-10-02T15:56:58.4820307Z CC [M] drivers/ata/sata_sis.o
2025-10-02T15:56:58.7995349Z CC [M] drivers/scsi/isci/remote_node_table.o
2025-10-02T15:56:58.9903518Z CC [M] net/ieee802154/sysfs.o
2025-10-02T15:56:59.1615330Z CC [M] drivers/scsi/isci/unsolicited_frame_control.o
2025-10-02T15:56:59.2170831Z CC [M] drivers/ata/sata_svw.o
2025-10-02T15:56:59.3662509Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/padgm200.o
2025-10-02T15:56:59.6059418Z CC [M] drivers/scsi/qla2xxx/qla_init.o
2025-10-02T15:56:59.9068132Z CC [M] net/ieee802154/nl802154.o
2025-10-02T15:57:00.1284310Z CC [M] drivers/scsi/isci/port_config.o
2025-10-02T15:57:00.1728562Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/bus.o
2025-10-02T15:57:00.2471242Z CC [M] drivers/ata/sata_uli.o
2025-10-02T15:57:01.1158269Z CC [M] drivers/ata/sata_via.o
2025-10-02T15:57:01.1741305Z LD [M] drivers/scsi/isci/isci.o
2025-10-02T15:57:01.2800490Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/busnv04.o
2025-10-02T15:57:01.2940053Z CC [M] net/ieee802154/trace.o
2025-10-02T15:57:02.2633557Z CC [M] drivers/ata/sata_vsc.o
2025-10-02T15:57:02.3216328Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/busnv4e.o
2025-10-02T15:57:02.5278288Z CC [M] net/mac802154/main.o
2025-10-02T15:57:03.1165222Z CC [M] net/ieee802154/socket.o
2025-10-02T15:57:03.1594222Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/busnv50.o
2025-10-02T15:57:03.4408943Z CC [M] drivers/ata/pata_ali.o
2025-10-02T15:57:03.6925915Z CC [M] net/mac802154/rx.o
2025-10-02T15:57:04.0288311Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/busgf119.o
2025-10-02T15:57:04.2418623Z CC [M] drivers/ata/pata_amd.o
2025-10-02T15:57:04.7460936Z LD [M] net/ieee802154/ieee802154.o
2025-10-02T15:57:04.8057815Z LD [M] net/ieee802154/ieee802154_socket.o
2025-10-02T15:57:04.8550051Z CC [M] net/mac802154/tx.o
2025-10-02T15:57:04.8607199Z CC [M] drivers/scsi/qla2xxx/qla_mbx.o
2025-10-02T15:57:05.1164751Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/bit.o
2025-10-02T15:57:05.2262586Z CC [M] drivers/ata/pata_artop.o
2025-10-02T15:57:05.6438425Z CC [M] drivers/scsi/qla2xxx/qla_iocb.o
2025-10-02T15:57:05.8570637Z CC [M] net/mac802154/mac_cmd.o
2025-10-02T15:57:06.0159372Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.o
2025-10-02T15:57:06.0990850Z CC [M] drivers/ata/pata_atiixp.o
2025-10-02T15:57:06.9485658Z CC [M] net/mac802154/mib.o
2025-10-02T15:57:06.9985127Z CC [M] drivers/ata/pata_atp867x.o
2025-10-02T15:57:07.0112586Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxg94.o
2025-10-02T15:57:07.8370379Z CC [M] drivers/ata/pata_cmd64x.o
2025-10-02T15:57:07.8843159Z CC [M] net/mac802154/iface.o
2025-10-02T15:57:08.3525134Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgf119.o
2025-10-02T15:57:08.6388296Z CC [M] drivers/ata/pata_cypress.o
2025-10-02T15:57:08.8191215Z CC [M] drivers/gpu/drm/ast/ast_cursor.o
2025-10-02T15:57:08.9974797Z CC [M] drivers/scsi/qla2xxx/qla_isr.o
2025-10-02T15:57:09.1888733Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/auxgm200.o
2025-10-02T15:57:09.2988336Z CC [M] net/mac802154/llsec.o
2025-10-02T15:57:09.6909370Z CC [M] drivers/ata/pata_efar.o
2025-10-02T15:57:09.9638432Z CC [M] drivers/gpu/drm/ast/ast_drv.o
2025-10-02T15:57:10.2054896Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/i2c/anx9805.o
2025-10-02T15:57:10.4364603Z CC [M] drivers/ata/pata_hpt366.o
2025-10-02T15:57:11.0584866Z CC [M] drivers/gpu/drm/ast/ast_main.o
2025-10-02T15:57:11.2533578Z CC [M] drivers/ata/pata_hpt37x.o
2025-10-02T15:57:11.3626172Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gf100.o
2025-10-02T15:57:11.5165507Z CC [M] net/mac802154/util.o
2025-10-02T15:57:12.1305368Z CC [M] drivers/gpu/drm/ast/ast_mm.o
2025-10-02T15:57:12.2213793Z CC [M] drivers/scsi/qla2xxx/qla_gs.o
2025-10-02T15:57:12.3080706Z CC [M] drivers/ata/pata_hpt3x2n.o
2025-10-02T15:57:12.4390088Z CC [M] net/mac802154/cfg.o
2025-10-02T15:57:12.5415379Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gf117.o
2025-10-02T15:57:13.0284354Z CC [M] drivers/gpu/drm/ast/ast_mode.o
2025-10-02T15:57:13.1500442Z CC [M] drivers/ata/pata_hpt3x3.o
2025-10-02T15:57:13.2989113Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gk104.o
2025-10-02T15:57:13.9045184Z CC [M] drivers/ata/pata_it8213.o
2025-10-02T15:57:13.9061941Z CC [M] net/mac802154/trace.o
2025-10-02T15:57:14.4170051Z CC [M] drivers/gpu/drm/ast/ast_post.o
2025-10-02T15:57:14.6223557Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gk20a.o
2025-10-02T15:57:14.7599916Z CC [M] drivers/ata/pata_it821x.o
2025-10-02T15:57:14.9539774Z CC [M] drivers/scsi/qla2xxx/qla_dbg.o
2025-10-02T15:57:15.4673103Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gm200.o
2025-10-02T15:57:15.5993341Z LD [M] net/mac802154/mac802154.o
2025-10-02T15:57:15.7477838Z CC [M] net/wimax/id-table.o
2025-10-02T15:57:15.9751060Z CC [M] drivers/ata/pata_jmicron.o
2025-10-02T15:57:16.0049210Z CC [M] drivers/gpu/drm/ast/ast_dp501.o
2025-10-02T15:57:16.2320619Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ibus/gp10b.o
2025-10-02T15:57:16.8214636Z CC [M] net/wimax/op-msg.o
2025-10-02T15:57:16.8658144Z LD [M] drivers/gpu/drm/ast/ast.o
2025-10-02T15:57:16.9177973Z CC [M] drivers/ata/pata_marvell.o
2025-10-02T15:57:17.0351868Z CC [M] drivers/gpu/drm/qxl/qxl_drv.o
2025-10-02T15:57:17.1691391Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.o
2025-10-02T15:57:17.8291935Z CC [M] drivers/ata/pata_netcell.o
2025-10-02T15:57:17.8665416Z CC [M] net/wimax/op-reset.o
2025-10-02T15:57:17.9348070Z CC [M] drivers/gpu/drm/qxl/qxl_kms.o
2025-10-02T15:57:18.5720383Z CC [M] drivers/ata/pata_ninja32.o
2025-10-02T15:57:18.5932429Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/gf100.o
2025-10-02T15:57:18.9037553Z CC [M] net/wimax/op-rfkill.o
2025-10-02T15:57:18.9400621Z CC [M] drivers/gpu/drm/qxl/qxl_display.o
2025-10-02T15:57:19.4344329Z CC [M] drivers/ata/pata_ns87415.o
2025-10-02T15:57:19.6377529Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/base.o
2025-10-02T15:57:19.9714870Z CC [M] net/wimax/op-state-get.o
2025-10-02T15:57:20.3640559Z CC [M] drivers/gpu/drm/qxl/qxl_ttm.o
2025-10-02T15:57:20.5174727Z CC [M] drivers/ata/pata_oldpiix.o
2025-10-02T15:57:20.6415503Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv04.o
2025-10-02T15:57:20.7886644Z CC [M] net/wimax/stack.o
2025-10-02T15:57:21.2288300Z CC [M] drivers/gpu/drm/qxl/qxl_object.o
2025-10-02T15:57:21.3622372Z CC [M] drivers/ata/pata_optidma.o
2025-10-02T15:57:21.6451125Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv40.o
2025-10-02T15:57:22.0718415Z CC [M] net/wimax/debugfs.o
2025-10-02T15:57:22.1530022Z CC [M] drivers/gpu/drm/qxl/qxl_gem.o
2025-10-02T15:57:22.2811105Z CC [M] drivers/ata/pata_pdc2027x.o
2025-10-02T15:57:22.5327250Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv50.o
2025-10-02T15:57:22.6002338Z CC [M] drivers/scsi/qla2xxx/qla_sup.o
2025-10-02T15:57:23.0612653Z CC [M] drivers/gpu/drm/qxl/qxl_cmd.o
2025-10-02T15:57:23.1312109Z LD [M] net/wimax/wimax.o
2025-10-02T15:57:23.2525337Z CC [M] net/dns_resolver/dns_key.o
2025-10-02T15:57:23.3751769Z CC [M] drivers/ata/pata_pdc202xx_old.o
2025-10-02T15:57:23.6631951Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/instmem/gk20a.o
2025-10-02T15:57:24.1681202Z CC [M] net/dns_resolver/dns_query.o
2025-10-02T15:57:24.2686391Z CC [M] drivers/gpu/drm/qxl/qxl_image.o
2025-10-02T15:57:24.3886169Z CC [M] drivers/ata/pata_radisys.o
2025-10-02T15:57:24.8195946Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/base.o
2025-10-02T15:57:25.1636060Z CC [M] drivers/gpu/drm/qxl/qxl_draw.o
2025-10-02T15:57:25.1671168Z LD [M] net/dns_resolver/dns_resolver.o
2025-10-02T15:57:25.2243118Z CC [M] net/ceph/ceph_common.o
2025-10-02T15:57:25.3473339Z CC [M] drivers/ata/pata_rdc.o
2025-10-02T15:57:25.3870274Z CC [M] drivers/scsi/qla2xxx/qla_attr.o
2025-10-02T15:57:25.6363964Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gf100.o
2025-10-02T15:57:25.8859789Z CC [M] drivers/gpu/drm/qxl/qxl_debugfs.o
2025-10-02T15:57:26.5234018Z CC [M] drivers/ata/pata_sch.o
2025-10-02T15:57:26.6245825Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gk104.o
2025-10-02T15:57:26.6875419Z CC [M] net/ceph/messenger.o
2025-10-02T15:57:26.7861133Z CC [M] drivers/gpu/drm/qxl/qxl_irq.o
2025-10-02T15:57:27.3684818Z CC [M] drivers/ata/pata_serverworks.o
2025-10-02T15:57:27.6062895Z CC [M] drivers/gpu/drm/qxl/qxl_dumb.o
2025-10-02T15:57:27.6236690Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gm107.o
2025-10-02T15:57:28.2863929Z CC [M] drivers/scsi/qla2xxx/qla_mid.o
2025-10-02T15:57:28.2927107Z CC [M] drivers/ata/pata_sil680.o
2025-10-02T15:57:28.4542732Z CC [M] drivers/gpu/drm/qxl/qxl_ioctl.o
2025-10-02T15:57:28.7366373Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gm200.o
2025-10-02T15:57:29.3128095Z CC [M] drivers/ata/pata_sis.o
2025-10-02T15:57:29.5637051Z CC [M] drivers/gpu/drm/qxl/qxl_release.o
2025-10-02T15:57:29.6619890Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gp100.o
2025-10-02T15:57:29.7325095Z CC [M] drivers/scsi/qla2xxx/qla_dfs.o
2025-10-02T15:57:29.9871214Z CC [M] net/ceph/msgpool.o
2025-10-02T15:57:30.4718093Z CC [M] drivers/ata/pata_piccolo.o
2025-10-02T15:57:30.5706882Z CC [M] drivers/gpu/drm/qxl/qxl_prime.o
2025-10-02T15:57:30.6047212Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gp102.o
2025-10-02T15:57:30.8252734Z CC [M] net/ceph/buffer.o
2025-10-02T15:57:31.1220735Z CC [M] drivers/scsi/qla2xxx/qla_bsg.o
2025-10-02T15:57:31.3560598Z CC [M] drivers/ata/pata_triflex.o
2025-10-02T15:57:31.3926455Z LD [M] drivers/gpu/drm/qxl/qxl.o
2025-10-02T15:57:31.4290653Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/ltc/gp10b.o
2025-10-02T15:57:31.4921533Z CC [M] drivers/scsi/qla4xxx/ql4_os.o
2025-10-02T15:57:31.6761629Z CC [M] net/ceph/pagelist.o
2025-10-02T15:57:32.2619971Z CC [M] drivers/ata/pata_via.o
2025-10-02T15:57:32.3956529Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/base.o
2025-10-02T15:57:32.5844540Z CC [M] net/ceph/mon_client.o
2025-10-02T15:57:33.3599006Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv04.o
2025-10-02T15:57:33.4130456Z CC [M] drivers/ata/pata_sl82c105.o
2025-10-02T15:57:33.4738098Z CC [M] drivers/scsi/qla2xxx/qla_nx.o
2025-10-02T15:57:34.1821638Z CC [M] drivers/ata/pata_cmd640.o
2025-10-02T15:57:34.4160959Z CC [M] net/ceph/decode.o
2025-10-02T15:57:34.4767384Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv11.o
2025-10-02T15:57:34.7918990Z CC [M] net/ceph/cls_lock_client.o
2025-10-02T15:57:35.3255298Z CC [M] drivers/ata/pata_mpiix.o
2025-10-02T15:57:35.5183144Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv17.o
2025-10-02T15:57:36.1598652Z CC [M] net/ceph/osd_client.o
2025-10-02T15:57:36.2237139Z CC [M] drivers/scsi/qla2xxx/qla_mr.o
2025-10-02T15:57:36.2969001Z CC [M] drivers/ata/pata_ns87410.o
2025-10-02T15:57:36.4980151Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv44.o
2025-10-02T15:57:36.9588487Z CC [M] drivers/scsi/qla4xxx/ql4_init.o
2025-10-02T15:57:37.2518981Z CC [M] drivers/ata/pata_opti.o
2025-10-02T15:57:37.3856059Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/nv50.o
2025-10-02T15:57:38.1252133Z CC [M] drivers/ata/pata_pcmcia.o
2025-10-02T15:57:38.3284526Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/g84.o
2025-10-02T15:57:38.7051096Z CC [M] drivers/scsi/qla2xxx/qla_nx2.o
2025-10-02T15:57:38.9041468Z CC [M] drivers/scsi/qla4xxx/ql4_mbx.o
2025-10-02T15:57:39.0049946Z CC [M] drivers/ata/pata_rz1000.o
2025-10-02T15:57:39.3484091Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/g98.o
2025-10-02T15:57:39.8819707Z CC [M] drivers/ata/pata_acpi.o
2025-10-02T15:57:40.2310153Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gt215.o
2025-10-02T15:57:40.8640534Z CC [M] net/ceph/osdmap.o
2025-10-02T15:57:40.9380872Z CC [M] drivers/ata/ata_generic.o
2025-10-02T15:57:41.0883243Z CC [M] drivers/scsi/qla4xxx/ql4_iocb.o
2025-10-02T15:57:41.1095545Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gf100.o
2025-10-02T15:57:41.2974698Z CC [M] drivers/scsi/qla2xxx/qla_target.o
2025-10-02T15:57:41.9855542Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gk104.o
2025-10-02T15:57:42.0983128Z CC [M] drivers/ata/pata_legacy.o
2025-10-02T15:57:42.5680790Z CC [M] drivers/scsi/qla4xxx/ql4_isr.o
2025-10-02T15:57:42.9151341Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gk20a.o
2025-10-02T15:57:43.4676696Z AR drivers/ata/built-in.a
2025-10-02T15:57:43.8663381Z CC [M] drivers/scsi/qla2xxx/qla_tmpl.o
2025-10-02T15:57:43.8805988Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gp100.o
2025-10-02T15:57:44.2263531Z CC [M] net/ceph/crush/crush.o
2025-10-02T15:57:44.3941629Z CC [M] drivers/scsi/qla4xxx/ql4_nx.o
2025-10-02T15:57:44.6943671Z CC [M] net/ceph/crush/mapper.o
2025-10-02T15:57:44.7738988Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/gp10b.o
2025-10-02T15:57:45.4293872Z CC [M] drivers/scsi/qla4xxx/ql4_nvram.o
2025-10-02T15:57:45.5681230Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mc/tu102.o
2025-10-02T15:57:45.6696107Z CC [M] drivers/scsi/qla2xxx/qla_nvme.o
2025-10-02T15:57:45.7393652Z CC [M] net/ceph/crush/hash.o
2025-10-02T15:57:46.1159123Z CC [M] net/ceph/striper.o
2025-10-02T15:57:46.6044322Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/base.o
2025-10-02T15:57:46.7288313Z CC [M] net/ceph/debugfs.o
2025-10-02T15:57:46.8614736Z CC [M] drivers/scsi/qla2xxx/tcm_qla2xxx.o
2025-10-02T15:57:46.9010184Z CC [M] net/ceph/auth.o
2025-10-02T15:57:47.5901524Z CC [M] drivers/scsi/qla4xxx/ql4_dbg.o
2025-10-02T15:57:47.9066109Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv04.o
2025-10-02T15:57:47.9480170Z CC [M] net/batman-adv/bat_algo.o
2025-10-02T15:57:48.0418843Z CC [M] net/ceph/auth_none.o
2025-10-02T15:57:48.7535990Z LD [M] drivers/scsi/qla2xxx/qla2xxx.o
2025-10-02T15:57:48.7673655Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv41.o
2025-10-02T15:57:48.8030795Z CC [M] net/ceph/crypto.o
2025-10-02T15:57:48.8994743Z CC [M] net/batman-adv/bat_iv_ogm.o
2025-10-02T15:57:48.9081821Z CC [M] drivers/scsi/qla4xxx/ql4_attr.o
2025-10-02T15:57:48.9962720Z CC [M] drivers/scsi/qla4xxx/ql4_bsg.o
2025-10-02T15:57:49.6340196Z CC [M] net/ceph/armor.o
2025-10-02T15:57:49.7314967Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv44.o
2025-10-02T15:57:49.7950121Z CC [M] net/ceph/auth_x.o
2025-10-02T15:57:50.4394143Z CC [M] net/ceph/ceph_strings.o
2025-10-02T15:57:50.6344778Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/nv50.o
2025-10-02T15:57:50.8734933Z CC [M] drivers/scsi/qla4xxx/ql4_83xx.o
2025-10-02T15:57:50.9061659Z CC [M] net/ceph/ceph_hash.o
2025-10-02T15:57:51.2258344Z CC [M] drivers/net/phy/mscc/mscc_main.o
2025-10-02T15:57:51.3721776Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/g84.o
2025-10-02T15:57:51.3760866Z CC [M] net/batman-adv/bat_v.o
2025-10-02T15:57:51.4878853Z CC [M] net/ceph/pagevec.o
2025-10-02T15:57:52.1589428Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/mcp77.o
2025-10-02T15:57:52.7329911Z CC [M] net/batman-adv/bat_v_elp.o
2025-10-02T15:57:52.7539177Z CC [M] net/ceph/snapshot.o
2025-10-02T15:57:52.7802031Z LD [M] drivers/scsi/qla4xxx/qla4xxx.o
2025-10-02T15:57:52.9378794Z CC [M] drivers/net/phy/mscc/mscc_macsec.o
2025-10-02T15:57:52.9568781Z CC [M] drivers/scsi/lpfc/lpfc_mem.o
2025-10-02T15:57:53.0102463Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gf100.o
2025-10-02T15:57:53.7512980Z CC [M] net/ceph/string_table.o
2025-10-02T15:57:53.8614696Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gk104.o
2025-10-02T15:57:53.9530123Z CC [M] drivers/scsi/lpfc/lpfc_sli.o
2025-10-02T15:57:53.9667968Z CC [M] net/batman-adv/bat_v_ogm.o
2025-10-02T15:57:54.2345157Z CC [M] drivers/net/phy/mscc/mscc_ptp.o
2025-10-02T15:57:54.3713506Z LD [M] net/ceph/libceph.o
2025-10-02T15:57:54.5101325Z CC drivers/net/phy/mdio-boardinfo.o
2025-10-02T15:57:54.7725739Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gk20a.o
2025-10-02T15:57:55.3167626Z AR drivers/message/fusion/built-in.a
2025-10-02T15:57:55.3381805Z CC [M] drivers/message/fusion/mptbase.o
2025-10-02T15:57:55.3778859Z CC [M] net/batman-adv/bitarray.o
2025-10-02T15:57:55.7925113Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gm200.o
2025-10-02T15:57:55.9603923Z LD [M] drivers/net/phy/mscc/mscc.o
2025-10-02T15:57:55.9981203Z CC drivers/net/phy/mii_timestamper.o
2025-10-02T15:57:56.4368382Z CC [M] net/batman-adv/bridge_loop_avoidance.o
2025-10-02T15:57:56.7311062Z CC drivers/net/phy/sfp-bus.o
2025-10-02T15:57:56.7792854Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gm20b.o
2025-10-02T15:57:57.8878631Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gp100.o
2025-10-02T15:57:57.9989716Z CC [M] drivers/net/phy/mdio_devres.o
2025-10-02T15:57:58.6881710Z CC [M] net/batman-adv/debugfs.o
2025-10-02T15:57:58.6967237Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gp10b.o
2025-10-02T15:57:58.7960738Z CC [M] drivers/message/fusion/mptscsih.o
2025-10-02T15:57:58.8645364Z CC [M] drivers/net/phy/phylink.o
2025-10-02T15:57:59.6215900Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/gv100.o
2025-10-02T15:57:59.7736919Z CC [M] net/batman-adv/distributed-arp-table.o
2025-10-02T15:58:00.3756573Z CC [M] drivers/message/fusion/mptspi.o
2025-10-02T15:58:00.7462267Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/tu102.o
2025-10-02T15:58:00.9104248Z CC [M] drivers/net/phy/phy.o
2025-10-02T15:58:01.7092252Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/mem.o
2025-10-02T15:58:01.7917536Z CC [M] net/batman-adv/fragmentation.o
2025-10-02T15:58:01.8459244Z CC [M] drivers/message/fusion/mptfc.o
2025-10-02T15:58:02.5420493Z CC [M] drivers/net/phy/phy-c45.o
2025-10-02T15:58:02.6838638Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/memnv04.o
2025-10-02T15:58:02.9332840Z CC [M] net/batman-adv/gateway_client.o
2025-10-02T15:58:03.4411340Z CC [M] drivers/net/phy/phy-core.o
2025-10-02T15:58:03.4630880Z CC [M] drivers/message/fusion/mptsas.o
2025-10-02T15:58:03.5560560Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/memnv50.o
2025-10-02T15:58:03.9472497Z CC [M] drivers/scsi/lpfc/lpfc_ct.o
2025-10-02T15:58:04.4192590Z CC [M] drivers/net/phy/phy_device.o
2025-10-02T15:58:04.5104406Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/memgf100.o
2025-10-02T15:58:04.5251835Z CC [M] net/batman-adv/gateway_common.o
2025-10-02T15:58:05.4387552Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmm.o
2025-10-02T15:58:05.5167934Z CC [M] net/batman-adv/hard-interface.o
2025-10-02T15:58:06.2620496Z CC [M] drivers/scsi/lpfc/lpfc_els.o
2025-10-02T15:58:06.4157489Z CC [M] drivers/message/fusion/mptctl.o
2025-10-02T15:58:06.4518055Z CC [M] drivers/net/phy/linkmode.o
2025-10-02T15:58:07.1673420Z CC [M] drivers/net/phy/mdio_bus.o
2025-10-02T15:58:07.1906623Z CC [M] net/batman-adv/hash.o
2025-10-02T15:58:07.6448895Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmnv04.o
2025-10-02T15:58:08.0662443Z CC [M] net/batman-adv/icmp_socket.o
2025-10-02T15:58:08.2723079Z CC [M] drivers/message/fusion/mptlan.o
2025-10-02T15:58:08.5677174Z CC [M] drivers/net/phy/mdio_device.o
2025-10-02T15:58:08.6530301Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmnv41.o
2025-10-02T15:58:09.1918912Z CC [M] net/batman-adv/main.o
2025-10-02T15:58:09.4513352Z CC [M] drivers/net/phy/swphy.o
2025-10-02T15:58:09.6687498Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmnv44.o
2025-10-02T15:58:09.8684512Z AR drivers/message/built-in.a
2025-10-02T15:58:09.9094349Z CC [M] drivers/gpu/drm/bochs/bochs_drv.o
2025-10-02T15:58:10.0483699Z CC [M] drivers/net/phy/phy_led_triggers.o
2025-10-02T15:58:10.5582314Z CC [M] net/batman-adv/multicast.o
2025-10-02T15:58:10.6725119Z CC [M] drivers/gpu/drm/bochs/bochs_mm.o
2025-10-02T15:58:11.0634357Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmnv50.o
2025-10-02T15:58:11.1507622Z CC [M] drivers/net/phy/sfp.o
2025-10-02T15:58:11.2327525Z CC [M] drivers/scsi/lpfc/lpfc_hbadisc.o
2025-10-02T15:58:11.3955039Z CC [M] drivers/gpu/drm/bochs/bochs_kms.o
2025-10-02T15:58:12.3115059Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmmcp77.o
2025-10-02T15:58:12.4094482Z CC [M] drivers/gpu/drm/bochs/bochs_hw.o
2025-10-02T15:58:12.6184131Z CC [M] net/batman-adv/netlink.o
2025-10-02T15:58:13.1123307Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgf100.o
2025-10-02T15:58:13.1193299Z CC [M] drivers/net/phy/adin.o
2025-10-02T15:58:13.5078111Z LD [M] drivers/gpu/drm/bochs/bochs-drm.o
2025-10-02T15:58:13.5785754Z CC [M] drivers/scsi/lpfc/lpfc_init.o
2025-10-02T15:58:13.9787533Z CC [M] drivers/net/phy/amd.o
2025-10-02T15:58:14.1744920Z CC [M] net/batman-adv/network-coding.o
2025-10-02T15:58:14.4235591Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgk104.o
2025-10-02T15:58:14.5794358Z CC [M] drivers/net/phy/aquantia_main.o
2025-10-02T15:58:15.5194722Z CC [M] drivers/net/phy/aquantia_hwmon.o
2025-10-02T15:58:15.5552203Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgk20a.o
2025-10-02T15:58:15.8511973Z CC [M] net/batman-adv/originator.o
2025-10-02T15:58:15.9481352Z CC [M] drivers/net/phy/at803x.o
2025-10-02T15:58:16.2779720Z CC [M] drivers/scsi/bfa/bfad.o
2025-10-02T15:58:16.5986497Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgm200.o
2025-10-02T15:58:17.3487788Z CC [M] drivers/net/phy/ax88796b.o
2025-10-02T15:58:17.6264383Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgm20b.o
2025-10-02T15:58:17.8557605Z CC [M] net/batman-adv/routing.o
2025-10-02T15:58:17.9507024Z CC [M] drivers/net/phy/bcm54140.o
2025-10-02T15:58:18.2676137Z CC [M] drivers/scsi/bfa/bfad_im.o
2025-10-02T15:58:18.6645973Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgp100.o
2025-10-02T15:58:18.9494397Z CC [M] drivers/net/phy/bcm7xxx.o
2025-10-02T15:58:19.3074598Z CC [M] net/batman-adv/send.o
2025-10-02T15:58:19.8204446Z CC [M] drivers/scsi/bfa/bfad_attr.o
2025-10-02T15:58:19.9402379Z CC [M] drivers/net/phy/bcm84881.o
2025-10-02T15:58:20.0937196Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgp10b.o
2025-10-02T15:58:20.6584619Z CC [M] net/batman-adv/soft-interface.o
2025-10-02T15:58:20.7787919Z CC [M] drivers/scsi/lpfc/lpfc_mbox.o
2025-10-02T15:58:20.8871364Z CC [M] drivers/net/phy/bcm87xx.o
2025-10-02T15:58:20.9718943Z CC [M] drivers/scsi/bfa/bfad_debugfs.o
2025-10-02T15:58:21.0656872Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmgv100.o
2025-10-02T15:58:21.8036861Z CC [M] drivers/net/phy/bcm-phy-lib.o
2025-10-02T15:58:21.9124299Z CC [M] net/batman-adv/sysfs.o
2025-10-02T15:58:22.0972179Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/vmmtu102.o
2025-10-02T15:58:22.2077396Z CC [M] drivers/scsi/bfa/bfad_bsg.o
2025-10-02T15:58:22.3584227Z CC [M] drivers/scsi/lpfc/lpfc_nportdisc.o
2025-10-02T15:58:23.0538046Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/umem.o
2025-10-02T15:58:23.1303666Z CC [M] drivers/net/phy/broadcom.o
2025-10-02T15:58:23.4613927Z CC [M] net/batman-adv/tp_meter.o
2025-10-02T15:58:24.0395755Z CC [M] drivers/net/phy/cicada.o
2025-10-02T15:58:24.2810246Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ummu.o
2025-10-02T15:58:24.4540467Z CC [M] drivers/scsi/bfa/bfa_ioc.o
2025-10-02T15:58:24.4855578Z CC [M] drivers/scsi/lpfc/lpfc_scsi.o
2025-10-02T15:58:24.8403324Z CC [M] drivers/net/phy/cortina.o
2025-10-02T15:58:25.0476245Z CC [M] net/batman-adv/translation-table.o
2025-10-02T15:58:25.1742103Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mmu/uvmm.o
2025-10-02T15:58:25.5119424Z CC [M] drivers/net/phy/davicom.o
2025-10-02T15:58:26.3237192Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mxm/base.o
2025-10-02T15:58:26.5478593Z CC [M] drivers/net/phy/dp83640.o
2025-10-02T15:58:27.4634441Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mxm/mxms.o
2025-10-02T15:58:27.8429074Z CC [M] drivers/scsi/lpfc/lpfc_attr.o
2025-10-02T15:58:28.0625854Z CC [M] drivers/scsi/bfa/bfa_ioc_cb.o
2025-10-02T15:58:28.3735855Z CC [M] drivers/net/phy/dp83822.o
2025-10-02T15:58:28.6949963Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/mxm/nv50.o
2025-10-02T15:58:28.8146647Z CC [M] net/batman-adv/tvlv.o
2025-10-02T15:58:28.9349995Z CC [M] drivers/scsi/bfa/bfa_ioc_ct.o
2025-10-02T15:58:29.5012664Z CC [M] drivers/net/phy/dp83848.o
2025-10-02T15:58:29.6175874Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.o
2025-10-02T15:58:30.0355882Z LD [M] net/batman-adv/batman-adv.o
2025-10-02T15:58:30.1430096Z CC [M] drivers/scsi/bfa/bfa_hw_cb.o
2025-10-02T15:58:30.2127365Z CC [M] net/nfc/nci/core.o
2025-10-02T15:58:30.2619135Z CC [M] drivers/net/phy/dp83867.o
2025-10-02T15:58:30.4139038Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.o
2025-10-02T15:58:31.0537518Z CC [M] drivers/scsi/bfa/bfa_hw_ct.o
2025-10-02T15:58:31.3957509Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/pcie.o
2025-10-02T15:58:31.5142104Z CC [M] drivers/net/phy/dp83869.o
2025-10-02T15:58:31.9149725Z CC [M] drivers/scsi/lpfc/lpfc_vport.o
2025-10-02T15:58:31.9284097Z CC [M] drivers/scsi/bfa/bfa_fcs.o
2025-10-02T15:58:32.1626747Z CC [M] net/nfc/nci/data.o
2025-10-02T15:58:32.3078089Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/nv04.o
2025-10-02T15:58:32.8845972Z CC [M] drivers/net/phy/dp83tc811.o
2025-10-02T15:58:33.1061465Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/nv40.o
2025-10-02T15:58:33.2358827Z CC [M] drivers/scsi/bfa/bfa_fcs_lport.o
2025-10-02T15:58:33.3536334Z CC [M] drivers/scsi/lpfc/lpfc_debugfs.o
2025-10-02T15:58:33.4238731Z CC [M] net/nfc/nci/lib.o
2025-10-02T15:58:33.8659039Z CC [M] drivers/net/phy/fixed_phy.o
2025-10-02T15:58:34.2012472Z CC [M] net/nfc/nci/ntf.o
2025-10-02T15:58:34.3338899Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/nv46.o
2025-10-02T15:58:35.0865173Z CC [M] drivers/net/phy/icplus.o
2025-10-02T15:58:35.2032089Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/nv4c.o
2025-10-02T15:58:35.8123889Z CC [M] net/nfc/nci/rsp.o
2025-10-02T15:58:35.9219089Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/g84.o
2025-10-02T15:58:36.0046142Z CC [M] drivers/net/phy/intel-xway.o
2025-10-02T15:58:36.7649431Z CC [M] drivers/scsi/bfa/bfa_fcs_rport.o
2025-10-02T15:58:36.7801770Z CC [M] drivers/net/phy/et1011c.o
2025-10-02T15:58:36.8626673Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/g92.o
2025-10-02T15:58:36.8905749Z CC [M] drivers/scsi/lpfc/lpfc_bsg.o
2025-10-02T15:58:36.9075529Z CC [M] net/nfc/nci/hci.o
2025-10-02T15:58:37.6451040Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/g94.o
2025-10-02T15:58:37.7224396Z CC [M] drivers/net/phy/lxt.o
2025-10-02T15:58:38.5090852Z CC [M] net/nfc/nci/spi.o
2025-10-02T15:58:38.5976600Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/gf100.o
2025-10-02T15:58:38.8981213Z CC [M] drivers/net/phy/marvell10g.o
2025-10-02T15:58:39.1722610Z CC [M] drivers/scsi/bfa/bfa_fcs_fcpim.o
2025-10-02T15:58:39.2584239Z CC [M] net/nfc/nci/uart.o
2025-10-02T15:58:39.4311737Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/gf106.o
2025-10-02T15:58:39.8786617Z CC [M] drivers/net/phy/marvell.o
2025-10-02T15:58:40.2122463Z LD [M] net/nfc/nci/nci.o
2025-10-02T15:58:40.2742677Z LD [M] net/nfc/nci/nci_spi.o
2025-10-02T15:58:40.2884897Z LD [M] net/nfc/nci/nci_uart.o
2025-10-02T15:58:40.3641704Z CC [M] net/nfc/hci/core.o
2025-10-02T15:58:40.4123584Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/gk104.o
2025-10-02T15:58:40.4178527Z CC [M] drivers/scsi/bfa/bfa_fcbuild.o
2025-10-02T15:58:40.6306729Z CC [M] drivers/scsi/lpfc/lpfc_nvme.o
2025-10-02T15:58:41.3453464Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pci/gp100.o
2025-10-02T15:58:41.6922278Z CC [M] net/nfc/hci/hcp.o
2025-10-02T15:58:41.6998810Z CC [M] drivers/net/phy/spi_ks8995.o
2025-10-02T15:58:41.8300868Z CC [M] drivers/scsi/bfa/bfa_port.o
2025-10-02T15:58:42.3325721Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/base.o
2025-10-02T15:58:42.3974825Z CC [M] net/nfc/hci/command.o
2025-10-02T15:58:42.5077869Z CC [M] drivers/scsi/lpfc/lpfc_nvmet.o
2025-10-02T15:58:42.5497098Z CC [M] drivers/net/phy/micrel.o
2025-10-02T15:58:42.7632249Z CC [M] drivers/scsi/bfa/bfa_fcpim.o
2025-10-02T15:58:43.3028431Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/memx.o
2025-10-02T15:58:43.3685162Z CC [M] net/nfc/hci/llc.o
2025-10-02T15:58:43.7233220Z CC [M] drivers/net/phy/microchip.o
2025-10-02T15:58:44.1505697Z CC [M] net/nfc/hci/llc_nop.o
2025-10-02T15:58:44.4986396Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gt215.o
2025-10-02T15:58:44.5757500Z CC [M] drivers/net/phy/microchip_t1.o
2025-10-02T15:58:44.8702576Z CC [M] net/nfc/hci/llc_shdlc.o
2025-10-02T15:58:45.3619667Z CC [M] drivers/net/phy/national.o
2025-10-02T15:58:45.4027831Z LD [M] drivers/scsi/lpfc/lpfc.o
2025-10-02T15:58:45.5612472Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gf100.o
2025-10-02T15:58:45.6081229Z AR drivers/firewire/built-in.a
2025-10-02T15:58:45.6194878Z CC [M] drivers/firewire/core-card.o
2025-10-02T15:58:45.8673644Z CC [M] drivers/scsi/bfa/bfa_core.o
2025-10-02T15:58:45.9102997Z LD [M] net/nfc/hci/hci.o
2025-10-02T15:58:45.9813289Z CC [M] net/nfc/core.o
2025-10-02T15:58:46.3689028Z CC [M] drivers/net/phy/nxp-tja11xx.o
2025-10-02T15:58:46.5334845Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gf119.o
2025-10-02T15:58:46.5383193Z CC [M] drivers/firewire/core-cdev.o
2025-10-02T15:58:47.4723300Z CC [M] drivers/net/phy/qsemi.o
2025-10-02T15:58:47.5093443Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gk104.o
2025-10-02T15:58:47.5442023Z CC [M] net/nfc/netlink.o
2025-10-02T15:58:47.7033493Z CC [M] drivers/scsi/bfa/bfa_svc.o
2025-10-02T15:58:48.1132921Z CC [M] drivers/firewire/core-device.o
2025-10-02T15:58:48.4073398Z CC [M] drivers/net/phy/realtek.o
2025-10-02T15:58:48.6371592Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gk110.o
2025-10-02T15:58:49.4201490Z CC [M] drivers/firewire/core-iso.o
2025-10-02T15:58:49.4568985Z CC [M] drivers/net/phy/uPD60620.o
2025-10-02T15:58:49.5901790Z CC [M] net/nfc/af_nfc.o
2025-10-02T15:58:49.5961075Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gk208.o
2025-10-02T15:58:50.1870345Z CC [M] drivers/net/phy/smsc.o
2025-10-02T15:58:50.2574425Z CC [M] drivers/firewire/core-topology.o
2025-10-02T15:58:50.5090925Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gk20a.o
2025-10-02T15:58:50.5908038Z CC [M] net/nfc/rawsock.o
2025-10-02T15:58:51.1884717Z CC [M] drivers/net/phy/ste10Xp.o
2025-10-02T15:58:51.3495235Z CC [M] drivers/firewire/core-transaction.o
2025-10-02T15:58:51.4713155Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm107.o
2025-10-02T15:58:51.8156775Z CC [M] net/nfc/llcp_core.o
2025-10-02T15:58:52.1726811Z CC [M] drivers/net/phy/teranetics.o
2025-10-02T15:58:52.1956080Z LD [M] drivers/scsi/bfa/bfa.o
2025-10-02T15:58:52.3090472Z CC [M] drivers/scsi/csiostor/csio_attr.o
2025-10-02T15:58:52.3691295Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm200.o
2025-10-02T15:58:52.6559451Z CC [M] drivers/firewire/ohci.o
2025-10-02T15:58:53.0228551Z CC [M] drivers/net/phy/vitesse.o
2025-10-02T15:58:53.2224091Z CC [M] drivers/scsi/csiostor/csio_init.o
2025-10-02T15:58:53.4104174Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gm20b.o
2025-10-02T15:58:53.6485469Z CC [M] net/nfc/llcp_commands.o
2025-10-02T15:58:54.2023173Z CC [M] drivers/net/phy/xilinx_gmii2rgmii.o
2025-10-02T15:58:54.3925502Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp102.o
2025-10-02T15:58:54.5174963Z CC [M] drivers/scsi/csiostor/csio_lnode.o
2025-10-02T15:58:55.0348152Z LD [M] drivers/net/phy/libphy.o
2025-10-02T15:58:55.0708643Z LD [M] drivers/net/phy/aquantia.o
2025-10-02T15:58:55.0857090Z AR drivers/net/phy/built-in.a
2025-10-02T15:58:55.1829881Z CC [M] net/nfc/llcp_sock.o
2025-10-02T15:58:55.2883343Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp10b.o
2025-10-02T15:58:55.3325504Z CC [M] drivers/firewire/sbp2.o
2025-10-02T15:58:55.4591761Z AR drivers/net/mdio/built-in.a
2025-10-02T15:58:55.4716229Z CC [M] drivers/net/mdio/mdio-bcm-unimac.o
2025-10-02T15:58:56.0670143Z CC [M] drivers/scsi/csiostor/csio_scsi.o
2025-10-02T15:58:56.2848491Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/base.o
2025-10-02T15:58:56.3843777Z CC [M] drivers/net/mdio/mdio-bitbang.o
2025-10-02T15:58:56.8764571Z CC [M] drivers/firewire/net.o
2025-10-02T15:58:56.9680595Z CC [M] net/nfc/digital_core.o
2025-10-02T15:58:57.2502658Z CC [M] drivers/net/mdio/mdio-cavium.o
2025-10-02T15:58:57.3701529Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/fan.o
2025-10-02T15:58:57.8480223Z CC [M] drivers/scsi/csiostor/csio_hw.o
2025-10-02T15:58:58.0396175Z CC [M] drivers/net/mdio/mdio-gpio.o
2025-10-02T15:58:58.1804872Z CC [M] net/nfc/digital_technology.o
2025-10-02T15:58:58.5156247Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/fannil.o
2025-10-02T15:58:58.5339888Z CC [M] drivers/firewire/nosy.o
2025-10-02T15:58:58.9259931Z CC [M] drivers/net/mdio/mdio-i2c.o
2025-10-02T15:58:59.1303060Z CC [M] net/nfc/digital_dep.o
2025-10-02T15:58:59.2669286Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/fanpwm.o
2025-10-02T15:58:59.8072672Z LD [M] drivers/firewire/firewire-core.o
2025-10-02T15:58:59.8320768Z LD [M] drivers/firewire/firewire-ohci.o
2025-10-02T15:58:59.8412659Z CC [M] drivers/net/mdio/mdio-mscc-miim.o
2025-10-02T15:58:59.8588125Z LD [M] drivers/firewire/firewire-sbp2.o
2025-10-02T15:58:59.8846693Z LD [M] drivers/firewire/firewire-net.o
2025-10-02T15:58:59.9840433Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/fantog.o
2025-10-02T15:59:00.2271721Z LD [M] net/nfc/nfc.o
2025-10-02T15:59:00.2403027Z CC [M] net/psample/psample.o
2025-10-02T15:59:00.2735069Z LD [M] net/nfc/nfc_digital.o
2025-10-02T15:59:00.3444411Z CC [M] drivers/scsi/csiostor/csio_hw_t5.o
2025-10-02T15:59:00.3593224Z CC [M] drivers/gpu/drm/virtio/virtgpu_drv.o
2025-10-02T15:59:00.7164765Z CC [M] drivers/net/mdio/mdio-mvusb.o
2025-10-02T15:59:01.0345681Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/ic.o
2025-10-02T15:59:01.1604962Z CC [M] drivers/gpu/drm/virtio/virtgpu_kms.o
2025-10-02T15:59:01.2978901Z CC [M] drivers/scsi/csiostor/csio_isr.o
2025-10-02T15:59:01.6828520Z CC [M] drivers/net/mdio/mdio-thunder.o
2025-10-02T15:59:01.7525643Z CC [M] net/ife/ife.o
2025-10-02T15:59:01.9939798Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/temp.o
2025-10-02T15:59:02.2647731Z CC [M] drivers/gpu/drm/virtio/virtgpu_gem.o
2025-10-02T15:59:02.2754386Z CC [M] drivers/scsi/csiostor/csio_mb.o
2025-10-02T15:59:02.7682413Z CC [M] net/openvswitch/actions.o
2025-10-02T15:59:02.8024078Z AR drivers/net/pcs/built-in.a
2025-10-02T15:59:02.8140318Z CC [M] drivers/net/pcs/pcs-xpcs.o
2025-10-02T15:59:03.0935448Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/nv40.o
2025-10-02T15:59:03.2696343Z CC [M] drivers/gpu/drm/virtio/virtgpu_display.o
2025-10-02T15:59:03.4725868Z CC [M] drivers/scsi/csiostor/csio_rnode.o
2025-10-02T15:59:03.6151401Z CC [M] drivers/net/pcs/pcs-lynx.o
2025-10-02T15:59:04.1883915Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/nv50.o
2025-10-02T15:59:04.4011064Z CC [M] drivers/gpu/drm/virtio/virtgpu_vq.o
2025-10-02T15:59:04.4843566Z AR drivers/net/dsa/b53/built-in.a
2025-10-02T15:59:04.5075313Z CC [M] drivers/net/dsa/b53/b53_common.o
2025-10-02T15:59:04.5825656Z CC [M] drivers/scsi/csiostor/csio_wr.o
2025-10-02T15:59:05.0146719Z CC [M] net/openvswitch/datapath.o
2025-10-02T15:59:05.2137851Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/g84.o
2025-10-02T15:59:05.9897121Z CC [M] drivers/gpu/drm/virtio/virtgpu_fence.o
2025-10-02T15:59:06.0930753Z LD [M] drivers/scsi/csiostor/csiostor.o
2025-10-02T15:59:06.2020264Z CC [M] drivers/scsi/smartpqi/smartpqi_init.o
2025-10-02T15:59:06.2966523Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gt215.o
2025-10-02T15:59:06.8966888Z CC [M] drivers/gpu/drm/virtio/virtgpu_object.o
2025-10-02T15:59:07.0104797Z CC [M] drivers/net/dsa/b53/b53_spi.o
2025-10-02T15:59:07.3251304Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf100.o
2025-10-02T15:59:07.5780862Z CC [M] net/openvswitch/dp_notify.o
2025-10-02T15:59:07.7286277Z CC [M] drivers/gpu/drm/virtio/virtgpu_debugfs.o
2025-10-02T15:59:08.3848085Z CC [M] drivers/net/dsa/b53/b53_mdio.o
2025-10-02T15:59:08.5303633Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gf119.o
2025-10-02T15:59:08.6244113Z CC [M] drivers/gpu/drm/virtio/virtgpu_plane.o
2025-10-02T15:59:08.7170663Z CC [M] net/openvswitch/flow.o
2025-10-02T15:59:09.4957115Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gk104.o
2025-10-02T15:59:09.6300130Z CC [M] drivers/gpu/drm/virtio/virtgpu_ioctl.o
2025-10-02T15:59:09.7788265Z CC [M] drivers/net/dsa/b53/b53_mmap.o
2025-10-02T15:59:10.1861419Z CC [M] drivers/scsi/smartpqi/smartpqi_sis.o
2025-10-02T15:59:10.4902514Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gm107.o
2025-10-02T15:59:10.5540624Z CC [M] net/openvswitch/flow_netlink.o
2025-10-02T15:59:10.6196788Z CC [M] drivers/gpu/drm/virtio/virtgpu_prime.o
2025-10-02T15:59:10.9655711Z CC [M] drivers/scsi/smartpqi/smartpqi_sas_transport.o
2025-10-02T15:59:11.2764930Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gm200.o
2025-10-02T15:59:11.3038938Z CC [M] drivers/net/dsa/b53/b53_srab.o
2025-10-02T15:59:11.5251588Z CC [M] drivers/gpu/drm/virtio/virtgpu_trace_points.o
2025-10-02T15:59:11.8400815Z LD [M] drivers/scsi/smartpqi/smartpqi.o
2025-10-02T15:59:11.9516279Z CC [M] drivers/scsi/sym53c8xx_2/sym_fw.o
2025-10-02T15:59:12.1291331Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/therm/gp100.o
2025-10-02T15:59:12.5587518Z LD [M] drivers/gpu/drm/virtio/virtio-gpu.o
2025-10-02T15:59:12.6367377Z CC [M] drivers/net/dsa/b53/b53_serdes.o
2025-10-02T15:59:12.6420717Z CC [M] drivers/scsi/sym53c8xx_2/sym_glue.o
2025-10-02T15:59:12.7893159Z AR drivers/net/dsa/microchip/built-in.a
2025-10-02T15:59:12.8009408Z CC [M] drivers/net/dsa/microchip/ksz_common.o
2025-10-02T15:59:13.2383313Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/base.o
2025-10-02T15:59:13.7538733Z CC [M] drivers/net/dsa/microchip/ksz9477.o
2025-10-02T15:59:14.1695336Z AR drivers/net/ethernet/3com/built-in.a
2025-10-02T15:59:14.1925061Z CC [M] drivers/net/ethernet/3com/3c589_cs.o
2025-10-02T15:59:14.3109953Z CC [M] drivers/scsi/sym53c8xx_2/sym_hipd.o
2025-10-02T15:59:14.4491595Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv04.o
2025-10-02T15:59:14.9383532Z CC [M] net/openvswitch/flow_table.o
2025-10-02T15:59:15.4504449Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv40.o
2025-10-02T15:59:15.5280694Z CC [M] drivers/net/ethernet/3com/3c574_cs.o
2025-10-02T15:59:15.6717711Z CC [M] drivers/net/dsa/microchip/ksz9477_i2c.o
2025-10-02T15:59:16.5508640Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/nv41.o
2025-10-02T15:59:16.9384002Z CC [M] drivers/net/dsa/microchip/ksz9477_spi.o
2025-10-02T15:59:16.9385305Z CC [M] net/openvswitch/meter.o
2025-10-02T15:59:17.0367812Z CC [M] drivers/net/ethernet/3com/3c59x.o
2025-10-02T15:59:17.2073590Z CC [M] drivers/scsi/sym53c8xx_2/sym_malloc.o
2025-10-02T15:59:17.5687376Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/timer/gk20a.o
2025-10-02T15:59:18.0340123Z CC [M] drivers/scsi/sym53c8xx_2/sym_nvram.o
2025-10-02T15:59:18.2217582Z CC [M] drivers/net/dsa/microchip/ksz8795.o
2025-10-02T15:59:18.5357850Z CC [M] net/openvswitch/vport.o
2025-10-02T15:59:18.6246052Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/top/base.o
2025-10-02T15:59:18.9718446Z LD [M] drivers/scsi/sym53c8xx_2/sym53c8xx.o
2025-10-02T15:59:19.0662422Z CC [M] drivers/scsi/mpt3sas/mpt3sas_base.o
2025-10-02T15:59:19.6577551Z CC [M] drivers/net/ethernet/3com/typhoon.o
2025-10-02T15:59:19.7422971Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/top/gk104.o
2025-10-02T15:59:19.9405819Z CC [M] net/openvswitch/vport-internal_dev.o
2025-10-02T15:59:20.3512993Z CC [M] drivers/net/dsa/microchip/ksz8795_spi.o
2025-10-02T15:59:20.7322636Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/base.o
2025-10-02T15:59:21.1597928Z CC [M] net/openvswitch/vport-netdev.o
2025-10-02T15:59:21.4314300Z AR drivers/net/ethernet/8390/built-in.a
2025-10-02T15:59:21.4434575Z CC [M] drivers/net/ethernet/8390/ne2k-pci.o
2025-10-02T15:59:21.7733583Z AR drivers/net/dsa/mv88e6xxx/built-in.a
2025-10-02T15:59:21.7839872Z CC [M] drivers/net/dsa/mv88e6xxx/chip.o
2025-10-02T15:59:21.9260879Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.o
2025-10-02T15:59:22.4540448Z CC [M] net/openvswitch/conntrack.o
2025-10-02T15:59:22.5792105Z CC [M] drivers/net/ethernet/8390/8390.o
2025-10-02T15:59:22.8374016Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/nv40.o
2025-10-02T15:59:23.1698168Z CC [M] drivers/scsi/mpt3sas/mpt3sas_config.o
2025-10-02T15:59:23.5918272Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gf100.o
2025-10-02T15:59:24.0311468Z CC [M] drivers/net/ethernet/8390/axnet_cs.o
2025-10-02T15:59:24.3107535Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gf117.o
2025-10-02T15:59:24.7849460Z CC [M] drivers/net/dsa/mv88e6xxx/devlink.o
2025-10-02T15:59:24.8426490Z CC [M] drivers/scsi/mpt3sas/mpt3sas_scsih.o
2025-10-02T15:59:25.1068508Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gk104.o
2025-10-02T15:59:25.1547261Z CC [M] net/openvswitch/vport-vxlan.o
2025-10-02T15:59:25.7330859Z CC [M] drivers/net/ethernet/8390/pcnet_cs.o
2025-10-02T15:59:25.9076772Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gk20a.o
2025-10-02T15:59:26.2031271Z CC [M] drivers/net/dsa/mv88e6xxx/global1.o
2025-10-02T15:59:26.3303531Z CC [M] net/openvswitch/vport-geneve.o
2025-10-02T15:59:26.7496280Z CC [M] drivers/gpu/drm/nouveau/nvkm/subdev/volt/gm20b.o
2025-10-02T15:59:27.5832971Z CC [M] net/openvswitch/vport-gre.o
2025-10-02T15:59:27.6250218Z CC [M] drivers/net/dsa/mv88e6xxx/global1_atu.o
2025-10-02T15:59:27.6720314Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/falcon.o
2025-10-02T15:59:27.7452406Z AR drivers/net/ethernet/adaptec/built-in.a
2025-10-02T15:59:27.7683522Z CC [M] drivers/net/ethernet/adaptec/starfire.o
2025-10-02T15:59:28.8061125Z LD [M] net/openvswitch/openvswitch.o
2025-10-02T15:59:28.8282488Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/xtensa.o
2025-10-02T15:59:28.9520898Z CC [M] net/vmw_vsock/af_vsock.o
2025-10-02T15:59:29.2487310Z CC [M] drivers/net/dsa/mv88e6xxx/global1_vtu.o
2025-10-02T15:59:29.5626537Z AR drivers/net/ethernet/agere/built-in.a
2025-10-02T15:59:29.5892866Z CC [M] drivers/net/ethernet/agere/et131x.o
2025-10-02T15:59:29.7814810Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/bsp/g84.o
2025-10-02T15:59:30.2910598Z CC [M] drivers/scsi/mpt3sas/mpt3sas_transport.o
2025-10-02T15:59:30.5013766Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gt215.o
2025-10-02T15:59:30.6979804Z CC [M] drivers/net/dsa/mv88e6xxx/phy.o
2025-10-02T15:59:31.1265092Z CC [M] net/vmw_vsock/af_vsock_tap.o
2025-10-02T15:59:31.6021335Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gf100.o
2025-10-02T15:59:31.7841781Z CC [M] drivers/scsi/mpt3sas/mpt3sas_ctl.o
2025-10-02T15:59:32.0947399Z CC [M] drivers/net/dsa/mv88e6xxx/port.o
2025-10-02T15:59:32.1289140Z CC [M] net/vmw_vsock/vsock_addr.o
2025-10-02T15:59:32.2301706Z AR drivers/net/ethernet/alacritech/built-in.a
2025-10-02T15:59:32.2584294Z CC [M] drivers/net/ethernet/alacritech/slicoss.o
2025-10-02T15:59:32.5614596Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gk104.o
2025-10-02T15:59:33.0845642Z CC [M] net/vmw_vsock/diag.o
2025-10-02T15:59:33.5300651Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gm107.o
2025-10-02T15:59:33.7333422Z CC [M] drivers/net/dsa/mv88e6xxx/port_hidden.o
2025-10-02T15:59:34.0435169Z CC [M] drivers/scsi/mpt3sas/mpt3sas_trigger_diag.o
2025-10-02T15:59:34.3979712Z AR drivers/net/ethernet/alteon/built-in.a
2025-10-02T15:59:34.4084393Z CC [M] drivers/net/ethernet/alteon/acenic.o
2025-10-02T15:59:34.4134484Z CC [M] net/vmw_vsock/vmci_transport.o
2025-10-02T15:59:34.5312791Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gm200.o
2025-10-02T15:59:34.8200328Z CC [M] drivers/net/dsa/mv88e6xxx/serdes.o
2025-10-02T15:59:34.9948087Z CC [M] drivers/scsi/mpt3sas/mpt3sas_warpdrive.o
2025-10-02T15:59:35.5506413Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gp100.o
2025-10-02T15:59:35.9553248Z CC [M] drivers/scsi/mpt3sas/mpt3sas_debugfs.o
2025-10-02T15:59:36.1435640Z CC [M] net/vmw_vsock/vmci_transport_notify.o
2025-10-02T15:59:36.3358787Z CC [M] drivers/net/dsa/mv88e6xxx/smi.o
2025-10-02T15:59:36.6119251Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gp102.o
2025-10-02T15:59:36.7697387Z LD [M] drivers/scsi/mpt3sas/mpt3sas.o
2025-10-02T15:59:36.7800276Z CC [M] drivers/net/ethernet/amazon/ena/ena_netdev.o
2025-10-02T15:59:36.9061197Z CC [M] drivers/scsi/ufs/cdns-pltfrm.o
2025-10-02T15:59:37.4305445Z CC [M] net/vmw_vsock/vmci_transport_notify_qstate.o
2025-10-02T15:59:37.4938122Z CC [M] drivers/net/dsa/mv88e6xxx/trace.o
2025-10-02T15:59:37.6018766Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/gv100.o
2025-10-02T15:59:37.7837335Z CC [M] drivers/scsi/ufs/ufshcd.o
2025-10-02T15:59:38.3985019Z CC [M] drivers/net/dsa/mv88e6xxx/global2.o
2025-10-02T15:59:38.4498645Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/ce/tu102.o
2025-10-02T15:59:38.5345799Z CC [M] net/vmw_vsock/virtio_transport.o
2025-10-02T15:59:39.4192708Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/cipher/g84.o
2025-10-02T15:59:39.8138442Z CC [M] net/vmw_vsock/virtio_transport_common.o
2025-10-02T15:59:39.9713703Z CC [M] drivers/net/dsa/mv88e6xxx/global2_avb.o
2025-10-02T15:59:40.3722766Z CC [M] drivers/net/ethernet/amazon/ena/ena_com.o
2025-10-02T15:59:40.4968546Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/acpi.o
2025-10-02T15:59:41.2100927Z CC [M] drivers/net/dsa/mv88e6xxx/global2_scratch.o
2025-10-02T15:59:41.3728950Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/base.o
2025-10-02T15:59:41.8708268Z CC [M] net/vmw_vsock/hyperv_transport.o
2025-10-02T15:59:42.1957547Z CC [M] drivers/net/ethernet/amazon/ena/ena_eth_com.o
2025-10-02T15:59:42.4890433Z CC [M] drivers/net/dsa/mv88e6xxx/hwtstamp.o
2025-10-02T15:59:43.2711286Z CC [M] drivers/net/ethernet/amazon/ena/ena_ethtool.o
2025-10-02T15:59:43.2748246Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/ctrl.o
2025-10-02T15:59:43.3962519Z CC [M] net/vmw_vsock/vsock_loopback.o
2025-10-02T15:59:43.6004721Z CC [M] drivers/scsi/ufs/ufs-sysfs.o
2025-10-02T15:59:44.0936824Z CC [M] drivers/net/dsa/mv88e6xxx/ptp.o
2025-10-02T15:59:44.2184462Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/pci.o
2025-10-02T15:59:44.5180635Z LD [M] net/vmw_vsock/vsock.o
2025-10-02T15:59:44.5380043Z LD [M] net/vmw_vsock/vsock_diag.o
2025-10-02T15:59:44.5518701Z LD [M] net/vmw_vsock/vmw_vsock_vmci_transport.o
2025-10-02T15:59:44.5731253Z LD [M] net/vmw_vsock/vmw_vsock_virtio_transport.o
2025-10-02T15:59:44.5872676Z LD [M] net/vmw_vsock/vmw_vsock_virtio_transport_common.o
2025-10-02T15:59:44.6030530Z LD [M] net/vmw_vsock/hv_sock.o
2025-10-02T15:59:44.6791418Z CC [M] net/nsh/nsh.o
2025-10-02T15:59:44.9407627Z LD [M] drivers/net/ethernet/amazon/ena/ena.o
2025-10-02T15:59:45.0290359Z AR drivers/net/ethernet/amazon/built-in.a
2025-10-02T15:59:45.1343949Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-main.o
2025-10-02T15:59:45.3389034Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/tegra.o
2025-10-02T15:59:45.4151089Z LD [M] drivers/net/dsa/mv88e6xxx/mv88e6xxx.o
2025-10-02T15:59:45.5103098Z AR drivers/net/dsa/ocelot/built-in.a
2025-10-02T15:59:45.5248438Z CC [M] drivers/net/dsa/ocelot/felix.o
2025-10-02T15:59:45.5990075Z CC [M] drivers/scsi/ufs/ufs_bsg.o
2025-10-02T15:59:45.6113131Z CC [M] net/hsr/hsr_main.o
2025-10-02T15:59:46.1522205Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/device/user.o
2025-10-02T15:59:46.2879123Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-drv.o
2025-10-02T15:59:46.5602191Z CC [M] drivers/scsi/ufs/ufshcd-crypto.o
2025-10-02T15:59:46.5834138Z CC [M] net/hsr/hsr_framereg.o
2025-10-02T15:59:46.9625701Z CC [M] drivers/net/dsa/ocelot/seville_vsc9953.o
2025-10-02T15:59:47.3799884Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/base.o
2025-10-02T15:59:47.3923128Z CC [M] drivers/scsi/ufs/ufshcd-pci.o
2025-10-02T15:59:47.8396254Z CC [M] net/hsr/hsr_device.o
2025-10-02T15:59:48.2567864Z CC [M] drivers/scsi/ufs/ufshcd-pltfrm.o
2025-10-02T15:59:48.2690198Z LD [M] drivers/net/dsa/ocelot/mscc_seville.o
2025-10-02T15:59:48.3196018Z AR drivers/net/dsa/qca/built-in.a
2025-10-02T15:59:48.3305550Z CC [M] drivers/net/dsa/qca/ar9331.o
2025-10-02T15:59:48.7406806Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/nv04.o
2025-10-02T15:59:49.1298265Z CC [M] net/hsr/hsr_netlink.o
2025-10-02T15:59:49.1465832Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-dev.o
2025-10-02T15:59:49.2670106Z LD [M] drivers/scsi/ufs/ufshcd-core.o
2025-10-02T15:59:49.4182894Z CC [M] drivers/scsi/mvsas/mv_init.o
2025-10-02T15:59:49.4959094Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/nv50.o
2025-10-02T15:59:49.7422428Z AR drivers/net/dsa/sja1105/built-in.a
2025-10-02T15:59:49.7625838Z CC [M] drivers/net/dsa/sja1105/sja1105_spi.o
2025-10-02T15:59:50.2839081Z CC [M] net/hsr/hsr_slave.o
2025-10-02T15:59:50.6293685Z CC [M] drivers/scsi/mvsas/mv_sas.o
2025-10-02T15:59:50.9461248Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/g84.o
2025-10-02T15:59:51.2730172Z CC [M] net/hsr/hsr_forward.o
2025-10-02T15:59:51.3805276Z CC [M] drivers/net/dsa/sja1105/sja1105_main.o
2025-10-02T15:59:51.8289308Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/g94.o
2025-10-02T15:59:52.2189342Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-desc.o
2025-10-02T15:59:52.5040726Z CC [M] net/hsr/hsr_debugfs.o
2025-10-02T15:59:52.5419928Z CC [M] drivers/scsi/mvsas/mv_64xx.o
2025-10-02T15:59:52.6764967Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gt200.o
2025-10-02T15:59:53.4128278Z LD [M] net/hsr/hsr.o
2025-10-02T15:59:53.5389765Z CC [M] net/qrtr/af_qrtr.o
2025-10-02T15:59:53.6504463Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp77.o
2025-10-02T15:59:53.6703119Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-ethtool.o
2025-10-02T15:59:53.9734530Z CC [M] drivers/scsi/mvsas/mv_94xx.o
2025-10-02T15:59:54.1660778Z CC [M] drivers/net/dsa/sja1105/sja1105_flower.o
2025-10-02T15:59:54.6068365Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gt215.o
2025-10-02T15:59:54.8768811Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-mdio.o
2025-10-02T15:59:55.1102669Z CC [M] net/qrtr/ns.o
2025-10-02T15:59:55.5092830Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/mcp89.o
2025-10-02T15:59:55.8326712Z CC [M] drivers/net/dsa/sja1105/sja1105_ethtool.o
2025-10-02T15:59:55.8973953Z LD [M] drivers/scsi/mvsas/mvsas.o
2025-10-02T15:59:56.0512701Z CC [M] drivers/scsi/cxgbi/cxgb3i/cxgb3i.o
2025-10-02T15:59:56.3991259Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gf119.o
2025-10-02T15:59:56.4612601Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-ptp.o
2025-10-02T15:59:56.8699952Z CC [M] net/qrtr/smd.o
2025-10-02T15:59:57.3541345Z CC [M] drivers/net/dsa/sja1105/sja1105_devlink.o
2025-10-02T15:59:57.4329761Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gk104.o
2025-10-02T15:59:57.5408172Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-i2c.o
2025-10-02T15:59:57.6126592Z CC [M] net/qrtr/tun.o
2025-10-02T15:59:58.2546134Z CC [M] drivers/scsi/cxgbi/cxgb4i/cxgb4i.o
2025-10-02T15:59:58.4128344Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gk110.o
2025-10-02T15:59:58.4524655Z CC [M] net/qrtr/mhi.o
2025-10-02T15:59:58.5903895Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-phy-v1.o
2025-10-02T15:59:58.6077773Z CC [M] drivers/net/dsa/sja1105/sja1105_clocking.o
2025-10-02T15:59:59.4442415Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gm107.o
2025-10-02T15:59:59.5490230Z LD [M] net/qrtr/qrtr.o
2025-10-02T15:59:59.5883433Z LD [M] net/qrtr/qrtr-smd.o
2025-10-02T15:59:59.6136223Z LD [M] net/qrtr/qrtr-tun.o
2025-10-02T15:59:59.6379818Z LD [M] net/qrtr/qrtr-mhi.o
2025-10-02T15:59:59.7266712Z CC net/devres.o
2025-10-02T15:59:59.7858949Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-phy-v2.o
2025-10-02T16:00:00.0648539Z CC [M] drivers/net/dsa/sja1105/sja1105_static_config.o
2025-10-02T16:00:00.5727842Z CC net/socket.o
2025-10-02T16:00:00.5753773Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gm200.o
2025-10-02T16:00:00.7864343Z CC [M] drivers/net/dsa/sja1105/sja1105_dynamic_config.o
2025-10-02T16:00:00.9601130Z CC [M] drivers/scsi/cxgbi/libcxgbi.o
2025-10-02T16:00:01.6012610Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gp100.o
2025-10-02T16:00:01.8782527Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-platform.o
2025-10-02T16:00:02.3021867Z CC [M] drivers/net/dsa/sja1105/sja1105_ptp.o
2025-10-02T16:00:02.6520535Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gp102.o
2025-10-02T16:00:02.9273065Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-pci.o
2025-10-02T16:00:03.4371369Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/gv100.o
2025-10-02T16:00:03.6555658Z CC net/compat.o
2025-10-02T16:00:04.0437214Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-dcb.o
2025-10-02T16:00:04.1119655Z CC [M] drivers/net/dsa/sja1105/sja1105_tas.o
2025-10-02T16:00:04.5362959Z CC [M] drivers/scsi/bnx2i/bnx2i_init.o
2025-10-02T16:00:04.5947566Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/tu102.o
2025-10-02T16:00:04.8625726Z CC [M] drivers/net/ethernet/amd/xgbe/xgbe-debugfs.o
2025-10-02T16:00:04.8932512Z CC net/sysctl_net.o
2025-10-02T16:00:05.7418364Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/vga.o
2025-10-02T16:00:05.8179225Z CC [M] drivers/net/dsa/sja1105/sja1105_vl.o
2025-10-02T16:00:05.8781610Z CC [M] drivers/scsi/bnx2i/bnx2i_hwi.o
2025-10-02T16:00:06.0041979Z LD [M] drivers/net/ethernet/amd/xgbe/amd-xgbe.o
2025-10-02T16:00:06.1102367Z AR drivers/net/ethernet/amd/built-in.a
2025-10-02T16:00:06.1291081Z CC [M] drivers/net/ethernet/amd/amd8111e.o
2025-10-02T16:00:06.2167960Z AR net/built-in.a
2025-10-02T16:00:06.2825908Z CC [M] drivers/scsi/bnx2i/bnx2i_iscsi.o
2025-10-02T16:00:06.7474769Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/head.o
2025-10-02T16:00:07.5276195Z LD [M] drivers/net/dsa/sja1105/sja1105.o
2025-10-02T16:00:07.6517994Z CC [M] drivers/net/dsa/bcm_sf2.o
2025-10-02T16:00:07.6730357Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/headnv04.o
2025-10-02T16:00:07.7273303Z CC [M] drivers/net/dsa/bcm_sf2_cfp.o
2025-10-02T16:00:07.8541941Z CC [M] drivers/net/ethernet/amd/nmclan_cs.o
2025-10-02T16:00:08.1679260Z CC [M] drivers/scsi/bnx2i/bnx2i_sysfs.o
2025-10-02T16:00:08.5747137Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/headnv50.o
2025-10-02T16:00:09.0870856Z CC [M] drivers/gpu/drm/vboxvideo/hgsmi_base.o
2025-10-02T16:00:09.1377639Z CC [M] drivers/net/ethernet/amd/pcnet32.o
2025-10-02T16:00:09.1974921Z LD [M] drivers/scsi/bnx2i/bnx2i.o
2025-10-02T16:00:09.3088279Z CC [M] drivers/scsi/qedi/qedi_main.o
2025-10-02T16:00:09.5347374Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/headgf119.o
2025-10-02T16:00:09.9284561Z CC [M] drivers/gpu/drm/vboxvideo/modesetting.o
2025-10-02T16:00:10.0182415Z CC [M] drivers/net/dsa/dsa_loop.o
2025-10-02T16:00:10.5528050Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/headgv100.o
2025-10-02T16:00:10.6620224Z CC [M] drivers/gpu/drm/vboxvideo/vbva_base.o
2025-10-02T16:00:11.4678792Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.o
2025-10-02T16:00:11.4796291Z CC [M] drivers/net/dsa/dsa_loop_bdinfo.o
2025-10-02T16:00:11.5592439Z CC [M] drivers/gpu/drm/vboxvideo/vbox_drv.o
2025-10-02T16:00:11.5746787Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_main.o
2025-10-02T16:00:11.7595079Z CC [M] drivers/scsi/qedi/qedi_iscsi.o
2025-10-02T16:00:12.4001442Z CC [M] drivers/gpu/drm/vboxvideo/vbox_hgsmi.o
2025-10-02T16:00:12.4030025Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dacnv50.o
2025-10-02T16:00:12.4989200Z CC [M] drivers/net/dsa/mt7530.o
2025-10-02T16:00:12.8534848Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_nic.o
2025-10-02T16:00:13.1756156Z CC [M] drivers/gpu/drm/vboxvideo/vbox_irq.o
2025-10-02T16:00:13.4365369Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dacgf119.o
2025-10-02T16:00:13.9074297Z CC [M] drivers/scsi/qedi/qedi_fw.o
2025-10-02T16:00:14.1043718Z CC [M] drivers/gpu/drm/vboxvideo/vbox_main.o
2025-10-02T16:00:14.3217692Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/piornv50.o
2025-10-02T16:00:14.5329925Z CC [M] drivers/net/dsa/mv88e6060.o
2025-10-02T16:00:14.8432710Z CC [M] drivers/gpu/drm/vboxvideo/vbox_mode.o
2025-10-02T16:00:15.0226199Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_pci_func.o
2025-10-02T16:00:15.3884651Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sornv50.o
2025-10-02T16:00:15.6810212Z CC [M] drivers/net/dsa/qca8k.o
2025-10-02T16:00:16.0247207Z CC [M] drivers/scsi/qedi/qedi_sysfs.o
2025-10-02T16:00:16.2426072Z CC [M] drivers/gpu/drm/vboxvideo/vbox_ttm.o
2025-10-02T16:00:16.3418550Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg84.o
2025-10-02T16:00:16.3749725Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_vec.o
2025-10-02T16:00:16.9275687Z LD [M] drivers/gpu/drm/vboxvideo/vboxvideo.o
2025-10-02T16:00:16.9399994Z CC [M] drivers/scsi/qedi/qedi_dbg.o
2025-10-02T16:00:16.9881081Z AR drivers/net/ethernet/arc/built-in.a
2025-10-02T16:00:17.0232885Z AR drivers/net/hamradio/built-in.a
2025-10-02T16:00:17.0345264Z CC [M] drivers/net/hamradio/mkiss.o
2025-10-02T16:00:17.3081020Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_ring.o
2025-10-02T16:00:17.4797882Z CC [M] drivers/net/dsa/realtek-smi-core.o
2025-10-02T16:00:17.5480411Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.o
2025-10-02T16:00:18.1486199Z CC [M] drivers/scsi/qedi/qedi_fw_api.o
2025-10-02T16:00:18.5214192Z CC [M] drivers/net/hamradio/6pack.o
2025-10-02T16:00:18.5904117Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_hw_utils.o
2025-10-02T16:00:18.6961280Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sormcp77.o
2025-10-02T16:00:18.8944746Z CC [M] drivers/net/dsa/rtl8366.o
2025-10-02T16:00:19.3438797Z CC [M] drivers/scsi/qedi/qedi_debugfs.o
2025-10-02T16:00:19.4652628Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgt215.o
2025-10-02T16:00:19.6579763Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_ethtool.o
2025-10-02T16:00:20.1804789Z CC [M] drivers/net/hamradio/yam.o
2025-10-02T16:00:20.3222281Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sormcp89.o
2025-10-02T16:00:20.3370811Z CC [M] drivers/net/dsa/rtl8366rb.o
2025-10-02T16:00:20.3997664Z LD [M] drivers/scsi/qedi/qedi.o
2025-10-02T16:00:20.4684185Z CC [M] drivers/scsi/be2iscsi/be_iscsi.o
2025-10-02T16:00:20.9531538Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.o
2025-10-02T16:00:21.3198361Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgf119.o
2025-10-02T16:00:21.6620891Z CC [M] drivers/net/hamradio/bpqether.o
2025-10-02T16:00:21.8886544Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_filters.o
2025-10-02T16:00:21.9020475Z CC [M] drivers/net/dsa/lan9303-core.o
2025-10-02T16:00:22.1767683Z CC [M] drivers/scsi/be2iscsi/be_main.o
2025-10-02T16:00:22.4440417Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgk104.o
2025-10-02T16:00:23.1211212Z CC [M] drivers/net/hamradio/baycom_ser_fdx.o
2025-10-02T16:00:23.1922861Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_phy.o
2025-10-02T16:00:23.3405665Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgm107.o
2025-10-02T16:00:23.8488580Z CC [M] drivers/net/dsa/lan9303_i2c.o
2025-10-02T16:00:24.1773913Z CC [M] drivers/net/hamradio/hdlcdrv.o
2025-10-02T16:00:24.2307644Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_a0.o
2025-10-02T16:00:24.2371229Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgm200.o
2025-10-02T16:00:25.0672936Z CC [M] drivers/net/dsa/lan9303_mdio.o
2025-10-02T16:00:25.2220391Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgp100.o
2025-10-02T16:00:25.5996667Z CC [M] drivers/net/hamradio/baycom_ser_hdx.o
2025-10-02T16:00:25.7125820Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.o
2025-10-02T16:00:26.0085744Z CC [M] drivers/scsi/be2iscsi/be_mgmt.o
2025-10-02T16:00:26.1583779Z CC [M] drivers/net/dsa/vitesse-vsc73xx-core.o
2025-10-02T16:00:26.1757342Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgv100.o
2025-10-02T16:00:26.8645265Z CC [M] drivers/net/hamradio/baycom_par.o
2025-10-02T16:00:27.1464536Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/sortu102.o
2025-10-02T16:00:27.3593421Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils.o
2025-10-02T16:00:27.8745318Z CC [M] drivers/net/dsa/vitesse-vsc73xx-platform.o
2025-10-02T16:00:27.9183426Z CC [M] drivers/scsi/be2iscsi/be_cmds.o
2025-10-02T16:00:27.9492840Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/outp.o
2025-10-02T16:00:28.1093059Z CC [M] drivers/scsi/esas2r/esas2r_log.o
2025-10-02T16:00:28.6725639Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_utils_fw2x.o
2025-10-02T16:00:28.8546301Z CC [M] drivers/net/dsa/vitesse-vsc73xx-spi.o
2025-10-02T16:00:28.9464996Z CC [M] drivers/scsi/esas2r/esas2r_disc.o
2025-10-02T16:00:28.9926379Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dp.o
2025-10-02T16:00:29.7562093Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_llh.o
2025-10-02T16:00:29.8246976Z LD [M] drivers/net/dsa/bcm-sf2.o
2025-10-02T16:00:29.8486724Z LD [M] drivers/net/dsa/realtek-smi.o
2025-10-02T16:00:29.8881775Z AR drivers/net/dsa/built-in.a
2025-10-02T16:00:29.9151270Z LD [M] drivers/scsi/be2iscsi/be2iscsi.o
2025-10-02T16:00:29.9973869Z AR drivers/net/ethernet/aquantia/built-in.a
2025-10-02T16:00:30.0245853Z CC drivers/gpu/drm/drm_mipi_dsi.o
2025-10-02T16:00:30.0699295Z CC [M] drivers/net/ethernet/atheros/atlx/atl1.o
2025-10-02T16:00:30.1901648Z CC [M] drivers/scsi/esas2r/esas2r_flash.o
2025-10-02T16:00:30.4830477Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagt215.o
2025-10-02T16:00:30.9144378Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2.o
2025-10-02T16:00:31.2930675Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagf119.o
2025-10-02T16:00:31.4915519Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils.o
2025-10-02T16:00:31.5351062Z CC [M] drivers/scsi/esas2r/esas2r_init.o
2025-10-02T16:00:32.1861176Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagv100.o
2025-10-02T16:00:32.2716169Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmi.o
2025-10-02T16:00:32.4225756Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_utils_fw.o
2025-10-02T16:00:32.7414793Z CC [M] drivers/net/ethernet/atheros/atlx/atl2.o
2025-10-02T16:00:33.1739956Z CC [M] drivers/scsi/esas2r/esas2r_int.o
2025-10-02T16:00:33.2018268Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmig84.o
2025-10-02T16:00:33.2961875Z AR drivers/net/wireless/admtek/built-in.a
2025-10-02T16:00:33.3194404Z CC [M] drivers/net/wireless/admtek/adm8211.o
2025-10-02T16:00:33.5989842Z CC [M] drivers/net/ethernet/aquantia/atlantic/hw_atl2/hw_atl2_llh.o
2025-10-02T16:00:34.0901214Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigt215.o
2025-10-02T16:00:34.4242810Z CC [M] drivers/scsi/esas2r/esas2r_io.o
2025-10-02T16:00:34.7010776Z CC [M] drivers/net/ethernet/aquantia/atlantic/macsec/macsec_api.o
2025-10-02T16:00:34.8497898Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigf119.o
2025-10-02T16:00:35.0669131Z CC [M] drivers/net/ethernet/atheros/atl1e/atl1e_main.o
2025-10-02T16:00:35.5223435Z CC [M] drivers/scsi/esas2r/esas2r_ioctl.o
2025-10-02T16:00:35.9020707Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigk104.o
2025-10-02T16:00:36.1081378Z CC [M] drivers/net/wireless/ath/ath5k/caps.o
2025-10-02T16:00:36.7193058Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_ptp.o
2025-10-02T16:00:36.9446129Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigm200.o
2025-10-02T16:00:36.9771209Z CC [M] drivers/scsi/esas2r/esas2r_targdb.o
2025-10-02T16:00:37.3488663Z CC [M] drivers/net/wireless/ath/ath5k/initvals.o
2025-10-02T16:00:37.3678609Z CC [M] drivers/net/ethernet/atheros/atl1e/atl1e_hw.o
2025-10-02T16:00:37.7686231Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/hdmigv100.o
2025-10-02T16:00:37.9615551Z CC [M] drivers/scsi/esas2r/esas2r_vda.o
2025-10-02T16:00:38.1851311Z CC [M] drivers/net/ethernet/aquantia/atlantic/aq_macsec.o
2025-10-02T16:00:38.6946014Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/conn.o
2025-10-02T16:00:38.7195951Z CC [M] drivers/net/ethernet/atheros/atl1e/atl1e_ethtool.o
2025-10-02T16:00:38.8075040Z CC [M] drivers/scsi/esas2r/esas2r_main.o
2025-10-02T16:00:39.0438765Z CC [M] drivers/net/wireless/ath/ath5k/eeprom.o
2025-10-02T16:00:39.6650097Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootnv04.o
2025-10-02T16:00:40.0673652Z CC [M] drivers/net/ethernet/atheros/atl1e/atl1e_param.o
2025-10-02T16:00:40.2476559Z LD [M] drivers/scsi/esas2r/esas2r.o
2025-10-02T16:00:40.3345302Z CC drivers/scsi/scsi.o
2025-10-02T16:00:40.3744165Z LD [M] drivers/net/ethernet/aquantia/atlantic/atlantic.o
2025-10-02T16:00:40.5532456Z CC [M] drivers/net/wireless/ath/ath9k/beacon.o
2025-10-02T16:00:40.5915622Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootnv50.o
2025-10-02T16:00:41.1664139Z LD [M] drivers/net/ethernet/atheros/atl1e/atl1e.o
2025-10-02T16:00:41.2771231Z CC [M] drivers/net/ethernet/atheros/atl1c/atl1c_main.o
2025-10-02T16:00:41.5116817Z CC [M] drivers/net/wireless/ath/ath5k/gpio.o
2025-10-02T16:00:41.6546397Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootg84.o
2025-10-02T16:00:41.8860824Z CC drivers/scsi/hosts.o
2025-10-02T16:00:41.9581817Z CC [M] drivers/net/wireless/ath/ath9k/gpio.o
2025-10-02T16:00:42.5247378Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootg94.o
2025-10-02T16:00:42.7844566Z CC [M] drivers/net/wireless/ath/ath5k/desc.o
2025-10-02T16:00:43.0752656Z CC drivers/scsi/scsi_ioctl.o
2025-10-02T16:00:43.4175826Z CC [M] drivers/net/wireless/ath/ath9k/init.o
2025-10-02T16:00:43.5724421Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgt200.o
2025-10-02T16:00:43.8956509Z CC drivers/scsi/scsicam.o
2025-10-02T16:00:43.9064466Z CC [M] drivers/net/ethernet/atheros/atl1c/atl1c_hw.o
2025-10-02T16:00:44.0578529Z CC [M] drivers/net/wireless/ath/ath5k/dma.o
2025-10-02T16:00:44.5210123Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgt215.o
2025-10-02T16:00:44.6244143Z CC drivers/scsi/scsi_error.o
2025-10-02T16:00:45.0039313Z CC [M] drivers/net/wireless/ath/ath9k/main.o
2025-10-02T16:00:45.3974150Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgf119.o
2025-10-02T16:00:45.5366902Z CC [M] drivers/net/ethernet/atheros/atl1c/atl1c_ethtool.o
2025-10-02T16:00:45.8350738Z CC [M] drivers/net/wireless/ath/ath5k/qcu.o
2025-10-02T16:00:46.3243407Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgk104.o
2025-10-02T16:00:46.4810462Z CC drivers/scsi/scsi_lib.o
2025-10-02T16:00:47.0966297Z LD [M] drivers/net/ethernet/atheros/atl1c/atl1c.o
2025-10-02T16:00:47.1489195Z CC [M] drivers/net/ethernet/atheros/alx/main.o
2025-10-02T16:00:47.2617053Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgk110.o
2025-10-02T16:00:47.3259127Z CC [M] drivers/net/wireless/ath/ath9k/recv.o
2025-10-02T16:00:47.3751336Z CC [M] drivers/net/wireless/ath/ath5k/pcu.o
2025-10-02T16:00:48.0990372Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgm107.o
2025-10-02T16:00:48.8229383Z CC drivers/scsi/constants.o
2025-10-02T16:00:48.9008167Z CC [M] drivers/net/wireless/ath/ath5k/phy.o
2025-10-02T16:00:48.9218398Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgm200.o
2025-10-02T16:00:49.1919748Z CC [M] drivers/net/wireless/ath/ath9k/xmit.o
2025-10-02T16:00:49.4394615Z CC [M] drivers/net/ethernet/atheros/alx/ethtool.o
2025-10-02T16:00:49.5858072Z CC drivers/scsi/scsi_lib_dma.o
2025-10-02T16:00:49.7116583Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgp100.o
2025-10-02T16:00:50.3400634Z CC drivers/scsi/scsi_scan.o
2025-10-02T16:00:50.4980962Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgp102.o
2025-10-02T16:00:50.6566422Z CC [M] drivers/net/ethernet/atheros/alx/hw.o
2025-10-02T16:00:51.2429685Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/rootgv100.o
2025-10-02T16:00:51.8125352Z CC [M] drivers/net/wireless/ath/ath5k/reset.o
2025-10-02T16:00:52.0116170Z LD [M] drivers/net/ethernet/atheros/alx/alx.o
2025-10-02T16:00:52.0336681Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/roottu102.o
2025-10-02T16:00:52.0497031Z AR drivers/net/ethernet/atheros/built-in.a
2025-10-02T16:00:52.0986156Z AR drivers/net/ethernet/aurora/built-in.a
2025-10-02T16:00:52.1122033Z CC [M] drivers/net/ethernet/aurora/nb8800.o
2025-10-02T16:00:52.1748263Z GEN drivers/scsi/scsi_devinfo_tbl.c
2025-10-02T16:00:52.2004563Z CC drivers/scsi/scsi_devinfo.o
2025-10-02T16:00:52.3526534Z CC [M] drivers/net/wireless/ath/ath9k/link.o
2025-10-02T16:00:52.9037118Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/capsgv100.o
2025-10-02T16:00:53.2896225Z CC drivers/scsi/scsi_netlink.o
2025-10-02T16:00:53.4554132Z CC [M] drivers/net/wireless/ath/ath5k/attach.o
2025-10-02T16:00:53.7143577Z CC [M] drivers/net/wireless/ath/ath9k/antenna.o
2025-10-02T16:00:53.7463714Z AR drivers/net/ethernet/cadence/built-in.a
2025-10-02T16:00:53.7732249Z CC [M] drivers/net/ethernet/cadence/macb_main.o
2025-10-02T16:00:53.7867960Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/channv50.o
2025-10-02T16:00:54.4602532Z CC drivers/scsi/scsi_sysctl.o
2025-10-02T16:00:54.7128274Z CC [M] drivers/net/wireless/ath/ath5k/base.o
2025-10-02T16:00:54.8950120Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/changf119.o
2025-10-02T16:00:54.9960045Z CC drivers/scsi/scsi_proc.o
2025-10-02T16:00:55.3143956Z CC [M] drivers/net/wireless/ath/ath9k/channel.o
2025-10-02T16:00:55.8118799Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/changv100.o
2025-10-02T16:00:55.8874170Z CC drivers/scsi/scsi_debugfs.o
2025-10-02T16:00:56.5774694Z CC drivers/scsi/scsi_trace.o
2025-10-02T16:00:56.9599287Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacnv50.o
2025-10-02T16:00:57.0658568Z CC [M] drivers/net/ethernet/cadence/macb_ptp.o
2025-10-02T16:00:57.2169839Z CC drivers/scsi/scsi_logging.o
2025-10-02T16:00:57.2522728Z CC [M] drivers/net/wireless/ath/ath9k/mci.o
2025-10-02T16:00:57.8230677Z CC [M] drivers/net/wireless/ath/ath5k/led.o
2025-10-02T16:00:58.0636586Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgf119.o
2025-10-02T16:00:58.0936649Z CC drivers/scsi/scsi_pm.o
2025-10-02T16:00:58.3563956Z CC [M] drivers/net/ethernet/cadence/macb_pci.o
2025-10-02T16:00:58.8407829Z CC [M] drivers/net/wireless/ath/ath9k/pci.o
2025-10-02T16:00:58.9826676Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgp102.o
2025-10-02T16:00:59.0137239Z CC drivers/scsi/scsi_dh.o
2025-10-02T16:00:59.1285361Z CC [M] drivers/net/wireless/ath/ath5k/rfkill.o
2025-10-02T16:00:59.3131531Z LD [M] drivers/net/ethernet/cadence/macb.o
2025-10-02T16:00:59.4559164Z CC [M] drivers/net/ethernet/broadcom/genet/bcmgenet.o
2025-10-02T16:00:59.7144245Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/dmacgv100.o
2025-10-02T16:00:59.8397602Z CC drivers/scsi/scsi_common.o
2025-10-02T16:01:00.1307256Z CC drivers/scsi/sd.o
2025-10-02T16:01:00.1920927Z CC [M] drivers/net/wireless/ath/ath5k/ani.o
2025-10-02T16:01:00.3789374Z CC [M] drivers/net/wireless/ath/ath9k/ahb.o
2025-10-02T16:01:00.4752508Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/basenv50.o
2025-10-02T16:01:01.4335380Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/baseg84.o
2025-10-02T16:01:01.6495549Z CC [M] drivers/net/wireless/ath/ath5k/sysfs.o
2025-10-02T16:01:01.8111243Z CC [M] drivers/net/wireless/ath/ath9k/wow.o
2025-10-02T16:01:02.2719213Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/basegf119.o
2025-10-02T16:01:02.7797156Z CC [M] drivers/net/ethernet/broadcom/genet/bcmmii.o
2025-10-02T16:01:02.8650700Z CC drivers/scsi/sd_dif.o
2025-10-02T16:01:02.9428701Z CC [M] drivers/net/wireless/ath/ath5k/mac80211-ops.o
2025-10-02T16:01:03.1138646Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/basegp102.o
2025-10-02T16:01:03.2393572Z CC [M] drivers/net/wireless/ath/ath9k/rng.o
2025-10-02T16:01:03.5187023Z CC drivers/scsi/sd_zbc.o
2025-10-02T16:01:03.9525980Z CC [M] drivers/net/ethernet/broadcom/genet/bcmgenet_wol.o
2025-10-02T16:01:03.9989094Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/corenv50.o
2025-10-02T16:01:04.4758457Z CC [M] drivers/net/wireless/ath/ath5k/debug.o
2025-10-02T16:01:04.6254774Z CC [M] drivers/scsi/raid_class.o
2025-10-02T16:01:04.8601134Z CC [M] drivers/net/wireless/ath/ath9k/debug.o
2025-10-02T16:01:04.8740576Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coreg84.o
2025-10-02T16:01:05.0858687Z LD [M] drivers/net/ethernet/broadcom/genet/genet.o
2025-10-02T16:01:05.2061225Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.o
2025-10-02T16:01:05.3318685Z CC [M] drivers/scsi/scsi_transport_spi.o
2025-10-02T16:01:05.8469718Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coreg94.o
2025-10-02T16:01:06.2909997Z CC [M] drivers/net/wireless/ath/ath5k/pci.o
2025-10-02T16:01:06.7308541Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coregf119.o
2025-10-02T16:01:06.7931355Z CC [M] drivers/net/wireless/ath/ath9k/debug_sta.o
2025-10-02T16:01:07.2815783Z CC [M] drivers/scsi/scsi_transport_fc.o
2025-10-02T16:01:07.6313822Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coregk104.o
2025-10-02T16:01:07.6653093Z LD [M] drivers/net/wireless/ath/ath5k/ath5k.o
2025-10-02T16:01:07.8652567Z AR drivers/net/wireless/atmel/built-in.a
2025-10-02T16:01:07.8894640Z CC [M] drivers/net/wireless/atmel/atmel.o
2025-10-02T16:01:08.4475581Z CC [M] drivers/net/wireless/ath/ath9k/ar9002_hw.o
2025-10-02T16:01:08.5205536Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coregp102.o
2025-10-02T16:01:09.5960799Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/coregv100.o
2025-10-02T16:01:09.7796145Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_hw.o
2025-10-02T16:01:10.2324478Z CC [M] drivers/scsi/scsi_transport_iscsi.o
2025-10-02T16:01:10.5825481Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlynv50.o
2025-10-02T16:01:10.8521175Z CC [M] drivers/net/wireless/atmel/atmel_pci.o
2025-10-02T16:01:11.6017590Z CC [M] drivers/net/wireless/ath/ath9k/hw.o
2025-10-02T16:01:11.6271284Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlyg84.o
2025-10-02T16:01:11.6831261Z CC [M] drivers/net/wireless/atmel/atmel_cs.o
2025-10-02T16:01:12.5905054Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlygt200.o
2025-10-02T16:01:12.9145762Z CC [M] drivers/net/wireless/atmel/at76c50x-usb.o
2025-10-02T16:01:13.3473598Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlygf119.o
2025-10-02T16:01:14.3857462Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlygk104.o
2025-10-02T16:01:14.7634453Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_phy.o
2025-10-02T16:01:14.7932514Z CC [M] drivers/scsi/scsi_transport_sas.o
2025-10-02T16:01:15.2810295Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/ovlygp102.o
2025-10-02T16:01:15.4741181Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.o
2025-10-02T16:01:16.3626897Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/wimmgv100.o
2025-10-02T16:01:16.5074278Z CC [M] drivers/scsi/scsi_transport_srp.o
2025-10-02T16:01:16.6516173Z CC [M] drivers/net/wireless/ath/ath9k/ar9002_phy.o
2025-10-02T16:01:17.1203227Z AR drivers/cdrom/built-in.a
2025-10-02T16:01:17.1322182Z CC [M] drivers/cdrom/cdrom.o
2025-10-02T16:01:17.5026307Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/wndwgv100.o
2025-10-02T16:01:17.5936524Z CC [M] drivers/scsi/libiscsi.o
2025-10-02T16:01:18.1591986Z CC [M] drivers/net/wireless/ath/ath9k/ar5008_phy.o
2025-10-02T16:01:18.6049916Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/piocnv50.o
2025-10-02T16:01:19.5852416Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/piocgf119.o
2025-10-02T16:01:19.6527916Z CC [M] drivers/net/wireless/ath/ath9k/ar9002_calib.o
2025-10-02T16:01:19.9293835Z CC drivers/gpu/drm/drm_panel_orientation_quirks.o
2025-10-02T16:01:20.6009940Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/cursnv50.o
2025-10-02T16:01:20.6187151Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt.o
2025-10-02T16:01:20.8187818Z CC [M] drivers/scsi/libiscsi_tcp.o
2025-10-02T16:01:21.3411081Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_calib.o
2025-10-02T16:01:21.4785360Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgf119.o
2025-10-02T16:01:22.4418512Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgp102.o
2025-10-02T16:01:22.4710155Z CC [M] drivers/scsi/iscsi_tcp.o
2025-10-02T16:01:23.4365964Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/cursgv100.o
2025-10-02T16:01:23.5392571Z CC [M] drivers/net/wireless/ath/ath9k/calib.o
2025-10-02T16:01:23.6903803Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.o
2025-10-02T16:01:24.2011343Z CC [M] drivers/scsi/iscsi_boot_sysfs.o
2025-10-02T16:01:24.4467880Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmnv50.o
2025-10-02T16:01:24.8197906Z CC [M] drivers/scsi/advansys.o
2025-10-02T16:01:25.1258353Z CC [M] drivers/net/wireless/ath/ath9k/eeprom.o
2025-10-02T16:01:25.4974995Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgf119.o
2025-10-02T16:01:26.4807867Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/disp/oimmgp102.o
2025-10-02T16:01:26.9150000Z CC [M] drivers/net/wireless/ath/ath9k/eeprom_def.o
2025-10-02T16:01:27.5893377Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/base.o
2025-10-02T16:01:28.6202323Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/nv04.o
2025-10-02T16:01:28.8418200Z CC [M] drivers/net/wireless/ath/ath9k/eeprom_4k.o
2025-10-02T16:01:29.1231275Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_ethtool.o
2025-10-02T16:01:29.2581197Z CC [M] drivers/scsi/BusLogic.o
2025-10-02T16:01:29.4278195Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/nv50.o
2025-10-02T16:01:29.7959982Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.o
2025-10-02T16:01:30.3704489Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/gf100.o
2025-10-02T16:01:30.4781622Z CC [M] drivers/net/wireless/ath/ath9k/eeprom_9287.o
2025-10-02T16:01:31.3071116Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/gf119.o
2025-10-02T16:01:31.7919838Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_ethtool.o
2025-10-02T16:01:32.1865984Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/gv100.o
2025-10-02T16:01:32.3474798Z CC [M] drivers/net/wireless/ath/ath9k/ani.o
2025-10-02T16:01:32.5930078Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_stats.o
2025-10-02T16:01:33.0525646Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/user.o
2025-10-02T16:01:33.6691876Z CC [M] drivers/net/wireless/ath/ath9k/mac.o
2025-10-02T16:01:34.2146758Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usernv04.o
2025-10-02T16:01:34.4398580Z CC [M] drivers/scsi/dpt_i2o.o
2025-10-02T16:01:35.2354526Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usernv50.o
2025-10-02T16:01:35.2862179Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_dcb.o
2025-10-02T16:01:35.4459712Z CC [M] drivers/net/wireless/ath/ath9k/ar9002_mac.o
2025-10-02T16:01:35.4579908Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_dcb.o
2025-10-02T16:01:36.0880228Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usergf100.o
2025-10-02T16:01:36.4350125Z CC [M] drivers/scsi/ips.o
2025-10-02T16:01:37.0467863Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usergf119.o
2025-10-02T16:01:37.1542742Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_mac.o
2025-10-02T16:01:37.2410740Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_ulp.o
2025-10-02T16:01:38.0525029Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_sp.o
2025-10-02T16:01:38.0771633Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/dma/usergv100.o
2025-10-02T16:01:38.5521030Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_eeprom.o
2025-10-02T16:01:38.9446487Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_xdp.o
2025-10-02T16:01:39.0681366Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/base.o
2025-10-02T16:01:39.4018711Z CC [M] drivers/scsi/fdomain.o
2025-10-02T16:01:40.0694892Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv04.o
2025-10-02T16:01:40.3026171Z CC [M] drivers/scsi/fdomain_pci.o
2025-10-02T16:01:40.6139390Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_vfr.o
2025-10-02T16:01:41.1378215Z CC [M] drivers/scsi/qlogicfas408.o
2025-10-02T16:01:41.2380266Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_paprd.o
2025-10-02T16:01:41.2595263Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv10.o
2025-10-02T16:01:42.1584584Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_devlink.o
2025-10-02T16:01:42.2728030Z CC [M] drivers/scsi/qla1280.o
2025-10-02T16:01:42.2871602Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv17.o
2025-10-02T16:01:42.3209754Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_self_test.o
2025-10-02T16:01:43.1503779Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_wow.o
2025-10-02T16:01:43.2758210Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv40.o
2025-10-02T16:01:43.6130185Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_dim.o
2025-10-02T16:01:43.6306531Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_vfpf.o
2025-10-02T16:01:44.0639803Z CC [M] drivers/scsi/dmx3191d.o
2025-10-02T16:01:44.3644877Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/nv50.o
2025-10-02T16:01:44.5820966Z CC [M] drivers/net/wireless/ath/ath9k/btcoex.o
2025-10-02T16:01:44.8190972Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_tc.o
2025-10-02T16:01:45.2190761Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/g84.o
2025-10-02T16:01:45.6991400Z CC [M] drivers/scsi/hpsa.o
2025-10-02T16:01:46.0044156Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_mci.o
2025-10-02T16:01:46.0202117Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.o
2025-10-02T16:01:46.0470443Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gf100.o
2025-10-02T16:01:47.4478351Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk104.o
2025-10-02T16:01:47.7048877Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_debugfs.o
2025-10-02T16:01:47.8661935Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_aic.o
2025-10-02T16:01:49.0314816Z LD [M] drivers/net/ethernet/broadcom/bnxt/bnxt_en.o
2025-10-02T16:01:49.1263865Z LD [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x.o
2025-10-02T16:01:49.1402383Z CC [M] drivers/net/wireless/ath/ath9k/ar9003_rtt.o
2025-10-02T16:01:49.2378792Z AR drivers/net/ethernet/broadcom/built-in.a
2025-10-02T16:01:49.2602517Z CC [M] drivers/net/ethernet/broadcom/b44.o
2025-10-02T16:01:49.3301796Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk110.o
2025-10-02T16:01:49.4229279Z CC [M] drivers/net/wireless/broadcom/b43/main.o
2025-10-02T16:01:50.2904800Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk208.o
2025-10-02T16:01:50.5256108Z CC [M] drivers/net/wireless/ath/ath9k/dynack.o
2025-10-02T16:01:50.9648884Z CC [M] drivers/scsi/dc395x.o
2025-10-02T16:01:51.2191374Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gk20a.o
2025-10-02T16:01:51.4922789Z CC [M] drivers/net/ethernet/broadcom/bnx2.o
2025-10-02T16:01:51.9648009Z CC [M] drivers/net/wireless/ath/ath9k/common.o
2025-10-02T16:01:52.1595674Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gm107.o
2025-10-02T16:01:53.0954856Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gm200.o
2025-10-02T16:01:53.3658517Z CC [M] drivers/net/wireless/ath/ath9k/common-init.o
2025-10-02T16:01:53.5664612Z CC [M] drivers/net/wireless/broadcom/b43/bus.o
2025-10-02T16:01:53.7714540Z CC [M] drivers/scsi/esp_scsi.o
2025-10-02T16:01:53.9287409Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gm20b.o
2025-10-02T16:01:54.6311333Z CC [M] drivers/net/wireless/ath/ath9k/common-beacon.o
2025-10-02T16:01:54.7710425Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gp100.o
2025-10-02T16:01:55.0078567Z CC [M] drivers/net/wireless/broadcom/b43/phy_g.o
2025-10-02T16:01:55.6768898Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gp10b.o
2025-10-02T16:01:55.9280315Z CC [M] drivers/net/wireless/ath/ath9k/common-debug.o
2025-10-02T16:01:56.0695940Z CC [M] drivers/scsi/am53c974.o
2025-10-02T16:01:56.4789201Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gv100.o
2025-10-02T16:01:56.9881620Z CC [M] drivers/scsi/megaraid.o
2025-10-02T16:01:57.0429218Z CC [M] drivers/net/ethernet/broadcom/cnic.o
2025-10-02T16:01:57.3661943Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/tu102.o
2025-10-02T16:01:57.4426518Z CC [M] drivers/net/wireless/ath/ath9k/common-spectral.o
2025-10-02T16:01:57.8298650Z CC [M] drivers/net/wireless/broadcom/b43/tables.o
2025-10-02T16:01:58.3018366Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/chan.o
2025-10-02T16:01:59.1940019Z CC [M] drivers/scsi/atp870u.o
2025-10-02T16:01:59.2822040Z CC [M] drivers/net/wireless/broadcom/b43/lo.o
2025-10-02T16:01:59.3348481Z CC [M] drivers/net/wireless/ath/ath9k/htc_hst.o
2025-10-02T16:01:59.3441520Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/channv50.o
2025-10-02T16:02:00.4134735Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/chang84.o
2025-10-02T16:02:00.6337754Z CC [M] drivers/net/wireless/ath/ath9k/hif_usb.o
2025-10-02T16:02:01.3212198Z CC [M] drivers/scsi/gdth.o
2025-10-02T16:02:01.4611025Z CC [M] drivers/net/wireless/broadcom/b43/wa.o
2025-10-02T16:02:01.5197524Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv04.o
2025-10-02T16:02:01.7573658Z CC [M] drivers/net/ethernet/broadcom/tg3.o
2025-10-02T16:02:02.6246323Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv10.o
2025-10-02T16:02:02.7658231Z CC [M] drivers/net/wireless/broadcom/b43/tables_nphy.o
2025-10-02T16:02:02.8048325Z CC [M] drivers/net/wireless/ath/ath9k/wmi.o
2025-10-02T16:02:03.5809881Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv17.o
2025-10-02T16:02:04.4138042Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_txrx.o
2025-10-02T16:02:04.5666566Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv40.o
2025-10-02T16:02:04.5815034Z CC [M] drivers/net/wireless/broadcom/b43/radio_2055.o
2025-10-02T16:02:04.6664131Z CC [M] drivers/scsi/initio.o
2025-10-02T16:02:05.6023579Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmanv50.o
2025-10-02T16:02:05.9164820Z CC [M] drivers/net/wireless/broadcom/b43/radio_2056.o
2025-10-02T16:02:06.2541448Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_main.o
2025-10-02T16:02:06.5131821Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/dmag84.o
2025-10-02T16:02:06.8320420Z CC [M] drivers/scsi/a100u2w.o
2025-10-02T16:02:07.4447194Z CC [M] drivers/net/wireless/broadcom/b43/radio_2057.o
2025-10-02T16:02:07.5086943Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifonv50.o
2025-10-02T16:02:08.1751247Z CC [M] drivers/scsi/myrb.o
2025-10-02T16:02:08.3215633Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_beacon.o
2025-10-02T16:02:08.5778204Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifog84.o
2025-10-02T16:02:08.8981387Z CC [M] drivers/net/wireless/broadcom/b43/phy_common.o
2025-10-02T16:02:09.5019724Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogf100.o
2025-10-02T16:02:09.8547872Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_init.o
2025-10-02T16:02:10.2724591Z CC [M] drivers/net/wireless/broadcom/b43/phy_n.o
2025-10-02T16:02:10.6692439Z CC [M] drivers/scsi/myrs.o
2025-10-02T16:02:10.6741855Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogk104.o
2025-10-02T16:02:11.2777745Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_gpio.o
2025-10-02T16:02:11.9120977Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifogv100.o
2025-10-02T16:02:12.7121752Z CC [M] drivers/net/wireless/ath/ath9k/htc_drv_debug.o
2025-10-02T16:02:12.9219666Z CC [M] drivers/scsi/3w-xxxx.o
2025-10-02T16:02:12.9414891Z CC [M] drivers/net/ethernet/broadcom/bcmsysport.o
2025-10-02T16:02:13.0758503Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/gpfifotu102.o
2025-10-02T16:02:14.0982850Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/usergv100.o
2025-10-02T16:02:14.1199002Z CC [M] drivers/net/wireless/ath/ath9k/ath9k_pci_owl_loader.o
2025-10-02T16:02:14.5493225Z CC [M] drivers/scsi/3w-9xxx.o
2025-10-02T16:02:14.9271343Z CC [M] drivers/net/ethernet/brocade/bna/bnad.o
2025-10-02T16:02:14.9297850Z CC [M] drivers/net/wireless/broadcom/b43/phy_lp.o
2025-10-02T16:02:15.0515491Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/fifo/usertu102.o
2025-10-02T16:02:15.1597442Z LD [M] drivers/net/wireless/ath/ath9k/ath9k.o
2025-10-02T16:02:15.2367415Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_hw.o
2025-10-02T16:02:15.3446147Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_common.o
2025-10-02T16:02:15.4074540Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_htc.o
2025-10-02T16:02:15.6064399Z CC [M] drivers/net/wireless/ath/carl9170/main.o
2025-10-02T16:02:16.1140291Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/base.o
2025-10-02T16:02:16.1555717Z CC [M] drivers/scsi/3w-sas.o
2025-10-02T16:02:17.1557063Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv04.o
2025-10-02T16:02:17.1606701Z CC [M] drivers/net/wireless/broadcom/b43/tables_lpphy.o
2025-10-02T16:02:17.7924727Z CC [M] drivers/scsi/ppa.o
2025-10-02T16:02:17.8549989Z CC [M] drivers/net/wireless/ath/carl9170/usb.o
2025-10-02T16:02:18.2894972Z CC [M] drivers/net/ethernet/brocade/bna/bnad_ethtool.o
2025-10-02T16:02:18.6045065Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv10.o
2025-10-02T16:02:18.8827826Z CC [M] drivers/net/wireless/broadcom/b43/phy_ht.o
2025-10-02T16:02:19.3625418Z CC [M] drivers/scsi/imm.o
2025-10-02T16:02:19.4875690Z CC [M] drivers/net/wireless/ath/carl9170/cmd.o
2025-10-02T16:02:19.9145476Z CC [M] drivers/net/ethernet/brocade/bna/bnad_debugfs.o
2025-10-02T16:02:20.2175404Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv15.o
2025-10-02T16:02:20.4829052Z CC [M] drivers/net/wireless/broadcom/b43/tables_phy_ht.o
2025-10-02T16:02:20.6536532Z CC [M] drivers/scsi/ipr.o
2025-10-02T16:02:20.9588154Z CC [M] drivers/net/wireless/ath/carl9170/mac.o
2025-10-02T16:02:21.1992861Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv17.o
2025-10-02T16:02:21.3036661Z CC [M] drivers/net/ethernet/brocade/bna/bna_enet.o
2025-10-02T16:02:21.8979877Z CC [M] drivers/net/wireless/broadcom/b43/radio_2059.o
2025-10-02T16:02:22.1089333Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv20.o
2025-10-02T16:02:22.4970650Z CC [M] drivers/net/wireless/ath/carl9170/phy.o
2025-10-02T16:02:23.0728529Z CC [M] drivers/net/wireless/broadcom/b43/sysfs.o
2025-10-02T16:02:23.1098182Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv25.o
2025-10-02T16:02:23.3010346Z CC [M] drivers/net/ethernet/brocade/bna/bna_tx_rx.o
2025-10-02T16:02:24.0456310Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv2a.o
2025-10-02T16:02:24.2695076Z CC [M] drivers/net/wireless/broadcom/b43/xmit.o
2025-10-02T16:02:24.6777066Z CC [M] drivers/net/wireless/ath/carl9170/led.o
2025-10-02T16:02:24.9588577Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv30.o
2025-10-02T16:02:25.8955491Z CC [M] drivers/net/ethernet/brocade/bna/bfa_msgq.o
2025-10-02T16:02:25.9161801Z CC [M] drivers/net/wireless/ath/carl9170/fw.o
2025-10-02T16:02:25.9186601Z CC [M] drivers/net/wireless/broadcom/b43/dma.o
2025-10-02T16:02:25.9207908Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv34.o
2025-10-02T16:02:26.9485342Z CC [M] drivers/scsi/hptiop.o
2025-10-02T16:02:27.0319327Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv35.o
2025-10-02T16:02:27.0927919Z CC [M] drivers/net/ethernet/brocade/bna/bfa_ioc.o
2025-10-02T16:02:27.3640120Z CC [M] drivers/net/wireless/ath/carl9170/tx.o
2025-10-02T16:02:27.8409187Z CC [M] drivers/net/wireless/broadcom/b43/pio.o
2025-10-02T16:02:27.9692304Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv40.o
2025-10-02T16:02:28.3005942Z CC [M] drivers/scsi/stex.o
2025-10-02T16:02:29.2924673Z CC [M] drivers/net/ethernet/brocade/bna/bfa_ioc_ct.o
2025-10-02T16:02:29.3539403Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv44.o
2025-10-02T16:02:29.4631816Z CC [M] drivers/net/wireless/ath/carl9170/rx.o
2025-10-02T16:02:29.4748625Z CC [M] drivers/net/wireless/broadcom/b43/rfkill.o
2025-10-02T16:02:29.6946151Z CC [M] drivers/scsi/mvumi.o
2025-10-02T16:02:30.2677854Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/nv50.o
2025-10-02T16:02:30.3848869Z CC [M] drivers/net/ethernet/brocade/bna/bfa_cee.o
2025-10-02T16:02:30.9847500Z CC [M] drivers/net/wireless/broadcom/b43/ppr.o
2025-10-02T16:02:31.1238775Z CC [M] drivers/net/wireless/ath/carl9170/debug.o
2025-10-02T16:02:31.3337370Z CC [M] drivers/net/ethernet/brocade/bna/cna_fwimg.o
2025-10-02T16:02:31.6115896Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/g84.o
2025-10-02T16:02:31.9234469Z CC [M] drivers/scsi/pmcraid.o
2025-10-02T16:02:32.1922997Z CC [M] drivers/net/wireless/broadcom/b43/leds.o
2025-10-02T16:02:32.5548687Z LD [M] drivers/net/ethernet/brocade/bna/bna.o
2025-10-02T16:02:32.6346574Z AR drivers/net/ethernet/brocade/built-in.a
2025-10-02T16:02:32.6407405Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gt200.o
2025-10-02T16:02:32.7289352Z AR drivers/net/ethernet/cavium/common/built-in.a
2025-10-02T16:02:32.7540582Z CC [M] drivers/net/ethernet/cavium/common/cavium_ptp.o
2025-10-02T16:02:33.0429765Z LD [M] drivers/net/wireless/ath/carl9170/carl9170.o
2025-10-02T16:02:33.2224965Z CC [M] drivers/net/wireless/ath/ath6kl/debug.o
2025-10-02T16:02:33.4124195Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/mcp79.o
2025-10-02T16:02:33.4866082Z CC [M] drivers/net/wireless/broadcom/b43/sdio.o
2025-10-02T16:02:33.7140537Z AR drivers/net/ethernet/cavium/thunder/built-in.a
2025-10-02T16:02:33.7396654Z CC [M] drivers/net/ethernet/cavium/thunder/thunder_xcv.o
2025-10-02T16:02:34.3085279Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gt215.o
2025-10-02T16:02:34.8460745Z CC [M] drivers/net/ethernet/cavium/thunder/thunder_bgx.o
2025-10-02T16:02:34.8485973Z CC [M] drivers/net/wireless/ath/ath6kl/hif.o
2025-10-02T16:02:35.0093712Z LD [M] drivers/net/wireless/broadcom/b43/b43.o
2025-10-02T16:02:35.1642271Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/mcp89.o
2025-10-02T16:02:35.2421879Z CC [M] drivers/net/wireless/broadcom/b43legacy/main.o
2025-10-02T16:02:35.5066122Z CC [M] drivers/scsi/virtio_scsi.o
2025-10-02T16:02:35.9997185Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.o
2025-10-02T16:02:36.0981416Z CC [M] drivers/net/wireless/ath/ath6kl/htc_mbox.o
2025-10-02T16:02:36.7162768Z CC [M] drivers/net/ethernet/cavium/thunder/nic_main.o
2025-10-02T16:02:36.8940955Z CC [M] drivers/scsi/vmw_pvscsi.o
2025-10-02T16:02:38.3205845Z CC [M] drivers/scsi/xen-scsifront.o
2025-10-02T16:02:38.3510752Z CC [M] drivers/net/wireless/broadcom/b43legacy/ilt.o
2025-10-02T16:02:38.3985090Z CC [M] drivers/net/ethernet/cavium/thunder/nicvf_main.o
2025-10-02T16:02:38.4231638Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf104.o
2025-10-02T16:02:38.8078230Z CC [M] drivers/net/wireless/ath/ath6kl/htc_pipe.o
2025-10-02T16:02:39.2042308Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf108.o
2025-10-02T16:02:39.6570441Z CC [M] drivers/net/wireless/broadcom/b43legacy/phy.o
2025-10-02T16:02:39.8421451Z CC [M] drivers/scsi/storvsc_drv.o
2025-10-02T16:02:40.2142276Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf110.o
2025-10-02T16:02:40.4880557Z CC [M] drivers/net/wireless/ath/ath6kl/bmi.o
2025-10-02T16:02:41.1508459Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf117.o
2025-10-02T16:02:41.2237363Z CC [M] drivers/net/ethernet/cavium/thunder/nicvf_queues.o
2025-10-02T16:02:41.3719145Z CC [M] drivers/scsi/wd719x.o
2025-10-02T16:02:41.8109778Z CC [M] drivers/net/wireless/ath/ath6kl/cfg80211.o
2025-10-02T16:02:42.1068520Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gf119.o
2025-10-02T16:02:42.5854411Z CC [M] drivers/scsi/st.o
2025-10-02T16:02:42.7206009Z CC [M] drivers/net/wireless/broadcom/b43legacy/radio.o
2025-10-02T16:02:43.1021593Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk104.o
2025-10-02T16:02:44.0216663Z CC [M] drivers/net/ethernet/cavium/thunder/nicvf_ethtool.o
2025-10-02T16:02:44.1061346Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk110.o
2025-10-02T16:02:44.8727348Z CC [M] drivers/net/wireless/ath/ath6kl/init.o
2025-10-02T16:02:45.0788614Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk110b.o
2025-10-02T16:02:45.0912669Z CC [M] drivers/net/wireless/broadcom/b43legacy/sysfs.o
2025-10-02T16:02:45.2461476Z LD [M] drivers/net/ethernet/cavium/thunder/nicpf.o
2025-10-02T16:02:45.2613964Z LD [M] drivers/net/ethernet/cavium/thunder/nicvf.o
2025-10-02T16:02:45.3361798Z AR drivers/net/ethernet/cavium/liquidio/built-in.a
2025-10-02T16:02:45.3480515Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_main.o
2025-10-02T16:02:46.1154268Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk208.o
2025-10-02T16:02:46.1537729Z CC [M] drivers/scsi/sr.o
2025-10-02T16:02:46.2653784Z CC [M] drivers/net/wireless/broadcom/b43legacy/xmit.o
2025-10-02T16:02:46.5196898Z CC [M] drivers/net/wireless/ath/ath6kl/main.o
2025-10-02T16:02:46.9947471Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gk20a.o
2025-10-02T16:02:47.3171022Z CC [M] drivers/scsi/sr_ioctl.o
2025-10-02T16:02:47.9842524Z CC [M] drivers/net/wireless/broadcom/b43legacy/rfkill.o
2025-10-02T16:02:48.1827120Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gm107.o
2025-10-02T16:02:48.2313554Z CC [M] drivers/scsi/sr_vendor.o
2025-10-02T16:02:48.2516531Z CC [M] drivers/net/wireless/ath/ath6kl/txrx.o
2025-10-02T16:02:48.6504086Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_console.o
2025-10-02T16:02:49.1128291Z CC [M] drivers/scsi/sg.o
2025-10-02T16:02:49.2293204Z CC [M] drivers/net/wireless/broadcom/b43legacy/leds.o
2025-10-02T16:02:49.3166030Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gm200.o
2025-10-02T16:02:49.7197943Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_vf_rep.o
2025-10-02T16:02:50.0920453Z CC [M] drivers/net/wireless/ath/ath6kl/wmi.o
2025-10-02T16:02:50.3442150Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gm20b.o
2025-10-02T16:02:50.9042924Z CC [M] drivers/net/wireless/broadcom/b43legacy/debugfs.o
2025-10-02T16:02:51.0975042Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_ethtool.o
2025-10-02T16:02:51.1916324Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp100.o
2025-10-02T16:02:51.3350738Z CC [M] drivers/scsi/ch.o
2025-10-02T16:02:52.3140424Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp102.o
2025-10-02T16:02:52.4483807Z CC [M] drivers/net/wireless/broadcom/b43legacy/dma.o
2025-10-02T16:02:52.7310670Z CC [M] drivers/scsi/ses.o
2025-10-02T16:02:52.8066357Z CC [M] drivers/net/wireless/ath/ath6kl/core.o
2025-10-02T16:02:53.1403347Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp104.o
2025-10-02T16:02:53.5369982Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_core.o
2025-10-02T16:02:54.0541934Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp107.o
2025-10-02T16:02:54.0833629Z CC [M] drivers/net/wireless/ath/ath6kl/recovery.o
2025-10-02T16:02:54.2451924Z CC [M] drivers/scsi/scsi_debug.o
2025-10-02T16:02:54.3512230Z CC [M] drivers/net/wireless/broadcom/b43legacy/pio.o
2025-10-02T16:02:54.8346661Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp108.o
2025-10-02T16:02:55.1544983Z CC [M] drivers/net/wireless/ath/ath6kl/trace.o
2025-10-02T16:02:55.3358477Z CC [M] drivers/net/ethernet/cavium/liquidio/request_manager.o
2025-10-02T16:02:55.5836541Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gp10b.o
2025-10-02T16:02:56.2463220Z LD [M] drivers/net/wireless/broadcom/b43legacy/b43legacy.o
2025-10-02T16:02:56.4720554Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmutil/utils.o
2025-10-02T16:02:56.6325038Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/gv100.o
2025-10-02T16:02:56.6951207Z CC [M] drivers/net/wireless/ath/ath6kl/sdio.o
2025-10-02T16:02:56.7687551Z CC [M] drivers/net/ethernet/cavium/liquidio/response_manager.o
2025-10-02T16:02:57.5213465Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmutil/d11.o
2025-10-02T16:02:57.6561327Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/tu102.o
2025-10-02T16:02:57.7829369Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_device.o
2025-10-02T16:02:58.3840031Z CC [M] drivers/net/wireless/ath/ath6kl/usb.o
2025-10-02T16:02:58.4569452Z LD [M] drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil.o
2025-10-02T16:02:58.5143804Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/cfg80211.o
2025-10-02T16:02:58.5846506Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxnv40.o
2025-10-02T16:02:58.6936514Z LD [M] drivers/scsi/hv_storvsc.o
2025-10-02T16:02:58.7258360Z LD [M] drivers/scsi/sr_mod.o
2025-10-02T16:02:58.7569964Z CC drivers/scsi/scsi_sysfs.o
2025-10-02T16:02:59.1780341Z CC [M] drivers/net/ethernet/cavium/liquidio/cn66xx_device.o
2025-10-02T16:02:59.9108809Z LD [M] drivers/net/wireless/ath/ath6kl/ath6kl_core.o
2025-10-02T16:03:00.0338406Z LD [M] drivers/net/wireless/ath/ath6kl/ath6kl_sdio.o
2025-10-02T16:03:00.0639251Z LD [M] drivers/net/wireless/ath/ath6kl/ath6kl_usb.o
2025-10-02T16:03:00.1245595Z CC [M] drivers/net/wireless/ath/ar5523/ar5523.o
2025-10-02T16:03:00.4850582Z CC [M] drivers/net/ethernet/cavium/liquidio/cn68xx_device.o
2025-10-02T16:03:00.7038223Z AR drivers/scsi/built-in.a
2025-10-02T16:03:00.7185676Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/chip.o
2025-10-02T16:03:01.1216668Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxnv50.o
2025-10-02T16:03:01.6218379Z CC [M] drivers/net/ethernet/cavium/liquidio/cn23xx_pf_device.o
2025-10-02T16:03:02.1438081Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.o
2025-10-02T16:03:02.3296249Z CC [M] drivers/net/wireless/ath/wil6210/main.o
2025-10-02T16:03:03.0267915Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwil.o
2025-10-02T16:03:03.4461726Z CC [M] drivers/net/ethernet/cavium/liquidio/cn23xx_vf_device.o
2025-10-02T16:03:03.5506582Z CC [M] drivers/gpu/drm/drm_gem_vram_helper.o
2025-10-02T16:03:04.3378340Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/fweh.o
2025-10-02T16:03:04.4572655Z CC [M] drivers/net/wireless/ath/wil6210/netdev.o
2025-10-02T16:03:04.5806883Z AR drivers/net/ethernet/cavium/octeon/built-in.a
2025-10-02T16:03:04.6340070Z CC [M] drivers/net/wireless/ath/ath10k/mac.o
2025-10-02T16:03:04.6803030Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_mailbox.o
2025-10-02T16:03:05.2407208Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf104.o
2025-10-02T16:03:05.6401170Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_mem_ops.o
2025-10-02T16:03:05.7901237Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/p2p.o
2025-10-02T16:03:05.9500939Z CC [M] drivers/net/wireless/ath/wil6210/cfg80211.o
2025-10-02T16:03:06.0785226Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf108.o
2025-10-02T16:03:06.7021474Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_droq.o
2025-10-02T16:03:07.0138291Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf110.o
2025-10-02T16:03:07.6749862Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/proto.o
2025-10-02T16:03:07.9298208Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf117.o
2025-10-02T16:03:08.1971629Z CC [M] drivers/net/ethernet/cavium/liquidio/octeon_nic.o
2025-10-02T16:03:08.5782613Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/common.o
2025-10-02T16:03:08.8147017Z CC [M] drivers/net/wireless/ath/wil6210/pcie_bus.o
2025-10-02T16:03:08.9011178Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf119.o
2025-10-02T16:03:09.2281312Z CC [M] drivers/net/ethernet/cavium/liquidio/lio_vf_main.o
2025-10-02T16:03:09.6569230Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/core.o
2025-10-02T16:03:09.7191449Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk104.o
2025-10-02T16:03:10.2666593Z CC [M] drivers/net/wireless/ath/wil6210/debugfs.o
2025-10-02T16:03:10.8647903Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110.o
2025-10-02T16:03:10.9016551Z CC [M] drivers/net/wireless/ath/ath10k/debug.o
2025-10-02T16:03:11.5990967Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/firmware.o
2025-10-02T16:03:11.7413019Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110b.o
2025-10-02T16:03:11.9331879Z LD [M] drivers/net/ethernet/cavium/liquidio/liquidio.o
2025-10-02T16:03:12.0650456Z LD [M] drivers/net/ethernet/cavium/liquidio/liquidio_vf.o
2025-10-02T16:03:12.2078546Z AR drivers/net/ethernet/cavium/built-in.a
2025-10-02T16:03:12.3492074Z CC [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ipsec/chcr_ipsec.o
2025-10-02T16:03:12.3740393Z CC [M] drivers/net/wireless/ath/wil6210/wmi.o
2025-10-02T16:03:12.6592432Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk208.o
2025-10-02T16:03:13.0055408Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/feature.o
2025-10-02T16:03:13.1796848Z CC [M] drivers/net/wireless/ath/ath10k/core.o
2025-10-02T16:03:13.5707378Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk20a.o
2025-10-02T16:03:14.1619965Z LD [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ipsec/ch_ipsec.o
2025-10-02T16:03:14.2553374Z CC [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.o
2025-10-02T16:03:14.2859122Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/btcoex.o
2025-10-02T16:03:14.5703846Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.o
2025-10-02T16:03:15.3873579Z CC [M] drivers/net/wireless/ath/wil6210/interrupt.o
2025-10-02T16:03:15.4365731Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/vendor.o
2025-10-02T16:03:15.4899170Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm200.o
2025-10-02T16:03:15.8174361Z CC [M] drivers/net/wireless/ath/ath10k/htc.o
2025-10-02T16:03:16.3518313Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/pno.o
2025-10-02T16:03:16.3685249Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm20b.o
2025-10-02T16:03:16.8492868Z LD [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ch_ktls.o
2025-10-02T16:03:16.8582734Z CC [M] drivers/net/wireless/ath/wil6210/txrx.o
2025-10-02T16:03:16.8823698Z AR drivers/net/ethernet/chelsio/inline_crypto/built-in.a
2025-10-02T16:03:16.9222550Z CC [M] drivers/net/ethernet/chelsio/cxgb/cxgb2.o
2025-10-02T16:03:17.3161363Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp100.o
2025-10-02T16:03:17.6526298Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcdc.o
2025-10-02T16:03:17.9673424Z CC [M] drivers/net/wireless/ath/ath10k/htt.o
2025-10-02T16:03:18.3560945Z CC [M] drivers/net/ethernet/chelsio/cxgb/espi.o
2025-10-02T16:03:18.6729101Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp102.o
2025-10-02T16:03:18.7497468Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/fwsignal.o
2025-10-02T16:03:19.3665689Z CC [M] drivers/net/wireless/ath/ath10k/htt_rx.o
2025-10-02T16:03:19.4484206Z CC [M] drivers/net/ethernet/chelsio/cxgb/tp.o
2025-10-02T16:03:19.5392751Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp104.o
2025-10-02T16:03:19.7775708Z CC [M] drivers/net/wireless/ath/wil6210/txrx_edma.o
2025-10-02T16:03:20.4831457Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp107.o
2025-10-02T16:03:20.6562676Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/commonring.o
2025-10-02T16:03:20.7722757Z CC [M] drivers/net/ethernet/chelsio/cxgb/pm3393.o
2025-10-02T16:03:21.4359778Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgv100.o
2025-10-02T16:03:21.6339114Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/flowring.o
2025-10-02T16:03:22.1265929Z CC [M] drivers/net/ethernet/chelsio/cxgb/sge.o
2025-10-02T16:03:22.4011420Z CC [M] drivers/net/wireless/ath/wil6210/debug.o
2025-10-02T16:03:22.4349988Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxtu102.o
2025-10-02T16:03:23.0138945Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/msgbuf.o
2025-10-02T16:03:23.0726383Z CC [M] drivers/net/wireless/ath/ath10k/htt_tx.o
2025-10-02T16:03:23.4227891Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/nv31.o
2025-10-02T16:03:23.6329688Z CC [M] drivers/net/wireless/ath/wil6210/rx_reorder.o
2025-10-02T16:03:24.3671887Z CC [M] drivers/net/ethernet/chelsio/cxgb/subr.o
2025-10-02T16:03:24.3891802Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/nv40.o
2025-10-02T16:03:24.6828874Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/sdio.o
2025-10-02T16:03:25.0319420Z CC [M] drivers/net/wireless/ath/wil6210/fw.o
2025-10-02T16:03:25.2125992Z CC [M] drivers/net/wireless/ath/ath10k/txrx.o
2025-10-02T16:03:25.5769908Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/nv44.o
2025-10-02T16:03:25.8352018Z CC [M] drivers/net/ethernet/chelsio/cxgb/mv88x201x.o
2025-10-02T16:03:26.4144387Z CC [M] drivers/net/wireless/ath/wil6210/pm.o
2025-10-02T16:03:26.7227708Z CC [M] drivers/net/wireless/ath/ath10k/wmi.o
2025-10-02T16:03:26.7713143Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/nv50.o
2025-10-02T16:03:26.8189690Z CC [M] drivers/net/ethernet/chelsio/cxgb/my3126.o
2025-10-02T16:03:27.6443733Z CC [M] drivers/net/wireless/ath/wil6210/pmc.o
2025-10-02T16:03:27.8181658Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mpeg/g84.o
2025-10-02T16:03:27.8331554Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/bcmsdh.o
2025-10-02T16:03:27.8654334Z CC [M] drivers/net/ethernet/chelsio/cxgb/mv88e1xxx.o
2025-10-02T16:03:28.7849389Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/base.o
2025-10-02T16:03:28.9312546Z CC [M] drivers/net/wireless/ath/wil6210/trace.o
2025-10-02T16:03:28.9971971Z CC [M] drivers/net/ethernet/chelsio/cxgb/vsc7326.o
2025-10-02T16:03:29.5405265Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/usb.o
2025-10-02T16:03:29.6145876Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/g98.o
2025-10-02T16:03:30.3243100Z LD [M] drivers/net/ethernet/chelsio/cxgb/cxgb.o
2025-10-02T16:03:30.4635769Z CC [M] drivers/net/ethernet/chelsio/cxgb3/cxgb3_main.o
2025-10-02T16:03:30.4920993Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/gt215.o
2025-10-02T16:03:30.7827255Z CC [M] drivers/net/wireless/ath/wil6210/wil_platform.o
2025-10-02T16:03:31.2313372Z CC [M] drivers/net/wireless/ath/wil6210/ethtool.o
2025-10-02T16:03:31.2547778Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/pcie.o
2025-10-02T16:03:31.3627856Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/gf100.o
2025-10-02T16:03:32.2713722Z CC [M] drivers/net/wireless/ath/wil6210/wil_crash_dump.o
2025-10-02T16:03:32.3611472Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/mspdec/gk104.o
2025-10-02T16:03:33.0347791Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/debug.o
2025-10-02T16:03:33.0735420Z CC [M] drivers/net/wireless/ath/ath10k/wmi-tlv.o
2025-10-02T16:03:33.2179996Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msppp/base.o
2025-10-02T16:03:33.2810164Z CC [M] drivers/net/wireless/ath/wil6210/p2p.o
2025-10-02T16:03:33.5262604Z CC [M] drivers/net/ethernet/chelsio/cxgb3/ael1002.o
2025-10-02T16:03:34.0566743Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msppp/g98.o
2025-10-02T16:03:34.0709269Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/tracepoint.o
2025-10-02T16:03:34.4509067Z LD [M] drivers/net/wireless/ath/wil6210/wil6210.o
2025-10-02T16:03:34.6120459Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/dmi.o
2025-10-02T16:03:34.9052078Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msppp/gt215.o
2025-10-02T16:03:34.9119425Z CC [M] drivers/net/ethernet/chelsio/cxgb3/vsc8211.o
2025-10-02T16:03:35.2193278Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.o
2025-10-02T16:03:35.5574352Z LD [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac.o
2025-10-02T16:03:35.7834243Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/mac80211_if.o
2025-10-02T16:03:35.8247842Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msppp/gf100.o
2025-10-02T16:03:35.9838490Z CC [M] drivers/net/ethernet/chelsio/cxgb3/t3_hw.o
2025-10-02T16:03:36.8246494Z CC [M] drivers/net/wireless/ath/ath10k/bmi.o
2025-10-02T16:03:36.8401701Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/base.o
2025-10-02T16:03:37.6331559Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/ucode_loader.o
2025-10-02T16:03:37.8692394Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/ampdu.o
2025-10-02T16:03:37.8980239Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/g98.o
2025-10-02T16:03:38.5575095Z CC [M] drivers/net/wireless/ath/ath10k/hw.o
2025-10-02T16:03:38.7286570Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/gt215.o
2025-10-02T16:03:39.1693345Z CC [M] drivers/net/ethernet/chelsio/cxgb3/mc5.o
2025-10-02T16:03:39.5963462Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/antsel.o
2025-10-02T16:03:39.6459353Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/mcp89.o
2025-10-02T16:03:40.2852876Z CC [M] drivers/net/wireless/ath/ath10k/p2p.o
2025-10-02T16:03:40.3832928Z CC [M] drivers/net/ethernet/chelsio/cxgb4/l2t.o
2025-10-02T16:03:40.3870191Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/gf100.o
2025-10-02T16:03:40.4152962Z CC [M] drivers/net/ethernet/chelsio/cxgb3/xgmac.o
2025-10-02T16:03:41.0517657Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/channel.o
2025-10-02T16:03:41.1900285Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/msvld/gk104.o
2025-10-02T16:03:41.5620227Z CC [M] drivers/net/wireless/ath/ath10k/swap.o
2025-10-02T16:03:41.7110511Z CC [M] drivers/net/ethernet/chelsio/cxgb3/sge.o
2025-10-02T16:03:41.9729710Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/nvenc/base.o
2025-10-02T16:03:42.3885413Z CC [M] drivers/net/ethernet/chelsio/cxgb4/smt.o
2025-10-02T16:03:42.7235866Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/main.o
2025-10-02T16:03:42.8911325Z CC [M] drivers/net/wireless/ath/ath10k/spectral.o
2025-10-02T16:03:42.9253643Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/nvenc/gm107.o
2025-10-02T16:03:43.7976194Z CC [M] drivers/net/ethernet/chelsio/cxgb4/t4_hw.o
2025-10-02T16:03:43.8933543Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/nvdec/base.o
2025-10-02T16:03:44.6281319Z CC [M] drivers/net/wireless/ath/ath10k/trace.o
2025-10-02T16:03:44.7795806Z CC [M] drivers/net/ethernet/chelsio/cxgb3/l2t.o
2025-10-02T16:03:44.7957545Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/nvdec/gm107.o
2025-10-02T16:03:45.6022467Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/base.o
2025-10-02T16:03:46.3905724Z CC [M] drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.o
2025-10-02T16:03:47.2786028Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/nv40.o
2025-10-02T16:03:47.7005611Z CC [M] drivers/net/wireless/ath/ath10k/thermal.o
2025-10-02T16:03:47.9286602Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy_shim.o
2025-10-02T16:03:48.3910461Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/nv50.o
2025-10-02T16:03:48.5840120Z CC [M] drivers/net/ethernet/chelsio/cxgb3/aq100x.o
2025-10-02T16:03:49.1771475Z CC [M] drivers/net/wireless/ath/ath10k/debugfs_sta.o
2025-10-02T16:03:49.2194472Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/pmu.o
2025-10-02T16:03:49.2406535Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/g84.o
2025-10-02T16:03:49.5327118Z CC [M] drivers/net/ethernet/chelsio/cxgb4/sge.o
2025-10-02T16:03:49.6568354Z LD [M] drivers/net/ethernet/chelsio/cxgb3/cxgb3.o
2025-10-02T16:03:49.8005039Z CC [M] drivers/gpu/drm/drm_gem_ttm_helper.o
2025-10-02T16:03:49.9527018Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gt200.o
2025-10-02T16:03:50.3150045Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/rate.o
2025-10-02T16:03:50.5446914Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gt215.o
2025-10-02T16:03:50.8598356Z CC [M] drivers/gpu/drm/drm_bridge_connector.o
2025-10-02T16:03:50.9242967Z CC [M] drivers/net/wireless/ath/ath10k/wow.o
2025-10-02T16:03:51.3469203Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/stf.o
2025-10-02T16:03:51.5078567Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gf100.o
2025-10-02T16:03:51.7201903Z AR drivers/net/wireless/broadcom/built-in.a
2025-10-02T16:03:51.7775339Z CC [M] drivers/net/wireless/ath/wcn36xx/main.o
2025-10-02T16:03:52.6415060Z CC [M] drivers/net/wireless/ath/ath10k/coredump.o
2025-10-02T16:03:52.6845467Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gf108.o
2025-10-02T16:03:52.7766702Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/aiutils.o
2025-10-02T16:03:53.5625539Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gf117.o
2025-10-02T16:03:53.6082237Z CC [M] drivers/net/wireless/ath/wcn36xx/dxe.o
2025-10-02T16:03:53.6794343Z CC [M] drivers/net/ethernet/chelsio/cxgb4/clip_tbl.o
2025-10-02T16:03:53.8868367Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_cmn.o
2025-10-02T16:03:54.2125512Z CC [M] drivers/net/wireless/ath/ath10k/ce.o
2025-10-02T16:03:54.4347656Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/pm/gk104.o
2025-10-02T16:03:55.2070594Z CC [M] drivers/net/wireless/ath/wcn36xx/txrx.o
2025-10-02T16:03:55.2147056Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec/g98.o
2025-10-02T16:03:55.3271796Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_ethtool.o
2025-10-02T16:03:56.2607282Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_lcn.o
2025-10-02T16:03:56.3490176Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec2/base.o
2025-10-02T16:03:56.4377688Z CC [M] drivers/net/wireless/ath/wcn36xx/smd.o
2025-10-02T16:03:57.1188011Z CC [M] drivers/net/wireless/ath/ath10k/pci.o
2025-10-02T16:03:57.3731199Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec2/gp102.o
2025-10-02T16:03:57.6558741Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_uld.o
2025-10-02T16:03:58.4937529Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec2/gp108.o
2025-10-02T16:03:59.0962307Z CC [M] drivers/net/wireless/ath/wcn36xx/pmc.o
2025-10-02T16:03:59.1902108Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_n.o
2025-10-02T16:03:59.6240393Z CC [M] drivers/net/ethernet/chelsio/cxgb4/srq.o
2025-10-02T16:03:59.6527138Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sec2/tu102.o
2025-10-02T16:04:00.0545915Z CC [M] drivers/net/wireless/ath/wcn36xx/debug.o
2025-10-02T16:04:00.1744765Z CC [M] drivers/net/wireless/ath/ath10k/sdio.o
2025-10-02T16:04:00.5742449Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/base.o
2025-10-02T16:04:01.0064659Z CC [M] drivers/net/ethernet/chelsio/cxgb4/sched.o
2025-10-02T16:04:01.4413535Z LD [M] drivers/net/wireless/ath/wcn36xx/wcn36xx.o
2025-10-02T16:04:01.5323444Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/nv04.o
2025-10-02T16:04:01.5418720Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_filter.o
2025-10-02T16:04:02.3774690Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/nv10.o
2025-10-02T16:04:02.6155560Z CC [M] drivers/net/wireless/ath/ath10k/usb.o
2025-10-02T16:04:02.7667897Z CC [M] drivers/net/ethernet/cisco/enic/enic_main.o
2025-10-02T16:04:03.1467703Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/nv50.o
2025-10-02T16:04:03.9514346Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_u32.o
2025-10-02T16:04:04.1109377Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/gf100.o
2025-10-02T16:04:04.3519943Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_core.o
2025-10-02T16:04:04.4857267Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_pci.o
2025-10-02T16:04:04.5058890Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_sdio.o
2025-10-02T16:04:04.5248593Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_usb.o
2025-10-02T16:04:04.5911386Z CC [M] drivers/net/wireless/ath/ath11k/core.o
2025-10-02T16:04:04.8678441Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/chan.o
2025-10-02T16:04:05.7559179Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/sw/nvsw.o
2025-10-02T16:04:06.1135328Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_ptp.o
2025-10-02T16:04:06.3029390Z CC [M] drivers/net/wireless/ath/ath11k/hal.o
2025-10-02T16:04:06.3832488Z CC [M] drivers/net/ethernet/cisco/enic/vnic_cq.o
2025-10-02T16:04:06.6094192Z CC [M] drivers/gpu/drm/nouveau/nvkm/engine/vp/g84.o
2025-10-02T16:04:07.1706724Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phytbl_lcn.o
2025-10-02T16:04:07.3557054Z CC [M] drivers/net/ethernet/cisco/enic/vnic_intr.o
2025-10-02T16:04:07.3558580Z CC [M] drivers/gpu/drm/nouveau/nouveau_acpi.o
2025-10-02T16:04:07.5754490Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.o
2025-10-02T16:04:08.0116969Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phytbl_n.o
2025-10-02T16:04:08.1623615Z CC [M] drivers/net/wireless/ath/ath11k/hal_tx.o
2025-10-02T16:04:08.2550177Z CC [M] drivers/net/ethernet/cisco/enic/vnic_wq.o
2025-10-02T16:04:08.3687628Z CC [M] drivers/gpu/drm/nouveau/nouveau_debugfs.o
2025-10-02T16:04:08.9098715Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/phy/phy_qmath.o
2025-10-02T16:04:09.2381369Z CC [M] drivers/net/ethernet/cisco/enic/enic_res.o
2025-10-02T16:04:09.3438710Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/dma.o
2025-10-02T16:04:09.4992910Z CC [M] drivers/net/wireless/ath/ath11k/hal_rx.o
2025-10-02T16:04:09.6598708Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_cudbg.o
2025-10-02T16:04:09.7325609Z CC [M] drivers/gpu/drm/nouveau/nouveau_drm.o
2025-10-02T16:04:10.1930876Z CC [M] drivers/net/ethernet/cisco/enic/enic_dev.o
2025-10-02T16:04:11.1096798Z CC [M] drivers/net/ethernet/cisco/enic/enic_pp.o
2025-10-02T16:04:11.1112076Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_mps.o
2025-10-02T16:04:11.4894477Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/brcms_trace_events.o
2025-10-02T16:04:11.5287062Z CC [M] drivers/gpu/drm/nouveau/nouveau_hwmon.o
2025-10-02T16:04:11.7654474Z CC [M] drivers/net/wireless/ath/ath11k/wmi.o
2025-10-02T16:04:12.5121243Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cudbg_common.o
2025-10-02T16:04:12.5394825Z CC [M] drivers/net/ethernet/cisco/enic/vnic_dev.o
2025-10-02T16:04:12.7543280Z CC [M] drivers/gpu/drm/nouveau/nouveau_ioc32.o
2025-10-02T16:04:12.9876838Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/debug.o
2025-10-02T16:04:13.1902828Z CC [M] drivers/gpu/drm/nouveau/nouveau_led.o
2025-10-02T16:04:13.9082702Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cudbg_lib.o
2025-10-02T16:04:14.0290578Z CC [M] drivers/net/ethernet/cisco/enic/vnic_rq.o
2025-10-02T16:04:14.3072331Z CC [M] drivers/gpu/drm/nouveau/nouveau_nvif.o
2025-10-02T16:04:14.4123652Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/led.o
2025-10-02T16:04:15.0104023Z CC [M] drivers/net/ethernet/cisco/enic/vnic_vic.o
2025-10-02T16:04:15.3461206Z CC [M] drivers/gpu/drm/nouveau/nouveau_usif.o
2025-10-02T16:04:15.4715530Z CC [M] drivers/net/ethernet/cisco/enic/enic_ethtool.o
2025-10-02T16:04:15.7510100Z LD [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/brcmsmac.o
2025-10-02T16:04:15.8833267Z AR drivers/net/ethernet/cisco/built-in.a
2025-10-02T16:04:15.8948915Z CC [M] drivers/gpu/drm/drm_crtc_helper.o
2025-10-02T16:04:16.4567405Z CC [M] drivers/gpu/drm/nouveau/nouveau_vga.o
2025-10-02T16:04:16.7826362Z CC [M] drivers/net/wireless/ath/ath11k/mac.o
2025-10-02T16:04:16.8487957Z CC [M] drivers/net/ethernet/cisco/enic/enic_api.o
2025-10-02T16:04:16.8541592Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cudbg_zlib.o
2025-10-02T16:04:17.1978562Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo.o
2025-10-02T16:04:17.5927602Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_mqprio.o
2025-10-02T16:04:17.6759016Z CC [M] drivers/net/ethernet/cisco/enic/enic_clsf.o
2025-10-02T16:04:18.1518247Z CC [M] drivers/net/wireless/ath/ath11k/reg.o
2025-10-02T16:04:18.8544818Z LD [M] drivers/net/ethernet/cisco/enic/enic.o
2025-10-02T16:04:18.9581851Z CC [M] drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.o
2025-10-02T16:04:19.0539873Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo0039.o
2025-10-02T16:04:19.2369915Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_matchall.o
2025-10-02T16:04:19.9264800Z AR drivers/net/wireless/ath/built-in.a
2025-10-02T16:04:19.9526926Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_dcb.o
2025-10-02T16:04:20.0949896Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo5039.o
2025-10-02T16:04:20.6094573Z CC [M] drivers/net/wireless/ath/ath11k/htc.o
2025-10-02T16:04:21.0377896Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo74c1.o
2025-10-02T16:04:21.1781415Z CC [M] drivers/net/ethernet/chelsio/libcxgb/libcxgb_ppm.o
2025-10-02T16:04:21.4197751Z CC [M] drivers/net/ethernet/chelsio/cxgb4vf/t4vf_hw.o
2025-10-02T16:04:21.9006369Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_fcoe.o
2025-10-02T16:04:21.9452018Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo85b5.o
2025-10-02T16:04:22.2859424Z CC [M] drivers/net/wireless/ath/ath11k/qmi.o
2025-10-02T16:04:22.3694712Z CC [M] drivers/net/ethernet/chelsio/libcxgb/libcxgb_cm.o
2025-10-02T16:04:23.1162710Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo9039.o
2025-10-02T16:04:23.1652555Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_debugfs.o
2025-10-02T16:04:23.2548642Z CC [M] drivers/net/ethernet/chelsio/cxgb4vf/sge.o
2025-10-02T16:04:23.6313998Z LD [M] drivers/net/ethernet/chelsio/libcxgb/libcxgb.o
2025-10-02T16:04:23.6805463Z CC [M] drivers/net/bonding/bond_main.o
2025-10-02T16:04:23.9661553Z CC [M] drivers/gpu/drm/nouveau/nouveau_bo90b5.o
2025-10-02T16:04:24.1442280Z CC [M] drivers/net/wireless/ath/ath11k/dp.o
2025-10-02T16:04:24.8516490Z CC [M] drivers/gpu/drm/nouveau/nouveau_boa0b5.o
2025-10-02T16:04:25.6828374Z LD [M] drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf.o
2025-10-02T16:04:25.7268560Z CC [M] drivers/net/bonding/bond_3ad.o
2025-10-02T16:04:25.7761855Z CC [M] drivers/gpu/drm/nouveau/nouveau_gem.o
2025-10-02T16:04:25.8023365Z CC [M] drivers/net/wireless/ath/ath11k/dp_tx.o
2025-10-02T16:04:27.4601422Z CC [M] drivers/gpu/drm/nouveau/nouveau_svm.o
2025-10-02T16:04:27.7722589Z AR drivers/auxdisplay/built-in.a
2025-10-02T16:04:27.7823142Z CC [M] drivers/auxdisplay/charlcd.o
2025-10-02T16:04:27.9468174Z CC [M] drivers/net/wireless/ath/ath11k/dp_rx.o
2025-10-02T16:04:27.9476248Z CC [M] drivers/net/bonding/bond_alb.o
2025-10-02T16:04:28.1251318Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4_thermal.o
2025-10-02T16:04:28.6902430Z CC [M] drivers/auxdisplay/ks0108.o
2025-10-02T16:04:28.9013869Z CC [M] drivers/gpu/drm/nouveau/nouveau_dmem.o
2025-10-02T16:04:29.2314424Z CC [M] drivers/auxdisplay/cfag12864b.o
2025-10-02T16:04:29.2980472Z LD [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4.o
2025-10-02T16:04:29.4535749Z AR drivers/net/ethernet/chelsio/built-in.a
2025-10-02T16:04:29.5370981Z AR drivers/net/ethernet/cortina/built-in.a
2025-10-02T16:04:29.6379452Z AR drivers/net/ethernet/dec/tulip/built-in.a
2025-10-02T16:04:29.6603308Z CC [M] drivers/net/ethernet/dec/tulip/xircom_cb.o
2025-10-02T16:04:29.9547222Z CC [M] drivers/auxdisplay/cfag12864bfb.o
2025-10-02T16:04:30.0856379Z CC [M] drivers/net/bonding/bond_sysfs.o
2025-10-02T16:04:30.3542686Z CC [M] drivers/gpu/drm/nouveau/nouveau_mem.o
2025-10-02T16:04:30.6924211Z CC [M] drivers/auxdisplay/img-ascii-lcd.o
2025-10-02T16:04:30.9272785Z CC [M] drivers/net/ethernet/dec/tulip/dmfe.o
2025-10-02T16:04:31.2856863Z CC [M] drivers/auxdisplay/hd44780.o
2025-10-02T16:04:31.3539983Z CC [M] drivers/gpu/drm/nouveau/nouveau_prime.o
2025-10-02T16:04:31.4709671Z CC [M] drivers/net/bonding/bond_sysfs_slave.o
2025-10-02T16:04:32.0188842Z CC [M] drivers/auxdisplay/panel.o
2025-10-02T16:04:32.2246203Z CC [M] drivers/net/wireless/ath/ath11k/debug.o
2025-10-02T16:04:32.2451963Z CC [M] drivers/gpu/drm/nouveau/nouveau_sgdma.o
2025-10-02T16:04:32.3214075Z CC [M] drivers/net/bonding/bond_debugfs.o
2025-10-02T16:04:32.5959297Z CC [M] drivers/net/ethernet/dec/tulip/winbond-840.o
2025-10-02T16:04:33.2400850Z CC [M] drivers/net/bonding/bond_netlink.o
2025-10-02T16:04:33.2824432Z CC [M] drivers/net/wireless/ath/main.o
2025-10-02T16:04:33.4241549Z CC [M] drivers/gpu/drm/nouveau/nouveau_ttm.o
2025-10-02T16:04:33.4464116Z CC [M] drivers/net/wireless/ath/ath11k/ce.o
2025-10-02T16:04:34.2907815Z CC [M] drivers/net/ethernet/dec/tulip/de2104x.o
2025-10-02T16:04:34.4283875Z CC [M] drivers/gpu/drm/nouveau/nouveau_vmm.o
2025-10-02T16:04:34.4788581Z CC [M] drivers/net/ethernet/dec/tulip/eeprom.o
2025-10-02T16:04:34.5005299Z CC [M] drivers/net/bonding/bond_options.o
2025-10-02T16:04:35.3068054Z CC [M] drivers/net/wireless/ath/ath11k/peer.o
2025-10-02T16:04:35.4029405Z CC [M] drivers/gpu/drm/nouveau/nouveau_backlight.o
2025-10-02T16:04:35.5787795Z CC [M] drivers/net/ethernet/dec/tulip/interrupt.o
2025-10-02T16:04:36.0755436Z CC [M] drivers/gpu/drm/drm_dp_helper.o
2025-10-02T16:04:36.1431508Z CC [M] drivers/net/bonding/bond_procfs.o
2025-10-02T16:04:36.6671805Z CC [M] drivers/net/wireless/ath/ath11k/dbring.o
2025-10-02T16:04:36.7265759Z CC [M] drivers/gpu/drm/nouveau/nouveau_bios.o
2025-10-02T16:04:36.7957218Z CC [M] drivers/net/ethernet/dec/tulip/media.o
2025-10-02T16:04:37.1882712Z LD [M] drivers/net/bonding/bonding.o
2025-10-02T16:04:37.3087484Z CC [M] drivers/net/wireless/ath/ath11k/hw.o
2025-10-02T16:04:37.5572886Z CC [M] drivers/gpu/drm/drm_dsc.o
2025-10-02T16:04:37.8901604Z CC [M] drivers/net/ethernet/dec/tulip/timer.o
2025-10-02T16:04:38.2348650Z CC [M] drivers/net/wireless/ath/ath11k/debugfs.o
2025-10-02T16:04:38.5091296Z CC [M] drivers/net/wireless/ath/ath11k/debugfs_htt_stats.o
2025-10-02T16:04:38.5950014Z CC [M] drivers/gpu/drm/drm_probe_helper.o
2025-10-02T16:04:38.6865272Z CC [M] drivers/gpu/drm/nouveau/nouveau_connector.o
2025-10-02T16:04:38.9538446Z CC [M] drivers/net/ethernet/dec/tulip/tulip_core.o
2025-10-02T16:04:39.8280267Z CC [M] drivers/net/ethernet/dec/tulip/21142.o
2025-10-02T16:04:39.9799733Z AR drivers/net/wireless/cisco/built-in.a
2025-10-02T16:04:40.0061470Z CC [M] drivers/net/wireless/cisco/airo.o
2025-10-02T16:04:40.3911165Z CC [M] drivers/gpu/drm/nouveau/nouveau_display.o
2025-10-02T16:04:40.7299393Z AR drivers/net/ethernet/dlink/built-in.a
2025-10-02T16:04:40.7412245Z CC [M] drivers/net/ethernet/dlink/dl2k.o
2025-10-02T16:04:41.1092583Z CC [M] drivers/net/ethernet/dec/tulip/pnic.o
2025-10-02T16:04:41.8782627Z CC [M] drivers/gpu/drm/nouveau/nouveau_dp.o
2025-10-02T16:04:42.1983945Z CC [M] drivers/net/ethernet/dec/tulip/pnic2.o
2025-10-02T16:04:42.6295312Z CC [M] drivers/net/wireless/ath/ath11k/debugfs_sta.o
2025-10-02T16:04:42.6881281Z CC [M] drivers/net/ethernet/dlink/sundance.o
2025-10-02T16:04:43.0492589Z CC [M] drivers/gpu/drm/nouveau/nouveau_fbcon.o
2025-10-02T16:04:43.1408292Z CC [M] drivers/net/ethernet/dec/tulip/de4x5.o
2025-10-02T16:04:44.2313750Z CC [M] drivers/net/wireless/ath/ath11k/thermal.o
2025-10-02T16:04:44.4596708Z CC [M] drivers/gpu/drm/nouveau/nv04_fbcon.o
2025-10-02T16:04:44.5677768Z CC [M] drivers/net/ipvlan/ipvlan_core.o
2025-10-02T16:04:44.7274027Z CC [M] drivers/net/wireless/cisco/airo_cs.o
2025-10-02T16:04:45.4970593Z CC [M] drivers/net/wireless/ath/ath11k/spectral.o
2025-10-02T16:04:45.5345653Z CC [M] drivers/gpu/drm/nouveau/nv50_fbcon.o
2025-10-02T16:04:45.8883208Z CC [M] drivers/net/ipvlan/ipvlan_main.o
2025-10-02T16:04:46.2673042Z CC [M] drivers/gpu/drm/drm_plane_helper.o
2025-10-02T16:04:46.6212698Z CC [M] drivers/gpu/drm/nouveau/nvc0_fbcon.o
2025-10-02T16:04:46.7341396Z CC [M] drivers/net/ethernet/dec/tulip/uli526x.o
2025-10-02T16:04:47.0657305Z CC [M] drivers/net/wireless/ath/regd.o
2025-10-02T16:04:47.2289117Z CC [M] drivers/net/wireless/ath/ath11k/ahb.o
2025-10-02T16:04:47.7557417Z CC [M] drivers/gpu/drm/nouveau/dispnv04/arb.o
2025-10-02T16:04:47.9827338Z CC [M] drivers/net/ipvlan/ipvlan_l3s.o
2025-10-02T16:04:48.1461477Z LD [M] drivers/net/ethernet/dec/tulip/tulip.o
2025-10-02T16:04:48.2276934Z AR drivers/net/ethernet/dec/built-in.a
2025-10-02T16:04:48.2807460Z CC [M] drivers/net/ethernet/emulex/benet/be_main.o
2025-10-02T16:04:48.6256865Z AR drivers/net/ethernet/emulex/built-in.a
2025-10-02T16:04:48.6776737Z CC [M] drivers/net/wireguard/main.o
2025-10-02T16:04:48.6881875Z CC [M] drivers/gpu/drm/nouveau/dispnv04/crtc.o
2025-10-02T16:04:48.7252250Z CC [M] drivers/net/wireless/ath/ath11k/mhi.o
2025-10-02T16:04:49.2634068Z CC [M] drivers/net/ipvlan/ipvtap.o
2025-10-02T16:04:49.8115998Z CC [M] drivers/net/wireguard/noise.o
2025-10-02T16:04:50.1794152Z CC [M] drivers/net/wireless/ath/ath11k/pci.o
2025-10-02T16:04:50.5715957Z CC [M] drivers/gpu/drm/nouveau/dispnv04/cursor.o
2025-10-02T16:04:50.6202039Z LD [M] drivers/net/ipvlan/ipvlan.o
2025-10-02T16:04:50.7115028Z CC [M] drivers/net/wireguard/device.o
2025-10-02T16:04:51.5368406Z LD [M] drivers/net/wireless/ath/ath11k/ath11k.o
2025-10-02T16:04:51.6837191Z CC [M] drivers/gpu/drm/nouveau/dispnv04/dac.o
2025-10-02T16:04:51.7132718Z CC [M] drivers/gpu/drm/nouveau/dispnv04/dfp.o
2025-10-02T16:04:52.0695990Z LD [M] drivers/net/wireless/ath/ath11k/ath11k_ahb.o
2025-10-02T16:04:52.0976811Z LD [M] drivers/net/wireless/ath/ath11k/ath11k_pci.o
2025-10-02T16:04:52.1858517Z CC [M] drivers/net/wireless/ath/hw.o
2025-10-02T16:04:52.2160475Z CC [M] drivers/net/wireguard/peer.o
2025-10-02T16:04:52.9418130Z CC [M] drivers/net/ethernet/emulex/benet/be_cmds.o
2025-10-02T16:04:53.1570474Z CC [M] drivers/net/wireguard/timers.o
2025-10-02T16:04:53.2832278Z CC [M] drivers/gpu/drm/nouveau/dispnv04/disp.o
2025-10-02T16:04:53.3117265Z CC [M] drivers/net/wireless/ath/key.o
2025-10-02T16:04:53.8150736Z CC [M] drivers/net/wireless/intel/ipw2x00/ipw2100.o
2025-10-02T16:04:54.4406249Z CC [M] drivers/net/wireguard/queueing.o
2025-10-02T16:04:54.6150595Z CC [M] drivers/gpu/drm/nouveau/dispnv04/hw.o
2025-10-02T16:04:54.8219769Z CC [M] drivers/net/wireless/ath/dfs_pattern_detector.o
2025-10-02T16:04:55.7134506Z CC [M] drivers/net/wireguard/send.o
2025-10-02T16:04:56.1206168Z CC [M] drivers/net/wireless/ath/dfs_pri_detector.o
2025-10-02T16:04:56.4765619Z CC [M] drivers/net/ethernet/emulex/benet/be_ethtool.o
2025-10-02T16:04:57.2739179Z CC [M] drivers/net/wireguard/receive.o
2025-10-02T16:04:57.2963597Z CC [M] drivers/gpu/drm/nouveau/dispnv04/overlay.o
2025-10-02T16:04:57.8071807Z LD [M] drivers/net/wireless/ath/ath.o
2025-10-02T16:04:57.9002045Z CC drivers/usb/common/common.o
2025-10-02T16:04:58.2395843Z CC [M] drivers/net/wireless/intel/ipw2x00/ipw2200.o
2025-10-02T16:04:58.6351074Z CC [M] drivers/net/ethernet/emulex/benet/be_roce.o
2025-10-02T16:04:58.6692156Z CC [M] drivers/gpu/drm/nouveau/dispnv04/tvmodesnv17.o
2025-10-02T16:04:58.8279289Z CC drivers/usb/common/debug.o
2025-10-02T16:04:59.0994719Z CC [M] drivers/net/wireguard/socket.o
2025-10-02T16:04:59.2338057Z CC drivers/usb/common/led.o
2025-10-02T16:04:59.6974781Z CC [M] drivers/usb/common/usb-conn-gpio.o
2025-10-02T16:04:59.7254138Z LD [M] drivers/net/ethernet/emulex/benet/be2net.o
2025-10-02T16:04:59.8084758Z AR drivers/net/ethernet/ezchip/built-in.a
2025-10-02T16:04:59.8466745Z AR drivers/net/ethernet/fujitsu/built-in.a
2025-10-02T16:04:59.8577662Z CC [M] drivers/net/ethernet/fujitsu/fmvj18x_cs.o
2025-10-02T16:05:00.1995965Z CC [M] drivers/gpu/drm/nouveau/dispnv04/tvnv04.o
2025-10-02T16:05:00.5686607Z CC [M] drivers/usb/common/ulpi.o
2025-10-02T16:05:00.7129239Z CC [M] drivers/net/wireguard/peerlookup.o
2025-10-02T16:05:01.2182240Z CC [M] drivers/net/ethernet/google/gve/gve_main.o
2025-10-02T16:05:01.2892128Z CC [M] drivers/gpu/drm/nouveau/dispnv04/tvnv17.o
2025-10-02T16:05:01.3473472Z AR drivers/usb/common/built-in.a
2025-10-02T16:05:01.3984199Z CC drivers/usb/core/usb.o
2025-10-02T16:05:01.9755117Z CC [M] drivers/net/wireguard/allowedips.o
2025-10-02T16:05:02.6628050Z CC drivers/usb/core/hub.o
2025-10-02T16:05:02.9124101Z CC [M] drivers/net/ethernet/google/gve/gve_tx.o
2025-10-02T16:05:03.0076801Z CC [M] drivers/gpu/drm/nouveau/dispnv50/disp.o
2025-10-02T16:05:03.3803222Z CC [M] drivers/net/wireguard/ratelimiter.o
2025-10-02T16:05:04.3378599Z CC [M] drivers/net/ethernet/google/gve/gve_rx.o
2025-10-02T16:05:04.8785654Z CC [M] drivers/net/wireguard/cookie.o
2025-10-02T16:05:05.3216098Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_module.o
2025-10-02T16:05:05.5586498Z CC [M] drivers/net/ethernet/google/gve/gve_ethtool.o
2025-10-02T16:05:05.5670706Z CC [M] drivers/gpu/drm/nouveau/dispnv50/lut.o
2025-10-02T16:05:06.3420997Z CC [M] drivers/net/wireguard/netlink.o
2025-10-02T16:05:06.4088783Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_tx.o
2025-10-02T16:05:06.4689180Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core.o
2025-10-02T16:05:06.8389192Z CC [M] drivers/net/ethernet/google/gve/gve_adminq.o
2025-10-02T16:05:06.8779658Z CC drivers/usb/core/hcd.o
2025-10-02T16:05:07.5491183Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core507d.o
2025-10-02T16:05:07.9350355Z LD [M] drivers/net/wireguard/wireguard.o
2025-10-02T16:05:07.9369384Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_rx.o
2025-10-02T16:05:08.0320223Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core827d.o
2025-10-02T16:05:08.1911457Z LD [M] drivers/net/ethernet/google/gve/gve.o
2025-10-02T16:05:08.2717736Z AR drivers/net/ethernet/google/built-in.a
2025-10-02T16:05:08.3801206Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_main.o
2025-10-02T16:05:08.5442114Z AR drivers/net/ethernet/huawei/built-in.a
2025-10-02T16:05:08.6009011Z CC [M] drivers/net/wireless/intel/iwlegacy/common.o
2025-10-02T16:05:08.8837345Z CC drivers/usb/core/urb.o
2025-10-02T16:05:09.1287979Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core907d.o
2025-10-02T16:05:09.8433795Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_wx.o
2025-10-02T16:05:10.0946693Z CC drivers/usb/core/message.o
2025-10-02T16:05:10.2461276Z CC [M] drivers/gpu/drm/nouveau/dispnv50/core917d.o
2025-10-02T16:05:10.2810414Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_tx.o
2025-10-02T16:05:11.1057786Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw_geo.o
2025-10-02T16:05:11.1977638Z CC [M] drivers/gpu/drm/nouveau/dispnv50/corec37d.o
2025-10-02T16:05:11.8521757Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_rx.o
2025-10-02T16:05:11.9794085Z CC drivers/usb/core/driver.o
2025-10-02T16:05:12.4009880Z LD [M] drivers/net/wireless/intel/ipw2x00/libipw.o
2025-10-02T16:05:12.4675979Z CC [M] drivers/gpu/drm/nouveau/dispnv50/corec57d.o
2025-10-02T16:05:12.4914868Z CC [M] drivers/gpu/drm/drm_dp_mst_topology.o
2025-10-02T16:05:12.9577859Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_port.o
2025-10-02T16:05:13.2927426Z CC [M] drivers/net/wireless/intel/iwlegacy/debug.o
2025-10-02T16:05:13.4041346Z CC drivers/usb/core/config.o
2025-10-02T16:05:13.5233543Z CC [M] drivers/gpu/drm/nouveau/dispnv50/crc.o
2025-10-02T16:05:14.6814034Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_dev.o
2025-10-02T16:05:14.7137641Z CC drivers/usb/core/file.o
2025-10-02T16:05:14.8308147Z CC [M] drivers/gpu/drm/nouveau/dispnv50/crc907d.o
2025-10-02T16:05:15.5573684Z CC [M] drivers/net/wireless/intel/iwlegacy/4965.o
2025-10-02T16:05:15.5588176Z CC drivers/usb/core/buffer.o
2025-10-02T16:05:15.9182427Z CC [M] drivers/gpu/drm/nouveau/dispnv50/crcc37d.o
2025-10-02T16:05:16.0237606Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_io.o
2025-10-02T16:05:16.0308772Z CC drivers/usb/core/sysfs.o
2025-10-02T16:05:16.3294605Z CC [M] drivers/net/wireless/intel/iwlegacy/4965-mac.o
2025-10-02T16:05:16.9186724Z CC [M] drivers/gpu/drm/nouveau/dispnv50/dac507d.o
2025-10-02T16:05:17.2404999Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_qp.o
2025-10-02T16:05:17.2870894Z CC drivers/usb/core/endpoint.o
2025-10-02T16:05:17.8043247Z CC [M] drivers/gpu/drm/nouveau/dispnv50/dac907d.o
2025-10-02T16:05:17.8895137Z CC [M] drivers/net/wireless/intersil/hostap/hostap_80211_rx.o
2025-10-02T16:05:17.9954029Z CC drivers/usb/core/devio.o
2025-10-02T16:05:18.1670691Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_cmdq.o
2025-10-02T16:05:18.8946481Z CC [M] drivers/gpu/drm/nouveau/dispnv50/pior507d.o
2025-10-02T16:05:19.3598832Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_wq.o
2025-10-02T16:05:19.4320166Z CC [M] drivers/net/wireless/intersil/hostap/hostap_80211_tx.o
2025-10-02T16:05:20.0004531Z CC [M] drivers/gpu/drm/nouveau/dispnv50/sor507d.o
2025-10-02T16:05:20.4344155Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_mgmt.o
2025-10-02T16:05:20.5236308Z CC [M] drivers/net/wireless/intersil/hostap/hostap_ap.o
2025-10-02T16:05:20.5970932Z CC drivers/usb/core/notify.o
2025-10-02T16:05:21.1895088Z CC [M] drivers/gpu/drm/nouveau/dispnv50/sor907d.o
2025-10-02T16:05:21.1986705Z CC drivers/usb/core/generic.o
2025-10-02T16:05:21.7057033Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_api_cmd.o
2025-10-02T16:05:21.7508572Z CC [M] drivers/net/wireless/intel/iwlegacy/4965-rs.o
2025-10-02T16:05:21.9010852Z CC drivers/usb/core/quirks.o
2025-10-02T16:05:22.2955365Z CC [M] drivers/gpu/drm/nouveau/dispnv50/sorc37d.o
2025-10-02T16:05:22.7345695Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_eqs.o
2025-10-02T16:05:22.8108862Z CC drivers/usb/core/devices.o
2025-10-02T16:05:23.0097066Z CC [M] drivers/net/wireless/intersil/hostap/hostap_info.o
2025-10-02T16:05:23.1973048Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head.o
2025-10-02T16:05:23.8366956Z CC drivers/usb/core/phy.o
2025-10-02T16:05:24.0287969Z CC [M] drivers/net/wireless/intersil/hostap/hostap_ioctl.o
2025-10-02T16:05:24.3636384Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_if.o
2025-10-02T16:05:24.4735446Z CC [M] drivers/net/wireless/intel/iwlegacy/4965-calib.o
2025-10-02T16:05:24.6895815Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head507d.o
2025-10-02T16:05:24.7632441Z CC drivers/usb/core/port.o
2025-10-02T16:05:24.9689655Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_common.o
2025-10-02T16:05:25.0887428Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_ethtool.o
2025-10-02T16:05:25.6640404Z CC drivers/usb/core/hcd-pci.o
2025-10-02T16:05:26.0240746Z CC [M] drivers/net/wireless/intel/iwlegacy/4965-debug.o
2025-10-02T16:05:26.2542821Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head827d.o
2025-10-02T16:05:26.6145391Z CC [M] drivers/net/wireless/intersil/hostap/hostap_main.o
2025-10-02T16:05:26.8279769Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_devlink.o
2025-10-02T16:05:26.8326637Z CC drivers/usb/core/usb-acpi.o
2025-10-02T16:05:27.4201036Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head907d.o
2025-10-02T16:05:27.6305106Z CC [M] drivers/net/wireless/intel/iwlegacy/3945-mac.o
2025-10-02T16:05:27.7452111Z CC [M] drivers/usb/core/ledtrig-usbport.o
2025-10-02T16:05:27.9794041Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_hw_mbox.o
2025-10-02T16:05:28.1021116Z CC [M] drivers/net/wireless/intersil/hostap/hostap_proc.o
2025-10-02T16:05:28.7143833Z AR drivers/usb/core/built-in.a
2025-10-02T16:05:28.8012816Z CC drivers/usb/phy/phy.o
2025-10-02T16:05:28.8815904Z CC [M] drivers/gpu/drm/nouveau/dispnv50/head917d.o
2025-10-02T16:05:29.1574559Z CC [M] drivers/net/wireless/intersil/hostap/hostap_cs.o
2025-10-02T16:05:29.3414516Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_sriov.o
2025-10-02T16:05:29.7689000Z CC [M] drivers/usb/phy/phy-generic.o
2025-10-02T16:05:30.0156728Z CC [M] drivers/gpu/drm/nouveau/dispnv50/headc37d.o
2025-10-02T16:05:30.7119144Z CC [M] drivers/usb/phy/phy-tahvo.o
2025-10-02T16:05:30.7933985Z CC [M] drivers/net/ethernet/huawei/hinic/hinic_debugfs.o
2025-10-02T16:05:31.0355064Z CC [M] drivers/net/wireless/intel/iwlegacy/3945.o
2025-10-02T16:05:31.3822033Z CC [M] drivers/gpu/drm/nouveau/dispnv50/headc57d.o
2025-10-02T16:05:31.6907150Z CC [M] drivers/usb/phy/phy-gpio-vbus-usb.o
2025-10-02T16:05:32.0162650Z LD [M] drivers/net/ethernet/huawei/hinic/hinic.o
2025-10-02T16:05:32.1363502Z CC [M] drivers/net/wireless/intersil/hostap/hostap_plx.o
2025-10-02T16:05:32.1682586Z CC [M] drivers/net/ethernet/intel/e1000/e1000_main.o
2025-10-02T16:05:32.5727983Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wimm.o
2025-10-02T16:05:32.6030066Z CC [M] drivers/usb/phy/phy-isp1301.o
2025-10-02T16:05:33.3686679Z AR drivers/usb/phy/built-in.a
2025-10-02T16:05:33.4387204Z CC drivers/usb/host/pci-quirks.o
2025-10-02T16:05:33.4912513Z CC [M] drivers/net/wireless/intel/iwlegacy/3945-rs.o
2025-10-02T16:05:33.5473979Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wimmc37b.o
2025-10-02T16:05:34.5883925Z CC drivers/usb/host/ehci-hcd.o
2025-10-02T16:05:34.7116307Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wndw.o
2025-10-02T16:05:35.2493474Z CC [M] drivers/net/wireless/intel/iwlegacy/3945-debug.o
2025-10-02T16:05:35.4210445Z CC [M] drivers/net/wireless/intersil/hostap/hostap_pci.o
2025-10-02T16:05:35.9273982Z CC [M] drivers/net/ethernet/intel/e1000/e1000_hw.o
2025-10-02T16:05:36.2099788Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wndwc37e.o
2025-10-02T16:05:37.0307567Z LD [M] drivers/net/wireless/intel/iwlegacy/iwlegacy.o
2025-10-02T16:05:37.0862278Z LD [M] drivers/net/wireless/intel/iwlegacy/iwl4965.o
2025-10-02T16:05:37.1691047Z LD [M] drivers/net/wireless/intel/iwlegacy/iwl3945.o
2025-10-02T16:05:37.3363288Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/main.o
2025-10-02T16:05:37.3803055Z CC [M] drivers/gpu/drm/nouveau/dispnv50/wndwc57e.o
2025-10-02T16:05:38.5387309Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base.o
2025-10-02T16:05:38.5578345Z LD [M] drivers/net/wireless/intersil/hostap/hostap.o
2025-10-02T16:05:38.6230051Z CC [M] drivers/net/ethernet/intel/e1000/e1000_ethtool.o
2025-10-02T16:05:38.6520056Z CC [M] drivers/net/wireless/intersil/orinoco/main.o
2025-10-02T16:05:39.4911126Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/rs.o
2025-10-02T16:05:39.6748987Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base507c.o
2025-10-02T16:05:39.8164207Z CC drivers/usb/host/ehci-pci.o
2025-10-02T16:05:40.6003181Z CC drivers/usb/host/ohci-hcd.o
2025-10-02T16:05:40.6971251Z CC [M] drivers/net/wireless/intersil/orinoco/fw.o
2025-10-02T16:05:40.7612725Z CC [M] drivers/net/ethernet/intel/e1000/e1000_param.o
2025-10-02T16:05:40.8265430Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base827c.o
2025-10-02T16:05:41.9211940Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base907c.o
2025-10-02T16:05:42.0623923Z CC [M] drivers/net/wireless/intersil/orinoco/hw.o
2025-10-02T16:05:42.1422491Z LD [M] drivers/net/ethernet/intel/e1000/e1000.o
2025-10-02T16:05:42.2724567Z CC [M] drivers/net/ethernet/intel/e1000e/82571.o
2025-10-02T16:05:42.5142287Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/mac80211.o
2025-10-02T16:05:43.0922792Z CC [M] drivers/gpu/drm/nouveau/dispnv50/base917c.o
2025-10-02T16:05:43.4904505Z CC [M] drivers/net/wireless/intersil/orinoco/mic.o
2025-10-02T16:05:43.7475374Z CC drivers/usb/host/ohci-pci.o
2025-10-02T16:05:43.9210174Z CC [M] drivers/net/ethernet/intel/e1000e/ich8lan.o
2025-10-02T16:05:44.1751029Z CC [M] drivers/gpu/drm/nouveau/dispnv50/curs.o
2025-10-02T16:05:44.3387263Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/ucode.o
2025-10-02T16:05:44.6511864Z CC drivers/usb/host/uhci-hcd.o
2025-10-02T16:05:44.7199982Z CC [M] drivers/net/wireless/intersil/orinoco/scan.o
2025-10-02T16:05:45.2692859Z CC [M] drivers/gpu/drm/nouveau/dispnv50/curs507a.o
2025-10-02T16:05:45.8402453Z CC [M] drivers/net/wireless/intersil/orinoco/wext.o
2025-10-02T16:05:45.8966578Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/tx.o
2025-10-02T16:05:46.4793274Z CC [M] drivers/gpu/drm/nouveau/dispnv50/curs907a.o
2025-10-02T16:05:46.5293780Z CC [M] drivers/net/ethernet/intel/e1000e/80003es2lan.o
2025-10-02T16:05:47.4931120Z CC [M] drivers/gpu/drm/nouveau/dispnv50/cursc37a.o
2025-10-02T16:05:47.6277488Z CC drivers/usb/host/xhci.o
2025-10-02T16:05:47.7661410Z CC [M] drivers/net/wireless/intersil/orinoco/hermes_dld.o
2025-10-02T16:05:47.9998393Z CC [M] drivers/net/ethernet/intel/e1000e/mac.o
2025-10-02T16:05:48.0436698Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/lib.o
2025-10-02T16:05:48.3704408Z CC [M] drivers/gpu/drm/nouveau/dispnv50/oimm.o
2025-10-02T16:05:48.5699235Z CC [M] drivers/net/wireless/intersil/orinoco/hermes.o
2025-10-02T16:05:49.4100803Z CC [M] drivers/gpu/drm/nouveau/dispnv50/oimm507b.o
2025-10-02T16:05:49.6576897Z CC [M] drivers/net/ethernet/intel/e1000e/manage.o
2025-10-02T16:05:49.6711816Z CC [M] drivers/net/wireless/intersil/orinoco/cfg.o
2025-10-02T16:05:49.7964347Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/calib.o
2025-10-02T16:05:50.4975154Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly.o
2025-10-02T16:05:50.6323010Z CC [M] drivers/net/ethernet/intel/e1000e/nvm.o
2025-10-02T16:05:50.8785220Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_cs.o
2025-10-02T16:05:51.3528321Z CC drivers/usb/host/xhci-mem.o
2025-10-02T16:05:51.6206680Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/tt.o
2025-10-02T16:05:51.6914338Z CC [M] drivers/net/ethernet/intel/e1000e/phy.o
2025-10-02T16:05:51.8655834Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly507e.o
2025-10-02T16:05:51.9029841Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_plx.o
2025-10-02T16:05:52.9951590Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly827e.o
2025-10-02T16:05:53.0814506Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_pci.o
2025-10-02T16:05:53.3650409Z CC [M] drivers/net/ethernet/intel/e1000e/param.o
2025-10-02T16:05:53.3980966Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/sta.o
2025-10-02T16:05:53.7927218Z CC drivers/usb/host/xhci-ext-caps.o
2025-10-02T16:05:54.0528345Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_tmd.o
2025-10-02T16:05:54.0734474Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly907e.o
2025-10-02T16:05:54.3669760Z CC drivers/usb/host/xhci-ring.o
2025-10-02T16:05:54.7081089Z CC [M] drivers/net/ethernet/intel/e1000e/ethtool.o
2025-10-02T16:05:54.9786420Z CC [M] drivers/gpu/drm/nouveau/dispnv50/ovly917e.o
2025-10-02T16:05:55.1193526Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_nortel.o
2025-10-02T16:05:55.5585165Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/rx.o
2025-10-02T16:05:55.7856109Z CC [M] drivers/gpu/drm/nouveau/nouveau_abi16.o
2025-10-02T16:05:56.1726367Z CC [M] drivers/net/wireless/intersil/orinoco/spectrum_cs.o
2025-10-02T16:05:56.7670392Z CC [M] drivers/net/ethernet/intel/e1000e/netdev.o
2025-10-02T16:05:56.9704553Z CC [M] drivers/gpu/drm/nouveau/nouveau_chan.o
2025-10-02T16:05:57.4788052Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_usb.o
2025-10-02T16:05:57.6111012Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/power.o
2025-10-02T16:05:57.8943684Z CC drivers/usb/host/xhci-hub.o
2025-10-02T16:05:58.4062717Z CC [M] drivers/gpu/drm/nouveau/nouveau_dma.o
2025-10-02T16:05:59.2868693Z LD [M] drivers/net/wireless/intersil/orinoco/orinoco.o
2025-10-02T16:05:59.3411595Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/scan.o
2025-10-02T16:05:59.4264550Z CC [M] drivers/net/wireless/intersil/p54/eeprom.o
2025-10-02T16:05:59.7252020Z CC [M] drivers/gpu/drm/nouveau/nouveau_fence.o
2025-10-02T16:06:00.0655249Z CC drivers/usb/host/xhci-dbg.o
2025-10-02T16:06:00.6928656Z CC drivers/usb/host/xhci-trace.o
2025-10-02T16:06:01.0454538Z CC [M] drivers/gpu/drm/nouveau/nv04_fence.o
2025-10-02T16:06:01.0986463Z CC [M] drivers/net/wireless/intersil/p54/fwio.o
2025-10-02T16:06:01.1228629Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/rxon.o
2025-10-02T16:06:01.9037544Z CC [M] drivers/net/ethernet/intel/e1000e/ptp.o
2025-10-02T16:06:02.1695387Z CC [M] drivers/gpu/drm/nouveau/nv10_fence.o
2025-10-02T16:06:02.8586393Z CC [M] drivers/net/wireless/intersil/p54/txrx.o
2025-10-02T16:06:02.9558773Z LD [M] drivers/net/ethernet/intel/e1000e/e1000e.o
2025-10-02T16:06:03.0312834Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/devices.o
2025-10-02T16:06:03.0660021Z CC drivers/usb/host/xhci-debugfs.o
2025-10-02T16:06:03.1181287Z CC [M] drivers/net/ethernet/intel/igb/igb_main.o
2025-10-02T16:06:03.2930263Z CC [M] drivers/gpu/drm/nouveau/nv17_fence.o
2025-10-02T16:06:04.3455259Z CC [M] drivers/gpu/drm/nouveau/nv50_fence.o
2025-10-02T16:06:04.3927999Z CC [M] drivers/usb/host/ehci-platform.o
2025-10-02T16:06:04.4189371Z CC [M] drivers/net/wireless/intersil/p54/main.o
2025-10-02T16:06:04.4811295Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/led.o
2025-10-02T16:06:05.2690870Z CC [M] drivers/gpu/drm/nouveau/nv84_fence.o
2025-10-02T16:06:05.7422477Z CC [M] drivers/usb/host/oxu210hp-hcd.o
2025-10-02T16:06:05.8045317Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/debugfs.o
2025-10-02T16:06:05.9575152Z CC [M] drivers/net/wireless/intersil/p54/led.o
2025-10-02T16:06:06.5697572Z CC [M] drivers/gpu/drm/nouveau/nvc0_fence.o
2025-10-02T16:06:07.1036064Z CC [M] drivers/net/wireless/intersil/p54/p54usb.o
2025-10-02T16:06:07.6002588Z LD [M] drivers/gpu/drm/nouveau/nouveau.o
2025-10-02T16:06:08.3650591Z LD [M] drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.o
2025-10-02T16:06:08.4772274Z CC [M] drivers/usb/host/isp116x-hcd.o
2025-10-02T16:06:08.5514653Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/fw.o
2025-10-02T16:06:08.9133674Z CC [M] drivers/net/wireless/intersil/p54/p54pci.o
2025-10-02T16:06:09.4593635Z CC [M] drivers/gpu/drm/drm_atomic_helper.o
2025-10-02T16:06:09.6064346Z CC [M] drivers/net/ethernet/intel/igb/igb_ethtool.o
2025-10-02T16:06:10.4805067Z CC [M] drivers/net/wireless/intersil/p54/p54spi.o
2025-10-02T16:06:10.7057366Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/mac80211.o
2025-10-02T16:06:10.7813390Z CC [M] drivers/usb/host/ohci-platform.o
2025-10-02T16:06:11.6631510Z CC [M] drivers/usb/host/xhci-pci.o
2025-10-02T16:06:11.9412119Z CC [M] drivers/gpu/drm/drm_kms_helper_common.o
2025-10-02T16:06:12.0360833Z LD [M] drivers/net/wireless/intersil/p54/p54common.o
2025-10-02T16:06:12.1164310Z CC [M] drivers/net/wireless/intersil/prism54/islpci_eth.o
2025-10-02T16:06:12.3342064Z CC [M] drivers/net/ethernet/intel/igb/e1000_82575.o
2025-10-02T16:06:12.6606700Z CC [M] drivers/gpu/drm/drm_dp_dual_mode_helper.o
2025-10-02T16:06:12.8222399Z CC [M] drivers/usb/host/xhci-pci-renesas.o
2025-10-02T16:06:13.2462467Z CC [M] drivers/net/wireless/intersil/prism54/islpci_mgt.o
2025-10-02T16:06:13.3831830Z CC [M] drivers/gpu/drm/drm_simple_kms_helper.o
2025-10-02T16:06:14.1702611Z CC [M] drivers/usb/host/xhci-plat.o
2025-10-02T16:06:14.2798027Z CC [M] drivers/net/ethernet/intel/igb/e1000_mac.o
2025-10-02T16:06:14.2840748Z CC [M] drivers/gpu/drm/drm_modeset_helper.o
2025-10-02T16:06:14.4002999Z CC [M] drivers/net/wireless/intersil/prism54/isl_38xx.o
2025-10-02T16:06:14.4744463Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/nvm.o
2025-10-02T16:06:15.0143541Z CC [M] drivers/gpu/drm/drm_scdc_helper.o
2025-10-02T16:06:15.2801647Z CC [M] drivers/net/wireless/intersil/prism54/isl_ioctl.o
2025-10-02T16:06:15.5214305Z CC [M] drivers/usb/host/sl811-hcd.o
2025-10-02T16:06:15.6833641Z CC [M] drivers/gpu/drm/drm_gem_framebuffer_helper.o
2025-10-02T16:06:15.8323923Z CC [M] drivers/net/ethernet/intel/igb/e1000_nvm.o
2025-10-02T16:06:16.4002468Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/ops.o
2025-10-02T16:06:16.7374440Z CC [M] drivers/gpu/drm/drm_atomic_state_helper.o
2025-10-02T16:06:16.8377800Z CC [M] drivers/usb/host/sl811_cs.o
2025-10-02T16:06:17.3688070Z CC [M] drivers/net/wireless/intersil/prism54/islpci_dev.o
2025-10-02T16:06:17.3693615Z CC [M] drivers/net/ethernet/intel/igb/e1000_phy.o
2025-10-02T16:06:17.5745768Z CC [M] drivers/usb/host/u132-hcd.o
2025-10-02T16:06:17.7014075Z CC [M] drivers/gpu/drm/drm_damage_helper.o
2025-10-02T16:06:18.2893887Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/phy-ctxt.o
2025-10-02T16:06:18.5686572Z CC [M] drivers/net/wireless/intersil/prism54/islpci_hotplug.o
2025-10-02T16:06:18.6606948Z CC [M] drivers/gpu/drm/drm_format_helper.o
2025-10-02T16:06:19.1503067Z CC [M] drivers/net/ethernet/intel/igb/e1000_mbx.o
2025-10-02T16:06:19.3341982Z CC [M] drivers/gpu/drm/drm_self_refresh_helper.o
2025-10-02T16:06:19.4960418Z CC [M] drivers/net/wireless/intersil/prism54/oid_mgt.o
2025-10-02T16:06:19.7560918Z CC [M] drivers/usb/host/r8a66597-hcd.o
2025-10-02T16:06:20.1557116Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/mac-ctxt.o
2025-10-02T16:06:20.1680707Z CC [M] drivers/net/ethernet/intel/igb/e1000_i210.o
2025-10-02T16:06:20.2870887Z CC [M] drivers/gpu/drm/bridge/panel.o
2025-10-02T16:06:20.8753010Z LD [M] drivers/net/wireless/intersil/prism54/prism54.o
2025-10-02T16:06:20.9647195Z AR drivers/net/wireless/intersil/built-in.a
2025-10-02T16:06:21.0341767Z CC [M] drivers/net/ethernet/intel/igc/igc_main.o
2025-10-02T16:06:21.3498051Z CC [M] drivers/net/ethernet/intel/igb/igb_ptp.o
2025-10-02T16:06:21.4951264Z CC [M] drivers/gpu/drm/drm_fb_helper.o
2025-10-02T16:06:22.1939115Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/utils.o
2025-10-02T16:06:22.2383684Z CC [M] drivers/usb/host/fsl-mph-dr-of.o
2025-10-02T16:06:22.9505220Z CC [M] drivers/net/ethernet/intel/igb/igb_hwmon.o
2025-10-02T16:06:22.9640193Z CC [M] drivers/usb/host/ehci-fsl.o
2025-10-02T16:06:23.1851548Z CC [M] drivers/gpu/drm/drm_fb_cma_helper.o
2025-10-02T16:06:23.8316138Z CC [M] drivers/gpu/drm/drm_dp_aux_dev.o
2025-10-02T16:06:24.0796004Z CC [M] drivers/usb/host/bcma-hcd.o
2025-10-02T16:06:24.1105173Z LD [M] drivers/net/ethernet/intel/igb/igb.o
2025-10-02T16:06:24.2486896Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/rx.o
2025-10-02T16:06:24.3657076Z CC [M] drivers/net/team/team.o
2025-10-02T16:06:24.7641250Z CC [M] drivers/gpu/drm/drm_dp_cec.o
2025-10-02T16:06:24.8768053Z CC [M] drivers/usb/host/ssb-hcd.o
2025-10-02T16:06:25.0174512Z CC [M] drivers/net/ethernet/intel/igc/igc_mac.o
2025-10-02T16:06:25.6911179Z CC [M] drivers/usb/host/fotg210-hcd.o
2025-10-02T16:06:25.6956150Z CC [M] drivers/gpu/drm/drm_auth.o
2025-10-02T16:06:26.0860332Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/rxmq.o
2025-10-02T16:06:26.3271288Z CC [M] drivers/net/ethernet/intel/igc/igc_i225.o
2025-10-02T16:06:26.5356627Z CC [M] drivers/gpu/drm/drm_cache.o
2025-10-02T16:06:26.8437867Z CC [M] drivers/net/team/team_mode_broadcast.o
2025-10-02T16:06:27.3711191Z CC [M] drivers/gpu/drm/drm_file.o
2025-10-02T16:06:27.6202253Z CC [M] drivers/net/ethernet/intel/igc/igc_base.o
2025-10-02T16:06:27.8893356Z CC [M] drivers/net/team/team_mode_roundrobin.o
2025-10-02T16:06:28.5328549Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/tx.o
2025-10-02T16:06:28.7092651Z CC [M] drivers/net/ethernet/intel/igc/igc_nvm.o
2025-10-02T16:06:28.8266041Z CC [M] drivers/gpu/drm/drm_gem.o
2025-10-02T16:06:28.9461658Z CC [M] drivers/net/team/team_mode_random.o
2025-10-02T16:06:29.1590917Z CC [M] drivers/usb/host/max3421-hcd.o
2025-10-02T16:06:29.6719275Z CC [M] drivers/net/ethernet/intel/igc/igc_phy.o
2025-10-02T16:06:29.9449429Z CC [M] drivers/net/team/team_mode_activebackup.o
2025-10-02T16:06:30.3077683Z CC [M] drivers/gpu/drm/drm_ioctl.o
2025-10-02T16:06:30.3627087Z LD [M] drivers/usb/host/xhci-plat-hcd.o
2025-10-02T16:06:30.3771588Z AR drivers/usb/host/built-in.a
2025-10-02T16:06:30.5110339Z AR drivers/usb/storage/built-in.a
2025-10-02T16:06:30.5227845Z CC [M] drivers/usb/storage/uas.o
2025-10-02T16:06:30.9418526Z CC [M] drivers/net/ethernet/intel/igc/igc_diag.o
2025-10-02T16:06:31.1015544Z CC [M] drivers/net/team/team_mode_loadbalance.o
2025-10-02T16:06:31.3233667Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/binding.o
2025-10-02T16:06:31.4034289Z CC [M] drivers/gpu/drm/drm_irq.o
2025-10-02T16:06:31.8048838Z CC [M] drivers/usb/storage/scsiglue.o
2025-10-02T16:06:31.9382278Z CC [M] drivers/net/ethernet/intel/igc/igc_ethtool.o
2025-10-02T16:06:32.2271290Z CC [M] drivers/gpu/drm/drm_memory.o
2025-10-02T16:06:32.3856018Z CC [M] drivers/net/ethernet/intel/igc/igc_ptp.o
2025-10-02T16:06:32.9440037Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/quota.o
2025-10-02T16:06:32.9455800Z CC [M] drivers/gpu/drm/drm_drv.o
2025-10-02T16:06:32.9575180Z CC [M] drivers/usb/storage/protocol.o
2025-10-02T16:06:33.5047080Z CC [M] drivers/net/vxlan/vxlan_core.o
2025-10-02T16:06:33.8844054Z CC [M] drivers/usb/storage/transport.o
2025-10-02T16:06:33.9432424Z CC [M] drivers/net/ethernet/intel/igc/igc_dump.o
2025-10-02T16:06:34.1527623Z CC [M] drivers/gpu/drm/drm_sysfs.o
2025-10-02T16:06:34.5157633Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/sta.o
2025-10-02T16:06:35.0990088Z CC [M] drivers/net/ethernet/intel/igc/igc_tsn.o
2025-10-02T16:06:35.1600666Z CC [M] drivers/usb/storage/usb.o
2025-10-02T16:06:35.1968478Z CC [M] drivers/gpu/drm/drm_hashtab.o
2025-10-02T16:06:35.9246807Z CC [M] drivers/gpu/drm/drm_mm.o
2025-10-02T16:06:36.2740836Z LD [M] drivers/net/ethernet/intel/igc/igc.o
2025-10-02T16:06:36.2975899Z CC [M] drivers/usb/storage/initializers.o
2025-10-02T16:06:36.4297643Z CC [M] drivers/net/ethernet/intel/igbvf/vf.o
2025-10-02T16:06:36.9540366Z CC [M] drivers/gpu/drm/drm_crtc.o
2025-10-02T16:06:37.2856834Z CC [M] drivers/usb/storage/sierra_ms.o
2025-10-02T16:06:37.3955869Z CC [M] drivers/net/ethernet/intel/igbvf/mbx.o
2025-10-02T16:06:37.9142503Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/sf.o
2025-10-02T16:06:38.0381356Z LD [M] drivers/net/vxlan/vxlan.o
2025-10-02T16:06:38.0823492Z CC [M] drivers/usb/storage/option_ms.o
2025-10-02T16:06:38.0846039Z AR drivers/net/wireless/intel/built-in.a
2025-10-02T16:06:38.1393098Z CC [M] drivers/net/wireless/marvell/libertas/cfg.o
2025-10-02T16:06:38.1523039Z CC [M] drivers/net/ethernet/intel/igbvf/ethtool.o
2025-10-02T16:06:38.2594883Z CC [M] drivers/gpu/drm/drm_fourcc.o
2025-10-02T16:06:38.7898408Z CC [M] drivers/gpu/drm/drm_modes.o
2025-10-02T16:06:38.8739773Z In file included from ./include/linux/kernel.h:15,
2025-10-02T16:06:38.8740837Z from ./include/asm-generic/bug.h:20,
2025-10-02T16:06:38.8741730Z from ./arch/x86/include/asm/bug.h:93,
2025-10-02T16:06:38.8742647Z from ./include/linux/bug.h:5,
2025-10-02T16:06:38.8743551Z from ./include/linux/mmdebug.h:5,
2025-10-02T16:06:38.8744543Z from ./include/linux/percpu.h:5,
2025-10-02T16:06:38.8745562Z from ./include/linux/context_tracking_state.h:5,
2025-10-02T16:06:38.8746579Z from ./include/linux/hardirq.h:5,
2025-10-02T16:06:38.8747563Z from drivers/net/wireless/marvell/libertas/cfg.c:12:
2025-10-02T16:06:38.8749004Z drivers/net/wireless/marvell/libertas/cfg.c: In function ‘lbs_associate’:
2025-10-02T16:06:38.8751175Z ./include/linux/minmax.h:20:35: warning: comparison of distinct pointer types lacks a cast [-Wcompare-distinct-pointer-types]
2025-10-02T16:06:38.8753378Z 20 | (!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
2025-10-02T16:06:38.8754755Z | ^~
2025-10-02T16:06:38.8756213Z ./include/linux/minmax.h:26:18: note: in expansion of macro ‘__typecheck’
2025-10-02T16:06:38.8757548Z 26 | (__typecheck(x, y) && __no_side_effects(x, y))
2025-10-02T16:06:38.8758669Z | ^~~~~~~~~~~
2025-10-02T16:06:38.8760202Z ./include/linux/minmax.h:36:31: note: in expansion of macro ‘__safe_cmp’
2025-10-02T16:06:38.8762051Z 36 | __builtin_choose_expr(__safe_cmp(x, y), \
2025-10-02T16:06:38.8763105Z | ^~~~~~~~~~
2025-10-02T16:06:38.8764452Z ./include/linux/minmax.h:45:25: note: in expansion of macro ‘__careful_cmp’
2025-10-02T16:06:38.8765714Z 45 | #define min(x, y) __careful_cmp(x, y, <)
2025-10-02T16:06:38.8766762Z | ^~~~~~~~~~~~~
2025-10-02T16:06:38.8768202Z drivers/net/wireless/marvell/libertas/cfg.c:1106:32: note: in expansion of macro ‘min’
2025-10-02T16:06:38.8769819Z 1106 | u32 ssid_len = min(ssid_eid[1], IEEE80211_MAX_SSID_LEN);
2025-10-02T16:06:38.8770940Z | ^~~
2025-10-02T16:06:38.9343599Z CC [M] drivers/usb/storage/usual-tables.o
2025-10-02T16:06:39.3466436Z CC [M] drivers/net/ethernet/intel/igbvf/netdev.o
2025-10-02T16:06:39.5482373Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/scan.o
2025-10-02T16:06:39.5621699Z CC [M] drivers/usb/storage/alauda.o
2025-10-02T16:06:39.7569828Z CC [M] drivers/net/wireless/marvell/libertas/cmd.o
2025-10-02T16:06:40.5072718Z CC [M] drivers/gpu/drm/drm_edid.o
2025-10-02T16:06:40.8187120Z CC [M] drivers/usb/storage/cypress_atacb.o
2025-10-02T16:06:41.1957442Z CC [M] drivers/net/wireless/marvell/libertas/cmdresp.o
2025-10-02T16:06:41.6134697Z CC [M] drivers/usb/storage/datafab.o
2025-10-02T16:06:41.6665639Z LD [M] drivers/net/ethernet/intel/igbvf/igbvf.o
2025-10-02T16:06:41.7202171Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_main.o
2025-10-02T16:06:42.3436352Z CC [M] drivers/net/wireless/marvell/libertas/debugfs.o
2025-10-02T16:06:42.3953737Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/time-event.o
2025-10-02T16:06:42.4816584Z CC [M] drivers/usb/storage/ene_ub6250.o
2025-10-02T16:06:43.5553737Z CC [M] drivers/net/wireless/marvell/libertas/ethtool.o
2025-10-02T16:06:44.1541207Z CC [M] drivers/usb/storage/freecom.o
2025-10-02T16:06:44.1919259Z CC [M] drivers/gpu/drm/drm_encoder_slave.o
2025-10-02T16:06:44.3927870Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/rs.o
2025-10-02T16:06:44.4276103Z CC [M] drivers/net/wireless/marvell/libertas/main.o
2025-10-02T16:06:45.0134524Z CC [M] drivers/usb/storage/isd200.o
2025-10-02T16:06:45.2586521Z CC [M] drivers/gpu/drm/drm_trace_points.o
2025-10-02T16:06:45.8031321Z CC [M] drivers/net/wireless/marvell/libertas/rx.o
2025-10-02T16:06:46.1445739Z CC [M] drivers/gpu/drm/drm_prime.o
2025-10-02T16:06:46.2064090Z CC [M] drivers/usb/storage/jumpshot.o
2025-10-02T16:06:46.7600471Z CC [M] drivers/net/wireless/marvell/libertas/tx.o
2025-10-02T16:06:47.2532205Z CC [M] drivers/usb/storage/karma.o
2025-10-02T16:06:47.3309924Z CC [M] drivers/gpu/drm/drm_rect.o
2025-10-02T16:06:47.6974308Z CC [M] drivers/net/wireless/marvell/libertas/firmware.o
2025-10-02T16:06:47.9176859Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/rs-fw.o
2025-10-02T16:06:48.0495236Z CC [M] drivers/usb/storage/onetouch.o
2025-10-02T16:06:48.1485233Z CC [M] drivers/gpu/drm/drm_vma_manager.o
2025-10-02T16:06:48.4227132Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_common.o
2025-10-02T16:06:48.6735882Z CC [M] drivers/net/wireless/marvell/libertas/mesh.o
2025-10-02T16:06:48.8706411Z CC [M] drivers/gpu/drm/drm_flip_work.o
2025-10-02T16:06:48.9500367Z CC [M] drivers/usb/storage/realtek_cr.o
2025-10-02T16:06:49.7769267Z CC [M] drivers/gpu/drm/drm_modeset_lock.o
2025-10-02T16:06:49.8220454Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/power.o
2025-10-02T16:06:49.8938285Z CC [M] drivers/net/wireless/marvell/libertas/if_usb.o
2025-10-02T16:06:50.1219179Z CC [M] drivers/usb/storage/sddr09.o
2025-10-02T16:06:50.8343634Z CC [M] drivers/gpu/drm/drm_atomic.o
2025-10-02T16:06:51.1088883Z CC [M] drivers/net/wireless/marvell/libertas/if_cs.o
2025-10-02T16:06:51.1878582Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.o
2025-10-02T16:06:51.6288255Z CC [M] drivers/usb/storage/sddr55.o
2025-10-02T16:06:51.8367179Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/coex.o
2025-10-02T16:06:52.3096048Z CC [M] drivers/net/wireless/marvell/libertas/if_sdio.o
2025-10-02T16:06:52.4575124Z CC [M] drivers/gpu/drm/drm_bridge.o
2025-10-02T16:06:52.7981403Z CC [M] drivers/usb/storage/shuttle_usbat.o
2025-10-02T16:06:53.3582285Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/tt.o
2025-10-02T16:06:53.6142880Z CC [M] drivers/gpu/drm/drm_framebuffer.o
2025-10-02T16:06:53.6851622Z CC [M] drivers/net/wireless/marvell/libertas/if_spi.o
2025-10-02T16:06:53.9372616Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_82599.o
2025-10-02T16:06:54.3784492Z LD [M] drivers/usb/storage/usb-storage.o
2025-10-02T16:06:54.4055340Z LD [M] drivers/usb/storage/ums-alauda.o
2025-10-02T16:06:54.4194123Z LD [M] drivers/usb/storage/ums-cypress.o
2025-10-02T16:06:54.4335093Z LD [M] drivers/usb/storage/ums-datafab.o
2025-10-02T16:06:54.4474508Z LD [M] drivers/usb/storage/ums-eneub6250.o
2025-10-02T16:06:54.4618979Z LD [M] drivers/usb/storage/ums-freecom.o
2025-10-02T16:06:54.4762521Z LD [M] drivers/usb/storage/ums-isd200.o
2025-10-02T16:06:54.4920934Z LD [M] drivers/usb/storage/ums-jumpshot.o
2025-10-02T16:06:54.5043720Z LD [M] drivers/usb/storage/ums-karma.o
2025-10-02T16:06:54.5177408Z LD [M] drivers/usb/storage/ums-onetouch.o
2025-10-02T16:06:54.5316537Z LD [M] drivers/usb/storage/ums-realtek.o
2025-10-02T16:06:54.5460651Z LD [M] drivers/usb/storage/ums-sddr09.o
2025-10-02T16:06:54.5596488Z LD [M] drivers/usb/storage/ums-sddr55.o
2025-10-02T16:06:54.5741346Z LD [M] drivers/usb/storage/ums-usbat.o
2025-10-02T16:06:54.6950806Z CC drivers/usb/serial/usb-serial.o
2025-10-02T16:06:54.9666549Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/offloading.o
2025-10-02T16:06:55.2853229Z CC [M] drivers/gpu/drm/drm_connector.o
2025-10-02T16:06:55.4320052Z LD [M] drivers/net/wireless/marvell/libertas/libertas.o
2025-10-02T16:06:55.5230929Z LD [M] drivers/net/wireless/marvell/libertas/usb8xxx.o
2025-10-02T16:06:55.5500050Z LD [M] drivers/net/wireless/marvell/libertas/libertas_cs.o
2025-10-02T16:06:55.5773322Z LD [M] drivers/net/wireless/marvell/libertas/libertas_sdio.o
2025-10-02T16:06:55.6068816Z LD [M] drivers/net/wireless/marvell/libertas/libertas_spi.o
2025-10-02T16:06:55.6735823Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_82598.o
2025-10-02T16:06:55.7347996Z CC [M] drivers/net/wireless/marvell/libertas_tf/main.o
2025-10-02T16:06:55.9322826Z CC drivers/usb/serial/generic.o
2025-10-02T16:06:56.5571828Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/tdls.o
2025-10-02T16:06:56.9127509Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_phy.o
2025-10-02T16:06:56.9282960Z CC drivers/usb/serial/bus.o
2025-10-02T16:06:56.9666425Z CC [M] drivers/gpu/drm/drm_blend.o
2025-10-02T16:06:57.1987277Z CC [M] drivers/net/wireless/marvell/libertas_tf/cmd.o
2025-10-02T16:06:57.6579401Z CC drivers/usb/serial/console.o
2025-10-02T16:06:57.8066761Z CC [M] drivers/gpu/drm/drm_encoder.o
2025-10-02T16:06:58.4137074Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/ftm-responder.o
2025-10-02T16:06:58.5751408Z CC [M] drivers/usb/serial/aircable.o
2025-10-02T16:06:58.6317716Z CC [M] drivers/gpu/drm/drm_mode_object.o
2025-10-02T16:06:58.6549310Z CC [M] drivers/net/wireless/marvell/libertas_tf/if_usb.o
2025-10-02T16:06:59.2034418Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.o
2025-10-02T16:06:59.2906983Z CC [M] drivers/usb/serial/ark3116.o
2025-10-02T16:06:59.5748610Z CC [M] drivers/gpu/drm/drm_property.o
2025-10-02T16:07:00.1001743Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.o
2025-10-02T16:07:00.1897269Z LD [M] drivers/net/wireless/marvell/libertas_tf/libertas_tf.o
2025-10-02T16:07:00.2299756Z LD [M] drivers/net/wireless/marvell/libertas_tf/libertas_tf_usb.o
2025-10-02T16:07:00.3244881Z CC [M] drivers/net/wireless/marvell/mwifiex/main.o
2025-10-02T16:07:00.4264199Z CC [M] drivers/usb/serial/belkin_sa.o
2025-10-02T16:07:00.8326967Z CC [M] drivers/gpu/drm/drm_plane.o
2025-10-02T16:07:01.2942643Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_mbx.o
2025-10-02T16:07:01.4390118Z CC [M] drivers/usb/serial/ch341.o
2025-10-02T16:07:02.1737805Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/debugfs.o
2025-10-02T16:07:02.3062181Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_x540.o
2025-10-02T16:07:02.3567004Z CC [M] drivers/gpu/drm/drm_color_mgmt.o
2025-10-02T16:07:02.5378852Z CC [M] drivers/net/wireless/marvell/mwifiex/init.o
2025-10-02T16:07:02.5444611Z CC [M] drivers/usb/serial/cp210x.o
2025-10-02T16:07:03.4542862Z CC [M] drivers/gpu/drm/drm_print.o
2025-10-02T16:07:03.5872367Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_x550.o
2025-10-02T16:07:03.9725993Z CC [M] drivers/usb/serial/cyberjack.o
2025-10-02T16:07:04.1909978Z CC [M] drivers/net/wireless/marvell/mwifiex/cfp.o
2025-10-02T16:07:04.2521625Z CC [M] drivers/gpu/drm/drm_dumb_buffers.o
2025-10-02T16:07:04.6904832Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/debugfs-vif.o
2025-10-02T16:07:05.0391006Z CC [M] drivers/gpu/drm/drm_mode_config.o
2025-10-02T16:07:05.1427573Z CC [M] drivers/usb/serial/cypress_m8.o
2025-10-02T16:07:05.5185004Z CC [M] drivers/net/wireless/marvell/mwifiex/cmdevt.o
2025-10-02T16:07:05.7883604Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_lib.o
2025-10-02T16:07:06.1264931Z CC [M] drivers/gpu/drm/drm_vblank.o
2025-10-02T16:07:06.3854205Z CC [M] drivers/usb/serial/usb_debug.o
2025-10-02T16:07:06.4143072Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/led.o
2025-10-02T16:07:07.0538673Z CC [M] drivers/usb/serial/digi_acceleport.o
2025-10-02T16:07:07.3307410Z CC [M] drivers/net/wireless/marvell/mwifiex/util.o
2025-10-02T16:07:07.4839792Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.o
2025-10-02T16:07:07.8872635Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/d3.o
2025-10-02T16:07:08.0357357Z CC [M] drivers/gpu/drm/drm_syncobj.o
2025-10-02T16:07:08.3948074Z CC [M] drivers/usb/serial/io_edgeport.o
2025-10-02T16:07:08.8407431Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.o
2025-10-02T16:07:08.9024690Z CC [M] drivers/net/wireless/marvell/mwifiex/txrx.o
2025-10-02T16:07:09.9118170Z CC [M] drivers/gpu/drm/drm_lease.o
2025-10-02T16:07:10.3375037Z CC [M] drivers/net/wireless/marvell/mwifiex/wmm.o
2025-10-02T16:07:10.4215547Z CC [M] drivers/usb/serial/io_ti.o
2025-10-02T16:07:10.4444497Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_dcb.o
2025-10-02T16:07:10.7228836Z LD [M] drivers/net/wireless/intel/iwlwifi/mvm/iwlmvm.o
2025-10-02T16:07:10.8845788Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-io.o
2025-10-02T16:07:11.3498716Z CC [M] drivers/gpu/drm/drm_writeback.o
2025-10-02T16:07:11.5419273Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82598.o
2025-10-02T16:07:12.2274849Z CC [M] drivers/net/wireless/marvell/mwifiex/11n.o
2025-10-02T16:07:12.3373753Z CC [M] drivers/usb/serial/empeg.o
2025-10-02T16:07:12.4412117Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-drv.o
2025-10-02T16:07:12.4634177Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_82599.o
2025-10-02T16:07:12.5803956Z CC [M] drivers/gpu/drm/drm_client.o
2025-10-02T16:07:13.0973239Z CC [M] drivers/usb/serial/f81232.o
2025-10-02T16:07:13.6503370Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_dcb_nl.o
2025-10-02T16:07:13.6871231Z CC [M] drivers/gpu/drm/drm_client_modeset.o
2025-10-02T16:07:13.8266458Z CC [M] drivers/net/wireless/marvell/mwifiex/11ac.o
2025-10-02T16:07:14.0906389Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-debug.o
2025-10-02T16:07:14.3592896Z CC [M] drivers/usb/serial/f81534.o
2025-10-02T16:07:14.9296170Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_sysfs.o
2025-10-02T16:07:15.0244654Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-eeprom-read.o
2025-10-02T16:07:15.1349113Z CC [M] drivers/net/wireless/marvell/mwifiex/11n_aggr.o
2025-10-02T16:07:15.4931063Z CC [M] drivers/gpu/drm/drm_atomic_uapi.o
2025-10-02T16:07:15.7623603Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_debugfs.o
2025-10-02T16:07:15.9651335Z CC [M] drivers/usb/serial/ftdi_sio.o
2025-10-02T16:07:16.2717589Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-eeprom-parse.o
2025-10-02T16:07:16.3855127Z CC [M] drivers/net/wireless/marvell/mwifiex/11n_rxreorder.o
2025-10-02T16:07:16.6326056Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe_fcoe.o
2025-10-02T16:07:17.0075525Z CC [M] drivers/gpu/drm/drm_hdcp.o
2025-10-02T16:07:17.5256798Z CC [M] drivers/usb/serial/garmin_gps.o
2025-10-02T16:07:17.8010964Z CC [M] drivers/gpu/drm/drm_managed.o
2025-10-02T16:07:17.8559064Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-phy-db.o
2025-10-02T16:07:18.2096432Z LD [M] drivers/net/ethernet/intel/ixgbe/ixgbe.o
2025-10-02T16:07:18.3325959Z CC [M] drivers/net/ethernet/intel/ixgbevf/vf.o
2025-10-02T16:07:18.4433999Z CC [M] drivers/net/wireless/marvell/mwifiex/scan.o
2025-10-02T16:07:18.7203553Z CC [M] drivers/gpu/drm/drm_vblank_work.o
2025-10-02T16:07:18.8238482Z CC [M] drivers/usb/serial/ipaq.o
2025-10-02T16:07:18.9059926Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.o
2025-10-02T16:07:19.4494242Z CC [M] drivers/usb/serial/ipw.o
2025-10-02T16:07:19.5763838Z CC [M] drivers/gpu/drm/drm_ioc32.o
2025-10-02T16:07:19.6023705Z CC [M] drivers/net/ethernet/intel/ixgbevf/mbx.o
2025-10-02T16:07:20.1120005Z CC [M] drivers/usb/serial/ir-usb.o
2025-10-02T16:07:20.4417640Z CC [M] drivers/gpu/drm/drm_gem_cma_helper.o
2025-10-02T16:07:20.6893413Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/drv.o
2025-10-02T16:07:20.7416545Z CC [M] drivers/net/ethernet/intel/ixgbevf/ethtool.o
2025-10-02T16:07:20.9246551Z CC [M] drivers/net/wireless/marvell/mwifiex/join.o
2025-10-02T16:07:21.0853202Z CC [M] drivers/usb/serial/iuu_phoenix.o
2025-10-02T16:07:21.1407768Z CC [M] drivers/gpu/drm/drm_gem_shmem_helper.o
2025-10-02T16:07:21.8814935Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/rx.o
2025-10-02T16:07:22.2670325Z CC [M] drivers/gpu/drm/drm_panel.o
2025-10-02T16:07:22.3018275Z CC [M] drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.o
2025-10-02T16:07:22.5249305Z CC [M] drivers/usb/serial/keyspan.o
2025-10-02T16:07:22.5632078Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_ioctl.o
2025-10-02T16:07:23.0693277Z CC [M] drivers/gpu/drm/drm_pci.o
2025-10-02T16:07:23.8612503Z CC [M] drivers/gpu/drm/drm_debugfs.o
2025-10-02T16:07:24.0808567Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/tx.o
2025-10-02T16:07:24.6403300Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_cmd.o
2025-10-02T16:07:24.6467115Z CC [M] drivers/usb/serial/keyspan_pda.o
2025-10-02T16:07:24.8183692Z CC [M] drivers/gpu/drm/drm_debugfs_crc.o
2025-10-02T16:07:25.6686768Z CC [M] drivers/usb/serial/kl5kusb105.o
2025-10-02T16:07:25.7835160Z CC [M] drivers/gpu/drm/drm_edid_load.o
2025-10-02T16:07:25.8130561Z CC [M] drivers/net/ethernet/intel/ixgbevf/ipsec.o
2025-10-02T16:07:26.6312499Z CC [M] drivers/gpu/drm/drm_agpsupport.o
2025-10-02T16:07:26.6583456Z CC [M] drivers/usb/serial/kobil_sct.o
2025-10-02T16:07:26.6866430Z CC [M] drivers/net/wireless/marvell/mwifiex/uap_cmd.o
2025-10-02T16:07:26.9681652Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/trans.o
2025-10-02T16:07:27.4997951Z LD [M] drivers/net/ethernet/intel/ixgbevf/ixgbevf.o
2025-10-02T16:07:27.5248976Z CC [M] drivers/usb/serial/mct_u232.o
2025-10-02T16:07:27.5715496Z CC [M] drivers/net/ethernet/intel/i40e/i40e_main.o
2025-10-02T16:07:27.6865915Z CC [M] drivers/gpu/drm/drm_mipi_dbi.o
2025-10-02T16:07:28.1800006Z CC [M] drivers/net/wireless/marvell/mwifiex/ie.o
2025-10-02T16:07:28.5244423Z CC [M] drivers/usb/serial/metro-usb.o
2025-10-02T16:07:29.2934872Z CC [M] drivers/usb/serial/mos7720.o
2025-10-02T16:07:29.5214889Z LD [M] drivers/gpu/drm/drm_vram_helper.o
2025-10-02T16:07:29.5358000Z LD [M] drivers/gpu/drm/drm_ttm_helper.o
2025-10-02T16:07:29.5513710Z LD [M] drivers/gpu/drm/drm_kms_helper.o
2025-10-02T16:07:29.6171781Z LD [M] drivers/gpu/drm/drm.o
2025-10-02T16:07:29.7491583Z AR drivers/gpu/drm/built-in.a
2025-10-02T16:07:29.8500372Z AR drivers/gpu/built-in.a
2025-10-02T16:07:29.8848779Z CC [M] drivers/net/ethernet/intel/i40e/i40e_ethtool.o
2025-10-02T16:07:29.9028340Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info.o
2025-10-02T16:07:29.9330064Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_cmdresp.o
2025-10-02T16:07:30.8230516Z CC [M] drivers/usb/serial/mos7840.o
2025-10-02T16:07:31.2097289Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/ctxt-info-gen3.o
2025-10-02T16:07:31.8354400Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_event.o
2025-10-02T16:07:32.2706428Z CC [M] drivers/usb/serial/mxuport.o
2025-10-02T16:07:32.6245005Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/trans-gen2.o
2025-10-02T16:07:33.4721275Z CC [M] drivers/usb/serial/navman.o
2025-10-02T16:07:33.6392727Z CC [M] drivers/net/appletalk/ipddp.o
2025-10-02T16:07:33.6714430Z CC [M] drivers/net/wireless/marvell/mwifiex/uap_event.o
2025-10-02T16:07:33.8332167Z CC [M] drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.o
2025-10-02T16:07:34.3167745Z CC [M] drivers/usb/serial/omninet.o
2025-10-02T16:07:34.9650220Z AR drivers/net/ethernet/i825xx/built-in.a
2025-10-02T16:07:35.0059055Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_tx.o
2025-10-02T16:07:35.0289438Z CC [M] drivers/net/wireless/mediatek/mt7601u/usb.o
2025-10-02T16:07:35.0357563Z CC [M] drivers/usb/serial/opticon.o
2025-10-02T16:07:35.4057397Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.o
2025-10-02T16:07:35.9581305Z CC [M] drivers/usb/serial/option.o
2025-10-02T16:07:36.3853347Z CC [M] drivers/net/wireless/marvell/mwifiex/sta_rx.o
2025-10-02T16:07:36.6154519Z CC [M] drivers/net/wireless/mediatek/mt7601u/init.o
2025-10-02T16:07:36.6298374Z CC [M] drivers/net/ethernet/intel/i40e/i40e_adminq.o
2025-10-02T16:07:36.9857396Z CC [M] drivers/usb/serial/oti6858.o
2025-10-02T16:07:37.0351741Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-trans.o
2025-10-02T16:07:37.7256930Z CC [M] drivers/net/wireless/marvell/mwifiex/uap_txrx.o
2025-10-02T16:07:37.9043828Z CC [M] drivers/net/wireless/intel/iwlwifi/queue/tx.o
2025-10-02T16:07:38.0862935Z CC [M] drivers/net/ethernet/intel/i40e/i40e_common.o
2025-10-02T16:07:38.1597691Z CC [M] drivers/usb/serial/pl2303.o
2025-10-02T16:07:38.2471299Z CC [M] drivers/net/wireless/mediatek/mt7601u/main.o
2025-10-02T16:07:39.2749106Z CC [M] drivers/net/wireless/marvell/mwifiex/cfg80211.o
2025-10-02T16:07:39.3496598Z CC [M] drivers/usb/serial/qcaux.o
2025-10-02T16:07:39.7220862Z CC [M] drivers/net/wireless/mediatek/mt7601u/mcu.o
2025-10-02T16:07:40.0671384Z CC [M] drivers/usb/serial/qcserial.o
2025-10-02T16:07:40.1025640Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/img.o
2025-10-02T16:07:40.9247121Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/notif-wait.o
2025-10-02T16:07:40.9379401Z CC [M] drivers/usb/serial/quatech2.o
2025-10-02T16:07:41.2142475Z CC [M] drivers/net/ethernet/intel/i40e/i40e_hmc.o
2025-10-02T16:07:41.5069035Z CC [M] drivers/net/wireless/mediatek/mt7601u/trace.o
2025-10-02T16:07:41.9191483Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/dbg.o
2025-10-02T16:07:42.1887595Z CC [M] drivers/usb/serial/safe_serial.o
2025-10-02T16:07:42.5535623Z CC [M] drivers/net/wireless/marvell/mwifiex/ethtool.o
2025-10-02T16:07:42.5727102Z CC [M] drivers/net/ethernet/intel/i40e/i40e_lan_hmc.o
2025-10-02T16:07:43.0142480Z CC [M] drivers/usb/serial/sierra.o
2025-10-02T16:07:43.6463875Z CC [M] drivers/net/wireless/mediatek/mt7601u/dma.o
2025-10-02T16:07:43.9512395Z CC [M] drivers/net/wireless/marvell/mwifiex/11h.o
2025-10-02T16:07:44.0983734Z CC [M] drivers/usb/serial/usb-serial-simple.o
2025-10-02T16:07:44.4779177Z CC [M] drivers/net/ethernet/intel/i40e/i40e_nvm.o
2025-10-02T16:07:44.7700247Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/pnvm.o
2025-10-02T16:07:44.8781580Z CC [M] drivers/usb/serial/spcp8x5.o
2025-10-02T16:07:45.2665936Z CC [M] drivers/net/wireless/marvell/mwifiex/tdls.o
2025-10-02T16:07:45.2920113Z CC [M] drivers/net/wireless/mediatek/mt7601u/core.o
2025-10-02T16:07:45.8122470Z CC [M] drivers/usb/serial/ssu100.o
2025-10-02T16:07:45.9539086Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/1000.o
2025-10-02T16:07:46.0914106Z CC [M] drivers/net/ethernet/intel/i40e/i40e_debugfs.o
2025-10-02T16:07:46.4567643Z CC [M] drivers/net/wireless/mediatek/mt7601u/eeprom.o
2025-10-02T16:07:46.8441336Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/2000.o
2025-10-02T16:07:47.0449697Z CC [M] drivers/usb/serial/symbolserial.o
2025-10-02T16:07:47.2477987Z CC [M] drivers/net/wireless/marvell/mwifiex/debugfs.o
2025-10-02T16:07:47.7611370Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/5000.o
2025-10-02T16:07:47.7938636Z CC [M] drivers/usb/serial/usb_wwan.o
2025-10-02T16:07:48.0584556Z CC [M] drivers/net/wireless/mediatek/mt7601u/phy.o
2025-10-02T16:07:48.4701445Z CC [M] drivers/net/ethernet/intel/i40e/i40e_diag.o
2025-10-02T16:07:48.5550046Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/6000.o
2025-10-02T16:07:48.7065368Z CC [M] drivers/net/wireless/marvell/mwifiex/sdio.o
2025-10-02T16:07:48.8458316Z CC [M] drivers/usb/serial/ti_usb_3410_5052.o
2025-10-02T16:07:49.3643001Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/7000.o
2025-10-02T16:07:49.6872098Z CC [M] drivers/net/ethernet/intel/i40e/i40e_txrx.o
2025-10-02T16:07:50.1012936Z CC [M] drivers/usb/serial/upd78f0730.o
2025-10-02T16:07:50.2180047Z CC [M] drivers/net/wireless/mediatek/mt7601u/mac.o
2025-10-02T16:07:50.3519234Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/8000.o
2025-10-02T16:07:51.0088489Z CC [M] drivers/usb/serial/visor.o
2025-10-02T16:07:51.2797983Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/9000.o
2025-10-02T16:07:51.3744678Z CC [M] drivers/net/wireless/marvell/mwifiex/pcie.o
2025-10-02T16:07:51.8651855Z CC [M] drivers/usb/serial/wishbone-serial.o
2025-10-02T16:07:51.8659696Z CC [M] drivers/net/wireless/mediatek/mt7601u/util.o
2025-10-02T16:07:52.1607699Z CC [M] drivers/net/wireless/intel/iwlwifi/cfg/22000.o
2025-10-02T16:07:52.4785891Z CC [M] drivers/usb/serial/whiteheat.o
2025-10-02T16:07:52.8692338Z CC [M] drivers/net/ethernet/intel/i40e/i40e_ptp.o
2025-10-02T16:07:53.1216951Z CC [M] drivers/net/wireless/mediatek/mt7601u/debugfs.o
2025-10-02T16:07:53.2401033Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/paging.o
2025-10-02T16:07:53.4331642Z CC [M] drivers/usb/serial/xsens_mt.o
2025-10-02T16:07:54.1359358Z AR drivers/usb/serial/built-in.a
2025-10-02T16:07:54.1923498Z CC [M] drivers/net/wireless/marvell/mwifiex/usb.o
2025-10-02T16:07:54.3062327Z CC [M] drivers/net/ethernet/intel/i40e/i40e_ddp.o
2025-10-02T16:07:54.3424479Z CC [M] drivers/net/wireless/mediatek/mt7601u/tx.o
2025-10-02T16:07:54.5919298Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/smem.o
2025-10-02T16:07:54.6790780Z CC [M] drivers/usb/misc/sisusbvga/sisusb.o
2025-10-02T16:07:55.7564969Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/init.o
2025-10-02T16:07:55.8379878Z CC [M] drivers/net/ethernet/intel/i40e/i40e_client.o
2025-10-02T16:07:55.8619224Z LD [M] drivers/net/wireless/mediatek/mt7601u/mt7601u.o
2025-10-02T16:07:55.9680806Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/usb.o
2025-10-02T16:07:56.2078794Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex.o
2025-10-02T16:07:56.4538818Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex_sdio.o
2025-10-02T16:07:56.4880437Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex_pcie.o
2025-10-02T16:07:56.5261739Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex_usb.o
2025-10-02T16:07:56.6220554Z AR drivers/net/wireless/marvell/built-in.a
2025-10-02T16:07:56.6347823Z CC [M] drivers/net/wireless/marvell/mwl8k.o
2025-10-02T16:07:56.7986219Z LD [M] drivers/usb/misc/sisusbvga/sisusbvga.o
2025-10-02T16:07:56.8567471Z AR drivers/usb/misc/built-in.a
2025-10-02T16:07:56.8816712Z CC [M] drivers/usb/misc/adutux.o
2025-10-02T16:07:56.9269378Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/acpi.o
2025-10-02T16:07:57.2353894Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/usb_mcu.o
2025-10-02T16:07:57.3476249Z CC [M] drivers/net/ethernet/intel/i40e/i40e_virtchnl_pf.o
2025-10-02T16:07:58.0157585Z CC [M] drivers/usb/misc/appledisplay.o
2025-10-02T16:07:58.1099828Z CC [M] drivers/net/wireless/intel/iwlwifi/fw/debugfs.o
2025-10-02T16:07:58.5189288Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/pci.o
2025-10-02T16:07:58.9775722Z CC [M] drivers/usb/misc/cypress_cy7c63.o
2025-10-02T16:07:59.5062037Z CC [M] drivers/net/wireless/intel/iwlwifi/iwl-devtrace.o
2025-10-02T16:07:59.7308212Z CC [M] drivers/usb/misc/cytherm.o
2025-10-02T16:07:59.8244011Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/pci_mcu.o
2025-10-02T16:08:00.5240415Z CC [M] drivers/usb/misc/emi26.o
2025-10-02T16:08:00.8631870Z AR drivers/net/ethernet/marvell/octeontx2/built-in.a
2025-10-02T16:08:00.9005433Z AR drivers/net/ethernet/marvell/prestera/built-in.a
2025-10-02T16:08:00.9118730Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_main.o
2025-10-02T16:08:00.9469711Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/init.o
2025-10-02T16:08:01.3272602Z CC [M] drivers/net/ethernet/intel/i40e/i40e_xsk.o
2025-10-02T16:08:01.4686065Z CC [M] drivers/usb/misc/emi62.o
2025-10-02T16:08:02.2373529Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_hw.o
2025-10-02T16:08:02.3091502Z CC [M] drivers/usb/misc/ezusb.o
2025-10-02T16:08:02.3824603Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/main.o
2025-10-02T16:08:02.4888562Z LD [M] drivers/net/wireless/intel/iwlwifi/iwlwifi.o
2025-10-02T16:08:02.6923915Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_dsa.o
2025-10-02T16:08:02.9449725Z CC [M] drivers/usb/misc/ftdi-elan.o
2025-10-02T16:08:02.9903748Z CC [M] drivers/net/ethernet/intel/i40e/i40e_dcb.o
2025-10-02T16:08:03.1491479Z CC [M] drivers/net/ethernet/mellanox/mlx4/alloc.o
2025-10-02T16:08:03.5583785Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/eeprom.o
2025-10-02T16:08:03.6510123Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_rxtx.o
2025-10-02T16:08:04.3293355Z CC [M] drivers/net/ethernet/intel/i40e/i40e_dcb_nl.o
2025-10-02T16:08:04.6609101Z CC [M] drivers/net/ethernet/mellanox/mlx4/catas.o
2025-10-02T16:08:05.0328540Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/phy.o
2025-10-02T16:08:05.0390508Z CC [M] drivers/usb/misc/apple-mfi-fastcharge.o
2025-10-02T16:08:05.1848778Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_devlink.o
2025-10-02T16:08:05.8027163Z LD [M] drivers/net/ethernet/intel/i40e/i40e.o
2025-10-02T16:08:05.8138566Z CC [M] drivers/usb/misc/idmouse.o
2025-10-02T16:08:05.8367816Z CC [M] drivers/net/ethernet/mellanox/mlx4/cmd.o
2025-10-02T16:08:05.9450039Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_main.o
2025-10-02T16:08:06.1870158Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_ethtool.o
2025-10-02T16:08:06.6485934Z CC [M] drivers/usb/misc/iowarrior.o
2025-10-02T16:08:06.8252608Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0u.o
2025-10-02T16:08:06.8435320Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0e.o
2025-10-02T16:08:06.8618957Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common.o
2025-10-02T16:08:06.9336136Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/eeprom.o
2025-10-02T16:08:07.3157706Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_switchdev.o
2025-10-02T16:08:07.9070055Z CC [M] drivers/usb/misc/isight_firmware.o
2025-10-02T16:08:07.9314277Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_hw.o
2025-10-02T16:08:08.4917863Z CC [M] drivers/usb/misc/usblcd.o
2025-10-02T16:08:08.7002324Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/mac.o
2025-10-02T16:08:08.9677896Z CC [M] drivers/net/ethernet/mellanox/mlx4/cq.o
2025-10-02T16:08:09.1431095Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_pci.o
2025-10-02T16:08:09.2048903Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_ee.o
2025-10-02T16:08:09.2282170Z CC [M] drivers/usb/misc/ldusb.o
2025-10-02T16:08:09.9350244Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_ethtool.o
2025-10-02T16:08:10.0760237Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/init.o
2025-10-02T16:08:10.1976648Z CC [M] drivers/net/ethernet/mellanox/mlx4/eq.o
2025-10-02T16:08:10.2719370Z CC [M] drivers/usb/misc/legousbtower.o
2025-10-02T16:08:10.3519788Z LD [M] drivers/net/ethernet/marvell/prestera/prestera.o
2025-10-02T16:08:10.4077082Z CC [M] drivers/net/ethernet/marvell/mvmdio.o
2025-10-02T16:08:11.3165057Z CC [M] drivers/usb/misc/usbtest.o
2025-10-02T16:08:11.3876278Z CC [M] drivers/net/ethernet/marvell/skge.o
2025-10-02T16:08:11.4418612Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/phy.o
2025-10-02T16:08:11.4720365Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb_param.o
2025-10-02T16:08:12.1417112Z CC [M] drivers/net/ethernet/mellanox/mlx4/fw.o
2025-10-02T16:08:12.7524730Z LD [M] drivers/net/ethernet/intel/ixgb/ixgb.o
2025-10-02T16:08:12.8626968Z CC [M] drivers/net/ethernet/intel/iavf/iavf_main.o
2025-10-02T16:08:13.0088711Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/mcu.o
2025-10-02T16:08:13.4014374Z CC [M] drivers/usb/misc/ehset.o
2025-10-02T16:08:14.1970689Z CC [M] drivers/usb/misc/trancevibrator.o
2025-10-02T16:08:14.3171464Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci.o
2025-10-02T16:08:14.4788536Z CC [M] drivers/net/ethernet/marvell/sky2.o
2025-10-02T16:08:14.8001349Z CC [M] drivers/net/ethernet/mellanox/mlx4/fw_qos.o
2025-10-02T16:08:14.8685875Z CC [M] drivers/usb/misc/uss720.o
2025-10-02T16:08:15.6580934Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci_main.o
2025-10-02T16:08:15.9998875Z CC [M] drivers/net/ethernet/mellanox/mlx4/icm.o
2025-10-02T16:08:16.1100847Z CC [M] drivers/usb/misc/usbsevseg.o
2025-10-02T16:08:16.2806404Z CC [M] drivers/net/ethernet/intel/iavf/iavf_ethtool.o
2025-10-02T16:08:17.0665400Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci_init.o
2025-10-02T16:08:17.0680366Z CC [M] drivers/usb/misc/yurex.o
2025-10-02T16:08:17.2601743Z CC [M] drivers/net/ethernet/mellanox/mlx4/intf.o
2025-10-02T16:08:17.7215943Z CC [M] drivers/net/ethernet/intel/iavf/iavf_virtchnl.o
2025-10-02T16:08:18.1261194Z CC [M] drivers/usb/misc/usb251xb.o
2025-10-02T16:08:18.3218650Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci_mcu.o
2025-10-02T16:08:18.3505039Z CC [M] drivers/net/ethernet/mellanox/mlx4/main.o
2025-10-02T16:08:18.4712188Z AR drivers/net/ethernet/marvell/built-in.a
2025-10-02T16:08:18.5455270Z CC [M] drivers/net/ethernet/intel/iavf/iavf_txrx.o
2025-10-02T16:08:19.1181635Z CC [M] drivers/usb/misc/usb3503.o
2025-10-02T16:08:19.6237158Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/pci_phy.o
2025-10-02T16:08:19.7874187Z CC [M] drivers/usb/misc/usb4604.o
2025-10-02T16:08:20.0322653Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb.o
2025-10-02T16:08:20.2520540Z CC [M] drivers/usb/misc/chaoskey.o
2025-10-02T16:08:20.8848892Z CC drivers/input/serio/serio.o
2025-10-02T16:08:21.0642815Z CC [M] drivers/net/ethernet/intel/iavf/iavf_common.o
2025-10-02T16:08:21.0643878Z CC [M] drivers/usb/misc/lvstest.o
2025-10-02T16:08:21.5793623Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_init.o
2025-10-02T16:08:21.6953500Z CC drivers/input/serio/i8042.o
2025-10-02T16:08:21.7713849Z CC [M] drivers/net/ethernet/mellanox/mlx4/mcg.o
2025-10-02T16:08:22.0307262Z CC drivers/usb/early/ehci-dbgp.o
2025-10-02T16:08:22.0919735Z CC [M] drivers/net/ethernet/intel/iavf/iavf_adminq.o
2025-10-02T16:08:22.9773624Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_main.o
2025-10-02T16:08:22.9842564Z CC drivers/usb/early/xhci-dbc.o
2025-10-02T16:08:23.4506566Z CC drivers/input/serio/libps2.o
2025-10-02T16:08:23.7372595Z CC [M] drivers/net/ethernet/intel/iavf/iavf_client.o
2025-10-02T16:08:23.9854252Z CC [M] drivers/net/ethernet/mellanox/mlx4/mr.o
2025-10-02T16:08:24.2987788Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_mac.o
2025-10-02T16:08:24.3483559Z AR drivers/usb/early/built-in.a
2025-10-02T16:08:24.4151531Z CC [M] drivers/usb/mon/mon_main.o
2025-10-02T16:08:24.4647150Z CC [M] drivers/input/serio/parkbd.o
2025-10-02T16:08:25.2174734Z CC [M] drivers/input/serio/serport.o
2025-10-02T16:08:25.2799188Z LD [M] drivers/net/ethernet/intel/iavf/iavf.o
2025-10-02T16:08:25.3085834Z CC [M] drivers/usb/mon/mon_stat.o
2025-10-02T16:08:25.3644659Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_main.o
2025-10-02T16:08:25.6332128Z CC [M] drivers/net/ethernet/mellanox/mlx4/pd.o
2025-10-02T16:08:25.7196281Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_mcu.o
2025-10-02T16:08:25.8018116Z CC [M] drivers/usb/mon/mon_text.o
2025-10-02T16:08:26.0516496Z CC [M] drivers/input/serio/ct82c710.o
2025-10-02T16:08:26.6820613Z CC [M] drivers/net/ethernet/mellanox/mlx4/port.o
2025-10-02T16:08:26.8007091Z CC [M] drivers/usb/mon/mon_bin.o
2025-10-02T16:08:26.8616350Z CC [M] drivers/input/serio/pcips2.o
2025-10-02T16:08:27.1446250Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/usb_phy.o
2025-10-02T16:08:27.5767713Z CC [M] drivers/input/serio/ps2mult.o
2025-10-02T16:08:27.6539776Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_common.o
2025-10-02T16:08:28.1025090Z CC [M] drivers/input/serio/serio_raw.o
2025-10-02T16:08:28.2259794Z LD [M] drivers/usb/mon/usbmon.o
2025-10-02T16:08:28.3238344Z CC [M] drivers/usb/c67x00/c67x00-drv.o
2025-10-02T16:08:28.4225679Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common.o
2025-10-02T16:08:28.4521371Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2e.o
2025-10-02T16:08:28.4806194Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2u.o
2025-10-02T16:08:28.5543499Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/pci.o
2025-10-02T16:08:28.7683484Z CC [M] drivers/input/serio/altera_ps2.o
2025-10-02T16:08:28.8298091Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_pci.o
2025-10-02T16:08:29.0660932Z CC [M] drivers/usb/c67x00/c67x00-ll-hpi.o
2025-10-02T16:08:29.2584023Z CC [M] drivers/net/ethernet/mellanox/mlx4/profile.o
2025-10-02T16:08:29.4304210Z CC [M] drivers/input/serio/arc_ps2.o
2025-10-02T16:08:29.7583154Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/soc.o
2025-10-02T16:08:29.9555946Z CC [M] drivers/usb/c67x00/c67x00-hcd.o
2025-10-02T16:08:30.1616296Z CC [M] drivers/input/serio/hyperv-keyboard.o
2025-10-02T16:08:30.5365454Z CC [M] drivers/net/ethernet/mellanox/mlx4/qp.o
2025-10-02T16:08:30.8646265Z CC [M] drivers/usb/c67x00/c67x00-sched.o
2025-10-02T16:08:30.8815522Z CC [M] drivers/input/serio/ps2-gpio.o
2025-10-02T16:08:30.8820318Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/main.o
2025-10-02T16:08:31.0296372Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_netdev.o
2025-10-02T16:08:31.5895367Z CC [M] drivers/input/serio/userio.o
2025-10-02T16:08:31.8760682Z CC [M] drivers/net/ethernet/mellanox/mlx4/reset.o
2025-10-02T16:08:32.1200350Z LD [M] drivers/usb/c67x00/c67x00.o
2025-10-02T16:08:32.2135996Z CC [M] drivers/usb/class/cdc-acm.o
2025-10-02T16:08:32.3311615Z AR drivers/input/serio/built-in.a
2025-10-02T16:08:32.4843293Z CC [M] drivers/net/wireless/microchip/wilc1000/cfg80211.o
2025-10-02T16:08:32.7506763Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/init.o
2025-10-02T16:08:32.7725079Z CC [M] drivers/net/ethernet/mellanox/mlx4/sense.o
2025-10-02T16:08:33.0128539Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_ethtool.o
2025-10-02T16:08:33.6961554Z CC [M] drivers/net/ethernet/mellanox/mlx4/srq.o
2025-10-02T16:08:33.8643279Z CC [M] drivers/usb/class/usblp.o
2025-10-02T16:08:34.5517973Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_pf.o
2025-10-02T16:08:34.5895734Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/mcu.o
2025-10-02T16:08:34.7155914Z CC [M] drivers/net/ethernet/mellanox/mlx4/resource_tracker.o
2025-10-02T16:08:34.8525961Z CC [M] drivers/net/wireless/microchip/wilc1000/netdev.o
2025-10-02T16:08:35.0045740Z CC [M] drivers/usb/class/cdc-wdm.o
2025-10-02T16:08:36.0470814Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/core.o
2025-10-02T16:08:36.2543023Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_vf.o
2025-10-02T16:08:36.3441274Z CC [M] drivers/usb/class/usbtmc.o
2025-10-02T16:08:36.5883868Z CC [M] drivers/net/wireless/microchip/wilc1000/mon.o
2025-10-02T16:08:37.1071134Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_mbx.o
2025-10-02T16:08:37.4351565Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/dma.o
2025-10-02T16:08:37.9666210Z CC [M] drivers/net/wireless/microchip/wilc1000/hif.o
2025-10-02T16:08:38.4278146Z CC [M] drivers/usb/image/mdc800.o
2025-10-02T16:08:38.6041263Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_iov.o
2025-10-02T16:08:38.7333723Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/mac.o
2025-10-02T16:08:39.2221881Z CC [M] drivers/net/ethernet/mellanox/mlx4/crdump.o
2025-10-02T16:08:39.5763969Z CC [M] drivers/usb/image/microtek.o
2025-10-02T16:08:39.8558892Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_tlv.o
2025-10-02T16:08:40.1132489Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_main.o
2025-10-02T16:08:40.1486829Z CC [M] drivers/net/wireless/microchip/wilc1000/wlan_cfg.o
2025-10-02T16:08:40.6588048Z CC [M] drivers/usb/atm/cxacru.o
2025-10-02T16:08:41.0840419Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_debugfs.o
2025-10-02T16:08:41.4859929Z CC [M] drivers/net/wireless/microchip/wilc1000/wlan.o
2025-10-02T16:08:41.5179374Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_tx.o
2025-10-02T16:08:41.5336474Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/eeprom.o
2025-10-02T16:08:41.9961467Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k_dcbnl.o
2025-10-02T16:08:42.6985849Z CC [M] drivers/usb/atm/speedtch.o
2025-10-02T16:08:42.8020602Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/beacon.o
2025-10-02T16:08:42.9530340Z LD [M] drivers/net/ethernet/intel/fm10k/fm10k.o
2025-10-02T16:08:43.0279904Z CC [M] drivers/net/ethernet/intel/ice/ice_main.o
2025-10-02T16:08:43.2378287Z CC [M] drivers/net/wireless/microchip/wilc1000/sdio.o
2025-10-02T16:08:43.5934133Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_rx.o
2025-10-02T16:08:44.2699861Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/debugfs.o
2025-10-02T16:08:44.3904476Z CC [M] drivers/usb/atm/ueagle-atm.o
2025-10-02T16:08:44.9241466Z CC [M] drivers/net/wireless/microchip/wilc1000/spi.o
2025-10-02T16:08:45.4159682Z LD [M] drivers/net/wireless/mediatek/mt76/mt7603/mt7603e.o
2025-10-02T16:08:45.5852352Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/main.o
2025-10-02T16:08:46.2731364Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_ethtool.o
2025-10-02T16:08:46.3152541Z LD [M] drivers/net/wireless/microchip/wilc1000/wilc1000.o
2025-10-02T16:08:46.3536422Z LD [M] drivers/net/wireless/microchip/wilc1000/wilc1000-sdio.o
2025-10-02T16:08:46.3692085Z LD [M] drivers/net/wireless/microchip/wilc1000/wilc1000-spi.o
2025-10-02T16:08:46.4125954Z AR drivers/net/wireless/microchip/built-in.a
2025-10-02T16:08:46.4378220Z CC [M] drivers/net/ethernet/intel/ice/ice_controlq.o
2025-10-02T16:08:46.7523206Z CC [M] drivers/usb/atm/usbatm.o
2025-10-02T16:08:47.2040764Z CC [M] drivers/usb/atm/xusbatm.o
2025-10-02T16:08:48.0771949Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/init.o
2025-10-02T16:08:48.1883428Z CC [M] drivers/net/ethernet/intel/ice/ice_common.o
2025-10-02T16:08:48.4636611Z CC [M] drivers/net/can/dev/dev.o
2025-10-02T16:08:48.6133484Z CC [M] drivers/usb/usbip/usbip_common.o
2025-10-02T16:08:48.7243582Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_port.o
2025-10-02T16:08:49.6881268Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mcu.o
2025-10-02T16:08:49.8731523Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_cq.o
2025-10-02T16:08:50.1687846Z CC [M] drivers/usb/usbip/usbip_event.o
2025-10-02T16:08:50.2846561Z CC [M] drivers/net/can/dev/rx-offload.o
2025-10-02T16:08:50.7915244Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_resources.o
2025-10-02T16:08:50.9660575Z CC [M] drivers/usb/usbip/vhci_sysfs.o
2025-10-02T16:08:51.1991466Z CC [M] drivers/net/ethernet/intel/ice/ice_nvm.o
2025-10-02T16:08:51.6888316Z LD [M] drivers/net/can/dev/can-dev.o
2025-10-02T16:08:51.7182806Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_netdev.o
2025-10-02T16:08:51.8662500Z CC [M] drivers/net/can/spi/mcp251xfd/mcp251xfd-core.o
2025-10-02T16:08:51.8894975Z CC [M] drivers/usb/usbip/vhci_tx.o
2025-10-02T16:08:52.6100047Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/eeprom.o
2025-10-02T16:08:52.7464648Z CC [M] drivers/usb/usbip/vhci_rx.o
2025-10-02T16:08:53.0115063Z CC [M] drivers/net/ethernet/intel/ice/ice_switch.o
2025-10-02T16:08:53.4214443Z CC [M] drivers/usb/usbip/vhci_hcd.o
2025-10-02T16:08:54.0169324Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mac.o
2025-10-02T16:08:54.6219148Z CC [M] drivers/net/can/spi/mcp251xfd/mcp251xfd-crc16.o
2025-10-02T16:08:54.9543979Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_selftest.o
2025-10-02T16:08:55.3039925Z CC [M] drivers/usb/usbip/stub_dev.o
2025-10-02T16:08:55.4759318Z CC [M] drivers/net/ethernet/intel/ice/ice_sched.o
2025-10-02T16:08:55.6643306Z CC [M] drivers/net/can/spi/mcp251xfd/mcp251xfd-regmap.o
2025-10-02T16:08:56.0153373Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_clock.o
2025-10-02T16:08:56.1262960Z CC [M] drivers/usb/usbip/stub_main.o
2025-10-02T16:08:56.9556615Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/debugfs.o
2025-10-02T16:08:56.9707398Z CC [M] drivers/net/ethernet/mellanox/mlx4/en_dcb_nl.o
2025-10-02T16:08:57.1442095Z LD [M] drivers/net/can/spi/mcp251xfd/mcp251xfd.o
2025-10-02T16:08:57.2150633Z CC [M] drivers/net/can/spi/hi311x.o
2025-10-02T16:08:57.3583886Z CC [M] drivers/usb/usbip/stub_rx.o
2025-10-02T16:08:57.9016156Z CC [M] drivers/net/ethernet/intel/ice/ice_base.o
2025-10-02T16:08:58.1802049Z LD [M] drivers/net/ethernet/mellanox/mlx4/mlx4_core.o
2025-10-02T16:08:58.3065217Z LD [M] drivers/net/ethernet/mellanox/mlx4/mlx4_en.o
2025-10-02T16:08:58.3377561Z CC [M] drivers/usb/usbip/stub_tx.o
2025-10-02T16:08:58.3965655Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/trace.o
2025-10-02T16:08:58.4399393Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/main.o
2025-10-02T16:08:58.9084192Z CC [M] drivers/net/can/spi/mcp251x.o
2025-10-02T16:08:59.3102764Z CC [M] drivers/net/ethernet/intel/ice/ice_lib.o
2025-10-02T16:08:59.5249821Z LD [M] drivers/usb/usbip/usbip-core.o
2025-10-02T16:08:59.5575938Z LD [M] drivers/usb/usbip/vhci-hcd.o
2025-10-02T16:08:59.5880198Z LD [M] drivers/usb/usbip/usbip-host.o
2025-10-02T16:08:59.6593825Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/pci.o
2025-10-02T16:08:59.6714004Z CC [M] drivers/usb/typec/altmodes/displayport.o
2025-10-02T16:09:00.6454646Z CC [M] drivers/usb/typec/altmodes/nvidia.o
2025-10-02T16:09:00.7545453Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/cmd.o
2025-10-02T16:09:00.9385756Z CC [M] drivers/net/can/usb/kvaser_usb/kvaser_usb_core.o
2025-10-02T16:09:00.9880306Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/pci_init.o
2025-10-02T16:09:01.0684861Z LD [M] drivers/usb/typec/altmodes/typec_displayport.o
2025-10-02T16:09:01.0990325Z LD [M] drivers/usb/typec/altmodes/typec_nvidia.o
2025-10-02T16:09:01.1954519Z CC [M] drivers/usb/typec/tcpm/tcpm.o
2025-10-02T16:09:02.1009108Z CC [M] drivers/net/ethernet/intel/ice/ice_txrx_lib.o
2025-10-02T16:09:02.3678764Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/dma.o
2025-10-02T16:09:02.7288968Z CC [M] drivers/net/can/usb/kvaser_usb/kvaser_usb_leaf.o
2025-10-02T16:09:03.2830168Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/debugfs.o
2025-10-02T16:09:03.6402908Z CC [M] drivers/net/ethernet/intel/ice/ice_txrx.o
2025-10-02T16:09:03.7390594Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/pci_mac.o
2025-10-02T16:09:03.9777004Z CC [M] drivers/usb/typec/tcpm/fusb302.o
2025-10-02T16:09:04.4505883Z CC [M] drivers/net/can/usb/kvaser_usb/kvaser_usb_hydra.o
2025-10-02T16:09:04.8023639Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fw.o
2025-10-02T16:09:05.0862127Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mmio.o
2025-10-02T16:09:05.5326311Z CC [M] drivers/usb/typec/tcpm/wcove.o
2025-10-02T16:09:06.1691203Z CC [M] drivers/net/ethernet/intel/ice/ice_fltr.o
2025-10-02T16:09:06.2895569Z CC [M] drivers/usb/typec/tcpm/tcpci.o
2025-10-02T16:09:06.4764891Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/usb_sdio.o
2025-10-02T16:09:06.5051292Z LD [M] drivers/net/can/usb/kvaser_usb/kvaser_usb.o
2025-10-02T16:09:06.6063727Z CC [M] drivers/net/can/usb/peak_usb/pcan_usb_core.o
2025-10-02T16:09:06.7174528Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/eq.o
2025-10-02T16:09:07.0276268Z CC [M] drivers/usb/typec/tcpm/tcpci_rt1711h.o
2025-10-02T16:09:07.5497706Z CC [M] drivers/net/ethernet/intel/ice/ice_fdir.o
2025-10-02T16:09:07.7021179Z CC [M] drivers/usb/typec/tcpm/tcpci_mt6360.o
2025-10-02T16:09:07.9048948Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/usb.o
2025-10-02T16:09:08.3390739Z CC [M] drivers/net/can/usb/peak_usb/pcan_usb.o
2025-10-02T16:09:08.4774065Z CC [M] drivers/usb/typec/tcpm/tcpci_maxim.o
2025-10-02T16:09:08.6384066Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/uar.o
2025-10-02T16:09:09.1229421Z CC [M] drivers/net/ethernet/intel/ice/ice_ethtool_fdir.o
2025-10-02T16:09:09.1297804Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/usb_mcu.o
2025-10-02T16:09:09.2974346Z LD [M] drivers/usb/typec/tcpm/typec_wcove.o
2025-10-02T16:09:09.4429348Z CC [M] drivers/usb/typec/ucsi/ucsi.o
2025-10-02T16:09:09.6890006Z CC [M] drivers/net/can/usb/peak_usb/pcan_usb_pro.o
2025-10-02T16:09:09.9982153Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/pagealloc.o
2025-10-02T16:09:10.2618140Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/sdio.o
2025-10-02T16:09:10.8433462Z CC [M] drivers/usb/typec/ucsi/trace.o
2025-10-02T16:09:11.0732416Z CC [M] drivers/net/ethernet/intel/ice/ice_flex_pipe.o
2025-10-02T16:09:11.3883141Z CC [M] drivers/net/can/usb/peak_usb/pcan_usb_fd.o
2025-10-02T16:09:11.7108821Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/health.o
2025-10-02T16:09:11.8030836Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/sdio_mcu.o
2025-10-02T16:09:11.8357342Z CC [M] drivers/usb/typec/ucsi/psy.o
2025-10-02T16:09:12.2691535Z CC [M] drivers/usb/typec/ucsi/displayport.o
2025-10-02T16:09:12.7452420Z CC [M] drivers/usb/typec/ucsi/ucsi_acpi.o
2025-10-02T16:09:12.8503180Z LD [M] drivers/net/can/usb/peak_usb/peak_usb.o
2025-10-02T16:09:12.8925276Z CC [M] drivers/net/can/usb/usb_8dev.o
2025-10-02T16:09:13.1721839Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/sdio_txrx.o
2025-10-02T16:09:13.3470112Z CC [M] drivers/usb/typec/ucsi/ucsi_ccg.o
2025-10-02T16:09:13.4785357Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/mcg.o
2025-10-02T16:09:14.2984274Z CC [M] drivers/net/can/usb/ems_usb.o
2025-10-02T16:09:14.3140199Z CC [M] drivers/net/ethernet/intel/ice/ice_flow.o
2025-10-02T16:09:14.6222915Z LD [M] drivers/usb/typec/ucsi/typec_ucsi.o
2025-10-02T16:09:14.7192371Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/cq.o
2025-10-02T16:09:14.7308009Z CC [M] drivers/usb/typec/mux/pi3usb30532.o
2025-10-02T16:09:14.8306744Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common.o
2025-10-02T16:09:14.9242323Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7615e.o
2025-10-02T16:09:14.9818477Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common.o
2025-10-02T16:09:15.0128089Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663u.o
2025-10-02T16:09:15.0486951Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663s.o
2025-10-02T16:09:15.1995226Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/pci.o
2025-10-02T16:09:15.3082604Z CC [M] drivers/usb/typec/mux/intel_pmc_mux.o
2025-10-02T16:09:15.5979981Z CC [M] drivers/net/can/usb/esd_usb2.o
2025-10-02T16:09:16.0991743Z CC [M] drivers/usb/typec/class.o
2025-10-02T16:09:16.3195280Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/alloc.o
2025-10-02T16:09:16.4173849Z CC [M] drivers/net/ethernet/intel/ice/ice_devlink.o
2025-10-02T16:09:16.6576234Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/init.o
2025-10-02T16:09:16.9548616Z CC [M] drivers/net/can/usb/gs_usb.o
2025-10-02T16:09:17.1994645Z CC [M] drivers/usb/typec/mux.o
2025-10-02T16:09:17.6660709Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/port.o
2025-10-02T16:09:17.9698877Z CC [M] drivers/net/ethernet/intel/ice/ice_fw_update.o
2025-10-02T16:09:17.9960248Z CC [M] drivers/usb/typec/bus.o
2025-10-02T16:09:18.3547975Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/dma.o
2025-10-02T16:09:18.4296144Z CC [M] drivers/net/can/usb/mcba_usb.o
2025-10-02T16:09:18.6921356Z CC [M] drivers/usb/typec/hd3ss3220.o
2025-10-02T16:09:19.2902045Z CC [M] drivers/usb/typec/tps6598x.o
2025-10-02T16:09:19.5776906Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/mr.o
2025-10-02T16:09:19.6021559Z CC [M] drivers/net/ethernet/intel/ice/ice_ethtool.o
2025-10-02T16:09:19.6996191Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/eeprom.o
2025-10-02T16:09:19.8878142Z CC [M] drivers/usb/typec/stusb160x.o
2025-10-02T16:09:20.0798030Z CC [M] drivers/net/can/usb/ucan.o
2025-10-02T16:09:20.7908893Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/pd.o
2025-10-02T16:09:20.9850942Z LD [M] drivers/usb/typec/typec.o
2025-10-02T16:09:21.1182967Z CC [M] drivers/usb/roles/class.o
2025-10-02T16:09:21.2524252Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/main.o
2025-10-02T16:09:21.8205645Z CC [M] drivers/usb/roles/intel-xhci-usb-role-switch.o
2025-10-02T16:09:21.8607942Z CC [M] drivers/net/can/softing/softing_main.o
2025-10-02T16:09:21.9567171Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/transobj.o
2025-10-02T16:09:22.6002423Z LD [M] drivers/usb/roles/roles.o
2025-10-02T16:09:22.6437611Z AR drivers/usb/built-in.a
2025-10-02T16:09:22.7029033Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/vport.o
2025-10-02T16:09:22.7046440Z CC [M] drivers/net/ethernet/intel/ice/ice_virtchnl_pf.o
2025-10-02T16:09:22.7740966Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/mcu.o
2025-10-02T16:09:23.3991033Z CC [M] drivers/net/can/softing/softing_fw.o
2025-10-02T16:09:23.5252225Z AR drivers/net/wireless/mediatek/built-in.a
2025-10-02T16:09:23.5678607Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00dev.o
2025-10-02T16:09:24.8114153Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/sriov.o
2025-10-02T16:09:24.9895351Z CC [M] drivers/net/can/softing/softing_cs.o
2025-10-02T16:09:25.5074549Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00mac.o
2025-10-02T16:09:25.6531978Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/mac.o
2025-10-02T16:09:25.6872551Z CC [M] drivers/net/ethernet/intel/ice/ice_sriov.o
2025-10-02T16:09:25.7329838Z LD [M] drivers/net/can/softing/softing.o
2025-10-02T16:09:25.7874091Z CC [M] drivers/net/can/cc770/cc770.o
2025-10-02T16:09:26.4219752Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fs_cmd.o
2025-10-02T16:09:26.9378207Z CC [M] drivers/net/ethernet/intel/ice/ice_dcb.o
2025-10-02T16:09:27.0084210Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00config.o
2025-10-02T16:09:27.1633953Z CC [M] drivers/net/can/cc770/cc770_platform.o
2025-10-02T16:09:28.2078085Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/debugfs.o
2025-10-02T16:09:28.3010859Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00queue.o
2025-10-02T16:09:28.3351148Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fs_core.o
2025-10-02T16:09:28.3713623Z CC [M] drivers/net/can/c_can/c_can.o
2025-10-02T16:09:28.6021178Z CC [M] drivers/net/ethernet/intel/ice/ice_dcb_nl.o
2025-10-02T16:09:29.5927044Z LD [M] drivers/net/wireless/mediatek/mt76/mt7915/mt7915e.o
2025-10-02T16:09:29.6555305Z CC [M] drivers/net/wireless/mediatek/mt76/mmio.o
2025-10-02T16:09:29.8792921Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00link.o
2025-10-02T16:09:30.1605343Z CC [M] drivers/net/can/c_can/c_can_platform.o
2025-10-02T16:09:30.4158258Z CC [M] drivers/net/ethernet/intel/ice/ice_dcb_lib.o
2025-10-02T16:09:30.7532391Z CC [M] drivers/net/wireless/mediatek/mt76/util.o
2025-10-02T16:09:31.2464661Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00debug.o
2025-10-02T16:09:31.2927062Z CC [M] drivers/net/can/c_can/c_can_pci.o
2025-10-02T16:09:31.9455329Z CC [M] drivers/net/wireless/mediatek/mt76/trace.o
2025-10-02T16:09:32.2206295Z CC [M] drivers/net/ethernet/intel/ice/ice_arfs.o
2025-10-02T16:09:32.4431790Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/pci_irq.o
2025-10-02T16:09:32.8243426Z CC [M] drivers/net/can/ifi_canfd/ifi_canfd.o
2025-10-02T16:09:32.9220780Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00crypto.o
2025-10-02T16:09:33.3716705Z CC [M] drivers/net/wireless/mediatek/mt76/dma.o
2025-10-02T16:09:33.6371057Z CC [M] drivers/net/ethernet/intel/ice/ice_xsk.o
2025-10-02T16:09:33.7236943Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fs_counters.o
2025-10-02T16:09:34.3970923Z CC [M] drivers/net/can/m_can/m_can.o
2025-10-02T16:09:34.5862520Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00firmware.o
2025-10-02T16:09:35.0609217Z CC [M] drivers/net/wireless/mediatek/mt76/mac80211.o
2025-10-02T16:09:35.4062795Z LD [M] drivers/net/ethernet/intel/ice/ice.o
2025-10-02T16:09:35.4850966Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/rl.o
2025-10-02T16:09:35.5970287Z AR drivers/net/ethernet/intel/built-in.a
2025-10-02T16:09:35.6183422Z CC [M] drivers/net/ethernet/intel/e100.o
2025-10-02T16:09:35.8617566Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00leds.o
2025-10-02T16:09:36.3737253Z CC [M] drivers/net/can/m_can/m_can_platform.o
2025-10-02T16:09:36.9327439Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lag.o
2025-10-02T16:09:36.9400966Z CC [M] drivers/net/wireless/mediatek/mt76/debugfs.o
2025-10-02T16:09:36.9792853Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00mmio.o
2025-10-02T16:09:37.5617460Z CC [M] drivers/net/can/m_can/tcan4x5x.o
2025-10-02T16:09:38.2058430Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00pci.o
2025-10-02T16:09:38.2784264Z CC [M] drivers/net/wireless/mediatek/mt76/eeprom.o
2025-10-02T16:09:38.3815216Z CC [M] drivers/net/fddi/skfp/skfddi.o
2025-10-02T16:09:38.7203313Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/dev.o
2025-10-02T16:09:38.8594454Z CC [M] drivers/net/can/peak_canfd/peak_pciefd_main.o
2025-10-02T16:09:39.5251136Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00usb.o
2025-10-02T16:09:39.5270128Z CC [M] drivers/net/wireless/mediatek/mt76/tx.o
2025-10-02T16:09:39.9325519Z CC [M] drivers/net/fddi/skfp/hwmtm.o
2025-10-02T16:09:40.1992278Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/events.o
2025-10-02T16:09:40.3554126Z CC [M] drivers/net/can/peak_canfd/peak_canfd.o
2025-10-02T16:09:41.0028526Z CC [M] drivers/net/wireless/mediatek/mt76/agg-rx.o
2025-10-02T16:09:41.3304224Z CC [M] drivers/net/fddi/skfp/fplustm.o
2025-10-02T16:09:41.4941561Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800lib.o
2025-10-02T16:09:41.7105258Z LD [M] drivers/net/can/peak_canfd/peak_pciefd.o
2025-10-02T16:09:41.7708468Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/wq.o
2025-10-02T16:09:41.7853702Z CC [M] drivers/net/can/sja1000/ems_pci.o
2025-10-02T16:09:42.3179647Z CC [M] drivers/net/wireless/mediatek/mt76/mcu.o
2025-10-02T16:09:42.8698905Z CC [M] drivers/net/fddi/skfp/smt.o
2025-10-02T16:09:42.9651919Z CC [M] drivers/net/can/sja1000/f81601.o
2025-10-02T16:09:43.1021739Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/gid.o
2025-10-02T16:09:43.7029385Z CC [M] drivers/net/wireless/mediatek/mt76/pci.o
2025-10-02T16:09:44.2351866Z CC [M] drivers/net/can/sja1000/kvaser_pci.o
2025-10-02T16:09:44.3234185Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/devcom.o
2025-10-02T16:09:44.6354055Z CC [M] drivers/net/fddi/skfp/cfm.o
2025-10-02T16:09:44.9308461Z CC [M] drivers/net/wireless/mediatek/mt76/usb.o
2025-10-02T16:09:45.5921650Z CC [M] drivers/net/can/sja1000/peak_pci.o
2025-10-02T16:09:45.6351426Z CC [M] drivers/net/fddi/skfp/ecm.o
2025-10-02T16:09:45.6607330Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/pci_vsc.o
2025-10-02T16:09:46.7315841Z CC [M] drivers/net/fddi/skfp/pcmplc.o
2025-10-02T16:09:46.9636132Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/dm.o
2025-10-02T16:09:47.0790557Z CC [M] drivers/net/can/sja1000/peak_pcmcia.o
2025-10-02T16:09:47.1714405Z CC [M] drivers/net/wireless/mediatek/mt76/usb_trace.o
2025-10-02T16:09:48.2912039Z CC [M] drivers/net/fddi/skfp/pmf.o
2025-10-02T16:09:48.4752817Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/fs_tracepoint.o
2025-10-02T16:09:48.5543594Z CC [M] drivers/net/can/sja1000/plx_pci.o
2025-10-02T16:09:48.6541332Z CC [M] drivers/net/wireless/mediatek/mt76/sdio.o
2025-10-02T16:09:49.6623587Z CC [M] drivers/net/fddi/skfp/queue.o
2025-10-02T16:09:50.0815642Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_util.o
2025-10-02T16:09:50.1388990Z CC [M] drivers/net/can/sja1000/sja1000.o
2025-10-02T16:09:50.2153959Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800mmio.o
2025-10-02T16:09:50.5670196Z CC [M] drivers/net/fddi/skfp/rmt.o
2025-10-02T16:09:50.6491693Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/fw_tracer.o
2025-10-02T16:09:51.5224211Z CC [M] drivers/net/can/sja1000/sja1000_platform.o
2025-10-02T16:09:51.5571717Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_mac.o
2025-10-02T16:09:51.6315880Z CC [M] drivers/net/fddi/skfp/smtdef.o
2025-10-02T16:09:52.0801031Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2400pci.o
2025-10-02T16:09:52.6227309Z CC [M] drivers/net/fddi/skfp/smtinit.o
2025-10-02T16:09:52.8367750Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/crdump.o
2025-10-02T16:09:52.8714277Z CC [M] drivers/net/can/vcan.o
2025-10-02T16:09:53.5846242Z CC [M] drivers/net/fddi/skfp/smttimer.o
2025-10-02T16:09:53.7354054Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_mcu.o
2025-10-02T16:09:54.1060360Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/devlink.o
2025-10-02T16:09:54.2168859Z CC [M] drivers/net/can/vxcan.o
2025-10-02T16:09:54.4541027Z CC [M] drivers/net/fddi/skfp/srf.o
2025-10-02T16:09:54.6441341Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2500pci.o
2025-10-02T16:09:55.2478753Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_eeprom.o
2025-10-02T16:09:55.4690344Z CC [M] drivers/net/can/slcan.o
2025-10-02T16:09:55.5592650Z CC [M] drivers/net/fddi/skfp/hwt.o
2025-10-02T16:09:55.7282847Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/rsc_dump.o
2025-10-02T16:09:56.5166592Z CC [M] drivers/net/fddi/skfp/drvfbi.o
2025-10-02T16:09:56.5240111Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_phy.o
2025-10-02T16:09:57.0501730Z CC [M] drivers/net/can/janz-ican3.o
2025-10-02T16:09:57.2025798Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fw_reset.o
2025-10-02T16:09:57.3808738Z CC [M] drivers/net/wireless/ralink/rt2x00/rt61pci.o
2025-10-02T16:09:57.7963757Z CC [M] drivers/net/fddi/skfp/ess.o
2025-10-02T16:09:57.8565386Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_mmio.o
2025-10-02T16:09:58.8310632Z CC [M] drivers/net/can/kvaser_pciefd.o
2025-10-02T16:09:58.8655890Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_main.o
2025-10-02T16:09:59.0769137Z LD [M] drivers/net/fddi/skfp/skfp.o
2025-10-02T16:09:59.2082108Z CC [M] drivers/net/fddi/defxx.o
2025-10-02T16:09:59.3002891Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_txrx.o
2025-10-02T16:10:00.5317459Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800pci.o
2025-10-02T16:10:00.6408166Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_trace.o
2025-10-02T16:10:01.0195758Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core.o
2025-10-02T16:10:01.0691348Z CC drivers/input/keyboard/atkbd.o
2025-10-02T16:10:02.0635374Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2500usb.o
2025-10-02T16:10:02.1150566Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_debugfs.o
2025-10-02T16:10:02.4335806Z CC [M] drivers/input/keyboard/adc-keys.o
2025-10-02T16:10:03.1049028Z CC [M] drivers/input/keyboard/adp5520-keys.o
2025-10-02T16:10:03.3100567Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_dfs.o
2025-10-02T16:10:03.7414200Z CC [M] drivers/input/keyboard/adp5588-keys.o
2025-10-02T16:10:03.9996983Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_keys.o
2025-10-02T16:10:04.6981920Z CC [M] drivers/net/wireless/ralink/rt2x00/rt73usb.o
2025-10-02T16:10:04.8244435Z CC [M] drivers/input/keyboard/adp5589-keys.o
2025-10-02T16:10:04.9332944Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_acl_flex_actions.o
2025-10-02T16:10:04.9725492Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_beacon.o
2025-10-02T16:10:05.8785147Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_common.o
2025-10-02T16:10:06.1693894Z CC [M] drivers/input/keyboard/applespi.o
2025-10-02T16:10:06.5581939Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_usb_mcu.o
2025-10-02T16:10:06.9627947Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_env.o
2025-10-02T16:10:07.3675662Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800usb.o
2025-10-02T16:10:07.5951252Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_fs.o
2025-10-02T16:10:07.7481090Z CC [M] drivers/input/keyboard/cros_ec_keyb.o
2025-10-02T16:10:08.3128069Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02_usb_core.o
2025-10-02T16:10:08.3707865Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_hwmon.o
2025-10-02T16:10:08.5731724Z CC [M] drivers/input/keyboard/dlink-dir685-touchkeys.o
2025-10-02T16:10:08.8930924Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2x00lib.o
2025-10-02T16:10:09.0277780Z AR drivers/net/wireless/ralink/built-in.a
2025-10-02T16:10:09.0750935Z CC [M] drivers/net/ethernet/mellanox/mlxsw/core_thermal.o
2025-10-02T16:10:09.3355325Z CC [M] drivers/input/keyboard/gpio_keys.o
2025-10-02T16:10:09.6733953Z LD [M] drivers/net/wireless/mediatek/mt76/mt76.o
2025-10-02T16:10:09.7248156Z LD [M] drivers/net/wireless/mediatek/mt76/mt76-usb.o
2025-10-02T16:10:09.7475419Z LD [M] drivers/net/wireless/mediatek/mt76/mt76-sdio.o
2025-10-02T16:10:09.7645182Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x02-lib.o
2025-10-02T16:10:09.8175685Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x02-usb.o
2025-10-02T16:10:09.9979376Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/dev.o
2025-10-02T16:10:10.1804936Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_ethtool.o
2025-10-02T16:10:10.2734805Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/main.o
2025-10-02T16:10:10.4508604Z CC [M] drivers/input/keyboard/gpio_keys_polled.o
2025-10-02T16:10:10.6679440Z CC [M] drivers/net/ethernet/mellanox/mlxsw/pci.o
2025-10-02T16:10:11.2654769Z CC [M] drivers/input/keyboard/tca6416-keypad.o
2025-10-02T16:10:11.4173727Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/dm_common.o
2025-10-02T16:10:12.1460755Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/rtl8225.o
2025-10-02T16:10:12.2227633Z CC [M] drivers/input/keyboard/tca8418_keypad.o
2025-10-02T16:10:12.9196465Z CC [M] drivers/input/keyboard/iqs62x-keys.o
2025-10-02T16:10:13.1901894Z CC [M] drivers/net/ethernet/mellanox/mlxsw/i2c.o
2025-10-02T16:10:13.5317704Z CC [M] drivers/input/keyboard/lkkbd.o
2025-10-02T16:10:13.6235619Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/fw_common.o
2025-10-02T16:10:13.8035121Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/sa2400.o
2025-10-02T16:10:14.3490789Z CC [M] drivers/input/keyboard/lm8323.o
2025-10-02T16:10:14.6059318Z CC [M] drivers/net/ethernet/mellanox/mlxsw/switchib.o
2025-10-02T16:10:15.1655645Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/max2820.o
2025-10-02T16:10:15.3046062Z CC [M] drivers/input/keyboard/lm8333.o
2025-10-02T16:10:15.4671390Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/phy_common.o
2025-10-02T16:10:16.0662252Z CC [M] drivers/input/keyboard/matrix_keypad.o
2025-10-02T16:10:16.2628607Z CC [M] drivers/net/ethernet/mellanox/mlxsw/switchx2.o
2025-10-02T16:10:16.7276447Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/grf5101.o
2025-10-02T16:10:16.8192412Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_tx.o
2025-10-02T16:10:17.0197076Z CC [M] drivers/input/keyboard/max7359_keypad.o
2025-10-02T16:10:17.6192526Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common.o
2025-10-02T16:10:17.7323375Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/dm.o
2025-10-02T16:10:17.7880737Z CC [M] drivers/input/keyboard/mcs_touchkey.o
2025-10-02T16:10:17.9878297Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/rtl8225se.o
2025-10-02T16:10:18.2059431Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum.o
2025-10-02T16:10:18.4069284Z CC [M] drivers/input/keyboard/mpr121_touchkey.o
2025-10-02T16:10:19.0608414Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/hw.o
2025-10-02T16:10:19.3385275Z CC [M] drivers/input/keyboard/mtk-pmic-keys.o
2025-10-02T16:10:19.3692437Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_rx.o
2025-10-02T16:10:19.3957549Z LD [M] drivers/net/wireless/realtek/rtl818x/rtl8180/rtl818x_pci.o
2025-10-02T16:10:19.5274766Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8187/dev.o
2025-10-02T16:10:19.9450801Z CC [M] drivers/input/keyboard/newtonkbd.o
2025-10-02T16:10:20.5130889Z CC [M] drivers/input/keyboard/opencores-kbd.o
2025-10-02T16:10:21.0726297Z CC [M] drivers/input/keyboard/qt1050.o
2025-10-02T16:10:21.5480148Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/led.o
2025-10-02T16:10:21.7330695Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8225.o
2025-10-02T16:10:21.8796509Z CC [M] drivers/input/keyboard/qt1070.o
2025-10-02T16:10:22.2119973Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_dim.o
2025-10-02T16:10:22.6996871Z CC [M] drivers/input/keyboard/qt2160.o
2025-10-02T16:10:22.7254049Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/phy.o
2025-10-02T16:10:22.8904118Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_buffers.o
2025-10-02T16:10:23.4023264Z CC [M] drivers/input/keyboard/samsung-keypad.o
2025-10-02T16:10:23.6605897Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_txrx.o
2025-10-02T16:10:23.6954242Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8187/leds.o
2025-10-02T16:10:24.2312641Z CC [M] drivers/input/keyboard/stowaway.o
2025-10-02T16:10:24.3110890Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/rf.o
2025-10-02T16:10:24.8781027Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8187/rfkill.o
2025-10-02T16:10:25.0106108Z CC [M] drivers/input/keyboard/sunkbd.o
2025-10-02T16:10:25.1783387Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xdp.o
2025-10-02T16:10:25.3652557Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_switchdev.o
2025-10-02T16:10:25.8381053Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/sw.o
2025-10-02T16:10:25.9951573Z CC [M] drivers/input/keyboard/tm2-touchkey.o
2025-10-02T16:10:26.0851764Z LD [M] drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8187.o
2025-10-02T16:10:26.1607541Z AR drivers/net/ethernet/micrel/built-in.a
2025-10-02T16:10:26.1722101Z CC [M] drivers/net/ethernet/micrel/ks8842.o
2025-10-02T16:10:26.9515466Z CC [M] drivers/input/keyboard/twl4030_keypad.o
2025-10-02T16:10:27.0814277Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_stats.o
2025-10-02T16:10:27.1544651Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/table.o
2025-10-02T16:10:27.3145514Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/trx.o
2025-10-02T16:10:27.7091777Z CC [M] drivers/net/ethernet/micrel/ks8851_common.o
2025-10-02T16:10:27.7848991Z CC [M] drivers/input/keyboard/xtkbd.o
2025-10-02T16:10:28.3370028Z AR drivers/input/keyboard/built-in.a
2025-10-02T16:10:28.4500871Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_router.o
2025-10-02T16:10:28.5332175Z AR drivers/input/mouse/built-in.a
2025-10-02T16:10:28.5447153Z CC [M] drivers/input/mouse/appletouch.o
2025-10-02T16:10:29.0832058Z CC [M] drivers/net/ethernet/micrel/ks8851_spi.o
2025-10-02T16:10:29.4054034Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/rtl8192ce.o
2025-10-02T16:10:29.5598411Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/dm.o
2025-10-02T16:10:29.7200636Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_selftest.o
2025-10-02T16:10:29.8742242Z CC [M] drivers/input/mouse/bcm5974.o
2025-10-02T16:10:30.2020401Z CC [M] drivers/net/ethernet/micrel/ks8851_par.o
2025-10-02T16:10:30.7315950Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/hw.o
2025-10-02T16:10:30.7572627Z CC [M] drivers/input/mouse/cyapa.o
2025-10-02T16:10:31.3461571Z CC [M] drivers/net/ethernet/micrel/ksz884x.o
2025-10-02T16:10:31.4311967Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/port.o
2025-10-02T16:10:32.0933974Z CC [M] drivers/input/mouse/cyapa_gen3.o
2025-10-02T16:10:33.1659010Z CC [M] drivers/input/mouse/cyapa_gen5.o
2025-10-02T16:10:33.3349272Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/led.o
2025-10-02T16:10:33.3730641Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/monitor_stats.o
2025-10-02T16:10:34.4799791Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/mac.o
2025-10-02T16:10:34.5642727Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum1_kvdl.o
2025-10-02T16:10:34.7220710Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/phy.o
2025-10-02T16:10:34.8527734Z CC [M] drivers/input/mouse/cyapa_gen6.o
2025-10-02T16:10:34.9422906Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/health.o
2025-10-02T16:10:35.7694724Z CC [M] drivers/input/mouse/elan_i2c_core.o
2025-10-02T16:10:36.0101305Z CC [M] drivers/input/mouse/elan_i2c_i2c.o
2025-10-02T16:10:36.1704595Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/rf.o
2025-10-02T16:10:36.1876022Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum2_kvdl.o
2025-10-02T16:10:36.5558861Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/reporter_tx.o
2025-10-02T16:10:36.9367256Z CC [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw_fsm.o
2025-10-02T16:10:37.2959196Z CC [M] drivers/input/mouse/elan_i2c_smbus.o
2025-10-02T16:10:37.5833567Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/sw.o
2025-10-02T16:10:37.8404054Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_kvdl.o
2025-10-02T16:10:37.9476487Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/reporter_rx.o
2025-10-02T16:10:38.0344199Z CC [M] drivers/input/mouse/gpio_mouse.o
2025-10-02T16:10:38.1338055Z CC [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw_mfa2_tlv_multi.o
2025-10-02T16:10:38.5564367Z CC [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw_mfa2.o
2025-10-02T16:10:38.6291018Z CC [M] drivers/input/mouse/psmouse-base.o
2025-10-02T16:10:38.9944948Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/table.o
2025-10-02T16:10:39.0711781Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.o
2025-10-02T16:10:39.2876838Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_tcam.o
2025-10-02T16:10:39.6339278Z LD [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw.o
2025-10-02T16:10:39.6973161Z AR drivers/net/ethernet/microchip/built-in.a
2025-10-02T16:10:39.6983835Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/params.o
2025-10-02T16:10:39.7148142Z CC [M] drivers/net/ethernet/microchip/enc28j60.o
2025-10-02T16:10:39.7853471Z CC [M] drivers/input/mouse/synaptics.o
2025-10-02T16:10:40.5291107Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/rtl8192cu.o
2025-10-02T16:10:40.6045048Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/dm.o
2025-10-02T16:10:41.3622945Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xsk/pool.o
2025-10-02T16:10:41.4312671Z CC [M] drivers/input/mouse/focaltech.o
2025-10-02T16:10:41.8316018Z CC [M] drivers/net/ethernet/microchip/encx24j600.o
2025-10-02T16:10:42.0263354Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/fw.o
2025-10-02T16:10:42.1891322Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_ctcam.o
2025-10-02T16:10:42.2239147Z CC [M] drivers/input/mouse/alps.o
2025-10-02T16:10:42.7951477Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xsk/setup.o
2025-10-02T16:10:43.5305922Z CC [M] drivers/net/ethernet/microchip/encx24j600-regmap.o
2025-10-02T16:10:43.5849939Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/hw.o
2025-10-02T16:10:43.6029114Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_atcam.o
2025-10-02T16:10:44.0572196Z CC [M] drivers/input/mouse/byd.o
2025-10-02T16:10:44.4905307Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xsk/rx.o
2025-10-02T16:10:44.6490520Z CC [M] drivers/input/mouse/elantech.o
2025-10-02T16:10:44.7452841Z CC [M] drivers/net/ethernet/microchip/lan743x_main.o
2025-10-02T16:10:45.7696526Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_erp.o
2025-10-02T16:10:46.0264390Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/xsk/tx.o
2025-10-02T16:10:46.0803564Z CC [M] drivers/input/mouse/logips2pp.o
2025-10-02T16:10:46.1783606Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/led.o
2025-10-02T16:10:46.7911413Z CC [M] drivers/input/mouse/lifebook.o
2025-10-02T16:10:47.3818524Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/phy.o
2025-10-02T16:10:47.4587078Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/devlink.o
2025-10-02T16:10:47.5093494Z CC [M] drivers/input/mouse/sentelic.o
2025-10-02T16:10:47.5297382Z CC [M] drivers/net/ethernet/microchip/lan743x_ethtool.o
2025-10-02T16:10:48.0549891Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum1_acl_tcam.o
2025-10-02T16:10:48.5620238Z CC [M] drivers/input/mouse/trackpoint.o
2025-10-02T16:10:48.5653480Z CC [M] drivers/net/ethernet/microchip/lan743x_ptp.o
2025-10-02T16:10:48.8466164Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_arfs.o
2025-10-02T16:10:49.3128367Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/rf.o
2025-10-02T16:10:49.5024110Z CC [M] drivers/input/mouse/touchkit_ps2.o
2025-10-02T16:10:49.5315277Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum2_acl_tcam.o
2025-10-02T16:10:50.0521747Z CC [M] drivers/input/mouse/cypress_ps2.o
2025-10-02T16:10:50.0899400Z LD [M] drivers/net/ethernet/microchip/lan743x.o
2025-10-02T16:10:50.1668293Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_bloom_filter.o
2025-10-02T16:10:50.5435105Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/sw.o
2025-10-02T16:10:50.7249915Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_fs_ethtool.o
2025-10-02T16:10:50.8912829Z CC [M] drivers/input/mouse/vmmouse.o
2025-10-02T16:10:51.1424311Z CC [M] drivers/input/mouse/psmouse-smbus.o
2025-10-02T16:10:51.6364290Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/table.o
2025-10-02T16:10:51.6963061Z CC [M] drivers/net/plip/plip.o
2025-10-02T16:10:51.7114696Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/trx.o
2025-10-02T16:10:51.8113666Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl.o
2025-10-02T16:10:51.9733130Z CC [M] drivers/input/mouse/sermouse.o
2025-10-02T16:10:52.4265703Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_dcbnl.o
2025-10-02T16:10:52.6483132Z CC [M] drivers/input/mouse/synaptics_i2c.o
2025-10-02T16:10:53.1298284Z CC [M] drivers/input/joystick/iforce/iforce-ff.o
2025-10-02T16:10:53.4133582Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/rtl8192se.o
2025-10-02T16:10:53.5112039Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/dm.o
2025-10-02T16:10:53.5741271Z CC [M] drivers/input/mouse/synaptics_usb.o
2025-10-02T16:10:53.7532942Z CC [M] drivers/input/joystick/iforce/iforce-main.o
2025-10-02T16:10:54.2201638Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_flow.o
2025-10-02T16:10:54.3439399Z CC [M] drivers/input/joystick/iforce/iforce-packets.o
2025-10-02T16:10:54.5599215Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/port_buffer.o
2025-10-02T16:10:54.6892684Z CC [M] drivers/input/mouse/vsxxxaa.o
2025-10-02T16:10:54.8931886Z CC [M] drivers/input/joystick/iforce/iforce-serio.o
2025-10-02T16:10:54.9959178Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/fw.o
2025-10-02T16:10:55.5060484Z LD [M] drivers/input/mouse/cyapatp.o
2025-10-02T16:10:55.5472320Z LD [M] drivers/input/mouse/elan_i2c.o
2025-10-02T16:10:55.5858821Z LD [M] drivers/input/mouse/psmouse.o
2025-10-02T16:10:55.6691565Z CC [M] drivers/input/joystick/iforce/iforce-usb.o
2025-10-02T16:10:55.7478430Z AR drivers/net/wireless/rsi/built-in.a
2025-10-02T16:10:55.7587204Z CC [M] drivers/net/wireless/rsi/rsi_91x_main.o
2025-10-02T16:10:55.8811232Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_matchall.o
2025-10-02T16:10:56.1003657Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lag_mp.o
2025-10-02T16:10:56.4574191Z LD [M] drivers/input/joystick/iforce/iforce.o
2025-10-02T16:10:56.4612182Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/hw.o
2025-10-02T16:10:56.4975320Z AR drivers/input/joystick/built-in.a
2025-10-02T16:10:56.5084668Z CC [M] drivers/input/joystick/a3d.o
2025-10-02T16:10:57.2176547Z CC [M] drivers/net/wireless/rsi/rsi_91x_core.o
2025-10-02T16:10:57.3302346Z CC [M] drivers/input/joystick/adc-joystick.o
2025-10-02T16:10:57.4923664Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_flower.o
2025-10-02T16:10:57.7973922Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/geneve.o
2025-10-02T16:10:58.1941914Z CC [M] drivers/input/joystick/adi.o
2025-10-02T16:10:58.6150679Z CC [M] drivers/net/wireless/rsi/rsi_91x_mac80211.o
2025-10-02T16:10:58.9728127Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/led.o
2025-10-02T16:10:59.0760873Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_cnt.o
2025-10-02T16:10:59.0903059Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/port_tun.o
2025-10-02T16:10:59.5328018Z CC [M] drivers/input/joystick/as5011.o
2025-10-02T16:11:00.2585601Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.o
2025-10-02T16:11:00.4517728Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_rep.o
2025-10-02T16:11:00.4886464Z CC [M] drivers/input/joystick/analog.o
2025-10-02T16:11:00.5731751Z CC [M] drivers/net/wireless/rsi/rsi_91x_mgmt.o
2025-10-02T16:11:00.5979354Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_fid.o
2025-10-02T16:11:01.7974506Z CC [M] drivers/input/joystick/cobra.o
2025-10-02T16:11:02.5208345Z CC [M] drivers/input/joystick/db9.o
2025-10-02T16:11:02.5372769Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/rep/bond.o
2025-10-02T16:11:02.5854357Z CC [M] drivers/net/wireless/rsi/rsi_91x_hal.o
2025-10-02T16:11:03.3235772Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_ipip.o
2025-10-02T16:11:03.5111300Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/rf.o
2025-10-02T16:11:03.5311767Z CC [M] drivers/input/joystick/fsia6b.o
2025-10-02T16:11:04.0439733Z CC [M] drivers/net/wireless/rsi/rsi_91x_ps.o
2025-10-02T16:11:04.1455280Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/mod_hdr.o
2025-10-02T16:11:04.4759198Z CC [M] drivers/input/joystick/gamecon.o
2025-10-02T16:11:05.1201485Z CC [M] drivers/net/wireless/rsi/rsi_91x_coex.o
2025-10-02T16:11:05.1468642Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/sw.o
2025-10-02T16:11:05.2132904Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_flex_actions.o
2025-10-02T16:11:05.5371499Z CC [M] drivers/input/joystick/gf2k.o
2025-10-02T16:11:05.5891606Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_tc.o
2025-10-02T16:11:06.2260949Z CC [M] drivers/net/wireless/rsi/rsi_91x_debugfs.o
2025-10-02T16:11:06.4988221Z CC [M] drivers/input/joystick/grip.o
2025-10-02T16:11:06.7531113Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_acl_flex_keys.o
2025-10-02T16:11:06.8684925Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/table.o
2025-10-02T16:11:07.0247970Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/trx.o
2025-10-02T16:11:07.2127876Z CC [M] drivers/input/joystick/grip_mp.o
2025-10-02T16:11:07.5482544Z CC [M] drivers/net/wireless/rsi/rsi_91x_sdio.o
2025-10-02T16:11:08.1380641Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum1_mr_tcam.o
2025-10-02T16:11:08.1579905Z CC [M] drivers/input/joystick/guillemot.o
2025-10-02T16:11:08.7553411Z CC [M] drivers/input/joystick/interact.o
2025-10-02T16:11:09.1028917Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/rtl8192de.o
2025-10-02T16:11:09.2683139Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/dm.o
2025-10-02T16:11:09.3252900Z CC [M] drivers/net/wireless/rsi/rsi_91x_sdio_ops.o
2025-10-02T16:11:09.3859165Z CC [M] drivers/input/joystick/joydump.o
2025-10-02T16:11:09.9163718Z CC [M] drivers/input/joystick/magellan.o
2025-10-02T16:11:10.0399262Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum2_mr_tcam.o
2025-10-02T16:11:10.6067541Z CC [M] drivers/input/joystick/psxpad-spi.o
2025-10-02T16:11:10.6230365Z CC [M] drivers/net/wireless/rsi/rsi_91x_usb.o
2025-10-02T16:11:10.6942184Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/fw.o
2025-10-02T16:11:11.0081328Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/rep/tc.o
2025-10-02T16:11:11.5517627Z CC [M] drivers/input/joystick/pxrc.o
2025-10-02T16:11:11.6126659Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_mr_tcam.o
2025-10-02T16:11:12.1600633Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_btc.o
2025-10-02T16:11:12.3099025Z CC [M] drivers/net/wireless/rsi/rsi_91x_usb_ops.o
2025-10-02T16:11:12.3162319Z CC [M] drivers/input/joystick/sidewinder.o
2025-10-02T16:11:12.6231671Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/rep/neigh.o
2025-10-02T16:11:13.3482204Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_mr.o
2025-10-02T16:11:13.6486915Z LD [M] drivers/net/wireless/rsi/rsi_91x.o
2025-10-02T16:11:13.6887770Z LD [M] drivers/net/wireless/rsi/rsi_sdio.o
2025-10-02T16:11:13.7232195Z LD [M] drivers/net/wireless/rsi/rsi_usb.o
2025-10-02T16:11:13.8119069Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_qdisc.o
2025-10-02T16:11:13.8420553Z CC [M] drivers/input/joystick/spaceball.o
2025-10-02T16:11:14.1494501Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hal_bt_coexist.o
2025-10-02T16:11:14.5624135Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/mapping.o
2025-10-02T16:11:14.6719255Z CC [M] drivers/input/joystick/spaceorb.o
2025-10-02T16:11:15.3470042Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/fs_chains.o
2025-10-02T16:11:15.3471509Z CC [M] drivers/input/joystick/stinger.o
2025-10-02T16:11:15.3951455Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/hw.o
2025-10-02T16:11:15.8666416Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/led.o
2025-10-02T16:11:15.9396893Z CC [M] drivers/input/joystick/tmdc.o
2025-10-02T16:11:16.1972727Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_span.o
2025-10-02T16:11:16.7607601Z CC [M] drivers/input/joystick/turbografx.o
2025-10-02T16:11:17.2196715Z AR drivers/net/ethernet/mscc/built-in.a
2025-10-02T16:11:17.2308474Z CC [M] drivers/net/ethernet/mscc/ocelot.o
2025-10-02T16:11:17.3448889Z CC [M] drivers/input/joystick/twidjoy.o
2025-10-02T16:11:17.4891767Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun.o
2025-10-02T16:11:17.9212958Z CC [M] drivers/input/joystick/warrior.o
2025-10-02T16:11:18.0148421Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/phy.o
2025-10-02T16:11:18.5522338Z CC [M] drivers/input/joystick/walkera0701.o
2025-10-02T16:11:18.7804005Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_nve.o
2025-10-02T16:11:19.2790373Z CC [M] drivers/input/joystick/xpad.o
2025-10-02T16:11:19.4666056Z CC [M] drivers/net/ethernet/mscc/ocelot_io.o
2025-10-02T16:11:19.6480035Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_vxlan.o
2025-10-02T16:11:20.1064630Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/pwrseq.o
2025-10-02T16:11:20.4279003Z CC [M] drivers/input/joystick/zhenhua.o
2025-10-02T16:11:20.7499766Z CC [M] drivers/net/ethernet/mscc/ocelot_police.o
2025-10-02T16:11:20.8130750Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_nve_vxlan.o
2025-10-02T16:11:21.1146325Z AR drivers/input/tablet/built-in.a
2025-10-02T16:11:21.1267904Z CC [M] drivers/input/tablet/acecad.o
2025-10-02T16:11:21.3364463Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/rf.o
2025-10-02T16:11:21.5230278Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_gre.o
2025-10-02T16:11:21.8653478Z CC [M] drivers/input/tablet/aiptek.o
2025-10-02T16:11:22.1167101Z CC [M] drivers/net/ethernet/mscc/ocelot_vcap.o
2025-10-02T16:11:22.2515276Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_dpipe.o
2025-10-02T16:11:22.8505254Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/sw.o
2025-10-02T16:11:23.1277627Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_geneve.o
2025-10-02T16:11:23.2942534Z CC [M] drivers/input/tablet/gtco.o
2025-10-02T16:11:24.0430804Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_trap.o
2025-10-02T16:11:24.2788959Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/table.o
2025-10-02T16:11:24.3391608Z CC [M] drivers/input/tablet/hanwang.o
2025-10-02T16:11:24.3611917Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/trx.o
2025-10-02T16:11:24.4549001Z CC [M] drivers/net/ethernet/mscc/ocelot_flower.o
2025-10-02T16:11:24.5849029Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_tun_mplsoudp.o
2025-10-02T16:11:25.0934220Z CC [M] drivers/input/tablet/kbtab.o
2025-10-02T16:11:25.8317922Z CC [M] drivers/input/tablet/pegasus_notetaker.o
2025-10-02T16:11:26.0047171Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/rtl8723ae.o
2025-10-02T16:11:26.0815692Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/diag/en_tc_tracepoint.o
2025-10-02T16:11:26.0846640Z CC [M] drivers/net/ethernet/mscc/ocelot_ptp.o
2025-10-02T16:11:26.0880878Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/dm.o
2025-10-02T16:11:26.1034802Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_ethtool.o
2025-10-02T16:11:26.6521503Z CC [M] drivers/input/tablet/wacom_serial4.o
2025-10-02T16:11:27.4197010Z LD [M] drivers/net/ethernet/mscc/mscc_ocelot_switch_lib.o
2025-10-02T16:11:27.5200352Z AR drivers/net/ethernet/mellanox/built-in.a
2025-10-02T16:11:27.5938151Z CC drivers/input/touchscreen/of_touchscreen.o
2025-10-02T16:11:27.6218210Z CC [M] drivers/input/touchscreen/88pm860x-ts.o
2025-10-02T16:11:27.7081802Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/fw.o
2025-10-02T16:11:27.9245072Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/tc_ct.o
2025-10-02T16:11:28.2891554Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_policer.o
2025-10-02T16:11:28.3374690Z CC [M] drivers/net/wireless/st/cw1200/fwio.o
2025-10-02T16:11:28.3680873Z CC [M] drivers/input/touchscreen/ad7877.o
2025-10-02T16:11:29.0355798Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/hw.o
2025-10-02T16:11:29.4129813Z CC [M] drivers/input/touchscreen/ad7879.o
2025-10-02T16:11:29.8725072Z CC [M] drivers/net/wireless/st/cw1200/txrx.o
2025-10-02T16:11:30.0716651Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_dcb.o
2025-10-02T16:11:30.3508511Z CC [M] drivers/input/touchscreen/ad7879-i2c.o
2025-10-02T16:11:30.7375779Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/eswitch.o
2025-10-02T16:11:30.9837251Z CC [M] drivers/input/touchscreen/ad7879-spi.o
2025-10-02T16:11:31.7106371Z CC [M] drivers/input/touchscreen/resistive-adc-touch.o
2025-10-02T16:11:31.8811213Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/led.o
2025-10-02T16:11:31.9401763Z CC [M] drivers/net/ethernet/mellanox/mlxsw/spectrum_ptp.o
2025-10-02T16:11:32.0976342Z CC [M] drivers/net/wireless/st/cw1200/main.o
2025-10-02T16:11:32.4205026Z CC [M] drivers/input/touchscreen/ads7846.o
2025-10-02T16:11:33.3330522Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/phy.o
2025-10-02T16:11:33.5993155Z CC [M] drivers/net/wireless/st/cw1200/queue.o
2025-10-02T16:11:33.7508012Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.o
2025-10-02T16:11:33.9102554Z CC [M] drivers/input/touchscreen/atmel_mxt_ts.o
2025-10-02T16:11:33.9949928Z CC [M] drivers/net/ethernet/mellanox/mlxsw/minimal.o
2025-10-02T16:11:35.1245469Z CC [M] drivers/net/wireless/st/cw1200/hwio.o
2025-10-02T16:11:35.4377772Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_core.o
2025-10-02T16:11:35.4754877Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci.o
2025-10-02T16:11:35.4931283Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c.o
2025-10-02T16:11:35.5077600Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchib.o
2025-10-02T16:11:35.5236086Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchx2.o
2025-10-02T16:11:35.5410105Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_spectrum.o
2025-10-02T16:11:35.7236236Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_minimal.o
2025-10-02T16:11:35.7892222Z AR drivers/net/wireless/st/built-in.a
2025-10-02T16:11:35.8178588Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/dm.o
2025-10-02T16:11:36.1755556Z CC [M] drivers/net/wireless/st/cw1200/bh.o
2025-10-02T16:11:36.2692865Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/pwrseq.o
2025-10-02T16:11:36.3435494Z CC [M] drivers/input/touchscreen/auo-pixcir-ts.o
2025-10-02T16:11:37.0183410Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_termtbl.o
2025-10-02T16:11:37.2276816Z CC [M] drivers/input/touchscreen/bu21013_ts.o
2025-10-02T16:11:37.4310661Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/rf.o
2025-10-02T16:11:37.5550029Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/fw.o
2025-10-02T16:11:37.8694959Z CC [M] drivers/net/wireless/st/cw1200/wsm.o
2025-10-02T16:11:38.2034800Z CC [M] drivers/input/touchscreen/bu21029_ts.o
2025-10-02T16:11:38.7805587Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/sw.o
2025-10-02T16:11:38.9165755Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/ecpf.o
2025-10-02T16:11:39.1096072Z CC [M] drivers/input/touchscreen/chipone_icn8505.o
2025-10-02T16:11:39.1724832Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/hw.o
2025-10-02T16:11:39.8744867Z CC [M] drivers/input/touchscreen/cy8ctma140.o
2025-10-02T16:11:40.1576693Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/table.o
2025-10-02T16:11:40.1726830Z CC [M] drivers/net/wireless/st/cw1200/sta.o
2025-10-02T16:11:40.3063380Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/trx.o
2025-10-02T16:11:40.4013365Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/rdma.o
2025-10-02T16:11:40.9221207Z CC [M] drivers/input/touchscreen/cy8ctmg110_ts.o
2025-10-02T16:11:41.3301436Z In file included from ./include/linux/kernel.h:15,
2025-10-02T16:11:41.3330742Z from ./include/linux/list.h:9,
2025-10-02T16:11:41.3331696Z from ./include/linux/preempt.h:11,
2025-10-02T16:11:41.3332564Z from ./include/linux/spinlock.h:51,
2025-10-02T16:11:41.3333457Z from ./include/linux/vmalloc.h:5,
2025-10-02T16:11:41.3334377Z from drivers/net/wireless/st/cw1200/sta.c:9:
2025-10-02T16:11:41.3335822Z drivers/net/wireless/st/cw1200/sta.c: In function ‘cw1200_do_join’:
2025-10-02T16:11:41.3337393Z ./include/linux/minmax.h:20:35: warning: comparison of distinct pointer types lacks a cast [-Wcompare-distinct-pointer-types]
2025-10-02T16:11:41.3338850Z 20 | (!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
2025-10-02T16:11:41.3339920Z | ^~
2025-10-02T16:11:41.3341068Z ./include/linux/minmax.h:26:18: note: in expansion of macro ‘__typecheck’
2025-10-02T16:11:41.3342187Z 26 | (__typecheck(x, y) && __no_side_effects(x, y))
2025-10-02T16:11:41.3343499Z | ^~~~~~~~~~~
2025-10-02T16:11:41.3344788Z ./include/linux/minmax.h:36:31: note: in expansion of macro ‘__safe_cmp’
2025-10-02T16:11:41.3345901Z 36 | __builtin_choose_expr(__safe_cmp(x, y), \
2025-10-02T16:11:41.3346786Z | ^~~~~~~~~~
2025-10-02T16:11:41.3347939Z ./include/linux/minmax.h:45:25: note: in expansion of macro ‘__careful_cmp’
2025-10-02T16:11:41.3349012Z 45 | #define min(x, y) __careful_cmp(x, y, <)
2025-10-02T16:11:41.3350073Z | ^~~~~~~~~~~~~
2025-10-02T16:11:41.3351248Z drivers/net/wireless/st/cw1200/sta.c:1292:41: note: in expansion of macro ‘min’
2025-10-02T16:11:41.3352471Z 1292 | join.ssid_len = min(ssidie[1], IEEE80211_MAX_SSID_LEN);
2025-10-02T16:11:41.3353447Z | ^~~
2025-10-02T16:11:41.6317675Z CC [M] drivers/input/touchscreen/cyttsp_core.o
2025-10-02T16:11:41.7590992Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/led.o
2025-10-02T16:11:41.9683621Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/helper.o
2025-10-02T16:11:42.0674707Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/rtl8723be.o
2025-10-02T16:11:42.1852355Z CC drivers/rtc/lib.o
2025-10-02T16:11:42.5929705Z CC [M] drivers/input/touchscreen/cyttsp_i2c.o
2025-10-02T16:11:42.6784654Z CC [M] drivers/net/wireless/st/cw1200/scan.o
2025-10-02T16:11:42.7547058Z CC drivers/rtc/systohc.o
2025-10-02T16:11:43.1246259Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/phy.o
2025-10-02T16:11:43.1819394Z CC [M] drivers/input/touchscreen/cyttsp_i2c_common.o
2025-10-02T16:11:43.4790097Z CC drivers/rtc/class.o
2025-10-02T16:11:43.4919364Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/egress_lgcy.o
2025-10-02T16:11:43.7734226Z CC [M] drivers/input/touchscreen/cyttsp_spi.o
2025-10-02T16:11:44.1344840Z CC [M] drivers/net/wireless/st/cw1200/debug.o
2025-10-02T16:11:44.3178690Z CC drivers/rtc/interface.o
2025-10-02T16:11:44.4224405Z CC [M] drivers/input/touchscreen/cyttsp4_core.o
2025-10-02T16:11:44.9646358Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/egress_ofld.o
2025-10-02T16:11:45.8096086Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/pwrseq.o
2025-10-02T16:11:45.8208169Z CC [M] drivers/net/wireless/st/cw1200/pm.o
2025-10-02T16:11:45.8458438Z CC drivers/rtc/nvmem.o
2025-10-02T16:11:46.0482260Z CC [M] drivers/input/touchscreen/cyttsp4_i2c.o
2025-10-02T16:11:46.4009440Z CC drivers/rtc/dev.o
2025-10-02T16:11:46.6528469Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/ingress_lgcy.o
2025-10-02T16:11:46.7047373Z CC [M] drivers/input/touchscreen/cyttsp4_spi.o
2025-10-02T16:11:46.7810847Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/rf.o
2025-10-02T16:11:47.1388943Z CC [M] drivers/net/wireless/st/cw1200/cw1200_sdio.o
2025-10-02T16:11:47.2133176Z CC drivers/rtc/proc.o
2025-10-02T16:11:47.4369964Z CC [M] drivers/input/touchscreen/da9034-ts.o
2025-10-02T16:11:47.7839453Z CC drivers/rtc/sysfs.o
2025-10-02T16:11:48.1164372Z CC [M] drivers/input/touchscreen/da9052_tsi.o
2025-10-02T16:11:48.2423468Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/acl/ingress_ofld.o
2025-10-02T16:11:48.2641748Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/sw.o
2025-10-02T16:11:48.4759124Z CC [M] drivers/net/wireless/st/cw1200/cw1200_spi.o
2025-10-02T16:11:48.4981028Z CC drivers/rtc/rtc-mc146818-lib.o
2025-10-02T16:11:48.8953628Z CC [M] drivers/input/touchscreen/dynapro.o
2025-10-02T16:11:49.2694389Z CC drivers/rtc/rtc-cmos.o
2025-10-02T16:11:49.5681476Z CC [M] drivers/input/touchscreen/edt-ft5x06.o
2025-10-02T16:11:49.6924828Z LD [M] drivers/net/wireless/st/cw1200/cw1200_core.o
2025-10-02T16:11:49.6961187Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/esw/devlink_port.o
2025-10-02T16:11:49.7494988Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/table.o
2025-10-02T16:11:49.7727475Z LD [M] drivers/net/wireless/st/cw1200/cw1200_wlan_sdio.o
2025-10-02T16:11:49.7876621Z LD [M] drivers/net/wireless/st/cw1200/cw1200_wlan_spi.o
2025-10-02T16:11:49.8704277Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/trx.o
2025-10-02T16:11:49.9482229Z CC [M] drivers/net/ethernet/myricom/myri10ge/myri10ge.o
2025-10-02T16:11:50.5330370Z CC [M] drivers/rtc/rtc-88pm80x.o
2025-10-02T16:11:51.1018798Z CC [M] drivers/input/touchscreen/hampshire.o
2025-10-02T16:11:51.1564389Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/mpfs.o
2025-10-02T16:11:51.3106950Z CC [M] drivers/rtc/rtc-88pm860x.o
2025-10-02T16:11:51.8064140Z CC [M] drivers/input/touchscreen/gunze.o
2025-10-02T16:11:51.8527022Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/rtl8188ee.o
2025-10-02T16:11:51.9391369Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8192e2ant.o
2025-10-02T16:11:52.3126596Z CC [M] drivers/rtc/rtc-ab3100.o
2025-10-02T16:11:52.4811686Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/clock.o
2025-10-02T16:11:52.6071280Z CC [M] drivers/input/touchscreen/eeti_ts.o
2025-10-02T16:11:52.9802781Z AR drivers/net/ethernet/myricom/built-in.a
2025-10-02T16:11:53.0513856Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/main.o
2025-10-02T16:11:53.0971432Z CC [M] drivers/rtc/rtc-ab-b5ze-s3.o
2025-10-02T16:11:53.4900138Z CC [M] drivers/input/touchscreen/ektf2127.o
2025-10-02T16:11:53.9675694Z CC [M] drivers/rtc/rtc-ab-eoz9.o
2025-10-02T16:11:54.0727884Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8723b1ant.o
2025-10-02T16:11:54.2620791Z CC [M] drivers/input/touchscreen/elants_i2c.o
2025-10-02T16:11:54.2995159Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/dm_common.o
2025-10-02T16:11:54.4015399Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.o
2025-10-02T16:11:54.6835792Z CC [M] drivers/rtc/rtc-abx80x.o
2025-10-02T16:11:55.5050202Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/fw_common.o
2025-10-02T16:11:55.6790661Z CC [M] drivers/rtc/rtc-bq32k.o
2025-10-02T16:11:55.7199261Z CC [M] drivers/input/touchscreen/elo.o
2025-10-02T16:11:56.3074581Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8723b2ant.o
2025-10-02T16:11:56.5686268Z CC [M] drivers/input/touchscreen/egalax_ts_serial.o
2025-10-02T16:11:56.6171846Z CC [M] drivers/rtc/rtc-bq4802.o
2025-10-02T16:11:57.0776973Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/phy_common.o
2025-10-02T16:11:57.1758237Z CC [M] drivers/input/touchscreen/exc3000.o
2025-10-02T16:11:57.2681669Z CC [M] drivers/rtc/rtc-cros-ec.o
2025-10-02T16:11:57.9280154Z CC [M] drivers/input/touchscreen/fujitsu_ts.o
2025-10-02T16:11:58.0541037Z CC [M] drivers/rtc/rtc-da9052.o
2025-10-02T16:11:58.2633346Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/ipoib/ethtool.o
2025-10-02T16:11:58.3835284Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common.o
2025-10-02T16:11:58.4421030Z CC [M] drivers/net/ppp/ppp_generic.o
2025-10-02T16:11:58.5884781Z CC [M] drivers/input/touchscreen/goodix.o
2025-10-02T16:11:58.7072621Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8821a1ant.o
2025-10-02T16:11:58.9841258Z CC [M] drivers/rtc/rtc-da9055.o
2025-10-02T16:11:59.6474748Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib_vlan.o
2025-10-02T16:11:59.8802973Z CC [M] drivers/rtc/rtc-da9063.o
2025-10-02T16:12:00.0418972Z CC [M] drivers/input/touchscreen/hideep.o
2025-10-02T16:12:00.6967297Z CC [M] drivers/rtc/rtc-ds1286.o
2025-10-02T16:12:00.9494055Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtc8821a2ant.o
2025-10-02T16:12:01.0654132Z CC [M] drivers/net/ppp/ppp_async.o
2025-10-02T16:12:01.1170386Z CC [M] drivers/input/touchscreen/ili210x.o
2025-10-02T16:12:01.5554649Z CC [M] drivers/rtc/rtc-ds1302.o
2025-10-02T16:12:01.8280319Z CC [M] drivers/input/touchscreen/inexio.o
2025-10-02T16:12:02.2614543Z CC [M] drivers/rtc/rtc-ds1305.o
2025-10-02T16:12:02.3964163Z CC [M] drivers/net/ppp/bsd_comp.o
2025-10-02T16:12:02.4123468Z CC [M] drivers/input/touchscreen/max11801_ts.o
2025-10-02T16:12:03.1214107Z CC [M] drivers/input/touchscreen/mc13783_ts.o
2025-10-02T16:12:03.1889850Z CC [M] drivers/rtc/rtc-ds1307.o
2025-10-02T16:12:03.2637188Z CC [M] drivers/net/ppp/ppp_deflate.o
2025-10-02T16:12:03.3433304Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/halbtcoutsrc.o
2025-10-02T16:12:03.6952863Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/accel/ipsec_offload.o
2025-10-02T16:12:03.8412941Z CC [M] drivers/input/touchscreen/mcs5000_ts.o
2025-10-02T16:12:03.9183324Z CC [M] drivers/net/ppp/ppp_mppe.o
2025-10-02T16:12:04.4469176Z CC [M] drivers/input/touchscreen/melfas_mip4.o
2025-10-02T16:12:04.5990586Z CC [M] drivers/rtc/rtc-ds1343.o
2025-10-02T16:12:04.9083440Z CC [M] drivers/net/ppp/ppp_synctty.o
2025-10-02T16:12:05.1428362Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/rtl_btc.o
2025-10-02T16:12:05.3624552Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/ipsec.o
2025-10-02T16:12:05.6973188Z CC [M] drivers/input/touchscreen/mms114.o
2025-10-02T16:12:05.7241962Z CC [M] drivers/rtc/rtc-ds1347.o
2025-10-02T16:12:06.0477369Z CC [M] drivers/net/ppp/pppox.o
2025-10-02T16:12:06.4624355Z CC [M] drivers/rtc/rtc-ds1374.o
2025-10-02T16:12:06.6354969Z LD [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist.o
2025-10-02T16:12:06.7329042Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/dm.o
2025-10-02T16:12:06.8723045Z CC [M] drivers/input/touchscreen/mtouch.o
2025-10-02T16:12:06.9984643Z CC [M] drivers/net/ppp/pppoe.o
2025-10-02T16:12:07.4267209Z CC [M] drivers/rtc/rtc-ds1390.o
2025-10-02T16:12:07.5001566Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/tls.o
2025-10-02T16:12:07.5462533Z CC [M] drivers/input/touchscreen/mk712.o
2025-10-02T16:12:08.1533198Z CC [M] drivers/rtc/rtc-ds1511.o
2025-10-02T16:12:08.3722323Z CC [M] drivers/input/touchscreen/usbtouchscreen.o
2025-10-02T16:12:08.5373132Z CC [M] drivers/net/ppp/pptp.o
2025-10-02T16:12:08.7363132Z CC [M] drivers/rtc/rtc-ds1553.o
2025-10-02T16:12:08.8812210Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/fw.o
2025-10-02T16:12:09.0890502Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/crypto.o
2025-10-02T16:12:09.5060475Z CC [M] drivers/rtc/rtc-ds1672.o
2025-10-02T16:12:09.8762885Z CC [M] drivers/input/touchscreen/pcap_ts.o
2025-10-02T16:12:10.1518430Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.o
2025-10-02T16:12:10.2520356Z CC [M] drivers/rtc/rtc-ds1685.o
2025-10-02T16:12:10.3211821Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/accel/tls.o
2025-10-02T16:12:10.5649982Z CC [M] drivers/input/touchscreen/penmount.o
2025-10-02T16:12:10.6817072Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/hw.o
2025-10-02T16:12:11.2571459Z CC [M] drivers/rtc/rtc-ds1742.o
2025-10-02T16:12:11.3502994Z CC [M] drivers/input/touchscreen/pixcir_i2c_ts.o
2025-10-02T16:12:11.8294321Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/accel/ipsec.o
2025-10-02T16:12:11.9044227Z CC [M] drivers/rtc/rtc-ds2404.o
2025-10-02T16:12:12.1348583Z CC [M] drivers/input/touchscreen/raydium_i2c_ts.o
2025-10-02T16:12:12.8184240Z CC [M] drivers/rtc/rtc-ds3232.o
2025-10-02T16:12:13.3837959Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/cmd.o
2025-10-02T16:12:13.4751003Z CC [M] drivers/input/touchscreen/s6sy761.o
2025-10-02T16:12:13.8244407Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192e.o
2025-10-02T16:12:13.8899997Z CC [M] drivers/rtc/rtc-em3027.o
2025-10-02T16:12:14.2949004Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/led.o
2025-10-02T16:12:14.4264500Z CC [M] drivers/input/touchscreen/silead.o
2025-10-02T16:12:14.5064843Z CC [M] drivers/rtc/rtc-fm3130.o
2025-10-02T16:12:14.9060866Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/core.o
2025-10-02T16:12:15.2995099Z CC [M] drivers/rtc/rtc-ftrtc010.o
2025-10-02T16:12:15.3877075Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8723b.o
2025-10-02T16:12:15.5045132Z CC [M] drivers/input/touchscreen/sis_i2c.o
2025-10-02T16:12:15.5362770Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/phy.o
2025-10-02T16:12:16.0687277Z CC [M] drivers/rtc/rtc-hid-sensor-time.o
2025-10-02T16:12:16.2108485Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/conn.o
2025-10-02T16:12:16.2732597Z CC [M] drivers/input/touchscreen/st1232.o
2025-10-02T16:12:16.7492621Z CC [M] drivers/rtc/rtc-isl12022.o
2025-10-02T16:12:16.9718059Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8723a.o
2025-10-02T16:12:17.1566853Z CC [M] drivers/input/touchscreen/stmfts.o
2025-10-02T16:12:17.5149122Z CC [M] drivers/rtc/rtc-isl1208.o
2025-10-02T16:12:18.0862617Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_8192c.o
2025-10-02T16:12:18.1258471Z CC [M] drivers/input/touchscreen/sur40.o
2025-10-02T16:12:18.4528813Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/fpga/sdk.o
2025-10-02T16:12:18.9478545Z CC [M] drivers/rtc/rtc-lp8788.o
2025-10-02T16:12:19.2272451Z LD [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.o
2025-10-02T16:12:19.2882201Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/pwrseq.o
2025-10-02T16:12:19.3615430Z CC [M] drivers/input/touchscreen/surface3_spi.o
2025-10-02T16:12:19.4561228Z CC [M] drivers/net/wireless/realtek/rtw88/main.o
2025-10-02T16:12:19.6551871Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec.o
2025-10-02T16:12:19.9309263Z CC [M] drivers/rtc/rtc-m41t80.o
2025-10-02T16:12:20.2714550Z CC [M] drivers/input/touchscreen/touchit213.o
2025-10-02T16:12:20.3822100Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/rf.o
2025-10-02T16:12:21.0158520Z CC [M] drivers/input/touchscreen/touchright.o
2025-10-02T16:12:21.0953545Z CC [M] drivers/rtc/rtc-m41t93.o
2025-10-02T16:12:21.2337305Z CC [M] drivers/net/wireless/realtek/rtw88/mac80211.o
2025-10-02T16:12:21.6191798Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/sw.o
2025-10-02T16:12:21.6721833Z CC [M] drivers/input/touchscreen/touchwin.o
2025-10-02T16:12:21.7574762Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_rxtx.o
2025-10-02T16:12:22.0862882Z CC [M] drivers/rtc/rtc-m41t94.o
2025-10-02T16:12:22.3044017Z CC [M] drivers/input/touchscreen/tsc40.o
2025-10-02T16:12:22.7225796Z CC [M] drivers/net/wireless/realtek/rtw88/util.o
2025-10-02T16:12:22.7848587Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/table.o
2025-10-02T16:12:22.8551102Z CC [M] drivers/rtc/rtc-m48t35.o
2025-10-02T16:12:22.9648679Z CC [M] drivers/input/touchscreen/tsc200x-core.o
2025-10-02T16:12:22.9657597Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/trx.o
2025-10-02T16:12:23.4752952Z CC [M] drivers/rtc/rtc-m48t59.o
2025-10-02T16:12:23.8547049Z CC [M] drivers/input/touchscreen/tsc2004.o
2025-10-02T16:12:23.8875607Z CC [M] drivers/net/wireless/realtek/rtw88/debug.o
2025-10-02T16:12:23.9259165Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_stats.o
2025-10-02T16:12:24.2642002Z CC [M] drivers/rtc/rtc-m48t86.o
2025-10-02T16:12:24.3736284Z CC [M] drivers/input/touchscreen/tsc2005.o
2025-10-02T16:12:24.8161157Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/rtl8821ae.o
2025-10-02T16:12:24.9018409Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/dm.o
2025-10-02T16:12:24.9875633Z CC [M] drivers/rtc/rtc-max6900.o
2025-10-02T16:12:25.2143412Z CC [M] drivers/input/touchscreen/tsc2007_core.o
2025-10-02T16:12:25.5215639Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ipsec_fs.o
2025-10-02T16:12:25.5840431Z CC [M] drivers/net/wireless/realtek/rtw88/tx.o
2025-10-02T16:12:25.6713473Z CC [M] drivers/rtc/rtc-max6902.o
2025-10-02T16:12:26.0584340Z CC [M] drivers/input/touchscreen/tsc2007_iio.o
2025-10-02T16:12:26.4613457Z CC [M] drivers/rtc/rtc-max6916.o
2025-10-02T16:12:26.6311129Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/fw.o
2025-10-02T16:12:26.7217731Z CC [M] drivers/input/touchscreen/ucb1400_ts.o
2025-10-02T16:12:27.1117994Z CC [M] drivers/net/wireless/realtek/rtw88/rx.o
2025-10-02T16:12:27.1552926Z CC [M] drivers/rtc/rtc-max8907.o
2025-10-02T16:12:27.2893354Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls.o
2025-10-02T16:12:27.6569047Z CC [M] drivers/input/touchscreen/wacom_w8001.o
2025-10-02T16:12:27.8463226Z CC [M] drivers/rtc/rtc-max8925.o
2025-10-02T16:12:28.1836419Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/hw.o
2025-10-02T16:12:28.3992757Z CC [M] drivers/net/wireless/realtek/rtw88/mac.o
2025-10-02T16:12:28.4951133Z CC [M] drivers/input/touchscreen/wacom_i2c.o
2025-10-02T16:12:28.6715139Z CC [M] drivers/rtc/rtc-max8997.o
2025-10-02T16:12:28.8060702Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls_rxtx.o
2025-10-02T16:12:29.3223791Z CC [M] drivers/input/touchscreen/wdt87xx_i2c.o
2025-10-02T16:12:29.4299872Z CC [M] drivers/rtc/rtc-max8998.o
2025-10-02T16:12:30.2411492Z CC [M] drivers/net/wireless/realtek/rtw88/phy.o
2025-10-02T16:12:30.3292151Z CC [M] drivers/rtc/rtc-mc13xxx.o
2025-10-02T16:12:30.5507986Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/tls_stats.o
2025-10-02T16:12:30.5830451Z CC [M] drivers/input/touchscreen/wm831x-ts.o
2025-10-02T16:12:30.8904069Z CC [M] drivers/rtc/rtc-mcp795.o
2025-10-02T16:12:31.0398958Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/led.o
2025-10-02T16:12:31.4218133Z CC [M] drivers/input/touchscreen/wm97xx-core.o
2025-10-02T16:12:31.6265926Z CC [M] drivers/rtc/rtc-msm6242.o
2025-10-02T16:12:32.1154590Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/fs_tcp.o
2025-10-02T16:12:32.2589763Z CC [M] drivers/rtc/rtc-mt6397.o
2025-10-02T16:12:32.3644806Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.o
2025-10-02T16:12:32.6161367Z CC [M] drivers/input/touchscreen/wm9705.o
2025-10-02T16:12:32.8808397Z CC [M] drivers/net/wireless/realtek/rtw88/coex.o
2025-10-02T16:12:32.9041159Z CC [M] drivers/rtc/rtc-palmas.o
2025-10-02T16:12:33.5088557Z CC [M] drivers/input/touchscreen/wm9712.o
2025-10-02T16:12:33.9401300Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls.o
2025-10-02T16:12:33.9709830Z CC [M] drivers/rtc/rtc-pcap.o
2025-10-02T16:12:34.2446577Z CC [M] drivers/input/touchscreen/wm9713.o
2025-10-02T16:12:34.7901307Z CC [M] drivers/rtc/rtc-pcf2123.o
2025-10-02T16:12:35.0381221Z CC [M] drivers/input/touchscreen/sx8654.o
2025-10-02T16:12:35.3510637Z CC [M] drivers/net/wireless/realtek/rtw88/efuse.o
2025-10-02T16:12:35.4919133Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_txrx.o
2025-10-02T16:12:35.5536755Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/pwrseq.o
2025-10-02T16:12:35.6181160Z CC [M] drivers/rtc/rtc-pcf2127.o
2025-10-02T16:12:35.7765260Z CC [M] drivers/input/touchscreen/tps6507x-ts.o
2025-10-02T16:12:36.4813381Z CC [M] drivers/input/touchscreen/zet6223.o
2025-10-02T16:12:36.6645041Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/rf.o
2025-10-02T16:12:36.6803778Z CC [M] drivers/net/wireless/realtek/rtw88/fw.o
2025-10-02T16:12:36.7474543Z CC [M] drivers/rtc/rtc-pcf50633.o
2025-10-02T16:12:36.8671409Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_tx.o
2025-10-02T16:12:37.3860356Z CC [M] drivers/input/touchscreen/zforce_ts.o
2025-10-02T16:12:37.7068567Z CC [M] drivers/rtc/rtc-pcf85063.o
2025-10-02T16:12:37.8584882Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/sw.o
2025-10-02T16:12:38.6121036Z CC [M] drivers/input/touchscreen/rohm_bu21023.o
2025-10-02T16:12:38.6558115Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en_accel/ktls_rx.o
2025-10-02T16:12:38.6628517Z CC [M] drivers/rtc/rtc-pcf8523.o
2025-10-02T16:12:38.9663021Z CC [M] drivers/net/wireless/realtek/rtw88/ps.o
2025-10-02T16:12:39.2097082Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/table.o
2025-10-02T16:12:39.2802320Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/trx.o
2025-10-02T16:12:39.4470068Z CC [M] drivers/rtc/rtc-pcf85363.o
2025-10-02T16:12:39.4516106Z CC [M] drivers/input/touchscreen/iqs5xx.o
2025-10-02T16:12:40.1172006Z CC [M] drivers/rtc/rtc-pcf8563.o
2025-10-02T16:12:40.2513464Z CC [M] drivers/net/wireless/realtek/rtw88/sec.o
2025-10-02T16:12:40.6500188Z CC [M] drivers/input/touchscreen/zinitix.o
2025-10-02T16:12:40.7131427Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_domain.o
2025-10-02T16:12:40.9395261Z CC [M] drivers/rtc/rtc-pcf8583.o
2025-10-02T16:12:41.3451396Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/rtl8192ee.o
2025-10-02T16:12:41.4707854Z CC [M] drivers/net/wireless/realtek/rtlwifi/base.o
2025-10-02T16:12:41.5779983Z CC [M] drivers/net/wireless/realtek/rtw88/bf.o
2025-10-02T16:12:41.6491210Z CC [M] drivers/rtc/rtc-r9701.o
2025-10-02T16:12:41.8057192Z LD [M] drivers/input/touchscreen/tsc2007.o
2025-10-02T16:12:41.8358636Z LD [M] drivers/input/touchscreen/wm97xx-ts.o
2025-10-02T16:12:41.8763155Z AR drivers/input/touchscreen/built-in.a
2025-10-02T16:12:42.1440056Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_table.o
2025-10-02T16:12:42.4349214Z CC [M] drivers/rtc/rtc-rc5t583.o
2025-10-02T16:12:42.6584706Z AR drivers/input/misc/built-in.a
2025-10-02T16:12:42.6805485Z CC [M] drivers/input/misc/88pm860x_onkey.o
2025-10-02T16:12:42.8540126Z CC [M] drivers/net/wireless/realtek/rtw88/regd.o
2025-10-02T16:12:43.1985615Z CC [M] drivers/rtc/rtc-rp5c01.o
2025-10-02T16:12:43.3546012Z CC [M] drivers/input/misc/88pm80x_onkey.o
2025-10-02T16:12:43.7223791Z CC [M] drivers/net/wireless/realtek/rtlwifi/cam.o
2025-10-02T16:12:43.7322811Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_matcher.o
2025-10-02T16:12:43.9208705Z CC [M] drivers/rtc/rtc-rs5c348.o
2025-10-02T16:12:44.0159023Z CC [M] drivers/input/misc/ad714x.o
2025-10-02T16:12:44.1351815Z CC [M] drivers/net/wireless/realtek/rtw88/wow.o
2025-10-02T16:12:44.7470690Z CC [M] drivers/rtc/rtc-rs5c372.o
2025-10-02T16:12:44.9462493Z CC [M] drivers/net/wireless/realtek/rtlwifi/core.o
2025-10-02T16:12:45.1155965Z CC [M] drivers/input/misc/ad714x-i2c.o
2025-10-02T16:12:45.6095909Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_rule.o
2025-10-02T16:12:45.7047815Z CC [M] drivers/rtc/rtc-rv3028.o
2025-10-02T16:12:45.7827681Z CC [M] drivers/input/misc/ad714x-spi.o
2025-10-02T16:12:45.9869046Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822b.o
2025-10-02T16:12:46.4284479Z CC [M] drivers/input/misc/adxl34x.o
2025-10-02T16:12:46.6734153Z CC [M] drivers/rtc/rtc-rv3029c2.o
2025-10-02T16:12:47.1086496Z CC [M] drivers/net/wireless/realtek/rtlwifi/debug.o
2025-10-02T16:12:47.3959264Z CC [M] drivers/input/misc/adxl34x-i2c.o
2025-10-02T16:12:47.7349254Z CC [M] drivers/rtc/rtc-rv3032.o
2025-10-02T16:12:47.8522167Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_icm_pool.o
2025-10-02T16:12:48.0959016Z CC [M] drivers/input/misc/adxl34x-spi.o
2025-10-02T16:12:48.3212356Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822b_table.o
2025-10-02T16:12:48.7796333Z CC [M] drivers/net/wireless/realtek/rtlwifi/efuse.o
2025-10-02T16:12:48.7963854Z CC [M] drivers/rtc/rtc-rv8803.o
2025-10-02T16:12:48.9009031Z CC [M] drivers/input/misc/apanel.o
2025-10-02T16:12:49.6361850Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_ste.o
2025-10-02T16:12:49.7073204Z CC [M] drivers/input/misc/arizona-haptics.o
2025-10-02T16:12:49.7209200Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822be.o
2025-10-02T16:12:49.7596775Z CC [M] drivers/rtc/rtc-rx4581.o
2025-10-02T16:12:50.4362789Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822c.o
2025-10-02T16:12:50.4579142Z CC [M] drivers/rtc/rtc-rx6110.o
2025-10-02T16:12:50.8224383Z CC [M] drivers/input/misc/ati_remote2.o
2025-10-02T16:12:50.9271059Z CC [M] drivers/net/wireless/realtek/rtlwifi/ps.o
2025-10-02T16:12:51.1124401Z CC [M] drivers/rtc/rtc-rx8010.o
2025-10-02T16:12:51.8754077Z CC [M] drivers/input/misc/atlas_btns.o
2025-10-02T16:12:52.0734659Z CC [M] drivers/rtc/rtc-rx8025.o
2025-10-02T16:12:52.4518590Z CC [M] drivers/input/misc/bma150.o
2025-10-02T16:12:52.5311383Z CC [M] drivers/net/wireless/realtek/rtlwifi/rc.o
2025-10-02T16:12:53.0361361Z CC [M] drivers/rtc/rtc-rx8581.o
2025-10-02T16:12:53.1938702Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_send.o
2025-10-02T16:12:53.2436921Z CC [M] drivers/input/misc/cm109.o
2025-10-02T16:12:53.9114675Z CC [M] drivers/net/wireless/realtek/rtlwifi/regd.o
2025-10-02T16:12:53.9794373Z CC [M] drivers/rtc/rtc-s35390a.o
2025-10-02T16:12:54.2383166Z CC [M] drivers/input/misc/cma3000_d0x.o
2025-10-02T16:12:54.5744904Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822c_table.o
2025-10-02T16:12:54.7682726Z CC [M] drivers/rtc/rtc-s5m.o
2025-10-02T16:12:55.0079225Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_cmd.o
2025-10-02T16:12:55.2371147Z CC [M] drivers/input/misc/cma3000_d0x_i2c.o
2025-10-02T16:12:55.3215685Z CC [M] drivers/net/wireless/realtek/rtlwifi/stats.o
2025-10-02T16:12:55.5679654Z CC [M] drivers/rtc/rtc-sd3078.o
2025-10-02T16:12:55.8919267Z CC [M] drivers/input/misc/da9052_onkey.o
2025-10-02T16:12:56.0642738Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8822ce.o
2025-10-02T16:12:56.3745266Z CC [M] drivers/rtc/rtc-stk17ta8.o
2025-10-02T16:12:56.4212255Z CC [M] drivers/input/misc/da9055_onkey.o
2025-10-02T16:12:56.6014606Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8723d.o
2025-10-02T16:12:56.9147302Z CC [M] drivers/net/wireless/realtek/rtlwifi/pci.o
2025-10-02T16:12:56.9218420Z CC [M] drivers/input/misc/da9063_onkey.o
2025-10-02T16:12:57.0040399Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_fw.o
2025-10-02T16:12:57.1343394Z CC [M] drivers/rtc/rtc-tps6586x.o
2025-10-02T16:12:57.6411833Z CC [M] drivers/input/misc/e3x0-button.o
2025-10-02T16:12:57.7316060Z CC [M] drivers/rtc/rtc-tps65910.o
2025-10-02T16:12:58.1904710Z CC [M] drivers/input/misc/drv260x.o
2025-10-02T16:12:58.5077399Z CC [M] drivers/rtc/rtc-tps80031.o
2025-10-02T16:12:58.8499021Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.o
2025-10-02T16:12:59.1154595Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8723d_table.o
2025-10-02T16:12:59.2024466Z CC [M] drivers/rtc/rtc-v3020.o
2025-10-02T16:12:59.2815159Z CC [M] drivers/input/misc/drv2665.o
2025-10-02T16:12:59.3377792Z CC [M] drivers/net/wireless/realtek/rtlwifi/usb.o
2025-10-02T16:12:59.9728064Z CC [M] drivers/rtc/rtc-wilco-ec.o
2025-10-02T16:13:00.2226478Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8723de.o
2025-10-02T16:13:00.2414128Z CC [M] drivers/input/misc/drv2667.o
2025-10-02T16:13:00.6461374Z CC [M] drivers/rtc/rtc-wm831x.o
2025-10-02T16:13:00.8213392Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8821c.o
2025-10-02T16:13:01.0460735Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtlwifi.o
2025-10-02T16:13:01.1057186Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl_pci.o
2025-10-02T16:13:01.1310575Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl_usb.o
2025-10-02T16:13:01.1421353Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/steering/fs_dr.o
2025-10-02T16:13:01.2299872Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/en/hv_vhca_stats.o
2025-10-02T16:13:01.3104778Z CC [M] drivers/input/misc/gpio-beeper.o
2025-10-02T16:13:01.4184958Z CC [M] drivers/rtc/rtc-wm8350.o
2025-10-02T16:13:01.9111915Z CC [M] drivers/input/misc/gpio_decoder.o
2025-10-02T16:13:02.5477923Z CC [M] drivers/input/misc/gpio-vibra.o
2025-10-02T16:13:02.5725343Z CC [M] drivers/rtc/rtc-x1205.o
2025-10-02T16:13:02.7260079Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8821c_table.o
2025-10-02T16:13:02.7299375Z AR drivers/rtc/built-in.a
2025-10-02T16:13:02.7563097Z CC [M] drivers/net/slip/slip.o
2025-10-02T16:13:02.8531194Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/vxlan.o
2025-10-02T16:13:03.5830479Z CC [M] drivers/input/misc/ims-pcu.o
2025-10-02T16:13:03.9278885Z CC [M] drivers/net/wireless/realtek/rtw88/rtw8821ce.o
2025-10-02T16:13:04.3918004Z AR drivers/i2c/algos/built-in.a
2025-10-02T16:13:04.4126929Z CC [M] drivers/i2c/algos/i2c-algo-bit.o
2025-10-02T16:13:04.4128081Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/hv.o
2025-10-02T16:13:04.5071057Z CC [M] drivers/net/slip/slhc.o
2025-10-02T16:13:04.6176537Z CC [M] drivers/net/wireless/realtek/rtw88/pci.o
2025-10-02T16:13:04.9020971Z CC [M] drivers/input/misc/iqs269a.o
2025-10-02T16:13:05.2690862Z CC [M] drivers/i2c/algos/i2c-algo-pca.o
2025-10-02T16:13:05.7324450Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/lib/hv_vhca.o
2025-10-02T16:13:05.9551985Z CC drivers/i2c/busses/i2c-designware-common.o
2025-10-02T16:13:06.0393004Z CC drivers/i2c/busses/i2c-designware-master.o
2025-10-02T16:13:06.4501304Z CC [M] drivers/input/misc/keyspan_remote.o
2025-10-02T16:13:06.5893488Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_core.o
2025-10-02T16:13:06.6970246Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822b.o
2025-10-02T16:13:06.7158140Z CC [M] drivers/input/misc/kxtj9.o
2025-10-02T16:13:06.7380926Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822be.o
2025-10-02T16:13:06.7620415Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822c.o
2025-10-02T16:13:06.8108962Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822ce.o
2025-10-02T16:13:06.8370819Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8723d.o
2025-10-02T16:13:06.8379018Z CC drivers/i2c/busses/i2c-designware-slave.o
2025-10-02T16:13:06.8658857Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8723de.o
2025-10-02T16:13:06.8912373Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8821c.o
2025-10-02T16:13:06.9311905Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8821ce.o
2025-10-02T16:13:06.9582180Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_pci.o
2025-10-02T16:13:07.1157718Z AR drivers/net/wireless/realtek/built-in.a
2025-10-02T16:13:07.1708734Z LD [M] drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.o
2025-10-02T16:13:07.2237179Z CC [M] drivers/net/wireless/ti/wlcore/main.o
2025-10-02T16:13:07.3293777Z CC [M] drivers/net/wireless/ti/wlcore/cmd.o
2025-10-02T16:13:07.4529335Z CC [M] drivers/input/misc/max77693-haptic.o
2025-10-02T16:13:07.4928077Z CC drivers/i2c/busses/i2c-designware-platdrv.o
2025-10-02T16:13:07.9514075Z AR drivers/net/ethernet/natsemi/built-in.a
2025-10-02T16:13:07.9729642Z CC [M] drivers/net/ethernet/natsemi/natsemi.o
2025-10-02T16:13:08.4188481Z CC drivers/i2c/busses/i2c-designware-baytrail.o
2025-10-02T16:13:08.5069039Z CC [M] drivers/input/misc/max8925_onkey.o
2025-10-02T16:13:09.0488980Z CC drivers/i2c/busses/i2c-designware-pcidrv.o
2025-10-02T16:13:09.2269106Z CC [M] drivers/input/misc/max8997_haptic.o
2025-10-02T16:13:09.7476045Z CC [M] drivers/i2c/busses/i2c-scmi.o
2025-10-02T16:13:09.8492641Z CC [M] drivers/net/ethernet/natsemi/ns83820.o
2025-10-02T16:13:10.2856378Z CC [M] drivers/net/wireless/ti/wl12xx/main.o
2025-10-02T16:13:10.3846646Z CC [M] drivers/input/misc/mc13783-pwrbutton.o
2025-10-02T16:13:10.4835664Z CC [M] drivers/i2c/busses/i2c-ali1535.o
2025-10-02T16:13:11.0000322Z CC [M] drivers/input/misc/mma8450.o
2025-10-02T16:13:11.6301605Z CC [M] drivers/input/misc/palmas-pwrbutton.o
2025-10-02T16:13:11.7093837Z CC [M] drivers/i2c/busses/i2c-ali1563.o
2025-10-02T16:13:11.7562952Z CC [M] drivers/net/ethernet/neterion/vxge/vxge-config.o
2025-10-02T16:13:11.9000158Z CC [M] drivers/net/wireless/ti/wlcore/io.o
2025-10-02T16:13:12.0382191Z CC [M] drivers/net/wireless/ti/wl12xx/cmd.o
2025-10-02T16:13:12.5278000Z CC [M] drivers/i2c/busses/i2c-ali15x3.o
2025-10-02T16:13:12.5981087Z CC [M] drivers/input/misc/pcap_keys.o
2025-10-02T16:13:13.2883124Z CC [M] drivers/input/misc/pcf50633-input.o
2025-10-02T16:13:13.3387321Z CC [M] drivers/net/wireless/ti/wl12xx/acx.o
2025-10-02T16:13:13.3501692Z CC [M] drivers/net/wireless/ti/wlcore/event.o
2025-10-02T16:13:13.3799024Z CC [M] drivers/i2c/busses/i2c-amd756.o
2025-10-02T16:13:14.3045110Z CC [M] drivers/input/misc/pcf8574_keypad.o
2025-10-02T16:13:14.3744955Z CC [M] drivers/i2c/busses/i2c-amd756-s4882.o
2025-10-02T16:13:14.4502202Z CC [M] drivers/net/wireless/ti/wl12xx/debugfs.o
2025-10-02T16:13:14.6716554Z CC [M] drivers/net/ethernet/neterion/vxge/vxge-traffic.o
2025-10-02T16:13:14.8057997Z CC [M] drivers/net/wireless/ti/wlcore/tx.o
2025-10-02T16:13:15.1192785Z CC [M] drivers/i2c/busses/i2c-amd8111.o
2025-10-02T16:13:15.1283462Z CC [M] drivers/input/misc/pcspkr.o
2025-10-02T16:13:15.6635024Z CC [M] drivers/input/misc/powermate.o
2025-10-02T16:13:16.0230780Z CC [M] drivers/net/wireless/ti/wl12xx/scan.o
2025-10-02T16:13:16.0877266Z CC [M] drivers/i2c/busses/i2c-cht-wc.o
2025-10-02T16:13:16.3304528Z CC [M] drivers/net/ethernet/neterion/vxge/vxge-ethtool.o
2025-10-02T16:13:16.4405045Z CC [M] drivers/input/misc/pwm-beeper.o
2025-10-02T16:13:16.8585175Z CC [M] drivers/net/wireless/ti/wlcore/rx.o
2025-10-02T16:13:17.0831243Z CC [M] drivers/i2c/busses/i2c-i801.o
2025-10-02T16:13:17.4989737Z CC [M] drivers/input/misc/pwm-vibra.o
2025-10-02T16:13:17.5565786Z CC [M] drivers/net/wireless/ti/wl12xx/event.o
2025-10-02T16:13:18.0366705Z CC [M] drivers/net/wireless/ti/wlcore/ps.o
2025-10-02T16:13:18.2856890Z CC [M] drivers/net/ethernet/neterion/vxge/vxge-main.o
2025-10-02T16:13:18.4746227Z CC [M] drivers/input/misc/rave-sp-pwrbutton.o
2025-10-02T16:13:18.5132145Z CC [M] drivers/i2c/busses/i2c-isch.o
2025-10-02T16:13:19.1128016Z CC [M] drivers/input/misc/regulator-haptic.o
2025-10-02T16:13:19.1470706Z LD [M] drivers/net/wireless/ti/wl12xx/wl12xx.o
2025-10-02T16:13:19.1742491Z CC [M] drivers/i2c/busses/i2c-ismt.o
2025-10-02T16:13:19.2230943Z CC [M] drivers/input/misc/retu-pwrbutton.o
2025-10-02T16:13:19.2595229Z CC [M] drivers/net/wireless/ti/wlcore/acx.o
2025-10-02T16:13:19.7915049Z CC [M] drivers/net/wimax/i2400m/control.o
2025-10-02T16:13:19.8861891Z CC [M] drivers/input/misc/axp20x-pek.o
2025-10-02T16:13:20.3621437Z CC [M] drivers/i2c/busses/i2c-nct6775.o
2025-10-02T16:13:20.5887650Z CC [M] drivers/input/misc/rotary_encoder.o
2025-10-02T16:13:20.7047292Z drivers/i2c/busses/i2c-nct6775.c: In function ‘nct6775_access’:
2025-10-02T16:13:20.7049119Z drivers/i2c/busses/i2c-nct6775.c:221:39: warning: this statement may fall through [-Wimplicit-fallthrough=]
2025-10-02T16:13:20.7050832Z 221 | tmp_data.byte = data->byte;
2025-10-02T16:13:20.7051798Z | ~~~~~~~~~~~~~~^~~~~~~~~~~~
2025-10-02T16:13:20.7052780Z drivers/i2c/busses/i2c-nct6775.c:222:17: note: here
2025-10-02T16:13:20.7053789Z 222 | case I2C_SMBUS_BYTE:
2025-10-02T16:13:20.7054729Z | ^~~~
2025-10-02T16:13:21.0727022Z CC [M] drivers/i2c/busses/i2c-nforce2.o
2025-10-02T16:13:21.2406061Z CC [M] drivers/net/wimax/i2400m/driver.o
2025-10-02T16:13:21.3112702Z CC [M] drivers/input/misc/soc_button_array.o
2025-10-02T16:13:21.3933896Z CC [M] drivers/net/wireless/ti/wlcore/boot.o
2025-10-02T16:13:21.8400294Z CC [M] drivers/i2c/busses/i2c-nforce2-s4985.o
2025-10-02T16:13:21.9494552Z LD [M] drivers/net/ethernet/neterion/vxge/vxge.o
2025-10-02T16:13:21.9979053Z AR drivers/net/ethernet/neterion/built-in.a
2025-10-02T16:13:22.0094547Z CC [M] drivers/net/ethernet/neterion/s2io.o
2025-10-02T16:13:22.2275054Z CC [M] drivers/input/misc/twl4030-pwrbutton.o
2025-10-02T16:13:22.5371376Z CC [M] drivers/i2c/busses/i2c-nvidia-gpu.o
2025-10-02T16:13:22.8200167Z CC [M] drivers/input/misc/twl4030-vibra.o
2025-10-02T16:13:22.9197274Z CC [M] drivers/net/wimax/i2400m/fw.o
2025-10-02T16:13:23.0092020Z CC [M] drivers/net/wireless/ti/wlcore/init.o
2025-10-02T16:13:23.4570777Z CC [M] drivers/i2c/busses/i2c-piix4.o
2025-10-02T16:13:23.6155375Z CC [M] drivers/input/misc/twl6040-vibra.o
2025-10-02T16:13:24.4895754Z CC [M] drivers/net/wimax/i2400m/op-rfkill.o
2025-10-02T16:13:24.5896874Z CC [M] drivers/net/wireless/ti/wlcore/debugfs.o
2025-10-02T16:13:24.6125206Z CC [M] drivers/input/misc/uinput.o
2025-10-02T16:13:24.7130304Z CC [M] drivers/i2c/busses/i2c-sis5595.o
2025-10-02T16:13:25.5878521Z CC [M] drivers/net/wimax/i2400m/sysfs.o
2025-10-02T16:13:25.6291621Z CC [M] drivers/i2c/busses/i2c-sis630.o
2025-10-02T16:13:25.7603384Z CC [M] drivers/input/misc/wm831x-on.o
2025-10-02T16:13:26.4294989Z CC [M] drivers/net/wireless/ti/wlcore/scan.o
2025-10-02T16:13:26.4604421Z CC [M] drivers/input/misc/xen-kbdfront.o
2025-10-02T16:13:26.4678248Z CC [M] drivers/net/wimax/i2400m/netdev.o
2025-10-02T16:13:26.6704180Z CC [M] drivers/i2c/busses/i2c-sis96x.o
2025-10-02T16:13:26.9284833Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp6000_pcie.o
2025-10-02T16:13:27.4342542Z CC [M] drivers/i2c/busses/i2c-via.o
2025-10-02T16:13:27.4882835Z CC [M] drivers/input/misc/yealink.o
2025-10-02T16:13:27.8137849Z CC [M] drivers/net/wimax/i2400m/tx.o
2025-10-02T16:13:27.8481288Z CC [M] drivers/net/wireless/ti/wlcore/sysfs.o
2025-10-02T16:13:28.1797453Z CC [M] drivers/i2c/busses/i2c-viapro.o
2025-10-02T16:13:28.2100343Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_cppcore.o
2025-10-02T16:13:28.4628043Z CC [M] drivers/input/misc/ideapad_slidebar.o
2025-10-02T16:13:29.0029061Z CC [M] drivers/i2c/busses/i2c-amd-mp2-pci.o
2025-10-02T16:13:29.0227552Z CC [M] drivers/net/wimax/i2400m/rx.o
2025-10-02T16:13:29.1267571Z CC [M] drivers/net/wireless/ti/wlcore/vendor_cmd.o
2025-10-02T16:13:29.3210137Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_cpplib.o
2025-10-02T16:13:29.5468621Z CC [M] drivers/input/rmi4/rmi_bus.o
2025-10-02T16:13:29.8063311Z CC [M] drivers/i2c/busses/i2c-amd-mp2-plat.o
2025-10-02T16:13:29.9418733Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_hwinfo.o
2025-10-02T16:13:30.3880082Z CC [M] drivers/input/rmi4/rmi_driver.o
2025-10-02T16:13:30.5023704Z CC [M] drivers/net/wireless/ti/wlcore/sdio.o
2025-10-02T16:13:30.5951993Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_mip.o
2025-10-02T16:13:30.6233176Z CC [M] drivers/net/wimax/i2400m/debugfs.o
2025-10-02T16:13:30.6645677Z CC [M] drivers/i2c/busses/i2c-cbus-gpio.o
2025-10-02T16:13:31.1121414Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_mutex.o
2025-10-02T16:13:31.3678561Z CC [M] drivers/i2c/busses/i2c-emev2.o
2025-10-02T16:13:31.5090318Z CC [M] drivers/input/rmi4/rmi_f01.o
2025-10-02T16:13:31.6879360Z LD [M] drivers/net/wireless/ti/wlcore/wlcore.o
2025-10-02T16:13:31.7118633Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nffw.o
2025-10-02T16:13:31.7421739Z CC [M] drivers/net/wimax/i2400m/usb-fw.o
2025-10-02T16:13:31.7736135Z LD [M] drivers/net/wireless/ti/wlcore/wlcore_sdio.o
2025-10-02T16:13:31.8287288Z CC [M] drivers/net/wireless/ti/wl1251/main.o
2025-10-02T16:13:32.0753326Z CC [M] drivers/i2c/busses/i2c-gpio.o
2025-10-02T16:13:32.1909655Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp.o
2025-10-02T16:13:32.3731440Z CC [M] drivers/input/rmi4/rmi_2d_sensor.o
2025-10-02T16:13:32.7623228Z CC [M] drivers/i2c/busses/i2c-kempld.o
2025-10-02T16:13:32.8174899Z CC [M] drivers/net/wimax/i2400m/usb-notif.o
2025-10-02T16:13:33.1702243Z CC [M] drivers/input/rmi4/rmi_f03.o
2025-10-02T16:13:33.3985494Z CC [M] drivers/i2c/busses/i2c-ocores.o
2025-10-02T16:13:33.6859958Z CC [M] drivers/net/wireless/ti/wl1251/event.o
2025-10-02T16:13:33.9061819Z CC [M] drivers/net/wimax/i2400m/usb-tx.o
2025-10-02T16:13:34.0228013Z CC [M] drivers/input/rmi4/rmi_f11.o
2025-10-02T16:13:34.1656920Z CC [M] drivers/i2c/busses/i2c-pca-platform.o
2025-10-02T16:13:34.1760692Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp_cmds.o
2025-10-02T16:13:34.8490608Z CC [M] drivers/i2c/busses/i2c-simtec.o
2025-10-02T16:13:34.9003833Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_nsp_eth.o
2025-10-02T16:13:34.9471099Z CC [M] drivers/net/wireless/ti/wl1251/tx.o
2025-10-02T16:13:34.9932434Z CC [M] drivers/net/wimax/i2400m/usb-rx.o
2025-10-02T16:13:35.0829244Z CC [M] drivers/input/rmi4/rmi_f12.o
2025-10-02T16:13:35.4655893Z CC [M] drivers/i2c/busses/i2c-xiic.o
2025-10-02T16:13:35.7744008Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_resource.o
2025-10-02T16:13:35.9564270Z CC [M] drivers/input/rmi4/rmi_f30.o
2025-10-02T16:13:36.2111438Z CC [M] drivers/net/wimax/i2400m/usb.o
2025-10-02T16:13:36.2283612Z CC [M] drivers/net/wireless/ti/wl1251/rx.o
2025-10-02T16:13:36.2822869Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_rtsym.o
2025-10-02T16:13:36.6502855Z CC [M] drivers/i2c/busses/i2c-diolan-u2c.o
2025-10-02T16:13:36.7963372Z CC [M] drivers/input/rmi4/rmi_f34.o
2025-10-02T16:13:37.2761666Z CC [M] drivers/net/ethernet/netronome/nfp/nfpcore/nfp_target.o
2025-10-02T16:13:37.3831952Z LD [M] drivers/net/wimax/i2400m/i2400m.o
2025-10-02T16:13:37.4140494Z CC [M] drivers/i2c/busses/i2c-dln2.o
2025-10-02T16:13:37.4226068Z LD [M] drivers/net/wimax/i2400m/i2400m-usb.o
2025-10-02T16:13:37.4951926Z AR drivers/net/ethernet/netronome/built-in.a
2025-10-02T16:13:37.4963122Z CC [M] drivers/net/wireless/ti/wl1251/ps.o
2025-10-02T16:13:37.5453924Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_chip.o
2025-10-02T16:13:37.5773354Z CC [M] drivers/input/rmi4/rmi_f34v7.o
2025-10-02T16:13:37.7095005Z CC [M] drivers/net/ethernet/netronome/nfp/ccm.o
2025-10-02T16:13:37.9224926Z CC [M] drivers/i2c/busses/i2c-parport.o
2025-10-02T16:13:38.7101581Z CC [M] drivers/net/wireless/ti/wl1251/cmd.o
2025-10-02T16:13:38.8633376Z CC [M] drivers/i2c/busses/i2c-robotfuzz-osif.o
2025-10-02T16:13:38.9202528Z CC [M] drivers/input/rmi4/rmi_f3a.o
2025-10-02T16:13:38.9478496Z CC [M] drivers/net/ethernet/netronome/nfp/ccm_mbox.o
2025-10-02T16:13:39.1493584Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_mac.o
2025-10-02T16:13:39.7032422Z CC [M] drivers/i2c/busses/i2c-taos-evm.o
2025-10-02T16:13:39.8241188Z CC [M] drivers/input/rmi4/rmi_f55.o
2025-10-02T16:13:40.0998486Z CC [M] drivers/net/wireless/ti/wl1251/acx.o
2025-10-02T16:13:40.2586740Z CC [M] drivers/net/ethernet/netronome/nfp/devlink_param.o
2025-10-02T16:13:40.4846390Z CC [M] drivers/input/rmi4/rmi_i2c.o
2025-10-02T16:13:40.5734751Z CC [M] drivers/i2c/busses/i2c-tiny-usb.o
2025-10-02T16:13:40.8562552Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf_al2230.o
2025-10-02T16:13:41.2824606Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_asm.o
2025-10-02T16:13:41.3479774Z CC [M] drivers/input/rmi4/rmi_spi.o
2025-10-02T16:13:41.4592793Z CC [M] drivers/i2c/busses/i2c-viperboard.o
2025-10-02T16:13:41.5986302Z CC [M] drivers/net/wireless/ti/wl1251/boot.o
2025-10-02T16:13:41.7366929Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_app.o
2025-10-02T16:13:42.0287353Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf_rf2959.o
2025-10-02T16:13:42.2532625Z CC [M] drivers/input/rmi4/rmi_smbus.o
2025-10-02T16:13:42.3792327Z CC [M] drivers/i2c/busses/i2c-cros-ec-tunnel.o
2025-10-02T16:13:42.9667852Z CC [M] drivers/net/wireless/ti/wl1251/init.o
2025-10-02T16:13:43.0247705Z LD [M] drivers/input/rmi4/rmi_core.o
2025-10-02T16:13:43.0491631Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_app_nic.o
2025-10-02T16:13:43.0856445Z CC drivers/input/input.o
2025-10-02T16:13:43.0860171Z CC [M] drivers/i2c/busses/i2c-mlxcpld.o
2025-10-02T16:13:43.1534435Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf_al7230b.o
2025-10-02T16:13:43.9517986Z AR drivers/i2c/busses/built-in.a
2025-10-02T16:13:44.2484531Z CC [M] drivers/net/wireless/ti/wl1251/debugfs.o
2025-10-02T16:13:44.3036127Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_devlink.o
2025-10-02T16:13:44.3338566Z AR drivers/i2c/muxes/built-in.a
2025-10-02T16:13:44.3479721Z CC [M] drivers/i2c/muxes/i2c-mux-gpio.o
2025-10-02T16:13:44.3912961Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf_uw2453.o
2025-10-02T16:13:44.9813007Z CC drivers/input/input-compat.o
2025-10-02T16:13:45.0774496Z CC [M] drivers/i2c/muxes/i2c-mux-ltc4306.o
2025-10-02T16:13:45.5682934Z CC drivers/input/input-mt.o
2025-10-02T16:13:45.6517286Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_rf.o
2025-10-02T16:13:45.7930054Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_hwmon.o
2025-10-02T16:13:45.9523445Z CC [M] drivers/i2c/muxes/i2c-mux-mlxcpld.o
2025-10-02T16:13:46.0258465Z CC [M] drivers/net/wireless/ti/wl1251/io.o
2025-10-02T16:13:46.3589433Z CC drivers/input/input-poller.o
2025-10-02T16:13:46.6986658Z CC [M] drivers/i2c/muxes/i2c-mux-pca9541.o
2025-10-02T16:13:46.7171301Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_main.o
2025-10-02T16:13:46.8670988Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd_usb.o
2025-10-02T16:13:46.9662501Z CC drivers/input/ff-core.o
2025-10-02T16:13:47.1582888Z CC [M] drivers/net/wireless/ti/wl1251/spi.o
2025-10-02T16:13:47.2627947Z CC [M] drivers/i2c/muxes/i2c-mux-pca954x.o
2025-10-02T16:13:47.6845529Z CC drivers/input/input-leds.o
2025-10-02T16:13:47.9431815Z CC [M] drivers/i2c/muxes/i2c-mux-reg.o
2025-10-02T16:13:48.2942968Z CC drivers/input/evdev.o
2025-10-02T16:13:48.5093690Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_common.o
2025-10-02T16:13:48.6332414Z CC [M] drivers/net/wireless/ti/wl1251/sdio.o
2025-10-02T16:13:48.6441502Z CC drivers/i2c/i2c-boardinfo.o
2025-10-02T16:13:48.8296947Z LD [M] drivers/net/wireless/zydas/zd1211rw/zd1211rw.o
2025-10-02T16:13:48.8890362Z AR drivers/net/wireless/zydas/built-in.a
2025-10-02T16:13:48.8999984Z CC [M] drivers/net/wireless/zydas/zd1201.o
2025-10-02T16:13:49.3037358Z CC drivers/i2c/i2c-core-base.o
2025-10-02T16:13:49.7084946Z CC [M] drivers/input/ff-memless.o
2025-10-02T16:13:50.0352476Z LD [M] drivers/net/wireless/ti/wl1251/wl1251.o
2025-10-02T16:13:50.1338067Z LD [M] drivers/net/wireless/ti/wl1251/wl1251_spi.o
2025-10-02T16:13:50.1663578Z LD [M] drivers/net/wireless/ti/wl1251/wl1251_sdio.o
2025-10-02T16:13:50.2793874Z CC [M] drivers/net/wireless/ti/wl18xx/main.o
2025-10-02T16:13:50.4674981Z CC [M] drivers/input/input-polldev.o
2025-10-02T16:13:51.0228139Z CC [M] drivers/net/wireless/ti/wl18xx/acx.o
2025-10-02T16:13:51.1127874Z CC [M] drivers/input/sparse-keymap.o
2025-10-02T16:13:51.3602896Z CC drivers/i2c/i2c-core-smbus.o
2025-10-02T16:13:51.7240151Z CC [M] drivers/input/matrix-keymap.o
2025-10-02T16:13:52.2970933Z CC [M] drivers/input/mousedev.o
2025-10-02T16:13:52.4248359Z CC drivers/i2c/i2c-core-acpi.o
2025-10-02T16:13:52.5202032Z CC [M] drivers/net/wireless/ti/wl18xx/tx.o
2025-10-02T16:13:52.5677226Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_ctrl.o
2025-10-02T16:13:52.9753565Z CC [M] drivers/net/ieee802154/fakelb.o
2025-10-02T16:13:53.4327927Z CC [M] drivers/input/joydev.o
2025-10-02T16:13:53.4855291Z CC drivers/i2c/i2c-core-slave.o
2025-10-02T16:13:53.5326541Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_debugdump.o
2025-10-02T16:13:53.7431303Z CC [M] drivers/net/wireless/ti/wl18xx/io.o
2025-10-02T16:13:53.9528942Z CC [M] drivers/net/ieee802154/at86rf230.o
2025-10-02T16:13:54.0122833Z CC [M] drivers/i2c/i2c-smbus.o
2025-10-02T16:13:54.6904270Z AR drivers/input/built-in.a
2025-10-02T16:13:54.6995908Z CC [M] drivers/i2c/i2c-dev.o
2025-10-02T16:13:54.7704469Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_ethtool.o
2025-10-02T16:13:54.7829178Z CC drivers/net/wireless/ti/wilink_platform_data.o
2025-10-02T16:13:55.1206593Z CC [M] drivers/net/wireless/ti/wl18xx/debugfs.o
2025-10-02T16:13:55.2572320Z CC [M] drivers/net/vmxnet3/vmxnet3_drv.o
2025-10-02T16:13:55.7903803Z CC [M] drivers/i2c/i2c-mux.o
2025-10-02T16:13:55.8706951Z CC [M] drivers/net/ieee802154/mrf24j40.o
2025-10-02T16:13:56.5285664Z CC [M] drivers/i2c/i2c-stub.o
2025-10-02T16:13:56.6135912Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_main.o
2025-10-02T16:13:57.1506306Z CC [M] drivers/net/ieee802154/cc2520.o
2025-10-02T16:13:57.2694586Z CC [M] drivers/net/wireless/ti/wl18xx/scan.o
2025-10-02T16:13:57.4205587Z CC [M] drivers/i2c/i2c-slave-eeprom.o
2025-10-02T16:13:58.0764445Z CC [M] drivers/i2c/i2c-slave-testunit.o
2025-10-02T16:13:58.3330918Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_repr.o
2025-10-02T16:13:58.3807151Z CC [M] drivers/net/ieee802154/atusb.o
2025-10-02T16:13:58.6286939Z AR drivers/i2c/built-in.a
2025-10-02T16:13:58.6929313Z CC [M] drivers/net/ieee802154/adf7242.o
2025-10-02T16:13:58.8130698Z CC [M] drivers/net/wireless/ti/wl18xx/cmd.o
2025-10-02T16:13:58.9546024Z CC [M] drivers/net/vmxnet3/vmxnet3_ethtool.o
2025-10-02T16:13:59.8125837Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_net_sriov.o
2025-10-02T16:13:59.9111016Z AR drivers/net/ethernet/ni/built-in.a
2025-10-02T16:13:59.9337771Z CC [M] drivers/net/ethernet/ni/nixge.o
2025-10-02T16:14:00.2081460Z CC [M] drivers/net/ieee802154/ca8210.o
2025-10-02T16:14:00.2536447Z CC [M] drivers/net/wireless/ti/wl18xx/event.o
2025-10-02T16:14:00.8720763Z LD [M] drivers/net/vmxnet3/vmxnet3.o
2025-10-02T16:14:00.9449347Z CC [M] drivers/net/ieee802154/mcr20a.o
2025-10-02T16:14:01.0954207Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_netvf_main.o
2025-10-02T16:14:01.3433262Z AR drivers/i3c/built-in.a
2025-10-02T16:14:01.3971666Z CC [M] drivers/net/wireless/quantenna/qtnfmac/core.o
2025-10-02T16:14:01.4264281Z LD [M] drivers/net/wireless/ti/wl18xx/wl18xx.o
2025-10-02T16:14:01.4863229Z AR drivers/net/wireless/ti/built-in.a
2025-10-02T16:14:01.5540906Z CC [M] drivers/net/xen-netback/netback.o
2025-10-02T16:14:01.7563150Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_port.o
2025-10-02T16:14:02.3712062Z AR drivers/net/ethernet/nvidia/built-in.a
2025-10-02T16:14:02.3950214Z CC [M] drivers/net/ethernet/nvidia/forcedeth.o
2025-10-02T16:14:02.5044576Z CC [M] drivers/net/ieee802154/mac802154_hwsim.o
2025-10-02T16:14:03.0851041Z CC [M] drivers/net/wireless/quantenna/qtnfmac/commands.o
2025-10-02T16:14:03.1564193Z CC [M] drivers/net/ethernet/netronome/nfp/nfp_shared_buf.o
2025-10-02T16:14:04.1075027Z CC [M] drivers/net/xen-netback/xenbus.o
2025-10-02T16:14:04.1580754Z CC [M] drivers/net/wireless/quantenna/qtnfmac/trans.o
2025-10-02T16:14:04.5530278Z CC [M] drivers/net/ethernet/netronome/nfp/nic/main.o
2025-10-02T16:14:05.3558760Z AR drivers/net/wireless/quantenna/built-in.a
2025-10-02T16:14:05.4169037Z CC [M] drivers/media/i2c/smiapp/smiapp-core.o
2025-10-02T16:14:05.6021484Z CC [M] drivers/net/wireless/quantenna/qtnfmac/cfg80211.o
2025-10-02T16:14:05.6839238Z CC [M] drivers/net/xen-netback/interface.o
2025-10-02T16:14:05.9490840Z CC [M] drivers/net/ethernet/netronome/nfp/crypto/tls.o
2025-10-02T16:14:06.4850704Z CC [M] drivers/net/ethernet/netronome/nfp/flower/action.o
2025-10-02T16:14:06.9990421Z CC [M] drivers/net/xen-netback/hash.o
2025-10-02T16:14:07.4711540Z CC [M] drivers/net/wireless/quantenna/qtnfmac/event.o
2025-10-02T16:14:07.4938930Z AR drivers/media/tuners/built-in.a
2025-10-02T16:14:07.5189850Z CC [M] drivers/media/tuners/tuner-xc2028.o
2025-10-02T16:14:07.8138446Z CC [M] drivers/media/i2c/smiapp/smiapp-regs.o
2025-10-02T16:14:08.2850961Z CC [M] drivers/net/ethernet/netronome/nfp/flower/cmsg.o
2025-10-02T16:14:08.4375789Z CC [M] drivers/net/xen-netback/rx.o
2025-10-02T16:14:08.6720255Z CC [M] drivers/media/i2c/smiapp/smiapp-quirk.o
2025-10-02T16:14:08.9428522Z CC [M] drivers/net/wireless/quantenna/qtnfmac/util.o
2025-10-02T16:14:09.3774015Z CC [M] drivers/media/i2c/smiapp/smiapp-limits.o
2025-10-02T16:14:09.5183409Z CC [M] drivers/media/tuners/tuner-simple.o
2025-10-02T16:14:09.7407316Z CC [M] drivers/net/ethernet/netronome/nfp/flower/lag_conf.o
2025-10-02T16:14:09.8375188Z LD [M] drivers/net/xen-netback/xen-netback.o
2025-10-02T16:14:09.9011973Z CC [M] drivers/media/i2c/et8ek8/et8ek8_mode.o
2025-10-02T16:14:10.2064614Z LD [M] drivers/media/i2c/smiapp/smiapp.o
2025-10-02T16:14:10.2525739Z CC [M] drivers/media/i2c/et8ek8/et8ek8_driver.o
2025-10-02T16:14:10.2568853Z CC [M] drivers/net/wireless/quantenna/qtnfmac/qlink_util.o
2025-10-02T16:14:10.4211205Z AR drivers/pps/clients/built-in.a
2025-10-02T16:14:10.4390732Z CC [M] drivers/pps/clients/pps-ktimer.o
2025-10-02T16:14:11.0202215Z CC [M] drivers/pps/clients/pps-ldisc.o
2025-10-02T16:14:11.0367225Z CC [M] drivers/media/tuners/tuner-types.o
2025-10-02T16:14:11.1867730Z CC [M] drivers/net/wireless/quantenna/qtnfmac/shm_ipc.o
2025-10-02T16:14:11.2712562Z LD [M] drivers/media/i2c/et8ek8/et8ek8.o
2025-10-02T16:14:11.3552100Z CC [M] drivers/media/i2c/cx25840/cx25840-core.o
2025-10-02T16:14:11.4428742Z CC [M] drivers/net/ethernet/netronome/nfp/flower/main.o
2025-10-02T16:14:11.5450071Z CC [M] drivers/net/wireless/quantenna/qtnfmac/pcie/pcie.o
2025-10-02T16:14:11.6058698Z CC [M] drivers/pps/clients/pps_parport.o
2025-10-02T16:14:11.6611193Z CC [M] drivers/media/tuners/mt20xx.o
2025-10-02T16:14:12.2303765Z CC [M] drivers/pps/clients/pps-gpio.o
2025-10-02T16:14:12.8410601Z CC [M] drivers/net/wireless/quantenna/qtnfmac/pcie/pearl_pcie.o
2025-10-02T16:14:12.8841192Z CC [M] drivers/media/tuners/tda8290.o
2025-10-02T16:14:12.9065590Z AR drivers/pps/generators/built-in.a
2025-10-02T16:14:12.9501692Z CC drivers/pps/pps.o
2025-10-02T16:14:13.4362876Z CC [M] drivers/net/ethernet/netronome/nfp/flower/match.o
2025-10-02T16:14:13.8947707Z CC drivers/pps/kapi.o
2025-10-02T16:14:14.0968079Z CC [M] drivers/media/tuners/tea5767.o
2025-10-02T16:14:14.5167038Z CC [M] drivers/net/wireless/quantenna/qtnfmac/pcie/topaz_pcie.o
2025-10-02T16:14:14.5293545Z CC drivers/pps/sysfs.o
2025-10-02T16:14:14.7632566Z CC [M] drivers/media/i2c/cx25840/cx25840-audio.o
2025-10-02T16:14:14.9878067Z AR drivers/pps/built-in.a
2025-10-02T16:14:15.0062709Z CC [M] drivers/media/tuners/tea5761.o
2025-10-02T16:14:15.0161211Z CC [M] drivers/media/i2c/cx25840/cx25840-firmware.o
2025-10-02T16:14:15.2691521Z CC [M] drivers/net/ethernet/netronome/nfp/flower/metadata.o
2025-10-02T16:14:15.6225842Z CC [M] drivers/net/wireless/ray_cs.o
2025-10-02T16:14:15.8233830Z CC [M] drivers/media/tuners/tda9887.o
2025-10-02T16:14:15.8327961Z CC [M] drivers/media/i2c/cx25840/cx25840-vbi.o
2025-10-02T16:14:16.1684959Z CC [M] drivers/net/wireless/quantenna/qtnfmac/debug.o
2025-10-02T16:14:16.9210537Z CC [M] drivers/media/i2c/cx25840/cx25840-ir.o
2025-10-02T16:14:16.9850657Z CC [M] drivers/media/tuners/tda827x.o
2025-10-02T16:14:17.2710143Z LD [M] drivers/net/wireless/quantenna/qtnfmac/qtnfmac.o
2025-10-02T16:14:17.2790014Z CC [M] drivers/net/ethernet/netronome/nfp/flower/offload.o
2025-10-02T16:14:17.3151102Z LD [M] drivers/net/wireless/quantenna/qtnfmac/qtnfmac_pcie.o
2025-10-02T16:14:17.4207851Z AR drivers/media/rc/keymaps/built-in.a
2025-10-02T16:14:17.4323491Z CC [M] drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.o
2025-10-02T16:14:17.6157160Z CC [M] drivers/net/wireless/wl3501_cs.o
2025-10-02T16:14:17.8336463Z CC [M] drivers/media/rc/keymaps/rc-alink-dtu-m.o
2025-10-02T16:14:18.2152483Z LD [M] drivers/media/i2c/cx25840/cx25840.o
2025-10-02T16:14:18.2509271Z CC [M] drivers/media/tuners/tda18271-maps.o
2025-10-02T16:14:18.2853841Z CC [M] drivers/media/i2c/m5mols/m5mols_core.o
2025-10-02T16:14:18.2870389Z CC [M] drivers/media/rc/keymaps/rc-anysee.o
2025-10-02T16:14:18.7802224Z CC [M] drivers/media/rc/keymaps/rc-apac-viewcomp.o
2025-10-02T16:14:19.0904514Z CC [M] drivers/media/tuners/tda18271-common.o
2025-10-02T16:14:19.3058241Z CC [M] drivers/media/rc/keymaps/rc-astrometa-t2hybrid.o
2025-10-02T16:14:19.5400827Z CC [M] drivers/media/i2c/m5mols/m5mols_controls.o
2025-10-02T16:14:19.5770672Z CC [M] drivers/net/wireless/rndis_wlan.o
2025-10-02T16:14:19.7176175Z CC [M] drivers/media/rc/keymaps/rc-asus-pc39.o
2025-10-02T16:14:19.9997607Z CC [M] drivers/net/ethernet/netronome/nfp/flower/tunnel_conf.o
2025-10-02T16:14:20.0873212Z CC [M] drivers/media/tuners/tda18271-fe.o
2025-10-02T16:14:20.1375135Z CC [M] drivers/media/rc/keymaps/rc-asus-ps3-100.o
2025-10-02T16:14:20.4715710Z CC [M] drivers/media/i2c/m5mols/m5mols_capture.o
2025-10-02T16:14:20.8175206Z CC [M] drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.o
2025-10-02T16:14:21.3080195Z LD [M] drivers/media/i2c/m5mols/m5mols.o
2025-10-02T16:14:21.3539283Z CC [M] drivers/media/rc/keymaps/rc-ati-x10.o
2025-10-02T16:14:21.3631143Z CC [M] drivers/media/i2c/s5c73m3/s5c73m3-core.o
2025-10-02T16:14:21.5753942Z CC [M] drivers/media/tuners/xc5000.o
2025-10-02T16:14:21.8672878Z CC [M] drivers/media/rc/keymaps/rc-avermedia-a16d.o
2025-10-02T16:14:22.2551874Z CC [M] drivers/net/wireless/mac80211_hwsim.o
2025-10-02T16:14:22.3665074Z CC [M] drivers/media/rc/keymaps/rc-avermedia.o
2025-10-02T16:14:22.7174035Z CC [M] drivers/net/ethernet/netronome/nfp/flower/qos_conf.o
2025-10-02T16:14:22.7901267Z CC [M] drivers/media/tuners/xc4000.o
2025-10-02T16:14:22.8993438Z CC [M] drivers/media/i2c/s5c73m3/s5c73m3-spi.o
2025-10-02T16:14:22.9341210Z CC [M] drivers/media/rc/keymaps/rc-avermedia-cardbus.o
2025-10-02T16:14:23.3943577Z CC [M] drivers/media/rc/keymaps/rc-avermedia-dvbt.o
2025-10-02T16:14:23.8335214Z CC [M] drivers/media/rc/keymaps/rc-avermedia-m135a.o
2025-10-02T16:14:23.9713972Z CC [M] drivers/media/i2c/s5c73m3/s5c73m3-ctrls.o
2025-10-02T16:14:24.2451706Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/cmsg.o
2025-10-02T16:14:24.2610026Z CC [M] drivers/media/tuners/mt2060.o
2025-10-02T16:14:24.2743027Z CC [M] drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.o
2025-10-02T16:14:24.8072278Z CC [M] drivers/media/rc/keymaps/rc-avermedia-rm-ks.o
2025-10-02T16:14:25.1189201Z LD [M] drivers/media/i2c/s5c73m3/s5c73m3.o
2025-10-02T16:14:25.1630730Z AR drivers/media/i2c/built-in.a
2025-10-02T16:14:25.1876033Z CC [M] drivers/media/i2c/msp3400-driver.o
2025-10-02T16:14:25.2080227Z CC [M] drivers/media/tuners/mt2063.o
2025-10-02T16:14:25.5199961Z CC [M] drivers/media/rc/keymaps/rc-avertv-303.o
2025-10-02T16:14:25.5528173Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/main.o
2025-10-02T16:14:25.6324123Z CC [M] drivers/net/wireless/virt_wifi.o
2025-10-02T16:14:25.9874114Z CC [M] drivers/media/rc/keymaps/rc-azurewave-ad-tu700.o
2025-10-02T16:14:26.3521205Z CC [M] drivers/media/i2c/msp3400-kthreads.o
2025-10-02T16:14:26.5790969Z CC [M] drivers/media/rc/keymaps/rc-beelink-gs1.o
2025-10-02T16:14:26.5800076Z CC [M] drivers/media/tuners/mt2266.o
2025-10-02T16:14:26.9695411Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/offload.o
2025-10-02T16:14:27.0151521Z CC [M] drivers/media/rc/keymaps/rc-behold.o
2025-10-02T16:14:27.0791182Z AR drivers/net/wireless/built-in.a
2025-10-02T16:14:27.2214138Z CC [M] drivers/media/i2c/aptina-pll.o
2025-10-02T16:14:27.4244377Z CC [M] drivers/media/tuners/qt1010.o
2025-10-02T16:14:27.6034620Z CC [M] drivers/media/rc/keymaps/rc-behold-columbus.o
2025-10-02T16:14:27.6180903Z CC [M] drivers/media/tuners/mt2131.o
2025-10-02T16:14:27.7098360Z CC [M] drivers/media/i2c/tvaudio.o
2025-10-02T16:14:28.1050025Z CC [M] drivers/media/rc/keymaps/rc-budget-ci-old.o
2025-10-02T16:14:28.2144507Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/verifier.o
2025-10-02T16:14:28.5279767Z CC [M] drivers/media/tuners/mxl5005s.o
2025-10-02T16:14:28.5542951Z CC [M] drivers/media/rc/keymaps/rc-cinergy-1400.o
2025-10-02T16:14:29.0237320Z CC [M] drivers/media/i2c/tda7432.o
2025-10-02T16:14:29.0548355Z CC [M] drivers/media/rc/keymaps/rc-cinergy.o
2025-10-02T16:14:29.3613969Z CC [M] drivers/net/usb/catc.o
2025-10-02T16:14:29.4684262Z CC [M] drivers/media/rc/keymaps/rc-d680-dmb.o
2025-10-02T16:14:29.8435494Z CC [M] drivers/media/i2c/saa6588.o
2025-10-02T16:14:29.8864461Z CC [M] drivers/media/rc/keymaps/rc-delock-61959.o
2025-10-02T16:14:30.0991340Z CC [M] drivers/net/ethernet/netronome/nfp/bpf/jit.o
2025-10-02T16:14:30.3876438Z CC [M] drivers/media/rc/keymaps/rc-dib0700-nec.o
2025-10-02T16:14:30.7505507Z CC [M] drivers/net/usb/kaweth.o
2025-10-02T16:14:30.8429288Z CC [M] drivers/media/i2c/tda9840.o
2025-10-02T16:14:30.9575092Z CC [M] drivers/media/rc/keymaps/rc-dib0700-rc5.o
2025-10-02T16:14:31.4945657Z CC [M] drivers/media/rc/keymaps/rc-digitalnow-tinytwin.o
2025-10-02T16:14:31.6923895Z CC [M] drivers/media/i2c/tea6415c.o
2025-10-02T16:14:31.9007248Z CC [M] drivers/media/rc/keymaps/rc-digittrade.o
2025-10-02T16:14:31.9475229Z CC [M] drivers/net/usb/pegasus.o
2025-10-02T16:14:31.9693548Z CC [M] drivers/media/tuners/mxl5007t.o
2025-10-02T16:14:32.4595277Z CC [M] drivers/media/i2c/tea6420.o
2025-10-02T16:14:32.4831391Z CC [M] drivers/media/rc/keymaps/rc-dm1105-nec.o
2025-10-02T16:14:32.9149365Z CC [M] drivers/media/rc/keymaps/rc-dntv-live-dvb-t.o
2025-10-02T16:14:33.1175084Z CC [M] drivers/media/tuners/mc44s803.o
2025-10-02T16:14:33.3306131Z CC [M] drivers/media/i2c/saa7115.o
2025-10-02T16:14:33.3645994Z CC [M] drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.o
2025-10-02T16:14:33.6421165Z CC [M] drivers/net/usb/rtl8150.o
2025-10-02T16:14:33.8483578Z CC [M] drivers/media/tuners/max2165.o
2025-10-02T16:14:33.9400022Z CC [M] drivers/media/rc/keymaps/rc-dtt200u.o
2025-10-02T16:14:34.5272299Z CC [M] drivers/media/rc/keymaps/rc-dvbsky.o
2025-10-02T16:14:34.6273515Z CC [M] drivers/net/ethernet/netronome/nfp/abm/cls.o
2025-10-02T16:14:34.6384869Z CC [M] drivers/media/i2c/saa717x.o
2025-10-02T16:14:34.7106955Z CC [M] drivers/media/tuners/tda18218.o
2025-10-02T16:14:34.9702130Z CC [M] drivers/net/usb/r8152.o
2025-10-02T16:14:35.1285598Z CC [M] drivers/media/rc/keymaps/rc-dvico-mce.o
2025-10-02T16:14:35.5315441Z CC [M] drivers/media/tuners/tda18212.o
2025-10-02T16:14:35.6581320Z CC [M] drivers/media/rc/keymaps/rc-dvico-portable.o
2025-10-02T16:14:35.7177258Z CC [M] drivers/media/i2c/saa7127.o
2025-10-02T16:14:36.2941245Z CC [M] drivers/media/rc/keymaps/rc-em-terratec.o
2025-10-02T16:14:36.3064015Z CC [M] drivers/media/tuners/e4000.o
2025-10-02T16:14:36.3959895Z CC [M] drivers/net/ethernet/netronome/nfp/abm/ctrl.o
2025-10-02T16:14:36.7745354Z CC [M] drivers/media/i2c/saa6752hs.o
2025-10-02T16:14:36.7981506Z CC [M] drivers/media/rc/keymaps/rc-encore-enltv2.o
2025-10-02T16:14:37.4580144Z CC [M] drivers/media/rc/keymaps/rc-encore-enltv.o
2025-10-02T16:14:37.4893585Z CC [M] drivers/media/tuners/fc2580.o
2025-10-02T16:14:37.5913430Z CC [M] drivers/media/i2c/ad5820.o
2025-10-02T16:14:37.9704156Z CC [M] drivers/media/rc/keymaps/rc-encore-enltv-fm53.o
2025-10-02T16:14:38.3888327Z CC [M] drivers/net/ethernet/netronome/nfp/abm/qdisc.o
2025-10-02T16:14:38.5744516Z CC [M] drivers/media/tuners/tua9001.o
2025-10-02T16:14:38.6201745Z CC [M] drivers/media/i2c/ak7375.o
2025-10-02T16:14:38.6690300Z CC [M] drivers/media/rc/keymaps/rc-evga-indtube.o
2025-10-02T16:14:39.1935960Z CC [M] drivers/media/rc/keymaps/rc-eztv.o
2025-10-02T16:14:39.3525419Z CC [M] drivers/media/tuners/si2157.o
2025-10-02T16:14:39.5103264Z CC [M] drivers/media/i2c/dw9714.o
2025-10-02T16:14:39.6887614Z CC [M] drivers/media/rc/keymaps/rc-flydvb.o
2025-10-02T16:14:39.7254198Z CC [M] drivers/net/usb/hso.o
2025-10-02T16:14:40.0238011Z CC [M] drivers/net/ethernet/netronome/nfp/abm/main.o
2025-10-02T16:14:40.1887837Z CC [M] drivers/media/rc/keymaps/rc-flyvideo.o
2025-10-02T16:14:40.4372558Z CC [M] drivers/media/i2c/dw9768.o
2025-10-02T16:14:40.6319263Z CC [M] drivers/media/rc/keymaps/rc-fusionhdtv-mce.o
2025-10-02T16:14:40.6973920Z CC [M] drivers/media/tuners/fc0011.o
2025-10-02T16:14:41.2991300Z CC [M] drivers/media/rc/keymaps/rc-gadmei-rm008z.o
2025-10-02T16:14:41.3417728Z LD [M] drivers/net/ethernet/netronome/nfp/nfp.o
2025-10-02T16:14:41.4053936Z CC [M] drivers/media/tuners/fc0012.o
2025-10-02T16:14:41.6647642Z AR drivers/net/ethernet/oki-semi/built-in.a
2025-10-02T16:14:41.6770275Z CC [M] drivers/media/i2c/dw9807-vcm.o
2025-10-02T16:14:41.7040433Z AR drivers/net/ethernet/packetengines/built-in.a
2025-10-02T16:14:41.7255068Z CC [M] drivers/net/ethernet/packetengines/hamachi.o
2025-10-02T16:14:41.7642746Z CC [M] drivers/media/rc/keymaps/rc-geekbox.o
2025-10-02T16:14:41.9664800Z CC [M] drivers/net/usb/lan78xx.o
2025-10-02T16:14:42.1111462Z CC [M] drivers/media/tuners/fc0013.o
2025-10-02T16:14:42.4312001Z CC [M] drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.o
2025-10-02T16:14:42.6677499Z CC [M] drivers/media/i2c/vs6624.o
2025-10-02T16:14:42.9225145Z CC [M] drivers/media/rc/keymaps/rc-gotview7135.o
2025-10-02T16:14:43.0977256Z CC [M] drivers/media/tuners/it913x.o
2025-10-02T16:14:43.4241226Z CC [M] drivers/media/rc/keymaps/rc-hisi-poplar.o
2025-10-02T16:14:43.4443173Z CC [M] drivers/net/ethernet/packetengines/yellowfin.o
2025-10-02T16:14:43.6482147Z CC [M] drivers/media/i2c/tvp5150.o
2025-10-02T16:14:43.9645432Z CC [M] drivers/media/tuners/r820t.o
2025-10-02T16:14:44.1079445Z CC [M] drivers/media/rc/keymaps/rc-hisi-tv-demo.o
2025-10-02T16:14:44.6626897Z CC [M] drivers/media/rc/keymaps/rc-imon-mce.o
2025-10-02T16:14:45.0591194Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.o
2025-10-02T16:14:45.1224176Z CC [M] drivers/media/i2c/tw2804.o
2025-10-02T16:14:45.1423166Z CC [M] drivers/media/rc/keymaps/rc-imon-pad.o
2025-10-02T16:14:45.3503926Z CC [M] drivers/media/tuners/mxl301rf.o
2025-10-02T16:14:45.6057095Z CC [M] drivers/net/usb/asix_devices.o
2025-10-02T16:14:45.6779110Z CC [M] drivers/media/rc/keymaps/rc-imon-rsc.o
2025-10-02T16:14:45.8900319Z CC [M] drivers/media/i2c/tw9903.o
2025-10-02T16:14:45.9952765Z CC [M] drivers/media/tuners/qm1d1c0042.o
2025-10-02T16:14:46.3511375Z CC [M] drivers/media/rc/keymaps/rc-iodata-bctv7e.o
2025-10-02T16:14:46.5907901Z CC [M] drivers/media/i2c/tw9906.o
2025-10-02T16:14:46.7113719Z CC [M] drivers/media/tuners/qm1d1b0004.o
2025-10-02T16:14:47.1005251Z CC [M] drivers/media/rc/keymaps/rc-it913x-v1.o
2025-10-02T16:14:47.2086107Z CC [M] drivers/net/usb/asix_common.o
2025-10-02T16:14:47.2942605Z CC [M] drivers/media/i2c/cs3308.o
2025-10-02T16:14:47.2986766Z CC [M] drivers/media/tuners/m88rs6000t.o
2025-10-02T16:14:47.3102466Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.o
2025-10-02T16:14:47.6441381Z CC [M] drivers/media/rc/keymaps/rc-it913x-v2.o
2025-10-02T16:14:48.0336615Z CC [M] drivers/media/i2c/cs5345.o
2025-10-02T16:14:48.2714807Z CC [M] drivers/media/rc/keymaps/rc-kaiomy.o
2025-10-02T16:14:48.3713200Z CC [M] drivers/media/tuners/tda18250.o
2025-10-02T16:14:48.7483753Z CC [M] drivers/net/usb/ax88172a.o
2025-10-02T16:14:48.7794572Z CC [M] drivers/media/rc/keymaps/rc-khadas.o
2025-10-02T16:14:48.7843420Z CC [M] drivers/media/i2c/cs53l32a.o
2025-10-02T16:14:49.3885238Z CC [M] drivers/media/rc/keymaps/rc-kworld-315u.o
2025-10-02T16:14:49.4533352Z LD [M] drivers/media/tuners/tda18271.o
2025-10-02T16:14:49.7149790Z CC [M] drivers/media/i2c/m52790.o
2025-10-02T16:14:49.7248909Z CC [M] drivers/net/usb/ax88179_178a.o
2025-10-02T16:14:49.8394932Z CC drivers/media/rc/rc-main.o
2025-10-02T16:14:49.8949901Z CC [M] drivers/media/rc/keymaps/rc-kworld-pc150u.o
2025-10-02T16:14:50.4601624Z CC [M] drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.o
2025-10-02T16:14:50.4920864Z CC [M] drivers/media/i2c/uda1342.o
2025-10-02T16:14:50.8332412Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_init.o
2025-10-02T16:14:50.8845431Z CC [M] drivers/media/rc/keymaps/rc-leadtek-y04g0051.o
2025-10-02T16:14:51.2576537Z CC [M] drivers/net/hyperv/netvsc_drv.o
2025-10-02T16:14:51.2823827Z CC [M] drivers/media/i2c/wm8775.o
2025-10-02T16:14:51.5350698Z CC [M] drivers/media/rc/keymaps/rc-lme2510.o
2025-10-02T16:14:51.7595006Z CC [M] drivers/net/usb/cdc_ether.o
2025-10-02T16:14:52.0131374Z CC [M] drivers/media/rc/keymaps/rc-manli.o
2025-10-02T16:14:52.0170543Z CC [M] drivers/media/i2c/wm8739.o
2025-10-02T16:14:52.4691269Z CC [M] drivers/media/rc/keymaps/rc-medion-x10.o
2025-10-02T16:14:52.6146944Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_ethtool.o
2025-10-02T16:14:52.9595802Z CC [M] drivers/media/i2c/vp27smpx.o
2025-10-02T16:14:52.9597221Z CC [M] drivers/media/rc/keymaps/rc-medion-x10-digitainer.o
2025-10-02T16:14:52.9654705Z CC [M] drivers/net/usb/cdc_eem.o
2025-10-02T16:14:53.5621802Z CC [M] drivers/media/rc/keymaps/rc-medion-x10-or2x.o
2025-10-02T16:14:53.6387988Z CC [M] drivers/media/i2c/sony-btf-mpx.o
2025-10-02T16:14:53.8821397Z CC [M] drivers/net/hyperv/netvsc.o
2025-10-02T16:14:53.9878615Z CC [M] drivers/media/rc/keymaps/rc-msi-digivox-ii.o
2025-10-02T16:14:54.0188588Z CC [M] drivers/net/usb/dm9601.o
2025-10-02T16:14:54.4641961Z CC [M] drivers/media/i2c/upd64031a.o
2025-10-02T16:14:54.5401372Z CC [M] drivers/media/rc/keymaps/rc-msi-digivox-iii.o
2025-10-02T16:14:54.6750351Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_ctx.o
2025-10-02T16:14:55.1594311Z CC [M] drivers/media/rc/keymaps/rc-msi-tvanywhere.o
2025-10-02T16:14:55.1809176Z CC [M] drivers/media/i2c/upd64083.o
2025-10-02T16:14:55.1964278Z CC [M] drivers/net/usb/sr9700.o
2025-10-02T16:14:55.6758235Z CC [M] drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.o
2025-10-02T16:14:55.7951024Z CC [M] drivers/net/hyperv/rndis_filter.o
2025-10-02T16:14:55.9507514Z CC [M] drivers/media/i2c/ov2640.o
2025-10-02T16:14:56.1721539Z CC [M] drivers/media/rc/keymaps/rc-nebula.o
2025-10-02T16:14:56.3581187Z CC [M] drivers/net/usb/sr9800.o
2025-10-02T16:14:56.5812635Z CC [M] drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.o
2025-10-02T16:14:56.6027764Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.o
2025-10-02T16:14:56.9840581Z CC [M] drivers/media/i2c/ov2680.o
2025-10-02T16:14:57.2263919Z CC [M] drivers/media/rc/keymaps/rc-norwood.o
2025-10-02T16:14:57.6304009Z CC [M] drivers/net/usb/smsc75xx.o
2025-10-02T16:14:57.7651194Z CC [M] drivers/net/hyperv/netvsc_trace.o
2025-10-02T16:14:57.7970295Z CC [M] drivers/media/rc/keymaps/rc-npgtech.o
2025-10-02T16:14:58.2121260Z CC [M] drivers/media/i2c/ov2685.o
2025-10-02T16:14:58.4381604Z CC [M] drivers/media/rc/keymaps/rc-odroid.o
2025-10-02T16:14:58.9638804Z CC [M] drivers/net/hyperv/netvsc_bpf.o
2025-10-02T16:14:59.0987563Z CC [M] drivers/media/rc/keymaps/rc-pctv-sedna.o
2025-10-02T16:14:59.2197569Z CC [M] drivers/media/i2c/ov2740.o
2025-10-02T16:14:59.2237821Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_sysfs.o
2025-10-02T16:14:59.5270586Z CC [M] drivers/net/usb/smsc95xx.o
2025-10-02T16:14:59.6831284Z CC [M] drivers/media/rc/keymaps/rc-pinnacle-color.o
2025-10-02T16:14:59.9433868Z LD [M] drivers/net/hyperv/hv_netvsc.o
2025-10-02T16:15:00.0256879Z AR drivers/net/ethernet/qualcomm/emac/built-in.a
2025-10-02T16:15:00.0379430Z CC [M] drivers/net/ethernet/qualcomm/emac/emac.o
2025-10-02T16:15:00.3887605Z CC [M] drivers/media/rc/keymaps/rc-pinnacle-grey.o
2025-10-02T16:15:00.4287166Z CC [M] drivers/media/i2c/ov5647.o
2025-10-02T16:15:00.9487861Z CC [M] drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.o
2025-10-02T16:15:01.1556683Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-mac.o
2025-10-02T16:15:01.1901223Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_minidump.o
2025-10-02T16:15:01.2748306Z CC [M] drivers/media/i2c/ov5670.o
2025-10-02T16:15:01.4102651Z CC [M] drivers/media/rc/keymaps/rc-pixelview.o
2025-10-02T16:15:01.5371129Z CC [M] drivers/net/usb/gl620a.o
2025-10-02T16:15:01.9038033Z CC [M] drivers/media/rc/keymaps/rc-pixelview-mk12.o
2025-10-02T16:15:02.3201883Z CC [M] drivers/media/i2c/ov5675.o
2025-10-02T16:15:02.4609339Z CC [M] drivers/net/usb/net1080.o
2025-10-02T16:15:02.5471296Z CC [M] drivers/media/rc/keymaps/rc-pixelview-002t.o
2025-10-02T16:15:02.9819320Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_hw.o
2025-10-02T16:15:03.0620964Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-phy.o
2025-10-02T16:15:03.0977308Z CC [M] drivers/media/rc/keymaps/rc-pixelview-new.o
2025-10-02T16:15:03.3170083Z CC [M] drivers/media/i2c/ov5695.o
2025-10-02T16:15:03.4071833Z CC [M] drivers/net/usb/plusb.o
2025-10-02T16:15:03.7540428Z CC [M] drivers/media/rc/keymaps/rc-powercolor-real-angel.o
2025-10-02T16:15:04.0890415Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-sgmii.o
2025-10-02T16:15:04.2580926Z CC [M] drivers/net/usb/rndis_host.o
2025-10-02T16:15:04.3462493Z CC [M] drivers/media/rc/keymaps/rc-proteus-2309.o
2025-10-02T16:15:04.4483348Z CC [M] drivers/media/i2c/ov6650.o
2025-10-02T16:15:04.8767039Z CC [M] drivers/media/rc/keymaps/rc-purpletv.o
2025-10-02T16:15:05.1317918Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-ethtool.o
2025-10-02T16:15:05.3441701Z CC [M] drivers/media/rc/keymaps/rc-pv951.o
2025-10-02T16:15:05.4294025Z CC [M] drivers/net/usb/cdc_subset.o
2025-10-02T16:15:05.8324050Z CC [M] drivers/media/i2c/ov7251.o
2025-10-02T16:15:05.8947668Z CC [M] drivers/media/rc/keymaps/rc-hauppauge.o
2025-10-02T16:15:06.0879695Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-sgmii-fsm9900.o
2025-10-02T16:15:06.2034329Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.o
2025-10-02T16:15:06.2346329Z CC [M] drivers/net/usb/zaurus.o
2025-10-02T16:15:06.2867730Z CC [M] drivers/media/rc/keymaps/rc-rc6-mce.o
2025-10-02T16:15:06.6942493Z CC [M] drivers/media/rc/keymaps/rc-real-audio-220-32-keys.o
2025-10-02T16:15:07.0318243Z CC [M] drivers/net/usb/mcs7830.o
2025-10-02T16:15:07.1597781Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-sgmii-qdf2432.o
2025-10-02T16:15:07.2328518Z CC [M] drivers/media/rc/keymaps/rc-reddo.o
2025-10-02T16:15:07.2582296Z CC [M] drivers/media/i2c/ov7640.o
2025-10-02T16:15:07.7856303Z CC [M] drivers/media/rc/keymaps/rc-snapstream-firefly.o
2025-10-02T16:15:08.0039059Z CC [M] drivers/media/i2c/ov7670.o
2025-10-02T16:15:08.0044562Z CC [M] drivers/net/ethernet/qualcomm/emac/emac-sgmii-qdf2400.o
2025-10-02T16:15:08.0935865Z CC [M] drivers/net/usb/usbnet.o
2025-10-02T16:15:08.3188236Z CC [M] drivers/media/rc/keymaps/rc-streamzap.o
2025-10-02T16:15:08.3870139Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_vnic.o
2025-10-02T16:15:08.8141494Z LD [M] drivers/net/ethernet/qualcomm/emac/qcom-emac.o
2025-10-02T16:15:08.8900366Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_config.o
2025-10-02T16:15:08.9075100Z CC [M] drivers/media/rc/keymaps/rc-tango.o
2025-10-02T16:15:09.1641253Z CC [M] drivers/media/i2c/ov772x.o
2025-10-02T16:15:09.4770646Z CC [M] drivers/media/rc/keymaps/rc-tanix-tx3mini.o
2025-10-02T16:15:09.5276948Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_common.o
2025-10-02T16:15:10.0212054Z CC [M] drivers/media/rc/keymaps/rc-tanix-tx5max.o
2025-10-02T16:15:10.2489410Z CC [M] drivers/media/i2c/ov7740.o
2025-10-02T16:15:10.3673088Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_vnd.o
2025-10-02T16:15:10.4069097Z CC [M] drivers/net/usb/int51x1.o
2025-10-02T16:15:10.4683299Z CC [M] drivers/media/rc/keymaps/rc-tbs-nec.o
2025-10-02T16:15:10.8738033Z CC [M] drivers/media/rc/keymaps/rc-technisat-ts35.o
2025-10-02T16:15:11.2941771Z CC [M] drivers/media/i2c/ov8856.o
2025-10-02T16:15:11.4090524Z CC [M] drivers/media/rc/keymaps/rc-technisat-usb2.o
2025-10-02T16:15:11.5748103Z CC [M] drivers/net/usb/cdc-phonet.o
2025-10-02T16:15:11.6096194Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_handlers.o
2025-10-02T16:15:11.6944370Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_sriov_pf.o
2025-10-02T16:15:11.9206473Z CC [M] drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.o
2025-10-02T16:15:12.4584526Z CC [M] drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.o
2025-10-02T16:15:12.6209891Z CC [M] drivers/media/i2c/ov9640.o
2025-10-02T16:15:12.7556636Z CC [M] drivers/net/usb/kalmia.o
2025-10-02T16:15:12.8681159Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_map_data.o
2025-10-02T16:15:12.9896256Z CC [M] drivers/media/rc/keymaps/rc-terratec-cinergy-xs.o
2025-10-02T16:15:13.4468221Z CC [M] drivers/media/rc/keymaps/rc-terratec-slim.o
2025-10-02T16:15:13.5367608Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic_dcb.o
2025-10-02T16:15:13.5832719Z CC [M] drivers/media/i2c/ov9650.o
2025-10-02T16:15:13.8969063Z CC [M] drivers/media/rc/keymaps/rc-terratec-slim-2.o
2025-10-02T16:15:14.0862761Z CC [M] drivers/net/usb/ipheth.o
2025-10-02T16:15:14.2547396Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet_map_command.o
2025-10-02T16:15:14.4366692Z CC [M] drivers/media/rc/keymaps/rc-tevii-nec.o
2025-10-02T16:15:14.9649144Z CC [M] drivers/media/i2c/ov13858.o
2025-10-02T16:15:15.0007474Z LD [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic.o
2025-10-02T16:15:15.0816297Z CC [M] drivers/media/rc/keymaps/rc-tivo.o
2025-10-02T16:15:15.1137941Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_hw.o
2025-10-02T16:15:15.1837290Z LD [M] drivers/net/ethernet/qualcomm/rmnet/rmnet.o
2025-10-02T16:15:15.2582807Z AR drivers/net/ethernet/qualcomm/built-in.a
2025-10-02T16:15:15.2636596Z CC [M] drivers/net/usb/sierra_net.o
2025-10-02T16:15:15.3346800Z CC [M] drivers/net/ethernet/qlogic/qed/qed_chain.o
2025-10-02T16:15:15.5850746Z CC [M] drivers/media/rc/keymaps/rc-total-media-in-hand.o
2025-10-02T16:15:15.8338632Z CC [M] drivers/media/i2c/mt9m001.o
2025-10-02T16:15:16.2533385Z CC [M] drivers/media/rc/keymaps/rc-total-media-in-hand-02.o
2025-10-02T16:15:16.5976208Z CC [M] drivers/net/ethernet/qlogic/qed/qed_cxt.o
2025-10-02T16:15:16.7631557Z CC [M] drivers/net/usb/cx82310_eth.o
2025-10-02T16:15:16.8250630Z CC [M] drivers/media/i2c/mt9m032.o
2025-10-02T16:15:16.8807683Z CC [M] drivers/media/rc/keymaps/rc-trekstor.o
2025-10-02T16:15:17.2465837Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_main.o
2025-10-02T16:15:17.3610726Z CC [M] drivers/media/rc/keymaps/rc-tt-1500.o
2025-10-02T16:15:17.8517969Z CC [M] drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.o
2025-10-02T16:15:17.8668275Z CC [M] drivers/media/i2c/mt9m111.o
2025-10-02T16:15:17.8684397Z CC [M] drivers/net/usb/cdc_ncm.o
2025-10-02T16:15:18.4272445Z CC [M] drivers/media/rc/keymaps/rc-twinhan1027.o
2025-10-02T16:15:18.9137291Z CC [M] drivers/net/ethernet/qlogic/qed/qed_dcbx.o
2025-10-02T16:15:18.9705531Z CC [M] drivers/media/i2c/mt9p031.o
2025-10-02T16:15:19.0980671Z CC [M] drivers/media/rc/keymaps/rc-vega-s9x.o
2025-10-02T16:15:19.5873349Z CC [M] drivers/media/rc/keymaps/rc-videomate-m1f.o
2025-10-02T16:15:19.9302215Z CC [M] drivers/net/usb/huawei_cdc_ncm.o
2025-10-02T16:15:20.0488582Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_init.o
2025-10-02T16:15:20.1480208Z CC [M] drivers/media/rc/keymaps/rc-videomate-s350.o
2025-10-02T16:15:20.3742447Z CC [M] drivers/media/i2c/mt9t001.o
2025-10-02T16:15:20.7067190Z CC [M] drivers/media/rc/keymaps/rc-videomate-tv-pvr.o
2025-10-02T16:15:20.9120579Z CC [M] drivers/net/usb/lg-vl600.o
2025-10-02T16:15:21.0197501Z CC [M] drivers/net/ethernet/qlogic/qed/qed_debug.o
2025-10-02T16:15:21.3852639Z CC [M] drivers/media/rc/keymaps/rc-videostrong-kii-pro.o
2025-10-02T16:15:21.5481623Z CC [M] drivers/media/i2c/mt9t112.o
2025-10-02T16:15:21.8149690Z CC [M] drivers/net/usb/qmi_wwan.o
2025-10-02T16:15:21.9697186Z In file included from ./include/linux/kernel.h:15,
2025-10-02T16:15:21.9698230Z from ./include/linux/list.h:9,
2025-10-02T16:15:21.9699148Z from ./include/linux/module.h:12,
2025-10-02T16:15:21.9700416Z from drivers/net/ethernet/qlogic/qed/qed_debug.c:7:
2025-10-02T16:15:21.9702099Z drivers/net/ethernet/qlogic/qed/qed_debug.c: In function ‘qed_protection_override_dump’:
2025-10-02T16:15:21.9704111Z ./include/linux/minmax.h:20:35: warning: comparison of distinct pointer types lacks a cast [-Wcompare-distinct-pointer-types]
2025-10-02T16:15:21.9705676Z 20 | (!!(sizeof((typeof(x) *)1 == (typeof(y) *)1)))
2025-10-02T16:15:21.9706699Z | ^~
2025-10-02T16:15:21.9708014Z ./include/linux/minmax.h:26:18: note: in expansion of macro ‘__typecheck’
2025-10-02T16:15:21.9709338Z 26 | (__typecheck(x, y) && __no_side_effects(x, y))
2025-10-02T16:15:21.9711096Z | ^~~~~~~~~~~
2025-10-02T16:15:21.9712611Z ./include/linux/minmax.h:36:31: note: in expansion of macro ‘__safe_cmp’
2025-10-02T16:15:21.9713904Z 36 | __builtin_choose_expr(__safe_cmp(x, y), \
2025-10-02T16:15:21.9714979Z | ^~~~~~~~~~
2025-10-02T16:15:21.9716338Z ./include/linux/minmax.h:45:25: note: in expansion of macro ‘__careful_cmp’
2025-10-02T16:15:21.9717610Z 45 | #define min(x, y) __careful_cmp(x, y, <)
2025-10-02T16:15:21.9718642Z | ^~~~~~~~~~~~~
2025-10-02T16:15:21.9760469Z drivers/net/ethernet/qlogic/qed/qed_debug.c:4379:17: note: in expansion of macro ‘min’
2025-10-02T16:15:21.9761911Z 4379 | min(qed_rd(p_hwfn, p_ptt, GRC_REG_NUMBER_VALID_OVERRIDE_WINDOW) *
2025-10-02T16:15:21.9762946Z | ^~~
2025-10-02T16:15:22.0400606Z CC [M] drivers/media/rc/keymaps/rc-wetek-hub.o
2025-10-02T16:15:22.1155257Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_ethtool.o
2025-10-02T16:15:22.6446575Z CC [M] drivers/media/i2c/mt9v011.o
2025-10-02T16:15:22.6490052Z CC [M] drivers/media/rc/keymaps/rc-wetek-play2.o
2025-10-02T16:15:23.1684056Z CC [M] drivers/media/rc/keymaps/rc-winfast.o
2025-10-02T16:15:23.3141569Z CC [M] drivers/net/usb/cdc_mbim.o
2025-10-02T16:15:23.4586673Z CC [M] drivers/media/i2c/mt9v032.o
2025-10-02T16:15:23.5601545Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic_ctx.o
2025-10-02T16:15:23.6231687Z CC [M] drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.o
2025-10-02T16:15:24.1298951Z CC [M] drivers/media/rc/keymaps/rc-su3000.o
2025-10-02T16:15:24.5362024Z CC [M] drivers/media/i2c/mt9v111.o
2025-10-02T16:15:24.6650848Z CC [M] drivers/media/rc/keymaps/rc-xbox-dvd.o
2025-10-02T16:15:24.6942347Z CC [M] drivers/net/usb/ch9200.o
2025-10-02T16:15:25.0517034Z LD [M] drivers/net/ethernet/qlogic/netxen/netxen_nic.o
2025-10-02T16:15:25.1176113Z CC drivers/ptp/ptp_clock.o
2025-10-02T16:15:25.1664939Z CC [M] drivers/media/rc/keymaps/rc-x96max.o
2025-10-02T16:15:25.5817857Z CC [M] drivers/net/ethernet/qlogic/qed/qed_dev.o
2025-10-02T16:15:25.6557482Z CC [M] drivers/media/rc/keymaps/rc-zx-irdec.o
2025-10-02T16:15:25.7236984Z CC [M] drivers/net/usb/aqc111.o
2025-10-02T16:15:25.8833906Z CC [M] drivers/media/i2c/sr030pc30.o
2025-10-02T16:15:25.9257340Z CC drivers/ptp/ptp_chardev.o
2025-10-02T16:15:26.6961549Z CC drivers/ptp/ptp_sysfs.o
2025-10-02T16:15:26.9519370Z CC [M] drivers/media/i2c/noon010pc30.o
2025-10-02T16:15:27.1657392Z CC drivers/media/rc/rc-ir-raw.o
2025-10-02T16:15:27.4344188Z CC [M] drivers/ptp/ptp_ines.o
2025-10-02T16:15:27.4619457Z LD [M] drivers/net/usb/asix.o
2025-10-02T16:15:27.6999171Z AR drivers/media/common/b2c2/built-in.a
2025-10-02T16:15:27.7117990Z CC [M] drivers/media/common/b2c2/flexcop.o
2025-10-02T16:15:28.1309179Z CC [M] drivers/media/i2c/rj54n1cb0c.o
2025-10-02T16:15:28.2204827Z CC drivers/media/rc/lirc_dev.o
2025-10-02T16:15:28.7283134Z CC [M] drivers/media/common/b2c2/flexcop-fe-tuner.o
2025-10-02T16:15:28.7758739Z CC [M] drivers/ptp/ptp_kvm.o
2025-10-02T16:15:29.2646853Z CC [M] drivers/ptp/ptp_clockmatrix.o
2025-10-02T16:15:29.2976295Z CC [M] drivers/net/ethernet/qlogic/qed/qed_devlink.o
2025-10-02T16:15:29.3102132Z CC [M] drivers/media/i2c/s5k6aa.o
2025-10-02T16:15:29.3979300Z CC drivers/media/rc/keymaps/rc-cec.o
2025-10-02T16:15:29.9037759Z CC drivers/media/rc/bpf-lirc.o
2025-10-02T16:15:30.1273213Z CC [M] drivers/media/common/b2c2/flexcop-i2c.o
2025-10-02T16:15:30.2087998Z CC [M] drivers/net/ethernet/qlogic/qed/qed_hw.o
2025-10-02T16:15:30.7972272Z CC [M] drivers/ptp/ptp_idt82p33.o
2025-10-02T16:15:30.8698694Z CC [M] drivers/media/i2c/s5k6a3.o
2025-10-02T16:15:30.9462531Z CC [M] drivers/media/rc/ir-nec-decoder.o
2025-10-02T16:15:31.3522826Z CC [M] drivers/media/common/b2c2/flexcop-sram.o
2025-10-02T16:15:31.6497925Z CC [M] drivers/media/rc/ir-rc5-decoder.o
2025-10-02T16:15:31.7313637Z CC [M] drivers/net/ethernet/qlogic/qed/qed_init_fw_funcs.o
2025-10-02T16:15:31.7500501Z CC [M] drivers/ptp/ptp_vmw.o
2025-10-02T16:15:31.7853317Z CC [M] drivers/media/i2c/s5k4ecgx.o
2025-10-02T16:15:32.3227086Z CC [M] drivers/media/common/b2c2/flexcop-eeprom.o
2025-10-02T16:15:32.3301355Z AR drivers/ptp/built-in.a
2025-10-02T16:15:32.4041718Z AR drivers/media/common/saa7146/built-in.a
2025-10-02T16:15:32.4146602Z CC [M] drivers/media/common/saa7146/saa7146_i2c.o
2025-10-02T16:15:32.4398600Z CC [M] drivers/media/rc/ir-rc6-decoder.o
2025-10-02T16:15:33.0223558Z CC [M] drivers/media/i2c/s5k5baf.o
2025-10-02T16:15:33.1571810Z CC [M] drivers/media/rc/ir-jvc-decoder.o
2025-10-02T16:15:33.3851555Z CC [M] drivers/media/common/b2c2/flexcop-misc.o
2025-10-02T16:15:33.4652960Z CC [M] drivers/net/ethernet/qlogic/qed/qed_init_ops.o
2025-10-02T16:15:33.4942045Z CC [M] drivers/media/common/saa7146/saa7146_core.o
2025-10-02T16:15:33.8726073Z CC [M] drivers/media/rc/ir-sony-decoder.o
2025-10-02T16:15:34.0485395Z CC [M] drivers/media/i2c/adp1653.o
2025-10-02T16:15:34.4638854Z CC [M] drivers/media/common/b2c2/flexcop-hw-filter.o
2025-10-02T16:15:34.6082644Z CC [M] drivers/media/common/saa7146/saa7146_fops.o
2025-10-02T16:15:34.6615850Z CC [M] drivers/media/rc/ir-sanyo-decoder.o
2025-10-02T16:15:34.7191589Z CC [M] drivers/net/ethernet/qlogic/qed/qed_int.o
2025-10-02T16:15:34.9281601Z CC [M] drivers/media/i2c/lm3560.o
2025-10-02T16:15:35.4589991Z CC [M] drivers/media/rc/ir-sharp-decoder.o
2025-10-02T16:15:35.5235596Z LD [M] drivers/media/common/b2c2/b2c2-flexcop.o
2025-10-02T16:15:35.5855689Z CC [M] drivers/net/fjes/fjes_main.o
2025-10-02T16:15:35.7638310Z CC [M] drivers/media/i2c/lm3646.o
2025-10-02T16:15:36.0183526Z CC [M] drivers/media/common/saa7146/saa7146_video.o
2025-10-02T16:15:36.2885595Z CC [M] drivers/media/rc/ir-mce_kbd-decoder.o
2025-10-02T16:15:36.5868739Z CC [M] drivers/media/i2c/smiapp-pll.o
2025-10-02T16:15:36.6760003Z CC [M] drivers/net/ethernet/qlogic/qed/qed_l2.o
2025-10-02T16:15:37.2020897Z CC [M] drivers/net/fjes/fjes_hw.o
2025-10-02T16:15:37.3481216Z CC [M] drivers/media/rc/ir-xmp-decoder.o
2025-10-02T16:15:37.3708809Z CC [M] drivers/media/i2c/ir-kbd-i2c.o
2025-10-02T16:15:37.5518148Z CC [M] drivers/media/common/saa7146/saa7146_hlp.o
2025-10-02T16:15:38.1664514Z CC [M] drivers/media/rc/ir-imon-decoder.o
2025-10-02T16:15:38.5283313Z CC [M] drivers/media/i2c/ov2659.o
2025-10-02T16:15:38.8429762Z CC [M] drivers/net/ethernet/qlogic/qed/qed_main.o
2025-10-02T16:15:38.8942367Z CC [M] drivers/net/fjes/fjes_ethtool.o
2025-10-02T16:15:38.9424170Z CC [M] drivers/media/common/saa7146/saa7146_vbi.o
2025-10-02T16:15:38.9794257Z CC [M] drivers/media/rc/ir-rcmm-decoder.o
2025-10-02T16:15:39.5994640Z CC [M] drivers/media/i2c/hi556.o
2025-10-02T16:15:39.7664386Z CC [M] drivers/net/fjes/fjes_trace.o
2025-10-02T16:15:39.7989655Z CC [M] drivers/media/rc/ati_remote.o
2025-10-02T16:15:39.9035148Z LD [M] drivers/media/common/saa7146/saa7146.o
2025-10-02T16:15:39.9379752Z LD [M] drivers/media/common/saa7146/saa7146_vv.o
2025-10-02T16:15:40.0529432Z AR drivers/media/common/siano/built-in.a
2025-10-02T16:15:40.0754634Z CC [M] drivers/media/common/siano/smscoreapi.o
2025-10-02T16:15:40.6694660Z CC [M] drivers/media/i2c/imx214.o
2025-10-02T16:15:40.8156337Z CC [M] drivers/media/rc/imon.o
2025-10-02T16:15:41.3098016Z CC [M] drivers/net/ethernet/qlogic/qed/qed_mcp.o
2025-10-02T16:15:41.6993415Z CC [M] drivers/media/common/siano/sms-cards.o
2025-10-02T16:15:41.7939450Z CC [M] drivers/net/fjes/fjes_debugfs.o
2025-10-02T16:15:41.8710117Z CC [M] drivers/media/i2c/imx219.o
2025-10-02T16:15:42.3673810Z CC [M] drivers/media/common/siano/smsendian.o
2025-10-02T16:15:42.6104181Z CC [M] drivers/media/rc/imon_raw.o
2025-10-02T16:15:42.7314939Z LD [M] drivers/net/fjes/fjes.o
2025-10-02T16:15:42.7900914Z CC [M] drivers/net/ethernet/qlogic/qede/qede_main.o
2025-10-02T16:15:42.8457161Z CC [M] drivers/media/common/siano/smsir.o
2025-10-02T16:15:43.1547872Z CC [M] drivers/media/i2c/imx258.o
2025-10-02T16:15:43.4243639Z CC [M] drivers/media/rc/ite-cir.o
2025-10-02T16:15:43.4906745Z CC [M] drivers/media/common/siano/smsdvb-main.o
2025-10-02T16:15:44.2011065Z CC [M] drivers/media/i2c/imx274.o
2025-10-02T16:15:44.4707499Z CC [M] drivers/net/ethernet/qlogic/qed/qed_mng_tlv.o
2025-10-02T16:15:44.7372081Z LD [M] drivers/media/common/siano/smsmdtv.o
2025-10-02T16:15:44.7552687Z LD [M] drivers/media/common/siano/smsdvb.o
2025-10-02T16:15:44.8130528Z AR drivers/media/common/v4l2-tpg/built-in.a
2025-10-02T16:15:44.8269195Z CC [M] drivers/media/common/v4l2-tpg/v4l2-tpg-core.o
2025-10-02T16:15:44.8798464Z CC [M] drivers/media/rc/mceusb.o
2025-10-02T16:15:45.2685030Z CC [M] drivers/media/i2c/imx290.o
2025-10-02T16:15:45.8468582Z CC [M] drivers/net/ethernet/qlogic/qed/qed_ptp.o
2025-10-02T16:15:45.8864833Z CC [M] drivers/net/ethernet/qlogic/qede/qede_fp.o
2025-10-02T16:15:46.5089010Z CC [M] drivers/media/i2c/imx319.o
2025-10-02T16:15:46.5695246Z CC [M] drivers/media/rc/fintek-cir.o
2025-10-02T16:15:46.9853872Z CC [M] drivers/net/ethernet/qlogic/qed/qed_selftest.o
2025-10-02T16:15:47.1674533Z CC [M] drivers/media/common/v4l2-tpg/v4l2-tpg-colors.o
2025-10-02T16:15:47.4336298Z CC [M] drivers/media/i2c/imx355.o
2025-10-02T16:15:47.6949233Z LD [M] drivers/media/common/v4l2-tpg/v4l2-tpg.o
2025-10-02T16:15:47.7786169Z AR drivers/media/common/videobuf2/built-in.a
2025-10-02T16:15:47.7804197Z CC [M] drivers/media/rc/nuvoton-cir.o
2025-10-02T16:15:47.8010899Z CC [M] drivers/media/common/videobuf2/videobuf2-core.o
2025-10-02T16:15:47.9404886Z CC [M] drivers/net/ethernet/qlogic/qed/qed_sp_commands.o
2025-10-02T16:15:48.4666450Z CC [M] drivers/media/i2c/rdacm20.o
2025-10-02T16:15:48.8188471Z CC [M] drivers/net/ethernet/qlogic/qede/qede_filter.o
2025-10-02T16:15:48.9478680Z CC [M] drivers/net/ethernet/qlogic/qed/qed_spq.o
2025-10-02T16:15:49.1110912Z CC [M] drivers/media/rc/ene_ir.o
2025-10-02T16:15:49.2903329Z CC [M] drivers/media/i2c/max9271.o
2025-10-02T16:15:50.0174187Z LD [M] drivers/media/i2c/msp3400.o
2025-10-02T16:15:50.0416620Z LD [M] drivers/media/i2c/rdacm20-camera_module.o
2025-10-02T16:15:50.1151803Z CC [M] drivers/media/common/videobuf2/vb2-trace.o
2025-10-02T16:15:50.5419296Z CC [M] drivers/media/rc/redrat3.o
2025-10-02T16:15:50.5571987Z AR drivers/net/ethernet/realtek/built-in.a
2025-10-02T16:15:50.5756679Z CC [M] drivers/net/ethernet/qlogic/qed/qed_fcoe.o
2025-10-02T16:15:50.5781707Z CC [M] drivers/net/ethernet/realtek/8139cp.o
2025-10-02T16:15:50.9211179Z CC [M] drivers/media/common/videobuf2/videobuf2-v4l2.o
2025-10-02T16:15:51.1003915Z CC [M] drivers/net/ethernet/qlogic/qede/qede_ethtool.o
2025-10-02T16:15:51.6275986Z CC [M] drivers/media/rc/streamzap.o
2025-10-02T16:15:52.2185822Z CC [M] drivers/media/common/videobuf2/videobuf2-memops.o
2025-10-02T16:15:52.2289154Z CC [M] drivers/net/ethernet/qlogic/qed/qed_iscsi.o
2025-10-02T16:15:52.5612387Z CC [M] drivers/media/rc/winbond-cir.o
2025-10-02T16:15:52.6968482Z CC [M] drivers/net/ethernet/realtek/8139too.o
2025-10-02T16:15:52.9206545Z CC [M] drivers/media/common/videobuf2/videobuf2-vmalloc.o
2025-10-02T16:15:53.4317755Z CC [M] drivers/net/ethernet/qlogic/qede/qede_ptp.o
2025-10-02T16:15:53.8231577Z CC [M] drivers/media/common/videobuf2/videobuf2-dma-contig.o
2025-10-02T16:15:53.9710127Z CC [M] drivers/net/ethernet/qlogic/qed/qed_ll2.o
2025-10-02T16:15:54.0481706Z CC [M] drivers/media/rc/rc-loopback.o
2025-10-02T16:15:54.4037365Z CC [M] drivers/net/ethernet/realtek/atp.o
2025-10-02T16:15:54.6786976Z CC [M] drivers/net/ethernet/qlogic/qede/qede_dcbnl.o
2025-10-02T16:15:54.7777955Z CC [M] drivers/media/rc/igorplugusb.o
2025-10-02T16:15:54.8397031Z CC [M] drivers/media/common/videobuf2/videobuf2-dma-sg.o
2025-10-02T16:15:55.6743694Z CC [M] drivers/media/rc/iguanair.o
2025-10-02T16:15:55.7010104Z CC [M] drivers/net/ethernet/qlogic/qede/qede_rdma.o
2025-10-02T16:15:55.7702937Z CC [M] drivers/media/common/videobuf2/videobuf2-dvb.o
2025-10-02T16:15:55.8584510Z CC [M] drivers/net/ethernet/realtek/r8169_main.o
2025-10-02T16:15:56.5329141Z CC [M] drivers/media/rc/ttusbir.o
2025-10-02T16:15:56.7327823Z CC [M] drivers/net/ethernet/qlogic/qed/qed_ooo.o
2025-10-02T16:15:57.0278379Z LD [M] drivers/media/common/videobuf2/videobuf2-common.o
2025-10-02T16:15:57.1381150Z LD [M] drivers/net/ethernet/qlogic/qede/qede.o
2025-10-02T16:15:57.1426146Z CC [M] drivers/media/common/cx2341x.o
2025-10-02T16:15:57.2291924Z CC drivers/power/reset/mt6323-poweroff.o
2025-10-02T16:15:57.4920218Z CC [M] drivers/media/rc/serial_ir.o
2025-10-02T16:15:57.8089987Z CC drivers/power/reset/restart-poweroff.o
2025-10-02T16:15:57.9848564Z CC [M] drivers/net/ethernet/qlogic/qed/qed_iwarp.o
2025-10-02T16:15:58.2953627Z AR drivers/power/reset/built-in.a
2025-10-02T16:15:58.3514894Z CC drivers/power/supply/power_supply_core.o
2025-10-02T16:15:58.6295174Z CC [M] drivers/media/common/tveeprom.o
2025-10-02T16:15:58.6307762Z CC [M] drivers/media/rc/sir_ir.o
2025-10-02T16:15:59.2945964Z CC drivers/power/supply/power_supply_sysfs.o
2025-10-02T16:15:59.5047631Z CC [M] drivers/media/rc/xbox_remote.o
2025-10-02T16:15:59.5644103Z CC [M] drivers/net/ethernet/realtek/r8169_firmware.o
2025-10-02T16:15:59.6832868Z CC [M] drivers/media/common/cypress_firmware.o
2025-10-02T16:15:59.9196939Z CC drivers/power/supply/power_supply_leds.o
2025-10-02T16:16:00.2267854Z AR drivers/media/common/built-in.a
2025-10-02T16:16:00.2758457Z CC [M] drivers/net/ethernet/realtek/r8169_phy_config.o
2025-10-02T16:16:00.2899978Z CC [M] drivers/net/ethernet/qlogic/qed/qed_rdma.o
2025-10-02T16:16:00.3703906Z CC drivers/power/supply/power_supply_hwmon.o
2025-10-02T16:16:00.3951172Z CC [M] drivers/media/rc/ir_toy.o
2025-10-02T16:16:00.8930094Z AR drivers/media/rc/built-in.a
2025-10-02T16:16:00.9444004Z AR drivers/net/ethernet/renesas/built-in.a
2025-10-02T16:16:00.9657100Z CC drivers/power/supply/charger-manager.o
2025-10-02T16:16:00.9777550Z CC [M] drivers/power/supply/generic-adc-battery.o
2025-10-02T16:16:01.4073543Z AR drivers/media/platform/cadence/built-in.a
2025-10-02T16:16:01.4180310Z CC [M] drivers/media/platform/cadence/cdns-csi2rx.o
2025-10-02T16:16:01.5232584Z LD [M] drivers/net/ethernet/realtek/r8169.o
2025-10-02T16:16:01.5825496Z AR drivers/media/platform/ti-vpe/built-in.a
2025-10-02T16:16:01.6221517Z CC [M] drivers/net/netdevsim/netdev.o
2025-10-02T16:16:01.9072092Z CC [M] drivers/net/ethernet/qlogic/qed/qed_roce.o
2025-10-02T16:16:02.3003377Z CC [M] drivers/media/platform/cadence/cdns-csi2tx.o
2025-10-02T16:16:02.5958601Z CC [M] drivers/power/supply/pda_power.o
2025-10-02T16:16:02.7642184Z CC [M] drivers/power/supply/axp20x_usb_power.o
2025-10-02T16:16:02.7845232Z CC [M] drivers/net/netdevsim/dev.o
2025-10-02T16:16:03.3991087Z AR drivers/media/platform/stm32/built-in.a
2025-10-02T16:16:03.4380984Z AR drivers/media/platform/davinci/built-in.a
2025-10-02T16:16:03.4484389Z CC [M] drivers/net/ethernet/qlogic/qed/qed_sriov.o
2025-10-02T16:16:03.4685455Z AR drivers/media/platform/omap/built-in.a
2025-10-02T16:16:03.5186430Z CC [M] drivers/power/supply/max8925_power.o
2025-10-02T16:16:03.5400160Z AR drivers/media/platform/sunxi/sun4i-csi/built-in.a
2025-10-02T16:16:03.5451601Z CC [M] drivers/hwmon/pmbus/pmbus_core.o
2025-10-02T16:16:03.6132034Z AR drivers/media/platform/sunxi/sun6i-csi/built-in.a
2025-10-02T16:16:03.6901076Z AR drivers/media/platform/sunxi/sun8i-di/built-in.a
2025-10-02T16:16:03.7630550Z AR drivers/media/platform/sunxi/sun8i-rotate/built-in.a
2025-10-02T16:16:03.8055686Z AR drivers/media/platform/sunxi/built-in.a
2025-10-02T16:16:03.8941893Z CC [M] drivers/media/platform/marvell-ccic/cafe-driver.o
2025-10-02T16:16:04.2963213Z CC [M] drivers/power/supply/wm831x_backup.o
2025-10-02T16:16:04.5719455Z CC [M] drivers/net/netdevsim/ethtool.o
2025-10-02T16:16:04.8675951Z CC [M] drivers/media/platform/marvell-ccic/mcam-core.o
2025-10-02T16:16:04.8949164Z CC [M] drivers/power/supply/wm831x_power.o
2025-10-02T16:16:05.3790302Z CC [M] drivers/hwmon/pmbus/pmbus.o
2025-10-02T16:16:05.7857849Z CC [M] drivers/net/netdevsim/fib.o
2025-10-02T16:16:05.8080269Z CC [M] drivers/power/supply/wm8350_power.o
2025-10-02T16:16:06.2061136Z CC [M] drivers/hwmon/pmbus/adm1266.o
2025-10-02T16:16:06.6371925Z LD [M] drivers/media/platform/marvell-ccic/cafe_ccic.o
2025-10-02T16:16:06.7100962Z AR drivers/media/platform/built-in.a
2025-10-02T16:16:06.7284404Z CC [M] drivers/media/platform/aspeed-video.o
2025-10-02T16:16:06.9757371Z CC [M] drivers/power/supply/test_power.o
2025-10-02T16:16:07.1651824Z CC [M] drivers/net/ethernet/qlogic/qed/qed_vf.o
2025-10-02T16:16:07.2852690Z CC [M] drivers/hwmon/pmbus/adm1275.o
2025-10-02T16:16:07.5025966Z CC [M] drivers/power/supply/88pm860x_battery.o
2025-10-02T16:16:07.6613763Z CC [M] drivers/media/platform/m2m-deinterlace.o
2025-10-02T16:16:07.8835570Z CC [M] drivers/net/netdevsim/bus.o
2025-10-02T16:16:08.4137980Z CC [M] drivers/hwmon/pmbus/bel-pfe.o
2025-10-02T16:16:08.4847536Z CC [M] drivers/power/supply/adp5061.o
2025-10-02T16:16:08.8713660Z LD [M] drivers/net/ethernet/qlogic/qed/qed.o
2025-10-02T16:16:09.0716946Z AR drivers/net/ethernet/qlogic/built-in.a
2025-10-02T16:16:09.0820197Z CC [M] drivers/net/ethernet/qlogic/qla3xxx.o
2025-10-02T16:16:09.1126983Z CC [M] drivers/power/supply/axp20x_battery.o
2025-10-02T16:16:09.1247628Z CC [M] drivers/net/netdevsim/health.o
2025-10-02T16:16:09.1342831Z AR drivers/media/pci/ttpci/built-in.a
2025-10-02T16:16:09.1445666Z CC [M] drivers/media/pci/ttpci/ttpci-eeprom.o
2025-10-02T16:16:09.1770329Z CC [M] drivers/hwmon/pmbus/ibm-cffps.o
2025-10-02T16:16:09.8045853Z CC [M] drivers/power/supply/axp20x_ac_power.o
2025-10-02T16:16:10.1105870Z CC [M] drivers/media/pci/ttpci/budget-core.o
2025-10-02T16:16:10.1633098Z CC [M] drivers/hwmon/pmbus/inspur-ipsps.o
2025-10-02T16:16:10.4419974Z CC [M] drivers/power/supply/cw2015_battery.o
2025-10-02T16:16:10.6070631Z CC [M] drivers/net/netdevsim/udp_tunnels.o
2025-10-02T16:16:11.1844847Z CC [M] drivers/hwmon/pmbus/ir35221.o
2025-10-02T16:16:11.2421127Z CC [M] drivers/media/pci/ttpci/budget.o
2025-10-02T16:16:11.2691424Z CC [M] drivers/power/supply/ds2760_battery.o
2025-10-02T16:16:11.8765644Z CC [M] drivers/net/netdevsim/bpf.o
2025-10-02T16:16:12.0386335Z AR drivers/net/ethernet/rdc/built-in.a
2025-10-02T16:16:12.0634521Z CC [M] drivers/net/ethernet/rdc/r6040.o
2025-10-02T16:16:12.0962354Z CC [M] drivers/hwmon/pmbus/ir38064.o
2025-10-02T16:16:12.3038730Z CC [M] drivers/power/supply/ds2780_battery.o
2025-10-02T16:16:12.6686524Z CC [M] drivers/media/pci/ttpci/budget-av.o
2025-10-02T16:16:12.9024545Z CC [M] drivers/power/supply/ds2781_battery.o
2025-10-02T16:16:13.2353116Z CC [M] drivers/hwmon/pmbus/irps5401.o
2025-10-02T16:16:13.4026002Z CC [M] drivers/net/netdevsim/ipsec.o
2025-10-02T16:16:13.5363367Z AR drivers/net/ethernet/rocker/built-in.a
2025-10-02T16:16:13.5573460Z CC [M] drivers/net/ethernet/rocker/rocker_main.o
2025-10-02T16:16:13.6381179Z CC [M] drivers/power/supply/ds2782_battery.o
2025-10-02T16:16:14.0073081Z CC [M] drivers/hwmon/pmbus/isl68137.o
2025-10-02T16:16:14.0107258Z CC [M] drivers/media/pci/ttpci/budget-ci.o
2025-10-02T16:16:14.4583986Z CC [M] drivers/power/supply/ltc2941-battery-gauge.o
2025-10-02T16:16:14.8425453Z CC [M] drivers/hwmon/pmbus/lm25066.o
2025-10-02T16:16:14.8591123Z LD [M] drivers/net/netdevsim/netdevsim.o
2025-10-02T16:16:14.9261676Z CC [M] drivers/net/ethernet/rocker/rocker_tlv.o
2025-10-02T16:16:15.1949890Z CC [M] drivers/power/supply/sbs-battery.o
2025-10-02T16:16:15.6260149Z CC [M] drivers/media/pci/ttpci/budget-patch.o
2025-10-02T16:16:15.8340401Z CC [M] drivers/hwmon/pmbus/ltc2978.o
2025-10-02T16:16:16.0402579Z AR drivers/media/pci/b2c2/built-in.a
2025-10-02T16:16:16.0517420Z CC [M] drivers/media/pci/b2c2/flexcop-dma.o
2025-10-02T16:16:16.4271688Z CC [M] drivers/power/supply/sbs-charger.o
2025-10-02T16:16:16.4523320Z CC [M] drivers/net/ethernet/rocker/rocker_ofdpa.o
2025-10-02T16:16:16.9876501Z CC [M] drivers/media/pci/ttpci/av7110_hw.o
2025-10-02T16:16:17.0084529Z CC [M] drivers/media/pci/b2c2/flexcop-pci.o
2025-10-02T16:16:17.0206308Z CC [M] drivers/hwmon/pmbus/ltc3815.o
2025-10-02T16:16:17.0677996Z CC [M] drivers/power/supply/sbs-manager.o
2025-10-02T16:16:17.8544003Z CC [M] drivers/power/supply/bq27xxx_battery.o
2025-10-02T16:16:18.0500937Z LD [M] drivers/media/pci/b2c2/b2c2-flexcop-pci.o
2025-10-02T16:16:18.0900238Z CC [M] drivers/hwmon/pmbus/max16064.o
2025-10-02T16:16:18.1491666Z AR drivers/thermal/broadcom/built-in.a
2025-10-02T16:16:18.2222791Z AR drivers/thermal/samsung/built-in.a
2025-10-02T16:16:18.3270850Z CC [M] drivers/thermal/intel/int340x_thermal/int3400_thermal.o
2025-10-02T16:16:18.8120927Z CC [M] drivers/media/pci/ttpci/av7110_v4l.o
2025-10-02T16:16:18.8750321Z CC [M] drivers/power/supply/bq27xxx_battery_i2c.o
2025-10-02T16:16:19.0518349Z LD [M] drivers/net/ethernet/rocker/rocker.o
2025-10-02T16:16:19.0590536Z CC [M] drivers/hwmon/pmbus/max16601.o
2025-10-02T16:16:19.1210231Z CC [M] drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.o
2025-10-02T16:16:19.1542568Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_platform.o
2025-10-02T16:16:19.7190720Z CC [M] drivers/power/supply/bq27xxx_battery_hdq.o
2025-10-02T16:16:19.8264177Z CC [M] drivers/thermal/intel/int340x_thermal/int3402_thermal.o
2025-10-02T16:16:19.8911147Z CC [M] drivers/hwmon/pmbus/max20730.o
2025-10-02T16:16:19.9653255Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_main.o
2025-10-02T16:16:20.3343551Z CC [M] drivers/power/supply/da9030_battery.o
2025-10-02T16:16:20.3792955Z CC [M] drivers/media/pci/ttpci/av7110_av.o
2025-10-02T16:16:20.4412433Z CC [M] drivers/thermal/intel/int340x_thermal/int3403_thermal.o
2025-10-02T16:16:20.9897225Z CC [M] drivers/power/supply/da9052-battery.o
2025-10-02T16:16:21.0215022Z CC [M] drivers/hwmon/pmbus/max20751.o
2025-10-02T16:16:21.0533530Z CC [M] drivers/thermal/intel/int340x_thermal/processor_thermal_device.o
2025-10-02T16:16:21.8666809Z CC [M] drivers/power/supply/da9150-charger.o
2025-10-02T16:16:21.9639336Z CC [M] drivers/hwmon/pmbus/max31785.o
2025-10-02T16:16:22.0196194Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_desc.o
2025-10-02T16:16:22.0267613Z CC [M] drivers/thermal/intel/int340x_thermal/int3406_thermal.o
2025-10-02T16:16:22.6007330Z CC [M] drivers/media/pci/ttpci/av7110_ca.o
2025-10-02T16:16:22.7607540Z CC [M] drivers/power/supply/da9150-fg.o
2025-10-02T16:16:22.7827057Z CC [M] drivers/hwmon/pmbus/max34440.o
2025-10-02T16:16:22.9012279Z CC [M] drivers/thermal/intel/int340x_thermal/acpi_thermal_rel.o
2025-10-02T16:16:22.9197707Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_dma.o
2025-10-02T16:16:23.5316871Z CC [M] drivers/power/supply/max17040_battery.o
2025-10-02T16:16:23.7104216Z AR drivers/thermal/intel/built-in.a
2025-10-02T16:16:23.7218407Z CC [M] drivers/thermal/intel/intel_powerclamp.o
2025-10-02T16:16:23.7465115Z CC [M] drivers/hwmon/pmbus/max8688.o
2025-10-02T16:16:23.7692913Z CC [M] drivers/media/pci/ttpci/av7110.o
2025-10-02T16:16:23.9975074Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_core.o
2025-10-02T16:16:24.3021704Z CC [M] drivers/power/supply/max17042_battery.o
2025-10-02T16:16:24.5747080Z CC [M] drivers/hwmon/pmbus/mp2975.o
2025-10-02T16:16:24.6134868Z CC [M] drivers/thermal/intel/x86_pkg_temp_thermal.o
2025-10-02T16:16:24.8493709Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_mtl.o
2025-10-02T16:16:25.1223702Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_mdio.o
2025-10-02T16:16:25.2788904Z CC [M] drivers/thermal/intel/intel_soc_dts_iosf.o
2025-10-02T16:16:25.6272213Z CC [M] drivers/power/supply/max1721x_battery.o
2025-10-02T16:16:25.8183287Z CC [M] drivers/hwmon/pmbus/pxe1610.o
2025-10-02T16:16:25.8959017Z CC [M] drivers/thermal/intel/intel_soc_dts_thermal.o
2025-10-02T16:16:26.0771470Z CC [M] drivers/net/ethernet/samsung/sxgbe/sxgbe_ethtool.o
2025-10-02T16:16:26.2823007Z CC [M] drivers/power/supply/rt5033_battery.o
2025-10-02T16:16:26.3697288Z CC [M] drivers/thermal/intel/intel_bxt_pmic_thermal.o
2025-10-02T16:16:26.3733435Z CC [M] drivers/media/pci/ttpci/av7110_ipack.o
2025-10-02T16:16:26.7033922Z CC [M] drivers/hwmon/pmbus/tps40422.o
2025-10-02T16:16:26.9796649Z CC [M] drivers/media/pci/ttpci/dvb_filter.o
2025-10-02T16:16:26.9940108Z CC [M] drivers/thermal/intel/intel_pch_thermal.o
2025-10-02T16:16:27.1324366Z CC [M] drivers/power/supply/rt9455_charger.o
2025-10-02T16:16:27.1811533Z LD [M] drivers/net/ethernet/samsung/sxgbe/samsung-sxgbe.o
2025-10-02T16:16:27.2670830Z AR drivers/net/ethernet/samsung/built-in.a
2025-10-02T16:16:27.3315989Z AR drivers/net/ethernet/seeq/built-in.a
2025-10-02T16:16:27.4048461Z AR drivers/net/ethernet/silan/built-in.a
2025-10-02T16:16:27.4198938Z CC [M] drivers/net/ethernet/silan/sc92031.o
2025-10-02T16:16:27.4283684Z CC [M] drivers/media/pci/ttpci/av7110_ir.o
2025-10-02T16:16:27.5199164Z CC [M] drivers/hwmon/pmbus/tps53679.o
2025-10-02T16:16:27.9321861Z AR drivers/thermal/st/built-in.a
2025-10-02T16:16:28.0051622Z AR drivers/thermal/tegra/built-in.a
2025-10-02T16:16:28.0489104Z CC drivers/thermal/thermal_core.o
2025-10-02T16:16:28.2747643Z CC [M] drivers/power/supply/twl4030_madc_battery.o
2025-10-02T16:16:28.4338797Z CC [M] drivers/hwmon/pmbus/ucd9000.o
2025-10-02T16:16:28.5325533Z LD [M] drivers/media/pci/ttpci/dvb-ttpci.o
2025-10-02T16:16:28.6667060Z AR drivers/media/pci/pluto2/built-in.a
2025-10-02T16:16:28.6858952Z CC [M] drivers/media/pci/pluto2/pluto2.o
2025-10-02T16:16:28.8234621Z CC [M] drivers/power/supply/88pm860x_charger.o
2025-10-02T16:16:28.9572002Z AR drivers/net/ethernet/sis/built-in.a
2025-10-02T16:16:28.9799332Z CC [M] drivers/net/ethernet/sis/sis190.o
2025-10-02T16:16:29.4356079Z CC [M] drivers/hwmon/pmbus/ucd9200.o
2025-10-02T16:16:29.5451096Z CC [M] drivers/power/supply/pcf50633-charger.o
2025-10-02T16:16:30.1394014Z CC drivers/thermal/thermal_sysfs.o
2025-10-02T16:16:30.2041580Z AR drivers/media/pci/dm1105/built-in.a
2025-10-02T16:16:30.2156408Z CC [M] drivers/media/pci/dm1105/dm1105.o
2025-10-02T16:16:30.2539426Z CC [M] drivers/hwmon/pmbus/xdpe12284.o
2025-10-02T16:16:30.6800015Z CC [M] drivers/power/supply/rx51_battery.o
2025-10-02T16:16:30.9025509Z CC drivers/thermal/thermal_helpers.o
2025-10-02T16:16:31.1281163Z CC [M] drivers/hwmon/pmbus/zl6100.o
2025-10-02T16:16:31.2054711Z CC [M] drivers/net/ethernet/sis/sis900.o
2025-10-02T16:16:31.2937264Z CC [M] drivers/power/supply/isp1704_charger.o
2025-10-02T16:16:31.3826029Z CC drivers/thermal/thermal_netlink.o
2025-10-02T16:16:32.0021306Z AR drivers/media/pci/pt1/built-in.a
2025-10-02T16:16:32.0130809Z CC [M] drivers/media/pci/pt1/pt1.o
2025-10-02T16:16:32.2928505Z CC [M] drivers/power/supply/max8903_charger.o
2025-10-02T16:16:32.4421292Z CC drivers/thermal/thermal_hwmon.o
2025-10-02T16:16:32.5948399Z CC drivers/hwmon/hwmon.o
2025-10-02T16:16:33.0291083Z CC drivers/thermal/gov_fair_share.o
2025-10-02T16:16:33.0406557Z CC [M] drivers/net/ethernet/sfc/falcon/efx.o
2025-10-02T16:16:33.0703565Z CC [M] drivers/power/supply/twl4030_charger.o
2025-10-02T16:16:33.5238713Z CC drivers/thermal/gov_bang_bang.o
2025-10-02T16:16:33.7327796Z LD [M] drivers/media/pci/pt1/earth-pt1.o
2025-10-02T16:16:33.8271679Z AR drivers/media/pci/pt3/built-in.a
2025-10-02T16:16:33.8474247Z CC [M] drivers/media/pci/pt3/pt3.o
2025-10-02T16:16:33.9951839Z CC [M] drivers/hwmon/hwmon-vid.o
2025-10-02T16:16:34.0842750Z CC drivers/thermal/gov_step_wise.o
2025-10-02T16:16:34.3313437Z CC [M] drivers/power/supply/lp8727_charger.o
2025-10-02T16:16:34.4608285Z CC [M] drivers/hwmon/acpi_power_meter.o
2025-10-02T16:16:34.6362145Z CC drivers/thermal/gov_user_space.o
2025-10-02T16:16:34.9941536Z CC [M] drivers/media/pci/pt3/pt3_i2c.o
2025-10-02T16:16:35.0354391Z CC drivers/thermal/gov_power_allocator.o
2025-10-02T16:16:35.1559979Z CC [M] drivers/power/supply/lp8788-charger.o
2025-10-02T16:16:35.3432035Z CC [M] drivers/hwmon/asus_atk0110.o
2025-10-02T16:16:36.0456158Z CC [M] drivers/media/pci/pt3/pt3_dma.o
2025-10-02T16:16:36.1988185Z CC drivers/thermal/devfreq_cooling.o
2025-10-02T16:16:36.2415561Z CC [M] drivers/power/supply/gpio-charger.o
2025-10-02T16:16:36.3932963Z CC [M] drivers/hwmon/asb100.o
2025-10-02T16:16:36.5304780Z CC [M] drivers/net/ethernet/sfc/falcon/nic.o
2025-10-02T16:16:36.7551485Z LD [M] drivers/media/pci/pt3/earth-pt3.o
2025-10-02T16:16:36.7847012Z CC [M] drivers/power/supply/lt3651-charger.o
2025-10-02T16:16:36.8016626Z AR drivers/media/pci/mantis/built-in.a
2025-10-02T16:16:36.8138630Z CC [M] drivers/media/pci/mantis/mantis_ioc.o
2025-10-02T16:16:36.9950727Z CC [M] drivers/thermal/thermal-generic-adc.o
2025-10-02T16:16:37.4189224Z CC [M] drivers/power/supply/max14577_charger.o
2025-10-02T16:16:37.4426606Z CC [M] drivers/hwmon/w83627hf.o
2025-10-02T16:16:37.5757956Z AR drivers/thermal/built-in.a
2025-10-02T16:16:37.6352194Z CC [M] drivers/power/supply/max77693_charger.o
2025-10-02T16:16:37.7159131Z CC [M] drivers/media/pci/mantis/mantis_uart.o
2025-10-02T16:16:37.9801062Z CC [M] drivers/net/ethernet/sfc/falcon/farch.o
2025-10-02T16:16:38.4209958Z CC [M] drivers/hwmon/w83773g.o
2025-10-02T16:16:38.5214478Z CC [M] drivers/power/supply/max8997_charger.o
2025-10-02T16:16:38.7512499Z CC [M] drivers/media/pci/mantis/mantis_dma.o
2025-10-02T16:16:38.9130257Z AR drivers/media/pci/ngene/built-in.a
2025-10-02T16:16:38.9399756Z CC [M] drivers/media/pci/ngene/ngene-core.o
2025-10-02T16:16:38.9965299Z CC [M] drivers/hwmon/w83792d.o
2025-10-02T16:16:39.3960593Z CC [M] drivers/power/supply/max8998_charger.o
2025-10-02T16:16:39.9074736Z CC [M] drivers/media/pci/mantis/mantis_pci.o
2025-10-02T16:16:40.1821101Z CC [M] drivers/power/supply/mp2629_charger.o
2025-10-02T16:16:40.2365404Z CC [M] drivers/hwmon/w83793.o
2025-10-02T16:16:40.7718142Z CC [M] drivers/media/pci/ngene/ngene-i2c.o
2025-10-02T16:16:40.8646382Z CC [M] drivers/net/ethernet/sfc/falcon/falcon.o
2025-10-02T16:16:40.9716764Z CC [M] drivers/power/supply/bq2415x_charger.o
2025-10-02T16:16:41.0775324Z CC [M] drivers/media/pci/mantis/mantis_i2c.o
2025-10-02T16:16:41.7851270Z CC [M] drivers/media/pci/ngene/ngene-cards.o
2025-10-02T16:16:41.9202826Z CC [M] drivers/hwmon/w83795.o
2025-10-02T16:16:42.3691275Z CC [M] drivers/power/supply/bq24190_charger.o
2025-10-02T16:16:42.4718610Z CC [M] drivers/media/pci/mantis/mantis_dvb.o
2025-10-02T16:16:43.4237001Z CC [M] drivers/media/pci/ngene/ngene-dvb.o
2025-10-02T16:16:43.4425704Z CC [M] drivers/hwmon/w83781d.o
2025-10-02T16:16:43.7225881Z CC [M] drivers/media/pci/mantis/mantis_evm.o
2025-10-02T16:16:43.7686318Z CC [M] drivers/net/ethernet/sfc/falcon/tx.o
2025-10-02T16:16:43.9322115Z CC [M] drivers/power/supply/bq24257_charger.o
2025-10-02T16:16:44.4260390Z LD [M] drivers/media/pci/ngene/ngene.o
2025-10-02T16:16:44.4679116Z CC drivers/net/Space.o
2025-10-02T16:16:44.7128920Z CC [M] drivers/hwmon/w83791d.o
2025-10-02T16:16:44.8334186Z CC [M] drivers/power/supply/bq24735-charger.o
2025-10-02T16:16:44.8796156Z CC [M] drivers/media/pci/mantis/mantis_hif.o
2025-10-02T16:16:45.1861047Z AR drivers/net/ethernet/sfc/built-in.a
2025-10-02T16:16:45.2287224Z AR drivers/media/usb/ttusb-dec/built-in.a
2025-10-02T16:16:45.2406981Z CC [M] drivers/media/usb/ttusb-dec/ttusb_dec.o
2025-10-02T16:16:45.4891204Z CC [M] drivers/power/supply/bq2515x_charger.o
2025-10-02T16:16:45.8250963Z CC [M] drivers/hwmon/abituguru.o
2025-10-02T16:16:45.8346529Z CC [M] drivers/net/ethernet/sfc/falcon/rx.o
2025-10-02T16:16:46.1624595Z CC [M] drivers/power/supply/bq25890_charger.o
2025-10-02T16:16:46.2299116Z CC [M] drivers/media/pci/mantis/mantis_ca.o
2025-10-02T16:16:46.9581772Z CC [M] drivers/media/usb/ttusb-dec/ttusbdecfe.o
2025-10-02T16:16:47.1193710Z CC [M] drivers/hwmon/abituguru3.o
2025-10-02T16:16:47.2823437Z CC [M] drivers/power/supply/bq25980_charger.o
2025-10-02T16:16:47.4742614Z CC [M] drivers/media/pci/mantis/mantis_pcmcia.o
2025-10-02T16:16:47.6498377Z AR drivers/media/usb/ttusb-budget/built-in.a
2025-10-02T16:16:47.6602205Z CC [M] drivers/media/usb/ttusb-budget/dvb-ttusb-budget.o
2025-10-02T16:16:47.6721865Z CC [M] drivers/net/ethernet/sfc/falcon/selftest.o
2025-10-02T16:16:47.9847968Z CC [M] drivers/hwmon/ad7314.o
2025-10-02T16:16:48.0702804Z CC [M] drivers/power/supply/smb347-charger.o
2025-10-02T16:16:48.6869238Z CC [M] drivers/media/pci/mantis/mantis_input.o
2025-10-02T16:16:48.7788679Z CC [M] drivers/hwmon/ad7414.o
2025-10-02T16:16:49.0498820Z CC [M] drivers/power/supply/tps65090-charger.o
2025-10-02T16:16:49.3049434Z AR drivers/media/usb/dvb-usb/built-in.a
2025-10-02T16:16:49.3249434Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-firmware.o
2025-10-02T16:16:49.3722691Z CC [M] drivers/hwmon/ad7418.o
2025-10-02T16:16:49.4799077Z CC [M] drivers/net/ethernet/sfc/falcon/ethtool.o
2025-10-02T16:16:49.7521734Z CC [M] drivers/media/pci/mantis/mantis_cards.o
2025-10-02T16:16:49.8261577Z CC [M] drivers/power/supply/axp288_fuel_gauge.o
2025-10-02T16:16:50.0554797Z CC [M] drivers/hwmon/adc128d818.o
2025-10-02T16:16:50.3510845Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-init.o
2025-10-02T16:16:50.8712330Z CC [M] drivers/power/supply/axp288_charger.o
2025-10-02T16:16:50.8807241Z CC [M] drivers/media/pci/mantis/mantis_vp1033.o
2025-10-02T16:16:51.0226029Z CC [M] drivers/hwmon/adcxx.o
2025-10-02T16:16:51.1939456Z CC [M] drivers/net/ethernet/sfc/falcon/qt202x_phy.o
2025-10-02T16:16:51.5950037Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-urb.o
2025-10-02T16:16:51.7618688Z CC [M] drivers/hwmon/adm1021.o
2025-10-02T16:16:51.9175651Z CC [M] drivers/power/supply/cros_usbpd-charger.o
2025-10-02T16:16:51.9526522Z CC [M] drivers/media/pci/mantis/mantis_vp1034.o
2025-10-02T16:16:52.5382504Z CC [M] drivers/hwmon/adm1025.o
2025-10-02T16:16:52.6091542Z CC [M] drivers/power/supply/bd99954-charger.o
2025-10-02T16:16:52.6149767Z CC [M] drivers/net/ethernet/sfc/falcon/mdio_10g.o
2025-10-02T16:16:52.7646176Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-i2c.o
2025-10-02T16:16:52.9859417Z CC [M] drivers/media/pci/mantis/mantis_vp1041.o
2025-10-02T16:16:53.4061270Z CC [M] drivers/hwmon/adm1026.o
2025-10-02T16:16:53.6011438Z CC [M] drivers/power/supply/wilco-charger.o
2025-10-02T16:16:53.6642469Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dvb.o
2025-10-02T16:16:53.9030344Z CC [M] drivers/net/ethernet/sfc/falcon/tenxpress.o
2025-10-02T16:16:53.9564230Z CC [M] drivers/media/pci/mantis/mantis_vp2033.o
2025-10-02T16:16:54.0304295Z AR drivers/power/supply/built-in.a
2025-10-02T16:16:54.3897005Z AR drivers/power/built-in.a
2025-10-02T16:16:54.4314002Z AR drivers/media/pci/ddbridge/built-in.a
2025-10-02T16:16:54.4428903Z CC [M] drivers/media/pci/ddbridge/ddbridge-main.o
2025-10-02T16:16:54.7955768Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-remote.o
2025-10-02T16:16:55.1291843Z CC [M] drivers/media/pci/mantis/mantis_vp2040.o
2025-10-02T16:16:55.4186281Z CC [M] drivers/hwmon/adm1029.o
2025-10-02T16:16:55.4353694Z CC [M] drivers/net/ethernet/sfc/falcon/txc43128_phy.o
2025-10-02T16:16:55.5037908Z CC [M] drivers/media/pci/ddbridge/ddbridge-core.o
2025-10-02T16:16:55.9456549Z CC [M] drivers/hwmon/adm1031.o
2025-10-02T16:16:56.0561173Z CC [M] drivers/media/usb/dvb-usb/usb-urb.o
2025-10-02T16:16:56.1284746Z CC [M] drivers/media/pci/mantis/mantis_vp3030.o
2025-10-02T16:16:56.8242679Z CC [M] drivers/net/ethernet/sfc/falcon/falcon_boards.o
2025-10-02T16:16:56.8812497Z CC [M] drivers/hwmon/adm1177.o
2025-10-02T16:16:57.2084230Z CC [M] drivers/media/pci/mantis/hopper_cards.o
2025-10-02T16:16:57.2378585Z CC [M] drivers/media/usb/dvb-usb/vp7045.o
2025-10-02T16:16:57.7525821Z CC [M] drivers/hwmon/adm9240.o
2025-10-02T16:16:58.1894197Z CC [M] drivers/net/ethernet/sfc/falcon/mtd.o
2025-10-02T16:16:58.2890947Z CC [M] drivers/media/usb/dvb-usb/vp7045-fe.o
2025-10-02T16:16:58.3198147Z CC [M] drivers/media/pci/mantis/hopper_vp3028.o
2025-10-02T16:16:58.5211964Z CC [M] drivers/hwmon/ads7828.o
2025-10-02T16:16:58.9456555Z CC [M] drivers/media/pci/ddbridge/ddbridge-ci.o
2025-10-02T16:16:59.2348472Z LD [M] drivers/media/pci/mantis/mantis_core.o
2025-10-02T16:16:59.2753038Z LD [M] drivers/media/pci/mantis/mantis.o
2025-10-02T16:16:59.3028686Z LD [M] drivers/media/pci/mantis/hopper.o
2025-10-02T16:16:59.3581656Z AR drivers/net/ethernet/smsc/built-in.a
2025-10-02T16:16:59.3689117Z CC [M] drivers/net/ethernet/smsc/smc91c92_cs.o
2025-10-02T16:16:59.3718925Z CC [M] drivers/hwmon/ads7871.o
2025-10-02T16:16:59.5335078Z LD [M] drivers/net/ethernet/sfc/falcon/sfc-falcon.o
2025-10-02T16:16:59.5948417Z CC [M] drivers/media/usb/dvb-usb/vp702x.o
2025-10-02T16:16:59.6375580Z CC [M] drivers/net/ethernet/sfc/efx.o
2025-10-02T16:16:59.9873514Z CC [M] drivers/hwmon/adt7x10.o
2025-10-02T16:17:00.2132240Z CC [M] drivers/media/pci/ddbridge/ddbridge-hw.o
2025-10-02T16:17:00.7069994Z CC [M] drivers/hwmon/adt7310.o
2025-10-02T16:17:00.9488328Z CC [M] drivers/media/usb/dvb-usb/vp702x-fe.o
2025-10-02T16:17:01.1155266Z CC [M] drivers/net/ethernet/smsc/epic100.o
2025-10-02T16:17:01.1198719Z CC [M] drivers/media/pci/ddbridge/ddbridge-i2c.o
2025-10-02T16:17:01.2933825Z CC [M] drivers/hwmon/adt7410.o
2025-10-02T16:17:01.6753171Z CC [M] drivers/net/ethernet/sfc/efx_common.o
2025-10-02T16:17:01.7858772Z CC [M] drivers/hwmon/adt7411.o
2025-10-02T16:17:02.1509143Z CC [M] drivers/media/usb/dvb-usb/gp8psk.o
2025-10-02T16:17:02.2691429Z CC [M] drivers/media/pci/ddbridge/ddbridge-max.o
2025-10-02T16:17:02.5280345Z CC [M] drivers/net/ethernet/smsc/smsc9420.o
2025-10-02T16:17:02.8610117Z CC [M] drivers/hwmon/adt7462.o
2025-10-02T16:17:03.4564007Z CC [M] drivers/media/pci/ddbridge/ddbridge-mci.o
2025-10-02T16:17:03.5267320Z CC [M] drivers/media/usb/dvb-usb/dtt200u.o
2025-10-02T16:17:03.6351281Z CC [M] drivers/net/ethernet/sfc/efx_channels.o
2025-10-02T16:17:04.1533086Z CC [M] drivers/hwmon/adt7470.o
2025-10-02T16:17:04.3946823Z CC [M] drivers/net/ethernet/smsc/smsc911x.o
2025-10-02T16:17:04.6255977Z CC [M] drivers/media/pci/ddbridge/ddbridge-sx8.o
2025-10-02T16:17:04.6796327Z CC [M] drivers/media/usb/dvb-usb/dtt200u-fe.o
2025-10-02T16:17:05.5137547Z CC [M] drivers/net/ethernet/sfc/nic.o
2025-10-02T16:17:05.5847777Z CC [M] drivers/hwmon/adt7475.o
2025-10-02T16:17:05.6245689Z CC [M] drivers/media/usb/dvb-usb/dibusb-common.o
2025-10-02T16:17:05.7901027Z CC [M] drivers/media/pci/ddbridge/ddbridge-dummy-fe.o
2025-10-02T16:17:06.3813841Z LD [M] drivers/media/pci/ddbridge/ddbridge.o
2025-10-02T16:17:06.4503386Z AR drivers/media/pci/saa7146/built-in.a
2025-10-02T16:17:06.4603097Z CC [M] drivers/media/pci/saa7146/mxb.o
2025-10-02T16:17:06.6613436Z AR drivers/media/usb/dvb-usb-v2/built-in.a
2025-10-02T16:17:06.6737391Z CC [M] drivers/media/usb/dvb-usb-v2/dvb_usb_core.o
2025-10-02T16:17:06.9279299Z CC [M] drivers/media/usb/dvb-usb/dibusb-mc-common.o
2025-10-02T16:17:06.9744317Z CC [M] drivers/hwmon/amd_energy.o
2025-10-02T16:17:07.0776686Z CC [M] drivers/net/ethernet/sfc/farch.o
2025-10-02T16:17:07.6474430Z CC [M] drivers/hwmon/applesmc.o
2025-10-02T16:17:07.7001074Z CC [M] drivers/media/pci/saa7146/hexium_orion.o
2025-10-02T16:17:07.8780155Z CC [M] drivers/media/usb/dvb-usb/a800.o
2025-10-02T16:17:08.3087644Z CC [M] drivers/media/usb/dvb-usb-v2/dvb_usb_urb.o
2025-10-02T16:17:08.6939025Z CC [M] drivers/media/pci/saa7146/hexium_gemini.o
2025-10-02T16:17:08.7585846Z CC [M] drivers/hwmon/as370-hwmon.o
2025-10-02T16:17:08.9510830Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-common.o
2025-10-02T16:17:08.9659408Z CC [M] drivers/media/usb/dvb-usb/dibusb-mb.o
2025-10-02T16:17:09.1398581Z CC [M] drivers/hwmon/asc7621.o
2025-10-02T16:17:09.4159232Z CC [M] drivers/media/usb/dvb-usb-v2/usb_urb.o
2025-10-02T16:17:09.8582310Z AR drivers/media/pci/smipcie/built-in.a
2025-10-02T16:17:09.8698512Z CC [M] drivers/media/pci/smipcie/smipcie-main.o
2025-10-02T16:17:10.0555123Z CC [M] drivers/media/usb/dvb-usb/dibusb-mc.o
2025-10-02T16:17:10.2190773Z CC [M] drivers/hwmon/aspeed-pwm-tacho.o
2025-10-02T16:17:10.2829365Z CC [M] drivers/net/ethernet/sfc/siena.o
2025-10-02T16:17:10.6030230Z CC [M] drivers/media/usb/dvb-usb-v2/af9015.o
2025-10-02T16:17:10.7866815Z CC [M] drivers/hwmon/atxp1.o
2025-10-02T16:17:11.0977259Z CC [M] drivers/media/usb/dvb-usb/nova-t-usb2.o
2025-10-02T16:17:11.3541295Z CC [M] drivers/media/pci/smipcie/smipcie-ir.o
2025-10-02T16:17:11.4754659Z CC [M] drivers/hwmon/axi-fan-control.o
2025-10-02T16:17:11.8548298Z CC [M] drivers/net/ethernet/sfc/ef10.o
2025-10-02T16:17:12.0809365Z CC [M] drivers/hwmon/coretemp.o
2025-10-02T16:17:12.2711405Z LD [M] drivers/media/pci/smipcie/smipcie.o
2025-10-02T16:17:12.3164134Z AR drivers/media/pci/netup_unidvb/built-in.a
2025-10-02T16:17:12.3267420Z CC [M] drivers/media/pci/netup_unidvb/netup_unidvb_core.o
2025-10-02T16:17:12.3501516Z CC [M] drivers/media/usb/dvb-usb-v2/af9035.o
2025-10-02T16:17:12.4519153Z CC [M] drivers/media/usb/dvb-usb/umt-010.o
2025-10-02T16:17:13.0389911Z CC [M] drivers/hwmon/corsair-cpro.o
2025-10-02T16:17:13.5596242Z CC [M] drivers/media/usb/dvb-usb/m920x.o
2025-10-02T16:17:13.9179900Z CC [M] drivers/hwmon/da9052-hwmon.o
2025-10-02T16:17:13.9541313Z CC [M] drivers/media/pci/netup_unidvb/netup_unidvb_i2c.o
2025-10-02T16:17:14.2313164Z CC [M] drivers/media/usb/dvb-usb-v2/anysee.o
2025-10-02T16:17:14.8582671Z CC [M] drivers/media/usb/dvb-usb/digitv.o
2025-10-02T16:17:14.8887746Z CC [M] drivers/hwmon/da9055-hwmon.o
2025-10-02T16:17:15.0916170Z CC [M] drivers/net/ethernet/sfc/tx.o
2025-10-02T16:17:15.3591389Z CC [M] drivers/hwmon/dell-smm-hwmon.o
2025-10-02T16:17:15.3937784Z CC [M] drivers/media/pci/netup_unidvb/netup_unidvb_ci.o
2025-10-02T16:17:15.7517334Z CC [M] drivers/media/usb/dvb-usb-v2/au6610.o
2025-10-02T16:17:16.0611246Z CC [M] drivers/media/usb/dvb-usb/cxusb.o
2025-10-02T16:17:16.2836689Z CC [M] drivers/hwmon/dme1737.o
2025-10-02T16:17:16.4421019Z CC [M] drivers/media/pci/netup_unidvb/netup_unidvb_spi.o
2025-10-02T16:17:16.6481789Z CC [M] drivers/media/usb/dvb-usb-v2/az6007.o
2025-10-02T16:17:16.9151395Z CC [M] drivers/net/ethernet/sfc/tx_common.o
2025-10-02T16:17:17.4779356Z LD [M] drivers/media/pci/netup_unidvb/netup-unidvb.o
2025-10-02T16:17:17.6090931Z AR drivers/media/pci/intel/ipu3/built-in.a
2025-10-02T16:17:17.6327152Z CC [M] drivers/media/pci/intel/ipu3/ipu3-cio2.o
2025-10-02T16:17:18.0205286Z CC [M] drivers/media/usb/dvb-usb-v2/ce6230.o
2025-10-02T16:17:18.0875629Z CC [M] drivers/media/usb/dvb-usb/cxusb-analog.o
2025-10-02T16:17:18.1991265Z CC [M] drivers/hwmon/drivetemp.o
2025-10-02T16:17:18.5297073Z CC [M] drivers/net/ethernet/sfc/tx_tso.o
2025-10-02T16:17:19.0777137Z CC [M] drivers/media/usb/dvb-usb-v2/ec168.o
2025-10-02T16:17:19.1603691Z CC [M] drivers/hwmon/ds620.o
2025-10-02T16:17:19.2720635Z AR drivers/media/pci/intel/built-in.a
2025-10-02T16:17:19.3564243Z CC [M] drivers/media/pci/ivtv/ivtv-routing.o
2025-10-02T16:17:19.7268178Z CC [M] drivers/hwmon/ds1621.o
2025-10-02T16:17:19.8969394Z CC [M] drivers/net/ethernet/sfc/rx.o
2025-10-02T16:17:20.2038391Z CC [M] drivers/media/usb/dvb-usb/ttusb2.o
2025-10-02T16:17:20.2806433Z CC [M] drivers/media/pci/ivtv/ivtv-cards.o
2025-10-02T16:17:20.3382880Z CC [M] drivers/media/usb/dvb-usb-v2/lmedm04.o
2025-10-02T16:17:20.4067232Z CC [M] drivers/hwmon/emc1403.o
2025-10-02T16:17:21.0754407Z CC [M] drivers/media/pci/ivtv/ivtv-controls.o
2025-10-02T16:17:21.3817979Z CC [M] drivers/hwmon/emc2103.o
2025-10-02T16:17:21.4248829Z CC [M] drivers/net/ethernet/sfc/rx_common.o
2025-10-02T16:17:21.5160026Z CC [M] drivers/media/usb/dvb-usb/dib0700_core.o
2025-10-02T16:17:21.9837972Z CC [M] drivers/media/pci/ivtv/ivtv-driver.o
2025-10-02T16:17:22.0073221Z CC [M] drivers/media/usb/dvb-usb-v2/gl861.o
2025-10-02T16:17:22.0737988Z CC [M] drivers/hwmon/emc6w201.o
2025-10-02T16:17:22.8073298Z CC [M] drivers/hwmon/f71805f.o
2025-10-02T16:17:22.9402834Z CC [M] drivers/media/usb/dvb-usb/dib0700_devices.o
2025-10-02T16:17:23.2770318Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf.o
2025-10-02T16:17:23.4492602Z CC [M] drivers/media/pci/ivtv/ivtv-fileops.o
2025-10-02T16:17:23.6254891Z CC [M] drivers/net/ethernet/sfc/selftest.o
2025-10-02T16:17:24.0217998Z CC [M] drivers/hwmon/f71882fg.o
2025-10-02T16:17:24.8640084Z CC [M] drivers/media/usb/dvb-usb/opera1.o
2025-10-02T16:17:25.0512460Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-phy.o
2025-10-02T16:17:25.3510924Z CC [M] drivers/media/pci/ivtv/ivtv-firmware.o
2025-10-02T16:17:25.5035317Z CC [M] drivers/net/ethernet/sfc/ethtool.o
2025-10-02T16:17:25.6873736Z CC [M] drivers/hwmon/f75375s.o
2025-10-02T16:17:26.0282143Z CC [M] drivers/media/usb/dvb-usb/af9005.o
2025-10-02T16:17:26.2734257Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-i2c.o
2025-10-02T16:17:26.4953075Z CC [M] drivers/media/pci/ivtv/ivtv-gpio.o
2025-10-02T16:17:26.6422555Z CC [M] drivers/hwmon/fam15h_power.o
2025-10-02T16:17:26.8157579Z CC [M] drivers/net/ethernet/sfc/ethtool_common.o
2025-10-02T16:17:27.3434602Z CC [M] drivers/media/pci/ivtv/ivtv-i2c.o
2025-10-02T16:17:27.5035193Z CC [M] drivers/media/usb/dvb-usb/af9005-fe.o
2025-10-02T16:17:27.6965506Z CC [M] drivers/hwmon/fschmd.o
2025-10-02T16:17:27.7431084Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-gpio.o
2025-10-02T16:17:28.4238145Z CC [M] drivers/media/pci/ivtv/ivtv-ioctl.o
2025-10-02T16:17:28.8393752Z CC [M] drivers/hwmon/ftsteutates.o
2025-10-02T16:17:28.8937579Z CC [M] drivers/net/ethernet/sfc/ptp.o
2025-10-02T16:17:28.9097789Z CC [M] drivers/media/usb/dvb-usb/af9005-remote.o
2025-10-02T16:17:29.1617414Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-demod.o
2025-10-02T16:17:29.7373217Z CC [M] drivers/hwmon/g760a.o
2025-10-02T16:17:29.8769114Z CC [M] drivers/media/usb/dvb-usb/pctv452e.o
2025-10-02T16:17:30.2469216Z CC [M] drivers/media/pci/ivtv/ivtv-irq.o
2025-10-02T16:17:30.3277899Z CC [M] drivers/hwmon/g762.o
2025-10-02T16:17:30.6324232Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-tuner.o
2025-10-02T16:17:31.0783629Z CC [M] drivers/net/ethernet/sfc/mcdi.o
2025-10-02T16:17:31.1401273Z CC [M] drivers/media/usb/dvb-usb/dw2102.o
2025-10-02T16:17:31.1670720Z CC [M] drivers/hwmon/gl518sm.o
2025-10-02T16:17:31.6343341Z CC [M] drivers/media/pci/ivtv/ivtv-mailbox.o
2025-10-02T16:17:32.0791858Z CC [M] drivers/media/usb/dvb-usb-v2/rtl28xxu.o
2025-10-02T16:17:32.3032914Z CC [M] drivers/hwmon/gl520sm.o
2025-10-02T16:17:32.6014680Z CC [M] drivers/media/pci/ivtv/ivtv-queue.o
2025-10-02T16:17:33.0145615Z CC [M] drivers/media/usb/dvb-usb/dtv5100.o
2025-10-02T16:17:33.4010104Z CC [M] drivers/hwmon/hih6130.o
2025-10-02T16:17:33.6416339Z CC [M] drivers/media/pci/ivtv/ivtv-streams.o
2025-10-02T16:17:33.7225047Z CC [M] drivers/net/ethernet/sfc/mcdi_port.o
2025-10-02T16:17:33.9756996Z CC [M] drivers/hwmon/i5500_temp.o
2025-10-02T16:17:34.0434881Z CC [M] drivers/media/usb/dvb-usb-v2/dvbsky.o
2025-10-02T16:17:34.1586530Z CC [M] drivers/media/usb/dvb-usb/cinergyT2-core.o
2025-10-02T16:17:34.8654962Z CC [M] drivers/media/pci/ivtv/ivtv-udma.o
2025-10-02T16:17:34.8881858Z CC [M] drivers/hwmon/i5k_amb.o
2025-10-02T16:17:35.0067787Z CC [M] drivers/net/ethernet/sfc/mcdi_port_common.o
2025-10-02T16:17:35.2068648Z CC [M] drivers/media/usb/dvb-usb/cinergyT2-fe.o
2025-10-02T16:17:35.3696184Z CC [M] drivers/media/usb/dvb-usb-v2/zd1301.o
2025-10-02T16:17:35.7498221Z CC [M] drivers/media/pci/ivtv/ivtv-vbi.o
2025-10-02T16:17:35.8405803Z CC [M] drivers/hwmon/ibmaem.o
2025-10-02T16:17:36.3264650Z CC [M] drivers/media/usb/dvb-usb/az6027.o
2025-10-02T16:17:36.7270687Z LD [M] drivers/media/usb/dvb-usb-v2/dvb_usb_v2.o
2025-10-02T16:17:36.7650878Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-af9015.o
2025-10-02T16:17:36.7952709Z CC [M] drivers/hwmon/ibmpex.o
2025-10-02T16:17:36.7974477Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-af9035.o
2025-10-02T16:17:36.8256850Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-anysee.o
2025-10-02T16:17:36.8488350Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-au6610.o
2025-10-02T16:17:36.8657807Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-az6007.o
2025-10-02T16:17:36.8801441Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-ce6230.o
2025-10-02T16:17:36.8989986Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-ec168.o
2025-10-02T16:17:36.9126664Z CC [M] drivers/net/ethernet/sfc/mcdi_functions.o
2025-10-02T16:17:36.9202045Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-lmedm04.o
2025-10-02T16:17:36.9269687Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-gl861.o
2025-10-02T16:17:36.9400712Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-mxl111sf.o
2025-10-02T16:17:36.9783410Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-rtl28xxu.o
2025-10-02T16:17:36.9984469Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-dvbsky.o
2025-10-02T16:17:37.0052588Z CC [M] drivers/media/pci/ivtv/ivtv-yuv.o
2025-10-02T16:17:37.1606361Z AR drivers/media/mmc/siano/built-in.a
2025-10-02T16:17:37.1717180Z CC [M] drivers/media/mmc/siano/smssdio.o
2025-10-02T16:17:37.5737912Z CC [M] drivers/media/usb/dvb-usb/technisat-usb2.o
2025-10-02T16:17:37.6155567Z CC [M] drivers/hwmon/iio_hwmon.o
2025-10-02T16:17:37.9894088Z AR drivers/media/mmc/built-in.a
2025-10-02T16:17:38.0333710Z CC drivers/watchdog/watchdog_core.o
2025-10-02T16:17:38.2372202Z CC [M] drivers/hwmon/ina209.o
2025-10-02T16:17:38.2839262Z CC [M] drivers/net/ethernet/sfc/mcdi_filters.o
2025-10-02T16:17:38.5087496Z CC drivers/watchdog/watchdog_dev.o
2025-10-02T16:17:38.9690571Z CC [M] drivers/media/pci/ivtv/ivtv-alsa-main.o
2025-10-02T16:17:38.9710605Z LD [M] drivers/media/usb/dvb-usb/dvb-usb.o
2025-10-02T16:17:39.0030408Z CC [M] drivers/hwmon/ina2xx.o
2025-10-02T16:17:39.0148471Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-vp7045.o
2025-10-02T16:17:39.0478772Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-vp702x.o
2025-10-02T16:17:39.0808263Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-gp8psk.o
2025-10-02T16:17:39.1089072Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dtt200u.o
2025-10-02T16:17:39.1432712Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common.o
2025-10-02T16:17:39.1713419Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-a800.o
2025-10-02T16:17:39.1982921Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mb.o
2025-10-02T16:17:39.2270288Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc.o
2025-10-02T16:17:39.2519926Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.o
2025-10-02T16:17:39.2798264Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-umt-010.o
2025-10-02T16:17:39.3088181Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-m920x.o
2025-10-02T16:17:39.3323542Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-digitv.o
2025-10-02T16:17:39.3485850Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-cxusb.o
2025-10-02T16:17:39.3865792Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-ttusb2.o
2025-10-02T16:17:39.4131501Z CC drivers/watchdog/watchdog_pretimeout.o
2025-10-02T16:17:39.4195689Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dib0700.o
2025-10-02T16:17:39.4578263Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-opera.o
2025-10-02T16:17:39.4888649Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-af9005.o
2025-10-02T16:17:39.5291715Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-af9005-remote.o
2025-10-02T16:17:39.5537970Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-pctv452e.o
2025-10-02T16:17:39.5861766Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dw2102.o
2025-10-02T16:17:39.6171694Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dtv5100.o
2025-10-02T16:17:39.6420557Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-cinergyT2.o
2025-10-02T16:17:39.6771368Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-az6027.o
2025-10-02T16:17:39.6999350Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-technisat-usb2.o
2025-10-02T16:17:39.7458050Z CC [M] drivers/hwmon/ina3221.o
2025-10-02T16:17:39.7853667Z CC [M] drivers/media/pci/ivtv/ivtv-alsa-pcm.o
2025-10-02T16:17:39.9740882Z CC drivers/watchdog/pretimeout_panic.o
2025-10-02T16:17:39.9808640Z AR drivers/media/usb/siano/built-in.a
2025-10-02T16:17:39.9913445Z CC [M] drivers/media/usb/siano/smsusb.o
2025-10-02T16:17:40.5222399Z CC [M] drivers/watchdog/pretimeout_noop.o
2025-10-02T16:17:40.6256965Z CC [M] drivers/hwmon/intel-m10-bmc-hwmon.o
2025-10-02T16:17:40.7547320Z CC [M] drivers/media/pci/ivtv/ivtvfb.o
2025-10-02T16:17:40.9698379Z AR drivers/media/usb/b2c2/built-in.a
2025-10-02T16:17:40.9803776Z CC [M] drivers/media/usb/b2c2/flexcop-usb.o
2025-10-02T16:17:40.9844454Z CC [M] drivers/watchdog/pcwd_pci.o
2025-10-02T16:17:41.0910657Z CC [M] drivers/net/ethernet/sfc/mcdi_mon.o
2025-10-02T16:17:41.1765214Z CC [M] drivers/hwmon/it87.o
2025-10-02T16:17:41.8678604Z CC [M] drivers/watchdog/wdt_pci.o
2025-10-02T16:17:42.2288859Z LD [M] drivers/media/usb/b2c2/b2c2-flexcop-usb.o
2025-10-02T16:17:42.3220900Z AR drivers/media/usb/zr364xx/built-in.a
2025-10-02T16:17:42.3424164Z CC [M] drivers/media/usb/zr364xx/zr364xx.o
2025-10-02T16:17:42.4159992Z LD [M] drivers/media/pci/ivtv/ivtv.o
2025-10-02T16:17:42.4695641Z LD [M] drivers/media/pci/ivtv/ivtv-alsa.o
2025-10-02T16:17:42.5384127Z CC [M] drivers/media/pci/cx18/cx18-driver.o
2025-10-02T16:17:42.5900517Z CC [M] drivers/net/ethernet/sfc/ef100.o
2025-10-02T16:17:42.7192916Z CC [M] drivers/watchdog/pcwd_usb.o
2025-10-02T16:17:43.3034143Z CC [M] drivers/hwmon/jc42.o
2025-10-02T16:17:43.7308137Z CC [M] drivers/watchdog/cadence_wdt.o
2025-10-02T16:17:43.7576839Z AR drivers/media/usb/stkwebcam/built-in.a
2025-10-02T16:17:43.7711213Z CC [M] drivers/media/usb/stkwebcam/stk-webcam.o
2025-10-02T16:17:44.0002168Z CC [M] drivers/hwmon/k8temp.o
2025-10-02T16:17:44.0321444Z CC [M] drivers/net/ethernet/sfc/ef100_nic.o
2025-10-02T16:17:44.2496360Z CC [M] drivers/media/pci/cx18/cx18-cards.o
2025-10-02T16:17:44.3958371Z CC [M] drivers/watchdog/twl4030_wdt.o
2025-10-02T16:17:44.6206628Z CC [M] drivers/hwmon/k10temp.o
2025-10-02T16:17:45.0724926Z CC [M] drivers/watchdog/dw_wdt.o
2025-10-02T16:17:45.2155475Z CC [M] drivers/media/usb/stkwebcam/stk-sensor.o
2025-10-02T16:17:45.3283808Z CC [M] drivers/hwmon/lineage-pem.o
2025-10-02T16:17:45.5215129Z CC [M] drivers/media/pci/cx18/cx18-i2c.o
2025-10-02T16:17:45.7650354Z CC [M] drivers/watchdog/retu_wdt.o
2025-10-02T16:17:45.8850652Z CC [M] drivers/hwmon/lm63.o
2025-10-02T16:17:45.9799354Z CC [M] drivers/net/ethernet/sfc/ef100_netdev.o
2025-10-02T16:17:46.2050799Z CC [M] drivers/watchdog/acquirewdt.o
2025-10-02T16:17:46.2768140Z LD [M] drivers/media/usb/stkwebcam/stkwebcam.o
2025-10-02T16:17:46.3761712Z AR drivers/media/usb/s2255/built-in.a
2025-10-02T16:17:46.3983692Z CC [M] drivers/media/usb/s2255/s2255drv.o
2025-10-02T16:17:46.6869907Z CC [M] drivers/media/pci/cx18/cx18-firmware.o
2025-10-02T16:17:46.9285728Z CC [M] drivers/watchdog/advantechwdt.o
2025-10-02T16:17:47.0288567Z CC [M] drivers/hwmon/lm70.o
2025-10-02T16:17:47.0958620Z CC [M] drivers/net/ethernet/sfc/ef100_ethtool.o
2025-10-02T16:17:47.5030891Z CC [M] drivers/watchdog/alim1535_wdt.o
2025-10-02T16:17:47.7965457Z CC [M] drivers/hwmon/lm73.o
2025-10-02T16:17:48.1751022Z CC [M] drivers/media/pci/cx18/cx18-gpio.o
2025-10-02T16:17:48.2445653Z CC [M] drivers/watchdog/alim7101_wdt.o
2025-10-02T16:17:48.3789947Z CC [M] drivers/media/usb/uvc/uvc_driver.o
2025-10-02T16:17:48.4545951Z CC [M] drivers/net/ethernet/sfc/ef100_rx.o
2025-10-02T16:17:48.4988824Z CC [M] drivers/hwmon/lm75.o
2025-10-02T16:17:48.9332192Z CC [M] drivers/watchdog/ebc-c384_wdt.o
2025-10-02T16:17:49.3381282Z CC [M] drivers/watchdog/f71808e_wdt.o
2025-10-02T16:17:49.5032301Z CC [M] drivers/media/pci/cx18/cx18-queue.o
2025-10-02T16:17:49.5390114Z CC [M] drivers/hwmon/lm77.o
2025-10-02T16:17:49.6978257Z CC [M] drivers/net/ethernet/sfc/ef100_tx.o
2025-10-02T16:17:50.1697048Z CC [M] drivers/watchdog/sp5100_tco.o
2025-10-02T16:17:50.3273927Z CC [M] drivers/hwmon/lm78.o
2025-10-02T16:17:50.5980470Z CC [M] drivers/media/usb/uvc/uvc_queue.o
2025-10-02T16:17:50.9174740Z CC [M] drivers/watchdog/sbc_fitpc2_wdt.o
2025-10-02T16:17:50.9667780Z CC [M] drivers/hwmon/lm80.o
2025-10-02T16:17:51.1112552Z CC [M] drivers/net/ethernet/sfc/mtd.o
2025-10-02T16:17:51.1981313Z CC [M] drivers/media/pci/cx18/cx18-streams.o
2025-10-02T16:17:51.5378191Z CC [M] drivers/watchdog/eurotechwdt.o
2025-10-02T16:17:51.6262163Z CC [M] drivers/hwmon/lm83.o
2025-10-02T16:17:51.7580639Z CC [M] drivers/media/usb/uvc/uvc_v4l2.o
2025-10-02T16:17:52.2032121Z CC [M] drivers/watchdog/ib700wdt.o
2025-10-02T16:17:52.2389913Z CC [M] drivers/hwmon/lm85.o
2025-10-02T16:17:52.2822872Z CC [M] drivers/net/ethernet/sfc/sriov.o
2025-10-02T16:17:52.6047422Z CC [M] drivers/media/pci/cx18/cx18-fileops.o
2025-10-02T16:17:52.8936322Z CC [M] drivers/watchdog/ibmasr.o
2025-10-02T16:17:53.4520651Z CC [M] drivers/media/usb/uvc/uvc_video.o
2025-10-02T16:17:53.4738619Z CC [M] drivers/hwmon/lm87.o
2025-10-02T16:17:53.6140381Z CC [M] drivers/net/ethernet/sfc/siena_sriov.o
2025-10-02T16:17:53.6734459Z CC [M] drivers/watchdog/wafer5823wdt.o
2025-10-02T16:17:54.2531289Z CC [M] drivers/watchdog/i6300esb.o
2025-10-02T16:17:54.3826308Z CC [M] drivers/media/pci/cx18/cx18-ioctl.o
2025-10-02T16:17:54.8247441Z CC [M] drivers/hwmon/lm90.o
2025-10-02T16:17:54.9640010Z CC [M] drivers/watchdog/ie6xx_wdt.o
2025-10-02T16:17:55.0695163Z CC [M] drivers/media/usb/uvc/uvc_ctrl.o
2025-10-02T16:17:55.7086163Z CC [M] drivers/watchdog/iTCO_wdt.o
2025-10-02T16:17:55.9914652Z CC [M] drivers/net/ethernet/sfc/ef10_sriov.o
2025-10-02T16:17:56.1350535Z CC [M] drivers/media/pci/cx18/cx18-controls.o
2025-10-02T16:17:56.4602972Z CC [M] drivers/hwmon/lm92.o
2025-10-02T16:17:56.6200276Z CC [M] drivers/watchdog/iTCO_vendor_support.o
2025-10-02T16:17:56.6458693Z CC [M] drivers/media/usb/uvc/uvc_status.o
2025-10-02T16:17:57.1311468Z CC [M] drivers/hwmon/lm93.o
2025-10-02T16:17:57.2747486Z CC [M] drivers/media/pci/cx18/cx18-mailbox.o
2025-10-02T16:17:57.2983737Z CC [M] drivers/watchdog/it8712f_wdt.o
2025-10-02T16:17:57.4454586Z CC [M] drivers/media/usb/uvc/uvc_isight.o
2025-10-02T16:17:57.7397805Z LD [M] drivers/net/ethernet/sfc/sfc.o
2025-10-02T16:17:58.0412278Z CC [M] drivers/watchdog/it87_wdt.o
2025-10-02T16:17:58.0428977Z AR drivers/net/ethernet/socionext/built-in.a
2025-10-02T16:17:58.1340768Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_main.o
2025-10-02T16:17:58.1703696Z CC [M] drivers/media/usb/uvc/uvc_debugfs.o
2025-10-02T16:17:58.5975162Z CC [M] drivers/watchdog/hpwdt.o
2025-10-02T16:17:58.6653190Z CC [M] drivers/media/pci/cx18/cx18-vbi.o
2025-10-02T16:17:58.7083583Z CC [M] drivers/hwmon/lm95234.o
2025-10-02T16:17:59.2481383Z CC [M] drivers/media/usb/uvc/uvc_metadata.o
2025-10-02T16:17:59.4101514Z CC [M] drivers/watchdog/kempld_wdt.o
2025-10-02T16:17:59.5464725Z CC [M] drivers/hwmon/lm95241.o
2025-10-02T16:17:59.7775003Z CC [M] drivers/media/pci/cx18/cx18-audio.o
2025-10-02T16:18:00.1094544Z CC [M] drivers/watchdog/sc1200wdt.o
2025-10-02T16:18:00.1705567Z CC [M] drivers/media/usb/uvc/uvc_entity.o
2025-10-02T16:18:00.3596091Z CC [M] drivers/hwmon/lm95245.o
2025-10-02T16:18:00.7769317Z CC [M] drivers/watchdog/pc87413_wdt.o
2025-10-02T16:18:00.9070812Z CC [M] drivers/media/pci/cx18/cx18-video.o
2025-10-02T16:18:01.0931858Z CC [M] drivers/hwmon/ltc2945.o
2025-10-02T16:18:01.1516935Z LD [M] drivers/media/usb/uvc/uvcvideo.o
2025-10-02T16:18:01.2407233Z CC [M] drivers/media/usb/gspca/m5602/m5602_core.o
2025-10-02T16:18:01.4393144Z CC [M] drivers/watchdog/nv_tco.o
2025-10-02T16:18:01.8554118Z CC [M] drivers/hwmon/ltc2947-core.o
2025-10-02T16:18:01.8793444Z CC [M] drivers/media/pci/cx18/cx18-irq.o
2025-10-02T16:18:02.0674664Z CC [M] drivers/media/usb/gspca/m5602/m5602_ov9650.o
2025-10-02T16:18:02.2777331Z CC [M] drivers/watchdog/sbc60xxwdt.o
2025-10-02T16:18:02.3248316Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.o
2025-10-02T16:18:02.7819191Z CC [M] drivers/hwmon/ltc2947-i2c.o
2025-10-02T16:18:02.8834824Z CC [M] drivers/watchdog/cpu5wdt.o
2025-10-02T16:18:02.9757735Z CC [M] drivers/media/usb/gspca/m5602/m5602_ov7660.o
2025-10-02T16:18:03.0174441Z CC [M] drivers/media/pci/cx18/cx18-av-core.o
2025-10-02T16:18:03.4483865Z CC [M] drivers/hwmon/ltc2947-spi.o
2025-10-02T16:18:03.5529258Z CC [M] drivers/watchdog/sch311x_wdt.o
2025-10-02T16:18:03.6260331Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.o
2025-10-02T16:18:03.7228104Z CC [M] drivers/media/usb/gspca/m5602/m5602_mt9m111.o
2025-10-02T16:18:04.1862116Z CC [M] drivers/hwmon/ltc2990.o
2025-10-02T16:18:04.1900043Z CC [M] drivers/watchdog/smsc37b787_wdt.o
2025-10-02T16:18:04.7213941Z CC [M] drivers/hwmon/ltc4151.o
2025-10-02T16:18:04.8039197Z CC [M] drivers/net/ethernet/stmicro/stmmac/ring_mode.o
2025-10-02T16:18:04.8196357Z CC [M] drivers/media/usb/gspca/m5602/m5602_po1030.o
2025-10-02T16:18:04.8935024Z CC [M] drivers/watchdog/tqmx86_wdt.o
2025-10-02T16:18:05.0753982Z CC [M] drivers/media/pci/cx18/cx18-av-audio.o
2025-10-02T16:18:05.3392239Z CC [M] drivers/hwmon/ltc4215.o
2025-10-02T16:18:05.3410126Z CC [M] drivers/watchdog/via_wdt.o
2025-10-02T16:18:05.6419763Z CC [M] drivers/net/ethernet/stmicro/stmmac/chain_mode.o
2025-10-02T16:18:05.9443237Z CC [M] drivers/media/usb/gspca/m5602/m5602_s5k83a.o
2025-10-02T16:18:05.9628925Z CC [M] drivers/watchdog/w83627hf_wdt.o
2025-10-02T16:18:06.0608412Z CC [M] drivers/hwmon/ltc4222.o
2025-10-02T16:18:06.3780397Z CC [M] drivers/media/pci/cx18/cx18-av-firmware.o
2025-10-02T16:18:06.5663754Z CC [M] drivers/hwmon/ltc4245.o
2025-10-02T16:18:06.6279373Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac_lib.o
2025-10-02T16:18:06.6700599Z CC [M] drivers/watchdog/w83877f_wdt.o
2025-10-02T16:18:06.8132744Z CC [M] drivers/media/usb/gspca/m5602/m5602_s5k4aa.o
2025-10-02T16:18:07.1578018Z CC [M] drivers/hwmon/ltc4260.o
2025-10-02T16:18:07.2084736Z CC [M] drivers/watchdog/w83977f_wdt.o
2025-10-02T16:18:07.6320884Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac1000_core.o
2025-10-02T16:18:07.6509315Z CC [M] drivers/media/pci/cx18/cx18-av-vbi.o
2025-10-02T16:18:07.7488042Z CC [M] drivers/hwmon/ltc4261.o
2025-10-02T16:18:07.7505993Z LD [M] drivers/media/usb/gspca/m5602/gspca_m5602.o
2025-10-02T16:18:07.8614397Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx.o
2025-10-02T16:18:07.8832058Z CC [M] drivers/watchdog/machzwd.o
2025-10-02T16:18:08.3050509Z CC [M] drivers/hwmon/max1111.o
2025-10-02T16:18:08.5345083Z CC [M] drivers/watchdog/sbc_epx_c3.o
2025-10-02T16:18:08.8774324Z CC [M] drivers/media/pci/cx18/cx18-scb.o
2025-10-02T16:18:08.9840468Z CC [M] drivers/hwmon/max16065.o
2025-10-02T16:18:09.0309193Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx_vv6410.o
2025-10-02T16:18:09.0671223Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac1000_dma.o
2025-10-02T16:18:09.0923611Z CC [M] drivers/watchdog/mei_wdt.o
2025-10-02T16:18:09.7263094Z CC [M] drivers/watchdog/ni903x_wdt.o
2025-10-02T16:18:09.9353719Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx_hdcs.o
2025-10-02T16:18:09.9576294Z CC [M] drivers/hwmon/max1619.o
2025-10-02T16:18:10.0682269Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac100_core.o
2025-10-02T16:18:10.1155257Z CC [M] drivers/media/pci/cx18/cx18-dvb.o
2025-10-02T16:18:10.3070696Z CC [M] drivers/watchdog/nic7018_wdt.o
2025-10-02T16:18:10.4688133Z CC [M] drivers/hwmon/max1668.o
2025-10-02T16:18:10.9236626Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx_pb0100.o
2025-10-02T16:18:10.9701451Z CC [M] drivers/watchdog/mlx_wdt.o
2025-10-02T16:18:11.2362841Z CC [M] drivers/hwmon/max197.o
2025-10-02T16:18:11.3700277Z CC [M] drivers/media/pci/cx18/cx18-io.o
2025-10-02T16:18:11.4104550Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac100_dma.o
2025-10-02T16:18:11.6493759Z CC [M] drivers/watchdog/of_xilinx_wdt.o
2025-10-02T16:18:11.7895171Z CC [M] drivers/hwmon/max31722.o
2025-10-02T16:18:11.8174638Z CC [M] drivers/media/usb/gspca/stv06xx/stv06xx_st6422.o
2025-10-02T16:18:12.2392123Z CC [M] drivers/watchdog/mena21_wdt.o
2025-10-02T16:18:12.3195193Z CC [M] drivers/net/ethernet/stmicro/stmmac/enh_desc.o
2025-10-02T16:18:12.5734800Z CC [M] drivers/hwmon/max31730.o
2025-10-02T16:18:12.5923804Z CC [M] drivers/media/pci/cx18/cx18-alsa-main.o
2025-10-02T16:18:12.6276344Z LD [M] drivers/media/usb/gspca/stv06xx/gspca_stv06xx.o
2025-10-02T16:18:12.6841321Z CC [M] drivers/watchdog/xen_wdt.o
2025-10-02T16:18:12.7308503Z CC [M] drivers/media/usb/gspca/gl860/gl860.o
2025-10-02T16:18:13.2961248Z CC [M] drivers/hwmon/max6621.o
2025-10-02T16:18:13.4106429Z CC [M] drivers/watchdog/da9052_wdt.o
2025-10-02T16:18:13.6156540Z CC [M] drivers/net/ethernet/stmicro/stmmac/norm_desc.o
2025-10-02T16:18:13.7281465Z CC [M] drivers/media/pci/cx18/cx18-alsa-pcm.o
2025-10-02T16:18:13.7815364Z CC [M] drivers/media/usb/gspca/gl860/gl860-mi1320.o
2025-10-02T16:18:13.8723953Z CC [M] drivers/hwmon/max6639.o
2025-10-02T16:18:13.9967471Z CC [M] drivers/watchdog/da9055_wdt.o
2025-10-02T16:18:14.5549788Z CC [M] drivers/hwmon/max6642.o
2025-10-02T16:18:14.6189213Z CC [M] drivers/media/usb/gspca/gl860/gl860-ov2640.o
2025-10-02T16:18:14.6429060Z CC [M] drivers/net/ethernet/stmicro/stmmac/mmc_core.o
2025-10-02T16:18:14.6527632Z CC [M] drivers/watchdog/da9062_wdt.o
2025-10-02T16:18:14.8885271Z LD [M] drivers/media/pci/cx18/cx18.o
2025-10-02T16:18:14.9791354Z LD [M] drivers/media/pci/cx18/cx18-alsa.o
2025-10-02T16:18:15.0278706Z CC [M] drivers/hwmon/max6650.o
2025-10-02T16:18:15.0306322Z CC [M] drivers/media/pci/cx23885/cx23885-cards.o
2025-10-02T16:18:15.5868056Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_hwtstamp.o
2025-10-02T16:18:15.5952166Z CC [M] drivers/watchdog/da9063_wdt.o
2025-10-02T16:18:15.6185654Z CC [M] drivers/media/usb/gspca/gl860/gl860-ov9655.o
2025-10-02T16:18:15.6735748Z CC [M] drivers/hwmon/max6697.o
2025-10-02T16:18:16.2467282Z CC [M] drivers/watchdog/wdat_wdt.o
2025-10-02T16:18:16.4253562Z CC [M] drivers/media/pci/cx23885/cx23885-video.o
2025-10-02T16:18:16.4532686Z CC [M] drivers/hwmon/max31790.o
2025-10-02T16:18:16.4567112Z CC [M] drivers/media/usb/gspca/gl860/gl860-mi2020.o
2025-10-02T16:18:16.5101891Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_ptp.o
2025-10-02T16:18:17.1500837Z CC [M] drivers/watchdog/wm831x_wdt.o
2025-10-02T16:18:17.2167579Z CC [M] drivers/hwmon/mc13783-adc.o
2025-10-02T16:18:17.5172902Z LD [M] drivers/media/usb/gspca/gl860/gspca_gl860.o
2025-10-02T16:18:17.5532957Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac4_descs.o
2025-10-02T16:18:17.5750909Z CC [M] drivers/media/usb/gspca/gspca.o
2025-10-02T16:18:17.6674976Z CC [M] drivers/watchdog/wm8350_wdt.o
2025-10-02T16:18:17.7339117Z CC [M] drivers/hwmon/mcp3021.o
2025-10-02T16:18:18.1390902Z CC [M] drivers/media/pci/cx23885/cx23885-vbi.o
2025-10-02T16:18:18.2327793Z CC [M] drivers/hwmon/tc654.o
2025-10-02T16:18:18.5371863Z CC [M] drivers/watchdog/max63xx_wdt.o
2025-10-02T16:18:18.8114445Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac4_dma.o
2025-10-02T16:18:18.9011090Z CC [M] drivers/hwmon/mlxreg-fan.o
2025-10-02T16:18:18.9667343Z CC [M] drivers/watchdog/ziirave_wdt.o
2025-10-02T16:18:19.1337053Z CC [M] drivers/media/usb/gspca/autogain_functions.o
2025-10-02T16:18:19.3717570Z CC [M] drivers/media/pci/cx23885/cx23885-core.o
2025-10-02T16:18:19.5708321Z CC [M] drivers/hwmon/menf21bmc_hwmon.o
2025-10-02T16:18:19.7538758Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac4_lib.o
2025-10-02T16:18:19.7712859Z CC [M] drivers/watchdog/softdog.o
2025-10-02T16:18:20.1397001Z CC [M] drivers/media/usb/gspca/benq.o
2025-10-02T16:18:20.1939878Z CC [M] drivers/watchdog/menf21bmc_wdt.o
2025-10-02T16:18:20.3070568Z CC [M] drivers/hwmon/mr75203.o
2025-10-02T16:18:20.7045779Z CC [M] drivers/watchdog/menz69_wdt.o
2025-10-02T16:18:20.7903854Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac4_core.o
2025-10-02T16:18:21.0077109Z CC [M] drivers/media/usb/gspca/conex.o
2025-10-02T16:18:21.0620572Z CC [M] drivers/hwmon/nct6683.o
2025-10-02T16:18:21.2969239Z CC [M] drivers/watchdog/rave-sp-wdt.o
2025-10-02T16:18:21.4076334Z CC [M] drivers/media/pci/cx23885/cx23885-i2c.o
2025-10-02T16:18:21.9276912Z AR drivers/watchdog/built-in.a
2025-10-02T16:18:22.1032337Z CC [M] drivers/hwmon/nct6775.o
2025-10-02T16:18:22.1568249Z CC [M] drivers/media/usb/gspca/cpia1.o
2025-10-02T16:18:22.4269906Z AR drivers/net/ethernet/stmicro/built-in.a
2025-10-02T16:18:22.4834183Z CC [M] drivers/media/pci/cx25821/cx25821-core.o
2025-10-02T16:18:22.5641243Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac5.o
2025-10-02T16:18:22.7811162Z CC [M] drivers/media/pci/cx23885/cx23885-dvb.o
2025-10-02T16:18:23.5105500Z CC [M] drivers/media/usb/gspca/dtcs033.o
2025-10-02T16:18:23.6279179Z CC [M] drivers/net/ethernet/stmicro/stmmac/hwif.o
2025-10-02T16:18:23.8062806Z CC [M] drivers/media/pci/cx25821/cx25821-cards.o
2025-10-02T16:18:24.4778622Z CC [M] drivers/media/usb/gspca/etoms.o
2025-10-02T16:18:24.5290055Z CC [M] drivers/media/pci/cx25821/cx25821-i2c.o
2025-10-02T16:18:24.6319885Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_tc.o
2025-10-02T16:18:24.7026036Z CC [M] drivers/hwmon/nct7802.o
2025-10-02T16:18:25.1720486Z CC [M] drivers/media/pci/cx23885/cx23885-417.o
2025-10-02T16:18:25.4319730Z CC [M] drivers/media/pci/cx25821/cx25821-gpio.o
2025-10-02T16:18:25.6152342Z CC [M] drivers/media/usb/gspca/finepix.o
2025-10-02T16:18:25.8687508Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwxgmac2_core.o
2025-10-02T16:18:26.0192102Z CC [M] drivers/hwmon/nct7904.o
2025-10-02T16:18:26.4131402Z CC [M] drivers/media/pci/cx25821/cx25821-medusa-video.o
2025-10-02T16:18:26.4158418Z CC [M] drivers/media/usb/gspca/jeilinj.o
2025-10-02T16:18:26.7620521Z CC [M] drivers/media/pci/cx23885/cx23885-ioctl.o
2025-10-02T16:18:26.9314095Z CC [M] drivers/hwmon/npcm750-pwm-fan.o
2025-10-02T16:18:27.4077012Z CC [M] drivers/media/pci/cx25821/cx25821-video.o
2025-10-02T16:18:27.4157133Z CC [M] drivers/media/usb/gspca/jl2005bcd.o
2025-10-02T16:18:27.4333079Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwxgmac2_dma.o
2025-10-02T16:18:27.6177148Z CC [M] drivers/media/pci/cx23885/cx23885-ir.o
2025-10-02T16:18:27.8329910Z CC [M] drivers/hwmon/ntc_thermistor.o
2025-10-02T16:18:28.3796653Z CC [M] drivers/hwmon/pc87360.o
2025-10-02T16:18:28.4262025Z CC [M] drivers/media/pci/cx25821/cx25821-alsa.o
2025-10-02T16:18:28.4571571Z CC [M] drivers/media/usb/gspca/kinect.o
2025-10-02T16:18:28.5072751Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwxgmac2_descs.o
2025-10-02T16:18:28.7141368Z CC [M] drivers/media/pci/cx23885/cx23885-av.o
2025-10-02T16:18:29.3372780Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_platform.o
2025-10-02T16:18:29.3725201Z LD [M] drivers/media/pci/cx25821/cx25821.o
2025-10-02T16:18:29.3876789Z CC [M] drivers/media/usb/gspca/konica.o
2025-10-02T16:18:29.4328658Z CC drivers/net/loopback.o
2025-10-02T16:18:29.7811452Z CC [M] drivers/hwmon/pc87427.o
2025-10-02T16:18:29.8377522Z CC [M] drivers/media/pci/cx23885/cx23885-input.o
2025-10-02T16:18:30.3137858Z CC [M] drivers/media/usb/gspca/mars.o
2025-10-02T16:18:30.4287808Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac-generic.o
2025-10-02T16:18:30.5753435Z CC [M] drivers/media/usb/gspca/mr97310a.o
2025-10-02T16:18:30.6663853Z CC [M] drivers/hwmon/pcf8591.o
2025-10-02T16:18:31.0106229Z CC [M] drivers/media/pci/cx23885/cx23888-ir.o
2025-10-02T16:18:31.2471157Z CC [M] drivers/hwmon/powr1220.o
2025-10-02T16:18:31.3489117Z CC [M] drivers/media/pci/cx23885/netup-init.o
2025-10-02T16:18:31.3808286Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac_pci.o
2025-10-02T16:18:31.7041566Z CC [M] drivers/media/usb/gspca/nw80x.o
2025-10-02T16:18:32.0068083Z CC [M] drivers/hwmon/sch56xx-common.o
2025-10-02T16:18:32.2340883Z AR drivers/net/ethernet/sun/built-in.a
2025-10-02T16:18:32.2506844Z CC [M] drivers/net/ethernet/sun/sunhme.o
2025-10-02T16:18:32.4164250Z CC [M] drivers/media/pci/cx23885/cimax2.o
2025-10-02T16:18:32.5869415Z CC [M] drivers/media/usb/gspca/ov519.o
2025-10-02T16:18:32.6184640Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac-intel.o
2025-10-02T16:18:32.8270395Z CC [M] drivers/hwmon/sch5627.o
2025-10-02T16:18:33.4770024Z CC [M] drivers/hwmon/sch5636.o
2025-10-02T16:18:33.6991980Z CC [M] drivers/media/pci/cx23885/netup-eeprom.o
2025-10-02T16:18:33.8598662Z LD [M] drivers/net/ethernet/stmicro/stmmac/stmmac.o
2025-10-02T16:18:33.9248018Z LD [M] drivers/net/ethernet/stmicro/stmmac/stmmac-platform.o
2025-10-02T16:18:33.9380618Z LD [M] drivers/net/ethernet/stmicro/stmmac/stmmac-pci.o
2025-10-02T16:18:34.0098878Z CC [M] drivers/media/usb/pwc/pwc-if.o
2025-10-02T16:18:34.0365935Z CC [M] drivers/hwmon/sht15.o
2025-10-02T16:18:34.3424673Z CC [M] drivers/net/ethernet/sun/sungem.o
2025-10-02T16:18:34.8045569Z CC [M] drivers/media/pci/cx23885/cx23885-f300.o
2025-10-02T16:18:34.8444006Z CC [M] drivers/media/usb/gspca/ov534.o
2025-10-02T16:18:35.2283356Z CC [M] drivers/hwmon/sht21.o
2025-10-02T16:18:35.7524778Z CC [M] drivers/media/usb/pwc/pwc-misc.o
2025-10-02T16:18:35.8144159Z CC [M] drivers/media/pci/cx23885/cx23885-alsa.o
2025-10-02T16:18:35.8370040Z CC [M] drivers/hwmon/sht3x.o
2025-10-02T16:18:35.8720992Z CC [M] drivers/media/usb/gspca/ov534_9.o
2025-10-02T16:18:36.5405806Z CC [M] drivers/hwmon/shtc1.o
2025-10-02T16:18:36.5667585Z CC [M] drivers/net/ethernet/sun/cassini.o
2025-10-02T16:18:36.7216454Z CC [M] drivers/media/usb/pwc/pwc-ctrl.o
2025-10-02T16:18:36.9569825Z CC [M] drivers/media/usb/gspca/pac207.o
2025-10-02T16:18:37.0130580Z CC [M] drivers/media/pci/cx23885/altera-ci.o
2025-10-02T16:18:37.0554324Z CC [M] drivers/hwmon/sis5595.o
2025-10-02T16:18:37.8576813Z CC [M] drivers/media/usb/pwc/pwc-v4l.o
2025-10-02T16:18:37.8671980Z CC [M] drivers/media/usb/gspca/pac7302.o
2025-10-02T16:18:38.0665871Z LD [M] drivers/media/pci/cx23885/cx23885.o
2025-10-02T16:18:38.1292278Z CC [M] drivers/hwmon/smm665.o
2025-10-02T16:18:38.2264172Z CC [M] drivers/media/pci/cx88/cx88-cards.o
2025-10-02T16:18:38.9052402Z CC [M] drivers/hwmon/smsc47b397.o
2025-10-02T16:18:39.0544396Z CC [M] drivers/media/usb/gspca/pac7311.o
2025-10-02T16:18:39.0708585Z CC [M] drivers/media/usb/pwc/pwc-uncompress.o
2025-10-02T16:18:39.5145348Z CC [M] drivers/hwmon/smsc47m1.o
2025-10-02T16:18:39.7142742Z CC [M] drivers/media/pci/cx88/cx88-core.o
2025-10-02T16:18:39.9357794Z CC [M] drivers/media/usb/pwc/pwc-dec1.o
2025-10-02T16:18:40.0461186Z CC [M] drivers/net/ethernet/sun/niu.o
2025-10-02T16:18:40.0578290Z CC [M] drivers/media/usb/gspca/se401.o
2025-10-02T16:18:40.3641632Z CC [M] drivers/hwmon/smsc47m192.o
2025-10-02T16:18:40.6285539Z CC [M] drivers/media/usb/pwc/pwc-dec23.o
2025-10-02T16:18:41.1949453Z CC [M] drivers/hwmon/stts751.o
2025-10-02T16:18:41.2742461Z CC [M] drivers/media/usb/gspca/sn9c2028.o
2025-10-02T16:18:41.3064835Z CC [M] drivers/media/pci/cx88/cx88-i2c.o
2025-10-02T16:18:41.7736754Z CC [M] drivers/media/usb/pwc/pwc-kiara.o
2025-10-02T16:18:41.9584294Z CC [M] drivers/hwmon/amc6821.o
2025-10-02T16:18:42.3675170Z CC [M] drivers/media/usb/gspca/sn9c20x.o
2025-10-02T16:18:42.4172195Z CC [M] drivers/media/pci/cx88/cx88-tvaudio.o
2025-10-02T16:18:42.7710061Z CC [M] drivers/media/usb/pwc/pwc-timon.o
2025-10-02T16:18:43.0051338Z CC [M] drivers/hwmon/tc74.o
2025-10-02T16:18:43.5402056Z CC [M] drivers/hwmon/thmc50.o
2025-10-02T16:18:43.6330973Z LD [M] drivers/media/usb/pwc/pwc.o
2025-10-02T16:18:43.6963153Z CC [M] drivers/media/pci/cx88/cx88-dsp.o
2025-10-02T16:18:43.7581796Z CC [M] drivers/md/bcache/alloc.o
2025-10-02T16:18:43.9098889Z CC [M] drivers/media/usb/gspca/sonixb.o
2025-10-02T16:18:44.3299416Z CC [M] drivers/hwmon/tmp102.o
2025-10-02T16:18:44.8637241Z CC [M] drivers/media/pci/cx88/cx88-input.o
2025-10-02T16:18:45.0667541Z CC [M] drivers/hwmon/tmp103.o
2025-10-02T16:18:45.1507847Z CC [M] drivers/md/bcache/bset.o
2025-10-02T16:18:45.1531375Z CC [M] drivers/media/usb/gspca/sonixj.o
2025-10-02T16:18:45.7595989Z AR drivers/net/ethernet/tehuti/built-in.a
2025-10-02T16:18:45.7785665Z CC [M] drivers/net/ethernet/tehuti/tehuti.o
2025-10-02T16:18:45.7871727Z CC [M] drivers/hwmon/tmp108.o
2025-10-02T16:18:46.1502649Z CC [M] drivers/media/pci/cx88/cx88-video.o
2025-10-02T16:18:46.3395717Z CC [M] drivers/hwmon/tmp401.o
2025-10-02T16:18:46.7101250Z CC [M] drivers/media/usb/gspca/spca500.o
2025-10-02T16:18:47.0942434Z CC [M] drivers/hwmon/tmp421.o
2025-10-02T16:18:47.1026783Z CC [M] drivers/md/bcache/btree.o
2025-10-02T16:18:47.7533007Z CC [M] drivers/hwmon/tmp513.o
2025-10-02T16:18:47.8257259Z CC [M] drivers/media/usb/gspca/spca501.o
2025-10-02T16:18:47.9632516Z CC [M] drivers/media/pci/cx88/cx88-vbi.o
2025-10-02T16:18:48.2497361Z AR drivers/net/ethernet/ti/built-in.a
2025-10-02T16:18:48.2689910Z CC [M] drivers/net/ethernet/ti/tlan.o
2025-10-02T16:18:48.6039131Z CC [M] drivers/hwmon/via-cputemp.o
2025-10-02T16:18:48.6196625Z CC [M] drivers/media/usb/gspca/spca505.o
2025-10-02T16:18:48.9569181Z CC [M] drivers/media/pci/cx88/cx88-mpeg.o
2025-10-02T16:18:49.1149442Z CC [M] drivers/hwmon/via686a.o
2025-10-02T16:18:49.8502405Z CC [M] drivers/media/usb/gspca/spca506.o
2025-10-02T16:18:50.0325034Z CC [M] drivers/hwmon/vt1211.o
2025-10-02T16:18:50.2072648Z CC [M] drivers/md/bcache/closure.o
2025-10-02T16:18:50.4729006Z CC [M] drivers/media/pci/cx88/cx88-alsa.o
2025-10-02T16:18:50.6634167Z AR drivers/net/ethernet/via/built-in.a
2025-10-02T16:18:50.6914421Z CC [M] drivers/net/ethernet/via/via-rhine.o
2025-10-02T16:18:50.8841556Z CC [M] drivers/md/bcache/debug.o
2025-10-02T16:18:50.9580725Z CC [M] drivers/media/usb/gspca/spca508.o
2025-10-02T16:18:51.0794342Z CC [M] drivers/hwmon/vt8231.o
2025-10-02T16:18:51.8223500Z CC [M] drivers/md/bcache/extents.o
2025-10-02T16:18:51.8294930Z CC [M] drivers/media/usb/gspca/spca561.o
2025-10-02T16:18:51.8467686Z CC [M] drivers/media/pci/cx88/cx88-blackbird.o
2025-10-02T16:18:52.2836089Z CC [M] drivers/hwmon/w83627ehf.o
2025-10-02T16:18:52.8118190Z CC [M] drivers/media/usb/gspca/spca1528.o
2025-10-02T16:18:52.8744279Z CC [M] drivers/net/ethernet/via/via-velocity.o
2025-10-02T16:18:53.2192713Z CC [M] drivers/md/bcache/io.o
2025-10-02T16:18:53.5901327Z CC [M] drivers/media/pci/cx88/cx88-dvb.o
2025-10-02T16:18:53.7115770Z CC [M] drivers/media/usb/gspca/sq905.o
2025-10-02T16:18:53.7673035Z CC [M] drivers/hwmon/w83l785ts.o
2025-10-02T16:18:54.0840629Z CC [M] drivers/md/bcache/journal.o
2025-10-02T16:18:54.3494548Z CC [M] drivers/hwmon/w83l786ng.o
2025-10-02T16:18:54.7298083Z CC [M] drivers/media/usb/gspca/sq905c.o
2025-10-02T16:18:55.2062673Z CC [M] drivers/hwmon/wm831x-hwmon.o
2025-10-02T16:18:55.5367934Z CC [M] drivers/media/usb/gspca/sq930x.o
2025-10-02T16:18:55.5571772Z CC [M] drivers/md/bcache/movinggc.o
2025-10-02T16:18:55.6037509Z CC [M] drivers/media/pci/cx88/cx88-vp3054-i2c.o
2025-10-02T16:18:55.7381248Z AR drivers/net/ethernet/wiznet/built-in.a
2025-10-02T16:18:55.7611165Z CC [M] drivers/net/ethernet/wiznet/w5100.o
2025-10-02T16:18:55.7775609Z CC [M] drivers/hwmon/wm8350-hwmon.o
2025-10-02T16:18:56.5138572Z CC [M] drivers/hwmon/xgene-hwmon.o
2025-10-02T16:18:56.6021438Z LD [M] drivers/media/pci/cx88/cx88xx.o
2025-10-02T16:18:56.6255022Z CC [M] drivers/media/usb/gspca/sunplus.o
2025-10-02T16:18:56.6398804Z LD [M] drivers/media/pci/cx88/cx8800.o
2025-10-02T16:18:56.6598350Z LD [M] drivers/media/pci/cx88/cx8802.o
2025-10-02T16:18:56.7000413Z CC [M] drivers/md/bcache/request.o
2025-10-02T16:18:56.7729297Z CC [M] drivers/media/pci/bt8xx/bttv-driver.o
2025-10-02T16:18:57.3096846Z CC [M] drivers/net/ethernet/wiznet/w5100-spi.o
2025-10-02T16:18:57.5318748Z AR drivers/hwmon/built-in.a
2025-10-02T16:18:57.7808028Z CC [M] drivers/media/usb/gspca/stk014.o
2025-10-02T16:18:58.3138489Z CC [M] drivers/net/ethernet/wiznet/w5300.o
2025-10-02T16:18:58.6610336Z CC [M] drivers/media/usb/gspca/stk1135.o
2025-10-02T16:18:58.8371898Z CC [M] drivers/media/pci/bt8xx/bttv-cards.o
2025-10-02T16:18:58.8443327Z CC [M] drivers/md/bcache/stats.o
2025-10-02T16:18:59.3160858Z CC [M] drivers/net/dummy.o
2025-10-02T16:18:59.6261720Z AR drivers/net/ethernet/xilinx/built-in.a
2025-10-02T16:18:59.6383593Z CC [M] drivers/net/ethernet/xilinx/ll_temac_main.o
2025-10-02T16:18:59.6543463Z CC [M] drivers/md/bcache/super.o
2025-10-02T16:18:59.7259013Z CC [M] drivers/media/usb/gspca/stv0680.o
2025-10-02T16:19:00.2731042Z AR drivers/net/ethernet/xircom/built-in.a
2025-10-02T16:19:00.2981626Z CC [M] drivers/net/ethernet/xircom/xirc2ps_cs.o
2025-10-02T16:19:00.5573515Z CC [M] drivers/media/pci/bt8xx/bttv-if.o
2025-10-02T16:19:00.6104133Z CC [M] drivers/media/usb/gspca/t613.o
2025-10-02T16:19:01.4780324Z CC [M] drivers/media/pci/bt8xx/bttv-risc.o
2025-10-02T16:19:01.7558770Z CC [M] drivers/net/ethernet/xilinx/ll_temac_mdio.o
2025-10-02T16:19:01.7660583Z CC [M] drivers/media/usb/gspca/topro.o
2025-10-02T16:19:01.9653963Z CC [M] drivers/media/pci/bt8xx/bttv-vbi.o
2025-10-02T16:19:02.2593252Z CC [M] drivers/md/bcache/sysfs.o
2025-10-02T16:19:02.6689123Z CC [M] drivers/net/ethernet/xilinx/xilinx_axienet_main.o
2025-10-02T16:19:03.0071737Z CC drivers/accessibility/braille/braille_console.o
2025-10-02T16:19:03.0924738Z CC [M] drivers/media/pci/bt8xx/bttv-i2c.o
2025-10-02T16:19:03.4226146Z CC [M] drivers/media/usb/gspca/touptek.o
2025-10-02T16:19:03.8581584Z CC [M] drivers/md/bcache/trace.o
2025-10-02T16:19:03.9126539Z AR drivers/accessibility/braille/built-in.a
2025-10-02T16:19:03.9712317Z CC [M] drivers/accessibility/speakup/speakup_acntsa.o
2025-10-02T16:19:04.1677840Z CC [M] drivers/net/ethernet/xilinx/xilinx_axienet_mdio.o
2025-10-02T16:19:04.2368236Z CC [M] drivers/media/pci/bt8xx/bttv-gpio.o
2025-10-02T16:19:04.3453688Z CC [M] drivers/media/usb/gspca/tv8532.o
2025-10-02T16:19:04.5784287Z CC [M] drivers/accessibility/speakup/speakup_apollo.o
2025-10-02T16:19:05.0114809Z LD [M] drivers/net/ethernet/xilinx/ll_temac.o
2025-10-02T16:19:05.0288078Z LD [M] drivers/net/ethernet/xilinx/xilinx_emac.o
2025-10-02T16:19:05.0828431Z AR drivers/net/ethernet/synopsys/built-in.a
2025-10-02T16:19:05.0938627Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-net.o
2025-10-02T16:19:05.2767724Z CC [M] drivers/media/usb/gspca/vc032x.o
2025-10-02T16:19:05.3205499Z CC [M] drivers/accessibility/speakup/speakup_audptr.o
2025-10-02T16:19:05.4996746Z CC [M] drivers/media/pci/bt8xx/bttv-input.o
2025-10-02T16:19:05.8549154Z CC [M] drivers/md/bcache/util.o
2025-10-02T16:19:06.0246433Z CC [M] drivers/accessibility/speakup/speakup_bns.o
2025-10-02T16:19:06.5682697Z CC [M] drivers/media/usb/gspca/vicam.o
2025-10-02T16:19:06.6480861Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-desc.o
2025-10-02T16:19:06.7124342Z CC [M] drivers/accessibility/speakup/speakup_dectlk.o
2025-10-02T16:19:06.7250599Z CC [M] drivers/md/bcache/writeback.o
2025-10-02T16:19:06.8120801Z CC [M] drivers/media/pci/bt8xx/bttv-audio-hook.o
2025-10-02T16:19:07.5496414Z CC [M] drivers/media/usb/gspca/xirlink_cit.o
2025-10-02T16:19:07.5714688Z CC [M] drivers/accessibility/speakup/speakup_decext.o
2025-10-02T16:19:07.7584087Z CC [M] drivers/media/pci/bt8xx/btcx-risc.o
2025-10-02T16:19:07.9961406Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-hw.o
2025-10-02T16:19:08.1393393Z CC [M] drivers/md/bcache/features.o
2025-10-02T16:19:08.4444330Z CC [M] drivers/accessibility/speakup/speakup_ltlk.o
2025-10-02T16:19:08.6336468Z CC [M] drivers/media/pci/bt8xx/bt878.o
2025-10-02T16:19:08.9363316Z LD [M] drivers/md/bcache/bcache.o
2025-10-02T16:19:09.0572778Z CC [M] drivers/media/usb/gspca/zc3xx.o
2025-10-02T16:19:09.1314899Z CC [M] drivers/md/persistent-data/dm-array.o
2025-10-02T16:19:09.3113075Z CC [M] drivers/accessibility/speakup/speakup_soft.o
2025-10-02T16:19:09.4289927Z CC [M] drivers/media/pci/bt8xx/dvb-bt8xx.o
2025-10-02T16:19:10.2026532Z CC [M] drivers/md/persistent-data/dm-bitset.o
2025-10-02T16:19:10.3550218Z CC [M] drivers/accessibility/speakup/speakup_spkout.o
2025-10-02T16:19:10.4081529Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-common.o
2025-10-02T16:19:10.4868323Z LD [M] drivers/media/usb/gspca/gspca_main.o
2025-10-02T16:19:10.5171108Z LD [M] drivers/media/usb/gspca/gspca_benq.o
2025-10-02T16:19:10.5407214Z LD [M] drivers/media/usb/gspca/gspca_conex.o
2025-10-02T16:19:10.5701902Z LD [M] drivers/media/usb/gspca/gspca_cpia1.o
2025-10-02T16:19:10.5948564Z LD [M] drivers/media/usb/gspca/gspca_dtcs033.o
2025-10-02T16:19:10.6249964Z LD [M] drivers/media/usb/gspca/gspca_etoms.o
2025-10-02T16:19:10.6517373Z LD [M] drivers/media/usb/gspca/gspca_finepix.o
2025-10-02T16:19:10.6820319Z LD [M] drivers/media/usb/gspca/gspca_jeilinj.o
2025-10-02T16:19:10.7021130Z LD [M] drivers/media/usb/gspca/gspca_jl2005bcd.o
2025-10-02T16:19:10.7278696Z LD [M] drivers/media/usb/gspca/gspca_kinect.o
2025-10-02T16:19:10.7530615Z LD [M] drivers/media/usb/gspca/gspca_konica.o
2025-10-02T16:19:10.7771068Z LD [M] drivers/media/usb/gspca/gspca_mars.o
2025-10-02T16:19:10.8007879Z LD [M] drivers/media/usb/gspca/gspca_mr97310a.o
2025-10-02T16:19:10.8217030Z LD [M] drivers/media/usb/gspca/gspca_nw80x.o
2025-10-02T16:19:10.8323171Z CC [M] drivers/md/persistent-data/dm-block-manager.o
2025-10-02T16:19:10.8478291Z LD [M] drivers/media/usb/gspca/gspca_ov519.o
2025-10-02T16:19:10.8708682Z CC [M] drivers/media/pci/bt8xx/dst.o
2025-10-02T16:19:10.8715700Z LD [M] drivers/media/usb/gspca/gspca_ov534.o
2025-10-02T16:19:10.8993887Z LD [M] drivers/media/usb/gspca/gspca_ov534_9.o
2025-10-02T16:19:10.9257030Z LD [M] drivers/media/usb/gspca/gspca_pac207.o
2025-10-02T16:19:10.9471332Z LD [M] drivers/media/usb/gspca/gspca_pac7302.o
2025-10-02T16:19:10.9730531Z LD [M] drivers/media/usb/gspca/gspca_pac7311.o
2025-10-02T16:19:10.9959049Z LD [M] drivers/media/usb/gspca/gspca_se401.o
2025-10-02T16:19:11.0228262Z CC [M] drivers/accessibility/speakup/speakup_txprt.o
2025-10-02T16:19:11.0230496Z LD [M] drivers/media/usb/gspca/gspca_sn9c2028.o
2025-10-02T16:19:11.0469339Z LD [M] drivers/media/usb/gspca/gspca_sn9c20x.o
2025-10-02T16:19:11.0779095Z LD [M] drivers/media/usb/gspca/gspca_sonixb.o
2025-10-02T16:19:11.1048545Z LD [M] drivers/media/usb/gspca/gspca_sonixj.o
2025-10-02T16:19:11.1327867Z LD [M] drivers/media/usb/gspca/gspca_spca500.o
2025-10-02T16:19:11.1600655Z LD [M] drivers/media/usb/gspca/gspca_spca501.o
2025-10-02T16:19:11.1879985Z LD [M] drivers/media/usb/gspca/gspca_spca505.o
2025-10-02T16:19:11.2160107Z LD [M] drivers/media/usb/gspca/gspca_spca506.o
2025-10-02T16:19:11.2440297Z LD [M] drivers/media/usb/gspca/gspca_spca508.o
2025-10-02T16:19:11.2721835Z LD [M] drivers/media/usb/gspca/gspca_spca561.o
2025-10-02T16:19:11.3002448Z LD [M] drivers/media/usb/gspca/gspca_spca1528.o
2025-10-02T16:19:11.3237543Z LD [M] drivers/media/usb/gspca/gspca_sq905.o
2025-10-02T16:19:11.3400922Z LD [M] drivers/media/usb/gspca/gspca_sq905c.o
2025-10-02T16:19:11.3678437Z LD [M] drivers/media/usb/gspca/gspca_sq930x.o
2025-10-02T16:19:11.3938154Z LD [M] drivers/media/usb/gspca/gspca_sunplus.o
2025-10-02T16:19:11.4177221Z LD [M] drivers/media/usb/gspca/gspca_stk014.o
2025-10-02T16:19:11.4390180Z LD [M] drivers/media/usb/gspca/gspca_stk1135.o
2025-10-02T16:19:11.4598612Z LD [M] drivers/media/usb/gspca/gspca_stv0680.o
2025-10-02T16:19:11.4866447Z LD [M] drivers/media/usb/gspca/gspca_t613.o
2025-10-02T16:19:11.4911829Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-ethtool.o
2025-10-02T16:19:11.5041286Z LD [M] drivers/media/usb/gspca/gspca_topro.o
2025-10-02T16:19:11.5173174Z LD [M] drivers/media/usb/gspca/gspca_touptek.o
2025-10-02T16:19:11.5295558Z LD [M] drivers/media/usb/gspca/gspca_tv8532.o
2025-10-02T16:19:11.5418652Z LD [M] drivers/media/usb/gspca/gspca_vc032x.o
2025-10-02T16:19:11.5561121Z LD [M] drivers/media/usb/gspca/gspca_vicam.o
2025-10-02T16:19:11.5686289Z LD [M] drivers/media/usb/gspca/gspca_xirlink_cit.o
2025-10-02T16:19:11.5692316Z CC [M] drivers/accessibility/speakup/speakup_dummy.o
2025-10-02T16:19:11.5818049Z LD [M] drivers/media/usb/gspca/gspca_zc3xx.o
2025-10-02T16:19:11.8900138Z CC [M] drivers/media/usb/cpia2/cpia2_v4l.o
2025-10-02T16:19:11.9050194Z CC [M] drivers/md/persistent-data/dm-space-map-common.o
2025-10-02T16:19:12.1139834Z CC [M] drivers/accessibility/speakup/buffers.o
2025-10-02T16:19:12.5910067Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac-pci.o
2025-10-02T16:19:12.6086024Z CC [M] drivers/media/pci/bt8xx/dst_ca.o
2025-10-02T16:19:12.7396199Z CC [M] drivers/accessibility/speakup/devsynth.o
2025-10-02T16:19:12.8105347Z CC [M] drivers/md/persistent-data/dm-space-map-disk.o
2025-10-02T16:19:13.1531687Z CC [M] drivers/media/usb/cpia2/cpia2_usb.o
2025-10-02T16:19:13.4858964Z CC [M] drivers/accessibility/speakup/i18n.o
2025-10-02T16:19:13.6198699Z CC [M] drivers/md/persistent-data/dm-space-map-metadata.o
2025-10-02T16:19:13.6364293Z LD [M] drivers/net/ethernet/synopsys/dwc-xlgmac.o
2025-10-02T16:19:13.7309091Z LD [M] drivers/media/pci/bt8xx/bttv.o
2025-10-02T16:19:13.7554676Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_main.o
2025-10-02T16:19:13.9089757Z CC [M] drivers/media/pci/saa7134/saa7134-cards.o
2025-10-02T16:19:14.1922422Z CC [M] drivers/media/usb/cpia2/cpia2_core.o
2025-10-02T16:19:14.3470620Z CC [M] drivers/accessibility/speakup/fakekey.o
2025-10-02T16:19:14.5975969Z CC [M] drivers/md/persistent-data/dm-transaction-manager.o
2025-10-02T16:19:15.0870228Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_bus_pci.o
2025-10-02T16:19:15.1031058Z CC [M] drivers/accessibility/speakup/main.o
2025-10-02T16:19:15.2705452Z CC [M] drivers/media/pci/saa7134/saa7134-core.o
2025-10-02T16:19:15.4394992Z CC [M] drivers/md/persistent-data/dm-btree.o
2025-10-02T16:19:15.6594814Z LD [M] drivers/media/usb/cpia2/cpia2.o
2025-10-02T16:19:15.7134476Z CC [M] drivers/media/usb/au0828/au0828-core.o
2025-10-02T16:19:16.3271915Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_devlink.o
2025-10-02T16:19:16.6532340Z CC [M] drivers/md/persistent-data/dm-btree-remove.o
2025-10-02T16:19:17.0257979Z CC [M] drivers/media/usb/au0828/au0828-i2c.o
2025-10-02T16:19:17.2395433Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_dev.o
2025-10-02T16:19:17.2416971Z CC [M] drivers/accessibility/speakup/keyhelp.o
2025-10-02T16:19:17.3566925Z CC [M] drivers/media/pci/saa7134/saa7134-i2c.o
2025-10-02T16:19:17.6324143Z CC [M] drivers/md/persistent-data/dm-btree-spine.o
2025-10-02T16:19:18.0510991Z CC [M] drivers/media/usb/au0828/au0828-cards.o
2025-10-02T16:19:18.1246189Z CC [M] drivers/accessibility/speakup/kobjects.o
2025-10-02T16:19:18.3989998Z LD [M] drivers/md/persistent-data/dm-persistent-data.o
2025-10-02T16:19:18.4761824Z CC drivers/md/dm-builtin.o
2025-10-02T16:19:18.5817925Z CC [M] drivers/media/pci/saa7134/saa7134-ts.o
2025-10-02T16:19:18.7255879Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_debugfs.o
2025-10-02T16:19:19.0913624Z CC [M] drivers/media/usb/au0828/au0828-dvb.o
2025-10-02T16:19:19.3911147Z CC [M] drivers/md/md-linear.o
2025-10-02T16:19:19.4640216Z CC [M] drivers/accessibility/speakup/selection.o
2025-10-02T16:19:19.6636876Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_lif.o
2025-10-02T16:19:19.9032657Z CC [M] drivers/media/pci/saa7134/saa7134-tvaudio.o
2025-10-02T16:19:20.1685560Z CC [M] drivers/accessibility/speakup/spk_ttyio.o
2025-10-02T16:19:20.4095575Z CC [M] drivers/media/usb/au0828/au0828-video.o
2025-10-02T16:19:20.5169992Z CC [M] drivers/md/raid0.o
2025-10-02T16:19:21.0640606Z CC [M] drivers/accessibility/speakup/synth.o
2025-10-02T16:19:21.6563530Z CC [M] drivers/media/pci/saa7134/saa7134-vbi.o
2025-10-02T16:19:21.9649197Z CC [M] drivers/accessibility/speakup/thread.o
2025-10-02T16:19:22.0411307Z CC [M] drivers/md/raid1.o
2025-10-02T16:19:22.4630605Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_rx_filter.o
2025-10-02T16:19:22.5031072Z CC [M] drivers/media/usb/au0828/au0828-vbi.o
2025-10-02T16:19:22.6147082Z CC [M] drivers/accessibility/speakup/varhandlers.o
2025-10-02T16:19:22.7010480Z CC [M] drivers/media/pci/saa7134/saa7134-video.o
2025-10-02T16:19:23.5250061Z LD [M] drivers/accessibility/speakup/speakup.o
2025-10-02T16:19:23.5785916Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_ethtool.o
2025-10-02T16:19:23.5831931Z AR drivers/accessibility/built-in.a
2025-10-02T16:19:23.6107445Z AR drivers/net/ethernet/pensando/built-in.a
2025-10-02T16:19:23.6624183Z CC [M] drivers/media/pci/saa7164/saa7164-cards.o
2025-10-02T16:19:23.7826043Z CC [M] drivers/media/usb/au0828/au0828-input.o
2025-10-02T16:19:24.7663285Z CC [M] drivers/media/pci/saa7164/saa7164-core.o
2025-10-02T16:19:24.8500887Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_txrx.o
2025-10-02T16:19:24.8779807Z CC [M] drivers/media/pci/saa7134/saa7134-input.o
2025-10-02T16:19:25.1067199Z LD [M] drivers/media/usb/au0828/au0828.o
2025-10-02T16:19:25.2083386Z CC [M] drivers/md/raid10.o
2025-10-02T16:19:25.2123742Z CC [M] drivers/media/usb/hdpvr/hdpvr-control.o
2025-10-02T16:19:26.0384640Z CC [M] drivers/media/usb/hdpvr/hdpvr-core.o
2025-10-02T16:19:26.1841723Z CC [M] drivers/media/pci/saa7134/saa7134-empress.o
2025-10-02T16:19:26.4537841Z CC [M] drivers/media/pci/saa7164/saa7164-i2c.o
2025-10-02T16:19:26.9743120Z CC [M] drivers/media/usb/hdpvr/hdpvr-video.o
2025-10-02T16:19:27.1360401Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_stats.o
2025-10-02T16:19:27.5976035Z CC [M] drivers/media/pci/saa7164/saa7164-dvb.o
2025-10-02T16:19:27.7033073Z CC [M] drivers/media/pci/saa7134/saa7134-go7007.o
2025-10-02T16:19:28.4089782Z CC [M] drivers/net/ethernet/pensando/ionic/ionic_fw.o
2025-10-02T16:19:28.5141479Z CC [M] drivers/media/usb/hdpvr/hdpvr-i2c.o
2025-10-02T16:19:28.7047313Z CC [M] drivers/media/pci/saa7164/saa7164-fw.o
2025-10-02T16:19:28.8848875Z CC [M] drivers/md/raid5.o
2025-10-02T16:19:28.9451537Z CC [M] drivers/media/pci/saa7134/saa7134-alsa.o
2025-10-02T16:19:29.4098000Z LD [M] drivers/media/usb/hdpvr/hdpvr.o
2025-10-02T16:19:29.4679236Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-i2c-core.o
2025-10-02T16:19:29.5358647Z LD [M] drivers/net/ethernet/pensando/ionic/ionic.o
2025-10-02T16:19:29.7090790Z CC [M] drivers/net/ethernet/altera/altera_tse_main.o
2025-10-02T16:19:29.9401082Z CC [M] drivers/media/pci/saa7164/saa7164-bus.o
2025-10-02T16:19:30.5280328Z CC [M] drivers/media/pci/saa7134/saa7134-dvb.o
2025-10-02T16:19:30.7890080Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-audio.o
2025-10-02T16:19:30.8497971Z CC [M] drivers/net/ethernet/altera/altera_tse_ethtool.o
2025-10-02T16:19:31.1573079Z CC [M] drivers/media/pci/saa7164/saa7164-cmd.o
2025-10-02T16:19:31.7806062Z CC [M] drivers/net/ethernet/altera/altera_msgdma.o
2025-10-02T16:19:31.7969279Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-encoder.o
2025-10-02T16:19:32.6336658Z CC [M] drivers/media/pci/saa7164/saa7164-api.o
2025-10-02T16:19:32.6357452Z LD [M] drivers/media/pci/saa7134/saa7134.o
2025-10-02T16:19:32.7638046Z CC [M] drivers/md/raid5-cache.o
2025-10-02T16:19:32.8723811Z CC [M] drivers/net/ethernet/altera/altera_sgdma.o
2025-10-02T16:19:33.0407971Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-video-v4l.o
2025-10-02T16:19:34.0657739Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-eeprom.o
2025-10-02T16:19:34.0768134Z CC [M] drivers/net/ethernet/altera/altera_utils.o
2025-10-02T16:19:34.7303220Z CC [M] drivers/media/pci/saa7164/saa7164-buffer.o
2025-10-02T16:19:34.9954895Z LD [M] drivers/net/ethernet/altera/altera_tse.o
2025-10-02T16:19:35.0557898Z AR drivers/net/ethernet/built-in.a
2025-10-02T16:19:35.0588022Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-main.o
2025-10-02T16:19:35.0789405Z CC [M] drivers/net/ethernet/ec_bhf.o
2025-10-02T16:19:35.5518057Z CC [M] drivers/media/pci/saa7164/saa7164-encoder.o
2025-10-02T16:19:35.6329436Z CC [M] drivers/md/raid5-ppl.o
2025-10-02T16:19:35.9316378Z AR drivers/media/firewire/built-in.a
2025-10-02T16:19:35.9569453Z CC [M] drivers/media/firewire/firedtv-avc.o
2025-10-02T16:19:36.0559690Z CC [M] drivers/net/ethernet/dnet.o
2025-10-02T16:19:36.0678989Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-hdw.o
2025-10-02T16:19:37.2347664Z CC [M] drivers/md/md-multipath.o
2025-10-02T16:19:37.3905581Z CC [M] drivers/media/pci/saa7164/saa7164-vbi.o
2025-10-02T16:19:37.4021193Z CC [M] drivers/net/ethernet/jme.o
2025-10-02T16:19:37.7031331Z CC [M] drivers/media/firewire/firedtv-ci.o
2025-10-02T16:19:38.3912808Z CC [M] drivers/md/md-faulty.o
2025-10-02T16:19:38.6725256Z CC [M] drivers/media/firewire/firedtv-dvb.o
2025-10-02T16:19:38.7960384Z LD [M] drivers/media/pci/saa7164/saa7164.o
2025-10-02T16:19:38.8798665Z CC [M] drivers/media/pci/tw68/tw68-core.o
2025-10-02T16:19:39.2686469Z CC [M] drivers/md/md-cluster.o
2025-10-02T16:19:39.6527590Z CC [M] drivers/media/firewire/firedtv-fe.o
2025-10-02T16:19:39.6888394Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-v4l2.o
2025-10-02T16:19:39.7525217Z CC [M] drivers/media/pci/tw68/tw68-video.o
2025-10-02T16:19:40.5420715Z CC [M] drivers/media/firewire/firedtv-fw.o
2025-10-02T16:19:40.6423742Z CC [M] drivers/md/md.o
2025-10-02T16:19:41.1114476Z CC [M] drivers/net/ethernet/fealnx.o
2025-10-02T16:19:41.1326956Z CC [M] drivers/media/pci/tw68/tw68-risc.o
2025-10-02T16:19:41.2060325Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-ctrl.o
2025-10-02T16:19:41.6104856Z CC [M] drivers/media/firewire/firedtv-rc.o
2025-10-02T16:19:42.0138313Z LD [M] drivers/media/pci/tw68/tw68.o
2025-10-02T16:19:42.1090735Z CC [M] drivers/media/pci/tw686x/tw686x-core.o
2025-10-02T16:19:42.4921951Z LD [M] drivers/media/firewire/firedtv.o
2025-10-02T16:19:42.5160686Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-std.o
2025-10-02T16:19:42.5612790Z CC [M] drivers/net/eql.o
2025-10-02T16:19:42.7022043Z CC [M] drivers/net/ethernet/ethoc.o
2025-10-02T16:19:43.0383541Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-devattr.o
2025-10-02T16:19:43.2671208Z CC [M] drivers/media/pci/tw686x/tw686x-video.o
2025-10-02T16:19:43.7915593Z CC [M] drivers/media/usb/stk1160/stk1160-core.o
2025-10-02T16:19:44.2568914Z CC [M] drivers/net/ifb.o
2025-10-02T16:19:44.3650122Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-context.o
2025-10-02T16:19:44.7466968Z CC [M] drivers/media/usb/stk1160/stk1160-v4l.o
2025-10-02T16:19:44.8579899Z CC [M] drivers/media/pci/tw686x/tw686x-audio.o
2025-10-02T16:19:45.1726260Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-io.o
2025-10-02T16:19:45.3750630Z CC [M] drivers/net/macsec.o
2025-10-02T16:19:45.8200913Z CC [M] drivers/media/usb/stk1160/stk1160-video.o
2025-10-02T16:19:45.9485437Z LD [M] drivers/media/pci/tw686x/tw686x.o
2025-10-02T16:19:46.0039760Z CC [M] drivers/media/pci/dt3155/dt3155.o
2025-10-02T16:19:46.1212099Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-ioread.o
2025-10-02T16:19:46.7204514Z CC [M] drivers/media/usb/stk1160/stk1160-i2c.o
2025-10-02T16:19:47.1498476Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-cx2584x-v4l.o
2025-10-02T16:19:47.2238024Z CC [M] drivers/media/pci/meye/meye.o
2025-10-02T16:19:47.3499786Z CC [M] drivers/md/md-bitmap.o
2025-10-02T16:19:47.5849024Z CC [M] drivers/media/usb/stk1160/stk1160-ac97.o
2025-10-02T16:19:48.2305600Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-wm8775.o
2025-10-02T16:19:48.4107046Z LD [M] drivers/media/usb/stk1160/stk1160.o
2025-10-02T16:19:48.4901323Z CC [M] drivers/isdn/hardware/mISDN/hfcpci.o
2025-10-02T16:19:48.6211073Z CC [M] drivers/net/macvlan.o
2025-10-02T16:19:48.9205090Z CC [M] drivers/media/pci/solo6x10/solo6x10-core.o
2025-10-02T16:19:49.3095613Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-cs53l32a.o
2025-10-02T16:19:49.7692442Z CC [M] drivers/md/dm-uevent.o
2025-10-02T16:19:50.2611044Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-dvb.o
2025-10-02T16:19:50.2894747Z CC [M] drivers/media/pci/solo6x10/solo6x10-i2c.o
2025-10-02T16:19:50.5857274Z CC [M] drivers/md/dm.o
2025-10-02T16:19:50.6475437Z CC [M] drivers/isdn/hardware/mISDN/hfcmulti.o
2025-10-02T16:19:51.2061354Z CC [M] drivers/net/macvtap.o
2025-10-02T16:19:51.2294381Z CC [M] drivers/media/pci/solo6x10/solo6x10-p2m.o
2025-10-02T16:19:51.4459710Z CC [M] drivers/media/usb/pvrusb2/pvrusb2-sysfs.o
2025-10-02T16:19:52.3238429Z LD [M] drivers/media/usb/pvrusb2/pvrusb2.o
2025-10-02T16:19:52.4058258Z CC [M] drivers/net/mii.o
2025-10-02T16:19:52.4130405Z CC [M] drivers/media/usb/cx231xx/cx231xx-video.o
2025-10-02T16:19:52.6309254Z CC [M] drivers/media/pci/solo6x10/solo6x10-v4l2.o
2025-10-02T16:19:52.8266598Z CC [M] drivers/md/dm-table.o
2025-10-02T16:19:53.6254440Z CC [M] drivers/net/mdio.o
2025-10-02T16:19:53.7904067Z CC [M] drivers/media/pci/solo6x10/solo6x10-tw28.o
2025-10-02T16:19:54.1470836Z CC [M] drivers/media/usb/cx231xx/cx231xx-i2c.o
2025-10-02T16:19:54.5578220Z CC [M] drivers/md/dm-target.o
2025-10-02T16:19:54.6018286Z CC [M] drivers/net/netconsole.o
2025-10-02T16:19:54.7470950Z CC [M] drivers/isdn/hardware/mISDN/hfcsusb.o
2025-10-02T16:19:54.8275422Z CC [M] drivers/media/pci/solo6x10/solo6x10-gpio.o
2025-10-02T16:19:55.1064921Z CC [M] drivers/media/usb/cx231xx/cx231xx-cards.o
2025-10-02T16:19:55.4321691Z CC [M] drivers/md/dm-linear.o
2025-10-02T16:19:55.7470207Z CC [M] drivers/media/pci/solo6x10/solo6x10-disp.o
2025-10-02T16:19:55.7685868Z CC [M] drivers/net/tun.o
2025-10-02T16:19:56.3066197Z CC [M] drivers/md/dm-stripe.o
2025-10-02T16:19:56.3401053Z CC [M] drivers/media/usb/cx231xx/cx231xx-core.o
2025-10-02T16:19:56.6749418Z CC [M] drivers/media/pci/solo6x10/solo6x10-enc.o
2025-10-02T16:19:57.4093425Z CC [M] drivers/md/dm-ioctl.o
2025-10-02T16:19:57.4948227Z CC [M] drivers/isdn/hardware/mISDN/avmfritz.o
2025-10-02T16:19:57.9588151Z CC [M] drivers/media/usb/cx231xx/cx231xx-avcore.o
2025-10-02T16:19:58.3383160Z CC [M] drivers/media/pci/solo6x10/solo6x10-v4l2-enc.o
2025-10-02T16:19:59.1740437Z CC [M] drivers/isdn/hardware/mISDN/speedfax.o
2025-10-02T16:19:59.2402610Z CC [M] drivers/md/dm-io.o
2025-10-02T16:19:59.3459133Z CC [M] drivers/net/tap.o
2025-10-02T16:19:59.9495884Z CC [M] drivers/media/usb/cx231xx/cx231xx-417.o
2025-10-02T16:20:00.0455186Z CC [M] drivers/media/pci/solo6x10/solo6x10-g723.o
2025-10-02T16:20:00.3168569Z CC [M] drivers/md/dm-kcopyd.o
2025-10-02T16:20:00.6394669Z CC [M] drivers/isdn/hardware/mISDN/mISDNinfineon.o
2025-10-02T16:20:01.1490691Z CC [M] drivers/media/pci/solo6x10/solo6x10-eeprom.o
2025-10-02T16:20:01.3899723Z CC [M] drivers/md/dm-sysfs.o
2025-10-02T16:20:01.4999789Z CC [M] drivers/net/veth.o
2025-10-02T16:20:01.5854000Z CC [M] drivers/media/usb/cx231xx/cx231xx-pcb-cfg.o
2025-10-02T16:20:02.0710536Z LD [M] drivers/media/pci/solo6x10/solo6x10.o
2025-10-02T16:20:02.1758450Z CC [M] drivers/media/pci/tw5864/tw5864-core.o
2025-10-02T16:20:02.2645057Z CC [M] drivers/isdn/hardware/mISDN/w6692.o
2025-10-02T16:20:02.2700098Z CC [M] drivers/md/dm-stats.o
2025-10-02T16:20:02.4140353Z CC [M] drivers/media/usb/cx231xx/cx231xx-vbi.o
2025-10-02T16:20:03.3352075Z CC [M] drivers/media/pci/tw5864/tw5864-video.o
2025-10-02T16:20:03.5277916Z CC [M] drivers/media/usb/cx231xx/cx231xx-input.o
2025-10-02T16:20:03.6041113Z CC [M] drivers/net/virtio_net.o
2025-10-02T16:20:03.6605432Z CC [M] drivers/md/dm-rq.o
2025-10-02T16:20:04.2034783Z CC [M] drivers/isdn/hardware/mISDN/netjet.o
2025-10-02T16:20:04.2851389Z CC [M] drivers/media/usb/cx231xx/cx231xx-audio.o
2025-10-02T16:20:04.6666492Z CC [M] drivers/md/dm-unstripe.o
2025-10-02T16:20:04.7320528Z CC [M] drivers/media/pci/tw5864/tw5864-h264.o
2025-10-02T16:20:05.4474071Z CC [M] drivers/media/usb/cx231xx/cx231xx-dvb.o
2025-10-02T16:20:05.5412253Z CC [M] drivers/media/pci/tw5864/tw5864-util.o
2025-10-02T16:20:05.7320218Z CC [M] drivers/md/dm-bufio.o
2025-10-02T16:20:06.1021951Z CC [M] drivers/isdn/hardware/mISDN/mISDNipac.o
2025-10-02T16:20:06.4168560Z LD [M] drivers/media/pci/tw5864/tw5864.o
2025-10-02T16:20:06.4531917Z AR drivers/media/pci/built-in.a
2025-10-02T16:20:06.5291428Z CC [M] drivers/isdn/capi/kcapi.o
2025-10-02T16:20:06.9546142Z LD [M] drivers/media/usb/cx231xx/cx231xx.o
2025-10-02T16:20:07.0329094Z LD [M] drivers/media/usb/cx231xx/cx231xx-alsa.o
2025-10-02T16:20:07.1333566Z CC [M] drivers/media/usb/tm6000/tm6000-cards.o
2025-10-02T16:20:07.3395614Z CC [M] drivers/net/geneve.o
2025-10-02T16:20:07.3709975Z CC [M] drivers/md/dm-bio-prison-v1.o
2025-10-02T16:20:07.4938098Z CC [M] drivers/isdn/capi/capiutil.o
2025-10-02T16:20:08.2366015Z CC [M] drivers/media/usb/tm6000/tm6000-core.o
2025-10-02T16:20:08.2943520Z CC [M] drivers/isdn/hardware/mISDN/mISDNisar.o
2025-10-02T16:20:08.3606047Z CC [M] drivers/isdn/capi/capi.o
2025-10-02T16:20:08.4071963Z CC [M] drivers/md/dm-bio-prison-v2.o
2025-10-02T16:20:09.4170669Z CC [M] drivers/md/dm-crypt.o
2025-10-02T16:20:09.5226375Z CC [M] drivers/media/usb/tm6000/tm6000-i2c.o
2025-10-02T16:20:09.9593550Z CC [M] drivers/isdn/capi/kcapi_proc.o
2025-10-02T16:20:10.1439298Z CC [M] drivers/net/bareudp.o
2025-10-02T16:20:10.4061415Z CC [M] drivers/isdn/hardware/mISDN/isdnhdlc.o
2025-10-02T16:20:10.4342567Z CC [M] drivers/media/usb/tm6000/tm6000-video.o
2025-10-02T16:20:10.7296252Z LD [M] drivers/isdn/capi/kernelcapi.o
2025-10-02T16:20:10.7965732Z CC [M] drivers/media/usb/tm6000/tm6000-stds.o
2025-10-02T16:20:11.0311504Z AR drivers/isdn/hardware/built-in.a
2025-10-02T16:20:11.0697655Z CC [M] drivers/isdn/mISDN/core.o
2025-10-02T16:20:11.8012078Z CC drivers/edac/edac_mc.o
2025-10-02T16:20:12.0866501Z CC [M] drivers/media/usb/tm6000/tm6000-input.o
2025-10-02T16:20:12.2351552Z CC [M] drivers/net/gtp.o
2025-10-02T16:20:12.2967021Z CC [M] drivers/isdn/mISDN/fsm.o
2025-10-02T16:20:12.7197681Z CC [M] drivers/md/dm-delay.o
2025-10-02T16:20:12.7932020Z CC [M] drivers/isdn/mISDN/socket.o
2025-10-02T16:20:13.0408553Z CC drivers/edac/edac_device.o
2025-10-02T16:20:13.3701312Z CC [M] drivers/media/usb/tm6000/tm6000-alsa.o
2025-10-02T16:20:13.4735730Z CC [M] drivers/md/dm-dust.o
2025-10-02T16:20:13.9580623Z CC drivers/edac/edac_mc_sysfs.o
2025-10-02T16:20:14.1816561Z CC [M] drivers/net/nlmon.o
2025-10-02T16:20:14.3717799Z CC [M] drivers/md/dm-flakey.o
2025-10-02T16:20:14.4193816Z CC [M] drivers/media/usb/tm6000/tm6000-dvb.o
2025-10-02T16:20:14.4990210Z CC [M] drivers/isdn/mISDN/clock.o
2025-10-02T16:20:14.9546443Z CC drivers/edac/edac_module.o
2025-10-02T16:20:14.9996451Z CC [M] drivers/net/vrf.o
2025-10-02T16:20:15.2585633Z CC [M] drivers/md/dm-path-selector.o
2025-10-02T16:20:15.5473334Z LD [M] drivers/media/usb/tm6000/tm6000.o
2025-10-02T16:20:15.5600849Z CC drivers/edac/edac_device_sysfs.o
2025-10-02T16:20:15.6407280Z CC [M] drivers/media/usb/em28xx/em28xx-core.o
2025-10-02T16:20:15.7081439Z CC [M] drivers/isdn/mISDN/hwchannel.o
2025-10-02T16:20:15.8859398Z CC [M] drivers/md/dm-mpath.o
2025-10-02T16:20:16.5218913Z CC drivers/edac/wq.o
2025-10-02T16:20:17.0062111Z CC [M] drivers/isdn/mISDN/stack.o
2025-10-02T16:20:17.1185007Z CC [M] drivers/media/usb/em28xx/em28xx-i2c.o
2025-10-02T16:20:17.1365585Z CC drivers/edac/edac_pci.o
2025-10-02T16:20:17.2650993Z CC [M] drivers/net/vsockmon.o
2025-10-02T16:20:17.8999154Z CC [M] drivers/md/dm-round-robin.o
2025-10-02T16:20:18.1597469Z CC drivers/edac/edac_pci_sysfs.o
2025-10-02T16:20:18.2859713Z CC [M] drivers/media/usb/em28xx/em28xx-cards.o
2025-10-02T16:20:18.3353777Z CC [M] drivers/isdn/mISDN/layer1.o
2025-10-02T16:20:18.4551569Z CC [M] drivers/net/sb1000.o
2025-10-02T16:20:18.6816213Z CC [M] drivers/md/dm-queue-length.o
2025-10-02T16:20:18.9641523Z CC drivers/edac/ghes_edac.o
2025-10-02T16:20:19.5545644Z CC [M] drivers/md/dm-service-time.o
2025-10-02T16:20:19.6115120Z CC [M] drivers/isdn/mISDN/layer2.o
2025-10-02T16:20:19.8191305Z CC [M] drivers/net/sungem_phy.o
2025-10-02T16:20:19.8771167Z CC [M] drivers/media/usb/em28xx/em28xx-camera.o
2025-10-02T16:20:19.9030755Z CC [M] drivers/edac/mce_amd.o
2025-10-02T16:20:20.3380189Z CC [M] drivers/md/dm-historical-service-time.o
2025-10-02T16:20:20.8607693Z CC [M] drivers/media/usb/em28xx/em28xx-video.o
2025-10-02T16:20:20.9440804Z CC [M] drivers/edac/i5000_edac.o
2025-10-02T16:20:21.0690161Z CC [M] drivers/net/xen-netfront.o
2025-10-02T16:20:21.3233878Z CC [M] drivers/md/dm-switch.o
2025-10-02T16:20:21.9094874Z CC [M] drivers/edac/i5100_edac.o
2025-10-02T16:20:22.0783983Z CC [M] drivers/isdn/mISDN/tei.o
2025-10-02T16:20:22.3068986Z CC [M] drivers/md/dm-snap.o
2025-10-02T16:20:22.8282101Z CC [M] drivers/edac/i5400_edac.o
2025-10-02T16:20:23.1457002Z CC [M] drivers/media/usb/em28xx/em28xx-vbi.o
2025-10-02T16:20:23.8271211Z CC [M] drivers/isdn/mISDN/timerdev.o
2025-10-02T16:20:23.8827902Z CC [M] drivers/edac/i7300_edac.o
2025-10-02T16:20:23.9861552Z CC [M] drivers/media/usb/em28xx/em28xx-audio.o
2025-10-02T16:20:24.2628868Z CC [M] drivers/net/ntb_netdev.o
2025-10-02T16:20:24.4290350Z CC [M] drivers/md/dm-exception-store.o
2025-10-02T16:20:24.9414053Z CC [M] drivers/edac/i7core_edac.o
2025-10-02T16:20:25.1911219Z CC [M] drivers/isdn/mISDN/dsp_core.o
2025-10-02T16:20:25.2386714Z CC [M] drivers/net/thunderbolt.o
2025-10-02T16:20:25.2572978Z CC [M] drivers/md/dm-snap-transient.o
2025-10-02T16:20:25.3416199Z CC [M] drivers/media/usb/em28xx/em28xx-dvb.o
2025-10-02T16:20:26.0318903Z CC [M] drivers/md/dm-snap-persistent.o
2025-10-02T16:20:26.4262860Z CC [M] drivers/edac/sb_edac.o
2025-10-02T16:20:26.8676898Z CC [M] drivers/isdn/mISDN/dsp_cmx.o
2025-10-02T16:20:27.0533955Z CC [M] drivers/net/net_failover.o
2025-10-02T16:20:27.0839746Z CC [M] drivers/md/dm-raid1.o
2025-10-02T16:20:27.3328318Z CC [M] drivers/media/usb/em28xx/em28xx-input.o
2025-10-02T16:20:28.3000825Z CC [M] drivers/edac/pnd2_edac.o
2025-10-02T16:20:28.3652386Z LD [M] drivers/net/thunderbolt-net.o
2025-10-02T16:20:28.3815204Z AR drivers/net/built-in.a
2025-10-02T16:20:28.4961728Z CC [M] drivers/md/dm-log.o
2025-10-02T16:20:28.6170450Z LD [M] drivers/media/usb/em28xx/em28xx.o
2025-10-02T16:20:28.6302815Z CC [M] drivers/isdn/mISDN/dsp_tones.o
2025-10-02T16:20:28.6508000Z LD [M] drivers/media/usb/em28xx/em28xx-v4l.o
2025-10-02T16:20:28.6879030Z LD [M] drivers/media/usb/em28xx/em28xx-alsa.o
2025-10-02T16:20:28.7148787Z LD [M] drivers/media/usb/em28xx/em28xx-rc.o
2025-10-02T16:20:28.8428203Z CC [M] drivers/media/usb/usbtv/usbtv-core.o
2025-10-02T16:20:28.8875163Z CC [M] drivers/media/usb/go7007/go7007-v4l2.o
2025-10-02T16:20:29.4016024Z CC [M] drivers/md/dm-region-hash.o
2025-10-02T16:20:29.6502961Z CC [M] drivers/edac/e752x_edac.o
2025-10-02T16:20:29.7594065Z CC [M] drivers/media/usb/usbtv/usbtv-video.o
2025-10-02T16:20:29.8106999Z CC [M] drivers/isdn/mISDN/dsp_dtmf.o
2025-10-02T16:20:30.2866574Z CC [M] drivers/media/usb/go7007/go7007-driver.o
2025-10-02T16:20:30.5006971Z CC [M] drivers/md/dm-log-userspace-base.o
2025-10-02T16:20:30.9202714Z CC [M] drivers/edac/i82975x_edac.o
2025-10-02T16:20:31.0480287Z CC [M] drivers/media/usb/usbtv/usbtv-audio.o
2025-10-02T16:20:31.1277383Z CC [M] drivers/isdn/mISDN/dsp_audio.o
2025-10-02T16:20:31.4618295Z CC [M] drivers/md/dm-log-userspace-transfer.o
2025-10-02T16:20:31.6575735Z CC [M] drivers/media/usb/go7007/go7007-i2c.o
2025-10-02T16:20:31.7213208Z CC [M] drivers/edac/i3000_edac.o
2025-10-02T16:20:31.9762586Z LD [M] drivers/media/usb/usbtv/usbtv.o
2025-10-02T16:20:32.0111611Z AR drivers/isdn/built-in.a
2025-10-02T16:20:32.0371491Z AR drivers/media/spi/built-in.a
2025-10-02T16:20:32.0481889Z CC [M] drivers/media/spi/cxd2880-spi.o
2025-10-02T16:20:32.4091449Z CC [M] drivers/isdn/mISDN/dsp_blowfish.o
2025-10-02T16:20:32.4936291Z CC [M] drivers/media/usb/go7007/go7007-fw.o
2025-10-02T16:20:32.5578190Z CC [M] drivers/md/dm-zero.o
2025-10-02T16:20:32.7140689Z CC [M] drivers/edac/i3200_edac.o
2025-10-02T16:20:33.1993674Z CC [M] drivers/md/dm-raid.o
2025-10-02T16:20:33.2221394Z CC drivers/opp/core.o
2025-10-02T16:20:33.6295240Z CC [M] drivers/edac/ie31200_edac.o
2025-10-02T16:20:34.0063954Z CC [M] drivers/isdn/mISDN/dsp_pipeline.o
2025-10-02T16:20:34.3756488Z CC [M] drivers/edac/x38_edac.o
2025-10-02T16:20:34.7973055Z CC [M] drivers/media/usb/go7007/snd-go7007.o
2025-10-02T16:20:35.2349711Z CC [M] drivers/edac/amd64_edac.o
2025-10-02T16:20:35.3186692Z CC drivers/opp/cpu.o
2025-10-02T16:20:35.5616264Z CC [M] drivers/isdn/mISDN/dsp_hwec.o
2025-10-02T16:20:35.6278762Z CC [M] drivers/media/usb/go7007/go7007-usb.o
2025-10-02T16:20:35.8717740Z CC drivers/opp/debugfs.o
2025-10-02T16:20:36.0657172Z CC [M] drivers/md/dm-thin.o
2025-10-02T16:20:36.3640297Z AR drivers/opp/built-in.a
2025-10-02T16:20:36.3940994Z CC [M] drivers/media/usb/as102/as102_drv.o
2025-10-02T16:20:36.8032396Z CC [M] drivers/isdn/mISDN/l1oip_core.o
2025-10-02T16:20:36.9675278Z CC [M] drivers/media/usb/go7007/go7007-loader.o
2025-10-02T16:20:37.2528199Z CC [M] drivers/media/usb/as102/as102_fw.o
2025-10-02T16:20:37.4680681Z CC [M] drivers/media/usb/go7007/s2250-board.o
2025-10-02T16:20:37.7416752Z CC [M] drivers/edac/skx_base.o
2025-10-02T16:20:38.2147073Z CC [M] drivers/media/usb/as102/as10x_cmd.o
2025-10-02T16:20:38.6122399Z LD [M] drivers/media/usb/go7007/go7007.o
2025-10-02T16:20:38.6341395Z LD [M] drivers/media/usb/go7007/s2250.o
2025-10-02T16:20:38.6899195Z CC [M] drivers/edac/skx_common.o
2025-10-02T16:20:38.7128456Z CC [M] drivers/isdn/mISDN/l1oip_codec.o
2025-10-02T16:20:38.7845012Z CC [M] drivers/edac/i10nm_base.o
2025-10-02T16:20:38.8190716Z CC [M] drivers/md/dm-thin-metadata.o
2025-10-02T16:20:39.0414825Z CC [M] drivers/media/usb/as102/as10x_cmd_stream.o
2025-10-02T16:20:39.5833893Z CC [M] drivers/media/usb/as102/as102_usb_drv.o
2025-10-02T16:20:39.7746035Z LD [M] drivers/isdn/mISDN/mISDN_core.o
2025-10-02T16:20:39.8043552Z LD [M] drivers/edac/edac_mce_amd.o
2025-10-02T16:20:39.8157969Z LD [M] drivers/edac/amd64_edac_mod.o
2025-10-02T16:20:39.8295881Z LD [M] drivers/edac/skx_edac.o
2025-10-02T16:20:39.8462410Z LD [M] drivers/isdn/mISDN/mISDN_dsp.o
2025-10-02T16:20:39.8463380Z LD [M] drivers/edac/skx_edac_common.o
2025-10-02T16:20:39.8679408Z LD [M] drivers/edac/i10nm_edac.o
2025-10-02T16:20:39.8818247Z LD [M] drivers/isdn/mISDN/l1oip.o
2025-10-02T16:20:39.8869944Z AR drivers/edac/built-in.a
2025-10-02T16:20:39.9184207Z CC [M] drivers/md/dm-verity-fec.o
2025-10-02T16:20:39.9493879Z CC [M] drivers/media/usb/as102/as10x_cmd_cfg.o
2025-10-02T16:20:40.0480129Z CC [M] drivers/md/dm-verity-verify-sig.o
2025-10-02T16:20:40.2897902Z CC [M] drivers/media/test-drivers/vimc/vimc-core.o
2025-10-02T16:20:40.5726896Z CC [M] drivers/media/test-drivers/vimc/vimc-common.o
2025-10-02T16:20:40.7491183Z AR drivers/media/usb/built-in.a
2025-10-02T16:20:40.7803570Z CC drivers/cpufreq/cpufreq.o
2025-10-02T16:20:40.8080799Z LD [M] drivers/media/usb/as102/dvb-as102.o
2025-10-02T16:20:40.9286039Z CC [M] drivers/md/dm-verity-target.o
2025-10-02T16:20:41.0415197Z CC [M] drivers/media/dvb-frontends/drx39xyj/drxj.o
2025-10-02T16:20:41.2838294Z CC [M] drivers/media/test-drivers/vivid/vivid-core.o
2025-10-02T16:20:41.3060918Z CC [M] drivers/media/test-drivers/vimc/vimc-streamer.o
2025-10-02T16:20:42.3471790Z CC [M] drivers/media/test-drivers/vimc/vimc-capture.o
2025-10-02T16:20:42.4355964Z CC [M] drivers/md/dm-cache-target.o
2025-10-02T16:20:43.1220010Z CC drivers/cpufreq/freq_table.o
2025-10-02T16:20:43.2450815Z CC [M] drivers/media/test-drivers/vivid/vivid-ctrls.o
2025-10-02T16:20:43.3038569Z CC [M] drivers/media/test-drivers/vimc/vimc-debayer.o
2025-10-02T16:20:43.7601360Z CC drivers/cpufreq/cpufreq_stats.o
2025-10-02T16:20:44.4325184Z CC [M] drivers/media/test-drivers/vimc/vimc-scaler.o
2025-10-02T16:20:44.5303615Z CC [M] drivers/media/test-drivers/vivid/vivid-vid-common.o
2025-10-02T16:20:44.5895405Z CC drivers/cpufreq/cpufreq_performance.o
2025-10-02T16:20:44.6187263Z CC [M] drivers/md/dm-cache-metadata.o
2025-10-02T16:20:44.7549275Z LD [M] drivers/media/dvb-frontends/drx39xyj/drx39xyj.o
2025-10-02T16:20:44.7914000Z CC [M] drivers/media/dvb-frontends/dvb-pll.o
2025-10-02T16:20:45.1232958Z CC drivers/cpufreq/cpufreq_powersave.o
2025-10-02T16:20:45.3074749Z CC [M] drivers/media/test-drivers/vimc/vimc-sensor.o
2025-10-02T16:20:45.5399238Z CC [M] drivers/media/dvb-frontends/stv0299.o
2025-10-02T16:20:45.6451806Z CC [M] drivers/media/test-drivers/vivid/vivid-vbi-gen.o
2025-10-02T16:20:45.7403201Z CC drivers/cpufreq/cpufreq_userspace.o
2025-10-02T16:20:46.0247038Z CC [M] drivers/md/dm-cache-policy.o
2025-10-02T16:20:46.2092161Z LD [M] drivers/media/test-drivers/vimc/vimc.o
2025-10-02T16:20:46.2119807Z CC [M] drivers/media/test-drivers/vivid/vivid-vid-cap.o
2025-10-02T16:20:46.2660680Z CC [M] drivers/media/dvb-frontends/stb0899_drv.o
2025-10-02T16:20:46.3036529Z CC drivers/cpufreq/cpufreq_ondemand.o
2025-10-02T16:20:46.5970759Z CC drivers/cpuidle/governors/ladder.o
2025-10-02T16:20:46.8980411Z CC [M] drivers/md/dm-cache-background-tracker.o
2025-10-02T16:20:47.0251076Z CC drivers/cpuidle/governors/menu.o
2025-10-02T16:20:47.2582214Z CC drivers/cpufreq/cpufreq_conservative.o
2025-10-02T16:20:47.5343004Z CC [M] drivers/media/dvb-frontends/stb0899_algo.o
2025-10-02T16:20:47.6013735Z CC drivers/cpuidle/governors/teo.o
2025-10-02T16:20:47.7926418Z CC [M] drivers/md/dm-cache-policy-smq.o
2025-10-02T16:20:47.9874134Z CC drivers/cpufreq/cpufreq_governor.o
2025-10-02T16:20:48.2388791Z CC drivers/cpuidle/governors/haltpoll.o
2025-10-02T16:20:48.3473706Z CC [M] drivers/media/test-drivers/vivid/vivid-vid-out.o
2025-10-02T16:20:48.6957669Z AR drivers/cpuidle/governors/built-in.a
2025-10-02T16:20:48.7129109Z CC drivers/cpuidle/cpuidle.o
2025-10-02T16:20:48.7380642Z CC drivers/cpufreq/cpufreq_governor_attr_set.o
2025-10-02T16:20:48.8220766Z CC [M] drivers/media/dvb-frontends/stb6100.o
2025-10-02T16:20:49.2722728Z CC drivers/cpufreq/intel_pstate.o
2025-10-02T16:20:49.5832918Z CC [M] drivers/media/dvb-frontends/sp8870.o
2025-10-02T16:20:49.6518620Z CC [M] drivers/md/dm-ebs-target.o
2025-10-02T16:20:50.0274350Z CC drivers/cpuidle/driver.o
2025-10-02T16:20:50.1413429Z CC [M] drivers/media/test-drivers/vivid/vivid-kthread-cap.o
2025-10-02T16:20:50.3959354Z CC [M] drivers/media/dvb-frontends/cx22700.o
2025-10-02T16:20:50.6066260Z CC drivers/cpuidle/governor.o
2025-10-02T16:20:50.7761173Z CC [M] drivers/md/dm-era-target.o
2025-10-02T16:20:51.0802538Z CC [M] drivers/media/dvb-frontends/cx24110.o
2025-10-02T16:20:51.0812523Z CC drivers/cpuidle/sysfs.o
2025-10-02T16:20:51.1910240Z CC [M] drivers/cpufreq/acpi-cpufreq.o
2025-10-02T16:20:51.9366147Z CC [M] drivers/media/test-drivers/vivid/vivid-kthread-out.o
2025-10-02T16:20:51.9427984Z CC drivers/cpuidle/poll_state.o
2025-10-02T16:20:51.9941235Z CC [M] drivers/media/dvb-frontends/tda8083.o
2025-10-02T16:20:52.2160875Z CC [M] drivers/md/dm-clone-target.o
2025-10-02T16:20:52.2316141Z CC [M] drivers/cpufreq/powernow-k8.o
2025-10-02T16:20:52.3808708Z CC [M] drivers/cpuidle/cpuidle-haltpoll.o
2025-10-02T16:20:52.7756276Z CC [M] drivers/media/dvb-frontends/l64781.o
2025-10-02T16:20:52.9686640Z CC [M] drivers/media/test-drivers/vivid/vivid-radio-rx.o
2025-10-02T16:20:53.0304943Z AR drivers/cpuidle/built-in.a
2025-10-02T16:20:53.0857659Z CC [M] drivers/cpufreq/pcc-cpufreq.o
2025-10-02T16:20:53.4865927Z CC [M] drivers/media/dvb-frontends/dib3000mb.o
2025-10-02T16:20:53.6458640Z CC drivers/mmc/host/sdhci-pci-data.o
2025-10-02T16:20:53.8020869Z CC [M] drivers/md/dm-clone-metadata.o
2025-10-02T16:20:53.9691535Z CC [M] drivers/media/test-drivers/vivid/vivid-radio-tx.o
2025-10-02T16:20:53.9755576Z CC [M] drivers/cpufreq/speedstep-lib.o
2025-10-02T16:20:54.1101901Z CC [M] drivers/mmc/host/sdhci.o
2025-10-02T16:20:54.7072904Z CC [M] drivers/cpufreq/p4-clockmod.o
2025-10-02T16:20:54.7844054Z CC [M] drivers/md/dm-log-writes.o
2025-10-02T16:20:54.7963722Z CC [M] drivers/media/dvb-frontends/dib3000mc.o
2025-10-02T16:20:54.9672509Z CC [M] drivers/media/test-drivers/vivid/vivid-radio-common.o
2025-10-02T16:20:55.2336220Z CC [M] drivers/cpufreq/amd_freq_sensitivity.o
2025-10-02T16:20:55.8347352Z CC [M] drivers/media/dvb-frontends/dibx000_common.o
2025-10-02T16:20:55.9075504Z AR drivers/cpufreq/built-in.a
2025-10-02T16:20:55.9287363Z CC [M] drivers/media/test-drivers/vivid/vivid-rds-gen.o
2025-10-02T16:20:55.9885723Z CC [M] drivers/media/dvb-frontends/dib7000m.o
2025-10-02T16:20:56.3318139Z CC [M] drivers/media/test-drivers/vivid/vivid-sdr-cap.o
2025-10-02T16:20:56.3866011Z CC [M] drivers/md/dm-integrity.o
2025-10-02T16:20:56.4866553Z CC [M] drivers/media/mc/mc-device.o
2025-10-02T16:20:57.2474953Z CC [M] drivers/media/dvb-frontends/dib7000p.o
2025-10-02T16:20:57.5466193Z CC [M] drivers/media/mc/mc-devnode.o
2025-10-02T16:20:57.6371316Z CC [M] drivers/media/test-drivers/vivid/vivid-vbi-cap.o
2025-10-02T16:20:57.6643353Z drivers/media/dvb-frontends/dib7000p.c: In function ‘w7090p_tuner_write_serpar’:
2025-10-02T16:20:57.6650242Z drivers/media/dvb-frontends/dib7000p.c:2203:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
2025-10-02T16:20:57.6652063Z 2203 | u16 serpar_num = msg[0].buf[0];
2025-10-02T16:20:57.6653134Z | ^~~
2025-10-02T16:20:57.6663643Z drivers/media/dvb-frontends/dib7000p.c: In function ‘w7090p_tuner_read_serpar’:
2025-10-02T16:20:57.6669754Z drivers/media/dvb-frontends/dib7000p.c:2224:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
2025-10-02T16:20:57.6675074Z 2224 | u16 serpar_num = msg[0].buf[0];
2025-10-02T16:20:57.6679949Z | ^~~
2025-10-02T16:20:57.6742815Z CC [M] drivers/mmc/host/sdhci-pci-core.o
2025-10-02T16:20:58.3300174Z CC [M] drivers/media/mc/mc-entity.o
2025-10-02T16:20:58.7670568Z CC [M] drivers/media/test-drivers/vivid/vivid-vbi-out.o
2025-10-02T16:20:59.1242047Z CC [M] drivers/media/dvb-frontends/dib8000.o
2025-10-02T16:20:59.5512320Z CC [M] drivers/media/mc/mc-request.o
2025-10-02T16:20:59.5561350Z CC [M] drivers/mmc/host/sdhci-pci-o2micro.o
2025-10-02T16:20:59.8463687Z CC [M] drivers/media/test-drivers/vivid/vivid-osd.o
2025-10-02T16:21:00.0431347Z CC [M] drivers/md/dm-zoned-target.o
2025-10-02T16:21:00.3933473Z CC [M] drivers/media/mc/mc-dev-allocator.o
2025-10-02T16:21:00.5269729Z CC [M] drivers/mmc/host/sdhci-pci-arasan.o
2025-10-02T16:21:00.9417081Z CC [M] drivers/media/test-drivers/vivid/vivid-meta-cap.o
2025-10-02T16:21:01.0035851Z LD [M] drivers/media/mc/mc.o
2025-10-02T16:21:01.0760605Z CC [M] drivers/mmc/host/sdhci-pci-dwc-mshc.o
2025-10-02T16:21:01.2397126Z CC [M] drivers/mmc/core/core.o
2025-10-02T16:21:01.6523603Z CC [M] drivers/md/dm-zoned-metadata.o
2025-10-02T16:21:01.8096647Z CC [M] drivers/mmc/host/sdhci-pci-gli.o
2025-10-02T16:21:01.9142643Z CC [M] drivers/media/test-drivers/vivid/vivid-meta-out.o
2025-10-02T16:21:02.3449003Z CC [M] drivers/media/dvb-frontends/mt312.o
2025-10-02T16:21:02.8739310Z CC [M] drivers/media/test-drivers/vivid/vivid-kthread-touch.o
2025-10-02T16:21:03.0088692Z CC [M] drivers/mmc/host/sdhci-acpi.o
2025-10-02T16:21:03.3511487Z CC [M] drivers/media/dvb-frontends/ves1820.o
2025-10-02T16:21:03.5619239Z CC [M] drivers/mmc/core/bus.o
2025-10-02T16:21:03.7195773Z CC [M] drivers/media/test-drivers/vivid/vivid-touch-cap.o
2025-10-02T16:21:03.8254738Z CC [M] drivers/md/dm-zoned-reclaim.o
2025-10-02T16:21:04.2154100Z CC [M] drivers/mmc/core/host.o
2025-10-02T16:21:04.2493414Z CC [M] drivers/mmc/host/sdhci_f_sdh30.o
2025-10-02T16:21:04.3433890Z CC [M] drivers/media/dvb-frontends/ves1x93.o
2025-10-02T16:21:04.7410855Z CC [M] drivers/media/test-drivers/vivid/vivid-cec.o
2025-10-02T16:21:05.0260761Z CC [M] drivers/md/dm-writecache.o
2025-10-02T16:21:05.1013272Z CC [M] drivers/mmc/host/wbsd.o
2025-10-02T16:21:05.1020934Z CC [M] drivers/media/dvb-frontends/tda1004x.o
2025-10-02T16:21:05.1327342Z CC [M] drivers/mmc/core/mmc.o
2025-10-02T16:21:05.7182970Z LD [M] drivers/media/test-drivers/vivid/vivid.o
2025-10-02T16:21:05.8141297Z CC [M] drivers/media/test-drivers/vicodec/vicodec-core.o
2025-10-02T16:21:06.3896849Z CC [M] drivers/mmc/host/alcor.o
2025-10-02T16:21:06.4850161Z CC [M] drivers/media/dvb-frontends/sp887x.o
2025-10-02T16:21:06.7496994Z CC [M] drivers/mmc/core/mmc_ops.o
2025-10-02T16:21:07.4171347Z LD [M] drivers/md/linear.o
2025-10-02T16:21:07.4182554Z CC [M] drivers/mmc/host/mtk-sd.o
2025-10-02T16:21:07.4304983Z LD [M] drivers/md/raid456.o
2025-10-02T16:21:07.4331061Z CC [M] drivers/media/dvb-frontends/nxt6000.o
2025-10-02T16:21:07.4468510Z CC [M] drivers/media/test-drivers/vicodec/codec-fwht.o
2025-10-02T16:21:07.4665776Z LD [M] drivers/md/multipath.o
2025-10-02T16:21:07.4803642Z LD [M] drivers/md/faulty.o
2025-10-02T16:21:07.4935840Z LD [M] drivers/md/md-mod.o
2025-10-02T16:21:07.5237173Z LD [M] drivers/md/dm-mod.o
2025-10-02T16:21:07.5685456Z LD [M] drivers/md/dm-bio-prison.o
2025-10-02T16:21:07.5843964Z LD [M] drivers/md/dm-multipath.o
2025-10-02T16:21:07.6014707Z LD [M] drivers/md/dm-snapshot.o
2025-10-02T16:21:07.6228914Z LD [M] drivers/md/dm-mirror.o
2025-10-02T16:21:07.6372068Z LD [M] drivers/md/dm-log-userspace.o
2025-10-02T16:21:07.6540073Z LD [M] drivers/md/dm-thin-pool.o
2025-10-02T16:21:07.6746665Z LD [M] drivers/md/dm-verity.o
2025-10-02T16:21:07.6931624Z LD [M] drivers/md/dm-cache.o
2025-10-02T16:21:07.7151826Z LD [M] drivers/md/dm-cache-smq.o
2025-10-02T16:21:07.7297194Z LD [M] drivers/md/dm-ebs.o
2025-10-02T16:21:07.7417372Z LD [M] drivers/md/dm-era.o
2025-10-02T16:21:07.7549905Z LD [M] drivers/md/dm-clone.o
2025-10-02T16:21:07.7706228Z LD [M] drivers/md/dm-zoned.o
2025-10-02T16:21:07.7900461Z AR drivers/md/built-in.a
2025-10-02T16:21:07.8270197Z CC [M] drivers/mmc/core/sd.o
2025-10-02T16:21:08.0403067Z CC [M] drivers/media/v4l2-core/v4l2-fwnode.o
2025-10-02T16:21:08.4172837Z CC [M] drivers/media/test-drivers/vicodec/codec-v4l2-fwht.o
2025-10-02T16:21:08.5472289Z CC [M] drivers/media/dvb-frontends/mt352.o
2025-10-02T16:21:08.7257076Z LD [M] drivers/media/test-drivers/vicodec/vicodec.o
2025-10-02T16:21:08.7820729Z CC [M] drivers/media/test-drivers/vidtv/vidtv_tuner.o
2025-10-02T16:21:08.8475967Z CC [M] drivers/mmc/core/sd_ops.o
2025-10-02T16:21:09.4395809Z CC [M] drivers/mmc/host/tifm_sd.o
2025-10-02T16:21:09.4665558Z CC [M] drivers/media/v4l2-core/v4l2-dev.o
2025-10-02T16:21:09.5364219Z CC [M] drivers/media/dvb-frontends/zl10036.o
2025-10-02T16:21:09.5509151Z CC [M] drivers/media/test-drivers/vidtv/vidtv_demod.o
2025-10-02T16:21:09.6474307Z CC [M] drivers/mmc/core/sdio.o
2025-10-02T16:21:10.3823964Z CC [M] drivers/media/test-drivers/vidtv/vidtv_bridge.o
2025-10-02T16:21:10.4114095Z CC [M] drivers/media/dvb-frontends/zl10039.o
2025-10-02T16:21:10.6157589Z CC [M] drivers/mmc/host/mmc_spi.o
2025-10-02T16:21:10.6395203Z CC [M] drivers/mmc/core/sdio_ops.o
2025-10-02T16:21:10.7112070Z CC [M] drivers/media/v4l2-core/v4l2-ioctl.o
2025-10-02T16:21:11.1684755Z CC [M] drivers/media/test-drivers/vidtv/vidtv_common.o
2025-10-02T16:21:11.2350686Z CC [M] drivers/media/dvb-frontends/zl10353.o
2025-10-02T16:21:11.4871390Z CC [M] drivers/mmc/core/sdio_bus.o
2025-10-02T16:21:11.6343790Z CC [M] drivers/media/test-drivers/vidtv/vidtv_ts.o
2025-10-02T16:21:11.7964530Z CC [M] drivers/mmc/host/sdricoh_cs.o
2025-10-02T16:21:12.0827102Z CC [M] drivers/media/dvb-frontends/cx22702.o
2025-10-02T16:21:12.1229259Z CC [M] drivers/media/test-drivers/vidtv/vidtv_psi.o
2025-10-02T16:21:12.2878583Z CC [M] drivers/mmc/core/sdio_cis.o
2025-10-02T16:21:12.6293052Z CC [M] drivers/mmc/host/cb710-mmc.o
2025-10-02T16:21:12.9194721Z CC [M] drivers/media/dvb-frontends/drxd_firm.o
2025-10-02T16:21:13.0166470Z CC [M] drivers/media/dvb-frontends/drxd_hard.o
2025-10-02T16:21:13.1174683Z CC [M] drivers/mmc/core/sdio_io.o
2025-10-02T16:21:13.2886253Z CC [M] drivers/media/v4l2-core/v4l2-device.o
2025-10-02T16:21:13.3432264Z CC [M] drivers/media/test-drivers/vidtv/vidtv_pes.o
2025-10-02T16:21:13.7488004Z CC [M] drivers/media/test-drivers/vidtv/vidtv_s302m.o
2025-10-02T16:21:13.8763752Z CC [M] drivers/mmc/host/via-sdmmc.o
2025-10-02T16:21:13.9596182Z CC [M] drivers/mmc/core/sdio_irq.o
2025-10-02T16:21:14.2872129Z CC [M] drivers/media/v4l2-core/v4l2-fh.o
2025-10-02T16:21:14.3429790Z CC [M] drivers/media/test-drivers/vidtv/vidtv_channel.o
2025-10-02T16:21:14.5931662Z CC [M] drivers/mmc/core/slot-gpio.o
2025-10-02T16:21:14.7966608Z CC [M] drivers/media/dvb-frontends/tda10021.o
2025-10-02T16:21:14.9887956Z CC [M] drivers/media/v4l2-core/v4l2-event.o
2025-10-02T16:21:15.0224700Z CC [M] drivers/mmc/host/vub300.o
2025-10-02T16:21:15.1252091Z CC [M] drivers/mmc/core/regulator.o
2025-10-02T16:21:15.3555370Z CC [M] drivers/media/test-drivers/vidtv/vidtv_mux.o
2025-10-02T16:21:15.5630798Z CC [M] drivers/media/dvb-frontends/tda10023.o
2025-10-02T16:21:15.8567185Z CC [M] drivers/media/v4l2-core/v4l2-ctrls.o
2025-10-02T16:21:16.2170464Z CC [M] drivers/mmc/core/debugfs.o
2025-10-02T16:21:16.2273837Z LD [M] drivers/media/test-drivers/vidtv/dvb-vidtv-tuner.o
2025-10-02T16:21:16.2406642Z LD [M] drivers/media/test-drivers/vidtv/dvb-vidtv-demod.o
2025-10-02T16:21:16.2546751Z LD [M] drivers/media/test-drivers/vidtv/dvb-vidtv-bridge.o
2025-10-02T16:21:16.3145085Z AR drivers/media/test-drivers/built-in.a
2025-10-02T16:21:16.3327777Z CC [M] drivers/media/test-drivers/vim2m.o
2025-10-02T16:21:16.3661423Z CC [M] drivers/media/dvb-frontends/stv0297.o
2025-10-02T16:21:16.8303188Z CC [M] drivers/mmc/core/block.o
2025-10-02T16:21:16.9805265Z CC [M] drivers/mmc/host/ushc.o
2025-10-02T16:21:17.4613018Z CC [M] drivers/media/dvb-frontends/nxt200x.o
2025-10-02T16:21:17.7584438Z CC [M] drivers/media/v4l2-core/v4l2-subdev.o
2025-10-02T16:21:17.9794319Z CC [M] drivers/mmc/host/usdhi6rol0.o
2025-10-02T16:21:18.6236569Z CC [M] drivers/media/dvb-frontends/or51211.o
2025-10-02T16:21:18.8592608Z CC drivers/leds/trigger/ledtrig-disk.o
2025-10-02T16:21:19.0707323Z CC [M] drivers/mmc/core/queue.o
2025-10-02T16:21:19.0939852Z CC [M] drivers/media/v4l2-core/v4l2-clk.o
2025-10-02T16:21:19.2871933Z CC drivers/leds/trigger/ledtrig-mtd.o
2025-10-02T16:21:19.4734605Z CC [M] drivers/media/dvb-frontends/or51132.o
2025-10-02T16:21:19.7241137Z CC [M] drivers/mmc/host/toshsd.o
2025-10-02T16:21:19.7964396Z CC drivers/leds/trigger/ledtrig-cpu.o
2025-10-02T16:21:19.9531352Z CC [M] drivers/media/v4l2-core/v4l2-async.o
2025-10-02T16:21:20.0231054Z CC [M] drivers/mmc/core/mmc_test.o
2025-10-02T16:21:20.2751911Z CC drivers/leds/trigger/ledtrig-panic.o
2025-10-02T16:21:20.3721749Z CC [M] drivers/media/dvb-frontends/bcm3510.o
2025-10-02T16:21:20.7541878Z CC [M] drivers/leds/trigger/ledtrig-timer.o
2025-10-02T16:21:20.7894181Z CC [M] drivers/mmc/host/rtsx_pci_sdmmc.o
2025-10-02T16:21:21.1420401Z CC [M] drivers/media/v4l2-core/v4l2-common.o
2025-10-02T16:21:21.2214123Z CC [M] drivers/leds/trigger/ledtrig-oneshot.o
2025-10-02T16:21:21.5635300Z CC [M] drivers/media/dvb-frontends/s5h1420.o
2025-10-02T16:21:21.8035459Z CC [M] drivers/leds/trigger/ledtrig-heartbeat.o
2025-10-02T16:21:21.9306681Z CC [M] drivers/mmc/host/rtsx_usb_sdmmc.o
2025-10-02T16:21:22.0666720Z CC [M] drivers/media/v4l2-core/v4l2-compat-ioctl32.o
2025-10-02T16:21:22.4518759Z CC [M] drivers/mmc/core/sdio_uart.o
2025-10-02T16:21:22.4901325Z CC [M] drivers/leds/trigger/ledtrig-backlight.o
2025-10-02T16:21:22.7228493Z CC [M] drivers/media/dvb-frontends/lgdt330x.o
2025-10-02T16:21:23.1865799Z CC [M] drivers/mmc/host/sdhci-pltfm.o
2025-10-02T16:21:23.2583965Z CC [M] drivers/leds/trigger/ledtrig-gpio.o
2025-10-02T16:21:23.6274406Z LD [M] drivers/mmc/core/mmc_core.o
2025-10-02T16:21:23.6509989Z CC [M] drivers/media/dvb-frontends/lgdt3305.o
2025-10-02T16:21:23.6763854Z LD [M] drivers/mmc/core/mmc_block.o
2025-10-02T16:21:23.7225078Z CC drivers/leds/led-core.o
2025-10-02T16:21:23.8490070Z CC [M] drivers/mmc/host/cqhci.o
2025-10-02T16:21:23.9042465Z CC [M] drivers/leds/trigger/ledtrig-activity.o
2025-10-02T16:21:24.0786481Z CC [M] drivers/media/v4l2-core/v4l2-trace.o
2025-10-02T16:21:24.3476302Z CC [M] drivers/media/dvb-core/dvbdev.o
2025-10-02T16:21:24.6888318Z CC [M] drivers/leds/trigger/ledtrig-default-on.o
2025-10-02T16:21:24.9175372Z CC [M] drivers/media/dvb-frontends/lgdt3306a.o
2025-10-02T16:21:25.1364705Z CC [M] drivers/leds/trigger/ledtrig-transient.o
2025-10-02T16:21:25.1398460Z CC [M] drivers/media/v4l2-core/v4l2-mc.o
2025-10-02T16:21:25.1567274Z CC [M] drivers/mmc/host/mmc_hsq.o
2025-10-02T16:21:25.4894288Z CC [M] drivers/media/dvb-core/dmxdev.o
2025-10-02T16:21:25.7857229Z CC [M] drivers/mmc/host/sdhci-xenon.o
2025-10-02T16:21:25.8597057Z CC [M] drivers/leds/trigger/ledtrig-camera.o
2025-10-02T16:21:26.0793891Z CC [M] drivers/media/v4l2-core/v4l2-spi.o
2025-10-02T16:21:26.2559266Z CC [M] drivers/media/dvb-frontends/lg2160.o
2025-10-02T16:21:26.4533297Z CC [M] drivers/leds/trigger/ledtrig-netdev.o
2025-10-02T16:21:26.7034865Z CC [M] drivers/media/dvb-core/dvb_demux.o
2025-10-02T16:21:26.8134615Z CC [M] drivers/mmc/host/sdhci-xenon-phy.o
2025-10-02T16:21:26.8495186Z CC [M] drivers/media/v4l2-core/v4l2-i2c.o
2025-10-02T16:21:27.2302855Z CC [M] drivers/media/dvb-frontends/cx24123.o
2025-10-02T16:21:27.6300492Z CC [M] drivers/media/v4l2-core/v4l2-dv-timings.o
2025-10-02T16:21:27.6551247Z LD [M] drivers/mmc/host/sdhci-pci.o
2025-10-02T16:21:27.6893886Z LD [M] drivers/mmc/host/sdhci-xenon-driver.o
2025-10-02T16:21:27.7148861Z AR drivers/mmc/host/built-in.a
2025-10-02T16:21:27.7494844Z CC [M] drivers/leds/trigger/ledtrig-pattern.o
2025-10-02T16:21:27.7713414Z CC [M] drivers/media/dvb-core/dvb_ca_en50221.o
2025-10-02T16:21:27.9417835Z AR drivers/mmc/built-in.a
2025-10-02T16:21:27.9817822Z CC [M] drivers/leds/trigger/ledtrig-audio.o
2025-10-02T16:21:28.2239711Z CC [M] drivers/media/dvb-frontends/lnbh25.o
2025-10-02T16:21:28.4982666Z CC [M] drivers/media/dvb-core/dvb_frontend.o
2025-10-02T16:21:28.6069825Z AR drivers/leds/trigger/built-in.a
2025-10-02T16:21:28.7418666Z CC [M] drivers/media/v4l2-core/tuner-core.o
2025-10-02T16:21:28.7454332Z CC drivers/leds/led-class.o
2025-10-02T16:21:28.8886123Z CC [M] drivers/media/dvb-frontends/lnbp21.o
2025-10-02T16:21:28.8920574Z CC [M] drivers/media/v4l2-core/v4l2-mem2mem.o
2025-10-02T16:21:29.4419933Z CC drivers/leds/led-triggers.o
2025-10-02T16:21:29.6055887Z CC [M] drivers/media/dvb-frontends/lnbp22.o
2025-10-02T16:21:30.2211793Z CC [M] drivers/media/dvb-core/dvb_net.o
2025-10-02T16:21:30.2241835Z CC [M] drivers/media/cec/core/cec-core.o
2025-10-02T16:21:30.2408364Z CC [M] drivers/media/v4l2-core/v4l2-flash-led-class.o
2025-10-02T16:21:30.2858519Z CC [M] drivers/media/dvb-frontends/isl6405.o
2025-10-02T16:21:30.2905354Z CC [M] drivers/leds/led-class-flash.o
2025-10-02T16:21:30.9338177Z CC [M] drivers/media/dvb-frontends/isl6421.o
2025-10-02T16:21:30.9673639Z CC [M] drivers/media/cec/core/cec-adap.o
2025-10-02T16:21:31.0884073Z CC [M] drivers/leds/led-class-multicolor.o
2025-10-02T16:21:31.2556109Z CC [M] drivers/media/v4l2-core/videobuf-core.o
2025-10-02T16:21:31.6441623Z CC [M] drivers/media/dvb-frontends/tda10086.o
2025-10-02T16:21:31.6815413Z CC [M] drivers/media/dvb-core/dvb_ringbuffer.o
2025-10-02T16:21:31.7218018Z CC [M] drivers/leds/leds-88pm860x.o
2025-10-02T16:21:32.3256081Z CC [M] drivers/media/dvb-core/dvb_vb2.o
2025-10-02T16:21:32.3661753Z CC [M] drivers/leds/leds-adp5520.o
2025-10-02T16:21:32.6024735Z CC [M] drivers/media/v4l2-core/videobuf-dma-sg.o
2025-10-02T16:21:32.7000118Z CC [M] drivers/media/dvb-frontends/tda826x.o
2025-10-02T16:21:32.8012785Z CC [M] drivers/media/cec/core/cec-api.o
2025-10-02T16:21:32.9953066Z CC [M] drivers/leds/leds-apu.o
2025-10-02T16:21:33.2314879Z CC [M] drivers/media/dvb-core/dvb_math.o
2025-10-02T16:21:33.5316163Z CC [M] drivers/media/dvb-frontends/tda8261.o
2025-10-02T16:21:33.5858139Z CC [M] drivers/media/v4l2-core/videobuf-vmalloc.o
2025-10-02T16:21:33.6360899Z CC [M] drivers/leds/leds-as3645a.o
2025-10-02T16:21:33.6690162Z LD [M] drivers/media/dvb-core/dvb-core.o
2025-10-02T16:21:33.7657768Z CC [M] drivers/leds/leds-bd2802.o
2025-10-02T16:21:33.7891827Z CC [M] drivers/media/cec/core/cec-notifier.o
2025-10-02T16:21:34.2156759Z CC [M] drivers/media/dvb-frontends/dib0070.o
2025-10-02T16:21:34.3166160Z LD [M] drivers/media/v4l2-core/videodev.o
2025-10-02T16:21:34.3701625Z LD [M] drivers/media/v4l2-core/tuner.o
2025-10-02T16:21:34.4828727Z CC [M] drivers/media/cec/i2c/ch7322.o
2025-10-02T16:21:34.6659267Z CC [M] drivers/media/cec/core/cec-pin.o
2025-10-02T16:21:34.7562663Z AR drivers/firmware/arm_scmi/built-in.a
2025-10-02T16:21:34.8023077Z CC [M] drivers/leds/leds-blinkm.o
2025-10-02T16:21:34.8240167Z AR drivers/firmware/broadcom/built-in.a
2025-10-02T16:21:34.8991357Z AR drivers/firmware/meson/built-in.a
2025-10-02T16:21:34.9710511Z AR drivers/firmware/google/built-in.a
2025-10-02T16:21:34.9966621Z CC [M] drivers/firmware/google/coreboot_table.o
2025-10-02T16:21:35.2364178Z CC [M] drivers/media/dvb-frontends/dib0090.o
2025-10-02T16:21:35.5306240Z CC [M] drivers/leds/leds-clevo-mail.o
2025-10-02T16:21:35.5418900Z CC [M] drivers/leds/leds-da903x.o
2025-10-02T16:21:35.6678130Z CC [M] drivers/firmware/google/framebuffer-coreboot.o
2025-10-02T16:21:35.7394418Z LD [M] drivers/media/cec/core/cec.o
2025-10-02T16:21:35.8762809Z CC [M] drivers/media/cec/platform/cros-ec/cros-ec-cec.o
2025-10-02T16:21:36.0447239Z AR drivers/crypto/ccp/built-in.a
2025-10-02T16:21:36.0665238Z CC [M] drivers/crypto/ccp/sp-dev.o
2025-10-02T16:21:36.0940455Z CC [M] drivers/leds/leds-da9052.o
2025-10-02T16:21:36.4905495Z CC [M] drivers/firmware/google/memconsole.o
2025-10-02T16:21:36.6231663Z CC [M] drivers/leds/leds-gpio.o
2025-10-02T16:21:36.6907046Z CC [M] drivers/media/cec/platform/cec-gpio/cec-gpio.o
2025-10-02T16:21:36.7942528Z CC [M] drivers/crypto/ccp/sp-platform.o
2025-10-02T16:21:36.8412997Z CC [M] drivers/media/dvb-frontends/tua6100.o
2025-10-02T16:21:36.9194728Z CC [M] drivers/firmware/google/memconsole-coreboot.o
2025-10-02T16:21:37.3394915Z CC [M] drivers/leds/leds-ss4200.o
2025-10-02T16:21:37.3884864Z CC [M] drivers/firmware/google/vpd.o
2025-10-02T16:21:37.4489153Z CC [M] drivers/media/cec/platform/seco/seco-cec.o
2025-10-02T16:21:37.5380085Z CC [M] drivers/crypto/ccp/ccp-dev.o
2025-10-02T16:21:37.5709408Z CC [M] drivers/media/dvb-frontends/s5h1409.o
2025-10-02T16:21:38.0327489Z CC [M] drivers/firmware/google/vpd_decode.o
2025-10-02T16:21:38.1512320Z CC [M] drivers/leds/leds-lm3530.o
2025-10-02T16:21:38.2248720Z LD [M] drivers/firmware/google/vpd-sysfs.o
2025-10-02T16:21:38.4116842Z CC [M] drivers/media/dvb-frontends/itd1000.o
2025-10-02T16:21:38.4388284Z CC drivers/firmware/efi/libstub/efi-stub-helper.o
2025-10-02T16:21:38.4537521Z CC [M] drivers/crypto/ccp/ccp-ops.o
2025-10-02T16:21:38.5686170Z CC [M] drivers/media/cec/usb/pulse8/pulse8-cec.o
2025-10-02T16:21:39.1014174Z CC [M] drivers/leds/leds-lm3532.o
2025-10-02T16:21:39.1903327Z CC [M] drivers/media/dvb-frontends/au8522_common.o
2025-10-02T16:21:39.5026804Z CC drivers/firmware/efi/libstub/gop.o
2025-10-02T16:21:39.8972883Z CC [M] drivers/media/cec/usb/rainshadow/rainshadow-cec.o
2025-10-02T16:21:40.1454296Z CC [M] drivers/crypto/ccp/ccp-dev-v3.o
2025-10-02T16:21:40.1840323Z CC [M] drivers/media/dvb-frontends/au8522_dig.o
2025-10-02T16:21:40.2167584Z CC [M] drivers/leds/leds-lm3533.o
2025-10-02T16:21:40.3400734Z CC drivers/firmware/efi/libstub/secureboot.o
2025-10-02T16:21:40.8550243Z CC [M] drivers/media/dvb-frontends/au8522_decoder.o
2025-10-02T16:21:40.9151153Z CC [M] drivers/leds/leds-lm355x.o
2025-10-02T16:21:41.0189942Z CC drivers/firmware/efi/libstub/tpm.o
2025-10-02T16:21:41.1007672Z CC [M] drivers/crypto/ccp/ccp-dev-v5.o
2025-10-02T16:21:41.2201154Z CC [M] drivers/leds/leds-lm3601x.o
2025-10-02T16:21:41.6637906Z AR drivers/crypto/hisilicon/built-in.a
2025-10-02T16:21:41.7097166Z CC [M] drivers/crypto/ccp/ccp-dmaengine.o
2025-10-02T16:21:41.7727233Z CC [M] drivers/media/dvb-frontends/tda10048.o
2025-10-02T16:21:41.8505220Z CC drivers/firmware/efi/libstub/file.o
2025-10-02T16:21:41.9201447Z CC [M] drivers/leds/leds-lm36274.o
2025-10-02T16:21:42.1640972Z AR drivers/firmware/imx/built-in.a
2025-10-02T16:21:42.2281483Z CC drivers/clocksource/acpi_pm.o
2025-10-02T16:21:42.5386790Z CC drivers/firmware/efi/libstub/mem.o
2025-10-02T16:21:42.6890483Z CC [M] drivers/crypto/ccp/ccp-debugfs.o
2025-10-02T16:21:42.7617967Z CC [M] drivers/media/dvb-frontends/cx24113.o
2025-10-02T16:21:42.7776993Z CC [M] drivers/leds/leds-lm3642.o
2025-10-02T16:21:43.0127914Z CC drivers/clocksource/i8253.o
2025-10-02T16:21:43.2972971Z CC drivers/firmware/efi/libstub/random.o
2025-10-02T16:21:43.4255795Z CC [M] drivers/leds/leds-lp3944.o
2025-10-02T16:21:43.4639953Z CC [M] drivers/crypto/ccp/sp-pci.o
2025-10-02T16:21:43.4971535Z CC drivers/clocksource/hyperv_timer.o
2025-10-02T16:21:43.6507580Z CC [M] drivers/media/dvb-frontends/s5h1411.o
2025-10-02T16:21:44.1004635Z CC [M] drivers/leds/leds-lp3952.o
2025-10-02T16:21:44.1630810Z CC drivers/firmware/efi/libstub/randomalloc.o
2025-10-02T16:21:44.2111861Z AR drivers/clocksource/built-in.a
2025-10-02T16:21:44.2509660Z CC [M] drivers/crypto/chelsio/chcr_core.o
2025-10-02T16:21:44.2571340Z CC [M] drivers/crypto/ccp/psp-dev.o
2025-10-02T16:21:44.4928952Z CC [M] drivers/media/dvb-frontends/tda665x.o
2025-10-02T16:21:44.7931395Z CC [M] drivers/leds/leds-lp50xx.o
2025-10-02T16:21:44.9941262Z CC drivers/firmware/efi/libstub/pci.o
2025-10-02T16:21:45.1415166Z CC [M] drivers/media/dvb-frontends/lgs8gxx.o
2025-10-02T16:21:45.1993806Z CC [M] drivers/crypto/ccp/sev-dev.o
2025-10-02T16:21:45.5934942Z CC [M] drivers/crypto/chelsio/chcr_algo.o
2025-10-02T16:21:45.7755154Z CC [M] drivers/leds/leds-lp8788.o
2025-10-02T16:21:45.9256062Z CC drivers/firmware/efi/libstub/skip_spaces.o
2025-10-02T16:21:46.0825299Z CC drivers/firmware/efi/libstub/lib-cmdline.o
2025-10-02T16:21:46.1477862Z CC [M] drivers/media/dvb-frontends/atbm8830.o
2025-10-02T16:21:46.2353665Z CC drivers/firmware/efi/libstub/lib-ctype.o
2025-10-02T16:21:46.2911397Z CC drivers/firmware/efi/libstub/alignedmem.o
2025-10-02T16:21:46.4081952Z CC [M] drivers/crypto/ccp/tee-dev.o
2025-10-02T16:21:46.5142181Z CC [M] drivers/leds/leds-max8997.o
2025-10-02T16:21:47.0001053Z CC drivers/firmware/efi/libstub/relocate.o
2025-10-02T16:21:47.0716905Z CC [M] drivers/media/dvb-frontends/dvb_dummy_fe.o
2025-10-02T16:21:47.4097651Z CC [M] drivers/crypto/ccp/ccp-crypto-main.o
2025-10-02T16:21:47.5834278Z CC [M] drivers/leds/leds-mc13783.o
2025-10-02T16:21:47.7072721Z CC drivers/firmware/efi/libstub/vsprintf.o
2025-10-02T16:21:47.8304972Z CC [M] drivers/media/dvb-frontends/af9013.o
2025-10-02T16:21:48.1116732Z CC [M] drivers/leds/leds-menf21bmc.o
2025-10-02T16:21:48.1199955Z CC drivers/firmware/efi/libstub/x86-stub.o
2025-10-02T16:21:48.1353255Z CC [M] drivers/crypto/ccp/ccp-crypto-aes.o
2025-10-02T16:21:48.7031192Z CC [M] drivers/leds/leds-mlxcpld.o
2025-10-02T16:21:48.7887465Z CC [M] drivers/crypto/ccp/ccp-crypto-aes-cmac.o
2025-10-02T16:21:49.1414499Z LD [M] drivers/crypto/chelsio/chcr.o
2025-10-02T16:21:49.1900659Z CC [M] drivers/crypto/ccp/ccp-crypto-aes-xts.o
2025-10-02T16:21:49.1930652Z STUBCPY drivers/firmware/efi/libstub/alignedmem.stub.o
2025-10-02T16:21:49.2193284Z STUBCPY drivers/firmware/efi/libstub/efi-stub-helper.stub.o
2025-10-02T16:21:49.2547413Z STUBCPY drivers/firmware/efi/libstub/file.stub.o
2025-10-02T16:21:49.2855397Z CC [M] drivers/leds/leds-mlxreg.o
2025-10-02T16:21:49.2924341Z STUBCPY drivers/firmware/efi/libstub/gop.stub.o
2025-10-02T16:21:49.3203123Z STUBCPY drivers/firmware/efi/libstub/lib-cmdline.stub.o
2025-10-02T16:21:49.3393243Z CC [M] drivers/media/dvb-frontends/cx24116.o
2025-10-02T16:21:49.3545163Z STUBCPY drivers/firmware/efi/libstub/lib-ctype.stub.o
2025-10-02T16:21:49.3811215Z STUBCPY drivers/firmware/efi/libstub/mem.stub.o
2025-10-02T16:21:49.4311088Z STUBCPY drivers/firmware/efi/libstub/pci.stub.o
2025-10-02T16:21:49.4852780Z STUBCPY drivers/firmware/efi/libstub/random.stub.o
2025-10-02T16:21:49.5377085Z STUBCPY drivers/firmware/efi/libstub/randomalloc.stub.o
2025-10-02T16:21:49.5747228Z STUBCPY drivers/firmware/efi/libstub/relocate.stub.o
2025-10-02T16:21:49.6085287Z STUBCPY drivers/firmware/efi/libstub/secureboot.stub.o
2025-10-02T16:21:49.6282562Z CC [M] drivers/crypto/ccp/ccp-crypto-aes-galois.o
2025-10-02T16:21:49.6429939Z STUBCPY drivers/firmware/efi/libstub/skip_spaces.stub.o
2025-10-02T16:21:49.6709445Z STUBCPY drivers/firmware/efi/libstub/tpm.stub.o
2025-10-02T16:21:49.6988191Z STUBCPY drivers/firmware/efi/libstub/vsprintf.stub.o
2025-10-02T16:21:49.7264281Z STUBCPY drivers/firmware/efi/libstub/x86-stub.stub.o
2025-10-02T16:21:49.7547431Z AR drivers/firmware/efi/libstub/lib.a
2025-10-02T16:21:49.7853887Z CC drivers/firmware/efi/efi-bgrt.o
2025-10-02T16:21:49.8593984Z CC [M] drivers/leds/leds-mt6323.o
2025-10-02T16:21:49.9000916Z CC [M] drivers/crypto/cavium/nitrox/nitrox_main.o
2025-10-02T16:21:50.3761407Z CC [M] drivers/media/dvb-frontends/cx24117.o
2025-10-02T16:21:50.4021241Z CC drivers/firmware/efi/efi.o
2025-10-02T16:21:50.4227901Z CC [M] drivers/crypto/ccp/ccp-crypto-des3.o
2025-10-02T16:21:50.4738116Z CC [M] drivers/leds/leds-nic78bx.o
2025-10-02T16:21:50.6988653Z CC [M] drivers/crypto/cavium/nitrox/nitrox_isr.o
2025-10-02T16:21:51.0041198Z CC [M] drivers/leds/leds-pca9532.o
2025-10-02T16:21:51.2334147Z CC [M] drivers/crypto/ccp/ccp-crypto-rsa.o
2025-10-02T16:21:51.6145759Z CC drivers/firmware/efi/vars.o
2025-10-02T16:21:51.6437699Z CC [M] drivers/crypto/cavium/nitrox/nitrox_lib.o
2025-10-02T16:21:51.6656510Z CC [M] drivers/media/dvb-frontends/cx24120.o
2025-10-02T16:21:51.8398283Z CC [M] drivers/leds/leds-pca955x.o
2025-10-02T16:21:52.0771756Z CC [M] drivers/crypto/ccp/ccp-crypto-sha.o
2025-10-02T16:21:52.4986882Z CC [M] drivers/crypto/cavium/nitrox/nitrox_hal.o
2025-10-02T16:21:52.6025141Z CC [M] drivers/leds/leds-pca963x.o
2025-10-02T16:21:52.6876826Z CC drivers/firmware/efi/reboot.o
2025-10-02T16:21:52.9456733Z CC [M] drivers/media/dvb-frontends/si21xx.o
2025-10-02T16:21:52.9496274Z LD [M] drivers/crypto/ccp/ccp.o
2025-10-02T16:21:53.0240667Z LD [M] drivers/crypto/ccp/ccp-crypto.o
2025-10-02T16:21:53.1087481Z CC [M] drivers/leds/leds-pwm.o
2025-10-02T16:21:53.2028104Z CC drivers/firmware/efi/memattr.o
2025-10-02T16:21:53.3103334Z CC [M] drivers/media/radio/si470x/radio-si470x-common.o
2025-10-02T16:21:53.3470874Z CC [M] drivers/crypto/cavium/nitrox/nitrox_reqmgr.o
2025-10-02T16:21:53.6515200Z CC [M] drivers/leds/leds-regulator.o
2025-10-02T16:21:53.8475420Z CC drivers/firmware/efi/tpm.o
2025-10-02T16:21:53.9077431Z CC [M] drivers/media/dvb-frontends/si2168.o
2025-10-02T16:21:54.2714663Z CC [M] drivers/media/radio/si470x/radio-si470x-usb.o
2025-10-02T16:21:54.3820702Z CC [M] drivers/crypto/cavium/nitrox/nitrox_algs.o
2025-10-02T16:21:54.4768736Z CC [M] drivers/leds/leds-sgm3140.o
2025-10-02T16:21:54.7829825Z CC drivers/firmware/efi/capsule.o
2025-10-02T16:21:54.8836798Z CC [M] drivers/media/dvb-frontends/stv0288.o
2025-10-02T16:21:54.9375201Z CC [M] drivers/crypto/cavium/nitrox/nitrox_mbx.o
2025-10-02T16:21:55.3612606Z CC [M] drivers/media/radio/si470x/radio-si470x-i2c.o
2025-10-02T16:21:55.3762603Z CC [M] drivers/leds/leds-tca6507.o
2025-10-02T16:21:55.5041024Z CC drivers/firmware/efi/memmap.o
2025-10-02T16:21:55.6965859Z CC [M] drivers/media/dvb-frontends/stb6000.o
2025-10-02T16:21:55.8112961Z CC [M] drivers/crypto/cavium/nitrox/nitrox_skcipher.o
2025-10-02T16:21:56.3099991Z CC drivers/firmware/efi/esrt.o
2025-10-02T16:21:56.3585844Z CC [M] drivers/leds/leds-ti-lmu-common.o
2025-10-02T16:21:56.4117186Z CC [M] drivers/media/radio/si4713/si4713.o
2025-10-02T16:21:56.4516629Z CC [M] drivers/media/dvb-frontends/s921.o
2025-10-02T16:21:56.8336221Z CC [M] drivers/crypto/cavium/nitrox/nitrox_aead.o
2025-10-02T16:21:56.9103866Z CC [M] drivers/leds/leds-tlc591xx.o
2025-10-02T16:21:57.1411518Z CC drivers/firmware/efi/efi-pstore.o
2025-10-02T16:21:57.2607585Z CC [M] drivers/media/dvb-frontends/stv6110.o
2025-10-02T16:21:57.5400950Z CC [M] drivers/leds/leds-tps6105x.o
2025-10-02T16:21:57.8604905Z CC [M] drivers/media/radio/si4713/radio-usb-si4713.o
2025-10-02T16:21:57.9520360Z CC drivers/firmware/efi/cper.o
2025-10-02T16:21:57.9864419Z CC [M] drivers/media/dvb-frontends/stv0900_core.o
2025-10-02T16:21:58.2006762Z CC [M] drivers/crypto/cavium/nitrox/nitrox_sriov.o
2025-10-02T16:21:58.4395557Z CC [M] drivers/leds/leds-wm831x-status.o
2025-10-02T16:21:58.9115477Z CC [M] drivers/crypto/cavium/nitrox/nitrox_debugfs.o
2025-10-02T16:21:59.0056110Z CC [M] drivers/leds/leds-wm8350.o
2025-10-02T16:21:59.0228835Z CC [M] drivers/media/radio/si4713/radio-platform-si4713.o
2025-10-02T16:21:59.0320501Z CC drivers/firmware/efi/runtime-map.o
2025-10-02T16:21:59.4787538Z CC [M] drivers/media/dvb-frontends/stv0900_sw.o
2025-10-02T16:21:59.5032735Z LD [M] drivers/crypto/cavium/nitrox/n5pf.o
2025-10-02T16:21:59.5989897Z CC [M] drivers/crypto/qat/qat_common/adf_cfg.o
2025-10-02T16:21:59.7648209Z CC [M] drivers/leds/leds-dac124s085.o
2025-10-02T16:21:59.8022008Z CC drivers/firmware/efi/runtime-wrappers.o
2025-10-02T16:22:00.1301776Z CC [M] drivers/media/radio/wl128x/fmdrv_common.o
2025-10-02T16:22:00.3987353Z CC [M] drivers/crypto/qat/qat_common/adf_isr.o
2025-10-02T16:22:00.4725324Z CC [M] drivers/leds/uleds.o
2025-10-02T16:22:00.9623291Z CC drivers/firmware/efi/dev-path-parser.o
2025-10-02T16:22:01.2937568Z AR drivers/leds/built-in.a
2025-10-02T16:22:01.3391877Z CC [M] drivers/crypto/qat/qat_common/adf_ctl_drv.o
2025-10-02T16:22:01.3806083Z CC [M] drivers/media/dvb-frontends/stv090x.o
2025-10-02T16:22:01.5545922Z CC [M] drivers/media/radio/wl128x/fmdrv_rx.o
2025-10-02T16:22:01.6200448Z CC drivers/firmware/efi/apple-properties.o
2025-10-02T16:22:01.6331649Z CC [M] drivers/crypto/qat/qat_dh895xcc/adf_drv.o
2025-10-02T16:22:02.1961243Z CC [M] drivers/crypto/qat/qat_common/adf_dev_mgr.o
2025-10-02T16:22:02.2669307Z CC drivers/firmware/efi/rci2-table.o
2025-10-02T16:22:02.6296478Z CC [M] drivers/crypto/qat/qat_dh895xcc/adf_dh895xcc_hw_data.o
2025-10-02T16:22:02.7070086Z CC [M] drivers/media/radio/wl128x/fmdrv_tx.o
2025-10-02T16:22:02.8101753Z CC drivers/firmware/efi/embedded-firmware.o
2025-10-02T16:22:02.9308612Z CC [M] drivers/crypto/qat/qat_common/adf_init.o
2025-10-02T16:22:03.3864827Z CC drivers/firmware/efi/earlycon.o
2025-10-02T16:22:03.5873849Z LD [M] drivers/crypto/qat/qat_dh895xcc/qat_dh895xcc.o
2025-10-02T16:22:03.6166070Z CC [M] drivers/media/radio/wl128x/fmdrv_v4l2.o
2025-10-02T16:22:03.6594670Z AR drivers/firmware/psci/built-in.a
2025-10-02T16:22:03.6898372Z AR drivers/media/built-in.a
2025-10-02T16:22:03.7067500Z CC [M] drivers/crypto/qat/qat_common/adf_accel_engine.o
2025-10-02T16:22:03.7246120Z CC [M] drivers/crypto/qat/qat_common/adf_aer.o
2025-10-02T16:22:03.9953157Z CC drivers/firmware/efi/cper-x86.o
2025-10-02T16:22:04.4918169Z CC [M] drivers/firmware/efi/efibc.o
2025-10-02T16:22:04.5244257Z CC [M] drivers/crypto/qat/qat_common/adf_transport.o
2025-10-02T16:22:04.5388086Z CC [M] drivers/crypto/qat/qat_c3xxx/adf_drv.o
2025-10-02T16:22:04.5637936Z LD [M] drivers/media/radio/wl128x/fm_drv.o
2025-10-02T16:22:04.6366652Z CC [M] drivers/media/radio/radio-maxiradio.o
2025-10-02T16:22:05.1265891Z CC [M] drivers/firmware/efi/capsule-loader.o
2025-10-02T16:22:05.2579727Z CC [M] drivers/crypto/qat/qat_c3xxx/adf_c3xxx_hw_data.o
2025-10-02T16:22:05.3499367Z CC [M] drivers/media/dvb-frontends/stv6110x.o
2025-10-02T16:22:05.4210976Z CC [M] drivers/media/radio/radio-shark.o
2025-10-02T16:22:05.4970231Z CC [M] drivers/crypto/qat/qat_common/adf_admin.o
2025-10-02T16:22:05.8388565Z AR drivers/firmware/efi/built-in.a
2025-10-02T16:22:05.8920075Z AR drivers/firmware/smccc/built-in.a
2025-10-02T16:22:05.9330618Z AR drivers/firmware/tegra/built-in.a
2025-10-02T16:22:05.9681153Z AR drivers/firmware/xilinx/built-in.a
2025-10-02T16:22:05.9916486Z CC drivers/firmware/dmi_scan.o
2025-10-02T16:22:05.9977393Z LD [M] drivers/crypto/qat/qat_c3xxx/qat_c3xxx.o
2025-10-02T16:22:06.0422594Z CC [M] drivers/media/radio/radio-shark2.o
2025-10-02T16:22:06.1377782Z CC [M] drivers/media/dvb-frontends/m88ds3103.o
2025-10-02T16:22:06.4098716Z CC [M] drivers/media/dvb-frontends/mn88472.o
2025-10-02T16:22:06.4591903Z CC [M] drivers/crypto/qat/qat_common/adf_hw_arbiter.o
2025-10-02T16:22:07.0716099Z CC drivers/firmware/dmi-sysfs.o
2025-10-02T16:22:07.0751370Z CC [M] drivers/crypto/qat/qat_common/qat_crypto.o
2025-10-02T16:22:07.1615299Z CC [M] drivers/media/radio/radio-tea5777.o
2025-10-02T16:22:07.4762470Z CC [M] drivers/crypto/qat/qat_common/qat_algs.o
2025-10-02T16:22:07.5456952Z CC [M] drivers/media/dvb-frontends/mn88473.o
2025-10-02T16:22:07.7932164Z CC drivers/firmware/dmi-id.o
2025-10-02T16:22:07.8959147Z CC [M] drivers/media/radio/radio-si476x.o
2025-10-02T16:22:08.0103993Z CC [M] drivers/crypto/virtio/virtio_crypto_algs.o
2025-10-02T16:22:08.3708771Z CC drivers/firmware/iscsi_ibft_find.o
2025-10-02T16:22:08.4416093Z CC [M] drivers/media/dvb-frontends/isl6423.o
2025-10-02T16:22:08.8708386Z CC [M] drivers/crypto/virtio/virtio_crypto_akcipher_algs.o
2025-10-02T16:22:09.0782967Z CC [M] drivers/crypto/qat/qat_common/qat_asym_algs.o
2025-10-02T16:22:09.1047344Z CC [M] drivers/media/dvb-frontends/ec100.o
2025-10-02T16:22:09.1694294Z CC drivers/firmware/memmap.o
2025-10-02T16:22:09.3652361Z CC [M] drivers/media/radio/dsbr100.o
2025-10-02T16:22:09.6454826Z CC [M] drivers/crypto/virtio/virtio_crypto_mgr.o
2025-10-02T16:22:09.8136261Z CC [M] drivers/media/dvb-frontends/ds3000.o
2025-10-02T16:22:10.0021486Z CC [M] drivers/firmware/edd.o
2025-10-02T16:22:10.3170969Z CC [M] drivers/crypto/virtio/virtio_crypto_core.o
2025-10-02T16:22:10.4028604Z CC [M] drivers/crypto/qat/qat_common/qat_uclo.o
2025-10-02T16:22:10.4039093Z CC [M] drivers/media/radio/radio-mr800.o
2025-10-02T16:22:10.7285256Z CC [M] drivers/media/dvb-frontends/ts2020.o
2025-10-02T16:22:11.2587954Z CC [M] drivers/media/radio/radio-keene.o
2025-10-02T16:22:11.2686418Z CC [M] drivers/firmware/iscsi_ibft.o
2025-10-02T16:22:11.5242642Z LD [M] drivers/crypto/virtio/virtio_crypto.o
2025-10-02T16:22:11.5943924Z CC [M] drivers/firmware/qemu_fw_cfg.o
2025-10-02T16:22:11.6761947Z CC [M] drivers/media/dvb-frontends/mb86a16.o
2025-10-02T16:22:11.8509717Z CC [M] drivers/crypto/qat/qat_common/qat_hal.o
2025-10-02T16:22:12.0284112Z CC [M] drivers/media/radio/radio-ma901.o
2025-10-02T16:22:12.3217387Z CC [M] drivers/hid/usbhid/hid-core.o
2025-10-02T16:22:12.7600780Z AR drivers/firmware/built-in.a
2025-10-02T16:22:12.8268293Z CC [M] drivers/crypto/qat/qat_c62x/adf_drv.o
2025-10-02T16:22:13.0968161Z CC [M] drivers/media/radio/radio-tea5764.o
2025-10-02T16:22:13.6387255Z CC [M] drivers/crypto/qat/qat_c62x/adf_c62x_hw_data.o
2025-10-02T16:22:13.6954182Z CC [M] drivers/media/dvb-frontends/mb86a20s.o
2025-10-02T16:22:13.7513626Z CC [M] drivers/crypto/qat/qat_common/adf_transport_debug.o
2025-10-02T16:22:13.8292659Z CC [M] drivers/hid/usbhid/hiddev.o
2025-10-02T16:22:14.0346747Z CC [M] drivers/media/radio/saa7706h.o
2025-10-02T16:22:14.3320621Z CC [M] drivers/crypto/qat/qat_common/adf_sriov.o
2025-10-02T16:22:14.4281181Z LD [M] drivers/crypto/qat/qat_c62x/qat_c62x.o
2025-10-02T16:22:14.4838137Z CC [M] drivers/crypto/qat/qat_common/adf_pf2vf_msg.o
2025-10-02T16:22:14.8264978Z CC [M] drivers/hid/usbhid/hid-pidff.o
2025-10-02T16:22:15.0004323Z CC [M] drivers/media/radio/tef6862.o
2025-10-02T16:22:15.0613494Z CC [M] drivers/media/radio/radio-wl1273.o
2025-10-02T16:22:15.2272585Z CC [M] drivers/crypto/qat/qat_common/adf_vf2pf_msg.o
2025-10-02T16:22:15.2414297Z CC [M] drivers/media/dvb-frontends/ix2505v.o
2025-10-02T16:22:15.8713050Z CC [M] drivers/hid/i2c-hid/i2c-hid-core.o
2025-10-02T16:22:15.9514830Z CC [M] drivers/crypto/qat/qat_common/adf_vf_isr.o
2025-10-02T16:22:15.9740555Z CC [M] drivers/media/dvb-frontends/stv0367.o
2025-10-02T16:22:16.1697020Z LD [M] drivers/hid/usbhid/usbhid.o
2025-10-02T16:22:16.2057609Z CC [M] drivers/hid/i2c-hid/i2c-hid-dmi-quirks.o
2025-10-02T16:22:16.5971480Z CC [M] drivers/media/radio/tea575x.o
2025-10-02T16:22:16.7057041Z CC [M] drivers/crypto/qat/qat_dh895xccvf/adf_drv.o
2025-10-02T16:22:16.8181028Z LD [M] drivers/crypto/qat/qat_common/intel_qat.o
2025-10-02T16:22:16.9027483Z CC [M] drivers/crypto/inside-secure/safexcel.o
2025-10-02T16:22:17.2471602Z LD [M] drivers/hid/i2c-hid/i2c-hid.o
2025-10-02T16:22:17.2967484Z CC [M] drivers/hid/intel-ish-hid/ishtp/init.o
2025-10-02T16:22:17.6221530Z CC [M] drivers/crypto/qat/qat_dh895xccvf/adf_dh895xccvf_hw_data.o
2025-10-02T16:22:17.7190573Z CC [M] drivers/hid/intel-ish-hid/ishtp/hbm.o
2025-10-02T16:22:17.7525244Z CC [M] drivers/media/radio/radio-raremono.o
2025-10-02T16:22:18.0385333Z CC [M] drivers/media/dvb-frontends/cxd2820r_core.o
2025-10-02T16:22:18.1858828Z LD [M] drivers/crypto/qat/qat_dh895xccvf/qat_dh895xccvf.o
2025-10-02T16:22:18.2304783Z CC [M] drivers/crypto/qat/qat_c3xxxvf/adf_drv.o
2025-10-02T16:22:18.3567015Z CC [M] drivers/crypto/inside-secure/safexcel_ring.o
2025-10-02T16:22:18.6648671Z CC [M] drivers/hid/intel-ish-hid/ishtp/client.o
2025-10-02T16:22:18.8362719Z LD [M] drivers/media/radio/shark2.o
2025-10-02T16:22:18.8734355Z CC [M] drivers/crypto/qat/qat_c3xxxvf/adf_c3xxxvf_hw_data.o
2025-10-02T16:22:18.9653945Z CC [M] drivers/crypto/inside-secure/safexcel_cipher.o
2025-10-02T16:22:19.0022986Z CC [M] drivers/crypto/qat/qat_c62xvf/adf_drv.o
2025-10-02T16:22:19.3122515Z CC [M] drivers/media/dvb-frontends/cxd2820r_c.o
2025-10-02T16:22:19.5621554Z LD [M] drivers/crypto/qat/qat_c3xxxvf/qat_c3xxxvf.o
2025-10-02T16:22:19.6122216Z CC [M] drivers/crypto/inside-secure/safexcel_hash.o
2025-10-02T16:22:19.7418634Z CC [M] drivers/hid/intel-ish-hid/ishtp/bus.o
2025-10-02T16:22:19.9351486Z CC [M] drivers/crypto/qat/qat_c62xvf/adf_c62xvf_hw_data.o
2025-10-02T16:22:20.0367578Z CC [M] drivers/media/dvb-frontends/cxd2820r_t.o
2025-10-02T16:22:20.5548754Z CC [M] drivers/hid/intel-ish-hid/ishtp/dma-if.o
2025-10-02T16:22:20.6624229Z LD [M] drivers/crypto/qat/qat_c62xvf/qat_c62xvf.o
2025-10-02T16:22:20.7670754Z CC [M] drivers/crypto/amlogic/amlogic-gxl-core.o
2025-10-02T16:22:20.8341151Z CC [M] drivers/staging/media/atomisp/i2c/ov5693/atomisp-ov5693.o
2025-10-02T16:22:20.8560325Z CC [M] drivers/media/dvb-frontends/cxd2820r_t2.o
2025-10-02T16:22:21.2347384Z CC [M] drivers/hid/intel-ish-hid/ishtp/client-buffers.o
2025-10-02T16:22:21.6361457Z CC [M] drivers/media/dvb-frontends/cxd2841er.o
2025-10-02T16:22:21.6601321Z CC [M] drivers/crypto/amlogic/amlogic-gxl-cipher.o
2025-10-02T16:22:21.7252545Z CC [M] drivers/hid/intel-ish-hid/ipc/ipc.o
2025-10-02T16:22:21.7302989Z LD [M] drivers/crypto/inside-secure/crypto_safexcel.o
2025-10-02T16:22:21.7822794Z AR drivers/staging/media/atomisp/i2c/built-in.a
2025-10-02T16:22:21.8297301Z CC [M] drivers/staging/media/ipu3/ipu3-mmu.o
2025-10-02T16:22:22.1198206Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-mt9m114.o
2025-10-02T16:22:22.4888414Z LD [M] drivers/crypto/amlogic/amlogic-gxl-crypto.o
2025-10-02T16:22:22.5487163Z AR drivers/crypto/built-in.a
2025-10-02T16:22:22.5691288Z CC [M] drivers/crypto/atmel-i2c.o
2025-10-02T16:22:22.7315675Z CC [M] drivers/staging/media/ipu3/ipu3-dmamap.o
2025-10-02T16:22:22.8645870Z CC [M] drivers/hid/intel-ish-hid/ipc/pci-ish.o
2025-10-02T16:22:23.4005439Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-gc2235.o
2025-10-02T16:22:23.4406904Z CC [M] drivers/crypto/atmel-ecc.o
2025-10-02T16:22:23.5607876Z CC [M] drivers/staging/media/ipu3/ipu3-tables.o
2025-10-02T16:22:23.8990166Z CC [M] drivers/staging/media/ipu3/ipu3-css-pool.o
2025-10-02T16:22:23.9662640Z CC [M] drivers/hid/intel-ish-hid/ishtp-hid.o
2025-10-02T16:22:24.3051250Z CC [M] drivers/crypto/atmel-sha204a.o
2025-10-02T16:22:24.3467394Z CC [M] drivers/media/dvb-frontends/drxk_hard.o
2025-10-02T16:22:24.4597035Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-ov2722.o
2025-10-02T16:22:24.6668415Z CC [M] drivers/hid/intel-ish-hid/ishtp-hid-client.o
2025-10-02T16:22:24.6853253Z CC [M] drivers/staging/media/ipu3/ipu3-css-fw.o
2025-10-02T16:22:25.2083584Z CC [M] drivers/crypto/padlock-aes.o
2025-10-02T16:22:25.4691157Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-ov2680.o
2025-10-02T16:22:25.4933933Z CC [M] drivers/staging/media/ipu3/ipu3-css-params.o
2025-10-02T16:22:25.6220509Z CC [M] drivers/hid/intel-ish-hid/ishtp-fw-loader.o
2025-10-02T16:22:26.1226718Z CC [M] drivers/crypto/padlock-sha.o
2025-10-02T16:22:26.5809401Z LD [M] drivers/hid/intel-ish-hid/intel-ishtp.o
2025-10-02T16:22:26.6193892Z LD [M] drivers/hid/intel-ish-hid/intel-ish-ipc.o
2025-10-02T16:22:26.6520390Z LD [M] drivers/hid/intel-ish-hid/intel-ishtp-hid.o
2025-10-02T16:22:26.6800053Z LD [M] drivers/hid/intel-ish-hid/intel-ishtp-loader.o
2025-10-02T16:22:26.7556723Z CC drivers/hid/hid-core.o
2025-10-02T16:22:26.9997375Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-gc0310.o
2025-10-02T16:22:27.0355854Z CC [M] drivers/staging/media/ipu3/ipu3-css.o
2025-10-02T16:22:27.1654601Z CC [M] drivers/media/dvb-frontends/tda18271c2dd.o
2025-10-02T16:22:27.4370809Z AR drivers/staging/android/ion/built-in.a
2025-10-02T16:22:27.4833860Z CC drivers/staging/android/ashmem.o
2025-10-02T16:22:28.2221885Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper.o
2025-10-02T16:22:28.5274144Z CC [M] drivers/media/dvb-frontends/stv0910.o
2025-10-02T16:22:28.5441982Z AR drivers/staging/android/built-in.a
2025-10-02T16:22:28.5606448Z CC [M] drivers/staging/media/atomisp/pci/atomisp_acc.o
2025-10-02T16:22:28.6396525Z CC drivers/hid/hid-input.o
2025-10-02T16:22:28.7984568Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-lm3554.o
2025-10-02T16:22:28.9029199Z CC [M] drivers/staging/media/ipu3/ipu3-v4l2.o
2025-10-02T16:22:29.7227217Z CC [M] drivers/media/dvb-frontends/stv6111.o
2025-10-02T16:22:29.7420956Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_common.o
2025-10-02T16:22:30.1325642Z CC [M] drivers/staging/media/atomisp/pci/atomisp_cmd.o
2025-10-02T16:22:30.4160834Z CC [M] drivers/staging/media/ipu3/ipu3.o
2025-10-02T16:22:30.5225751Z CC [M] drivers/media/dvb-frontends/mxl5xx.o
2025-10-02T16:22:30.6405692Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_mmio.o
2025-10-02T16:22:31.3758182Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_mbox_pci.o
2025-10-02T16:22:31.3843704Z CC drivers/hid/hid-quirks.o
2025-10-02T16:22:31.7041795Z LD [M] drivers/staging/media/ipu3/ipu3-imgu.o
2025-10-02T16:22:31.7871727Z AR drivers/platform/mellanox/built-in.a
2025-10-02T16:22:31.8122520Z CC [M] drivers/platform/mellanox/mlxreg-hotplug.o
2025-10-02T16:22:31.9780970Z CC [M] drivers/media/dvb-frontends/si2165.o
2025-10-02T16:22:32.0144566Z CC drivers/hid/hid-debug.o
2025-10-02T16:22:32.1423578Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_mbox_msr.o
2025-10-02T16:22:32.5556013Z CC [M] drivers/platform/mellanox/mlxreg-io.o
2025-10-02T16:22:33.0080763Z CC [M] drivers/media/dvb-frontends/a8293.o
2025-10-02T16:22:33.0118733Z CC drivers/platform/x86/touchscreen_dmi.o
2025-10-02T16:22:33.2178412Z CC drivers/hid/hidraw.o
2025-10-02T16:22:33.3113130Z CC [M] drivers/staging/unisys/visornic/visornic_main.o
2025-10-02T16:22:33.6213262Z CC [M] drivers/media/dvb-frontends/sp2.o
2025-10-02T16:22:33.6653276Z CC drivers/platform/x86/intel_turbo_max_3.o
2025-10-02T16:22:34.0815335Z CC drivers/hid/hid-generic.o
2025-10-02T16:22:34.1384568Z CC drivers/platform/x86/intel_pmc_core.o
2025-10-02T16:22:34.4060860Z CC [M] drivers/media/dvb-frontends/tda10071.o
2025-10-02T16:22:34.5386208Z CC [M] drivers/hid/uhid.o
2025-10-02T16:22:34.5578377Z CC [M] drivers/staging/media/atomisp/pci/atomisp_compat_css20.o
2025-10-02T16:22:35.2698790Z LD [M] drivers/staging/unisys/visornic/visornic.o
2025-10-02T16:22:35.3335155Z CC [M] drivers/staging/unisys/visorinput/visorinput.o
2025-10-02T16:22:35.4182205Z CC [M] drivers/hid/hid-a4tech.o
2025-10-02T16:22:35.4527878Z CC drivers/platform/x86/intel_pmc_core_pltdrv.o
2025-10-02T16:22:35.8470458Z CC [M] drivers/media/dvb-frontends/rtl2830.o
2025-10-02T16:22:36.0883987Z CC [M] drivers/hid/hid-accutouch.o
2025-10-02T16:22:36.1535677Z CC drivers/platform/x86/intel_scu_ipc.o
2025-10-02T16:22:36.3622370Z CC [M] drivers/staging/unisys/visorhba/visorhba_main.o
2025-10-02T16:22:36.6292039Z CC [M] drivers/hid/hid-alps.o
2025-10-02T16:22:36.9322461Z CC [M] drivers/media/dvb-frontends/rtl2832.o
2025-10-02T16:22:37.1023465Z CC drivers/platform/x86/intel_scu_pcidrv.o
2025-10-02T16:22:37.4251743Z CC [M] drivers/staging/media/atomisp/pci/atomisp_compat_ioctl32.o
2025-10-02T16:22:37.4410760Z CC [M] drivers/hid/hid-axff.o
2025-10-02T16:22:37.5090869Z LD [M] drivers/staging/unisys/visorhba/visorhba.o
2025-10-02T16:22:37.5391719Z AR drivers/staging/unisys/built-in.a
2025-10-02T16:22:37.5652282Z CC drivers/platform/x86/pmc_atom.o
2025-10-02T16:22:37.8435189Z CC drivers/mailbox/mailbox.o
2025-10-02T16:22:38.1016460Z CC [M] drivers/media/dvb-frontends/m88rs2000.o
2025-10-02T16:22:38.2292213Z CC [M] drivers/platform/x86/wmi.o
2025-10-02T16:22:38.2864179Z CC [M] drivers/hid/hid-apple.o
2025-10-02T16:22:38.4250588Z CC drivers/mailbox/pcc.o
2025-10-02T16:22:39.0198707Z CC [M] drivers/media/dvb-frontends/af9033.o
2025-10-02T16:22:39.0817725Z CC [M] drivers/mailbox/mailbox-altera.o
2025-10-02T16:22:39.2101365Z CC [M] drivers/hid/hid-appleir.o
2025-10-02T16:22:39.2775544Z CC [M] drivers/staging/media/atomisp/pci/atomisp_csi2.o
2025-10-02T16:22:39.4263869Z CC [M] drivers/platform/x86/wmi-bmof.o
2025-10-02T16:22:39.5414758Z AR drivers/mailbox/built-in.a
2025-10-02T16:22:39.6025055Z CC [M] drivers/platform/chrome/wilco_ec/core.o
2025-10-02T16:22:39.9149202Z CC [M] drivers/hid/hid-creative-sb0540.o
2025-10-02T16:22:39.9473301Z CC [M] drivers/platform/x86/alienware-wmi.o
2025-10-02T16:22:40.1006773Z CC [M] drivers/platform/chrome/wilco_ec/keyboard_leds.o
2025-10-02T16:22:40.2214329Z CC [M] drivers/staging/media/atomisp/pci/atomisp_drvfs.o
2025-10-02T16:22:40.3075104Z CC [M] drivers/media/dvb-frontends/as102_fe.o
2025-10-02T16:22:40.5433653Z CC [M] drivers/hid/hid-asus.o
2025-10-02T16:22:40.5967946Z CC [M] drivers/platform/chrome/wilco_ec/mailbox.o
2025-10-02T16:22:40.9013546Z CC [M] drivers/platform/x86/huawei-wmi.o
2025-10-02T16:22:40.9975897Z CC [M] drivers/media/dvb-frontends/gp8psk-fe.o
2025-10-02T16:22:41.0250541Z CC [M] drivers/staging/media/atomisp/pci/atomisp_file.o
2025-10-02T16:22:41.0895150Z CC [M] drivers/platform/chrome/wilco_ec/properties.o
2025-10-02T16:22:41.3650865Z CC [M] drivers/platform/chrome/wilco_ec/sysfs.o
2025-10-02T16:22:41.8147168Z CC [M] drivers/hid/hid-aureal.o
2025-10-02T16:22:41.8162927Z CC [M] drivers/media/dvb-frontends/tc90522.o
2025-10-02T16:22:41.8352709Z CC [M] drivers/staging/media/atomisp/pci/atomisp_fops.o
2025-10-02T16:22:41.8437745Z CC [M] drivers/platform/x86/intel-wmi-sbl-fw-update.o
2025-10-02T16:22:41.9043729Z CC [M] drivers/platform/chrome/wilco_ec/debugfs.o
2025-10-02T16:22:42.3223690Z CC [M] drivers/platform/x86/intel-wmi-thunderbolt.o
2025-10-02T16:22:42.4161950Z CC [M] drivers/hid/hid-belkin.o
2025-10-02T16:22:42.5250395Z CC [M] drivers/platform/chrome/wilco_ec/event.o
2025-10-02T16:22:42.8003124Z CC [M] drivers/media/dvb-frontends/horus3a.o
2025-10-02T16:22:42.9218027Z CC [M] drivers/platform/x86/mxm-wmi.o
2025-10-02T16:22:43.0202795Z CC [M] drivers/hid/hid-betopff.o
2025-10-02T16:22:43.3467906Z CC [M] drivers/platform/chrome/wilco_ec/telemetry.o
2025-10-02T16:22:43.4198170Z CC [M] drivers/platform/x86/peaq-wmi.o
2025-10-02T16:22:43.4300683Z CC [M] drivers/staging/media/atomisp/pci/atomisp_ioctl.o
2025-10-02T16:22:43.6683507Z CC [M] drivers/hid/hid-bigbenff.o
2025-10-02T16:22:43.7322210Z CC [M] drivers/media/dvb-frontends/ascot2e.o
2025-10-02T16:22:43.9797567Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec.o
2025-10-02T16:22:44.0127844Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.o
2025-10-02T16:22:44.0423631Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec_events.o
2025-10-02T16:22:44.0466471Z CC [M] drivers/platform/x86/xiaomi-wmi.o
2025-10-02T16:22:44.0627190Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec_telem.o
2025-10-02T16:22:44.1463458Z CC drivers/platform/chrome/cros_ec_proto.o
2025-10-02T16:22:44.2393197Z CC [M] drivers/hid/hid-cherry.o
2025-10-02T16:22:44.6828029Z CC [M] drivers/media/dvb-frontends/helene.o
2025-10-02T16:22:44.7060968Z CC [M] drivers/platform/x86/acerhdf.o
2025-10-02T16:22:44.8818399Z CC [M] drivers/hid/hid-chicony.o
2025-10-02T16:22:44.9505256Z CC drivers/platform/chrome/cros_ec_trace.o
2025-10-02T16:22:45.4283671Z CC [M] drivers/platform/x86/acer-wireless.o
2025-10-02T16:22:45.5365681Z CC [M] drivers/staging/media/atomisp/pci/atomisp_subdev.o
2025-10-02T16:22:45.6110411Z CC [M] drivers/hid/hid-cmedia.o
2025-10-02T16:22:45.6903344Z CC [M] drivers/media/dvb-frontends/zd1301_demod.o
2025-10-02T16:22:45.8038313Z CC [M] drivers/platform/chrome/chromeos_laptop.o
2025-10-02T16:22:46.1381659Z CC [M] drivers/platform/x86/acer-wmi.o
2025-10-02T16:22:46.2850633Z CC [M] drivers/hid/hid-corsair.o
2025-10-02T16:22:46.5894580Z CC [M] drivers/media/dvb-frontends/cxd2099.o
2025-10-02T16:22:46.7667667Z CC [M] drivers/staging/media/atomisp/pci/atomisp_tpg.o
2025-10-02T16:22:46.8801350Z CC [M] drivers/platform/chrome/chromeos_pstore.o
2025-10-02T16:22:47.0256850Z CC [M] drivers/hid/hid-cougar.o
2025-10-02T16:22:47.4697829Z CC [M] drivers/platform/chrome/chromeos_tbmc.o
2025-10-02T16:22:47.5630930Z CC [M] drivers/staging/media/atomisp/pci/atomisp_v4l2.o
2025-10-02T16:22:47.5730306Z CC [M] drivers/platform/x86/apple-gmux.o
2025-10-02T16:22:47.6522394Z LD [M] drivers/media/dvb-frontends/stb0899.o
2025-10-02T16:22:47.6811870Z LD [M] drivers/media/dvb-frontends/drxd.o
2025-10-02T16:22:47.7106937Z LD [M] drivers/media/dvb-frontends/stv0900.o
2025-10-02T16:22:47.7453314Z CC [M] drivers/hid/hid-cp2112.o
2025-10-02T16:22:47.7485115Z LD [M] drivers/media/dvb-frontends/cxd2820r.o
2025-10-02T16:22:47.7674024Z LD [M] drivers/media/dvb-frontends/drxk.o
2025-10-02T16:22:47.9541233Z CC [M] drivers/platform/chrome/cros_ec.o
2025-10-02T16:22:48.3877431Z AR drivers/staging/kpc2000/kpc2000/built-in.a
2025-10-02T16:22:48.3988885Z CC [M] drivers/staging/kpc2000/kpc2000/core.o
2025-10-02T16:22:48.6800246Z CC [M] drivers/platform/chrome/cros_ec_i2c.o
2025-10-02T16:22:48.8720149Z CC [M] drivers/platform/x86/asus-laptop.o
2025-10-02T16:22:49.1414584Z CC [M] drivers/staging/kpc2000/kpc2000/cell_probe.o
2025-10-02T16:22:49.1933096Z CC [M] drivers/staging/media/atomisp/pci/sh_css_firmware.o
2025-10-02T16:22:49.1959863Z CC [M] drivers/hid/hid-cypress.o
2025-10-02T16:22:49.5517480Z CC [M] drivers/platform/chrome/cros_ec_ishtp.o
2025-10-02T16:22:49.7907471Z CC [M] drivers/hid/hid-dr.o
2025-10-02T16:22:50.0219133Z LD [M] drivers/staging/kpc2000/kpc2000/kpc2000.o
2025-10-02T16:22:50.1105548Z CC [M] drivers/staging/kpc2000/kpc_dma/dma.o
2025-10-02T16:22:50.1432771Z CC [M] drivers/staging/media/atomisp/pci/sh_css_host_data.o
2025-10-02T16:22:50.4164402Z CC [M] drivers/hid/hid-emsff.o
2025-10-02T16:22:50.4460898Z CC [M] drivers/platform/x86/asus-wireless.o
2025-10-02T16:22:50.5199037Z CC [M] drivers/platform/chrome/cros_ec_spi.o
2025-10-02T16:22:50.7951296Z CC [M] drivers/staging/media/atomisp/pci/sh_css_hrt.o
2025-10-02T16:22:50.9111446Z CC [M] drivers/staging/kpc2000/kpc_dma/fileops.o
2025-10-02T16:22:50.9996560Z CC [M] drivers/hid/hid-elan.o
2025-10-02T16:22:51.0919076Z CC [M] drivers/platform/x86/asus-wmi.o
2025-10-02T16:22:51.5653948Z CC [M] drivers/staging/media/atomisp/pci/sh_css_metadata.o
2025-10-02T16:22:51.6358889Z CC [M] drivers/platform/chrome/cros_ec_typec.o
2025-10-02T16:22:51.6514110Z CC [M] drivers/staging/media/atomisp/pci/sh_css_metrics.o
2025-10-02T16:22:51.7693891Z CC [M] drivers/hid/hid-elecom.o
2025-10-02T16:22:51.9623691Z CC [M] drivers/staging/kpc2000/kpc_dma/kpc_dma_driver.o
2025-10-02T16:22:52.3993090Z CC [M] drivers/staging/media/atomisp/pci/sh_css_mipi.o
2025-10-02T16:22:52.4581378Z CC [M] drivers/hid/hid-elo.o
2025-10-02T16:22:52.4815486Z CC [M] drivers/platform/chrome/cros_ec_lpc.o
2025-10-02T16:22:52.7254107Z LD [M] drivers/staging/kpc2000/kpc_dma/kpc_dma.o
2025-10-02T16:22:52.7922417Z AR drivers/staging/kpc2000/built-in.a
2025-10-02T16:22:52.8165383Z CC [M] drivers/staging/kpc2000/kpc2000_i2c.o
2025-10-02T16:22:53.2143054Z CC [M] drivers/platform/x86/asus-nb-wmi.o
2025-10-02T16:22:53.2270865Z CC [M] drivers/hid/hid-ezkey.o
2025-10-02T16:22:53.3522373Z CC [M] drivers/staging/media/atomisp/pci/sh_css_mmu.o
2025-10-02T16:22:53.5174078Z CC [M] drivers/platform/chrome/cros_ec_lpc_mec.o
2025-10-02T16:22:53.7222774Z CC [M] drivers/hid/hid-gembird.o
2025-10-02T16:22:53.7558088Z CC [M] drivers/staging/kpc2000/kpc2000_spi.o
2025-10-02T16:22:53.8584419Z CC [M] drivers/platform/chrome/cros_kbd_led_backlight.o
2025-10-02T16:22:53.9623883Z CC [M] drivers/staging/media/atomisp/pci/sh_css_morph.o
2025-10-02T16:22:54.0645586Z CC [M] drivers/platform/x86/eeepc-laptop.o
2025-10-02T16:22:54.0751481Z CC [M] drivers/staging/media/atomisp/pci/sh_css.o
2025-10-02T16:22:54.2060818Z CC [M] drivers/hid/hid-gfrm.o
2025-10-02T16:22:54.4196845Z CC [M] drivers/platform/chrome/cros_ec_chardev.o
2025-10-02T16:22:54.7313021Z CC [M] drivers/hid/hid-glorious.o
2025-10-02T16:22:54.7588746Z AR drivers/platform/surface/built-in.a
2025-10-02T16:22:54.8023871Z CC [M] drivers/staging/media/atomisp/pci/sh_css_param_dvs.o
2025-10-02T16:22:55.1436709Z CC [M] drivers/platform/x86/eeepc-wmi.o
2025-10-02T16:22:55.3975385Z CC [M] drivers/hid/hid-google-hammer.o
2025-10-02T16:22:55.4617930Z CC [M] drivers/platform/chrome/cros_ec_lightbar.o
2025-10-02T16:22:55.6742378Z CC [M] drivers/hid/hid-vivaldi.o
2025-10-02T16:22:55.9662636Z CC [M] drivers/platform/x86/dcdbas.o
2025-10-02T16:22:56.1325574Z CC drivers/hwspinlock/hwspinlock_core.o
2025-10-02T16:22:56.2831391Z CC [M] drivers/hid/hid-gt683r.o
2025-10-02T16:22:56.3297703Z CC [M] drivers/platform/chrome/cros_ec_debugfs.o
2025-10-02T16:22:56.8693539Z AR drivers/hwspinlock/built-in.a
2025-10-02T16:22:56.8902727Z CC [M] drivers/hid/hid-gyration.o
2025-10-02T16:22:56.9438374Z CC [M] drivers/staging/media/atomisp/pci/sh_css_param_shading.o
2025-10-02T16:22:57.0802424Z CC [M] drivers/platform/x86/dell-smbios-base.o
2025-10-02T16:22:57.1808690Z CC [M] drivers/platform/chrome/cros_ec_sensorhub.o
2025-10-02T16:22:57.6177680Z CC [M] drivers/hid/hid-holtek-kbd.o
2025-10-02T16:22:57.7602078Z CC [M] drivers/platform/chrome/cros_ec_sensorhub_ring.o
2025-10-02T16:22:57.8457449Z CC [M] drivers/platform/chrome/cros_ec_sysfs.o
2025-10-02T16:22:57.9028315Z CC [M] drivers/platform/x86/dell-smbios-wmi.o
2025-10-02T16:22:58.3482463Z CC [M] drivers/hid/hid-holtek-mouse.o
2025-10-02T16:22:58.3483529Z CC [M] drivers/staging/media/atomisp/pci/sh_css_params.o
2025-10-02T16:22:58.5635786Z CC [M] drivers/platform/x86/dell-smbios-smm.o
2025-10-02T16:22:58.7104591Z CC [M] drivers/hid/hid-holtekff.o
2025-10-02T16:22:58.8445352Z CC drivers/remoteproc/remoteproc_core.o
2025-10-02T16:22:59.0945045Z CC [M] drivers/platform/x86/dell-laptop.o
2025-10-02T16:22:59.1809432Z CC [M] drivers/platform/chrome/cros_usbpd_logger.o
2025-10-02T16:22:59.4331104Z CC [M] drivers/hid/hid-hyperv.o
2025-10-02T16:22:59.8104839Z CC [M] drivers/platform/chrome/cros_usbpd_notify.o
2025-10-02T16:23:00.1721679Z CC [M] drivers/hid/hid-icade.o
2025-10-02T16:23:00.2966451Z CC drivers/remoteproc/remoteproc_coredump.o
2025-10-02T16:23:00.4991401Z LD [M] drivers/platform/chrome/cros_ec_lpcs.o
2025-10-02T16:23:00.5123522Z LD [M] drivers/platform/chrome/cros-ec-sensorhub.o
2025-10-02T16:23:00.5271455Z AR drivers/platform/chrome/built-in.a
2025-10-02T16:23:00.6294760Z CC [M] drivers/staging/media/atomisp/pci/sh_css_properties.o
2025-10-02T16:23:00.7236780Z CC [M] drivers/hid/hid-ite.o
2025-10-02T16:23:00.7251270Z AR drivers/staging/hikey9xx/built-in.a
2025-10-02T16:23:00.7745370Z AR drivers/virt/vboxguest/built-in.a
2025-10-02T16:23:00.7781541Z CC [M] drivers/staging/media/atomisp/pci/sh_css_shading.o
2025-10-02T16:23:00.7889295Z CC [M] drivers/virt/vboxguest/vboxguest_linux.o
2025-10-02T16:23:00.8046731Z CC [M] drivers/platform/x86/dell-rbtn.o
2025-10-02T16:23:00.9064264Z CC [M] drivers/staging/media/atomisp/pci/sh_css_sp.o
2025-10-02T16:23:01.1312958Z CC drivers/remoteproc/remoteproc_debugfs.o
2025-10-02T16:23:01.2732881Z CC [M] drivers/hid/hid-jabra.o
2025-10-02T16:23:01.5307583Z CC [M] drivers/virt/vboxguest/vboxguest_core.o
2025-10-02T16:23:01.7063001Z CC [M] drivers/platform/x86/dell-smo8800.o
2025-10-02T16:23:01.7963435Z CC [M] drivers/hid/hid-kensington.o
2025-10-02T16:23:02.0443761Z CC drivers/remoteproc/remoteproc_sysfs.o
2025-10-02T16:23:02.2305468Z CC [M] drivers/staging/media/atomisp/pci/sh_css_stream_format.o
2025-10-02T16:23:02.2918516Z CC [M] drivers/platform/x86/dell-wmi.o
2025-10-02T16:23:02.5097061Z CC [M] drivers/hid/hid-keytouch.o
2025-10-02T16:23:02.7351653Z CC drivers/remoteproc/remoteproc_virtio.o
2025-10-02T16:23:02.8647773Z CC [M] drivers/virt/vboxguest/vboxguest_utils.o
2025-10-02T16:23:02.9200101Z CC [M] drivers/staging/media/atomisp/pci/sh_css_stream.o
2025-10-02T16:23:03.0513075Z CC [M] drivers/staging/media/atomisp/pci/sh_css_version.o
2025-10-02T16:23:03.0662978Z CC [M] drivers/platform/x86/dell-wmi-descriptor.o
2025-10-02T16:23:03.1313557Z CC [M] drivers/hid/hid-kye.o
2025-10-02T16:23:03.5772880Z CC drivers/remoteproc/remoteproc_elf_loader.o
2025-10-02T16:23:03.6058552Z CC [M] drivers/platform/x86/dell-wmi-aio.o
2025-10-02T16:23:03.7191282Z CC [M] drivers/staging/media/atomisp/pci/base/circbuf/src/circbuf.o
2025-10-02T16:23:03.7905838Z CC [M] drivers/hid/hid-lcpower.o
2025-10-02T16:23:04.0532097Z CC [M] drivers/staging/media/atomisp/pci/base/refcount/src/refcount.o
2025-10-02T16:23:04.1286370Z LD [M] drivers/virt/vboxguest/vboxguest.o
2025-10-02T16:23:04.1782113Z CC [M] drivers/virt/nitro_enclaves/ne_pci_dev.o
2025-10-02T16:23:04.2076899Z CC [M] drivers/platform/x86/dell-wmi-led.o
2025-10-02T16:23:04.2433312Z CC drivers/remoteproc/remoteproc_cdev.o
2025-10-02T16:23:04.5193531Z CC [M] drivers/hid/hid-lenovo.o
2025-10-02T16:23:04.8614892Z CC [M] drivers/platform/x86/amilo-rfkill.o
2025-10-02T16:23:04.8886467Z AR drivers/remoteproc/built-in.a
2025-10-02T16:23:04.9033998Z CC [M] drivers/virt/nitro_enclaves/ne_misc_dev.o
2025-10-02T16:23:04.9112325Z CC [M] drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_binarydesc.o
2025-10-02T16:23:05.0258556Z CC [M] drivers/staging/wlan-ng/prism2usb.o
2025-10-02T16:23:05.3707597Z CC [M] drivers/platform/x86/fujitsu-laptop.o
2025-10-02T16:23:05.6498053Z CC [M] drivers/hid/hid-lg.o
2025-10-02T16:23:06.0354285Z CC [M] drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_stagedesc.o
2025-10-02T16:23:06.3276707Z CC [M] drivers/platform/x86/fujitsu-tablet.o
2025-10-02T16:23:06.4104785Z LD [M] drivers/virt/nitro_enclaves/nitro_enclaves.o
2025-10-02T16:23:06.4715629Z AR drivers/virt/built-in.a
2025-10-02T16:23:06.5149308Z CC [M] drivers/hid/hid-lgff.o
2025-10-02T16:23:06.7473372Z CC [M] drivers/staging/media/atomisp/pci/camera/pipe/src/pipe_util.o
2025-10-02T16:23:06.8374949Z CC [M] drivers/staging/rtl8192u/r8192U_core.o
2025-10-02T16:23:07.0051007Z CC [M] drivers/platform/x86/gpd-pocket-fan.o
2025-10-02T16:23:07.1331223Z CC [M] drivers/hid/hid-lg2ff.o
2025-10-02T16:23:07.5603255Z CC [M] drivers/platform/x86/hp_accel.o
2025-10-02T16:23:07.6331722Z CC [M] drivers/staging/media/atomisp/pci/camera/util/src/util.o
2025-10-02T16:23:07.7684629Z CC [M] drivers/hid/hid-lg3ff.o
2025-10-02T16:23:08.3544331Z CC [M] drivers/hid/hid-lg4ff.o
2025-10-02T16:23:08.4078949Z CC [M] drivers/staging/media/atomisp/pci/hmm/hmm_bo.o
2025-10-02T16:23:08.4941523Z CC [M] drivers/platform/x86/hp-wireless.o
2025-10-02T16:23:08.8491029Z CC [M] drivers/staging/wlan-ng/p80211conv.o
2025-10-02T16:23:09.0519989Z CC [M] drivers/platform/x86/hp-wmi.o
2025-10-02T16:23:09.7302947Z CC [M] drivers/hid/hid-lg-g15.o
2025-10-02T16:23:09.8443359Z CC [M] drivers/staging/media/atomisp/pci/hmm/hmm_dynamic_pool.o
2025-10-02T16:23:09.9454581Z CC [M] drivers/staging/wlan-ng/p80211req.o
2025-10-02T16:23:09.9841093Z CC [M] drivers/staging/rtl8192u/r8180_93cx6.o
2025-10-02T16:23:10.0052633Z CC [M] drivers/platform/x86/ibm_rtl.o
2025-10-02T16:23:10.6667951Z CC [M] drivers/platform/x86/ideapad-laptop.o
2025-10-02T16:23:10.7365527Z CC [M] drivers/hid/hid-logitech-dj.o
2025-10-02T16:23:10.7888304Z CC [M] drivers/staging/media/atomisp/pci/hmm/hmm.o
2025-10-02T16:23:11.0090750Z CC [M] drivers/staging/rtl8192u/r8192U_wx.o
2025-10-02T16:23:11.1153835Z CC [M] drivers/staging/wlan-ng/p80211wep.o
2025-10-02T16:23:11.7456136Z CC [M] drivers/staging/media/atomisp/pci/hmm/hmm_reserved_pool.o
2025-10-02T16:23:11.8057265Z CC [M] drivers/platform/x86/hdaps.o
2025-10-02T16:23:12.1358862Z CC [M] drivers/staging/wlan-ng/p80211netdev.o
2025-10-02T16:23:12.1620060Z CC [M] drivers/hid/hid-logitech-hidpp.o
2025-10-02T16:23:12.2966441Z CC [M] drivers/staging/rtl8192u/r8190_rtl8256.o
2025-10-02T16:23:12.4046308Z CC [M] drivers/platform/x86/thinkpad_acpi.o
2025-10-02T16:23:12.5042126Z CC [M] drivers/staging/media/atomisp/pci/ia_css_device_access.o
2025-10-02T16:23:12.6421025Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/aa/aa_2/ia_css_aa2.host.o
2025-10-02T16:23:13.2945347Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/anr/anr_1.0/ia_css_anr.host.o
2025-10-02T16:23:13.4442644Z CC [M] drivers/staging/rtl8192u/r819xU_phy.o
2025-10-02T16:23:13.8031873Z LD [M] drivers/staging/wlan-ng/prism2_usb.o
2025-10-02T16:23:13.8517897Z CC [M] drivers/hid/hid-macally.o
2025-10-02T16:23:14.0136591Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/anr/anr_2/ia_css_anr2.host.o
2025-10-02T16:23:14.4818859Z AR drivers/devfreq/event/built-in.a
2025-10-02T16:23:14.5196310Z CC drivers/devfreq/devfreq.o
2025-10-02T16:23:14.6019801Z CC [M] drivers/hid/hid-magicmouse.o
2025-10-02T16:23:14.7720341Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/anr/anr_2/ia_css_anr2_table.host.o
2025-10-02T16:23:14.9211555Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/bh/bh_2/ia_css_bh.host.o
2025-10-02T16:23:14.9771811Z CC [M] drivers/staging/rtl8192u/r819xU_firmware.o
2025-10-02T16:23:15.4529970Z CC [M] drivers/hid/hid-maltron.o
2025-10-02T16:23:15.7635762Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/bnlm/ia_css_bnlm.host.o
2025-10-02T16:23:16.0072208Z CC [M] drivers/staging/rtl8192u/r819xU_cmdpkt.o
2025-10-02T16:23:16.0127859Z CC [M] drivers/hid/hid-mcp2221.o
2025-10-02T16:23:16.0970087Z CC drivers/devfreq/devfreq-event.o
2025-10-02T16:23:16.5057856Z CC [M] drivers/platform/x86/intel_atomisp2_led.o
2025-10-02T16:23:16.7708293Z CC [M] drivers/devfreq/governor_simpleondemand.o
2025-10-02T16:23:16.7737365Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/bnr/bnr_1.0/ia_css_bnr.host.o
2025-10-02T16:23:16.9513686Z CC [M] drivers/platform/x86/intel_cht_int33fe_common.o
2025-10-02T16:23:17.0051853Z CC [M] drivers/hid/hid-mf.o
2025-10-02T16:23:17.0458515Z CC [M] drivers/staging/rtl8192u/r8192U_dm.o
2025-10-02T16:23:17.3245213Z CC [M] drivers/devfreq/governor_performance.o
2025-10-02T16:23:17.4063001Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/bnr/bnr2_2/ia_css_bnr2_2.host.o
2025-10-02T16:23:17.4707001Z CC [M] drivers/platform/x86/intel_cht_int33fe_typec.o
2025-10-02T16:23:17.5577099Z CC [M] drivers/hid/hid-microsoft.o
2025-10-02T16:23:17.7768874Z CC [M] drivers/devfreq/governor_powersave.o
2025-10-02T16:23:18.2211384Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/cnr/cnr_1.0/ia_css_cnr.host.o
2025-10-02T16:23:18.2241535Z CC [M] drivers/hid/hid-monterey.o
2025-10-02T16:23:18.2895772Z CC [M] drivers/devfreq/governor_userspace.o
2025-10-02T16:23:18.3911075Z CC [M] drivers/platform/x86/intel_cht_int33fe_microb.o
2025-10-02T16:23:18.7742303Z CC [M] drivers/hid/hid-multitouch.o
2025-10-02T16:23:18.8816181Z CC [M] drivers/devfreq/governor_passive.o
2025-10-02T16:23:18.9565186Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/cnr/cnr_2/ia_css_cnr2.host.o
2025-10-02T16:23:19.3101274Z CC [M] drivers/platform/x86/intel-hid.o
2025-10-02T16:23:19.4004270Z AR drivers/devfreq/built-in.a
2025-10-02T16:23:19.4331378Z CC [M] drivers/staging/rtl8192u/r819xU_firmware_img.o
2025-10-02T16:23:19.4658333Z CC [M] drivers/hid/hid-nti.o
2025-10-02T16:23:19.5730355Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_crypt.o
2025-10-02T16:23:19.6895832Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/conversion/conversion_1.0/ia_css_conversion.host.o
2025-10-02T16:23:19.8667871Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/copy_output/copy_output_1.0/ia_css_copy_output.host.o
2025-10-02T16:23:19.9128207Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_dev.o
2025-10-02T16:23:19.9393657Z CC [M] drivers/hid/hid-ntrig.o
2025-10-02T16:23:20.2849745Z CC [M] drivers/platform/x86/intel_int0002_vgpio.o
2025-10-02T16:23:20.4628239Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/crop/crop_1.0/ia_css_crop.host.o
2025-10-02T16:23:20.7341904Z CC [M] drivers/hid/hid-ortek.o
2025-10-02T16:23:20.7924625Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_tkip.o
2025-10-02T16:23:21.1741863Z CC [M] drivers/platform/x86/intel_menlow.o
2025-10-02T16:23:21.2652565Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/csc/csc_1.0/ia_css_csc.host.o
2025-10-02T16:23:21.2930408Z CC [M] drivers/hid/hid-prodikeys.o
2025-10-02T16:23:21.8115725Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_phy.o
2025-10-02T16:23:22.0571436Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ctc/ctc_1.0/ia_css_ctc.host.o
2025-10-02T16:23:22.0620227Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_ccmp.o
2025-10-02T16:23:22.1705416Z CC [M] drivers/platform/x86/intel_oaktrail.o
2025-10-02T16:23:22.3538344Z CC [M] drivers/hid/hid-pl.o
2025-10-02T16:23:22.8002476Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ctc/ctc_1.0/ia_css_ctc_table.host.o
2025-10-02T16:23:22.8902075Z CC [M] drivers/platform/x86/intel-vbtn.o
2025-10-02T16:23:22.9517316Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ctc/ctc1_5/ia_css_ctc1_5.host.o
2025-10-02T16:23:23.0131941Z CC [M] drivers/hid/hid-penmount.o
2025-10-02T16:23:23.3177905Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_crypt_wep.o
2025-10-02T16:23:23.4114116Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.o
2025-10-02T16:23:23.6166247Z CC [M] drivers/hid/hid-petalynx.o
2025-10-02T16:23:23.7670945Z CC [M] drivers/platform/x86/surface3-wmi.o
2025-10-02T16:23:23.7943677Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ctc/ctc2/ia_css_ctc2.host.o
2025-10-02T16:23:23.9527482Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/de/de_1.0/ia_css_de.host.o
2025-10-02T16:23:24.3359852Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_cmdpkt.o
2025-10-02T16:23:24.3607117Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_rx.o
2025-10-02T16:23:24.4316534Z CC [M] drivers/hid/hid-picolcd_core.o
2025-10-02T16:23:24.4877666Z CC [M] drivers/platform/x86/surface3_button.o
2025-10-02T16:23:24.5803954Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/de/de_2/ia_css_de2.host.o
2025-10-02T16:23:25.1623010Z CC [M] drivers/platform/x86/surface3_power.o
2025-10-02T16:23:25.2215240Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192E_hwimg.o
2025-10-02T16:23:25.2888656Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8190P_rtl8256.o
2025-10-02T16:23:25.2939905Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/dpc2/ia_css_dpc2.host.o
2025-10-02T16:23:25.4619734Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/dp/dp_1.0/ia_css_dp.host.o
2025-10-02T16:23:25.5913182Z CC [M] drivers/hid/hid-picolcd_fb.o
2025-10-02T16:23:25.8695655Z CC [M] drivers/platform/x86/surfacepro3_button.o
2025-10-02T16:23:26.1567086Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/dvs/dvs_1.0/ia_css_dvs.host.o
2025-10-02T16:23:26.4562064Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_cam.o
2025-10-02T16:23:26.5641865Z CC [M] drivers/hid/hid-picolcd_backlight.o
2025-10-02T16:23:26.5817701Z CC [M] drivers/platform/x86/msi-laptop.o
2025-10-02T16:23:26.8983844Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/eed1_8/ia_css_eed1_8.host.o
2025-10-02T16:23:27.1758380Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_softmac.o
2025-10-02T16:23:27.4175776Z CC [M] drivers/hid/hid-picolcd_lcd.o
2025-10-02T16:23:27.4271535Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_core.o
2025-10-02T16:23:27.6912730Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/fc/fc_1.0/ia_css_formats.host.o
2025-10-02T16:23:27.7137806Z CC [M] drivers/platform/x86/msi-wmi.o
2025-10-02T16:23:28.1019096Z CC [M] drivers/hid/hid-picolcd_leds.o
2025-10-02T16:23:28.4595086Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/fpn/fpn_1.0/ia_css_fpn.host.o
2025-10-02T16:23:28.4911261Z CC [M] drivers/platform/x86/pcengines-apuv2.o
2025-10-02T16:23:28.8794938Z CC [M] drivers/hid/hid-picolcd_cir.o
2025-10-02T16:23:29.1498962Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/gc/gc_1.0/ia_css_gc.host.o
2025-10-02T16:23:29.1800328Z CC [M] drivers/platform/x86/samsung-laptop.o
2025-10-02T16:23:29.2647303Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_tx.o
2025-10-02T16:23:29.5696795Z CC [M] drivers/hid/hid-picolcd_debugfs.o
2025-10-02T16:23:29.8239303Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_dm.o
2025-10-02T16:23:29.9451645Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/gc/gc_1.0/ia_css_gc_table.host.o
2025-10-02T16:23:30.1623030Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/gc/gc_2/ia_css_gc2.host.o
2025-10-02T16:23:30.6637055Z CC [M] drivers/platform/x86/samsung-q10.o
2025-10-02T16:23:30.6646239Z CC [M] drivers/hid/hid-plantronics.o
2025-10-02T16:23:30.7483044Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_wx.o
2025-10-02T16:23:30.9689963Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/gc/gc_2/ia_css_gc2_table.host.o
2025-10-02T16:23:31.1486715Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/hdr/ia_css_hdr.host.o
2025-10-02T16:23:31.2710014Z CC [M] drivers/platform/x86/toshiba_bluetooth.o
2025-10-02T16:23:31.3050524Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ipu2_io_ls/bayer_io_ls/ia_css_bayer_io.host.o
2025-10-02T16:23:31.4339818Z CC [M] drivers/hid/hid-primax.o
2025-10-02T16:23:31.6535190Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_eeprom.o
2025-10-02T16:23:31.8577263Z CC [M] drivers/platform/x86/toshiba_haps.o
2025-10-02T16:23:31.9321795Z CC [M] drivers/hid/hid-redragon.o
2025-10-02T16:23:31.9432803Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ipu2_io_ls/yuv444_io_ls/ia_css_yuv444_io.host.o
2025-10-02T16:23:32.0124984Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_module.o
2025-10-02T16:23:32.4400701Z CC [M] drivers/platform/x86/toshiba-wmi.o
2025-10-02T16:23:32.4807488Z CC [M] drivers/hid/hid-retrode.o
2025-10-02T16:23:32.6093764Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_ethtool.o
2025-10-02T16:23:32.6730041Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/iterator/iterator_1.0/ia_css_iterator.host.o
2025-10-02T16:23:32.9365327Z CC [M] drivers/platform/x86/toshiba_acpi.o
2025-10-02T16:23:33.0775876Z CC [M] drivers/hid/hid-roccat.o
2025-10-02T16:23:33.2753045Z CC [M] drivers/staging/rtl8192u/ieee80211/ieee80211_softmac_wx.o
2025-10-02T16:23:33.5509890Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/macc/macc_1.0/ia_css_macc.host.o
2025-10-02T16:23:33.5936681Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_pci.o
2025-10-02T16:23:33.7084049Z CC [M] drivers/hid/hid-roccat-common.o
2025-10-02T16:23:34.2248643Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/macc/macc_1.0/ia_css_macc_table.host.o
2025-10-02T16:23:34.3596597Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/macc/macc1_5/ia_css_macc1_5.host.o
2025-10-02T16:23:34.4793841Z CC [M] drivers/staging/rtl8192u/ieee80211/rtl819x_HTProc.o
2025-10-02T16:23:34.5091408Z CC [M] drivers/hid/hid-roccat-arvo.o
2025-10-02T16:23:34.6142731Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_pm.o
2025-10-02T16:23:35.0690219Z CC [M] drivers/platform/x86/classmate-laptop.o
2025-10-02T16:23:35.0955910Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/macc/macc1_5/ia_css_macc1_5_table.host.o
2025-10-02T16:23:35.1802724Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/norm/norm_1.0/ia_css_norm.host.o
2025-10-02T16:23:35.2410467Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ob/ob_1.0/ia_css_ob.host.o
2025-10-02T16:23:35.2634720Z CC [M] drivers/hid/hid-roccat-isku.o
2025-10-02T16:23:35.6934180Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_ps.o
2025-10-02T16:23:35.7200837Z CC [M] drivers/staging/rtl8192u/ieee80211/rtl819x_TSProc.o
2025-10-02T16:23:35.8398158Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ob/ob2/ia_css_ob2.host.o
2025-10-02T16:23:36.0705123Z CC [M] drivers/hid/hid-roccat-kone.o
2025-10-02T16:23:36.1720030Z CC [M] drivers/platform/x86/compal-laptop.o
2025-10-02T16:23:36.5864055Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/output/output_1.0/ia_css_output.host.o
2025-10-02T16:23:36.7551875Z CC [M] drivers/staging/rtl8192e/rtl8192e/rtl_wx.o
2025-10-02T16:23:36.9832152Z CC [M] drivers/hid/hid-roccat-koneplus.o
2025-10-02T16:23:37.0381777Z CC [M] drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.o
2025-10-02T16:23:37.0500468Z CC [M] drivers/platform/x86/lg-laptop.o
2025-10-02T16:23:37.6282115Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/qplane/qplane_2/ia_css_qplane.host.o
2025-10-02T16:23:37.8226911Z CC [M] drivers/platform/x86/panasonic-laptop.o
2025-10-02T16:23:37.9381383Z CC [M] drivers/hid/hid-roccat-konepure.o
2025-10-02T16:23:38.0254081Z LD [M] drivers/staging/rtl8192e/rtl8192e/r8192e_pci.o
2025-10-02T16:23:38.0264203Z CC [M] drivers/staging/rtl8192u/ieee80211/dot11d.o
2025-10-02T16:23:38.1664853Z CC [M] drivers/staging/rtl8192e/dot11d.o
2025-10-02T16:23:38.3136219Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/raw_aa_binning/raw_aa_binning_1.0/ia_css_raa.host.o
2025-10-02T16:23:38.7032781Z CC [M] drivers/hid/hid-roccat-kovaplus.o
2025-10-02T16:23:38.8601276Z LD [M] drivers/staging/rtl8192u/r8192u_usb.o
2025-10-02T16:23:38.8771878Z CC [M] drivers/platform/x86/sony-laptop.o
2025-10-02T16:23:38.8804167Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/raw/raw_1.0/ia_css_raw.host.o
2025-10-02T16:23:38.9645900Z CC [M] drivers/platform/x86/system76_acpi.o
2025-10-02T16:23:39.2006599Z CC [M] drivers/staging/rtl8192e/rtllib_module.o
2025-10-02T16:23:39.5135441Z CC [M] drivers/hid/hid-roccat-lua.o
2025-10-02T16:23:39.6564170Z CC [M] drivers/staging/rtl8192e/rtllib_rx.o
2025-10-02T16:23:39.7338361Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ref/ref_1.0/ia_css_ref.host.o
2025-10-02T16:23:40.2114342Z CC [M] drivers/hid/hid-roccat-pyra.o
2025-10-02T16:23:40.4017401Z CC [M] drivers/hid/hid-roccat-ryos.o
2025-10-02T16:23:40.6367548Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/s3a/s3a_1.0/ia_css_s3a.host.o
2025-10-02T16:23:40.9944457Z CC [M] drivers/staging/rtl8192e/rtllib_tx.o
2025-10-02T16:23:41.1669067Z CC [M] drivers/hid/hid-roccat-savu.o
2025-10-02T16:23:41.2006631Z CC [M] drivers/platform/x86/topstar-laptop.o
2025-10-02T16:23:41.6484784Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/sc/sc_1.0/ia_css_sc.host.o
2025-10-02T16:23:41.8446417Z CC [M] drivers/platform/x86/i2c-multi-instantiate.o
2025-10-02T16:23:41.8850562Z CC [M] drivers/hid/hid-rmi.o
2025-10-02T16:23:42.4363771Z CC [M] drivers/platform/x86/mlx-platform.o
2025-10-02T16:23:42.4492989Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/sdis/sdis_1.0/ia_css_sdis.host.o
2025-10-02T16:23:42.6071506Z CC drivers/extcon/extcon.o
2025-10-02T16:23:42.8019958Z CC [M] drivers/staging/rtl8192e/rtllib_wx.o
2025-10-02T16:23:42.9151709Z CC [M] drivers/hid/hid-saitek.o
2025-10-02T16:23:43.2160838Z CC [M] drivers/platform/x86/intel_ips.o
2025-10-02T16:23:43.2523376Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/sdis/sdis_2/ia_css_sdis2.host.o
2025-10-02T16:23:43.5997080Z CC [M] drivers/hid/hid-samsung.o
2025-10-02T16:23:43.7613237Z CC drivers/extcon/devres.o
2025-10-02T16:23:44.0194138Z CC [M] drivers/staging/rtl8192e/rtllib_softmac.o
2025-10-02T16:23:44.2388305Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/tdf/tdf_1.0/ia_css_tdf.host.o
2025-10-02T16:23:44.2639395Z CC [M] drivers/hid/hid-sjoy.o
2025-10-02T16:23:44.3222555Z CC [M] drivers/extcon/extcon-adc-jack.o
2025-10-02T16:23:44.4977516Z CC [M] drivers/platform/x86/intel-rst.o
2025-10-02T16:23:44.8052149Z CC [M] drivers/extcon/extcon-arizona.o
2025-10-02T16:23:44.9054007Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/tnr/tnr_1.0/ia_css_tnr.host.o
2025-10-02T16:23:44.9321464Z CC [M] drivers/hid/hid-sony.o
2025-10-02T16:23:45.1103334Z CC [M] drivers/platform/x86/intel-smartconnect.o
2025-10-02T16:23:45.6126869Z CC [M] drivers/platform/x86/intel-uncore-frequency.o
2025-10-02T16:23:45.8621405Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/vf/vf_1.0/ia_css_vf.host.o
2025-10-02T16:23:46.3561789Z CC [M] drivers/staging/rtl8192e/rtllib_softmac_wx.o
2025-10-02T16:23:46.4389319Z CC [M] drivers/platform/x86/intel_bxtwc_tmu.o
2025-10-02T16:23:46.5172430Z CC [M] drivers/extcon/extcon-axp288.o
2025-10-02T16:23:46.5617417Z CC [M] drivers/hid/hid-speedlink.o
2025-10-02T16:23:46.7541188Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/wb/wb_1.0/ia_css_wb.host.o
2025-10-02T16:23:46.9388266Z CC [M] drivers/platform/x86/intel_chtdc_ti_pwrbtn.o
2025-10-02T16:23:47.1275549Z CC [M] drivers/hid/hid-steam.o
2025-10-02T16:23:47.1701449Z CC [M] drivers/extcon/extcon-fsa9480.o
2025-10-02T16:23:47.4302456Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/xnr/xnr_1.0/ia_css_xnr.host.o
2025-10-02T16:23:47.4446401Z CC [M] drivers/staging/rtl8192e/rtl819x_BAProc.o
2025-10-02T16:23:47.5647149Z CC [M] drivers/platform/x86/intel_mid_thermal.o
2025-10-02T16:23:47.8046808Z CC [M] drivers/extcon/extcon-gpio.o
2025-10-02T16:23:48.0285448Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/xnr/xnr_1.0/ia_css_xnr_table.host.o
2025-10-02T16:23:48.0333500Z CC [M] drivers/hid/hid-steelseries.o
2025-10-02T16:23:48.1348102Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/xnr/xnr_3.0/ia_css_xnr3.host.o
2025-10-02T16:23:48.2771845Z CC [M] drivers/platform/x86/intel_mid_powerbtn.o
2025-10-02T16:23:48.3596079Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ynr/ynr_1.0/ia_css_ynr.host.o
2025-10-02T16:23:48.4269076Z CC [M] drivers/extcon/extcon-intel-int3496.o
2025-10-02T16:23:48.6260981Z CC [M] drivers/hid/hid-sunplus.o
2025-10-02T16:23:48.7223471Z CC [M] drivers/staging/rtl8192e/rtl819x_HTProc.o
2025-10-02T16:23:48.8330714Z CC [M] drivers/platform/x86/intel_mrfld_pwrbtn.o
2025-10-02T16:23:49.0930421Z CC [M] drivers/hid/hid-gaff.o
2025-10-02T16:23:49.1061015Z CC [M] drivers/extcon/extcon-intel-cht-wc.o
2025-10-02T16:23:49.2642520Z CC [M] drivers/staging/media/atomisp/pci/isp/kernels/ynr/ynr_2/ia_css_ynr2.host.o
2025-10-02T16:23:49.5061277Z CC [M] drivers/platform/x86/intel_punit_ipc.o
2025-10-02T16:23:49.6574820Z CC [M] drivers/hid/hid-tmff.o
2025-10-02T16:23:49.7499351Z CC [M] drivers/extcon/extcon-intel-mrfld.o
2025-10-02T16:23:49.8182020Z CC [M] drivers/staging/rtl8192e/rtl819x_TSProc.o
2025-10-02T16:23:50.0562134Z CC [M] drivers/platform/x86/intel_scu_pltdrv.o
2025-10-02T16:23:50.1651064Z CC [M] drivers/staging/media/atomisp/pci/mmu/isp_mmu.o
2025-10-02T16:23:50.2592799Z CC [M] drivers/extcon/extcon-max14577.o
2025-10-02T16:23:50.3431163Z CC [M] drivers/hid/hid-tivo.o
2025-10-02T16:23:50.5432760Z CC [M] drivers/platform/x86/intel_scu_ipcutil.o
2025-10-02T16:23:50.8567618Z CC [M] drivers/staging/rtl8192e/rtllib_crypt_ccmp.o
2025-10-02T16:23:51.0304542Z CC [M] drivers/hid/hid-topseed.o
2025-10-02T16:23:51.0406815Z CC [M] drivers/platform/x86/intel_telemetry_core.o
2025-10-02T16:23:51.1212971Z CC [M] drivers/staging/media/atomisp/pci/mmu/sh_mmu_mrfld.o
2025-10-02T16:23:51.4332040Z CC [M] drivers/extcon/extcon-max3355.o
2025-10-02T16:23:51.5701262Z CC [M] drivers/platform/x86/intel_telemetry_pltdrv.o
2025-10-02T16:23:51.7094769Z CC [M] drivers/hid/hid-twinhan.o
2025-10-02T16:23:51.8494443Z CC [M] drivers/staging/rtl8192e/rtllib_crypt_tkip.o
2025-10-02T16:23:51.9173486Z CC [M] drivers/staging/media/atomisp/pci/runtime/binary/src/binary.o
2025-10-02T16:23:52.0523239Z CC [M] drivers/extcon/extcon-max77693.o
2025-10-02T16:23:52.2537390Z CC [M] drivers/platform/x86/intel_telemetry_debugfs.o
2025-10-02T16:23:52.4094044Z CC [M] drivers/hid/hid-u2fzero.o
2025-10-02T16:23:53.0365313Z CC [M] drivers/extcon/extcon-max77843.o
2025-10-02T16:23:53.1819371Z CC [M] drivers/staging/rtl8192e/rtllib_crypt_wep.o
2025-10-02T16:23:53.2008413Z CC [M] drivers/hid/hid-uclogic-core.o
2025-10-02T16:23:53.2725967Z LD [M] drivers/platform/x86/dell-smbios.o
2025-10-02T16:23:53.3031131Z LD [M] drivers/platform/x86/intel_cht_int33fe.o
2025-10-02T16:23:53.3335575Z AR drivers/platform/x86/built-in.a
2025-10-02T16:23:53.4836701Z CC [M] drivers/staging/media/atomisp/pci/runtime/bufq/src/bufq.o
2025-10-02T16:23:53.7597129Z CC [M] drivers/extcon/extcon-max8997.o
2025-10-02T16:23:53.8152666Z CC [M] drivers/hid/hid-uclogic-rdesc.o
2025-10-02T16:23:53.9400090Z AR drivers/platform/built-in.a
2025-10-02T16:23:53.9911699Z CC [M] drivers/hid/hid-uclogic-params.o
2025-10-02T16:23:54.1138821Z LD [M] drivers/staging/rtl8192e/rtllib.o
2025-10-02T16:23:54.1934721Z CC [M] drivers/extcon/extcon-palmas.o
2025-10-02T16:23:54.2640964Z CC [M] drivers/staging/media/atomisp/pci/runtime/debug/src/ia_css_debug.o
2025-10-02T16:23:54.4683522Z CC [M] drivers/staging/media/atomisp/pci/runtime/eventq/src/eventq.o
2025-10-02T16:23:54.6134103Z AR drivers/memory/built-in.a
2025-10-02T16:23:54.6503903Z CC [M] drivers/staging/rtl8723bs/core/rtw_ap.o
2025-10-02T16:23:54.7390255Z CC [M] drivers/hid/hid-udraw-ps3.o
2025-10-02T16:23:55.1365308Z CC [M] drivers/extcon/extcon-ptn5150.o
2025-10-02T16:23:55.2251559Z CC [M] drivers/hid/hid-led.o
2025-10-02T16:23:55.4236316Z CC drivers/powercap/powercap_sys.o
2025-10-02T16:23:55.7486370Z CC [M] drivers/extcon/extcon-rt8973a.o
2025-10-02T16:23:56.0667953Z CC [M] drivers/staging/media/atomisp/pci/runtime/event/src/event.o
2025-10-02T16:23:56.1463327Z CC [M] drivers/hid/hid-xinmo.o
2025-10-02T16:23:56.2444149Z CC [M] drivers/staging/rtl8723bs/core/rtw_btcoex.o
2025-10-02T16:23:56.3961476Z CC drivers/powercap/idle_inject.o
2025-10-02T16:23:56.5392351Z CC [M] drivers/extcon/extcon-sm5502.o
2025-10-02T16:23:56.7304988Z CC [M] drivers/staging/media/atomisp/pci/runtime/frame/src/frame.o
2025-10-02T16:23:56.7315889Z CC [M] drivers/hid/hid-zpff.o
2025-10-02T16:23:56.9790279Z CC [M] drivers/powercap/intel_rapl_common.o
2025-10-02T16:23:57.1201076Z CC [M] drivers/extcon/extcon-usb-gpio.o
2025-10-02T16:23:57.2423458Z CC [M] drivers/staging/rtl8723bs/core/rtw_cmd.o
2025-10-02T16:23:57.4366599Z CC [M] drivers/hid/hid-zydacron.o
2025-10-02T16:23:57.8328350Z CC [M] drivers/extcon/extcon-usbc-cros-ec.o
2025-10-02T16:23:57.8493247Z CC [M] drivers/staging/media/atomisp/pci/runtime/ifmtr/src/ifmtr.o
2025-10-02T16:23:57.9792027Z CC [M] drivers/staging/media/atomisp/pci/runtime/inputfifo/src/inputfifo.o
2025-10-02T16:23:58.1216172Z CC [M] drivers/hid/hid-viewsonic.o
2025-10-02T16:23:58.4380377Z AR drivers/extcon/built-in.a
2025-10-02T16:23:58.4912231Z CC [M] drivers/powercap/intel_rapl_msr.o
2025-10-02T16:23:58.5627055Z CC [M] drivers/staging/rtl8712/rtl871x_cmd.o
2025-10-02T16:23:58.6948296Z CC [M] drivers/hid/wacom_wac.o
2025-10-02T16:23:58.9969969Z CC [M] drivers/staging/media/atomisp/pci/runtime/isp_param/src/isp_param.o
2025-10-02T16:23:59.0627164Z CC [M] drivers/staging/rtl8723bs/core/rtw_debug.o
2025-10-02T16:23:59.2594130Z AR drivers/powercap/built-in.a
2025-10-02T16:23:59.3258218Z CC [M] drivers/staging/rtl8723bs/core/rtw_efuse.o
2025-10-02T16:23:59.8130225Z CC [M] drivers/staging/rtl8712/rtl8712_cmd.o
2025-10-02T16:23:59.8514864Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/csi_rx_rmgr.o
2025-10-02T16:24:00.2408891Z CC [M] drivers/staging/rtl8188eu/core/rtw_ap.o
2025-10-02T16:24:00.3871564Z CC [M] drivers/staging/rtl8723bs/core/rtw_io.o
2025-10-02T16:24:00.6763195Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/ibuf_ctrl_rmgr.o
2025-10-02T16:24:00.9508376Z CC [M] drivers/staging/rtl8712/rtl871x_security.o
2025-10-02T16:24:01.4473860Z CC [M] drivers/staging/rtl8723bs/core/rtw_ioctl_set.o
2025-10-02T16:24:01.5435616Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/isys_dma_rmgr.o
2025-10-02T16:24:01.7784686Z CC [M] drivers/hid/wacom_sys.o
2025-10-02T16:24:01.9976423Z CC [M] drivers/staging/rtl8188eu/core/rtw_cmd.o
2025-10-02T16:24:02.2524555Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/isys_init.o
2025-10-02T16:24:02.6551756Z CC [M] drivers/staging/rtl8723bs/core/rtw_ieee80211.o
2025-10-02T16:24:02.8825628Z CC [M] drivers/staging/rtl8712/rtl871x_eeprom.o
2025-10-02T16:24:03.2431063Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/isys_stream2mmio_rmgr.o
2025-10-02T16:24:03.3197314Z CC [M] drivers/staging/rtl8188eu/core/rtw_debug.o
2025-10-02T16:24:03.8314904Z CC [M] drivers/staging/rtl8712/rtl8712_efuse.o
2025-10-02T16:24:03.9200407Z CC [M] drivers/hid/hid-waltop.o
2025-10-02T16:24:03.9294980Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/rx.o
2025-10-02T16:24:04.3320307Z CC [M] drivers/staging/rtl8188eu/core/rtw_efuse.o
2025-10-02T16:24:04.4500517Z CC [M] drivers/hid/hid-wiimote-core.o
2025-10-02T16:24:04.4894779Z CC [M] drivers/staging/rtl8723bs/core/rtw_mlme.o
2025-10-02T16:24:04.6108818Z CC [M] drivers/staging/media/atomisp/pci/runtime/isys/src/virtual_isys.o
2025-10-02T16:24:05.2657272Z CC [M] drivers/staging/rtl8712/hal_init.o
2025-10-02T16:24:05.6258200Z CC [M] drivers/staging/media/atomisp/pci/runtime/pipeline/src/pipeline.o
2025-10-02T16:24:05.6971546Z CC [M] drivers/staging/rtl8188eu/core/rtw_ieee80211.o
2025-10-02T16:24:05.8762548Z CC [M] drivers/hid/hid-wiimote-modules.o
2025-10-02T16:24:06.4659147Z CC [M] drivers/staging/rtl8712/usb_halinit.o
2025-10-02T16:24:06.7886650Z CC [M] drivers/staging/rtl8723bs/core/rtw_mlme_ext.o
2025-10-02T16:24:06.9082058Z CC [M] drivers/staging/media/atomisp/pci/runtime/queue/src/queue_access.o
2025-10-02T16:24:07.1149892Z CC [M] drivers/staging/rtl8188eu/core/rtw_ioctl_set.o
2025-10-02T16:24:07.3715277Z CC [M] drivers/hid/hid-wiimote-debug.o
2025-10-02T16:24:07.3828993Z CC [M] drivers/staging/rtl8712/usb_ops.o
2025-10-02T16:24:07.6131401Z CC [M] drivers/staging/media/atomisp/pci/runtime/queue/src/queue.o
2025-10-02T16:24:08.0061710Z CC [M] drivers/hid/hid-sensor-hub.o
2025-10-02T16:24:08.0605576Z CC [M] drivers/staging/media/atomisp/pci/runtime/rmgr/src/rmgr.o
2025-10-02T16:24:08.2311983Z CC [M] drivers/staging/media/atomisp/pci/runtime/rmgr/src/rmgr_vbuf.o
2025-10-02T16:24:08.3587100Z CC [M] drivers/staging/rtl8188eu/core/rtw_iol.o
2025-10-02T16:24:08.3773039Z CC [M] drivers/staging/rtl8712/usb_ops_linux.o
2025-10-02T16:24:09.0542621Z LD [M] drivers/hid/hid-logitech.o
2025-10-02T16:24:09.0763273Z LD [M] drivers/hid/hid-picolcd.o
2025-10-02T16:24:09.1161148Z LD [M] drivers/hid/hid-uclogic.o
2025-10-02T16:24:09.1173140Z CC [M] drivers/staging/media/atomisp/pci/runtime/spctrl/src/spctrl.o
2025-10-02T16:24:09.1395609Z LD [M] drivers/hid/wacom.o
2025-10-02T16:24:09.1781300Z LD [M] drivers/hid/hid-wiimote.o
2025-10-02T16:24:09.2013172Z AR drivers/hid/built-in.a
2025-10-02T16:24:09.2302117Z CC [M] drivers/staging/rtl8188eu/core/rtw_led.o
2025-10-02T16:24:09.6614000Z CC [M] drivers/staging/rtl8712/rtl871x_io.o
2025-10-02T16:24:09.8752022Z CC [M] drivers/staging/media/atomisp/pci/runtime/timer/src/timer.o
2025-10-02T16:24:10.0047702Z AR drivers/perf/built-in.a
2025-10-02T16:24:10.0464020Z CC [M] drivers/staging/rtl8712/rtl8712_io.o
2025-10-02T16:24:10.2320039Z CC [M] drivers/staging/rtl8723bs/core/rtw_odm.o
2025-10-02T16:24:10.2650316Z CC [M] drivers/staging/rtl8188eu/core/rtw_mlme.o
2025-10-02T16:24:10.4706346Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/debug.o
2025-10-02T16:24:10.7583756Z CC [M] drivers/staging/rtl8723bs/core/rtw_pwrctrl.o
2025-10-02T16:24:10.9342013Z CC [M] drivers/staging/rtl8712/rtl871x_ioctl_linux.o
2025-10-02T16:24:11.0222601Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/dma.o
2025-10-02T16:24:11.3023278Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/event_fifo.o
2025-10-02T16:24:11.4435284Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/fifo_monitor.o
2025-10-02T16:24:11.5431064Z CC [M] drivers/staging/rtl8712/rtl871x_ioctl_rtl.o
2025-10-02T16:24:11.8247954Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gdc.o
2025-10-02T16:24:11.9593458Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gp_device.o
2025-10-02T16:24:12.1015411Z CC [M] drivers/staging/rtl8723bs/core/rtw_recv.o
2025-10-02T16:24:12.1685917Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/gp_timer.o
2025-10-02T16:24:12.2121969Z CC [M] drivers/staging/rtl8188eu/core/rtw_mlme_ext.o
2025-10-02T16:24:12.4023813Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/hmem.o
2025-10-02T16:24:12.5723805Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_formatter.o
2025-10-02T16:24:12.5918296Z CC [M] drivers/staging/rts5208/rtsx.o
2025-10-02T16:24:12.6866603Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/input_system.o
2025-10-02T16:24:12.8192264Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/irq.o
2025-10-02T16:24:12.8404443Z CC [M] drivers/staging/rtl8712/rtl871x_ioctl_set.o
2025-10-02T16:24:13.1134305Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/isp.o
2025-10-02T16:24:13.3234918Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/mmu.o
2025-10-02T16:24:13.4494647Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/sp.o
2025-10-02T16:24:13.6396720Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/timed_ctrl.o
2025-10-02T16:24:13.7329833Z CC [M] drivers/staging/rtl8723bs/core/rtw_rf.o
2025-10-02T16:24:13.7814588Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_common/host/vmem.o
2025-10-02T16:24:13.8568784Z CC [M] drivers/staging/rts5208/rtsx_chip.o
2025-10-02T16:24:14.1311412Z CC [M] drivers/staging/media/atomisp/pci/hive_isp_css_shared/host/tag.o
2025-10-02T16:24:14.3360721Z CC [M] drivers/staging/rtl8712/rtl8712_led.o
2025-10-02T16:24:14.3498631Z CC [M] drivers/staging/media/atomisp/pci/system_local.o
2025-10-02T16:24:14.4702987Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/hive/ia_css_isp_configs.o
2025-10-02T16:24:14.5430116Z CC [M] drivers/staging/rtl8723bs/core/rtw_security.o
2025-10-02T16:24:15.3987086Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/hive/ia_css_isp_params.o
2025-10-02T16:24:15.5694445Z CC [M] drivers/staging/rtl8188eu/core/rtw_pwrctrl.o
2025-10-02T16:24:15.6449619Z CC [M] drivers/staging/rtl8712/rtl871x_mlme.o
2025-10-02T16:24:16.2518142Z CC [M] drivers/staging/rts5208/rtsx_transport.o
2025-10-02T16:24:16.7343873Z CC [M] drivers/staging/rtl8188eu/core/rtw_recv.o
2025-10-02T16:24:17.0355227Z CC [M] drivers/staging/rtl8723bs/core/rtw_sta_mgt.o
2025-10-02T16:24:17.2189355Z CC [M] drivers/staging/rtl8712/ieee80211.o
2025-10-02T16:24:17.2418915Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/hive/ia_css_isp_states.o
2025-10-02T16:24:17.5054254Z CC [M] drivers/staging/rts5208/rtsx_scsi.o
2025-10-02T16:24:17.9814144Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/csi_rx.o
2025-10-02T16:24:18.0558964Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/ibuf_ctrl.o
2025-10-02T16:24:18.1302403Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/isys_dma.o
2025-10-02T16:24:18.2088989Z CC [M] drivers/staging/rtl8712/rtl871x_mp_ioctl.o
2025-10-02T16:24:18.2592130Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/isys_irq.o
2025-10-02T16:24:18.4531060Z CC [M] drivers/staging/rtl8723bs/core/rtw_wlan_util.o
2025-10-02T16:24:18.8084128Z CC [M] drivers/staging/rtl8188eu/core/rtw_rf.o
2025-10-02T16:24:19.0512392Z CC [M] drivers/staging/media/atomisp/pci/css_2401_system/host/isys_stream2mmio.o
2025-10-02T16:24:19.2063572Z CC [M] drivers/staging/media/atomisp/pci/atomisp_gmin_platform.o
2025-10-02T16:24:19.2923466Z CC [M] drivers/staging/rtl8712/rtl871x_mp.o
2025-10-02T16:24:19.6122646Z CC [M] drivers/staging/rtl8188eu/core/rtw_security.o
2025-10-02T16:24:20.2911540Z CC [M] drivers/staging/rts5208/rtsx_card.o
2025-10-02T16:24:20.3650052Z CC [M] drivers/staging/rtl8723bs/core/rtw_xmit.o
2025-10-02T16:24:20.5880668Z CC [M] drivers/staging/rtl8712/mlme_linux.o
2025-10-02T16:24:20.6823766Z LD [M] drivers/staging/media/atomisp/atomisp.o
2025-10-02T16:24:20.8531362Z AR drivers/staging/media/atomisp/built-in.a
2025-10-02T16:24:20.9218435Z AR drivers/staging/media/built-in.a
2025-10-02T16:24:20.9651375Z CC [M] drivers/staging/rtl8723bs/hal/hal_intf.o
2025-10-02T16:24:20.9736560Z CC [M] drivers/staging/rtl8188eu/core/rtw_sreset.o
2025-10-02T16:24:21.6828941Z CC [M] drivers/staging/rts5208/general.o
2025-10-02T16:24:21.7393626Z CC [M] drivers/staging/rtl8712/recv_linux.o
2025-10-02T16:24:21.9023555Z CC [M] drivers/staging/rtl8188eu/core/rtw_sta_mgt.o
2025-10-02T16:24:22.1285783Z CC drivers/ras/ras.o
2025-10-02T16:24:22.3462374Z CC [M] drivers/staging/rts5208/sd.o
2025-10-02T16:24:22.3479688Z CC [M] drivers/staging/rtl8723bs/hal/hal_com.o
2025-10-02T16:24:22.8583327Z CC [M] drivers/staging/rtl8712/xmit_linux.o
2025-10-02T16:24:23.1362716Z CC [M] drivers/staging/rtl8188eu/core/rtw_wlan_util.o
2025-10-02T16:24:23.3687125Z CC drivers/ras/debugfs.o
2025-10-02T16:24:23.7826689Z CC drivers/ras/cec.o
2025-10-02T16:24:23.7917498Z CC [M] drivers/staging/rtl8723bs/hal/hal_com_phycfg.o
2025-10-02T16:24:23.8059900Z CC [M] drivers/staging/rtl8712/usb_intf.o
2025-10-02T16:24:24.6107233Z AR drivers/ras/built-in.a
2025-10-02T16:24:24.6354433Z CC [M] drivers/staging/rtl8712/os_intfs.o
2025-10-02T16:24:24.8413292Z CC [M] drivers/staging/rtl8188eu/core/rtw_xmit.o
2025-10-02T16:24:24.9841262Z CC [M] drivers/staging/rtl8188eu/hal/fw.o
2025-10-02T16:24:25.2702220Z CC [M] drivers/staging/rts5208/xd.o
2025-10-02T16:24:25.6890491Z CC [M] drivers/staging/rtl8723bs/hal/hal_btcoex.o
2025-10-02T16:24:25.7154178Z CC [M] drivers/staging/rtl8712/rtl871x_pwrctrl.o
2025-10-02T16:24:26.0013363Z CC [M] drivers/staging/vt6655/device_main.o
2025-10-02T16:24:26.6927197Z CC [M] drivers/staging/rtl8712/rtl8712_recv.o
2025-10-02T16:24:27.0435456Z CC [M] drivers/staging/rts5208/ms.o
2025-10-02T16:24:27.0696342Z CC [M] drivers/staging/rtl8188eu/hal/mac_cfg.o
2025-10-02T16:24:27.3380836Z CC [M] drivers/staging/rtl8723bs/hal/hal_sdio.o
2025-10-02T16:24:27.8854419Z CC [M] drivers/staging/rtl8188eu/hal/bb_cfg.o
2025-10-02T16:24:28.0479686Z CC [M] drivers/staging/vt6655/card.o
2025-10-02T16:24:28.1563394Z CC [M] drivers/staging/rtl8712/rtl871x_recv.o
2025-10-02T16:24:28.5166741Z CC [M] drivers/staging/rtl8723bs/hal/hal_pwr_seq.o
2025-10-02T16:24:28.8539178Z CC [M] drivers/staging/rtl8188eu/hal/rf_cfg.o
2025-10-02T16:24:29.4183943Z CC [M] drivers/staging/rts5208/spi.o
2025-10-02T16:24:29.5012891Z CC [M] drivers/staging/rtl8723bs/hal/HalPhyRf.o
2025-10-02T16:24:29.6049961Z CC [M] drivers/staging/vt6655/channel.o
2025-10-02T16:24:29.6335978Z CC [M] drivers/staging/rtl8712/rtl871x_sta_mgt.o
2025-10-02T16:24:29.9901823Z CC [M] drivers/staging/rtl8188eu/hal/pwrseqcmd.o
2025-10-02T16:24:30.3917622Z LD [M] drivers/staging/rts5208/rts5208.o
2025-10-02T16:24:30.4462140Z CC [M] drivers/staging/rtl8723bs/hal/HalPwrSeqCmd.o
2025-10-02T16:24:30.6198502Z CC [M] drivers/staging/rtl8712/rtl871x_xmit.o
2025-10-02T16:24:30.7761278Z AR drivers/hwtracing/intel_th/built-in.a
2025-10-02T16:24:30.7935153Z CC [M] drivers/hwtracing/intel_th/core.o
2025-10-02T16:24:30.8918224Z CC [M] drivers/staging/vt6655/mac.o
2025-10-02T16:24:30.9652849Z CC [M] drivers/staging/rtl8188eu/hal/pwrseq.o
2025-10-02T16:24:31.3594033Z CC [M] drivers/staging/rtl8723bs/hal/odm.o
2025-10-02T16:24:31.8295103Z CC [M] drivers/staging/rtl8188eu/hal/hal8188e_rate_adaptive.o
2025-10-02T16:24:31.9505978Z CC [M] drivers/hwtracing/intel_th/pci.o
2025-10-02T16:24:32.0871865Z CC [M] drivers/staging/rtl8712/rtl8712_xmit.o
2025-10-02T16:24:32.3240987Z CC [M] drivers/staging/vt6655/baseband.o
2025-10-02T16:24:32.7151918Z CC [M] drivers/staging/rtl8723bs/hal/odm_CfoTracking.o
2025-10-02T16:24:32.8030803Z CC [M] drivers/hwtracing/intel_th/acpi.o
2025-10-02T16:24:33.2062014Z LD [M] drivers/staging/rtl8712/r8712u.o
2025-10-02T16:24:33.2836074Z CC [M] drivers/staging/rtl8188eu/hal/hal_intf.o
2025-10-02T16:24:33.3407013Z CC [M] drivers/hwtracing/intel_th/gth.o
2025-10-02T16:24:33.3499778Z CC [M] drivers/staging/rtl8188eu/hal/hal_com.o
2025-10-02T16:24:33.6443681Z CC [M] drivers/staging/rtl8723bs/hal/odm_debug.o
2025-10-02T16:24:33.7457868Z CC [M] drivers/staging/vt6655/rxtx.o
2025-10-02T16:24:34.1270847Z CC [M] drivers/staging/vt6655/dpc.o
2025-10-02T16:24:34.3174590Z CC [M] drivers/hwtracing/intel_th/sth.o
2025-10-02T16:24:34.3863125Z CC [M] drivers/staging/rtl8188eu/hal/odm.o
2025-10-02T16:24:34.5839748Z CC [M] drivers/staging/rtl8723bs/hal/odm_DIG.o
2025-10-02T16:24:35.2123892Z CC [M] drivers/hwtracing/intel_th/msu.o
2025-10-02T16:24:35.5944589Z CC [M] drivers/staging/rtl8188eu/hal/odm_hwconfig.o
2025-10-02T16:24:35.6321250Z CC [M] drivers/staging/vt6655/power.o
2025-10-02T16:24:35.7034284Z CC [M] drivers/hwtracing/intel_th/pti.o
2025-10-02T16:24:35.9467376Z CC [M] drivers/staging/rtl8723bs/hal/odm_DynamicBBPowerSaving.o
2025-10-02T16:24:36.5530739Z CC [M] drivers/staging/vt6655/srom.o
2025-10-02T16:24:36.7350444Z CC [M] drivers/staging/rtl8188eu/hal/odm_rtl8188e.o
2025-10-02T16:24:36.8382146Z CC [M] drivers/staging/rtl8723bs/hal/odm_DynamicTxPower.o
2025-10-02T16:24:36.8725654Z CC [M] drivers/hwtracing/intel_th/msu-sink.o
2025-10-02T16:24:37.1191207Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_cmd.o
2025-10-02T16:24:37.5298177Z LD [M] drivers/hwtracing/intel_th/intel_th.o
2025-10-02T16:24:37.5433971Z LD [M] drivers/hwtracing/intel_th/intel_th_pci.o
2025-10-02T16:24:37.5558211Z LD [M] drivers/hwtracing/intel_th/intel_th_acpi.o
2025-10-02T16:24:37.5681409Z LD [M] drivers/hwtracing/intel_th/intel_th_gth.o
2025-10-02T16:24:37.5814544Z LD [M] drivers/hwtracing/intel_th/intel_th_sth.o
2025-10-02T16:24:37.5936473Z LD [M] drivers/hwtracing/intel_th/intel_th_msu.o
2025-10-02T16:24:37.6088879Z LD [M] drivers/hwtracing/intel_th/intel_th_pti.o
2025-10-02T16:24:37.6216440Z LD [M] drivers/hwtracing/intel_th/intel_th_msu_sink.o
2025-10-02T16:24:37.6901459Z CC [M] drivers/staging/vt6655/key.o
2025-10-02T16:24:37.7518627Z CC [M] drivers/staging/vt6656/main_usb.o
2025-10-02T16:24:37.7798158Z CC [M] drivers/staging/rtl8723bs/hal/odm_EdcaTurboCheck.o
2025-10-02T16:24:37.7951617Z CC [M] drivers/staging/vt6655/rf.o
2025-10-02T16:24:38.1847623Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_dm.o
2025-10-02T16:24:38.8138533Z CC [M] drivers/staging/rtl8723bs/hal/odm_HWConfig.o
2025-10-02T16:24:38.9591459Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_hal_init.o
2025-10-02T16:24:39.0981572Z CC [M] drivers/staging/rtl8723bs/hal/odm_NoiseMonitor.o
2025-10-02T16:24:39.2837074Z LD [M] drivers/staging/vt6655/vt6655_stage.o
2025-10-02T16:24:39.4071180Z CC [M] drivers/staging/iio/accel/adis16203.o
2025-10-02T16:24:39.4271891Z CC [M] drivers/staging/vt6656/card.o
2025-10-02T16:24:39.9958121Z CC [M] drivers/staging/iio/adc/ad7816.o
2025-10-02T16:24:40.0844087Z CC [M] drivers/staging/rtl8723bs/hal/odm_PathDiv.o
2025-10-02T16:24:40.1567058Z CC [M] drivers/staging/iio/accel/adis16240.o
2025-10-02T16:24:40.2190653Z CC [M] drivers/staging/rtl8188eu/hal/phy.o
2025-10-02T16:24:40.5836566Z CC [M] drivers/staging/vt6656/mac.o
2025-10-02T16:24:40.8455264Z CC [M] drivers/staging/iio/adc/ad7280a.o
2025-10-02T16:24:41.0011717Z CC [M] drivers/staging/gdm724x/gdm_lte.o
2025-10-02T16:24:41.0781383Z CC [M] drivers/staging/rtl8723bs/hal/odm_RegConfig8723B.o
2025-10-02T16:24:41.6744688Z CC [M] drivers/staging/vt6656/baseband.o
2025-10-02T16:24:42.0228541Z CC [M] drivers/staging/rtl8188eu/hal/rf.o
2025-10-02T16:24:42.0294404Z CC [M] drivers/staging/iio/addac/adt7316.o
2025-10-02T16:24:42.2383661Z CC [M] drivers/staging/rtl8723bs/hal/odm_RTL8723B.o
2025-10-02T16:24:42.5732526Z CC [M] drivers/staging/gdm724x/netlink_k.o
2025-10-02T16:24:42.8002689Z CC [M] drivers/staging/vt6656/wcmd.o
2025-10-02T16:24:43.1955856Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_rxdesc.o
2025-10-02T16:24:43.2015275Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_cmd.o
2025-10-02T16:24:43.2378411Z CC [M] drivers/staging/iio/addac/adt7316-spi.o
2025-10-02T16:24:43.8911629Z CC [M] drivers/staging/gdm724x/gdm_usb.o
2025-10-02T16:24:43.9007960Z CC [M] drivers/staging/iio/addac/adt7316-i2c.o
2025-10-02T16:24:43.9155353Z CC [M] drivers/staging/vt6656/rxtx.o
2025-10-02T16:24:44.1739223Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188e_xmit.o
2025-10-02T16:24:44.4823971Z CC [M] drivers/staging/iio/cdc/ad7150.o
2025-10-02T16:24:44.6053414Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_dm.o
2025-10-02T16:24:45.0881925Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188eu_led.o
2025-10-02T16:24:45.0995156Z CC [M] drivers/staging/iio/cdc/ad7746.o
2025-10-02T16:24:45.2180511Z CC [M] drivers/staging/vt6656/power.o
2025-10-02T16:24:45.3412330Z CC [M] drivers/staging/gdm724x/gdm_endian.o
2025-10-02T16:24:45.5577735Z CC [M] drivers/staging/gdm724x/gdm_tty.o
2025-10-02T16:24:45.7185764Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.o
2025-10-02T16:24:45.8636053Z CC [M] drivers/staging/iio/frequency/ad9832.o
2025-10-02T16:24:45.9537676Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188eu_recv.o
2025-10-02T16:24:46.2285279Z CC [M] drivers/staging/vt6656/key.o
2025-10-02T16:24:46.3118990Z CC [M] drivers/staging/gdm724x/gdm_mux.o
2025-10-02T16:24:46.9611790Z CC [M] drivers/staging/rtl8188eu/hal/rtl8188eu_xmit.o
2025-10-02T16:24:46.9696960Z CC [M] drivers/staging/iio/frequency/ad9834.o
2025-10-02T16:24:47.2435657Z LD [M] drivers/staging/gdm724x/gdmulte.o
2025-10-02T16:24:47.2831222Z LD [M] drivers/staging/gdm724x/gdmtty.o
2025-10-02T16:24:47.3652292Z CC [M] drivers/staging/vt6656/rf.o
2025-10-02T16:24:47.3831074Z CC drivers/android/binderfs.o
2025-10-02T16:24:48.0328081Z CC [M] drivers/staging/iio/impedance-analyzer/ad5933.o
2025-10-02T16:24:48.1055490Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_phycfg.o
2025-10-02T16:24:48.1438341Z CC [M] drivers/staging/rtl8188eu/hal/usb_halinit.o
2025-10-02T16:24:48.3372957Z CC drivers/android/binder.o
2025-10-02T16:24:48.7556490Z CC [M] drivers/staging/vt6656/usbpipe.o
2025-10-02T16:24:49.1717202Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_rf6052.o
2025-10-02T16:24:49.3034216Z CC [M] drivers/staging/iio/meter/ade7854.o
2025-10-02T16:24:49.6927127Z CC [M] drivers/staging/rtl8188eu/os_dep/ioctl_linux.o
2025-10-02T16:24:49.9707549Z CC [M] drivers/staging/iio/meter/ade7854-i2c.o
2025-10-02T16:24:50.1975363Z CC [M] drivers/staging/vt6656/channel.o
2025-10-02T16:24:50.2620529Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723b_rxdesc.o
2025-10-02T16:24:50.5959056Z CC [M] drivers/staging/iio/meter/ade7854-spi.o
2025-10-02T16:24:51.2917131Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723bs_recv.o
2025-10-02T16:24:51.3060614Z LD [M] drivers/staging/vt6656/vt6656_stage.o
2025-10-02T16:24:51.3097723Z CC [M] drivers/staging/iio/resolver/ad2s1210.o
2025-10-02T16:24:51.4317946Z CC [M] drivers/staging/rtl8723bs/hal/rtl8723bs_xmit.o
2025-10-02T16:24:52.2508546Z CC drivers/android/binder_alloc.o
2025-10-02T16:24:52.3352738Z CC [M] drivers/staging/rtl8188eu/os_dep/mlme_linux.o
2025-10-02T16:24:52.4708995Z CC [M] drivers/staging/fwserial/fwserial.o
2025-10-02T16:24:52.7763444Z CC [M] drivers/staging/rtl8723bs/hal/sdio_halinit.o
2025-10-02T16:24:53.3037294Z CC [M] drivers/staging/rtl8188eu/os_dep/mon.o
2025-10-02T16:24:53.7340609Z CC [M] drivers/staging/rtl8723bs/hal/sdio_ops.o
2025-10-02T16:24:53.9582532Z AR drivers/android/built-in.a
2025-10-02T16:24:53.9698969Z CC [M] drivers/staging/fwserial/dma_fifo.o
2025-10-02T16:24:54.1032945Z CC [M] drivers/staging/gs_fpgaboot/gs_fpgaboot.o
2025-10-02T16:24:54.2781301Z CC [M] drivers/staging/rtl8188eu/os_dep/os_intfs.o
2025-10-02T16:24:54.4010910Z CC [M] drivers/staging/gs_fpgaboot/io.o
2025-10-02T16:24:54.6226349Z LD [M] drivers/staging/fwserial/firewire-serial.o
2025-10-02T16:24:54.7089038Z CC drivers/nvmem/core.o
2025-10-02T16:24:54.7381359Z CC drivers/interconnect/core.o
2025-10-02T16:24:54.8207736Z LD [M] drivers/staging/gs_fpgaboot/gs_fpga.o
2025-10-02T16:24:54.8489339Z CC [M] drivers/nvmem/rave-sp-eeprom.o
2025-10-02T16:24:55.1173505Z CC [M] drivers/staging/rtl8723bs/hal/HalBtc8723b1Ant.o
2025-10-02T16:24:55.3057453Z CC [M] drivers/vdpa/mlx5/net/main.o
2025-10-02T16:24:55.7081320Z CC [M] drivers/staging/rtl8188eu/os_dep/osdep_service.o
2025-10-02T16:24:55.9392068Z LD [M] drivers/nvmem/nvmem-rave-sp-eeprom.o
2025-10-02T16:24:55.9635438Z AR drivers/nvmem/built-in.a
2025-10-02T16:24:56.0157674Z CC [M] drivers/staging/rtl8188eu/os_dep/recv_linux.o
2025-10-02T16:24:56.3105866Z CC drivers/interconnect/bulk.o
2025-10-02T16:24:56.4584963Z CC [M] drivers/vdpa/mlx5/net/mlx5_vnet.o
2025-10-02T16:24:56.7562219Z CC [M] drivers/vdpa/mlx5/core/resources.o
2025-10-02T16:24:56.8549306Z AR drivers/interconnect/built-in.a
2025-10-02T16:24:56.8702371Z CC [M] drivers/staging/rtl8723bs/hal/HalBtc8723b2Ant.o
2025-10-02T16:24:56.8790493Z CC [M] drivers/vdpa/vdpa_sim/vdpa_sim.o
2025-10-02T16:24:57.0050626Z CC [M] drivers/staging/rtl8188eu/os_dep/rtw_android.o
2025-10-02T16:24:57.9935295Z CC [M] drivers/staging/rtl8188eu/os_dep/usb_intf.o
2025-10-02T16:24:58.1422209Z CC [M] drivers/staging/rtl8723bs/hal/HalHWImg8723B_BB.o
2025-10-02T16:24:58.5033874Z CC [M] drivers/parport/share.o
2025-10-02T16:24:58.7935939Z CC [M] drivers/vdpa/mlx5/core/mr.o
2025-10-02T16:24:58.8611195Z CC [M] drivers/target/loopback/tcm_loop.o
2025-10-02T16:24:59.1005947Z CC [M] drivers/staging/rtl8188eu/os_dep/usb_ops_linux.o
2025-10-02T16:24:59.2486385Z CC [M] drivers/staging/rtl8723bs/hal/HalHWImg8723B_MAC.o
2025-10-02T16:24:59.3823287Z CC [M] drivers/parport/ieee1284.o
2025-10-02T16:25:00.1429838Z CC [M] drivers/parport/ieee1284_ops.o
2025-10-02T16:25:00.1495080Z CC [M] drivers/target/tcm_fc/tfc_cmd.o
2025-10-02T16:25:00.3020463Z CC [M] drivers/staging/rtl8188eu/os_dep/xmit_linux.o
2025-10-02T16:25:00.5167155Z CC [M] drivers/staging/rtl8723bs/hal/HalHWImg8723B_RF.o
2025-10-02T16:25:00.5888619Z LD [M] drivers/vdpa/mlx5/mlx5_vdpa.o
2025-10-02T16:25:00.7062199Z CC [M] drivers/vdpa/ifcvf/ifcvf_main.o
2025-10-02T16:25:00.9671077Z CC [M] drivers/parport/procfs.o
2025-10-02T16:25:01.2370608Z CC [M] drivers/target/tcm_fc/tfc_conf.o
2025-10-02T16:25:01.4442381Z LD [M] drivers/staging/rtl8188eu/r8188eu.o
2025-10-02T16:25:01.5561802Z CC [M] drivers/parport/daisy.o
2025-10-02T16:25:01.5851417Z CC [M] drivers/vdpa/ifcvf/ifcvf_base.o
2025-10-02T16:25:01.6412627Z CC [M] drivers/staging/rtl8723bs/hal/HalPhyRf_8723B.o
2025-10-02T16:25:02.0644330Z CC [M] drivers/target/iscsi/cxgbit/cxgbit_main.o
2025-10-02T16:25:02.2602898Z CC [M] drivers/parport/probe.o
2025-10-02T16:25:02.2956962Z CC [M] drivers/target/tcm_fc/tfc_io.o
2025-10-02T16:25:02.5390105Z LD [M] drivers/vdpa/ifcvf/ifcvf.o
2025-10-02T16:25:02.5966289Z CC [M] drivers/vdpa/vdpa.o
2025-10-02T16:25:03.0800985Z CC [M] drivers/parport/parport_pc.o
2025-10-02T16:25:03.1008057Z CC [M] drivers/staging/rtl8723bs/os_dep/ioctl_cfg80211.o
2025-10-02T16:25:03.2578776Z CC [M] drivers/parport/parport_serial.o
2025-10-02T16:25:03.3201741Z CC [M] drivers/target/tcm_fc/tfc_sess.o
2025-10-02T16:25:03.8178817Z CC [M] drivers/target/iscsi/cxgbit/cxgbit_cm.o
2025-10-02T16:25:04.1292752Z CC [M] drivers/target/iscsi/iscsi_target_parameters.o
2025-10-02T16:25:04.3067824Z LD [M] drivers/target/tcm_fc/tcm_fc.o
2025-10-02T16:25:04.3704734Z CC [M] drivers/staging/most/net/net.o
2025-10-02T16:25:05.0744520Z CC [M] drivers/parport/parport_cs.o
2025-10-02T16:25:05.1892735Z CC [M] drivers/staging/rtl8723bs/os_dep/ioctl_linux.o
2025-10-02T16:25:05.6336496Z LD [M] drivers/staging/most/net/most_net.o
2025-10-02T16:25:05.7201764Z CC [M] drivers/staging/most/sound/sound.o
2025-10-02T16:25:05.8482449Z CC [M] drivers/parport/parport_ax88796.o
2025-10-02T16:25:05.8663814Z LD [M] drivers/parport/parport.o
2025-10-02T16:25:05.9382439Z CC [M] drivers/target/sbp/sbp_target.o
2025-10-02T16:25:06.4654843Z CC [M] drivers/target/iscsi/cxgbit/cxgbit_target.o
2025-10-02T16:25:06.5912430Z CC [M] drivers/staging/most/video/video.o
2025-10-02T16:25:06.8618545Z LD [M] drivers/staging/most/sound/most_sound.o
2025-10-02T16:25:06.9178290Z CC [M] drivers/target/iscsi/iscsi_target_seq_pdu_list.o
2025-10-02T16:25:07.6688320Z LD [M] drivers/staging/most/video/most_video.o
2025-10-02T16:25:07.7178584Z CC [M] drivers/staging/ks7010/ks_hostif.o
2025-10-02T16:25:07.7438837Z CC [M] drivers/staging/most/i2c/i2c.o
2025-10-02T16:25:08.0898686Z CC [M] drivers/staging/rtl8723bs/os_dep/mlme_linux.o
2025-10-02T16:25:08.2758505Z CC [M] drivers/staging/rtl8723bs/os_dep/osdep_service.o
2025-10-02T16:25:08.3807995Z LD [M] drivers/staging/most/i2c/most_i2c.o
2025-10-02T16:25:08.4576283Z CC [M] drivers/target/target_core_configfs.o
2025-10-02T16:25:08.5796902Z CC [M] drivers/target/iscsi/cxgbit/cxgbit_ddp.o
2025-10-02T16:25:09.0843157Z CC [M] drivers/staging/rtl8723bs/os_dep/os_intfs.o
2025-10-02T16:25:09.4651807Z CC [M] drivers/staging/ks7010/ks_wlan_net.o
2025-10-02T16:25:09.7395215Z CC [M] drivers/mtd/chips/chipreg.o
2025-10-02T16:25:10.1848714Z LD [M] drivers/target/iscsi/cxgbit/cxgbit.o
2025-10-02T16:25:10.2737700Z CC [M] drivers/target/iscsi/iscsi_target_auth.o
2025-10-02T16:25:10.3513635Z CC [M] drivers/mtd/devices/phram.o
2025-10-02T16:25:10.5823101Z CC [M] drivers/staging/rtl8723bs/os_dep/recv_linux.o
2025-10-02T16:25:10.9425370Z CC [M] drivers/mtd/nand/raw/nand_base.o
2025-10-02T16:25:11.1115853Z CC [M] drivers/mtd/devices/block2mtd.o
2025-10-02T16:25:11.2622913Z CC [M] drivers/target/iscsi/iscsi_target_datain_values.o
2025-10-02T16:25:11.3516262Z CC [M] drivers/staging/ks7010/ks7010_sdio.o
2025-10-02T16:25:11.6295785Z CC [M] drivers/staging/rtl8723bs/os_dep/sdio_intf.o
2025-10-02T16:25:12.1513528Z CC [M] drivers/target/iscsi/iscsi_target_device.o
2025-10-02T16:25:12.2807024Z CC [M] drivers/staging/pi433/pi433_if.o
2025-10-02T16:25:12.6452313Z LD [M] drivers/staging/ks7010/ks7010.o
2025-10-02T16:25:12.6892325Z CC [M] drivers/staging/pi433/rf69.o
2025-10-02T16:25:12.7432937Z CC [M] drivers/staging/rtl8723bs/os_dep/sdio_ops_linux.o
2025-10-02T16:25:12.9327262Z CC [M] drivers/target/iscsi/iscsi_target_erl0.o
2025-10-02T16:25:13.4989421Z CC [M] drivers/target/target_core_device.o
2025-10-02T16:25:13.7748575Z LD [M] drivers/staging/pi433/pi433.o
2025-10-02T16:25:13.8257458Z CC [M] drivers/mtd/nand/raw/nand_legacy.o
2025-10-02T16:25:13.9133723Z CC [M] drivers/target/iscsi/iscsi_target_erl1.o
2025-10-02T16:25:14.0204196Z CC [M] drivers/target/iscsi/iscsi_target_erl2.o
2025-10-02T16:25:14.1574111Z CC [M] drivers/staging/rtl8723bs/os_dep/wifi_regd.o
2025-10-02T16:25:14.4710125Z CC [M] drivers/mtd/nand/raw/nand_bbt.o
2025-10-02T16:25:14.9887651Z CC [M] drivers/mtd/nand/core.o
2025-10-02T16:25:15.0534205Z CC [M] drivers/target/iscsi/iscsi_target_login.o
2025-10-02T16:25:15.1535248Z CC [M] drivers/staging/rtl8723bs/os_dep/xmit_linux.o
2025-10-02T16:25:15.3078452Z CC [M] drivers/target/iscsi/iscsi_target_nego.o
2025-10-02T16:25:15.6743417Z CC [M] drivers/mtd/nand/raw/nand_timings.o
2025-10-02T16:25:15.8681041Z CC [M] drivers/target/target_core_fabric_configfs.o
2025-10-02T16:25:16.0758459Z LD [M] drivers/staging/rtl8723bs/r8723bs.o
2025-10-02T16:25:16.3309269Z CC [M] drivers/staging/gasket/gasket_core.o
2025-10-02T16:25:16.3416896Z CC [M] drivers/mtd/nand/raw/nand_ids.o
2025-10-02T16:25:16.6738374Z CC [M] drivers/mtd/nand/raw/nand_onfi.o
2025-10-02T16:25:16.9315602Z CC [M] drivers/slimbus/core.o
2025-10-02T16:25:16.9364070Z CC [M] drivers/target/iscsi/iscsi_target_nodeattrib.o
2025-10-02T16:25:17.2398194Z CC [M] drivers/slimbus/messaging.o
2025-10-02T16:25:17.3738388Z CC [M] drivers/mtd/nand/raw/nand_jedec.o
2025-10-02T16:25:17.4958068Z CC [M] drivers/slimbus/sched.o
2025-10-02T16:25:17.6009918Z CC [M] drivers/target/iscsi/iscsi_target_tmr.o
2025-10-02T16:25:17.7139918Z CC [M] drivers/staging/gasket/gasket_ioctl.o
2025-10-02T16:25:17.8634141Z CC [M] drivers/mtd/spi-nor/controllers/intel-spi.o
2025-10-02T16:25:17.9113046Z CC [M] drivers/mtd/nand/raw/nand_amd.o
2025-10-02T16:25:17.9366588Z CC [M] drivers/slimbus/stream.o
2025-10-02T16:25:18.3457954Z CC [M] drivers/mtd/nand/raw/nand_esmt.o
2025-10-02T16:25:18.5543634Z CC [M] drivers/target/iscsi/iscsi_target_tpg.o
2025-10-02T16:25:18.6025393Z CC [M] drivers/staging/gasket/gasket_interrupt.o
2025-10-02T16:25:18.6086309Z CC [M] drivers/slimbus/qcom-ctrl.o
2025-10-02T16:25:18.8532737Z CC [M] drivers/mtd/nand/raw/nand_hynix.o
2025-10-02T16:25:18.9191295Z CC [M] drivers/mtd/spi-nor/controllers/intel-spi-pci.o
2025-10-02T16:25:19.4880928Z CC [M] drivers/mtd/spi-nor/controllers/intel-spi-platform.o
2025-10-02T16:25:19.4918717Z LD [M] drivers/slimbus/slimbus.o
2025-10-02T16:25:19.5075251Z LD [M] drivers/slimbus/slim-qcom-ctrl.o
2025-10-02T16:25:19.5449392Z CC [M] drivers/mtd/spi-nor/core.o
2025-10-02T16:25:19.5487811Z CC [M] drivers/target/iscsi/iscsi_target_util.o
2025-10-02T16:25:19.5809202Z CC [M] drivers/staging/gasket/gasket_page_table.o
2025-10-02T16:25:19.7243406Z CC [M] drivers/mtd/nand/raw/nand_macronix.o
2025-10-02T16:25:19.9411717Z CC [M] drivers/staging/fieldbus/dev_core.o
2025-10-02T16:25:20.4046036Z CC [M] drivers/mtd/nand/raw/nand_micron.o
2025-10-02T16:25:20.7657414Z LD [M] drivers/staging/fieldbus/fieldbus_dev.o
2025-10-02T16:25:20.7745576Z CC [M] drivers/staging/gasket/gasket_sysfs.o
2025-10-02T16:25:20.8167011Z CC [M] drivers/target/target_core_fabric_lib.o
2025-10-02T16:25:21.0786175Z CC [M] drivers/mtd/nand/raw/nand_samsung.o
2025-10-02T16:25:21.2967082Z CC [M] drivers/target/iscsi/iscsi_target.o
2025-10-02T16:25:21.4662136Z CC [M] drivers/target/iscsi/iscsi_target_configfs.o
2025-10-02T16:25:21.5212447Z CC [M] drivers/mtd/nand/raw/nand_toshiba.o
2025-10-02T16:25:21.7175669Z CC [M] drivers/staging/gasket/apex_driver.o
2025-10-02T16:25:21.7961052Z CC [M] drivers/mtd/spi-nor/sfdp.o
2025-10-02T16:25:22.0483511Z CC [M] drivers/mtd/nand/raw/nand_ecc.o
2025-10-02T16:25:22.4860160Z LD [M] drivers/staging/gasket/gasket.o
2025-10-02T16:25:22.5295267Z LD [M] drivers/staging/gasket/apex.o
2025-10-02T16:25:22.6288064Z CC [M] drivers/staging/qlge/qlge_main.o
2025-10-02T16:25:22.6448139Z CC [M] drivers/mtd/nand/raw/nandsim.o
2025-10-02T16:25:23.0682662Z CC [M] drivers/mtd/spi-nor/atmel.o
2025-10-02T16:25:23.7638875Z CC [M] drivers/mtd/spi-nor/catalyst.o
2025-10-02T16:25:24.0046833Z CC [M] drivers/mtd/nand/bbt.o
2025-10-02T16:25:24.4674141Z LD [M] drivers/mtd/nand/raw/nand.o
2025-10-02T16:25:24.4702560Z CC [M] drivers/mtd/spi-nor/eon.o
2025-10-02T16:25:24.5241543Z CC [M] drivers/target/iscsi/iscsi_target_stat.o
2025-10-02T16:25:24.5438705Z CC [M] drivers/mtd/nand/ecc.o
2025-10-02T16:25:24.5679742Z CC [M] drivers/staging/wfx/bh.o
2025-10-02T16:25:25.0682156Z CC [M] drivers/mtd/spi-nor/esmt.o
2025-10-02T16:25:25.1297925Z LD [M] drivers/mtd/nand/nandcore.o
2025-10-02T16:25:25.1962943Z AR drivers/staging/built-in.a
2025-10-02T16:25:25.2215243Z CC [M] drivers/staging/wfx/hwio.o
2025-10-02T16:25:25.3259167Z CC [M] drivers/target/iscsi/iscsi_target_transport.o
2025-10-02T16:25:25.6861448Z CC [M] drivers/mtd/spi-nor/everspin.o
2025-10-02T16:25:25.9413932Z LD [M] drivers/target/iscsi/iscsi_target_mod.o
2025-10-02T16:25:26.0303689Z CC [M] drivers/target/target_core_hba.o
2025-10-02T16:25:26.1285829Z CC [M] drivers/mtd/spi-nor/fujitsu.o
2025-10-02T16:25:26.3240104Z CC [M] drivers/atm/zatm.o
2025-10-02T16:25:26.6081757Z CC [M] drivers/staging/wfx/fwio.o
2025-10-02T16:25:26.7950202Z CC [M] drivers/staging/qlge/qlge_dbg.o
2025-10-02T16:25:26.9020815Z CC [M] drivers/mtd/spi-nor/gigadevice.o
2025-10-02T16:25:27.4078885Z CC [M] drivers/target/target_core_pr.o
2025-10-02T16:25:27.4898053Z CC [M] drivers/mtd/spi-nor/intel.o
2025-10-02T16:25:28.0394569Z CC [M] drivers/staging/wfx/hif_tx_mib.o
2025-10-02T16:25:28.1211628Z CC [M] drivers/mtd/spi-nor/issi.o
2025-10-02T16:25:28.2451486Z CC [M] drivers/staging/qlge/qlge_mpi.o
2025-10-02T16:25:28.4057984Z CC [M] drivers/atm/uPD98402.o
2025-10-02T16:25:28.8592173Z CC [M] drivers/mtd/spi-nor/macronix.o
2025-10-02T16:25:29.4396903Z CC [M] drivers/staging/wfx/hif_tx.o
2025-10-02T16:25:29.5451987Z CC [M] drivers/atm/nicstar.o
2025-10-02T16:25:29.5823122Z CC [M] drivers/mtd/spi-nor/micron-st.o
2025-10-02T16:25:29.6211103Z CC [M] drivers/target/target_core_alua.o
2025-10-02T16:25:29.7014313Z CC [M] drivers/staging/qlge/qlge_ethtool.o
2025-10-02T16:25:30.4084174Z CC [M] drivers/mtd/spi-nor/spansion.o
2025-10-02T16:25:30.9795601Z CC [M] drivers/target/target_core_tmr.o
2025-10-02T16:25:31.1664469Z CC [M] drivers/mtd/spi-nor/sst.o
2025-10-02T16:25:31.1831281Z LD [M] drivers/staging/qlge/qlge.o
2025-10-02T16:25:31.2037036Z CC [M] drivers/staging/wfx/hif_rx.o
2025-10-02T16:25:31.2735198Z CC [M] drivers/target/target_core_tpg.o
2025-10-02T16:25:31.7123406Z CC [M] drivers/staging/wfx/queue.o
2025-10-02T16:25:31.8816208Z CC [M] drivers/mtd/spi-nor/winbond.o
2025-10-02T16:25:32.0197924Z CC [M] drivers/atm/ambassador.o
2025-10-02T16:25:32.4608463Z CC [M] drivers/uio/uio.o
2025-10-02T16:25:32.6337181Z CC [M] drivers/mtd/spi-nor/xilinx.o
2025-10-02T16:25:32.8032377Z CC [M] drivers/target/target_core_transport.o
2025-10-02T16:25:33.2238482Z CC [M] drivers/staging/wfx/data_tx.o
2025-10-02T16:25:33.4995611Z CC [M] drivers/mtd/spi-nor/xmc.o
2025-10-02T16:25:33.5360273Z CC [M] drivers/uio/uio_cif.o
2025-10-02T16:25:34.1944652Z CC [M] drivers/atm/horizon.o
2025-10-02T16:25:34.1950171Z LD [M] drivers/mtd/spi-nor/spi-nor.o
2025-10-02T16:25:34.3016531Z CC [M] drivers/mtd/ubi/vtbl.o
2025-10-02T16:25:34.3241356Z CC [M] drivers/uio/uio_pdrv_genirq.o
2025-10-02T16:25:34.7805017Z CC [M] drivers/staging/wfx/data_rx.o
2025-10-02T16:25:35.2912533Z CC [M] drivers/uio/uio_dmem_genirq.o
2025-10-02T16:25:35.4621854Z CC [M] drivers/mtd/ubi/vmt.o
2025-10-02T16:25:35.8793026Z CC [M] drivers/staging/wfx/scan.o
2025-10-02T16:25:35.8858319Z CC [M] drivers/target/target_core_sbc.o
2025-10-02T16:25:35.9730599Z CC [M] drivers/atm/iphase.o
2025-10-02T16:25:36.0267960Z CC [M] drivers/uio/uio_aec.o
2025-10-02T16:25:36.6495925Z CC [M] drivers/mtd/ubi/upd.o
2025-10-02T16:25:36.8479401Z CC [M] drivers/uio/uio_sercos3.o
2025-10-02T16:25:37.0178522Z CC [M] drivers/staging/wfx/sta.o
2025-10-02T16:25:37.2132124Z CC [M] drivers/target/target_core_spc.o
2025-10-02T16:25:37.6114411Z CC [M] drivers/uio/uio_pci_generic.o
2025-10-02T16:25:37.8237977Z CC [M] drivers/mtd/ubi/build.o
2025-10-02T16:25:38.3981176Z CC [M] drivers/uio/uio_netx.o
2025-10-02T16:25:38.6788312Z CC [M] drivers/target/target_core_ua.o
2025-10-02T16:25:38.6827338Z CC [M] drivers/atm/suni.o
2025-10-02T16:25:38.6909882Z CC [M] drivers/staging/wfx/key.o
2025-10-02T16:25:38.8797115Z CC [M] drivers/mtd/ubi/cdev.o
2025-10-02T16:25:39.0390949Z CC [M] drivers/uio/uio_pruss.o
2025-10-02T16:25:39.3126842Z CC [M] drivers/target/target_core_rd.o
2025-10-02T16:25:39.9252543Z CC [M] drivers/uio/uio_mf624.o
2025-10-02T16:25:39.9819208Z CC [M] drivers/atm/fore200e.o
2025-10-02T16:25:40.2042365Z CC [M] drivers/staging/wfx/main.o
2025-10-02T16:25:40.2159225Z CC [M] drivers/mtd/ubi/kapi.o
2025-10-02T16:25:40.3233881Z CC [M] drivers/target/target_core_stat.o
2025-10-02T16:25:40.7269142Z CC [M] drivers/uio/uio_hv_generic.o
2025-10-02T16:25:41.2078943Z CC [M] drivers/mtd/ubi/eba.o
2025-10-02T16:25:41.4215785Z CC [M] drivers/target/target_core_xcopy.o
2025-10-02T16:25:41.4641727Z CC [M] drivers/staging/wfx/debug.o
2025-10-02T16:25:42.0167674Z CC [M] drivers/target/target_core_iblock.o
2025-10-02T16:25:42.1424207Z CC [M] drivers/atm/eni.o
2025-10-02T16:25:42.3667413Z CC [M] drivers/mtd/mtdcore.o
2025-10-02T16:25:42.6051359Z CC [M] drivers/mtd/ubi/io.o
2025-10-02T16:25:43.2585135Z CC [M] drivers/target/target_core_file.o
2025-10-02T16:25:43.4606374Z CC [M] drivers/staging/wfx/bus_spi.o
2025-10-02T16:25:43.8000742Z CC [M] drivers/mtd/ubi/wl.o
2025-10-02T16:25:44.0532865Z CC [M] drivers/staging/wfx/bus_sdio.o
2025-10-02T16:25:44.6414183Z CC [M] drivers/target/target_core_pscsi.o
2025-10-02T16:25:44.8316126Z CC [M] drivers/atm/idt77252.o
2025-10-02T16:25:44.8606481Z CC [M] drivers/atm/solos-pci.o
2025-10-02T16:25:45.3544238Z LD [M] drivers/staging/wfx/wfx.o
2025-10-02T16:25:45.4308219Z CC [M] drivers/mtd/ubi/attach.o
2025-10-02T16:25:45.6258667Z CC [M] drivers/vfio/pci/vfio_pci.o
2025-10-02T16:25:45.8977265Z CC [M] drivers/target/target_core_user.o
2025-10-02T16:25:46.7214428Z CC [M] drivers/vfio/mdev/mdev_core.o
2025-10-02T16:25:47.0140491Z CC [M] drivers/mtd/ubi/misc.o
2025-10-02T16:25:47.2964125Z CC [M] drivers/vfio/mdev/mdev_sysfs.o
2025-10-02T16:25:47.3110845Z CC [M] drivers/vfio/pci/vfio_pci_intrs.o
2025-10-02T16:25:47.5146892Z CC [M] drivers/atm/atmtcp.o
2025-10-02T16:25:47.7796173Z CC [M] drivers/mtd/ubi/debug.o
2025-10-02T16:25:47.8212121Z CC [M] drivers/vfio/mdev/mdev_driver.o
2025-10-02T16:25:48.2627648Z CC [M] drivers/vfio/pci/vfio_pci_rdwr.o
2025-10-02T16:25:48.5304261Z LD [M] drivers/target/target_core_mod.o
2025-10-02T16:25:48.5326921Z CC [M] drivers/vfio/mdev/vfio_mdev.o
2025-10-02T16:25:48.6558448Z LD [M] drivers/vfio/mdev/mdev.o
2025-10-02T16:25:48.6855933Z CC [M] drivers/vfio/vfio.o
2025-10-02T16:25:48.6997345Z LD [M] drivers/mtd/ubi/ubi.o
2025-10-02T16:25:48.8090842Z CC [M] drivers/mtd/mtdsuper.o
2025-10-02T16:25:49.0499237Z CC [M] drivers/atm/firestream.o
2025-10-02T16:25:49.1361675Z CC [M] drivers/vfio/pci/vfio_pci_config.o
2025-10-02T16:25:49.2313547Z CC [M] drivers/pcmcia/cs.o
2025-10-02T16:25:49.6472914Z CC [M] drivers/mtd/mtdconcat.o
2025-10-02T16:25:50.2487299Z CC [M] drivers/pcmcia/socket_sysfs.o
2025-10-02T16:25:50.3486438Z CC [M] drivers/atm/lanai.o
2025-10-02T16:25:50.8411477Z CC [M] drivers/vfio/pci/vfio_pci_igd.o
2025-10-02T16:25:50.9337952Z CC [M] drivers/mtd/mtdpart.o
2025-10-02T16:25:50.9969081Z CC [M] drivers/pcmcia/cardbus.o
2025-10-02T16:25:51.1097491Z CC [M] drivers/mtd/mtdchar.o
2025-10-02T16:25:51.6856993Z LD [M] drivers/vfio/pci/vfio-pci.o
2025-10-02T16:25:51.7182032Z CC [M] drivers/pcmcia/ds.o
2025-10-02T16:25:51.7223482Z CC [M] drivers/vfio/virqfd.o
2025-10-02T16:25:51.7708704Z CC [M] drivers/pcmcia/pcmcia_resource.o
2025-10-02T16:25:52.3051745Z CC [M] drivers/atm/he.o
2025-10-02T16:25:52.4201362Z CC [M] drivers/vfio/vfio_iommu_type1.o
2025-10-02T16:25:52.5064798Z CC [M] drivers/mtd/mtd_blkdevs.o
2025-10-02T16:25:53.0379143Z LD [M] drivers/atm/fore_200e.o
2025-10-02T16:25:53.0689951Z LD [M] drivers/vfio/vfio_virqfd.o
2025-10-02T16:25:53.1004299Z CC [M] drivers/pcmcia/cistpl.o
2025-10-02T16:25:53.2213886Z CC [M] drivers/block/aoe/aoeblk.o
2025-10-02T16:25:53.7056808Z CC [M] drivers/mtd/mtdblock.o
2025-10-02T16:25:54.3627153Z CC [M] drivers/block/aoe/aoechr.o
2025-10-02T16:25:54.4383742Z LD [M] drivers/mtd/mtd.o
2025-10-02T16:25:54.5540275Z CC [M] drivers/pcmcia/pcmcia_cis.o
2025-10-02T16:25:54.7093965Z CC [M] drivers/pcmcia/rsrc_mgr.o
2025-10-02T16:25:54.7908493Z CC [M] drivers/pcmcia/rsrc_nonstatic.o
2025-10-02T16:25:55.1160463Z CC [M] drivers/input/gameport/gameport.o
2025-10-02T16:25:55.2025375Z CC [M] drivers/block/aoe/aoecmd.o
2025-10-02T16:25:55.2861160Z CC [M] drivers/block/aoe/aoedev.o
2025-10-02T16:25:55.7657341Z CC [M] drivers/block/aoe/aoemain.o
2025-10-02T16:25:55.8520959Z CC [M] drivers/pcmcia/yenta_socket.o
2025-10-02T16:25:56.0515687Z CC [M] drivers/input/gameport/emu10k1-gp.o
2025-10-02T16:25:56.4294198Z CC [M] drivers/pcmcia/pd6729.o
2025-10-02T16:25:56.5437566Z CC [M] drivers/w1/masters/matrox_w1.o
2025-10-02T16:25:56.8301400Z CC [M] drivers/input/gameport/fm801-gp.o
2025-10-02T16:25:57.1894386Z CC [M] drivers/w1/masters/ds2490.o
2025-10-02T16:25:57.3611341Z CC [M] drivers/block/aoe/aoenet.o
2025-10-02T16:25:57.5202214Z CC [M] drivers/w1/slaves/w1_therm.o
2025-10-02T16:25:57.6257665Z CC [M] drivers/input/gameport/lightning.o
2025-10-02T16:25:57.8236186Z CC [M] drivers/pcmcia/i82092.o
2025-10-02T16:25:58.2541943Z CC [M] drivers/w1/masters/ds2482.o
2025-10-02T16:25:58.2626905Z CC [M] drivers/input/gameport/ns558.o
2025-10-02T16:25:58.5548588Z LD [M] drivers/block/aoe/aoe.o
2025-10-02T16:25:58.6176863Z LD [M] drivers/pcmcia/pcmcia_core.o
2025-10-02T16:25:58.6512510Z CC [M] drivers/w1/w1.o
2025-10-02T16:25:58.6798959Z CC [M] drivers/w1/slaves/w1_smem.o
2025-10-02T16:25:58.7542560Z LD [M] drivers/pcmcia/pcmcia.o
2025-10-02T16:25:58.7777043Z LD [M] drivers/pcmcia/pcmcia_rsrc.o
2025-10-02T16:25:58.8351133Z CC [M] drivers/w1/masters/ds1wm.o
2025-10-02T16:25:58.9170269Z CC [M] drivers/w1/w1_int.o
2025-10-02T16:25:59.0822577Z CC [M] drivers/bluetooth/hci_vhci.o
2025-10-02T16:25:59.0988215Z CC [M] drivers/w1/slaves/w1_ds2405.o
2025-10-02T16:25:59.5370402Z CC [M] drivers/w1/slaves/w1_ds2408.o
2025-10-02T16:25:59.8758556Z CC [M] drivers/w1/masters/w1-gpio.o
2025-10-02T16:25:59.9851709Z CC [M] drivers/w1/masters/sgi_w1.o
2025-10-02T16:26:00.0137532Z CC [M] drivers/w1/slaves/w1_ds2413.o
2025-10-02T16:26:00.3730693Z CC [M] drivers/bluetooth/hci_ldisc.o
2025-10-02T16:26:00.4620914Z CC [M] drivers/memstick/core/memstick.o
2025-10-02T16:26:00.4789761Z CC [M] drivers/w1/slaves/w1_ds2406.o
2025-10-02T16:26:00.5126900Z CC [M] drivers/w1/slaves/w1_ds2423.o
2025-10-02T16:26:00.5794088Z CC [M] drivers/memstick/host/tifm_ms.o
2025-10-02T16:26:00.9536145Z CC [M] drivers/infiniband/core/packer.o
2025-10-02T16:26:01.1067462Z CC [M] drivers/w1/slaves/w1_ds2430.o
2025-10-02T16:26:01.3040296Z CC [M] drivers/memstick/core/ms_block.o
2025-10-02T16:26:01.6497679Z CC [M] drivers/w1/slaves/w1_ds2431.o
2025-10-02T16:26:01.7487397Z CC [M] drivers/memstick/host/jmb38x_ms.o
2025-10-02T16:26:01.9263671Z CC [M] drivers/bluetooth/hci_serdev.o
2025-10-02T16:26:02.0907557Z CC [M] drivers/infiniband/core/ud_header.o
2025-10-02T16:26:02.1095343Z CC [M] drivers/w1/slaves/w1_ds2805.o
2025-10-02T16:26:02.6259944Z CC [M] drivers/w1/slaves/w1_ds2433.o
2025-10-02T16:26:02.9890833Z CC [M] drivers/memstick/host/r592.o
2025-10-02T16:26:03.0521332Z CC [M] drivers/memstick/core/mspro_block.o
2025-10-02T16:26:03.1608926Z CC [M] drivers/w1/slaves/w1_ds2438.o
2025-10-02T16:26:03.2976670Z CC [M] drivers/bluetooth/hci_h4.o
2025-10-02T16:26:03.3137669Z CC [M] drivers/infiniband/core/verbs.o
2025-10-02T16:26:03.7861233Z CC [M] drivers/w1/slaves/w1_ds250x.o
2025-10-02T16:26:04.0490133Z CC [M] drivers/memstick/host/rtsx_pci_ms.o
2025-10-02T16:26:04.3174389Z CC [M] drivers/w1/slaves/w1_ds2780.o
2025-10-02T16:26:04.3677918Z CC [M] drivers/infiniband/core/cq.o
2025-10-02T16:26:04.5782767Z CC [M] drivers/bluetooth/hci_bcsp.o
2025-10-02T16:26:04.7235457Z CC [M] drivers/w1/slaves/w1_ds2781.o
2025-10-02T16:26:05.1453404Z CC [M] drivers/memstick/host/rtsx_usb_ms.o
2025-10-02T16:26:05.1963574Z CC [M] drivers/w1/slaves/w1_ds28e04.o
2025-10-02T16:26:05.7630758Z CC [M] drivers/w1/w1_family.o
2025-10-02T16:26:05.8602242Z CC [M] drivers/w1/slaves/w1_ds28e17.o
2025-10-02T16:26:06.0420153Z CC [M] drivers/bluetooth/hci_ll.o
2025-10-02T16:26:06.1274964Z CC [M] drivers/infiniband/core/rw.o
2025-10-02T16:26:06.3268943Z CC [M] drivers/dca/dca-core.o
2025-10-02T16:26:06.3497753Z CC [M] drivers/infiniband/hw/mthca/mthca_main.o
2025-10-02T16:26:06.5858295Z CC [M] drivers/w1/w1_netlink.o
2025-10-02T16:26:07.1836207Z CC [M] drivers/dca/dca-sysfs.o
2025-10-02T16:26:07.4015427Z CC [M] drivers/bluetooth/hci_ath.o
2025-10-02T16:26:07.6925115Z CC [M] drivers/infiniband/core/sysfs.o
2025-10-02T16:26:07.8828703Z CC [M] drivers/w1/w1_io.o
2025-10-02T16:26:07.8921028Z LD [M] drivers/dca/dca.o
2025-10-02T16:26:07.9497668Z CC [M] drivers/infiniband/core/device.o
2025-10-02T16:26:08.2043730Z CC [M] drivers/infiniband/hw/mthca/mthca_cmd.o
2025-10-02T16:26:08.5482334Z LD [M] drivers/w1/wire.o
2025-10-02T16:26:08.6330680Z CC [M] drivers/infiniband/core/cache.o
2025-10-02T16:26:08.7692144Z CC [M] drivers/bluetooth/hci_h5.o
2025-10-02T16:26:09.3371414Z CC [M] drivers/infiniband/hw/mthca/mthca_profile.o
2025-10-02T16:26:10.3941052Z CC [M] drivers/ssb/main.o
2025-10-02T16:26:10.5809799Z CC [M] drivers/infiniband/hw/qib/qib_diag.o
2025-10-02T16:26:10.6267280Z CC [M] drivers/bluetooth/hci_intel.o
2025-10-02T16:26:10.7200352Z CC [M] drivers/infiniband/core/netlink.o
2025-10-02T16:26:10.7861738Z CC [M] drivers/infiniband/hw/mthca/mthca_reset.o
2025-10-02T16:26:11.5540786Z CC [M] drivers/ssb/scan.o
2025-10-02T16:26:12.0509254Z CC [M] drivers/infiniband/core/roce_gid_mgmt.o
2025-10-02T16:26:12.0707141Z CC [M] drivers/infiniband/hw/mthca/mthca_allocator.o
2025-10-02T16:26:12.1942193Z CC [M] drivers/infiniband/hw/qib/qib_driver.o
2025-10-02T16:26:12.2714853Z CC [M] drivers/bluetooth/hci_bcm.o
2025-10-02T16:26:12.2955313Z CC [M] drivers/ssb/sprom.o
2025-10-02T16:26:13.1109387Z CC [M] drivers/ssb/pci.o
2025-10-02T16:26:13.4800028Z CC [M] drivers/infiniband/hw/mthca/mthca_eq.o
2025-10-02T16:26:13.6707898Z CC [M] drivers/infiniband/core/mr_pool.o
2025-10-02T16:26:13.9012776Z CC [M] drivers/infiniband/hw/qib/qib_eeprom.o
2025-10-02T16:26:14.1030152Z CC [M] drivers/bluetooth/hci_qca.o
2025-10-02T16:26:14.4802063Z CC [M] drivers/ssb/pcihost_wrapper.o
2025-10-02T16:26:14.7548609Z CC [M] drivers/infiniband/core/addr.o
2025-10-02T16:26:15.1107894Z CC [M] drivers/infiniband/hw/mthca/mthca_pd.o
2025-10-02T16:26:15.1376200Z CC [M] drivers/infiniband/hw/qib/qib_file_ops.o
2025-10-02T16:26:15.3841702Z CC [M] drivers/ssb/pcmcia.o
2025-10-02T16:26:16.1352388Z CC [M] drivers/infiniband/hw/mthca/mthca_cq.o
2025-10-02T16:26:16.1750750Z CC [M] drivers/infiniband/core/sa_query.o
2025-10-02T16:26:16.3831361Z CC [M] drivers/bluetooth/hci_ag6xx.o
2025-10-02T16:26:16.8454427Z CC [M] drivers/ssb/bridge_pcmcia_80211.o
2025-10-02T16:26:17.5620983Z CC [M] drivers/bluetooth/hci_mrvl.o
2025-10-02T16:26:17.5957516Z CC [M] drivers/infiniband/hw/mthca/mthca_mr.o
2025-10-02T16:26:17.6551961Z CC [M] drivers/infiniband/hw/qib/qib_fs.o
2025-10-02T16:26:17.6636086Z CC [M] drivers/ssb/sdio.o
2025-10-02T16:26:18.3111569Z CC [M] drivers/infiniband/core/multicast.o
2025-10-02T16:26:18.7996210Z CC [M] drivers/ssb/driver_chipcommon.o
2025-10-02T16:26:18.8674501Z CC [M] drivers/bluetooth/bcm203x.o
2025-10-02T16:26:19.0679663Z CC [M] drivers/infiniband/hw/qib/qib_init.o
2025-10-02T16:26:19.2681168Z CC [M] drivers/infiniband/hw/mthca/mthca_qp.o
2025-10-02T16:26:19.6703773Z CC [M] drivers/ssb/driver_chipcommon_pmu.o
2025-10-02T16:26:20.1881478Z CC [M] drivers/bluetooth/bpa10x.o
2025-10-02T16:26:20.2169265Z CC [M] drivers/infiniband/core/mad.o
2025-10-02T16:26:20.5478231Z CC [M] drivers/ssb/driver_pcicore.o
2025-10-02T16:26:20.8772988Z CC [M] drivers/infiniband/hw/qib/qib_intr.o
2025-10-02T16:26:21.4356948Z CC [M] drivers/ssb/driver_gpio.o
2025-10-02T16:26:21.5810939Z CC [M] drivers/bluetooth/bfusb.o
2025-10-02T16:26:21.6945267Z CC [M] drivers/infiniband/hw/mthca/mthca_av.o
2025-10-02T16:26:22.1019033Z CC [M] drivers/infiniband/hw/qib/qib_mad.o
2025-10-02T16:26:22.1321254Z CC [M] drivers/ssb/b43_pci_bridge.o
2025-10-02T16:26:22.7400814Z LD [M] drivers/ssb/ssb.o
2025-10-02T16:26:22.8220780Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_main.o
2025-10-02T16:26:23.0823582Z CC [M] drivers/bluetooth/dtl1_cs.o
2025-10-02T16:26:23.1591172Z CC [M] drivers/infiniband/hw/mthca/mthca_mcg.o
2025-10-02T16:26:24.0317338Z CC [M] drivers/infiniband/core/smi.o
2025-10-02T16:26:24.4917987Z CC [M] drivers/infiniband/hw/qib/qib_pcie.o
2025-10-02T16:26:24.5238589Z CC [M] drivers/infiniband/hw/mthca/mthca_mad.o
2025-10-02T16:26:24.6061281Z CC [M] drivers/bluetooth/bt3c_cs.o
2025-10-02T16:26:25.1375897Z CC [M] drivers/infiniband/core/agent.o
2025-10-02T16:26:25.5754058Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_ib.o
2025-10-02T16:26:25.8110215Z CC [M] drivers/infiniband/hw/mthca/mthca_provider.o
2025-10-02T16:26:25.8764074Z CC [M] drivers/infiniband/hw/qib/qib_pio_copy.o
2025-10-02T16:26:26.0262033Z CC [M] drivers/bluetooth/bluecard_cs.o
2025-10-02T16:26:26.3529158Z CC [M] drivers/infiniband/core/mad_rmpp.o
2025-10-02T16:26:26.9224078Z CC [M] drivers/infiniband/hw/qib/qib_qp.o
2025-10-02T16:26:27.4062908Z CC [M] drivers/bluetooth/btusb.o
2025-10-02T16:26:27.7768253Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_multicast.o
2025-10-02T16:26:27.8344680Z CC [M] drivers/infiniband/core/nldev.o
2025-10-02T16:26:27.9755720Z CC [M] drivers/infiniband/hw/mthca/mthca_memfree.o
2025-10-02T16:26:28.2731097Z CC [M] drivers/infiniband/hw/qib/qib_qsfp.o
2025-10-02T16:26:29.7457393Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_verbs.o
2025-10-02T16:26:29.7579648Z CC [M] drivers/infiniband/hw/mthca/mthca_uar.o
2025-10-02T16:26:29.8873517Z CC [M] drivers/infiniband/hw/qib/qib_rc.o
2025-10-02T16:26:29.9956250Z CC [M] drivers/infiniband/core/restrack.o
2025-10-02T16:26:30.4392372Z CC [M] drivers/bluetooth/btsdio.o
2025-10-02T16:26:30.7042402Z CC [M] drivers/infiniband/hw/mthca/mthca_srq.o
2025-10-02T16:26:31.2335300Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_vlan.o
2025-10-02T16:26:31.3568213Z CC [M] drivers/infiniband/core/counters.o
2025-10-02T16:26:31.8055499Z CC [M] drivers/bluetooth/btintel.o
2025-10-02T16:26:32.0678340Z CC [M] drivers/infiniband/hw/qib/qib_ruc.o
2025-10-02T16:26:32.2903894Z CC [M] drivers/infiniband/hw/mthca/mthca_catas.o
2025-10-02T16:26:32.7011934Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_ethtool.o
2025-10-02T16:26:32.9221614Z CC [M] drivers/infiniband/core/ib_core_uverbs.o
2025-10-02T16:26:33.3688913Z CC [M] drivers/bluetooth/ath3k.o
2025-10-02T16:26:33.5417479Z CC [M] drivers/infiniband/hw/qib/qib_sdma.o
2025-10-02T16:26:33.5781218Z LD [M] drivers/infiniband/hw/mthca/ib_mthca.o
2025-10-02T16:26:33.6900672Z CC [M] drivers/infiniband/ulp/srp/ib_srp.o
2025-10-02T16:26:34.1845313Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_netlink.o
2025-10-02T16:26:34.2127286Z CC [M] drivers/infiniband/core/trace.o
2025-10-02T16:26:34.7071104Z CC [M] drivers/bluetooth/btmrvl_main.o
2025-10-02T16:26:35.4643788Z CC [M] drivers/infiniband/hw/qib/qib_sysfs.o
2025-10-02T16:26:35.4861458Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_cm.o
2025-10-02T16:26:35.9878556Z CC [M] drivers/infiniband/core/lag.o
2025-10-02T16:26:36.4393436Z CC [M] drivers/bluetooth/btmrvl_debugfs.o
2025-10-02T16:26:36.8264104Z CC [M] drivers/infiniband/hw/qib/qib_twsi.o
2025-10-02T16:26:36.9959019Z CC [M] drivers/infiniband/ulp/ipoib/ipoib_fs.o
2025-10-02T16:26:37.1035646Z CC [M] drivers/infiniband/core/security.o
2025-10-02T16:26:37.6451424Z CC [M] drivers/bluetooth/btmrvl_sdio.o
2025-10-02T16:26:38.0024342Z CC [M] drivers/bluetooth/btmtksdio.o
2025-10-02T16:26:38.3249781Z CC [M] drivers/infiniband/hw/qib/qib_tx.o
2025-10-02T16:26:38.3406731Z LD [M] drivers/infiniband/ulp/ipoib/ib_ipoib.o
2025-10-02T16:26:38.4500228Z CC [M] drivers/infiniband/ulp/srpt/ib_srpt.o
2025-10-02T16:26:38.5201155Z CC [M] drivers/infiniband/core/cgroup.o
2025-10-02T16:26:39.4537672Z CC [M] drivers/infiniband/ulp/iser/iser_verbs.o
2025-10-02T16:26:39.4583879Z CC [M] drivers/bluetooth/btmtkuart.o
2025-10-02T16:26:39.7313528Z CC [M] drivers/infiniband/core/cm.o
2025-10-02T16:26:39.8835130Z CC [M] drivers/infiniband/hw/qib/qib_uc.o
2025-10-02T16:26:40.7684114Z CC [M] drivers/bluetooth/btbcm.o
2025-10-02T16:26:41.2351183Z CC [M] drivers/infiniband/hw/qib/qib_ud.o
2025-10-02T16:26:41.2520448Z CC [M] drivers/infiniband/ulp/iser/iser_initiator.o
2025-10-02T16:26:41.5804630Z CC [M] drivers/infiniband/sw/rdmavt/vt.o
2025-10-02T16:26:42.1282330Z CC [M] drivers/bluetooth/btrtl.o
2025-10-02T16:26:42.7283408Z CC [M] drivers/infiniband/ulp/iser/iser_memory.o
2025-10-02T16:26:43.0572876Z CC [M] drivers/infiniband/hw/qib/qib_user_pages.o
2025-10-02T16:26:43.3233481Z CC [M] drivers/infiniband/sw/rdmavt/ah.o
2025-10-02T16:26:43.5371185Z CC [M] drivers/bluetooth/btqca.o
2025-10-02T16:26:44.0625901Z CC [M] drivers/infiniband/ulp/iser/iscsi_iser.o
2025-10-02T16:26:44.3332351Z CC [M] drivers/infiniband/hw/qib/qib_user_sdma.o
2025-10-02T16:26:44.6486534Z CC [M] drivers/infiniband/sw/rdmavt/cq.o
2025-10-02T16:26:45.0354303Z CC [M] drivers/bluetooth/hci_nokia.o
2025-10-02T16:26:45.2364444Z CC [M] drivers/infiniband/core/cm_trace.o
2025-10-02T16:26:45.3887081Z LD [M] drivers/infiniband/ulp/iser/ib_iser.o
2025-10-02T16:26:45.4477545Z CC [M] drivers/infiniband/ulp/isert/ib_isert.o
2025-10-02T16:26:46.0926672Z CC [M] drivers/infiniband/sw/rdmavt/mad.o
2025-10-02T16:26:46.4493888Z CC [M] drivers/bluetooth/btrsi.o
2025-10-02T16:26:46.6031219Z CC [M] drivers/infiniband/hw/qib/qib_iba7220.o
2025-10-02T16:26:47.1574248Z CC [M] drivers/infiniband/core/iwcm.o
2025-10-02T16:26:47.3315943Z CC [M] drivers/infiniband/sw/rdmavt/mcast.o
2025-10-02T16:26:47.7832067Z LD [M] drivers/bluetooth/hci_uart.o
2025-10-02T16:26:47.8391413Z LD [M] drivers/bluetooth/btmrvl.o
2025-10-02T16:26:48.0803265Z CC [M] drivers/infiniband/sw/rxe/rxe.o
2025-10-02T16:26:48.1303347Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_netdev.o
2025-10-02T16:26:48.6123295Z CC [M] drivers/infiniband/sw/rdmavt/mmap.o
2025-10-02T16:26:49.0535412Z CC [M] drivers/infiniband/core/iwpm_util.o
2025-10-02T16:26:49.1957326Z CC [M] drivers/infiniband/sw/rxe/rxe_comp.o
2025-10-02T16:26:49.6086977Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.o
2025-10-02T16:26:49.7546639Z CC [M] drivers/infiniband/hw/qib/qib_sd7220.o
2025-10-02T16:26:50.3101801Z CC [M] drivers/infiniband/sw/rdmavt/mr.o
2025-10-02T16:26:50.5310599Z CC [M] drivers/infiniband/core/iwpm_msg.o
2025-10-02T16:26:50.6114126Z CC [M] drivers/infiniband/sw/rxe/rxe_req.o
2025-10-02T16:26:50.8724419Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_ethtool.o
2025-10-02T16:26:51.5388490Z CC [M] drivers/infiniband/hw/qib/qib_iba7322.o
2025-10-02T16:26:51.8851572Z CC [M] drivers/infiniband/core/cma.o
2025-10-02T16:26:52.0505866Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_vema.o
2025-10-02T16:26:52.3221347Z CC [M] drivers/infiniband/sw/rdmavt/pd.o
2025-10-02T16:26:52.5385181Z CC [M] drivers/infiniband/sw/rxe/rxe_resp.o
2025-10-02T16:26:53.4225374Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic_vema_iface.o
2025-10-02T16:26:53.6052668Z CC [M] drivers/infiniband/sw/rdmavt/qp.o
2025-10-02T16:26:54.6291612Z CC [M] drivers/infiniband/sw/rxe/rxe_recv.o
2025-10-02T16:26:54.8501883Z LD [M] drivers/infiniband/ulp/opa_vnic/opa_vnic.o
2025-10-02T16:26:54.9114909Z CC [M] drivers/infiniband/ulp/rtrs/rtrs.o
2025-10-02T16:26:56.0023092Z CC [M] drivers/infiniband/sw/rxe/rxe_pool.o
2025-10-02T16:26:56.1881575Z CC [M] drivers/infiniband/core/cma_trace.o
2025-10-02T16:26:56.5412354Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-clt.o
2025-10-02T16:26:56.8595269Z CC [M] drivers/infiniband/sw/rdmavt/rc.o
2025-10-02T16:26:57.3044080Z CC [M] drivers/infiniband/hw/qib/qib_verbs.o
2025-10-02T16:26:57.3981744Z CC [M] drivers/infiniband/sw/rxe/rxe_queue.o
2025-10-02T16:26:58.0527934Z CC [M] drivers/infiniband/sw/rdmavt/srq.o
2025-10-02T16:26:58.3578152Z CC [M] drivers/infiniband/core/cma_configfs.o
2025-10-02T16:26:58.8882519Z CC [M] drivers/infiniband/sw/rxe/rxe_verbs.o
2025-10-02T16:26:59.2421808Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-clt-stats.o
2025-10-02T16:26:59.3540055Z CC [M] drivers/infiniband/sw/rdmavt/trace.o
2025-10-02T16:26:59.4957790Z CC [M] drivers/infiniband/hw/qib/qib_iba6120.o
2025-10-02T16:26:59.6201542Z CC [M] drivers/infiniband/core/user_mad.o
2025-10-02T16:27:00.5378629Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-clt-sysfs.o
2025-10-02T16:27:00.8819075Z CC [M] drivers/infiniband/sw/rxe/rxe_av.o
2025-10-02T16:27:01.6711121Z CC [M] drivers/infiniband/core/uverbs_main.o
2025-10-02T16:27:01.8317812Z LD [M] drivers/infiniband/sw/rdmavt/rdmavt.o
2025-10-02T16:27:01.9361637Z CC [M] drivers/infiniband/hw/cxgb4/device.o
2025-10-02T16:27:02.1141381Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-srv.o
2025-10-02T16:27:02.4191191Z CC [M] drivers/infiniband/sw/rxe/rxe_srq.o
2025-10-02T16:27:02.5305502Z CC [M] drivers/infiniband/hw/qib/qib_wc_x86_64.o
2025-10-02T16:27:03.5224211Z CC [M] drivers/infiniband/core/uverbs_cmd.o
2025-10-02T16:27:03.6210634Z CC [M] drivers/infiniband/sw/rxe/rxe_qp.o
2025-10-02T16:27:03.9454486Z CC [M] drivers/infiniband/hw/qib/qib_debugfs.o
2025-10-02T16:27:04.0819821Z CC [M] drivers/infiniband/hw/cxgb4/cm.o
2025-10-02T16:27:04.8389703Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-srv-stats.o
2025-10-02T16:27:05.2284554Z LD [M] drivers/infiniband/hw/qib/ib_qib.o
2025-10-02T16:27:05.3938948Z CC [M] drivers/bcma/main.o
2025-10-02T16:27:05.7737564Z CC [M] drivers/infiniband/sw/rxe/rxe_cq.o
2025-10-02T16:27:06.1450577Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-srv-sysfs.o
2025-10-02T16:27:06.4780931Z CC [M] drivers/bcma/scan.o
2025-10-02T16:27:06.7254193Z CC [M] drivers/infiniband/core/uverbs_marshall.o
2025-10-02T16:27:07.1968552Z CC [M] drivers/infiniband/sw/rxe/rxe_mr.o
2025-10-02T16:27:07.2744241Z LD [M] drivers/infiniband/ulp/rtrs/rtrs-core.o
2025-10-02T16:27:07.2911490Z LD [M] drivers/infiniband/ulp/rtrs/rtrs-client.o
2025-10-02T16:27:07.3172507Z LD [M] drivers/infiniband/ulp/rtrs/rtrs-server.o
2025-10-02T16:27:07.3889326Z CC [M] drivers/infiniband/hw/cxgb4/provider.o
2025-10-02T16:27:07.5835614Z CC [M] drivers/bcma/core.o
2025-10-02T16:27:07.9454862Z CC [M] drivers/infiniband/core/rdma_core.o
2025-10-02T16:27:08.4071818Z CC [M] drivers/bcma/sprom.o
2025-10-02T16:27:08.4300961Z CC [M] drivers/infiniband/core/uverbs_std_types.o
2025-10-02T16:27:08.9719784Z CC [M] drivers/infiniband/sw/rxe/rxe_opcode.o
2025-10-02T16:27:09.0037881Z CC [M] drivers/infiniband/hw/cxgb4/mem.o
2025-10-02T16:27:09.4257498Z CC [M] drivers/bcma/driver_chipcommon.o
2025-10-02T16:27:09.7088728Z CC [M] drivers/infiniband/core/uverbs_ioctl.o
2025-10-02T16:27:09.7098596Z CC [M] drivers/infiniband/hw/efa/efa_com_cmd.o
2025-10-02T16:27:09.9224211Z CC [M] drivers/infiniband/sw/rxe/rxe_mmap.o
2025-10-02T16:27:10.1211986Z CC [M] drivers/bcma/driver_chipcommon_pmu.o
2025-10-02T16:27:11.0371884Z CC [M] drivers/bcma/driver_chipcommon_b.o
2025-10-02T16:27:11.0781440Z CC [M] drivers/infiniband/hw/cxgb4/cq.o
2025-10-02T16:27:11.1595486Z CC [M] drivers/infiniband/sw/rxe/rxe_icrc.o
2025-10-02T16:27:11.4696885Z CC [M] drivers/infiniband/hw/efa/efa_com.o
2025-10-02T16:27:11.5740458Z CC [M] drivers/infiniband/core/uverbs_std_types_cq.o
2025-10-02T16:27:11.6891810Z CC [M] drivers/bcma/driver_pci.o
2025-10-02T16:27:12.4022897Z CC [M] drivers/infiniband/sw/rxe/rxe_mcast.o
2025-10-02T16:27:12.5733549Z CC [M] drivers/bcma/driver_pcie2.o
2025-10-02T16:27:12.9801474Z CC [M] drivers/infiniband/core/uverbs_std_types_flow_action.o
2025-10-02T16:27:13.0498219Z CC [M] drivers/infiniband/hw/efa/efa_main.o
2025-10-02T16:27:13.3881512Z CC [M] drivers/bcma/driver_gmac_cmn.o
2025-10-02T16:27:13.4983409Z CC [M] drivers/infiniband/hw/cxgb4/qp.o
2025-10-02T16:27:13.5571493Z CC [M] drivers/infiniband/sw/rxe/rxe_task.o
2025-10-02T16:27:14.1133832Z CC [M] drivers/bcma/driver_gpio.o
2025-10-02T16:27:14.4092323Z CC [M] drivers/infiniband/core/uverbs_std_types_dm.o
2025-10-02T16:27:14.4697500Z CC [M] drivers/infiniband/hw/efa/efa_verbs.o
2025-10-02T16:27:14.6155995Z CC [M] drivers/infiniband/sw/rxe/rxe_net.o
2025-10-02T16:27:14.7783779Z CC [M] drivers/bcma/host_pci.o
2025-10-02T16:27:15.4808108Z CC [M] drivers/infiniband/core/uverbs_std_types_mr.o
2025-10-02T16:27:15.7050627Z LD [M] drivers/bcma/bcma.o
2025-10-02T16:27:15.8331333Z CC [M] drivers/infiniband/sw/siw/siw_cm.o
2025-10-02T16:27:16.2802599Z CC [M] drivers/infiniband/sw/rxe/rxe_sysfs.o
2025-10-02T16:27:16.5412402Z CC [M] drivers/infiniband/core/uverbs_std_types_counters.o
2025-10-02T16:27:16.9087197Z LD [M] drivers/infiniband/hw/efa/efa.o
2025-10-02T16:27:16.9816875Z CC [M] drivers/infiniband/sw/siw/siw_cq.o
2025-10-02T16:27:16.9910300Z CC [M] drivers/infiniband/hw/cxgb4/resource.o
2025-10-02T16:27:17.5227429Z CC [M] drivers/infiniband/sw/rxe/rxe_hw_counters.o
2025-10-02T16:27:17.6889723Z CC [M] drivers/infiniband/core/uverbs_uapi.o
2025-10-02T16:27:18.3504139Z CC [M] drivers/infiniband/hw/i40iw/i40iw_cm.o
2025-10-02T16:27:18.4315675Z CC [M] drivers/infiniband/sw/siw/siw_main.o
2025-10-02T16:27:18.7514615Z CC [M] drivers/infiniband/hw/cxgb4/ev.o
2025-10-02T16:27:18.9185912Z LD [M] drivers/infiniband/sw/rxe/rdma_rxe.o
2025-10-02T16:27:19.0359439Z CC [M] drivers/vhost/net.o
2025-10-02T16:27:19.3963896Z CC [M] drivers/infiniband/core/uverbs_std_types_device.o
2025-10-02T16:27:19.9356889Z CC [M] drivers/infiniband/sw/siw/siw_mem.o
2025-10-02T16:27:20.2747166Z CC [M] drivers/infiniband/hw/cxgb4/id_table.o
2025-10-02T16:27:20.7193456Z CC [M] drivers/infiniband/core/uverbs_std_types_async_fd.o
2025-10-02T16:27:21.0882980Z CC [M] drivers/vhost/scsi.o
2025-10-02T16:27:21.5414968Z CC [M] drivers/infiniband/sw/siw/siw_qp.o
2025-10-02T16:27:21.6147145Z CC [M] drivers/infiniband/hw/cxgb4/restrack.o
2025-10-02T16:27:21.7659922Z CC [M] drivers/infiniband/hw/i40iw/i40iw_ctrl.o
2025-10-02T16:27:21.8565461Z CC [M] drivers/infiniband/core/uverbs_std_types_srq.o
2025-10-02T16:27:22.9439230Z CC [M] drivers/vhost/vsock.o
2025-10-02T16:27:23.1045295Z CC [M] drivers/infiniband/core/uverbs_std_types_wq.o
2025-10-02T16:27:23.3531489Z LD [M] drivers/infiniband/hw/cxgb4/iw_cxgb4.o
2025-10-02T16:27:23.4238869Z CC [M] drivers/infiniband/hw/i40iw/i40iw_hmc.o
2025-10-02T16:27:23.4446490Z CC [M] drivers/infiniband/sw/siw/siw_qp_tx.o
2025-10-02T16:27:24.6292562Z CC [M] drivers/vhost/vringh.o
2025-10-02T16:27:24.6522592Z CC [M] drivers/infiniband/core/uverbs_std_types_qp.o
2025-10-02T16:27:24.8721140Z CC [M] drivers/infiniband/core/umem.o
2025-10-02T16:27:24.9286770Z CC [M] drivers/infiniband/hw/i40iw/i40iw_hw.o
2025-10-02T16:27:25.3711860Z CC [M] drivers/infiniband/sw/siw/siw_qp_rx.o
2025-10-02T16:27:25.8788815Z CC [M] drivers/rpmsg/rpmsg_core.o
2025-10-02T16:27:26.3087578Z CC [M] drivers/vhost/vdpa.o
2025-10-02T16:27:26.5597441Z CC [M] drivers/infiniband/core/umem_odp.o
2025-10-02T16:27:26.5691473Z CC [M] drivers/rpmsg/rpmsg_char.o
2025-10-02T16:27:26.7163706Z CC [M] drivers/infiniband/hw/i40iw/i40iw_main.o
2025-10-02T16:27:27.1553023Z CC [M] drivers/infiniband/sw/siw/siw_verbs.o
2025-10-02T16:27:27.5859871Z CC [M] drivers/rpmsg/qcom_glink_native.o
2025-10-02T16:27:27.7910775Z CC [M] drivers/vhost/vhost.o
2025-10-02T16:27:28.0079371Z CC [M] drivers/infiniband/core/ucma.o
2025-10-02T16:27:28.9507192Z CC [M] drivers/infiniband/hw/i40iw/i40iw_pble.o
2025-10-02T16:27:29.1185647Z CC [M] drivers/rpmsg/qcom_glink_ssr.o
2025-10-02T16:27:29.4630596Z LD [M] drivers/infiniband/sw/siw/siw.o
2025-10-02T16:27:29.5512027Z CC [M] drivers/infiniband/hw/i40iw/i40iw_puda.o
2025-10-02T16:27:29.6751441Z CC [M] drivers/rpmsg/qcom_glink_rpm.o
2025-10-02T16:27:29.9014869Z CC [M] drivers/vhost/iotlb.o
2025-10-02T16:27:30.2170055Z CC [M] drivers/rpmsg/virtio_rpmsg_bus.o
2025-10-02T16:27:30.4269806Z LD [M] drivers/infiniband/core/ib_core.o
2025-10-02T16:27:30.4878935Z LD [M] drivers/vhost/vhost_net.o
2025-10-02T16:27:30.5014175Z LD [M] drivers/vhost/vhost_scsi.o
2025-10-02T16:27:30.5342763Z LD [M] drivers/vhost/vhost_vsock.o
2025-10-02T16:27:30.5376140Z CC [M] drivers/soundwire/bus_type.o
2025-10-02T16:27:30.5590872Z LD [M] drivers/vhost/vhost_vdpa.o
2025-10-02T16:27:30.5871547Z LD [M] drivers/vhost/vhost_iotlb.o
2025-10-02T16:27:30.5908025Z LD [M] drivers/infiniband/core/ib_cm.o
2025-10-02T16:27:30.6403941Z LD [M] drivers/infiniband/core/iw_cm.o
2025-10-02T16:27:30.6654133Z CC [M] drivers/infiniband/hw/mlx4/ah.o
2025-10-02T16:27:30.6840297Z LD [M] drivers/infiniband/core/rdma_cm.o
2025-10-02T16:27:30.7434133Z LD [M] drivers/infiniband/core/ib_umad.o
2025-10-02T16:27:30.7779154Z LD [M] drivers/infiniband/core/ib_uverbs.o
2025-10-02T16:27:30.9417884Z LD [M] drivers/infiniband/core/rdma_ucm.o
2025-10-02T16:27:31.0894068Z CC [M] drivers/hv/vmbus_drv.o
2025-10-02T16:27:31.1023729Z LD [M] drivers/rpmsg/qcom_glink.o
2025-10-02T16:27:31.1451168Z CC [M] drivers/soundwire/bus.o
2025-10-02T16:27:31.2164092Z CC [M] drivers/hv/hv.o
2025-10-02T16:27:31.6065955Z CC [M] drivers/infiniband/hw/i40iw/i40iw_uk.o
2025-10-02T16:27:32.1050251Z CC [M] drivers/infiniband/hw/i40iw/i40iw_utils.o
2025-10-02T16:27:32.1116525Z CC [M] drivers/infiniband/hw/mlx4/cq.o
2025-10-02T16:27:32.6069763Z CC [M] drivers/soundwire/master.o
2025-10-02T16:27:32.8137008Z CC [M] drivers/hv/connection.o
2025-10-02T16:27:33.2330796Z CC [M] drivers/infiniband/hw/mlx5/ah.o
2025-10-02T16:27:33.3488233Z CC [M] drivers/soundwire/slave.o
2025-10-02T16:27:33.7400168Z CC [M] drivers/hv/channel.o
2025-10-02T16:27:33.8620144Z CC [M] drivers/infiniband/hw/mlx4/doorbell.o
2025-10-02T16:27:33.8931256Z CC [M] drivers/soundwire/mipi_disco.o
2025-10-02T16:27:34.1432544Z CC [M] drivers/infiniband/hw/i40iw/i40iw_verbs.o
2025-10-02T16:27:34.5014704Z CC [M] drivers/soundwire/stream.o
2025-10-02T16:27:34.7044629Z CC [M] drivers/infiniband/hw/mlx5/cmd.o
2025-10-02T16:27:35.0717696Z CC [M] drivers/infiniband/hw/mlx4/mad.o
2025-10-02T16:27:35.2250449Z CC [M] drivers/hv/channel_mgmt.o
2025-10-02T16:27:36.2431236Z CC [M] drivers/infiniband/hw/mlx5/cong.o
2025-10-02T16:27:36.3067574Z CC [M] drivers/soundwire/sysfs_slave.o
2025-10-02T16:27:36.4998229Z CC [M] drivers/hv/ring_buffer.o
2025-10-02T16:27:36.9058038Z CC [M] drivers/infiniband/hw/i40iw/i40iw_virtchnl.o
2025-10-02T16:27:36.9367807Z CC [M] drivers/soundwire/sysfs_slave_dpn.o
2025-10-02T16:27:37.3113386Z CC [M] drivers/hv/hv_trace.o
2025-10-02T16:27:37.6848874Z CC [M] drivers/infiniband/hw/mlx5/counters.o
2025-10-02T16:27:37.8201037Z CC [M] drivers/infiniband/hw/mlx4/main.o
2025-10-02T16:27:37.8353124Z CC [M] drivers/soundwire/debugfs.o
2025-10-02T16:27:38.3558469Z CC [M] drivers/infiniband/hw/i40iw/i40iw_vf.o
2025-10-02T16:27:38.5713418Z CC [M] drivers/soundwire/generic_bandwidth_allocation.o
2025-10-02T16:27:38.9612478Z CC [M] drivers/hv/hv_util.o
2025-10-02T16:27:39.4237514Z CC [M] drivers/soundwire/cadence_master.o
2025-10-02T16:27:39.4470849Z CC [M] drivers/infiniband/hw/mlx5/cq.o
2025-10-02T16:27:39.4962657Z LD [M] drivers/infiniband/hw/i40iw/i40iw.o
2025-10-02T16:27:39.5998914Z CC [M] drivers/iio/accel/adis16201.o
2025-10-02T16:27:39.9357749Z CC [M] drivers/hv/hv_kvp.o
2025-10-02T16:27:40.3287302Z CC [M] drivers/iio/accel/adis16209.o
2025-10-02T16:27:40.7543928Z CC [M] drivers/infiniband/hw/mlx4/mr.o
2025-10-02T16:27:40.9247408Z CC [M] drivers/iio/accel/adxl372.o
2025-10-02T16:27:41.2026813Z CC [M] drivers/soundwire/intel.o
2025-10-02T16:27:41.2704337Z CC [M] drivers/hv/hv_snapshot.o
2025-10-02T16:27:41.8567282Z CC [M] drivers/iio/accel/adxl372_i2c.o
2025-10-02T16:27:41.9741229Z CC [M] drivers/infiniband/hw/mlx5/doorbell.o
2025-10-02T16:27:42.3799895Z CC [M] drivers/infiniband/hw/mlx4/qp.o
2025-10-02T16:27:42.4270157Z CC [M] drivers/iio/accel/adxl372_spi.o
2025-10-02T16:27:42.4701383Z CC [M] drivers/hv/hv_fcopy.o
2025-10-02T16:27:42.5657213Z CC [M] drivers/soundwire/intel_init.o
2025-10-02T16:27:43.0427799Z CC [M] drivers/iio/accel/bma220_spi.o
2025-10-02T16:27:43.4733321Z CC [M] drivers/infiniband/hw/mlx5/gsi.o
2025-10-02T16:27:43.4801265Z CC [M] drivers/soundwire/qcom.o
2025-10-02T16:27:43.8029891Z CC [M] drivers/iio/accel/bma400_core.o
2025-10-02T16:27:43.8601274Z CC [M] drivers/hv/hv_utils_transport.o
2025-10-02T16:27:44.3307810Z LD [M] drivers/soundwire/soundwire-bus.o
2025-10-02T16:27:44.3570341Z LD [M] drivers/soundwire/soundwire-generic-allocation.o
2025-10-02T16:27:44.3681829Z LD [M] drivers/soundwire/soundwire-cadence.o
2025-10-02T16:27:44.3819257Z LD [M] drivers/soundwire/soundwire-intel.o
2025-10-02T16:27:44.3981160Z LD [M] drivers/soundwire/soundwire-qcom.o
2025-10-02T16:27:44.4670391Z CC [M] drivers/iio/adc/ad_sigma_delta.o
2025-10-02T16:27:44.5783248Z CC [M] drivers/iio/accel/bma400_i2c.o
2025-10-02T16:27:45.0134404Z CC [M] drivers/iio/accel/bma400_spi.o
2025-10-02T16:27:45.1713636Z CC [M] drivers/infiniband/hw/mlx5/ib_virt.o
2025-10-02T16:27:45.4063844Z CC [M] drivers/iio/adc/ad7091r5.o
2025-10-02T16:27:45.4250809Z CC [M] drivers/hv/hv_balloon.o
2025-10-02T16:27:45.6292835Z CC [M] drivers/iio/accel/bmc150-accel-core.o
2025-10-02T16:27:46.0115178Z CC [M] drivers/iio/adc/ad7091r-base.o
2025-10-02T16:27:46.5838026Z CC [M] drivers/iio/accel/bmc150-accel-i2c.o
2025-10-02T16:27:46.7089102Z CC [M] drivers/infiniband/hw/mlx5/mad.o
2025-10-02T16:27:46.8255296Z LD [M] drivers/hv/hv_vmbus.o
2025-10-02T16:27:46.8567908Z LD [M] drivers/hv/hv_utils.o
2025-10-02T16:27:46.9391053Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_main.o
2025-10-02T16:27:46.9753467Z CC [M] drivers/iio/adc/ad7124.o
2025-10-02T16:27:47.0944887Z CC [M] drivers/iio/accel/bmc150-accel-spi.o
2025-10-02T16:27:47.8209165Z CC [M] drivers/iio/accel/da280.o
2025-10-02T16:27:47.9431904Z CC [M] drivers/iio/adc/ad7192.o
2025-10-02T16:27:48.0566107Z CC [M] drivers/infiniband/hw/mlx4/srq.o
2025-10-02T16:27:48.2821833Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_verbs.o
2025-10-02T16:27:48.3036693Z CC [M] drivers/infiniband/hw/mlx5/main.o
2025-10-02T16:27:48.4021399Z CC [M] drivers/iio/accel/da311.o
2025-10-02T16:27:48.9655303Z CC [M] drivers/iio/accel/dmard09.o
2025-10-02T16:27:49.0543865Z CC [M] drivers/iio/adc/ad7266.o
2025-10-02T16:27:49.5428327Z CC [M] drivers/iio/accel/dmard10.o
2025-10-02T16:27:49.6646951Z CC [M] drivers/infiniband/hw/mlx4/mcg.o
2025-10-02T16:27:49.9489291Z CC [M] drivers/iio/adc/ad7291.o
2025-10-02T16:27:50.1439053Z CC [M] drivers/iio/accel/hid-sensor-accel-3d.o
2025-10-02T16:27:50.9075949Z CC [M] drivers/iio/accel/kxcjk-1013.o
2025-10-02T16:27:50.9591097Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_hw.o
2025-10-02T16:27:51.0333267Z CC [M] drivers/iio/adc/ad7292.o
2025-10-02T16:27:51.7838849Z CC [M] drivers/infiniband/hw/mlx4/cm.o
2025-10-02T16:27:51.8753096Z CC [M] drivers/iio/accel/kxsd9.o
2025-10-02T16:27:51.8836893Z CC [M] drivers/iio/adc/ad7298.o
2025-10-02T16:27:51.9642837Z CC [M] drivers/infiniband/hw/mlx5/mem.o
2025-10-02T16:27:52.7739686Z CC [M] drivers/iio/accel/kxsd9-spi.o
2025-10-02T16:27:52.9558118Z CC [M] drivers/iio/adc/ad7923.o
2025-10-02T16:27:53.3821511Z CC [M] drivers/iio/accel/kxsd9-i2c.o
2025-10-02T16:27:53.5011312Z CC [M] drivers/infiniband/hw/mlx4/alias_GUID.o
2025-10-02T16:27:53.8101600Z CC [M] drivers/iio/accel/mc3230.o
2025-10-02T16:27:53.9131196Z CC [M] drivers/iio/adc/ad7476.o
2025-10-02T16:27:54.1328870Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_ah.o
2025-10-02T16:27:54.4500679Z CC [M] drivers/iio/accel/mma7455_core.o
2025-10-02T16:27:54.9110302Z CC [M] drivers/iio/adc/ad7606_par.o
2025-10-02T16:27:54.9630351Z CC [M] drivers/iio/accel/mma7455_i2c.o
2025-10-02T16:27:55.3572412Z CC [M] drivers/iio/adc/ad7606_spi.o
2025-10-02T16:27:55.3685296Z CC [M] drivers/infiniband/hw/mlx4/sysfs.o
2025-10-02T16:27:55.4310061Z CC [M] drivers/iio/accel/mma7455_spi.o
2025-10-02T16:27:55.5261575Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma_stats.o
2025-10-02T16:27:55.7188300Z CC [M] drivers/infiniband/hw/mlx5/mr.o
2025-10-02T16:27:56.1281425Z CC [M] drivers/iio/adc/ad7606.o
2025-10-02T16:27:56.1619168Z CC [M] drivers/iio/accel/mma7660.o
2025-10-02T16:27:56.6580971Z CC [M] drivers/iio/accel/mma8452.o
2025-10-02T16:27:56.8430250Z LD [M] drivers/infiniband/hw/ocrdma/ocrdma.o
2025-10-02T16:27:57.0264943Z CC [M] drivers/iio/amplifiers/ad8366.o
2025-10-02T16:27:57.1159833Z LD [M] drivers/infiniband/hw/mlx4/mlx4_ib.o
2025-10-02T16:27:57.2531400Z CC [M] drivers/iio/amplifiers/hmc425a.o
2025-10-02T16:27:57.3353354Z CC [M] drivers/iio/adc/ad7766.o
2025-10-02T16:27:57.9469016Z CC [M] drivers/iio/accel/mma9551_core.o
2025-10-02T16:27:57.9872873Z CC [M] drivers/iio/adc/ad7768-1.o
2025-10-02T16:27:58.1711281Z CC [M] drivers/infiniband/hw/mlx5/qp.o
2025-10-02T16:27:58.3088175Z CC [M] drivers/iio/buffer/industrialio-buffer-cb.o
2025-10-02T16:27:58.6814304Z CC [M] drivers/iio/accel/mma9551.o
2025-10-02T16:27:58.8784812Z CC [M] drivers/iio/buffer/industrialio-buffer-dma.o
2025-10-02T16:27:58.9773625Z CC [M] drivers/iio/adc/ad7780.o
2025-10-02T16:27:59.0517865Z CC [M] drivers/iio/buffer/industrialio-buffer-dmaengine.o
2025-10-02T16:27:59.3558228Z CC [M] drivers/iio/accel/mma9553.o
2025-10-02T16:27:59.7738511Z CC [M] drivers/iio/chemical/atlas-sensor.o
2025-10-02T16:27:59.7866917Z CC [M] drivers/iio/adc/ad7791.o
2025-10-02T16:27:59.9921747Z CC [M] drivers/iio/buffer/industrialio-hw-consumer.o
2025-10-02T16:28:00.2967929Z CC [M] drivers/iio/accel/mxc4005.o
2025-10-02T16:28:00.4068239Z CC [M] drivers/iio/chemical/atlas-ezo-sensor.o
2025-10-02T16:28:00.7876831Z CC [M] drivers/iio/adc/ad7793.o
2025-10-02T16:28:00.7878020Z CC [M] drivers/iio/buffer/industrialio-triggered-buffer.o
2025-10-02T16:28:00.8270552Z CC [M] drivers/iio/accel/mxc6255.o
2025-10-02T16:28:00.8882155Z CC [M] drivers/iio/chemical/bme680_core.o
2025-10-02T16:28:01.3678754Z CC [M] drivers/iio/buffer/kfifo_buf.o
2025-10-02T16:28:01.4062471Z CC [M] drivers/iio/accel/sca3000.o
2025-10-02T16:28:01.7662204Z CC [M] drivers/iio/chemical/bme680_i2c.o
2025-10-02T16:28:01.7946479Z CC [M] drivers/iio/adc/ad7887.o
2025-10-02T16:28:02.1899232Z CC [M] drivers/iio/accel/stk8312.o
2025-10-02T16:28:02.2119814Z CC [M] drivers/iio/chemical/bme680_spi.o
2025-10-02T16:28:02.3607895Z CC [M] drivers/iio/adc/ad7949.o
2025-10-02T16:28:02.8613965Z CC [M] drivers/infiniband/hw/mlx5/qpc.o
2025-10-02T16:28:02.8647537Z CC [M] drivers/iio/chemical/ccs811.o
2025-10-02T16:28:02.9974627Z CC [M] drivers/iio/accel/stk8ba50.o
2025-10-02T16:28:03.1685847Z CC [M] drivers/iio/chemical/ams-iaq-core.o
2025-10-02T16:28:03.2971754Z CC [M] drivers/iio/adc/ad799x.o
2025-10-02T16:28:03.5874192Z CC [M] drivers/ipack/devices/ipoctal.o
2025-10-02T16:28:03.6446152Z CC [M] drivers/iio/accel/cros_ec_accel_legacy.o
2025-10-02T16:28:03.8362569Z CC [M] drivers/iio/chemical/pms7003.o
2025-10-02T16:28:04.2054688Z CC [M] drivers/iio/accel/ssp_accel_sensor.o
2025-10-02T16:28:04.4024383Z CC [M] drivers/iio/adc/axp20x_adc.o
2025-10-02T16:28:04.4834049Z CC [M] drivers/iio/chemical/scd30_core.o
2025-10-02T16:28:04.5181968Z CC [M] drivers/infiniband/hw/mlx5/restrack.o
2025-10-02T16:28:04.5275948Z CC [M] drivers/ipack/carriers/tpci200.o
2025-10-02T16:28:04.6677875Z CC [M] drivers/iio/accel/st_accel_core.o
2025-10-02T16:28:04.9936123Z CC [M] drivers/iio/adc/axp288_adc.o
2025-10-02T16:28:05.5275683Z CC [M] drivers/ipack/ipack.o
2025-10-02T16:28:05.5492759Z CC [M] drivers/iio/chemical/scd30_i2c.o
2025-10-02T16:28:05.5922431Z CC [M] drivers/iio/adc/cc10001_adc.o
2025-10-02T16:28:05.6379824Z CC [M] drivers/iio/accel/st_accel_buffer.o
2025-10-02T16:28:06.0536961Z CC [M] drivers/infiniband/hw/mlx5/srq.o
2025-10-02T16:28:06.3191122Z CC [M] drivers/iio/chemical/scd30_serial.o
2025-10-02T16:28:06.3227898Z CC [M] drivers/iio/adc/da9150-gpadc.o
2025-10-02T16:28:06.3418570Z CC [M] drivers/iio/accel/st_accel_i2c.o
2025-10-02T16:28:06.6165304Z CC [M] drivers/iio/adc/dln2-adc.o
2025-10-02T16:28:06.9671228Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_cmd.o
2025-10-02T16:28:07.1263842Z CC [M] drivers/iio/chemical/sgp30.o
2025-10-02T16:28:07.2414433Z CC [M] drivers/iio/accel/st_accel_spi.o
2025-10-02T16:28:07.4345803Z CC [M] drivers/iio/adc/hi8435.o
2025-10-02T16:28:07.7508718Z CC [M] drivers/iio/chemical/sps30.o
2025-10-02T16:28:07.8692314Z CC [M] drivers/infiniband/hw/mlx5/srq_cmd.o
2025-10-02T16:28:08.0314514Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_cq.o
2025-10-02T16:28:08.2663700Z CC [M] drivers/iio/adc/hx711.o
2025-10-02T16:28:08.3158755Z LD [M] drivers/iio/accel/st_accel.o
2025-10-02T16:28:08.6716792Z CC [M] drivers/iio/chemical/vz89x.o
2025-10-02T16:28:08.7092828Z CC [M] drivers/infiniband/hw/mlx5/wr.o
2025-10-02T16:28:09.2409788Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_doorbell.o
2025-10-02T16:28:09.2948208Z CC [M] drivers/iio/adc/ina2xx-adc.o
2025-10-02T16:28:09.4038329Z CC [M] drivers/iio/adc/intel_mrfld_adc.o
2025-10-02T16:28:09.4712639Z CC [M] drivers/iio/adc/lp8788_adc.o
2025-10-02T16:28:09.9554158Z CC [M] drivers/infiniband/hw/usnic/usnic_fwd.o
2025-10-02T16:28:10.1750781Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_main.o
2025-10-02T16:28:10.2848207Z CC [M] drivers/iio/adc/ltc2471.o
2025-10-02T16:28:10.5449110Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_misc.o
2025-10-02T16:28:10.7731656Z CC [M] drivers/infiniband/hw/mlx5/odp.o
2025-10-02T16:28:10.8223854Z CC [M] drivers/infiniband/hw/usnic/usnic_transport.o
2025-10-02T16:28:10.9522493Z CC [M] drivers/iio/adc/ltc2485.o
2025-10-02T16:28:11.6200916Z CC [M] drivers/iio/adc/ltc2496.o
2025-10-02T16:28:11.8074792Z CC [M] drivers/infiniband/hw/usnic/usnic_uiom.o
2025-10-02T16:28:11.9301613Z CC [M] drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.o
2025-10-02T16:28:12.2092515Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_mr.o
2025-10-02T16:28:12.4531224Z CC [M] drivers/iio/adc/ltc2497-core.o
2025-10-02T16:28:12.5576479Z CC [M] drivers/iio/common/cros_ec_sensors/cros_ec_sensors.o
2025-10-02T16:28:13.1327636Z CC [M] drivers/iio/common/cros_ec_sensors/cros_ec_lid_angle.o
2025-10-02T16:28:13.2286385Z CC [M] drivers/infiniband/hw/mlx5/ib_rep.o
2025-10-02T16:28:13.3218678Z CC [M] drivers/infiniband/hw/usnic/usnic_uiom_interval_tree.o
2025-10-02T16:28:13.3439170Z CC [M] drivers/iio/adc/ltc2497.o
2025-10-02T16:28:13.5870413Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_qp.o
2025-10-02T16:28:13.7497995Z CC [M] drivers/iio/common/hid-sensors/hid-sensor-attributes.o
2025-10-02T16:28:13.8712963Z CC [M] drivers/iio/adc/max1027.o
2025-10-02T16:28:13.9384150Z CC [M] drivers/infiniband/hw/usnic/usnic_vnic.o
2025-10-02T16:28:14.4336030Z CC [M] drivers/infiniband/hw/mlx5/devx.o
2025-10-02T16:28:14.4930544Z CC [M] drivers/iio/common/hid-sensors/hid-sensor-trigger.o
2025-10-02T16:28:14.7304835Z CC [M] drivers/iio/adc/max11100.o
2025-10-02T16:28:15.2001173Z LD [M] drivers/iio/common/hid-sensors/hid-sensor-iio-common.o
2025-10-02T16:28:15.2495331Z CC [M] drivers/iio/common/ms_sensors/ms_sensors_i2c.o
2025-10-02T16:28:15.5827665Z CC [M] drivers/infiniband/hw/usnic/usnic_ib_main.o
2025-10-02T16:28:15.6241150Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_srq.o
2025-10-02T16:28:15.6786999Z CC [M] drivers/iio/adc/max1118.o
2025-10-02T16:28:16.0423981Z CC [M] drivers/iio/common/ssp_sensors/ssp_dev.o
2025-10-02T16:28:16.4845307Z CC [M] drivers/iio/adc/max1241.o
2025-10-02T16:28:16.8196625Z CC [M] drivers/iio/common/ssp_sensors/ssp_spi.o
2025-10-02T16:28:17.1180170Z CC [M] drivers/infiniband/hw/vmw_pvrdma/pvrdma_verbs.o
2025-10-02T16:28:17.1468868Z CC [M] drivers/infiniband/hw/mlx5/fs.o
2025-10-02T16:28:17.2014310Z CC [M] drivers/iio/adc/max1363.o
2025-10-02T16:28:17.3406453Z CC [M] drivers/infiniband/hw/usnic/usnic_ib_qp_grp.o
2025-10-02T16:28:17.7082246Z CC [M] drivers/iio/common/ssp_sensors/ssp_iio.o
2025-10-02T16:28:18.2081902Z LD [M] drivers/iio/common/ssp_sensors/sensorhub.o
2025-10-02T16:28:18.2584207Z CC [M] drivers/iio/common/st_sensors/st_sensors_i2c.o
2025-10-02T16:28:18.3935861Z CC [M] drivers/iio/adc/max9611.o
2025-10-02T16:28:18.8370450Z LD [M] drivers/infiniband/hw/vmw_pvrdma/vmw_pvrdma.o
2025-10-02T16:28:18.8626199Z CC [M] drivers/iio/adc/mcp320x.o
2025-10-02T16:28:18.9426065Z CC [M] drivers/ntb/hw/amd/ntb_hw_amd.o
2025-10-02T16:28:19.0022797Z CC [M] drivers/infiniband/hw/usnic/usnic_ib_sysfs.o
2025-10-02T16:28:19.0566660Z CC [M] drivers/iio/common/st_sensors/st_sensors_spi.o
2025-10-02T16:28:19.5388435Z CC [M] drivers/infiniband/hw/mlx5/qos.o
2025-10-02T16:28:19.7342688Z CC [M] drivers/iio/adc/mcp3422.o
2025-10-02T16:28:20.1720725Z CC [M] drivers/iio/common/st_sensors/st_sensors_core.o
2025-10-02T16:28:20.2931232Z CC [M] drivers/infiniband/hw/usnic/usnic_ib_verbs.o
2025-10-02T16:28:20.3540953Z CC [M] drivers/iio/adc/mcp3911.o
2025-10-02T16:28:20.3541890Z CC [M] drivers/ntb/hw/idt/ntb_hw_idt.o
2025-10-02T16:28:20.7282474Z CC [M] drivers/infiniband/hw/mlx5/std_types.o
2025-10-02T16:28:21.3087078Z CC [M] drivers/iio/adc/men_z188_adc.o
2025-10-02T16:28:21.4285627Z CC [M] drivers/iio/common/st_sensors/st_sensors_buffer.o
2025-10-02T16:28:21.8208160Z CC [M] drivers/iio/adc/mp2629_adc.o
2025-10-02T16:28:21.9946687Z CC [M] drivers/ntb/hw/intel/ntb_hw_gen1.o
2025-10-02T16:28:22.0439769Z CC [M] drivers/infiniband/hw/usnic/usnic_debugfs.o
2025-10-02T16:28:22.0918836Z LD [M] drivers/infiniband/hw/mlx5/mlx5_ib.o
2025-10-02T16:28:22.2304724Z CC [M] drivers/iio/common/st_sensors/st_sensors_trigger.o
2025-10-02T16:28:22.2817342Z CC [M] drivers/iio/adc/nau7802.o
2025-10-02T16:28:22.2886738Z CC [M] drivers/iio/adc/palmas_gpadc.o
2025-10-02T16:28:23.0221635Z CC [M] drivers/iio/dac/ad5360.o
2025-10-02T16:28:23.1075410Z LD [M] drivers/iio/common/st_sensors/st_sensors.o
2025-10-02T16:28:23.2234623Z CC [M] drivers/ntb/hw/mscc/ntb_hw_switchtec.o
2025-10-02T16:28:23.3078454Z LD [M] drivers/infiniband/hw/usnic/usnic_verbs.o
2025-10-02T16:28:23.3923809Z CC [M] drivers/iio/adc/ti-adc081c.o
2025-10-02T16:28:23.4198119Z CC [M] drivers/infiniband/hw/hfi1/affinity.o
2025-10-02T16:28:23.4634052Z CC [M] drivers/ntb/hw/intel/ntb_hw_gen3.o
2025-10-02T16:28:24.1765013Z CC [M] drivers/iio/dac/ad5380.o
2025-10-02T16:28:24.2786496Z CC [M] drivers/iio/adc/ti-adc0832.o
2025-10-02T16:28:24.4682285Z CC [M] drivers/ntb/hw/intel/ntb_hw_gen4.o
2025-10-02T16:28:24.6702671Z CC [M] drivers/infiniband/hw/hfi1/aspm.o
2025-10-02T16:28:25.1882992Z CC [M] drivers/iio/dac/ad5421.o
2025-10-02T16:28:25.2518900Z CC [M] drivers/iio/adc/ti-adc084s021.o
2025-10-02T16:28:25.3848772Z LD [M] drivers/ntb/hw/intel/ntb_hw_intel.o
2025-10-02T16:28:25.4943500Z CC [M] drivers/ntb/core.o
2025-10-02T16:28:26.0371481Z CC [M] drivers/mcb/mcb-core.o
2025-10-02T16:28:26.0710404Z CC [M] drivers/iio/dac/ad5624r_spi.o
2025-10-02T16:28:26.0917068Z CC [M] drivers/infiniband/hw/hfi1/chip.o
2025-10-02T16:28:26.1595484Z CC [M] drivers/ntb/msi.o
2025-10-02T16:28:26.2376473Z CC [M] drivers/iio/adc/ti-adc12138.o
2025-10-02T16:28:26.6710485Z CC [M] drivers/mcb/mcb-parse.o
2025-10-02T16:28:27.1257801Z CC [M] drivers/ntb/ntb_transport.o
2025-10-02T16:28:27.1677491Z CC [M] drivers/iio/dac/ad5064.o
2025-10-02T16:28:27.1999344Z CC [M] drivers/mcb/mcb-pci.o
2025-10-02T16:28:27.2022376Z CC [M] drivers/iio/adc/ti-adc108s102.o
2025-10-02T16:28:27.8318257Z CC [M] drivers/mcb/mcb-lpc.o
2025-10-02T16:28:28.0442872Z CC [M] drivers/iio/adc/ti-adc128s052.o
2025-10-02T16:28:28.2273896Z LD [M] drivers/mcb/mcb.o
2025-10-02T16:28:28.3190854Z CC [M] drivers/infiniband/hw/qedr/main.o
2025-10-02T16:28:28.3979413Z CC [M] drivers/iio/dac/ad5504.o
2025-10-02T16:28:28.8801638Z CC [M] drivers/iio/adc/ti-adc161s626.o
2025-10-02T16:28:29.1152627Z LD [M] drivers/ntb/ntb.o
2025-10-02T16:28:29.1920207Z CC [M] drivers/infiniband/hw/hfi1/device.o
2025-10-02T16:28:29.2619662Z CC [M] drivers/iio/dac/ad5446.o
2025-10-02T16:28:29.8227372Z CC [M] drivers/iio/adc/ti-ads1015.o
2025-10-02T16:28:30.2591775Z CC [M] drivers/iio/dac/ad5449.o
2025-10-02T16:28:30.3617977Z CC [M] drivers/infiniband/hw/qedr/verbs.o
2025-10-02T16:28:30.4813079Z CC [M] drivers/infiniband/hw/hfi1/driver.o
2025-10-02T16:28:30.7298800Z CC [M] drivers/iio/adc/ti-ads7950.o
2025-10-02T16:28:31.2171531Z CC [M] drivers/iio/dac/ad5592r-base.o
2025-10-02T16:28:31.7038630Z CC [M] drivers/iio/adc/ti-tlc4541.o
2025-10-02T16:28:32.3162857Z CC [M] drivers/iio/dac/ad5592r.o
2025-10-02T16:28:32.4309259Z CC [M] drivers/iio/adc/twl4030-madc.o
2025-10-02T16:28:32.9609358Z CC [M] drivers/iio/dac/ad5593r.o
2025-10-02T16:28:33.4916779Z CC [M] drivers/iio/adc/twl6030-gpadc.o
2025-10-02T16:28:33.7589762Z CC [M] drivers/iio/dac/ad5755.o
2025-10-02T16:28:33.8992784Z CC [M] drivers/infiniband/hw/hfi1/efivar.o
2025-10-02T16:28:33.9006097Z CC [M] drivers/thunderbolt/nhi.o
2025-10-02T16:28:34.2973503Z CC [M] drivers/iio/adc/viperboard_adc.o
2025-10-02T16:28:34.5010424Z CC [M] drivers/infiniband/hw/qedr/qedr_roce_cm.o
2025-10-02T16:28:34.6736163Z CC [M] drivers/iio/dac/ad5758.o
2025-10-02T16:28:35.0555552Z CC [M] drivers/thunderbolt/nhi_ops.o
2025-10-02T16:28:35.0646460Z CC [M] drivers/iio/adc/xilinx-xadc-core.o
2025-10-02T16:28:35.1410693Z CC [M] drivers/infiniband/hw/hfi1/eprom.o
2025-10-02T16:28:35.8317642Z CC [M] drivers/thunderbolt/ctl.o
2025-10-02T16:28:35.8720745Z CC [M] drivers/iio/adc/xilinx-xadc-events.o
2025-10-02T16:28:35.8840891Z CC [M] drivers/iio/dac/ad5761.o
2025-10-02T16:28:36.0889457Z CC [M] drivers/infiniband/hw/qedr/qedr_iw_cm.o
2025-10-02T16:28:36.5590974Z LD [M] drivers/iio/adc/xilinx-xadc.o
2025-10-02T16:28:36.6033661Z CC [M] drivers/hwtracing/stm/core.o
2025-10-02T16:28:36.6864190Z CC [M] drivers/infiniband/hw/hfi1/exp_rcv.o
2025-10-02T16:28:37.0658111Z CC [M] drivers/iio/dac/ad5764.o
2025-10-02T16:28:37.0825644Z CC [M] drivers/thunderbolt/tb.o
2025-10-02T16:28:37.6137954Z LD [M] drivers/infiniband/hw/qedr/qedr.o
2025-10-02T16:28:37.7153014Z CC [M] drivers/infiniband/hw/hfi1/file_ops.o
2025-10-02T16:28:37.8494514Z CC [M] drivers/iio/dac/ad5770r.o
2025-10-02T16:28:37.8971335Z CC [M] drivers/hwtracing/stm/policy.o
2025-10-02T16:28:38.5480927Z CC [M] drivers/iio/dac/ad5791.o
2025-10-02T16:28:38.6226960Z CC [M] drivers/hwtracing/stm/p_basic.o
2025-10-02T16:28:38.6616039Z CC [M] drivers/thunderbolt/switch.o
2025-10-02T16:28:38.8002724Z CC [M] drivers/iio/gyro/adis16080.o
2025-10-02T16:28:39.1344141Z CC [M] drivers/hwtracing/stm/p_sys-t.o
2025-10-02T16:28:39.4366221Z CC [M] drivers/iio/dac/ad5686.o
2025-10-02T16:28:39.4931271Z CC [M] drivers/iio/gyro/adis16130.o
2025-10-02T16:28:39.8002070Z CC [M] drivers/hwtracing/stm/console.o
2025-10-02T16:28:40.0038475Z CC [M] drivers/infiniband/hw/hfi1/firmware.o
2025-10-02T16:28:40.1448923Z CC [M] drivers/hwtracing/stm/heartbeat.o
2025-10-02T16:28:40.3048082Z CC [M] drivers/iio/dac/ad5686-spi.o
2025-10-02T16:28:40.3873878Z CC [M] drivers/iio/gyro/adis16136.o
2025-10-02T16:28:40.6255261Z CC [M] drivers/hwtracing/stm/ftrace.o
2025-10-02T16:28:40.8829964Z CC [M] drivers/iio/dac/ad5696-i2c.o
2025-10-02T16:28:40.9904667Z CC [M] drivers/thunderbolt/cap.o
2025-10-02T16:28:41.1678466Z LD [M] drivers/hwtracing/stm/stm_core.o
2025-10-02T16:28:41.1980033Z LD [M] drivers/hwtracing/stm/stm_p_basic.o
2025-10-02T16:28:41.2188366Z LD [M] drivers/hwtracing/stm/stm_p_sys-t.o
2025-10-02T16:28:41.2405759Z LD [M] drivers/hwtracing/stm/stm_console.o
2025-10-02T16:28:41.2615457Z LD [M] drivers/hwtracing/stm/stm_heartbeat.o
2025-10-02T16:28:41.2834516Z LD [M] drivers/hwtracing/stm/stm_ftrace.o
2025-10-02T16:28:41.2910690Z CC [M] drivers/iio/gyro/adis16260.o
2025-10-02T16:28:41.3393097Z CC [M] drivers/iio/dac/ad7303.o
2025-10-02T16:28:41.5371294Z CC [M] drivers/iio/dac/ad8801.o
2025-10-02T16:28:41.6792946Z CC [M] drivers/thunderbolt/path.o
2025-10-02T16:28:41.9830409Z CC [M] drivers/iio/gyro/adxrs290.o
2025-10-02T16:28:42.3004077Z CC [M] drivers/thunderbolt/tunnel.o
2025-10-02T16:28:42.4145667Z CC [M] drivers/iio/dac/ds4424.o
2025-10-02T16:28:42.6400091Z CC [M] drivers/infiniband/hw/hfi1/init.o
2025-10-02T16:28:42.6991616Z CC [M] drivers/iio/dac/ltc1660.o
2025-10-02T16:28:42.7195932Z CC [M] drivers/iio/gyro/adxrs450.o
2025-10-02T16:28:43.2952637Z CC [M] drivers/infiniband/hw/bnxt_re/main.o
2025-10-02T16:28:43.5584141Z CC [M] drivers/iio/gyro/bmg160_core.o
2025-10-02T16:28:43.5800666Z CC [M] drivers/iio/dac/ltc2632.o
2025-10-02T16:28:43.9837596Z CC [M] drivers/thunderbolt/eeprom.o
2025-10-02T16:28:44.3997920Z CC [M] drivers/iio/gyro/bmg160_i2c.o
2025-10-02T16:28:44.7824386Z CC [M] drivers/iio/dac/m62332.o
2025-10-02T16:28:44.9748368Z CC [M] drivers/thunderbolt/domain.o
2025-10-02T16:28:45.0269690Z CC [M] drivers/iio/gyro/bmg160_spi.o
2025-10-02T16:28:45.0777678Z CC [M] drivers/infiniband/hw/hfi1/intr.o
2025-10-02T16:28:45.2747062Z CC [M] drivers/infiniband/hw/bnxt_re/ib_verbs.o
2025-10-02T16:28:45.4611440Z CC [M] drivers/iio/dac/max517.o
2025-10-02T16:28:45.7806960Z CC [M] drivers/iio/gyro/fxas21002c_core.o
2025-10-02T16:28:45.9405137Z CC [M] drivers/iio/dac/mcp4725.o
2025-10-02T16:28:46.2977859Z CC [M] drivers/thunderbolt/dma_port.o
2025-10-02T16:28:46.5413746Z CC [M] drivers/infiniband/hw/hfi1/iowait.o
2025-10-02T16:28:46.7364479Z CC [M] drivers/iio/dac/mcp4922.o
2025-10-02T16:28:47.1344449Z CC [M] drivers/iio/gyro/fxas21002c_i2c.o
2025-10-02T16:28:47.2244133Z CC [M] drivers/thunderbolt/icm.o
2025-10-02T16:28:47.6672013Z CC [M] drivers/iio/dac/ti-dac082s085.o
2025-10-02T16:28:47.6860929Z CC [M] drivers/iio/gyro/fxas21002c_spi.o
2025-10-02T16:28:47.7297613Z CC [M] drivers/infiniband/hw/hfi1/ipoib_main.o
2025-10-02T16:28:48.4478855Z CC [M] drivers/iio/gyro/hid-sensor-gyro-3d.o
2025-10-02T16:28:48.4545298Z CC [M] drivers/infiniband/hw/bnxt_re/qplib_res.o
2025-10-02T16:28:48.5211462Z CC [M] drivers/iio/dac/ti-dac5571.o
2025-10-02T16:28:49.0383854Z CC [M] drivers/iio/gyro/mpu3050-core.o
2025-10-02T16:28:49.1386246Z CC [M] drivers/infiniband/hw/hfi1/ipoib_rx.o
2025-10-02T16:28:49.2914629Z CC [M] drivers/thunderbolt/property.o
2025-10-02T16:28:49.6422211Z CC [M] drivers/iio/dac/ti-dac7311.o
2025-10-02T16:28:50.1568869Z CC [M] drivers/iio/gyro/mpu3050-i2c.o
2025-10-02T16:28:50.1907550Z CC [M] drivers/infiniband/hw/bnxt_re/qplib_rcfw.o
2025-10-02T16:28:50.3283914Z CC [M] drivers/infiniband/hw/hfi1/ipoib_tx.o
2025-10-02T16:28:50.3861963Z CC [M] drivers/thunderbolt/xdomain.o
2025-10-02T16:28:50.4631808Z CC [M] drivers/iio/dac/ti-dac7612.o
2025-10-02T16:28:50.9711476Z CC [M] drivers/iio/gyro/itg3200_core.o
2025-10-02T16:28:51.3211764Z CC [M] drivers/infiniband/hw/bnxt_re/qplib_sp.o
2025-10-02T16:28:51.5244656Z CC [M] drivers/iio/gyro/itg3200_buffer.o
2025-10-02T16:28:51.5573403Z CC [M] drivers/fpga/fpga-mgr.o
2025-10-02T16:28:51.9580822Z CC [M] drivers/thunderbolt/lc.o
2025-10-02T16:28:52.0603815Z CC [M] drivers/iio/gyro/ssp_gyro_sensor.o
2025-10-02T16:28:52.4515118Z CC [M] drivers/infiniband/hw/bnxt_re/qplib_fp.o
2025-10-02T16:28:52.5065495Z CC [M] drivers/infiniband/hw/hfi1/mad.o
2025-10-02T16:28:52.6050519Z CC [M] drivers/fpga/altera-cvp.o
2025-10-02T16:28:52.6213692Z CC [M] drivers/iio/gyro/st_gyro_core.o
2025-10-02T16:28:52.7515509Z CC [M] drivers/thunderbolt/tmu.o
2025-10-02T16:28:53.4548843Z CC [M] drivers/iio/gyro/st_gyro_buffer.o
2025-10-02T16:28:53.5593005Z CC [M] drivers/fpga/altera-ps-spi.o
2025-10-02T16:28:53.6468839Z CC [M] drivers/thunderbolt/usb4.o
2025-10-02T16:28:54.2076335Z CC [M] drivers/iio/gyro/st_gyro_i2c.o
2025-10-02T16:28:54.5908726Z CC [M] drivers/fpga/machxo2-spi.o
2025-10-02T16:28:54.7467714Z CC [M] drivers/infiniband/hw/bnxt_re/hw_counters.o
2025-10-02T16:28:55.1016781Z CC [M] drivers/iio/gyro/st_gyro_spi.o
2025-10-02T16:28:55.1311055Z CC [M] drivers/thunderbolt/nvm.o
2025-10-02T16:28:55.5118992Z CC [M] drivers/fpga/xilinx-spi.o
2025-10-02T16:28:55.9907067Z LD [M] drivers/iio/gyro/mpu3050.o
2025-10-02T16:28:55.9931881Z LD [M] drivers/infiniband/hw/bnxt_re/bnxt_re.o
2025-10-02T16:28:56.0127697Z LD [M] drivers/iio/gyro/itg3200.o
2025-10-02T16:28:56.0132669Z CC [M] drivers/thunderbolt/retimer.o
2025-10-02T16:28:56.0377796Z LD [M] drivers/iio/gyro/st_gyro.o
2025-10-02T16:28:56.1141007Z CC [M] drivers/tee/amdtee/core.o
2025-10-02T16:28:56.2298491Z CC [M] drivers/fpga/altera-pr-ip-core.o
2025-10-02T16:28:56.2601132Z CC [M] drivers/iio/frequency/ad9523.o
2025-10-02T16:28:56.8143294Z CC [M] drivers/fpga/fpga-bridge.o
2025-10-02T16:28:56.8370731Z CC [M] drivers/infiniband/hw/hfi1/mmu_rb.o
2025-10-02T16:28:56.9661537Z CC [M] drivers/thunderbolt/quirks.o
2025-10-02T16:28:56.9809110Z CC [M] drivers/tee/amdtee/call.o
2025-10-02T16:28:57.4348595Z CC [M] drivers/fpga/altera-freeze-bridge.o
2025-10-02T16:28:57.5192647Z CC [M] drivers/iio/frequency/adf4350.o
2025-10-02T16:28:57.6331624Z CC [M] drivers/thunderbolt/acpi.o
2025-10-02T16:28:57.7339424Z CC [M] drivers/tee/amdtee/shm_pool.o
2025-10-02T16:28:57.9723957Z CC [M] drivers/fpga/xilinx-pr-decoupler.o
2025-10-02T16:28:58.3185680Z CC [M] drivers/thunderbolt/debugfs.o
2025-10-02T16:28:58.3245065Z LD [M] drivers/tee/amdtee/amdtee.o
2025-10-02T16:28:58.3539673Z CC [M] drivers/tee/tee_core.o
2025-10-02T16:28:58.4222860Z CC [M] drivers/iio/frequency/adf4371.o
2025-10-02T16:28:58.7093044Z CC [M] drivers/fpga/fpga-region.o
2025-10-02T16:28:59.0480333Z CC [M] drivers/infiniband/hw/hfi1/msix.o
2025-10-02T16:28:59.2147054Z CC [M] drivers/fpga/dfl.o
2025-10-02T16:28:59.2918702Z CC [M] drivers/iio/health/afe4403.o
2025-10-02T16:28:59.4616372Z CC [M] drivers/tee/tee_shm.o
2025-10-02T16:28:59.4798465Z LD [M] drivers/thunderbolt/thunderbolt.o
2025-10-02T16:28:59.6013274Z CC [M] drivers/tee/tee_shm_pool.o
2025-10-02T16:29:00.3271178Z CC [M] drivers/iio/health/afe4404.o
2025-10-02T16:29:00.3353864Z CC [M] drivers/mux/core.o
2025-10-02T16:29:00.3709913Z LD [M] drivers/tee/tee.o
2025-10-02T16:29:00.4073689Z CC [M] drivers/infiniband/hw/hfi1/netdev_rx.o
2025-10-02T16:29:00.5213576Z CC [M] drivers/iio/humidity/am2315.o
2025-10-02T16:29:00.6292849Z CC [M] drivers/fpga/dfl-fme-main.o
2025-10-02T16:29:00.9109035Z CC [M] drivers/mux/adg792a.o
2025-10-02T16:29:01.1701749Z CC [M] drivers/iio/humidity/dht11.o
2025-10-02T16:29:01.4232830Z CC [M] drivers/iio/health/max30100.o
2025-10-02T16:29:01.4752919Z CC [M] drivers/mux/adgs1408.o
2025-10-02T16:29:01.5354751Z CC [M] drivers/fpga/dfl-fme-pr.o
2025-10-02T16:29:01.8169880Z CC [M] drivers/iio/humidity/hdc100x.o
2025-10-02T16:29:02.0098139Z CC [M] drivers/iio/health/max30102.o
2025-10-02T16:29:02.0845491Z CC [M] drivers/infiniband/hw/hfi1/opfn.o
2025-10-02T16:29:02.1650627Z CC [M] drivers/mux/gpio.o
2025-10-02T16:29:02.1700719Z CC [M] drivers/fpga/dfl-fme-error.o
2025-10-02T16:29:02.5958480Z LD [M] drivers/mux/mux-core.o
2025-10-02T16:29:02.6078209Z LD [M] drivers/mux/mux-adg792a.o
2025-10-02T16:29:02.6262264Z LD [M] drivers/mux/mux-adgs1408.o
2025-10-02T16:29:02.6355249Z CC [M] drivers/iio/humidity/hdc2010.o
2025-10-02T16:29:02.6516833Z LD [M] drivers/mux/mux-gpio.o
2025-10-02T16:29:02.7783186Z CC [M] drivers/visorbus/visorbus_main.o
2025-10-02T16:29:02.8218575Z CC [M] drivers/siox/siox-core.o
2025-10-02T16:29:03.0343299Z CC [M] drivers/fpga/dfl-fme-perf.o
2025-10-02T16:29:03.1201499Z CC [M] drivers/iio/humidity/hid-sensor-humidity.o
2025-10-02T16:29:03.7575008Z CC [M] drivers/iio/humidity/hts221_core.o
2025-10-02T16:29:03.8051276Z CC [M] drivers/visorbus/visorchannel.o
2025-10-02T16:29:03.9840056Z CC [M] drivers/infiniband/hw/hfi1/pcie.o
2025-10-02T16:29:04.1459239Z CC [M] drivers/siox/siox-bus-gpio.o
2025-10-02T16:29:04.2559687Z CC [M] drivers/fpga/dfl-fme-mgr.o
2025-10-02T16:29:04.4585817Z CC [M] drivers/visorbus/visorchipset.o
2025-10-02T16:29:04.5191999Z CC [M] drivers/iio/humidity/hts221_buffer.o
2025-10-02T16:29:04.8340939Z CC [M] drivers/fpga/dfl-fme-br.o
2025-10-02T16:29:04.8547645Z CC [M] drivers/iio/humidity/hts221_i2c.o
2025-10-02T16:29:05.1774929Z CC [M] drivers/infiniband/hw/hfi1/pio.o
2025-10-02T16:29:05.4200783Z CC [M] drivers/iio/humidity/hts221_spi.o
2025-10-02T16:29:05.4230738Z CC [M] drivers/fpga/dfl-fme-region.o
2025-10-02T16:29:05.7343115Z CC [M] drivers/iio/humidity/htu21.o
2025-10-02T16:29:05.7438596Z LD [M] drivers/visorbus/visorbus.o
2025-10-02T16:29:05.8072018Z CC [M] drivers/iio/imu/bmi160/bmi160_core.o
2025-10-02T16:29:05.9522203Z CC [M] drivers/fpga/dfl-afu-main.o
2025-10-02T16:29:06.1447800Z CC [M] drivers/fpga/dfl-afu-region.o
2025-10-02T16:29:06.1965156Z CC [M] drivers/iio/humidity/si7005.o
2025-10-02T16:29:06.7393619Z CC [M] drivers/iio/imu/bmi160/bmi160_i2c.o
2025-10-02T16:29:06.8112458Z CC [M] drivers/iio/humidity/si7020.o
2025-10-02T16:29:06.8602918Z LD [M] drivers/iio/humidity/hts221.o
2025-10-02T16:29:06.8908105Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_core.o
2025-10-02T16:29:07.1109988Z CC [M] drivers/fpga/dfl-afu-dma-region.o
2025-10-02T16:29:07.4897300Z CC [M] drivers/iio/imu/bmi160/bmi160_spi.o
2025-10-02T16:29:07.4943310Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_gyro.o
2025-10-02T16:29:07.9478439Z CC [M] drivers/fpga/dfl-afu-error.o
2025-10-02T16:29:08.0338120Z CC [M] drivers/infiniband/hw/hfi1/pio_copy.o
2025-10-02T16:29:08.1426257Z CC [M] drivers/iio/light/acpi-als.o
2025-10-02T16:29:08.4013839Z CC [M] drivers/fpga/dfl-pci.o
2025-10-02T16:29:08.5494821Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_accel.o
2025-10-02T16:29:08.5863164Z CC [M] drivers/iio/light/adjd_s311.o
2025-10-02T16:29:08.8383564Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_temp.o
2025-10-02T16:29:09.2301500Z CC [M] drivers/iio/light/adux1020.o
2025-10-02T16:29:09.3574005Z LD [M] drivers/fpga/dfl-fme.o
2025-10-02T16:29:09.3760972Z LD [M] drivers/fpga/dfl-afu.o
2025-10-02T16:29:09.5093449Z CC [M] drivers/iio/light/al3010.o
2025-10-02T16:29:09.5673082Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_core.o
2025-10-02T16:29:09.6839016Z CC [M] drivers/infiniband/hw/hfi1/platform.o
2025-10-02T16:29:09.7867893Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.o
2025-10-02T16:29:09.9039889Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_timestamp.o
2025-10-02T16:29:10.1264308Z CC [M] drivers/iio/light/al3320a.o
2025-10-02T16:29:10.7069449Z CC [M] drivers/iio/magnetometer/ak8975.o
2025-10-02T16:29:10.7748167Z CC [M] drivers/iio/light/apds9300.o
2025-10-02T16:29:10.7926328Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_i2c.o
2025-10-02T16:29:10.9918068Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_ring.o
2025-10-02T16:29:11.3594775Z CC [M] drivers/infiniband/hw/hfi1/qp.o
2025-10-02T16:29:11.6041442Z CC [M] drivers/iio/light/apds9960.o
2025-10-02T16:29:11.6068600Z CC [M] drivers/iio/imu/inv_icm42600/inv_icm42600_spi.o
2025-10-02T16:29:11.6407344Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_trigger.o
2025-10-02T16:29:11.8829171Z CC [M] drivers/iio/magnetometer/bmc150_magn.o
2025-10-02T16:29:12.3248720Z CC [M] drivers/iio/light/as73211.o
2025-10-02T16:29:12.3976750Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_aux.o
2025-10-02T16:29:12.6160177Z LD [M] drivers/iio/imu/inv_icm42600/inv-icm42600.o
2025-10-02T16:29:12.6657435Z LD [M] drivers/iio/imu/inv_icm42600/inv-icm42600-i2c.o
2025-10-02T16:29:12.6872226Z CC [M] drivers/iio/magnetometer/bmc150_magn_i2c.o
2025-10-02T16:29:12.6910941Z LD [M] drivers/iio/imu/inv_icm42600/inv-icm42600-spi.o
2025-10-02T16:29:12.7692187Z CC [M] drivers/iio/light/bh1750.o
2025-10-02T16:29:13.0168031Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_magn.o
2025-10-02T16:29:13.2633642Z CC [M] drivers/iio/orientation/hid-sensor-incl-3d.o
2025-10-02T16:29:13.3093116Z CC [M] drivers/iio/magnetometer/bmc150_magn_spi.o
2025-10-02T16:29:13.3441827Z CC [M] drivers/iio/light/bh1780.o
2025-10-02T16:29:13.5245271Z CC [M] drivers/infiniband/hw/hfi1/qsfp.o
2025-10-02T16:29:13.6301913Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_i2c.o
2025-10-02T16:29:13.8533547Z CC [M] drivers/iio/light/cm32181.o
2025-10-02T16:29:13.9571246Z CC [M] drivers/iio/magnetometer/mag3110.o
2025-10-02T16:29:14.1240094Z CC [M] drivers/iio/orientation/hid-sensor-rotation.o
2025-10-02T16:29:14.2677722Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_acpi.o
2025-10-02T16:29:14.8658965Z CC [M] drivers/iio/light/cm3232.o
2025-10-02T16:29:14.8853329Z CC [M] drivers/infiniband/hw/hfi1/rc.o
2025-10-02T16:29:14.9764238Z CC [M] drivers/iio/magnetometer/hid-sensor-magn-3d.o
2025-10-02T16:29:14.9861782Z CC [M] drivers/iio/imu/inv_mpu6050/inv_mpu_spi.o
2025-10-02T16:29:15.2099650Z CC [M] drivers/gnss/core.o
2025-10-02T16:29:15.5519401Z CC [M] drivers/iio/light/cm3323.o
2025-10-02T16:29:15.7406363Z LD [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050.o
2025-10-02T16:29:15.7678930Z CC [M] drivers/iio/magnetometer/mmc35240.o
2025-10-02T16:29:15.7765629Z LD [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050-i2c.o
2025-10-02T16:29:15.7990890Z LD [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050-spi.o
2025-10-02T16:29:15.9093035Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.o
2025-10-02T16:29:15.9522329Z CC [M] drivers/gnss/serial.o
2025-10-02T16:29:16.2323997Z CC [M] drivers/iio/light/cm36651.o
2025-10-02T16:29:16.4477643Z CC [M] drivers/iio/magnetometer/st_magn_core.o
2025-10-02T16:29:16.7876550Z CC [M] drivers/gnss/mtk.o
2025-10-02T16:29:16.9197431Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_buffer.o
2025-10-02T16:29:17.3431886Z CC [M] drivers/iio/magnetometer/st_magn_buffer.o
2025-10-02T16:29:17.4721959Z CC [M] drivers/iio/light/cros_ec_light_prox.o
2025-10-02T16:29:17.5394398Z CC [M] drivers/gnss/sirf.o
2025-10-02T16:29:17.7948459Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_shub.o
2025-10-02T16:29:18.0932032Z CC [M] drivers/infiniband/hw/hfi1/ruc.o
2025-10-02T16:29:18.2466631Z CC [M] drivers/iio/light/gp2ap002.o
2025-10-02T16:29:18.3540364Z CC [M] drivers/iio/magnetometer/st_magn_i2c.o
2025-10-02T16:29:18.3789455Z CC [M] drivers/gnss/ubx.o
2025-10-02T16:29:18.6413375Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.o
2025-10-02T16:29:19.1846770Z LD [M] drivers/gnss/gnss.o
2025-10-02T16:29:19.1919328Z CC [M] drivers/iio/magnetometer/st_magn_spi.o
2025-10-02T16:29:19.2015805Z CC [M] drivers/iio/light/gp2ap020a00f.o
2025-10-02T16:29:19.2020886Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.o
2025-10-02T16:29:19.2077297Z LD [M] drivers/gnss/gnss-serial.o
2025-10-02T16:29:19.2342768Z LD [M] drivers/gnss/gnss-mtk.o
2025-10-02T16:29:19.2587898Z LD [M] drivers/gnss/gnss-sirf.o
2025-10-02T16:29:19.2870670Z LD [M] drivers/gnss/gnss-ubx.o
2025-10-02T16:29:19.3833634Z CC [M] drivers/iio/light/hid-sensor-als.o
2025-10-02T16:29:19.9051430Z LD [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.o
2025-10-02T16:29:19.9671711Z CC [M] drivers/iio/imu/adis16400.o
2025-10-02T16:29:19.9745990Z CC [M] drivers/iio/magnetometer/hmc5843_core.o
2025-10-02T16:29:20.0262622Z CC [M] drivers/iio/position/iqs624-pos.o
2025-10-02T16:29:20.3701896Z CC [M] drivers/infiniband/hw/hfi1/sdma.o
2025-10-02T16:29:20.4082069Z CC [M] drivers/iio/light/hid-sensor-prox.o
2025-10-02T16:29:20.5283158Z CC [M] drivers/iio/light/iqs621-als.o
2025-10-02T16:29:20.6514517Z CC [M] drivers/iio/magnetometer/hmc5843_i2c.o
2025-10-02T16:29:20.9828218Z CC [M] drivers/iio/imu/adis16460.o
2025-10-02T16:29:21.1165501Z CC [M] drivers/counter/counter.o
2025-10-02T16:29:21.1753748Z CC [M] drivers/iio/light/isl29018.o
2025-10-02T16:29:21.2611904Z CC [M] drivers/iio/magnetometer/hmc5843_spi.o
2025-10-02T16:29:21.8399352Z CC [M] drivers/iio/imu/adis16475.o
2025-10-02T16:29:21.9311085Z CC [M] drivers/iio/magnetometer/rm3100-core.o
2025-10-02T16:29:22.0868465Z CC [M] drivers/infiniband/hw/hfi1/sysfs.o
2025-10-02T16:29:22.4472887Z CC [M] drivers/iio/light/isl29028.o
2025-10-02T16:29:22.5904087Z CC [M] drivers/iio/magnetometer/rm3100-i2c.o
2025-10-02T16:29:22.8990497Z CC [M] drivers/iio/imu/adis16480.o
2025-10-02T16:29:23.0074172Z CC [M] drivers/iio/magnetometer/rm3100-spi.o
2025-10-02T16:29:23.4929133Z CC [M] drivers/iio/light/isl29125.o
2025-10-02T16:29:23.6341088Z LD [M] drivers/iio/magnetometer/st_magn.o
2025-10-02T16:29:23.8437494Z CC [M] drivers/iio/imu/adis.o
2025-10-02T16:29:23.9015576Z CC [M] drivers/infiniband/hw/hfi1/tid_rdma.o
2025-10-02T16:29:24.0619306Z CC [M] drivers/iio/light/jsa1212.o
2025-10-02T16:29:24.1331669Z CC [M] drivers/most/core.o
2025-10-02T16:29:24.1532714Z CC [M] drivers/most/configfs.o
2025-10-02T16:29:24.6455130Z CC [M] drivers/iio/imu/adis_trigger.o
2025-10-02T16:29:24.6593324Z CC [M] drivers/iio/light/lm3533-als.o
2025-10-02T16:29:25.1586100Z CC [M] drivers/iio/potentiometer/ad5272.o
2025-10-02T16:29:25.3204301Z CC [M] drivers/iio/imu/adis_buffer.o
2025-10-02T16:29:25.4434443Z CC [M] drivers/most/most_usb.o
2025-10-02T16:29:25.5220198Z CC [M] drivers/iio/light/ltr501.o
2025-10-02T16:29:25.6219896Z CC [M] drivers/iio/potentiometer/ds1803.o
2025-10-02T16:29:26.1073048Z CC [M] drivers/iio/potentiometer/max5432.o
2025-10-02T16:29:26.2943571Z CC [M] drivers/iio/imu/fxos8700_core.o
2025-10-02T16:29:26.5792680Z CC [M] drivers/iio/light/lv0104cs.o
2025-10-02T16:29:26.6497180Z CC [M] drivers/iio/potentiometer/max5481.o
2025-10-02T16:29:26.9986983Z CC [M] drivers/iio/imu/fxos8700_i2c.o
2025-10-02T16:29:27.0960663Z CC [M] drivers/most/most_cdev.o
2025-10-02T16:29:27.1966504Z CC [M] drivers/iio/light/max44000.o
2025-10-02T16:29:27.5131124Z CC [M] drivers/iio/potentiometer/max5487.o
2025-10-02T16:29:27.5447340Z CC [M] drivers/iio/imu/fxos8700_spi.o
2025-10-02T16:29:27.9338568Z LD [M] drivers/most/most_core.o
2025-10-02T16:29:28.0045044Z AR drivers/built-in.a
2025-10-02T16:29:28.0899990Z CC [M] drivers/iio/light/max44009.o
2025-10-02T16:29:28.0995715Z CC [M] drivers/iio/potentiometer/mcp4018.o
2025-10-02T16:29:28.2178283Z CC [M] drivers/iio/imu/kmx61.o
2025-10-02T16:29:28.3764177Z CC [M] drivers/iio/potentiometer/mcp4131.o
2025-10-02T16:29:28.6442183Z CC [M] drivers/infiniband/hw/hfi1/trace.o
2025-10-02T16:29:28.6513470Z CC [M] drivers/iio/light/noa1305.o
2025-10-02T16:29:29.2146593Z LD [M] drivers/iio/imu/adis_lib.o
2025-10-02T16:29:29.2334901Z CC [M] drivers/iio/potentiometer/mcp4531.o
2025-10-02T16:29:29.3701196Z CC [M] drivers/iio/light/opt3001.o
2025-10-02T16:29:29.5513046Z CC [M] drivers/infiniband/hw/hfi1/uc.o
2025-10-02T16:29:29.7830092Z CC [M] drivers/iio/light/pa12203001.o
2025-10-02T16:29:29.7891041Z CC [M] drivers/iio/potentiometer/mcp41010.o
2025-10-02T16:29:30.0993974Z CC [M] drivers/iio/potentiometer/tpl0102.o
2025-10-02T16:29:30.4440170Z CC [M] drivers/iio/light/rpr0521.o
2025-10-02T16:29:30.5847761Z CC [M] drivers/iio/potentiostat/lmp91000.o
2025-10-02T16:29:30.6868249Z CC [M] drivers/iio/light/tsl2563.o
2025-10-02T16:29:31.1186199Z CC [M] drivers/iio/pressure/abp060mg.o
2025-10-02T16:29:31.2383701Z CC [M] drivers/infiniband/hw/hfi1/ud.o
2025-10-02T16:29:31.4872725Z CC [M] drivers/iio/pressure/bmp280-core.o
2025-10-02T16:29:31.6494020Z CC [M] drivers/infiniband/hw/hfi1/user_exp_rcv.o
2025-10-02T16:29:31.7398998Z CC [M] drivers/iio/light/si1133.o
2025-10-02T16:29:32.5669782Z CC [M] drivers/iio/light/si1145.o
2025-10-02T16:29:32.6503619Z CC [M] drivers/iio/pressure/bmp280-regmap.o
2025-10-02T16:29:33.1061981Z CC [M] drivers/iio/pressure/bmp280-i2c.o
2025-10-02T16:29:33.2911315Z CC [M] drivers/iio/pressure/bmp280-spi.o
2025-10-02T16:29:33.5301304Z CC [M] drivers/iio/light/stk3310.o
2025-10-02T16:29:33.7087887Z CC [M] drivers/iio/light/st_uvis25_core.o
2025-10-02T16:29:33.9451071Z CC [M] drivers/iio/pressure/dlhl60d.o
2025-10-02T16:29:34.1136261Z CC [M] drivers/iio/light/st_uvis25_i2c.o
2025-10-02T16:29:34.2583670Z CC [M] drivers/iio/proximity/as3935.o
2025-10-02T16:29:34.4244151Z CC [M] drivers/iio/resolver/ad2s90.o
2025-10-02T16:29:34.5485634Z CC [M] drivers/iio/pressure/dps310.o
2025-10-02T16:29:34.8032829Z CC [M] drivers/iio/light/st_uvis25_spi.o
2025-10-02T16:29:35.0887042Z CC [M] drivers/iio/proximity/isl29501.o
2025-10-02T16:29:35.3144289Z CC [M] drivers/iio/resolver/ad2s1200.o
2025-10-02T16:29:35.3946152Z CC [M] drivers/iio/light/tcs3414.o
2025-10-02T16:29:35.5161341Z CC [M] drivers/iio/pressure/cros_ec_baro.o
2025-10-02T16:29:35.7263523Z CC [M] drivers/iio/proximity/pulsedlight-lidar-lite-v2.o
2025-10-02T16:29:36.0174285Z CC [M] drivers/iio/light/tcs3472.o
2025-10-02T16:29:36.0906821Z CC [M] drivers/iio/proximity/mb1232.o
2025-10-02T16:29:36.1327513Z CC [M] drivers/iio/pressure/hid-sensor-press.o
2025-10-02T16:29:36.3319105Z CC [M] drivers/iio/light/tsl2583.o
2025-10-02T16:29:36.7055593Z CC [M] drivers/iio/proximity/ping.o
2025-10-02T16:29:36.7905653Z CC [M] drivers/infiniband/hw/hfi1/user_pages.o
2025-10-02T16:29:36.8691417Z CC [M] drivers/iio/pressure/hp03.o
2025-10-02T16:29:37.2459772Z CC [M] drivers/iio/proximity/rfd77402.o
2025-10-02T16:29:37.2872766Z CC [M] drivers/iio/light/tsl2772.o
2025-10-02T16:29:37.4196481Z CC [M] drivers/iio/pressure/icp10100.o
2025-10-02T16:29:37.9247184Z CC [M] drivers/iio/proximity/srf04.o
2025-10-02T16:29:37.9310306Z CC [M] drivers/iio/pressure/mpl115.o
2025-10-02T16:29:38.0224427Z CC [M] drivers/infiniband/hw/hfi1/user_sdma.o
2025-10-02T16:29:38.3628678Z CC [M] drivers/iio/light/tsl4531.o
2025-10-02T16:29:38.4497509Z CC [M] drivers/iio/pressure/mpl115_i2c.o
2025-10-02T16:29:38.6097964Z CC [M] drivers/iio/proximity/srf08.o
2025-10-02T16:29:38.6509375Z CC [M] drivers/infiniband/hw/hfi1/verbs.o
2025-10-02T16:29:38.9951269Z CC [M] drivers/iio/light/us5182d.o
2025-10-02T16:29:39.1668114Z CC [M] drivers/iio/pressure/mpl115_spi.o
2025-10-02T16:29:39.2589041Z CC [M] drivers/iio/proximity/sx9310.o
2025-10-02T16:29:39.7424089Z CC [M] drivers/iio/light/vcnl4000.o
2025-10-02T16:29:40.0122762Z CC [M] drivers/iio/pressure/mpl3115.o
2025-10-02T16:29:40.4145939Z CC [M] drivers/iio/proximity/sx9500.o
2025-10-02T16:29:40.6003859Z CC [M] drivers/iio/light/vcnl4035.o
2025-10-02T16:29:40.6124052Z CC [M] drivers/iio/pressure/ms5611_core.o
2025-10-02T16:29:40.9175406Z CC [M] drivers/iio/temperature/iqs620at-temp.o
2025-10-02T16:29:41.2712482Z CC [M] drivers/iio/proximity/vcnl3020.o
2025-10-02T16:29:41.3916067Z CC [M] drivers/iio/light/veml6030.o
2025-10-02T16:29:41.4128288Z CC [M] drivers/iio/temperature/ltc2983.o
2025-10-02T16:29:41.6015347Z CC [M] drivers/iio/pressure/ms5611_i2c.o
2025-10-02T16:29:41.8951489Z CC [M] drivers/iio/proximity/vl53l0x-i2c.o
2025-10-02T16:29:41.9731332Z CC [M] drivers/infiniband/hw/hfi1/verbs_txreq.o
2025-10-02T16:29:42.1012346Z CC [M] drivers/iio/pressure/ms5611_spi.o
2025-10-02T16:29:42.1334677Z CC [M] drivers/iio/light/veml6070.o
2025-10-02T16:29:42.4847152Z CC [M] drivers/iio/temperature/hid-sensor-temperature.o
2025-10-02T16:29:42.5036801Z CC [M] drivers/iio/trigger/iio-trig-hrtimer.o
2025-10-02T16:29:42.7100304Z CC [M] drivers/iio/light/vl6180.o
2025-10-02T16:29:42.9033452Z CC [M] drivers/iio/pressure/ms5637.o
2025-10-02T16:29:42.9976598Z CC [M] drivers/iio/trigger/iio-trig-interrupt.o
2025-10-02T16:29:43.2281270Z CC [M] drivers/iio/temperature/maxim_thermocouple.o
2025-10-02T16:29:43.4836820Z CC [M] drivers/iio/pressure/st_pressure_core.o
2025-10-02T16:29:43.5120231Z CC [M] drivers/iio/trigger/iio-trig-sysfs.o
2025-10-02T16:29:43.5421953Z CC [M] drivers/iio/light/zopt2201.o
2025-10-02T16:29:43.8215689Z CC [M] drivers/infiniband/hw/hfi1/vnic_main.o
2025-10-02T16:29:43.8476657Z CC [M] drivers/iio/temperature/max31856.o
2025-10-02T16:29:44.1197231Z CC [M] drivers/iio/trigger/iio-trig-loop.o
2025-10-02T16:29:44.3519331Z CC [M] drivers/iio/pressure/st_pressure_buffer.o
2025-10-02T16:29:44.5478567Z CC [M] drivers/iio/temperature/mlx90614.o
2025-10-02T16:29:44.5600631Z CC [M] drivers/infiniband/hw/hfi1/vnic_sdma.o
2025-10-02T16:29:44.6148319Z CC [M] drivers/iio/pressure/t5403.o
2025-10-02T16:29:45.1765404Z CC [M] drivers/iio/temperature/mlx90632.o
2025-10-02T16:29:45.2105139Z CC [M] drivers/iio/pressure/hp206c.o
2025-10-02T16:29:45.2224137Z CC [M] drivers/iio/pressure/zpa2326.o
2025-10-02T16:29:45.5270107Z CC [M] drivers/iio/industrialio-core.o
2025-10-02T16:29:45.9350112Z CC [M] drivers/infiniband/hw/hfi1/debugfs.o
2025-10-02T16:29:46.1706006Z CC [M] drivers/iio/pressure/zpa2326_i2c.o
2025-10-02T16:29:46.1895758Z CC [M] drivers/iio/temperature/tmp006.o
2025-10-02T16:29:46.3521270Z CC [M] drivers/iio/pressure/zpa2326_spi.o
2025-10-02T16:29:46.6303620Z CC [M] drivers/iio/temperature/tmp007.o
2025-10-02T16:29:46.6723135Z CC [M] drivers/iio/pressure/st_pressure_i2c.o
2025-10-02T16:29:46.8501949Z CC [M] drivers/iio/pressure/st_pressure_spi.o
2025-10-02T16:29:47.2392641Z CC [M] drivers/iio/industrialio-event.o
2025-10-02T16:29:47.3068231Z CC [M] drivers/iio/temperature/tsys01.o
2025-10-02T16:29:47.4384001Z CC [M] drivers/iio/temperature/tsys02d.o
2025-10-02T16:29:47.7513863Z LD [M] drivers/iio/pressure/bmp280.o
2025-10-02T16:29:47.7778067Z LD [M] drivers/iio/pressure/st_pressure.o
2025-10-02T16:29:47.8986857Z CC [M] drivers/iio/inkern.o
2025-10-02T16:29:48.0607415Z CC [M] drivers/iio/industrialio-buffer.o
2025-10-02T16:29:48.0725784Z CC [M] drivers/iio/industrialio-trigger.o
2025-10-02T16:29:48.0834081Z CC [M] drivers/iio/industrialio-configfs.o
2025-10-02T16:29:48.3763210Z LD [M] drivers/infiniband/hw/hfi1/hfi1.o
2025-10-02T16:29:48.4995108Z CC [M] drivers/iio/industrialio-sw-device.o
2025-10-02T16:29:48.7691817Z CC [M] drivers/iio/industrialio-sw-trigger.o
2025-10-02T16:29:48.7942844Z CC [M] drivers/iio/industrialio-triggered-event.o
2025-10-02T16:29:49.1880616Z LD [M] drivers/iio/industrialio.o
2025-10-02T16:29:49.4001394Z GEN .version
2025-10-02T16:29:49.4296041Z CHK include/generated/compile.h
2025-10-02T16:29:49.4572780Z LD vmlinux.o
2025-10-02T16:29:53.1391512Z MODPOST vmlinux.symvers
2025-10-02T16:29:53.4991448Z MODINFO modules.builtin.modinfo
2025-10-02T16:29:53.5580999Z GEN modules.builtin
2025-10-02T16:29:53.5652105Z LD .tmp_vmlinux.btf
2025-10-02T16:30:00.9016181Z BTF .btf.vmlinux.bin.o
2025-10-02T16:30:12.0353019Z LD .tmp_vmlinux.kallsyms1
2025-10-02T16:30:15.3284562Z KSYMS .tmp_vmlinux.kallsyms1.S
2025-10-02T16:30:15.9526990Z AS .tmp_vmlinux.kallsyms1.o
2025-10-02T16:30:16.4209364Z LD .tmp_vmlinux.kallsyms2
2025-10-02T16:30:19.6895479Z KSYMS .tmp_vmlinux.kallsyms2.S
2025-10-02T16:30:20.3205874Z AS .tmp_vmlinux.kallsyms2.o
2025-10-02T16:30:20.7929268Z LD vmlinux
2025-10-02T16:30:28.1342163Z BTFIDS vmlinux
2025-10-02T16:30:29.6415363Z SORTTAB vmlinux
2025-10-02T16:30:29.6704659Z SYSMAP System.map
2025-10-02T16:30:29.8870845Z HOSTCC arch/x86/tools/insn_decoder_test
2025-10-02T16:30:29.8878717Z HOSTCC arch/x86/tools/insn_sanity
2025-10-02T16:30:29.9639223Z MODPOST modules-only.symvers
2025-10-02T16:30:30.2220987Z TEST posttest
2025-10-02T16:30:44.3027059Z GEN Module.symvers
2025-10-02T16:30:44.5340890Z CC [M] arch/x86/crypto/aegis128-aesni.mod.o
2025-10-02T16:30:44.5342449Z CC [M] arch/x86/crypto/aesni-intel.mod.o
2025-10-02T16:30:44.5391244Z CC [M] arch/x86/crypto/blake2s-x86_64.mod.o
2025-10-02T16:30:44.5401223Z CC [M] arch/x86/crypto/blowfish-x86_64.mod.o
2025-10-02T16:30:44.8861113Z CC [M] arch/x86/crypto/camellia-aesni-avx-x86_64.mod.o
2025-10-02T16:30:44.9103442Z CC [M] arch/x86/crypto/camellia-aesni-avx2.mod.o
2025-10-02T16:30:44.9411855Z CC [M] arch/x86/crypto/camellia-x86_64.mod.o
2025-10-02T16:30:45.1123263Z CC [M] arch/x86/crypto/cast5-avx-x86_64.mod.o
2025-10-02T16:30:45.1880809Z CC [M] arch/x86/crypto/cast6-avx-x86_64.mod.o
2025-10-02T16:30:45.3290090Z CC [M] arch/x86/crypto/chacha-x86_64.mod.o
2025-10-02T16:30:45.3974606Z CC [M] arch/x86/crypto/crc32-pclmul.mod.o
2025-10-02T16:30:45.5160668Z CC [M] arch/x86/crypto/crc32c-intel.mod.o
2025-10-02T16:30:45.6495641Z CC [M] arch/x86/crypto/crct10dif-pclmul.mod.o
2025-10-02T16:30:45.6580871Z CC [M] arch/x86/crypto/curve25519-x86_64.mod.o
2025-10-02T16:30:45.8760756Z CC [M] arch/x86/crypto/des3_ede-x86_64.mod.o
2025-10-02T16:30:45.9322990Z CC [M] arch/x86/crypto/ghash-clmulni-intel.mod.o
2025-10-02T16:30:45.9740106Z CC [M] arch/x86/crypto/glue_helper.mod.o
2025-10-02T16:30:46.1301351Z CC [M] arch/x86/crypto/nhpoly1305-avx2.mod.o
2025-10-02T16:30:46.2419450Z CC [M] arch/x86/crypto/nhpoly1305-sse2.mod.o
2025-10-02T16:30:46.2765857Z CC [M] arch/x86/crypto/poly1305-x86_64.mod.o
2025-10-02T16:30:46.4577294Z CC [M] arch/x86/crypto/serpent-avx-x86_64.mod.o
2025-10-02T16:30:46.5942173Z CC [M] arch/x86/crypto/serpent-avx2.mod.o
2025-10-02T16:30:46.6684923Z CC [M] arch/x86/crypto/serpent-sse2-x86_64.mod.o
2025-10-02T16:30:46.7002648Z CC [M] arch/x86/crypto/sha1-ssse3.mod.o
2025-10-02T16:30:46.9864882Z CC [M] arch/x86/crypto/sha512-ssse3.mod.o
2025-10-02T16:30:46.9877338Z CC [M] arch/x86/crypto/sha256-ssse3.mod.o
2025-10-02T16:30:47.0111380Z CC [M] arch/x86/crypto/twofish-avx-x86_64.mod.o
2025-10-02T16:30:47.0159136Z CC [M] arch/x86/crypto/twofish-x86_64-3way.mod.o
2025-10-02T16:30:47.3440866Z CC [M] arch/x86/crypto/twofish-x86_64.mod.o
2025-10-02T16:30:47.3893140Z CC [M] arch/x86/events/amd/power.mod.o
2025-10-02T16:30:47.4160904Z CC [M] arch/x86/events/intel/intel-cstate.mod.o
2025-10-02T16:30:47.5096207Z CC [M] arch/x86/events/intel/intel-uncore.mod.o
2025-10-02T16:30:47.7020073Z CC [M] arch/x86/events/rapl.mod.o
2025-10-02T16:30:47.7172567Z CC [M] arch/x86/kernel/cpu/mce/mce-inject.mod.o
2025-10-02T16:30:47.7601106Z CC [M] arch/x86/kvm/kvm-amd.mod.o
2025-10-02T16:30:47.9109148Z CC [M] arch/x86/kvm/kvm-intel.mod.o
2025-10-02T16:30:48.0925975Z CC [M] arch/x86/kvm/kvm.mod.o
2025-10-02T16:30:48.1591467Z CC [M] arch/x86/oprofile/oprofile.mod.o
2025-10-02T16:30:48.2411317Z CC [M] crypto/842.mod.o
2025-10-02T16:30:48.2556897Z CC [M] crypto/adiantum.mod.o
2025-10-02T16:30:48.5046420Z CC [M] crypto/aegis128.mod.o
2025-10-02T16:30:48.5440620Z CC [M] crypto/aes_ti.mod.o
2025-10-02T16:30:48.5558177Z CC [M] crypto/af_alg.mod.o
2025-10-02T16:30:48.7929810Z CC [M] crypto/algif_aead.mod.o
2025-10-02T16:30:48.8740866Z CC [M] crypto/algif_hash.mod.o
2025-10-02T16:30:48.9006822Z CC [M] crypto/algif_rng.mod.o
2025-10-02T16:30:48.9461316Z CC [M] crypto/algif_skcipher.mod.o
2025-10-02T16:30:49.2343995Z CC [M] crypto/ansi_cprng.mod.o
2025-10-02T16:30:49.2962213Z CC [M] crypto/asymmetric_keys/asym_tpm.mod.o
2025-10-02T16:30:49.2985119Z CC [M] crypto/asymmetric_keys/pkcs8_key_parser.mod.o
2025-10-02T16:30:49.4197289Z CC [M] crypto/asymmetric_keys/tpm_key_parser.mod.o
2025-10-02T16:30:49.5731742Z CC [M] crypto/async_tx/async_memcpy.mod.o
2025-10-02T16:30:49.6480223Z CC [M] crypto/async_tx/async_pq.mod.o
2025-10-02T16:30:49.7054736Z CC [M] crypto/async_tx/async_raid6_recov.mod.o
2025-10-02T16:30:49.8841945Z CC [M] crypto/async_tx/async_tx.mod.o
2025-10-02T16:30:49.9946804Z CC [M] crypto/async_tx/async_xor.mod.o
2025-10-02T16:30:50.0068021Z CC [M] crypto/async_tx/raid6test.mod.o
2025-10-02T16:30:50.1081867Z CC [M] crypto/authenc.mod.o
2025-10-02T16:30:50.3323551Z CC [M] crypto/authencesn.mod.o
2025-10-02T16:30:50.3400239Z CC [M] crypto/blake2b_generic.mod.o
2025-10-02T16:30:50.3795975Z CC [M] crypto/blake2s_generic.mod.o
2025-10-02T16:30:50.5370965Z CC [M] crypto/blowfish_common.mod.o
2025-10-02T16:30:50.6573012Z CC [M] crypto/blowfish_generic.mod.o
2025-10-02T16:30:50.6878801Z CC [M] crypto/camellia_generic.mod.o
2025-10-02T16:30:50.8266288Z CC [M] crypto/cast5_generic.mod.o
2025-10-02T16:30:50.9787857Z CC [M] crypto/cast6_generic.mod.o
2025-10-02T16:30:51.0203415Z CC [M] crypto/cast_common.mod.o
2025-10-02T16:30:51.0366065Z CC [M] crypto/cbc.mod.o
2025-10-02T16:30:51.3067708Z CC [M] crypto/ccm.mod.o
2025-10-02T16:30:51.3222089Z CC [M] crypto/cfb.mod.o
2025-10-02T16:30:51.3686207Z CC [M] crypto/chacha20poly1305.mod.o
2025-10-02T16:30:51.4153641Z CC [M] crypto/chacha_generic.mod.o
2025-10-02T16:30:51.5956190Z CC [M] crypto/cmac.mod.o
2025-10-02T16:30:51.7864987Z CC [M] crypto/crc32_generic.mod.o
2025-10-02T16:30:51.8120792Z CC [M] crypto/crc32c_generic.mod.o
2025-10-02T16:30:51.8837548Z CC [M] crypto/cryptd.mod.o
2025-10-02T16:30:51.9092473Z CC [M] crypto/crypto_engine.mod.o
2025-10-02T16:30:52.1593574Z CC [M] crypto/crypto_simd.mod.o
2025-10-02T16:30:52.2200606Z CC [M] crypto/crypto_user.mod.o
2025-10-02T16:30:52.2438346Z CC [M] crypto/cts.mod.o
2025-10-02T16:30:52.4018150Z CC [M] crypto/curve25519-generic.mod.o
2025-10-02T16:30:52.5592718Z CC [M] crypto/deflate.mod.o
2025-10-02T16:30:52.6014593Z CC [M] crypto/des_generic.mod.o
2025-10-02T16:30:52.6057233Z CC [M] crypto/drbg.mod.o
2025-10-02T16:30:52.8571351Z CC [M] crypto/ecb.mod.o
2025-10-02T16:30:52.9903375Z CC [M] crypto/ecc.mod.o
2025-10-02T16:30:53.0007216Z CC [M] crypto/ecdh_generic.mod.o
2025-10-02T16:30:53.0180019Z CC [M] crypto/echainiv.mod.o
2025-10-02T16:30:53.2340149Z CC [M] crypto/ecrdsa_generic.mod.o
2025-10-02T16:30:53.3284162Z CC [M] crypto/essiv.mod.o
2025-10-02T16:30:53.3665397Z CC [M] crypto/fcrypt.mod.o
2025-10-02T16:30:53.5023206Z CC [M] crypto/gcm.mod.o
2025-10-02T16:30:53.6147794Z CC [M] crypto/gf128mul.mod.o
2025-10-02T16:30:53.6927343Z CC [M] crypto/ghash-generic.mod.o
2025-10-02T16:30:53.7864376Z CC [M] crypto/keywrap.mod.o
2025-10-02T16:30:53.9070209Z CC [M] crypto/lrw.mod.o
2025-10-02T16:30:54.0318265Z CC [M] crypto/lz4hc.mod.o
2025-10-02T16:30:54.0634158Z CC [M] crypto/lzo-rle.mod.o
2025-10-02T16:30:54.1961973Z CC [M] crypto/lzo.mod.o
2025-10-02T16:30:54.3325380Z CC [M] crypto/md4.mod.o
2025-10-02T16:30:54.3522270Z CC [M] crypto/michael_mic.mod.o
2025-10-02T16:30:54.4585735Z CC [M] crypto/nhpoly1305.mod.o
2025-10-02T16:30:54.6137162Z CC [M] crypto/ofb.mod.o
2025-10-02T16:30:54.6531809Z CC [M] crypto/pcbc.mod.o
2025-10-02T16:30:54.6976482Z CC [M] crypto/pcrypt.mod.o
2025-10-02T16:30:54.9651252Z CC [M] crypto/poly1305_generic.mod.o
2025-10-02T16:30:55.0130345Z CC [M] crypto/rmd128.mod.o
2025-10-02T16:30:55.0346713Z CC [M] crypto/rmd160.mod.o
2025-10-02T16:30:55.0644223Z CC [M] crypto/rmd256.mod.o
2025-10-02T16:30:55.3373551Z CC [M] crypto/rmd320.mod.o
2025-10-02T16:30:55.3749138Z CC [M] crypto/salsa20_generic.mod.o
2025-10-02T16:30:55.4174977Z CC [M] crypto/seqiv.mod.o
2025-10-02T16:30:55.4280031Z CC [M] crypto/serpent_generic.mod.o
2025-10-02T16:30:55.6845358Z CC [M] crypto/sha3_generic.mod.o
2025-10-02T16:30:55.7651988Z CC [M] crypto/sm2_generic.mod.o
2025-10-02T16:30:55.7793562Z CC [M] crypto/sm3_generic.mod.o
2025-10-02T16:30:55.8795785Z CC [M] crypto/sm4_generic.mod.o
2025-10-02T16:30:56.1116331Z CC [M] crypto/streebog_generic.mod.o
2025-10-02T16:30:56.1618167Z CC [M] crypto/tcrypt.mod.o
2025-10-02T16:30:56.1796188Z CC [M] crypto/tgr192.mod.o
2025-10-02T16:30:56.2137198Z CC [M] crypto/twofish_common.mod.o
2025-10-02T16:30:56.5192085Z CC [M] crypto/twofish_generic.mod.o
2025-10-02T16:30:56.5462256Z CC [M] crypto/vmac.mod.o
2025-10-02T16:30:56.5520559Z CC [M] crypto/wp512.mod.o
2025-10-02T16:30:56.5973685Z CC [M] crypto/xcbc.mod.o
2025-10-02T16:30:56.8598383Z CC [M] crypto/xor.mod.o
2025-10-02T16:30:56.9002981Z CC [M] crypto/xts.mod.o
2025-10-02T16:30:56.9093244Z CC [M] crypto/xxhash_generic.mod.o
2025-10-02T16:30:57.0377108Z CC [M] drivers/accessibility/speakup/speakup.mod.o
2025-10-02T16:30:57.2074826Z CC [M] drivers/accessibility/speakup/speakup_acntsa.mod.o
2025-10-02T16:30:57.2770129Z CC [M] drivers/accessibility/speakup/speakup_apollo.mod.o
2025-10-02T16:30:57.2849370Z CC [M] drivers/accessibility/speakup/speakup_audptr.mod.o
2025-10-02T16:30:57.4566459Z CC [M] drivers/accessibility/speakup/speakup_bns.mod.o
2025-10-02T16:30:57.5264783Z CC [M] drivers/accessibility/speakup/speakup_decext.mod.o
2025-10-02T16:30:57.6116291Z CC [M] drivers/accessibility/speakup/speakup_dectlk.mod.o
2025-10-02T16:30:57.7803865Z CC [M] drivers/accessibility/speakup/speakup_dummy.mod.o
2025-10-02T16:30:57.8164038Z CC [M] drivers/accessibility/speakup/speakup_ltlk.mod.o
2025-10-02T16:30:57.8688250Z CC [M] drivers/accessibility/speakup/speakup_soft.mod.o
2025-10-02T16:30:57.9977582Z CC [M] drivers/accessibility/speakup/speakup_spkout.mod.o
2025-10-02T16:30:58.1179659Z CC [M] drivers/accessibility/speakup/speakup_txprt.mod.o
2025-10-02T16:30:58.1841199Z CC [M] drivers/acpi/acpi_configfs.mod.o
2025-10-02T16:30:58.3029306Z CC [M] drivers/acpi/acpi_extlog.mod.o
2025-10-02T16:30:58.3174816Z CC [M] drivers/acpi/acpi_ipmi.mod.o
2025-10-02T16:30:58.4308372Z CC [M] drivers/acpi/acpi_pad.mod.o
2025-10-02T16:30:58.6288006Z CC [M] drivers/acpi/acpi_tad.mod.o
2025-10-02T16:30:58.7009888Z CC [M] drivers/acpi/apei/einj.mod.o
2025-10-02T16:30:58.7389217Z CC [M] drivers/acpi/apei/erst-dbg.mod.o
2025-10-02T16:30:58.7450796Z CC [M] drivers/acpi/custom_method.mod.o
2025-10-02T16:30:58.9510995Z CC [M] drivers/acpi/dptf/dptf_pch_fivr.mod.o
2025-10-02T16:30:59.0294380Z CC [M] drivers/acpi/dptf/dptf_power.mod.o
2025-10-02T16:30:59.2080942Z CC [M] drivers/acpi/ec_sys.mod.o
2025-10-02T16:30:59.2240011Z CC [M] drivers/acpi/nfit/nfit.mod.o
2025-10-02T16:30:59.2740084Z CC [M] drivers/acpi/sbs.mod.o
2025-10-02T16:30:59.3537185Z CC [M] drivers/acpi/sbshc.mod.o
2025-10-02T16:30:59.5487635Z CC [M] drivers/acpi/video.mod.o
2025-10-02T16:30:59.6442338Z CC [M] drivers/ata/acard-ahci.mod.o
2025-10-02T16:30:59.6648045Z CC [M] drivers/ata/ahci_platform.mod.o
2025-10-02T16:30:59.7110905Z CC [M] drivers/ata/ata_generic.mod.o
2025-10-02T16:30:59.8854728Z CC [M] drivers/ata/ata_piix.mod.o
2025-10-02T16:31:00.0052287Z CC [M] drivers/ata/libahci_platform.mod.o
2025-10-02T16:31:00.0275786Z CC [M] drivers/ata/pata_acpi.mod.o
2025-10-02T16:31:00.1065361Z CC [M] drivers/ata/pata_ali.mod.o
2025-10-02T16:31:00.2863635Z CC [M] drivers/ata/pata_amd.mod.o
2025-10-02T16:31:00.3572520Z CC [M] drivers/ata/pata_artop.mod.o
2025-10-02T16:31:00.4179392Z CC [M] drivers/ata/pata_atiixp.mod.o
2025-10-02T16:31:00.6194941Z CC [M] drivers/ata/pata_atp867x.mod.o
2025-10-02T16:31:00.6297746Z CC [M] drivers/ata/pata_cmd640.mod.o
2025-10-02T16:31:00.7484991Z CC [M] drivers/ata/pata_cmd64x.mod.o
2025-10-02T16:31:00.7682029Z CC [M] drivers/ata/pata_cypress.mod.o
2025-10-02T16:31:01.0761668Z CC [M] drivers/ata/pata_efar.mod.o
2025-10-02T16:31:01.0766116Z CC [M] drivers/ata/pata_hpt366.mod.o
2025-10-02T16:31:01.1028693Z CC [M] drivers/ata/pata_hpt37x.mod.o
2025-10-02T16:31:01.1334073Z CC [M] drivers/ata/pata_hpt3x2n.mod.o
2025-10-02T16:31:01.3922367Z CC [M] drivers/ata/pata_hpt3x3.mod.o
2025-10-02T16:31:01.5042215Z CC [M] drivers/ata/pata_it8213.mod.o
2025-10-02T16:31:01.5154838Z CC [M] drivers/ata/pata_it821x.mod.o
2025-10-02T16:31:01.5194480Z CC [M] drivers/ata/pata_jmicron.mod.o
2025-10-02T16:31:01.7618988Z CC [M] drivers/ata/pata_legacy.mod.o
2025-10-02T16:31:01.8135439Z CC [M] drivers/ata/pata_marvell.mod.o
2025-10-02T16:31:01.8452619Z CC [M] drivers/ata/pata_mpiix.mod.o
2025-10-02T16:31:01.9303886Z CC [M] drivers/ata/pata_netcell.mod.o
2025-10-02T16:31:02.1803620Z CC [M] drivers/ata/pata_ninja32.mod.o
2025-10-02T16:31:02.2283416Z CC [M] drivers/ata/pata_ns87410.mod.o
2025-10-02T16:31:02.2364295Z CC [M] drivers/ata/pata_ns87415.mod.o
2025-10-02T16:31:02.2574202Z CC [M] drivers/ata/pata_oldpiix.mod.o
2025-10-02T16:31:02.5473944Z CC [M] drivers/ata/pata_opti.mod.o
2025-10-02T16:31:02.5710962Z CC [M] drivers/ata/pata_optidma.mod.o
2025-10-02T16:31:02.6469994Z CC [M] drivers/ata/pata_pcmcia.mod.o
2025-10-02T16:31:02.6769203Z CC [M] drivers/ata/pata_pdc2027x.mod.o
2025-10-02T16:31:02.8640368Z CC [M] drivers/ata/pata_pdc202xx_old.mod.o
2025-10-02T16:31:02.9481498Z CC [M] drivers/ata/pata_piccolo.mod.o
2025-10-02T16:31:03.0195228Z CC [M] drivers/ata/pata_radisys.mod.o
2025-10-02T16:31:03.0588949Z CC [M] drivers/ata/pata_rdc.mod.o
2025-10-02T16:31:03.2244004Z CC [M] drivers/ata/pata_rz1000.mod.o
2025-10-02T16:31:03.3492773Z CC [M] drivers/ata/pata_sch.mod.o
2025-10-02T16:31:03.4686221Z CC [M] drivers/ata/pata_serverworks.mod.o
2025-10-02T16:31:03.4855421Z CC [M] drivers/ata/pata_sil680.mod.o
2025-10-02T16:31:03.5351484Z CC [M] drivers/ata/pata_sis.mod.o
2025-10-02T16:31:03.6423591Z CC [M] drivers/ata/pata_sl82c105.mod.o
2025-10-02T16:31:03.8363621Z CC [M] drivers/ata/pata_triflex.mod.o
2025-10-02T16:31:03.8503554Z CC [M] drivers/ata/pata_via.mod.o
2025-10-02T16:31:03.9331263Z CC [M] drivers/ata/pdc_adma.mod.o
2025-10-02T16:31:04.0372298Z CC [M] drivers/ata/sata_dwc_460ex.mod.o
2025-10-02T16:31:04.1605875Z CC [M] drivers/ata/sata_inic162x.mod.o
2025-10-02T16:31:04.2331467Z CC [M] drivers/ata/sata_mv.mod.o
2025-10-02T16:31:04.3644498Z CC [M] drivers/ata/sata_nv.mod.o
2025-10-02T16:31:04.4532869Z CC [M] drivers/ata/sata_promise.mod.o
2025-10-02T16:31:04.5440816Z CC [M] drivers/ata/sata_qstor.mod.o
2025-10-02T16:31:04.5611440Z CC [M] drivers/ata/sata_sil.mod.o
2025-10-02T16:31:04.7774465Z CC [M] drivers/ata/sata_sil24.mod.o
2025-10-02T16:31:04.8411560Z CC [M] drivers/ata/sata_sis.mod.o
2025-10-02T16:31:04.8578532Z CC [M] drivers/ata/sata_svw.mod.o
2025-10-02T16:31:04.9431101Z CC [M] drivers/ata/sata_sx4.mod.o
2025-10-02T16:31:05.1457810Z CC [M] drivers/ata/sata_uli.mod.o
2025-10-02T16:31:05.2505705Z CC [M] drivers/ata/sata_via.mod.o
2025-10-02T16:31:05.2642205Z CC [M] drivers/ata/sata_vsc.mod.o
2025-10-02T16:31:05.3849365Z CC [M] drivers/atm/ambassador.mod.o
2025-10-02T16:31:05.5403236Z CC [M] drivers/atm/atmtcp.mod.o
2025-10-02T16:31:05.5944750Z CC [M] drivers/atm/eni.mod.o
2025-10-02T16:31:05.7246318Z CC [M] drivers/atm/firestream.mod.o
2025-10-02T16:31:05.7620042Z CC [M] drivers/atm/fore_200e.mod.o
2025-10-02T16:31:05.9540925Z CC [M] drivers/atm/he.mod.o
2025-10-02T16:31:05.9801798Z CC [M] drivers/atm/horizon.mod.o
2025-10-02T16:31:06.0304102Z CC [M] drivers/atm/idt77252.mod.o
2025-10-02T16:31:06.2217973Z CC [M] drivers/atm/iphase.mod.o
2025-10-02T16:31:06.3015485Z CC [M] drivers/atm/lanai.mod.o
2025-10-02T16:31:06.3384666Z CC [M] drivers/atm/nicstar.mod.o
2025-10-02T16:31:06.4336080Z CC [M] drivers/atm/solos-pci.mod.o
2025-10-02T16:31:06.6096092Z CC [M] drivers/atm/suni.mod.o
2025-10-02T16:31:06.6976979Z CC [M] drivers/atm/uPD98402.mod.o
2025-10-02T16:31:06.7150878Z CC [M] drivers/atm/zatm.mod.o
2025-10-02T16:31:06.7707596Z CC [M] drivers/auxdisplay/cfag12864b.mod.o
2025-10-02T16:31:07.0516106Z CC [M] drivers/auxdisplay/cfag12864bfb.mod.o
2025-10-02T16:31:07.0645353Z CC [M] drivers/auxdisplay/charlcd.mod.o
2025-10-02T16:31:07.1131589Z CC [M] drivers/auxdisplay/hd44780.mod.o
2025-10-02T16:31:07.1582188Z CC [M] drivers/auxdisplay/img-ascii-lcd.mod.o
2025-10-02T16:31:07.3930947Z CC [M] drivers/auxdisplay/ks0108.mod.o
2025-10-02T16:31:07.4690392Z CC [M] drivers/auxdisplay/panel.mod.o
2025-10-02T16:31:07.5004022Z CC [M] drivers/base/regmap/regmap-sccb.mod.o
2025-10-02T16:31:07.5250472Z CC [M] drivers/base/regmap/regmap-sdw.mod.o
2025-10-02T16:31:07.8032476Z CC [M] drivers/base/regmap/regmap-slimbus.mod.o
2025-10-02T16:31:07.8597177Z CC [M] drivers/base/regmap/regmap-spi-avmm.mod.o
2025-10-02T16:31:07.8747883Z CC [M] drivers/base/regmap/regmap-w1.mod.o
2025-10-02T16:31:07.8748828Z CC [M] drivers/bcma/bcma.mod.o
2025-10-02T16:31:08.1259105Z CC [M] drivers/block/aoe/aoe.mod.o
2025-10-02T16:31:08.1657217Z CC [M] drivers/block/brd.mod.o
2025-10-02T16:31:08.2924303Z CC [M] drivers/block/cryptoloop.mod.o
2025-10-02T16:31:08.2999239Z CC [M] drivers/block/drbd/drbd.mod.o
2025-10-02T16:31:08.4386786Z CC [M] drivers/block/floppy.mod.o
2025-10-02T16:31:08.5476743Z CC [M] drivers/block/loop.mod.o
2025-10-02T16:31:08.6557018Z CC [M] drivers/block/mtip32xx/mtip32xx.mod.o
2025-10-02T16:31:08.7288296Z CC [M] drivers/block/nbd.mod.o
2025-10-02T16:31:08.7622752Z CC [M] drivers/block/null_blk/null_blk.mod.o
2025-10-02T16:31:08.9098544Z CC [M] drivers/block/pktcdvd.mod.o
2025-10-02T16:31:09.0016285Z CC [M] drivers/block/rbd.mod.o
2025-10-02T16:31:09.1664466Z CC [M] drivers/block/rnbd/rnbd-client.mod.o
2025-10-02T16:31:09.2391933Z CC [M] drivers/block/rnbd/rnbd-server.mod.o
2025-10-02T16:31:09.2443860Z CC [M] drivers/block/rsxx/rsxx.mod.o
2025-10-02T16:31:09.3313353Z CC [M] drivers/block/skd.mod.o
2025-10-02T16:31:09.5417431Z CC [M] drivers/block/umem.mod.o
2025-10-02T16:31:09.5982477Z CC [M] drivers/block/virtio_blk.mod.o
2025-10-02T16:31:09.6497994Z CC [M] drivers/block/xen-blkback/xen-blkback.mod.o
2025-10-02T16:31:09.6681100Z CC [M] drivers/block/xen-blkfront.mod.o
2025-10-02T16:31:09.9735208Z CC [M] drivers/block/zram/zram.mod.o
2025-10-02T16:31:09.9800342Z CC [M] drivers/bluetooth/ath3k.mod.o
2025-10-02T16:31:10.0043029Z CC [M] drivers/bluetooth/bcm203x.mod.o
2025-10-02T16:31:10.0745884Z CC [M] drivers/bluetooth/bfusb.mod.o
2025-10-02T16:31:10.3760821Z CC [M] drivers/bluetooth/bpa10x.mod.o
2025-10-02T16:31:10.3761856Z CC [M] drivers/bluetooth/bluecard_cs.mod.o
2025-10-02T16:31:10.3925933Z CC [M] drivers/bluetooth/bt3c_cs.mod.o
2025-10-02T16:31:10.4534859Z CC [M] drivers/bluetooth/btbcm.mod.o
2025-10-02T16:31:10.7442551Z CC [M] drivers/bluetooth/btintel.mod.o
2025-10-02T16:31:10.7663669Z CC [M] drivers/bluetooth/btmrvl.mod.o
2025-10-02T16:31:10.7667837Z CC [M] drivers/bluetooth/btmrvl_sdio.mod.o
2025-10-02T16:31:10.8594970Z CC [M] drivers/bluetooth/btmtksdio.mod.o
2025-10-02T16:31:11.1101661Z CC [M] drivers/bluetooth/btmtkuart.mod.o
2025-10-02T16:31:11.1298961Z CC [M] drivers/bluetooth/btqca.mod.o
2025-10-02T16:31:11.1358830Z CC [M] drivers/bluetooth/btrsi.mod.o
2025-10-02T16:31:11.2185592Z CC [M] drivers/bluetooth/btrtl.mod.o
2025-10-02T16:31:11.4866611Z CC [M] drivers/bluetooth/btsdio.mod.o
2025-10-02T16:31:11.5201396Z CC [M] drivers/bluetooth/btusb.mod.o
2025-10-02T16:31:11.5336712Z CC [M] drivers/bluetooth/dtl1_cs.mod.o
2025-10-02T16:31:11.5734410Z CC [M] drivers/bluetooth/hci_nokia.mod.o
2025-10-02T16:31:11.8257160Z CC [M] drivers/bluetooth/hci_uart.mod.o
2025-10-02T16:31:11.8588086Z CC [M] drivers/bluetooth/hci_vhci.mod.o
2025-10-02T16:31:11.9430925Z CC [M] drivers/bus/mhi/host/mhi.mod.o
2025-10-02T16:31:11.9864586Z CC [M] drivers/cdrom/cdrom.mod.o
2025-10-02T16:31:12.2051262Z CC [M] drivers/char/agp/agpgart.mod.o
2025-10-02T16:31:12.2854783Z CC [M] drivers/char/agp/amd64-agp.mod.o
2025-10-02T16:31:12.3418604Z CC [M] drivers/char/agp/intel-agp.mod.o
2025-10-02T16:31:12.3789046Z CC [M] drivers/char/agp/intel-gtt.mod.o
2025-10-02T16:31:12.5903750Z CC [M] drivers/char/agp/sis-agp.mod.o
2025-10-02T16:31:12.7059272Z CC [M] drivers/char/agp/via-agp.mod.o
2025-10-02T16:31:12.7089921Z CC [M] drivers/char/applicom.mod.o
2025-10-02T16:31:12.7196715Z CC [M] drivers/char/hangcheck-timer.mod.o
2025-10-02T16:31:12.9601413Z CC [M] drivers/char/hw_random/amd-rng.mod.o
2025-10-02T16:31:13.0481799Z CC [M] drivers/char/hw_random/ba431-rng.mod.o
2025-10-02T16:31:13.0597460Z CC [M] drivers/char/hw_random/intel-rng.mod.o
2025-10-02T16:31:13.1974824Z CC [M] drivers/char/hw_random/rng-core.mod.o
2025-10-02T16:31:13.3621408Z CC [M] drivers/char/hw_random/timeriomem-rng.mod.o
2025-10-02T16:31:13.3670799Z CC [M] drivers/char/hw_random/via-rng.mod.o
2025-10-02T16:31:13.4442585Z CC [M] drivers/char/hw_random/virtio-rng.mod.o
2025-10-02T16:31:13.5767691Z CC [M] drivers/char/hw_random/xiphera-trng.mod.o
2025-10-02T16:31:13.6698108Z CC [M] drivers/char/ipmi/ipmb_dev_int.mod.o
2025-10-02T16:31:13.6797667Z CC [M] drivers/char/ipmi/ipmi_devintf.mod.o
2025-10-02T16:31:13.8739317Z CC [M] drivers/char/ipmi/ipmi_msghandler.mod.o
2025-10-02T16:31:13.9157839Z CC [M] drivers/char/ipmi/ipmi_poweroff.mod.o
2025-10-02T16:31:14.0338609Z CC [M] drivers/char/ipmi/ipmi_si.mod.o
2025-10-02T16:31:14.0725911Z CC [M] drivers/char/ipmi/ipmi_ssif.mod.o
2025-10-02T16:31:14.2073054Z CC [M] drivers/char/ipmi/ipmi_watchdog.mod.o
2025-10-02T16:31:14.3396989Z CC [M] drivers/char/lp.mod.o
2025-10-02T16:31:14.4052574Z CC [M] drivers/char/mwave/mwave.mod.o
2025-10-02T16:31:14.4922720Z CC [M] drivers/char/pcmcia/cm4000_cs.mod.o
2025-10-02T16:31:14.5852847Z CC [M] drivers/char/pcmcia/cm4040_cs.mod.o
2025-10-02T16:31:14.6825450Z CC [M] drivers/char/pcmcia/scr24x_cs.mod.o
2025-10-02T16:31:14.8335847Z CC [M] drivers/char/pcmcia/synclink_cs.mod.o
2025-10-02T16:31:14.8630414Z CC [M] drivers/char/ppdev.mod.o
2025-10-02T16:31:14.9086110Z CC [M] drivers/char/raw.mod.o
2025-10-02T16:31:15.0814376Z CC [M] drivers/char/tlclk.mod.o
2025-10-02T16:31:15.1937621Z CC [M] drivers/char/tpm/st33zp24/tpm_st33zp24.mod.o
2025-10-02T16:31:15.2328468Z CC [M] drivers/char/tpm/st33zp24/tpm_st33zp24_i2c.mod.o
2025-10-02T16:31:15.4114651Z CC [M] drivers/char/tpm/st33zp24/tpm_st33zp24_spi.mod.o
2025-10-02T16:31:15.5000270Z CC [M] drivers/char/tpm/tpm.mod.o
2025-10-02T16:31:15.5575664Z CC [M] drivers/char/tpm/tpm_atmel.mod.o
2025-10-02T16:31:15.5765703Z CC [M] drivers/char/tpm/tpm_crb.mod.o
2025-10-02T16:31:15.7698330Z CC [M] drivers/char/tpm/tpm_i2c_atmel.mod.o
2025-10-02T16:31:15.9218632Z CC [M] drivers/char/tpm/tpm_i2c_infineon.mod.o
2025-10-02T16:31:15.9251402Z CC [M] drivers/char/tpm/tpm_i2c_nuvoton.mod.o
2025-10-02T16:31:15.9385785Z CC [M] drivers/char/tpm/tpm_infineon.mod.o
2025-10-02T16:31:16.2715246Z CC [M] drivers/char/tpm/tpm_nsc.mod.o
2025-10-02T16:31:16.2753607Z CC [M] drivers/char/tpm/tpm_tis.mod.o
2025-10-02T16:31:16.3155465Z CC [M] drivers/char/tpm/tpm_tis_core.mod.o
2025-10-02T16:31:16.3170578Z CC [M] drivers/char/tpm/tpm_tis_spi.mod.o
2025-10-02T16:31:16.6709045Z CC [M] drivers/char/tpm/tpm_vtpm_proxy.mod.o
2025-10-02T16:31:16.6794108Z CC [M] drivers/char/tpm/xen-tpmfront.mod.o
2025-10-02T16:31:16.6802222Z CC [M] drivers/char/virtio_console.mod.o
2025-10-02T16:31:16.6889956Z CC [M] drivers/char/xillybus/xillybus_core.mod.o
2025-10-02T16:31:17.0310263Z CC [M] drivers/char/xillybus/xillybus_pcie.mod.o
2025-10-02T16:31:17.0468711Z CC [M] drivers/clk/clk-cdce706.mod.o
2025-10-02T16:31:17.0661219Z CC [M] drivers/clk/clk-cs2000-cp.mod.o
2025-10-02T16:31:17.1364765Z CC [M] drivers/clk/clk-max9485.mod.o
2025-10-02T16:31:17.3952797Z CC [M] drivers/clk/clk-palmas.mod.o
2025-10-02T16:31:17.4452252Z CC [M] drivers/clk/clk-pwm.mod.o
2025-10-02T16:31:17.4804079Z CC [M] drivers/clk/clk-s2mps11.mod.o
2025-10-02T16:31:17.5694440Z CC [M] drivers/clk/clk-si5341.mod.o
2025-10-02T16:31:17.7578229Z CC [M] drivers/clk/clk-si5351.mod.o
2025-10-02T16:31:17.7994503Z CC [M] drivers/clk/clk-si544.mod.o
2025-10-02T16:31:17.8935066Z CC [M] drivers/clk/clk-twl6040.mod.o
2025-10-02T16:31:17.9965896Z CC [M] drivers/clk/clk-wm831x.mod.o
2025-10-02T16:31:18.1175042Z CC [M] drivers/counter/counter.mod.o
2025-10-02T16:31:18.1453439Z CC [M] drivers/cpufreq/acpi-cpufreq.mod.o
2025-10-02T16:31:18.2318856Z CC [M] drivers/cpufreq/amd_freq_sensitivity.mod.o
2025-10-02T16:31:18.3980175Z CC [M] drivers/cpufreq/p4-clockmod.mod.o
2025-10-02T16:31:18.4380384Z CC [M] drivers/cpufreq/pcc-cpufreq.mod.o
2025-10-02T16:31:18.5846858Z CC [M] drivers/cpufreq/powernow-k8.mod.o
2025-10-02T16:31:18.5883773Z CC [M] drivers/cpufreq/speedstep-lib.mod.o
2025-10-02T16:31:18.7840759Z CC [M] drivers/cpuidle/cpuidle-haltpoll.mod.o
2025-10-02T16:31:18.8017802Z CC [M] drivers/crypto/amlogic/amlogic-gxl-crypto.mod.o
2025-10-02T16:31:18.8961971Z CC [M] drivers/crypto/atmel-ecc.mod.o
2025-10-02T16:31:19.0611152Z CC [M] drivers/crypto/atmel-i2c.mod.o
2025-10-02T16:31:19.1050759Z CC [M] drivers/crypto/atmel-sha204a.mod.o
2025-10-02T16:31:19.1816407Z CC [M] drivers/crypto/cavium/nitrox/n5pf.mod.o
2025-10-02T16:31:19.2967279Z CC [M] drivers/crypto/ccp/ccp-crypto.mod.o
2025-10-02T16:31:19.4100841Z CC [M] drivers/crypto/ccp/ccp.mod.o
2025-10-02T16:31:19.5167641Z CC [M] drivers/crypto/chelsio/chcr.mod.o
2025-10-02T16:31:19.5298414Z CC [M] drivers/crypto/inside-secure/crypto_safexcel.mod.o
2025-10-02T16:31:19.6125048Z CC [M] drivers/crypto/padlock-aes.mod.o
2025-10-02T16:31:19.8124952Z CC [M] drivers/crypto/padlock-sha.mod.o
2025-10-02T16:31:19.8671542Z CC [M] drivers/crypto/qat/qat_c3xxx/qat_c3xxx.mod.o
2025-10-02T16:31:19.8811301Z CC [M] drivers/crypto/qat/qat_c3xxxvf/qat_c3xxxvf.mod.o
2025-10-02T16:31:20.0354786Z CC [M] drivers/crypto/qat/qat_c62x/qat_c62x.mod.o
2025-10-02T16:31:20.1631067Z CC [M] drivers/crypto/qat/qat_c62xvf/qat_c62xvf.mod.o
2025-10-02T16:31:20.2511297Z CC [M] drivers/crypto/qat/qat_common/intel_qat.mod.o
2025-10-02T16:31:20.3079908Z CC [M] drivers/crypto/qat/qat_dh895xcc/qat_dh895xcc.mod.o
2025-10-02T16:31:20.4210251Z CC [M] drivers/crypto/qat/qat_dh895xccvf/qat_dh895xccvf.mod.o
2025-10-02T16:31:20.5681316Z CC [M] drivers/crypto/virtio/virtio_crypto.mod.o
2025-10-02T16:31:20.5993212Z CC [M] drivers/dax/device_dax.mod.o
2025-10-02T16:31:20.7113559Z CC [M] drivers/dax/hmem/dax_hmem.mod.o
2025-10-02T16:31:20.7618340Z CC [M] drivers/dax/kmem.mod.o
2025-10-02T16:31:20.8697864Z CC [M] drivers/dax/pmem/dax_pmem.mod.o
2025-10-02T16:31:21.0182691Z CC [M] drivers/dax/pmem/dax_pmem_compat.mod.o
2025-10-02T16:31:21.1298581Z CC [M] drivers/dax/pmem/dax_pmem_core.mod.o
2025-10-02T16:31:21.1945664Z CC [M] drivers/dca/dca.mod.o
2025-10-02T16:31:21.2368255Z CC [M] drivers/devfreq/governor_passive.mod.o
2025-10-02T16:31:21.3170715Z CC [M] drivers/devfreq/governor_performance.mod.o
2025-10-02T16:31:21.4908633Z CC [M] drivers/devfreq/governor_powersave.mod.o
2025-10-02T16:31:21.6010253Z CC [M] drivers/devfreq/governor_simpleondemand.mod.o
2025-10-02T16:31:21.6124466Z CC [M] drivers/devfreq/governor_userspace.mod.o
2025-10-02T16:31:21.6561229Z CC [M] drivers/dma/altera-msgdma.mod.o
2025-10-02T16:31:21.9185098Z CC [M] drivers/dma/dw-edma/dw-edma-pcie.mod.o
2025-10-02T16:31:21.9264462Z CC [M] drivers/dma/dw-edma/dw-edma.mod.o
2025-10-02T16:31:21.9926248Z CC [M] drivers/dma/dw/dw_dmac.mod.o
2025-10-02T16:31:22.0314021Z CC [M] drivers/dma/idma64.mod.o
2025-10-02T16:31:22.2119433Z CC [M] drivers/dma/idxd/idxd.mod.o
2025-10-02T16:31:22.3157028Z CC [M] drivers/dma/ioat/ioatdma.mod.o
2025-10-02T16:31:22.4260345Z CC [M] drivers/dma/plx_dma.mod.o
2025-10-02T16:31:22.4772292Z CC [M] drivers/dma/qcom/hdma.mod.o
2025-10-02T16:31:22.5162451Z CC [M] drivers/dma/qcom/hdma_mgmt.mod.o
2025-10-02T16:31:22.7631830Z CC [M] drivers/dma/sf-pdma/sf-pdma.mod.o
2025-10-02T16:31:22.7751583Z CC [M] drivers/edac/amd64_edac_mod.mod.o
2025-10-02T16:31:22.8784710Z CC [M] drivers/edac/e752x_edac.mod.o
2025-10-02T16:31:22.8916722Z CC [M] drivers/edac/edac_mce_amd.mod.o
2025-10-02T16:31:23.1076903Z CC [M] drivers/edac/i10nm_edac.mod.o
2025-10-02T16:31:23.1237216Z CC [M] drivers/edac/i3000_edac.mod.o
2025-10-02T16:31:23.1848287Z arch/x86/tools/insn_decoder_test: success: Decoded and checked 5968375 instructions
2025-10-02T16:31:23.1891769Z TEST posttest
2025-10-02T16:31:23.2210798Z CC [M] drivers/edac/i3200_edac.mod.o
2025-10-02T16:31:23.3643415Z arch/x86/tools/insn_sanity: Success: decoded and checked 1000000 random instructions with 0 errors (seed:0x55089680)
2025-10-02T16:31:23.3770684Z CC [M] drivers/edac/i5000_edac.mod.o
2025-10-02T16:31:23.4275142Z CC [M] drivers/edac/i5100_edac.mod.o
2025-10-02T16:31:23.4300706Z CC arch/x86/boot/a20.o
2025-10-02T16:31:23.4559646Z AS arch/x86/boot/bioscall.o
2025-10-02T16:31:23.5316889Z CC arch/x86/boot/cmdline.o
2025-10-02T16:31:23.5622422Z CC [M] drivers/edac/i5400_edac.mod.o
2025-10-02T16:31:23.5753128Z CC [M] drivers/edac/i7300_edac.mod.o
2025-10-02T16:31:23.6726937Z AS arch/x86/boot/copy.o
2025-10-02T16:31:23.6895499Z HOSTCC arch/x86/boot/mkcpustr
2025-10-02T16:31:23.7322657Z CC arch/x86/boot/cpuflags.o
2025-10-02T16:31:23.7431671Z CC arch/x86/boot/cpucheck.o
2025-10-02T16:31:23.8318499Z CC [M] drivers/edac/i7core_edac.mod.o
2025-10-02T16:31:23.8524945Z CC arch/x86/boot/early_serial_console.o
2025-10-02T16:31:23.8850810Z CC [M] drivers/edac/i82975x_edac.mod.o
2025-10-02T16:31:23.9284157Z CC arch/x86/boot/edd.o
2025-10-02T16:31:23.9392029Z CC [M] drivers/edac/ie31200_edac.mod.o
2025-10-02T16:31:24.0429729Z CC [M] drivers/edac/pnd2_edac.mod.o
2025-10-02T16:31:24.2021252Z CC arch/x86/boot/main.o
2025-10-02T16:31:24.2298886Z CC arch/x86/boot/memory.o
2025-10-02T16:31:24.2576307Z CC [M] drivers/edac/sb_edac.mod.o
2025-10-02T16:31:24.3174381Z LDS arch/x86/boot/compressed/vmlinux.lds
2025-10-02T16:31:24.3311574Z AS arch/x86/boot/compressed/kernel_info.o
2025-10-02T16:31:24.3458494Z CC [M] drivers/edac/skx_edac.mod.o
2025-10-02T16:31:24.3502868Z CC [M] drivers/edac/skx_edac_common.mod.o
2025-10-02T16:31:24.3661863Z CC [M] drivers/edac/x38_edac.mod.o
2025-10-02T16:31:24.4019918Z AS arch/x86/boot/compressed/head_64.o
2025-10-02T16:31:24.4945406Z VOFFSET arch/x86/boot/compressed/../voffset.h
2025-10-02T16:31:24.5739023Z CC arch/x86/boot/pm.o
2025-10-02T16:31:24.6282744Z CC arch/x86/boot/compressed/string.o
2025-10-02T16:31:24.6854746Z CC arch/x86/boot/compressed/cmdline.o
2025-10-02T16:31:24.7094826Z CC [M] drivers/extcon/extcon-adc-jack.mod.o
2025-10-02T16:31:24.7099189Z AS arch/x86/boot/pmjump.o
2025-10-02T16:31:24.7575417Z CC arch/x86/boot/compressed/error.o
2025-10-02T16:31:24.7653006Z CC arch/x86/boot/printf.o
2025-10-02T16:31:24.8889174Z OBJCOPY arch/x86/boot/compressed/vmlinux.bin
2025-10-02T16:31:25.0163361Z RELOCS arch/x86/boot/compressed/vmlinux.relocs
2025-10-02T16:31:25.0199834Z CC [M] drivers/extcon/extcon-arizona.mod.o
2025-10-02T16:31:25.0429922Z CC arch/x86/boot/regs.o
2025-10-02T16:31:25.1608192Z HOSTCC arch/x86/boot/compressed/mkpiggy
2025-10-02T16:31:25.1659150Z CC [M] drivers/extcon/extcon-axp288.mod.o
2025-10-02T16:31:25.1777623Z CC arch/x86/boot/string.o
2025-10-02T16:31:25.2623926Z CC arch/x86/boot/tty.o
2025-10-02T16:31:25.3381775Z CC arch/x86/boot/compressed/cpuflags.o
2025-10-02T16:31:25.3438773Z CC [M] drivers/extcon/extcon-fsa9480.mod.o
2025-10-02T16:31:25.3607080Z CC [M] drivers/extcon/extcon-gpio.mod.o
2025-10-02T16:31:25.4103827Z CC arch/x86/boot/compressed/early_serial_console.o
2025-10-02T16:31:25.4444765Z CC [M] drivers/extcon/extcon-intel-cht-wc.mod.o
2025-10-02T16:31:25.6634746Z CC arch/x86/boot/compressed/kaslr.o
2025-10-02T16:31:25.6791923Z CC arch/x86/boot/compressed/ident_map_64.o
2025-10-02T16:31:25.7308271Z CC arch/x86/boot/video.o
2025-10-02T16:31:25.7387045Z CC [M] drivers/extcon/extcon-intel-int3496.mod.o
2025-10-02T16:31:25.8383199Z CC [M] drivers/extcon/extcon-intel-mrfld.mod.o
2025-10-02T16:31:25.9873031Z CC arch/x86/boot/compressed/idt_64.o
2025-10-02T16:31:26.1135075Z AS arch/x86/boot/compressed/idt_handlers_64.o
2025-10-02T16:31:26.1661941Z CC [M] drivers/extcon/extcon-max14577.mod.o
2025-10-02T16:31:26.2011631Z CC arch/x86/boot/video-mode.o
2025-10-02T16:31:26.3418796Z AS arch/x86/boot/compressed/mem_encrypt.o
2025-10-02T16:31:26.3933562Z CC [M] drivers/extcon/extcon-max3355.mod.o
2025-10-02T16:31:26.3951251Z CC [M] drivers/extcon/extcon-max77693.mod.o
2025-10-02T16:31:26.4067486Z CC [M] drivers/extcon/extcon-max77843.mod.o
2025-10-02T16:31:26.5314365Z CC arch/x86/boot/compressed/pgtable_64.o
2025-10-02T16:31:26.5661380Z CC arch/x86/boot/version.o
2025-10-02T16:31:26.6764397Z CC [M] drivers/extcon/extcon-max8997.mod.o
2025-10-02T16:31:26.6904397Z CC arch/x86/boot/video-vga.o
2025-10-02T16:31:26.7046383Z CC [M] drivers/extcon/extcon-palmas.mod.o
2025-10-02T16:31:26.7864013Z CC arch/x86/boot/compressed/sev-es.o
2025-10-02T16:31:26.8149987Z CC arch/x86/boot/video-vesa.o
2025-10-02T16:31:27.0142704Z CC arch/x86/boot/compressed/acpi.o
2025-10-02T16:31:27.0411071Z CC [M] drivers/extcon/extcon-ptn5150.mod.o
2025-10-02T16:31:27.0562191Z CC [M] drivers/extcon/extcon-rt8973a.mod.o
2025-10-02T16:31:27.3186882Z AS arch/x86/boot/compressed/efi_thunk_64.o
2025-10-02T16:31:27.3687607Z CC arch/x86/boot/video-bios.o
2025-10-02T16:31:27.3833327Z CC [M] drivers/extcon/extcon-sm5502.mod.o
2025-10-02T16:31:27.4740143Z CC arch/x86/boot/compressed/misc.o
2025-10-02T16:31:27.5820842Z HOSTCC arch/x86/boot/tools/build
2025-10-02T16:31:27.6982753Z CC [M] drivers/extcon/extcon-usb-gpio.mod.o
2025-10-02T16:31:27.7268911Z CPUSTR arch/x86/boot/cpustr.h
2025-10-02T16:31:27.7338582Z ZSTD22 arch/x86/boot/compressed/vmlinux.bin.zst
2025-10-02T16:31:27.8479975Z CC [M] drivers/extcon/extcon-usbc-cros-ec.mod.o
2025-10-02T16:31:27.8813269Z CC [M] drivers/firewire/firewire-core.mod.o
2025-10-02T16:31:27.9991986Z CC arch/x86/boot/cpu.o
2025-10-02T16:31:28.2007421Z CC [M] drivers/firewire/firewire-net.mod.o
2025-10-02T16:31:28.2056478Z CC [M] drivers/firewire/firewire-ohci.mod.o
2025-10-02T16:31:28.2126851Z CC [M] drivers/firewire/firewire-sbp2.mod.o
2025-10-02T16:31:28.5661251Z CC [M] drivers/firewire/nosy.mod.o
2025-10-02T16:31:28.5861142Z CC [M] drivers/firmware/edd.mod.o
2025-10-02T16:31:28.5927269Z CC [M] drivers/firmware/efi/capsule-loader.mod.o
2025-10-02T16:31:28.8974051Z CC [M] drivers/firmware/efi/efibc.mod.o
2025-10-02T16:31:28.9751097Z CC [M] drivers/firmware/google/coreboot_table.mod.o
2025-10-02T16:31:29.0055534Z CC [M] drivers/firmware/google/framebuffer-coreboot.mod.o
2025-10-02T16:31:29.2901191Z CC [M] drivers/firmware/google/memconsole-coreboot.mod.o
2025-10-02T16:31:29.3141041Z CC [M] drivers/firmware/google/memconsole.mod.o
2025-10-02T16:31:29.4248355Z CC [M] drivers/firmware/google/vpd-sysfs.mod.o
2025-10-02T16:31:29.6592441Z CC [M] drivers/firmware/iscsi_ibft.mod.o
2025-10-02T16:31:29.7401266Z CC [M] drivers/firmware/qemu_fw_cfg.mod.o
2025-10-02T16:31:29.7702500Z CC [M] drivers/fpga/altera-cvp.mod.o
2025-10-02T16:31:30.0447165Z CC [M] drivers/fpga/altera-freeze-bridge.mod.o
2025-10-02T16:31:30.0985328Z CC [M] drivers/fpga/altera-pr-ip-core.mod.o
2025-10-02T16:31:30.2560082Z CC [M] drivers/fpga/altera-ps-spi.mod.o
2025-10-02T16:31:30.4942985Z CC [M] drivers/fpga/dfl-afu.mod.o
2025-10-02T16:31:30.5277504Z CC [M] drivers/fpga/dfl-fme-br.mod.o
2025-10-02T16:31:30.6301547Z CC [M] drivers/fpga/dfl-fme-mgr.mod.o
2025-10-02T16:31:30.8391908Z CC [M] drivers/fpga/dfl-fme-region.mod.o
2025-10-02T16:31:31.0111775Z CC [M] drivers/fpga/dfl-fme.mod.o
2025-10-02T16:31:31.0307964Z CC [M] drivers/fpga/dfl-pci.mod.o
2025-10-02T16:31:31.1921627Z CC [M] drivers/fpga/dfl.mod.o
2025-10-02T16:31:31.3023056Z CC [M] drivers/fpga/fpga-bridge.mod.o
2025-10-02T16:31:31.3388125Z CC [M] drivers/fpga/fpga-mgr.mod.o
2025-10-02T16:31:31.4605476Z CC [M] drivers/fpga/fpga-region.mod.o
2025-10-02T16:31:31.4769343Z CC [M] drivers/fpga/machxo2-spi.mod.o
2025-10-02T16:31:31.6587811Z CC [M] drivers/fpga/xilinx-pr-decoupler.mod.o
2025-10-02T16:31:31.6911816Z CC [M] drivers/fpga/xilinx-spi.mod.o
2025-10-02T16:31:31.7704403Z CC [M] drivers/gnss/gnss-mtk.mod.o
2025-10-02T16:31:31.8687349Z CC [M] drivers/gnss/gnss-serial.mod.o
2025-10-02T16:31:32.0153218Z CC [M] drivers/gnss/gnss-sirf.mod.o
2025-10-02T16:31:32.0861710Z CC [M] drivers/gnss/gnss-ubx.mod.o
2025-10-02T16:31:32.1132619Z CC [M] drivers/gnss/gnss.mod.o
2025-10-02T16:31:32.2140841Z CC [M] drivers/gpio/gpio-adp5520.mod.o
2025-10-02T16:31:32.3597625Z CC [M] drivers/gpio/gpio-adp5588.mod.o
2025-10-02T16:31:32.3915708Z CC [M] drivers/gpio/gpio-aggregator.mod.o
2025-10-02T16:31:32.4861986Z CC [M] drivers/gpio/gpio-amd-fch.mod.o
2025-10-02T16:31:32.5151025Z CC [M] drivers/gpio/gpio-amd8111.mod.o
2025-10-02T16:31:32.6814870Z CC [M] drivers/gpio/gpio-amdpt.mod.o
2025-10-02T16:31:32.7660841Z CC [M] drivers/gpio/gpio-arizona.mod.o
2025-10-02T16:31:32.8094774Z CC [M] drivers/gpio/gpio-bd9571mwv.mod.o
2025-10-02T16:31:32.9554147Z CC [M] drivers/gpio/gpio-crystalcove.mod.o
2025-10-02T16:31:32.9839350Z CC [M] drivers/gpio/gpio-da9052.mod.o
2025-10-02T16:31:33.0739264Z CC [M] drivers/gpio/gpio-da9055.mod.o
2025-10-02T16:31:33.1867908Z CC [M] drivers/gpio/gpio-dln2.mod.o
2025-10-02T16:31:33.2578029Z CC [M] drivers/gpio/gpio-dwapb.mod.o
2025-10-02T16:31:33.4438134Z CC [M] drivers/gpio/gpio-exar.mod.o
2025-10-02T16:31:33.4840711Z CC [M] drivers/gpio/gpio-f7188x.mod.o
2025-10-02T16:31:33.5361158Z CC [M] drivers/gpio/gpio-generic.mod.o
2025-10-02T16:31:33.5382230Z CC [M] drivers/gpio/gpio-ich.mod.o
2025-10-02T16:31:33.8072863Z CC [M] drivers/gpio/gpio-it87.mod.o
2025-10-02T16:31:33.8612435Z CC [M] drivers/gpio/gpio-janz-ttl.mod.o
2025-10-02T16:31:33.8767848Z CC [M] drivers/gpio/gpio-kempld.mod.o
2025-10-02T16:31:33.8921100Z CC [M] drivers/gpio/gpio-lp3943.mod.o
2025-10-02T16:31:34.1633315Z CC [M] drivers/gpio/gpio-lp873x.mod.o
2025-10-02T16:31:34.1774642Z CC [M] drivers/gpio/gpio-madera.mod.o
2025-10-02T16:31:34.2107998Z CC [M] drivers/gpio/gpio-max3191x.mod.o
2025-10-02T16:31:34.3021231Z CC [M] drivers/gpio/gpio-max7300.mod.o
2025-10-02T16:31:34.4764275Z CC [M] drivers/gpio/gpio-max7301.mod.o
2025-10-02T16:31:34.5299895Z CC [M] drivers/gpio/gpio-max730x.mod.o
2025-10-02T16:31:34.5514679Z CC [M] drivers/gpio/gpio-max732x.mod.o
2025-10-02T16:31:34.7184281Z CC [M] drivers/gpio/gpio-mb86s7x.mod.o
2025-10-02T16:31:34.7910985Z CC [M] drivers/gpio/gpio-mc33880.mod.o
2025-10-02T16:31:34.9290567Z CC [M] drivers/gpio/gpio-menz127.mod.o
2025-10-02T16:31:34.9850418Z CC [M] drivers/gpio/gpio-ml-ioh.mod.o
2025-10-02T16:31:35.0671105Z CC [M] drivers/gpio/gpio-mockup.mod.o
2025-10-02T16:31:35.2311391Z CC [M] drivers/gpio/gpio-pca953x.mod.o
2025-10-02T16:31:35.2613022Z CC [M] drivers/gpio/gpio-pca9570.mod.o
2025-10-02T16:31:35.4416178Z CC [M] drivers/gpio/gpio-pcf857x.mod.o
2025-10-02T16:31:35.4530097Z CC [M] drivers/gpio/gpio-pci-idio-16.mod.o
2025-10-02T16:31:35.5590226Z CC [M] drivers/gpio/gpio-pcie-idio-24.mod.o
2025-10-02T16:31:35.5790061Z CC [M] drivers/gpio/gpio-pisosr.mod.o
2025-10-02T16:31:35.7425508Z CC [M] drivers/gpio/gpio-rdc321x.mod.o
2025-10-02T16:31:35.8426118Z CC [M] drivers/gpio/gpio-sch.mod.o
2025-10-02T16:31:35.8874534Z CC [M] drivers/gpio/gpio-sch311x.mod.o
2025-10-02T16:31:35.9710775Z CC [M] drivers/gpio/gpio-siox.mod.o
2025-10-02T16:31:36.0849826Z CC [M] drivers/gpio/gpio-tpic2810.mod.o
2025-10-02T16:31:36.1937662Z CC [M] drivers/gpio/gpio-tps65086.mod.o
2025-10-02T16:31:36.1944615Z CC [M] drivers/gpio/gpio-tps65912.mod.o
2025-10-02T16:31:36.3216886Z CC [M] drivers/gpio/gpio-tqmx86.mod.o
2025-10-02T16:31:36.4818223Z CC [M] drivers/gpio/gpio-twl4030.mod.o
2025-10-02T16:31:36.5203433Z CC [M] drivers/gpio/gpio-twl6040.mod.o
2025-10-02T16:31:36.5504998Z CC [M] drivers/gpio/gpio-ucb1400.mod.o
2025-10-02T16:31:36.6799363Z CC [M] drivers/gpio/gpio-viperboard.mod.o
2025-10-02T16:31:36.7733515Z CC [M] drivers/gpio/gpio-vx855.mod.o
2025-10-02T16:31:36.9121104Z CC [M] drivers/gpio/gpio-wcove.mod.o
2025-10-02T16:31:36.9558489Z CC [M] drivers/gpio/gpio-winbond.mod.o
2025-10-02T16:31:37.0276403Z CC [M] drivers/gpio/gpio-wm831x.mod.o
2025-10-02T16:31:37.0670727Z CC [M] drivers/gpio/gpio-wm8350.mod.o
2025-10-02T16:31:37.2234653Z CC [M] drivers/gpio/gpio-wm8994.mod.o
2025-10-02T16:31:37.3622923Z CC [M] drivers/gpio/gpio-ws16c48.mod.o
2025-10-02T16:31:37.3863148Z CC [M] drivers/gpio/gpio-xilinx.mod.o
2025-10-02T16:31:37.3993735Z CC [M] drivers/gpio/gpio-xra1403.mod.o
2025-10-02T16:31:37.5722743Z CC [M] drivers/gpu/drm/amd/amdgpu/amdgpu.mod.o
2025-10-02T16:31:37.6694796Z CC [M] drivers/gpu/drm/ast/ast.mod.o
2025-10-02T16:31:37.7245353Z CC [M] drivers/gpu/drm/bochs/bochs-drm.mod.o
2025-10-02T16:31:37.8819199Z CC [M] drivers/gpu/drm/bridge/analogix/analogix-anx78xx.mod.o
2025-10-02T16:31:37.9576805Z CC [M] drivers/gpu/drm/bridge/analogix/analogix_dp.mod.o
2025-10-02T16:31:37.9671719Z CC [M] drivers/gpu/drm/drm.mod.o
2025-10-02T16:31:38.0541257Z CC [M] drivers/gpu/drm/drm_kms_helper.mod.o
2025-10-02T16:31:38.1710657Z CC [M] drivers/gpu/drm/drm_mipi_dbi.mod.o
2025-10-02T16:31:38.2501561Z CC [M] drivers/gpu/drm/drm_ttm_helper.mod.o
2025-10-02T16:31:38.4187738Z CC [M] drivers/gpu/drm/drm_vram_helper.mod.o
2025-10-02T16:31:38.4231304Z CC [M] drivers/gpu/drm/gma500/gma500_gfx.mod.o
2025-10-02T16:31:38.5136377Z CC [M] drivers/gpu/drm/i2c/ch7006.mod.o
2025-10-02T16:31:38.5561583Z CC [M] drivers/gpu/drm/i2c/sil164.mod.o
2025-10-02T16:31:38.7046234Z CC [M] drivers/gpu/drm/i2c/tda9950.mod.o
2025-10-02T16:31:38.7987981Z CC [M] drivers/gpu/drm/i2c/tda998x.mod.o
2025-10-02T16:31:38.8070097Z CC [M] drivers/gpu/drm/i915/gvt/kvmgt.mod.o
2025-10-02T16:31:38.9339065Z CC [M] drivers/gpu/drm/i915/i915.mod.o
2025-10-02T16:31:39.0521173Z CC [M] drivers/gpu/drm/mgag200/mgag200.mod.o
2025-10-02T16:31:39.1196109Z CC [M] drivers/gpu/drm/nouveau/nouveau.mod.o
2025-10-02T16:31:39.1537051Z CC [M] drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.mod.o
2025-10-02T16:31:39.3731984Z CC [M] drivers/gpu/drm/qxl/qxl.mod.o
2025-10-02T16:31:39.4208320Z CC [M] drivers/gpu/drm/radeon/radeon.mod.o
2025-10-02T16:31:39.4342668Z CC [M] drivers/gpu/drm/scheduler/gpu-sched.mod.o
2025-10-02T16:31:39.4573130Z CC [M] drivers/gpu/drm/tiny/cirrus.mod.o
2025-10-02T16:31:39.7281436Z CC [M] drivers/gpu/drm/tiny/gm12u320.mod.o
2025-10-02T16:31:39.7525663Z CC [M] drivers/gpu/drm/tiny/hx8357d.mod.o
2025-10-02T16:31:39.8021159Z CC [M] drivers/gpu/drm/tiny/ili9225.mod.o
2025-10-02T16:31:39.8553916Z CC [M] drivers/gpu/drm/tiny/ili9341.mod.o
2025-10-02T16:31:40.0866146Z CC [M] drivers/gpu/drm/tiny/ili9486.mod.o
2025-10-02T16:31:40.1683811Z CC [M] drivers/gpu/drm/tiny/mi0283qt.mod.o
2025-10-02T16:31:40.1848277Z CC [M] drivers/gpu/drm/tiny/repaper.mod.o
2025-10-02T16:31:40.2004691Z CC [M] drivers/gpu/drm/tiny/st7586.mod.o
2025-10-02T16:31:40.3981722Z CC [M] drivers/gpu/drm/tiny/st7735r.mod.o
2025-10-02T16:31:40.4667345Z CC [M] drivers/gpu/drm/ttm/ttm.mod.o
2025-10-02T16:31:40.5964358Z CC [M] drivers/gpu/drm/udl/udl.mod.o
2025-10-02T16:31:40.6056650Z CC [M] drivers/gpu/drm/vboxvideo/vboxvideo.mod.o
2025-10-02T16:31:40.7761022Z CC [M] drivers/gpu/drm/vgem/vgem.mod.o
2025-10-02T16:31:40.8254755Z CC [M] drivers/gpu/drm/virtio/virtio-gpu.mod.o
2025-10-02T16:31:40.8988561Z CC [M] drivers/gpu/drm/vkms/vkms.mod.o
2025-10-02T16:31:40.9796353Z CC [M] drivers/gpu/drm/vmwgfx/vmwgfx.mod.o
2025-10-02T16:31:41.1510681Z CC [M] drivers/gpu/drm/xen/drm_xen_front.mod.o
2025-10-02T16:31:41.1951598Z CC [M] drivers/hid/hid-a4tech.mod.o
2025-10-02T16:31:41.2588931Z CC [M] drivers/hid/hid-accutouch.mod.o
2025-10-02T16:31:41.4672486Z CC [M] drivers/hid/hid-alps.mod.o
2025-10-02T16:31:41.4821842Z CC [M] drivers/hid/hid-apple.mod.o
2025-10-02T16:31:41.5569902Z CC [M] drivers/hid/hid-appleir.mod.o
2025-10-02T16:31:41.6114731Z CC [M] drivers/hid/hid-asus.mod.o
2025-10-02T16:31:41.7644136Z CC [M] drivers/hid/hid-aureal.mod.o
2025-10-02T16:31:41.8798652Z CC [M] drivers/hid/hid-axff.mod.o
2025-10-02T16:31:41.9497853Z CC [M] drivers/hid/hid-belkin.mod.o
2025-10-02T16:31:41.9687970Z CC [M] drivers/hid/hid-betopff.mod.o
2025-10-02T16:31:42.0856662Z CC [M] drivers/hid/hid-bigbenff.mod.o
2025-10-02T16:31:42.2297100Z CC [M] drivers/hid/hid-cherry.mod.o
2025-10-02T16:31:42.2580032Z CC [M] drivers/hid/hid-chicony.mod.o
2025-10-02T16:31:42.3260589Z CC [M] drivers/hid/hid-cmedia.mod.o
2025-10-02T16:31:42.4628435Z CC [M] drivers/hid/hid-corsair.mod.o
2025-10-02T16:31:42.5474974Z CC [M] drivers/hid/hid-cougar.mod.o
2025-10-02T16:31:42.5828908Z CC [M] drivers/hid/hid-cp2112.mod.o
2025-10-02T16:31:42.8228513Z CC [M] drivers/hid/hid-creative-sb0540.mod.o
2025-10-02T16:31:42.8294188Z CC [M] drivers/hid/hid-cypress.mod.o
2025-10-02T16:31:42.8517878Z CC [M] drivers/hid/hid-dr.mod.o
2025-10-02T16:31:42.9021572Z CC [M] drivers/hid/hid-elan.mod.o
2025-10-02T16:31:43.1373442Z CC [M] drivers/hid/hid-elecom.mod.o
2025-10-02T16:31:43.1806916Z CC [M] drivers/hid/hid-elo.mod.o
2025-10-02T16:31:43.1946165Z CC [M] drivers/hid/hid-emsff.mod.o
2025-10-02T16:31:43.2352767Z CC [M] drivers/hid/hid-ezkey.mod.o
2025-10-02T16:31:43.5282657Z CC [M] drivers/hid/hid-gaff.mod.o
2025-10-02T16:31:43.5421344Z CC [M] drivers/hid/hid-gembird.mod.o
2025-10-02T16:31:43.5675634Z CC [M] drivers/hid/hid-gfrm.mod.o
2025-10-02T16:31:43.6124770Z CC [M] drivers/hid/hid-glorious.mod.o
2025-10-02T16:31:43.8497331Z CC [M] drivers/hid/hid-google-hammer.mod.o
2025-10-02T16:31:43.8692890Z CC [M] drivers/hid/hid-gt683r.mod.o
2025-10-02T16:31:43.9260315Z CC [M] drivers/hid/hid-gyration.mod.o
2025-10-02T16:31:44.0346386Z CC [M] drivers/hid/hid-holtek-kbd.mod.o
2025-10-02T16:31:44.1533393Z CC [M] drivers/hid/hid-holtek-mouse.mod.o
2025-10-02T16:31:44.1877145Z CC [M] drivers/hid/hid-holtekff.mod.o
2025-10-02T16:31:44.3689450Z CC [M] drivers/hid/hid-hyperv.mod.o
2025-10-02T16:31:44.3819305Z CC [M] drivers/hid/hid-icade.mod.o
2025-10-02T16:31:44.4644932Z CC [M] drivers/hid/hid-ite.mod.o
2025-10-02T16:31:44.5037409Z CC [M] drivers/hid/hid-jabra.mod.o
2025-10-02T16:31:44.7017986Z CC [M] drivers/hid/hid-kensington.mod.o
2025-10-02T16:31:44.7481174Z CC [M] drivers/hid/hid-keytouch.mod.o
2025-10-02T16:31:44.7932243Z CC [M] drivers/hid/hid-kye.mod.o
2025-10-02T16:31:44.8001694Z CC [M] drivers/hid/hid-lcpower.mod.o
2025-10-02T16:31:45.0781139Z CC [M] drivers/hid/hid-led.mod.o
2025-10-02T16:31:45.0842692Z CC [M] drivers/hid/hid-lenovo.mod.o
2025-10-02T16:31:45.1190478Z CC [M] drivers/hid/hid-logitech-dj.mod.o
2025-10-02T16:31:45.1209371Z CC [M] drivers/hid/hid-lg-g15.mod.o
2025-10-02T16:31:45.4199279Z CC [M] drivers/hid/hid-logitech-hidpp.mod.o
2025-10-02T16:31:45.4347085Z CC [M] drivers/hid/hid-logitech.mod.o
2025-10-02T16:31:45.4481159Z CC [M] drivers/hid/hid-macally.mod.o
2025-10-02T16:31:45.5518966Z CC [M] drivers/hid/hid-magicmouse.mod.o
2025-10-02T16:31:45.7096003Z CC [M] drivers/hid/hid-maltron.mod.o
2025-10-02T16:31:45.8258072Z CC [M] drivers/hid/hid-mcp2221.mod.o
2025-10-02T16:31:45.8353859Z CC [M] drivers/hid/hid-mf.mod.o
2025-10-02T16:31:45.8526176Z CC [M] drivers/hid/hid-microsoft.mod.o
2025-10-02T16:31:46.0765064Z CC [M] drivers/hid/hid-monterey.mod.o
2025-10-02T16:31:46.1617599Z CC [M] drivers/hid/hid-multitouch.mod.o
2025-10-02T16:31:46.1824880Z CC [M] drivers/hid/hid-nti.mod.o
2025-10-02T16:31:46.2373822Z CC [M] drivers/hid/hid-ntrig.mod.o
2025-10-02T16:31:46.4500447Z CC [M] drivers/hid/hid-ortek.mod.o
2025-10-02T16:31:46.5018260Z CC [M] drivers/hid/hid-penmount.mod.o
2025-10-02T16:31:46.5455091Z CC [M] drivers/hid/hid-petalynx.mod.o
2025-10-02T16:31:46.6181240Z CC [M] drivers/hid/hid-picolcd.mod.o
2025-10-02T16:31:46.7636330Z CC [M] drivers/hid/hid-pl.mod.o
2025-10-02T16:31:46.8543719Z CC [M] drivers/hid/hid-plantronics.mod.o
2025-10-02T16:31:46.9064378Z CC [M] drivers/hid/hid-primax.mod.o
2025-10-02T16:31:46.9834629Z CC [M] drivers/hid/hid-prodikeys.mod.o
2025-10-02T16:31:47.1754445Z CC [M] drivers/hid/hid-redragon.mod.o
2025-10-02T16:31:47.1769830Z CC [M] drivers/hid/hid-retrode.mod.o
2025-10-02T16:31:47.2654619Z CC [M] drivers/hid/hid-rmi.mod.o
2025-10-02T16:31:47.3915927Z CC [M] drivers/hid/hid-roccat-arvo.mod.o
2025-10-02T16:31:47.4339708Z CC [M] drivers/hid/hid-roccat-common.mod.o
2025-10-02T16:31:47.5782512Z CC [M] drivers/hid/hid-roccat-isku.mod.o
2025-10-02T16:31:47.6566517Z CC [M] drivers/hid/hid-roccat-kone.mod.o
2025-10-02T16:31:47.7190536Z CC [M] drivers/hid/hid-roccat-koneplus.mod.o
2025-10-02T16:31:47.7642722Z CC [M] drivers/hid/hid-roccat-konepure.mod.o
2025-10-02T16:31:47.9885457Z CC [M] drivers/hid/hid-roccat-kovaplus.mod.o
2025-10-02T16:31:48.0138905Z CC [M] drivers/hid/hid-roccat-lua.mod.o
2025-10-02T16:31:48.0542509Z CC [M] drivers/hid/hid-roccat-pyra.mod.o
2025-10-02T16:31:48.1638869Z CC [M] drivers/hid/hid-roccat-ryos.mod.o
2025-10-02T16:31:48.3270658Z CC [M] drivers/hid/hid-roccat-savu.mod.o
2025-10-02T16:31:48.4244887Z CC [M] drivers/hid/hid-roccat.mod.o
2025-10-02T16:31:48.4292028Z CC [M] drivers/hid/hid-saitek.mod.o
2025-10-02T16:31:48.5238438Z CC [M] drivers/hid/hid-samsung.mod.o
2025-10-02T16:31:48.6883210Z CC [M] drivers/hid/hid-sensor-hub.mod.o
2025-10-02T16:31:48.7506064Z CC [M] drivers/hid/hid-sjoy.mod.o
2025-10-02T16:31:48.8249879Z CC [M] drivers/hid/hid-sony.mod.o
2025-10-02T16:31:48.8441231Z CC [M] drivers/hid/hid-speedlink.mod.o
2025-10-02T16:31:49.0320527Z CC [M] drivers/hid/hid-steam.mod.o
2025-10-02T16:31:49.1343011Z CC [M] drivers/hid/hid-steelseries.mod.o
2025-10-02T16:31:49.1694134Z CC [M] drivers/hid/hid-sunplus.mod.o
2025-10-02T16:31:49.1800653Z CC [M] drivers/hid/hid-tivo.mod.o
2025-10-02T16:31:49.3652153Z CC [M] drivers/hid/hid-tmff.mod.o
2025-10-02T16:31:49.4361298Z CC [M] drivers/hid/hid-topseed.mod.o
2025-10-02T16:31:49.5837832Z CC [M] drivers/hid/hid-twinhan.mod.o
2025-10-02T16:31:49.5919076Z CC [M] drivers/hid/hid-u2fzero.mod.o
2025-10-02T16:31:49.6874286Z CC [M] drivers/hid/hid-uclogic.mod.o
2025-10-02T16:31:49.7695467Z CC [M] drivers/hid/hid-udraw-ps3.mod.o
2025-10-02T16:31:49.9384759Z CC [M] drivers/hid/hid-vivaldi.mod.o
2025-10-02T16:31:49.9385714Z CC [M] drivers/hid/hid-viewsonic.mod.o
2025-10-02T16:31:50.0978966Z CC [M] drivers/hid/hid-waltop.mod.o
2025-10-02T16:31:50.1851174Z CC [M] drivers/hid/hid-wiimote.mod.o
2025-10-02T16:31:50.2112078Z CC [M] drivers/hid/hid-xinmo.mod.o
2025-10-02T16:31:50.3279185Z CC [M] drivers/hid/hid-zpff.mod.o
2025-10-02T16:31:50.4679822Z CC [M] drivers/hid/hid-zydacron.mod.o
2025-10-02T16:31:50.4826769Z CC [M] drivers/hid/i2c-hid/i2c-hid.mod.o
2025-10-02T16:31:50.6394128Z CC [M] drivers/hid/intel-ish-hid/intel-ish-ipc.mod.o
2025-10-02T16:31:50.7287402Z CC [M] drivers/hid/intel-ish-hid/intel-ishtp-hid.mod.o
2025-10-02T16:31:50.7345615Z CC [M] drivers/hid/intel-ish-hid/intel-ishtp-loader.mod.o
2025-10-02T16:31:50.8033602Z MKPIGGY arch/x86/boot/compressed/piggy.S
2025-10-02T16:31:50.8150736Z AS arch/x86/boot/compressed/piggy.o
2025-10-02T16:31:50.9066548Z CC [M] drivers/hid/intel-ish-hid/intel-ishtp.mod.o
2025-10-02T16:31:50.9158002Z LD arch/x86/boot/compressed/vmlinux
2025-10-02T16:31:50.9760958Z ZOFFSET arch/x86/boot/zoffset.h
2025-10-02T16:31:50.9949064Z OBJCOPY arch/x86/boot/vmlinux.bin
2025-10-02T16:31:51.0161784Z CC [M] drivers/hid/uhid.mod.o
2025-10-02T16:31:51.0211925Z AS arch/x86/boot/header.o
2025-10-02T16:31:51.0354280Z CC [M] drivers/hid/usbhid/usbhid.mod.o
2025-10-02T16:31:51.0822529Z CC [M] drivers/hid/wacom.mod.o
2025-10-02T16:31:51.0942940Z LD arch/x86/boot/setup.elf
2025-10-02T16:31:51.1238731Z OBJCOPY arch/x86/boot/setup.bin
2025-10-02T16:31:51.1450335Z BUILD arch/x86/boot/bzImage
2025-10-02T16:31:51.2012113Z CC [M] drivers/hv/hv_balloon.mod.o
2025-10-02T16:31:51.2384326Z Kernel: arch/x86/boot/bzImage is ready (#1)
2025-10-02T16:31:51.2522373Z CC [M] drivers/hv/hv_utils.mod.o
2025-10-02T16:31:51.3183533Z CC [M] drivers/hv/hv_vmbus.mod.o
2025-10-02T16:31:51.3716209Z CC [M] drivers/hwmon/abituguru.mod.o
2025-10-02T16:31:51.4933365Z CC [M] drivers/hwmon/abituguru3.mod.o
2025-10-02T16:31:51.5260653Z CC [M] drivers/hwmon/acpi_power_meter.mod.o
2025-10-02T16:31:51.6389996Z CC [M] drivers/hwmon/ad7314.mod.o
2025-10-02T16:31:51.6844077Z CC [M] drivers/hwmon/ad7414.mod.o
2025-10-02T16:31:51.7176563Z CC [M] drivers/hwmon/ad7418.mod.o
2025-10-02T16:31:51.8684433Z CC [M] drivers/hwmon/adc128d818.mod.o
2025-10-02T16:31:51.8696997Z CC [M] drivers/hwmon/adcxx.mod.o
2025-10-02T16:31:52.0164057Z CC [M] drivers/hwmon/adm1021.mod.o
2025-10-02T16:31:52.0403484Z CC [M] drivers/hwmon/adm1025.mod.o
2025-10-02T16:31:52.0856212Z CC [M] drivers/hwmon/adm1026.mod.o
2025-10-02T16:31:52.2273303Z CC [M] drivers/hwmon/adm1029.mod.o
2025-10-02T16:31:52.2501266Z CC [M] drivers/hwmon/adm1031.mod.o
2025-10-02T16:31:52.3291902Z CC [M] drivers/hwmon/adm1177.mod.o
2025-10-02T16:31:52.3882857Z CC [M] drivers/hwmon/adm9240.mod.o
2025-10-02T16:31:52.4770826Z CC [M] drivers/hwmon/ads7828.mod.o
2025-10-02T16:31:52.5798842Z CC [M] drivers/hwmon/ads7871.mod.o
2025-10-02T16:31:52.6142424Z CC [M] drivers/hwmon/adt7310.mod.o
2025-10-02T16:31:52.6594812Z CC [M] drivers/hwmon/adt7410.mod.o
2025-10-02T16:31:52.8120864Z CC [M] drivers/hwmon/adt7411.mod.o
2025-10-02T16:31:52.8861317Z CC [M] drivers/hwmon/adt7462.mod.o
2025-10-02T16:31:52.9345612Z CC [M] drivers/hwmon/adt7470.mod.o
2025-10-02T16:31:52.9705977Z CC [M] drivers/hwmon/adt7475.mod.o
2025-10-02T16:31:53.0083336Z CC [M] drivers/hwmon/adt7x10.mod.o
2025-10-02T16:31:53.2315755Z CC [M] drivers/hwmon/amc6821.mod.o
2025-10-02T16:31:53.2603331Z CC [M] drivers/hwmon/amd_energy.mod.o
2025-10-02T16:31:53.2617394Z CC [M] drivers/hwmon/applesmc.mod.o
2025-10-02T16:31:53.2764741Z CC [M] drivers/hwmon/as370-hwmon.mod.o
2025-10-02T16:31:53.4209900Z CC [M] drivers/hwmon/asb100.mod.o
2025-10-02T16:31:53.5558961Z CC [M] drivers/hwmon/asc7621.mod.o
2025-10-02T16:31:53.6035450Z CC [M] drivers/hwmon/aspeed-pwm-tacho.mod.o
2025-10-02T16:31:53.6707809Z CC [M] drivers/hwmon/asus_atk0110.mod.o
2025-10-02T16:31:53.6979818Z CC [M] drivers/hwmon/atxp1.mod.o
2025-10-02T16:31:53.8480421Z CC [M] drivers/hwmon/axi-fan-control.mod.o
2025-10-02T16:31:53.8653663Z CC [M] drivers/hwmon/coretemp.mod.o
2025-10-02T16:31:53.9679397Z CC [M] drivers/hwmon/corsair-cpro.mod.o
2025-10-02T16:31:54.0554640Z CC [M] drivers/hwmon/da9052-hwmon.mod.o
2025-10-02T16:31:54.1453011Z CC [M] drivers/hwmon/da9055-hwmon.mod.o
2025-10-02T16:31:54.1935151Z CC [M] drivers/hwmon/dell-smm-hwmon.mod.o
2025-10-02T16:31:54.2427396Z CC [M] drivers/hwmon/dme1737.mod.o
2025-10-02T16:31:54.2704055Z CC [M] drivers/hwmon/drivetemp.mod.o
2025-10-02T16:31:54.5181637Z CC [M] drivers/hwmon/ds1621.mod.o
2025-10-02T16:31:54.5382663Z CC [M] drivers/hwmon/ds620.mod.o
2025-10-02T16:31:54.5561641Z CC [M] drivers/hwmon/emc1403.mod.o
2025-10-02T16:31:54.5792556Z CC [M] drivers/hwmon/emc2103.mod.o
2025-10-02T16:31:54.6284228Z CC [M] drivers/hwmon/emc6w201.mod.o
2025-10-02T16:31:54.8774399Z CC [M] drivers/hwmon/f71805f.mod.o
2025-10-02T16:31:54.9186985Z CC [M] drivers/hwmon/f71882fg.mod.o
2025-10-02T16:31:54.9334862Z CC [M] drivers/hwmon/f75375s.mod.o
2025-10-02T16:31:54.9658775Z CC [M] drivers/hwmon/fam15h_power.mod.o
2025-10-02T16:31:55.0133160Z CC [M] drivers/hwmon/fschmd.mod.o
2025-10-02T16:31:55.2502264Z CC [M] drivers/hwmon/g760a.mod.o
2025-10-02T16:31:55.2513192Z CC [M] drivers/hwmon/ftsteutates.mod.o
2025-10-02T16:31:55.2721328Z CC [M] drivers/hwmon/g762.mod.o
2025-10-02T16:31:55.3780751Z CC [M] drivers/hwmon/gl518sm.mod.o
2025-10-02T16:31:55.3794167Z CC [M] drivers/hwmon/gl520sm.mod.o
2025-10-02T16:31:55.5889797Z CC [M] drivers/hwmon/hih6130.mod.o
2025-10-02T16:31:55.6089745Z CC [M] drivers/hwmon/hwmon-vid.mod.o
2025-10-02T16:31:55.7275057Z CC [M] drivers/hwmon/i5500_temp.mod.o
2025-10-02T16:31:55.7820537Z CC [M] drivers/hwmon/i5k_amb.mod.o
2025-10-02T16:31:55.7952365Z CC [M] drivers/hwmon/ibmaem.mod.o
2025-10-02T16:31:55.9105334Z CC [M] drivers/hwmon/ibmpex.mod.o
2025-10-02T16:31:55.9499026Z CC [M] drivers/hwmon/iio_hwmon.mod.o
2025-10-02T16:31:56.1467562Z CC [M] drivers/hwmon/ina209.mod.o
2025-10-02T16:31:56.1572887Z CC [M] drivers/hwmon/ina2xx.mod.o
2025-10-02T16:31:56.1578932Z CC [M] drivers/hwmon/ina3221.mod.o
2025-10-02T16:31:56.2792461Z CC [M] drivers/hwmon/intel-m10-bmc-hwmon.mod.o
2025-10-02T16:31:56.2951829Z CC [M] drivers/hwmon/it87.mod.o
2025-10-02T16:31:56.4542166Z CC [M] drivers/hwmon/jc42.mod.o
2025-10-02T16:31:56.5498051Z CC [M] drivers/hwmon/k10temp.mod.o
2025-10-02T16:31:56.5858706Z CC [M] drivers/hwmon/k8temp.mod.o
2025-10-02T16:31:56.6417352Z CC [M] drivers/hwmon/lineage-pem.mod.o
2025-10-02T16:31:56.6652309Z CC [M] drivers/hwmon/lm63.mod.o
2025-10-02T16:31:56.8445792Z CC [M] drivers/hwmon/lm70.mod.o
2025-10-02T16:31:56.9047181Z CC [M] drivers/hwmon/lm73.mod.o
2025-10-02T16:31:56.9523871Z CC [M] drivers/hwmon/lm75.mod.o
2025-10-02T16:31:56.9624555Z CC [M] drivers/hwmon/lm77.mod.o
2025-10-02T16:31:57.0354289Z CC [M] drivers/hwmon/lm78.mod.o
2025-10-02T16:31:57.2210673Z CC [M] drivers/hwmon/lm80.mod.o
2025-10-02T16:31:57.3154865Z CC [M] drivers/hwmon/lm83.mod.o
2025-10-02T16:31:57.3509414Z CC [M] drivers/hwmon/lm85.mod.o
2025-10-02T16:31:57.3600449Z CC [M] drivers/hwmon/lm87.mod.o
2025-10-02T16:31:57.3824862Z CC [M] drivers/hwmon/lm90.mod.o
2025-10-02T16:31:57.5587007Z CC [M] drivers/hwmon/lm92.mod.o
2025-10-02T16:31:57.6411434Z CC [M] drivers/hwmon/lm93.mod.o
2025-10-02T16:31:57.7224300Z CC [M] drivers/hwmon/lm95234.mod.o
2025-10-02T16:31:57.7790140Z CC [M] drivers/hwmon/lm95241.mod.o
2025-10-02T16:31:57.7831358Z CC [M] drivers/hwmon/lm95245.mod.o
2025-10-02T16:31:57.9587208Z CC [M] drivers/hwmon/ltc2945.mod.o
2025-10-02T16:31:57.9995815Z CC [M] drivers/hwmon/ltc2947-core.mod.o
2025-10-02T16:31:58.0856172Z CC [M] drivers/hwmon/ltc2947-i2c.mod.o
2025-10-02T16:31:58.1165356Z CC [M] drivers/hwmon/ltc2947-spi.mod.o
2025-10-02T16:31:58.2388060Z CC [M] drivers/hwmon/ltc2990.mod.o
2025-10-02T16:31:58.2813988Z CC [M] drivers/hwmon/ltc4151.mod.o
2025-10-02T16:31:58.3676634Z CC [M] drivers/hwmon/ltc4215.mod.o
2025-10-02T16:31:58.3813712Z CC [M] drivers/hwmon/ltc4222.mod.o
2025-10-02T16:31:58.6065517Z CC [M] drivers/hwmon/ltc4245.mod.o
2025-10-02T16:31:58.6444203Z CC [M] drivers/hwmon/ltc4260.mod.o
2025-10-02T16:31:58.6741891Z CC [M] drivers/hwmon/ltc4261.mod.o
2025-10-02T16:31:58.6779701Z CC [M] drivers/hwmon/max1111.mod.o
2025-10-02T16:31:58.7141273Z CC [M] drivers/hwmon/max16065.mod.o
2025-10-02T16:31:58.9597253Z CC [M] drivers/hwmon/max1619.mod.o
2025-10-02T16:31:58.9986009Z CC [M] drivers/hwmon/max1668.mod.o
2025-10-02T16:31:59.0520259Z CC [M] drivers/hwmon/max197.mod.o
2025-10-02T16:31:59.0992040Z CC [M] drivers/hwmon/max31722.mod.o
2025-10-02T16:31:59.1024300Z CC [M] drivers/hwmon/max31730.mod.o
2025-10-02T16:31:59.2631039Z CC [M] drivers/hwmon/max31790.mod.o
2025-10-02T16:31:59.3498421Z CC [M] drivers/hwmon/max6621.mod.o
2025-10-02T16:31:59.4722124Z CC [M] drivers/hwmon/max6639.mod.o
2025-10-02T16:31:59.5040990Z CC [M] drivers/hwmon/max6642.mod.o
2025-10-02T16:31:59.5166590Z CC [M] drivers/hwmon/max6650.mod.o
2025-10-02T16:31:59.6504560Z CC [M] drivers/hwmon/max6697.mod.o
2025-10-02T16:31:59.6780640Z CC [M] drivers/hwmon/mc13783-adc.mod.o
2025-10-02T16:31:59.7868543Z CC [M] drivers/hwmon/mcp3021.mod.o
2025-10-02T16:31:59.8015633Z CC [M] drivers/hwmon/menf21bmc_hwmon.mod.o
2025-10-02T16:31:59.9971232Z CC [M] drivers/hwmon/mlxreg-fan.mod.o
2025-10-02T16:32:00.0427007Z CC [M] drivers/hwmon/mr75203.mod.o
2025-10-02T16:32:00.0688461Z CC [M] drivers/hwmon/nct6683.mod.o
2025-10-02T16:32:00.0985922Z CC [M] drivers/hwmon/nct6775.mod.o
2025-10-02T16:32:00.1416290Z CC [M] drivers/hwmon/nct7802.mod.o
2025-10-02T16:32:00.3786842Z CC [M] drivers/hwmon/nct7904.mod.o
2025-10-02T16:32:00.4002405Z CC [M] drivers/hwmon/npcm750-pwm-fan.mod.o
2025-10-02T16:32:00.4244869Z CC [M] drivers/hwmon/ntc_thermistor.mod.o
2025-10-02T16:32:00.4398291Z CC [M] drivers/hwmon/pc87360.mod.o
2025-10-02T16:32:00.5510154Z CC [M] drivers/hwmon/pc87427.mod.o
2025-10-02T16:32:00.7571844Z CC [M] drivers/hwmon/pcf8591.mod.o
2025-10-02T16:32:00.7726772Z CC [M] drivers/hwmon/pmbus/adm1266.mod.o
2025-10-02T16:32:00.7822786Z CC [M] drivers/hwmon/pmbus/adm1275.mod.o
2025-10-02T16:32:00.8177508Z CC [M] drivers/hwmon/pmbus/bel-pfe.mod.o
2025-10-02T16:32:00.9183494Z CC [M] drivers/hwmon/pmbus/ibm-cffps.mod.o
2025-10-02T16:32:01.0701205Z CC [M] drivers/hwmon/pmbus/inspur-ipsps.mod.o
2025-10-02T16:32:01.1192306Z CC [M] drivers/hwmon/pmbus/ir35221.mod.o
2025-10-02T16:32:01.1828840Z CC [M] drivers/hwmon/pmbus/ir38064.mod.o
2025-10-02T16:32:01.2760222Z CC [M] drivers/hwmon/pmbus/irps5401.mod.o
2025-10-02T16:32:01.3152360Z CC [M] drivers/hwmon/pmbus/isl68137.mod.o
2025-10-02T16:32:01.3858810Z CC [M] drivers/hwmon/pmbus/lm25066.mod.o
2025-10-02T16:32:01.4467810Z CC [M] drivers/hwmon/pmbus/ltc2978.mod.o
2025-10-02T16:32:01.5836277Z CC [M] drivers/hwmon/pmbus/ltc3815.mod.o
2025-10-02T16:32:01.6598509Z CC [M] drivers/hwmon/pmbus/max16601.mod.o
2025-10-02T16:32:01.6599435Z CC [M] drivers/hwmon/pmbus/max16064.mod.o
2025-10-02T16:32:01.7899324Z CC [M] drivers/hwmon/pmbus/max20730.mod.o
2025-10-02T16:32:01.7961094Z CC [M] drivers/hwmon/pmbus/max20751.mod.o
2025-10-02T16:32:01.9298729Z CC [M] drivers/hwmon/pmbus/max31785.mod.o
2025-10-02T16:32:02.0053847Z CC [M] drivers/hwmon/pmbus/max34440.mod.o
2025-10-02T16:32:02.0649089Z CC [M] drivers/hwmon/pmbus/max8688.mod.o
2025-10-02T16:32:02.0990563Z CC [M] drivers/hwmon/pmbus/mp2975.mod.o
2025-10-02T16:32:02.1903809Z CC [M] drivers/hwmon/pmbus/pmbus.mod.o
2025-10-02T16:32:02.2940165Z CC [M] drivers/hwmon/pmbus/pmbus_core.mod.o
2025-10-02T16:32:02.3520578Z CC [M] drivers/hwmon/pmbus/pxe1610.mod.o
2025-10-02T16:32:02.3855841Z CC [M] drivers/hwmon/pmbus/tps40422.mod.o
2025-10-02T16:32:02.5084117Z CC [M] drivers/hwmon/pmbus/tps53679.mod.o
2025-10-02T16:32:02.6001536Z CC [M] drivers/hwmon/pmbus/ucd9000.mod.o
2025-10-02T16:32:02.6201923Z CC [M] drivers/hwmon/pmbus/ucd9200.mod.o
2025-10-02T16:32:02.6577498Z CC [M] drivers/hwmon/pmbus/xdpe12284.mod.o
2025-10-02T16:32:02.8408204Z CC [M] drivers/hwmon/pmbus/zl6100.mod.o
2025-10-02T16:32:02.8757076Z CC [M] drivers/hwmon/powr1220.mod.o
2025-10-02T16:32:02.9375481Z CC [M] drivers/hwmon/sch5636.mod.o
2025-10-02T16:32:02.9401232Z CC [M] drivers/hwmon/sch5627.mod.o
2025-10-02T16:32:03.0633847Z CC [M] drivers/hwmon/sch56xx-common.mod.o
2025-10-02T16:32:03.1964179Z CC [M] drivers/hwmon/sht15.mod.o
2025-10-02T16:32:03.2326691Z CC [M] drivers/hwmon/sht21.mod.o
2025-10-02T16:32:03.2358226Z CC [M] drivers/hwmon/sht3x.mod.o
2025-10-02T16:32:03.3857783Z CC [M] drivers/hwmon/shtc1.mod.o
2025-10-02T16:32:03.4407168Z CC [M] drivers/hwmon/sis5595.mod.o
2025-10-02T16:32:03.5109794Z CC [M] drivers/hwmon/smm665.mod.o
2025-10-02T16:32:03.5621949Z CC [M] drivers/hwmon/smsc47b397.mod.o
2025-10-02T16:32:03.7071870Z CC [M] drivers/hwmon/smsc47m1.mod.o
2025-10-02T16:32:03.7131068Z CC [M] drivers/hwmon/smsc47m192.mod.o
2025-10-02T16:32:03.7682744Z CC [M] drivers/hwmon/stts751.mod.o
2025-10-02T16:32:03.8596296Z CC [M] drivers/hwmon/tc654.mod.o
2025-10-02T16:32:03.9958512Z CC [M] drivers/hwmon/tc74.mod.o
2025-10-02T16:32:04.0592275Z CC [M] drivers/hwmon/thmc50.mod.o
2025-10-02T16:32:04.0621911Z CC [M] drivers/hwmon/tmp102.mod.o
2025-10-02T16:32:04.1867791Z CC [M] drivers/hwmon/tmp103.mod.o
2025-10-02T16:32:04.1985475Z CC [M] drivers/hwmon/tmp108.mod.o
2025-10-02T16:32:04.3500211Z CC [M] drivers/hwmon/tmp401.mod.o
2025-10-02T16:32:04.3807066Z CC [M] drivers/hwmon/tmp421.mod.o
2025-10-02T16:32:04.4256453Z CC [M] drivers/hwmon/tmp513.mod.o
2025-10-02T16:32:04.5736337Z CC [M] drivers/hwmon/via-cputemp.mod.o
2025-10-02T16:32:04.5917974Z CC [M] drivers/hwmon/via686a.mod.o
2025-10-02T16:32:04.6904113Z CC [M] drivers/hwmon/vt1211.mod.o
2025-10-02T16:32:04.7370147Z CC [M] drivers/hwmon/vt8231.mod.o
2025-10-02T16:32:04.7794703Z CC [M] drivers/hwmon/w83627ehf.mod.o
2025-10-02T16:32:04.8804674Z CC [M] drivers/hwmon/w83627hf.mod.o
2025-10-02T16:32:05.0752504Z CC [M] drivers/hwmon/w83781d.mod.o
2025-10-02T16:32:05.0812406Z CC [M] drivers/hwmon/w83773g.mod.o
2025-10-02T16:32:05.1045598Z CC [M] drivers/hwmon/w83791d.mod.o
2025-10-02T16:32:05.1372779Z CC [M] drivers/hwmon/w83792d.mod.o
2025-10-02T16:32:05.1856128Z CC [M] drivers/hwmon/w83793.mod.o
2025-10-02T16:32:05.4156602Z CC [M] drivers/hwmon/w83795.mod.o
2025-10-02T16:32:05.4425682Z CC [M] drivers/hwmon/w83l785ts.mod.o
2025-10-02T16:32:05.4621338Z CC [M] drivers/hwmon/w83l786ng.mod.o
2025-10-02T16:32:05.5173866Z CC [M] drivers/hwmon/wm831x-hwmon.mod.o
2025-10-02T16:32:05.5904120Z CC [M] drivers/hwmon/wm8350-hwmon.mod.o
2025-10-02T16:32:05.7865707Z CC [M] drivers/hwtracing/intel_th/intel_th.mod.o
2025-10-02T16:32:05.7890149Z CC [M] drivers/hwmon/xgene-hwmon.mod.o
2025-10-02T16:32:05.8050221Z CC [M] drivers/hwtracing/intel_th/intel_th_acpi.mod.o
2025-10-02T16:32:05.9054607Z CC [M] drivers/hwtracing/intel_th/intel_th_gth.mod.o
2025-10-02T16:32:06.0038008Z CC [M] drivers/hwtracing/intel_th/intel_th_msu.mod.o
2025-10-02T16:32:06.1054287Z CC [M] drivers/hwtracing/intel_th/intel_th_msu_sink.mod.o
2025-10-02T16:32:06.1531238Z CC [M] drivers/hwtracing/intel_th/intel_th_pci.mod.o
2025-10-02T16:32:06.1712908Z CC [M] drivers/hwtracing/intel_th/intel_th_pti.mod.o
2025-10-02T16:32:06.2934648Z CC [M] drivers/hwtracing/intel_th/intel_th_sth.mod.o
2025-10-02T16:32:06.3687897Z CC [M] drivers/hwtracing/stm/stm_console.mod.o
2025-10-02T16:32:06.4553407Z CC [M] drivers/hwtracing/stm/stm_core.mod.o
2025-10-02T16:32:06.4851487Z CC [M] drivers/hwtracing/stm/stm_ftrace.mod.o
2025-10-02T16:32:06.5750752Z CC [M] drivers/hwtracing/stm/stm_heartbeat.mod.o
2025-10-02T16:32:06.6257172Z CC [M] drivers/hwtracing/stm/stm_p_basic.mod.o
2025-10-02T16:32:06.7689102Z CC [M] drivers/hwtracing/stm/stm_p_sys-t.mod.o
2025-10-02T16:32:06.8101332Z CC [M] drivers/i2c/algos/i2c-algo-bit.mod.o
2025-10-02T16:32:06.9173226Z CC [M] drivers/i2c/algos/i2c-algo-pca.mod.o
2025-10-02T16:32:06.9215035Z CC [M] drivers/i2c/busses/i2c-ali1535.mod.o
2025-10-02T16:32:06.9568547Z CC [M] drivers/i2c/busses/i2c-ali1563.mod.o
2025-10-02T16:32:07.0823054Z CC [M] drivers/i2c/busses/i2c-ali15x3.mod.o
2025-10-02T16:32:07.2066400Z CC [M] drivers/i2c/busses/i2c-amd-mp2-pci.mod.o
2025-10-02T16:32:07.2787718Z CC [M] drivers/i2c/busses/i2c-amd-mp2-plat.mod.o
2025-10-02T16:32:07.2822674Z CC [M] drivers/i2c/busses/i2c-amd756-s4882.mod.o
2025-10-02T16:32:07.3747735Z CC [M] drivers/i2c/busses/i2c-amd756.mod.o
2025-10-02T16:32:07.5106644Z CC [M] drivers/i2c/busses/i2c-amd8111.mod.o
2025-10-02T16:32:07.5238225Z CC [M] drivers/i2c/busses/i2c-cbus-gpio.mod.o
2025-10-02T16:32:07.6643065Z CC [M] drivers/i2c/busses/i2c-cht-wc.mod.o
2025-10-02T16:32:07.6731309Z CC [M] drivers/i2c/busses/i2c-cros-ec-tunnel.mod.o
2025-10-02T16:32:07.7063926Z CC [M] drivers/i2c/busses/i2c-diolan-u2c.mod.o
2025-10-02T16:32:07.8684250Z CC [M] drivers/i2c/busses/i2c-emev2.mod.o
2025-10-02T16:32:07.8685406Z CC [M] drivers/i2c/busses/i2c-dln2.mod.o
2025-10-02T16:32:07.9884969Z CC [M] drivers/i2c/busses/i2c-gpio.mod.o
2025-10-02T16:32:08.0551255Z CC [M] drivers/i2c/busses/i2c-i801.mod.o
2025-10-02T16:32:08.1048594Z CC [M] drivers/i2c/busses/i2c-isch.mod.o
2025-10-02T16:32:08.2041131Z CC [M] drivers/i2c/busses/i2c-ismt.mod.o
2025-10-02T16:32:08.2090401Z CC [M] drivers/i2c/busses/i2c-kempld.mod.o
2025-10-02T16:32:08.3357558Z CC [M] drivers/i2c/busses/i2c-mlxcpld.mod.o
2025-10-02T16:32:08.4543408Z CC [M] drivers/i2c/busses/i2c-nct6775.mod.o
2025-10-02T16:32:08.4751123Z CC [M] drivers/i2c/busses/i2c-nforce2-s4985.mod.o
2025-10-02T16:32:08.5571525Z CC [M] drivers/i2c/busses/i2c-nforce2.mod.o
2025-10-02T16:32:08.6068222Z CC [M] drivers/i2c/busses/i2c-nvidia-gpu.mod.o
2025-10-02T16:32:08.7004745Z CC [M] drivers/i2c/busses/i2c-ocores.mod.o
2025-10-02T16:32:08.7743466Z CC [M] drivers/i2c/busses/i2c-parport.mod.o
2025-10-02T16:32:08.8181313Z CC [M] drivers/i2c/busses/i2c-pca-platform.mod.o
2025-10-02T16:32:08.9268084Z CC [M] drivers/i2c/busses/i2c-piix4.mod.o
2025-10-02T16:32:09.0431941Z CC [M] drivers/i2c/busses/i2c-robotfuzz-osif.mod.o
2025-10-02T16:32:09.0695796Z CC [M] drivers/i2c/busses/i2c-scmi.mod.o
2025-10-02T16:32:09.0771288Z CC [M] drivers/i2c/busses/i2c-simtec.mod.o
2025-10-02T16:32:09.1536204Z CC [M] drivers/i2c/busses/i2c-sis5595.mod.o
2025-10-02T16:32:09.2895760Z CC [M] drivers/i2c/busses/i2c-sis630.mod.o
2025-10-02T16:32:09.3961664Z CC [M] drivers/i2c/busses/i2c-sis96x.mod.o
2025-10-02T16:32:09.4220038Z CC [M] drivers/i2c/busses/i2c-taos-evm.mod.o
2025-10-02T16:32:09.5143253Z CC [M] drivers/i2c/busses/i2c-tiny-usb.mod.o
2025-10-02T16:32:09.5257507Z CC [M] drivers/i2c/busses/i2c-via.mod.o
2025-10-02T16:32:09.6983552Z CC [M] drivers/i2c/busses/i2c-viapro.mod.o
2025-10-02T16:32:09.7333000Z CC [M] drivers/i2c/busses/i2c-viperboard.mod.o
2025-10-02T16:32:09.7621826Z CC [M] drivers/i2c/busses/i2c-xiic.mod.o
2025-10-02T16:32:09.8366852Z CC [M] drivers/i2c/i2c-dev.mod.o
2025-10-02T16:32:09.9491063Z CC [M] drivers/i2c/i2c-mux.mod.o
2025-10-02T16:32:10.0297283Z CC [M] drivers/i2c/i2c-slave-eeprom.mod.o
2025-10-02T16:32:10.0963710Z CC [M] drivers/i2c/i2c-slave-testunit.mod.o
2025-10-02T16:32:10.1391872Z CC [M] drivers/i2c/i2c-smbus.mod.o
2025-10-02T16:32:10.1974445Z CC [M] drivers/i2c/i2c-stub.mod.o
2025-10-02T16:32:10.3205053Z CC [M] drivers/i2c/muxes/i2c-mux-gpio.mod.o
2025-10-02T16:32:10.4013083Z CC [M] drivers/i2c/muxes/i2c-mux-ltc4306.mod.o
2025-10-02T16:32:10.4046072Z CC [M] drivers/i2c/muxes/i2c-mux-mlxcpld.mod.o
2025-10-02T16:32:10.5236568Z CC [M] drivers/i2c/muxes/i2c-mux-pca9541.mod.o
2025-10-02T16:32:10.6175511Z CC [M] drivers/i2c/muxes/i2c-mux-pca954x.mod.o
2025-10-02T16:32:10.6847573Z CC [M] drivers/i2c/muxes/i2c-mux-reg.mod.o
2025-10-02T16:32:10.7045820Z CC [M] drivers/iio/accel/adis16201.mod.o
2025-10-02T16:32:10.7522301Z CC [M] drivers/iio/accel/adis16209.mod.o
2025-10-02T16:32:10.9870832Z CC [M] drivers/iio/accel/adxl372.mod.o
2025-10-02T16:32:11.0108681Z CC [M] drivers/iio/accel/adxl372_i2c.mod.o
2025-10-02T16:32:11.0469450Z CC [M] drivers/iio/accel/adxl372_spi.mod.o
2025-10-02T16:32:11.0505239Z CC [M] drivers/iio/accel/bma400_core.mod.o
2025-10-02T16:32:11.0509988Z CC [M] drivers/iio/accel/bma220_spi.mod.o
2025-10-02T16:32:11.3027313Z CC [M] drivers/iio/accel/bma400_i2c.mod.o
2025-10-02T16:32:11.3760216Z CC [M] drivers/iio/accel/bmc150-accel-core.mod.o
2025-10-02T16:32:11.3803980Z CC [M] drivers/iio/accel/bma400_spi.mod.o
2025-10-02T16:32:11.4026747Z CC [M] drivers/iio/accel/bmc150-accel-i2c.mod.o
2025-10-02T16:32:11.4775981Z CC [M] drivers/iio/accel/bmc150-accel-spi.mod.o
2025-10-02T16:32:11.6332532Z CC [M] drivers/iio/accel/cros_ec_accel_legacy.mod.o
2025-10-02T16:32:11.7281633Z CC [M] drivers/iio/accel/da280.mod.o
2025-10-02T16:32:11.7942702Z CC [M] drivers/iio/accel/da311.mod.o
2025-10-02T16:32:11.8413675Z CC [M] drivers/iio/accel/dmard09.mod.o
2025-10-02T16:32:11.8611176Z CC [M] drivers/iio/accel/dmard10.mod.o
2025-10-02T16:32:11.9585911Z CC [M] drivers/iio/accel/hid-sensor-accel-3d.mod.o
2025-10-02T16:32:12.0812703Z CC [M] drivers/iio/accel/kxcjk-1013.mod.o
2025-10-02T16:32:12.1374096Z CC [M] drivers/iio/accel/kxsd9-i2c.mod.o
2025-10-02T16:32:12.1528573Z CC [M] drivers/iio/accel/kxsd9-spi.mod.o
2025-10-02T16:32:12.2557157Z CC [M] drivers/iio/accel/kxsd9.mod.o
2025-10-02T16:32:12.3573418Z CC [M] drivers/iio/accel/mc3230.mod.o
2025-10-02T16:32:12.3917247Z CC [M] drivers/iio/accel/mma7455_core.mod.o
2025-10-02T16:32:12.4350214Z CC [M] drivers/iio/accel/mma7455_i2c.mod.o
2025-10-02T16:32:12.5543953Z CC [M] drivers/iio/accel/mma7455_spi.mod.o
2025-10-02T16:32:12.6561956Z CC [M] drivers/iio/accel/mma7660.mod.o
2025-10-02T16:32:12.7061245Z CC [M] drivers/iio/accel/mma8452.mod.o
2025-10-02T16:32:12.7460250Z CC [M] drivers/iio/accel/mma9551.mod.o
2025-10-02T16:32:12.7803519Z CC [M] drivers/iio/accel/mma9551_core.mod.o
2025-10-02T16:32:12.8799090Z CC [M] drivers/iio/accel/mma9553.mod.o
2025-10-02T16:32:13.0590760Z CC [M] drivers/iio/accel/mxc4005.mod.o
2025-10-02T16:32:13.0825484Z CC [M] drivers/iio/accel/mxc6255.mod.o
2025-10-02T16:32:13.1352636Z CC [M] drivers/iio/accel/sca3000.mod.o
2025-10-02T16:32:13.1593509Z CC [M] drivers/iio/accel/ssp_accel_sensor.mod.o
2025-10-02T16:32:13.1852447Z CC [M] drivers/iio/accel/st_accel.mod.o
2025-10-02T16:32:13.4531576Z CC [M] drivers/iio/accel/st_accel_i2c.mod.o
2025-10-02T16:32:13.4578578Z CC [M] drivers/iio/accel/st_accel_spi.mod.o
2025-10-02T16:32:13.4771479Z CC [M] drivers/iio/accel/stk8312.mod.o
2025-10-02T16:32:13.5096514Z CC [M] drivers/iio/accel/stk8ba50.mod.o
2025-10-02T16:32:13.5226210Z CC [M] drivers/iio/adc/ad7091r-base.mod.o
2025-10-02T16:32:13.7499284Z CC [M] drivers/iio/adc/ad7091r5.mod.o
2025-10-02T16:32:13.8045144Z CC [M] drivers/iio/adc/ad7124.mod.o
2025-10-02T16:32:13.8435239Z CC [M] drivers/iio/adc/ad7192.mod.o
2025-10-02T16:32:13.8482108Z CC [M] drivers/iio/adc/ad7266.mod.o
2025-10-02T16:32:13.9793648Z CC [M] drivers/iio/adc/ad7291.mod.o
2025-10-02T16:32:14.0421568Z CC [M] drivers/iio/adc/ad7292.mod.o
2025-10-02T16:32:14.1350882Z CC [M] drivers/iio/adc/ad7298.mod.o
2025-10-02T16:32:14.2829257Z CC [M] drivers/iio/adc/ad7476.mod.o
2025-10-02T16:32:14.2968961Z CC [M] drivers/iio/adc/ad7606.mod.o
2025-10-02T16:32:14.3324482Z CC [M] drivers/iio/adc/ad7606_par.mod.o
2025-10-02T16:32:14.3465748Z CC [M] drivers/iio/adc/ad7606_spi.mod.o
2025-10-02T16:32:14.4466160Z CC [M] drivers/iio/adc/ad7766.mod.o
2025-10-02T16:32:14.6424316Z CC [M] drivers/iio/adc/ad7768-1.mod.o
2025-10-02T16:32:14.6554764Z CC [M] drivers/iio/adc/ad7780.mod.o
2025-10-02T16:32:14.6642145Z CC [M] drivers/iio/adc/ad7791.mod.o
2025-10-02T16:32:14.6650432Z CC [M] drivers/iio/adc/ad7793.mod.o
2025-10-02T16:32:14.8579149Z CC [M] drivers/iio/adc/ad7887.mod.o
2025-10-02T16:32:14.9581549Z CC [M] drivers/iio/adc/ad7923.mod.o
2025-10-02T16:32:14.9644708Z CC [M] drivers/iio/adc/ad7949.mod.o
2025-10-02T16:32:15.1158871Z CC [M] drivers/iio/adc/ad799x.mod.o
2025-10-02T16:32:15.1259341Z CC [M] drivers/iio/adc/ad_sigma_delta.mod.o
2025-10-02T16:32:15.2448126Z CC [M] drivers/iio/adc/axp20x_adc.mod.o
2025-10-02T16:32:15.2558962Z CC [M] drivers/iio/adc/axp288_adc.mod.o
2025-10-02T16:32:15.2982587Z CC [M] drivers/iio/adc/cc10001_adc.mod.o
2025-10-02T16:32:15.4503806Z CC [M] drivers/iio/adc/da9150-gpadc.mod.o
2025-10-02T16:32:15.5240505Z CC [M] drivers/iio/adc/dln2-adc.mod.o
2025-10-02T16:32:15.5841354Z CC [M] drivers/iio/adc/hi8435.mod.o
2025-10-02T16:32:15.6198972Z CC [M] drivers/iio/adc/hx711.mod.o
2025-10-02T16:32:15.7225711Z CC [M] drivers/iio/adc/ina2xx-adc.mod.o
2025-10-02T16:32:15.7978586Z CC [M] drivers/iio/adc/intel_mrfld_adc.mod.o
2025-10-02T16:32:15.8912853Z CC [M] drivers/iio/adc/lp8788_adc.mod.o
2025-10-02T16:32:15.9278898Z CC [M] drivers/iio/adc/ltc2471.mod.o
2025-10-02T16:32:15.9716321Z CC [M] drivers/iio/adc/ltc2485.mod.o
2025-10-02T16:32:16.0751963Z CC [M] drivers/iio/adc/ltc2496.mod.o
2025-10-02T16:32:16.2393702Z CC [M] drivers/iio/adc/ltc2497-core.mod.o
2025-10-02T16:32:16.2565228Z CC [M] drivers/iio/adc/ltc2497.mod.o
2025-10-02T16:32:16.2973519Z CC [M] drivers/iio/adc/max1027.mod.o
2025-10-02T16:32:16.3231714Z CC [M] drivers/iio/adc/max11100.mod.o
2025-10-02T16:32:16.4049157Z CC [M] drivers/iio/adc/max1118.mod.o
2025-10-02T16:32:16.5554189Z CC [M] drivers/iio/adc/max1241.mod.o
2025-10-02T16:32:16.5904642Z CC [M] drivers/iio/adc/max1363.mod.o
2025-10-02T16:32:16.6222821Z CC [M] drivers/iio/adc/max9611.mod.o
2025-10-02T16:32:16.6875367Z CC [M] drivers/iio/adc/mcp320x.mod.o
2025-10-02T16:32:16.8408619Z CC [M] drivers/iio/adc/mcp3422.mod.o
2025-10-02T16:32:16.9480542Z CC [M] drivers/iio/adc/mcp3911.mod.o
2025-10-02T16:32:16.9806932Z CC [M] drivers/iio/adc/men_z188_adc.mod.o
2025-10-02T16:32:17.0043862Z CC [M] drivers/iio/adc/mp2629_adc.mod.o
2025-10-02T16:32:17.0131940Z CC [M] drivers/iio/adc/nau7802.mod.o
2025-10-02T16:32:17.1327310Z CC [M] drivers/iio/adc/palmas_gpadc.mod.o
2025-10-02T16:32:17.2740285Z CC [M] drivers/iio/adc/ti-adc081c.mod.o
2025-10-02T16:32:17.3581792Z CC [M] drivers/iio/adc/ti-adc0832.mod.o
2025-10-02T16:32:17.3626781Z CC [M] drivers/iio/adc/ti-adc084s021.mod.o
2025-10-02T16:32:17.3993291Z CC [M] drivers/iio/adc/ti-adc108s102.mod.o
2025-10-02T16:32:17.5761755Z CC [M] drivers/iio/adc/ti-adc12138.mod.o
2025-10-02T16:32:17.6388425Z CC [M] drivers/iio/adc/ti-adc128s052.mod.o
2025-10-02T16:32:17.6998918Z CC [M] drivers/iio/adc/ti-adc161s626.mod.o
2025-10-02T16:32:17.7118640Z CC [M] drivers/iio/adc/ti-ads1015.mod.o
2025-10-02T16:32:17.7341189Z CC [M] drivers/iio/adc/ti-ads7950.mod.o
2025-10-02T16:32:18.0046523Z CC [M] drivers/iio/adc/ti-tlc4541.mod.o
2025-10-02T16:32:18.0158285Z CC [M] drivers/iio/adc/twl4030-madc.mod.o
2025-10-02T16:32:18.0231183Z CC [M] drivers/iio/adc/twl6030-gpadc.mod.o
2025-10-02T16:32:18.0611131Z CC [M] drivers/iio/adc/viperboard_adc.mod.o
2025-10-02T16:32:18.0642740Z CC [M] drivers/iio/adc/xilinx-xadc.mod.o
2025-10-02T16:32:18.3455190Z CC [M] drivers/iio/amplifiers/ad8366.mod.o
2025-10-02T16:32:18.3679099Z CC [M] drivers/iio/amplifiers/hmc425a.mod.o
2025-10-02T16:32:18.3865180Z CC [M] drivers/iio/buffer/industrialio-buffer-cb.mod.o
2025-10-02T16:32:18.4180117Z CC [M] drivers/iio/buffer/industrialio-buffer-dmaengine.mod.o
2025-10-02T16:32:18.4181256Z CC [M] drivers/iio/buffer/industrialio-buffer-dma.mod.o
2025-10-02T16:32:18.6570961Z CC [M] drivers/iio/buffer/industrialio-hw-consumer.mod.o
2025-10-02T16:32:18.7124859Z CC [M] drivers/iio/buffer/industrialio-triggered-buffer.mod.o
2025-10-02T16:32:18.7477191Z CC [M] drivers/iio/buffer/kfifo_buf.mod.o
2025-10-02T16:32:18.7783277Z CC [M] drivers/iio/chemical/ams-iaq-core.mod.o
2025-10-02T16:32:18.8708526Z CC [M] drivers/iio/chemical/atlas-ezo-sensor.mod.o
2025-10-02T16:32:19.0233824Z CC [M] drivers/iio/chemical/atlas-sensor.mod.o
2025-10-02T16:32:19.0426532Z CC [M] drivers/iio/chemical/bme680_core.mod.o
2025-10-02T16:32:19.1482251Z CC [M] drivers/iio/chemical/bme680_i2c.mod.o
2025-10-02T16:32:19.1604744Z CC [M] drivers/iio/chemical/bme680_spi.mod.o
2025-10-02T16:32:19.1789726Z CC [M] drivers/iio/chemical/ccs811.mod.o
2025-10-02T16:32:19.3608996Z CC [M] drivers/iio/chemical/pms7003.mod.o
2025-10-02T16:32:19.3763150Z CC [M] drivers/iio/chemical/scd30_core.mod.o
2025-10-02T16:32:19.4624912Z CC [M] drivers/iio/chemical/scd30_i2c.mod.o
2025-10-02T16:32:19.5310557Z CC [M] drivers/iio/chemical/scd30_serial.mod.o
2025-10-02T16:32:19.5600903Z CC [M] drivers/iio/chemical/sgp30.mod.o
2025-10-02T16:32:19.7126306Z CC [M] drivers/iio/chemical/sps30.mod.o
2025-10-02T16:32:19.7180130Z CC [M] drivers/iio/chemical/vz89x.mod.o
2025-10-02T16:32:19.8866783Z CC [M] drivers/iio/common/cros_ec_sensors/cros_ec_lid_angle.mod.o
2025-10-02T16:32:19.9274649Z CC [M] drivers/iio/common/cros_ec_sensors/cros_ec_sensors.mod.o
2025-10-02T16:32:20.0179821Z CC [M] drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.mod.o
2025-10-02T16:32:20.0212135Z CC [M] drivers/iio/common/hid-sensors/hid-sensor-iio-common.mod.o
2025-10-02T16:32:20.0241063Z CC [M] drivers/iio/common/hid-sensors/hid-sensor-trigger.mod.o
2025-10-02T16:32:20.1730544Z CC [M] drivers/iio/common/ms_sensors/ms_sensors_i2c.mod.o
2025-10-02T16:32:20.3270776Z CC [M] drivers/iio/common/ssp_sensors/sensorhub.mod.o
2025-10-02T16:32:20.3698983Z CC [M] drivers/iio/common/ssp_sensors/ssp_iio.mod.o
2025-10-02T16:32:20.3826077Z CC [M] drivers/iio/common/st_sensors/st_sensors.mod.o
2025-10-02T16:32:20.3990165Z CC [M] drivers/iio/common/st_sensors/st_sensors_i2c.mod.o
2025-10-02T16:32:20.5089742Z CC [M] drivers/iio/common/st_sensors/st_sensors_spi.mod.o
2025-10-02T16:32:20.6537946Z CC [M] drivers/iio/dac/ad5064.mod.o
2025-10-02T16:32:20.7470859Z CC [M] drivers/iio/dac/ad5360.mod.o
2025-10-02T16:32:20.7685423Z CC [M] drivers/iio/dac/ad5380.mod.o
2025-10-02T16:32:20.7716547Z CC [M] drivers/iio/dac/ad5421.mod.o
2025-10-02T16:32:20.8530241Z CC [M] drivers/iio/dac/ad5446.mod.o
2025-10-02T16:32:21.0400176Z CC [M] drivers/iio/dac/ad5449.mod.o
2025-10-02T16:32:21.1029262Z CC [M] drivers/iio/dac/ad5504.mod.o
2025-10-02T16:32:21.1052471Z CC [M] drivers/iio/dac/ad5592r-base.mod.o
2025-10-02T16:32:21.1425045Z CC [M] drivers/iio/dac/ad5592r.mod.o
2025-10-02T16:32:21.2595987Z CC [M] drivers/iio/dac/ad5593r.mod.o
2025-10-02T16:32:21.3554306Z CC [M] drivers/iio/dac/ad5624r_spi.mod.o
2025-10-02T16:32:21.3977227Z CC [M] drivers/iio/dac/ad5686-spi.mod.o
2025-10-02T16:32:21.4646984Z CC [M] drivers/iio/dac/ad5686.mod.o
2025-10-02T16:32:21.5567206Z CC [M] drivers/iio/dac/ad5696-i2c.mod.o
2025-10-02T16:32:21.6595331Z CC [M] drivers/iio/dac/ad5755.mod.o
2025-10-02T16:32:21.6935191Z CC [M] drivers/iio/dac/ad5758.mod.o
2025-10-02T16:32:21.7530529Z CC [M] drivers/iio/dac/ad5761.mod.o
2025-10-02T16:32:21.8033295Z CC [M] drivers/iio/dac/ad5764.mod.o
2025-10-02T16:32:21.9302469Z CC [M] drivers/iio/dac/ad5770r.mod.o
2025-10-02T16:32:21.9940812Z CC [M] drivers/iio/dac/ad5791.mod.o
2025-10-02T16:32:22.0730538Z CC [M] drivers/iio/dac/ad7303.mod.o
2025-10-02T16:32:22.0859653Z CC [M] drivers/iio/dac/ad8801.mod.o
2025-10-02T16:32:22.2059717Z CC [M] drivers/iio/dac/ds4424.mod.o
2025-10-02T16:32:22.3105513Z CC [M] drivers/iio/dac/ltc1660.mod.o
2025-10-02T16:32:22.3395451Z CC [M] drivers/iio/dac/ltc2632.mod.o
2025-10-02T16:32:22.4325622Z CC [M] drivers/iio/dac/max517.mod.o
2025-10-02T16:32:22.4351240Z CC [M] drivers/iio/dac/m62332.mod.o
2025-10-02T16:32:22.5444210Z CC [M] drivers/iio/dac/mcp4725.mod.o
2025-10-02T16:32:22.6458620Z CC [M] drivers/iio/dac/mcp4922.mod.o
2025-10-02T16:32:22.6756229Z CC [M] drivers/iio/dac/ti-dac082s085.mod.o
2025-10-02T16:32:22.7981334Z CC [M] drivers/iio/dac/ti-dac5571.mod.o
2025-10-02T16:32:22.8385633Z CC [M] drivers/iio/dac/ti-dac7311.mod.o
2025-10-02T16:32:22.9713955Z CC [M] drivers/iio/dac/ti-dac7612.mod.o
2025-10-02T16:32:22.9917479Z CC [M] drivers/iio/frequency/ad9523.mod.o
2025-10-02T16:32:23.0357284Z CC [M] drivers/iio/frequency/adf4350.mod.o
2025-10-02T16:32:23.1225127Z CC [M] drivers/iio/frequency/adf4371.mod.o
2025-10-02T16:32:23.2118337Z CC [M] drivers/iio/gyro/adis16080.mod.o
2025-10-02T16:32:23.3002365Z CC [M] drivers/iio/gyro/adis16130.mod.o
2025-10-02T16:32:23.3561308Z CC [M] drivers/iio/gyro/adis16136.mod.o
2025-10-02T16:32:23.3828599Z CC [M] drivers/iio/gyro/adis16260.mod.o
2025-10-02T16:32:23.5226919Z CC [M] drivers/iio/gyro/adxrs290.mod.o
2025-10-02T16:32:23.5883566Z CC [M] drivers/iio/gyro/adxrs450.mod.o
2025-10-02T16:32:23.5934254Z CC [M] drivers/iio/gyro/bmg160_core.mod.o
2025-10-02T16:32:23.6395713Z CC [M] drivers/iio/gyro/bmg160_i2c.mod.o
2025-10-02T16:32:23.8291160Z CC [M] drivers/iio/gyro/bmg160_spi.mod.o
2025-10-02T16:32:23.8807783Z CC [M] drivers/iio/gyro/fxas21002c_core.mod.o
2025-10-02T16:32:23.8814616Z CC [M] drivers/iio/gyro/fxas21002c_i2c.mod.o
2025-10-02T16:32:23.9316830Z CC [M] drivers/iio/gyro/fxas21002c_spi.mod.o
2025-10-02T16:32:24.0219455Z CC [M] drivers/iio/gyro/hid-sensor-gyro-3d.mod.o
2025-10-02T16:32:24.2029077Z CC [M] drivers/iio/gyro/itg3200.mod.o
2025-10-02T16:32:24.2274537Z CC [M] drivers/iio/gyro/mpu3050.mod.o
2025-10-02T16:32:24.2463142Z CC [M] drivers/iio/gyro/ssp_gyro_sensor.mod.o
2025-10-02T16:32:24.2950015Z CC [M] drivers/iio/gyro/st_gyro.mod.o
2025-10-02T16:32:24.4289956Z CC [M] drivers/iio/gyro/st_gyro_i2c.mod.o
2025-10-02T16:32:24.5184128Z CC [M] drivers/iio/gyro/st_gyro_spi.mod.o
2025-10-02T16:32:24.5984719Z CC [M] drivers/iio/health/afe4403.mod.o
2025-10-02T16:32:24.6161986Z CC [M] drivers/iio/health/afe4404.mod.o
2025-10-02T16:32:24.6931185Z CC [M] drivers/iio/health/max30100.mod.o
2025-10-02T16:32:24.8143502Z CC [M] drivers/iio/health/max30102.mod.o
2025-10-02T16:32:24.8693786Z CC [M] drivers/iio/humidity/am2315.mod.o
2025-10-02T16:32:24.9132934Z CC [M] drivers/iio/humidity/dht11.mod.o
2025-10-02T16:32:24.9690823Z CC [M] drivers/iio/humidity/hdc100x.mod.o
2025-10-02T16:32:25.0693201Z CC [M] drivers/iio/humidity/hdc2010.mod.o
2025-10-02T16:32:25.1755143Z CC [M] drivers/iio/humidity/hid-sensor-humidity.mod.o
2025-10-02T16:32:25.2247080Z CC [M] drivers/iio/humidity/hts221.mod.o
2025-10-02T16:32:25.2898509Z CC [M] drivers/iio/humidity/hts221_i2c.mod.o
2025-10-02T16:32:25.3634441Z CC [M] drivers/iio/humidity/hts221_spi.mod.o
2025-10-02T16:32:25.4116401Z CC [M] drivers/iio/humidity/htu21.mod.o
2025-10-02T16:32:25.5857458Z CC [M] drivers/iio/humidity/si7005.mod.o
2025-10-02T16:32:25.6048486Z CC [M] drivers/iio/humidity/si7020.mod.o
2025-10-02T16:32:25.6261501Z CC [M] drivers/iio/imu/adis16400.mod.o
2025-10-02T16:32:25.6706592Z CC [M] drivers/iio/imu/adis16460.mod.o
2025-10-02T16:32:25.8675622Z CC [M] drivers/iio/imu/adis16475.mod.o
2025-10-02T16:32:25.9168400Z CC [M] drivers/iio/imu/adis16480.mod.o
2025-10-02T16:32:25.9501834Z CC [M] drivers/iio/imu/adis_lib.mod.o
2025-10-02T16:32:25.9743137Z CC [M] drivers/iio/imu/bmi160/bmi160_core.mod.o
2025-10-02T16:32:26.0197888Z CC [M] drivers/iio/imu/bmi160/bmi160_i2c.mod.o
2025-10-02T16:32:26.2630256Z CC [M] drivers/iio/imu/fxos8700_core.mod.o
2025-10-02T16:32:26.2647292Z CC [M] drivers/iio/imu/bmi160/bmi160_spi.mod.o
2025-10-02T16:32:26.2688771Z CC [M] drivers/iio/imu/fxos8700_i2c.mod.o
2025-10-02T16:32:26.2854525Z CC [M] drivers/iio/imu/fxos8700_spi.mod.o
2025-10-02T16:32:26.4514387Z CC [M] drivers/iio/imu/inv_icm42600/inv-icm42600-i2c.mod.o
2025-10-02T16:32:26.5623132Z CC [M] drivers/iio/imu/inv_icm42600/inv-icm42600-spi.mod.o
2025-10-02T16:32:26.5928469Z CC [M] drivers/iio/imu/inv_icm42600/inv-icm42600.mod.o
2025-10-02T16:32:26.6494425Z CC [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050-i2c.mod.o
2025-10-02T16:32:26.7384704Z CC [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050-spi.mod.o
2025-10-02T16:32:26.8157568Z CC [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050.mod.o
2025-10-02T16:32:26.8873857Z CC [M] drivers/iio/imu/kmx61.mod.o
2025-10-02T16:32:26.9657622Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.mod.o
2025-10-02T16:32:27.0455589Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.mod.o
2025-10-02T16:32:27.0797043Z CC [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.mod.o
2025-10-02T16:32:27.1632610Z CC [M] drivers/iio/industrialio-configfs.mod.o
2025-10-02T16:32:27.3134381Z CC [M] drivers/iio/industrialio-sw-device.mod.o
2025-10-02T16:32:27.3541652Z CC [M] drivers/iio/industrialio-sw-trigger.mod.o
2025-10-02T16:32:27.3979201Z CC [M] drivers/iio/industrialio-triggered-event.mod.o
2025-10-02T16:32:27.4545681Z CC [M] drivers/iio/industrialio.mod.o
2025-10-02T16:32:27.4591893Z CC [M] drivers/iio/light/acpi-als.mod.o
2025-10-02T16:32:27.6721908Z CC [M] drivers/iio/light/adjd_s311.mod.o
2025-10-02T16:32:27.7338186Z CC [M] drivers/iio/light/adux1020.mod.o
2025-10-02T16:32:27.7468662Z CC [M] drivers/iio/light/al3010.mod.o
2025-10-02T16:32:27.8092016Z CC [M] drivers/iio/light/al3320a.mod.o
2025-10-02T16:32:27.8122057Z CC [M] drivers/iio/light/apds9300.mod.o
2025-10-02T16:32:28.0078811Z CC [M] drivers/iio/light/apds9960.mod.o
2025-10-02T16:32:28.0404329Z CC [M] drivers/iio/light/as73211.mod.o
2025-10-02T16:32:28.0926387Z CC [M] drivers/iio/light/bh1750.mod.o
2025-10-02T16:32:28.1424440Z CC [M] drivers/iio/light/bh1780.mod.o
2025-10-02T16:32:28.2437381Z CC [M] drivers/iio/light/cm32181.mod.o
2025-10-02T16:32:28.3441203Z CC [M] drivers/iio/light/cm3232.mod.o
2025-10-02T16:32:28.3787579Z CC [M] drivers/iio/light/cm3323.mod.o
2025-10-02T16:32:28.4564446Z CC [M] drivers/iio/light/cm36651.mod.o
2025-10-02T16:32:28.4952885Z CC [M] drivers/iio/light/cros_ec_light_prox.mod.o
2025-10-02T16:32:28.6480439Z CC [M] drivers/iio/light/gp2ap002.mod.o
2025-10-02T16:32:28.6692372Z CC [M] drivers/iio/light/gp2ap020a00f.mod.o
2025-10-02T16:32:28.7202667Z CC [M] drivers/iio/light/hid-sensor-als.mod.o
2025-10-02T16:32:28.7621433Z CC [M] drivers/iio/light/hid-sensor-prox.mod.o
2025-10-02T16:32:28.9422326Z CC [M] drivers/iio/light/iqs621-als.mod.o
2025-10-02T16:32:28.9618133Z CC [M] drivers/iio/light/isl29018.mod.o
2025-10-02T16:32:29.0196130Z CC [M] drivers/iio/light/isl29125.mod.o
2025-10-02T16:32:29.0206834Z CC [M] drivers/iio/light/isl29028.mod.o
2025-10-02T16:32:29.1277195Z CC [M] drivers/iio/light/jsa1212.mod.o
2025-10-02T16:32:29.2855714Z CC [M] drivers/iio/light/lm3533-als.mod.o
2025-10-02T16:32:29.3164467Z CC [M] drivers/iio/light/ltr501.mod.o
2025-10-02T16:32:29.3538855Z CC [M] drivers/iio/light/lv0104cs.mod.o
2025-10-02T16:32:29.3776725Z CC [M] drivers/iio/light/max44000.mod.o
2025-10-02T16:32:29.5180996Z CC [M] drivers/iio/light/max44009.mod.o
2025-10-02T16:32:29.5720927Z CC [M] drivers/iio/light/noa1305.mod.o
2025-10-02T16:32:29.6586118Z CC [M] drivers/iio/light/opt3001.mod.o
2025-10-02T16:32:29.7857152Z CC [M] drivers/iio/light/pa12203001.mod.o
2025-10-02T16:32:29.8133564Z CC [M] drivers/iio/light/rpr0521.mod.o
2025-10-02T16:32:29.8220278Z CC [M] drivers/iio/light/si1133.mod.o
2025-10-02T16:32:29.8557366Z CC [M] drivers/iio/light/si1145.mod.o
2025-10-02T16:32:30.1034891Z CC [M] drivers/iio/light/st_uvis25_core.mod.o
2025-10-02T16:32:30.1180056Z CC [M] drivers/iio/light/st_uvis25_i2c.mod.o
2025-10-02T16:32:30.1446210Z CC [M] drivers/iio/light/st_uvis25_spi.mod.o
2025-10-02T16:32:30.1628107Z CC [M] drivers/iio/light/stk3310.mod.o
2025-10-02T16:32:30.2324629Z CC [M] drivers/iio/light/tcs3414.mod.o
2025-10-02T16:32:30.4520360Z CC [M] drivers/iio/light/tcs3472.mod.o
2025-10-02T16:32:30.4692255Z CC [M] drivers/iio/light/tsl2563.mod.o
2025-10-02T16:32:30.4711142Z CC [M] drivers/iio/light/tsl2583.mod.o
2025-10-02T16:32:30.5053953Z CC [M] drivers/iio/light/tsl2772.mod.o
2025-10-02T16:32:30.6391914Z CC [M] drivers/iio/light/tsl4531.mod.o
2025-10-02T16:32:30.7550927Z CC [M] drivers/iio/light/us5182d.mod.o
2025-10-02T16:32:30.8053129Z CC [M] drivers/iio/light/vcnl4000.mod.o
2025-10-02T16:32:30.8160457Z CC [M] drivers/iio/light/vcnl4035.mod.o
2025-10-02T16:32:30.8966275Z CC [M] drivers/iio/light/veml6030.mod.o
2025-10-02T16:32:30.9904821Z CC [M] drivers/iio/light/veml6070.mod.o
2025-10-02T16:32:31.1845484Z CC [M] drivers/iio/light/vl6180.mod.o
2025-10-02T16:32:31.1882296Z CC [M] drivers/iio/light/zopt2201.mod.o
2025-10-02T16:32:31.1966263Z CC [M] drivers/iio/magnetometer/ak8975.mod.o
2025-10-02T16:32:31.2521900Z CC [M] drivers/iio/magnetometer/bmc150_magn.mod.o
2025-10-02T16:32:31.3144233Z CC [M] drivers/iio/magnetometer/bmc150_magn_i2c.mod.o
2025-10-02T16:32:31.5149856Z CC [M] drivers/iio/magnetometer/bmc150_magn_spi.mod.o
2025-10-02T16:32:31.5272678Z CC [M] drivers/iio/magnetometer/hid-sensor-magn-3d.mod.o
2025-10-02T16:32:31.5333470Z CC [M] drivers/iio/magnetometer/hmc5843_core.mod.o
2025-10-02T16:32:31.5740947Z CC [M] drivers/iio/magnetometer/hmc5843_i2c.mod.o
2025-10-02T16:32:31.7016857Z CC [M] drivers/iio/magnetometer/hmc5843_spi.mod.o
2025-10-02T16:32:31.8597621Z CC [M] drivers/iio/magnetometer/mag3110.mod.o
2025-10-02T16:32:31.9219032Z CC [M] drivers/iio/magnetometer/mmc35240.mod.o
2025-10-02T16:32:31.9468553Z CC [M] drivers/iio/magnetometer/rm3100-core.mod.o
2025-10-02T16:32:31.9872218Z CC [M] drivers/iio/magnetometer/rm3100-i2c.mod.o
2025-10-02T16:32:32.0211216Z CC [M] drivers/iio/magnetometer/rm3100-spi.mod.o
2025-10-02T16:32:32.2047920Z CC [M] drivers/iio/magnetometer/st_magn.mod.o
2025-10-02T16:32:32.2810583Z CC [M] drivers/iio/magnetometer/st_magn_i2c.mod.o
2025-10-02T16:32:32.2845779Z CC [M] drivers/iio/magnetometer/st_magn_spi.mod.o
2025-10-02T16:32:32.3474882Z CC [M] drivers/iio/orientation/hid-sensor-incl-3d.mod.o
2025-10-02T16:32:32.3760333Z CC [M] drivers/iio/orientation/hid-sensor-rotation.mod.o
2025-10-02T16:32:32.5902519Z CC [M] drivers/iio/position/iqs624-pos.mod.o
2025-10-02T16:32:32.6020720Z CC [M] drivers/iio/potentiometer/ad5272.mod.o
2025-10-02T16:32:32.6372618Z CC [M] drivers/iio/potentiometer/ds1803.mod.o
2025-10-02T16:32:32.6955440Z CC [M] drivers/iio/potentiometer/max5432.mod.o
2025-10-02T16:32:32.7544893Z CC [M] drivers/iio/potentiometer/max5481.mod.o
2025-10-02T16:32:32.8993200Z CC [M] drivers/iio/potentiometer/max5487.mod.o
2025-10-02T16:32:32.9493801Z CC [M] drivers/iio/potentiometer/mcp4018.mod.o
2025-10-02T16:32:32.9960421Z CC [M] drivers/iio/potentiometer/mcp41010.mod.o
2025-10-02T16:32:33.0179911Z CC [M] drivers/iio/potentiometer/mcp4131.mod.o
2025-10-02T16:32:33.1396936Z CC [M] drivers/iio/potentiometer/mcp4531.mod.o
2025-10-02T16:32:33.2913445Z CC [M] drivers/iio/potentiometer/tpl0102.mod.o
2025-10-02T16:32:33.2956448Z CC [M] drivers/iio/potentiostat/lmp91000.mod.o
2025-10-02T16:32:33.3313102Z CC [M] drivers/iio/pressure/abp060mg.mod.o
2025-10-02T16:32:33.3727551Z CC [M] drivers/iio/pressure/bmp280-i2c.mod.o
2025-10-02T16:32:33.5883558Z CC [M] drivers/iio/pressure/bmp280-spi.mod.o
2025-10-02T16:32:33.6617956Z CC [M] drivers/iio/pressure/bmp280.mod.o
2025-10-02T16:32:33.6691681Z CC [M] drivers/iio/pressure/cros_ec_baro.mod.o
2025-10-02T16:32:33.6923767Z CC [M] drivers/iio/pressure/dlhl60d.mod.o
2025-10-02T16:32:33.7222354Z CC [M] drivers/iio/pressure/dps310.mod.o
2025-10-02T16:32:33.9301364Z CC [M] drivers/iio/pressure/hid-sensor-press.mod.o
2025-10-02T16:32:33.9760934Z CC [M] drivers/iio/pressure/hp03.mod.o
2025-10-02T16:32:34.0153415Z CC [M] drivers/iio/pressure/hp206c.mod.o
2025-10-02T16:32:34.0617523Z CC [M] drivers/iio/pressure/icp10100.mod.o
2025-10-02T16:32:34.1454336Z CC [M] drivers/iio/pressure/mpl115.mod.o
2025-10-02T16:32:34.2597456Z CC [M] drivers/iio/pressure/mpl115_i2c.mod.o
2025-10-02T16:32:34.2967200Z CC [M] drivers/iio/pressure/mpl115_spi.mod.o
2025-10-02T16:32:34.3637503Z CC [M] drivers/iio/pressure/mpl3115.mod.o
2025-10-02T16:32:34.4079174Z CC [M] drivers/iio/pressure/ms5611_core.mod.o
2025-10-02T16:32:34.5110701Z CC [M] drivers/iio/pressure/ms5611_i2c.mod.o
2025-10-02T16:32:34.5999155Z CC [M] drivers/iio/pressure/ms5611_spi.mod.o
2025-10-02T16:32:34.7321586Z CC [M] drivers/iio/pressure/ms5637.mod.o
2025-10-02T16:32:34.7472773Z CC [M] drivers/iio/pressure/st_pressure.mod.o
2025-10-02T16:32:34.7512773Z CC [M] drivers/iio/pressure/st_pressure_i2c.mod.o
2025-10-02T16:32:34.9261256Z CC [M] drivers/iio/pressure/st_pressure_spi.mod.o
2025-10-02T16:32:34.9633267Z CC [M] drivers/iio/pressure/t5403.mod.o
2025-10-02T16:32:35.0333199Z CC [M] drivers/iio/pressure/zpa2326.mod.o
2025-10-02T16:32:35.1413226Z CC [M] drivers/iio/pressure/zpa2326_i2c.mod.o
2025-10-02T16:32:35.1507263Z CC [M] drivers/iio/pressure/zpa2326_spi.mod.o
2025-10-02T16:32:35.2427563Z CC [M] drivers/iio/proximity/as3935.mod.o
2025-10-02T16:32:35.3521925Z CC [M] drivers/iio/proximity/isl29501.mod.o
2025-10-02T16:32:35.3676884Z CC [M] drivers/iio/proximity/mb1232.mod.o
2025-10-02T16:32:35.4258478Z CC [M] drivers/iio/proximity/ping.mod.o
2025-10-02T16:32:35.5334465Z CC [M] drivers/iio/proximity/pulsedlight-lidar-lite-v2.mod.o
2025-10-02T16:32:35.6432081Z CC [M] drivers/iio/proximity/rfd77402.mod.o
2025-10-02T16:32:35.6837141Z CC [M] drivers/iio/proximity/srf04.mod.o
2025-10-02T16:32:35.7516960Z CC [M] drivers/iio/proximity/srf08.mod.o
2025-10-02T16:32:35.7542741Z CC [M] drivers/iio/proximity/sx9310.mod.o
2025-10-02T16:32:35.8935504Z CC [M] drivers/iio/proximity/sx9500.mod.o
2025-10-02T16:32:36.0201498Z CC [M] drivers/iio/proximity/vcnl3020.mod.o
2025-10-02T16:32:36.0621508Z CC [M] drivers/iio/proximity/vl53l0x-i2c.mod.o
2025-10-02T16:32:36.0834279Z CC [M] drivers/iio/resolver/ad2s1200.mod.o
2025-10-02T16:32:36.1042827Z CC [M] drivers/iio/resolver/ad2s90.mod.o
2025-10-02T16:32:36.2305872Z CC [M] drivers/iio/temperature/hid-sensor-temperature.mod.o
2025-10-02T16:32:36.3793724Z CC [M] drivers/iio/temperature/iqs620at-temp.mod.o
2025-10-02T16:32:36.3868385Z CC [M] drivers/iio/temperature/ltc2983.mod.o
2025-10-02T16:32:36.4346395Z CC [M] drivers/iio/temperature/max31856.mod.o
2025-10-02T16:32:36.5543410Z CC [M] drivers/iio/temperature/maxim_thermocouple.mod.o
2025-10-02T16:32:36.5889233Z CC [M] drivers/iio/temperature/mlx90614.mod.o
2025-10-02T16:32:36.6672797Z CC [M] drivers/iio/temperature/mlx90632.mod.o
2025-10-02T16:32:36.8073282Z CC [M] drivers/iio/temperature/tmp006.mod.o
2025-10-02T16:32:36.8307994Z CC [M] drivers/iio/temperature/tmp007.mod.o
2025-10-02T16:32:36.8840463Z CC [M] drivers/iio/temperature/tsys01.mod.o
2025-10-02T16:32:36.9291872Z CC [M] drivers/iio/temperature/tsys02d.mod.o
2025-10-02T16:32:36.9764545Z CC [M] drivers/iio/trigger/iio-trig-hrtimer.mod.o
2025-10-02T16:32:37.1412520Z CC [M] drivers/iio/trigger/iio-trig-interrupt.mod.o
2025-10-02T16:32:37.2058263Z CC [M] drivers/iio/trigger/iio-trig-loop.mod.o
2025-10-02T16:32:37.2436204Z CC [M] drivers/iio/trigger/iio-trig-sysfs.mod.o
2025-10-02T16:32:37.2582936Z CC [M] drivers/infiniband/core/ib_cm.mod.o
2025-10-02T16:32:37.3857095Z CC [M] drivers/infiniband/core/ib_core.mod.o
2025-10-02T16:32:37.4789951Z CC [M] drivers/infiniband/core/ib_umad.mod.o
2025-10-02T16:32:37.5950513Z CC [M] drivers/infiniband/core/rdma_cm.mod.o
2025-10-02T16:32:37.5972348Z CC [M] drivers/infiniband/core/iw_cm.mod.o
2025-10-02T16:32:37.6004110Z CC [M] drivers/infiniband/core/ib_uverbs.mod.o
2025-10-02T16:32:37.7611865Z CC [M] drivers/infiniband/core/rdma_ucm.mod.o
2025-10-02T16:32:37.8351651Z CC [M] drivers/infiniband/hw/bnxt_re/bnxt_re.mod.o
2025-10-02T16:32:37.8885895Z CC [M] drivers/infiniband/hw/cxgb4/iw_cxgb4.mod.o
2025-10-02T16:32:37.9569975Z CC [M] drivers/infiniband/hw/efa/efa.mod.o
2025-10-02T16:32:37.9899049Z CC [M] drivers/infiniband/hw/hfi1/hfi1.mod.o
2025-10-02T16:32:38.0531142Z CC [M] drivers/infiniband/hw/i40iw/i40iw.mod.o
2025-10-02T16:32:38.2203162Z CC [M] drivers/infiniband/hw/mlx4/mlx4_ib.mod.o
2025-10-02T16:32:38.2334788Z CC [M] drivers/infiniband/hw/mlx5/mlx5_ib.mod.o
2025-10-02T16:32:38.3170057Z CC [M] drivers/infiniband/hw/mthca/ib_mthca.mod.o
2025-10-02T16:32:38.3703083Z CC [M] drivers/infiniband/hw/ocrdma/ocrdma.mod.o
2025-10-02T16:32:38.4318795Z CC [M] drivers/infiniband/hw/qedr/qedr.mod.o
2025-10-02T16:32:38.5870707Z CC [M] drivers/infiniband/hw/qib/ib_qib.mod.o
2025-10-02T16:32:38.6077357Z CC [M] drivers/infiniband/hw/usnic/usnic_verbs.mod.o
2025-10-02T16:32:38.6469427Z CC [M] drivers/infiniband/hw/vmw_pvrdma/vmw_pvrdma.mod.o
2025-10-02T16:32:38.6755932Z CC [M] drivers/infiniband/sw/rdmavt/rdmavt.mod.o
2025-10-02T16:32:38.9148305Z CC [M] drivers/infiniband/sw/rxe/rdma_rxe.mod.o
2025-10-02T16:32:38.9303572Z CC [M] drivers/infiniband/sw/siw/siw.mod.o
2025-10-02T16:32:38.9561994Z CC [M] drivers/infiniband/ulp/ipoib/ib_ipoib.mod.o
2025-10-02T16:32:38.9645590Z CC [M] drivers/infiniband/ulp/iser/ib_iser.mod.o
2025-10-02T16:32:39.0308939Z CC [M] drivers/infiniband/ulp/isert/ib_isert.mod.o
2025-10-02T16:32:39.2031342Z CC [M] drivers/infiniband/ulp/opa_vnic/opa_vnic.mod.o
2025-10-02T16:32:39.3244615Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-client.mod.o
2025-10-02T16:32:39.3402391Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-core.mod.o
2025-10-02T16:32:39.3840966Z CC [M] drivers/infiniband/ulp/rtrs/rtrs-server.mod.o
2025-10-02T16:32:39.3918851Z CC [M] drivers/infiniband/ulp/srp/ib_srp.mod.o
2025-10-02T16:32:39.4935288Z CC [M] drivers/infiniband/ulp/srpt/ib_srpt.mod.o
2025-10-02T16:32:39.6248345Z CC [M] drivers/input/ff-memless.mod.o
2025-10-02T16:32:39.7797325Z CC [M] drivers/input/gameport/emu10k1-gp.mod.o
2025-10-02T16:32:39.7910866Z CC [M] drivers/input/gameport/fm801-gp.mod.o
2025-10-02T16:32:39.7931626Z CC [M] drivers/input/gameport/gameport.mod.o
2025-10-02T16:32:39.7965813Z CC [M] drivers/input/gameport/lightning.mod.o
2025-10-02T16:32:39.9914151Z CC [M] drivers/input/gameport/ns558.mod.o
2025-10-02T16:32:40.1040951Z CC [M] drivers/input/input-polldev.mod.o
2025-10-02T16:32:40.1182653Z CC [M] drivers/input/joydev.mod.o
2025-10-02T16:32:40.1291770Z CC [M] drivers/input/joystick/a3d.mod.o
2025-10-02T16:32:40.2211142Z CC [M] drivers/input/joystick/adc-joystick.mod.o
2025-10-02T16:32:40.3212964Z CC [M] drivers/input/joystick/adi.mod.o
2025-10-02T16:32:40.4402081Z CC [M] drivers/input/joystick/analog.mod.o
2025-10-02T16:32:40.4662058Z CC [M] drivers/input/joystick/as5011.mod.o
2025-10-02T16:32:40.4663467Z CC [M] drivers/input/joystick/cobra.mod.o
2025-10-02T16:32:40.5843218Z CC [M] drivers/input/joystick/db9.mod.o
2025-10-02T16:32:40.6851859Z CC [M] drivers/input/joystick/fsia6b.mod.o
2025-10-02T16:32:40.7345206Z CC [M] drivers/input/joystick/gamecon.mod.o
2025-10-02T16:32:40.8335497Z CC [M] drivers/input/joystick/gf2k.mod.o
2025-10-02T16:32:40.8901111Z CC [M] drivers/input/joystick/grip.mod.o
2025-10-02T16:32:40.9244099Z CC [M] drivers/input/joystick/grip_mp.mod.o
2025-10-02T16:32:41.0541481Z CC [M] drivers/input/joystick/guillemot.mod.o
2025-10-02T16:32:41.1119059Z CC [M] drivers/input/joystick/iforce/iforce-serio.mod.o
2025-10-02T16:32:41.1843970Z CC [M] drivers/input/joystick/iforce/iforce.mod.o
2025-10-02T16:32:41.1868116Z CC [M] drivers/input/joystick/iforce/iforce-usb.mod.o
2025-10-02T16:32:41.3733822Z CC [M] drivers/input/joystick/interact.mod.o
2025-10-02T16:32:41.4038826Z CC [M] drivers/input/joystick/joydump.mod.o
2025-10-02T16:32:41.4621393Z CC [M] drivers/input/joystick/magellan.mod.o
2025-10-02T16:32:41.4858882Z CC [M] drivers/input/joystick/psxpad-spi.mod.o
2025-10-02T16:32:41.6082597Z CC [M] drivers/input/joystick/pxrc.mod.o
2025-10-02T16:32:41.6897494Z CC [M] drivers/input/joystick/sidewinder.mod.o
2025-10-02T16:32:41.7682578Z CC [M] drivers/input/joystick/spaceball.mod.o
2025-10-02T16:32:41.7969381Z CC [M] drivers/input/joystick/spaceorb.mod.o
2025-10-02T16:32:41.8539983Z CC [M] drivers/input/joystick/stinger.mod.o
2025-10-02T16:32:41.9883372Z CC [M] drivers/input/joystick/tmdc.mod.o
2025-10-02T16:32:42.0582478Z CC [M] drivers/input/joystick/turbografx.mod.o
2025-10-02T16:32:42.1280819Z CC [M] drivers/input/joystick/twidjoy.mod.o
2025-10-02T16:32:42.1416806Z CC [M] drivers/input/joystick/walkera0701.mod.o
2025-10-02T16:32:42.1751425Z CC [M] drivers/input/joystick/warrior.mod.o
2025-10-02T16:32:42.3621037Z CC [M] drivers/input/joystick/xpad.mod.o
2025-10-02T16:32:42.3663505Z CC [M] drivers/input/joystick/zhenhua.mod.o
2025-10-02T16:32:42.4285762Z CC [M] drivers/input/keyboard/adc-keys.mod.o
2025-10-02T16:32:42.6197660Z CC [M] drivers/input/keyboard/adp5520-keys.mod.o
2025-10-02T16:32:42.6342044Z CC [M] drivers/input/keyboard/adp5588-keys.mod.o
2025-10-02T16:32:42.6655219Z CC [M] drivers/input/keyboard/adp5589-keys.mod.o
2025-10-02T16:32:42.7068771Z CC [M] drivers/input/keyboard/applespi.mod.o
2025-10-02T16:32:42.7257808Z CC [M] drivers/input/keyboard/cros_ec_keyb.mod.o
2025-10-02T16:32:42.9458353Z CC [M] drivers/input/keyboard/dlink-dir685-touchkeys.mod.o
2025-10-02T16:32:42.9894624Z CC [M] drivers/input/keyboard/gpio_keys.mod.o
2025-10-02T16:32:43.0263701Z CC [M] drivers/input/keyboard/gpio_keys_polled.mod.o
2025-10-02T16:32:43.0796155Z CC [M] drivers/input/keyboard/iqs62x-keys.mod.o
2025-10-02T16:32:43.1209184Z CC [M] drivers/input/keyboard/lkkbd.mod.o
2025-10-02T16:32:43.2297133Z CC [M] drivers/input/keyboard/lm8323.mod.o
2025-10-02T16:32:43.3732959Z CC [M] drivers/input/keyboard/lm8333.mod.o
2025-10-02T16:32:43.3796485Z CC [M] drivers/input/keyboard/matrix_keypad.mod.o
2025-10-02T16:32:43.4235717Z CC [M] drivers/input/keyboard/max7359_keypad.mod.o
2025-10-02T16:32:43.5391455Z CC [M] drivers/input/keyboard/mcs_touchkey.mod.o
2025-10-02T16:32:43.5413163Z CC [M] drivers/input/keyboard/mpr121_touchkey.mod.o
2025-10-02T16:32:43.7209171Z CC [M] drivers/input/keyboard/mtk-pmic-keys.mod.o
2025-10-02T16:32:43.7211082Z CC [M] drivers/input/keyboard/newtonkbd.mod.o
2025-10-02T16:32:43.7560804Z CC [M] drivers/input/keyboard/opencores-kbd.mod.o
2025-10-02T16:32:43.8606032Z CC [M] drivers/input/keyboard/qt1050.mod.o
2025-10-02T16:32:43.9173465Z CC [M] drivers/input/keyboard/qt1070.mod.o
2025-10-02T16:32:44.0230077Z CC [M] drivers/input/keyboard/qt2160.mod.o
2025-10-02T16:32:44.1031118Z CC [M] drivers/input/keyboard/samsung-keypad.mod.o
2025-10-02T16:32:44.1483313Z CC [M] drivers/input/keyboard/stowaway.mod.o
2025-10-02T16:32:44.1811309Z CC [M] drivers/input/keyboard/sunkbd.mod.o
2025-10-02T16:32:44.3078294Z CC [M] drivers/input/keyboard/tca6416-keypad.mod.o
2025-10-02T16:32:44.3867465Z CC [M] drivers/input/keyboard/tca8418_keypad.mod.o
2025-10-02T16:32:44.4606458Z CC [M] drivers/input/keyboard/tm2-touchkey.mod.o
2025-10-02T16:32:44.4633291Z CC [M] drivers/input/keyboard/twl4030_keypad.mod.o
2025-10-02T16:32:44.6029890Z CC [M] drivers/input/keyboard/xtkbd.mod.o
2025-10-02T16:32:44.6180438Z CC [M] drivers/input/matrix-keymap.mod.o
2025-10-02T16:32:44.7611289Z CC [M] drivers/input/misc/88pm80x_onkey.mod.o
2025-10-02T16:32:44.7869965Z CC [M] drivers/input/misc/88pm860x_onkey.mod.o
2025-10-02T16:32:44.8606790Z CC [M] drivers/input/misc/ad714x-i2c.mod.o
2025-10-02T16:32:44.9330231Z CC [M] drivers/input/misc/ad714x-spi.mod.o
2025-10-02T16:32:44.9842663Z CC [M] drivers/input/misc/ad714x.mod.o
2025-10-02T16:32:45.1408924Z CC [M] drivers/input/misc/adxl34x-i2c.mod.o
2025-10-02T16:32:45.1603923Z CC [M] drivers/input/misc/adxl34x-spi.mod.o
2025-10-02T16:32:45.1852965Z CC [M] drivers/input/misc/adxl34x.mod.o
2025-10-02T16:32:45.3442696Z CC [M] drivers/input/misc/apanel.mod.o
2025-10-02T16:32:45.3482888Z CC [M] drivers/input/misc/arizona-haptics.mod.o
2025-10-02T16:32:45.4775179Z CC [M] drivers/input/misc/ati_remote2.mod.o
2025-10-02T16:32:45.5248506Z CC [M] drivers/input/misc/atlas_btns.mod.o
2025-10-02T16:32:45.5481267Z CC [M] drivers/input/misc/axp20x-pek.mod.o
2025-10-02T16:32:45.6618511Z CC [M] drivers/input/misc/bma150.mod.o
2025-10-02T16:32:45.7391437Z CC [M] drivers/input/misc/cm109.mod.o
2025-10-02T16:32:45.8323218Z CC [M] drivers/input/misc/cma3000_d0x.mod.o
2025-10-02T16:32:45.8628611Z CC [M] drivers/input/misc/cma3000_d0x_i2c.mod.o
2025-10-02T16:32:45.9086477Z CC [M] drivers/input/misc/da9052_onkey.mod.o
2025-10-02T16:32:45.9817216Z CC [M] drivers/input/misc/da9055_onkey.mod.o
2025-10-02T16:32:46.1741627Z CC [M] drivers/input/misc/da9063_onkey.mod.o
2025-10-02T16:32:46.1946902Z CC [M] drivers/input/misc/drv260x.mod.o
2025-10-02T16:32:46.1986703Z CC [M] drivers/input/misc/drv2665.mod.o
2025-10-02T16:32:46.2581055Z CC [M] drivers/input/misc/drv2667.mod.o
2025-10-02T16:32:46.2940949Z CC [M] drivers/input/misc/e3x0-button.mod.o
2025-10-02T16:32:46.4810121Z CC [M] drivers/input/misc/gpio-beeper.mod.o
2025-10-02T16:32:46.5753630Z CC [M] drivers/input/misc/gpio-vibra.mod.o
2025-10-02T16:32:46.5924216Z CC [M] drivers/input/misc/gpio_decoder.mod.o
2025-10-02T16:32:46.6138132Z CC [M] drivers/input/misc/ideapad_slidebar.mod.o
2025-10-02T16:32:46.6530997Z CC [M] drivers/input/misc/ims-pcu.mod.o
2025-10-02T16:32:46.8721173Z CC [M] drivers/input/misc/iqs269a.mod.o
2025-10-02T16:32:46.8964074Z CC [M] drivers/input/misc/keyspan_remote.mod.o
2025-10-02T16:32:46.9023379Z CC [M] drivers/input/misc/kxtj9.mod.o
2025-10-02T16:32:46.9101470Z CC [M] drivers/input/misc/max77693-haptic.mod.o
2025-10-02T16:32:47.0161486Z CC [M] drivers/input/misc/max8925_onkey.mod.o
2025-10-02T16:32:47.1679661Z CC [M] drivers/input/misc/max8997_haptic.mod.o
2025-10-02T16:32:47.2647553Z CC [M] drivers/input/misc/mc13783-pwrbutton.mod.o
2025-10-02T16:32:47.3029384Z CC [M] drivers/input/misc/mma8450.mod.o
2025-10-02T16:32:47.3147379Z CC [M] drivers/input/misc/palmas-pwrbutton.mod.o
2025-10-02T16:32:47.3673545Z CC [M] drivers/input/misc/pcap_keys.mod.o
2025-10-02T16:32:47.4564671Z CC [M] drivers/input/misc/pcf50633-input.mod.o
2025-10-02T16:32:47.6006116Z CC [M] drivers/input/misc/pcf8574_keypad.mod.o
2025-10-02T16:32:47.6520031Z CC [M] drivers/input/misc/pcspkr.mod.o
2025-10-02T16:32:47.7391215Z CC [M] drivers/input/misc/powermate.mod.o
2025-10-02T16:32:47.7785327Z CC [M] drivers/input/misc/pwm-beeper.mod.o
2025-10-02T16:32:47.7835801Z CC [M] drivers/input/misc/pwm-vibra.mod.o
2025-10-02T16:32:47.8968771Z CC [M] drivers/input/misc/rave-sp-pwrbutton.mod.o
2025-10-02T16:32:48.0468884Z CC [M] drivers/input/misc/regulator-haptic.mod.o
2025-10-02T16:32:48.0596386Z CC [M] drivers/input/misc/retu-pwrbutton.mod.o
2025-10-02T16:32:48.1246437Z CC [M] drivers/input/misc/rotary_encoder.mod.o
2025-10-02T16:32:48.1926213Z CC [M] drivers/input/misc/soc_button_array.mod.o
2025-10-02T16:32:48.2043079Z CC [M] drivers/input/misc/twl4030-pwrbutton.mod.o
2025-10-02T16:32:48.3936028Z CC [M] drivers/input/misc/twl4030-vibra.mod.o
2025-10-02T16:32:48.4052996Z CC [M] drivers/input/misc/twl6040-vibra.mod.o
2025-10-02T16:32:48.4632809Z CC [M] drivers/input/misc/uinput.mod.o
2025-10-02T16:32:48.5326381Z CC [M] drivers/input/misc/wm831x-on.mod.o
2025-10-02T16:32:48.6144928Z CC [M] drivers/input/misc/xen-kbdfront.mod.o
2025-10-02T16:32:48.7934995Z CC [M] drivers/input/misc/yealink.mod.o
2025-10-02T16:32:48.8289267Z CC [M] drivers/input/mouse/appletouch.mod.o
2025-10-02T16:32:48.8323218Z CC [M] drivers/input/mouse/bcm5974.mod.o
2025-10-02T16:32:48.8608479Z CC [M] drivers/input/mouse/cyapatp.mod.o
2025-10-02T16:32:48.9022097Z CC [M] drivers/input/mouse/elan_i2c.mod.o
2025-10-02T16:32:49.1148666Z CC [M] drivers/input/mouse/gpio_mouse.mod.o
2025-10-02T16:32:49.2005241Z CC [M] drivers/input/mouse/psmouse.mod.o
2025-10-02T16:32:49.2146433Z CC [M] drivers/input/mouse/sermouse.mod.o
2025-10-02T16:32:49.2483391Z CC [M] drivers/input/mouse/synaptics_i2c.mod.o
2025-10-02T16:32:49.2484724Z CC [M] drivers/input/mouse/synaptics_usb.mod.o
2025-10-02T16:32:49.4401736Z CC [M] drivers/input/mouse/vsxxxaa.mod.o
2025-10-02T16:32:49.5329384Z CC [M] drivers/input/mousedev.mod.o
2025-10-02T16:32:49.5352903Z CC [M] drivers/input/rmi4/rmi_core.mod.o
2025-10-02T16:32:49.5708367Z CC [M] drivers/input/rmi4/rmi_i2c.mod.o
2025-10-02T16:32:49.6767053Z CC [M] drivers/input/rmi4/rmi_smbus.mod.o
2025-10-02T16:32:49.7974659Z CC [M] drivers/input/rmi4/rmi_spi.mod.o
2025-10-02T16:32:49.8972800Z CC [M] drivers/input/serio/altera_ps2.mod.o
2025-10-02T16:32:49.8999735Z CC [M] drivers/input/serio/arc_ps2.mod.o
2025-10-02T16:32:49.9260917Z CC [M] drivers/input/serio/ct82c710.mod.o
2025-10-02T16:32:50.0523781Z CC [M] drivers/input/serio/hyperv-keyboard.mod.o
2025-10-02T16:32:50.1751066Z CC [M] drivers/input/serio/parkbd.mod.o
2025-10-02T16:32:50.2055466Z CC [M] drivers/input/serio/pcips2.mod.o
2025-10-02T16:32:50.2670765Z CC [M] drivers/input/serio/ps2-gpio.mod.o
2025-10-02T16:32:50.2875045Z CC [M] drivers/input/serio/ps2mult.mod.o
2025-10-02T16:32:50.4627592Z CC [M] drivers/input/serio/serio_raw.mod.o
2025-10-02T16:32:50.4992419Z CC [M] drivers/input/serio/serport.mod.o
2025-10-02T16:32:50.5238442Z CC [M] drivers/input/serio/userio.mod.o
2025-10-02T16:32:50.6770384Z CC [M] drivers/input/sparse-keymap.mod.o
2025-10-02T16:32:50.6867692Z CC [M] drivers/input/tablet/acecad.mod.o
2025-10-02T16:32:50.7823717Z CC [M] drivers/input/tablet/aiptek.mod.o
2025-10-02T16:32:50.8276932Z CC [M] drivers/input/tablet/gtco.mod.o
2025-10-02T16:32:50.9764187Z CC [M] drivers/input/tablet/hanwang.mod.o
2025-10-02T16:32:51.0320871Z CC [M] drivers/input/tablet/pegasus_notetaker.mod.o
2025-10-02T16:32:51.0322854Z CC [M] drivers/input/tablet/kbtab.mod.o
2025-10-02T16:32:51.1238681Z CC [M] drivers/input/tablet/wacom_serial4.mod.o
2025-10-02T16:32:51.1514686Z CC [M] drivers/input/touchscreen/88pm860x-ts.mod.o
2025-10-02T16:32:51.3184616Z CC [M] drivers/input/touchscreen/ad7877.mod.o
2025-10-02T16:32:51.3573541Z CC [M] drivers/input/touchscreen/ad7879-i2c.mod.o
2025-10-02T16:32:51.4868675Z CC [M] drivers/input/touchscreen/ad7879-spi.mod.o
2025-10-02T16:32:51.5109027Z CC [M] drivers/input/touchscreen/ad7879.mod.o
2025-10-02T16:32:51.5734127Z CC [M] drivers/input/touchscreen/ads7846.mod.o
2025-10-02T16:32:51.6375702Z CC [M] drivers/input/touchscreen/atmel_mxt_ts.mod.o
2025-10-02T16:32:51.6587394Z CC [M] drivers/input/touchscreen/auo-pixcir-ts.mod.o
2025-10-02T16:32:51.8268868Z CC [M] drivers/input/touchscreen/bu21013_ts.mod.o
2025-10-02T16:32:51.8864992Z CC [M] drivers/input/touchscreen/bu21029_ts.mod.o
2025-10-02T16:32:51.9573936Z CC [M] drivers/input/touchscreen/chipone_icn8505.mod.o
2025-10-02T16:32:51.9646554Z CC [M] drivers/input/touchscreen/cy8ctma140.mod.o
2025-10-02T16:32:52.0939104Z CC [M] drivers/input/touchscreen/cy8ctmg110_ts.mod.o
2025-10-02T16:32:52.1748096Z CC [M] drivers/input/touchscreen/cyttsp4_core.mod.o
2025-10-02T16:32:52.2167141Z CC [M] drivers/input/touchscreen/cyttsp4_i2c.mod.o
2025-10-02T16:32:52.3214258Z CC [M] drivers/input/touchscreen/cyttsp4_spi.mod.o
2025-10-02T16:32:52.3434001Z CC [M] drivers/input/touchscreen/cyttsp_core.mod.o
2025-10-02T16:32:52.4667725Z CC [M] drivers/input/touchscreen/cyttsp_i2c.mod.o
2025-10-02T16:32:52.4929030Z CC [M] drivers/input/touchscreen/cyttsp_i2c_common.mod.o
2025-10-02T16:32:52.5989654Z CC [M] drivers/input/touchscreen/cyttsp_spi.mod.o
2025-10-02T16:32:52.6472556Z CC [M] drivers/input/touchscreen/da9034-ts.mod.o
2025-10-02T16:32:52.7157793Z CC [M] drivers/input/touchscreen/da9052_tsi.mod.o
2025-10-02T16:32:52.7703262Z CC [M] drivers/input/touchscreen/dynapro.mod.o
2025-10-02T16:32:52.9344753Z CC [M] drivers/input/touchscreen/edt-ft5x06.mod.o
2025-10-02T16:32:52.9609291Z CC [M] drivers/input/touchscreen/eeti_ts.mod.o
2025-10-02T16:32:53.0162424Z CC [M] drivers/input/touchscreen/egalax_ts_serial.mod.o
2025-10-02T16:32:53.0534120Z CC [M] drivers/input/touchscreen/ektf2127.mod.o
2025-10-02T16:32:53.0863075Z CC [M] drivers/input/touchscreen/elants_i2c.mod.o
2025-10-02T16:32:53.2703269Z CC [M] drivers/input/touchscreen/elo.mod.o
2025-10-02T16:32:53.3667868Z CC [M] drivers/input/touchscreen/exc3000.mod.o
2025-10-02T16:32:53.3712248Z CC [M] drivers/input/touchscreen/fujitsu_ts.mod.o
2025-10-02T16:32:53.3791663Z CC [M] drivers/input/touchscreen/goodix.mod.o
2025-10-02T16:32:53.5023972Z CC [M] drivers/input/touchscreen/gunze.mod.o
2025-10-02T16:32:53.5547348Z CC [M] drivers/input/touchscreen/hampshire.mod.o
2025-10-02T16:32:53.7441254Z CC [M] drivers/input/touchscreen/hideep.mod.o
2025-10-02T16:32:53.7962302Z CC [M] drivers/input/touchscreen/ili210x.mod.o
2025-10-02T16:32:53.8126876Z CC [M] drivers/input/touchscreen/inexio.mod.o
2025-10-02T16:32:53.8383297Z CC [M] drivers/input/touchscreen/iqs5xx.mod.o
2025-10-02T16:32:53.8602089Z CC [M] drivers/input/touchscreen/max11801_ts.mod.o
2025-10-02T16:32:54.1197971Z CC [M] drivers/input/touchscreen/mc13783_ts.mod.o
2025-10-02T16:32:54.1451653Z CC [M] drivers/input/touchscreen/mcs5000_ts.mod.o
2025-10-02T16:32:54.1938959Z CC [M] drivers/input/touchscreen/melfas_mip4.mod.o
2025-10-02T16:32:54.1961483Z CC [M] drivers/input/touchscreen/mk712.mod.o
2025-10-02T16:32:54.2168270Z CC [M] drivers/input/touchscreen/mms114.mod.o
2025-10-02T16:32:54.4973683Z CC [M] drivers/input/touchscreen/mtouch.mod.o
2025-10-02T16:32:54.5167561Z CC [M] drivers/input/touchscreen/pcap_ts.mod.o
2025-10-02T16:32:54.5245657Z CC [M] drivers/input/touchscreen/penmount.mod.o
2025-10-02T16:32:54.5482745Z CC [M] drivers/input/touchscreen/pixcir_i2c_ts.mod.o
2025-10-02T16:32:54.5758862Z CC [M] drivers/input/touchscreen/raydium_i2c_ts.mod.o
2025-10-02T16:32:54.8159386Z CC [M] drivers/input/touchscreen/resistive-adc-touch.mod.o
2025-10-02T16:32:54.8519869Z CC [M] drivers/input/touchscreen/rohm_bu21023.mod.o
2025-10-02T16:32:54.8906485Z CC [M] drivers/input/touchscreen/s6sy761.mod.o
2025-10-02T16:32:54.9174154Z CC [M] drivers/input/touchscreen/silead.mod.o
2025-10-02T16:32:55.0490849Z CC [M] drivers/input/touchscreen/sis_i2c.mod.o
2025-10-02T16:32:55.1343065Z CC [M] drivers/input/touchscreen/st1232.mod.o
2025-10-02T16:32:55.1391316Z CC [M] drivers/input/touchscreen/stmfts.mod.o
2025-10-02T16:32:55.2045018Z CC [M] drivers/input/touchscreen/sur40.mod.o
2025-10-02T16:32:55.3670762Z CC [M] drivers/input/touchscreen/surface3_spi.mod.o
2025-10-02T16:32:55.4442206Z CC [M] drivers/input/touchscreen/sx8654.mod.o
2025-10-02T16:32:55.4460434Z CC [M] drivers/input/touchscreen/touchit213.mod.o
2025-10-02T16:32:55.5374229Z CC [M] drivers/input/touchscreen/touchright.mod.o
2025-10-02T16:32:55.5824530Z CC [M] drivers/input/touchscreen/touchwin.mod.o
2025-10-02T16:32:55.7692423Z CC [M] drivers/input/touchscreen/tps6507x-ts.mod.o
2025-10-02T16:32:55.8374625Z CC [M] drivers/input/touchscreen/tsc2004.mod.o
2025-10-02T16:32:55.8509224Z CC [M] drivers/input/touchscreen/tsc2005.mod.o
2025-10-02T16:32:55.8773635Z CC [M] drivers/input/touchscreen/tsc2007.mod.o
2025-10-02T16:32:55.8958432Z CC [M] drivers/input/touchscreen/tsc200x-core.mod.o
2025-10-02T16:32:56.0704741Z CC [M] drivers/input/touchscreen/tsc40.mod.o
2025-10-02T16:32:56.1769148Z CC [M] drivers/input/touchscreen/ucb1400_ts.mod.o
2025-10-02T16:32:56.2125710Z CC [M] drivers/input/touchscreen/usbtouchscreen.mod.o
2025-10-02T16:32:56.2353744Z CC [M] drivers/input/touchscreen/wacom_i2c.mod.o
2025-10-02T16:32:56.3376116Z CC [M] drivers/input/touchscreen/wacom_w8001.mod.o
2025-10-02T16:32:56.3949453Z CC [M] drivers/input/touchscreen/wdt87xx_i2c.mod.o
2025-10-02T16:32:56.5150342Z CC [M] drivers/input/touchscreen/wm831x-ts.mod.o
2025-10-02T16:32:56.5993730Z CC [M] drivers/input/touchscreen/wm97xx-ts.mod.o
2025-10-02T16:32:56.6440291Z CC [M] drivers/input/touchscreen/zet6223.mod.o
2025-10-02T16:32:56.6518196Z CC [M] drivers/input/touchscreen/zforce_ts.mod.o
2025-10-02T16:32:56.8085884Z CC [M] drivers/input/touchscreen/zinitix.mod.o
2025-10-02T16:32:56.8446850Z CC [M] drivers/ipack/carriers/tpci200.mod.o
2025-10-02T16:32:56.9573335Z CC [M] drivers/ipack/devices/ipoctal.mod.o
2025-10-02T16:32:56.9853854Z CC [M] drivers/ipack/ipack.mod.o
2025-10-02T16:32:57.0365764Z CC [M] drivers/irqchip/irq-madera.mod.o
2025-10-02T16:32:57.1883388Z CC [M] drivers/isdn/capi/kernelcapi.mod.o
2025-10-02T16:32:57.1959302Z CC [M] drivers/isdn/hardware/mISDN/avmfritz.mod.o
2025-10-02T16:32:57.2791227Z CC [M] drivers/isdn/hardware/mISDN/hfcmulti.mod.o
2025-10-02T16:32:57.3070387Z CC [M] drivers/isdn/hardware/mISDN/hfcpci.mod.o
2025-10-02T16:32:57.4825540Z CC [M] drivers/isdn/hardware/mISDN/hfcsusb.mod.o
2025-10-02T16:32:57.5523939Z CC [M] drivers/isdn/hardware/mISDN/isdnhdlc.mod.o
2025-10-02T16:32:57.5992535Z CC [M] drivers/isdn/hardware/mISDN/mISDNinfineon.mod.o
2025-10-02T16:32:57.6242781Z CC [M] drivers/isdn/hardware/mISDN/mISDNipac.mod.o
2025-10-02T16:32:57.6400781Z CC [M] drivers/isdn/hardware/mISDN/mISDNisar.mod.o
2025-10-02T16:32:57.7724450Z CC [M] drivers/isdn/hardware/mISDN/netjet.mod.o
2025-10-02T16:32:57.9246571Z CC [M] drivers/isdn/hardware/mISDN/speedfax.mod.o
2025-10-02T16:32:57.9488668Z CC [M] drivers/isdn/hardware/mISDN/w6692.mod.o
2025-10-02T16:32:58.0036476Z CC [M] drivers/isdn/mISDN/l1oip.mod.o
2025-10-02T16:32:58.0650492Z CC [M] drivers/isdn/mISDN/mISDN_core.mod.o
2025-10-02T16:32:58.0762243Z CC [M] drivers/isdn/mISDN/mISDN_dsp.mod.o
2025-10-02T16:32:58.2971275Z CC [M] drivers/leds/led-class-flash.mod.o
2025-10-02T16:32:58.3565365Z CC [M] drivers/leds/led-class-multicolor.mod.o
2025-10-02T16:32:58.3757196Z CC [M] drivers/leds/leds-88pm860x.mod.o
2025-10-02T16:32:58.3950636Z CC [M] drivers/leds/leds-adp5520.mod.o
2025-10-02T16:32:58.4270880Z CC [M] drivers/leds/leds-apu.mod.o
2025-10-02T16:32:58.6808798Z CC [M] drivers/leds/leds-as3645a.mod.o
2025-10-02T16:32:58.6823858Z CC [M] drivers/leds/leds-bd2802.mod.o
2025-10-02T16:32:58.7091831Z CC [M] drivers/leds/leds-blinkm.mod.o
2025-10-02T16:32:58.7560007Z CC [M] drivers/leds/leds-clevo-mail.mod.o
2025-10-02T16:32:58.7787583Z CC [M] drivers/leds/leds-da903x.mod.o
2025-10-02T16:32:58.9862490Z CC [M] drivers/leds/leds-da9052.mod.o
2025-10-02T16:32:58.9918666Z CC [M] drivers/leds/leds-dac124s085.mod.o
2025-10-02T16:32:59.0948014Z CC [M] drivers/leds/leds-gpio.mod.o
2025-10-02T16:32:59.1258963Z CC [M] drivers/leds/leds-lm3530.mod.o
2025-10-02T16:32:59.2095610Z CC [M] drivers/leds/leds-lm3532.mod.o
2025-10-02T16:32:59.2983323Z CC [M] drivers/leds/leds-lm3533.mod.o
2025-10-02T16:32:59.3843407Z CC [M] drivers/leds/leds-lm355x.mod.o
2025-10-02T16:32:59.4251207Z CC [M] drivers/leds/leds-lm3601x.mod.o
2025-10-02T16:32:59.5254638Z CC [M] drivers/leds/leds-lm36274.mod.o
2025-10-02T16:32:59.6297998Z CC [M] drivers/leds/leds-lp3944.mod.o
2025-10-02T16:32:59.6320116Z CC [M] drivers/leds/leds-lm3642.mod.o
2025-10-02T16:32:59.7163425Z CC [M] drivers/leds/leds-lp3952.mod.o
2025-10-02T16:32:59.7971735Z CC [M] drivers/leds/leds-lp50xx.mod.o
2025-10-02T16:32:59.8630979Z CC [M] drivers/leds/leds-lp8788.mod.o
2025-10-02T16:33:00.0082409Z CC [M] drivers/leds/leds-max8997.mod.o
2025-10-02T16:33:00.0202138Z CC [M] drivers/leds/leds-mc13783.mod.o
2025-10-02T16:33:00.0507123Z CC [M] drivers/leds/leds-menf21bmc.mod.o
2025-10-02T16:33:00.2236582Z CC [M] drivers/leds/leds-mlxcpld.mod.o
2025-10-02T16:33:00.2678820Z CC [M] drivers/leds/leds-mlxreg.mod.o
2025-10-02T16:33:00.3311107Z CC [M] drivers/leds/leds-mt6323.mod.o
2025-10-02T16:33:00.3638980Z CC [M] drivers/leds/leds-nic78bx.mod.o
2025-10-02T16:33:00.4265297Z CC [M] drivers/leds/leds-pca9532.mod.o
2025-10-02T16:33:00.6078979Z CC [M] drivers/leds/leds-pca955x.mod.o
2025-10-02T16:33:00.6153301Z CC [M] drivers/leds/leds-pca963x.mod.o
2025-10-02T16:33:00.6620776Z CC [M] drivers/leds/leds-pwm.mod.o
2025-10-02T16:33:00.6728561Z CC [M] drivers/leds/leds-regulator.mod.o
2025-10-02T16:33:00.8098439Z CC [M] drivers/leds/leds-sgm3140.mod.o
2025-10-02T16:33:00.9397733Z CC [M] drivers/leds/leds-ss4200.mod.o
2025-10-02T16:33:00.9857749Z CC [M] drivers/leds/leds-tca6507.mod.o
2025-10-02T16:33:00.9986908Z CC [M] drivers/leds/leds-ti-lmu-common.mod.o
2025-10-02T16:33:01.0382488Z CC [M] drivers/leds/leds-tlc591xx.mod.o
2025-10-02T16:33:01.2251730Z CC [M] drivers/leds/leds-tps6105x.mod.o
2025-10-02T16:33:01.2642370Z CC [M] drivers/leds/leds-wm831x-status.mod.o
2025-10-02T16:33:01.2981010Z CC [M] drivers/leds/leds-wm8350.mod.o
2025-10-02T16:33:01.3730887Z CC [M] drivers/leds/trigger/ledtrig-activity.mod.o
2025-10-02T16:33:01.4411296Z CC [M] drivers/leds/trigger/ledtrig-audio.mod.o
2025-10-02T16:33:01.5668336Z CC [M] drivers/leds/trigger/ledtrig-backlight.mod.o
2025-10-02T16:33:01.5942209Z CC [M] drivers/leds/trigger/ledtrig-camera.mod.o
2025-10-02T16:33:01.7294125Z CC [M] drivers/leds/trigger/ledtrig-default-on.mod.o
2025-10-02T16:33:01.7390252Z CC [M] drivers/leds/trigger/ledtrig-gpio.mod.o
2025-10-02T16:33:01.7532930Z CC [M] drivers/leds/trigger/ledtrig-heartbeat.mod.o
2025-10-02T16:33:01.9881783Z CC [M] drivers/leds/trigger/ledtrig-netdev.mod.o
2025-10-02T16:33:02.0321362Z CC [M] drivers/leds/trigger/ledtrig-oneshot.mod.o
2025-10-02T16:33:02.0471716Z CC [M] drivers/leds/trigger/ledtrig-pattern.mod.o
2025-10-02T16:33:02.0505950Z CC [M] drivers/leds/trigger/ledtrig-timer.mod.o
2025-10-02T16:33:02.1174744Z CC [M] drivers/leds/trigger/ledtrig-transient.mod.o
2025-10-02T16:33:02.3460040Z CC [M] drivers/leds/uleds.mod.o
2025-10-02T16:33:02.3621700Z CC [M] drivers/macintosh/mac_hid.mod.o
2025-10-02T16:33:02.3643100Z CC [M] drivers/mailbox/mailbox-altera.mod.o
2025-10-02T16:33:02.3831593Z CC [M] drivers/mcb/mcb-lpc.mod.o
2025-10-02T16:33:02.6327924Z CC [M] drivers/mcb/mcb-pci.mod.o
2025-10-02T16:33:02.6505144Z CC [M] drivers/mcb/mcb.mod.o
2025-10-02T16:33:02.6539799Z CC [M] drivers/md/bcache/bcache.mod.o
2025-10-02T16:33:02.7430333Z CC [M] drivers/md/dm-bio-prison.mod.o
2025-10-02T16:33:02.7665006Z CC [M] drivers/md/dm-bufio.mod.o
2025-10-02T16:33:02.9293746Z CC [M] drivers/md/dm-cache-smq.mod.o
2025-10-02T16:33:03.0546498Z CC [M] drivers/md/dm-cache.mod.o
2025-10-02T16:33:03.0718566Z CC [M] drivers/md/dm-clone.mod.o
2025-10-02T16:33:03.1046463Z CC [M] drivers/md/dm-crypt.mod.o
2025-10-02T16:33:03.1373255Z CC [M] drivers/md/dm-delay.mod.o
2025-10-02T16:33:03.2608530Z CC [M] drivers/md/dm-dust.mod.o
2025-10-02T16:33:03.3448456Z CC [M] drivers/md/dm-ebs.mod.o
2025-10-02T16:33:03.4335546Z CC [M] drivers/md/dm-era.mod.o
2025-10-02T16:33:03.4721986Z CC [M] drivers/md/dm-flakey.mod.o
2025-10-02T16:33:03.4987263Z CC [M] drivers/md/dm-historical-service-time.mod.o
2025-10-02T16:33:03.6586762Z CC [M] drivers/md/dm-integrity.mod.o
2025-10-02T16:33:03.7504438Z CC [M] drivers/md/dm-log-userspace.mod.o
2025-10-02T16:33:03.7991475Z CC [M] drivers/md/dm-log-writes.mod.o
2025-10-02T16:33:03.8229208Z CC [M] drivers/md/dm-log.mod.o
2025-10-02T16:33:03.8523018Z CC [M] drivers/md/dm-mirror.mod.o
2025-10-02T16:33:03.9678871Z CC [M] drivers/md/dm-mod.mod.o
2025-10-02T16:33:04.1460164Z CC [M] drivers/md/dm-multipath.mod.o
2025-10-02T16:33:04.1563732Z CC [M] drivers/md/dm-raid.mod.o
2025-10-02T16:33:04.1585897Z CC [M] drivers/md/dm-queue-length.mod.o
2025-10-02T16:33:04.2037893Z CC [M] drivers/md/dm-region-hash.mod.o
2025-10-02T16:33:04.3660932Z CC [M] drivers/md/dm-round-robin.mod.o
2025-10-02T16:33:04.4586386Z CC [M] drivers/md/dm-service-time.mod.o
2025-10-02T16:33:04.4809779Z CC [M] drivers/md/dm-snapshot.mod.o
2025-10-02T16:33:04.5096714Z CC [M] drivers/md/dm-switch.mod.o
2025-10-02T16:33:04.5867649Z CC [M] drivers/md/dm-thin-pool.mod.o
2025-10-02T16:33:04.7213740Z CC [M] drivers/md/dm-unstripe.mod.o
2025-10-02T16:33:04.8614046Z CC [M] drivers/md/dm-verity.mod.o
2025-10-02T16:33:04.8673437Z CC [M] drivers/md/dm-writecache.mod.o
2025-10-02T16:33:04.8727824Z CC [M] drivers/md/dm-zero.mod.o
2025-10-02T16:33:04.8761730Z CC [M] drivers/md/dm-zoned.mod.o
2025-10-02T16:33:05.1502258Z CC [M] drivers/md/faulty.mod.o
2025-10-02T16:33:05.1536444Z CC [M] drivers/md/linear.mod.o
2025-10-02T16:33:05.1679369Z CC [M] drivers/md/md-cluster.mod.o
2025-10-02T16:33:05.2856645Z CC [M] drivers/md/md-mod.mod.o
2025-10-02T16:33:05.3190976Z CC [M] drivers/md/multipath.mod.o
2025-10-02T16:33:05.4395088Z CC [M] drivers/md/persistent-data/dm-persistent-data.mod.o
2025-10-02T16:33:05.4566323Z CC [M] drivers/md/raid0.mod.o
2025-10-02T16:33:05.7003759Z CC [M] drivers/md/raid1.mod.o
2025-10-02T16:33:05.7034083Z CC [M] drivers/md/raid10.mod.o
2025-10-02T16:33:05.7194047Z CC [M] drivers/md/raid456.mod.o
2025-10-02T16:33:05.7380881Z CC [M] drivers/media/cec/core/cec.mod.o
2025-10-02T16:33:05.7458361Z CC [M] drivers/media/cec/i2c/ch7322.mod.o
2025-10-02T16:33:06.0620647Z CC [M] drivers/media/cec/platform/cec-gpio/cec-gpio.mod.o
2025-10-02T16:33:06.0787046Z CC [M] drivers/media/cec/platform/cros-ec/cros-ec-cec.mod.o
2025-10-02T16:33:06.0807987Z CC [M] drivers/media/cec/platform/seco/seco-cec.mod.o
2025-10-02T16:33:06.0846141Z CC [M] drivers/media/cec/usb/pulse8/pulse8-cec.mod.o
2025-10-02T16:33:06.0951354Z CC [M] drivers/media/cec/usb/rainshadow/rainshadow-cec.mod.o
2025-10-02T16:33:06.3670649Z CC [M] drivers/media/common/b2c2/b2c2-flexcop.mod.o
2025-10-02T16:33:06.3891117Z CC [M] drivers/media/common/cx2341x.mod.o
2025-10-02T16:33:06.4331031Z CC [M] drivers/media/common/cypress_firmware.mod.o
2025-10-02T16:33:06.4531141Z CC [M] drivers/media/common/saa7146/saa7146.mod.o
2025-10-02T16:33:06.5679018Z CC [M] drivers/media/common/saa7146/saa7146_vv.mod.o
2025-10-02T16:33:06.6920299Z CC [M] drivers/media/common/siano/smsdvb.mod.o
2025-10-02T16:33:06.7254485Z CC [M] drivers/media/common/siano/smsmdtv.mod.o
2025-10-02T16:33:06.7847041Z CC [M] drivers/media/common/tveeprom.mod.o
2025-10-02T16:33:06.8173121Z CC [M] drivers/media/common/v4l2-tpg/v4l2-tpg.mod.o
2025-10-02T16:33:06.9930229Z CC [M] drivers/media/common/videobuf2/videobuf2-common.mod.o
2025-10-02T16:33:07.0297097Z CC [M] drivers/media/common/videobuf2/videobuf2-dma-contig.mod.o
2025-10-02T16:33:07.1056524Z CC [M] drivers/media/common/videobuf2/videobuf2-dma-sg.mod.o
2025-10-02T16:33:07.1086891Z CC [M] drivers/media/common/videobuf2/videobuf2-dvb.mod.o
2025-10-02T16:33:07.2579250Z CC [M] drivers/media/common/videobuf2/videobuf2-memops.mod.o
2025-10-02T16:33:07.3119139Z CC [M] drivers/media/common/videobuf2/videobuf2-v4l2.mod.o
2025-10-02T16:33:07.3656057Z CC [M] drivers/media/common/videobuf2/videobuf2-vmalloc.mod.o
2025-10-02T16:33:07.4119311Z CC [M] drivers/media/dvb-core/dvb-core.mod.o
2025-10-02T16:33:07.5003225Z CC [M] drivers/media/dvb-frontends/a8293.mod.o
2025-10-02T16:33:07.5498000Z CC [M] drivers/media/dvb-frontends/af9013.mod.o
2025-10-02T16:33:07.7497943Z CC [M] drivers/media/dvb-frontends/af9033.mod.o
2025-10-02T16:33:07.7866132Z CC [M] drivers/media/dvb-frontends/ascot2e.mod.o
2025-10-02T16:33:07.7898353Z CC [M] drivers/media/dvb-frontends/as102_fe.mod.o
2025-10-02T16:33:07.8592430Z CC [M] drivers/media/dvb-frontends/atbm8830.mod.o
2025-10-02T16:33:07.8630090Z CC [M] drivers/media/dvb-frontends/au8522_common.mod.o
2025-10-02T16:33:08.0836869Z CC [M] drivers/media/dvb-frontends/au8522_decoder.mod.o
2025-10-02T16:33:08.1588680Z CC [M] drivers/media/dvb-frontends/au8522_dig.mod.o
2025-10-02T16:33:08.1658499Z CC [M] drivers/media/dvb-frontends/bcm3510.mod.o
2025-10-02T16:33:08.1956192Z CC [M] drivers/media/dvb-frontends/cx22700.mod.o
2025-10-02T16:33:08.2069326Z CC [M] drivers/media/dvb-frontends/cx22702.mod.o
2025-10-02T16:33:08.4508570Z CC [M] drivers/media/dvb-frontends/cx24110.mod.o
2025-10-02T16:33:08.4876655Z CC [M] drivers/media/dvb-frontends/cx24113.mod.o
2025-10-02T16:33:08.5033024Z CC [M] drivers/media/dvb-frontends/cx24116.mod.o
2025-10-02T16:33:08.5717232Z CC [M] drivers/media/dvb-frontends/cx24117.mod.o
2025-10-02T16:33:08.5984528Z CC [M] drivers/media/dvb-frontends/cx24120.mod.o
2025-10-02T16:33:08.7864437Z CC [M] drivers/media/dvb-frontends/cx24123.mod.o
2025-10-02T16:33:08.8462006Z CC [M] drivers/media/dvb-frontends/cxd2099.mod.o
2025-10-02T16:33:08.8494703Z CC [M] drivers/media/dvb-frontends/cxd2820r.mod.o
2025-10-02T16:33:08.9794576Z CC [M] drivers/media/dvb-frontends/cxd2841er.mod.o
2025-10-02T16:33:08.9917806Z CC [M] drivers/media/dvb-frontends/dib0070.mod.o
2025-10-02T16:33:09.1025065Z CC [M] drivers/media/dvb-frontends/dib0090.mod.o
2025-10-02T16:33:09.1800499Z CC [M] drivers/media/dvb-frontends/dib3000mb.mod.o
2025-10-02T16:33:09.2991270Z CC [M] drivers/media/dvb-frontends/dib3000mc.mod.o
2025-10-02T16:33:09.3301708Z CC [M] drivers/media/dvb-frontends/dib7000m.mod.o
2025-10-02T16:33:09.3428026Z CC [M] drivers/media/dvb-frontends/dib7000p.mod.o
2025-10-02T16:33:09.4707189Z CC [M] drivers/media/dvb-frontends/dib8000.mod.o
2025-10-02T16:33:09.5300015Z CC [M] drivers/media/dvb-frontends/dibx000_common.mod.o
2025-10-02T16:33:09.6161490Z CC [M] drivers/media/dvb-frontends/drx39xyj/drx39xyj.mod.o
2025-10-02T16:33:09.6507906Z CC [M] drivers/media/dvb-frontends/drxd.mod.o
2025-10-02T16:33:09.7848466Z CC [M] drivers/media/dvb-frontends/drxk.mod.o
2025-10-02T16:33:09.8241569Z CC [M] drivers/media/dvb-frontends/ds3000.mod.o
2025-10-02T16:33:09.9173248Z CC [M] drivers/media/dvb-frontends/dvb-pll.mod.o
2025-10-02T16:33:09.9342690Z CC [M] drivers/media/dvb-frontends/dvb_dummy_fe.mod.o
2025-10-02T16:33:10.0433709Z CC [M] drivers/media/dvb-frontends/ec100.mod.o
2025-10-02T16:33:10.1639422Z CC [M] drivers/media/dvb-frontends/gp8psk-fe.mod.o
2025-10-02T16:33:10.1872179Z CC [M] drivers/media/dvb-frontends/helene.mod.o
2025-10-02T16:33:10.2147723Z CC [M] drivers/media/dvb-frontends/horus3a.mod.o
2025-10-02T16:33:10.3133945Z CC [M] drivers/media/dvb-frontends/isl6405.mod.o
2025-10-02T16:33:10.4593876Z CC [M] drivers/media/dvb-frontends/isl6421.mod.o
2025-10-02T16:33:10.4784866Z CC [M] drivers/media/dvb-frontends/isl6423.mod.o
2025-10-02T16:33:10.5004501Z CC [M] drivers/media/dvb-frontends/itd1000.mod.o
2025-10-02T16:33:10.5788773Z CC [M] drivers/media/dvb-frontends/ix2505v.mod.o
2025-10-02T16:33:10.7525787Z CC [M] drivers/media/dvb-frontends/l64781.mod.o
2025-10-02T16:33:10.8023972Z CC [M] drivers/media/dvb-frontends/lg2160.mod.o
2025-10-02T16:33:10.8602580Z CC [M] drivers/media/dvb-frontends/lgdt3305.mod.o
2025-10-02T16:33:10.8786872Z CC [M] drivers/media/dvb-frontends/lgdt3306a.mod.o
2025-10-02T16:33:10.9006272Z CC [M] drivers/media/dvb-frontends/lgdt330x.mod.o
2025-10-02T16:33:11.1155754Z CC [M] drivers/media/dvb-frontends/lgs8gxx.mod.o
2025-10-02T16:33:11.1290976Z CC [M] drivers/media/dvb-frontends/lnbh25.mod.o
2025-10-02T16:33:11.1898332Z CC [M] drivers/media/dvb-frontends/lnbp21.mod.o
2025-10-02T16:33:11.2816581Z CC [M] drivers/media/dvb-frontends/lnbp22.mod.o
2025-10-02T16:33:11.3041062Z CC [M] drivers/media/dvb-frontends/m88ds3103.mod.o
2025-10-02T16:33:11.4856242Z CC [M] drivers/media/dvb-frontends/m88rs2000.mod.o
2025-10-02T16:33:11.4928800Z CC [M] drivers/media/dvb-frontends/mb86a16.mod.o
2025-10-02T16:33:11.5119106Z CC [M] drivers/media/dvb-frontends/mb86a20s.mod.o
2025-10-02T16:33:11.5948751Z CC [M] drivers/media/dvb-frontends/mn88472.mod.o
2025-10-02T16:33:11.6628401Z CC [M] drivers/media/dvb-frontends/mn88473.mod.o
2025-10-02T16:33:11.8457432Z CC [M] drivers/media/dvb-frontends/mt312.mod.o
2025-10-02T16:33:11.8544132Z CC [M] drivers/media/dvb-frontends/mt352.mod.o
2025-10-02T16:33:11.8804098Z CC [M] drivers/media/dvb-frontends/mxl5xx.mod.o
2025-10-02T16:33:11.9576731Z CC [M] drivers/media/dvb-frontends/nxt200x.mod.o
2025-10-02T16:33:12.0191286Z CC [M] drivers/media/dvb-frontends/nxt6000.mod.o
2025-10-02T16:33:12.2015239Z CC [M] drivers/media/dvb-frontends/or51132.mod.o
2025-10-02T16:33:12.2177260Z CC [M] drivers/media/dvb-frontends/or51211.mod.o
2025-10-02T16:33:12.2649250Z CC [M] drivers/media/dvb-frontends/rtl2830.mod.o
2025-10-02T16:33:12.3638127Z CC [M] drivers/media/dvb-frontends/rtl2832.mod.o
2025-10-02T16:33:12.3978079Z CC [M] drivers/media/dvb-frontends/s5h1409.mod.o
2025-10-02T16:33:12.5125527Z CC [M] drivers/media/dvb-frontends/s5h1411.mod.o
2025-10-02T16:33:12.5508645Z CC [M] drivers/media/dvb-frontends/s5h1420.mod.o
2025-10-02T16:33:12.6325060Z CC [M] drivers/media/dvb-frontends/s921.mod.o
2025-10-02T16:33:12.7116476Z CC [M] drivers/media/dvb-frontends/si2165.mod.o
2025-10-02T16:33:12.8305664Z CC [M] drivers/media/dvb-frontends/si2168.mod.o
2025-10-02T16:33:12.8481585Z CC [M] drivers/media/dvb-frontends/si21xx.mod.o
2025-10-02T16:33:12.8754112Z CC [M] drivers/media/dvb-frontends/sp2.mod.o
2025-10-02T16:33:13.0173944Z CC [M] drivers/media/dvb-frontends/sp8870.mod.o
2025-10-02T16:33:13.0850931Z CC [M] drivers/media/dvb-frontends/sp887x.mod.o
2025-10-02T16:33:13.1495331Z CC [M] drivers/media/dvb-frontends/stb0899.mod.o
2025-10-02T16:33:13.2004631Z CC [M] drivers/media/dvb-frontends/stb6000.mod.o
2025-10-02T16:33:13.2518555Z CC [M] drivers/media/dvb-frontends/stb6100.mod.o
2025-10-02T16:33:13.3642081Z CC [M] drivers/media/dvb-frontends/stv0288.mod.o
2025-10-02T16:33:13.4368418Z CC [M] drivers/media/dvb-frontends/stv0297.mod.o
2025-10-02T16:33:13.5247912Z CC [M] drivers/media/dvb-frontends/stv0299.mod.o
2025-10-02T16:33:13.5331581Z CC [M] drivers/media/dvb-frontends/stv0367.mod.o
2025-10-02T16:33:13.6740599Z CC [M] drivers/media/dvb-frontends/stv0900.mod.o
2025-10-02T16:33:13.7184517Z CC [M] drivers/media/dvb-frontends/stv090x.mod.o
2025-10-02T16:33:13.7617937Z CC [M] drivers/media/dvb-frontends/stv0910.mod.o
2025-10-02T16:33:13.8640851Z CC [M] drivers/media/dvb-frontends/stv6110.mod.o
2025-10-02T16:33:13.8863758Z CC [M] drivers/media/dvb-frontends/stv6110x.mod.o
2025-10-02T16:33:14.0783332Z CC [M] drivers/media/dvb-frontends/stv6111.mod.o
2025-10-02T16:33:14.0884714Z CC [M] drivers/media/dvb-frontends/tc90522.mod.o
2025-10-02T16:33:14.0887838Z CC [M] drivers/media/dvb-frontends/tda10021.mod.o
2025-10-02T16:33:14.1589988Z CC [M] drivers/media/dvb-frontends/tda10023.mod.o
2025-10-02T16:33:14.3781179Z CC [M] drivers/media/dvb-frontends/tda10048.mod.o
2025-10-02T16:33:14.3886964Z CC [M] drivers/media/dvb-frontends/tda1004x.mod.o
2025-10-02T16:33:14.4461000Z CC [M] drivers/media/dvb-frontends/tda10071.mod.o
2025-10-02T16:33:14.4544449Z CC [M] drivers/media/dvb-frontends/tda10086.mod.o
2025-10-02T16:33:14.5081820Z CC [M] drivers/media/dvb-frontends/tda18271c2dd.mod.o
2025-10-02T16:33:14.7550880Z CC [M] drivers/media/dvb-frontends/tda665x.mod.o
2025-10-02T16:33:14.7720116Z CC [M] drivers/media/dvb-frontends/tda8083.mod.o
2025-10-02T16:33:14.8103908Z CC [M] drivers/media/dvb-frontends/tda8261.mod.o
2025-10-02T16:33:14.8189196Z CC [M] drivers/media/dvb-frontends/tda826x.mod.o
2025-10-02T16:33:14.8353943Z CC [M] drivers/media/dvb-frontends/ts2020.mod.o
2025-10-02T16:33:15.0781352Z CC [M] drivers/media/dvb-frontends/tua6100.mod.o
2025-10-02T16:33:15.1245215Z CC [M] drivers/media/dvb-frontends/ves1820.mod.o
2025-10-02T16:33:15.1438341Z CC [M] drivers/media/dvb-frontends/ves1x93.mod.o
2025-10-02T16:33:15.2097611Z CC [M] drivers/media/dvb-frontends/zd1301_demod.mod.o
2025-10-02T16:33:15.2725146Z CC [M] drivers/media/dvb-frontends/zl10036.mod.o
2025-10-02T16:33:15.4229112Z CC [M] drivers/media/dvb-frontends/zl10039.mod.o
2025-10-02T16:33:15.4585674Z CC [M] drivers/media/dvb-frontends/zl10353.mod.o
2025-10-02T16:33:15.5396891Z CC [M] drivers/media/firewire/firedtv.mod.o
2025-10-02T16:33:15.5661199Z CC [M] drivers/media/i2c/ad5820.mod.o
2025-10-02T16:33:15.6543018Z CC [M] drivers/media/i2c/adp1653.mod.o
2025-10-02T16:33:15.7850188Z CC [M] drivers/media/i2c/ak7375.mod.o
2025-10-02T16:33:15.8280266Z CC [M] drivers/media/i2c/aptina-pll.mod.o
2025-10-02T16:33:15.8521741Z CC [M] drivers/media/i2c/cs3308.mod.o
2025-10-02T16:33:15.9475034Z CC [M] drivers/media/i2c/cs5345.mod.o
2025-10-02T16:33:16.0999987Z CC [M] drivers/media/i2c/cs53l32a.mod.o
2025-10-02T16:33:16.1283779Z CC [M] drivers/media/i2c/cx25840/cx25840.mod.o
2025-10-02T16:33:16.1425130Z CC [M] drivers/media/i2c/dw9714.mod.o
2025-10-02T16:33:16.2481603Z CC [M] drivers/media/i2c/dw9768.mod.o
2025-10-02T16:33:16.2661295Z CC [M] drivers/media/i2c/dw9807-vcm.mod.o
2025-10-02T16:33:16.3907091Z CC [M] drivers/media/i2c/et8ek8/et8ek8.mod.o
2025-10-02T16:33:16.5417966Z CC [M] drivers/media/i2c/imx214.mod.o
2025-10-02T16:33:16.5421043Z CC [M] drivers/media/i2c/hi556.mod.o
2025-10-02T16:33:16.5627773Z CC [M] drivers/media/i2c/imx219.mod.o
2025-10-02T16:33:16.6813265Z CC [M] drivers/media/i2c/imx258.mod.o
2025-10-02T16:33:16.7953480Z CC [M] drivers/media/i2c/imx274.mod.o
2025-10-02T16:33:16.8918953Z CC [M] drivers/media/i2c/imx290.mod.o
2025-10-02T16:33:16.9070443Z CC [M] drivers/media/i2c/imx319.mod.o
2025-10-02T16:33:16.9192396Z CC [M] drivers/media/i2c/imx355.mod.o
2025-10-02T16:33:16.9744126Z CC [M] drivers/media/i2c/ir-kbd-i2c.mod.o
2025-10-02T16:33:17.2129027Z CC [M] drivers/media/i2c/lm3560.mod.o
2025-10-02T16:33:17.2530751Z CC [M] drivers/media/i2c/lm3646.mod.o
2025-10-02T16:33:17.2715776Z CC [M] drivers/media/i2c/m52790.mod.o
2025-10-02T16:33:17.2841668Z CC [M] drivers/media/i2c/m5mols/m5mols.mod.o
2025-10-02T16:33:17.2890557Z CC [M] drivers/media/i2c/msp3400.mod.o
2025-10-02T16:33:17.5866875Z CC [M] drivers/media/i2c/mt9m001.mod.o
2025-10-02T16:33:17.6090179Z CC [M] drivers/media/i2c/mt9m032.mod.o
2025-10-02T16:33:17.6235281Z CC [M] drivers/media/i2c/mt9m111.mod.o
2025-10-02T16:33:17.6299272Z CC [M] drivers/media/i2c/mt9p031.mod.o
2025-10-02T16:33:17.6544855Z CC [M] drivers/media/i2c/mt9t001.mod.o
2025-10-02T16:33:17.8733181Z CC [M] drivers/media/i2c/mt9t112.mod.o
2025-10-02T16:33:17.9506683Z CC [M] drivers/media/i2c/mt9v011.mod.o
2025-10-02T16:33:17.9743929Z CC [M] drivers/media/i2c/mt9v032.mod.o
2025-10-02T16:33:17.9913002Z CC [M] drivers/media/i2c/mt9v111.mod.o
2025-10-02T16:33:18.0994701Z CC [M] drivers/media/i2c/noon010pc30.mod.o
2025-10-02T16:33:18.2782602Z CC [M] drivers/media/i2c/ov13858.mod.o
2025-10-02T16:33:18.2791015Z CC [M] drivers/media/i2c/ov2640.mod.o
2025-10-02T16:33:18.3114413Z CC [M] drivers/media/i2c/ov2659.mod.o
2025-10-02T16:33:18.4026111Z CC [M] drivers/media/i2c/ov2680.mod.o
2025-10-02T16:33:18.4578502Z CC [M] drivers/media/i2c/ov2685.mod.o
2025-10-02T16:33:18.5874499Z CC [M] drivers/media/i2c/ov2740.mod.o
2025-10-02T16:33:18.6431004Z CC [M] drivers/media/i2c/ov5647.mod.o
2025-10-02T16:33:18.6965369Z CC [M] drivers/media/i2c/ov5670.mod.o
2025-10-02T16:33:18.7271368Z CC [M] drivers/media/i2c/ov5675.mod.o
2025-10-02T16:33:18.8253165Z CC [M] drivers/media/i2c/ov5695.mod.o
2025-10-02T16:33:18.9289337Z CC [M] drivers/media/i2c/ov6650.mod.o
2025-10-02T16:33:19.0212373Z CC [M] drivers/media/i2c/ov7251.mod.o
2025-10-02T16:33:19.0443304Z CC [M] drivers/media/i2c/ov7640.mod.o
2025-10-02T16:33:19.0563814Z CC [M] drivers/media/i2c/ov7670.mod.o
2025-10-02T16:33:19.1993597Z CC [M] drivers/media/i2c/ov772x.mod.o
2025-10-02T16:33:19.3557709Z CC [M] drivers/media/i2c/ov7740.mod.o
2025-10-02T16:33:19.3566964Z CC [M] drivers/media/i2c/ov9640.mod.o
2025-10-02T16:33:19.3589190Z CC [M] drivers/media/i2c/ov8856.mod.o
2025-10-02T16:33:19.4294410Z CC [M] drivers/media/i2c/ov9650.mod.o
2025-10-02T16:33:19.5629103Z CC [M] drivers/media/i2c/rdacm20-camera_module.mod.o
2025-10-02T16:33:19.6560265Z CC [M] drivers/media/i2c/rj54n1cb0c.mod.o
2025-10-02T16:33:19.7119792Z CC [M] drivers/media/i2c/s5c73m3/s5c73m3.mod.o
2025-10-02T16:33:19.7574060Z CC [M] drivers/media/i2c/s5k4ecgx.mod.o
2025-10-02T16:33:19.8830271Z CC [M] drivers/media/i2c/s5k5baf.mod.o
2025-10-02T16:33:19.9053910Z CC [M] drivers/media/i2c/s5k6a3.mod.o
2025-10-02T16:33:19.9663542Z CC [M] drivers/media/i2c/s5k6aa.mod.o
2025-10-02T16:33:20.0749393Z CC [M] drivers/media/i2c/saa6588.mod.o
2025-10-02T16:33:20.1434871Z CC [M] drivers/media/i2c/saa6752hs.mod.o
2025-10-02T16:33:20.2268106Z CC [M] drivers/media/i2c/saa7115.mod.o
2025-10-02T16:33:20.2903607Z CC [M] drivers/media/i2c/saa7127.mod.o
2025-10-02T16:33:20.2965856Z CC [M] drivers/media/i2c/saa717x.mod.o
2025-10-02T16:33:20.4326291Z CC [M] drivers/media/i2c/smiapp-pll.mod.o
2025-10-02T16:33:20.5021401Z CC [M] drivers/media/i2c/smiapp/smiapp.mod.o
2025-10-02T16:33:20.6002744Z CC [M] drivers/media/i2c/sony-btf-mpx.mod.o
2025-10-02T16:33:20.6538392Z CC [M] drivers/media/i2c/sr030pc30.mod.o
2025-10-02T16:33:20.7230784Z CC [M] drivers/media/i2c/tda7432.mod.o
2025-10-02T16:33:20.7701742Z CC [M] drivers/media/i2c/tda9840.mod.o
2025-10-02T16:33:20.8741061Z CC [M] drivers/media/i2c/tea6415c.mod.o
2025-10-02T16:33:21.0471976Z CC [M] drivers/media/i2c/tea6420.mod.o
2025-10-02T16:33:21.0488779Z CC [M] drivers/media/i2c/tvaudio.mod.o
2025-10-02T16:33:21.0678310Z CC [M] drivers/media/i2c/tvp5150.mod.o
2025-10-02T16:33:21.0827069Z CC [M] drivers/media/i2c/tw2804.mod.o
2025-10-02T16:33:21.1613859Z CC [M] drivers/media/i2c/tw9903.mod.o
2025-10-02T16:33:21.3961217Z CC [M] drivers/media/i2c/tw9906.mod.o
2025-10-02T16:33:21.3966394Z CC [M] drivers/media/i2c/uda1342.mod.o
2025-10-02T16:33:21.4630463Z CC [M] drivers/media/i2c/upd64031a.mod.o
2025-10-02T16:33:21.4767856Z CC [M] drivers/media/i2c/upd64083.mod.o
2025-10-02T16:33:21.4995880Z CC [M] drivers/media/i2c/vp27smpx.mod.o
2025-10-02T16:33:21.7366315Z CC [M] drivers/media/i2c/vs6624.mod.o
2025-10-02T16:33:21.7700839Z CC [M] drivers/media/i2c/wm8739.mod.o
2025-10-02T16:33:21.7822766Z CC [M] drivers/media/i2c/wm8775.mod.o
2025-10-02T16:33:21.8084113Z CC [M] drivers/media/mc/mc.mod.o
2025-10-02T16:33:21.9060802Z CC [M] drivers/media/mmc/siano/smssdio.mod.o
2025-10-02T16:33:22.0625612Z CC [M] drivers/media/pci/b2c2/b2c2-flexcop-pci.mod.o
2025-10-02T16:33:22.1815213Z CC [M] drivers/media/pci/bt8xx/bt878.mod.o
2025-10-02T16:33:22.1852895Z CC [M] drivers/media/pci/bt8xx/bttv.mod.o
2025-10-02T16:33:22.2028975Z CC [M] drivers/media/pci/bt8xx/dst.mod.o
2025-10-02T16:33:22.2182063Z CC [M] drivers/media/pci/bt8xx/dst_ca.mod.o
2025-10-02T16:33:22.3562951Z CC [M] drivers/media/pci/bt8xx/dvb-bt8xx.mod.o
2025-10-02T16:33:22.4811653Z CC [M] drivers/media/pci/cx18/cx18-alsa.mod.o
2025-10-02T16:33:22.5799858Z CC [M] drivers/media/pci/cx18/cx18.mod.o
2025-10-02T16:33:22.6450682Z CC [M] drivers/media/pci/cx23885/altera-ci.mod.o
2025-10-02T16:33:22.6509022Z CC [M] drivers/media/pci/cx23885/cx23885.mod.o
2025-10-02T16:33:22.6623100Z CC [M] drivers/media/pci/cx25821/cx25821-alsa.mod.o
2025-10-02T16:33:22.8563698Z CC [M] drivers/media/pci/cx25821/cx25821.mod.o
2025-10-02T16:33:22.9119849Z CC [M] drivers/media/pci/cx88/cx88-alsa.mod.o
2025-10-02T16:33:22.9603585Z CC [M] drivers/media/pci/cx88/cx88-blackbird.mod.o
2025-10-02T16:33:22.9973045Z CC [M] drivers/media/pci/cx88/cx88-dvb.mod.o
2025-10-02T16:33:23.0545244Z CC [M] drivers/media/pci/cx88/cx88-vp3054-i2c.mod.o
2025-10-02T16:33:23.1823398Z CC [M] drivers/media/pci/cx88/cx8800.mod.o
2025-10-02T16:33:23.3010200Z CC [M] drivers/media/pci/cx88/cx8802.mod.o
2025-10-02T16:33:23.3261624Z CC [M] drivers/media/pci/cx88/cx88xx.mod.o
2025-10-02T16:33:23.3500346Z CC [M] drivers/media/pci/ddbridge/ddbridge-dummy-fe.mod.o
2025-10-02T16:33:23.4244990Z CC [M] drivers/media/pci/ddbridge/ddbridge.mod.o
2025-10-02T16:33:23.5854050Z CC [M] drivers/media/pci/dm1105/dm1105.mod.o
2025-10-02T16:33:23.6346634Z CC [M] drivers/media/pci/dt3155/dt3155.mod.o
2025-10-02T16:33:23.6552740Z CC [M] drivers/media/pci/intel/ipu3/ipu3-cio2.mod.o
2025-10-02T16:33:23.7225999Z CC [M] drivers/media/pci/ivtv/ivtv-alsa.mod.o
2025-10-02T16:33:23.7381302Z CC [M] drivers/media/pci/ivtv/ivtv.mod.o
2025-10-02T16:33:23.9404589Z CC [M] drivers/media/pci/ivtv/ivtvfb.mod.o
2025-10-02T16:33:24.0357260Z CC [M] drivers/media/pci/mantis/hopper.mod.o
2025-10-02T16:33:24.0532575Z CC [M] drivers/media/pci/mantis/mantis.mod.o
2025-10-02T16:33:24.0790700Z CC [M] drivers/media/pci/mantis/mantis_core.mod.o
2025-10-02T16:33:24.1000760Z CC [M] drivers/media/pci/meye/meye.mod.o
2025-10-02T16:33:24.2332655Z CC [M] drivers/media/pci/netup_unidvb/netup-unidvb.mod.o
2025-10-02T16:33:24.3601444Z CC [M] drivers/media/pci/ngene/ngene.mod.o
2025-10-02T16:33:24.4414140Z CC [M] drivers/media/pci/pluto2/pluto2.mod.o
2025-10-02T16:33:24.5003030Z CC [M] drivers/media/pci/pt1/earth-pt1.mod.o
2025-10-02T16:33:24.5245289Z CC [M] drivers/media/pci/pt3/earth-pt3.mod.o
2025-10-02T16:33:24.5487526Z CC [M] drivers/media/pci/saa7134/saa7134-alsa.mod.o
2025-10-02T16:33:24.7577055Z CC [M] drivers/media/pci/saa7134/saa7134-dvb.mod.o
2025-10-02T16:33:24.7947329Z CC [M] drivers/media/pci/saa7134/saa7134-empress.mod.o
2025-10-02T16:33:24.8135327Z CC [M] drivers/media/pci/saa7134/saa7134-go7007.mod.o
2025-10-02T16:33:24.8361420Z CC [M] drivers/media/pci/saa7134/saa7134.mod.o
2025-10-02T16:33:24.9354475Z CC [M] drivers/media/pci/saa7146/hexium_gemini.mod.o
2025-10-02T16:33:25.1372519Z CC [M] drivers/media/pci/saa7146/hexium_orion.mod.o
2025-10-02T16:33:25.1572912Z CC [M] drivers/media/pci/saa7146/mxb.mod.o
2025-10-02T16:33:25.1643936Z CC [M] drivers/media/pci/saa7164/saa7164.mod.o
2025-10-02T16:33:25.2040393Z CC [M] drivers/media/pci/smipcie/smipcie.mod.o
2025-10-02T16:33:25.3214014Z CC [M] drivers/media/pci/solo6x10/solo6x10.mod.o
2025-10-02T16:33:25.4658190Z CC [M] drivers/media/pci/ttpci/budget-av.mod.o
2025-10-02T16:33:25.4940080Z CC [M] drivers/media/pci/ttpci/budget-ci.mod.o
2025-10-02T16:33:25.5483759Z CC [M] drivers/media/pci/ttpci/budget-core.mod.o
2025-10-02T16:33:25.5793549Z CC [M] drivers/media/pci/ttpci/budget-patch.mod.o
2025-10-02T16:33:25.7142568Z CC [M] drivers/media/pci/ttpci/budget.mod.o
2025-10-02T16:33:25.7722165Z CC [M] drivers/media/pci/ttpci/dvb-ttpci.mod.o
2025-10-02T16:33:25.8423934Z CC [M] drivers/media/pci/ttpci/ttpci-eeprom.mod.o
2025-10-02T16:33:25.9354695Z CC [M] drivers/media/pci/tw5864/tw5864.mod.o
2025-10-02T16:33:26.0428466Z CC [M] drivers/media/pci/tw68/tw68.mod.o
2025-10-02T16:33:26.0556100Z CC [M] drivers/media/pci/tw686x/tw686x.mod.o
2025-10-02T16:33:26.0650895Z CC [M] drivers/media/platform/aspeed-video.mod.o
2025-10-02T16:33:26.1346690Z CC [M] drivers/media/platform/cadence/cdns-csi2rx.mod.o
2025-10-02T16:33:26.3277947Z CC [M] drivers/media/platform/cadence/cdns-csi2tx.mod.o
2025-10-02T16:33:26.3886136Z CC [M] drivers/media/platform/m2m-deinterlace.mod.o
2025-10-02T16:33:26.4328565Z CC [M] drivers/media/platform/marvell-ccic/cafe_ccic.mod.o
2025-10-02T16:33:26.4451720Z CC [M] drivers/media/platform/marvell-ccic/mcam-core.mod.o
2025-10-02T16:33:26.4976536Z CC [M] drivers/media/radio/dsbr100.mod.o
2025-10-02T16:33:26.7058938Z CC [M] drivers/media/radio/radio-keene.mod.o
2025-10-02T16:33:26.7265913Z CC [M] drivers/media/radio/radio-ma901.mod.o
2025-10-02T16:33:26.7585716Z CC [M] drivers/media/radio/radio-maxiradio.mod.o
2025-10-02T16:33:26.8078686Z CC [M] drivers/media/radio/radio-mr800.mod.o
2025-10-02T16:33:26.9019386Z CC [M] drivers/media/radio/radio-raremono.mod.o
2025-10-02T16:33:27.0480911Z CC [M] drivers/media/radio/radio-shark.mod.o
2025-10-02T16:33:27.0684887Z CC [M] drivers/media/radio/radio-si476x.mod.o
2025-10-02T16:33:27.1156345Z CC [M] drivers/media/radio/radio-tea5764.mod.o
2025-10-02T16:33:27.1511094Z CC [M] drivers/media/radio/radio-wl1273.mod.o
2025-10-02T16:33:27.2569202Z CC [M] drivers/media/radio/saa7706h.mod.o
2025-10-02T16:33:27.4375159Z CC [M] drivers/media/radio/shark2.mod.o
2025-10-02T16:33:27.4914062Z CC [M] drivers/media/radio/si470x/radio-si470x-common.mod.o
2025-10-02T16:33:27.4955148Z CC [M] drivers/media/radio/si470x/radio-si470x-i2c.mod.o
2025-10-02T16:33:27.5106551Z CC [M] drivers/media/radio/si470x/radio-si470x-usb.mod.o
2025-10-02T16:33:27.5715588Z CC [M] drivers/media/radio/si4713/radio-platform-si4713.mod.o
2025-10-02T16:33:27.7335848Z CC [M] drivers/media/radio/si4713/radio-usb-si4713.mod.o
2025-10-02T16:33:27.8318773Z CC [M] drivers/media/radio/si4713/si4713.mod.o
2025-10-02T16:33:27.8712550Z CC [M] drivers/media/radio/tea575x.mod.o
2025-10-02T16:33:27.9119062Z CC [M] drivers/media/radio/tef6862.mod.o
2025-10-02T16:33:27.9159312Z CC [M] drivers/media/radio/wl128x/fm_drv.mod.o
2025-10-02T16:33:28.0618663Z CC [M] drivers/media/rc/ati_remote.mod.o
2025-10-02T16:33:28.2146421Z CC [M] drivers/media/rc/fintek-cir.mod.o
2025-10-02T16:33:28.2158109Z CC [M] drivers/media/rc/ene_ir.mod.o
2025-10-02T16:33:28.2579336Z CC [M] drivers/media/rc/igorplugusb.mod.o
2025-10-02T16:33:28.2751088Z CC [M] drivers/media/rc/iguanair.mod.o
2025-10-02T16:33:28.4873508Z CC [M] drivers/media/rc/imon.mod.o
2025-10-02T16:33:28.5359167Z CC [M] drivers/media/rc/imon_raw.mod.o
2025-10-02T16:33:28.5415648Z CC [M] drivers/media/rc/ir-imon-decoder.mod.o
2025-10-02T16:33:28.5840830Z CC [M] drivers/media/rc/ir-jvc-decoder.mod.o
2025-10-02T16:33:28.6831315Z CC [M] drivers/media/rc/ir-mce_kbd-decoder.mod.o
2025-10-02T16:33:28.8557996Z CC [M] drivers/media/rc/ir-nec-decoder.mod.o
2025-10-02T16:33:28.8639412Z CC [M] drivers/media/rc/ir-rc5-decoder.mod.o
2025-10-02T16:33:28.9288945Z CC [M] drivers/media/rc/ir-rc6-decoder.mod.o
2025-10-02T16:33:28.9572553Z CC [M] drivers/media/rc/ir-rcmm-decoder.mod.o
2025-10-02T16:33:29.0626836Z CC [M] drivers/media/rc/ir-sanyo-decoder.mod.o
2025-10-02T16:33:29.1907581Z CC [M] drivers/media/rc/ir-sharp-decoder.mod.o
2025-10-02T16:33:29.2371211Z CC [M] drivers/media/rc/ir-sony-decoder.mod.o
2025-10-02T16:33:29.2601763Z CC [M] drivers/media/rc/ir-xmp-decoder.mod.o
2025-10-02T16:33:29.2869281Z CC [M] drivers/media/rc/ir_toy.mod.o
2025-10-02T16:33:29.4538102Z CC [M] drivers/media/rc/ite-cir.mod.o
2025-10-02T16:33:29.4778278Z CC [M] drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.mod.o
2025-10-02T16:33:29.6235139Z CC [M] drivers/media/rc/keymaps/rc-alink-dtu-m.mod.o
2025-10-02T16:33:29.6749644Z CC [M] drivers/media/rc/keymaps/rc-anysee.mod.o
2025-10-02T16:33:29.7263083Z CC [M] drivers/media/rc/keymaps/rc-apac-viewcomp.mod.o
2025-10-02T16:33:29.7756130Z CC [M] drivers/media/rc/keymaps/rc-astrometa-t2hybrid.mod.o
2025-10-02T16:33:29.8032276Z CC [M] drivers/media/rc/keymaps/rc-asus-pc39.mod.o
2025-10-02T16:33:29.9649429Z CC [M] drivers/media/rc/keymaps/rc-asus-ps3-100.mod.o
2025-10-02T16:33:30.0406781Z CC [M] drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.mod.o
2025-10-02T16:33:30.0945256Z CC [M] drivers/media/rc/keymaps/rc-ati-x10.mod.o
2025-10-02T16:33:30.1381127Z CC [M] drivers/media/rc/keymaps/rc-avermedia-a16d.mod.o
2025-10-02T16:33:30.1976035Z CC [M] drivers/media/rc/keymaps/rc-avermedia-cardbus.mod.o
2025-10-02T16:33:30.3369077Z CC [M] drivers/media/rc/keymaps/rc-avermedia-dvbt.mod.o
2025-10-02T16:33:30.4039397Z CC [M] drivers/media/rc/keymaps/rc-avermedia-m135a.mod.o
2025-10-02T16:33:30.4681665Z CC [M] drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.mod.o
2025-10-02T16:33:30.4837367Z CC [M] drivers/media/rc/keymaps/rc-avermedia-rm-ks.mod.o
2025-10-02T16:33:30.6113312Z CC [M] drivers/media/rc/keymaps/rc-avermedia.mod.o
2025-10-02T16:33:30.6394213Z CC [M] drivers/media/rc/keymaps/rc-avertv-303.mod.o
2025-10-02T16:33:30.8280359Z CC [M] drivers/media/rc/keymaps/rc-azurewave-ad-tu700.mod.o
2025-10-02T16:33:30.8336386Z CC [M] drivers/media/rc/keymaps/rc-beelink-gs1.mod.o
2025-10-02T16:33:30.8886811Z CC [M] drivers/media/rc/keymaps/rc-behold-columbus.mod.o
2025-10-02T16:33:30.9299267Z CC [M] drivers/media/rc/keymaps/rc-behold.mod.o
2025-10-02T16:33:30.9424867Z CC [M] drivers/media/rc/keymaps/rc-budget-ci-old.mod.o
2025-10-02T16:33:31.2336585Z CC [M] drivers/media/rc/keymaps/rc-cinergy-1400.mod.o
2025-10-02T16:33:31.2431725Z CC [M] drivers/media/rc/keymaps/rc-cinergy.mod.o
2025-10-02T16:33:31.2581499Z CC [M] drivers/media/rc/keymaps/rc-d680-dmb.mod.o
2025-10-02T16:33:31.2585284Z CC [M] drivers/media/rc/keymaps/rc-delock-61959.mod.o
2025-10-02T16:33:31.2597451Z CC [M] drivers/media/rc/keymaps/rc-dib0700-nec.mod.o
2025-10-02T16:33:31.5615911Z CC [M] drivers/media/rc/keymaps/rc-dib0700-rc5.mod.o
2025-10-02T16:33:31.5669895Z CC [M] drivers/media/rc/keymaps/rc-digitalnow-tinytwin.mod.o
2025-10-02T16:33:31.6131374Z CC [M] drivers/media/rc/keymaps/rc-digittrade.mod.o
2025-10-02T16:33:31.6421305Z CC [M] drivers/media/rc/keymaps/rc-dm1105-nec.mod.o
2025-10-02T16:33:31.6803195Z CC [M] drivers/media/rc/keymaps/rc-dntv-live-dvb-t.mod.o
2025-10-02T16:33:31.9260854Z CC [M] drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.mod.o
2025-10-02T16:33:31.9492581Z CC [M] drivers/media/rc/keymaps/rc-dtt200u.mod.o
2025-10-02T16:33:31.9535277Z CC [M] drivers/media/rc/keymaps/rc-dvbsky.mod.o
2025-10-02T16:33:31.9749709Z CC [M] drivers/media/rc/keymaps/rc-dvico-mce.mod.o
2025-10-02T16:33:32.0515348Z CC [M] drivers/media/rc/keymaps/rc-dvico-portable.mod.o
2025-10-02T16:33:32.2405563Z CC [M] drivers/media/rc/keymaps/rc-em-terratec.mod.o
2025-10-02T16:33:32.2652603Z CC [M] drivers/media/rc/keymaps/rc-encore-enltv-fm53.mod.o
2025-10-02T16:33:32.3615619Z CC [M] drivers/media/rc/keymaps/rc-encore-enltv.mod.o
2025-10-02T16:33:32.3639967Z CC [M] drivers/media/rc/keymaps/rc-encore-enltv2.mod.o
2025-10-02T16:33:32.4608030Z CC [M] drivers/media/rc/keymaps/rc-evga-indtube.mod.o
2025-10-02T16:33:32.5883997Z CC [M] drivers/media/rc/keymaps/rc-eztv.mod.o
2025-10-02T16:33:32.6304669Z CC [M] drivers/media/rc/keymaps/rc-flydvb.mod.o
2025-10-02T16:33:32.7189808Z CC [M] drivers/media/rc/keymaps/rc-flyvideo.mod.o
2025-10-02T16:33:32.7431921Z CC [M] drivers/media/rc/keymaps/rc-fusionhdtv-mce.mod.o
2025-10-02T16:33:32.7457868Z CC [M] drivers/media/rc/keymaps/rc-gadmei-rm008z.mod.o
2025-10-02T16:33:32.9874449Z CC [M] drivers/media/rc/keymaps/rc-geekbox.mod.o
2025-10-02T16:33:33.0150815Z CC [M] drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.mod.o
2025-10-02T16:33:33.0155925Z CC [M] drivers/media/rc/keymaps/rc-gotview7135.mod.o
2025-10-02T16:33:33.0239306Z CC [M] drivers/media/rc/keymaps/rc-hauppauge.mod.o
2025-10-02T16:33:33.1861425Z CC [M] drivers/media/rc/keymaps/rc-hisi-poplar.mod.o
2025-10-02T16:33:33.3449384Z CC [M] drivers/media/rc/keymaps/rc-hisi-tv-demo.mod.o
2025-10-02T16:33:33.3496577Z CC [M] drivers/media/rc/keymaps/rc-imon-mce.mod.o
2025-10-02T16:33:33.3655510Z CC [M] drivers/media/rc/keymaps/rc-imon-pad.mod.o
2025-10-02T16:33:33.3677224Z CC [M] drivers/media/rc/keymaps/rc-imon-rsc.mod.o
2025-10-02T16:33:33.6151976Z CC [M] drivers/media/rc/keymaps/rc-iodata-bctv7e.mod.o
2025-10-02T16:33:33.6925770Z CC [M] drivers/media/rc/keymaps/rc-it913x-v1.mod.o
2025-10-02T16:33:33.7148525Z CC [M] drivers/media/rc/keymaps/rc-it913x-v2.mod.o
2025-10-02T16:33:33.7376029Z CC [M] drivers/media/rc/keymaps/rc-kaiomy.mod.o
2025-10-02T16:33:33.7385946Z CC [M] drivers/media/rc/keymaps/rc-khadas.mod.o
2025-10-02T16:33:33.9005004Z CC [M] drivers/media/rc/keymaps/rc-kworld-315u.mod.o
2025-10-02T16:33:34.0251845Z CC [M] drivers/media/rc/keymaps/rc-kworld-pc150u.mod.o
2025-10-02T16:33:34.1348782Z CC [M] drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.mod.o
2025-10-02T16:33:34.1428973Z CC [M] drivers/media/rc/keymaps/rc-leadtek-y04g0051.mod.o
2025-10-02T16:33:34.1459711Z CC [M] drivers/media/rc/keymaps/rc-lme2510.mod.o
2025-10-02T16:33:34.2200337Z CC [M] drivers/media/rc/keymaps/rc-manli.mod.o
2025-10-02T16:33:34.4068190Z CC [M] drivers/media/rc/keymaps/rc-medion-x10-digitainer.mod.o
2025-10-02T16:33:34.4127066Z CC [M] drivers/media/rc/keymaps/rc-medion-x10-or2x.mod.o
2025-10-02T16:33:34.4226561Z CC [M] drivers/media/rc/keymaps/rc-medion-x10.mod.o
2025-10-02T16:33:34.4902439Z CC [M] drivers/media/rc/keymaps/rc-msi-digivox-ii.mod.o
2025-10-02T16:33:34.7022207Z CC [M] drivers/media/rc/keymaps/rc-msi-digivox-iii.mod.o
2025-10-02T16:33:34.7159400Z CC [M] drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.mod.o
2025-10-02T16:33:34.7246547Z CC [M] drivers/media/rc/keymaps/rc-msi-tvanywhere.mod.o
2025-10-02T16:33:34.8739382Z CC [M] drivers/media/rc/keymaps/rc-nebula.mod.o
2025-10-02T16:33:34.8920949Z CC [M] drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.mod.o
2025-10-02T16:33:35.0729002Z CC [M] drivers/media/rc/keymaps/rc-norwood.mod.o
2025-10-02T16:33:35.0809378Z CC [M] drivers/media/rc/keymaps/rc-npgtech.mod.o
2025-10-02T16:33:35.0841582Z CC [M] drivers/media/rc/keymaps/rc-odroid.mod.o
2025-10-02T16:33:35.1939456Z CC [M] drivers/media/rc/keymaps/rc-pctv-sedna.mod.o
2025-10-02T16:33:35.3325146Z CC [M] drivers/media/rc/keymaps/rc-pinnacle-color.mod.o
2025-10-02T16:33:35.3754664Z CC [M] drivers/media/rc/keymaps/rc-pinnacle-grey.mod.o
2025-10-02T16:33:35.3972968Z CC [M] drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.mod.o
2025-10-02T16:33:35.5077546Z CC [M] drivers/media/rc/keymaps/rc-pixelview-002t.mod.o
2025-10-02T16:33:35.5538978Z CC [M] drivers/media/rc/keymaps/rc-pixelview-mk12.mod.o
2025-10-02T16:33:35.6946813Z CC [M] drivers/media/rc/keymaps/rc-pixelview-new.mod.o
2025-10-02T16:33:35.7233822Z CC [M] drivers/media/rc/keymaps/rc-pixelview.mod.o
2025-10-02T16:33:35.7800305Z CC [M] drivers/media/rc/keymaps/rc-powercolor-real-angel.mod.o
2025-10-02T16:33:35.9593922Z CC [M] drivers/media/rc/keymaps/rc-proteus-2309.mod.o
2025-10-02T16:33:35.9936422Z CC [M] drivers/media/rc/keymaps/rc-purpletv.mod.o
2025-10-02T16:33:36.0209146Z CC [M] drivers/media/rc/keymaps/rc-pv951.mod.o
2025-10-02T16:33:36.0408098Z CC [M] drivers/media/rc/keymaps/rc-rc6-mce.mod.o
2025-10-02T16:33:36.1128188Z CC [M] drivers/media/rc/keymaps/rc-real-audio-220-32-keys.mod.o
2025-10-02T16:33:36.3181276Z CC [M] drivers/media/rc/keymaps/rc-reddo.mod.o
2025-10-02T16:33:36.3433627Z CC [M] drivers/media/rc/keymaps/rc-snapstream-firefly.mod.o
2025-10-02T16:33:36.3749913Z CC [M] drivers/media/rc/keymaps/rc-streamzap.mod.o
2025-10-02T16:33:36.4429707Z CC [M] drivers/media/rc/keymaps/rc-su3000.mod.o
2025-10-02T16:33:36.5275086Z CC [M] drivers/media/rc/keymaps/rc-tango.mod.o
2025-10-02T16:33:36.6395288Z CC [M] drivers/media/rc/keymaps/rc-tanix-tx3mini.mod.o
2025-10-02T16:33:36.6909939Z CC [M] drivers/media/rc/keymaps/rc-tanix-tx5max.mod.o
2025-10-02T16:33:36.7449089Z CC [M] drivers/media/rc/keymaps/rc-tbs-nec.mod.o
2025-10-02T16:33:36.8051886Z CC [M] drivers/media/rc/keymaps/rc-technisat-ts35.mod.o
2025-10-02T16:33:36.9458188Z CC [M] drivers/media/rc/keymaps/rc-technisat-usb2.mod.o
2025-10-02T16:33:36.9649030Z CC [M] drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.mod.o
2025-10-02T16:33:36.9790160Z CC [M] drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.mod.o
2025-10-02T16:33:37.2043180Z CC [M] drivers/media/rc/keymaps/rc-terratec-cinergy-xs.mod.o
2025-10-02T16:33:37.2213705Z CC [M] drivers/media/rc/keymaps/rc-terratec-slim-2.mod.o
2025-10-02T16:33:37.2602326Z CC [M] drivers/media/rc/keymaps/rc-terratec-slim.mod.o
2025-10-02T16:33:37.2620176Z CC [M] drivers/media/rc/keymaps/rc-tevii-nec.mod.o
2025-10-02T16:33:37.3348408Z CC [M] drivers/media/rc/keymaps/rc-tivo.mod.o
2025-10-02T16:33:37.5686959Z CC [M] drivers/media/rc/keymaps/rc-total-media-in-hand-02.mod.o
2025-10-02T16:33:37.5720869Z CC [M] drivers/media/rc/keymaps/rc-total-media-in-hand.mod.o
2025-10-02T16:33:37.6122804Z CC [M] drivers/media/rc/keymaps/rc-trekstor.mod.o
2025-10-02T16:33:37.6350125Z CC [M] drivers/media/rc/keymaps/rc-tt-1500.mod.o
2025-10-02T16:33:37.7704536Z CC [M] drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.mod.o
2025-10-02T16:33:37.8623546Z CC [M] drivers/media/rc/keymaps/rc-twinhan1027.mod.o
2025-10-02T16:33:37.9560946Z CC [M] drivers/media/rc/keymaps/rc-vega-s9x.mod.o
2025-10-02T16:33:37.9658395Z CC [M] drivers/media/rc/keymaps/rc-videomate-m1f.mod.o
2025-10-02T16:33:37.9801538Z CC [M] drivers/media/rc/keymaps/rc-videomate-s350.mod.o
2025-10-02T16:33:38.1493453Z CC [M] drivers/media/rc/keymaps/rc-videomate-tv-pvr.mod.o
2025-10-02T16:33:38.2019288Z CC [M] drivers/media/rc/keymaps/rc-videostrong-kii-pro.mod.o
2025-10-02T16:33:38.2568617Z CC [M] drivers/media/rc/keymaps/rc-wetek-hub.mod.o
2025-10-02T16:33:38.4167844Z CC [M] drivers/media/rc/keymaps/rc-wetek-play2.mod.o
2025-10-02T16:33:38.4318832Z CC [M] drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.mod.o
2025-10-02T16:33:38.5103935Z CC [M] drivers/media/rc/keymaps/rc-winfast.mod.o
2025-10-02T16:33:38.5373551Z CC [M] drivers/media/rc/keymaps/rc-x96max.mod.o
2025-10-02T16:33:38.5894890Z CC [M] drivers/media/rc/keymaps/rc-xbox-dvd.mod.o
2025-10-02T16:33:38.7783405Z CC [M] drivers/media/rc/keymaps/rc-zx-irdec.mod.o
2025-10-02T16:33:38.7862706Z CC [M] drivers/media/rc/mceusb.mod.o
2025-10-02T16:33:38.8182824Z CC [M] drivers/media/rc/nuvoton-cir.mod.o
2025-10-02T16:33:38.8622925Z CC [M] drivers/media/rc/rc-loopback.mod.o
2025-10-02T16:33:39.0225334Z CC [M] drivers/media/rc/redrat3.mod.o
2025-10-02T16:33:39.0681680Z CC [M] drivers/media/rc/serial_ir.mod.o
2025-10-02T16:33:39.1407823Z CC [M] drivers/media/rc/sir_ir.mod.o
2025-10-02T16:33:39.1657985Z CC [M] drivers/media/rc/streamzap.mod.o
2025-10-02T16:33:39.2729030Z CC [M] drivers/media/rc/ttusbir.mod.o
2025-10-02T16:33:39.3847434Z CC [M] drivers/media/rc/winbond-cir.mod.o
2025-10-02T16:33:39.4413490Z CC [M] drivers/media/rc/xbox_remote.mod.o
2025-10-02T16:33:39.5355530Z CC [M] drivers/media/spi/cxd2880-spi.mod.o
2025-10-02T16:33:39.6122812Z CC [M] drivers/media/test-drivers/vicodec/vicodec.mod.o
2025-10-02T16:33:39.6178127Z CC [M] drivers/media/test-drivers/vidtv/dvb-vidtv-bridge.mod.o
2025-10-02T16:33:39.6772033Z CC [M] drivers/media/test-drivers/vidtv/dvb-vidtv-demod.mod.o
2025-10-02T16:33:39.9103591Z CC [M] drivers/media/test-drivers/vidtv/dvb-vidtv-tuner.mod.o
2025-10-02T16:33:39.9142779Z CC [M] drivers/media/test-drivers/vimc/vimc.mod.o
2025-10-02T16:33:39.9178626Z CC [M] drivers/media/test-drivers/vim2m.mod.o
2025-10-02T16:33:39.9727809Z CC [M] drivers/media/test-drivers/vivid/vivid.mod.o
2025-10-02T16:33:40.0098255Z CC [M] drivers/media/tuners/e4000.mod.o
2025-10-02T16:33:40.2197032Z CC [M] drivers/media/tuners/fc0011.mod.o
2025-10-02T16:33:40.2454430Z CC [M] drivers/media/tuners/fc0012.mod.o
2025-10-02T16:33:40.2751245Z CC [M] drivers/media/tuners/fc0013.mod.o
2025-10-02T16:33:40.3565953Z CC [M] drivers/media/tuners/fc2580.mod.o
2025-10-02T16:33:40.4391595Z CC [M] drivers/media/tuners/it913x.mod.o
2025-10-02T16:33:40.5144847Z CC [M] drivers/media/tuners/m88rs6000t.mod.o
2025-10-02T16:33:40.5541081Z CC [M] drivers/media/tuners/max2165.mod.o
2025-10-02T16:33:40.6573102Z CC [M] drivers/media/tuners/mc44s803.mod.o
2025-10-02T16:33:40.8044688Z CC [M] drivers/media/tuners/mt2060.mod.o
2025-10-02T16:33:40.8123924Z CC [M] drivers/media/tuners/mt2063.mod.o
2025-10-02T16:33:40.8389336Z CC [M] drivers/media/tuners/mt20xx.mod.o
2025-10-02T16:33:40.8672969Z CC [M] drivers/media/tuners/mt2131.mod.o
2025-10-02T16:33:41.0774851Z CC [M] drivers/media/tuners/mt2266.mod.o
2025-10-02T16:33:41.1565829Z CC [M] drivers/media/tuners/mxl301rf.mod.o
2025-10-02T16:33:41.1577864Z CC [M] drivers/media/tuners/mxl5007t.mod.o
2025-10-02T16:33:41.1594613Z CC [M] drivers/media/tuners/mxl5005s.mod.o
2025-10-02T16:33:41.3102108Z CC [M] drivers/media/tuners/qm1d1b0004.mod.o
2025-10-02T16:33:41.3958838Z CC [M] drivers/media/tuners/qm1d1c0042.mod.o
2025-10-02T16:33:41.4386531Z CC [M] drivers/media/tuners/qt1010.mod.o
2025-10-02T16:33:41.4910065Z CC [M] drivers/media/tuners/r820t.mod.o
2025-10-02T16:33:41.6078197Z CC [M] drivers/media/tuners/si2157.mod.o
2025-10-02T16:33:41.7102360Z CC [M] drivers/media/tuners/tda18218.mod.o
2025-10-02T16:33:41.7130530Z CC [M] drivers/media/tuners/tda18212.mod.o
2025-10-02T16:33:41.7962221Z CC [M] drivers/media/tuners/tda18250.mod.o
2025-10-02T16:33:41.8566841Z CC [M] drivers/media/tuners/tda18271.mod.o
2025-10-02T16:33:41.9773282Z CC [M] drivers/media/tuners/tda827x.mod.o
2025-10-02T16:33:42.0652099Z CC [M] drivers/media/tuners/tda8290.mod.o
2025-10-02T16:33:42.1084407Z CC [M] drivers/media/tuners/tda9887.mod.o
2025-10-02T16:33:42.1257398Z CC [M] drivers/media/tuners/tea5761.mod.o
2025-10-02T16:33:42.1673930Z CC [M] drivers/media/tuners/tea5767.mod.o
2025-10-02T16:33:42.4230975Z CC [M] drivers/media/tuners/tua9001.mod.o
2025-10-02T16:33:42.4359842Z CC [M] drivers/media/tuners/tuner-simple.mod.o
2025-10-02T16:33:42.4391045Z CC [M] drivers/media/tuners/tuner-types.mod.o
2025-10-02T16:33:42.4409949Z CC [M] drivers/media/tuners/tuner-xc2028.mod.o
2025-10-02T16:33:42.5164002Z CC [M] drivers/media/tuners/xc4000.mod.o
2025-10-02T16:33:42.7302791Z CC [M] drivers/media/tuners/xc5000.mod.o
2025-10-02T16:33:42.8049244Z CC [M] drivers/media/usb/as102/dvb-as102.mod.o
2025-10-02T16:33:42.8291483Z CC [M] drivers/media/usb/au0828/au0828.mod.o
2025-10-02T16:33:42.8314765Z CC [M] drivers/media/usb/b2c2/b2c2-flexcop-usb.mod.o
2025-10-02T16:33:42.9426207Z CC [M] drivers/media/usb/cpia2/cpia2.mod.o
2025-10-02T16:33:43.0523576Z CC [M] drivers/media/usb/cx231xx/cx231xx-alsa.mod.o
2025-10-02T16:33:43.0981626Z CC [M] drivers/media/usb/cx231xx/cx231xx-dvb.mod.o
2025-10-02T16:33:43.1984804Z CC [M] drivers/media/usb/cx231xx/cx231xx.mod.o
2025-10-02T16:33:43.2604814Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-af9015.mod.o
2025-10-02T16:33:43.3557472Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-af9035.mod.o
2025-10-02T16:33:43.3903154Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-anysee.mod.o
2025-10-02T16:33:43.4107776Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-au6610.mod.o
2025-10-02T16:33:43.6240552Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-az6007.mod.o
2025-10-02T16:33:43.6307741Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-ce6230.mod.o
2025-10-02T16:33:43.6739730Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-dvbsky.mod.o
2025-10-02T16:33:43.7166107Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-ec168.mod.o
2025-10-02T16:33:43.8448424Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-gl861.mod.o
2025-10-02T16:33:43.9577743Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-lmedm04.mod.o
2025-10-02T16:33:43.9662549Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-mxl111sf.mod.o
2025-10-02T16:33:43.9743814Z CC [M] drivers/media/usb/dvb-usb-v2/dvb-usb-rtl28xxu.mod.o
2025-10-02T16:33:44.0625892Z CC [M] drivers/media/usb/dvb-usb-v2/dvb_usb_v2.mod.o
2025-10-02T16:33:44.2783589Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-demod.mod.o
2025-10-02T16:33:44.2911767Z CC [M] drivers/media/usb/dvb-usb-v2/mxl111sf-tuner.mod.o
2025-10-02T16:33:44.3261328Z CC [M] drivers/media/usb/dvb-usb-v2/zd1301.mod.o
2025-10-02T16:33:44.4128214Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-a800.mod.o
2025-10-02T16:33:44.4136914Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-af9005-remote.mod.o
2025-10-02T16:33:44.5629912Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-af9005.mod.o
2025-10-02T16:33:44.6773554Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-az6027.mod.o
2025-10-02T16:33:44.7132619Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-cinergyT2.mod.o
2025-10-02T16:33:44.7215485Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-cxusb.mod.o
2025-10-02T16:33:44.8352827Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dib0700.mod.o
2025-10-02T16:33:44.8640042Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-common.mod.o
2025-10-02T16:33:45.0058261Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mb.mod.o
2025-10-02T16:33:45.0762379Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common.mod.o
2025-10-02T16:33:45.1347607Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-digitv.mod.o
2025-10-02T16:33:45.1367029Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc.mod.o
2025-10-02T16:33:45.2638109Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dtt200u.mod.o
2025-10-02T16:33:45.3765511Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dtv5100.mod.o
2025-10-02T16:33:45.4102287Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-dw2102.mod.o
2025-10-02T16:33:45.5350567Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-gp8psk.mod.o
2025-10-02T16:33:45.5417053Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-m920x.mod.o
2025-10-02T16:33:45.5739660Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.mod.o
2025-10-02T16:33:45.7051924Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-opera.mod.o
2025-10-02T16:33:45.7856348Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-pctv452e.mod.o
2025-10-02T16:33:45.8878314Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-technisat-usb2.mod.o
2025-10-02T16:33:45.9357255Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-ttusb2.mod.o
2025-10-02T16:33:45.9603253Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-umt-010.mod.o
2025-10-02T16:33:46.0400280Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-vp702x.mod.o
2025-10-02T16:33:46.1835218Z CC [M] drivers/media/usb/dvb-usb/dvb-usb-vp7045.mod.o
2025-10-02T16:33:46.2473823Z CC [M] drivers/media/usb/dvb-usb/dvb-usb.mod.o
2025-10-02T16:33:46.2500501Z CC [M] drivers/media/usb/em28xx/em28xx-alsa.mod.o
2025-10-02T16:33:46.3746567Z CC [M] drivers/media/usb/em28xx/em28xx-dvb.mod.o
2025-10-02T16:33:46.4292615Z CC [M] drivers/media/usb/em28xx/em28xx-rc.mod.o
2025-10-02T16:33:46.5377908Z CC [M] drivers/media/usb/em28xx/em28xx-v4l.mod.o
2025-10-02T16:33:46.5821338Z CC [M] drivers/media/usb/em28xx/em28xx.mod.o
2025-10-02T16:33:46.6155088Z CC [M] drivers/media/usb/go7007/go7007-loader.mod.o
2025-10-02T16:33:46.7196998Z CC [M] drivers/media/usb/go7007/go7007-usb.mod.o
2025-10-02T16:33:46.8460318Z CC [M] drivers/media/usb/go7007/go7007.mod.o
2025-10-02T16:33:46.8791506Z CC [M] drivers/media/usb/go7007/s2250.mod.o
2025-10-02T16:33:46.9577914Z CC [M] drivers/media/usb/gspca/gl860/gspca_gl860.mod.o
2025-10-02T16:33:47.0137533Z CC [M] drivers/media/usb/gspca/gspca_benq.mod.o
2025-10-02T16:33:47.0334602Z CC [M] drivers/media/usb/gspca/gspca_conex.mod.o
2025-10-02T16:33:47.1705380Z CC [M] drivers/media/usb/gspca/gspca_cpia1.mod.o
2025-10-02T16:33:47.2352444Z CC [M] drivers/media/usb/gspca/gspca_dtcs033.mod.o
2025-10-02T16:33:47.3212689Z CC [M] drivers/media/usb/gspca/gspca_etoms.mod.o
2025-10-02T16:33:47.3765397Z CC [M] drivers/media/usb/gspca/gspca_finepix.mod.o
2025-10-02T16:33:47.4390771Z CC [M] drivers/media/usb/gspca/gspca_jeilinj.mod.o
2025-10-02T16:33:47.5195914Z CC [M] drivers/media/usb/gspca/gspca_jl2005bcd.mod.o
2025-10-02T16:33:47.5736078Z CC [M] drivers/media/usb/gspca/gspca_kinect.mod.o
2025-10-02T16:33:47.6734244Z CC [M] drivers/media/usb/gspca/gspca_konica.mod.o
2025-10-02T16:33:47.7623732Z CC [M] drivers/media/usb/gspca/gspca_main.mod.o
2025-10-02T16:33:47.8368207Z CC [M] drivers/media/usb/gspca/gspca_mars.mod.o
2025-10-02T16:33:47.8397237Z CC [M] drivers/media/usb/gspca/gspca_mr97310a.mod.o
2025-10-02T16:33:47.9421943Z CC [M] drivers/media/usb/gspca/gspca_nw80x.mod.o
2025-10-02T16:33:48.0300498Z CC [M] drivers/media/usb/gspca/gspca_ov519.mod.o
2025-10-02T16:33:48.1387012Z CC [M] drivers/media/usb/gspca/gspca_ov534.mod.o
2025-10-02T16:33:48.1640829Z CC [M] drivers/media/usb/gspca/gspca_ov534_9.mod.o
2025-10-02T16:33:48.2149399Z CC [M] drivers/media/usb/gspca/gspca_pac207.mod.o
2025-10-02T16:33:48.3361124Z CC [M] drivers/media/usb/gspca/gspca_pac7302.mod.o
2025-10-02T16:33:48.3888271Z CC [M] drivers/media/usb/gspca/gspca_pac7311.mod.o
2025-10-02T16:33:48.4534984Z CC [M] drivers/media/usb/gspca/gspca_se401.mod.o
2025-10-02T16:33:48.4885836Z CC [M] drivers/media/usb/gspca/gspca_sn9c2028.mod.o
2025-10-02T16:33:48.5937128Z CC [M] drivers/media/usb/gspca/gspca_sn9c20x.mod.o
2025-10-02T16:33:48.7133894Z CC [M] drivers/media/usb/gspca/gspca_sonixb.mod.o
2025-10-02T16:33:48.7611837Z CC [M] drivers/media/usb/gspca/gspca_sonixj.mod.o
2025-10-02T16:33:48.8041091Z CC [M] drivers/media/usb/gspca/gspca_spca1528.mod.o
2025-10-02T16:33:48.8553225Z CC [M] drivers/media/usb/gspca/gspca_spca500.mod.o
2025-10-02T16:33:49.0099245Z CC [M] drivers/media/usb/gspca/gspca_spca501.mod.o
2025-10-02T16:33:49.0710060Z CC [M] drivers/media/usb/gspca/gspca_spca505.mod.o
2025-10-02T16:33:49.0968843Z CC [M] drivers/media/usb/gspca/gspca_spca506.mod.o
2025-10-02T16:33:49.1475802Z CC [M] drivers/media/usb/gspca/gspca_spca508.mod.o
2025-10-02T16:33:49.2475681Z CC [M] drivers/media/usb/gspca/gspca_spca561.mod.o
2025-10-02T16:33:49.3438569Z CC [M] drivers/media/usb/gspca/gspca_sq905.mod.o
2025-10-02T16:33:49.4074562Z CC [M] drivers/media/usb/gspca/gspca_sq905c.mod.o
2025-10-02T16:33:49.4710241Z CC [M] drivers/media/usb/gspca/gspca_sq930x.mod.o
2025-10-02T16:33:49.5537779Z CC [M] drivers/media/usb/gspca/gspca_stk014.mod.o
2025-10-02T16:33:49.6424738Z CC [M] drivers/media/usb/gspca/gspca_stk1135.mod.o
2025-10-02T16:33:49.6748661Z CC [M] drivers/media/usb/gspca/gspca_stv0680.mod.o
2025-10-02T16:33:49.7597284Z CC [M] drivers/media/usb/gspca/gspca_sunplus.mod.o
2025-10-02T16:33:49.7802401Z CC [M] drivers/media/usb/gspca/gspca_t613.mod.o
2025-10-02T16:33:49.9350246Z CC [M] drivers/media/usb/gspca/gspca_topro.mod.o
2025-10-02T16:33:50.0652623Z CC [M] drivers/media/usb/gspca/gspca_touptek.mod.o
2025-10-02T16:33:50.0777819Z CC [M] drivers/media/usb/gspca/gspca_tv8532.mod.o
2025-10-02T16:33:50.1000675Z CC [M] drivers/media/usb/gspca/gspca_vc032x.mod.o
2025-10-02T16:33:50.1543736Z CC [M] drivers/media/usb/gspca/gspca_vicam.mod.o
2025-10-02T16:33:50.2579796Z CC [M] drivers/media/usb/gspca/gspca_xirlink_cit.mod.o
2025-10-02T16:33:50.4090120Z CC [M] drivers/media/usb/gspca/gspca_zc3xx.mod.o
2025-10-02T16:33:50.4311856Z CC [M] drivers/media/usb/gspca/m5602/gspca_m5602.mod.o
2025-10-02T16:33:50.4820953Z CC [M] drivers/media/usb/gspca/stv06xx/gspca_stv06xx.mod.o
2025-10-02T16:33:50.5578668Z CC [M] drivers/media/usb/hdpvr/hdpvr.mod.o
2025-10-02T16:33:50.5614094Z CC [M] drivers/media/usb/pvrusb2/pvrusb2.mod.o
2025-10-02T16:33:50.7603864Z CC [M] drivers/media/usb/pwc/pwc.mod.o
2025-10-02T16:33:50.8452380Z CC [M] drivers/media/usb/s2255/s2255drv.mod.o
2025-10-02T16:33:50.8492162Z CC [M] drivers/media/usb/siano/smsusb.mod.o
2025-10-02T16:33:50.8514723Z CC [M] drivers/media/usb/stk1160/stk1160.mod.o
2025-10-02T16:33:50.9886584Z CC [M] drivers/media/usb/stkwebcam/stkwebcam.mod.o
2025-10-02T16:33:51.1378560Z CC [M] drivers/media/usb/tm6000/tm6000-alsa.mod.o
2025-10-02T16:33:51.1473261Z CC [M] drivers/media/usb/tm6000/tm6000.mod.o
2025-10-02T16:33:51.1478199Z CC [M] drivers/media/usb/tm6000/tm6000-dvb.mod.o
2025-10-02T16:33:51.2209361Z CC [M] drivers/media/usb/ttusb-budget/dvb-ttusb-budget.mod.o
2025-10-02T16:33:51.4321311Z CC [M] drivers/media/usb/ttusb-dec/ttusb_dec.mod.o
2025-10-02T16:33:51.4445345Z CC [M] drivers/media/usb/ttusb-dec/ttusbdecfe.mod.o
2025-10-02T16:33:51.5132700Z CC [M] drivers/media/usb/usbtv/usbtv.mod.o
2025-10-02T16:33:51.5543339Z CC [M] drivers/media/usb/uvc/uvcvideo.mod.o
2025-10-02T16:33:51.6105000Z CC [M] drivers/media/usb/zr364xx/zr364xx.mod.o
2025-10-02T16:33:51.7886908Z CC [M] drivers/media/v4l2-core/tuner.mod.o
2025-10-02T16:33:51.8031298Z CC [M] drivers/media/v4l2-core/v4l2-dv-timings.mod.o
2025-10-02T16:33:51.8266818Z CC [M] drivers/media/v4l2-core/v4l2-flash-led-class.mod.o
2025-10-02T16:33:51.9710706Z CC [M] drivers/media/v4l2-core/v4l2-fwnode.mod.o
2025-10-02T16:33:51.9866030Z CC [M] drivers/media/v4l2-core/v4l2-mem2mem.mod.o
2025-10-02T16:33:52.1325706Z CC [M] drivers/media/v4l2-core/videobuf-core.mod.o
2025-10-02T16:33:52.1518573Z CC [M] drivers/media/v4l2-core/videobuf-dma-sg.mod.o
2025-10-02T16:33:52.1990998Z CC [M] drivers/media/v4l2-core/videobuf-vmalloc.mod.o
2025-10-02T16:33:52.3116813Z CC [M] drivers/media/v4l2-core/videodev.mod.o
2025-10-02T16:33:52.3694087Z CC [M] drivers/memstick/core/memstick.mod.o
2025-10-02T16:33:52.4604298Z CC [M] drivers/memstick/core/ms_block.mod.o
2025-10-02T16:33:52.5433922Z CC [M] drivers/memstick/core/mspro_block.mod.o
2025-10-02T16:33:52.6278387Z CC [M] drivers/memstick/host/jmb38x_ms.mod.o
2025-10-02T16:33:52.6873752Z CC [M] drivers/memstick/host/r592.mod.o
2025-10-02T16:33:52.6961014Z CC [M] drivers/memstick/host/rtsx_pci_ms.mod.o
2025-10-02T16:33:52.8236474Z CC [M] drivers/memstick/host/rtsx_usb_ms.mod.o
2025-10-02T16:33:52.9874290Z CC [M] drivers/memstick/host/tifm_ms.mod.o
2025-10-02T16:33:53.0121730Z CC [M] drivers/message/fusion/mptbase.mod.o
2025-10-02T16:33:53.0582731Z CC [M] drivers/message/fusion/mptfc.mod.o
2025-10-02T16:33:53.0594368Z CC [M] drivers/message/fusion/mptctl.mod.o
2025-10-02T16:33:53.1428944Z CC [M] drivers/message/fusion/mptlan.mod.o
2025-10-02T16:33:53.3059913Z CC [M] drivers/message/fusion/mptsas.mod.o
2025-10-02T16:33:53.3883490Z CC [M] drivers/message/fusion/mptscsih.mod.o
2025-10-02T16:33:53.4521796Z CC [M] drivers/message/fusion/mptspi.mod.o
2025-10-02T16:33:53.5153325Z CC [M] drivers/mfd/88pm800.mod.o
2025-10-02T16:33:53.5251799Z CC [M] drivers/mfd/88pm805.mod.o
2025-10-02T16:33:53.6388402Z CC [M] drivers/mfd/88pm80x.mod.o
2025-10-02T16:33:53.7298057Z CC [M] drivers/mfd/arizona-i2c.mod.o
2025-10-02T16:33:53.7976338Z CC [M] drivers/mfd/arizona-spi.mod.o
2025-10-02T16:33:53.8678088Z CC [M] drivers/mfd/axp20x-i2c.mod.o
2025-10-02T16:33:53.9384346Z CC [M] drivers/mfd/axp20x.mod.o
2025-10-02T16:33:54.0236439Z CC [M] drivers/mfd/bcm590xx.mod.o
2025-10-02T16:33:54.0463053Z CC [M] drivers/mfd/bd9571mwv.mod.o
2025-10-02T16:33:54.1755900Z CC [M] drivers/mfd/cros_ec_dev.mod.o
2025-10-02T16:33:54.2464968Z CC [M] drivers/mfd/da9062-core.mod.o
2025-10-02T16:33:54.3018036Z CC [M] drivers/mfd/da9063.mod.o
2025-10-02T16:33:54.3661430Z CC [M] drivers/mfd/da9150-core.mod.o
2025-10-02T16:33:54.4109300Z CC [M] drivers/mfd/dln2.mod.o
2025-10-02T16:33:54.6056898Z CC [M] drivers/mfd/htc-pasic3.mod.o
2025-10-02T16:33:54.6561945Z CC [M] drivers/mfd/intel-lpss-acpi.mod.o
2025-10-02T16:33:54.6722195Z CC [M] drivers/mfd/intel-lpss-pci.mod.o
2025-10-02T16:33:54.6757062Z CC [M] drivers/mfd/intel-lpss.mod.o
2025-10-02T16:33:54.8100948Z CC [M] drivers/mfd/intel-m10-bmc.mod.o
2025-10-02T16:33:54.9656190Z CC [M] drivers/mfd/intel_pmc_bxt.mod.o
2025-10-02T16:33:54.9871038Z CC [M] drivers/mfd/intel_quark_i2c_gpio.mod.o
2025-10-02T16:33:55.0283081Z CC [M] drivers/mfd/intel_soc_pmic_bxtwc.mod.o
2025-10-02T16:33:55.0641776Z CC [M] drivers/mfd/intel_soc_pmic_chtdc_ti.mod.o
2025-10-02T16:33:55.2828965Z CC [M] drivers/mfd/intel_soc_pmic_mrfld.mod.o
2025-10-02T16:33:55.2844073Z CC [M] drivers/mfd/iqs62x.mod.o
2025-10-02T16:33:55.3045446Z CC [M] drivers/mfd/janz-cmodio.mod.o
2025-10-02T16:33:55.4198420Z CC [M] drivers/mfd/kempld-core.mod.o
2025-10-02T16:33:55.4635131Z CC [M] drivers/mfd/lm3533-core.mod.o
2025-10-02T16:33:55.5827849Z CC [M] drivers/mfd/lm3533-ctrlbank.mod.o
2025-10-02T16:33:55.7443008Z CC [M] drivers/mfd/lp3943.mod.o
2025-10-02T16:33:55.7503305Z CC [M] drivers/mfd/lp873x.mod.o
2025-10-02T16:33:55.7876055Z CC [M] drivers/mfd/lpc_ich.mod.o
2025-10-02T16:33:55.8458723Z CC [M] drivers/mfd/lpc_sch.mod.o
2025-10-02T16:33:55.9042430Z CC [M] drivers/mfd/madera-i2c.mod.o
2025-10-02T16:33:56.0611065Z CC [M] drivers/mfd/madera-spi.mod.o
2025-10-02T16:33:56.1387268Z CC [M] drivers/mfd/madera.mod.o
2025-10-02T16:33:56.1979193Z CC [M] drivers/mfd/max14577.mod.o
2025-10-02T16:33:56.2085289Z CC [M] drivers/mfd/max77693.mod.o
2025-10-02T16:33:56.2595912Z CC [M] drivers/mfd/max8907.mod.o
2025-10-02T16:33:56.4251512Z CC [M] drivers/mfd/mc13xxx-core.mod.o
2025-10-02T16:33:56.4851831Z CC [M] drivers/mfd/mc13xxx-i2c.mod.o
2025-10-02T16:33:56.6206587Z CC [M] drivers/mfd/mc13xxx-spi.mod.o
2025-10-02T16:33:56.6419409Z CC [M] drivers/mfd/menf21bmc.mod.o
2025-10-02T16:33:56.6527887Z CC [M] drivers/mfd/mp2629.mod.o
2025-10-02T16:33:56.7531221Z CC [M] drivers/mfd/mt6360-core.mod.o
2025-10-02T16:33:56.9196876Z CC [M] drivers/mfd/mt6397.mod.o
2025-10-02T16:33:56.9609034Z CC [M] drivers/mfd/pcf50633-adc.mod.o
2025-10-02T16:33:56.9644439Z CC [M] drivers/mfd/pcf50633-gpio.mod.o
2025-10-02T16:33:57.0358968Z CC [M] drivers/mfd/pcf50633.mod.o
2025-10-02T16:33:57.2226325Z CC [M] drivers/mfd/rave-sp.mod.o
2025-10-02T16:33:57.2558358Z CC [M] drivers/mfd/rdc321x-southbridge.mod.o
2025-10-02T16:33:57.2636362Z CC [M] drivers/mfd/retu-mfd.mod.o
2025-10-02T16:33:57.2986755Z CC [M] drivers/mfd/rt5033.mod.o
2025-10-02T16:33:57.4102294Z CC [M] drivers/mfd/si476x-core.mod.o
2025-10-02T16:33:57.5868961Z CC [M] drivers/mfd/sky81452.mod.o
2025-10-02T16:33:57.6231287Z CC [M] drivers/mfd/sm501.mod.o
2025-10-02T16:33:57.6764396Z CC [M] drivers/mfd/ti-lmu.mod.o
2025-10-02T16:33:57.7166646Z CC [M] drivers/mfd/tps6105x.mod.o
2025-10-02T16:33:57.7266700Z CC [M] drivers/mfd/tps65010.mod.o
2025-10-02T16:33:57.9171486Z CC [M] drivers/mfd/tps6507x.mod.o
2025-10-02T16:33:57.9235630Z CC [M] drivers/mfd/tps65086.mod.o
2025-10-02T16:33:58.0165965Z CC [M] drivers/mfd/tps65912-core.mod.o
2025-10-02T16:33:58.0981401Z CC [M] drivers/mfd/tps65912-i2c.mod.o
2025-10-02T16:33:58.1909265Z CC [M] drivers/mfd/tps65912-spi.mod.o
2025-10-02T16:33:58.2278175Z CC [M] drivers/mfd/tqmx86.mod.o
2025-10-02T16:33:58.3110246Z CC [M] drivers/mfd/ucb1400_core.mod.o
2025-10-02T16:33:58.3160948Z CC [M] drivers/mfd/viperboard.mod.o
2025-10-02T16:33:58.4915613Z CC [M] drivers/mfd/vx855.mod.o
2025-10-02T16:33:58.5022428Z CC [M] drivers/mfd/wcd934x.mod.o
2025-10-02T16:33:58.5908033Z CC [M] drivers/mfd/wl1273-core.mod.o
2025-10-02T16:33:58.7384927Z CC [M] drivers/mfd/wm8994.mod.o
2025-10-02T16:33:58.7467320Z CC [M] drivers/misc/ad525x_dpot-i2c.mod.o
2025-10-02T16:33:58.7815333Z CC [M] drivers/misc/ad525x_dpot-spi.mod.o
2025-10-02T16:33:58.8220556Z CC [M] drivers/misc/ad525x_dpot.mod.o
2025-10-02T16:33:59.0036842Z CC [M] drivers/misc/altera-stapl/altera-stapl.mod.o
2025-10-02T16:33:59.0847493Z CC [M] drivers/misc/apds9802als.mod.o
2025-10-02T16:33:59.1021533Z CC [M] drivers/misc/apds990x.mod.o
2025-10-02T16:33:59.1833372Z CC [M] drivers/misc/bh1770glc.mod.o
2025-10-02T16:33:59.1878913Z CC [M] drivers/misc/c2port/c2port-duramar2150.mod.o
2025-10-02T16:33:59.3405038Z CC [M] drivers/misc/c2port/core.mod.o
2025-10-02T16:33:59.3773029Z CC [M] drivers/misc/cardreader/alcor_pci.mod.o
2025-10-02T16:33:59.4748073Z CC [M] drivers/misc/cardreader/rtsx_pci.mod.o
2025-10-02T16:33:59.6310315Z CC [M] drivers/misc/cardreader/rtsx_usb.mod.o
2025-10-02T16:33:59.6372987Z CC [M] drivers/misc/cb710/cb710.mod.o
2025-10-02T16:33:59.6500269Z CC [M] drivers/misc/ds1682.mod.o
2025-10-02T16:33:59.7022007Z CC [M] drivers/misc/echo/echo.mod.o
2025-10-02T16:33:59.9151611Z CC [M] drivers/misc/eeprom/at24.mod.o
2025-10-02T16:33:59.9306686Z CC [M] drivers/misc/eeprom/ee1004.mod.o
2025-10-02T16:33:59.9804000Z CC [M] drivers/misc/eeprom/eeprom.mod.o
2025-10-02T16:33:59.9958093Z CC [M] drivers/misc/eeprom/eeprom_93cx6.mod.o
2025-10-02T16:34:00.1398509Z CC [M] drivers/misc/eeprom/idt_89hpesx.mod.o
2025-10-02T16:34:00.2080922Z CC [M] drivers/misc/eeprom/max6875.mod.o
2025-10-02T16:34:00.2817582Z CC [M] drivers/misc/enclosure.mod.o
2025-10-02T16:34:00.3214081Z CC [M] drivers/misc/genwqe/genwqe_card.mod.o
2025-10-02T16:34:00.3821277Z CC [M] drivers/misc/habanalabs/habanalabs.mod.o
2025-10-02T16:34:00.5377764Z CC [M] drivers/misc/hmc6352.mod.o
2025-10-02T16:34:00.6022259Z CC [M] drivers/misc/hpilo.mod.o
2025-10-02T16:34:00.6549025Z CC [M] drivers/misc/ics932s401.mod.o
2025-10-02T16:34:00.6575513Z CC [M] drivers/misc/ibmasm/ibmasm.mod.o
2025-10-02T16:34:00.7567165Z CC [M] drivers/misc/isl29003.mod.o
2025-10-02T16:34:00.8516722Z CC [M] drivers/misc/isl29020.mod.o
2025-10-02T16:34:00.9293149Z CC [M] drivers/misc/lattice-ecp3-config.mod.o
2025-10-02T16:34:01.0242127Z CC [M] drivers/misc/lis3lv02d/lis3lv02d.mod.o
2025-10-02T16:34:01.0847893Z CC [M] drivers/misc/lis3lv02d/lis3lv02d_i2c.mod.o
2025-10-02T16:34:01.0907828Z CC [M] drivers/misc/mei/hdcp/mei_hdcp.mod.o
2025-10-02T16:34:01.2321536Z CC [M] drivers/misc/mei/mei-me.mod.o
2025-10-02T16:34:01.3155189Z CC [M] drivers/misc/mei/mei-txe.mod.o
2025-10-02T16:34:01.3581204Z CC [M] drivers/misc/mei/mei.mod.o
2025-10-02T16:34:01.3906200Z CC [M] drivers/misc/pci_endpoint_test.mod.o
2025-10-02T16:34:01.4544970Z CC [M] drivers/misc/phantom.mod.o
2025-10-02T16:34:01.5891938Z CC [M] drivers/misc/pvpanic.mod.o
2025-10-02T16:34:01.7117167Z CC [M] drivers/misc/ti-st/st_drv.mod.o
2025-10-02T16:34:01.7426471Z CC [M] drivers/misc/tifm_7xx1.mod.o
2025-10-02T16:34:01.7937531Z CC [M] drivers/misc/tifm_core.mod.o
2025-10-02T16:34:01.8236644Z CC [M] drivers/misc/tsl2550.mod.o
2025-10-02T16:34:01.9195131Z CC [M] drivers/misc/uacce/uacce.mod.o
2025-10-02T16:34:02.0399241Z CC [M] drivers/misc/vmw_balloon.mod.o
2025-10-02T16:34:02.0974126Z CC [M] drivers/misc/vmw_vmci/vmw_vmci.mod.o
2025-10-02T16:34:02.1373292Z CC [M] drivers/misc/xilinx_sdfec.mod.o
2025-10-02T16:34:02.2513547Z CC [M] drivers/mmc/core/mmc_block.mod.o
2025-10-02T16:34:02.2944213Z CC [M] drivers/mmc/core/mmc_core.mod.o
2025-10-02T16:34:02.3974179Z CC [M] drivers/mmc/core/mmc_test.mod.o
2025-10-02T16:34:02.4279068Z CC [M] drivers/mmc/core/sdio_uart.mod.o
2025-10-02T16:34:02.5504509Z CC [M] drivers/mmc/host/alcor.mod.o
2025-10-02T16:34:02.5896407Z CC [M] drivers/mmc/host/cb710-mmc.mod.o
2025-10-02T16:34:02.6568164Z CC [M] drivers/mmc/host/cqhci.mod.o
2025-10-02T16:34:02.7500974Z CC [M] drivers/mmc/host/mmc_hsq.mod.o
2025-10-02T16:34:02.7943287Z CC [M] drivers/mmc/host/mmc_spi.mod.o
2025-10-02T16:34:02.9207700Z CC [M] drivers/mmc/host/mtk-sd.mod.o
2025-10-02T16:34:02.9754216Z CC [M] drivers/mmc/host/rtsx_pci_sdmmc.mod.o
2025-10-02T16:34:03.0388365Z CC [M] drivers/mmc/host/rtsx_usb_sdmmc.mod.o
2025-10-02T16:34:03.0772665Z CC [M] drivers/mmc/host/sdhci-acpi.mod.o
2025-10-02T16:34:03.1839917Z CC [M] drivers/mmc/host/sdhci-pci.mod.o
2025-10-02T16:34:03.2390726Z CC [M] drivers/mmc/host/sdhci-pltfm.mod.o
2025-10-02T16:34:03.3496747Z CC [M] drivers/mmc/host/sdhci-xenon-driver.mod.o
2025-10-02T16:34:03.3797629Z CC [M] drivers/mmc/host/sdhci.mod.o
2025-10-02T16:34:03.4724759Z CC [M] drivers/mmc/host/sdhci_f_sdh30.mod.o
2025-10-02T16:34:03.5404556Z CC [M] drivers/mmc/host/sdricoh_cs.mod.o
2025-10-02T16:34:03.6344263Z CC [M] drivers/mmc/host/tifm_sd.mod.o
2025-10-02T16:34:03.7116073Z CC [M] drivers/mmc/host/toshsd.mod.o
2025-10-02T16:34:03.7556213Z CC [M] drivers/mmc/host/usdhi6rol0.mod.o
2025-10-02T16:34:03.7876341Z CC [M] drivers/mmc/host/ushc.mod.o
2025-10-02T16:34:03.9539217Z CC [M] drivers/mmc/host/via-sdmmc.mod.o
2025-10-02T16:34:03.9981471Z CC [M] drivers/mmc/host/vub300.mod.o
2025-10-02T16:34:04.0312585Z CC [M] drivers/mmc/host/wbsd.mod.o
2025-10-02T16:34:04.1058662Z CC [M] drivers/most/most_cdev.mod.o
2025-10-02T16:34:04.1703764Z CC [M] drivers/most/most_core.mod.o
2025-10-02T16:34:04.2966170Z CC [M] drivers/most/most_usb.mod.o
2025-10-02T16:34:04.3238764Z CC [M] drivers/mtd/chips/chipreg.mod.o
2025-10-02T16:34:04.4261354Z CC [M] drivers/mtd/devices/block2mtd.mod.o
2025-10-02T16:34:04.4874962Z CC [M] drivers/mtd/devices/phram.mod.o
2025-10-02T16:34:04.5307177Z CC [M] drivers/mtd/mtd.mod.o
2025-10-02T16:34:04.6091864Z CC [M] drivers/mtd/mtd_blkdevs.mod.o
2025-10-02T16:34:04.6711301Z CC [M] drivers/mtd/mtdblock.mod.o
2025-10-02T16:34:04.7815696Z CC [M] drivers/mtd/nand/nandcore.mod.o
2025-10-02T16:34:04.8080925Z CC [M] drivers/mtd/nand/raw/nand.mod.o
2025-10-02T16:34:04.8864536Z CC [M] drivers/mtd/nand/raw/nand_ecc.mod.o
2025-10-02T16:34:04.9778895Z CC [M] drivers/mtd/nand/raw/nandsim.mod.o
2025-10-02T16:34:05.0599251Z CC [M] drivers/mtd/spi-nor/controllers/intel-spi-pci.mod.o
2025-10-02T16:34:05.1258831Z CC [M] drivers/mtd/spi-nor/controllers/intel-spi-platform.mod.o
2025-10-02T16:34:05.1356607Z CC [M] drivers/mtd/spi-nor/controllers/intel-spi.mod.o
2025-10-02T16:34:05.2201323Z CC [M] drivers/mtd/spi-nor/spi-nor.mod.o
2025-10-02T16:34:05.4369891Z CC [M] drivers/mtd/ubi/ubi.mod.o
2025-10-02T16:34:05.4448601Z CC [M] drivers/mux/mux-adg792a.mod.o
2025-10-02T16:34:05.4798524Z CC [M] drivers/mux/mux-adgs1408.mod.o
2025-10-02T16:34:05.4805399Z CC [M] drivers/mux/mux-core.mod.o
2025-10-02T16:34:05.6174140Z CC [M] drivers/mux/mux-gpio.mod.o
2025-10-02T16:34:05.7804843Z CC [M] drivers/net/appletalk/ipddp.mod.o
2025-10-02T16:34:05.7976894Z CC [M] drivers/net/bareudp.mod.o
2025-10-02T16:34:05.8464683Z CC [M] drivers/net/bonding/bonding.mod.o
2025-10-02T16:34:05.8685748Z CC [M] drivers/net/can/c_can/c_can.mod.o
2025-10-02T16:34:05.9718825Z CC [M] drivers/net/can/c_can/c_can_pci.mod.o
2025-10-02T16:34:06.1508085Z CC [M] drivers/net/can/c_can/c_can_platform.mod.o
2025-10-02T16:34:06.1875198Z CC [M] drivers/net/can/cc770/cc770.mod.o
2025-10-02T16:34:06.2032189Z CC [M] drivers/net/can/cc770/cc770_platform.mod.o
2025-10-02T16:34:06.2278832Z CC [M] drivers/net/can/dev/can-dev.mod.o
2025-10-02T16:34:06.3388662Z CC [M] drivers/net/can/ifi_canfd/ifi_canfd.mod.o
2025-10-02T16:34:06.4450867Z CC [M] drivers/net/can/janz-ican3.mod.o
2025-10-02T16:34:06.5221989Z CC [M] drivers/net/can/kvaser_pciefd.mod.o
2025-10-02T16:34:06.6351289Z CC [M] drivers/net/can/m_can/m_can.mod.o
2025-10-02T16:34:06.6508465Z CC [M] drivers/net/can/m_can/m_can_platform.mod.o
2025-10-02T16:34:06.7164587Z CC [M] drivers/net/can/m_can/tcan4x5x.mod.o
2025-10-02T16:34:06.7521578Z CC [M] drivers/net/can/peak_canfd/peak_pciefd.mod.o
2025-10-02T16:34:06.8345617Z CC [M] drivers/net/can/sja1000/ems_pci.mod.o
2025-10-02T16:34:07.0232264Z CC [M] drivers/net/can/sja1000/f81601.mod.o
2025-10-02T16:34:07.0337300Z CC [M] drivers/net/can/sja1000/kvaser_pci.mod.o
2025-10-02T16:34:07.0403350Z CC [M] drivers/net/can/sja1000/peak_pci.mod.o
2025-10-02T16:34:07.1200755Z CC [M] drivers/net/can/sja1000/peak_pcmcia.mod.o
2025-10-02T16:34:07.1760195Z CC [M] drivers/net/can/sja1000/plx_pci.mod.o
2025-10-02T16:34:07.3170007Z CC [M] drivers/net/can/sja1000/sja1000.mod.o
2025-10-02T16:34:07.4064260Z CC [M] drivers/net/can/sja1000/sja1000_platform.mod.o
2025-10-02T16:34:07.4916561Z CC [M] drivers/net/can/slcan.mod.o
2025-10-02T16:34:07.5295977Z CC [M] drivers/net/can/softing/softing.mod.o
2025-10-02T16:34:07.5878271Z CC [M] drivers/net/can/softing/softing_cs.mod.o
2025-10-02T16:34:07.6172116Z CC [M] drivers/net/can/spi/hi311x.mod.o
2025-10-02T16:34:07.6898544Z CC [M] drivers/net/can/spi/mcp251x.mod.o
2025-10-02T16:34:07.8205637Z CC [M] drivers/net/can/spi/mcp251xfd/mcp251xfd.mod.o
2025-10-02T16:34:07.9322953Z CC [M] drivers/net/can/usb/ems_usb.mod.o
2025-10-02T16:34:07.9716956Z CC [M] drivers/net/can/usb/esd_usb2.mod.o
2025-10-02T16:34:07.9848183Z CC [M] drivers/net/can/usb/gs_usb.mod.o
2025-10-02T16:34:08.0146979Z CC [M] drivers/net/can/usb/kvaser_usb/kvaser_usb.mod.o
2025-10-02T16:34:08.2234194Z CC [M] drivers/net/can/usb/mcba_usb.mod.o
2025-10-02T16:34:08.2732939Z CC [M] drivers/net/can/usb/peak_usb/peak_usb.mod.o
2025-10-02T16:34:08.3526608Z CC [M] drivers/net/can/usb/ucan.mod.o
2025-10-02T16:34:08.3811693Z CC [M] drivers/net/can/usb/usb_8dev.mod.o
2025-10-02T16:34:08.3979848Z CC [M] drivers/net/can/vcan.mod.o
2025-10-02T16:34:08.5200230Z CC [M] drivers/net/can/vxcan.mod.o
2025-10-02T16:34:08.5689151Z CC [M] drivers/net/dsa/b53/b53_common.mod.o
2025-10-02T16:34:08.7224049Z CC [M] drivers/net/dsa/b53/b53_mdio.mod.o
2025-10-02T16:34:08.7974730Z CC [M] drivers/net/dsa/b53/b53_mmap.mod.o
2025-10-02T16:34:08.8355997Z CC [M] drivers/net/dsa/b53/b53_serdes.mod.o
2025-10-02T16:34:08.8737734Z CC [M] drivers/net/dsa/b53/b53_spi.mod.o
2025-10-02T16:34:08.8942135Z CC [M] drivers/net/dsa/b53/b53_srab.mod.o
2025-10-02T16:34:09.0945895Z CC [M] drivers/net/dsa/bcm-sf2.mod.o
2025-10-02T16:34:09.1784994Z CC [M] drivers/net/dsa/dsa_loop.mod.o
2025-10-02T16:34:09.1908788Z CC [M] drivers/net/dsa/dsa_loop_bdinfo.mod.o
2025-10-02T16:34:09.2061212Z CC [M] drivers/net/dsa/lan9303-core.mod.o
2025-10-02T16:34:09.2992453Z CC [M] drivers/net/dsa/lan9303_i2c.mod.o
2025-10-02T16:34:09.4650861Z CC [M] drivers/net/dsa/lan9303_mdio.mod.o
2025-10-02T16:34:09.5012884Z CC [M] drivers/net/dsa/microchip/ksz8795.mod.o
2025-10-02T16:34:09.5357589Z CC [M] drivers/net/dsa/microchip/ksz8795_spi.mod.o
2025-10-02T16:34:09.6161630Z CC [M] drivers/net/dsa/microchip/ksz9477.mod.o
2025-10-02T16:34:09.6501676Z CC [M] drivers/net/dsa/microchip/ksz9477_i2c.mod.o
2025-10-02T16:34:09.7999029Z CC [M] drivers/net/dsa/microchip/ksz9477_spi.mod.o
2025-10-02T16:34:09.8708875Z CC [M] drivers/net/dsa/microchip/ksz_common.mod.o
2025-10-02T16:34:09.9375839Z CC [M] drivers/net/dsa/mv88e6060.mod.o
2025-10-02T16:34:09.9390619Z CC [M] drivers/net/dsa/mt7530.mod.o
2025-10-02T16:34:10.0538518Z CC [M] drivers/net/dsa/mv88e6xxx/mv88e6xxx.mod.o
2025-10-02T16:34:10.1290587Z CC [M] drivers/net/dsa/ocelot/mscc_seville.mod.o
2025-10-02T16:34:10.2371903Z CC [M] drivers/net/dsa/qca/ar9331.mod.o
2025-10-02T16:34:10.2539956Z CC [M] drivers/net/dsa/qca8k.mod.o
2025-10-02T16:34:10.3439114Z CC [M] drivers/net/dsa/realtek-smi.mod.o
2025-10-02T16:34:10.4082180Z CC [M] drivers/net/dsa/sja1105/sja1105.mod.o
2025-10-02T16:34:10.5258670Z CC [M] drivers/net/dsa/vitesse-vsc73xx-core.mod.o
2025-10-02T16:34:10.5546329Z CC [M] drivers/net/dsa/vitesse-vsc73xx-platform.mod.o
2025-10-02T16:34:10.6323986Z CC [M] drivers/net/dsa/vitesse-vsc73xx-spi.mod.o
2025-10-02T16:34:10.7279325Z CC [M] drivers/net/dummy.mod.o
2025-10-02T16:34:10.8026047Z CC [M] drivers/net/eql.mod.o
2025-10-02T16:34:10.8337499Z CC [M] drivers/net/ethernet/3com/3c574_cs.mod.o
2025-10-02T16:34:10.9197015Z CC [M] drivers/net/ethernet/3com/3c589_cs.mod.o
2025-10-02T16:34:10.9766235Z CC [M] drivers/net/ethernet/3com/3c59x.mod.o
2025-10-02T16:34:11.1264228Z CC [M] drivers/net/ethernet/8390/8390.mod.o
2025-10-02T16:34:11.1265716Z CC [M] drivers/net/ethernet/3com/typhoon.mod.o
2025-10-02T16:34:11.2085861Z CC [M] drivers/net/ethernet/8390/axnet_cs.mod.o
2025-10-02T16:34:11.3428654Z CC [M] drivers/net/ethernet/8390/ne2k-pci.mod.o
2025-10-02T16:34:11.4154665Z CC [M] drivers/net/ethernet/8390/pcnet_cs.mod.o
2025-10-02T16:34:11.4531207Z CC [M] drivers/net/ethernet/adaptec/starfire.mod.o
2025-10-02T16:34:11.4936965Z CC [M] drivers/net/ethernet/agere/et131x.mod.o
2025-10-02T16:34:11.5078037Z CC [M] drivers/net/ethernet/alacritech/slicoss.mod.o
2025-10-02T16:34:11.7354212Z CC [M] drivers/net/ethernet/alteon/acenic.mod.o
2025-10-02T16:34:11.7808560Z CC [M] drivers/net/ethernet/altera/altera_tse.mod.o
2025-10-02T16:34:11.8135841Z CC [M] drivers/net/ethernet/amazon/ena/ena.mod.o
2025-10-02T16:34:11.8576578Z CC [M] drivers/net/ethernet/amd/amd8111e.mod.o
2025-10-02T16:34:11.8933192Z CC [M] drivers/net/ethernet/amd/nmclan_cs.mod.o
2025-10-02T16:34:12.0924010Z CC [M] drivers/net/ethernet/amd/pcnet32.mod.o
2025-10-02T16:34:12.1671023Z CC [M] drivers/net/ethernet/amd/xgbe/amd-xgbe.mod.o
2025-10-02T16:34:12.1672229Z CC [M] drivers/net/ethernet/aquantia/atlantic/atlantic.mod.o
2025-10-02T16:34:12.2079124Z CC [M] drivers/net/ethernet/atheros/alx/alx.mod.o
2025-10-02T16:34:12.2343188Z CC [M] drivers/net/ethernet/atheros/atl1c/atl1c.mod.o
2025-10-02T16:34:12.4587341Z CC [M] drivers/net/ethernet/atheros/atl1e/atl1e.mod.o
2025-10-02T16:34:12.5108027Z CC [M] drivers/net/ethernet/atheros/atlx/atl1.mod.o
2025-10-02T16:34:12.5477624Z CC [M] drivers/net/ethernet/atheros/atlx/atl2.mod.o
2025-10-02T16:34:12.5872563Z CC [M] drivers/net/ethernet/aurora/nb8800.mod.o
2025-10-02T16:34:12.5945549Z CC [M] drivers/net/ethernet/broadcom/b44.mod.o
2025-10-02T16:34:12.8199313Z CC [M] drivers/net/ethernet/broadcom/bcmsysport.mod.o
2025-10-02T16:34:12.8332808Z CC [M] drivers/net/ethernet/broadcom/bnx2.mod.o
2025-10-02T16:34:12.9242209Z CC [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x.mod.o
2025-10-02T16:34:12.9371219Z CC [M] drivers/net/ethernet/broadcom/bnxt/bnxt_en.mod.o
2025-10-02T16:34:12.9835276Z CC [M] drivers/net/ethernet/broadcom/cnic.mod.o
2025-10-02T16:34:13.1934070Z CC [M] drivers/net/ethernet/broadcom/genet/genet.mod.o
2025-10-02T16:34:13.2158004Z CC [M] drivers/net/ethernet/broadcom/tg3.mod.o
2025-10-02T16:34:13.2660815Z CC [M] drivers/net/ethernet/brocade/bna/bna.mod.o
2025-10-02T16:34:13.2685398Z CC [M] drivers/net/ethernet/cadence/macb.mod.o
2025-10-02T16:34:13.3885707Z CC [M] drivers/net/ethernet/cadence/macb_pci.mod.o
2025-10-02T16:34:13.5314272Z CC [M] drivers/net/ethernet/cavium/common/cavium_ptp.mod.o
2025-10-02T16:34:13.5481900Z CC [M] drivers/net/ethernet/cavium/liquidio/liquidio.mod.o
2025-10-02T16:34:13.6016068Z CC [M] drivers/net/ethernet/cavium/liquidio/liquidio_vf.mod.o
2025-10-02T16:34:13.6867896Z CC [M] drivers/net/ethernet/cavium/thunder/nicpf.mod.o
2025-10-02T16:34:13.7253862Z CC [M] drivers/net/ethernet/cavium/thunder/nicvf.mod.o
2025-10-02T16:34:13.8592876Z CC [M] drivers/net/ethernet/cavium/thunder/thunder_bgx.mod.o
2025-10-02T16:34:13.9490378Z CC [M] drivers/net/ethernet/cavium/thunder/thunder_xcv.mod.o
2025-10-02T16:34:13.9958153Z CC [M] drivers/net/ethernet/chelsio/cxgb/cxgb.mod.o
2025-10-02T16:34:14.0203016Z CC [M] drivers/net/ethernet/chelsio/cxgb3/cxgb3.mod.o
2025-10-02T16:34:14.1078961Z CC [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4.mod.o
2025-10-02T16:34:14.1874471Z CC [M] drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf.mod.o
2025-10-02T16:34:14.2797813Z CC [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ipsec/ch_ipsec.mod.o
2025-10-02T16:34:14.2997550Z CC [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ch_ktls.mod.o
2025-10-02T16:34:14.4839188Z CC [M] drivers/net/ethernet/chelsio/libcxgb/libcxgb.mod.o
2025-10-02T16:34:14.4973937Z CC [M] drivers/net/ethernet/cisco/enic/enic.mod.o
2025-10-02T16:34:14.5082243Z CC [M] drivers/net/ethernet/dec/tulip/de2104x.mod.o
2025-10-02T16:34:14.5629152Z CC [M] drivers/net/ethernet/dec/tulip/de4x5.mod.o
2025-10-02T16:34:14.7586567Z CC [M] drivers/net/ethernet/dec/tulip/dmfe.mod.o
2025-10-02T16:34:14.8227901Z CC [M] drivers/net/ethernet/dec/tulip/uli526x.mod.o
2025-10-02T16:34:14.8276578Z CC [M] drivers/net/ethernet/dec/tulip/tulip.mod.o
2025-10-02T16:34:14.9059080Z CC [M] drivers/net/ethernet/dec/tulip/winbond-840.mod.o
2025-10-02T16:34:14.9145669Z CC [M] drivers/net/ethernet/dec/tulip/xircom_cb.mod.o
2025-10-02T16:34:15.1097683Z CC [M] drivers/net/ethernet/dlink/dl2k.mod.o
2025-10-02T16:34:15.1698786Z CC [M] drivers/net/ethernet/dlink/sundance.mod.o
2025-10-02T16:34:15.1921477Z CC [M] drivers/net/ethernet/dnet.mod.o
2025-10-02T16:34:15.2442700Z CC [M] drivers/net/ethernet/ec_bhf.mod.o
2025-10-02T16:34:15.2657014Z CC [M] drivers/net/ethernet/emulex/benet/be2net.mod.o
2025-10-02T16:34:15.5008186Z CC [M] drivers/net/ethernet/ethoc.mod.o
2025-10-02T16:34:15.5262969Z CC [M] drivers/net/ethernet/fealnx.mod.o
2025-10-02T16:34:15.5421839Z CC [M] drivers/net/ethernet/fujitsu/fmvj18x_cs.mod.o
2025-10-02T16:34:15.5773720Z CC [M] drivers/net/ethernet/google/gve/gve.mod.o
2025-10-02T16:34:15.6088397Z CC [M] drivers/net/ethernet/huawei/hinic/hinic.mod.o
2025-10-02T16:34:15.8747219Z CC [M] drivers/net/ethernet/intel/e100.mod.o
2025-10-02T16:34:15.8858618Z CC [M] drivers/net/ethernet/intel/e1000/e1000.mod.o
2025-10-02T16:34:15.8974485Z CC [M] drivers/net/ethernet/intel/e1000e/e1000e.mod.o
2025-10-02T16:34:15.9071038Z CC [M] drivers/net/ethernet/intel/fm10k/fm10k.mod.o
2025-10-02T16:34:16.0114204Z CC [M] drivers/net/ethernet/intel/i40e/i40e.mod.o
2025-10-02T16:34:16.1865826Z CC [M] drivers/net/ethernet/intel/iavf/iavf.mod.o
2025-10-02T16:34:16.2786550Z CC [M] drivers/net/ethernet/intel/ice/ice.mod.o
2025-10-02T16:34:16.2816163Z CC [M] drivers/net/ethernet/intel/igb/igb.mod.o
2025-10-02T16:34:16.3187340Z CC [M] drivers/net/ethernet/intel/igbvf/igbvf.mod.o
2025-10-02T16:34:16.3661735Z CC [M] drivers/net/ethernet/intel/igc/igc.mod.o
2025-10-02T16:34:16.5753328Z CC [M] drivers/net/ethernet/intel/ixgb/ixgb.mod.o
2025-10-02T16:34:16.5882925Z CC [M] drivers/net/ethernet/intel/ixgbe/ixgbe.mod.o
2025-10-02T16:34:16.6174488Z CC [M] drivers/net/ethernet/intel/ixgbevf/ixgbevf.mod.o
2025-10-02T16:34:16.6241248Z CC [M] drivers/net/ethernet/jme.mod.o
2025-10-02T16:34:16.8561275Z CC [M] drivers/net/ethernet/marvell/mvmdio.mod.o
2025-10-02T16:34:16.9149369Z CC [M] drivers/net/ethernet/marvell/prestera/prestera.mod.o
2025-10-02T16:34:16.9227650Z CC [M] drivers/net/ethernet/marvell/prestera/prestera_pci.mod.o
2025-10-02T16:34:16.9408828Z CC [M] drivers/net/ethernet/marvell/skge.mod.o
2025-10-02T16:34:17.0457324Z CC [M] drivers/net/ethernet/marvell/sky2.mod.o
2025-10-02T16:34:17.1862624Z CC [M] drivers/net/ethernet/mellanox/mlx4/mlx4_core.mod.o
2025-10-02T16:34:17.2147663Z CC [M] drivers/net/ethernet/mellanox/mlx4/mlx4_en.mod.o
2025-10-02T16:34:17.2572555Z CC [M] drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.mod.o
2025-10-02T16:34:17.3119982Z CC [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw.mod.o
2025-10-02T16:34:17.4757791Z CC [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_core.mod.o
2025-10-02T16:34:17.5429258Z CC [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c.mod.o
2025-10-02T16:34:17.5672467Z CC [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_minimal.mod.o
2025-10-02T16:34:17.5713576Z CC [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci.mod.o
2025-10-02T16:34:17.6801279Z CC [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_spectrum.mod.o
2025-10-02T16:34:17.8522972Z CC [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchx2.mod.o
2025-10-02T16:34:17.8550677Z CC [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchib.mod.o
2025-10-02T16:34:17.9431402Z CC [M] drivers/net/ethernet/micrel/ks8842.mod.o
2025-10-02T16:34:17.9581322Z CC [M] drivers/net/ethernet/micrel/ks8851_common.mod.o
2025-10-02T16:34:18.0807572Z CC [M] drivers/net/ethernet/micrel/ks8851_par.mod.o
2025-10-02T16:34:18.1803111Z CC [M] drivers/net/ethernet/micrel/ks8851_spi.mod.o
2025-10-02T16:34:18.1918948Z CC [M] drivers/net/ethernet/micrel/ksz884x.mod.o
2025-10-02T16:34:18.2866812Z CC [M] drivers/net/ethernet/microchip/enc28j60.mod.o
2025-10-02T16:34:18.3161485Z CC [M] drivers/net/ethernet/microchip/encx24j600-regmap.mod.o
2025-10-02T16:34:18.4711202Z CC [M] drivers/net/ethernet/microchip/encx24j600.mod.o
2025-10-02T16:34:18.5007785Z CC [M] drivers/net/ethernet/microchip/lan743x.mod.o
2025-10-02T16:34:18.5923664Z CC [M] drivers/net/ethernet/mscc/mscc_ocelot_switch_lib.mod.o
2025-10-02T16:34:18.5938096Z CC [M] drivers/net/ethernet/myricom/myri10ge/myri10ge.mod.o
2025-10-02T16:34:18.6592045Z CC [M] drivers/net/ethernet/natsemi/natsemi.mod.o
2025-10-02T16:34:18.8681260Z CC [M] drivers/net/ethernet/natsemi/ns83820.mod.o
2025-10-02T16:34:18.8855839Z CC [M] drivers/net/ethernet/neterion/s2io.mod.o
2025-10-02T16:34:18.9333943Z CC [M] drivers/net/ethernet/neterion/vxge/vxge.mod.o
2025-10-02T16:34:18.9649237Z CC [M] drivers/net/ethernet/netronome/nfp/nfp.mod.o
2025-10-02T16:34:19.0437734Z CC [M] drivers/net/ethernet/ni/nixge.mod.o
2025-10-02T16:34:19.1766215Z CC [M] drivers/net/ethernet/nvidia/forcedeth.mod.o
2025-10-02T16:34:19.2723121Z CC [M] drivers/net/ethernet/packetengines/hamachi.mod.o
2025-10-02T16:34:19.2859217Z CC [M] drivers/net/ethernet/packetengines/yellowfin.mod.o
2025-10-02T16:34:19.3062011Z CC [M] drivers/net/ethernet/pensando/ionic/ionic.mod.o
2025-10-02T16:34:19.4651705Z CC [M] drivers/net/ethernet/qlogic/netxen/netxen_nic.mod.o
2025-10-02T16:34:19.5009133Z CC [M] drivers/net/ethernet/qlogic/qed/qed.mod.o
2025-10-02T16:34:19.5607336Z CC [M] drivers/net/ethernet/qlogic/qede/qede.mod.o
2025-10-02T16:34:19.6795902Z CC [M] drivers/net/ethernet/qlogic/qla3xxx.mod.o
2025-10-02T16:34:19.7411090Z CC [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic.mod.o
2025-10-02T16:34:19.7999819Z CC [M] drivers/net/ethernet/qualcomm/emac/qcom-emac.mod.o
2025-10-02T16:34:19.8499421Z CC [M] drivers/net/ethernet/qualcomm/rmnet/rmnet.mod.o
2025-10-02T16:34:19.8576752Z CC [M] drivers/net/ethernet/rdc/r6040.mod.o
2025-10-02T16:34:20.1111983Z CC [M] drivers/net/ethernet/realtek/8139cp.mod.o
2025-10-02T16:34:20.1540286Z CC [M] drivers/net/ethernet/realtek/8139too.mod.o
2025-10-02T16:34:20.1558509Z CC [M] drivers/net/ethernet/realtek/atp.mod.o
2025-10-02T16:34:20.1617211Z CC [M] drivers/net/ethernet/realtek/r8169.mod.o
2025-10-02T16:34:20.2238324Z CC [M] drivers/net/ethernet/rocker/rocker.mod.o
2025-10-02T16:34:20.4300868Z CC [M] drivers/net/ethernet/samsung/sxgbe/samsung-sxgbe.mod.o
2025-10-02T16:34:20.4598181Z CC [M] drivers/net/ethernet/sfc/falcon/sfc-falcon.mod.o
2025-10-02T16:34:20.5197145Z CC [M] drivers/net/ethernet/sfc/sfc.mod.o
2025-10-02T16:34:20.5589066Z CC [M] drivers/net/ethernet/silan/sc92031.mod.o
2025-10-02T16:34:20.6175271Z CC [M] drivers/net/ethernet/sis/sis190.mod.o
2025-10-02T16:34:20.7554450Z CC [M] drivers/net/ethernet/sis/sis900.mod.o
2025-10-02T16:34:20.8438501Z CC [M] drivers/net/ethernet/smsc/epic100.mod.o
2025-10-02T16:34:20.8916612Z CC [M] drivers/net/ethernet/smsc/smc91c92_cs.mod.o
2025-10-02T16:34:20.9058638Z CC [M] drivers/net/ethernet/smsc/smsc911x.mod.o
2025-10-02T16:34:21.0174096Z CC [M] drivers/net/ethernet/smsc/smsc9420.mod.o
2025-10-02T16:34:21.0704537Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac-generic.mod.o
2025-10-02T16:34:21.2218762Z CC [M] drivers/net/ethernet/stmicro/stmmac/dwmac-intel.mod.o
2025-10-02T16:34:21.2441221Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac-pci.mod.o
2025-10-02T16:34:21.2693079Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac-platform.mod.o
2025-10-02T16:34:21.4019330Z CC [M] drivers/net/ethernet/stmicro/stmmac/stmmac.mod.o
2025-10-02T16:34:21.4653995Z CC [M] drivers/net/ethernet/sun/cassini.mod.o
2025-10-02T16:34:21.5523167Z CC [M] drivers/net/ethernet/sun/sungem.mod.o
2025-10-02T16:34:21.5563483Z CC [M] drivers/net/ethernet/sun/niu.mod.o
2025-10-02T16:34:21.6834906Z CC [M] drivers/net/ethernet/sun/sunhme.mod.o
2025-10-02T16:34:21.8193849Z CC [M] drivers/net/ethernet/synopsys/dwc-xlgmac.mod.o
2025-10-02T16:34:21.8341015Z CC [M] drivers/net/ethernet/tehuti/tehuti.mod.o
2025-10-02T16:34:21.8569678Z CC [M] drivers/net/ethernet/ti/tlan.mod.o
2025-10-02T16:34:21.9295477Z CC [M] drivers/net/ethernet/via/via-rhine.mod.o
2025-10-02T16:34:22.0516514Z CC [M] drivers/net/ethernet/via/via-velocity.mod.o
2025-10-02T16:34:22.1438626Z CC [M] drivers/net/ethernet/wiznet/w5100.mod.o
2025-10-02T16:34:22.1448915Z CC [M] drivers/net/ethernet/wiznet/w5100-spi.mod.o
2025-10-02T16:34:22.2483433Z CC [M] drivers/net/ethernet/wiznet/w5300.mod.o
2025-10-02T16:34:22.2630175Z CC [M] drivers/net/ethernet/xilinx/ll_temac.mod.o
2025-10-02T16:34:22.4193739Z CC [M] drivers/net/ethernet/xilinx/xilinx_emac.mod.o
2025-10-02T16:34:22.5025733Z CC [M] drivers/net/ethernet/xircom/xirc2ps_cs.mod.o
2025-10-02T16:34:22.5463112Z CC [M] drivers/net/fddi/defxx.mod.o
2025-10-02T16:34:22.5902722Z CC [M] drivers/net/fddi/skfp/skfp.mod.o
2025-10-02T16:34:22.6251658Z CC [M] drivers/net/fjes/fjes.mod.o
2025-10-02T16:34:22.8687111Z CC [M] drivers/net/geneve.mod.o
2025-10-02T16:34:22.8717037Z CC [M] drivers/net/gtp.mod.o
2025-10-02T16:34:22.8780894Z CC [M] drivers/net/hamradio/6pack.mod.o
2025-10-02T16:34:22.8927703Z CC [M] drivers/net/hamradio/baycom_par.mod.o
2025-10-02T16:34:23.0343821Z CC [M] drivers/net/hamradio/baycom_ser_fdx.mod.o
2025-10-02T16:34:23.1612858Z CC [M] drivers/net/hamradio/baycom_ser_hdx.mod.o
2025-10-02T16:34:23.1708615Z CC [M] drivers/net/hamradio/bpqether.mod.o
2025-10-02T16:34:23.2742041Z CC [M] drivers/net/hamradio/hdlcdrv.mod.o
2025-10-02T16:34:23.3413723Z CC [M] drivers/net/hamradio/mkiss.mod.o
2025-10-02T16:34:23.3917715Z CC [M] drivers/net/hamradio/yam.mod.o
2025-10-02T16:34:23.4691135Z CC [M] drivers/net/hyperv/hv_netvsc.mod.o
2025-10-02T16:34:23.5128806Z CC [M] drivers/net/ieee802154/adf7242.mod.o
2025-10-02T16:34:23.6323536Z CC [M] drivers/net/ieee802154/at86rf230.mod.o
2025-10-02T16:34:23.6971554Z CC [M] drivers/net/ieee802154/atusb.mod.o
2025-10-02T16:34:23.7302151Z CC [M] drivers/net/ieee802154/ca8210.mod.o
2025-10-02T16:34:23.8564129Z CC [M] drivers/net/ieee802154/cc2520.mod.o
2025-10-02T16:34:23.8642393Z CC [M] drivers/net/ieee802154/fakelb.mod.o
2025-10-02T16:34:23.9376913Z CC [M] drivers/net/ieee802154/mac802154_hwsim.mod.o
2025-10-02T16:34:24.0326430Z CC [M] drivers/net/ieee802154/mcr20a.mod.o
2025-10-02T16:34:24.1802800Z CC [M] drivers/net/ieee802154/mrf24j40.mod.o
2025-10-02T16:34:24.2042645Z CC [M] drivers/net/ifb.mod.o
2025-10-02T16:34:24.2533815Z CC [M] drivers/net/ipvlan/ipvlan.mod.o
2025-10-02T16:34:24.3333442Z CC [M] drivers/net/ipvlan/ipvtap.mod.o
2025-10-02T16:34:24.3848465Z CC [M] drivers/net/macsec.mod.o
2025-10-02T16:34:24.4971540Z CC [M] drivers/net/macvlan.mod.o
2025-10-02T16:34:24.5634256Z CC [M] drivers/net/macvtap.mod.o
2025-10-02T16:34:24.6066262Z CC [M] drivers/net/mdio.mod.o
2025-10-02T16:34:24.7411635Z CC [M] drivers/net/mdio/mdio-bcm-unimac.mod.o
2025-10-02T16:34:24.7759219Z CC [M] drivers/net/mdio/mdio-bitbang.mod.o
2025-10-02T16:34:24.8404304Z CC [M] drivers/net/mdio/mdio-cavium.mod.o
2025-10-02T16:34:24.9339931Z CC [M] drivers/net/mdio/mdio-gpio.mod.o
2025-10-02T16:34:24.9493291Z CC [M] drivers/net/mdio/mdio-i2c.mod.o
2025-10-02T16:34:25.0458450Z CC [M] drivers/net/mdio/mdio-mscc-miim.mod.o
2025-10-02T16:34:25.1625129Z CC [M] drivers/net/mdio/mdio-mvusb.mod.o
2025-10-02T16:34:25.1967589Z CC [M] drivers/net/mdio/mdio-thunder.mod.o
2025-10-02T16:34:25.2648623Z CC [M] drivers/net/mii.mod.o
2025-10-02T16:34:25.3745017Z CC [M] drivers/net/net_failover.mod.o
2025-10-02T16:34:25.3984963Z CC [M] drivers/net/netconsole.mod.o
2025-10-02T16:34:25.5063672Z CC [M] drivers/net/netdevsim/netdevsim.mod.o
2025-10-02T16:34:25.5293068Z CC [M] drivers/net/nlmon.mod.o
2025-10-02T16:34:25.6434753Z CC [M] drivers/net/ntb_netdev.mod.o
2025-10-02T16:34:25.6825373Z CC [M] drivers/net/pcs/pcs-lynx.mod.o
2025-10-02T16:34:25.8169362Z CC [M] drivers/net/pcs/pcs-xpcs.mod.o
2025-10-02T16:34:25.8714030Z CC [M] drivers/net/phy/adin.mod.o
2025-10-02T16:34:25.8927337Z CC [M] drivers/net/phy/amd.mod.o
2025-10-02T16:34:25.9516189Z CC [M] drivers/net/phy/aquantia.mod.o
2025-10-02T16:34:26.0633607Z CC [M] drivers/net/phy/at803x.mod.o
2025-10-02T16:34:26.2293435Z CC [M] drivers/net/phy/bcm-phy-lib.mod.o
2025-10-02T16:34:26.2316429Z CC [M] drivers/net/phy/ax88796b.mod.o
2025-10-02T16:34:26.2488460Z CC [M] drivers/net/phy/bcm54140.mod.o
2025-10-02T16:34:26.2772637Z CC [M] drivers/net/phy/bcm7xxx.mod.o
2025-10-02T16:34:26.4602053Z CC [M] drivers/net/phy/bcm84881.mod.o
2025-10-02T16:34:26.5193706Z CC [M] drivers/net/phy/bcm87xx.mod.o
2025-10-02T16:34:26.5911660Z CC [M] drivers/net/phy/broadcom.mod.o
2025-10-02T16:34:26.6211511Z CC [M] drivers/net/phy/cicada.mod.o
2025-10-02T16:34:26.6942235Z CC [M] drivers/net/phy/cortina.mod.o
2025-10-02T16:34:26.8423933Z CC [M] drivers/net/phy/davicom.mod.o
2025-10-02T16:34:26.8590899Z CC [M] drivers/net/phy/dp83640.mod.o
2025-10-02T16:34:26.9210802Z CC [M] drivers/net/phy/dp83822.mod.o
2025-10-02T16:34:26.9429996Z CC [M] drivers/net/phy/dp83848.mod.o
2025-10-02T16:34:27.1447592Z CC [M] drivers/net/phy/dp83867.mod.o
2025-10-02T16:34:27.1669672Z CC [M] drivers/net/phy/dp83869.mod.o
2025-10-02T16:34:27.2611560Z CC [M] drivers/net/phy/dp83tc811.mod.o
2025-10-02T16:34:27.2741178Z CC [M] drivers/net/phy/et1011c.mod.o
2025-10-02T16:34:27.2919022Z CC [M] drivers/net/phy/fixed_phy.mod.o
2025-10-02T16:34:27.4873601Z CC [M] drivers/net/phy/icplus.mod.o
2025-10-02T16:34:27.5163216Z CC [M] drivers/net/phy/intel-xway.mod.o
2025-10-02T16:34:27.5729094Z CC [M] drivers/net/phy/libphy.mod.o
2025-10-02T16:34:27.6094628Z CC [M] drivers/net/phy/lxt.mod.o
2025-10-02T16:34:27.7723037Z CC [M] drivers/net/phy/marvell.mod.o
2025-10-02T16:34:27.8425125Z CC [M] drivers/net/phy/marvell10g.mod.o
2025-10-02T16:34:27.8454802Z CC [M] drivers/net/phy/mdio_devres.mod.o
2025-10-02T16:34:27.8800439Z CC [M] drivers/net/phy/micrel.mod.o
2025-10-02T16:34:27.9979076Z CC [M] drivers/net/phy/microchip.mod.o
2025-10-02T16:34:28.1464442Z CC [M] drivers/net/phy/microchip_t1.mod.o
2025-10-02T16:34:28.1525406Z CC [M] drivers/net/phy/mscc/mscc.mod.o
2025-10-02T16:34:28.2200528Z CC [M] drivers/net/phy/national.mod.o
2025-10-02T16:34:28.2314733Z CC [M] drivers/net/phy/nxp-tja11xx.mod.o
2025-10-02T16:34:28.4103753Z CC [M] drivers/net/phy/phylink.mod.o
2025-10-02T16:34:28.4776080Z CC [M] drivers/net/phy/qsemi.mod.o
2025-10-02T16:34:28.5135889Z CC [M] drivers/net/phy/realtek.mod.o
2025-10-02T16:34:28.5569817Z CC [M] drivers/net/phy/sfp.mod.o
2025-10-02T16:34:28.5878708Z CC [M] drivers/net/phy/smsc.mod.o
2025-10-02T16:34:28.7624788Z CC [M] drivers/net/phy/spi_ks8995.mod.o
2025-10-02T16:34:28.8536076Z CC [M] drivers/net/phy/ste10Xp.mod.o
2025-10-02T16:34:28.8991505Z CC [M] drivers/net/phy/teranetics.mod.o
2025-10-02T16:34:28.9313584Z CC [M] drivers/net/phy/uPD60620.mod.o
2025-10-02T16:34:28.9559918Z CC [M] drivers/net/phy/vitesse.mod.o
2025-10-02T16:34:29.0774176Z CC [M] drivers/net/phy/xilinx_gmii2rgmii.mod.o
2025-10-02T16:34:29.1826254Z CC [M] drivers/net/plip/plip.mod.o
2025-10-02T16:34:29.2413167Z CC [M] drivers/net/ppp/bsd_comp.mod.o
2025-10-02T16:34:29.2804694Z CC [M] drivers/net/ppp/ppp_async.mod.o
2025-10-02T16:34:29.3319704Z CC [M] drivers/net/ppp/ppp_deflate.mod.o
2025-10-02T16:34:29.4677680Z CC [M] drivers/net/ppp/ppp_generic.mod.o
2025-10-02T16:34:29.5393006Z CC [M] drivers/net/ppp/ppp_mppe.mod.o
2025-10-02T16:34:29.5920103Z CC [M] drivers/net/ppp/ppp_synctty.mod.o
2025-10-02T16:34:29.6379621Z CC [M] drivers/net/ppp/pppoe.mod.o
2025-10-02T16:34:29.6507659Z CC [M] drivers/net/ppp/pppox.mod.o
2025-10-02T16:34:29.8299894Z CC [M] drivers/net/ppp/pptp.mod.o
2025-10-02T16:34:29.9205389Z CC [M] drivers/net/sb1000.mod.o
2025-10-02T16:34:29.9325355Z CC [M] drivers/net/slip/slhc.mod.o
2025-10-02T16:34:29.9814304Z CC [M] drivers/net/slip/slip.mod.o
2025-10-02T16:34:29.9927980Z CC [M] drivers/net/sungem_phy.mod.o
2025-10-02T16:34:30.1961788Z CC [M] drivers/net/tap.mod.o
2025-10-02T16:34:30.2661705Z CC [M] drivers/net/team/team.mod.o
2025-10-02T16:34:30.3036279Z CC [M] drivers/net/team/team_mode_activebackup.mod.o
2025-10-02T16:34:30.3150860Z CC [M] drivers/net/team/team_mode_broadcast.mod.o
2025-10-02T16:34:30.3623089Z CC [M] drivers/net/team/team_mode_loadbalance.mod.o
2025-10-02T16:34:30.5222116Z CC [M] drivers/net/team/team_mode_random.mod.o
2025-10-02T16:34:30.6215738Z CC [M] drivers/net/thunderbolt-net.mod.o
2025-10-02T16:34:30.6240570Z CC [M] drivers/net/team/team_mode_roundrobin.mod.o
2025-10-02T16:34:30.6854206Z CC [M] drivers/net/tun.mod.o
2025-10-02T16:34:30.7771269Z CC [M] drivers/net/usb/aqc111.mod.o
2025-10-02T16:34:30.8698179Z CC [M] drivers/net/usb/asix.mod.o
2025-10-02T16:34:30.9523485Z CC [M] drivers/net/usb/ax88179_178a.mod.o
2025-10-02T16:34:30.9735413Z CC [M] drivers/net/usb/catc.mod.o
2025-10-02T16:34:31.0636002Z CC [M] drivers/net/usb/cdc-phonet.mod.o
2025-10-02T16:34:31.1555955Z CC [M] drivers/net/usb/cdc_eem.mod.o
2025-10-02T16:34:31.2490099Z CC [M] drivers/net/usb/cdc_ether.mod.o
2025-10-02T16:34:31.2630641Z CC [M] drivers/net/usb/cdc_mbim.mod.o
2025-10-02T16:34:31.3510490Z CC [M] drivers/net/usb/cdc_ncm.mod.o
2025-10-02T16:34:31.4368335Z CC [M] drivers/net/usb/cdc_subset.mod.o
2025-10-02T16:34:31.5101775Z CC [M] drivers/net/usb/ch9200.mod.o
2025-10-02T16:34:31.5717383Z CC [M] drivers/net/usb/cx82310_eth.mod.o
2025-10-02T16:34:31.6610906Z CC [M] drivers/net/usb/dm9601.mod.o
2025-10-02T16:34:31.6644442Z CC [M] drivers/net/usb/gl620a.mod.o
2025-10-02T16:34:31.8383276Z CC [M] drivers/net/usb/hso.mod.o
2025-10-02T16:34:31.8693301Z CC [M] drivers/net/usb/huawei_cdc_ncm.mod.o
2025-10-02T16:34:31.9384072Z CC [M] drivers/net/usb/int51x1.mod.o
2025-10-02T16:34:31.9700718Z CC [M] drivers/net/usb/ipheth.mod.o
2025-10-02T16:34:32.0509394Z CC [M] drivers/net/usb/kalmia.mod.o
2025-10-02T16:34:32.1601943Z CC [M] drivers/net/usb/kaweth.mod.o
2025-10-02T16:34:32.1952590Z CC [M] drivers/net/usb/lan78xx.mod.o
2025-10-02T16:34:32.2751113Z CC [M] drivers/net/usb/lg-vl600.mod.o
2025-10-02T16:34:32.3705347Z CC [M] drivers/net/usb/mcs7830.mod.o
2025-10-02T16:34:32.4118694Z CC [M] drivers/net/usb/net1080.mod.o
2025-10-02T16:34:32.5166796Z CC [M] drivers/net/usb/pegasus.mod.o
2025-10-02T16:34:32.5378065Z CC [M] drivers/net/usb/plusb.mod.o
2025-10-02T16:34:32.6759268Z CC [M] drivers/net/usb/qmi_wwan.mod.o
2025-10-02T16:34:32.7288579Z CC [M] drivers/net/usb/r8152.mod.o
2025-10-02T16:34:32.7649041Z CC [M] drivers/net/usb/rndis_host.mod.o
2025-10-02T16:34:32.8901177Z CC [M] drivers/net/usb/rtl8150.mod.o
2025-10-02T16:34:32.9102295Z CC [M] drivers/net/usb/sierra_net.mod.o
2025-10-02T16:34:33.0172858Z CC [M] drivers/net/usb/smsc75xx.mod.o
2025-10-02T16:34:33.1504860Z CC [M] drivers/net/usb/smsc95xx.mod.o
2025-10-02T16:34:33.1558261Z CC [M] drivers/net/usb/sr9700.mod.o
2025-10-02T16:34:33.1835367Z CC [M] drivers/net/usb/sr9800.mod.o
2025-10-02T16:34:33.3067886Z CC [M] drivers/net/usb/usbnet.mod.o
2025-10-02T16:34:33.3563831Z CC [M] drivers/net/usb/zaurus.mod.o
2025-10-02T16:34:33.4795657Z CC [M] drivers/net/veth.mod.o
2025-10-02T16:34:33.5181787Z CC [M] drivers/net/virtio_net.mod.o
2025-10-02T16:34:33.6001172Z CC [M] drivers/net/vmxnet3/vmxnet3.mod.o
2025-10-02T16:34:33.6067306Z CC [M] drivers/net/vrf.mod.o
2025-10-02T16:34:33.7120476Z CC [M] drivers/net/vsockmon.mod.o
2025-10-02T16:34:33.8213675Z CC [M] drivers/net/vxlan/vxlan.mod.o
2025-10-02T16:34:33.9115529Z CC [M] drivers/net/wimax/i2400m/i2400m-usb.mod.o
2025-10-02T16:34:33.9117959Z CC [M] drivers/net/wimax/i2400m/i2400m.mod.o
2025-10-02T16:34:33.9951883Z CC [M] drivers/net/wireguard/wireguard.mod.o
2025-10-02T16:34:34.0494707Z CC [M] drivers/net/wireless/admtek/adm8211.mod.o
2025-10-02T16:34:34.1987413Z CC [M] drivers/net/wireless/ath/ar5523/ar5523.mod.o
2025-10-02T16:34:34.2551967Z CC [M] drivers/net/wireless/ath/ath.mod.o
2025-10-02T16:34:34.2961787Z CC [M] drivers/net/wireless/ath/ath10k/ath10k_core.mod.o
2025-10-02T16:34:34.3060366Z CC [M] drivers/net/wireless/ath/ath10k/ath10k_pci.mod.o
2025-10-02T16:34:34.5036025Z CC [M] drivers/net/wireless/ath/ath10k/ath10k_sdio.mod.o
2025-10-02T16:34:34.5283070Z CC [M] drivers/net/wireless/ath/ath10k/ath10k_usb.mod.o
2025-10-02T16:34:34.5637647Z CC [M] drivers/net/wireless/ath/ath11k/ath11k.mod.o
2025-10-02T16:34:34.6972712Z CC [M] drivers/net/wireless/ath/ath11k/ath11k_ahb.mod.o
2025-10-02T16:34:34.7177963Z CC [M] drivers/net/wireless/ath/ath11k/ath11k_pci.mod.o
2025-10-02T16:34:34.8040344Z CC [M] drivers/net/wireless/ath/ath5k/ath5k.mod.o
2025-10-02T16:34:34.9561124Z CC [M] drivers/net/wireless/ath/ath6kl/ath6kl_core.mod.o
2025-10-02T16:34:34.9572358Z CC [M] drivers/net/wireless/ath/ath6kl/ath6kl_sdio.mod.o
2025-10-02T16:34:35.0164712Z CC [M] drivers/net/wireless/ath/ath6kl/ath6kl_usb.mod.o
2025-10-02T16:34:35.1195656Z CC [M] drivers/net/wireless/ath/ath9k/ath9k.mod.o
2025-10-02T16:34:35.2228515Z CC [M] drivers/net/wireless/ath/ath9k/ath9k_common.mod.o
2025-10-02T16:34:35.2679697Z CC [M] drivers/net/wireless/ath/ath9k/ath9k_htc.mod.o
2025-10-02T16:34:35.3128159Z CC [M] drivers/net/wireless/ath/ath9k/ath9k_hw.mod.o
2025-10-02T16:34:35.3796379Z CC [M] drivers/net/wireless/ath/ath9k/ath9k_pci_owl_loader.mod.o
2025-10-02T16:34:35.4153825Z CC [M] drivers/net/wireless/ath/carl9170/carl9170.mod.o
2025-10-02T16:34:35.6530623Z CC [M] drivers/net/wireless/ath/wcn36xx/wcn36xx.mod.o
2025-10-02T16:34:35.6532209Z CC [M] drivers/net/wireless/ath/wil6210/wil6210.mod.o
2025-10-02T16:34:35.7117198Z CC [M] drivers/net/wireless/atmel/at76c50x-usb.mod.o
2025-10-02T16:34:35.7150673Z CC [M] drivers/net/wireless/atmel/atmel.mod.o
2025-10-02T16:34:35.7349090Z CC [M] drivers/net/wireless/atmel/atmel_cs.mod.o
2025-10-02T16:34:36.0100842Z CC [M] drivers/net/wireless/atmel/atmel_pci.mod.o
2025-10-02T16:34:36.0225862Z CC [M] drivers/net/wireless/broadcom/b43/b43.mod.o
2025-10-02T16:34:36.0397429Z CC [M] drivers/net/wireless/broadcom/b43legacy/b43legacy.mod.o
2025-10-02T16:34:36.0919036Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac.mod.o
2025-10-02T16:34:36.1096229Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/brcmsmac.mod.o
2025-10-02T16:34:36.3202326Z CC [M] drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil.mod.o
2025-10-02T16:34:36.3803332Z CC [M] drivers/net/wireless/cisco/airo.mod.o
2025-10-02T16:34:36.3935189Z CC [M] drivers/net/wireless/cisco/airo_cs.mod.o
2025-10-02T16:34:36.4021941Z CC [M] drivers/net/wireless/intel/ipw2x00/ipw2100.mod.o
2025-10-02T16:34:36.4911015Z CC [M] drivers/net/wireless/intel/ipw2x00/ipw2200.mod.o
2025-10-02T16:34:36.6684057Z CC [M] drivers/net/wireless/intel/ipw2x00/libipw.mod.o
2025-10-02T16:34:36.6897720Z CC [M] drivers/net/wireless/intel/iwlegacy/iwl3945.mod.o
2025-10-02T16:34:36.7223526Z CC [M] drivers/net/wireless/intel/iwlegacy/iwl4965.mod.o
2025-10-02T16:34:36.8207950Z CC [M] drivers/net/wireless/intel/iwlegacy/iwlegacy.mod.o
2025-10-02T16:34:36.9058633Z CC [M] drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.mod.o
2025-10-02T16:34:36.9841008Z CC [M] drivers/net/wireless/intel/iwlwifi/iwlwifi.mod.o
2025-10-02T16:34:37.0792412Z CC [M] drivers/net/wireless/intel/iwlwifi/mvm/iwlmvm.mod.o
2025-10-02T16:34:37.0965807Z CC [M] drivers/net/wireless/intersil/hostap/hostap.mod.o
2025-10-02T16:34:37.1718333Z CC [M] drivers/net/wireless/intersil/hostap/hostap_cs.mod.o
2025-10-02T16:34:37.2631119Z CC [M] drivers/net/wireless/intersil/hostap/hostap_pci.mod.o
2025-10-02T16:34:37.3684713Z CC [M] drivers/net/wireless/intersil/hostap/hostap_plx.mod.o
2025-10-02T16:34:37.3693262Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco.mod.o
2025-10-02T16:34:37.4373072Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_cs.mod.o
2025-10-02T16:34:37.5378250Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_nortel.mod.o
2025-10-02T16:34:37.6162813Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_pci.mod.o
2025-10-02T16:34:37.7390266Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_plx.mod.o
2025-10-02T16:34:37.7601180Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_tmd.mod.o
2025-10-02T16:34:37.8035188Z CC [M] drivers/net/wireless/intersil/orinoco/orinoco_usb.mod.o
2025-10-02T16:34:37.8280393Z CC [M] drivers/net/wireless/intersil/orinoco/spectrum_cs.mod.o
2025-10-02T16:34:38.0303653Z CC [M] drivers/net/wireless/intersil/p54/p54common.mod.o
2025-10-02T16:34:38.0750821Z CC [M] drivers/net/wireless/intersil/p54/p54pci.mod.o
2025-10-02T16:34:38.0995468Z CC [M] drivers/net/wireless/intersil/p54/p54spi.mod.o
2025-10-02T16:34:38.1060294Z CC [M] drivers/net/wireless/intersil/p54/p54usb.mod.o
2025-10-02T16:34:38.3173926Z CC [M] drivers/net/wireless/intersil/prism54/prism54.mod.o
2025-10-02T16:34:38.3507424Z CC [M] drivers/net/wireless/mac80211_hwsim.mod.o
2025-10-02T16:34:38.3906881Z CC [M] drivers/net/wireless/marvell/libertas/libertas.mod.o
2025-10-02T16:34:38.4192902Z CC [M] drivers/net/wireless/marvell/libertas/libertas_cs.mod.o
2025-10-02T16:34:38.5133749Z CC [M] drivers/net/wireless/marvell/libertas/libertas_sdio.mod.o
2025-10-02T16:34:38.6321166Z CC [M] drivers/net/wireless/marvell/libertas/libertas_spi.mod.o
2025-10-02T16:34:38.7181077Z CC [M] drivers/net/wireless/marvell/libertas/usb8xxx.mod.o
2025-10-02T16:34:38.7254556Z CC [M] drivers/net/wireless/marvell/libertas_tf/libertas_tf.mod.o
2025-10-02T16:34:38.7915906Z CC [M] drivers/net/wireless/marvell/libertas_tf/libertas_tf_usb.mod.o
2025-10-02T16:34:38.9020997Z CC [M] drivers/net/wireless/marvell/mwifiex/mwifiex.mod.o
2025-10-02T16:34:38.9748826Z CC [M] drivers/net/wireless/marvell/mwifiex/mwifiex_pcie.mod.o
2025-10-02T16:34:39.0524538Z CC [M] drivers/net/wireless/marvell/mwifiex/mwifiex_sdio.mod.o
2025-10-02T16:34:39.1141414Z CC [M] drivers/net/wireless/marvell/mwifiex/mwifiex_usb.mod.o
2025-10-02T16:34:39.1213558Z CC [M] drivers/net/wireless/marvell/mwl8k.mod.o
2025-10-02T16:34:39.2477363Z CC [M] drivers/net/wireless/mediatek/mt76/mt76-sdio.mod.o
2025-10-02T16:34:39.3362428Z CC [M] drivers/net/wireless/mediatek/mt76/mt76-usb.mod.o
2025-10-02T16:34:39.4284373Z CC [M] drivers/net/wireless/mediatek/mt76/mt76.mod.o
2025-10-02T16:34:39.4475639Z CC [M] drivers/net/wireless/mediatek/mt76/mt7603/mt7603e.mod.o
2025-10-02T16:34:39.5407028Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common.mod.o
2025-10-02T16:34:39.5721414Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7615e.mod.o
2025-10-02T16:34:39.7217204Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common.mod.o
2025-10-02T16:34:39.7548867Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663s.mod.o
2025-10-02T16:34:39.8084341Z CC [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663u.mod.o
2025-10-02T16:34:39.8331381Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common.mod.o
2025-10-02T16:34:39.9647565Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0e.mod.o
2025-10-02T16:34:40.0448356Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0u.mod.o
2025-10-02T16:34:40.1608801Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02-lib.mod.o
2025-10-02T16:34:40.1713425Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x02-usb.mod.o
2025-10-02T16:34:40.1935596Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common.mod.o
2025-10-02T16:34:40.2870086Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2e.mod.o
2025-10-02T16:34:40.4531943Z CC [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2u.mod.o
2025-10-02T16:34:40.4763755Z CC [M] drivers/net/wireless/mediatek/mt76/mt7915/mt7915e.mod.o
2025-10-02T16:34:40.5221337Z CC [M] drivers/net/wireless/mediatek/mt7601u/mt7601u.mod.o
2025-10-02T16:34:40.5727285Z CC [M] drivers/net/wireless/microchip/wilc1000/wilc1000-sdio.mod.o
2025-10-02T16:34:40.6011340Z CC [M] drivers/net/wireless/microchip/wilc1000/wilc1000-spi.mod.o
2025-10-02T16:34:40.7810669Z CC [M] drivers/net/wireless/microchip/wilc1000/wilc1000.mod.o
2025-10-02T16:34:40.8275090Z CC [M] drivers/net/wireless/quantenna/qtnfmac/qtnfmac.mod.o
2025-10-02T16:34:40.8400248Z CC [M] drivers/net/wireless/quantenna/qtnfmac/qtnfmac_pcie.mod.o
2025-10-02T16:34:40.9084411Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2400pci.mod.o
2025-10-02T16:34:41.0221580Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2500pci.mod.o
2025-10-02T16:34:41.1638080Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2500usb.mod.o
2025-10-02T16:34:41.1838310Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800lib.mod.o
2025-10-02T16:34:41.1959368Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800mmio.mod.o
2025-10-02T16:34:41.2032979Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800pci.mod.o
2025-10-02T16:34:41.4103711Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2800usb.mod.o
2025-10-02T16:34:41.4823155Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00lib.mod.o
2025-10-02T16:34:41.5464827Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00mmio.mod.o
2025-10-02T16:34:41.5852478Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00pci.mod.o
2025-10-02T16:34:41.5863313Z CC [M] drivers/net/wireless/ralink/rt2x00/rt2x00usb.mod.o
2025-10-02T16:34:41.7713679Z CC [M] drivers/net/wireless/ralink/rt2x00/rt61pci.mod.o
2025-10-02T16:34:41.8559454Z CC [M] drivers/net/wireless/ralink/rt2x00/rt73usb.mod.o
2025-10-02T16:34:41.8917144Z CC [M] drivers/net/wireless/ray_cs.mod.o
2025-10-02T16:34:41.9303265Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8180/rtl818x_pci.mod.o
2025-10-02T16:34:42.0166765Z CC [M] drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8187.mod.o
2025-10-02T16:34:42.1728781Z CC [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.mod.o
2025-10-02T16:34:42.1795759Z CC [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist.mod.o
2025-10-02T16:34:42.2288654Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/rtl8188ee.mod.o
2025-10-02T16:34:42.3046149Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common.mod.o
2025-10-02T16:34:42.3362509Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/rtl8192ce.mod.o
2025-10-02T16:34:42.4930336Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/rtl8192cu.mod.o
2025-10-02T16:34:42.5713487Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/rtl8192de.mod.o
2025-10-02T16:34:42.5903061Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/rtl8192ee.mod.o
2025-10-02T16:34:42.6731634Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/rtl8192se.mod.o
2025-10-02T16:34:42.7452651Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/rtl8723ae.mod.o
2025-10-02T16:34:42.8496168Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/rtl8723be.mod.o
2025-10-02T16:34:42.8905575Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common.mod.o
2025-10-02T16:34:42.9513380Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/rtl8821ae.mod.o
2025-10-02T16:34:43.0400735Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl_pci.mod.o
2025-10-02T16:34:43.1491083Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtl_usb.mod.o
2025-10-02T16:34:43.2080914Z CC [M] drivers/net/wireless/realtek/rtlwifi/rtlwifi.mod.o
2025-10-02T16:34:43.2193994Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_8723d.mod.o
2025-10-02T16:34:43.3104456Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_8723de.mod.o
2025-10-02T16:34:43.4765845Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_8821c.mod.o
2025-10-02T16:34:43.4849182Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_8821ce.mod.o
2025-10-02T16:34:43.5584630Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_8822b.mod.o
2025-10-02T16:34:43.5712231Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_8822be.mod.o
2025-10-02T16:34:43.7064412Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_8822c.mod.o
2025-10-02T16:34:43.8156944Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_8822ce.mod.o
2025-10-02T16:34:43.8294752Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_core.mod.o
2025-10-02T16:34:43.8534157Z CC [M] drivers/net/wireless/realtek/rtw88/rtw88_pci.mod.o
2025-10-02T16:34:43.9518423Z CC [M] drivers/net/wireless/rndis_wlan.mod.o
2025-10-02T16:34:44.0750279Z CC [M] drivers/net/wireless/rsi/rsi_91x.mod.o
2025-10-02T16:34:44.1771068Z CC [M] drivers/net/wireless/rsi/rsi_sdio.mod.o
2025-10-02T16:34:44.2019921Z CC [M] drivers/net/wireless/rsi/rsi_usb.mod.o
2025-10-02T16:34:44.2779083Z CC [M] drivers/net/wireless/st/cw1200/cw1200_wlan_sdio.mod.o
2025-10-02T16:34:44.2820963Z CC [M] drivers/net/wireless/st/cw1200/cw1200_core.mod.o
2025-10-02T16:34:44.3893259Z CC [M] drivers/net/wireless/st/cw1200/cw1200_wlan_spi.mod.o
2025-10-02T16:34:44.5165416Z CC [M] drivers/net/wireless/ti/wl1251/wl1251.mod.o
2025-10-02T16:34:44.5521302Z CC [M] drivers/net/wireless/ti/wl1251/wl1251_sdio.mod.o
2025-10-02T16:34:44.6112956Z CC [M] drivers/net/wireless/ti/wl1251/wl1251_spi.mod.o
2025-10-02T16:34:44.6971812Z CC [M] drivers/net/wireless/ti/wl12xx/wl12xx.mod.o
2025-10-02T16:34:44.7520834Z CC [M] drivers/net/wireless/ti/wl18xx/wl18xx.mod.o
2025-10-02T16:34:44.8760475Z CC [M] drivers/net/wireless/ti/wlcore/wlcore.mod.o
2025-10-02T16:34:44.8924274Z CC [M] drivers/net/wireless/ti/wlcore/wlcore_sdio.mod.o
2025-10-02T16:34:44.9220545Z CC [M] drivers/net/wireless/virt_wifi.mod.o
2025-10-02T16:34:45.0941138Z CC [M] drivers/net/wireless/wl3501_cs.mod.o
2025-10-02T16:34:45.1379321Z CC [M] drivers/net/wireless/zydas/zd1201.mod.o
2025-10-02T16:34:45.2374926Z CC [M] drivers/net/wireless/zydas/zd1211rw/zd1211rw.mod.o
2025-10-02T16:34:45.2576005Z CC [M] drivers/net/xen-netback/xen-netback.mod.o
2025-10-02T16:34:45.2671570Z CC [M] drivers/net/xen-netfront.mod.o
2025-10-02T16:34:45.4293126Z CC [M] drivers/nfc/fdp/fdp.mod.o
2025-10-02T16:34:45.5298435Z CC [M] drivers/nfc/fdp/fdp_i2c.mod.o
2025-10-02T16:34:45.5530465Z CC [M] drivers/nfc/mei_phy.mod.o
2025-10-02T16:34:45.6177682Z CC [M] drivers/nfc/microread/microread.mod.o
2025-10-02T16:34:45.6788374Z CC [M] drivers/nfc/microread/microread_i2c.mod.o
2025-10-02T16:34:45.8091186Z CC [M] drivers/nfc/microread/microread_mei.mod.o
2025-10-02T16:34:45.8500809Z CC [M] drivers/nfc/nfcmrvl/nfcmrvl.mod.o
2025-10-02T16:34:45.9045988Z CC [M] drivers/nfc/nfcmrvl/nfcmrvl_i2c.mod.o
2025-10-02T16:34:45.9892753Z CC [M] drivers/nfc/nfcmrvl/nfcmrvl_spi.mod.o
2025-10-02T16:34:46.0808288Z CC [M] drivers/nfc/nfcmrvl/nfcmrvl_uart.mod.o
2025-10-02T16:34:46.1488198Z CC [M] drivers/nfc/nfcmrvl/nfcmrvl_usb.mod.o
2025-10-02T16:34:46.1935611Z CC [M] drivers/nfc/nfcsim.mod.o
2025-10-02T16:34:46.2846296Z CC [M] drivers/nfc/nxp-nci/nxp-nci_i2c.mod.o
2025-10-02T16:34:46.2866764Z CC [M] drivers/nfc/nxp-nci/nxp-nci.mod.o
2025-10-02T16:34:46.5335240Z CC [M] drivers/nfc/pn533/pn532_uart.mod.o
2025-10-02T16:34:46.5336738Z CC [M] drivers/nfc/pn533/pn533.mod.o
2025-10-02T16:34:46.5539418Z CC [M] drivers/nfc/pn533/pn533_i2c.mod.o
2025-10-02T16:34:46.5902741Z CC [M] drivers/nfc/pn533/pn533_usb.mod.o
2025-10-02T16:34:46.6226333Z CC [M] drivers/nfc/pn544/pn544.mod.o
2025-10-02T16:34:46.8201735Z CC [M] drivers/nfc/pn544/pn544_i2c.mod.o
2025-10-02T16:34:46.8893875Z CC [M] drivers/nfc/pn544/pn544_mei.mod.o
2025-10-02T16:34:46.9261390Z CC [M] drivers/nfc/port100.mod.o
2025-10-02T16:34:46.9862580Z CC [M] drivers/nfc/s3fwrn5/s3fwrn5.mod.o
2025-10-02T16:34:47.0052056Z CC [M] drivers/nfc/s3fwrn5/s3fwrn5_i2c.mod.o
2025-10-02T16:34:47.1830778Z CC [M] drivers/nfc/st-nci/st-nci.mod.o
2025-10-02T16:34:47.1998618Z CC [M] drivers/nfc/st-nci/st-nci_i2c.mod.o
2025-10-02T16:34:47.2743239Z CC [M] drivers/nfc/st-nci/st-nci_spi.mod.o
2025-10-02T16:34:47.3442406Z CC [M] drivers/nfc/st21nfca/st21nfca_hci.mod.o
2025-10-02T16:34:47.3911159Z CC [M] drivers/nfc/st21nfca/st21nfca_i2c.mod.o
2025-10-02T16:34:47.4721053Z CC [M] drivers/nfc/st95hf/st95hf.mod.o
2025-10-02T16:34:47.5688917Z CC [M] drivers/nfc/trf7970a.mod.o
2025-10-02T16:34:47.6635363Z CC [M] drivers/ntb/hw/amd/ntb_hw_amd.mod.o
2025-10-02T16:34:47.7010086Z CC [M] drivers/ntb/hw/idt/ntb_hw_idt.mod.o
2025-10-02T16:34:47.7634057Z CC [M] drivers/ntb/hw/intel/ntb_hw_intel.mod.o
2025-10-02T16:34:47.8713202Z CC [M] drivers/ntb/hw/mscc/ntb_hw_switchtec.mod.o
2025-10-02T16:34:47.8925674Z CC [M] drivers/ntb/ntb.mod.o
2025-10-02T16:34:48.0277202Z CC [M] drivers/ntb/ntb_transport.mod.o
2025-10-02T16:34:48.0586235Z CC [M] drivers/nvdimm/nd_blk.mod.o
2025-10-02T16:34:48.1303127Z CC [M] drivers/nvdimm/nd_btt.mod.o
2025-10-02T16:34:48.1723365Z CC [M] drivers/nvdimm/nd_e820.mod.o
2025-10-02T16:34:48.3052513Z CC [M] drivers/nvdimm/nd_pmem.mod.o
2025-10-02T16:34:48.3420415Z CC [M] drivers/nvdimm/nd_virtio.mod.o
2025-10-02T16:34:48.4020029Z CC [M] drivers/nvdimm/virtio_pmem.mod.o
2025-10-02T16:34:48.4778731Z CC [M] drivers/nvme/host/nvme-fabrics.mod.o
2025-10-02T16:34:48.5514566Z CC [M] drivers/nvme/host/nvme-fc.mod.o
2025-10-02T16:34:48.6725743Z CC [M] drivers/nvme/host/nvme-rdma.mod.o
2025-10-02T16:34:48.6754043Z CC [M] drivers/nvme/host/nvme-tcp.mod.o
2025-10-02T16:34:48.7222586Z CC [M] drivers/nvme/target/nvme-fcloop.mod.o
2025-10-02T16:34:48.8192144Z CC [M] drivers/nvme/target/nvme-loop.mod.o
2025-10-02T16:34:48.9669133Z CC [M] drivers/nvme/target/nvmet-fc.mod.o
2025-10-02T16:34:48.9977664Z CC [M] drivers/nvme/target/nvmet-rdma.mod.o
2025-10-02T16:34:49.0112173Z CC [M] drivers/nvme/target/nvmet-tcp.mod.o
2025-10-02T16:34:49.0424231Z CC [M] drivers/nvme/target/nvmet.mod.o
2025-10-02T16:34:49.2026340Z CC [M] drivers/nvmem/nvmem-rave-sp-eeprom.mod.o
2025-10-02T16:34:49.3216025Z CC [M] drivers/parport/parport.mod.o
2025-10-02T16:34:49.3391676Z CC [M] drivers/parport/parport_ax88796.mod.o
2025-10-02T16:34:49.3420764Z CC [M] drivers/parport/parport_cs.mod.o
2025-10-02T16:34:49.4002330Z CC [M] drivers/parport/parport_pc.mod.o
2025-10-02T16:34:49.6042193Z CC [M] drivers/parport/parport_serial.mod.o
2025-10-02T16:34:49.6437832Z CC [M] drivers/pci/controller/pci-hyperv-intf.mod.o
2025-10-02T16:34:49.7033660Z CC [M] drivers/pci/controller/pci-hyperv.mod.o
2025-10-02T16:34:49.7064602Z CC [M] drivers/pci/controller/vmd.mod.o
2025-10-02T16:34:49.7479249Z CC [M] drivers/pci/hotplug/acpiphp_ibm.mod.o
2025-10-02T16:34:49.9982651Z CC [M] drivers/pci/hotplug/cpcihp_generic.mod.o
2025-10-02T16:34:50.0361977Z CC [M] drivers/pci/hotplug/cpcihp_zt5550.mod.o
2025-10-02T16:34:50.0386583Z CC [M] drivers/pci/pci-pf-stub.mod.o
2025-10-02T16:34:50.0462126Z CC [M] drivers/pci/pcie/aer_inject.mod.o
2025-10-02T16:34:50.1027811Z CC [M] drivers/pci/switch/switchtec.mod.o
2025-10-02T16:34:50.2921575Z CC [M] drivers/pci/xen-pcifront.mod.o
2025-10-02T16:34:50.3585065Z CC [M] drivers/pcmcia/i82092.mod.o
2025-10-02T16:34:50.3936310Z CC [M] drivers/pcmcia/pcmcia.mod.o
2025-10-02T16:34:50.4813300Z CC [M] drivers/pcmcia/pcmcia_core.mod.o
2025-10-02T16:34:50.4898888Z CC [M] drivers/pcmcia/pcmcia_rsrc.mod.o
2025-10-02T16:34:50.6447103Z CC [M] drivers/pcmcia/pd6729.mod.o
2025-10-02T16:34:50.6610025Z CC [M] drivers/pcmcia/yenta_socket.mod.o
2025-10-02T16:34:50.7690023Z CC [M] drivers/phy/intel/phy-intel-lgm-emmc.mod.o
2025-10-02T16:34:50.7697397Z CC [M] drivers/phy/broadcom/phy-bcm-kona-usb2.mod.o
2025-10-02T16:34:50.8750523Z CC [M] drivers/phy/marvell/phy-pxa-28nm-hsic.mod.o
2025-10-02T16:34:51.0101243Z CC [M] drivers/phy/marvell/phy-pxa-28nm-usb2.mod.o
2025-10-02T16:34:51.0473575Z CC [M] drivers/phy/motorola/phy-cpcap-usb.mod.o
2025-10-02T16:34:51.0817007Z CC [M] drivers/phy/phy-lgm-usb.mod.o
2025-10-02T16:34:51.0945086Z CC [M] drivers/phy/qualcomm/phy-qcom-usb-hs.mod.o
2025-10-02T16:34:51.2823717Z CC [M] drivers/phy/qualcomm/phy-qcom-usb-hsic.mod.o
2025-10-02T16:34:51.3556260Z CC [M] drivers/phy/ti/phy-tusb1210.mod.o
2025-10-02T16:34:51.4060560Z CC [M] drivers/pinctrl/cirrus/pinctrl-madera.mod.o
2025-10-02T16:34:51.4121623Z CC [M] drivers/pinctrl/pinctrl-amd.mod.o
2025-10-02T16:34:51.4610472Z CC [M] drivers/pinctrl/pinctrl-da9062.mod.o
2025-10-02T16:34:51.6756233Z CC [M] drivers/pinctrl/pinctrl-mcp23s08.mod.o
2025-10-02T16:34:51.7054761Z CC [M] drivers/pinctrl/pinctrl-mcp23s08_i2c.mod.o
2025-10-02T16:34:51.7366463Z CC [M] drivers/pinctrl/pinctrl-mcp23s08_spi.mod.o
2025-10-02T16:34:51.7411232Z CC [M] drivers/platform/chrome/chromeos_laptop.mod.o
2025-10-02T16:34:51.8380066Z CC [M] drivers/platform/chrome/chromeos_pstore.mod.o
2025-10-02T16:34:52.0324573Z CC [M] drivers/platform/chrome/chromeos_tbmc.mod.o
2025-10-02T16:34:52.0420382Z CC [M] drivers/platform/chrome/cros-ec-sensorhub.mod.o
2025-10-02T16:34:52.0591006Z CC [M] drivers/platform/chrome/cros_ec.mod.o
2025-10-02T16:34:52.0656134Z CC [M] drivers/platform/chrome/cros_ec_chardev.mod.o
2025-10-02T16:34:52.1826021Z CC [M] drivers/platform/chrome/cros_ec_debugfs.mod.o
2025-10-02T16:34:52.3421968Z CC [M] drivers/platform/chrome/cros_ec_i2c.mod.o
2025-10-02T16:34:52.3709426Z CC [M] drivers/platform/chrome/cros_ec_ishtp.mod.o
2025-10-02T16:34:52.4486549Z CC [M] drivers/platform/chrome/cros_ec_lightbar.mod.o
2025-10-02T16:34:52.4860126Z CC [M] drivers/platform/chrome/cros_ec_lpcs.mod.o
2025-10-02T16:34:52.4894172Z CC [M] drivers/platform/chrome/cros_ec_spi.mod.o
2025-10-02T16:34:52.6705003Z CC [M] drivers/platform/chrome/cros_ec_sysfs.mod.o
2025-10-02T16:34:52.7748350Z CC [M] drivers/platform/chrome/cros_ec_typec.mod.o
2025-10-02T16:34:52.8162927Z CC [M] drivers/platform/chrome/cros_kbd_led_backlight.mod.o
2025-10-02T16:34:52.8571706Z CC [M] drivers/platform/chrome/cros_usbpd_logger.mod.o
2025-10-02T16:34:52.8872400Z CC [M] drivers/platform/chrome/cros_usbpd_notify.mod.o
2025-10-02T16:34:53.0117419Z CC [M] drivers/platform/chrome/wilco_ec/wilco_ec.mod.o
2025-10-02T16:34:53.1021641Z CC [M] drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.mod.o
2025-10-02T16:34:53.1219157Z CC [M] drivers/platform/chrome/wilco_ec/wilco_ec_events.mod.o
2025-10-02T16:34:53.1591490Z CC [M] drivers/platform/chrome/wilco_ec/wilco_ec_telem.mod.o
2025-10-02T16:34:53.2709965Z CC [M] drivers/platform/mellanox/mlxreg-hotplug.mod.o
2025-10-02T16:34:53.3803874Z CC [M] drivers/platform/mellanox/mlxreg-io.mod.o
2025-10-02T16:34:53.4081013Z CC [M] drivers/platform/x86/acer-wireless.mod.o
2025-10-02T16:34:53.4790751Z CC [M] drivers/platform/x86/acer-wmi.mod.o
2025-10-02T16:34:53.4940867Z CC [M] drivers/platform/x86/acerhdf.mod.o
2025-10-02T16:34:53.6203404Z CC [M] drivers/platform/x86/alienware-wmi.mod.o
2025-10-02T16:34:53.7382851Z CC [M] drivers/platform/x86/amilo-rfkill.mod.o
2025-10-02T16:34:53.7872984Z CC [M] drivers/platform/x86/asus-laptop.mod.o
2025-10-02T16:34:53.7892046Z CC [M] drivers/platform/x86/apple-gmux.mod.o
2025-10-02T16:34:53.8893453Z CC [M] drivers/platform/x86/asus-nb-wmi.mod.o
2025-10-02T16:34:53.9517117Z CC [M] drivers/platform/x86/asus-wireless.mod.o
2025-10-02T16:34:54.0723943Z CC [M] drivers/platform/x86/asus-wmi.mod.o
2025-10-02T16:34:54.1116171Z CC [M] drivers/platform/x86/classmate-laptop.mod.o
2025-10-02T16:34:54.2153467Z CC [M] drivers/platform/x86/compal-laptop.mod.o
2025-10-02T16:34:54.2368511Z CC [M] drivers/platform/x86/dcdbas.mod.o
2025-10-02T16:34:54.2571521Z CC [M] drivers/platform/x86/dell-laptop.mod.o
2025-10-02T16:34:54.3493958Z CC [M] drivers/platform/x86/dell-rbtn.mod.o
2025-10-02T16:34:54.5421896Z CC [M] drivers/platform/x86/dell-smbios.mod.o
2025-10-02T16:34:54.5460907Z CC [M] drivers/platform/x86/dell-smo8800.mod.o
2025-10-02T16:34:54.6074528Z CC [M] drivers/platform/x86/dell-wmi-aio.mod.o
2025-10-02T16:34:54.6497545Z CC [M] drivers/platform/x86/dell-wmi-descriptor.mod.o
2025-10-02T16:34:54.6850019Z CC [M] drivers/platform/x86/dell-wmi-led.mod.o
2025-10-02T16:34:54.8813996Z CC [M] drivers/platform/x86/dell-wmi.mod.o
2025-10-02T16:34:54.9312853Z CC [M] drivers/platform/x86/eeepc-laptop.mod.o
2025-10-02T16:34:54.9322758Z CC [M] drivers/platform/x86/eeepc-wmi.mod.o
2025-10-02T16:34:54.9481301Z CC [M] drivers/platform/x86/fujitsu-laptop.mod.o
2025-10-02T16:34:55.0300729Z CC [M] drivers/platform/x86/fujitsu-tablet.mod.o
2025-10-02T16:34:55.2109078Z CC [M] drivers/platform/x86/gpd-pocket-fan.mod.o
2025-10-02T16:34:55.2612621Z CC [M] drivers/platform/x86/hdaps.mod.o
2025-10-02T16:34:55.3095821Z CC [M] drivers/platform/x86/hp-wireless.mod.o
2025-10-02T16:34:55.3275570Z CC [M] drivers/platform/x86/hp-wmi.mod.o
2025-10-02T16:34:55.4075840Z CC [M] drivers/platform/x86/hp_accel.mod.o
2025-10-02T16:34:55.5527133Z CC [M] drivers/platform/x86/huawei-wmi.mod.o
2025-10-02T16:34:55.5942513Z CC [M] drivers/platform/x86/i2c-multi-instantiate.mod.o
2025-10-02T16:34:55.6244103Z CC [M] drivers/platform/x86/ibm_rtl.mod.o
2025-10-02T16:34:55.6501996Z CC [M] drivers/platform/x86/ideapad-laptop.mod.o
2025-10-02T16:34:55.7362224Z CC [M] drivers/platform/x86/intel-hid.mod.o
2025-10-02T16:34:55.9255243Z CC [M] drivers/platform/x86/intel-rst.mod.o
2025-10-02T16:34:55.9822728Z CC [M] drivers/platform/x86/intel-smartconnect.mod.o
2025-10-02T16:34:56.0092624Z CC [M] drivers/platform/x86/intel-uncore-frequency.mod.o
2025-10-02T16:34:56.0511669Z CC [M] drivers/platform/x86/intel-vbtn.mod.o
2025-10-02T16:34:56.0611242Z CC [M] drivers/platform/x86/intel-wmi-sbl-fw-update.mod.o
2025-10-02T16:34:56.3082387Z CC [M] drivers/platform/x86/intel-wmi-thunderbolt.mod.o
2025-10-02T16:34:56.3225848Z CC [M] drivers/platform/x86/intel_bxtwc_tmu.mod.o
2025-10-02T16:34:56.3240457Z CC [M] drivers/platform/x86/intel_atomisp2_led.mod.o
2025-10-02T16:34:56.3614586Z CC [M] drivers/platform/x86/intel_cht_int33fe.mod.o
2025-10-02T16:34:56.4158759Z CC [M] drivers/platform/x86/intel_chtdc_ti_pwrbtn.mod.o
2025-10-02T16:34:56.5959903Z CC [M] drivers/platform/x86/intel_int0002_vgpio.mod.o
2025-10-02T16:34:56.6072657Z CC [M] drivers/platform/x86/intel_ips.mod.o
2025-10-02T16:34:56.7472461Z CC [M] drivers/platform/x86/intel_menlow.mod.o
2025-10-02T16:34:56.7894971Z CC [M] drivers/platform/x86/intel_mid_powerbtn.mod.o
2025-10-02T16:34:56.8312902Z CC [M] drivers/platform/x86/intel_mid_thermal.mod.o
2025-10-02T16:34:56.8959230Z CC [M] drivers/platform/x86/intel_mrfld_pwrbtn.mod.o
2025-10-02T16:34:56.9137951Z CC [M] drivers/platform/x86/intel_oaktrail.mod.o
2025-10-02T16:34:57.1068387Z CC [M] drivers/platform/x86/intel_punit_ipc.mod.o
2025-10-02T16:34:57.1081681Z CC [M] drivers/platform/x86/intel_scu_ipcutil.mod.o
2025-10-02T16:34:57.1550703Z CC [M] drivers/platform/x86/intel_scu_pltdrv.mod.o
2025-10-02T16:34:57.2301217Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_common.mod.o
2025-10-02T16:34:57.3432171Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_mbox_msr.mod.o
2025-10-02T16:34:57.3912236Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_mbox_pci.mod.o
2025-10-02T16:34:57.4489897Z CC [M] drivers/platform/x86/intel_speed_select_if/isst_if_mmio.mod.o
2025-10-02T16:34:57.4901099Z CC [M] drivers/platform/x86/intel_telemetry_core.mod.o
2025-10-02T16:34:57.6497483Z CC [M] drivers/platform/x86/intel_telemetry_debugfs.mod.o
2025-10-02T16:34:57.6747375Z CC [M] drivers/platform/x86/intel_telemetry_pltdrv.mod.o
2025-10-02T16:34:57.7046154Z CC [M] drivers/platform/x86/lg-laptop.mod.o
2025-10-02T16:34:57.7506986Z CC [M] drivers/platform/x86/mlx-platform.mod.o
2025-10-02T16:34:57.9461041Z CC [M] drivers/platform/x86/msi-laptop.mod.o
2025-10-02T16:34:57.9745004Z CC [M] drivers/platform/x86/msi-wmi.mod.o
2025-10-02T16:34:57.9964417Z CC [M] drivers/platform/x86/mxm-wmi.mod.o
2025-10-02T16:34:58.0301800Z CC [M] drivers/platform/x86/panasonic-laptop.mod.o
2025-10-02T16:34:58.1680377Z CC [M] drivers/platform/x86/pcengines-apuv2.mod.o
2025-10-02T16:34:58.2391214Z CC [M] drivers/platform/x86/peaq-wmi.mod.o
2025-10-02T16:34:58.2626319Z CC [M] drivers/platform/x86/samsung-laptop.mod.o
2025-10-02T16:34:58.3512456Z CC [M] drivers/platform/x86/samsung-q10.mod.o
2025-10-02T16:34:58.4268552Z CC [M] drivers/platform/x86/sony-laptop.mod.o
2025-10-02T16:34:58.5471525Z CC [M] drivers/platform/x86/surface3-wmi.mod.o
2025-10-02T16:34:58.5578284Z CC [M] drivers/platform/x86/surface3_button.mod.o
2025-10-02T16:34:58.5778310Z CC [M] drivers/platform/x86/surface3_power.mod.o
2025-10-02T16:34:58.6941927Z CC [M] drivers/platform/x86/surfacepro3_button.mod.o
2025-10-02T16:34:58.7564243Z CC [M] drivers/platform/x86/system76_acpi.mod.o
2025-10-02T16:34:58.9042321Z CC [M] drivers/platform/x86/thinkpad_acpi.mod.o
2025-10-02T16:34:58.9300965Z CC [M] drivers/platform/x86/topstar-laptop.mod.o
2025-10-02T16:34:59.0035577Z CC [M] drivers/platform/x86/toshiba-wmi.mod.o
2025-10-02T16:34:59.0361033Z CC [M] drivers/platform/x86/toshiba_acpi.mod.o
2025-10-02T16:34:59.0552481Z CC [M] drivers/platform/x86/toshiba_bluetooth.mod.o
2025-10-02T16:34:59.2413022Z CC [M] drivers/platform/x86/toshiba_haps.mod.o
2025-10-02T16:34:59.3030786Z CC [M] drivers/platform/x86/wmi-bmof.mod.o
2025-10-02T16:34:59.3156312Z CC [M] drivers/platform/x86/wmi.mod.o
2025-10-02T16:34:59.3839963Z CC [M] drivers/platform/x86/xiaomi-wmi.mod.o
2025-10-02T16:34:59.4231218Z CC [M] drivers/power/supply/88pm860x_battery.mod.o
2025-10-02T16:34:59.6147292Z CC [M] drivers/power/supply/88pm860x_charger.mod.o
2025-10-02T16:34:59.6230678Z CC [M] drivers/power/supply/adp5061.mod.o
2025-10-02T16:34:59.7009116Z CC [M] drivers/power/supply/axp20x_ac_power.mod.o
2025-10-02T16:34:59.7052139Z CC [M] drivers/power/supply/axp20x_battery.mod.o
2025-10-02T16:34:59.8318443Z CC [M] drivers/power/supply/axp20x_usb_power.mod.o
2025-10-02T16:34:59.9032257Z CC [M] drivers/power/supply/axp288_charger.mod.o
2025-10-02T16:35:00.0093062Z CC [M] drivers/power/supply/axp288_fuel_gauge.mod.o
2025-10-02T16:35:00.0125196Z CC [M] drivers/power/supply/bd99954-charger.mod.o
2025-10-02T16:35:00.0863899Z CC [M] drivers/power/supply/bq2415x_charger.mod.o
2025-10-02T16:35:00.2056283Z CC [M] drivers/power/supply/bq24190_charger.mod.o
2025-10-02T16:35:00.2371186Z CC [M] drivers/power/supply/bq24257_charger.mod.o
2025-10-02T16:35:00.3625325Z CC [M] drivers/power/supply/bq24735-charger.mod.o
2025-10-02T16:35:00.4125009Z CC [M] drivers/power/supply/bq2515x_charger.mod.o
2025-10-02T16:35:00.4417055Z CC [M] drivers/power/supply/bq25890_charger.mod.o
2025-10-02T16:35:00.5254207Z CC [M] drivers/power/supply/bq25980_charger.mod.o
2025-10-02T16:35:00.5458779Z CC [M] drivers/power/supply/bq27xxx_battery.mod.o
2025-10-02T16:35:00.6721639Z CC [M] drivers/power/supply/bq27xxx_battery_hdq.mod.o
2025-10-02T16:35:00.8007737Z CC [M] drivers/power/supply/bq27xxx_battery_i2c.mod.o
2025-10-02T16:35:00.8663138Z CC [M] drivers/power/supply/cros_usbpd-charger.mod.o
2025-10-02T16:35:00.8765605Z CC [M] drivers/power/supply/cw2015_battery.mod.o
2025-10-02T16:35:00.8787434Z CC [M] drivers/power/supply/da9030_battery.mod.o
2025-10-02T16:35:00.9535517Z CC [M] drivers/power/supply/da9052-battery.mod.o
2025-10-02T16:35:01.1573990Z CC [M] drivers/power/supply/da9150-charger.mod.o
2025-10-02T16:35:01.1730551Z CC [M] drivers/power/supply/da9150-fg.mod.o
2025-10-02T16:35:01.2085562Z CC [M] drivers/power/supply/ds2760_battery.mod.o
2025-10-02T16:35:01.2852168Z CC [M] drivers/power/supply/ds2780_battery.mod.o
2025-10-02T16:35:01.3230471Z CC [M] drivers/power/supply/ds2781_battery.mod.o
2025-10-02T16:35:01.4863649Z CC [M] drivers/power/supply/ds2782_battery.mod.o
2025-10-02T16:35:01.4954240Z CC [M] drivers/power/supply/generic-adc-battery.mod.o
2025-10-02T16:35:01.5543013Z CC [M] drivers/power/supply/gpio-charger.mod.o
2025-10-02T16:35:01.6146978Z CC [M] drivers/power/supply/isp1704_charger.mod.o
2025-10-02T16:35:01.7219948Z CC [M] drivers/power/supply/lp8727_charger.mod.o
2025-10-02T16:35:01.7819134Z CC [M] drivers/power/supply/lp8788-charger.mod.o
2025-10-02T16:35:01.8986594Z CC [M] drivers/power/supply/lt3651-charger.mod.o
2025-10-02T16:35:01.8988562Z CC [M] drivers/power/supply/ltc2941-battery-gauge.mod.o
2025-10-02T16:35:02.0110783Z CC [M] drivers/power/supply/max14577_charger.mod.o
2025-10-02T16:35:02.0679745Z CC [M] drivers/power/supply/max17040_battery.mod.o
2025-10-02T16:35:02.1593397Z CC [M] drivers/power/supply/max17042_battery.mod.o
2025-10-02T16:35:02.2048318Z CC [M] drivers/power/supply/max1721x_battery.mod.o
2025-10-02T16:35:02.2838073Z CC [M] drivers/power/supply/max77693_charger.mod.o
2025-10-02T16:35:02.3595260Z CC [M] drivers/power/supply/max8903_charger.mod.o
2025-10-02T16:35:02.4279746Z CC [M] drivers/power/supply/max8925_power.mod.o
2025-10-02T16:35:02.4837855Z CC [M] drivers/power/supply/max8997_charger.mod.o
2025-10-02T16:35:02.5744334Z CC [M] drivers/power/supply/max8998_charger.mod.o
2025-10-02T16:35:02.6778306Z CC [M] drivers/power/supply/mp2629_charger.mod.o
2025-10-02T16:35:02.7010203Z CC [M] drivers/power/supply/pcf50633-charger.mod.o
2025-10-02T16:35:02.7636533Z CC [M] drivers/power/supply/pda_power.mod.o
2025-10-02T16:35:02.8427073Z CC [M] drivers/power/supply/rt5033_battery.mod.o
2025-10-02T16:35:02.9707574Z CC [M] drivers/power/supply/rt9455_charger.mod.o
2025-10-02T16:35:02.9804109Z CC [M] drivers/power/supply/rx51_battery.mod.o
2025-10-02T16:35:03.0588253Z CC [M] drivers/power/supply/sbs-battery.mod.o
2025-10-02T16:35:03.0860837Z CC [M] drivers/power/supply/sbs-charger.mod.o
2025-10-02T16:35:03.2514117Z CC [M] drivers/power/supply/sbs-manager.mod.o
2025-10-02T16:35:03.3054668Z CC [M] drivers/power/supply/smb347-charger.mod.o
2025-10-02T16:35:03.3435368Z CC [M] drivers/power/supply/test_power.mod.o
2025-10-02T16:35:03.4132494Z CC [M] drivers/power/supply/tps65090-charger.mod.o
2025-10-02T16:35:03.4823337Z CC [M] drivers/power/supply/twl4030_charger.mod.o
2025-10-02T16:35:03.5753625Z CC [M] drivers/power/supply/twl4030_madc_battery.mod.o
2025-10-02T16:35:03.6591188Z CC [M] drivers/power/supply/wilco-charger.mod.o
2025-10-02T16:35:03.7044597Z CC [M] drivers/power/supply/wm831x_backup.mod.o
2025-10-02T16:35:03.7991197Z CC [M] drivers/power/supply/wm831x_power.mod.o
2025-10-02T16:35:03.8538011Z CC [M] drivers/power/supply/wm8350_power.mod.o
2025-10-02T16:35:03.8747050Z CC [M] drivers/powercap/intel_rapl_common.mod.o
2025-10-02T16:35:04.0165270Z CC [M] drivers/powercap/intel_rapl_msr.mod.o
2025-10-02T16:35:04.0269402Z CC [M] drivers/pps/clients/pps-gpio.mod.o
2025-10-02T16:35:04.1578715Z CC [M] drivers/pps/clients/pps-ktimer.mod.o
2025-10-02T16:35:04.2744689Z CC [M] drivers/pps/clients/pps-ldisc.mod.o
2025-10-02T16:35:04.3195876Z CC [M] drivers/pps/clients/pps_parport.mod.o
2025-10-02T16:35:04.3393885Z CC [M] drivers/ptp/ptp_clockmatrix.mod.o
2025-10-02T16:35:04.3679648Z CC [M] drivers/ptp/ptp_idt82p33.mod.o
2025-10-02T16:35:04.4652279Z CC [M] drivers/ptp/ptp_ines.mod.o
2025-10-02T16:35:04.6704312Z CC [M] drivers/ptp/ptp_kvm.mod.o
2025-10-02T16:35:04.6718478Z CC [M] drivers/ptp/ptp_vmw.mod.o
2025-10-02T16:35:04.6908622Z CC [M] drivers/pwm/pwm-cros-ec.mod.o
2025-10-02T16:35:04.7212299Z CC [M] drivers/pwm/pwm-iqs620a.mod.o
2025-10-02T16:35:04.8470969Z CC [M] drivers/pwm/pwm-lp3943.mod.o
2025-10-02T16:35:04.9817019Z CC [M] drivers/pwm/pwm-lpss-pci.mod.o
2025-10-02T16:35:04.9875718Z CC [M] drivers/pwm/pwm-lpss-platform.mod.o
2025-10-02T16:35:05.0311511Z CC [M] drivers/pwm/pwm-lpss.mod.o
2025-10-02T16:35:05.0722829Z CC [M] drivers/pwm/pwm-pca9685.mod.o
2025-10-02T16:35:05.2821918Z CC [M] drivers/pwm/pwm-twl-led.mod.o
2025-10-02T16:35:05.2908572Z CC [M] drivers/pwm/pwm-twl.mod.o
2025-10-02T16:35:05.3383721Z CC [M] drivers/regulator/88pg86x.mod.o
2025-10-02T16:35:05.4204651Z CC [M] drivers/regulator/88pm800-regulator.mod.o
2025-10-02T16:35:05.4363623Z CC [M] drivers/regulator/88pm8607.mod.o
2025-10-02T16:35:05.5870041Z CC [M] drivers/regulator/aat2870-regulator.mod.o
2025-10-02T16:35:05.6251565Z CC [M] drivers/regulator/ab3100.mod.o
2025-10-02T16:35:05.6382917Z CC [M] drivers/regulator/act8865-regulator.mod.o
2025-10-02T16:35:05.8337306Z CC [M] drivers/regulator/ad5398.mod.o
2025-10-02T16:35:05.8917056Z CC [M] drivers/regulator/arizona-ldo1.mod.o
2025-10-02T16:35:05.9412100Z CC [M] drivers/regulator/as3711-regulator.mod.o
2025-10-02T16:35:05.9427382Z CC [M] drivers/regulator/arizona-micsupp.mod.o
2025-10-02T16:35:06.0093753Z CC [M] drivers/regulator/axp20x-regulator.mod.o
2025-10-02T16:35:06.1645186Z CC [M] drivers/regulator/bcm590xx-regulator.mod.o
2025-10-02T16:35:06.2435050Z CC [M] drivers/regulator/bd9571mwv-regulator.mod.o
2025-10-02T16:35:06.2713343Z CC [M] drivers/regulator/da903x-regulator.mod.o
2025-10-02T16:35:06.2918352Z CC [M] drivers/regulator/da9052-regulator.mod.o
2025-10-02T16:35:06.4439709Z CC [M] drivers/regulator/da9055-regulator.mod.o
2025-10-02T16:35:06.5132862Z CC [M] drivers/regulator/da9062-regulator.mod.o
2025-10-02T16:35:06.5787771Z CC [M] drivers/regulator/da9210-regulator.mod.o
2025-10-02T16:35:06.6416865Z CC [M] drivers/regulator/da9211-regulator.mod.o
2025-10-02T16:35:06.6811095Z CC [M] drivers/regulator/fan53555.mod.o
2025-10-02T16:35:06.7694224Z CC [M] drivers/regulator/fixed.mod.o
2025-10-02T16:35:06.8420740Z CC [M] drivers/regulator/gpio-regulator.mod.o
2025-10-02T16:35:06.9526554Z CC [M] drivers/regulator/isl6271a-regulator.mod.o
2025-10-02T16:35:07.0122121Z CC [M] drivers/regulator/isl9305.mod.o
2025-10-02T16:35:07.1088071Z CC [M] drivers/regulator/lm363x-regulator.mod.o
2025-10-02T16:35:07.1539984Z CC [M] drivers/regulator/lp3971.mod.o
2025-10-02T16:35:07.1577476Z CC [M] drivers/regulator/lp3972.mod.o
2025-10-02T16:35:07.2651165Z CC [M] drivers/regulator/lp872x.mod.o
2025-10-02T16:35:07.3848068Z CC [M] drivers/regulator/lp8755.mod.o
2025-10-02T16:35:07.4260679Z CC [M] drivers/regulator/lp8788-buck.mod.o
2025-10-02T16:35:07.4962821Z CC [M] drivers/regulator/lp8788-ldo.mod.o
2025-10-02T16:35:07.5544762Z CC [M] drivers/regulator/ltc3589.mod.o
2025-10-02T16:35:07.6381615Z CC [M] drivers/regulator/ltc3676.mod.o
2025-10-02T16:35:07.7265011Z CC [M] drivers/regulator/max14577-regulator.mod.o
2025-10-02T16:35:07.7848260Z CC [M] drivers/regulator/max1586.mod.o
2025-10-02T16:35:07.8466150Z CC [M] drivers/regulator/max77693-regulator.mod.o
2025-10-02T16:35:07.8993267Z CC [M] drivers/regulator/max77826-regulator.mod.o
2025-10-02T16:35:07.9838571Z CC [M] drivers/regulator/max8649.mod.o
2025-10-02T16:35:08.0620650Z CC [M] drivers/regulator/max8660.mod.o
2025-10-02T16:35:08.1543224Z CC [M] drivers/regulator/max8907-regulator.mod.o
2025-10-02T16:35:08.1630673Z CC [M] drivers/regulator/max8925-regulator.mod.o
2025-10-02T16:35:08.2561973Z CC [M] drivers/regulator/max8952.mod.o
2025-10-02T16:35:08.3844314Z CC [M] drivers/regulator/max8997-regulator.mod.o
2025-10-02T16:35:08.4355457Z CC [M] drivers/regulator/max8998.mod.o
2025-10-02T16:35:08.4952335Z CC [M] drivers/regulator/mc13783-regulator.mod.o
2025-10-02T16:35:08.5512255Z CC [M] drivers/regulator/mc13892-regulator.mod.o
2025-10-02T16:35:08.6103388Z CC [M] drivers/regulator/mc13xxx-regulator-core.mod.o
2025-10-02T16:35:08.7596885Z CC [M] drivers/regulator/mp8859.mod.o
2025-10-02T16:35:08.7741077Z CC [M] drivers/regulator/mt6311-regulator.mod.o
2025-10-02T16:35:08.8547605Z CC [M] drivers/regulator/mt6323-regulator.mod.o
2025-10-02T16:35:08.8801454Z CC [M] drivers/regulator/mt6358-regulator.mod.o
2025-10-02T16:35:08.9704475Z CC [M] drivers/regulator/mt6360-regulator.mod.o
2025-10-02T16:35:09.0987443Z CC [M] drivers/regulator/mt6397-regulator.mod.o
2025-10-02T16:35:09.1687418Z CC [M] drivers/regulator/palmas-regulator.mod.o
2025-10-02T16:35:09.1781279Z CC [M] drivers/regulator/pca9450-regulator.mod.o
2025-10-02T16:35:09.2344137Z CC [M] drivers/regulator/pcap-regulator.mod.o
2025-10-02T16:35:09.3814129Z CC [M] drivers/regulator/pcf50633-regulator.mod.o
2025-10-02T16:35:09.4536618Z CC [M] drivers/regulator/pfuze100-regulator.mod.o
2025-10-02T16:35:09.4906606Z CC [M] drivers/regulator/pv88060-regulator.mod.o
2025-10-02T16:35:09.5315870Z CC [M] drivers/regulator/pv88080-regulator.mod.o
2025-10-02T16:35:09.5879930Z CC [M] drivers/regulator/pv88090-regulator.mod.o
2025-10-02T16:35:09.7733298Z CC [M] drivers/regulator/pwm-regulator.mod.o
2025-10-02T16:35:09.8022703Z CC [M] drivers/regulator/rc5t583-regulator.mod.o
2025-10-02T16:35:09.8232746Z CC [M] drivers/regulator/rpi-panel-attiny-regulator.mod.o
2025-10-02T16:35:09.9178299Z CC [M] drivers/regulator/rt4801-regulator.mod.o
2025-10-02T16:35:09.9801423Z CC [M] drivers/regulator/rt5033-regulator.mod.o
2025-10-02T16:35:10.0611528Z CC [M] drivers/regulator/rtmv20-regulator.mod.o
2025-10-02T16:35:10.1292605Z CC [M] drivers/regulator/s2mpa01.mod.o
2025-10-02T16:35:10.1777894Z CC [M] drivers/regulator/s2mps11.mod.o
2025-10-02T16:35:10.3530090Z CC [M] drivers/regulator/s5m8767.mod.o
2025-10-02T16:35:10.3877200Z CC [M] drivers/regulator/sky81452-regulator.mod.o
2025-10-02T16:35:10.4283779Z CC [M] drivers/regulator/slg51000-regulator.mod.o
2025-10-02T16:35:10.4523513Z CC [M] drivers/regulator/tps51632-regulator.mod.o
2025-10-02T16:35:10.4823940Z CC [M] drivers/regulator/tps6105x-regulator.mod.o
2025-10-02T16:35:10.7446400Z CC [M] drivers/regulator/tps62360-regulator.mod.o
2025-10-02T16:35:10.7611200Z CC [M] drivers/regulator/tps65023-regulator.mod.o
2025-10-02T16:35:10.7716391Z CC [M] drivers/regulator/tps6507x-regulator.mod.o
2025-10-02T16:35:10.8038450Z CC [M] drivers/regulator/tps65086-regulator.mod.o
2025-10-02T16:35:10.8211406Z CC [M] drivers/regulator/tps65090-regulator.mod.o
2025-10-02T16:35:11.0588079Z CC [M] drivers/regulator/tps65132-regulator.mod.o
2025-10-02T16:35:11.1260086Z CC [M] drivers/regulator/tps6524x-regulator.mod.o
2025-10-02T16:35:11.1497361Z CC [M] drivers/regulator/tps6586x-regulator.mod.o
2025-10-02T16:35:11.1508752Z CC [M] drivers/regulator/tps65910-regulator.mod.o
2025-10-02T16:35:11.1916621Z CC [M] drivers/regulator/tps65912-regulator.mod.o
2025-10-02T16:35:11.4125536Z CC [M] drivers/regulator/tps80031-regulator.mod.o
2025-10-02T16:35:11.4641777Z CC [M] drivers/regulator/twl-regulator.mod.o
2025-10-02T16:35:11.5045175Z CC [M] drivers/regulator/twl6030-regulator.mod.o
2025-10-02T16:35:11.5438125Z CC [M] drivers/regulator/userspace-consumer.mod.o
2025-10-02T16:35:11.5789400Z CC [M] drivers/regulator/virtual.mod.o
2025-10-02T16:35:11.7507361Z CC [M] drivers/regulator/wm831x-dcdc.mod.o
2025-10-02T16:35:11.7701082Z CC [M] drivers/regulator/wm831x-isink.mod.o
2025-10-02T16:35:11.8652235Z CC [M] drivers/regulator/wm831x-ldo.mod.o
2025-10-02T16:35:11.8980615Z CC [M] drivers/regulator/wm8350-regulator.mod.o
2025-10-02T16:35:11.9523258Z CC [M] drivers/regulator/wm8400-regulator.mod.o
2025-10-02T16:35:12.0981502Z CC [M] drivers/regulator/wm8994-regulator.mod.o
2025-10-02T16:35:12.1572864Z CC [M] drivers/reset/reset-ti-syscon.mod.o
2025-10-02T16:35:12.2035050Z CC [M] drivers/rpmsg/qcom_glink.mod.o
2025-10-02T16:35:12.2711196Z CC [M] drivers/rpmsg/qcom_glink_rpm.mod.o
2025-10-02T16:35:12.3176767Z CC [M] drivers/rpmsg/rpmsg_char.mod.o
2025-10-02T16:35:12.5044726Z CC [M] drivers/rpmsg/rpmsg_core.mod.o
2025-10-02T16:35:12.5258412Z CC [M] drivers/rpmsg/virtio_rpmsg_bus.mod.o
2025-10-02T16:35:12.5606875Z CC [M] drivers/rtc/rtc-88pm80x.mod.o
2025-10-02T16:35:12.6062330Z CC [M] drivers/rtc/rtc-88pm860x.mod.o
2025-10-02T16:35:12.6221896Z CC [M] drivers/rtc/rtc-ab-b5ze-s3.mod.o
2025-10-02T16:35:12.8359451Z CC [M] drivers/rtc/rtc-ab-eoz9.mod.o
2025-10-02T16:35:12.9047614Z CC [M] drivers/rtc/rtc-ab3100.mod.o
2025-10-02T16:35:12.9206493Z CC [M] drivers/rtc/rtc-abx80x.mod.o
2025-10-02T16:35:12.9446873Z CC [M] drivers/rtc/rtc-bq32k.mod.o
2025-10-02T16:35:12.9729165Z CC [M] drivers/rtc/rtc-bq4802.mod.o
2025-10-02T16:35:13.1758670Z CC [M] drivers/rtc/rtc-cros-ec.mod.o
2025-10-02T16:35:13.2017071Z CC [M] drivers/rtc/rtc-da9052.mod.o
2025-10-02T16:35:13.3110746Z CC [M] drivers/rtc/rtc-da9055.mod.o
2025-10-02T16:35:13.3372810Z CC [M] drivers/rtc/rtc-da9063.mod.o
2025-10-02T16:35:13.3694150Z CC [M] drivers/rtc/rtc-ds1286.mod.o
2025-10-02T16:35:13.5316023Z CC [M] drivers/rtc/rtc-ds1302.mod.o
2025-10-02T16:35:13.5799785Z CC [M] drivers/rtc/rtc-ds1305.mod.o
2025-10-02T16:35:13.6317945Z CC [M] drivers/rtc/rtc-ds1307.mod.o
2025-10-02T16:35:13.6763437Z CC [M] drivers/rtc/rtc-ds1343.mod.o
2025-10-02T16:35:13.7424651Z CC [M] drivers/rtc/rtc-ds1347.mod.o
2025-10-02T16:35:13.8513902Z CC [M] drivers/rtc/rtc-ds1374.mod.o
2025-10-02T16:35:13.9953452Z CC [M] drivers/rtc/rtc-ds1390.mod.o
2025-10-02T16:35:13.9962146Z CC [M] drivers/rtc/rtc-ds1511.mod.o
2025-10-02T16:35:14.0588975Z CC [M] drivers/rtc/rtc-ds1553.mod.o
2025-10-02T16:35:14.1301944Z CC [M] drivers/rtc/rtc-ds1672.mod.o
2025-10-02T16:35:14.1545183Z CC [M] drivers/rtc/rtc-ds1685.mod.o
2025-10-02T16:35:14.2828476Z CC [M] drivers/rtc/rtc-ds1742.mod.o
2025-10-02T16:35:14.3570109Z CC [M] drivers/rtc/rtc-ds2404.mod.o
2025-10-02T16:35:14.4424598Z CC [M] drivers/rtc/rtc-ds3232.mod.o
2025-10-02T16:35:14.5142446Z CC [M] drivers/rtc/rtc-em3027.mod.o
2025-10-02T16:35:14.5498201Z CC [M] drivers/rtc/rtc-fm3130.mod.o
2025-10-02T16:35:14.5901887Z CC [M] drivers/rtc/rtc-ftrtc010.mod.o
2025-10-02T16:35:14.7248163Z CC [M] drivers/rtc/rtc-hid-sensor-time.mod.o
2025-10-02T16:35:14.8469764Z CC [M] drivers/rtc/rtc-isl12022.mod.o
2025-10-02T16:35:14.8781196Z CC [M] drivers/rtc/rtc-isl1208.mod.o
2025-10-02T16:35:14.8815395Z CC [M] drivers/rtc/rtc-lp8788.mod.o
2025-10-02T16:35:14.9708456Z CC [M] drivers/rtc/rtc-m41t80.mod.o
2025-10-02T16:35:15.0325218Z CC [M] drivers/rtc/rtc-m41t93.mod.o
2025-10-02T16:35:15.1662228Z CC [M] drivers/rtc/rtc-m41t94.mod.o
2025-10-02T16:35:15.2784256Z CC [M] drivers/rtc/rtc-m48t35.mod.o
2025-10-02T16:35:15.2932666Z CC [M] drivers/rtc/rtc-m48t59.mod.o
2025-10-02T16:35:15.3373025Z CC [M] drivers/rtc/rtc-m48t86.mod.o
2025-10-02T16:35:15.3851229Z CC [M] drivers/rtc/rtc-max6900.mod.o
2025-10-02T16:35:15.5116640Z CC [M] drivers/rtc/rtc-max6902.mod.o
2025-10-02T16:35:15.5853982Z CC [M] drivers/rtc/rtc-max6916.mod.o
2025-10-02T16:35:15.6152130Z CC [M] drivers/rtc/rtc-max8907.mod.o
2025-10-02T16:35:15.6547976Z CC [M] drivers/rtc/rtc-max8925.mod.o
2025-10-02T16:35:15.7933571Z CC [M] drivers/rtc/rtc-max8997.mod.o
2025-10-02T16:35:15.8650594Z CC [M] drivers/rtc/rtc-max8998.mod.o
2025-10-02T16:35:15.9577447Z CC [M] drivers/rtc/rtc-mc13xxx.mod.o
2025-10-02T16:35:15.9788009Z CC [M] drivers/rtc/rtc-mcp795.mod.o
2025-10-02T16:35:16.0421199Z CC [M] drivers/rtc/rtc-msm6242.mod.o
2025-10-02T16:35:16.1058322Z CC [M] drivers/rtc/rtc-mt6397.mod.o
2025-10-02T16:35:16.2525908Z CC [M] drivers/rtc/rtc-palmas.mod.o
2025-10-02T16:35:16.3477037Z CC [M] drivers/rtc/rtc-pcap.mod.o
2025-10-02T16:35:16.3737533Z CC [M] drivers/rtc/rtc-pcf2123.mod.o
2025-10-02T16:35:16.3864654Z CC [M] drivers/rtc/rtc-pcf2127.mod.o
2025-10-02T16:35:16.4131087Z CC [M] drivers/rtc/rtc-pcf50633.mod.o
2025-10-02T16:35:16.5672794Z CC [M] drivers/rtc/rtc-pcf85063.mod.o
2025-10-02T16:35:16.6597123Z CC [M] drivers/rtc/rtc-pcf8523.mod.o
2025-10-02T16:35:16.7010223Z CC [M] drivers/rtc/rtc-pcf85363.mod.o
2025-10-02T16:35:16.7382730Z CC [M] drivers/rtc/rtc-pcf8563.mod.o
2025-10-02T16:35:16.8661328Z CC [M] drivers/rtc/rtc-pcf8583.mod.o
2025-10-02T16:35:16.9397957Z CC [M] drivers/rtc/rtc-r9701.mod.o
2025-10-02T16:35:16.9877139Z CC [M] drivers/rtc/rtc-rc5t583.mod.o
2025-10-02T16:35:17.0329240Z CC [M] drivers/rtc/rtc-rp5c01.mod.o
2025-10-02T16:35:17.1755395Z CC [M] drivers/rtc/rtc-rs5c348.mod.o
2025-10-02T16:35:17.2052851Z CC [M] drivers/rtc/rtc-rs5c372.mod.o
2025-10-02T16:35:17.3156447Z CC [M] drivers/rtc/rtc-rv3028.mod.o
2025-10-02T16:35:17.3262682Z CC [M] drivers/rtc/rtc-rv3029c2.mod.o
2025-10-02T16:35:17.3819287Z CC [M] drivers/rtc/rtc-rv3032.mod.o
2025-10-02T16:35:17.4902563Z CC [M] drivers/rtc/rtc-rv8803.mod.o
2025-10-02T16:35:17.6069253Z CC [M] drivers/rtc/rtc-rx4581.mod.o
2025-10-02T16:35:17.6102537Z CC [M] drivers/rtc/rtc-rx6110.mod.o
2025-10-02T16:35:17.7380877Z CC [M] drivers/rtc/rtc-rx8010.mod.o
2025-10-02T16:35:17.7467494Z CC [M] drivers/rtc/rtc-rx8025.mod.o
2025-10-02T16:35:17.8463734Z CC [M] drivers/rtc/rtc-rx8581.mod.o
2025-10-02T16:35:17.9242459Z CC [M] drivers/rtc/rtc-s35390a.mod.o
2025-10-02T16:35:18.0378114Z CC [M] drivers/rtc/rtc-s5m.mod.o
2025-10-02T16:35:18.0700289Z CC [M] drivers/rtc/rtc-sd3078.mod.o
2025-10-02T16:35:18.0856523Z CC [M] drivers/rtc/rtc-stk17ta8.mod.o
2025-10-02T16:35:18.2298516Z CC [M] drivers/rtc/rtc-tps6586x.mod.o
2025-10-02T16:35:18.2307192Z CC [M] drivers/rtc/rtc-tps65910.mod.o
2025-10-02T16:35:18.3905494Z CC [M] drivers/rtc/rtc-tps80031.mod.o
2025-10-02T16:35:18.4386860Z CC [M] drivers/rtc/rtc-v3020.mod.o
2025-10-02T16:35:18.4834035Z CC [M] drivers/rtc/rtc-wilco-ec.mod.o
2025-10-02T16:35:18.5567359Z CC [M] drivers/rtc/rtc-wm831x.mod.o
2025-10-02T16:35:18.6253245Z CC [M] drivers/rtc/rtc-wm8350.mod.o
2025-10-02T16:35:18.7023880Z CC [M] drivers/rtc/rtc-x1205.mod.o
2025-10-02T16:35:18.7847078Z CC [M] drivers/scsi/3w-9xxx.mod.o
2025-10-02T16:35:18.9220862Z CC [M] drivers/scsi/3w-sas.mod.o
2025-10-02T16:35:18.9245932Z CC [M] drivers/scsi/3w-xxxx.mod.o
2025-10-02T16:35:18.9383387Z CC [M] drivers/scsi/BusLogic.mod.o
2025-10-02T16:35:19.1164332Z CC [M] drivers/scsi/a100u2w.mod.o
2025-10-02T16:35:19.1629357Z CC [M] drivers/scsi/aacraid/aacraid.mod.o
2025-10-02T16:35:19.2080631Z CC [M] drivers/scsi/advansys.mod.o
2025-10-02T16:35:19.2491950Z CC [M] drivers/scsi/aic7xxx/aic79xx.mod.o
2025-10-02T16:35:19.2877216Z CC [M] drivers/scsi/aic7xxx/aic7xxx.mod.o
2025-10-02T16:35:19.5120069Z CC [M] drivers/scsi/aic94xx/aic94xx.mod.o
2025-10-02T16:35:19.5215251Z CC [M] drivers/scsi/am53c974.mod.o
2025-10-02T16:35:19.5486261Z CC [M] drivers/scsi/arcmsr/arcmsr.mod.o
2025-10-02T16:35:19.6292621Z CC [M] drivers/scsi/atp870u.mod.o
2025-10-02T16:35:19.6347751Z CC [M] drivers/scsi/be2iscsi/be2iscsi.mod.o
2025-10-02T16:35:19.8026391Z CC [M] drivers/scsi/bfa/bfa.mod.o
2025-10-02T16:35:19.9205299Z CC [M] drivers/scsi/bnx2fc/bnx2fc.mod.o
2025-10-02T16:35:19.9283189Z CC [M] drivers/scsi/bnx2i/bnx2i.mod.o
2025-10-02T16:35:19.9962654Z CC [M] drivers/scsi/ch.mod.o
2025-10-02T16:35:20.0343566Z CC [M] drivers/scsi/csiostor/csiostor.mod.o
2025-10-02T16:35:20.0906163Z CC [M] drivers/scsi/cxgbi/cxgb3i/cxgb3i.mod.o
2025-10-02T16:35:20.2144046Z CC [M] drivers/scsi/cxgbi/cxgb4i/cxgb4i.mod.o
2025-10-02T16:35:20.3545767Z CC [M] drivers/scsi/cxgbi/libcxgbi.mod.o
2025-10-02T16:35:20.3936207Z CC [M] drivers/scsi/dc395x.mod.o
2025-10-02T16:35:20.3967217Z CC [M] drivers/scsi/device_handler/scsi_dh_alua.mod.o
2025-10-02T16:35:20.4426169Z CC [M] drivers/scsi/device_handler/scsi_dh_emc.mod.o
2025-10-02T16:35:20.5642880Z CC [M] drivers/scsi/device_handler/scsi_dh_hp_sw.mod.o
2025-10-02T16:35:20.6896434Z CC [M] drivers/scsi/device_handler/scsi_dh_rdac.mod.o
2025-10-02T16:35:20.7296503Z CC [M] drivers/scsi/dmx3191d.mod.o
2025-10-02T16:35:20.8117054Z CC [M] drivers/scsi/dpt_i2o.mod.o
2025-10-02T16:35:20.8144467Z CC [M] drivers/scsi/esas2r/esas2r.mod.o
2025-10-02T16:35:20.9506577Z CC [M] drivers/scsi/esp_scsi.mod.o
2025-10-02T16:35:20.9963101Z CC [M] drivers/scsi/fcoe/fcoe.mod.o
2025-10-02T16:35:21.0353827Z CC [M] drivers/scsi/fcoe/libfcoe.mod.o
2025-10-02T16:35:21.1034860Z CC [M] drivers/scsi/fdomain.mod.o
2025-10-02T16:35:21.2644504Z CC [M] drivers/scsi/fdomain_pci.mod.o
2025-10-02T16:35:21.2941200Z CC [M] drivers/scsi/fnic/fnic.mod.o
2025-10-02T16:35:21.3183750Z CC [M] drivers/scsi/gdth.mod.o
2025-10-02T16:35:21.3898638Z CC [M] drivers/scsi/hpsa.mod.o
2025-10-02T16:35:21.5344474Z CC [M] drivers/scsi/hptiop.mod.o
2025-10-02T16:35:21.5835813Z CC [M] drivers/scsi/hv_storvsc.mod.o
2025-10-02T16:35:21.6426708Z CC [M] drivers/scsi/imm.mod.o
2025-10-02T16:35:21.6767657Z CC [M] drivers/scsi/initio.mod.o
2025-10-02T16:35:21.7529801Z CC [M] drivers/scsi/ipr.mod.o
2025-10-02T16:35:21.8857589Z CC [M] drivers/scsi/ips.mod.o
2025-10-02T16:35:21.9648509Z CC [M] drivers/scsi/isci/isci.mod.o
2025-10-02T16:35:21.9667869Z CC [M] drivers/scsi/iscsi_boot_sysfs.mod.o
2025-10-02T16:35:22.0258285Z CC [M] drivers/scsi/iscsi_tcp.mod.o
2025-10-02T16:35:22.1693066Z CC [M] drivers/scsi/libfc/libfc.mod.o
2025-10-02T16:35:22.2581937Z CC [M] drivers/scsi/libiscsi.mod.o
2025-10-02T16:35:22.3262994Z CC [M] drivers/scsi/libiscsi_tcp.mod.o
2025-10-02T16:35:22.3469796Z CC [M] drivers/scsi/libsas/libsas.mod.o
2025-10-02T16:35:22.3477728Z CC [M] drivers/scsi/lpfc/lpfc.mod.o
2025-10-02T16:35:22.4586469Z CC [M] drivers/scsi/megaraid.mod.o
2025-10-02T16:35:22.6304039Z CC [M] drivers/scsi/megaraid/megaraid_mbox.mod.o
2025-10-02T16:35:22.7048824Z CC [M] drivers/scsi/megaraid/megaraid_mm.mod.o
2025-10-02T16:35:22.7332644Z CC [M] drivers/scsi/megaraid/megaraid_sas.mod.o
2025-10-02T16:35:22.7412111Z CC [M] drivers/scsi/mpt3sas/mpt3sas.mod.o
2025-10-02T16:35:22.7507873Z CC [M] drivers/scsi/mvsas/mvsas.mod.o
2025-10-02T16:35:22.9783038Z CC [M] drivers/scsi/mvumi.mod.o
2025-10-02T16:35:23.0246039Z CC [M] drivers/scsi/myrb.mod.o
2025-10-02T16:35:23.0447991Z CC [M] drivers/scsi/myrs.mod.o
2025-10-02T16:35:23.1092003Z CC [M] drivers/scsi/pcmcia/aha152x_cs.mod.o
2025-10-02T16:35:23.1578763Z CC [M] drivers/scsi/pcmcia/fdomain_cs.mod.o
2025-10-02T16:35:23.3110947Z CC [M] drivers/scsi/pcmcia/qlogic_cs.mod.o
2025-10-02T16:35:23.3625439Z CC [M] drivers/scsi/pcmcia/sym53c500_cs.mod.o
2025-10-02T16:35:23.3891659Z CC [M] drivers/scsi/pm8001/pm80xx.mod.o
2025-10-02T16:35:23.5087959Z CC [M] drivers/scsi/pmcraid.mod.o
2025-10-02T16:35:23.5947482Z CC [M] drivers/scsi/ppa.mod.o
2025-10-02T16:35:23.6127127Z CC [M] drivers/scsi/qedf/qedf.mod.o
2025-10-02T16:35:23.7235341Z CC [M] drivers/scsi/qedi/qedi.mod.o
2025-10-02T16:35:23.7721138Z CC [M] drivers/scsi/qla1280.mod.o
2025-10-02T16:35:23.8632128Z CC [M] drivers/scsi/qla2xxx/qla2xxx.mod.o
2025-10-02T16:35:23.9232345Z CC [M] drivers/scsi/qla2xxx/tcm_qla2xxx.mod.o
2025-10-02T16:35:24.0017438Z CC [M] drivers/scsi/qla4xxx/qla4xxx.mod.o
2025-10-02T16:35:24.0941621Z CC [M] drivers/scsi/qlogicfas408.mod.o
2025-10-02T16:35:24.0966066Z CC [M] drivers/scsi/raid_class.mod.o
2025-10-02T16:35:24.2682963Z CC [M] drivers/scsi/scsi_transport_fc.mod.o
2025-10-02T16:35:24.2699268Z CC [M] drivers/scsi/scsi_debug.mod.o
2025-10-02T16:35:24.3742027Z CC [M] drivers/scsi/scsi_transport_iscsi.mod.o
2025-10-02T16:35:24.3906475Z CC [M] drivers/scsi/scsi_transport_sas.mod.o
2025-10-02T16:35:24.4922884Z CC [M] drivers/scsi/scsi_transport_spi.mod.o
2025-10-02T16:35:24.5535034Z CC [M] drivers/scsi/scsi_transport_srp.mod.o
2025-10-02T16:35:24.6572708Z CC [M] drivers/scsi/ses.mod.o
2025-10-02T16:35:24.7090374Z CC [M] drivers/scsi/sg.mod.o
2025-10-02T16:35:24.7754994Z CC [M] drivers/scsi/smartpqi/smartpqi.mod.o
2025-10-02T16:35:24.8621237Z CC [M] drivers/scsi/snic/snic.mod.o
2025-10-02T16:35:24.9339370Z CC [M] drivers/scsi/sr_mod.mod.o
2025-10-02T16:35:25.0437598Z CC [M] drivers/scsi/st.mod.o
2025-10-02T16:35:25.0682092Z CC [M] drivers/scsi/stex.mod.o
2025-10-02T16:35:25.1123117Z CC [M] drivers/scsi/sym53c8xx_2/sym53c8xx.mod.o
2025-10-02T16:35:25.1987468Z CC [M] drivers/scsi/ufs/cdns-pltfrm.mod.o
2025-10-02T16:35:25.3303559Z CC [M] drivers/scsi/ufs/ufshcd-core.mod.o
2025-10-02T16:35:25.3896712Z CC [M] drivers/scsi/ufs/ufshcd-pci.mod.o
2025-10-02T16:35:25.4240269Z CC [M] drivers/scsi/ufs/ufshcd-pltfrm.mod.o
2025-10-02T16:35:25.4245109Z CC [M] drivers/scsi/virtio_scsi.mod.o
2025-10-02T16:35:25.5598693Z CC [M] drivers/scsi/vmw_pvscsi.mod.o
2025-10-02T16:35:25.6615313Z CC [M] drivers/scsi/wd719x.mod.o
2025-10-02T16:35:25.7706436Z CC [M] drivers/siox/siox-bus-gpio.mod.o
2025-10-02T16:35:25.7741568Z CC [M] drivers/scsi/xen-scsifront.mod.o
2025-10-02T16:35:25.7907760Z CC [M] drivers/siox/siox-core.mod.o
2025-10-02T16:35:25.9454165Z CC [M] drivers/slimbus/slim-qcom-ctrl.mod.o
2025-10-02T16:35:26.0193059Z CC [M] drivers/slimbus/slimbus.mod.o
2025-10-02T16:35:26.1147499Z CC [M] drivers/soc/qcom/qmi_helpers.mod.o
2025-10-02T16:35:26.1335759Z CC [M] drivers/soc/xilinx/xlnx_vcu.mod.o
2025-10-02T16:35:26.1787839Z CC [M] drivers/soundwire/soundwire-bus.mod.o
2025-10-02T16:35:26.2620259Z CC [M] drivers/soundwire/soundwire-cadence.mod.o
2025-10-02T16:35:26.3804774Z CC [M] drivers/soundwire/soundwire-generic-allocation.mod.o
2025-10-02T16:35:26.4884333Z CC [M] drivers/soundwire/soundwire-intel.mod.o
2025-10-02T16:35:26.5087790Z CC [M] drivers/soundwire/soundwire-qcom.mod.o
2025-10-02T16:35:26.5503369Z CC [M] drivers/spi/spi-altera.mod.o
2025-10-02T16:35:26.5981865Z CC [M] drivers/spi/spi-amd.mod.o
2025-10-02T16:35:26.7792171Z CC [M] drivers/spi/spi-axi-spi-engine.mod.o
2025-10-02T16:35:26.8001874Z CC [M] drivers/spi/spi-bitbang.mod.o
2025-10-02T16:35:26.8491753Z CC [M] drivers/spi/spi-butterfly.mod.o
2025-10-02T16:35:26.9074543Z CC [M] drivers/spi/spi-cadence.mod.o
2025-10-02T16:35:27.0293379Z CC [M] drivers/spi/spi-dln2.mod.o
2025-10-02T16:35:27.0951486Z CC [M] drivers/spi/spi-dw-mmio.mod.o
2025-10-02T16:35:27.1593092Z CC [M] drivers/spi/spi-dw-pci.mod.o
2025-10-02T16:35:27.1799993Z CC [M] drivers/spi/spi-dw.mod.o
2025-10-02T16:35:27.2802526Z CC [M] drivers/spi/spi-gpio.mod.o
2025-10-02T16:35:27.4028677Z CC [M] drivers/spi/spi-lm70llp.mod.o
2025-10-02T16:35:27.4611071Z CC [M] drivers/spi/spi-loopback-test.mod.o
2025-10-02T16:35:27.4711180Z CC [M] drivers/spi/spi-mux.mod.o
2025-10-02T16:35:27.5662737Z CC [M] drivers/spi/spi-mxic.mod.o
2025-10-02T16:35:27.6521070Z CC [M] drivers/spi/spi-nxp-fspi.mod.o
2025-10-02T16:35:27.7368221Z CC [M] drivers/spi/spi-oc-tiny.mod.o
2025-10-02T16:35:27.7717786Z CC [M] drivers/spi/spi-pxa2xx-pci.mod.o
2025-10-02T16:35:27.8608460Z CC [M] drivers/spi/spi-pxa2xx-platform.mod.o
2025-10-02T16:35:27.9357351Z CC [M] drivers/spi/spi-sc18is602.mod.o
2025-10-02T16:35:28.0855261Z CC [M] drivers/spi/spi-sifive.mod.o
2025-10-02T16:35:28.0870353Z CC [M] drivers/spi/spi-slave-time.mod.o
2025-10-02T16:35:28.0891436Z CC [M] drivers/spi/spi-slave-system-control.mod.o
2025-10-02T16:35:28.2128352Z CC [M] drivers/spi/spi-tle62x0.mod.o
2025-10-02T16:35:28.2493878Z CC [M] drivers/spi/spi-xcomm.mod.o
2025-10-02T16:35:28.3721581Z CC [M] drivers/spi/spi-xilinx.mod.o
2025-10-02T16:35:28.5076778Z CC [M] drivers/spi/spi-zynqmp-gqspi.mod.o
2025-10-02T16:35:28.5326924Z CC [M] drivers/spi/spidev.mod.o
2025-10-02T16:35:28.5824344Z CC [M] drivers/ssb/ssb.mod.o
2025-10-02T16:35:28.5942544Z CC [M] drivers/staging/fieldbus/fieldbus_dev.mod.o
2025-10-02T16:35:28.6835164Z CC [M] drivers/staging/fwserial/firewire-serial.mod.o
2025-10-02T16:35:28.8555221Z CC [M] drivers/staging/gasket/apex.mod.o
2025-10-02T16:35:28.8742527Z CC [M] drivers/staging/gasket/gasket.mod.o
2025-10-02T16:35:28.9046641Z CC [M] drivers/staging/gdm724x/gdmtty.mod.o
2025-10-02T16:35:28.9462251Z CC [M] drivers/staging/gdm724x/gdmulte.mod.o
2025-10-02T16:35:29.0840089Z CC [M] drivers/staging/gs_fpgaboot/gs_fpga.mod.o
2025-10-02T16:35:29.1833185Z CC [M] drivers/staging/iio/accel/adis16203.mod.o
2025-10-02T16:35:29.2052870Z CC [M] drivers/staging/iio/accel/adis16240.mod.o
2025-10-02T16:35:29.2603844Z CC [M] drivers/staging/iio/adc/ad7280a.mod.o
2025-10-02T16:35:29.3711117Z CC [M] drivers/staging/iio/adc/ad7816.mod.o
2025-10-02T16:35:29.4209072Z CC [M] drivers/staging/iio/addac/adt7316-i2c.mod.o
2025-10-02T16:35:29.5420670Z CC [M] drivers/staging/iio/addac/adt7316-spi.mod.o
2025-10-02T16:35:29.5477793Z CC [M] drivers/staging/iio/addac/adt7316.mod.o
2025-10-02T16:35:29.6088634Z CC [M] drivers/staging/iio/cdc/ad7150.mod.o
2025-10-02T16:35:29.7540727Z CC [M] drivers/staging/iio/cdc/ad7746.mod.o
2025-10-02T16:35:29.8163268Z CC [M] drivers/staging/iio/frequency/ad9832.mod.o
2025-10-02T16:35:29.8379223Z CC [M] drivers/staging/iio/frequency/ad9834.mod.o
2025-10-02T16:35:29.8777377Z CC [M] drivers/staging/iio/impedance-analyzer/ad5933.mod.o
2025-10-02T16:35:29.9933051Z CC [M] drivers/staging/iio/meter/ade7854-i2c.mod.o
2025-10-02T16:35:30.1228220Z CC [M] drivers/staging/iio/meter/ade7854-spi.mod.o
2025-10-02T16:35:30.1481429Z CC [M] drivers/staging/iio/meter/ade7854.mod.o
2025-10-02T16:35:30.1811808Z CC [M] drivers/staging/iio/resolver/ad2s1210.mod.o
2025-10-02T16:35:30.2406704Z CC [M] drivers/staging/kpc2000/kpc2000/kpc2000.mod.o
2025-10-02T16:35:30.3527788Z CC [M] drivers/staging/kpc2000/kpc2000_i2c.mod.o
2025-10-02T16:35:30.4618030Z CC [M] drivers/staging/kpc2000/kpc2000_spi.mod.o
2025-10-02T16:35:30.4832671Z CC [M] drivers/staging/kpc2000/kpc_dma/kpc_dma.mod.o
2025-10-02T16:35:30.5834342Z CC [M] drivers/staging/ks7010/ks7010.mod.o
2025-10-02T16:35:30.6362692Z CC [M] drivers/staging/media/atomisp/atomisp.mod.o
2025-10-02T16:35:30.6370278Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-gc0310.mod.o
2025-10-02T16:35:30.8237681Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-gc2235.mod.o
2025-10-02T16:35:30.8778987Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper.mod.o
2025-10-02T16:35:30.9065122Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-lm3554.mod.o
2025-10-02T16:35:30.9721287Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-mt9m114.mod.o
2025-10-02T16:35:30.9962042Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-ov2680.mod.o
2025-10-02T16:35:31.2051238Z CC [M] drivers/staging/media/atomisp/i2c/atomisp-ov2722.mod.o
2025-10-02T16:35:31.2326241Z CC [M] drivers/staging/media/atomisp/i2c/ov5693/atomisp-ov5693.mod.o
2025-10-02T16:35:31.2674930Z CC [M] drivers/staging/media/atomisp/pci/atomisp_gmin_platform.mod.o
2025-10-02T16:35:31.2737502Z CC [M] drivers/staging/media/ipu3/ipu3-imgu.mod.o
2025-10-02T16:35:31.3944355Z CC [M] drivers/staging/most/i2c/most_i2c.mod.o
2025-10-02T16:35:31.5237731Z CC [M] drivers/staging/most/net/most_net.mod.o
2025-10-02T16:35:31.5799008Z CC [M] drivers/staging/most/sound/most_sound.mod.o
2025-10-02T16:35:31.6153033Z CC [M] drivers/staging/most/video/most_video.mod.o
2025-10-02T16:35:31.6787734Z CC [M] drivers/staging/pi433/pi433.mod.o
2025-10-02T16:35:31.7637049Z CC [M] drivers/staging/qlge/qlge.mod.o
2025-10-02T16:35:31.8722328Z CC [M] drivers/staging/rtl8188eu/r8188eu.mod.o
2025-10-02T16:35:31.8990601Z CC [M] drivers/staging/rtl8192e/rtl8192e/r8192e_pci.mod.o
2025-10-02T16:35:31.9624800Z CC [M] drivers/staging/rtl8192e/rtllib.mod.o
2025-10-02T16:35:32.0551258Z CC [M] drivers/staging/rtl8192e/rtllib_crypt_ccmp.mod.o
2025-10-02T16:35:32.1337858Z CC [M] drivers/staging/rtl8192e/rtllib_crypt_tkip.mod.o
2025-10-02T16:35:32.1837382Z CC [M] drivers/staging/rtl8192e/rtllib_crypt_wep.mod.o
2025-10-02T16:35:32.2782514Z CC [M] drivers/staging/rtl8192u/r8192u_usb.mod.o
2025-10-02T16:35:32.3397359Z CC [M] drivers/staging/rtl8712/r8712u.mod.o
2025-10-02T16:35:32.4003575Z CC [M] drivers/staging/rtl8723bs/r8723bs.mod.o
2025-10-02T16:35:32.4651851Z CC [M] drivers/staging/rts5208/rts5208.mod.o
2025-10-02T16:35:32.5341357Z CC [M] drivers/staging/unisys/visorhba/visorhba.mod.o
2025-10-02T16:35:32.6576803Z CC [M] drivers/staging/unisys/visorinput/visorinput.mod.o
2025-10-02T16:35:32.7312915Z CC [M] drivers/staging/unisys/visornic/visornic.mod.o
2025-10-02T16:35:32.7490032Z CC [M] drivers/staging/vt6655/vt6655_stage.mod.o
2025-10-02T16:35:32.7840531Z CC [M] drivers/staging/vt6656/vt6656_stage.mod.o
2025-10-02T16:35:32.8914127Z CC [M] drivers/staging/wfx/wfx.mod.o
2025-10-02T16:35:33.0226355Z CC [M] drivers/staging/wlan-ng/prism2_usb.mod.o
2025-10-02T16:35:33.0741517Z CC [M] drivers/target/iscsi/cxgbit/cxgbit.mod.o
2025-10-02T16:35:33.1142416Z CC [M] drivers/target/iscsi/iscsi_target_mod.mod.o
2025-10-02T16:35:33.1433259Z CC [M] drivers/target/loopback/tcm_loop.mod.o
2025-10-02T16:35:33.2803400Z CC [M] drivers/target/sbp/sbp_target.mod.o
2025-10-02T16:35:33.3532064Z CC [M] drivers/target/target_core_file.mod.o
2025-10-02T16:35:33.4225513Z CC [M] drivers/target/target_core_iblock.mod.o
2025-10-02T16:35:33.4482816Z CC [M] drivers/target/target_core_mod.mod.o
2025-10-02T16:35:33.5973568Z CC [M] drivers/target/target_core_pscsi.mod.o
2025-10-02T16:35:33.6460191Z CC [M] drivers/target/target_core_user.mod.o
2025-10-02T16:35:33.6581904Z CC [M] drivers/target/tcm_fc/tcm_fc.mod.o
2025-10-02T16:35:33.7103324Z CC [M] drivers/tee/amdtee/amdtee.mod.o
2025-10-02T16:35:33.8912524Z CC [M] drivers/tee/tee.mod.o
2025-10-02T16:35:33.9468275Z CC [M] drivers/thermal/intel/int340x_thermal/acpi_thermal_rel.mod.o
2025-10-02T16:35:33.9972663Z CC [M] drivers/thermal/intel/int340x_thermal/int3400_thermal.mod.o
2025-10-02T16:35:34.0292728Z CC [M] drivers/thermal/intel/int340x_thermal/int3402_thermal.mod.o
2025-10-02T16:35:34.0432391Z CC [M] drivers/thermal/intel/int340x_thermal/int3403_thermal.mod.o
2025-10-02T16:35:34.2910915Z CC [M] drivers/thermal/intel/int340x_thermal/int3406_thermal.mod.o
2025-10-02T16:35:34.3224225Z CC [M] drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.mod.o
2025-10-02T16:35:34.3483308Z CC [M] drivers/thermal/intel/int340x_thermal/processor_thermal_device.mod.o
2025-10-02T16:35:34.3510684Z CC [M] drivers/thermal/intel/intel_bxt_pmic_thermal.mod.o
2025-10-02T16:35:34.4083434Z CC [M] drivers/thermal/intel/intel_pch_thermal.mod.o
2025-10-02T16:35:34.6387367Z CC [M] drivers/thermal/intel/intel_powerclamp.mod.o
2025-10-02T16:35:34.6887263Z CC [M] drivers/thermal/intel/intel_soc_dts_iosf.mod.o
2025-10-02T16:35:34.6911386Z CC [M] drivers/thermal/intel/intel_soc_dts_thermal.mod.o
2025-10-02T16:35:34.7312570Z CC [M] drivers/thermal/intel/x86_pkg_temp_thermal.mod.o
2025-10-02T16:35:34.8873483Z CC [M] drivers/thermal/thermal-generic-adc.mod.o
2025-10-02T16:35:34.9805240Z CC [M] drivers/thunderbolt/thunderbolt.mod.o
2025-10-02T16:35:35.0316471Z CC [M] drivers/tty/cyclades.mod.o
2025-10-02T16:35:35.0569882Z CC [M] drivers/tty/ipwireless/ipwireless.mod.o
2025-10-02T16:35:35.0614298Z CC [M] drivers/tty/isicom.mod.o
2025-10-02T16:35:35.2634974Z CC [M] drivers/tty/moxa.mod.o
2025-10-02T16:35:35.3150514Z CC [M] drivers/tty/mxser.mod.o
2025-10-02T16:35:35.3642310Z CC [M] drivers/tty/n_hdlc.mod.o
2025-10-02T16:35:35.4042917Z CC [M] drivers/tty/n_tracerouter.mod.o
2025-10-02T16:35:35.4769015Z CC [M] drivers/tty/n_tracesink.mod.o
2025-10-02T16:35:35.6311354Z CC [M] drivers/tty/nozomi.mod.o
2025-10-02T16:35:35.6650578Z CC [M] drivers/tty/rocket.mod.o
2025-10-02T16:35:35.7153858Z CC [M] drivers/tty/serial/8250/8250_dw.mod.o
2025-10-02T16:35:35.7391210Z CC [M] drivers/tty/serial/8250/8250_exar.mod.o
2025-10-02T16:35:35.8187465Z CC [M] drivers/tty/serial/8250/8250_men_mcb.mod.o
2025-10-02T16:35:36.0578155Z CC [M] drivers/tty/serial/8250/serial_cs.mod.o
2025-10-02T16:35:36.0720883Z CC [M] drivers/tty/serial/altera_jtaguart.mod.o
2025-10-02T16:35:36.0824270Z CC [M] drivers/tty/serial/altera_uart.mod.o
2025-10-02T16:35:36.1065249Z CC [M] drivers/tty/serial/arc_uart.mod.o
2025-10-02T16:35:36.1181189Z CC [M] drivers/tty/serial/fsl_linflexuart.mod.o
2025-10-02T16:35:36.4054483Z CC [M] drivers/tty/serial/fsl_lpuart.mod.o
2025-10-02T16:35:36.4378608Z CC [M] drivers/tty/serial/ifx6x60.mod.o
2025-10-02T16:35:36.4407420Z CC [M] drivers/tty/serial/max3100.mod.o
2025-10-02T16:35:36.4413085Z CC [M] drivers/tty/serial/jsm/jsm.mod.o
2025-10-02T16:35:36.5062525Z CC [M] drivers/tty/serial/max310x.mod.o
2025-10-02T16:35:36.7297073Z CC [M] drivers/tty/serial/men_z135_uart.mod.o
2025-10-02T16:35:36.7723645Z CC [M] drivers/tty/serial/rp2.mod.o
2025-10-02T16:35:36.8220647Z CC [M] drivers/tty/serial/sc16is7xx.mod.o
2025-10-02T16:35:36.8343511Z CC [M] drivers/tty/serial/sccnxp.mod.o
2025-10-02T16:35:36.8375810Z CC [M] drivers/tty/serial/sprd_serial.mod.o
2025-10-02T16:35:37.1124318Z CC [M] drivers/tty/serial/uartlite.mod.o
2025-10-02T16:35:37.1260859Z CC [M] drivers/tty/synclink.mod.o
2025-10-02T16:35:37.1600429Z CC [M] drivers/tty/synclink_gt.mod.o
2025-10-02T16:35:37.1760249Z CC [M] drivers/tty/synclinkmp.mod.o
2025-10-02T16:35:37.2035443Z CC [M] drivers/tty/ttynull.mod.o
2025-10-02T16:35:37.4694845Z CC [M] drivers/uio/uio.mod.o
2025-10-02T16:35:37.4753917Z CC [M] drivers/uio/uio_aec.mod.o
2025-10-02T16:35:37.4782024Z CC [M] drivers/uio/uio_cif.mod.o
2025-10-02T16:35:37.5051038Z CC [M] drivers/uio/uio_dmem_genirq.mod.o
2025-10-02T16:35:37.5650663Z CC [M] drivers/uio/uio_hv_generic.mod.o
2025-10-02T16:35:37.7502895Z CC [M] drivers/uio/uio_mf624.mod.o
2025-10-02T16:35:37.8517632Z CC [M] drivers/uio/uio_netx.mod.o
2025-10-02T16:35:37.8767510Z CC [M] drivers/uio/uio_pci_generic.mod.o
2025-10-02T16:35:37.8921415Z CC [M] drivers/uio/uio_pdrv_genirq.mod.o
2025-10-02T16:35:37.9398463Z CC [M] drivers/uio/uio_pruss.mod.o
2025-10-02T16:35:38.0932660Z CC [M] drivers/uio/uio_sercos3.mod.o
2025-10-02T16:35:38.1672578Z CC [M] drivers/usb/atm/cxacru.mod.o
2025-10-02T16:35:38.2210595Z CC [M] drivers/usb/atm/speedtch.mod.o
2025-10-02T16:35:38.2502180Z CC [M] drivers/usb/atm/ueagle-atm.mod.o
2025-10-02T16:35:38.3102248Z CC [M] drivers/usb/atm/usbatm.mod.o
2025-10-02T16:35:38.4504049Z CC [M] drivers/usb/atm/xusbatm.mod.o
2025-10-02T16:35:38.5211258Z CC [M] drivers/usb/c67x00/c67x00.mod.o
2025-10-02T16:35:38.5320998Z CC [M] drivers/usb/class/cdc-acm.mod.o
2025-10-02T16:35:38.6876517Z CC [M] drivers/usb/class/cdc-wdm.mod.o
2025-10-02T16:35:38.7020575Z CC [M] drivers/usb/class/usblp.mod.o
2025-10-02T16:35:38.7789110Z CC [M] drivers/usb/class/usbtmc.mod.o
2025-10-02T16:35:38.8645920Z CC [M] drivers/usb/common/ulpi.mod.o
2025-10-02T16:35:38.8995371Z CC [M] drivers/usb/common/usb-conn-gpio.mod.o
2025-10-02T16:35:39.0479448Z CC [M] drivers/usb/core/ledtrig-usbport.mod.o
2025-10-02T16:35:39.0802507Z CC [M] drivers/usb/host/bcma-hcd.mod.o
2025-10-02T16:35:39.0941598Z CC [M] drivers/usb/host/ehci-fsl.mod.o
2025-10-02T16:35:39.1854598Z CC [M] drivers/usb/host/ehci-platform.mod.o
2025-10-02T16:35:39.3064578Z CC [M] drivers/usb/host/fotg210-hcd.mod.o
2025-10-02T16:35:39.3872926Z CC [M] drivers/usb/host/fsl-mph-dr-of.mod.o
2025-10-02T16:35:39.4213675Z CC [M] drivers/usb/host/isp116x-hcd.mod.o
2025-10-02T16:35:39.4907725Z CC [M] drivers/usb/host/max3421-hcd.mod.o
2025-10-02T16:35:39.5947812Z CC [M] drivers/usb/host/ohci-platform.mod.o
2025-10-02T16:35:39.6207202Z CC [M] drivers/usb/host/oxu210hp-hcd.mod.o
2025-10-02T16:35:39.7422640Z CC [M] drivers/usb/host/r8a66597-hcd.mod.o
2025-10-02T16:35:39.7599132Z CC [M] drivers/usb/host/sl811-hcd.mod.o
2025-10-02T16:35:39.8520565Z CC [M] drivers/usb/host/sl811_cs.mod.o
2025-10-02T16:35:39.9644534Z CC [M] drivers/usb/host/ssb-hcd.mod.o
2025-10-02T16:35:39.9868790Z CC [M] drivers/usb/host/u132-hcd.mod.o
2025-10-02T16:35:40.0819881Z CC [M] drivers/usb/host/xhci-pci-renesas.mod.o
2025-10-02T16:35:40.0900556Z CC [M] drivers/usb/host/xhci-pci.mod.o
2025-10-02T16:35:40.2261251Z CC [M] drivers/usb/host/xhci-plat-hcd.mod.o
2025-10-02T16:35:40.2761212Z CC [M] drivers/usb/image/mdc800.mod.o
2025-10-02T16:35:40.3993737Z CC [M] drivers/usb/image/microtek.mod.o
2025-10-02T16:35:40.4613801Z CC [M] drivers/usb/misc/adutux.mod.o
2025-10-02T16:35:40.5222969Z CC [M] drivers/usb/misc/apple-mfi-fastcharge.mod.o
2025-10-02T16:35:40.5335528Z CC [M] drivers/usb/misc/appledisplay.mod.o
2025-10-02T16:35:40.5818604Z CC [M] drivers/usb/misc/chaoskey.mod.o
2025-10-02T16:35:40.7140571Z CC [M] drivers/usb/misc/cypress_cy7c63.mod.o
2025-10-02T16:35:40.8659900Z CC [M] drivers/usb/misc/cytherm.mod.o
2025-10-02T16:35:40.9055655Z CC [M] drivers/usb/misc/ehset.mod.o
2025-10-02T16:35:40.9078358Z CC [M] drivers/usb/misc/emi26.mod.o
2025-10-02T16:35:40.9456839Z CC [M] drivers/usb/misc/emi62.mod.o
2025-10-02T16:35:41.0005307Z CC [M] drivers/usb/misc/ezusb.mod.o
2025-10-02T16:35:41.2022398Z CC [M] drivers/usb/misc/ftdi-elan.mod.o
2025-10-02T16:35:41.2647572Z CC [M] drivers/usb/misc/idmouse.mod.o
2025-10-02T16:35:41.3011454Z CC [M] drivers/usb/misc/iowarrior.mod.o
2025-10-02T16:35:41.3284089Z CC [M] drivers/usb/misc/isight_firmware.mod.o
2025-10-02T16:35:41.3370293Z CC [M] drivers/usb/misc/ldusb.mod.o
2025-10-02T16:35:41.5899139Z CC [M] drivers/usb/misc/legousbtower.mod.o
2025-10-02T16:35:41.6222032Z CC [M] drivers/usb/misc/lvstest.mod.o
2025-10-02T16:35:41.6336168Z CC [M] drivers/usb/misc/sisusbvga/sisusbvga.mod.o
2025-10-02T16:35:41.6508581Z CC [M] drivers/usb/misc/trancevibrator.mod.o
2025-10-02T16:35:41.7778896Z CC [M] drivers/usb/misc/usb251xb.mod.o
2025-10-02T16:35:41.9324809Z CC [M] drivers/usb/misc/usb3503.mod.o
2025-10-02T16:35:41.9537585Z CC [M] drivers/usb/misc/usb4604.mod.o
2025-10-02T16:35:41.9888416Z CC [M] drivers/usb/misc/usblcd.mod.o
2025-10-02T16:35:42.0248536Z CC [M] drivers/usb/misc/usbsevseg.mod.o
2025-10-02T16:35:42.0926759Z CC [M] drivers/usb/misc/usbtest.mod.o
2025-10-02T16:35:42.2807111Z CC [M] drivers/usb/misc/uss720.mod.o
2025-10-02T16:35:42.3158354Z CC [M] drivers/usb/misc/yurex.mod.o
2025-10-02T16:35:42.3890457Z CC [M] drivers/usb/phy/phy-generic.mod.o
2025-10-02T16:35:42.3896865Z CC [M] drivers/usb/mon/usbmon.mod.o
2025-10-02T16:35:42.4478376Z CC [M] drivers/usb/phy/phy-gpio-vbus-usb.mod.o
2025-10-02T16:35:42.6281096Z CC [M] drivers/usb/phy/phy-isp1301.mod.o
2025-10-02T16:35:42.6783130Z CC [M] drivers/usb/phy/phy-tahvo.mod.o
2025-10-02T16:35:42.7076256Z CC [M] drivers/usb/roles/intel-xhci-usb-role-switch.mod.o
2025-10-02T16:35:42.7195019Z CC [M] drivers/usb/roles/roles.mod.o
2025-10-02T16:35:42.8726817Z CC [M] drivers/usb/serial/aircable.mod.o
2025-10-02T16:35:42.9638115Z CC [M] drivers/usb/serial/ark3116.mod.o
2025-10-02T16:35:43.0151937Z CC [M] drivers/usb/serial/belkin_sa.mod.o
2025-10-02T16:35:43.0693139Z CC [M] drivers/usb/serial/ch341.mod.o
2025-10-02T16:35:43.1746222Z CC [M] drivers/usb/serial/cp210x.mod.o
2025-10-02T16:35:43.1748366Z CC [M] drivers/usb/serial/cyberjack.mod.o
2025-10-02T16:35:43.2922821Z CC [M] drivers/usb/serial/cypress_m8.mod.o
2025-10-02T16:35:43.3413961Z CC [M] drivers/usb/serial/digi_acceleport.mod.o
2025-10-02T16:35:43.4666937Z CC [M] drivers/usb/serial/empeg.mod.o
2025-10-02T16:35:43.5432070Z CC [M] drivers/usb/serial/f81232.mod.o
2025-10-02T16:35:43.5538516Z CC [M] drivers/usb/serial/f81534.mod.o
2025-10-02T16:35:43.5936336Z CC [M] drivers/usb/serial/ftdi_sio.mod.o
2025-10-02T16:35:43.7850020Z CC [M] drivers/usb/serial/garmin_gps.mod.o
2025-10-02T16:35:43.8813529Z CC [M] drivers/usb/serial/io_edgeport.mod.o
2025-10-02T16:35:43.8872744Z CC [M] drivers/usb/serial/io_ti.mod.o
2025-10-02T16:35:43.9392068Z CC [M] drivers/usb/serial/ipaq.mod.o
2025-10-02T16:35:43.9874686Z CC [M] drivers/usb/serial/ipw.mod.o
2025-10-02T16:35:44.0755422Z CC [M] drivers/usb/serial/ir-usb.mod.o
2025-10-02T16:35:44.1813315Z CC [M] drivers/usb/serial/iuu_phoenix.mod.o
2025-10-02T16:35:44.3138931Z CC [M] drivers/usb/serial/keyspan.mod.o
2025-10-02T16:35:44.3325662Z CC [M] drivers/usb/serial/keyspan_pda.mod.o
2025-10-02T16:35:44.4034686Z CC [M] drivers/usb/serial/kl5kusb105.mod.o
2025-10-02T16:35:44.4683015Z CC [M] drivers/usb/serial/kobil_sct.mod.o
2025-10-02T16:35:44.4898771Z CC [M] drivers/usb/serial/mct_u232.mod.o
2025-10-02T16:35:44.6143820Z CC [M] drivers/usb/serial/metro-usb.mod.o
2025-10-02T16:35:44.7622816Z CC [M] drivers/usb/serial/mos7720.mod.o
2025-10-02T16:35:44.7946180Z CC [M] drivers/usb/serial/mos7840.mod.o
2025-10-02T16:35:44.8130001Z CC [M] drivers/usb/serial/mxuport.mod.o
2025-10-02T16:35:44.8739961Z CC [M] drivers/usb/serial/navman.mod.o
2025-10-02T16:35:44.9383573Z CC [M] drivers/usb/serial/omninet.mod.o
2025-10-02T16:35:45.1035163Z CC [M] drivers/usb/serial/opticon.mod.o
2025-10-02T16:35:45.1503101Z CC [M] drivers/usb/serial/option.mod.o
2025-10-02T16:35:45.2221870Z CC [M] drivers/usb/serial/oti6858.mod.o
2025-10-02T16:35:45.2614226Z CC [M] drivers/usb/serial/pl2303.mod.o
2025-10-02T16:35:45.2981827Z CC [M] drivers/usb/serial/qcaux.mod.o
2025-10-02T16:35:45.4731482Z CC [M] drivers/usb/serial/qcserial.mod.o
2025-10-02T16:35:45.5559284Z CC [M] drivers/usb/serial/quatech2.mod.o
2025-10-02T16:35:45.5639039Z CC [M] drivers/usb/serial/safe_serial.mod.o
2025-10-02T16:35:45.5743191Z CC [M] drivers/usb/serial/sierra.mod.o
2025-10-02T16:35:45.7026329Z CC [M] drivers/usb/serial/spcp8x5.mod.o
2025-10-02T16:35:45.8366245Z CC [M] drivers/usb/serial/ssu100.mod.o
2025-10-02T16:35:45.8789064Z CC [M] drivers/usb/serial/symbolserial.mod.o
2025-10-02T16:35:45.9322819Z CC [M] drivers/usb/serial/ti_usb_3410_5052.mod.o
2025-10-02T16:35:45.9340558Z CC [M] drivers/usb/serial/upd78f0730.mod.o
2025-10-02T16:35:46.1222115Z CC [M] drivers/usb/serial/usb-serial-simple.mod.o
2025-10-02T16:35:46.1696181Z CC [M] drivers/usb/serial/usb_debug.mod.o
2025-10-02T16:35:46.2294181Z CC [M] drivers/usb/serial/usb_wwan.mod.o
2025-10-02T16:35:46.2724878Z CC [M] drivers/usb/serial/visor.mod.o
2025-10-02T16:35:46.3797977Z CC [M] drivers/usb/serial/whiteheat.mod.o
2025-10-02T16:35:46.4571308Z CC [M] drivers/usb/serial/wishbone-serial.mod.o
2025-10-02T16:35:46.4954290Z CC [M] drivers/usb/serial/xsens_mt.mod.o
2025-10-02T16:35:46.5757511Z CC [M] drivers/usb/storage/uas.mod.o
2025-10-02T16:35:46.6812668Z CC [M] drivers/usb/storage/ums-alauda.mod.o
2025-10-02T16:35:46.7527864Z CC [M] drivers/usb/storage/ums-cypress.mod.o
2025-10-02T16:35:46.7935634Z CC [M] drivers/usb/storage/ums-datafab.mod.o
2025-10-02T16:35:46.8684262Z CC [M] drivers/usb/storage/ums-eneub6250.mod.o
2025-10-02T16:35:46.9120216Z CC [M] drivers/usb/storage/ums-freecom.mod.o
2025-10-02T16:35:47.0355760Z CC [M] drivers/usb/storage/ums-isd200.mod.o
2025-10-02T16:35:47.1374537Z CC [M] drivers/usb/storage/ums-jumpshot.mod.o
2025-10-02T16:35:47.1793921Z CC [M] drivers/usb/storage/ums-karma.mod.o
2025-10-02T16:35:47.2241794Z CC [M] drivers/usb/storage/ums-onetouch.mod.o
2025-10-02T16:35:47.3001852Z CC [M] drivers/usb/storage/ums-realtek.mod.o
2025-10-02T16:35:47.3801195Z CC [M] drivers/usb/storage/ums-sddr09.mod.o
2025-10-02T16:35:47.4771980Z CC [M] drivers/usb/storage/ums-sddr55.mod.o
2025-10-02T16:35:47.5043761Z CC [M] drivers/usb/storage/ums-usbat.mod.o
2025-10-02T16:35:47.5853940Z CC [M] drivers/usb/storage/usb-storage.mod.o
2025-10-02T16:35:47.6882590Z CC [M] drivers/usb/typec/altmodes/typec_displayport.mod.o
2025-10-02T16:35:47.7974179Z CC [M] drivers/usb/typec/altmodes/typec_nvidia.mod.o
2025-10-02T16:35:47.8271079Z CC [M] drivers/usb/typec/hd3ss3220.mod.o
2025-10-02T16:35:47.8613741Z CC [M] drivers/usb/typec/mux/intel_pmc_mux.mod.o
2025-10-02T16:35:47.9200885Z CC [M] drivers/usb/typec/mux/pi3usb30532.mod.o
2025-10-02T16:35:48.1445605Z CC [M] drivers/usb/typec/stusb160x.mod.o
2025-10-02T16:35:48.1476956Z CC [M] drivers/usb/typec/tcpm/fusb302.mod.o
2025-10-02T16:35:48.1684957Z CC [M] drivers/usb/typec/tcpm/tcpci.mod.o
2025-10-02T16:35:48.1724114Z CC [M] drivers/usb/typec/tcpm/tcpci_maxim.mod.o
2025-10-02T16:35:48.2404999Z CC [M] drivers/usb/typec/tcpm/tcpci_mt6360.mod.o
2025-10-02T16:35:48.4684184Z CC [M] drivers/usb/typec/tcpm/tcpci_rt1711h.mod.o
2025-10-02T16:35:48.5049011Z CC [M] drivers/usb/typec/tcpm/tcpm.mod.o
2025-10-02T16:35:48.5232234Z CC [M] drivers/usb/typec/tcpm/typec_wcove.mod.o
2025-10-02T16:35:48.5442297Z CC [M] drivers/usb/typec/tps6598x.mod.o
2025-10-02T16:35:48.6371257Z CC [M] drivers/usb/typec/typec.mod.o
2025-10-02T16:35:48.7874195Z CC [M] drivers/usb/typec/ucsi/typec_ucsi.mod.o
2025-10-02T16:35:48.8437297Z CC [M] drivers/usb/typec/ucsi/ucsi_acpi.mod.o
2025-10-02T16:35:48.9512119Z CC [M] drivers/usb/usbip/usbip-core.mod.o
2025-10-02T16:35:48.9529301Z CC [M] drivers/usb/typec/ucsi/ucsi_ccg.mod.o
2025-10-02T16:35:48.9891219Z CC [M] drivers/usb/usbip/usbip-host.mod.o
2025-10-02T16:35:49.1757985Z CC [M] drivers/usb/usbip/vhci-hcd.mod.o
2025-10-02T16:35:49.2461309Z CC [M] drivers/vdpa/ifcvf/ifcvf.mod.o
2025-10-02T16:35:49.2802599Z CC [M] drivers/vdpa/mlx5/mlx5_vdpa.mod.o
2025-10-02T16:35:49.2871565Z CC [M] drivers/vdpa/vdpa.mod.o
2025-10-02T16:35:49.2952437Z CC [M] drivers/vdpa/vdpa_sim/vdpa_sim.mod.o
2025-10-02T16:35:49.4650586Z CC [M] drivers/vfio/mdev/mdev.mod.o
2025-10-02T16:35:49.5494627Z CC [M] drivers/vfio/mdev/vfio_mdev.mod.o
2025-10-02T16:35:49.6187438Z CC [M] drivers/vfio/pci/vfio-pci.mod.o
2025-10-02T16:35:49.6816988Z CC [M] drivers/vfio/vfio.mod.o
2025-10-02T16:35:49.7258743Z CC [M] drivers/vfio/vfio_iommu_type1.mod.o
2025-10-02T16:35:49.8666760Z CC [M] drivers/vfio/vfio_virqfd.mod.o
2025-10-02T16:35:49.9189731Z CC [M] drivers/vhost/vhost.mod.o
2025-10-02T16:35:49.9890376Z CC [M] drivers/vhost/vhost_iotlb.mod.o
2025-10-02T16:35:50.0027499Z CC [M] drivers/vhost/vhost_net.mod.o
2025-10-02T16:35:50.1115075Z CC [M] drivers/vhost/vhost_scsi.mod.o
2025-10-02T16:35:50.1681209Z CC [M] drivers/vhost/vhost_vdpa.mod.o
2025-10-02T16:35:50.3386280Z CC [M] drivers/vhost/vhost_vsock.mod.o
2025-10-02T16:35:50.3438938Z CC [M] drivers/vhost/vringh.mod.o
2025-10-02T16:35:50.3500321Z CC [M] drivers/video/backlight/88pm860x_bl.mod.o
2025-10-02T16:35:50.4626171Z CC [M] drivers/video/backlight/aat2870_bl.mod.o
2025-10-02T16:35:50.6080230Z CC [M] drivers/video/backlight/adp5520_bl.mod.o
2025-10-02T16:35:50.6824332Z CC [M] drivers/video/backlight/adp8860_bl.mod.o
2025-10-02T16:35:50.6905280Z CC [M] drivers/video/backlight/adp8870_bl.mod.o
2025-10-02T16:35:50.7611358Z CC [M] drivers/video/backlight/ams369fg06.mod.o
2025-10-02T16:35:50.8144149Z CC [M] drivers/video/backlight/apple_bl.mod.o
2025-10-02T16:35:50.9853483Z CC [M] drivers/video/backlight/arcxcnn_bl.mod.o
2025-10-02T16:35:51.0158761Z CC [M] drivers/video/backlight/as3711_bl.mod.o
2025-10-02T16:35:51.0740967Z CC [M] drivers/video/backlight/bd6107.mod.o
2025-10-02T16:35:51.1145001Z CC [M] drivers/video/backlight/da903x_bl.mod.o
2025-10-02T16:35:51.1945064Z CC [M] drivers/video/backlight/da9052_bl.mod.o
2025-10-02T16:35:51.3147264Z CC [M] drivers/video/backlight/gpio_backlight.mod.o
2025-10-02T16:35:51.4014648Z CC [M] drivers/video/backlight/hx8357.mod.o
2025-10-02T16:35:51.4298810Z CC [M] drivers/video/backlight/ili922x.mod.o
2025-10-02T16:35:51.5018324Z CC [M] drivers/video/backlight/ili9320.mod.o
2025-10-02T16:35:51.6040310Z CC [M] drivers/video/backlight/kb3886_bl.mod.o
2025-10-02T16:35:51.6855405Z CC [M] drivers/video/backlight/ktd253-backlight.mod.o
2025-10-02T16:35:51.7340852Z CC [M] drivers/video/backlight/l4f00242t03.mod.o
2025-10-02T16:35:51.7936176Z CC [M] drivers/video/backlight/lcd.mod.o
2025-10-02T16:35:51.8571602Z CC [M] drivers/video/backlight/lm3533_bl.mod.o
2025-10-02T16:35:52.0071253Z CC [M] drivers/video/backlight/lm3630a_bl.mod.o
2025-10-02T16:35:52.0213898Z CC [M] drivers/video/backlight/lm3639_bl.mod.o
2025-10-02T16:35:52.1034470Z CC [M] drivers/video/backlight/lms283gf05.mod.o
2025-10-02T16:35:52.1115338Z CC [M] drivers/video/backlight/lms501kf03.mod.o
2025-10-02T16:35:52.3172843Z CC [M] drivers/video/backlight/lp855x_bl.mod.o
2025-10-02T16:35:52.3442719Z CC [M] drivers/video/backlight/lp8788_bl.mod.o
2025-10-02T16:35:52.3748913Z CC [M] drivers/video/backlight/ltv350qv.mod.o
2025-10-02T16:35:52.4373005Z CC [M] drivers/video/backlight/lv5207lp.mod.o
2025-10-02T16:35:52.4885168Z CC [M] drivers/video/backlight/max8925_bl.mod.o
2025-10-02T16:35:52.6822091Z CC [M] drivers/video/backlight/otm3225a.mod.o
2025-10-02T16:35:52.6941430Z CC [M] drivers/video/backlight/pandora_bl.mod.o
2025-10-02T16:35:52.7157887Z CC [M] drivers/video/backlight/pcf50633-backlight.mod.o
2025-10-02T16:35:52.7462034Z CC [M] drivers/video/backlight/platform_lcd.mod.o
2025-10-02T16:35:52.8935984Z CC [M] drivers/video/backlight/pwm_bl.mod.o
2025-10-02T16:35:53.0069996Z CC [M] drivers/video/backlight/qcom-wled.mod.o
2025-10-02T16:35:53.0596401Z CC [M] drivers/video/backlight/rave-sp-backlight.mod.o
2025-10-02T16:35:53.0980044Z CC [M] drivers/video/backlight/sky81452-backlight.mod.o
2025-10-02T16:35:53.1014229Z CC [M] drivers/video/backlight/tdo24m.mod.o
2025-10-02T16:35:53.3023116Z CC [M] drivers/video/backlight/vgg2432a4.mod.o
2025-10-02T16:35:53.3468434Z CC [M] drivers/video/backlight/wm831x_bl.mod.o
2025-10-02T16:35:53.3841146Z CC [M] drivers/video/fbdev/core/fb_sys_fops.mod.o
2025-10-02T16:35:53.4503825Z CC [M] drivers/video/fbdev/core/syscopyarea.mod.o
2025-10-02T16:35:53.4984621Z CC [M] drivers/video/fbdev/core/sysfillrect.mod.o
2025-10-02T16:35:53.6788464Z CC [M] drivers/video/fbdev/core/sysimgblt.mod.o
2025-10-02T16:35:53.6880114Z CC [M] drivers/video/fbdev/hyperv_fb.mod.o
2025-10-02T16:35:53.7279912Z CC [M] drivers/video/fbdev/xen-fbfront.mod.o
2025-10-02T16:35:53.7843003Z CC [M] drivers/virt/nitro_enclaves/nitro_enclaves.mod.o
2025-10-02T16:35:53.8760493Z CC [M] drivers/virt/vboxguest/vboxguest.mod.o
2025-10-02T16:35:54.0215474Z CC [M] drivers/virtio/virtio_balloon.mod.o
2025-10-02T16:35:54.0733542Z CC [M] drivers/virtio/virtio_input.mod.o
2025-10-02T16:35:54.0780738Z CC [M] drivers/virtio/virtio_dma_buf.mod.o
2025-10-02T16:35:54.1153324Z CC [M] drivers/virtio/virtio_mem.mod.o
2025-10-02T16:35:54.3404694Z CC [M] drivers/virtio/virtio_mmio.mod.o
2025-10-02T16:35:54.3691396Z CC [M] drivers/virtio/virtio_pci.mod.o
2025-10-02T16:35:54.3692386Z CC [M] drivers/virtio/virtio_vdpa.mod.o
2025-10-02T16:35:54.4074945Z CC [M] drivers/visorbus/visorbus.mod.o
2025-10-02T16:35:54.4921229Z CC [M] drivers/w1/masters/ds1wm.mod.o
2025-10-02T16:35:54.6469679Z CC [M] drivers/w1/masters/ds2482.mod.o
2025-10-02T16:35:54.7387396Z CC [M] drivers/w1/masters/ds2490.mod.o
2025-10-02T16:35:54.7774141Z CC [M] drivers/w1/masters/matrox_w1.mod.o
2025-10-02T16:35:54.8036580Z CC [M] drivers/w1/masters/sgi_w1.mod.o
2025-10-02T16:35:54.8116441Z CC [M] drivers/w1/masters/w1-gpio.mod.o
2025-10-02T16:35:54.9928904Z CC [M] drivers/w1/slaves/w1_ds2405.mod.o
2025-10-02T16:35:55.0864526Z CC [M] drivers/w1/slaves/w1_ds2406.mod.o
2025-10-02T16:35:55.1071538Z CC [M] drivers/w1/slaves/w1_ds2408.mod.o
2025-10-02T16:35:55.1437407Z CC [M] drivers/w1/slaves/w1_ds2413.mod.o
2025-10-02T16:35:55.2256184Z CC [M] drivers/w1/slaves/w1_ds2423.mod.o
2025-10-02T16:35:55.3725724Z CC [M] drivers/w1/slaves/w1_ds2430.mod.o
2025-10-02T16:35:55.3975155Z CC [M] drivers/w1/slaves/w1_ds2431.mod.o
2025-10-02T16:35:55.5088371Z CC [M] drivers/w1/slaves/w1_ds2433.mod.o
2025-10-02T16:35:55.5265176Z CC [M] drivers/w1/slaves/w1_ds2438.mod.o
2025-10-02T16:35:55.5754065Z CC [M] drivers/w1/slaves/w1_ds250x.mod.o
2025-10-02T16:35:55.7143762Z CC [M] drivers/w1/slaves/w1_ds2780.mod.o
2025-10-02T16:35:55.7845562Z CC [M] drivers/w1/slaves/w1_ds2781.mod.o
2025-10-02T16:35:55.8463119Z CC [M] drivers/w1/slaves/w1_ds2805.mod.o
2025-10-02T16:35:55.8866921Z CC [M] drivers/w1/slaves/w1_ds28e04.mod.o
2025-10-02T16:35:55.9365519Z CC [M] drivers/w1/slaves/w1_ds28e17.mod.o
2025-10-02T16:35:56.0717367Z CC [M] drivers/w1/slaves/w1_smem.mod.o
2025-10-02T16:35:56.1592389Z CC [M] drivers/w1/slaves/w1_therm.mod.o
2025-10-02T16:35:56.1963637Z CC [M] drivers/w1/wire.mod.o
2025-10-02T16:35:56.2056959Z CC [M] drivers/watchdog/acquirewdt.mod.o
2025-10-02T16:35:56.3357307Z CC [M] drivers/watchdog/advantechwdt.mod.o
2025-10-02T16:35:56.4836220Z CC [M] drivers/watchdog/alim1535_wdt.mod.o
2025-10-02T16:35:56.4918001Z CC [M] drivers/watchdog/alim7101_wdt.mod.o
2025-10-02T16:35:56.5481116Z CC [M] drivers/watchdog/cadence_wdt.mod.o
2025-10-02T16:35:56.5819434Z CC [M] drivers/watchdog/cpu5wdt.mod.o
2025-10-02T16:35:56.6526421Z CC [M] drivers/watchdog/da9052_wdt.mod.o
2025-10-02T16:35:56.8129442Z CC [M] drivers/watchdog/da9055_wdt.mod.o
2025-10-02T16:35:56.8480741Z CC [M] drivers/watchdog/da9062_wdt.mod.o
2025-10-02T16:35:56.8511555Z CC [M] drivers/watchdog/da9063_wdt.mod.o
2025-10-02T16:35:56.9926795Z CC [M] drivers/watchdog/dw_wdt.mod.o
2025-10-02T16:35:57.0291137Z CC [M] drivers/watchdog/ebc-c384_wdt.mod.o
2025-10-02T16:35:57.1590195Z CC [M] drivers/watchdog/eurotechwdt.mod.o
2025-10-02T16:35:57.1871249Z CC [M] drivers/watchdog/f71808e_wdt.mod.o
2025-10-02T16:35:57.2452156Z CC [M] drivers/watchdog/hpwdt.mod.o
2025-10-02T16:35:57.2956031Z CC [M] drivers/watchdog/i6300esb.mod.o
2025-10-02T16:35:57.4563376Z CC [M] drivers/watchdog/iTCO_vendor_support.mod.o
2025-10-02T16:35:57.5272044Z CC [M] drivers/watchdog/iTCO_wdt.mod.o
2025-10-02T16:35:57.5671690Z CC [M] drivers/watchdog/ib700wdt.mod.o
2025-10-02T16:35:57.5871330Z CC [M] drivers/watchdog/ibmasr.mod.o
2025-10-02T16:35:57.6260227Z CC [M] drivers/watchdog/ie6xx_wdt.mod.o
2025-10-02T16:35:57.8583336Z CC [M] drivers/watchdog/it8712f_wdt.mod.o
2025-10-02T16:35:57.8608764Z CC [M] drivers/watchdog/it87_wdt.mod.o
2025-10-02T16:35:57.8824511Z CC [M] drivers/watchdog/kempld_wdt.mod.o
2025-10-02T16:35:57.9508339Z CC [M] drivers/watchdog/machzwd.mod.o
2025-10-02T16:35:57.9962531Z CC [M] drivers/watchdog/max63xx_wdt.mod.o
2025-10-02T16:35:58.1447438Z CC [M] drivers/watchdog/mei_wdt.mod.o
2025-10-02T16:35:58.1585242Z CC [M] drivers/watchdog/mena21_wdt.mod.o
2025-10-02T16:35:58.3248645Z CC [M] drivers/watchdog/menf21bmc_wdt.mod.o
2025-10-02T16:35:58.3317652Z CC [M] drivers/watchdog/menz69_wdt.mod.o
2025-10-02T16:35:58.4209201Z CC [M] drivers/watchdog/mlx_wdt.mod.o
2025-10-02T16:35:58.4521351Z CC [M] drivers/watchdog/ni903x_wdt.mod.o
2025-10-02T16:35:58.5186814Z CC [M] drivers/watchdog/nic7018_wdt.mod.o
2025-10-02T16:35:58.6858082Z CC [M] drivers/watchdog/nv_tco.mod.o
2025-10-02T16:35:58.6968293Z CC [M] drivers/watchdog/of_xilinx_wdt.mod.o
2025-10-02T16:35:58.7403938Z CC [M] drivers/watchdog/pc87413_wdt.mod.o
2025-10-02T16:35:58.7892592Z CC [M] drivers/watchdog/pcwd_pci.mod.o
2025-10-02T16:35:58.9264899Z CC [M] drivers/watchdog/pcwd_usb.mod.o
2025-10-02T16:35:58.9788022Z CC [M] drivers/watchdog/pretimeout_noop.mod.o
2025-10-02T16:35:59.0522244Z CC [M] drivers/watchdog/rave-sp-wdt.mod.o
2025-10-02T16:35:59.1019672Z CC [M] drivers/watchdog/retu_wdt.mod.o
2025-10-02T16:35:59.1881721Z CC [M] drivers/watchdog/sbc60xxwdt.mod.o
2025-10-02T16:35:59.3144381Z CC [M] drivers/watchdog/sbc_epx_c3.mod.o
2025-10-02T16:35:59.3209644Z CC [M] drivers/watchdog/sbc_fitpc2_wdt.mod.o
2025-10-02T16:35:59.3716450Z CC [M] drivers/watchdog/sc1200wdt.mod.o
2025-10-02T16:35:59.4373781Z CC [M] drivers/watchdog/sch311x_wdt.mod.o
2025-10-02T16:35:59.6233645Z CC [M] drivers/watchdog/smsc37b787_wdt.mod.o
2025-10-02T16:35:59.6306894Z CC [M] drivers/watchdog/softdog.mod.o
2025-10-02T16:35:59.7107110Z CC [M] drivers/watchdog/sp5100_tco.mod.o
2025-10-02T16:35:59.7521833Z CC [M] drivers/watchdog/tqmx86_wdt.mod.o
2025-10-02T16:35:59.8048821Z CC [M] drivers/watchdog/twl4030_wdt.mod.o
2025-10-02T16:35:59.9784306Z CC [M] drivers/watchdog/via_wdt.mod.o
2025-10-02T16:36:00.0105921Z CC [M] drivers/watchdog/w83627hf_wdt.mod.o
2025-10-02T16:36:00.0140230Z CC [M] drivers/watchdog/w83877f_wdt.mod.o
2025-10-02T16:36:00.1035116Z CC [M] drivers/watchdog/w83977f_wdt.mod.o
2025-10-02T16:36:00.1681095Z CC [M] drivers/watchdog/wafer5823wdt.mod.o
2025-10-02T16:36:00.3338693Z CC [M] drivers/watchdog/wdat_wdt.mod.o
2025-10-02T16:36:00.3477317Z CC [M] drivers/watchdog/wdt_pci.mod.o
2025-10-02T16:36:00.3863758Z CC [M] drivers/watchdog/wm831x_wdt.mod.o
2025-10-02T16:36:00.4929346Z CC [M] drivers/watchdog/wm8350_wdt.mod.o
2025-10-02T16:36:00.5055471Z CC [M] drivers/watchdog/xen_wdt.mod.o
2025-10-02T16:36:00.6272266Z CC [M] drivers/watchdog/ziirave_wdt.mod.o
2025-10-02T16:36:00.7068677Z CC [M] drivers/xen/pvcalls-front.mod.o
2025-10-02T16:36:00.7397445Z CC [M] drivers/xen/xen-acpi-processor.mod.o
2025-10-02T16:36:00.8815903Z CC [M] drivers/xen/xen-evtchn.mod.o
2025-10-02T16:36:00.9413349Z CC [M] drivers/xen/xen-front-pgdir-shbuf.mod.o
2025-10-02T16:36:00.9554861Z CC [M] drivers/xen/xen-gntalloc.mod.o
2025-10-02T16:36:01.0249785Z CC [M] drivers/xen/xen-gntdev.mod.o
2025-10-02T16:36:01.1304197Z CC [M] drivers/xen/xen-pciback/xen-pciback.mod.o
2025-10-02T16:36:01.2397914Z CC [M] drivers/xen/xen-privcmd.mod.o
2025-10-02T16:36:01.3106726Z CC [M] drivers/xen/xen-scsiback.mod.o
2025-10-02T16:36:01.3247230Z CC [M] drivers/xen/xenfs/xenfs.mod.o
2025-10-02T16:36:01.3371345Z CC [M] fs/9p/9p.mod.o
2025-10-02T16:36:01.4942496Z CC [M] fs/affs/affs.mod.o
2025-10-02T16:36:01.5535586Z CC [M] fs/afs/kafs.mod.o
2025-10-02T16:36:01.6354358Z CC [M] fs/befs/befs.mod.o
2025-10-02T16:36:01.6720576Z CC [M] fs/btrfs/btrfs.mod.o
2025-10-02T16:36:01.7031731Z CC [M] fs/cachefiles/cachefiles.mod.o
2025-10-02T16:36:01.9137337Z CC [M] fs/ceph/ceph.mod.o
2025-10-02T16:36:01.9464072Z CC [M] fs/cifs/cifs.mod.o
2025-10-02T16:36:01.9661106Z CC [M] fs/coda/coda.mod.o
2025-10-02T16:36:01.9978997Z CC [M] fs/cramfs/cramfs.mod.o
2025-10-02T16:36:02.0443212Z CC [M] fs/dlm/dlm.mod.o
2025-10-02T16:36:02.2567357Z CC [M] fs/ecryptfs/ecryptfs.mod.o
2025-10-02T16:36:02.2640835Z CC [M] fs/erofs/erofs.mod.o
2025-10-02T16:36:02.2847106Z CC [M] fs/exfat/exfat.mod.o
2025-10-02T16:36:02.3187455Z CC [M] fs/ext4/ext4.mod.o
2025-10-02T16:36:02.4611237Z CC [M] fs/f2fs/f2fs.mod.o
2025-10-02T16:36:02.5456824Z CC [M] fs/fat/fat.mod.o
2025-10-02T16:36:02.6256762Z CC [M] fs/fat/msdos.mod.o
2025-10-02T16:36:02.6472566Z CC [M] fs/fat/vfat.mod.o
2025-10-02T16:36:02.7511022Z CC [M] fs/fscache/fscache.mod.o
2025-10-02T16:36:02.8163625Z CC [M] fs/fuse/cuse.mod.o
2025-10-02T16:36:02.8831039Z CC [M] fs/fuse/fuse.mod.o
2025-10-02T16:36:02.9246060Z CC [M] fs/fuse/virtiofs.mod.o
2025-10-02T16:36:03.0542732Z CC [M] fs/gfs2/gfs2.mod.o
2025-10-02T16:36:03.1161257Z CC [M] fs/hfs/hfs.mod.o
2025-10-02T16:36:03.1187532Z CC [M] fs/hfsplus/hfsplus.mod.o
2025-10-02T16:36:03.2044737Z CC [M] fs/isofs/isofs.mod.o
2025-10-02T16:36:03.3062746Z CC [M] fs/jbd2/jbd2.mod.o
2025-10-02T16:36:03.4299377Z CC [M] fs/jffs2/jffs2.mod.o
2025-10-02T16:36:03.4652960Z CC [M] fs/jfs/jfs.mod.o
2025-10-02T16:36:03.4681007Z CC [M] fs/lockd/lockd.mod.o
2025-10-02T16:36:03.5105915Z CC [M] fs/mbcache.mod.o
2025-10-02T16:36:03.7098347Z CC [M] fs/minix/minix.mod.o
2025-10-02T16:36:03.7464302Z CC [M] fs/nfs/blocklayout/blocklayoutdriver.mod.o
2025-10-02T16:36:03.7621617Z CC [M] fs/nfs/filelayout/nfs_layout_nfsv41_files.mod.o
2025-10-02T16:36:03.8073471Z CC [M] fs/nfs/flexfilelayout/nfs_layout_flexfiles.mod.o
2025-10-02T16:36:04.0006545Z CC [M] fs/nfs/nfs.mod.o
2025-10-02T16:36:04.0211258Z CC [M] fs/nfs/nfsv2.mod.o
2025-10-02T16:36:04.0370345Z CC [M] fs/nfs/nfsv3.mod.o
2025-10-02T16:36:04.1166844Z CC [M] fs/nfs/nfsv4.mod.o
2025-10-02T16:36:04.2412909Z CC [M] fs/nfs_common/grace.mod.o
2025-10-02T16:36:04.3084643Z CC [M] fs/nfs_common/nfs_acl.mod.o
2025-10-02T16:36:04.3394690Z CC [M] fs/nfsd/nfsd.mod.o
2025-10-02T16:36:04.4063847Z CC [M] fs/nilfs2/nilfs2.mod.o
2025-10-02T16:36:04.4497991Z CC [M] fs/nls/mac-celtic.mod.o
2025-10-02T16:36:04.5557696Z CC [M] fs/nls/mac-centeuro.mod.o
2025-10-02T16:36:04.6859236Z CC [M] fs/nls/mac-cyrillic.mod.o
2025-10-02T16:36:04.6872122Z CC [M] fs/nls/mac-croatian.mod.o
2025-10-02T16:36:04.7184749Z CC [M] fs/nls/mac-gaelic.mod.o
2025-10-02T16:36:04.8819409Z CC [M] fs/nls/mac-greek.mod.o
2025-10-02T16:36:04.9301137Z CC [M] fs/nls/mac-iceland.mod.o
2025-10-02T16:36:04.9992528Z CC [M] fs/nls/mac-inuit.mod.o
2025-10-02T16:36:05.0133663Z CC [M] fs/nls/mac-roman.mod.o
2025-10-02T16:36:05.0872903Z CC [M] fs/nls/mac-romanian.mod.o
2025-10-02T16:36:05.1798532Z CC [M] fs/nls/mac-turkish.mod.o
2025-10-02T16:36:05.3141469Z CC [M] fs/nls/nls_cp1250.mod.o
2025-10-02T16:36:05.3346269Z CC [M] fs/nls/nls_cp1251.mod.o
2025-10-02T16:36:05.3632083Z CC [M] fs/nls/nls_cp1255.mod.o
2025-10-02T16:36:05.4794546Z CC [M] fs/nls/nls_cp737.mod.o
2025-10-02T16:36:05.5121222Z CC [M] fs/nls/nls_cp775.mod.o
2025-10-02T16:36:05.6201541Z CC [M] fs/nls/nls_cp850.mod.o
2025-10-02T16:36:05.7568553Z CC [M] fs/nls/nls_cp852.mod.o
2025-10-02T16:36:05.7702069Z CC [M] fs/nls/nls_cp855.mod.o
2025-10-02T16:36:05.7870284Z CC [M] fs/nls/nls_cp857.mod.o
2025-10-02T16:36:05.8716223Z CC [M] fs/nls/nls_cp860.mod.o
2025-10-02T16:36:05.9251379Z CC [M] fs/nls/nls_cp861.mod.o
2025-10-02T16:36:06.0841691Z CC [M] fs/nls/nls_cp862.mod.o
2025-10-02T16:36:06.1040712Z CC [M] fs/nls/nls_cp863.mod.o
2025-10-02T16:36:06.1539955Z CC [M] fs/nls/nls_cp864.mod.o
2025-10-02T16:36:06.2182168Z CC [M] fs/nls/nls_cp865.mod.o
2025-10-02T16:36:06.3048361Z CC [M] fs/nls/nls_cp866.mod.o
2025-10-02T16:36:06.4531566Z CC [M] fs/nls/nls_cp869.mod.o
2025-10-02T16:36:06.4887630Z CC [M] fs/nls/nls_cp874.mod.o
2025-10-02T16:36:06.4921177Z CC [M] fs/nls/nls_cp932.mod.o
2025-10-02T16:36:06.5377656Z CC [M] fs/nls/nls_cp936.mod.o
2025-10-02T16:36:06.7441939Z CC [M] fs/nls/nls_cp950.mod.o
2025-10-02T16:36:06.7468301Z CC [M] fs/nls/nls_cp949.mod.o
2025-10-02T16:36:06.8211835Z CC [M] fs/nls/nls_euc-jp.mod.o
2025-10-02T16:36:06.8261895Z CC [M] fs/nls/nls_iso8859-1.mod.o
2025-10-02T16:36:06.9631218Z CC [M] fs/nls/nls_iso8859-13.mod.o
2025-10-02T16:36:07.0384918Z CC [M] fs/nls/nls_iso8859-14.mod.o
2025-10-02T16:36:07.0533397Z CC [M] fs/nls/nls_iso8859-15.mod.o
2025-10-02T16:36:07.1262019Z CC [M] fs/nls/nls_iso8859-2.mod.o
2025-10-02T16:36:07.2113730Z CC [M] fs/nls/nls_iso8859-3.mod.o
2025-10-02T16:36:07.3127408Z CC [M] fs/nls/nls_iso8859-4.mod.o
2025-10-02T16:36:07.3919097Z CC [M] fs/nls/nls_iso8859-5.mod.o
2025-10-02T16:36:07.4073294Z CC [M] fs/nls/nls_iso8859-6.mod.o
2025-10-02T16:36:07.4692659Z CC [M] fs/nls/nls_iso8859-7.mod.o
2025-10-02T16:36:07.5592363Z CC [M] fs/nls/nls_iso8859-9.mod.o
2025-10-02T16:36:07.6754624Z CC [M] fs/nls/nls_koi8-r.mod.o
2025-10-02T16:36:07.6915337Z CC [M] fs/nls/nls_koi8-ru.mod.o
2025-10-02T16:36:07.7830292Z CC [M] fs/nls/nls_koi8-u.mod.o
2025-10-02T16:36:07.8102911Z CC [M] fs/nls/nls_utf8.mod.o
2025-10-02T16:36:07.9846037Z CC [M] fs/ocfs2/cluster/ocfs2_nodemanager.mod.o
2025-10-02T16:36:08.0017782Z CC [M] fs/ocfs2/dlm/ocfs2_dlm.mod.o
2025-10-02T16:36:08.0397340Z CC [M] fs/ocfs2/dlmfs/ocfs2_dlmfs.mod.o
2025-10-02T16:36:08.0848701Z CC [M] fs/ocfs2/ocfs2.mod.o
2025-10-02T16:36:08.2699314Z CC [M] fs/ocfs2/ocfs2_stack_o2cb.mod.o
2025-10-02T16:36:08.3287854Z CC [M] fs/ocfs2/ocfs2_stack_user.mod.o
2025-10-02T16:36:08.3645655Z CC [M] fs/ocfs2/ocfs2_stackglue.mod.o
2025-10-02T16:36:08.3711845Z CC [M] fs/omfs/omfs.mod.o
2025-10-02T16:36:08.3820795Z CC [M] fs/orangefs/orangefs.mod.o
2025-10-02T16:36:08.6348534Z CC [M] fs/overlayfs/overlay.mod.o
2025-10-02T16:36:08.6748457Z CC [M] fs/pstore/ramoops.mod.o
2025-10-02T16:36:08.7068616Z CC [M] fs/quota/quota_tree.mod.o
2025-10-02T16:36:08.7216400Z CC [M] fs/quota/quota_v1.mod.o
2025-10-02T16:36:08.7381086Z CC [M] fs/quota/quota_v2.mod.o
2025-10-02T16:36:08.9935639Z CC [M] fs/reiserfs/reiserfs.mod.o
2025-10-02T16:36:09.0330223Z CC [M] fs/romfs/romfs.mod.o
2025-10-02T16:36:09.0513453Z CC [M] fs/squashfs/squashfs.mod.o
2025-10-02T16:36:09.0622284Z CC [M] fs/ubifs/ubifs.mod.o
2025-10-02T16:36:09.1137675Z CC [M] fs/udf/udf.mod.o
2025-10-02T16:36:09.3127891Z CC [M] fs/ufs/ufs.mod.o
2025-10-02T16:36:09.3138339Z CC [M] fs/vboxsf/vboxsf.mod.o
2025-10-02T16:36:09.4835472Z CC [M] fs/xfs/xfs.mod.o
2025-10-02T16:36:09.4880599Z CC [M] fs/zonefs/zonefs.mod.o
2025-10-02T16:36:09.4910404Z CC [M] kernel/kheaders.mod.o
2025-10-02T16:36:09.5971955Z CC [M] lib/842/842_compress.mod.o
2025-10-02T16:36:09.6043307Z CC [M] lib/842/842_decompress.mod.o
2025-10-02T16:36:09.8408682Z CC [M] lib/crc-itu-t.mod.o
2025-10-02T16:36:09.8718181Z CC [M] lib/crc16.mod.o
2025-10-02T16:36:09.8815284Z CC [M] lib/crc4.mod.o
2025-10-02T16:36:09.9114171Z CC [M] lib/crc64.mod.o
2025-10-02T16:36:09.9560395Z CC [M] lib/crc7.mod.o
2025-10-02T16:36:10.1826139Z CC [M] lib/crc8.mod.o
2025-10-02T16:36:10.2439336Z CC [M] lib/crypto/libarc4.mod.o
2025-10-02T16:36:10.2564330Z CC [M] lib/crypto/libchacha.mod.o
2025-10-02T16:36:10.2898223Z CC [M] lib/crypto/libchacha20poly1305.mod.o
2025-10-02T16:36:10.3043749Z CC [M] lib/crypto/libcurve25519-generic.mod.o
2025-10-02T16:36:10.5062169Z CC [M] lib/crypto/libcurve25519.mod.o
2025-10-02T16:36:10.6320264Z CC [M] lib/crypto/libdes.mod.o
2025-10-02T16:36:10.6434363Z CC [M] lib/libcrc32c.mod.o
2025-10-02T16:36:10.6459875Z CC [M] lib/crypto/libpoly1305.mod.o
2025-10-02T16:36:10.6610642Z CC [M] lib/lru_cache.mod.o
2025-10-02T16:36:10.7913408Z CC [M] lib/lz4/lz4hc_compress.mod.o
2025-10-02T16:36:10.9453229Z CC [M] lib/math/cordic.mod.o
2025-10-02T16:36:11.0123499Z CC [M] lib/objagg.mod.o
2025-10-02T16:36:11.0271614Z CC [M] lib/parman.mod.o
2025-10-02T16:36:11.0946228Z CC [M] lib/raid6/raid6_pq.mod.o
2025-10-02T16:36:11.1186590Z CC [M] lib/reed_solomon/reed_solomon.mod.o
2025-10-02T16:36:11.2803235Z CC [M] lib/ts_bm.mod.o
2025-10-02T16:36:11.3276670Z CC [M] lib/ts_fsm.mod.o
2025-10-02T16:36:11.3911456Z CC [M] lib/ts_kmp.mod.o
2025-10-02T16:36:11.4602469Z CC [M] mm/hwpoison-inject.mod.o
2025-10-02T16:36:11.4808513Z CC [M] net/6lowpan/6lowpan.mod.o
2025-10-02T16:36:11.5896734Z CC [M] net/6lowpan/nhc_dest.mod.o
2025-10-02T16:36:11.6805104Z CC [M] net/6lowpan/nhc_fragment.mod.o
2025-10-02T16:36:11.8098328Z CC [M] net/6lowpan/nhc_ghc_ext_dest.mod.o
2025-10-02T16:36:11.8538065Z CC [M] net/6lowpan/nhc_ghc_ext_frag.mod.o
2025-10-02T16:36:11.8861785Z CC [M] net/6lowpan/nhc_ghc_ext_hop.mod.o
2025-10-02T16:36:11.8888016Z CC [M] net/6lowpan/nhc_ghc_ext_route.mod.o
2025-10-02T16:36:12.0269953Z CC [M] net/6lowpan/nhc_ghc_icmpv6.mod.o
2025-10-02T16:36:12.1602354Z CC [M] net/6lowpan/nhc_ghc_udp.mod.o
2025-10-02T16:36:12.2004504Z CC [M] net/6lowpan/nhc_hop.mod.o
2025-10-02T16:36:12.2385746Z CC [M] net/6lowpan/nhc_mobility.mod.o
2025-10-02T16:36:12.2409226Z CC [M] net/6lowpan/nhc_ipv6.mod.o
2025-10-02T16:36:12.3954876Z CC [M] net/6lowpan/nhc_routing.mod.o
2025-10-02T16:36:12.5020895Z CC [M] net/6lowpan/nhc_udp.mod.o
2025-10-02T16:36:12.5423368Z CC [M] net/802/fddi.mod.o
2025-10-02T16:36:12.6098328Z CC [M] net/802/garp.mod.o
2025-10-02T16:36:12.6884412Z CC [M] net/802/mrp.mod.o
2025-10-02T16:36:12.6961872Z CC [M] net/802/p8022.mod.o
2025-10-02T16:36:12.8049327Z CC [M] net/802/psnap.mod.o
2025-10-02T16:36:12.9578719Z CC [M] net/802/stp.mod.o
2025-10-02T16:36:12.9706414Z CC [M] net/8021q/8021q.mod.o
2025-10-02T16:36:12.9720166Z CC [M] net/9p/9pnet.mod.o
2025-10-02T16:36:13.1080426Z CC [M] net/9p/9pnet_rdma.mod.o
2025-10-02T16:36:13.1434304Z CC [M] net/9p/9pnet_virtio.mod.o
2025-10-02T16:36:13.2739410Z CC [M] net/9p/9pnet_xen.mod.o
2025-10-02T16:36:13.3070912Z CC [M] net/appletalk/appletalk.mod.o
2025-10-02T16:36:13.4033276Z CC [M] net/atm/atm.mod.o
2025-10-02T16:36:13.4077278Z CC [M] net/atm/br2684.mod.o
2025-10-02T16:36:13.5021371Z CC [M] net/atm/clip.mod.o
2025-10-02T16:36:13.6503334Z CC [M] net/atm/lec.mod.o
2025-10-02T16:36:13.6870827Z CC [M] net/atm/mpoa.mod.o
2025-10-02T16:36:13.7106317Z CC [M] net/atm/pppoatm.mod.o
2025-10-02T16:36:13.7169419Z CC [M] net/ax25/ax25.mod.o
2025-10-02T16:36:13.8717867Z CC [M] net/batman-adv/batman-adv.mod.o
2025-10-02T16:36:13.9952212Z CC [M] net/bluetooth/bluetooth.mod.o
2025-10-02T16:36:14.0218806Z CC [M] net/bluetooth/bluetooth_6lowpan.mod.o
2025-10-02T16:36:14.0285239Z CC [M] net/bluetooth/bnep/bnep.mod.o
2025-10-02T16:36:14.0673305Z CC [M] net/bluetooth/cmtp/cmtp.mod.o
2025-10-02T16:36:14.2788651Z CC [M] net/bluetooth/hidp/hidp.mod.o
2025-10-02T16:36:14.3073778Z CC [M] net/bluetooth/rfcomm/rfcomm.mod.o
2025-10-02T16:36:14.3207509Z CC [M] net/bridge/br_netfilter.mod.o
2025-10-02T16:36:14.3612239Z CC [M] net/bridge/bridge.mod.o
2025-10-02T16:36:14.4641306Z CC [M] net/bridge/netfilter/ebt_802_3.mod.o
2025-10-02T16:36:14.5994999Z CC [M] net/bridge/netfilter/ebt_among.mod.o
2025-10-02T16:36:14.6641940Z CC [M] net/bridge/netfilter/ebt_arp.mod.o
2025-10-02T16:36:14.6915875Z CC [M] net/bridge/netfilter/ebt_arpreply.mod.o
2025-10-02T16:36:14.7030070Z CC [M] net/bridge/netfilter/ebt_dnat.mod.o
2025-10-02T16:36:14.8793385Z CC [M] net/bridge/netfilter/ebt_ip.mod.o
2025-10-02T16:36:14.9706506Z CC [M] net/bridge/netfilter/ebt_ip6.mod.o
2025-10-02T16:36:14.9914647Z CC [M] net/bridge/netfilter/ebt_limit.mod.o
2025-10-02T16:36:15.0472521Z CC [M] net/bridge/netfilter/ebt_log.mod.o
2025-10-02T16:36:15.0500747Z CC [M] net/bridge/netfilter/ebt_mark.mod.o
2025-10-02T16:36:15.1857220Z CC [M] net/bridge/netfilter/ebt_mark_m.mod.o
2025-10-02T16:36:15.2791417Z CC [M] net/bridge/netfilter/ebt_nflog.mod.o
2025-10-02T16:36:15.3644972Z CC [M] net/bridge/netfilter/ebt_pkttype.mod.o
2025-10-02T16:36:15.3931151Z CC [M] net/bridge/netfilter/ebt_redirect.mod.o
2025-10-02T16:36:15.4313753Z CC [M] net/bridge/netfilter/ebt_snat.mod.o
2025-10-02T16:36:15.5221330Z CC [M] net/bridge/netfilter/ebt_stp.mod.o
2025-10-02T16:36:15.6221868Z CC [M] net/bridge/netfilter/ebt_vlan.mod.o
2025-10-02T16:36:15.7250227Z CC [M] net/bridge/netfilter/ebtable_broute.mod.o
2025-10-02T16:36:15.7493150Z CC [M] net/bridge/netfilter/ebtable_filter.mod.o
2025-10-02T16:36:15.7998714Z CC [M] net/bridge/netfilter/ebtable_nat.mod.o
2025-10-02T16:36:15.8085536Z CC [M] net/bridge/netfilter/ebtables.mod.o
2025-10-02T16:36:16.0165057Z CC [M] net/bridge/netfilter/nf_conntrack_bridge.mod.o
2025-10-02T16:36:16.0594084Z CC [M] net/bridge/netfilter/nf_log_bridge.mod.o
2025-10-02T16:36:16.0982805Z CC [M] net/bridge/netfilter/nft_meta_bridge.mod.o
2025-10-02T16:36:16.1252864Z CC [M] net/bridge/netfilter/nft_reject_bridge.mod.o
2025-10-02T16:36:16.1712751Z CC [M] net/can/can-bcm.mod.o
2025-10-02T16:36:16.4231669Z CC [M] net/can/can-gw.mod.o
2025-10-02T16:36:16.4301326Z CC [M] net/can/can-isotp.mod.o
2025-10-02T16:36:16.4564982Z CC [M] net/can/can-raw.mod.o
2025-10-02T16:36:16.4610879Z CC [M] net/can/can.mod.o
2025-10-02T16:36:16.4961766Z CC [M] net/can/j1939/can-j1939.mod.o
2025-10-02T16:36:16.7358551Z CC [M] net/ceph/libceph.mod.o
2025-10-02T16:36:16.7511729Z CC [M] net/core/failover.mod.o
2025-10-02T16:36:16.7820542Z CC [M] net/core/pktgen.mod.o
2025-10-02T16:36:16.8478271Z CC [M] net/dns_resolver/dns_resolver.mod.o
2025-10-02T16:36:16.8946095Z CC [M] net/dsa/dsa_core.mod.o
2025-10-02T16:36:17.0350914Z CC [M] net/dsa/tag_8021q.mod.o
2025-10-02T16:36:17.0949078Z CC [M] net/dsa/tag_ar9331.mod.o
2025-10-02T16:36:17.1895976Z CC [M] net/dsa/tag_brcm.mod.o
2025-10-02T16:36:17.2161236Z CC [M] net/dsa/tag_dsa.mod.o
2025-10-02T16:36:17.3071140Z CC [M] net/dsa/tag_edsa.mod.o
2025-10-02T16:36:17.3127616Z CC [M] net/dsa/tag_gswip.mod.o
2025-10-02T16:36:17.4476161Z CC [M] net/dsa/tag_ksz.mod.o
2025-10-02T16:36:17.5496308Z CC [M] net/dsa/tag_lan9303.mod.o
2025-10-02T16:36:17.5747441Z CC [M] net/dsa/tag_mtk.mod.o
2025-10-02T16:36:17.6119719Z CC [M] net/dsa/tag_ocelot.mod.o
2025-10-02T16:36:17.6625411Z CC [M] net/dsa/tag_qca.mod.o
2025-10-02T16:36:17.8674868Z CC [M] net/dsa/tag_rtl4_a.mod.o
2025-10-02T16:36:17.8822511Z CC [M] net/dsa/tag_sja1105.mod.o
2025-10-02T16:36:17.8830053Z CC [M] net/dsa/tag_trailer.mod.o
2025-10-02T16:36:17.9435635Z CC [M] net/hsr/hsr.mod.o
2025-10-02T16:36:18.0614077Z CC [M] net/ieee802154/6lowpan/ieee802154_6lowpan.mod.o
2025-10-02T16:36:18.2098582Z CC [M] net/ieee802154/ieee802154.mod.o
2025-10-02T16:36:18.2305142Z CC [M] net/ieee802154/ieee802154_socket.mod.o
2025-10-02T16:36:18.2526945Z CC [M] net/ife/ife.mod.o
2025-10-02T16:36:18.2852518Z CC [M] net/ipv4/ah4.mod.o
2025-10-02T16:36:18.4939068Z CC [M] net/ipv4/esp4.mod.o
2025-10-02T16:36:18.5036688Z CC [M] net/ipv4/esp4_offload.mod.o
2025-10-02T16:36:18.5223707Z CC [M] net/ipv4/fou.mod.o
2025-10-02T16:36:18.5671584Z CC [M] net/ipv4/gre.mod.o
2025-10-02T16:36:18.7638745Z CC [M] net/ipv4/inet_diag.mod.o
2025-10-02T16:36:18.8190246Z CC [M] net/ipv4/ip_gre.mod.o
2025-10-02T16:36:18.8511179Z CC [M] net/ipv4/ip_tunnel.mod.o
2025-10-02T16:36:18.8687827Z CC [M] net/ipv4/ip_vti.mod.o
2025-10-02T16:36:18.8918233Z CC [M] net/ipv4/ipcomp.mod.o
2025-10-02T16:36:19.1390952Z CC [M] net/ipv4/ipip.mod.o
2025-10-02T16:36:19.1443767Z CC [M] net/ipv4/netfilter/arp_tables.mod.o
2025-10-02T16:36:19.2081748Z CC [M] net/ipv4/netfilter/arptable_filter.mod.o
2025-10-02T16:36:19.2104500Z CC [M] net/ipv4/netfilter/arpt_mangle.mod.o
2025-10-02T16:36:19.2506964Z CC [M] net/ipv4/netfilter/ip_tables.mod.o
2025-10-02T16:36:19.4813531Z CC [M] net/ipv4/netfilter/ipt_CLUSTERIP.mod.o
2025-10-02T16:36:19.4935008Z CC [M] net/ipv4/netfilter/ipt_ECN.mod.o
2025-10-02T16:36:19.4995009Z CC [M] net/ipv4/netfilter/ipt_REJECT.mod.o
2025-10-02T16:36:19.5622454Z CC [M] net/ipv4/netfilter/ipt_SYNPROXY.mod.o
2025-10-02T16:36:19.6270653Z CC [M] net/ipv4/netfilter/ipt_ah.mod.o
2025-10-02T16:36:19.8192031Z CC [M] net/ipv4/netfilter/ipt_rpfilter.mod.o
2025-10-02T16:36:19.8320410Z CC [M] net/ipv4/netfilter/iptable_filter.mod.o
2025-10-02T16:36:19.8750778Z CC [M] net/ipv4/netfilter/iptable_mangle.mod.o
2025-10-02T16:36:19.9082626Z CC [M] net/ipv4/netfilter/iptable_nat.mod.o
2025-10-02T16:36:19.9571332Z CC [M] net/ipv4/netfilter/iptable_raw.mod.o
2025-10-02T16:36:20.1626086Z CC [M] net/ipv4/netfilter/iptable_security.mod.o
2025-10-02T16:36:20.1790266Z CC [M] net/ipv4/netfilter/nf_defrag_ipv4.mod.o
2025-10-02T16:36:20.1866209Z CC [M] net/ipv4/netfilter/nf_dup_ipv4.mod.o
2025-10-02T16:36:20.2410087Z CC [M] net/ipv4/netfilter/nf_flow_table_ipv4.mod.o
2025-10-02T16:36:20.3336690Z CC [M] net/ipv4/netfilter/nf_log_arp.mod.o
2025-10-02T16:36:20.4903615Z CC [M] net/ipv4/netfilter/nf_log_ipv4.mod.o
2025-10-02T16:36:20.5232352Z CC [M] net/ipv4/netfilter/nf_nat_h323.mod.o
2025-10-02T16:36:20.5249965Z CC [M] net/ipv4/netfilter/nf_nat_pptp.mod.o
2025-10-02T16:36:20.6177086Z CC [M] net/ipv4/netfilter/nf_nat_snmp_basic.mod.o
2025-10-02T16:36:20.6706265Z CC [M] net/ipv4/netfilter/nf_reject_ipv4.mod.o
2025-10-02T16:36:20.8033877Z CC [M] net/ipv4/netfilter/nf_socket_ipv4.mod.o
2025-10-02T16:36:20.8632215Z CC [M] net/ipv4/netfilter/nf_tproxy_ipv4.mod.o
2025-10-02T16:36:20.9586496Z CC [M] net/ipv4/netfilter/nft_dup_ipv4.mod.o
2025-10-02T16:36:20.9831339Z CC [M] net/ipv4/netfilter/nft_fib_ipv4.mod.o
2025-10-02T16:36:20.9875520Z CC [M] net/ipv4/netfilter/nft_reject_ipv4.mod.o
2025-10-02T16:36:21.1329144Z CC [M] net/ipv4/raw_diag.mod.o
2025-10-02T16:36:21.2534743Z CC [M] net/ipv4/tcp_bbr.mod.o
2025-10-02T16:36:21.2733760Z CC [M] net/ipv4/tcp_bic.mod.o
2025-10-02T16:36:21.2763574Z CC [M] net/ipv4/tcp_cdg.mod.o
2025-10-02T16:36:21.3805655Z CC [M] net/ipv4/tcp_dctcp.mod.o
2025-10-02T16:36:21.5451796Z CC [M] net/ipv4/tcp_diag.mod.o
2025-10-02T16:36:21.5645926Z CC [M] net/ipv4/tcp_highspeed.mod.o
2025-10-02T16:36:21.5916529Z CC [M] net/ipv4/tcp_htcp.mod.o
2025-10-02T16:36:21.6114308Z CC [M] net/ipv4/tcp_hybla.mod.o
2025-10-02T16:36:21.8588538Z CC [M] net/ipv4/tcp_lp.mod.o
2025-10-02T16:36:21.8589699Z CC [M] net/ipv4/tcp_illinois.mod.o
2025-10-02T16:36:21.8837048Z CC [M] net/ipv4/tcp_nv.mod.o
2025-10-02T16:36:21.9258876Z CC [M] net/ipv4/tcp_scalable.mod.o
2025-10-02T16:36:21.9427296Z CC [M] net/ipv4/tcp_vegas.mod.o
2025-10-02T16:36:22.1951520Z CC [M] net/ipv4/tcp_veno.mod.o
2025-10-02T16:36:22.2138529Z CC [M] net/ipv4/tcp_westwood.mod.o
2025-10-02T16:36:22.2426628Z CC [M] net/ipv4/tunnel4.mod.o
2025-10-02T16:36:22.2451042Z CC [M] net/ipv4/tcp_yeah.mod.o
2025-10-02T16:36:22.2815772Z CC [M] net/ipv4/udp_diag.mod.o
2025-10-02T16:36:22.5033164Z CC [M] net/ipv4/udp_tunnel.mod.o
2025-10-02T16:36:22.5565556Z CC [M] net/ipv4/xfrm4_tunnel.mod.o
2025-10-02T16:36:22.6312075Z CC [M] net/ipv6/ah6.mod.o
2025-10-02T16:36:22.6401037Z CC [M] net/ipv6/esp6.mod.o
2025-10-02T16:36:22.6434143Z CC [M] net/ipv6/esp6_offload.mod.o
2025-10-02T16:36:22.8470919Z CC [M] net/ipv6/fou6.mod.o
2025-10-02T16:36:22.9033325Z CC [M] net/ipv6/ila/ila.mod.o
2025-10-02T16:36:22.9224292Z CC [M] net/ipv6/ip6_gre.mod.o
2025-10-02T16:36:22.9251337Z CC [M] net/ipv6/ip6_tunnel.mod.o
2025-10-02T16:36:23.0283077Z CC [M] net/ipv6/ip6_udp_tunnel.mod.o
2025-10-02T16:36:23.1787416Z CC [M] net/ipv6/ip6_vti.mod.o
2025-10-02T16:36:23.2389113Z CC [M] net/ipv6/ipcomp6.mod.o
2025-10-02T16:36:23.2643997Z CC [M] net/ipv6/mip6.mod.o
2025-10-02T16:36:23.3043026Z CC [M] net/ipv6/netfilter/ip6_tables.mod.o
2025-10-02T16:36:23.4221724Z CC [M] net/ipv6/netfilter/ip6t_NPT.mod.o
2025-10-02T16:36:23.5222851Z CC [M] net/ipv6/netfilter/ip6t_REJECT.mod.o
2025-10-02T16:36:23.5232118Z CC [M] net/ipv6/netfilter/ip6t_SYNPROXY.mod.o
2025-10-02T16:36:23.5826413Z CC [M] net/ipv6/netfilter/ip6t_ah.mod.o
2025-10-02T16:36:23.7583077Z CC [M] net/ipv6/netfilter/ip6t_eui64.mod.o
2025-10-02T16:36:23.7918859Z CC [M] net/ipv6/netfilter/ip6t_frag.mod.o
2025-10-02T16:36:23.7943236Z CC [M] net/ipv6/netfilter/ip6t_hbh.mod.o
2025-10-02T16:36:23.7944166Z CC [M] net/ipv6/netfilter/ip6t_ipv6header.mod.o
2025-10-02T16:36:23.9648040Z CC [M] net/ipv6/netfilter/ip6t_mh.mod.o
2025-10-02T16:36:24.0698148Z CC [M] net/ipv6/netfilter/ip6t_rpfilter.mod.o
2025-10-02T16:36:24.1301440Z CC [M] net/ipv6/netfilter/ip6t_rt.mod.o
2025-10-02T16:36:24.1991256Z CC [M] net/ipv6/netfilter/ip6t_srh.mod.o
2025-10-02T16:36:24.2432666Z CC [M] net/ipv6/netfilter/ip6table_filter.mod.o
2025-10-02T16:36:24.2611709Z CC [M] net/ipv6/netfilter/ip6table_mangle.mod.o
2025-10-02T16:36:24.4410763Z CC [M] net/ipv6/netfilter/ip6table_nat.mod.o
2025-10-02T16:36:24.4721992Z CC [M] net/ipv6/netfilter/ip6table_raw.mod.o
2025-10-02T16:36:24.5196695Z CC [M] net/ipv6/netfilter/ip6table_security.mod.o
2025-10-02T16:36:24.5565167Z CC [M] net/ipv6/netfilter/nf_defrag_ipv6.mod.o
2025-10-02T16:36:24.6554166Z CC [M] net/ipv6/netfilter/nf_dup_ipv6.mod.o
2025-10-02T16:36:24.7897013Z CC [M] net/ipv6/netfilter/nf_flow_table_ipv6.mod.o
2025-10-02T16:36:24.8084731Z CC [M] net/ipv6/netfilter/nf_log_ipv6.mod.o
2025-10-02T16:36:24.8181506Z CC [M] net/ipv6/netfilter/nf_reject_ipv6.mod.o
2025-10-02T16:36:24.8699073Z CC [M] net/ipv6/netfilter/nf_socket_ipv6.mod.o
2025-10-02T16:36:25.0810487Z CC [M] net/ipv6/netfilter/nf_tproxy_ipv6.mod.o
2025-10-02T16:36:25.1102044Z CC [M] net/ipv6/netfilter/nft_dup_ipv6.mod.o
2025-10-02T16:36:25.1528177Z CC [M] net/ipv6/netfilter/nft_fib_ipv6.mod.o
2025-10-02T16:36:25.1632121Z CC [M] net/ipv6/netfilter/nft_reject_ipv6.mod.o
2025-10-02T16:36:25.2407078Z CC [M] net/ipv6/sit.mod.o
2025-10-02T16:36:25.4063082Z CC [M] net/ipv6/tunnel6.mod.o
2025-10-02T16:36:25.4288879Z CC [M] net/ipv6/xfrm6_tunnel.mod.o
2025-10-02T16:36:25.5531301Z CC [M] net/kcm/kcm.mod.o
2025-10-02T16:36:25.5714444Z CC [M] net/key/af_key.mod.o
2025-10-02T16:36:25.6056564Z CC [M] net/l2tp/l2tp_core.mod.o
2025-10-02T16:36:25.7137089Z CC [M] net/l2tp/l2tp_debugfs.mod.o
2025-10-02T16:36:25.7465846Z CC [M] net/l2tp/l2tp_eth.mod.o
2025-10-02T16:36:25.8938632Z CC [M] net/l2tp/l2tp_ip.mod.o
2025-10-02T16:36:25.9407890Z CC [M] net/l2tp/l2tp_ip6.mod.o
2025-10-02T16:36:25.9514453Z CC [M] net/l2tp/l2tp_netlink.mod.o
2025-10-02T16:36:26.0498816Z CC [M] net/l2tp/l2tp_ppp.mod.o
2025-10-02T16:36:26.0535225Z CC [M] net/llc/llc.mod.o
2025-10-02T16:36:26.2404856Z CC [M] net/llc/llc2.mod.o
2025-10-02T16:36:26.2617010Z CC [M] net/mac80211/mac80211.mod.o
2025-10-02T16:36:26.3343985Z CC [M] net/mac802154/mac802154.mod.o
2025-10-02T16:36:26.3798705Z CC [M] net/mpls/mpls_gso.mod.o
2025-10-02T16:36:26.5295029Z CC [M] net/mpls/mpls_router.mod.o
2025-10-02T16:36:26.5312083Z CC [M] net/mpls/mpls_iptunnel.mod.o
2025-10-02T16:36:26.6412495Z CC [M] net/mptcp/mptcp_diag.mod.o
2025-10-02T16:36:26.6787508Z CC [M] net/netfilter/ipset/ip_set.mod.o
2025-10-02T16:36:26.7536323Z CC [M] net/netfilter/ipset/ip_set_bitmap_ip.mod.o
2025-10-02T16:36:26.8453772Z CC [M] net/netfilter/ipset/ip_set_bitmap_ipmac.mod.o
2025-10-02T16:36:26.8719101Z CC [M] net/netfilter/ipset/ip_set_bitmap_port.mod.o
2025-10-02T16:36:26.9946382Z CC [M] net/netfilter/ipset/ip_set_hash_ip.mod.o
2025-10-02T16:36:27.0090810Z CC [M] net/netfilter/ipset/ip_set_hash_ipmac.mod.o
2025-10-02T16:36:27.1007734Z CC [M] net/netfilter/ipset/ip_set_hash_ipmark.mod.o
2025-10-02T16:36:27.1681792Z CC [M] net/netfilter/ipset/ip_set_hash_ipport.mod.o
2025-10-02T16:36:27.3197941Z CC [M] net/netfilter/ipset/ip_set_hash_ipportip.mod.o
2025-10-02T16:36:27.3405183Z CC [M] net/netfilter/ipset/ip_set_hash_ipportnet.mod.o
2025-10-02T16:36:27.4140566Z CC [M] net/netfilter/ipset/ip_set_hash_mac.mod.o
2025-10-02T16:36:27.4578143Z CC [M] net/netfilter/ipset/ip_set_hash_net.mod.o
2025-10-02T16:36:27.4857815Z CC [M] net/netfilter/ipset/ip_set_hash_netiface.mod.o
2025-10-02T16:36:27.6858829Z CC [M] net/netfilter/ipset/ip_set_hash_netnet.mod.o
2025-10-02T16:36:27.7045110Z CC [M] net/netfilter/ipset/ip_set_hash_netport.mod.o
2025-10-02T16:36:27.7461779Z CC [M] net/netfilter/ipset/ip_set_list_set.mod.o
2025-10-02T16:36:27.7483024Z CC [M] net/netfilter/ipset/ip_set_hash_netportnet.mod.o
2025-10-02T16:36:27.9466993Z CC [M] net/netfilter/ipvs/ip_vs.mod.o
2025-10-02T16:36:27.9979941Z CC [M] net/netfilter/ipvs/ip_vs_dh.mod.o
2025-10-02T16:36:28.0663285Z CC [M] net/netfilter/ipvs/ip_vs_fo.mod.o
2025-10-02T16:36:28.0708527Z CC [M] net/netfilter/ipvs/ip_vs_ftp.mod.o
2025-10-02T16:36:28.0876173Z CC [M] net/netfilter/ipvs/ip_vs_lblc.mod.o
2025-10-02T16:36:28.3294441Z CC [M] net/netfilter/ipvs/ip_vs_lblcr.mod.o
2025-10-02T16:36:28.3653912Z CC [M] net/netfilter/ipvs/ip_vs_lc.mod.o
2025-10-02T16:36:28.4100852Z CC [M] net/netfilter/ipvs/ip_vs_mh.mod.o
2025-10-02T16:36:28.4212456Z CC [M] net/netfilter/ipvs/ip_vs_nq.mod.o
2025-10-02T16:36:28.4338574Z CC [M] net/netfilter/ipvs/ip_vs_ovf.mod.o
2025-10-02T16:36:28.6991115Z CC [M] net/netfilter/ipvs/ip_vs_pe_sip.mod.o
2025-10-02T16:36:28.7306471Z CC [M] net/netfilter/ipvs/ip_vs_rr.mod.o
2025-10-02T16:36:28.7446086Z CC [M] net/netfilter/ipvs/ip_vs_sed.mod.o
2025-10-02T16:36:28.7571213Z CC [M] net/netfilter/ipvs/ip_vs_sh.mod.o
2025-10-02T16:36:28.8152546Z CC [M] net/netfilter/ipvs/ip_vs_wlc.mod.o
2025-10-02T16:36:29.0351702Z CC [M] net/netfilter/ipvs/ip_vs_wrr.mod.o
2025-10-02T16:36:29.0827768Z CC [M] net/netfilter/nf_conncount.mod.o
2025-10-02T16:36:29.1000108Z CC [M] net/netfilter/nf_conntrack.mod.o
2025-10-02T16:36:29.1154360Z CC [M] net/netfilter/nf_conntrack_amanda.mod.o
2025-10-02T16:36:29.1569402Z CC [M] net/netfilter/nf_conntrack_broadcast.mod.o
2025-10-02T16:36:29.3846963Z CC [M] net/netfilter/nf_conntrack_ftp.mod.o
2025-10-02T16:36:29.4482379Z CC [M] net/netfilter/nf_conntrack_h323.mod.o
2025-10-02T16:36:29.4692643Z CC [M] net/netfilter/nf_conntrack_irc.mod.o
2025-10-02T16:36:29.4859313Z CC [M] net/netfilter/nf_conntrack_netbios_ns.mod.o
2025-10-02T16:36:29.5023762Z CC [M] net/netfilter/nf_conntrack_netlink.mod.o
2025-10-02T16:36:29.7480660Z CC [M] net/netfilter/nf_conntrack_pptp.mod.o
2025-10-02T16:36:29.7672402Z CC [M] net/netfilter/nf_conntrack_sane.mod.o
2025-10-02T16:36:29.7705923Z CC [M] net/netfilter/nf_conntrack_sip.mod.o
2025-10-02T16:36:29.8423164Z CC [M] net/netfilter/nf_conntrack_snmp.mod.o
2025-10-02T16:36:29.9283037Z CC [M] net/netfilter/nf_conntrack_tftp.mod.o
2025-10-02T16:36:30.0577241Z CC [M] net/netfilter/nf_dup_netdev.mod.o
2025-10-02T16:36:30.1187359Z CC [M] net/netfilter/nf_flow_table.mod.o
2025-10-02T16:36:30.1541871Z CC [M] net/netfilter/nf_flow_table_inet.mod.o
2025-10-02T16:36:30.1722083Z CC [M] net/netfilter/nf_log_common.mod.o
2025-10-02T16:36:30.3955232Z CC [M] net/netfilter/nf_log_netdev.mod.o
2025-10-02T16:36:30.4353553Z CC [M] net/netfilter/nf_nat.mod.o
2025-10-02T16:36:30.4442568Z CC [M] net/netfilter/nf_nat_amanda.mod.o
2025-10-02T16:36:30.4602236Z CC [M] net/netfilter/nf_nat_ftp.mod.o
2025-10-02T16:36:30.5211338Z CC [M] net/netfilter/nf_nat_irc.mod.o
2025-10-02T16:36:30.7008282Z CC [M] net/netfilter/nf_nat_sip.mod.o
2025-10-02T16:36:30.7732385Z CC [M] net/netfilter/nf_nat_tftp.mod.o
2025-10-02T16:36:30.7872577Z CC [M] net/netfilter/nf_synproxy_core.mod.o
2025-10-02T16:36:30.8323187Z CC [M] net/netfilter/nf_tables.mod.o
2025-10-02T16:36:30.9163787Z CC [M] net/netfilter/nfnetlink.mod.o
2025-10-02T16:36:31.0798201Z CC [M] net/netfilter/nfnetlink_acct.mod.o
2025-10-02T16:36:31.1225666Z CC [M] net/netfilter/nfnetlink_cttimeout.mod.o
2025-10-02T16:36:31.1228623Z CC [M] net/netfilter/nfnetlink_cthelper.mod.o
2025-10-02T16:36:31.1645671Z CC [M] net/netfilter/nfnetlink_log.mod.o
2025-10-02T16:36:31.3144088Z CC [M] net/netfilter/nfnetlink_osf.mod.o
2025-10-02T16:36:31.4276306Z CC [M] net/netfilter/nfnetlink_queue.mod.o
2025-10-02T16:36:31.4637386Z CC [M] net/netfilter/nft_chain_nat.mod.o
2025-10-02T16:36:31.4911862Z CC [M] net/netfilter/nft_compat.mod.o
2025-10-02T16:36:31.5057482Z CC [M] net/netfilter/nft_connlimit.mod.o
2025-10-02T16:36:31.6559126Z CC [M] net/netfilter/nft_counter.mod.o
2025-10-02T16:36:31.7553202Z CC [M] net/netfilter/nft_ct.mod.o
2025-10-02T16:36:31.8064347Z CC [M] net/netfilter/nft_dup_netdev.mod.o
2025-10-02T16:36:31.8856076Z CC [M] net/netfilter/nft_fib.mod.o
2025-10-02T16:36:31.9236420Z CC [M] net/netfilter/nft_fib_inet.mod.o
2025-10-02T16:36:32.0150664Z CC [M] net/netfilter/nft_fib_netdev.mod.o
2025-10-02T16:36:32.0734453Z CC [M] net/netfilter/nft_flow_offload.mod.o
2025-10-02T16:36:32.2203364Z CC [M] net/netfilter/nft_fwd_netdev.mod.o
2025-10-02T16:36:32.2233555Z CC [M] net/netfilter/nft_hash.mod.o
2025-10-02T16:36:32.2758609Z CC [M] net/netfilter/nft_limit.mod.o
2025-10-02T16:36:32.3714347Z CC [M] net/netfilter/nft_log.mod.o
2025-10-02T16:36:32.4151683Z CC [M] net/netfilter/nft_masq.mod.o
2025-10-02T16:36:32.5545625Z CC [M] net/netfilter/nft_nat.mod.o
2025-10-02T16:36:32.5953372Z CC [M] net/netfilter/nft_numgen.mod.o
2025-10-02T16:36:32.6418783Z CC [M] net/netfilter/nft_objref.mod.o
2025-10-02T16:36:32.7284072Z CC [M] net/netfilter/nft_osf.mod.o
2025-10-02T16:36:32.7581920Z CC [M] net/netfilter/nft_queue.mod.o
2025-10-02T16:36:32.9251930Z CC [M] net/netfilter/nft_quota.mod.o
2025-10-02T16:36:32.9417862Z CC [M] net/netfilter/nft_redir.mod.o
2025-10-02T16:36:32.9973653Z CC [M] net/netfilter/nft_reject.mod.o
2025-10-02T16:36:33.0879931Z CC [M] net/netfilter/nft_reject_inet.mod.o
2025-10-02T16:36:33.1435099Z CC [M] net/netfilter/nft_socket.mod.o
2025-10-02T16:36:33.2251046Z CC [M] net/netfilter/nft_synproxy.mod.o
2025-10-02T16:36:33.3612763Z CC [M] net/netfilter/nft_tproxy.mod.o
2025-10-02T16:36:33.3818530Z CC [M] net/netfilter/nft_tunnel.mod.o
2025-10-02T16:36:33.3828479Z CC [M] net/netfilter/nft_xfrm.mod.o
2025-10-02T16:36:33.5181076Z CC [M] net/netfilter/x_tables.mod.o
2025-10-02T16:36:33.5411203Z CC [M] net/netfilter/xt_AUDIT.mod.o
2025-10-02T16:36:33.7020245Z CC [M] net/netfilter/xt_CHECKSUM.mod.o
2025-10-02T16:36:33.7244940Z CC [M] net/netfilter/xt_CLASSIFY.mod.o
2025-10-02T16:36:33.7352380Z CC [M] net/netfilter/xt_CONNSECMARK.mod.o
2025-10-02T16:36:33.9659657Z CC [M] net/netfilter/xt_CT.mod.o
2025-10-02T16:36:33.9888090Z CC [M] net/netfilter/xt_DSCP.mod.o
2025-10-02T16:36:34.0237441Z CC [M] net/netfilter/xt_HL.mod.o
2025-10-02T16:36:34.0274084Z CC [M] net/netfilter/xt_HMARK.mod.o
2025-10-02T16:36:34.0530692Z CC [M] net/netfilter/xt_IDLETIMER.mod.o
2025-10-02T16:36:34.3434918Z CC [M] net/netfilter/xt_LOG.mod.o
2025-10-02T16:36:34.3457344Z CC [M] net/netfilter/xt_LED.mod.o
2025-10-02T16:36:34.3487832Z CC [M] net/netfilter/xt_MASQUERADE.mod.o
2025-10-02T16:36:34.3533618Z CC [M] net/netfilter/xt_NETMAP.mod.o
2025-10-02T16:36:34.4049293Z CC [M] net/netfilter/xt_NFLOG.mod.o
2025-10-02T16:36:34.6570563Z CC [M] net/netfilter/xt_NFQUEUE.mod.o
2025-10-02T16:36:34.7007370Z CC [M] net/netfilter/xt_RATEEST.mod.o
2025-10-02T16:36:34.7402407Z CC [M] net/netfilter/xt_REDIRECT.mod.o
2025-10-02T16:36:34.7718289Z CC [M] net/netfilter/xt_SECMARK.mod.o
2025-10-02T16:36:34.8071011Z CC [M] net/netfilter/xt_TCPMSS.mod.o
2025-10-02T16:36:35.0104315Z CC [M] net/netfilter/xt_TCPOPTSTRIP.mod.o
2025-10-02T16:36:35.0315847Z CC [M] net/netfilter/xt_TEE.mod.o
2025-10-02T16:36:35.0531276Z CC [M] net/netfilter/xt_TPROXY.mod.o
2025-10-02T16:36:35.1850860Z CC [M] net/netfilter/xt_TRACE.mod.o
2025-10-02T16:36:35.2045329Z CC [M] net/netfilter/xt_addrtype.mod.o
2025-10-02T16:36:35.3088185Z CC [M] net/netfilter/xt_bpf.mod.o
2025-10-02T16:36:35.4104422Z CC [M] net/netfilter/xt_cgroup.mod.o
2025-10-02T16:36:35.4677754Z CC [M] net/netfilter/xt_cluster.mod.o
2025-10-02T16:36:35.5597868Z CC [M] net/netfilter/xt_comment.mod.o
2025-10-02T16:36:35.5802958Z CC [M] net/netfilter/xt_connbytes.mod.o
2025-10-02T16:36:35.6040028Z CC [M] net/netfilter/xt_connlabel.mod.o
2025-10-02T16:36:35.8193465Z CC [M] net/netfilter/xt_connlimit.mod.o
2025-10-02T16:36:35.8651399Z CC [M] net/netfilter/xt_connmark.mod.o
2025-10-02T16:36:35.8962740Z CC [M] net/netfilter/xt_conntrack.mod.o
2025-10-02T16:36:35.9013454Z CC [M] net/netfilter/xt_cpu.mod.o
2025-10-02T16:36:35.9493957Z CC [M] net/netfilter/xt_dccp.mod.o
2025-10-02T16:36:36.1714626Z CC [M] net/netfilter/xt_devgroup.mod.o
2025-10-02T16:36:36.1865390Z CC [M] net/netfilter/xt_dscp.mod.o
2025-10-02T16:36:36.1931115Z CC [M] net/netfilter/xt_ecn.mod.o
2025-10-02T16:36:36.2747908Z CC [M] net/netfilter/xt_esp.mod.o
2025-10-02T16:36:36.4607751Z CC [M] net/netfilter/xt_hashlimit.mod.o
2025-10-02T16:36:36.4777616Z CC [M] net/netfilter/xt_helper.mod.o
2025-10-02T16:36:36.4832973Z CC [M] net/netfilter/xt_hl.mod.o
2025-10-02T16:36:36.6061436Z CC [M] net/netfilter/xt_ipcomp.mod.o
2025-10-02T16:36:36.6559066Z CC [M] net/netfilter/xt_iprange.mod.o
2025-10-02T16:36:36.7641306Z CC [M] net/netfilter/xt_ipvs.mod.o
2025-10-02T16:36:36.8770894Z CC [M] net/netfilter/xt_l2tp.mod.o
2025-10-02T16:36:36.8999952Z CC [M] net/netfilter/xt_length.mod.o
2025-10-02T16:36:36.9128038Z CC [M] net/netfilter/xt_limit.mod.o
2025-10-02T16:36:37.0654375Z CC [M] net/netfilter/xt_mac.mod.o
2025-10-02T16:36:37.0727711Z CC [M] net/netfilter/xt_mark.mod.o
2025-10-02T16:36:37.2021543Z CC [M] net/netfilter/xt_multiport.mod.o
2025-10-02T16:36:37.2028467Z CC [M] net/netfilter/xt_nat.mod.o
2025-10-02T16:36:37.3216516Z CC [M] net/netfilter/xt_nfacct.mod.o
2025-10-02T16:36:37.4120667Z CC [M] net/netfilter/xt_osf.mod.o
2025-10-02T16:36:37.4293240Z CC [M] net/netfilter/xt_owner.mod.o
2025-10-02T16:36:37.5321126Z CC [M] net/netfilter/xt_physdev.mod.o
2025-10-02T16:36:37.6446658Z CC [M] net/netfilter/xt_pkttype.mod.o
2025-10-02T16:36:37.6536215Z CC [M] net/netfilter/xt_policy.mod.o
2025-10-02T16:36:37.7128012Z CC [M] net/netfilter/xt_quota.mod.o
2025-10-02T16:36:37.7873626Z CC [M] net/netfilter/xt_rateest.mod.o
2025-10-02T16:36:37.9082976Z CC [M] net/netfilter/xt_realm.mod.o
2025-10-02T16:36:37.9584134Z CC [M] net/netfilter/xt_recent.mod.o
2025-10-02T16:36:38.0031483Z CC [M] net/netfilter/xt_sctp.mod.o
2025-10-02T16:36:38.1333237Z CC [M] net/netfilter/xt_set.mod.o
2025-10-02T16:36:38.1710589Z CC [M] net/netfilter/xt_socket.mod.o
2025-10-02T16:36:38.2724486Z CC [M] net/netfilter/xt_state.mod.o
2025-10-02T16:36:38.2932974Z CC [M] net/netfilter/xt_statistic.mod.o
2025-10-02T16:36:38.3364705Z CC [M] net/netfilter/xt_string.mod.o
2025-10-02T16:36:38.4976448Z CC [M] net/netfilter/xt_tcpmss.mod.o
2025-10-02T16:36:38.5015210Z CC [M] net/netfilter/xt_tcpudp.mod.o
2025-10-02T16:36:38.5727122Z CC [M] net/netfilter/xt_time.mod.o
2025-10-02T16:36:38.6672214Z CC [M] net/netfilter/xt_u32.mod.o
2025-10-02T16:36:38.7605548Z CC [M] net/netlink/netlink_diag.mod.o
2025-10-02T16:36:38.8657322Z CC [M] net/netrom/netrom.mod.o
2025-10-02T16:36:38.8673569Z CC [M] net/nfc/hci/hci.mod.o
2025-10-02T16:36:38.8770764Z CC [M] net/nfc/nci/nci.mod.o
2025-10-02T16:36:39.0711925Z CC [M] net/nfc/nci/nci_spi.mod.o
2025-10-02T16:36:39.0842582Z CC [M] net/nfc/nci/nci_uart.mod.o
2025-10-02T16:36:39.1805052Z CC [M] net/nfc/nfc.mod.o
2025-10-02T16:36:39.2070802Z CC [M] net/nfc/nfc_digital.mod.o
2025-10-02T16:36:39.3660729Z CC [M] net/nsh/nsh.mod.o
2025-10-02T16:36:39.3661879Z CC [M] net/openvswitch/openvswitch.mod.o
2025-10-02T16:36:39.3790809Z CC [M] net/openvswitch/vport-geneve.mod.o
2025-10-02T16:36:39.4854117Z CC [M] net/openvswitch/vport-gre.mod.o
2025-10-02T16:36:39.5676243Z CC [M] net/openvswitch/vport-vxlan.mod.o
2025-10-02T16:36:39.7362738Z CC [M] net/packet/af_packet_diag.mod.o
2025-10-02T16:36:39.7490192Z CC [M] net/phonet/phonet.mod.o
2025-10-02T16:36:39.7808697Z CC [M] net/phonet/pn_pep.mod.o
2025-10-02T16:36:39.8560140Z CC [M] net/psample/psample.mod.o
2025-10-02T16:36:39.9026317Z CC [M] net/qrtr/qrtr-mhi.mod.o
2025-10-02T16:36:40.0502712Z CC [M] net/qrtr/qrtr-smd.mod.o
2025-10-02T16:36:40.1393941Z CC [M] net/qrtr/qrtr-tun.mod.o
2025-10-02T16:36:40.1561982Z CC [M] net/qrtr/qrtr.mod.o
2025-10-02T16:36:40.1935787Z CC [M] net/rds/rds.mod.o
2025-10-02T16:36:40.2734995Z CC [M] net/rds/rds_rdma.mod.o
2025-10-02T16:36:40.3934621Z CC [M] net/rds/rds_tcp.mod.o
2025-10-02T16:36:40.4923677Z CC [M] net/rfkill/rfkill-gpio.mod.o
2025-10-02T16:36:40.5060662Z CC [M] net/rfkill/rfkill.mod.o
2025-10-02T16:36:40.5596994Z CC [M] net/rose/rose.mod.o
2025-10-02T16:36:40.6335247Z CC [M] net/rxrpc/rxrpc.mod.o
2025-10-02T16:36:40.7416766Z CC [M] net/sched/act_bpf.mod.o
2025-10-02T16:36:40.8068789Z CC [M] net/sched/act_connmark.mod.o
2025-10-02T16:36:40.8909969Z CC [M] net/sched/act_csum.mod.o
2025-10-02T16:36:40.9196702Z CC [M] net/sched/act_ct.mod.o
2025-10-02T16:36:41.0088555Z CC [M] net/sched/act_ctinfo.mod.o
2025-10-02T16:36:41.0831680Z CC [M] net/sched/act_gact.mod.o
2025-10-02T16:36:41.1720995Z CC [M] net/sched/act_gate.mod.o
2025-10-02T16:36:41.2354288Z CC [M] net/sched/act_ife.mod.o
2025-10-02T16:36:41.2637943Z CC [M] net/sched/act_ipt.mod.o
2025-10-02T16:36:41.3624427Z CC [M] net/sched/act_meta_mark.mod.o
2025-10-02T16:36:41.4799254Z CC [M] net/sched/act_meta_skbprio.mod.o
2025-10-02T16:36:41.5112733Z CC [M] net/sched/act_meta_skbtcindex.mod.o
2025-10-02T16:36:41.6232139Z CC [M] net/sched/act_mirred.mod.o
2025-10-02T16:36:41.6258196Z CC [M] net/sched/act_mpls.mod.o
2025-10-02T16:36:41.7066539Z CC [M] net/sched/act_nat.mod.o
2025-10-02T16:36:41.8072014Z CC [M] net/sched/act_pedit.mod.o
2025-10-02T16:36:41.8567811Z CC [M] net/sched/act_police.mod.o
2025-10-02T16:36:41.9542368Z CC [M] net/sched/act_sample.mod.o
2025-10-02T16:36:41.9940840Z CC [M] net/sched/act_simple.mod.o
2025-10-02T16:36:42.0545402Z CC [M] net/sched/act_skbedit.mod.o
2025-10-02T16:36:42.2123743Z CC [M] net/sched/act_skbmod.mod.o
2025-10-02T16:36:42.2215370Z CC [M] net/sched/act_tunnel_key.mod.o
2025-10-02T16:36:42.2971572Z CC [M] net/sched/act_vlan.mod.o
2025-10-02T16:36:42.3417994Z CC [M] net/sched/cls_basic.mod.o
2025-10-02T16:36:42.4269343Z CC [M] net/sched/cls_bpf.mod.o
2025-10-02T16:36:42.5438437Z CC [M] net/sched/cls_cgroup.mod.o
2025-10-02T16:36:42.5937072Z CC [M] net/sched/cls_flow.mod.o
2025-10-02T16:36:42.6112645Z CC [M] net/sched/cls_flower.mod.o
2025-10-02T16:36:42.6900647Z CC [M] net/sched/cls_fw.mod.o
2025-10-02T16:36:42.8361855Z CC [M] net/sched/cls_matchall.mod.o
2025-10-02T16:36:42.8717986Z CC [M] net/sched/cls_route.mod.o
2025-10-02T16:36:42.9383288Z CC [M] net/sched/cls_u32.mod.o
2025-10-02T16:36:43.0223287Z CC [M] net/sched/em_canid.mod.o
2025-10-02T16:36:43.0358217Z CC [M] net/sched/em_cmp.mod.o
2025-10-02T16:36:43.1590837Z CC [M] net/sched/em_ipset.mod.o
2025-10-02T16:36:43.2854867Z CC [M] net/sched/em_ipt.mod.o
2025-10-02T16:36:43.2970998Z CC [M] net/sched/em_meta.mod.o
2025-10-02T16:36:43.3242299Z CC [M] net/sched/em_nbyte.mod.o
2025-10-02T16:36:43.3987511Z CC [M] net/sched/em_text.mod.o
2025-10-02T16:36:43.5318215Z CC [M] net/sched/em_u32.mod.o
2025-10-02T16:36:43.6332067Z CC [M] net/sched/sch_cake.mod.o
2025-10-02T16:36:43.6412935Z CC [M] net/sched/sch_cbs.mod.o
2025-10-02T16:36:43.6758433Z CC [M] net/sched/sch_choke.mod.o
2025-10-02T16:36:43.8276074Z CC [M] net/sched/sch_codel.mod.o
2025-10-02T16:36:43.8458609Z CC [M] net/sched/sch_drr.mod.o
2025-10-02T16:36:43.9259356Z CC [M] net/sched/sch_etf.mod.o
2025-10-02T16:36:44.0532808Z CC [M] net/sched/sch_ets.mod.o
2025-10-02T16:36:44.0845260Z CC [M] net/sched/sch_fq.mod.o
2025-10-02T16:36:44.1481426Z CC [M] net/sched/sch_fq_pie.mod.o
2025-10-02T16:36:44.2454462Z CC [M] net/sched/sch_gred.mod.o
2025-10-02T16:36:44.2618224Z CC [M] net/sched/sch_hfsc.mod.o
2025-10-02T16:36:44.3670122Z CC [M] net/sched/sch_hhf.mod.o
2025-10-02T16:36:44.3941663Z CC [M] net/sched/sch_htb.mod.o
2025-10-02T16:36:44.5178585Z CC [M] net/sched/sch_ingress.mod.o
2025-10-02T16:36:44.6149357Z CC [M] net/sched/sch_mqprio.mod.o
2025-10-02T16:36:44.6409849Z CC [M] net/sched/sch_multiq.mod.o
2025-10-02T16:36:44.6901137Z CC [M] net/sched/sch_netem.mod.o
2025-10-02T16:36:44.8003815Z CC [M] net/sched/sch_pie.mod.o
2025-10-02T16:36:44.8824359Z CC [M] net/sched/sch_plug.mod.o
2025-10-02T16:36:44.9644800Z CC [M] net/sched/sch_qfq.mod.o
2025-10-02T16:36:44.9661152Z CC [M] net/sched/sch_prio.mod.o
2025-10-02T16:36:45.0756428Z CC [M] net/sched/sch_red.mod.o
2025-10-02T16:36:45.1867155Z CC [M] net/sched/sch_sfb.mod.o
2025-10-02T16:36:45.2333439Z CC [M] net/sched/sch_sfq.mod.o
2025-10-02T16:36:45.3101825Z CC [M] net/sched/sch_skbprio.mod.o
2025-10-02T16:36:45.3710536Z CC [M] net/sched/sch_taprio.mod.o
2025-10-02T16:36:45.3768634Z CC [M] net/sched/sch_tbf.mod.o
2025-10-02T16:36:45.6026540Z CC [M] net/sched/sch_teql.mod.o
2025-10-02T16:36:45.6291464Z CC [M] net/sctp/sctp.mod.o
2025-10-02T16:36:45.6709699Z CC [M] net/sctp/sctp_diag.mod.o
2025-10-02T16:36:45.6754248Z CC [M] net/smc/smc.mod.o
2025-10-02T16:36:45.7121857Z CC [M] net/smc/smc_diag.mod.o
2025-10-02T16:36:45.9298459Z CC [M] net/sunrpc/auth_gss/auth_rpcgss.mod.o
2025-10-02T16:36:45.9513050Z CC [M] net/sunrpc/auth_gss/rpcsec_gss_krb5.mod.o
2025-10-02T16:36:45.9763563Z CC [M] net/sunrpc/sunrpc.mod.o
2025-10-02T16:36:46.0714014Z CC [M] net/sunrpc/xprtrdma/rpcrdma.mod.o
2025-10-02T16:36:46.1604247Z CC [M] net/tipc/diag.mod.o
2025-10-02T16:36:46.2368786Z CC [M] net/tipc/tipc.mod.o
2025-10-02T16:36:46.3360114Z CC [M] net/tls/tls.mod.o
2025-10-02T16:36:46.3492893Z CC [M] net/unix/unix_diag.mod.o
2025-10-02T16:36:46.4805109Z CC [M] net/vmw_vsock/hv_sock.mod.o
2025-10-02T16:36:46.5228830Z CC [M] net/vmw_vsock/vmw_vsock_virtio_transport.mod.o
2025-10-02T16:36:46.5511564Z CC [M] net/vmw_vsock/vmw_vsock_virtio_transport_common.mod.o
2025-10-02T16:36:46.6954407Z CC [M] net/vmw_vsock/vmw_vsock_vmci_transport.mod.o
2025-10-02T16:36:46.7161129Z CC [M] net/vmw_vsock/vsock.mod.o
2025-10-02T16:36:46.8083930Z CC [M] net/vmw_vsock/vsock_diag.mod.o
2025-10-02T16:36:46.8644084Z CC [M] net/vmw_vsock/vsock_loopback.mod.o
2025-10-02T16:36:46.9698407Z CC [M] net/wimax/wimax.mod.o
2025-10-02T16:36:47.0185810Z CC [M] net/wireless/cfg80211.mod.o
2025-10-02T16:36:47.0451677Z CC [M] net/wireless/lib80211.mod.o
2025-10-02T16:36:47.1543362Z CC [M] net/wireless/lib80211_crypt_ccmp.mod.o
2025-10-02T16:36:47.1830341Z CC [M] net/wireless/lib80211_crypt_tkip.mod.o
2025-10-02T16:36:47.3737293Z CC [M] net/wireless/lib80211_crypt_wep.mod.o
2025-10-02T16:36:47.3823364Z CC [M] net/xdp/xsk_diag.mod.o
2025-10-02T16:36:47.4350245Z CC [M] net/xfrm/xfrm_interface.mod.o
2025-10-02T16:36:47.4502868Z CC [M] net/xfrm/xfrm_ipcomp.mod.o
2025-10-02T16:36:47.5614122Z CC [M] security/keys/encrypted-keys/encrypted-keys.mod.o
2025-10-02T16:36:47.7206600Z CC [M] security/keys/trusted-keys/trusted.mod.o
2025-10-02T16:36:47.7681203Z CC [M] sound/ac97_bus.mod.o
2025-10-02T16:36:47.7711644Z CC [M] sound/core/oss/snd-mixer-oss.mod.o
2025-10-02T16:36:47.7885784Z CC [M] sound/core/oss/snd-pcm-oss.mod.o
2025-10-02T16:36:47.9563154Z CC [M] sound/core/seq/oss/snd-seq-oss.mod.o
2025-10-02T16:36:48.0736834Z CC [M] sound/core/seq/snd-seq-dummy.mod.o
2025-10-02T16:36:48.0836812Z CC [M] sound/core/seq/snd-seq-midi-emul.mod.o
2025-10-02T16:36:48.1260721Z CC [M] sound/core/seq/snd-seq-midi-event.mod.o
2025-10-02T16:36:48.1663322Z CC [M] sound/core/seq/snd-seq-midi.mod.o
2025-10-02T16:36:48.2933649Z CC [M] sound/core/seq/snd-seq-virmidi.mod.o
2025-10-02T16:36:48.4217969Z CC [M] sound/core/seq/snd-seq.mod.o
2025-10-02T16:36:48.4418633Z CC [M] sound/core/snd-compress.mod.o
2025-10-02T16:36:48.5042961Z CC [M] sound/core/snd-hwdep.mod.o
2025-10-02T16:36:48.5058327Z CC [M] sound/core/snd-hrtimer.mod.o
2025-10-02T16:36:48.6645781Z CC [M] sound/core/snd-pcm-dmaengine.mod.o
2025-10-02T16:36:48.7964347Z CC [M] sound/core/snd-pcm.mod.o
2025-10-02T16:36:48.8086204Z CC [M] sound/core/snd-rawmidi.mod.o
2025-10-02T16:36:48.8167314Z CC [M] sound/core/snd-seq-device.mod.o
2025-10-02T16:36:48.8594231Z CC [M] sound/core/snd-timer.mod.o
2025-10-02T16:36:49.0608495Z CC [M] sound/core/snd.mod.o
2025-10-02T16:36:49.1104183Z CC [M] sound/drivers/mpu401/snd-mpu401-uart.mod.o
2025-10-02T16:36:49.1420433Z CC [M] sound/drivers/mpu401/snd-mpu401.mod.o
2025-10-02T16:36:49.1552586Z CC [M] sound/drivers/opl3/snd-opl3-lib.mod.o
2025-10-02T16:36:49.2353729Z CC [M] sound/drivers/opl3/snd-opl3-synth.mod.o
2025-10-02T16:36:49.4320297Z CC [M] sound/drivers/snd-aloop.mod.o
2025-10-02T16:36:49.5030246Z CC [M] sound/drivers/snd-dummy.mod.o
2025-10-02T16:36:49.5215991Z CC [M] sound/drivers/snd-mtpav.mod.o
2025-10-02T16:36:49.5223453Z CC [M] sound/drivers/snd-mts64.mod.o
2025-10-02T16:36:49.5375714Z CC [M] sound/drivers/snd-portman2x4.mod.o
2025-10-02T16:36:49.8032389Z CC [M] sound/drivers/snd-serial-u16550.mod.o
2025-10-02T16:36:49.8242318Z CC [M] sound/drivers/snd-virmidi.mod.o
2025-10-02T16:36:49.8475373Z CC [M] sound/drivers/vx/snd-vx-lib.mod.o
2025-10-02T16:36:49.8876544Z CC [M] sound/firewire/bebob/snd-bebob.mod.o
2025-10-02T16:36:49.9251292Z CC [M] sound/firewire/dice/snd-dice.mod.o
2025-10-02T16:36:50.1288860Z CC [M] sound/firewire/digi00x/snd-firewire-digi00x.mod.o
2025-10-02T16:36:50.1852670Z CC [M] sound/firewire/fireface/snd-fireface.mod.o
2025-10-02T16:36:50.2138833Z CC [M] sound/firewire/fireworks/snd-fireworks.mod.o
2025-10-02T16:36:50.2484736Z CC [M] sound/firewire/motu/snd-firewire-motu.mod.o
2025-10-02T16:36:50.2757857Z CC [M] sound/firewire/oxfw/snd-oxfw.mod.o
2025-10-02T16:36:50.4755137Z CC [M] sound/firewire/snd-firewire-lib.mod.o
2025-10-02T16:36:50.5001483Z CC [M] sound/firewire/snd-isight.mod.o
2025-10-02T16:36:50.5549796Z CC [M] sound/firewire/tascam/snd-firewire-tascam.mod.o
2025-10-02T16:36:50.5811749Z CC [M] sound/hda/ext/snd-hda-ext-core.mod.o
2025-10-02T16:36:50.7123964Z CC [M] sound/hda/snd-hda-core.mod.o
2025-10-02T16:36:50.8236821Z CC [M] sound/hda/snd-intel-dspcfg.mod.o
2025-10-02T16:36:50.8671914Z CC [M] sound/i2c/other/snd-ak4113.mod.o
2025-10-02T16:36:50.8778511Z CC [M] sound/i2c/other/snd-ak4114.mod.o
2025-10-02T16:36:50.9752506Z CC [M] sound/i2c/other/snd-ak4117.mod.o
2025-10-02T16:36:51.1107632Z CC [M] sound/i2c/other/snd-ak4xxx-adda.mod.o
2025-10-02T16:36:51.1510244Z CC [M] sound/i2c/other/snd-pt2258.mod.o
2025-10-02T16:36:51.1722032Z CC [M] sound/i2c/snd-cs8427.mod.o
2025-10-02T16:36:51.2521193Z CC [M] sound/i2c/snd-i2c.mod.o
2025-10-02T16:36:51.3707299Z CC [M] sound/isa/sb/snd-sb-common.mod.o
2025-10-02T16:36:51.4817088Z CC [M] sound/pci/ac97/snd-ac97-codec.mod.o
2025-10-02T16:36:51.4930629Z CC [M] sound/pci/ali5451/snd-ali5451.mod.o
2025-10-02T16:36:51.5534645Z CC [M] sound/pci/asihpi/snd-asihpi.mod.o
2025-10-02T16:36:51.5696691Z CC [M] sound/pci/au88x0/snd-au8810.mod.o
2025-10-02T16:36:51.7041684Z CC [M] sound/pci/au88x0/snd-au8820.mod.o
2025-10-02T16:36:51.8551169Z CC [M] sound/pci/aw2/snd-aw2.mod.o
2025-10-02T16:36:51.8553075Z CC [M] sound/pci/au88x0/snd-au8830.mod.o
2025-10-02T16:36:51.8912062Z CC [M] sound/pci/ca0106/snd-ca0106.mod.o
2025-10-02T16:36:51.9982551Z CC [M] sound/pci/cs46xx/snd-cs46xx.mod.o
2025-10-02T16:36:52.0013302Z CC [M] sound/pci/ctxfi/snd-ctxfi.mod.o
2025-10-02T16:36:52.1673598Z CC [M] sound/pci/echoaudio/snd-darla20.mod.o
2025-10-02T16:36:52.2128912Z CC [M] sound/pci/echoaudio/snd-darla24.mod.o
2025-10-02T16:36:52.2232391Z CC [M] sound/pci/echoaudio/snd-echo3g.mod.o
2025-10-02T16:36:52.3702555Z CC [M] sound/pci/echoaudio/snd-gina20.mod.o
2025-10-02T16:36:52.3844247Z CC [M] sound/pci/echoaudio/snd-gina24.mod.o
2025-10-02T16:36:52.4665770Z CC [M] sound/pci/echoaudio/snd-indigo.mod.o
2025-10-02T16:36:52.6083748Z CC [M] sound/pci/echoaudio/snd-indigodj.mod.o
2025-10-02T16:36:52.6813956Z CC [M] sound/pci/echoaudio/snd-indigodjx.mod.o
2025-10-02T16:36:52.7151580Z CC [M] sound/pci/echoaudio/snd-indigoio.mod.o
2025-10-02T16:36:52.7713464Z CC [M] sound/pci/echoaudio/snd-indigoiox.mod.o
2025-10-02T16:36:52.7817177Z CC [M] sound/pci/echoaudio/snd-layla20.mod.o
2025-10-02T16:36:52.9283291Z CC [M] sound/pci/echoaudio/snd-layla24.mod.o
2025-10-02T16:36:53.0852231Z CC [M] sound/pci/echoaudio/snd-mia.mod.o
2025-10-02T16:36:53.1029771Z CC [M] sound/pci/echoaudio/snd-mona.mod.o
2025-10-02T16:36:53.1208122Z CC [M] sound/pci/emu10k1/snd-emu10k1-synth.mod.o
2025-10-02T16:36:53.1572320Z CC [M] sound/pci/emu10k1/snd-emu10k1.mod.o
2025-10-02T16:36:53.2153266Z CC [M] sound/pci/emu10k1/snd-emu10k1x.mod.o
2025-10-02T16:36:53.3765462Z CC [M] sound/pci/hda/snd-hda-codec-analog.mod.o
2025-10-02T16:36:53.4985382Z CC [M] sound/pci/hda/snd-hda-codec-ca0132.mod.o
2025-10-02T16:36:53.5010309Z CC [M] sound/pci/hda/snd-hda-codec-ca0110.mod.o
2025-10-02T16:36:53.5218333Z CC [M] sound/pci/hda/snd-hda-codec-cirrus.mod.o
2025-10-02T16:36:53.6016441Z CC [M] sound/pci/hda/snd-hda-codec-cmedia.mod.o
2025-10-02T16:36:53.7954178Z CC [M] sound/pci/hda/snd-hda-codec-conexant.mod.o
2025-10-02T16:36:53.8049124Z CC [M] sound/pci/hda/snd-hda-codec-generic.mod.o
2025-10-02T16:36:53.8717740Z CC [M] sound/pci/hda/snd-hda-codec-hdmi.mod.o
2025-10-02T16:36:53.8755751Z CC [M] sound/pci/hda/snd-hda-codec-idt.mod.o
2025-10-02T16:36:53.9113690Z CC [M] sound/pci/hda/snd-hda-codec-realtek.mod.o
2025-10-02T16:36:54.0840587Z CC [M] sound/pci/hda/snd-hda-codec-si3054.mod.o
2025-10-02T16:36:54.2425385Z CC [M] sound/pci/hda/snd-hda-codec-via.mod.o
2025-10-02T16:36:54.2521412Z CC [M] sound/pci/hda/snd-hda-codec.mod.o
2025-10-02T16:36:54.2654547Z CC [M] sound/pci/hda/snd-hda-intel.mod.o
2025-10-02T16:36:54.2660990Z CC [M] sound/pci/ice1712/snd-ice1712.mod.o
2025-10-02T16:36:54.4357694Z CC [M] sound/pci/ice1712/snd-ice1724.mod.o
2025-10-02T16:36:54.5586172Z CC [M] sound/pci/ice1712/snd-ice17xx-ak4xxx.mod.o
2025-10-02T16:36:54.5782328Z CC [M] sound/pci/korg1212/snd-korg1212.mod.o
2025-10-02T16:36:54.5936768Z CC [M] sound/pci/lola/snd-lola.mod.o
2025-10-02T16:36:54.6503794Z CC [M] sound/pci/lx6464es/snd-lx6464es.mod.o
2025-10-02T16:36:54.8613440Z CC [M] sound/pci/mixart/snd-mixart.mod.o
2025-10-02T16:36:54.8807422Z CC [M] sound/pci/nm256/snd-nm256.mod.o
2025-10-02T16:36:54.9061586Z CC [M] sound/pci/oxygen/snd-oxygen-lib.mod.o
2025-10-02T16:36:54.9523609Z CC [M] sound/pci/oxygen/snd-oxygen.mod.o
2025-10-02T16:36:55.1383547Z CC [M] sound/pci/oxygen/snd-virtuoso.mod.o
2025-10-02T16:36:55.1713854Z CC [M] sound/pci/pcxhr/snd-pcxhr.mod.o
2025-10-02T16:36:55.2003284Z CC [M] sound/pci/riptide/snd-riptide.mod.o
2025-10-02T16:36:55.2177968Z CC [M] sound/pci/rme9652/snd-hdsp.mod.o
2025-10-02T16:36:55.3964498Z CC [M] sound/pci/rme9652/snd-hdspm.mod.o
2025-10-02T16:36:55.4794976Z CC [M] sound/pci/rme9652/snd-rme9652.mod.o
2025-10-02T16:36:55.5334758Z CC [M] sound/pci/snd-ad1889.mod.o
2025-10-02T16:36:55.5495755Z CC [M] sound/pci/snd-als300.mod.o
2025-10-02T16:36:55.5854839Z CC [M] sound/pci/snd-als4000.mod.o
2025-10-02T16:36:55.8374089Z CC [M] sound/pci/snd-atiixp-modem.mod.o
2025-10-02T16:36:55.8385939Z CC [M] sound/pci/snd-atiixp.mod.o
2025-10-02T16:36:55.8670259Z CC [M] sound/pci/snd-azt3328.mod.o
2025-10-02T16:36:55.8772156Z CC [M] sound/pci/snd-cmipci.mod.o
2025-10-02T16:36:55.8790674Z CC [M] sound/pci/snd-bt87x.mod.o
2025-10-02T16:36:56.1785638Z CC [M] sound/pci/snd-cs4281.mod.o
2025-10-02T16:36:56.1933727Z CC [M] sound/pci/snd-ens1370.mod.o
2025-10-02T16:36:56.2225628Z CC [M] sound/pci/snd-ens1371.mod.o
2025-10-02T16:36:56.2378717Z CC [M] sound/pci/snd-es1938.mod.o
2025-10-02T16:36:56.2538436Z CC [M] sound/pci/snd-es1968.mod.o
2025-10-02T16:36:56.4692098Z CC [M] sound/pci/snd-fm801.mod.o
2025-10-02T16:36:56.5701478Z CC [M] sound/pci/snd-intel8x0.mod.o
2025-10-02T16:36:56.5735947Z CC [M] sound/pci/snd-intel8x0m.mod.o
2025-10-02T16:36:56.6385534Z CC [M] sound/pci/snd-maestro3.mod.o
2025-10-02T16:36:56.7218094Z CC [M] sound/pci/snd-rme32.mod.o
2025-10-02T16:36:56.7903607Z CC [M] sound/pci/snd-rme96.mod.o
2025-10-02T16:36:56.8616126Z CC [M] sound/pci/snd-sonicvibes.mod.o
2025-10-02T16:36:56.9591129Z CC [M] sound/pci/snd-via82xx-modem.mod.o
2025-10-02T16:36:57.0143895Z CC [M] sound/pci/snd-via82xx.mod.o
2025-10-02T16:36:57.0797557Z CC [M] sound/pci/trident/snd-trident.mod.o
2025-10-02T16:36:57.1636147Z CC [M] sound/pci/vx222/snd-vx222.mod.o
2025-10-02T16:36:57.1747707Z CC [M] sound/pci/ymfpci/snd-ymfpci.mod.o
2025-10-02T16:36:57.2957322Z CC [M] sound/pcmcia/pdaudiocf/snd-pdaudiocf.mod.o
2025-10-02T16:36:57.4111393Z CC [M] sound/pcmcia/vx/snd-vxpocket.mod.o
2025-10-02T16:36:57.4497632Z CC [M] sound/soc/amd/acp_audio_dma.mod.o
2025-10-02T16:36:57.4822860Z CC [M] sound/soc/amd/raven/snd-acp3x-i2s.mod.o
2025-10-02T16:36:57.5745274Z CC [M] sound/soc/amd/raven/snd-acp3x-pcm-dma.mod.o
2025-10-02T16:36:57.6548475Z CC [M] sound/soc/amd/raven/snd-pci-acp3x.mod.o
2025-10-02T16:36:57.7424530Z CC [M] sound/soc/amd/renoir/snd-acp3x-pdm-dma.mod.o
2025-10-02T16:36:57.8579751Z CC [M] sound/soc/amd/renoir/snd-acp3x-rn.mod.o
2025-10-02T16:36:57.8865763Z CC [M] sound/soc/amd/renoir/snd-rn-pci-acp3x.mod.o
2025-10-02T16:36:57.9288029Z CC [M] sound/soc/amd/snd-soc-acp-da7219mx98357-mach.mod.o
2025-10-02T16:36:58.0000503Z CC [M] sound/soc/amd/snd-soc-acp-rt5645-mach.mod.o
2025-10-02T16:36:58.0601124Z CC [M] sound/soc/amd/snd-soc-acp-rt5682-mach.mod.o
2025-10-02T16:36:58.1697421Z CC [M] sound/soc/codecs/sirf-audio-codec.mod.o
2025-10-02T16:36:58.2467495Z CC [M] sound/soc/codecs/snd-soc-ac97.mod.o
2025-10-02T16:36:58.3426136Z CC [M] sound/soc/codecs/snd-soc-adau-utils.mod.o
2025-10-02T16:36:58.3502298Z CC [M] sound/soc/codecs/snd-soc-adau1701.mod.o
2025-10-02T16:36:58.4190601Z CC [M] sound/soc/codecs/snd-soc-adau1761-i2c.mod.o
2025-10-02T16:36:58.5351712Z CC [M] sound/soc/codecs/snd-soc-adau1761-spi.mod.o
2025-10-02T16:36:58.6254126Z CC [M] sound/soc/codecs/snd-soc-adau1761.mod.o
2025-10-02T16:36:58.6644519Z CC [M] sound/soc/codecs/snd-soc-adau17x1.mod.o
2025-10-02T16:36:58.6875223Z CC [M] sound/soc/codecs/snd-soc-adau7002.mod.o
2025-10-02T16:36:58.8631842Z CC [M] sound/soc/codecs/snd-soc-adau7118-hw.mod.o
2025-10-02T16:36:58.8890346Z CC [M] sound/soc/codecs/snd-soc-adau7118-i2c.mod.o
2025-10-02T16:36:58.9632451Z CC [M] sound/soc/codecs/snd-soc-adau7118.mod.o
2025-10-02T16:36:58.9761664Z CC [M] sound/soc/codecs/snd-soc-ak4104.mod.o
2025-10-02T16:36:59.0490357Z CC [M] sound/soc/codecs/snd-soc-ak4118.mod.o
2025-10-02T16:36:59.2212856Z CC [M] sound/soc/codecs/snd-soc-ak4458.mod.o
2025-10-02T16:36:59.2478940Z CC [M] sound/soc/codecs/snd-soc-ak4554.mod.o
2025-10-02T16:36:59.2593043Z CC [M] sound/soc/codecs/snd-soc-ak4613.mod.o
2025-10-02T16:36:59.3243472Z CC [M] sound/soc/codecs/snd-soc-ak4642.mod.o
2025-10-02T16:36:59.4974889Z CC [M] sound/soc/codecs/snd-soc-ak5386.mod.o
2025-10-02T16:36:59.5583630Z CC [M] sound/soc/codecs/snd-soc-ak5558.mod.o
2025-10-02T16:36:59.5920934Z CC [M] sound/soc/codecs/snd-soc-alc5623.mod.o
2025-10-02T16:36:59.6193368Z CC [M] sound/soc/codecs/snd-soc-bd28623.mod.o
2025-10-02T16:36:59.7194061Z CC [M] sound/soc/codecs/snd-soc-cros-ec-codec.mod.o
2025-10-02T16:36:59.8110558Z CC [M] sound/soc/codecs/snd-soc-cs35l32.mod.o
2025-10-02T16:36:59.8838480Z CC [M] sound/soc/codecs/snd-soc-cs35l33.mod.o
2025-10-02T16:36:59.9735602Z CC [M] sound/soc/codecs/snd-soc-cs35l34.mod.o
2025-10-02T16:36:59.9921479Z CC [M] sound/soc/codecs/snd-soc-cs35l35.mod.o
2025-10-02T16:37:00.0822653Z CC [M] sound/soc/codecs/snd-soc-cs35l36.mod.o
2025-10-02T16:37:00.1854523Z CC [M] sound/soc/codecs/snd-soc-cs4234.mod.o
2025-10-02T16:37:00.2582306Z CC [M] sound/soc/codecs/snd-soc-cs4265.mod.o
2025-10-02T16:37:00.2723343Z CC [M] sound/soc/codecs/snd-soc-cs4270.mod.o
2025-10-02T16:37:00.3320268Z CC [M] sound/soc/codecs/snd-soc-cs4271-i2c.mod.o
2025-10-02T16:37:00.4748797Z CC [M] sound/soc/codecs/snd-soc-cs4271-spi.mod.o
2025-10-02T16:37:00.5284234Z CC [M] sound/soc/codecs/snd-soc-cs4271.mod.o
2025-10-02T16:37:00.6354713Z CC [M] sound/soc/codecs/snd-soc-cs42l42.mod.o
2025-10-02T16:37:00.6387348Z CC [M] sound/soc/codecs/snd-soc-cs42l51-i2c.mod.o
2025-10-02T16:37:00.6575276Z CC [M] sound/soc/codecs/snd-soc-cs42l51.mod.o
2025-10-02T16:37:00.8351249Z CC [M] sound/soc/codecs/snd-soc-cs42l52.mod.o
2025-10-02T16:37:00.9243156Z CC [M] sound/soc/codecs/snd-soc-cs42l56.mod.o
2025-10-02T16:37:00.9466042Z CC [M] sound/soc/codecs/snd-soc-cs42l73.mod.o
2025-10-02T16:37:00.9638096Z CC [M] sound/soc/codecs/snd-soc-cs42xx8-i2c.mod.o
2025-10-02T16:37:01.0445427Z CC [M] sound/soc/codecs/snd-soc-cs42xx8.mod.o
2025-10-02T16:37:01.1874738Z CC [M] sound/soc/codecs/snd-soc-cs43130.mod.o
2025-10-02T16:37:01.2779258Z CC [M] sound/soc/codecs/snd-soc-cs4341.mod.o
2025-10-02T16:37:01.2943676Z CC [M] sound/soc/codecs/snd-soc-cs4349.mod.o
2025-10-02T16:37:01.3413798Z CC [M] sound/soc/codecs/snd-soc-cs53l30.mod.o
2025-10-02T16:37:01.4199962Z CC [M] sound/soc/codecs/snd-soc-cx2072x.mod.o
2025-10-02T16:37:01.5581361Z CC [M] sound/soc/codecs/snd-soc-da7213.mod.o
2025-10-02T16:37:01.6114477Z CC [M] sound/soc/codecs/snd-soc-da7219.mod.o
2025-10-02T16:37:01.6521009Z CC [M] sound/soc/codecs/snd-soc-dmic.mod.o
2025-10-02T16:37:01.7158570Z CC [M] sound/soc/codecs/snd-soc-es7134.mod.o
2025-10-02T16:37:01.7835155Z CC [M] sound/soc/codecs/snd-soc-es7241.mod.o
2025-10-02T16:37:01.9348170Z CC [M] sound/soc/codecs/snd-soc-es8316.mod.o
2025-10-02T16:37:01.9526090Z CC [M] sound/soc/codecs/snd-soc-es8328-i2c.mod.o
2025-10-02T16:37:01.9997012Z CC [M] sound/soc/codecs/snd-soc-es8328-spi.mod.o
2025-10-02T16:37:02.0445298Z CC [M] sound/soc/codecs/snd-soc-es8328.mod.o
2025-10-02T16:37:02.1620903Z CC [M] sound/soc/codecs/snd-soc-gtm601.mod.o
2025-10-02T16:37:02.2180936Z CC [M] sound/soc/codecs/snd-soc-hdac-hda.mod.o
2025-10-02T16:37:02.3552178Z CC [M] sound/soc/codecs/snd-soc-hdac-hdmi.mod.o
2025-10-02T16:37:02.4171002Z CC [M] sound/soc/codecs/snd-soc-hdmi-codec.mod.o
2025-10-02T16:37:02.4422307Z CC [M] sound/soc/codecs/snd-soc-inno-rk3036.mod.o
2025-10-02T16:37:02.4690775Z CC [M] sound/soc/codecs/snd-soc-max9759.mod.o
2025-10-02T16:37:02.5379095Z CC [M] sound/soc/codecs/snd-soc-max98088.mod.o
2025-10-02T16:37:02.6973828Z CC [M] sound/soc/codecs/snd-soc-max98090.mod.o
2025-10-02T16:37:02.7501894Z CC [M] sound/soc/codecs/snd-soc-max98357a.mod.o
2025-10-02T16:37:02.8074825Z CC [M] sound/soc/codecs/snd-soc-max98373-i2c.mod.o
2025-10-02T16:37:02.8185930Z CC [M] sound/soc/codecs/snd-soc-max98373-sdw.mod.o
2025-10-02T16:37:02.9173970Z CC [M] sound/soc/codecs/snd-soc-max98373.mod.o
2025-10-02T16:37:03.0648936Z CC [M] sound/soc/codecs/snd-soc-max98390.mod.o
2025-10-02T16:37:03.0850788Z CC [M] sound/soc/codecs/snd-soc-max98504.mod.o
2025-10-02T16:37:03.1571497Z CC [M] sound/soc/codecs/snd-soc-max9860.mod.o
2025-10-02T16:37:03.2400437Z CC [M] sound/soc/codecs/snd-soc-max9867.mod.o
2025-10-02T16:37:03.2549423Z CC [M] sound/soc/codecs/snd-soc-max98927.mod.o
2025-10-02T16:37:03.3508687Z CC [M] sound/soc/codecs/snd-soc-msm8916-digital.mod.o
2025-10-02T16:37:03.5135599Z CC [M] sound/soc/codecs/snd-soc-mt6351.mod.o
2025-10-02T16:37:03.5513593Z CC [M] sound/soc/codecs/snd-soc-mt6358.mod.o
2025-10-02T16:37:03.5518282Z CC [M] sound/soc/codecs/snd-soc-mt6660.mod.o
2025-10-02T16:37:03.6582584Z CC [M] sound/soc/codecs/snd-soc-nau8540.mod.o
2025-10-02T16:37:03.7155519Z CC [M] sound/soc/codecs/snd-soc-nau8810.mod.o
2025-10-02T16:37:03.8008876Z CC [M] sound/soc/codecs/snd-soc-nau8822.mod.o
2025-10-02T16:37:03.9460065Z CC [M] sound/soc/codecs/snd-soc-nau8824.mod.o
2025-10-02T16:37:03.9540673Z CC [M] sound/soc/codecs/snd-soc-nau8825.mod.o
2025-10-02T16:37:04.0262184Z CC [M] sound/soc/codecs/snd-soc-pcm1681.mod.o
2025-10-02T16:37:04.0716116Z CC [M] sound/soc/codecs/snd-soc-pcm1789-codec.mod.o
2025-10-02T16:37:04.1191040Z CC [M] sound/soc/codecs/snd-soc-pcm1789-i2c.mod.o
2025-10-02T16:37:04.2362502Z CC [M] sound/soc/codecs/snd-soc-pcm179x-codec.mod.o
2025-10-02T16:37:04.3559375Z CC [M] sound/soc/codecs/snd-soc-pcm179x-i2c.mod.o
2025-10-02T16:37:04.3636359Z CC [M] sound/soc/codecs/snd-soc-pcm179x-spi.mod.o
2025-10-02T16:37:04.4217485Z CC [M] sound/soc/codecs/snd-soc-pcm186x-i2c.mod.o
2025-10-02T16:37:04.5403752Z CC [M] sound/soc/codecs/snd-soc-pcm186x-spi.mod.o
2025-10-02T16:37:04.5606947Z CC [M] sound/soc/codecs/snd-soc-pcm186x.mod.o
2025-10-02T16:37:04.6618257Z CC [M] sound/soc/codecs/snd-soc-pcm3060-i2c.mod.o
2025-10-02T16:37:04.6948928Z CC [M] sound/soc/codecs/snd-soc-pcm3060-spi.mod.o
2025-10-02T16:37:04.8448421Z CC [M] sound/soc/codecs/snd-soc-pcm3060.mod.o
2025-10-02T16:37:04.8721290Z CC [M] sound/soc/codecs/snd-soc-pcm3168a-i2c.mod.o
2025-10-02T16:37:04.9213549Z CC [M] sound/soc/codecs/snd-soc-pcm3168a-spi.mod.o
2025-10-02T16:37:05.0472788Z CC [M] sound/soc/codecs/snd-soc-pcm3168a.mod.o
2025-10-02T16:37:05.0923013Z CC [M] sound/soc/codecs/snd-soc-pcm512x-i2c.mod.o
2025-10-02T16:37:05.1756014Z CC [M] sound/soc/codecs/snd-soc-pcm512x-spi.mod.o
2025-10-02T16:37:05.1930043Z CC [M] sound/soc/codecs/snd-soc-pcm512x.mod.o
2025-10-02T16:37:05.2944137Z CC [M] sound/soc/codecs/snd-soc-rk3328.mod.o
2025-10-02T16:37:05.3340031Z CC [M] sound/soc/codecs/snd-soc-rl6231.mod.o
2025-10-02T16:37:05.5054947Z CC [M] sound/soc/codecs/snd-soc-rl6347a.mod.o
2025-10-02T16:37:05.5826362Z CC [M] sound/soc/codecs/snd-soc-rt1011.mod.o
2025-10-02T16:37:05.5912166Z CC [M] sound/soc/codecs/snd-soc-rt1015.mod.o
2025-10-02T16:37:05.6383564Z CC [M] sound/soc/codecs/snd-soc-rt1308-sdw.mod.o
2025-10-02T16:37:05.6384804Z CC [M] sound/soc/codecs/snd-soc-rt1308.mod.o
2025-10-02T16:37:05.8671044Z CC [M] sound/soc/codecs/snd-soc-rt286.mod.o
2025-10-02T16:37:05.9050940Z CC [M] sound/soc/codecs/snd-soc-rt298.mod.o
2025-10-02T16:37:05.9224776Z CC [M] sound/soc/codecs/snd-soc-rt5514-spi.mod.o
2025-10-02T16:37:06.0088474Z CC [M] sound/soc/codecs/snd-soc-rt5514.mod.o
2025-10-02T16:37:06.0738665Z CC [M] sound/soc/codecs/snd-soc-rt5616.mod.o
2025-10-02T16:37:06.2132167Z CC [M] sound/soc/codecs/snd-soc-rt5631.mod.o
2025-10-02T16:37:06.2338339Z CC [M] sound/soc/codecs/snd-soc-rt5640.mod.o
2025-10-02T16:37:06.3133797Z CC [M] sound/soc/codecs/snd-soc-rt5645.mod.o
2025-10-02T16:37:06.3238593Z CC [M] sound/soc/codecs/snd-soc-rt5651.mod.o
2025-10-02T16:37:06.4459191Z CC [M] sound/soc/codecs/snd-soc-rt5660.mod.o
2025-10-02T16:37:06.5804557Z CC [M] sound/soc/codecs/snd-soc-rt5663.mod.o
2025-10-02T16:37:06.6411298Z CC [M] sound/soc/codecs/snd-soc-rt5677-spi.mod.o
2025-10-02T16:37:06.6430696Z CC [M] sound/soc/codecs/snd-soc-rt5670.mod.o
2025-10-02T16:37:06.7721709Z CC [M] sound/soc/codecs/snd-soc-rt5677.mod.o
2025-10-02T16:37:06.7764358Z CC [M] sound/soc/codecs/snd-soc-rt5682-i2c.mod.o
2025-10-02T16:37:06.8819684Z CC [M] sound/soc/codecs/snd-soc-rt5682-sdw.mod.o
2025-10-02T16:37:06.9365427Z CC [M] sound/soc/codecs/snd-soc-rt5682.mod.o
2025-10-02T16:37:07.1457634Z CC [M] sound/soc/codecs/snd-soc-rt700.mod.o
2025-10-02T16:37:07.1525595Z CC [M] sound/soc/codecs/snd-soc-rt711.mod.o
2025-10-02T16:37:07.1539624Z CC [M] sound/soc/codecs/snd-soc-rt715.mod.o
2025-10-02T16:37:07.1824286Z CC [M] sound/soc/codecs/snd-soc-sgtl5000.mod.o
2025-10-02T16:37:07.2550079Z CC [M] sound/soc/codecs/snd-soc-si476x.mod.o
2025-10-02T16:37:07.4864569Z CC [M] sound/soc/codecs/snd-soc-sigmadsp-i2c.mod.o
2025-10-02T16:37:07.5020713Z CC [M] sound/soc/codecs/snd-soc-sigmadsp-regmap.mod.o
2025-10-02T16:37:07.5059397Z CC [M] sound/soc/codecs/snd-soc-sigmadsp.mod.o
2025-10-02T16:37:07.5327226Z CC [M] sound/soc/codecs/snd-soc-simple-amplifier.mod.o
2025-10-02T16:37:07.5969950Z CC [M] sound/soc/codecs/snd-soc-spdif-rx.mod.o
2025-10-02T16:37:07.7932020Z CC [M] sound/soc/codecs/snd-soc-spdif-tx.mod.o
2025-10-02T16:37:07.8507600Z CC [M] sound/soc/codecs/snd-soc-ssm2305.mod.o
2025-10-02T16:37:07.8721323Z CC [M] sound/soc/codecs/snd-soc-ssm2602-i2c.mod.o
2025-10-02T16:37:07.8726389Z CC [M] sound/soc/codecs/snd-soc-ssm2602-spi.mod.o
2025-10-02T16:37:08.0494513Z CC [M] sound/soc/codecs/snd-soc-ssm2602.mod.o
2025-10-02T16:37:08.0904601Z CC [M] sound/soc/codecs/snd-soc-ssm4567.mod.o
2025-10-02T16:37:08.1606689Z CC [M] sound/soc/codecs/snd-soc-sta32x.mod.o
2025-10-02T16:37:08.2564125Z CC [M] sound/soc/codecs/snd-soc-sta350.mod.o
2025-10-02T16:37:08.2967721Z CC [M] sound/soc/codecs/snd-soc-sti-sas.mod.o
2025-10-02T16:37:08.4397370Z CC [M] sound/soc/codecs/snd-soc-tas2552.mod.o
2025-10-02T16:37:08.4475457Z CC [M] sound/soc/codecs/snd-soc-tas2562.mod.o
2025-10-02T16:37:08.4751507Z CC [M] sound/soc/codecs/snd-soc-tas2764.mod.o
2025-10-02T16:37:08.6059106Z CC [M] sound/soc/codecs/snd-soc-tas2770.mod.o
2025-10-02T16:37:08.7468114Z CC [M] sound/soc/codecs/snd-soc-tas5086.mod.o
2025-10-02T16:37:08.7641039Z CC [M] sound/soc/codecs/snd-soc-tas571x.mod.o
2025-10-02T16:37:08.8103718Z CC [M] sound/soc/codecs/snd-soc-tas5720.mod.o
2025-10-02T16:37:08.8211254Z CC [M] sound/soc/codecs/snd-soc-tas6424.mod.o
2025-10-02T16:37:08.9109802Z CC [M] sound/soc/codecs/snd-soc-tda7419.mod.o
2025-10-02T16:37:09.0483192Z CC [M] sound/soc/codecs/snd-soc-tfa9879.mod.o
2025-10-02T16:37:09.1475066Z CC [M] sound/soc/codecs/snd-soc-tlv320adcx140.mod.o
2025-10-02T16:37:09.2031556Z CC [M] sound/soc/codecs/snd-soc-tlv320aic23-i2c.mod.o
2025-10-02T16:37:09.2096103Z CC [M] sound/soc/codecs/snd-soc-tlv320aic23-spi.mod.o
2025-10-02T16:37:09.3240303Z CC [M] sound/soc/codecs/snd-soc-tlv320aic23.mod.o
2025-10-02T16:37:09.3592176Z CC [M] sound/soc/codecs/snd-soc-tlv320aic31xx.mod.o
2025-10-02T16:37:09.5163195Z CC [M] sound/soc/codecs/snd-soc-tlv320aic32x4-i2c.mod.o
2025-10-02T16:37:09.5198891Z CC [M] sound/soc/codecs/snd-soc-tlv320aic32x4-spi.mod.o
2025-10-02T16:37:09.5932688Z CC [M] sound/soc/codecs/snd-soc-tlv320aic32x4.mod.o
2025-10-02T16:37:09.6232528Z CC [M] sound/soc/codecs/snd-soc-tlv320aic3x.mod.o
2025-10-02T16:37:09.7281417Z CC [M] sound/soc/codecs/snd-soc-tpa6130a2.mod.o
2025-10-02T16:37:09.8567738Z CC [M] sound/soc/codecs/snd-soc-ts3a227e.mod.o
2025-10-02T16:37:09.8801190Z CC [M] sound/soc/codecs/snd-soc-tscs42xx.mod.o
2025-10-02T16:37:09.9376355Z CC [M] sound/soc/codecs/snd-soc-tscs454.mod.o
2025-10-02T16:37:09.9847214Z CC [M] sound/soc/codecs/snd-soc-uda1334.mod.o
2025-10-02T16:37:10.0757652Z CC [M] sound/soc/codecs/snd-soc-wcd9335.mod.o
2025-10-02T16:37:10.1950707Z CC [M] sound/soc/codecs/snd-soc-wcd934x.mod.o
2025-10-02T16:37:10.3360732Z CC [M] sound/soc/codecs/snd-soc-wm8510.mod.o
2025-10-02T16:37:10.3414938Z CC [M] sound/soc/codecs/snd-soc-wm8523.mod.o
2025-10-02T16:37:10.3687071Z CC [M] sound/soc/codecs/snd-soc-wm8524.mod.o
2025-10-02T16:37:10.3840993Z CC [M] sound/soc/codecs/snd-soc-wm8580.mod.o
2025-10-02T16:37:10.4813250Z CC [M] sound/soc/codecs/snd-soc-wm8711.mod.o
2025-10-02T16:37:10.6888435Z CC [M] sound/soc/codecs/snd-soc-wm8728.mod.o
2025-10-02T16:37:10.7198669Z CC [M] sound/soc/codecs/snd-soc-wm8731.mod.o
2025-10-02T16:37:10.7420979Z CC [M] sound/soc/codecs/snd-soc-wm8737.mod.o
2025-10-02T16:37:10.7722218Z CC [M] sound/soc/codecs/snd-soc-wm8741.mod.o
2025-10-02T16:37:10.7924212Z CC [M] sound/soc/codecs/snd-soc-wm8750.mod.o
2025-10-02T16:37:11.0248015Z CC [M] sound/soc/codecs/snd-soc-wm8753.mod.o
2025-10-02T16:37:11.0964357Z CC [M] sound/soc/codecs/snd-soc-wm8770.mod.o
2025-10-02T16:37:11.0986739Z CC [M] sound/soc/codecs/snd-soc-wm8776.mod.o
2025-10-02T16:37:11.1300937Z CC [M] sound/soc/codecs/snd-soc-wm8782.mod.o
2025-10-02T16:37:11.1851860Z CC [M] sound/soc/codecs/snd-soc-wm8804-i2c.mod.o
2025-10-02T16:37:11.3137154Z CC [M] sound/soc/codecs/snd-soc-wm8804-spi.mod.o
2025-10-02T16:37:11.4177903Z CC [M] sound/soc/codecs/snd-soc-wm8804.mod.o
2025-10-02T16:37:11.5000537Z CC [M] sound/soc/codecs/snd-soc-wm8903.mod.o
2025-10-02T16:37:11.5092625Z CC [M] sound/soc/codecs/snd-soc-wm8904.mod.o
2025-10-02T16:37:11.6118202Z CC [M] sound/soc/codecs/snd-soc-wm8960.mod.o
2025-10-02T16:37:11.6280339Z CC [M] sound/soc/codecs/snd-soc-wm8962.mod.o
2025-10-02T16:37:11.7743521Z CC [M] sound/soc/codecs/snd-soc-wm8974.mod.o
2025-10-02T16:37:11.8592769Z CC [M] sound/soc/codecs/snd-soc-wm8978.mod.o
2025-10-02T16:37:11.8894849Z CC [M] sound/soc/codecs/snd-soc-wm8985.mod.o
2025-10-02T16:37:11.9590689Z CC [M] sound/soc/codecs/snd-soc-wsa881x.mod.o
2025-10-02T16:37:11.9863874Z CC [M] sound/soc/codecs/snd-soc-zl38060.mod.o
2025-10-02T16:37:12.1697472Z CC [M] sound/soc/codecs/snd-soc-zx-aud96p22.mod.o
2025-10-02T16:37:12.2056289Z CC [M] sound/soc/dwc/designware_i2s.mod.o
2025-10-02T16:37:12.2097069Z CC [M] sound/soc/generic/snd-soc-simple-card-utils.mod.o
2025-10-02T16:37:12.2548032Z CC [M] sound/soc/generic/snd-soc-simple-card.mod.o
2025-10-02T16:37:12.3653377Z CC [M] sound/soc/hisilicon/hi6210-i2s.mod.o
2025-10-02T16:37:12.5155492Z CC [M] sound/soc/img/img-i2s-in.mod.o
2025-10-02T16:37:12.5623186Z CC [M] sound/soc/img/img-i2s-out.mod.o
2025-10-02T16:37:12.6278164Z CC [M] sound/soc/img/img-parallel-out.mod.o
2025-10-02T16:37:12.6506360Z CC [M] sound/soc/img/img-spdif-out.mod.o
2025-10-02T16:37:12.6526926Z CC [M] sound/soc/img/img-spdif-in.mod.o
2025-10-02T16:37:12.9274460Z CC [M] sound/soc/img/pistachio-internal-dac.mod.o
2025-10-02T16:37:12.9521231Z CC [M] sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.mod.o
2025-10-02T16:37:12.9544243Z CC [M] sound/soc/intel/atom/sst/snd-intel-sst-acpi.mod.o
2025-10-02T16:37:12.9603633Z CC [M] sound/soc/intel/atom/sst/snd-intel-sst-core.mod.o
2025-10-02T16:37:13.0183833Z CC [M] sound/soc/intel/atom/sst/snd-intel-sst-pci.mod.o
2025-10-02T16:37:13.2755231Z CC [M] sound/soc/intel/boards/snd-skl_nau88l25_max98357a.mod.o
2025-10-02T16:37:13.2782972Z CC [M] sound/soc/intel/boards/snd-soc-cml_rt1011_rt5682.mod.o
2025-10-02T16:37:13.3007388Z CC [M] sound/soc/intel/boards/snd-soc-ehl-rt5660.mod.o
2025-10-02T16:37:13.3464948Z CC [M] sound/soc/intel/boards/snd-soc-kbl_da7219_max98357a.mod.o
2025-10-02T16:37:13.4018596Z CC [M] sound/soc/intel/boards/snd-soc-kbl_da7219_max98927.mod.o
2025-10-02T16:37:13.6035361Z CC [M] sound/soc/intel/boards/snd-soc-kbl_rt5660.mod.o
2025-10-02T16:37:13.6414569Z CC [M] sound/soc/intel/boards/snd-soc-kbl_rt5663_max98927.mod.o
2025-10-02T16:37:13.6737648Z CC [M] sound/soc/intel/boards/snd-soc-kbl_rt5663_rt5514_max98927.mod.o
2025-10-02T16:37:13.6906359Z CC [M] sound/soc/intel/boards/snd-soc-skl_hda_dsp.mod.o
2025-10-02T16:37:13.7906976Z CC [M] sound/soc/intel/boards/snd-soc-skl_nau88l25_ssm4567.mod.o
2025-10-02T16:37:13.8944077Z CC [M] sound/soc/intel/boards/snd-soc-skl_rt286.mod.o
2025-10-02T16:37:14.0071091Z CC [M] sound/soc/intel/boards/snd-soc-sof-sdw.mod.o
2025-10-02T16:37:14.0169001Z CC [M] sound/soc/intel/boards/snd-soc-sof_da7219_max98373.mod.o
2025-10-02T16:37:14.1034604Z CC [M] sound/soc/intel/boards/snd-soc-sof_rt5682.mod.o
2025-10-02T16:37:14.1508765Z CC [M] sound/soc/intel/boards/snd-soc-sst-bdw-rt5650-mach.mod.o
2025-10-02T16:37:14.2263436Z CC [M] sound/soc/intel/boards/snd-soc-sst-bdw-rt5677-mach.mod.o
2025-10-02T16:37:14.3468195Z CC [M] sound/soc/intel/boards/snd-soc-sst-broadwell.mod.o
2025-10-02T16:37:14.3920348Z CC [M] sound/soc/intel/boards/snd-soc-sst-bxt-da7219_max98357a.mod.o
2025-10-02T16:37:14.5012902Z CC [M] sound/soc/intel/boards/snd-soc-sst-bxt-rt298.mod.o
2025-10-02T16:37:14.5160146Z CC [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-cx2072x.mod.o
2025-10-02T16:37:14.5322710Z CC [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-da7213.mod.o
2025-10-02T16:37:14.6838223Z CC [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-es8316.mod.o
2025-10-02T16:37:14.6907939Z CC [M] sound/soc/intel/boards/snd-soc-sst-bytcr-rt5640.mod.o
2025-10-02T16:37:14.8991241Z CC [M] sound/soc/intel/boards/snd-soc-sst-bytcr-rt5651.mod.o
2025-10-02T16:37:14.9030817Z CC [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-max98090_ti.mod.o
2025-10-02T16:37:14.9914386Z CC [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-nau8824.mod.o
2025-10-02T16:37:14.9938239Z CC [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5645.mod.o
2025-10-02T16:37:15.0195769Z CC [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5672.mod.o
2025-10-02T16:37:15.2421738Z CC [M] sound/soc/intel/boards/snd-soc-sst-glk-rt5682_max98357a.mod.o
2025-10-02T16:37:15.2837209Z CC [M] sound/soc/intel/boards/snd-soc-sst-haswell.mod.o
2025-10-02T16:37:15.2917056Z CC [M] sound/soc/intel/boards/snd-soc-sst-sof-pcm512x.mod.o
2025-10-02T16:37:15.3752041Z CC [M] sound/soc/intel/boards/snd-soc-sst-sof-wm8804.mod.o
2025-10-02T16:37:15.3950543Z CC [M] sound/soc/intel/catpt/snd-soc-catpt.mod.o
2025-10-02T16:37:15.6224292Z CC [M] sound/soc/intel/common/snd-soc-acpi-intel-match.mod.o
2025-10-02T16:37:15.6416819Z CC [M] sound/soc/intel/common/snd-soc-sst-dsp.mod.o
2025-10-02T16:37:15.6591758Z CC [M] sound/soc/intel/common/snd-soc-sst-ipc.mod.o
2025-10-02T16:37:15.6620785Z CC [M] sound/soc/intel/skylake/snd-soc-skl-ssp-clk.mod.o
2025-10-02T16:37:15.7500808Z CC [M] sound/soc/intel/skylake/snd-soc-skl.mod.o
2025-10-02T16:37:15.9543374Z CC [M] sound/soc/snd-soc-acpi.mod.o
2025-10-02T16:37:15.9980039Z CC [M] sound/soc/sof/intel/snd-sof-intel-byt.mod.o
2025-10-02T16:37:16.0004165Z CC [M] sound/soc/snd-soc-core.mod.o
2025-10-02T16:37:16.0246060Z CC [M] sound/soc/sof/intel/snd-sof-intel-hda-common.mod.o
2025-10-02T16:37:16.1723589Z CC [M] sound/soc/sof/intel/snd-sof-intel-hda.mod.o
2025-10-02T16:37:16.2377969Z CC [M] sound/soc/sof/intel/snd-sof-intel-ipc.mod.o
2025-10-02T16:37:16.3623998Z CC [M] sound/soc/sof/snd-sof-acpi.mod.o
2025-10-02T16:37:16.4053240Z CC [M] sound/soc/sof/snd-sof-pci.mod.o
2025-10-02T16:37:16.4469967Z CC [M] sound/soc/sof/snd-sof.mod.o
2025-10-02T16:37:16.5047629Z CC [M] sound/soc/sof/xtensa/snd-sof-xtensa-dsp.mod.o
2025-10-02T16:37:16.6285172Z CC [M] sound/soc/xilinx/snd-soc-xlnx-formatter-pcm.mod.o
2025-10-02T16:37:16.7347309Z CC [M] sound/soc/xilinx/snd-soc-xlnx-i2s.mod.o
2025-10-02T16:37:16.7474707Z CC [M] sound/soc/xilinx/snd-soc-xlnx-spdif.mod.o
2025-10-02T16:37:16.8235260Z CC [M] sound/soc/xtensa/snd-soc-xtfpga-i2s.mod.o
2025-10-02T16:37:16.8267558Z CC [M] sound/soc/zte/zx-tdm.mod.o
2025-10-02T16:37:16.9745482Z CC [M] sound/soundcore.mod.o
2025-10-02T16:37:17.0806325Z CC [M] sound/synth/emux/snd-emux-synth.mod.o
2025-10-02T16:37:17.1060283Z CC [M] sound/synth/snd-util-mem.mod.o
2025-10-02T16:37:17.1904446Z CC [M] sound/usb/6fire/snd-usb-6fire.mod.o
2025-10-02T16:37:17.2242780Z CC [M] sound/usb/bcd2000/snd-bcd2000.mod.o
2025-10-02T16:37:17.3432385Z CC [M] sound/usb/caiaq/snd-usb-caiaq.mod.o
2025-10-02T16:37:17.4417368Z CC [M] sound/usb/hiface/snd-usb-hiface.mod.o
2025-10-02T16:37:17.4837313Z CC [M] sound/usb/line6/snd-usb-line6.mod.o
2025-10-02T16:37:17.4868215Z CC [M] sound/usb/line6/snd-usb-pod.mod.o
2025-10-02T16:37:17.6241728Z CC [M] sound/usb/line6/snd-usb-podhd.mod.o
2025-10-02T16:37:17.6877581Z CC [M] sound/usb/line6/snd-usb-toneport.mod.o
2025-10-02T16:37:17.7697085Z CC [M] sound/usb/line6/snd-usb-variax.mod.o
2025-10-02T16:37:17.7965982Z CC [M] sound/usb/misc/snd-ua101.mod.o
2025-10-02T16:37:17.9489109Z CC [M] sound/usb/snd-usb-audio.mod.o
2025-10-02T16:37:17.9950689Z CC [M] sound/usb/snd-usbmidi-lib.mod.o
2025-10-02T16:37:18.0170476Z CC [M] sound/usb/usx2y/snd-usb-us122l.mod.o
2025-10-02T16:37:18.0882645Z CC [M] sound/usb/usx2y/snd-usb-usx2y.mod.o
2025-10-02T16:37:18.2148460Z CC [M] sound/x86/snd-hdmi-lpe-audio.mod.o
2025-10-02T16:37:18.2886265Z CC [M] sound/xen/snd_xen_front.mod.o
2025-10-02T16:37:18.3567637Z CC [M] virt/lib/irqbypass.mod.o
2025-10-02T16:37:18.4018884Z LD [M] arch/x86/crypto/aegis128-aesni.ko
2025-10-02T16:37:18.4270339Z LD [M] arch/x86/crypto/aesni-intel.ko
2025-10-02T16:37:18.4435526Z LD [M] arch/x86/crypto/blake2s-x86_64.ko
2025-10-02T16:37:18.4511630Z LD [M] arch/x86/crypto/blowfish-x86_64.ko
2025-10-02T16:37:18.4710569Z LD [M] arch/x86/crypto/camellia-aesni-avx-x86_64.ko
2025-10-02T16:37:18.4753200Z LD [M] arch/x86/crypto/camellia-aesni-avx2.ko
2025-10-02T16:37:18.4932537Z LD [M] arch/x86/crypto/camellia-x86_64.ko
2025-10-02T16:37:18.4968769Z LD [M] arch/x86/crypto/cast5-avx-x86_64.ko
2025-10-02T16:37:18.5177300Z LD [M] arch/x86/crypto/cast6-avx-x86_64.ko
2025-10-02T16:37:18.5212062Z LD [M] arch/x86/crypto/chacha-x86_64.ko
2025-10-02T16:37:18.5412753Z LD [M] arch/x86/crypto/crc32-pclmul.ko
2025-10-02T16:37:18.5458170Z LD [M] arch/x86/crypto/crc32c-intel.ko
2025-10-02T16:37:18.5581387Z LD [M] arch/x86/crypto/crct10dif-pclmul.ko
2025-10-02T16:37:18.5660015Z LD [M] arch/x86/crypto/curve25519-x86_64.ko
2025-10-02T16:37:18.5769214Z LD [M] arch/x86/crypto/des3_ede-x86_64.ko
2025-10-02T16:37:18.5795338Z LD [M] arch/x86/crypto/ghash-clmulni-intel.ko
2025-10-02T16:37:18.5867598Z LD [M] arch/x86/crypto/glue_helper.ko
2025-10-02T16:37:18.5908395Z LD [M] arch/x86/crypto/nhpoly1305-avx2.ko
2025-10-02T16:37:18.5946219Z LD [M] arch/x86/crypto/nhpoly1305-sse2.ko
2025-10-02T16:37:18.5953696Z LD [M] arch/x86/crypto/poly1305-x86_64.ko
2025-10-02T16:37:18.6027541Z LD [M] arch/x86/crypto/serpent-avx-x86_64.ko
2025-10-02T16:37:18.6030405Z LD [M] arch/x86/crypto/serpent-avx2.ko
2025-10-02T16:37:18.6096238Z LD [M] arch/x86/crypto/serpent-sse2-x86_64.ko
2025-10-02T16:37:18.6107829Z LD [M] arch/x86/crypto/sha1-ssse3.ko
2025-10-02T16:37:18.6151986Z LD [M] arch/x86/crypto/sha256-ssse3.ko
2025-10-02T16:37:18.6177369Z LD [M] arch/x86/crypto/sha512-ssse3.ko
2025-10-02T16:37:18.6233606Z LD [M] arch/x86/crypto/twofish-avx-x86_64.ko
2025-10-02T16:37:18.6263559Z LD [M] arch/x86/crypto/twofish-x86_64-3way.ko
2025-10-02T16:37:18.6322148Z LD [M] arch/x86/crypto/twofish-x86_64.ko
2025-10-02T16:37:18.6324592Z LD [M] arch/x86/events/amd/power.ko
2025-10-02T16:37:18.6376072Z LD [M] arch/x86/events/intel/intel-cstate.ko
2025-10-02T16:37:18.6416080Z LD [M] arch/x86/events/intel/intel-uncore.ko
2025-10-02T16:37:18.6454587Z LD [M] arch/x86/events/rapl.ko
2025-10-02T16:37:18.6480880Z LD [M] arch/x86/kernel/cpu/mce/mce-inject.ko
2025-10-02T16:37:18.6535097Z LD [M] arch/x86/kvm/kvm-amd.ko
2025-10-02T16:37:18.6641412Z LD [M] arch/x86/kvm/kvm-intel.ko
2025-10-02T16:37:18.6645780Z LD [M] arch/x86/kvm/kvm.ko
2025-10-02T16:37:18.6673544Z LD [M] arch/x86/oprofile/oprofile.ko
2025-10-02T16:37:18.6862859Z LD [M] crypto/842.ko
2025-10-02T16:37:18.6906922Z LD [M] crypto/adiantum.ko
2025-10-02T16:37:18.6922885Z LD [M] crypto/aegis128.ko
2025-10-02T16:37:18.6981183Z LD [M] crypto/aes_ti.ko
2025-10-02T16:37:18.7046795Z LD [M] crypto/af_alg.ko
2025-10-02T16:37:18.7073870Z LD [M] crypto/algif_aead.ko
2025-10-02T16:37:18.7097953Z LD [M] crypto/algif_hash.ko
2025-10-02T16:37:18.7240744Z LD [M] crypto/algif_rng.ko
2025-10-02T16:37:18.7241640Z LD [M] crypto/algif_skcipher.ko
2025-10-02T16:37:18.7259424Z LD [M] crypto/ansi_cprng.ko
2025-10-02T16:37:18.7367640Z LD [M] crypto/asymmetric_keys/asym_tpm.ko
2025-10-02T16:37:18.7385819Z LD [M] crypto/asymmetric_keys/pkcs8_key_parser.ko
2025-10-02T16:37:18.7404742Z LD [M] crypto/asymmetric_keys/tpm_key_parser.ko
2025-10-02T16:37:18.7430647Z LD [M] crypto/async_tx/async_memcpy.ko
2025-10-02T16:37:18.7520410Z LD [M] crypto/async_tx/async_pq.ko
2025-10-02T16:37:18.7525207Z LD [M] crypto/async_tx/async_raid6_recov.ko
2025-10-02T16:37:18.7546223Z LD [M] crypto/async_tx/async_tx.ko
2025-10-02T16:37:18.7570782Z LD [M] crypto/async_tx/async_xor.ko
2025-10-02T16:37:18.7661041Z LD [M] crypto/async_tx/raid6test.ko
2025-10-02T16:37:18.7690434Z LD [M] crypto/authenc.ko
2025-10-02T16:37:18.7700739Z LD [M] crypto/authencesn.ko
2025-10-02T16:37:18.7701520Z LD [M] crypto/blake2b_generic.ko
2025-10-02T16:37:18.7799080Z LD [M] crypto/blake2s_generic.ko
2025-10-02T16:37:18.7843083Z LD [M] crypto/blowfish_generic.ko
2025-10-02T16:37:18.7855005Z LD [M] crypto/blowfish_common.ko
2025-10-02T16:37:18.7865567Z LD [M] crypto/camellia_generic.ko
2025-10-02T16:37:18.7943843Z LD [M] crypto/cast5_generic.ko
2025-10-02T16:37:18.7986368Z LD [M] crypto/cast6_generic.ko
2025-10-02T16:37:18.8013923Z LD [M] crypto/cast_common.ko
2025-10-02T16:37:18.8022973Z LD [M] crypto/cbc.ko
2025-10-02T16:37:18.8048172Z LD [M] crypto/ccm.ko
2025-10-02T16:37:18.8077243Z LD [M] crypto/cfb.ko
2025-10-02T16:37:18.8124901Z LD [M] crypto/chacha20poly1305.ko
2025-10-02T16:37:18.8134680Z LD [M] crypto/chacha_generic.ko
2025-10-02T16:37:18.8166802Z LD [M] crypto/cmac.ko
2025-10-02T16:37:18.8210087Z LD [M] crypto/crc32_generic.ko
2025-10-02T16:37:18.8248967Z LD [M] crypto/crc32c_generic.ko
2025-10-02T16:37:18.8256718Z LD [M] crypto/cryptd.ko
2025-10-02T16:37:18.8298146Z LD [M] crypto/crypto_engine.ko
2025-10-02T16:37:18.8314361Z LD [M] crypto/crypto_simd.ko
2025-10-02T16:37:18.8321561Z LD [M] crypto/crypto_user.ko
2025-10-02T16:37:18.8352494Z LD [M] crypto/cts.ko
2025-10-02T16:37:18.8427030Z LD [M] crypto/curve25519-generic.ko
2025-10-02T16:37:18.8430689Z LD [M] crypto/deflate.ko
2025-10-02T16:37:18.8440716Z LD [M] crypto/des_generic.ko
2025-10-02T16:37:18.8511242Z LD [M] crypto/drbg.ko
2025-10-02T16:37:18.8518429Z LD [M] crypto/ecb.ko
2025-10-02T16:37:18.8561273Z LD [M] crypto/ecc.ko
2025-10-02T16:37:18.8582577Z LD [M] crypto/ecdh_generic.ko
2025-10-02T16:37:18.8583442Z LD [M] crypto/echainiv.ko
2025-10-02T16:37:18.8647068Z LD [M] crypto/ecrdsa_generic.ko
2025-10-02T16:37:18.8680645Z LD [M] crypto/essiv.ko
2025-10-02T16:37:18.8706406Z LD [M] crypto/fcrypt.ko
2025-10-02T16:37:18.8739850Z LD [M] crypto/gcm.ko
2025-10-02T16:37:18.8743878Z LD [M] crypto/gf128mul.ko
2025-10-02T16:37:18.8771842Z LD [M] crypto/ghash-generic.ko
2025-10-02T16:37:18.8841312Z LD [M] crypto/keywrap.ko
2025-10-02T16:37:18.8851131Z LD [M] crypto/lrw.ko
2025-10-02T16:37:18.8851905Z LD [M] crypto/lz4hc.ko
2025-10-02T16:37:18.8916754Z LD [M] crypto/lzo-rle.ko
2025-10-02T16:37:18.8925566Z LD [M] crypto/lzo.ko
2025-10-02T16:37:18.8971000Z LD [M] crypto/md4.ko
2025-10-02T16:37:18.9000401Z LD [M] crypto/michael_mic.ko
2025-10-02T16:37:18.9007638Z LD [M] crypto/nhpoly1305.ko
2025-10-02T16:37:18.9048081Z LD [M] crypto/ofb.ko
2025-10-02T16:37:18.9060741Z LD [M] crypto/pcbc.ko
2025-10-02T16:37:18.9097238Z LD [M] crypto/pcrypt.ko
2025-10-02T16:37:18.9124137Z LD [M] crypto/poly1305_generic.ko
2025-10-02T16:37:18.9130906Z LD [M] crypto/rmd128.ko
2025-10-02T16:37:18.9178761Z LD [M] crypto/rmd160.ko
2025-10-02T16:37:18.9183618Z LD [M] crypto/rmd256.ko
2025-10-02T16:37:18.9239091Z LD [M] crypto/rmd320.ko
2025-10-02T16:37:18.9274996Z LD [M] crypto/salsa20_generic.ko
2025-10-02T16:37:18.9286813Z LD [M] crypto/seqiv.ko
2025-10-02T16:37:18.9322867Z LD [M] crypto/serpent_generic.ko
2025-10-02T16:37:18.9336188Z LD [M] crypto/sha3_generic.ko
2025-10-02T16:37:18.9391878Z LD [M] crypto/sm2_generic.ko
2025-10-02T16:37:18.9396479Z LD [M] crypto/sm3_generic.ko
2025-10-02T16:37:18.9431397Z LD [M] crypto/sm4_generic.ko
2025-10-02T16:37:18.9476835Z LD [M] crypto/streebog_generic.ko
2025-10-02T16:37:18.9511377Z LD [M] crypto/tcrypt.ko
2025-10-02T16:37:18.9521001Z LD [M] crypto/tgr192.ko
2025-10-02T16:37:18.9550513Z LD [M] crypto/twofish_common.ko
2025-10-02T16:37:18.9566313Z LD [M] crypto/twofish_generic.ko
2025-10-02T16:37:18.9611276Z LD [M] crypto/vmac.ko
2025-10-02T16:37:18.9646160Z LD [M] crypto/wp512.ko
2025-10-02T16:37:18.9687784Z LD [M] crypto/xcbc.ko
2025-10-02T16:37:18.9705254Z LD [M] crypto/xor.ko
2025-10-02T16:37:18.9724210Z LD [M] crypto/xts.ko
2025-10-02T16:37:18.9765717Z LD [M] crypto/xxhash_generic.ko
2025-10-02T16:37:18.9805712Z LD [M] drivers/accessibility/speakup/speakup.ko
2025-10-02T16:37:18.9823223Z LD [M] drivers/accessibility/speakup/speakup_acntsa.ko
2025-10-02T16:37:18.9886714Z LD [M] drivers/accessibility/speakup/speakup_apollo.ko
2025-10-02T16:37:18.9916002Z LD [M] drivers/accessibility/speakup/speakup_audptr.ko
2025-10-02T16:37:18.9931691Z LD [M] drivers/accessibility/speakup/speakup_bns.ko
2025-10-02T16:37:18.9951351Z LD [M] drivers/accessibility/speakup/speakup_decext.ko
2025-10-02T16:37:19.0001116Z LD [M] drivers/accessibility/speakup/speakup_dectlk.ko
2025-10-02T16:37:19.0002231Z LD [M] drivers/accessibility/speakup/speakup_dummy.ko
2025-10-02T16:37:19.0019382Z LD [M] drivers/accessibility/speakup/speakup_ltlk.ko
2025-10-02T16:37:19.0074432Z LD [M] drivers/accessibility/speakup/speakup_spkout.ko
2025-10-02T16:37:19.0086876Z LD [M] drivers/accessibility/speakup/speakup_soft.ko
2025-10-02T16:37:19.0112984Z LD [M] drivers/accessibility/speakup/speakup_txprt.ko
2025-10-02T16:37:19.0152233Z LD [M] drivers/acpi/acpi_configfs.ko
2025-10-02T16:37:19.0159917Z LD [M] drivers/acpi/acpi_extlog.ko
2025-10-02T16:37:19.0220646Z LD [M] drivers/acpi/acpi_ipmi.ko
2025-10-02T16:37:19.0253768Z LD [M] drivers/acpi/acpi_pad.ko
2025-10-02T16:37:19.0277350Z LD [M] drivers/acpi/apei/einj.ko
2025-10-02T16:37:19.0284825Z LD [M] drivers/acpi/acpi_tad.ko
2025-10-02T16:37:19.0309653Z LD [M] drivers/acpi/custom_method.ko
2025-10-02T16:37:19.0319305Z LD [M] drivers/acpi/apei/erst-dbg.ko
2025-10-02T16:37:19.0358017Z LD [M] drivers/acpi/dptf/dptf_pch_fivr.ko
2025-10-02T16:37:19.0398745Z LD [M] drivers/acpi/dptf/dptf_power.ko
2025-10-02T16:37:19.0426594Z LD [M] drivers/acpi/ec_sys.ko
2025-10-02T16:37:19.0459996Z LD [M] drivers/acpi/nfit/nfit.ko
2025-10-02T16:37:19.0472979Z LD [M] drivers/acpi/sbshc.ko
2025-10-02T16:37:19.0496690Z LD [M] drivers/acpi/sbs.ko
2025-10-02T16:37:19.0544499Z LD [M] drivers/ata/acard-ahci.ko
2025-10-02T16:37:19.0552879Z LD [M] drivers/acpi/video.ko
2025-10-02T16:37:19.0605170Z LD [M] drivers/ata/ahci_platform.ko
2025-10-02T16:37:19.0625107Z LD [M] drivers/ata/ata_generic.ko
2025-10-02T16:37:19.0676386Z LD [M] drivers/ata/ata_piix.ko
2025-10-02T16:37:19.0692042Z LD [M] drivers/ata/pata_acpi.ko
2025-10-02T16:37:19.0696199Z LD [M] drivers/ata/libahci_platform.ko
2025-10-02T16:37:19.0736875Z LD [M] drivers/ata/pata_ali.ko
2025-10-02T16:37:19.0754789Z LD [M] drivers/ata/pata_amd.ko
2025-10-02T16:37:19.0823983Z LD [M] drivers/ata/pata_atiixp.ko
2025-10-02T16:37:19.0830263Z LD [M] drivers/ata/pata_artop.ko
2025-10-02T16:37:19.0887281Z LD [M] drivers/ata/pata_atp867x.ko
2025-10-02T16:37:19.0915442Z LD [M] drivers/ata/pata_cmd64x.ko
2025-10-02T16:37:19.0918300Z LD [M] drivers/ata/pata_cmd640.ko
2025-10-02T16:37:19.0950414Z LD [M] drivers/ata/pata_cypress.ko
2025-10-02T16:37:19.0958143Z LD [M] drivers/ata/pata_efar.ko
2025-10-02T16:37:19.1011553Z LD [M] drivers/ata/pata_hpt366.ko
2025-10-02T16:37:19.1045236Z LD [M] drivers/ata/pata_hpt37x.ko
2025-10-02T16:37:19.1082835Z LD [M] drivers/ata/pata_hpt3x2n.ko
2025-10-02T16:37:19.1083907Z LD [M] drivers/ata/pata_hpt3x3.ko
2025-10-02T16:37:19.1132822Z LD [M] drivers/ata/pata_it8213.ko
2025-10-02T16:37:19.1158189Z LD [M] drivers/ata/pata_it821x.ko
2025-10-02T16:37:19.1191612Z LD [M] drivers/ata/pata_jmicron.ko
2025-10-02T16:37:19.1196357Z LD [M] drivers/ata/pata_legacy.ko
2025-10-02T16:37:19.1256578Z LD [M] drivers/ata/pata_marvell.ko
2025-10-02T16:37:19.1310462Z LD [M] drivers/ata/pata_netcell.ko
2025-10-02T16:37:19.1311619Z LD [M] drivers/ata/pata_ninja32.ko
2025-10-02T16:37:19.1316855Z LD [M] drivers/ata/pata_mpiix.ko
2025-10-02T16:37:19.1332127Z LD [M] drivers/ata/pata_ns87410.ko
2025-10-02T16:37:19.1369121Z LD [M] drivers/ata/pata_ns87415.ko
2025-10-02T16:37:19.1408247Z LD [M] drivers/ata/pata_oldpiix.ko
2025-10-02T16:37:19.1476225Z LD [M] drivers/ata/pata_optidma.ko
2025-10-02T16:37:19.1478456Z LD [M] drivers/ata/pata_opti.ko
2025-10-02T16:37:19.1522202Z LD [M] drivers/ata/pata_pdc202xx_old.ko
2025-10-02T16:37:19.1533781Z LD [M] drivers/ata/pata_pcmcia.ko
2025-10-02T16:37:19.1567826Z LD [M] drivers/ata/pata_pdc2027x.ko
2025-10-02T16:37:19.1623321Z LD [M] drivers/ata/pata_radisys.ko
2025-10-02T16:37:19.1624329Z LD [M] drivers/ata/pata_piccolo.ko
2025-10-02T16:37:19.1641191Z LD [M] drivers/ata/pata_rdc.ko
2025-10-02T16:37:19.1693326Z LD [M] drivers/ata/pata_rz1000.ko
2025-10-02T16:37:19.1702023Z LD [M] drivers/ata/pata_sch.ko
2025-10-02T16:37:19.1750895Z LD [M] drivers/ata/pata_serverworks.ko
2025-10-02T16:37:19.1782955Z LD [M] drivers/ata/pata_sis.ko
2025-10-02T16:37:19.1787375Z LD [M] drivers/ata/pata_sil680.ko
2025-10-02T16:37:19.1840268Z LD [M] drivers/ata/pata_triflex.ko
2025-10-02T16:37:19.1847837Z LD [M] drivers/ata/pata_sl82c105.ko
2025-10-02T16:37:19.1881917Z LD [M] drivers/ata/pata_via.ko
2025-10-02T16:37:19.1928258Z LD [M] drivers/ata/pdc_adma.ko
2025-10-02T16:37:19.1969373Z LD [M] drivers/ata/sata_inic162x.ko
2025-10-02T16:37:19.2004276Z LD [M] drivers/ata/sata_dwc_460ex.ko
2025-10-02T16:37:19.2005151Z LD [M] drivers/ata/sata_mv.ko
2025-10-02T16:37:19.2006119Z LD [M] drivers/ata/sata_nv.ko
2025-10-02T16:37:19.2092560Z LD [M] drivers/ata/sata_promise.ko
2025-10-02T16:37:19.2121646Z LD [M] drivers/ata/sata_qstor.ko
2025-10-02T16:37:19.2132675Z LD [M] drivers/ata/sata_sil.ko
2025-10-02T16:37:19.2176397Z LD [M] drivers/ata/sata_sil24.ko
2025-10-02T16:37:19.2179252Z LD [M] drivers/ata/sata_sis.ko
2025-10-02T16:37:19.2238646Z LD [M] drivers/ata/sata_sx4.ko
2025-10-02T16:37:19.2248137Z LD [M] drivers/ata/sata_uli.ko
2025-10-02T16:37:19.2275503Z LD [M] drivers/ata/sata_svw.ko
2025-10-02T16:37:19.2326135Z LD [M] drivers/ata/sata_via.ko
2025-10-02T16:37:19.2372555Z LD [M] drivers/ata/sata_vsc.ko
2025-10-02T16:37:19.2471044Z LD [M] drivers/atm/ambassador.ko
2025-10-02T16:37:19.2471947Z LD [M] drivers/atm/eni.ko
2025-10-02T16:37:19.2472757Z LD [M] drivers/atm/firestream.ko
2025-10-02T16:37:19.2473551Z LD [M] drivers/atm/atmtcp.ko
2025-10-02T16:37:19.2474323Z LD [M] drivers/atm/fore_200e.ko
2025-10-02T16:37:19.2554261Z LD [M] drivers/atm/he.ko
2025-10-02T16:37:19.2583213Z LD [M] drivers/atm/horizon.ko
2025-10-02T16:37:19.2602136Z LD [M] drivers/atm/idt77252.ko
2025-10-02T16:37:19.2669156Z LD [M] drivers/atm/lanai.ko
2025-10-02T16:37:19.2670157Z LD [M] drivers/atm/iphase.ko
2025-10-02T16:37:19.2717070Z LD [M] drivers/atm/nicstar.ko
2025-10-02T16:37:19.2728101Z LD [M] drivers/atm/solos-pci.ko
2025-10-02T16:37:19.2823547Z LD [M] drivers/atm/uPD98402.ko
2025-10-02T16:37:19.2841915Z LD [M] drivers/atm/suni.ko
2025-10-02T16:37:19.2874883Z LD [M] drivers/atm/zatm.ko
2025-10-02T16:37:19.2881345Z LD [M] drivers/auxdisplay/cfag12864b.ko
2025-10-02T16:37:19.2947900Z LD [M] drivers/auxdisplay/charlcd.ko
2025-10-02T16:37:19.2954810Z LD [M] drivers/auxdisplay/cfag12864bfb.ko
2025-10-02T16:37:19.3017900Z LD [M] drivers/auxdisplay/hd44780.ko
2025-10-02T16:37:19.3025890Z LD [M] drivers/auxdisplay/img-ascii-lcd.ko
2025-10-02T16:37:19.3045902Z LD [M] drivers/auxdisplay/ks0108.ko
2025-10-02T16:37:19.3097996Z LD [M] drivers/auxdisplay/panel.ko
2025-10-02T16:37:19.3125628Z LD [M] drivers/base/regmap/regmap-sdw.ko
2025-10-02T16:37:19.3127115Z LD [M] drivers/base/regmap/regmap-sccb.ko
2025-10-02T16:37:19.3131766Z LD [M] drivers/base/regmap/regmap-slimbus.ko
2025-10-02T16:37:19.3166201Z LD [M] drivers/base/regmap/regmap-spi-avmm.ko
2025-10-02T16:37:19.3223777Z LD [M] drivers/base/regmap/regmap-w1.ko
2025-10-02T16:37:19.3229035Z LD [M] drivers/bcma/bcma.ko
2025-10-02T16:37:19.3269378Z LD [M] drivers/block/brd.ko
2025-10-02T16:37:19.3292943Z LD [M] drivers/block/cryptoloop.ko
2025-10-02T16:37:19.3297424Z LD [M] drivers/block/aoe/aoe.ko
2025-10-02T16:37:19.3336438Z LD [M] drivers/block/drbd/drbd.ko
2025-10-02T16:37:19.3441978Z LD [M] drivers/block/floppy.ko
2025-10-02T16:37:19.3445238Z LD [M] drivers/block/loop.ko
2025-10-02T16:37:19.3498573Z LD [M] drivers/block/mtip32xx/mtip32xx.ko
2025-10-02T16:37:19.3507401Z LD [M] drivers/block/nbd.ko
2025-10-02T16:37:19.3611749Z LD [M] drivers/block/null_blk/null_blk.ko
2025-10-02T16:37:19.3661201Z LD [M] drivers/block/pktcdvd.ko
2025-10-02T16:37:19.3697953Z LD [M] drivers/block/rnbd/rnbd-client.ko
2025-10-02T16:37:19.3712834Z LD [M] drivers/block/rbd.ko
2025-10-02T16:37:19.3807522Z LD [M] drivers/block/rnbd/rnbd-server.ko
2025-10-02T16:37:19.3874812Z LD [M] drivers/block/rsxx/rsxx.ko
2025-10-02T16:37:19.3910655Z LD [M] drivers/block/skd.ko
2025-10-02T16:37:19.3942016Z LD [M] drivers/block/umem.ko
2025-10-02T16:37:19.3957110Z LD [M] drivers/block/virtio_blk.ko
2025-10-02T16:37:19.3993068Z LD [M] drivers/block/xen-blkback/xen-blkback.ko
2025-10-02T16:37:19.4068560Z LD [M] drivers/block/xen-blkfront.ko
2025-10-02T16:37:19.4105706Z LD [M] drivers/block/zram/zram.ko
2025-10-02T16:37:19.4116658Z LD [M] drivers/bluetooth/ath3k.ko
2025-10-02T16:37:19.4126332Z LD [M] drivers/bluetooth/bcm203x.ko
2025-10-02T16:37:19.4133729Z LD [M] drivers/bluetooth/bfusb.ko
2025-10-02T16:37:19.4243676Z LD [M] drivers/bluetooth/bluecard_cs.ko
2025-10-02T16:37:19.4260473Z LD [M] drivers/bluetooth/bpa10x.ko
2025-10-02T16:37:19.4297898Z LD [M] drivers/bluetooth/btbcm.ko
2025-10-02T16:37:19.4304915Z LD [M] drivers/bluetooth/bt3c_cs.ko
2025-10-02T16:37:19.4350530Z LD [M] drivers/bluetooth/btintel.ko
2025-10-02T16:37:19.4391333Z LD [M] drivers/bluetooth/btmrvl.ko
2025-10-02T16:37:19.4434040Z LD [M] drivers/bluetooth/btmrvl_sdio.ko
2025-10-02T16:37:19.4441893Z LD [M] drivers/bluetooth/btmtksdio.ko
2025-10-02T16:37:19.4478150Z LD [M] drivers/bluetooth/btmtkuart.ko
2025-10-02T16:37:19.4564664Z LD [M] drivers/bluetooth/btqca.ko
2025-10-02T16:37:19.4569387Z LD [M] drivers/bluetooth/btrtl.ko
2025-10-02T16:37:19.4581502Z LD [M] drivers/bluetooth/btrsi.ko
2025-10-02T16:37:19.4583486Z LD [M] drivers/bluetooth/btsdio.ko
2025-10-02T16:37:19.4637828Z LD [M] drivers/bluetooth/btusb.ko
2025-10-02T16:37:19.4694950Z LD [M] drivers/bluetooth/dtl1_cs.ko
2025-10-02T16:37:19.4732030Z LD [M] drivers/bluetooth/hci_nokia.ko
2025-10-02T16:37:19.4738094Z LD [M] drivers/bluetooth/hci_uart.ko
2025-10-02T16:37:19.4777269Z LD [M] drivers/bluetooth/hci_vhci.ko
2025-10-02T16:37:19.4841757Z LD [M] drivers/bus/mhi/host/mhi.ko
2025-10-02T16:37:19.4887169Z LD [M] drivers/cdrom/cdrom.ko
2025-10-02T16:37:19.4895602Z LD [M] drivers/char/agp/agpgart.ko
2025-10-02T16:37:19.4919369Z LD [M] drivers/char/agp/amd64-agp.ko
2025-10-02T16:37:19.5030671Z LD [M] drivers/char/agp/intel-agp.ko
2025-10-02T16:37:19.5055830Z LD [M] drivers/char/agp/intel-gtt.ko
2025-10-02T16:37:19.5102394Z LD [M] drivers/char/agp/via-agp.ko
2025-10-02T16:37:19.5109943Z LD [M] drivers/char/agp/sis-agp.ko
2025-10-02T16:37:19.5176620Z LD [M] drivers/char/applicom.ko
2025-10-02T16:37:19.5212789Z LD [M] drivers/char/hw_random/amd-rng.ko
2025-10-02T16:37:19.5213849Z LD [M] drivers/char/hangcheck-timer.ko
2025-10-02T16:37:19.5249270Z LD [M] drivers/char/hw_random/ba431-rng.ko
2025-10-02T16:37:19.5267062Z LD [M] drivers/char/hw_random/intel-rng.ko
2025-10-02T16:37:19.5302061Z LD [M] drivers/char/hw_random/via-rng.ko
2025-10-02T16:37:19.5308395Z LD [M] drivers/char/hw_random/rng-core.ko
2025-10-02T16:37:19.5347462Z LD [M] drivers/char/hw_random/timeriomem-rng.ko
2025-10-02T16:37:19.5351412Z LD [M] drivers/char/hw_random/virtio-rng.ko
2025-10-02T16:37:19.5374993Z LD [M] drivers/char/hw_random/xiphera-trng.ko
2025-10-02T16:37:19.5435609Z LD [M] drivers/char/ipmi/ipmi_devintf.ko
2025-10-02T16:37:19.5454398Z LD [M] drivers/char/ipmi/ipmi_msghandler.ko
2025-10-02T16:37:19.5464343Z LD [M] drivers/char/ipmi/ipmb_dev_int.ko
2025-10-02T16:37:19.5513887Z LD [M] drivers/char/ipmi/ipmi_poweroff.ko
2025-10-02T16:37:19.5516983Z LD [M] drivers/char/ipmi/ipmi_si.ko
2025-10-02T16:37:19.5559283Z LD [M] drivers/char/ipmi/ipmi_ssif.ko
2025-10-02T16:37:19.5584178Z LD [M] drivers/char/ipmi/ipmi_watchdog.ko
2025-10-02T16:37:19.5663040Z LD [M] drivers/char/mwave/mwave.ko
2025-10-02T16:37:19.5685433Z LD [M] drivers/char/lp.ko
2025-10-02T16:37:19.5723896Z LD [M] drivers/char/pcmcia/cm4000_cs.ko
2025-10-02T16:37:19.5769420Z LD [M] drivers/char/pcmcia/cm4040_cs.ko
2025-10-02T16:37:19.5790994Z LD [M] drivers/char/pcmcia/synclink_cs.ko
2025-10-02T16:37:19.5804040Z LD [M] drivers/char/pcmcia/scr24x_cs.ko
2025-10-02T16:37:19.5812188Z LD [M] drivers/char/ppdev.ko
2025-10-02T16:37:19.5874061Z LD [M] drivers/char/raw.ko
2025-10-02T16:37:19.5925237Z LD [M] drivers/char/tlclk.ko
2025-10-02T16:37:19.5946434Z LD [M] drivers/char/tpm/st33zp24/tpm_st33zp24.ko
2025-10-02T16:37:19.5985561Z LD [M] drivers/char/tpm/tpm.ko
2025-10-02T16:37:19.5988451Z LD [M] drivers/char/tpm/st33zp24/tpm_st33zp24_i2c.ko
2025-10-02T16:37:19.6018559Z LD [M] drivers/char/tpm/st33zp24/tpm_st33zp24_spi.ko
2025-10-02T16:37:19.6069849Z LD [M] drivers/char/tpm/tpm_atmel.ko
2025-10-02T16:37:19.6130922Z LD [M] drivers/char/tpm/tpm_i2c_atmel.ko
2025-10-02T16:37:19.6131790Z LD [M] drivers/char/tpm/tpm_crb.ko
2025-10-02T16:37:19.6132793Z LD [M] drivers/char/tpm/tpm_i2c_infineon.ko
2025-10-02T16:37:19.6204516Z LD [M] drivers/char/tpm/tpm_i2c_nuvoton.ko
2025-10-02T16:37:19.6230382Z LD [M] drivers/char/tpm/tpm_infineon.ko
2025-10-02T16:37:19.6240171Z LD [M] drivers/char/tpm/tpm_tis.ko
2025-10-02T16:37:19.6271508Z LD [M] drivers/char/tpm/tpm_nsc.ko
2025-10-02T16:37:19.6276907Z LD [M] drivers/char/tpm/tpm_tis_core.ko
2025-10-02T16:37:19.6317812Z LD [M] drivers/char/tpm/tpm_tis_spi.ko
2025-10-02T16:37:19.6382618Z LD [M] drivers/char/tpm/tpm_vtpm_proxy.ko
2025-10-02T16:37:19.6383767Z LD [M] drivers/char/tpm/xen-tpmfront.ko
2025-10-02T16:37:19.6389438Z LD [M] drivers/char/virtio_console.ko
2025-10-02T16:37:19.6417037Z LD [M] drivers/char/xillybus/xillybus_core.ko
2025-10-02T16:37:19.6494500Z LD [M] drivers/char/xillybus/xillybus_pcie.ko
2025-10-02T16:37:19.6521703Z LD [M] drivers/clk/clk-cs2000-cp.ko
2025-10-02T16:37:19.6536384Z LD [M] drivers/clk/clk-palmas.ko
2025-10-02T16:37:19.6556689Z LD [M] drivers/clk/clk-cdce706.ko
2025-10-02T16:37:19.6557566Z LD [M] drivers/clk/clk-max9485.ko
2025-10-02T16:37:19.6606216Z LD [M] drivers/clk/clk-pwm.ko
2025-10-02T16:37:19.6664189Z LD [M] drivers/clk/clk-s2mps11.ko
2025-10-02T16:37:19.6682567Z LD [M] drivers/clk/clk-si5341.ko
2025-10-02T16:37:19.6694210Z LD [M] drivers/clk/clk-si5351.ko
2025-10-02T16:37:19.6740803Z LD [M] drivers/clk/clk-si544.ko
2025-10-02T16:37:19.6764907Z LD [M] drivers/clk/clk-wm831x.ko
2025-10-02T16:37:19.6769174Z LD [M] drivers/clk/clk-twl6040.ko
2025-10-02T16:37:19.6802314Z LD [M] drivers/counter/counter.ko
2025-10-02T16:37:19.6847946Z LD [M] drivers/cpufreq/acpi-cpufreq.ko
2025-10-02T16:37:19.6855612Z LD [M] drivers/cpufreq/amd_freq_sensitivity.ko
2025-10-02T16:37:19.6905705Z LD [M] drivers/cpufreq/p4-clockmod.ko
2025-10-02T16:37:19.6940483Z LD [M] drivers/cpufreq/pcc-cpufreq.ko
2025-10-02T16:37:19.6950304Z LD [M] drivers/cpufreq/powernow-k8.ko
2025-10-02T16:37:19.6965659Z LD [M] drivers/cpufreq/speedstep-lib.ko
2025-10-02T16:37:19.7028127Z LD [M] drivers/cpuidle/cpuidle-haltpoll.ko
2025-10-02T16:37:19.7036540Z LD [M] drivers/crypto/amlogic/amlogic-gxl-crypto.ko
2025-10-02T16:37:19.7070518Z LD [M] drivers/crypto/atmel-i2c.ko
2025-10-02T16:37:19.7090301Z LD [M] drivers/crypto/atmel-ecc.ko
2025-10-02T16:37:19.7091654Z LD [M] drivers/crypto/atmel-sha204a.ko
2025-10-02T16:37:19.7125191Z LD [M] drivers/crypto/cavium/nitrox/n5pf.ko
2025-10-02T16:37:19.7194605Z LD [M] drivers/crypto/ccp/ccp-crypto.ko
2025-10-02T16:37:19.7195686Z LD [M] drivers/crypto/ccp/ccp.ko
2025-10-02T16:37:19.7254045Z LD [M] drivers/crypto/inside-secure/crypto_safexcel.ko
2025-10-02T16:37:19.7256775Z LD [M] drivers/crypto/chelsio/chcr.ko
2025-10-02T16:37:19.7326058Z LD [M] drivers/crypto/padlock-aes.ko
2025-10-02T16:37:19.7364460Z LD [M] drivers/crypto/padlock-sha.ko
2025-10-02T16:37:19.7435851Z LD [M] drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko
2025-10-02T16:37:19.7469124Z LD [M] drivers/crypto/qat/qat_c3xxxvf/qat_c3xxxvf.ko
2025-10-02T16:37:19.7511154Z LD [M] drivers/crypto/qat/qat_c62x/qat_c62x.ko
2025-10-02T16:37:19.7540606Z LD [M] drivers/crypto/qat/qat_c62xvf/qat_c62xvf.ko
2025-10-02T16:37:19.7542753Z LD [M] drivers/crypto/qat/qat_common/intel_qat.ko
2025-10-02T16:37:19.7547120Z LD [M] drivers/crypto/qat/qat_dh895xcc/qat_dh895xcc.ko
2025-10-02T16:37:19.7631807Z LD [M] drivers/crypto/qat/qat_dh895xccvf/qat_dh895xccvf.ko
2025-10-02T16:37:19.7645355Z LD [M] drivers/crypto/virtio/virtio_crypto.ko
2025-10-02T16:37:19.7652885Z LD [M] drivers/dax/device_dax.ko
2025-10-02T16:37:19.7721695Z LD [M] drivers/dax/hmem/dax_hmem.ko
2025-10-02T16:37:19.7787717Z LD [M] drivers/dax/pmem/dax_pmem_compat.ko
2025-10-02T16:37:19.7807830Z LD [M] drivers/dax/kmem.ko
2025-10-02T16:37:19.7833968Z LD [M] drivers/dax/pmem/dax_pmem_core.ko
2025-10-02T16:37:19.7836168Z LD [M] drivers/dax/pmem/dax_pmem.ko
2025-10-02T16:37:19.7930847Z LD [M] drivers/dca/dca.ko
2025-10-02T16:37:19.7983583Z LD [M] drivers/devfreq/governor_performance.ko
2025-10-02T16:37:19.7986503Z LD [M] drivers/devfreq/governor_passive.ko
2025-10-02T16:37:19.7987710Z LD [M] drivers/devfreq/governor_simpleondemand.ko
2025-10-02T16:37:19.7990118Z LD [M] drivers/devfreq/governor_powersave.ko
2025-10-02T16:37:19.8004877Z LD [M] drivers/devfreq/governor_userspace.ko
2025-10-02T16:37:19.8050757Z LD [M] drivers/dma/altera-msgdma.ko
2025-10-02T16:37:19.8084245Z LD [M] drivers/dma/dw/dw_dmac.ko
2025-10-02T16:37:19.8095301Z LD [M] drivers/dma/dw-edma/dw-edma-pcie.ko
2025-10-02T16:37:19.8128892Z LD [M] drivers/dma/idma64.ko
2025-10-02T16:37:19.8129870Z LD [M] drivers/dma/dw-edma/dw-edma.ko
2025-10-02T16:37:19.8199664Z LD [M] drivers/dma/ioat/ioatdma.ko
2025-10-02T16:37:19.8209089Z LD [M] drivers/dma/plx_dma.ko
2025-10-02T16:37:19.8218964Z LD [M] drivers/dma/idxd/idxd.ko
2025-10-02T16:37:19.8262143Z LD [M] drivers/dma/qcom/hdma.ko
2025-10-02T16:37:19.8313498Z LD [M] drivers/dma/qcom/hdma_mgmt.ko
2025-10-02T16:37:19.8344420Z LD [M] drivers/dma/sf-pdma/sf-pdma.ko
2025-10-02T16:37:19.8370076Z LD [M] drivers/edac/amd64_edac_mod.ko
2025-10-02T16:37:19.8441237Z LD [M] drivers/edac/e752x_edac.ko
2025-10-02T16:37:19.8467586Z LD [M] drivers/edac/i10nm_edac.ko
2025-10-02T16:37:19.8474165Z LD [M] drivers/edac/edac_mce_amd.ko
2025-10-02T16:37:19.8522247Z LD [M] drivers/edac/i3000_edac.ko
2025-10-02T16:37:19.8530297Z LD [M] drivers/edac/i3200_edac.ko
2025-10-02T16:37:19.8551856Z LD [M] drivers/edac/i5000_edac.ko
2025-10-02T16:37:19.8616093Z LD [M] drivers/edac/i5100_edac.ko
2025-10-02T16:37:19.8640476Z LD [M] drivers/edac/i7300_edac.ko
2025-10-02T16:37:19.8641284Z LD [M] drivers/edac/i5400_edac.ko
2025-10-02T16:37:19.8669369Z LD [M] drivers/edac/i82975x_edac.ko
2025-10-02T16:37:19.8677599Z LD [M] drivers/edac/i7core_edac.ko
2025-10-02T16:37:19.8723761Z LD [M] drivers/edac/ie31200_edac.ko
2025-10-02T16:37:19.8765498Z LD [M] drivers/edac/pnd2_edac.ko
2025-10-02T16:37:19.8791641Z LD [M] drivers/edac/sb_edac.ko
2025-10-02T16:37:19.8799413Z LD [M] drivers/edac/skx_edac.ko
2025-10-02T16:37:19.8840772Z LD [M] drivers/edac/skx_edac_common.ko
2025-10-02T16:37:19.8842524Z LD [M] drivers/edac/x38_edac.ko
2025-10-02T16:37:19.8907132Z LD [M] drivers/extcon/extcon-adc-jack.ko
2025-10-02T16:37:19.8960963Z LD [M] drivers/extcon/extcon-arizona.ko
2025-10-02T16:37:19.8984220Z LD [M] drivers/extcon/extcon-fsa9480.ko
2025-10-02T16:37:19.8988546Z LD [M] drivers/extcon/extcon-axp288.ko
2025-10-02T16:37:19.9006720Z LD [M] drivers/extcon/extcon-gpio.ko
2025-10-02T16:37:19.9017628Z LD [M] drivers/extcon/extcon-intel-cht-wc.ko
2025-10-02T16:37:19.9071541Z LD [M] drivers/extcon/extcon-intel-int3496.ko
2025-10-02T16:37:19.9114865Z LD [M] drivers/extcon/extcon-intel-mrfld.ko
2025-10-02T16:37:19.9128811Z LD [M] drivers/extcon/extcon-max14577.ko
2025-10-02T16:37:19.9170732Z LD [M] drivers/extcon/extcon-max77693.ko
2025-10-02T16:37:19.9200375Z LD [M] drivers/extcon/extcon-max3355.ko
2025-10-02T16:37:19.9201415Z LD [M] drivers/extcon/extcon-max77843.ko
2025-10-02T16:37:19.9215647Z LD [M] drivers/extcon/extcon-max8997.ko
2025-10-02T16:37:19.9258642Z LD [M] drivers/extcon/extcon-palmas.ko
2025-10-02T16:37:19.9289144Z LD [M] drivers/extcon/extcon-ptn5150.ko
2025-10-02T16:37:19.9320602Z LD [M] drivers/extcon/extcon-rt8973a.ko
2025-10-02T16:37:19.9331826Z LD [M] drivers/extcon/extcon-sm5502.ko
2025-10-02T16:37:19.9356594Z LD [M] drivers/extcon/extcon-usb-gpio.ko
2025-10-02T16:37:19.9398501Z LD [M] drivers/extcon/extcon-usbc-cros-ec.ko
2025-10-02T16:37:19.9443043Z LD [M] drivers/firewire/firewire-core.ko
2025-10-02T16:37:19.9461637Z LD [M] drivers/firewire/firewire-ohci.ko
2025-10-02T16:37:19.9468411Z LD [M] drivers/firewire/firewire-net.ko
2025-10-02T16:37:19.9530110Z LD [M] drivers/firewire/firewire-sbp2.ko
2025-10-02T16:37:19.9535307Z LD [M] drivers/firewire/nosy.ko
2025-10-02T16:37:19.9573812Z LD [M] drivers/firmware/edd.ko
2025-10-02T16:37:19.9607675Z LD [M] drivers/firmware/efi/capsule-loader.ko
2025-10-02T16:37:19.9652803Z LD [M] drivers/firmware/efi/efibc.ko
2025-10-02T16:37:19.9686817Z LD [M] drivers/firmware/google/coreboot_table.ko
2025-10-02T16:37:19.9701764Z LD [M] drivers/firmware/google/framebuffer-coreboot.ko
2025-10-02T16:37:19.9721868Z LD [M] drivers/firmware/google/memconsole-coreboot.ko
2025-10-02T16:37:19.9781060Z LD [M] drivers/firmware/google/memconsole.ko
2025-10-02T16:37:19.9785015Z LD [M] drivers/firmware/google/vpd-sysfs.ko
2025-10-02T16:37:19.9797842Z LD [M] drivers/firmware/iscsi_ibft.ko
2025-10-02T16:37:19.9826078Z LD [M] drivers/firmware/qemu_fw_cfg.ko
2025-10-02T16:37:19.9848089Z LD [M] drivers/fpga/altera-cvp.ko
2025-10-02T16:37:19.9903926Z LD [M] drivers/fpga/altera-pr-ip-core.ko
2025-10-02T16:37:19.9940054Z LD [M] drivers/fpga/altera-freeze-bridge.ko
2025-10-02T16:37:19.9950696Z LD [M] drivers/fpga/dfl-afu.ko
2025-10-02T16:37:19.9951677Z LD [M] drivers/fpga/dfl-fme-br.ko
2025-10-02T16:37:19.9958864Z LD [M] drivers/fpga/altera-ps-spi.ko
2025-10-02T16:37:20.0024059Z LD [M] drivers/fpga/dfl-fme-mgr.ko
2025-10-02T16:37:20.0053946Z LD [M] drivers/fpga/dfl-fme-region.ko
2025-10-02T16:37:20.0104034Z LD [M] drivers/fpga/dfl-fme.ko
2025-10-02T16:37:20.0113117Z LD [M] drivers/fpga/dfl.ko
2025-10-02T16:37:20.0119252Z LD [M] drivers/fpga/dfl-pci.ko
2025-10-02T16:37:20.0180467Z LD [M] drivers/fpga/fpga-mgr.ko
2025-10-02T16:37:20.0188034Z LD [M] drivers/fpga/fpga-bridge.ko
2025-10-02T16:37:20.0237313Z LD [M] drivers/fpga/fpga-region.ko
2025-10-02T16:37:20.0243207Z LD [M] drivers/fpga/machxo2-spi.ko
2025-10-02T16:37:20.0303710Z LD [M] drivers/fpga/xilinx-spi.ko
2025-10-02T16:37:20.0311624Z LD [M] drivers/fpga/xilinx-pr-decoupler.ko
2025-10-02T16:37:20.0346459Z LD [M] drivers/gnss/gnss-mtk.ko
2025-10-02T16:37:20.0350994Z LD [M] drivers/gnss/gnss-serial.ko
2025-10-02T16:37:20.0383011Z LD [M] drivers/gnss/gnss-sirf.ko
2025-10-02T16:37:20.0420013Z LD [M] drivers/gnss/gnss-ubx.ko
2025-10-02T16:37:20.0453533Z LD [M] drivers/gnss/gnss.ko
2025-10-02T16:37:20.0475001Z LD [M] drivers/gpio/gpio-adp5520.ko
2025-10-02T16:37:20.0491811Z LD [M] drivers/gpio/gpio-adp5588.ko
2025-10-02T16:37:20.0536514Z LD [M] drivers/gpio/gpio-amd-fch.ko
2025-10-02T16:37:20.0543040Z LD [M] drivers/gpio/gpio-aggregator.ko
2025-10-02T16:37:20.0570647Z LD [M] drivers/gpio/gpio-amd8111.ko
2025-10-02T16:37:20.0610944Z LD [M] drivers/gpio/gpio-amdpt.ko
2025-10-02T16:37:20.0640040Z LD [M] drivers/gpio/gpio-arizona.ko
2025-10-02T16:37:20.0674015Z LD [M] drivers/gpio/gpio-bd9571mwv.ko
2025-10-02T16:37:20.0683509Z LD [M] drivers/gpio/gpio-crystalcove.ko
2025-10-02T16:37:20.0700704Z LD [M] drivers/gpio/gpio-da9052.ko
2025-10-02T16:37:20.0768470Z LD [M] drivers/gpio/gpio-da9055.ko
2025-10-02T16:37:20.0800732Z LD [M] drivers/gpio/gpio-dwapb.ko
2025-10-02T16:37:20.0812996Z LD [M] drivers/gpio/gpio-exar.ko
2025-10-02T16:37:20.0814199Z LD [M] drivers/gpio/gpio-dln2.ko
2025-10-02T16:37:20.0845291Z LD [M] drivers/gpio/gpio-f7188x.ko
2025-10-02T16:37:20.0920040Z LD [M] drivers/gpio/gpio-generic.ko
2025-10-02T16:37:20.0950837Z LD [M] drivers/gpio/gpio-ich.ko
2025-10-02T16:37:20.0952065Z LD [M] drivers/gpio/gpio-it87.ko
2025-10-02T16:37:20.0953173Z LD [M] drivers/gpio/gpio-janz-ttl.ko
2025-10-02T16:37:20.1017280Z LD [M] drivers/gpio/gpio-kempld.ko
2025-10-02T16:37:20.1060939Z LD [M] drivers/gpio/gpio-lp3943.ko
2025-10-02T16:37:20.1086714Z LD [M] drivers/gpio/gpio-lp873x.ko
2025-10-02T16:37:20.1111684Z LD [M] drivers/gpio/gpio-madera.ko
2025-10-02T16:37:20.1112495Z LD [M] drivers/gpio/gpio-max3191x.ko
2025-10-02T16:37:20.1152012Z LD [M] drivers/gpio/gpio-max7300.ko
2025-10-02T16:37:20.1203076Z LD [M] drivers/gpio/gpio-max7301.ko
2025-10-02T16:37:20.1222135Z LD [M] drivers/gpio/gpio-max730x.ko
2025-10-02T16:37:20.1254723Z LD [M] drivers/gpio/gpio-max732x.ko
2025-10-02T16:37:20.1280038Z LD [M] drivers/gpio/gpio-mb86s7x.ko
2025-10-02T16:37:20.1280873Z LD [M] drivers/gpio/gpio-mc33880.ko
2025-10-02T16:37:20.1338447Z LD [M] drivers/gpio/gpio-menz127.ko
2025-10-02T16:37:20.1363311Z LD [M] drivers/gpio/gpio-ml-ioh.ko
2025-10-02T16:37:20.1387762Z LD [M] drivers/gpio/gpio-mockup.ko
2025-10-02T16:37:20.1412948Z LD [M] drivers/gpio/gpio-pca953x.ko
2025-10-02T16:37:20.1436002Z LD [M] drivers/gpio/gpio-pca9570.ko
2025-10-02T16:37:20.1463543Z LD [M] drivers/gpio/gpio-pcf857x.ko
2025-10-02T16:37:20.1534008Z LD [M] drivers/gpio/gpio-pci-idio-16.ko
2025-10-02T16:37:20.1535163Z LD [M] drivers/gpio/gpio-pcie-idio-24.ko
2025-10-02T16:37:20.1560511Z LD [M] drivers/gpio/gpio-pisosr.ko
2025-10-02T16:37:20.1622047Z LD [M] drivers/gpio/gpio-rdc321x.ko
2025-10-02T16:37:20.1623372Z LD [M] drivers/gpio/gpio-sch.ko
2025-10-02T16:37:20.1668408Z LD [M] drivers/gpio/gpio-sch311x.ko
2025-10-02T16:37:20.1694976Z LD [M] drivers/gpio/gpio-siox.ko
2025-10-02T16:37:20.1696312Z LD [M] drivers/gpio/gpio-tpic2810.ko
2025-10-02T16:37:20.1745152Z LD [M] drivers/gpio/gpio-tps65086.ko
2025-10-02T16:37:20.1780417Z LD [M] drivers/gpio/gpio-tps65912.ko
2025-10-02T16:37:20.1833922Z LD [M] drivers/gpio/gpio-tqmx86.ko
2025-10-02T16:37:20.1834945Z LD [M] drivers/gpio/gpio-twl4030.ko
2025-10-02T16:37:20.1870128Z LD [M] drivers/gpio/gpio-twl6040.ko
2025-10-02T16:37:20.1885152Z LD [M] drivers/gpio/gpio-ucb1400.ko
2025-10-02T16:37:20.1901982Z LD [M] drivers/gpio/gpio-viperboard.ko
2025-10-02T16:37:20.1964709Z LD [M] drivers/gpio/gpio-vx855.ko
2025-10-02T16:37:20.1974005Z LD [M] drivers/gpio/gpio-wcove.ko
2025-10-02T16:37:20.2016966Z LD [M] drivers/gpio/gpio-wm831x.ko
2025-10-02T16:37:20.2025783Z LD [M] drivers/gpio/gpio-winbond.ko
2025-10-02T16:37:20.2049820Z LD [M] drivers/gpio/gpio-wm8350.ko
2025-10-02T16:37:20.2105389Z LD [M] drivers/gpio/gpio-wm8994.ko
2025-10-02T16:37:20.2117476Z LD [M] drivers/gpio/gpio-ws16c48.ko
2025-10-02T16:37:20.2161444Z LD [M] drivers/gpio/gpio-xilinx.ko
2025-10-02T16:37:20.2198715Z LD [M] drivers/gpio/gpio-xra1403.ko
2025-10-02T16:37:20.2199895Z LD [M] drivers/gpu/drm/amd/amdgpu/amdgpu.ko
2025-10-02T16:37:20.2246317Z LD [M] drivers/gpu/drm/ast/ast.ko
2025-10-02T16:37:20.2270395Z LD [M] drivers/gpu/drm/bochs/bochs-drm.ko
2025-10-02T16:37:20.2331107Z LD [M] drivers/gpu/drm/bridge/analogix/analogix_dp.ko
2025-10-02T16:37:20.2360966Z LD [M] drivers/gpu/drm/bridge/analogix/analogix-anx78xx.ko
2025-10-02T16:37:20.2446379Z LD [M] drivers/gpu/drm/drm.ko
2025-10-02T16:37:20.2512685Z LD [M] drivers/gpu/drm/drm_kms_helper.ko
2025-10-02T16:37:20.2555084Z LD [M] drivers/gpu/drm/drm_mipi_dbi.ko
2025-10-02T16:37:20.2562663Z LD [M] drivers/gpu/drm/drm_ttm_helper.ko
2025-10-02T16:37:20.2774107Z LD [M] drivers/gpu/drm/drm_vram_helper.ko
2025-10-02T16:37:20.2835476Z LD [M] drivers/gpu/drm/gma500/gma500_gfx.ko
2025-10-02T16:37:20.3044722Z LD [M] drivers/gpu/drm/i2c/ch7006.ko
2025-10-02T16:37:20.3069862Z LD [M] drivers/gpu/drm/i2c/sil164.ko
2025-10-02T16:37:20.3263218Z LD [M] drivers/gpu/drm/i2c/tda9950.ko
2025-10-02T16:37:20.3265664Z LD [M] drivers/gpu/drm/i2c/tda998x.ko
2025-10-02T16:37:20.3399965Z LD [M] drivers/gpu/drm/i915/gvt/kvmgt.ko
2025-10-02T16:37:20.3440414Z LD [M] drivers/gpu/drm/i915/i915.ko
2025-10-02T16:37:20.3596971Z LD [M] drivers/gpu/drm/mgag200/mgag200.ko
2025-10-02T16:37:20.3632857Z LD [M] drivers/gpu/drm/nouveau/nouveau.ko
2025-10-02T16:37:20.3761171Z LD [M] drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.ko
2025-10-02T16:37:20.3922469Z LD [M] drivers/gpu/drm/qxl/qxl.ko
2025-10-02T16:37:20.3978082Z LD [M] drivers/gpu/drm/radeon/radeon.ko
2025-10-02T16:37:20.4879064Z LD [M] drivers/gpu/drm/scheduler/gpu-sched.ko
2025-10-02T16:37:20.5151086Z LD [M] drivers/gpu/drm/tiny/cirrus.ko
2025-10-02T16:37:20.5404603Z LD [M] drivers/gpu/drm/tiny/gm12u320.ko
2025-10-02T16:37:20.5667737Z LD [M] drivers/gpu/drm/tiny/hx8357d.ko
2025-10-02T16:37:20.5905873Z LD [M] drivers/gpu/drm/tiny/ili9225.ko
2025-10-02T16:37:20.6133271Z LD [M] drivers/gpu/drm/tiny/ili9341.ko
2025-10-02T16:37:20.6335324Z LD [M] drivers/gpu/drm/tiny/ili9486.ko
2025-10-02T16:37:20.6573781Z LD [M] drivers/gpu/drm/tiny/mi0283qt.ko
2025-10-02T16:37:20.6822618Z LD [M] drivers/gpu/drm/tiny/repaper.ko
2025-10-02T16:37:20.6835830Z LD [M] drivers/gpu/drm/tiny/st7586.ko
2025-10-02T16:37:20.7001959Z LD [M] drivers/gpu/drm/tiny/st7735r.ko
2025-10-02T16:37:20.7120769Z LD [M] drivers/gpu/drm/ttm/ttm.ko
2025-10-02T16:37:20.7277870Z LD [M] drivers/gpu/drm/udl/udl.ko
2025-10-02T16:37:20.7606665Z LD [M] drivers/gpu/drm/vboxvideo/vboxvideo.ko
2025-10-02T16:37:20.7670382Z LD [M] drivers/gpu/drm/vgem/vgem.ko
2025-10-02T16:37:20.7865730Z LD [M] drivers/gpu/drm/virtio/virtio-gpu.ko
2025-10-02T16:37:20.7928752Z LD [M] drivers/gpu/drm/vkms/vkms.ko
2025-10-02T16:37:20.8280284Z LD [M] drivers/gpu/drm/vmwgfx/vmwgfx.ko
2025-10-02T16:37:20.8390687Z LD [M] drivers/gpu/drm/xen/drm_xen_front.ko
2025-10-02T16:37:20.8678829Z LD [M] drivers/hid/hid-a4tech.ko
2025-10-02T16:37:20.8937861Z LD [M] drivers/hid/hid-accutouch.ko
2025-10-02T16:37:20.9146863Z LD [M] drivers/hid/hid-alps.ko
2025-10-02T16:37:20.9295366Z LD [M] drivers/hid/hid-appleir.ko
2025-10-02T16:37:20.9298874Z LD [M] drivers/hid/hid-apple.ko
2025-10-02T16:37:20.9449611Z LD [M] drivers/hid/hid-asus.ko
2025-10-02T16:37:20.9560318Z LD [M] drivers/hid/hid-aureal.ko
2025-10-02T16:37:20.9666904Z LD [M] drivers/hid/hid-axff.ko
2025-10-02T16:37:20.9737234Z LD [M] drivers/hid/hid-belkin.ko
2025-10-02T16:37:20.9858560Z LD [M] drivers/hid/hid-betopff.ko
2025-10-02T16:37:20.9976513Z LD [M] drivers/hid/hid-bigbenff.ko
2025-10-02T16:37:21.0076193Z LD [M] drivers/hid/hid-cherry.ko
2025-10-02T16:37:21.0176095Z LD [M] drivers/hid/hid-chicony.ko
2025-10-02T16:37:21.0287506Z LD [M] drivers/hid/hid-cmedia.ko
2025-10-02T16:37:21.0398849Z LD [M] drivers/hid/hid-corsair.ko
2025-10-02T16:37:21.0460159Z LD [M] drivers/hid/hid-cougar.ko
2025-10-02T16:37:21.0604964Z LD [M] drivers/hid/hid-cp2112.ko
2025-10-02T16:37:21.0667441Z LD [M] drivers/hid/hid-creative-sb0540.ko
2025-10-02T16:37:21.0755041Z LD [M] drivers/hid/hid-cypress.ko
2025-10-02T16:37:21.0767175Z LD [M] drivers/hid/hid-dr.ko
2025-10-02T16:37:21.0857829Z LD [M] drivers/hid/hid-elan.ko
2025-10-02T16:37:21.0899142Z LD [M] drivers/hid/hid-elecom.ko
2025-10-02T16:37:21.0969794Z LD [M] drivers/hid/hid-emsff.ko
2025-10-02T16:37:21.0970863Z LD [M] drivers/hid/hid-elo.ko
2025-10-02T16:37:21.1096044Z LD [M] drivers/hid/hid-ezkey.ko
2025-10-02T16:37:21.1130624Z LD [M] drivers/hid/hid-gaff.ko
2025-10-02T16:37:21.1180644Z LD [M] drivers/hid/hid-gembird.ko
2025-10-02T16:37:21.1208404Z LD [M] drivers/hid/hid-gfrm.ko
2025-10-02T16:37:21.1288440Z LD [M] drivers/hid/hid-glorious.ko
2025-10-02T16:37:21.1329849Z LD [M] drivers/hid/hid-google-hammer.ko
2025-10-02T16:37:21.1398152Z LD [M] drivers/hid/hid-gt683r.ko
2025-10-02T16:37:21.1402268Z LD [M] drivers/hid/hid-gyration.ko
2025-10-02T16:37:21.1527409Z LD [M] drivers/hid/hid-holtek-kbd.ko
2025-10-02T16:37:21.1561334Z LD [M] drivers/hid/hid-holtekff.ko
2025-10-02T16:37:21.1571259Z LD [M] drivers/hid/hid-holtek-mouse.ko
2025-10-02T16:37:21.1694325Z LD [M] drivers/hid/hid-hyperv.ko
2025-10-02T16:37:21.1729129Z LD [M] drivers/hid/hid-ite.ko
2025-10-02T16:37:21.1730294Z LD [M] drivers/hid/hid-icade.ko
2025-10-02T16:37:21.1847546Z LD [M] drivers/hid/hid-keytouch.ko
2025-10-02T16:37:21.1866234Z LD [M] drivers/hid/hid-jabra.ko
2025-10-02T16:37:21.1870641Z LD [M] drivers/hid/hid-kensington.ko
2025-10-02T16:37:21.1977258Z LD [M] drivers/hid/hid-kye.ko
2025-10-02T16:37:21.2034713Z LD [M] drivers/hid/hid-led.ko
2025-10-02T16:37:21.2042872Z LD [M] drivers/hid/hid-lcpower.ko
2025-10-02T16:37:21.2113012Z LD [M] drivers/hid/hid-lenovo.ko
2025-10-02T16:37:21.2220829Z LD [M] drivers/hid/hid-logitech-dj.ko
2025-10-02T16:37:21.2223385Z LD [M] drivers/hid/hid-lg-g15.ko
2025-10-02T16:37:21.2315645Z LD [M] drivers/hid/hid-logitech-hidpp.ko
2025-10-02T16:37:21.2373074Z LD [M] drivers/hid/hid-logitech.ko
2025-10-02T16:37:21.2374048Z LD [M] drivers/hid/hid-macally.ko
2025-10-02T16:37:21.2407534Z LD [M] drivers/hid/hid-magicmouse.ko
2025-10-02T16:37:21.2480983Z LD [M] drivers/hid/hid-maltron.ko
2025-10-02T16:37:21.2499864Z LD [M] drivers/hid/hid-mcp2221.ko
2025-10-02T16:37:21.2580895Z LD [M] drivers/hid/hid-mf.ko
2025-10-02T16:37:21.2584648Z LD [M] drivers/hid/hid-microsoft.ko
2025-10-02T16:37:21.2593685Z LD [M] drivers/hid/hid-monterey.ko
2025-10-02T16:37:21.2632611Z LD [M] drivers/hid/hid-multitouch.ko
2025-10-02T16:37:21.2690104Z LD [M] drivers/hid/hid-nti.ko
2025-10-02T16:37:21.2731198Z LD [M] drivers/hid/hid-ntrig.ko
2025-10-02T16:37:21.2789099Z LD [M] drivers/hid/hid-ortek.ko
2025-10-02T16:37:21.2820629Z LD [M] drivers/hid/hid-penmount.ko
2025-10-02T16:37:21.2853699Z LD [M] drivers/hid/hid-picolcd.ko
2025-10-02T16:37:21.2869279Z LD [M] drivers/hid/hid-petalynx.ko
2025-10-02T16:37:21.2918055Z LD [M] drivers/hid/hid-plantronics.ko
2025-10-02T16:37:21.2936387Z LD [M] drivers/hid/hid-pl.ko
2025-10-02T16:37:21.3043473Z LD [M] drivers/hid/hid-primax.ko
2025-10-02T16:37:21.3047655Z LD [M] drivers/hid/hid-prodikeys.ko
2025-10-02T16:37:21.3085121Z LD [M] drivers/hid/hid-redragon.ko
2025-10-02T16:37:21.3110410Z LD [M] drivers/hid/hid-retrode.ko
2025-10-02T16:37:21.3163887Z LD [M] drivers/hid/hid-rmi.ko
2025-10-02T16:37:21.3179109Z LD [M] drivers/hid/hid-roccat-arvo.ko
2025-10-02T16:37:21.3271825Z LD [M] drivers/hid/hid-roccat-common.ko
2025-10-02T16:37:21.3272792Z LD [M] drivers/hid/hid-roccat-isku.ko
2025-10-02T16:37:21.3273606Z LD [M] drivers/hid/hid-roccat-kone.ko
2025-10-02T16:37:21.3324905Z LD [M] drivers/hid/hid-roccat-koneplus.ko
2025-10-02T16:37:21.3448789Z LD [M] drivers/hid/hid-roccat-konepure.ko
2025-10-02T16:37:21.3449979Z LD [M] drivers/hid/hid-roccat-lua.ko
2025-10-02T16:37:21.3451018Z LD [M] drivers/hid/hid-roccat-kovaplus.ko
2025-10-02T16:37:21.3491013Z LD [M] drivers/hid/hid-roccat-pyra.ko
2025-10-02T16:37:21.3541469Z LD [M] drivers/hid/hid-roccat-ryos.ko
2025-10-02T16:37:21.3566367Z LD [M] drivers/hid/hid-roccat-savu.ko
2025-10-02T16:37:21.3572189Z LD [M] drivers/hid/hid-roccat.ko
2025-10-02T16:37:21.3593983Z LD [M] drivers/hid/hid-saitek.ko
2025-10-02T16:37:21.3653119Z LD [M] drivers/hid/hid-samsung.ko
2025-10-02T16:37:21.3676179Z LD [M] drivers/hid/hid-sensor-hub.ko
2025-10-02T16:37:21.3702856Z LD [M] drivers/hid/hid-sjoy.ko
2025-10-02T16:37:21.3728583Z LD [M] drivers/hid/hid-sony.ko
2025-10-02T16:37:21.3764089Z LD [M] drivers/hid/hid-speedlink.ko
2025-10-02T16:37:21.3805572Z LD [M] drivers/hid/hid-steam.ko
2025-10-02T16:37:21.3820718Z LD [M] drivers/hid/hid-steelseries.ko
2025-10-02T16:37:21.3821861Z LD [M] drivers/hid/hid-sunplus.ko
2025-10-02T16:37:21.3899407Z LD [M] drivers/hid/hid-tivo.ko
2025-10-02T16:37:21.3918027Z LD [M] drivers/hid/hid-tmff.ko
2025-10-02T16:37:21.3964930Z LD [M] drivers/hid/hid-topseed.ko
2025-10-02T16:37:21.3991161Z LD [M] drivers/hid/hid-twinhan.ko
2025-10-02T16:37:21.3993333Z LD [M] drivers/hid/hid-u2fzero.ko
2025-10-02T16:37:21.4034069Z LD [M] drivers/hid/hid-uclogic.ko
2025-10-02T16:37:21.4053901Z LD [M] drivers/hid/hid-udraw-ps3.ko
2025-10-02T16:37:21.4101487Z LD [M] drivers/hid/hid-viewsonic.ko
2025-10-02T16:37:21.4130917Z LD [M] drivers/hid/hid-vivaldi.ko
2025-10-02T16:37:21.4132422Z LD [M] drivers/hid/hid-waltop.ko
2025-10-02T16:37:21.4178674Z LD [M] drivers/hid/hid-wiimote.ko
2025-10-02T16:37:21.4191709Z LD [M] drivers/hid/hid-xinmo.ko
2025-10-02T16:37:21.4247824Z LD [M] drivers/hid/hid-zpff.ko
2025-10-02T16:37:21.4282722Z LD [M] drivers/hid/i2c-hid/i2c-hid.ko
2025-10-02T16:37:21.4287219Z LD [M] drivers/hid/hid-zydacron.ko
2025-10-02T16:37:21.4326584Z LD [M] drivers/hid/intel-ish-hid/intel-ish-ipc.ko
2025-10-02T16:37:21.4375248Z LD [M] drivers/hid/intel-ish-hid/intel-ishtp-loader.ko
2025-10-02T16:37:21.4401172Z LD [M] drivers/hid/intel-ish-hid/intel-ishtp-hid.ko
2025-10-02T16:37:21.4437592Z LD [M] drivers/hid/uhid.ko
2025-10-02T16:37:21.4451078Z LD [M] drivers/hid/intel-ish-hid/intel-ishtp.ko
2025-10-02T16:37:21.4502313Z LD [M] drivers/hid/usbhid/usbhid.ko
2025-10-02T16:37:21.4503222Z LD [M] drivers/hid/wacom.ko
2025-10-02T16:37:21.4551709Z LD [M] drivers/hv/hv_balloon.ko
2025-10-02T16:37:21.4600166Z LD [M] drivers/hv/hv_utils.ko
2025-10-02T16:37:21.4625929Z LD [M] drivers/hv/hv_vmbus.ko
2025-10-02T16:37:21.4690418Z LD [M] drivers/hwmon/abituguru.ko
2025-10-02T16:37:21.4754295Z LD [M] drivers/hwmon/abituguru3.ko
2025-10-02T16:37:21.4755241Z LD [M] drivers/hwmon/acpi_power_meter.ko
2025-10-02T16:37:21.4826708Z LD [M] drivers/hwmon/ad7314.ko
2025-10-02T16:37:21.4840473Z LD [M] drivers/hwmon/ad7414.ko
2025-10-02T16:37:21.4870081Z LD [M] drivers/hwmon/ad7418.ko
2025-10-02T16:37:21.4885091Z LD [M] drivers/hwmon/adc128d818.ko
2025-10-02T16:37:21.4902597Z LD [M] drivers/hwmon/adcxx.ko
2025-10-02T16:37:21.4956224Z LD [M] drivers/hwmon/adm1021.ko
2025-10-02T16:37:21.4981473Z LD [M] drivers/hwmon/adm1025.ko
2025-10-02T16:37:21.5010649Z LD [M] drivers/hwmon/adm1026.ko
2025-10-02T16:37:21.5038146Z LD [M] drivers/hwmon/adm1029.ko
2025-10-02T16:37:21.5045601Z LD [M] drivers/hwmon/adm1031.ko
2025-10-02T16:37:21.5096944Z LD [M] drivers/hwmon/adm1177.ko
2025-10-02T16:37:21.5132321Z LD [M] drivers/hwmon/adm9240.ko
2025-10-02T16:37:21.5169045Z LD [M] drivers/hwmon/ads7828.ko
2025-10-02T16:37:21.5190406Z LD [M] drivers/hwmon/ads7871.ko
2025-10-02T16:37:21.5222589Z LD [M] drivers/hwmon/adt7310.ko
2025-10-02T16:37:21.5254831Z LD [M] drivers/hwmon/adt7410.ko
2025-10-02T16:37:21.5274434Z LD [M] drivers/hwmon/adt7411.ko
2025-10-02T16:37:21.5290563Z LD [M] drivers/hwmon/adt7462.ko
2025-10-02T16:37:21.5350284Z LD [M] drivers/hwmon/adt7470.ko
2025-10-02T16:37:21.5351455Z LD [M] drivers/hwmon/adt7475.ko
2025-10-02T16:37:21.5355918Z LD [M] drivers/hwmon/adt7x10.ko
2025-10-02T16:37:21.5401866Z LD [M] drivers/hwmon/amc6821.ko
2025-10-02T16:37:21.5424457Z LD [M] drivers/hwmon/amd_energy.ko
2025-10-02T16:37:21.5469826Z LD [M] drivers/hwmon/applesmc.ko
2025-10-02T16:37:21.5501207Z LD [M] drivers/hwmon/as370-hwmon.ko
2025-10-02T16:37:21.5533879Z LD [M] drivers/hwmon/asc7621.ko
2025-10-02T16:37:21.5542399Z LD [M] drivers/hwmon/asb100.ko
2025-10-02T16:37:21.5550064Z LD [M] drivers/hwmon/aspeed-pwm-tacho.ko
2025-10-02T16:37:21.5617680Z LD [M] drivers/hwmon/asus_atk0110.ko
2025-10-02T16:37:21.5639092Z LD [M] drivers/hwmon/atxp1.ko
2025-10-02T16:37:21.5664431Z LD [M] drivers/hwmon/axi-fan-control.ko
2025-10-02T16:37:21.5697362Z LD [M] drivers/hwmon/corsair-cpro.ko
2025-10-02T16:37:21.5722991Z LD [M] drivers/hwmon/coretemp.ko
2025-10-02T16:37:21.5750663Z LD [M] drivers/hwmon/da9052-hwmon.ko
2025-10-02T16:37:21.5767251Z LD [M] drivers/hwmon/da9055-hwmon.ko
2025-10-02T16:37:21.5820863Z LD [M] drivers/hwmon/dell-smm-hwmon.ko
2025-10-02T16:37:21.5821894Z LD [M] drivers/hwmon/dme1737.ko
2025-10-02T16:37:21.5862491Z LD [M] drivers/hwmon/drivetemp.ko
2025-10-02T16:37:21.5913812Z LD [M] drivers/hwmon/ds620.ko
2025-10-02T16:37:21.5917562Z LD [M] drivers/hwmon/emc1403.ko
2025-10-02T16:37:21.5931709Z LD [M] drivers/hwmon/ds1621.ko
2025-10-02T16:37:21.6003388Z LD [M] drivers/hwmon/emc2103.ko
2025-10-02T16:37:21.6031635Z LD [M] drivers/hwmon/emc6w201.ko
2025-10-02T16:37:21.6044739Z LD [M] drivers/hwmon/f75375s.ko
2025-10-02T16:37:21.6058096Z LD [M] drivers/hwmon/f71805f.ko
2025-10-02T16:37:21.6065923Z LD [M] drivers/hwmon/f71882fg.ko
2025-10-02T16:37:21.6123636Z LD [M] drivers/hwmon/fam15h_power.ko
2025-10-02T16:37:21.6168307Z LD [M] drivers/hwmon/fschmd.ko
2025-10-02T16:37:21.6200779Z LD [M] drivers/hwmon/ftsteutates.ko
2025-10-02T16:37:21.6203016Z LD [M] drivers/hwmon/g760a.ko
2025-10-02T16:37:21.6254584Z LD [M] drivers/hwmon/g762.ko
2025-10-02T16:37:21.6282464Z LD [M] drivers/hwmon/gl518sm.ko
2025-10-02T16:37:21.6286893Z LD [M] drivers/hwmon/gl520sm.ko
2025-10-02T16:37:21.6307556Z LD [M] drivers/hwmon/hih6130.ko
2025-10-02T16:37:21.6351268Z LD [M] drivers/hwmon/hwmon-vid.ko
2025-10-02T16:37:21.6368039Z LD [M] drivers/hwmon/i5500_temp.ko
2025-10-02T16:37:21.6406147Z LD [M] drivers/hwmon/i5k_amb.ko
2025-10-02T16:37:21.6436571Z LD [M] drivers/hwmon/ibmaem.ko
2025-10-02T16:37:21.6440912Z LD [M] drivers/hwmon/ibmpex.ko
2025-10-02T16:37:21.6493140Z LD [M] drivers/hwmon/iio_hwmon.ko
2025-10-02T16:37:21.6528045Z LD [M] drivers/hwmon/ina2xx.ko
2025-10-02T16:37:21.6544432Z LD [M] drivers/hwmon/ina209.ko
2025-10-02T16:37:21.6546513Z LD [M] drivers/hwmon/ina3221.ko
2025-10-02T16:37:21.6610864Z LD [M] drivers/hwmon/intel-m10-bmc-hwmon.ko
2025-10-02T16:37:21.6629316Z LD [M] drivers/hwmon/it87.ko
2025-10-02T16:37:21.6670124Z LD [M] drivers/hwmon/jc42.ko
2025-10-02T16:37:21.6687145Z LD [M] drivers/hwmon/k8temp.ko
2025-10-02T16:37:21.6741622Z LD [M] drivers/hwmon/k10temp.ko
2025-10-02T16:37:21.6742478Z LD [M] drivers/hwmon/lineage-pem.ko
2025-10-02T16:37:21.6758991Z LD [M] drivers/hwmon/lm63.ko
2025-10-02T16:37:21.6794784Z LD [M] drivers/hwmon/lm70.ko
2025-10-02T16:37:21.6834665Z LD [M] drivers/hwmon/lm73.ko
2025-10-02T16:37:21.6858555Z LD [M] drivers/hwmon/lm75.ko
2025-10-02T16:37:21.6891682Z LD [M] drivers/hwmon/lm77.ko
2025-10-02T16:37:21.6909250Z LD [M] drivers/hwmon/lm78.ko
2025-10-02T16:37:21.6925860Z LD [M] drivers/hwmon/lm80.ko
2025-10-02T16:37:21.6979916Z LD [M] drivers/hwmon/lm83.ko
2025-10-02T16:37:21.6988738Z LD [M] drivers/hwmon/lm85.ko
2025-10-02T16:37:21.6997492Z LD [M] drivers/hwmon/lm87.ko
2025-10-02T16:37:21.7056717Z LD [M] drivers/hwmon/lm90.ko
2025-10-02T16:37:21.7085144Z LD [M] drivers/hwmon/lm92.ko
2025-10-02T16:37:21.7135871Z LD [M] drivers/hwmon/lm93.ko
2025-10-02T16:37:21.7136740Z LD [M] drivers/hwmon/lm95234.ko
2025-10-02T16:37:21.7184297Z LD [M] drivers/hwmon/lm95241.ko
2025-10-02T16:37:21.7188627Z LD [M] drivers/hwmon/lm95245.ko
2025-10-02T16:37:21.7197552Z LD [M] drivers/hwmon/ltc2945.ko
2025-10-02T16:37:21.7280555Z LD [M] drivers/hwmon/ltc2947-core.ko
2025-10-02T16:37:21.7312632Z LD [M] drivers/hwmon/ltc2947-i2c.ko
2025-10-02T16:37:21.7313624Z LD [M] drivers/hwmon/ltc2947-spi.ko
2025-10-02T16:37:21.7348531Z LD [M] drivers/hwmon/ltc2990.ko
2025-10-02T16:37:21.7365764Z LD [M] drivers/hwmon/ltc4151.ko
2025-10-02T16:37:21.7420474Z LD [M] drivers/hwmon/ltc4215.ko
2025-10-02T16:37:21.7421637Z LD [M] drivers/hwmon/ltc4222.ko
2025-10-02T16:37:21.7434774Z LD [M] drivers/hwmon/ltc4245.ko
2025-10-02T16:37:21.7516063Z LD [M] drivers/hwmon/ltc4260.ko
2025-10-02T16:37:21.7516902Z LD [M] drivers/hwmon/ltc4261.ko
2025-10-02T16:37:21.7520569Z LD [M] drivers/hwmon/max1111.ko
2025-10-02T16:37:21.7561835Z LD [M] drivers/hwmon/max16065.ko
2025-10-02T16:37:21.7580277Z LD [M] drivers/hwmon/max1619.ko
2025-10-02T16:37:21.7626351Z LD [M] drivers/hwmon/max1668.ko
2025-10-02T16:37:21.7627532Z LD [M] drivers/hwmon/max31722.ko
2025-10-02T16:37:21.7634364Z LD [M] drivers/hwmon/max197.ko
2025-10-02T16:37:21.7692470Z LD [M] drivers/hwmon/max31790.ko
2025-10-02T16:37:21.7697078Z LD [M] drivers/hwmon/max31730.ko
2025-10-02T16:37:21.7756911Z LD [M] drivers/hwmon/max6639.ko
2025-10-02T16:37:21.7761524Z LD [M] drivers/hwmon/max6642.ko
2025-10-02T16:37:21.7778785Z LD [M] drivers/hwmon/max6621.ko
2025-10-02T16:37:21.7827819Z LD [M] drivers/hwmon/max6650.ko
2025-10-02T16:37:21.7844452Z LD [M] drivers/hwmon/max6697.ko
2025-10-02T16:37:21.7877641Z LD [M] drivers/hwmon/mc13783-adc.ko
2025-10-02T16:37:21.7888459Z LD [M] drivers/hwmon/mcp3021.ko
2025-10-02T16:37:21.7961114Z LD [M] drivers/hwmon/mlxreg-fan.ko
2025-10-02T16:37:21.7967470Z LD [M] drivers/hwmon/mr75203.ko
2025-10-02T16:37:21.7968695Z LD [M] drivers/hwmon/menf21bmc_hwmon.ko
2025-10-02T16:37:21.8014983Z LD [M] drivers/hwmon/nct6683.ko
2025-10-02T16:37:21.8048660Z LD [M] drivers/hwmon/nct6775.ko
2025-10-02T16:37:21.8080426Z LD [M] drivers/hwmon/nct7802.ko
2025-10-02T16:37:21.8088898Z LD [M] drivers/hwmon/nct7904.ko
2025-10-02T16:37:21.8122362Z LD [M] drivers/hwmon/npcm750-pwm-fan.ko
2025-10-02T16:37:21.8157234Z LD [M] drivers/hwmon/ntc_thermistor.ko
2025-10-02T16:37:21.8191395Z LD [M] drivers/hwmon/pc87360.ko
2025-10-02T16:37:21.8192610Z LD [M] drivers/hwmon/pc87427.ko
2025-10-02T16:37:21.8261414Z LD [M] drivers/hwmon/pmbus/adm1266.ko
2025-10-02T16:37:21.8262272Z LD [M] drivers/hwmon/pcf8591.ko
2025-10-02T16:37:21.8311955Z LD [M] drivers/hwmon/pmbus/adm1275.ko
2025-10-02T16:37:21.8340863Z LD [M] drivers/hwmon/pmbus/bel-pfe.ko
2025-10-02T16:37:21.8372819Z LD [M] drivers/hwmon/pmbus/ibm-cffps.ko
2025-10-02T16:37:21.8397653Z LD [M] drivers/hwmon/pmbus/inspur-ipsps.ko
2025-10-02T16:37:21.8437623Z LD [M] drivers/hwmon/pmbus/ir35221.ko
2025-10-02T16:37:21.8442787Z LD [M] drivers/hwmon/pmbus/ir38064.ko
2025-10-02T16:37:21.8461105Z LD [M] drivers/hwmon/pmbus/irps5401.ko
2025-10-02T16:37:21.8506272Z LD [M] drivers/hwmon/pmbus/isl68137.ko
2025-10-02T16:37:21.8564991Z LD [M] drivers/hwmon/pmbus/lm25066.ko
2025-10-02T16:37:21.8568647Z LD [M] drivers/hwmon/pmbus/ltc2978.ko
2025-10-02T16:37:21.8569880Z LD [M] drivers/hwmon/pmbus/ltc3815.ko
2025-10-02T16:37:21.8620531Z LD [M] drivers/hwmon/pmbus/max16064.ko
2025-10-02T16:37:21.8663033Z LD [M] drivers/hwmon/pmbus/max16601.ko
2025-10-02T16:37:21.8698873Z LD [M] drivers/hwmon/pmbus/max20730.ko
2025-10-02T16:37:21.8720295Z LD [M] drivers/hwmon/pmbus/max20751.ko
2025-10-02T16:37:21.8751462Z LD [M] drivers/hwmon/pmbus/max31785.ko
2025-10-02T16:37:21.8771052Z LD [M] drivers/hwmon/pmbus/max34440.ko
2025-10-02T16:37:21.8790566Z LD [M] drivers/hwmon/pmbus/max8688.ko
2025-10-02T16:37:21.8833640Z LD [M] drivers/hwmon/pmbus/mp2975.ko
2025-10-02T16:37:21.8876969Z LD [M] drivers/hwmon/pmbus/pmbus.ko
2025-10-02T16:37:21.8895471Z LD [M] drivers/hwmon/pmbus/pmbus_core.ko
2025-10-02T16:37:21.8912879Z LD [M] drivers/hwmon/pmbus/pxe1610.ko
2025-10-02T16:37:21.8936243Z LD [M] drivers/hwmon/pmbus/tps40422.ko
2025-10-02T16:37:21.8990910Z LD [M] drivers/hwmon/pmbus/tps53679.ko
2025-10-02T16:37:21.8993218Z LD [M] drivers/hwmon/pmbus/ucd9000.ko
2025-10-02T16:37:21.9043059Z LD [M] drivers/hwmon/pmbus/ucd9200.ko
2025-10-02T16:37:21.9079309Z LD [M] drivers/hwmon/pmbus/xdpe12284.ko
2025-10-02T16:37:21.9114643Z LD [M] drivers/hwmon/pmbus/zl6100.ko
2025-10-02T16:37:21.9123825Z LD [M] drivers/hwmon/powr1220.ko
2025-10-02T16:37:21.9178358Z LD [M] drivers/hwmon/sch5627.ko
2025-10-02T16:37:21.9186309Z LD [M] drivers/hwmon/sch5636.ko
2025-10-02T16:37:21.9203293Z LD [M] drivers/hwmon/sch56xx-common.ko
2025-10-02T16:37:21.9252001Z LD [M] drivers/hwmon/sht15.ko
2025-10-02T16:37:21.9265225Z LD [M] drivers/hwmon/sht21.ko
2025-10-02T16:37:21.9318805Z LD [M] drivers/hwmon/sht3x.ko
2025-10-02T16:37:21.9339443Z LD [M] drivers/hwmon/sis5595.ko
2025-10-02T16:37:21.9347503Z LD [M] drivers/hwmon/shtc1.ko
2025-10-02T16:37:21.9395605Z LD [M] drivers/hwmon/smm665.ko
2025-10-02T16:37:21.9442534Z LD [M] drivers/hwmon/smsc47b397.ko
2025-10-02T16:37:21.9453133Z LD [M] drivers/hwmon/smsc47m1.ko
2025-10-02T16:37:21.9476323Z LD [M] drivers/hwmon/smsc47m192.ko
2025-10-02T16:37:21.9500953Z LD [M] drivers/hwmon/stts751.ko
2025-10-02T16:37:21.9541683Z LD [M] drivers/hwmon/tc654.ko
2025-10-02T16:37:21.9573104Z LD [M] drivers/hwmon/tc74.ko
2025-10-02T16:37:21.9575081Z LD [M] drivers/hwmon/thmc50.ko
2025-10-02T16:37:21.9602240Z LD [M] drivers/hwmon/tmp102.ko
2025-10-02T16:37:21.9645984Z LD [M] drivers/hwmon/tmp103.ko
2025-10-02T16:37:21.9686041Z LD [M] drivers/hwmon/tmp401.ko
2025-10-02T16:37:21.9694469Z LD [M] drivers/hwmon/tmp108.ko
2025-10-02T16:37:21.9745551Z LD [M] drivers/hwmon/tmp421.ko
2025-10-02T16:37:21.9781768Z LD [M] drivers/hwmon/via-cputemp.ko
2025-10-02T16:37:21.9784690Z LD [M] drivers/hwmon/tmp513.ko
2025-10-02T16:37:21.9816403Z LD [M] drivers/hwmon/via686a.ko
2025-10-02T16:37:21.9835597Z LD [M] drivers/hwmon/vt1211.ko
2025-10-02T16:37:21.9888415Z LD [M] drivers/hwmon/w83627hf.ko
2025-10-02T16:37:21.9891964Z LD [M] drivers/hwmon/w83627ehf.ko
2025-10-02T16:37:21.9900961Z LD [M] drivers/hwmon/vt8231.ko
2025-10-02T16:37:21.9959186Z LD [M] drivers/hwmon/w83773g.ko
2025-10-02T16:37:21.9960426Z LD [M] drivers/hwmon/w83781d.ko
2025-10-02T16:37:22.0031805Z LD [M] drivers/hwmon/w83791d.ko
2025-10-02T16:37:22.0068177Z LD [M] drivers/hwmon/w83792d.ko
2025-10-02T16:37:22.0070421Z LD [M] drivers/hwmon/w83793.ko
2025-10-02T16:37:22.0100260Z LD [M] drivers/hwmon/w83795.ko
2025-10-02T16:37:22.0113058Z LD [M] drivers/hwmon/w83l785ts.ko
2025-10-02T16:37:22.0194713Z LD [M] drivers/hwmon/w83l786ng.ko
2025-10-02T16:37:22.0223026Z LD [M] drivers/hwmon/xgene-hwmon.ko
2025-10-02T16:37:22.0230176Z LD [M] drivers/hwmon/wm831x-hwmon.ko
2025-10-02T16:37:22.0245793Z LD [M] drivers/hwtracing/intel_th/intel_th.ko
2025-10-02T16:37:22.0261721Z LD [M] drivers/hwmon/wm8350-hwmon.ko
2025-10-02T16:37:22.0315603Z LD [M] drivers/hwtracing/intel_th/intel_th_acpi.ko
2025-10-02T16:37:22.0345974Z LD [M] drivers/hwtracing/intel_th/intel_th_gth.ko
2025-10-02T16:37:22.0374693Z LD [M] drivers/hwtracing/intel_th/intel_th_msu.ko
2025-10-02T16:37:22.0418163Z LD [M] drivers/hwtracing/intel_th/intel_th_msu_sink.ko
2025-10-02T16:37:22.0429282Z LD [M] drivers/hwtracing/intel_th/intel_th_pci.ko
2025-10-02T16:37:22.0435024Z LD [M] drivers/hwtracing/intel_th/intel_th_pti.ko
2025-10-02T16:37:22.0458965Z LD [M] drivers/hwtracing/intel_th/intel_th_sth.ko
2025-10-02T16:37:22.0517772Z LD [M] drivers/hwtracing/stm/stm_console.ko
2025-10-02T16:37:22.0544477Z LD [M] drivers/hwtracing/stm/stm_core.ko
2025-10-02T16:37:22.0567360Z LD [M] drivers/hwtracing/stm/stm_ftrace.ko
2025-10-02T16:37:22.0595732Z LD [M] drivers/hwtracing/stm/stm_heartbeat.ko
2025-10-02T16:37:22.0609328Z LD [M] drivers/hwtracing/stm/stm_p_basic.ko
2025-10-02T16:37:22.0656797Z LD [M] drivers/hwtracing/stm/stm_p_sys-t.ko
2025-10-02T16:37:22.0680474Z LD [M] drivers/i2c/algos/i2c-algo-bit.ko
2025-10-02T16:37:22.0693807Z LD [M] drivers/i2c/algos/i2c-algo-pca.ko
2025-10-02T16:37:22.0714401Z LD [M] drivers/i2c/busses/i2c-ali1535.ko
2025-10-02T16:37:22.0750188Z LD [M] drivers/i2c/busses/i2c-ali1563.ko
2025-10-02T16:37:22.0772122Z LD [M] drivers/i2c/busses/i2c-ali15x3.ko
2025-10-02T16:37:22.0792970Z LD [M] drivers/i2c/busses/i2c-amd-mp2-pci.ko
2025-10-02T16:37:22.0834857Z LD [M] drivers/i2c/busses/i2c-amd-mp2-plat.ko
2025-10-02T16:37:22.0872784Z LD [M] drivers/i2c/busses/i2c-amd756-s4882.ko
2025-10-02T16:37:22.0904669Z LD [M] drivers/i2c/busses/i2c-amd756.ko
2025-10-02T16:37:22.0907690Z LD [M] drivers/i2c/busses/i2c-amd8111.ko
2025-10-02T16:37:22.0940878Z LD [M] drivers/i2c/busses/i2c-cbus-gpio.ko
2025-10-02T16:37:22.0984598Z LD [M] drivers/i2c/busses/i2c-cht-wc.ko
2025-10-02T16:37:22.1021438Z LD [M] drivers/i2c/busses/i2c-cros-ec-tunnel.ko
2025-10-02T16:37:22.1046696Z LD [M] drivers/i2c/busses/i2c-diolan-u2c.ko
2025-10-02T16:37:22.1057112Z LD [M] drivers/i2c/busses/i2c-emev2.ko
2025-10-02T16:37:22.1084181Z LD [M] drivers/i2c/busses/i2c-dln2.ko
2025-10-02T16:37:22.1110100Z LD [M] drivers/i2c/busses/i2c-gpio.ko
2025-10-02T16:37:22.1148069Z LD [M] drivers/i2c/busses/i2c-i801.ko
2025-10-02T16:37:22.1154600Z LD [M] drivers/i2c/busses/i2c-isch.ko
2025-10-02T16:37:22.1189765Z LD [M] drivers/i2c/busses/i2c-ismt.ko
2025-10-02T16:37:22.1224034Z LD [M] drivers/i2c/busses/i2c-mlxcpld.ko
2025-10-02T16:37:22.1247471Z LD [M] drivers/i2c/busses/i2c-kempld.ko
2025-10-02T16:37:22.1289107Z LD [M] drivers/i2c/busses/i2c-nct6775.ko
2025-10-02T16:37:22.1308432Z LD [M] drivers/i2c/busses/i2c-nforce2-s4985.ko
2025-10-02T16:37:22.1320248Z LD [M] drivers/i2c/busses/i2c-nforce2.ko
2025-10-02T16:37:22.1364211Z LD [M] drivers/i2c/busses/i2c-nvidia-gpu.ko
2025-10-02T16:37:22.1403436Z LD [M] drivers/i2c/busses/i2c-ocores.ko
2025-10-02T16:37:22.1429281Z LD [M] drivers/i2c/busses/i2c-pca-platform.ko
2025-10-02T16:37:22.1432515Z LD [M] drivers/i2c/busses/i2c-parport.ko
2025-10-02T16:37:22.1460568Z LD [M] drivers/i2c/busses/i2c-piix4.ko
2025-10-02T16:37:22.1508243Z LD [M] drivers/i2c/busses/i2c-robotfuzz-osif.ko
2025-10-02T16:37:22.1513344Z LD [M] drivers/i2c/busses/i2c-scmi.ko
2025-10-02T16:37:22.1566578Z LD [M] drivers/i2c/busses/i2c-sis5595.ko
2025-10-02T16:37:22.1573833Z LD [M] drivers/i2c/busses/i2c-sis630.ko
2025-10-02T16:37:22.1599209Z LD [M] drivers/i2c/busses/i2c-simtec.ko
2025-10-02T16:37:22.1654240Z LD [M] drivers/i2c/busses/i2c-sis96x.ko
2025-10-02T16:37:22.1682675Z LD [M] drivers/i2c/busses/i2c-taos-evm.ko
2025-10-02T16:37:22.1688853Z LD [M] drivers/i2c/busses/i2c-tiny-usb.ko
2025-10-02T16:37:22.1721823Z LD [M] drivers/i2c/busses/i2c-via.ko
2025-10-02T16:37:22.1738880Z LD [M] drivers/i2c/busses/i2c-viapro.ko
2025-10-02T16:37:22.1773372Z LD [M] drivers/i2c/busses/i2c-viperboard.ko
2025-10-02T16:37:22.1799945Z LD [M] drivers/i2c/busses/i2c-xiic.ko
2025-10-02T16:37:22.1825757Z LD [M] drivers/i2c/i2c-dev.ko
2025-10-02T16:37:22.1866436Z LD [M] drivers/i2c/i2c-slave-eeprom.ko
2025-10-02T16:37:22.1881916Z LD [M] drivers/i2c/i2c-mux.ko
2025-10-02T16:37:22.1921336Z LD [M] drivers/i2c/i2c-slave-testunit.ko
2025-10-02T16:37:22.1943494Z LD [M] drivers/i2c/i2c-smbus.ko
2025-10-02T16:37:22.1963482Z LD [M] drivers/i2c/i2c-stub.ko
2025-10-02T16:37:22.2004443Z LD [M] drivers/i2c/muxes/i2c-mux-gpio.ko
2025-10-02T16:37:22.2020326Z LD [M] drivers/i2c/muxes/i2c-mux-ltc4306.ko
2025-10-02T16:37:22.2056356Z LD [M] drivers/i2c/muxes/i2c-mux-mlxcpld.ko
2025-10-02T16:37:22.2064863Z LD [M] drivers/i2c/muxes/i2c-mux-pca9541.ko
2025-10-02T16:37:22.2118437Z LD [M] drivers/i2c/muxes/i2c-mux-pca954x.ko
2025-10-02T16:37:22.2131373Z LD [M] drivers/i2c/muxes/i2c-mux-reg.ko
2025-10-02T16:37:22.2173717Z LD [M] drivers/iio/accel/adis16201.ko
2025-10-02T16:37:22.2190567Z LD [M] drivers/iio/accel/adis16209.ko
2025-10-02T16:37:22.2213175Z LD [M] drivers/iio/accel/adxl372.ko
2025-10-02T16:37:22.2248985Z LD [M] drivers/iio/accel/adxl372_i2c.ko
2025-10-02T16:37:22.2274918Z LD [M] drivers/iio/accel/adxl372_spi.ko
2025-10-02T16:37:22.2296564Z LD [M] drivers/iio/accel/bma220_spi.ko
2025-10-02T16:37:22.2333505Z LD [M] drivers/iio/accel/bma400_core.ko
2025-10-02T16:37:22.2354087Z LD [M] drivers/iio/accel/bma400_i2c.ko
2025-10-02T16:37:22.2373877Z LD [M] drivers/iio/accel/bma400_spi.ko
2025-10-02T16:37:22.2424522Z LD [M] drivers/iio/accel/bmc150-accel-core.ko
2025-10-02T16:37:22.2433117Z LD [M] drivers/iio/accel/bmc150-accel-i2c.ko
2025-10-02T16:37:22.2472137Z LD [M] drivers/iio/accel/cros_ec_accel_legacy.ko
2025-10-02T16:37:22.2478952Z LD [M] drivers/iio/accel/bmc150-accel-spi.ko
2025-10-02T16:37:22.2537518Z LD [M] drivers/iio/accel/da280.ko
2025-10-02T16:37:22.2540786Z LD [M] drivers/iio/accel/da311.ko
2025-10-02T16:37:22.2567241Z LD [M] drivers/iio/accel/dmard09.ko
2025-10-02T16:37:22.2606832Z LD [M] drivers/iio/accel/hid-sensor-accel-3d.ko
2025-10-02T16:37:22.2615870Z LD [M] drivers/iio/accel/dmard10.ko
2025-10-02T16:37:22.2671298Z LD [M] drivers/iio/accel/kxsd9-i2c.ko
2025-10-02T16:37:22.2679443Z LD [M] drivers/iio/accel/kxsd9-spi.ko
2025-10-02T16:37:22.2681310Z LD [M] drivers/iio/accel/kxcjk-1013.ko
2025-10-02T16:37:22.2732277Z LD [M] drivers/iio/accel/kxsd9.ko
2025-10-02T16:37:22.2798594Z LD [M] drivers/iio/accel/mc3230.ko
2025-10-02T16:37:22.2800690Z LD [M] drivers/iio/accel/mma7455_core.ko
2025-10-02T16:37:22.2801525Z LD [M] drivers/iio/accel/mma7455_i2c.ko
2025-10-02T16:37:22.2861119Z LD [M] drivers/iio/accel/mma7455_spi.ko
2025-10-02T16:37:22.2880112Z LD [M] drivers/iio/accel/mma7660.ko
2025-10-02T16:37:22.2895335Z LD [M] drivers/iio/accel/mma8452.ko
2025-10-02T16:37:22.2931015Z LD [M] drivers/iio/accel/mma9551.ko
2025-10-02T16:37:22.2935100Z LD [M] drivers/iio/accel/mma9551_core.ko
2025-10-02T16:37:22.2988003Z LD [M] drivers/iio/accel/mma9553.ko
2025-10-02T16:37:22.3006171Z LD [M] drivers/iio/accel/mxc4005.ko
2025-10-02T16:37:22.3052495Z LD [M] drivers/iio/accel/mxc6255.ko
2025-10-02T16:37:22.3071001Z LD [M] drivers/iio/accel/sca3000.ko
2025-10-02T16:37:22.3101751Z LD [M] drivers/iio/accel/ssp_accel_sensor.ko
2025-10-02T16:37:22.3122025Z LD [M] drivers/iio/accel/st_accel.ko
2025-10-02T16:37:22.3138764Z LD [M] drivers/iio/accel/st_accel_i2c.ko
2025-10-02T16:37:22.3184168Z LD [M] drivers/iio/accel/st_accel_spi.ko
2025-10-02T16:37:22.3228040Z LD [M] drivers/iio/accel/stk8ba50.ko
2025-10-02T16:37:22.3244217Z LD [M] drivers/iio/accel/stk8312.ko
2025-10-02T16:37:22.3270690Z LD [M] drivers/iio/adc/ad7091r-base.ko
2025-10-02T16:37:22.3280628Z LD [M] drivers/iio/adc/ad7091r5.ko
2025-10-02T16:37:22.3325976Z LD [M] drivers/iio/adc/ad7124.ko
2025-10-02T16:37:22.3367286Z LD [M] drivers/iio/adc/ad7192.ko
2025-10-02T16:37:22.3398137Z LD [M] drivers/iio/adc/ad7266.ko
2025-10-02T16:37:22.3421097Z LD [M] drivers/iio/adc/ad7291.ko
2025-10-02T16:37:22.3454348Z LD [M] drivers/iio/adc/ad7292.ko
2025-10-02T16:37:22.3489656Z LD [M] drivers/iio/adc/ad7298.ko
2025-10-02T16:37:22.3505183Z LD [M] drivers/iio/adc/ad7476.ko
2025-10-02T16:37:22.3545134Z LD [M] drivers/iio/adc/ad7606.ko
2025-10-02T16:37:22.3546193Z LD [M] drivers/iio/adc/ad7606_par.ko
2025-10-02T16:37:22.3598005Z LD [M] drivers/iio/adc/ad7606_spi.ko
2025-10-02T16:37:22.3640746Z LD [M] drivers/iio/adc/ad7768-1.ko
2025-10-02T16:37:22.3643358Z LD [M] drivers/iio/adc/ad7766.ko
2025-10-02T16:37:22.3661013Z LD [M] drivers/iio/adc/ad7780.ko
2025-10-02T16:37:22.3725726Z LD [M] drivers/iio/adc/ad7791.ko
2025-10-02T16:37:22.3741271Z LD [M] drivers/iio/adc/ad7793.ko
2025-10-02T16:37:22.3782384Z LD [M] drivers/iio/adc/ad7887.ko
2025-10-02T16:37:22.3789318Z LD [M] drivers/iio/adc/ad7923.ko
2025-10-02T16:37:22.3821430Z LD [M] drivers/iio/adc/ad7949.ko
2025-10-02T16:37:22.3864358Z LD [M] drivers/iio/adc/ad799x.ko
2025-10-02T16:37:22.3900846Z LD [M] drivers/iio/adc/ad_sigma_delta.ko
2025-10-02T16:37:22.3916702Z LD [M] drivers/iio/adc/axp20x_adc.ko
2025-10-02T16:37:22.3917539Z LD [M] drivers/iio/adc/axp288_adc.ko
2025-10-02T16:37:22.3969082Z LD [M] drivers/iio/adc/cc10001_adc.ko
2025-10-02T16:37:22.4022321Z LD [M] drivers/iio/adc/da9150-gpadc.ko
2025-10-02T16:37:22.4024342Z LD [M] drivers/iio/adc/dln2-adc.ko
2025-10-02T16:37:22.4047241Z LD [M] drivers/iio/adc/hx711.ko
2025-10-02T16:37:22.4080198Z LD [M] drivers/iio/adc/hi8435.ko
2025-10-02T16:37:22.4119931Z LD [M] drivers/iio/adc/ina2xx-adc.ko
2025-10-02T16:37:22.4135964Z LD [M] drivers/iio/adc/intel_mrfld_adc.ko
2025-10-02T16:37:22.4172504Z LD [M] drivers/iio/adc/lp8788_adc.ko
2025-10-02T16:37:22.4217009Z LD [M] drivers/iio/adc/ltc2471.ko
2025-10-02T16:37:22.4250455Z LD [M] drivers/iio/adc/ltc2496.ko
2025-10-02T16:37:22.4251668Z LD [M] drivers/iio/adc/ltc2485.ko
2025-10-02T16:37:22.4252646Z LD [M] drivers/iio/adc/ltc2497-core.ko
2025-10-02T16:37:22.4321441Z LD [M] drivers/iio/adc/ltc2497.ko
2025-10-02T16:37:22.4322694Z LD [M] drivers/iio/adc/max1027.ko
2025-10-02T16:37:22.4373896Z LD [M] drivers/iio/adc/max11100.ko
2025-10-02T16:37:22.4383726Z LD [M] drivers/iio/adc/max1241.ko
2025-10-02T16:37:22.4400129Z LD [M] drivers/iio/adc/max1118.ko
2025-10-02T16:37:22.4459314Z LD [M] drivers/iio/adc/max1363.ko
2025-10-02T16:37:22.4490128Z LD [M] drivers/iio/adc/mcp320x.ko
2025-10-02T16:37:22.4502800Z LD [M] drivers/iio/adc/max9611.ko
2025-10-02T16:37:22.4540509Z LD [M] drivers/iio/adc/mcp3422.ko
2025-10-02T16:37:22.4541818Z LD [M] drivers/iio/adc/mcp3911.ko
2025-10-02T16:37:22.4612294Z LD [M] drivers/iio/adc/men_z188_adc.ko
2025-10-02T16:37:22.4616233Z LD [M] drivers/iio/adc/mp2629_adc.ko
2025-10-02T16:37:22.4641091Z LD [M] drivers/iio/adc/nau7802.ko
2025-10-02T16:37:22.4678901Z LD [M] drivers/iio/adc/ti-adc081c.ko
2025-10-02T16:37:22.4712272Z LD [M] drivers/iio/adc/palmas_gpadc.ko
2025-10-02T16:37:22.4715370Z LD [M] drivers/iio/adc/ti-adc0832.ko
2025-10-02T16:37:22.4755473Z LD [M] drivers/iio/adc/ti-adc108s102.ko
2025-10-02T16:37:22.4761301Z LD [M] drivers/iio/adc/ti-adc084s021.ko
2025-10-02T16:37:22.4819772Z LD [M] drivers/iio/adc/ti-adc12138.ko
2025-10-02T16:37:22.4836752Z LD [M] drivers/iio/adc/ti-adc161s626.ko
2025-10-02T16:37:22.4882519Z LD [M] drivers/iio/adc/ti-ads1015.ko
2025-10-02T16:37:22.4883641Z LD [M] drivers/iio/adc/ti-adc128s052.ko
2025-10-02T16:37:22.4928305Z LD [M] drivers/iio/adc/ti-ads7950.ko
2025-10-02T16:37:22.4948828Z LD [M] drivers/iio/adc/ti-tlc4541.ko
2025-10-02T16:37:22.5013629Z LD [M] drivers/iio/adc/twl6030-gpadc.ko
2025-10-02T16:37:22.5014842Z LD [M] drivers/iio/adc/twl4030-madc.ko
2025-10-02T16:37:22.5019279Z LD [M] drivers/iio/adc/viperboard_adc.ko
2025-10-02T16:37:22.5084864Z LD [M] drivers/iio/adc/xilinx-xadc.ko
2025-10-02T16:37:22.5105649Z LD [M] drivers/iio/amplifiers/ad8366.ko
2025-10-02T16:37:22.5150574Z LD [M] drivers/iio/amplifiers/hmc425a.ko
2025-10-02T16:37:22.5156086Z LD [M] drivers/iio/buffer/industrialio-buffer-cb.ko
2025-10-02T16:37:22.5168708Z LD [M] drivers/iio/buffer/industrialio-buffer-dma.ko
2025-10-02T16:37:22.5246396Z LD [M] drivers/iio/buffer/industrialio-buffer-dmaengine.ko
2025-10-02T16:37:22.5271927Z LD [M] drivers/iio/buffer/industrialio-triggered-buffer.ko
2025-10-02T16:37:22.5281478Z LD [M] drivers/iio/buffer/kfifo_buf.ko
2025-10-02T16:37:22.5293382Z LD [M] drivers/iio/buffer/industrialio-hw-consumer.ko
2025-10-02T16:37:22.5326436Z LD [M] drivers/iio/chemical/ams-iaq-core.ko
2025-10-02T16:37:22.5386769Z LD [M] drivers/iio/chemical/atlas-ezo-sensor.ko
2025-10-02T16:37:22.5414581Z LD [M] drivers/iio/chemical/bme680_core.ko
2025-10-02T16:37:22.5428992Z LD [M] drivers/iio/chemical/bme680_i2c.ko
2025-10-02T16:37:22.5447147Z LD [M] drivers/iio/chemical/atlas-sensor.ko
2025-10-02T16:37:22.5460818Z LD [M] drivers/iio/chemical/bme680_spi.ko
2025-10-02T16:37:22.5498729Z LD [M] drivers/iio/chemical/ccs811.ko
2025-10-02T16:37:22.5567742Z LD [M] drivers/iio/chemical/pms7003.ko
2025-10-02T16:37:22.5600514Z LD [M] drivers/iio/chemical/scd30_core.ko
2025-10-02T16:37:22.5601816Z LD [M] drivers/iio/chemical/scd30_i2c.ko
2025-10-02T16:37:22.5621147Z LD [M] drivers/iio/chemical/scd30_serial.ko
2025-10-02T16:37:22.5636916Z LD [M] drivers/iio/chemical/sgp30.ko
2025-10-02T16:37:22.5685612Z LD [M] drivers/iio/chemical/sps30.ko
2025-10-02T16:37:22.5689913Z LD [M] drivers/iio/chemical/vz89x.ko
2025-10-02T16:37:22.5723270Z LD [M] drivers/iio/common/cros_ec_sensors/cros_ec_lid_angle.ko
2025-10-02T16:37:22.5759858Z LD [M] drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.ko
2025-10-02T16:37:22.5769647Z LD [M] drivers/iio/common/cros_ec_sensors/cros_ec_sensors.ko
2025-10-02T16:37:22.5820402Z LD [M] drivers/iio/common/hid-sensors/hid-sensor-iio-common.ko
2025-10-02T16:37:22.5833895Z LD [M] drivers/iio/common/hid-sensors/hid-sensor-trigger.ko
2025-10-02T16:37:22.5855979Z LD [M] drivers/iio/common/ms_sensors/ms_sensors_i2c.ko
2025-10-02T16:37:22.5892681Z LD [M] drivers/iio/common/ssp_sensors/sensorhub.ko
2025-10-02T16:37:22.5921477Z LD [M] drivers/iio/common/ssp_sensors/ssp_iio.ko
2025-10-02T16:37:22.5934167Z LD [M] drivers/iio/common/st_sensors/st_sensors.ko
2025-10-02T16:37:22.5982958Z LD [M] drivers/iio/common/st_sensors/st_sensors_spi.ko
2025-10-02T16:37:22.6001701Z LD [M] drivers/iio/common/st_sensors/st_sensors_i2c.ko
2025-10-02T16:37:22.6028502Z LD [M] drivers/iio/dac/ad5064.ko
2025-10-02T16:37:22.6064791Z LD [M] drivers/iio/dac/ad5360.ko
2025-10-02T16:37:22.6100669Z LD [M] drivers/iio/dac/ad5380.ko
2025-10-02T16:37:22.6129114Z LD [M] drivers/iio/dac/ad5421.ko
2025-10-02T16:37:22.6147534Z LD [M] drivers/iio/dac/ad5446.ko
2025-10-02T16:37:22.6171256Z LD [M] drivers/iio/dac/ad5449.ko
2025-10-02T16:37:22.6189764Z LD [M] drivers/iio/dac/ad5504.ko
2025-10-02T16:37:22.6241625Z LD [M] drivers/iio/dac/ad5592r-base.ko
2025-10-02T16:37:22.6257776Z LD [M] drivers/iio/dac/ad5592r.ko
2025-10-02T16:37:22.6317206Z LD [M] drivers/iio/dac/ad5686-spi.ko
2025-10-02T16:37:22.6318291Z LD [M] drivers/iio/dac/ad5624r_spi.ko
2025-10-02T16:37:22.6329831Z LD [M] drivers/iio/dac/ad5593r.ko
2025-10-02T16:37:22.6379174Z LD [M] drivers/iio/dac/ad5686.ko
2025-10-02T16:37:22.6380357Z LD [M] drivers/iio/dac/ad5696-i2c.ko
2025-10-02T16:37:22.6434351Z LD [M] drivers/iio/dac/ad5755.ko
2025-10-02T16:37:22.6475959Z LD [M] drivers/iio/dac/ad5758.ko
2025-10-02T16:37:22.6486212Z LD [M] drivers/iio/dac/ad5761.ko
2025-10-02T16:37:22.6540560Z LD [M] drivers/iio/dac/ad5770r.ko
2025-10-02T16:37:22.6543191Z LD [M] drivers/iio/dac/ad5764.ko
2025-10-02T16:37:22.6548983Z LD [M] drivers/iio/dac/ad5791.ko
2025-10-02T16:37:22.6587765Z LD [M] drivers/iio/dac/ad7303.ko
2025-10-02T16:37:22.6621619Z LD [M] drivers/iio/dac/ad8801.ko
2025-10-02T16:37:22.6681238Z LD [M] drivers/iio/dac/ds4424.ko
2025-10-02T16:37:22.6686610Z LD [M] drivers/iio/dac/ltc1660.ko
2025-10-02T16:37:22.6721024Z LD [M] drivers/iio/dac/ltc2632.ko
2025-10-02T16:37:22.6754994Z LD [M] drivers/iio/dac/m62332.ko
2025-10-02T16:37:22.6759303Z LD [M] drivers/iio/dac/max517.ko
2025-10-02T16:37:22.6814647Z LD [M] drivers/iio/dac/mcp4725.ko
2025-10-02T16:37:22.6826746Z LD [M] drivers/iio/dac/mcp4922.ko
2025-10-02T16:37:22.6843048Z LD [M] drivers/iio/dac/ti-dac082s085.ko
2025-10-02T16:37:22.6886708Z LD [M] drivers/iio/dac/ti-dac5571.ko
2025-10-02T16:37:22.6913540Z LD [M] drivers/iio/dac/ti-dac7311.ko
2025-10-02T16:37:22.6960807Z LD [M] drivers/iio/dac/ti-dac7612.ko
2025-10-02T16:37:22.6973982Z LD [M] drivers/iio/frequency/ad9523.ko
2025-10-02T16:37:22.7008404Z LD [M] drivers/iio/frequency/adf4350.ko
2025-10-02T16:37:22.7050624Z LD [M] drivers/iio/frequency/adf4371.ko
2025-10-02T16:37:22.7070763Z LD [M] drivers/iio/gyro/adis16080.ko
2025-10-02T16:37:22.7096125Z LD [M] drivers/iio/gyro/adis16130.ko
2025-10-02T16:37:22.7103355Z LD [M] drivers/iio/gyro/adis16136.ko
2025-10-02T16:37:22.7133565Z LD [M] drivers/iio/gyro/adis16260.ko
2025-10-02T16:37:22.7174748Z LD [M] drivers/iio/gyro/adxrs290.ko
2025-10-02T16:37:22.7205286Z LD [M] drivers/iio/gyro/adxrs450.ko
2025-10-02T16:37:22.7216931Z LD [M] drivers/iio/gyro/bmg160_core.ko
2025-10-02T16:37:22.7268337Z LD [M] drivers/iio/gyro/bmg160_spi.ko
2025-10-02T16:37:22.7271334Z LD [M] drivers/iio/gyro/bmg160_i2c.ko
2025-10-02T16:37:22.7312874Z LD [M] drivers/iio/gyro/fxas21002c_core.ko
2025-10-02T16:37:22.7343136Z LD [M] drivers/iio/gyro/fxas21002c_spi.ko
2025-10-02T16:37:22.7351661Z LD [M] drivers/iio/gyro/fxas21002c_i2c.ko
2025-10-02T16:37:22.7412305Z LD [M] drivers/iio/gyro/hid-sensor-gyro-3d.ko
2025-10-02T16:37:22.7420869Z LD [M] drivers/iio/gyro/itg3200.ko
2025-10-02T16:37:22.7442139Z LD [M] drivers/iio/gyro/mpu3050.ko
2025-10-02T16:37:22.7454663Z LD [M] drivers/iio/gyro/ssp_gyro_sensor.ko
2025-10-02T16:37:22.7502545Z LD [M] drivers/iio/gyro/st_gyro.ko
2025-10-02T16:37:22.7551670Z LD [M] drivers/iio/gyro/st_gyro_i2c.ko
2025-10-02T16:37:22.7562674Z LD [M] drivers/iio/gyro/st_gyro_spi.ko
2025-10-02T16:37:22.7577745Z LD [M] drivers/iio/health/afe4403.ko
2025-10-02T16:37:22.7628977Z LD [M] drivers/iio/health/afe4404.ko
2025-10-02T16:37:22.7647353Z LD [M] drivers/iio/health/max30100.ko
2025-10-02T16:37:22.7683168Z LD [M] drivers/iio/health/max30102.ko
2025-10-02T16:37:22.7706205Z LD [M] drivers/iio/humidity/am2315.ko
2025-10-02T16:37:22.7723666Z LD [M] drivers/iio/humidity/dht11.ko
2025-10-02T16:37:22.7771406Z LD [M] drivers/iio/humidity/hdc2010.ko
2025-10-02T16:37:22.7781678Z LD [M] drivers/iio/humidity/hdc100x.ko
2025-10-02T16:37:22.7817205Z LD [M] drivers/iio/humidity/hid-sensor-humidity.ko
2025-10-02T16:37:22.7848340Z LD [M] drivers/iio/humidity/hts221.ko
2025-10-02T16:37:22.7886645Z LD [M] drivers/iio/humidity/hts221_spi.ko
2025-10-02T16:37:22.7887756Z LD [M] drivers/iio/humidity/hts221_i2c.ko
2025-10-02T16:37:22.7931370Z LD [M] drivers/iio/humidity/htu21.ko
2025-10-02T16:37:22.7944599Z LD [M] drivers/iio/humidity/si7005.ko
2025-10-02T16:37:22.7980889Z LD [M] drivers/iio/humidity/si7020.ko
2025-10-02T16:37:22.8012165Z LD [M] drivers/iio/imu/adis16400.ko
2025-10-02T16:37:22.8018485Z LD [M] drivers/iio/imu/adis16460.ko
2025-10-02T16:37:22.8076162Z LD [M] drivers/iio/imu/adis16475.ko
2025-10-02T16:37:22.8088356Z LD [M] drivers/iio/imu/adis_lib.ko
2025-10-02T16:37:22.8094098Z LD [M] drivers/iio/imu/adis16480.ko
2025-10-02T16:37:22.8161345Z LD [M] drivers/iio/imu/bmi160/bmi160_i2c.ko
2025-10-02T16:37:22.8167228Z LD [M] drivers/iio/imu/bmi160/bmi160_core.ko
2025-10-02T16:37:22.8225561Z LD [M] drivers/iio/imu/fxos8700_core.ko
2025-10-02T16:37:22.8233816Z LD [M] drivers/iio/imu/bmi160/bmi160_spi.ko
2025-10-02T16:37:22.8250492Z LD [M] drivers/iio/imu/fxos8700_i2c.ko
2025-10-02T16:37:22.8320840Z LD [M] drivers/iio/imu/fxos8700_spi.ko
2025-10-02T16:37:22.8328150Z LD [M] drivers/iio/imu/inv_icm42600/inv-icm42600-i2c.ko
2025-10-02T16:37:22.8334768Z LD [M] drivers/iio/imu/inv_icm42600/inv-icm42600-spi.ko
2025-10-02T16:37:22.8381281Z LD [M] drivers/iio/imu/inv_icm42600/inv-icm42600.ko
2025-10-02T16:37:22.8394742Z LD [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050-i2c.ko
2025-10-02T16:37:22.8419456Z LD [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050-spi.ko
2025-10-02T16:37:22.8457140Z LD [M] drivers/iio/imu/inv_mpu6050/inv-mpu6050.ko
2025-10-02T16:37:22.8491079Z LD [M] drivers/iio/imu/kmx61.ko
2025-10-02T16:37:22.8534821Z LD [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.ko
2025-10-02T16:37:22.8535639Z LD [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko
2025-10-02T16:37:22.8591362Z LD [M] drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.ko
2025-10-02T16:37:22.8606497Z LD [M] drivers/iio/industrialio-configfs.ko
2025-10-02T16:37:22.8655664Z LD [M] drivers/iio/industrialio-sw-device.ko
2025-10-02T16:37:22.8660650Z LD [M] drivers/iio/industrialio-triggered-event.ko
2025-10-02T16:37:22.8665225Z LD [M] drivers/iio/industrialio-sw-trigger.ko
2025-10-02T16:37:22.8709280Z LD [M] drivers/iio/industrialio.ko
2025-10-02T16:37:22.8722682Z LD [M] drivers/iio/light/acpi-als.ko
2025-10-02T16:37:22.8779368Z LD [M] drivers/iio/light/adjd_s311.ko
2025-10-02T16:37:22.8802080Z LD [M] drivers/iio/light/adux1020.ko
2025-10-02T16:37:22.8820521Z LD [M] drivers/iio/light/al3010.ko
2025-10-02T16:37:22.8852356Z LD [M] drivers/iio/light/al3320a.ko
2025-10-02T16:37:22.8888052Z LD [M] drivers/iio/light/apds9300.ko
2025-10-02T16:37:22.8911527Z LD [M] drivers/iio/light/apds9960.ko
2025-10-02T16:37:22.8950548Z LD [M] drivers/iio/light/as73211.ko
2025-10-02T16:37:22.8966174Z LD [M] drivers/iio/light/bh1750.ko
2025-10-02T16:37:22.9007292Z LD [M] drivers/iio/light/bh1780.ko
2025-10-02T16:37:22.9025258Z LD [M] drivers/iio/light/cm32181.ko
2025-10-02T16:37:22.9062861Z LD [M] drivers/iio/light/cm3232.ko
2025-10-02T16:37:22.9091743Z LD [M] drivers/iio/light/cm36651.ko
2025-10-02T16:37:22.9120340Z LD [M] drivers/iio/light/cm3323.ko
2025-10-02T16:37:22.9128220Z LD [M] drivers/iio/light/cros_ec_light_prox.ko
2025-10-02T16:37:22.9168217Z LD [M] drivers/iio/light/gp2ap002.ko
2025-10-02T16:37:22.9171870Z LD [M] drivers/iio/light/gp2ap020a00f.ko
2025-10-02T16:37:22.9214751Z LD [M] drivers/iio/light/hid-sensor-als.ko
2025-10-02T16:37:22.9250540Z LD [M] drivers/iio/light/hid-sensor-prox.ko
2025-10-02T16:37:22.9292880Z LD [M] drivers/iio/light/iqs621-als.ko
2025-10-02T16:37:22.9303501Z LD [M] drivers/iio/light/isl29018.ko
2025-10-02T16:37:22.9340498Z LD [M] drivers/iio/light/isl29028.ko
2025-10-02T16:37:22.9376082Z LD [M] drivers/iio/light/isl29125.ko
2025-10-02T16:37:22.9386048Z LD [M] drivers/iio/light/jsa1212.ko
2025-10-02T16:37:22.9443944Z LD [M] drivers/iio/light/lm3533-als.ko
2025-10-02T16:37:22.9453330Z LD [M] drivers/iio/light/ltr501.ko
2025-10-02T16:37:22.9460891Z LD [M] drivers/iio/light/lv0104cs.ko
2025-10-02T16:37:22.9498366Z LD [M] drivers/iio/light/max44000.ko
2025-10-02T16:37:22.9534992Z LD [M] drivers/iio/light/max44009.ko
2025-10-02T16:37:22.9576590Z LD [M] drivers/iio/light/noa1305.ko
2025-10-02T16:37:22.9590715Z LD [M] drivers/iio/light/opt3001.ko
2025-10-02T16:37:22.9639971Z LD [M] drivers/iio/light/pa12203001.ko
2025-10-02T16:37:22.9654784Z LD [M] drivers/iio/light/si1133.ko
2025-10-02T16:37:22.9655659Z LD [M] drivers/iio/light/rpr0521.ko
2025-10-02T16:37:22.9700468Z LD [M] drivers/iio/light/si1145.ko
2025-10-02T16:37:22.9744787Z LD [M] drivers/iio/light/st_uvis25_core.ko
2025-10-02T16:37:22.9754522Z LD [M] drivers/iio/light/st_uvis25_i2c.ko
2025-10-02T16:37:22.9806699Z LD [M] drivers/iio/light/stk3310.ko
2025-10-02T16:37:22.9810857Z LD [M] drivers/iio/light/tcs3414.ko
2025-10-02T16:37:22.9811729Z LD [M] drivers/iio/light/st_uvis25_spi.ko
2025-10-02T16:37:22.9873309Z LD [M] drivers/iio/light/tcs3472.ko
2025-10-02T16:37:22.9922524Z LD [M] drivers/iio/light/tsl2772.ko
2025-10-02T16:37:22.9950737Z LD [M] drivers/iio/light/tsl2563.ko
2025-10-02T16:37:22.9951963Z LD [M] drivers/iio/light/tsl4531.ko
2025-10-02T16:37:22.9952987Z LD [M] drivers/iio/light/tsl2583.ko
2025-10-02T16:37:23.0010960Z LD [M] drivers/iio/light/us5182d.ko
2025-10-02T16:37:23.0047046Z LD [M] drivers/iio/light/vcnl4000.ko
2025-10-02T16:37:23.0055970Z LD [M] drivers/iio/light/vcnl4035.ko
2025-10-02T16:37:23.0091298Z LD [M] drivers/iio/light/veml6030.ko
2025-10-02T16:37:23.0119140Z LD [M] drivers/iio/light/veml6070.ko
2025-10-02T16:37:23.0190063Z LD [M] drivers/iio/light/vl6180.ko
2025-10-02T16:37:23.0190954Z LD [M] drivers/iio/light/zopt2201.ko
2025-10-02T16:37:23.0191819Z LD [M] drivers/iio/magnetometer/ak8975.ko
2025-10-02T16:37:23.0220287Z LD [M] drivers/iio/magnetometer/bmc150_magn.ko
2025-10-02T16:37:23.0245387Z LD [M] drivers/iio/magnetometer/bmc150_magn_i2c.ko
2025-10-02T16:37:23.0299246Z LD [M] drivers/iio/magnetometer/bmc150_magn_spi.ko
2025-10-02T16:37:23.0334193Z LD [M] drivers/iio/magnetometer/hid-sensor-magn-3d.ko
2025-10-02T16:37:23.0336447Z LD [M] drivers/iio/magnetometer/hmc5843_core.ko
2025-10-02T16:37:23.0366174Z LD [M] drivers/iio/magnetometer/hmc5843_spi.ko
2025-10-02T16:37:23.0379673Z LD [M] drivers/iio/magnetometer/hmc5843_i2c.ko
2025-10-02T16:37:23.0438868Z LD [M] drivers/iio/magnetometer/mag3110.ko
2025-10-02T16:37:23.0470429Z LD [M] drivers/iio/magnetometer/mmc35240.ko
2025-10-02T16:37:23.0483713Z LD [M] drivers/iio/magnetometer/rm3100-core.ko
2025-10-02T16:37:23.0508290Z LD [M] drivers/iio/magnetometer/rm3100-spi.ko
2025-10-02T16:37:23.0509683Z LD [M] drivers/iio/magnetometer/rm3100-i2c.ko
2025-10-02T16:37:23.0565336Z LD [M] drivers/iio/magnetometer/st_magn.ko
2025-10-02T16:37:23.0594577Z LD [M] drivers/iio/magnetometer/st_magn_i2c.ko
2025-10-02T16:37:23.0612085Z LD [M] drivers/iio/magnetometer/st_magn_spi.ko
2025-10-02T16:37:23.0634502Z LD [M] drivers/iio/orientation/hid-sensor-incl-3d.ko
2025-10-02T16:37:23.0662282Z LD [M] drivers/iio/orientation/hid-sensor-rotation.ko
2025-10-02T16:37:23.0718286Z LD [M] drivers/iio/position/iqs624-pos.ko
2025-10-02T16:37:23.0750340Z LD [M] drivers/iio/potentiometer/ad5272.ko
2025-10-02T16:37:23.0757944Z LD [M] drivers/iio/potentiometer/ds1803.ko
2025-10-02T16:37:23.0778889Z LD [M] drivers/iio/potentiometer/max5432.ko
2025-10-02T16:37:23.0835323Z LD [M] drivers/iio/potentiometer/max5487.ko
2025-10-02T16:37:23.0843310Z LD [M] drivers/iio/potentiometer/mcp4018.ko
2025-10-02T16:37:23.0853835Z LD [M] drivers/iio/potentiometer/max5481.ko
2025-10-02T16:37:23.0909871Z LD [M] drivers/iio/potentiometer/mcp4131.ko
2025-10-02T16:37:23.0910830Z LD [M] drivers/iio/potentiometer/mcp41010.ko
2025-10-02T16:37:23.0964620Z LD [M] drivers/iio/potentiometer/tpl0102.ko
2025-10-02T16:37:23.0975658Z LD [M] drivers/iio/potentiostat/lmp91000.ko
2025-10-02T16:37:23.0985779Z LD [M] drivers/iio/potentiometer/mcp4531.ko
2025-10-02T16:37:23.1025135Z LD [M] drivers/iio/pressure/abp060mg.ko
2025-10-02T16:37:23.1082224Z LD [M] drivers/iio/pressure/bmp280-i2c.ko
2025-10-02T16:37:23.1089885Z LD [M] drivers/iio/pressure/bmp280-spi.ko
2025-10-02T16:37:23.1130972Z LD [M] drivers/iio/pressure/cros_ec_baro.ko
2025-10-02T16:37:23.1132266Z LD [M] drivers/iio/pressure/dlhl60d.ko
2025-10-02T16:37:23.1134536Z LD [M] drivers/iio/pressure/bmp280.ko
2025-10-02T16:37:23.1188328Z LD [M] drivers/iio/pressure/dps310.ko
2025-10-02T16:37:23.1226066Z LD [M] drivers/iio/pressure/hid-sensor-press.ko
2025-10-02T16:37:23.1241764Z LD [M] drivers/iio/pressure/hp03.ko
2025-10-02T16:37:23.1274558Z LD [M] drivers/iio/pressure/hp206c.ko
2025-10-02T16:37:23.1289973Z LD [M] drivers/iio/pressure/icp10100.ko
2025-10-02T16:37:23.1343882Z LD [M] drivers/iio/pressure/mpl115.ko
2025-10-02T16:37:23.1357582Z LD [M] drivers/iio/pressure/mpl115_i2c.ko
2025-10-02T16:37:23.1380950Z LD [M] drivers/iio/pressure/mpl115_spi.ko
2025-10-02T16:37:23.1433655Z LD [M] drivers/iio/pressure/mpl3115.ko
2025-10-02T16:37:23.1445105Z LD [M] drivers/iio/pressure/ms5611_core.ko
2025-10-02T16:37:23.1463840Z LD [M] drivers/iio/pressure/ms5611_i2c.ko
2025-10-02T16:37:23.1510758Z LD [M] drivers/iio/pressure/ms5611_spi.ko
2025-10-02T16:37:23.1529047Z LD [M] drivers/iio/pressure/ms5637.ko
2025-10-02T16:37:23.1557987Z LD [M] drivers/iio/pressure/st_pressure.ko
2025-10-02T16:37:23.1592794Z LD [M] drivers/iio/pressure/st_pressure_i2c.ko
2025-10-02T16:37:23.1593752Z LD [M] drivers/iio/pressure/st_pressure_spi.ko
2025-10-02T16:37:23.1633766Z LD [M] drivers/iio/pressure/t5403.ko
2025-10-02T16:37:23.1686674Z LD [M] drivers/iio/pressure/zpa2326.ko
2025-10-02T16:37:23.1701512Z LD [M] drivers/iio/pressure/zpa2326_i2c.ko
2025-10-02T16:37:23.1730047Z LD [M] drivers/iio/pressure/zpa2326_spi.ko
2025-10-02T16:37:23.1735656Z LD [M] drivers/iio/proximity/as3935.ko
2025-10-02T16:37:23.1762264Z LD [M] drivers/iio/proximity/isl29501.ko
2025-10-02T16:37:23.1811155Z LD [M] drivers/iio/proximity/mb1232.ko
2025-10-02T16:37:23.1854436Z LD [M] drivers/iio/proximity/ping.ko
2025-10-02T16:37:23.1870096Z LD [M] drivers/iio/proximity/rfd77402.ko
2025-10-02T16:37:23.1877155Z LD [M] drivers/iio/proximity/srf04.ko
2025-10-02T16:37:23.1896080Z LD [M] drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko
2025-10-02T16:37:23.1935429Z LD [M] drivers/iio/proximity/srf08.ko
2025-10-02T16:37:23.1988311Z LD [M] drivers/iio/proximity/sx9310.ko
2025-10-02T16:37:23.2010832Z LD [M] drivers/iio/proximity/sx9500.ko
2025-10-02T16:37:23.2051407Z LD [M] drivers/iio/proximity/vcnl3020.ko
2025-10-02T16:37:23.2063286Z LD [M] drivers/iio/proximity/vl53l0x-i2c.ko
2025-10-02T16:37:23.2070609Z LD [M] drivers/iio/resolver/ad2s1200.ko
2025-10-02T16:37:23.2119855Z LD [M] drivers/iio/resolver/ad2s90.ko
2025-10-02T16:37:23.2157795Z LD [M] drivers/iio/temperature/iqs620at-temp.ko
2025-10-02T16:37:23.2173431Z LD [M] drivers/iio/temperature/ltc2983.ko
2025-10-02T16:37:23.2177585Z LD [M] drivers/iio/temperature/hid-sensor-temperature.ko
2025-10-02T16:37:23.2227514Z LD [M] drivers/iio/temperature/maxim_thermocouple.ko
2025-10-02T16:37:23.2238788Z LD [M] drivers/iio/temperature/max31856.ko
2025-10-02T16:37:23.2295638Z LD [M] drivers/iio/temperature/mlx90614.ko
2025-10-02T16:37:23.2313846Z LD [M] drivers/iio/temperature/mlx90632.ko
2025-10-02T16:37:23.2340994Z LD [M] drivers/iio/temperature/tmp006.ko
2025-10-02T16:37:23.2374614Z LD [M] drivers/iio/temperature/tmp007.ko
2025-10-02T16:37:23.2383478Z LD [M] drivers/iio/temperature/tsys01.ko
2025-10-02T16:37:23.2443900Z LD [M] drivers/iio/temperature/tsys02d.ko
2025-10-02T16:37:23.2448419Z LD [M] drivers/iio/trigger/iio-trig-hrtimer.ko
2025-10-02T16:37:23.2454527Z LD [M] drivers/iio/trigger/iio-trig-interrupt.ko
2025-10-02T16:37:23.2516316Z LD [M] drivers/iio/trigger/iio-trig-sysfs.ko
2025-10-02T16:37:23.2519795Z LD [M] drivers/iio/trigger/iio-trig-loop.ko
2025-10-02T16:37:23.2564199Z LD [M] drivers/infiniband/core/ib_cm.ko
2025-10-02T16:37:23.2577625Z LD [M] drivers/infiniband/core/ib_umad.ko
2025-10-02T16:37:23.2616943Z LD [M] drivers/infiniband/core/ib_core.ko
2025-10-02T16:37:23.2630235Z LD [M] drivers/infiniband/core/ib_uverbs.ko
2025-10-02T16:37:23.2654329Z LD [M] drivers/infiniband/core/iw_cm.ko
2025-10-02T16:37:23.2733146Z LD [M] drivers/infiniband/core/rdma_cm.ko
2025-10-02T16:37:23.2817561Z LD [M] drivers/infiniband/core/rdma_ucm.ko
2025-10-02T16:37:23.2846081Z LD [M] drivers/infiniband/hw/bnxt_re/bnxt_re.ko
2025-10-02T16:37:23.3050572Z LD [M] drivers/infiniband/hw/cxgb4/iw_cxgb4.ko
2025-10-02T16:37:23.3130747Z LD [M] drivers/infiniband/hw/efa/efa.ko
2025-10-02T16:37:23.3314244Z LD [M] drivers/infiniband/hw/i40iw/i40iw.ko
2025-10-02T16:37:23.3329247Z LD [M] drivers/infiniband/hw/hfi1/hfi1.ko
2025-10-02T16:37:23.3457502Z LD [M] drivers/infiniband/hw/mlx4/mlx4_ib.ko
2025-10-02T16:37:23.3662133Z LD [M] drivers/infiniband/hw/mthca/ib_mthca.ko
2025-10-02T16:37:23.3667048Z LD [M] drivers/infiniband/hw/mlx5/mlx5_ib.ko
2025-10-02T16:37:23.3725516Z LD [M] drivers/infiniband/hw/ocrdma/ocrdma.ko
2025-10-02T16:37:23.4027024Z LD [M] drivers/infiniband/hw/qedr/qedr.ko
2025-10-02T16:37:23.4109225Z LD [M] drivers/infiniband/hw/qib/ib_qib.ko
2025-10-02T16:37:23.4267423Z LD [M] drivers/infiniband/hw/usnic/usnic_verbs.ko
2025-10-02T16:37:23.4651759Z LD [M] drivers/infiniband/hw/vmw_pvrdma/vmw_pvrdma.ko
2025-10-02T16:37:23.4789802Z LD [M] drivers/infiniband/sw/rdmavt/rdmavt.ko
2025-10-02T16:37:23.5060041Z LD [M] drivers/infiniband/sw/rxe/rdma_rxe.ko
2025-10-02T16:37:23.5060987Z LD [M] drivers/infiniband/sw/siw/siw.ko
2025-10-02T16:37:23.5114490Z LD [M] drivers/infiniband/ulp/ipoib/ib_ipoib.ko
2025-10-02T16:37:23.5283864Z LD [M] drivers/infiniband/ulp/iser/ib_iser.ko
2025-10-02T16:37:23.5359675Z LD [M] drivers/infiniband/ulp/isert/ib_isert.ko
2025-10-02T16:37:23.5731149Z LD [M] drivers/infiniband/ulp/opa_vnic/opa_vnic.ko
2025-10-02T16:37:23.5732328Z LD [M] drivers/infiniband/ulp/rtrs/rtrs-server.ko
2025-10-02T16:37:23.5750574Z LD [M] drivers/infiniband/ulp/rtrs/rtrs-client.ko
2025-10-02T16:37:23.5751988Z LD [M] drivers/infiniband/ulp/rtrs/rtrs-core.ko
2025-10-02T16:37:23.5844625Z LD [M] drivers/infiniband/ulp/srp/ib_srp.ko
2025-10-02T16:37:23.6318997Z LD [M] drivers/infiniband/ulp/srpt/ib_srpt.ko
2025-10-02T16:37:23.6320508Z LD [M] drivers/input/ff-memless.ko
2025-10-02T16:37:23.6350408Z LD [M] drivers/input/gameport/emu10k1-gp.ko
2025-10-02T16:37:23.6365149Z LD [M] drivers/input/gameport/fm801-gp.ko
2025-10-02T16:37:23.6371647Z LD [M] drivers/input/gameport/gameport.ko
2025-10-02T16:37:23.6442545Z LD [M] drivers/input/gameport/lightning.ko
2025-10-02T16:37:23.6476964Z LD [M] drivers/input/gameport/ns558.ko
2025-10-02T16:37:23.6484977Z LD [M] drivers/input/input-polldev.ko
2025-10-02T16:37:23.6536780Z LD [M] drivers/input/joydev.ko
2025-10-02T16:37:23.6551340Z LD [M] drivers/input/joystick/a3d.ko
2025-10-02T16:37:23.6572885Z LD [M] drivers/input/joystick/adc-joystick.ko
2025-10-02T16:37:23.6619669Z LD [M] drivers/input/joystick/adi.ko
2025-10-02T16:37:23.6628160Z LD [M] drivers/input/joystick/analog.ko
2025-10-02T16:37:23.6679793Z LD [M] drivers/input/joystick/as5011.ko
2025-10-02T16:37:23.6705744Z LD [M] drivers/input/joystick/db9.ko
2025-10-02T16:37:23.6740443Z LD [M] drivers/input/joystick/cobra.ko
2025-10-02T16:37:23.6743274Z LD [M] drivers/input/joystick/gamecon.ko
2025-10-02T16:37:23.6753418Z LD [M] drivers/input/joystick/fsia6b.ko
2025-10-02T16:37:23.6811525Z LD [M] drivers/input/joystick/gf2k.ko
2025-10-02T16:37:23.6856004Z LD [M] drivers/input/joystick/grip.ko
2025-10-02T16:37:23.6876862Z LD [M] drivers/input/joystick/guillemot.ko
2025-10-02T16:37:23.6890381Z LD [M] drivers/input/joystick/iforce/iforce-serio.ko
2025-10-02T16:37:23.6912216Z LD [M] drivers/input/joystick/grip_mp.ko
2025-10-02T16:37:23.6944273Z LD [M] drivers/input/joystick/iforce/iforce-usb.ko
2025-10-02T16:37:23.6987979Z LD [M] drivers/input/joystick/iforce/iforce.ko
2025-10-02T16:37:23.7019714Z LD [M] drivers/input/joystick/interact.ko
2025-10-02T16:37:23.7048992Z LD [M] drivers/input/joystick/joydump.ko
2025-10-02T16:37:23.7101551Z LD [M] drivers/input/joystick/magellan.ko
2025-10-02T16:37:23.7115911Z LD [M] drivers/input/joystick/pxrc.ko
2025-10-02T16:37:23.7117602Z LD [M] drivers/input/joystick/psxpad-spi.ko
2025-10-02T16:37:23.7154697Z LD [M] drivers/input/joystick/sidewinder.ko
2025-10-02T16:37:23.7175887Z LD [M] drivers/input/joystick/spaceball.ko
2025-10-02T16:37:23.7233036Z LD [M] drivers/input/joystick/spaceorb.ko
2025-10-02T16:37:23.7244438Z LD [M] drivers/input/joystick/stinger.ko
2025-10-02T16:37:23.7275827Z LD [M] drivers/input/joystick/tmdc.ko
2025-10-02T16:37:23.7298804Z LD [M] drivers/input/joystick/turbografx.ko
2025-10-02T16:37:23.7306860Z LD [M] drivers/input/joystick/twidjoy.ko
2025-10-02T16:37:23.7361698Z LD [M] drivers/input/joystick/warrior.ko
2025-10-02T16:37:23.7380725Z LD [M] drivers/input/joystick/walkera0701.ko
2025-10-02T16:37:23.7413921Z LD [M] drivers/input/joystick/xpad.ko
2025-10-02T16:37:23.7435357Z LD [M] drivers/input/joystick/zhenhua.ko
2025-10-02T16:37:23.7486362Z LD [M] drivers/input/keyboard/adc-keys.ko
2025-10-02T16:37:23.7491632Z LD [M] drivers/input/keyboard/adp5520-keys.ko
2025-10-02T16:37:23.7547634Z LD [M] drivers/input/keyboard/adp5588-keys.ko
2025-10-02T16:37:23.7580853Z LD [M] drivers/input/keyboard/adp5589-keys.ko
2025-10-02T16:37:23.7581791Z LD [M] drivers/input/keyboard/applespi.ko
2025-10-02T16:37:23.7608551Z LD [M] drivers/input/keyboard/cros_ec_keyb.ko
2025-10-02T16:37:23.7632766Z LD [M] drivers/input/keyboard/dlink-dir685-touchkeys.ko
2025-10-02T16:37:23.7667197Z LD [M] drivers/input/keyboard/gpio_keys.ko
2025-10-02T16:37:23.7714761Z LD [M] drivers/input/keyboard/gpio_keys_polled.ko
2025-10-02T16:37:23.7741531Z LD [M] drivers/input/keyboard/iqs62x-keys.ko
2025-10-02T16:37:23.7758648Z LD [M] drivers/input/keyboard/lkkbd.ko
2025-10-02T16:37:23.7783867Z LD [M] drivers/input/keyboard/lm8323.ko
2025-10-02T16:37:23.7799068Z LD [M] drivers/input/keyboard/lm8333.ko
2025-10-02T16:37:23.7858146Z LD [M] drivers/input/keyboard/matrix_keypad.ko
2025-10-02T16:37:23.7870736Z LD [M] drivers/input/keyboard/max7359_keypad.ko
2025-10-02T16:37:23.7911840Z LD [M] drivers/input/keyboard/mcs_touchkey.ko
2025-10-02T16:37:23.7944488Z LD [M] drivers/input/keyboard/mpr121_touchkey.ko
2025-10-02T16:37:23.7970708Z LD [M] drivers/input/keyboard/mtk-pmic-keys.ko
2025-10-02T16:37:23.8029974Z LD [M] drivers/input/keyboard/newtonkbd.ko
2025-10-02T16:37:23.8030916Z LD [M] drivers/input/keyboard/opencores-kbd.ko
2025-10-02T16:37:23.8031821Z LD [M] drivers/input/keyboard/qt1050.ko
2025-10-02T16:37:23.8079913Z LD [M] drivers/input/keyboard/qt1070.ko
2025-10-02T16:37:23.8094774Z LD [M] drivers/input/keyboard/qt2160.ko
2025-10-02T16:37:23.8138512Z LD [M] drivers/input/keyboard/stowaway.ko
2025-10-02T16:37:23.8159176Z LD [M] drivers/input/keyboard/sunkbd.ko
2025-10-02T16:37:23.8195517Z LD [M] drivers/input/keyboard/samsung-keypad.ko
2025-10-02T16:37:23.8208271Z LD [M] drivers/input/keyboard/tca6416-keypad.ko
2025-10-02T16:37:23.8220872Z LD [M] drivers/input/keyboard/tca8418_keypad.ko
2025-10-02T16:37:23.8279951Z LD [M] drivers/input/keyboard/tm2-touchkey.ko
2025-10-02T16:37:23.8289882Z LD [M] drivers/input/keyboard/twl4030_keypad.ko
2025-10-02T16:37:23.8341317Z LD [M] drivers/input/matrix-keymap.ko
2025-10-02T16:37:23.8342696Z LD [M] drivers/input/keyboard/xtkbd.ko
2025-10-02T16:37:23.8375328Z LD [M] drivers/input/misc/88pm80x_onkey.ko
2025-10-02T16:37:23.8408914Z LD [M] drivers/input/misc/88pm860x_onkey.ko
2025-10-02T16:37:23.8448734Z LD [M] drivers/input/misc/ad714x-i2c.ko
2025-10-02T16:37:23.8481193Z LD [M] drivers/input/misc/ad714x-spi.ko
2025-10-02T16:37:23.8514983Z LD [M] drivers/input/misc/ad714x.ko
2025-10-02T16:37:23.8521554Z LD [M] drivers/input/misc/adxl34x-i2c.ko
2025-10-02T16:37:23.8540952Z LD [M] drivers/input/misc/adxl34x-spi.ko
2025-10-02T16:37:23.8569103Z LD [M] drivers/input/misc/adxl34x.ko
2025-10-02T16:37:23.8630486Z LD [M] drivers/input/misc/apanel.ko
2025-10-02T16:37:23.8661599Z LD [M] drivers/input/misc/arizona-haptics.ko
2025-10-02T16:37:23.8663077Z LD [M] drivers/input/misc/ati_remote2.ko
2025-10-02T16:37:23.8700575Z LD [M] drivers/input/misc/atlas_btns.ko
2025-10-02T16:37:23.8726515Z LD [M] drivers/input/misc/axp20x-pek.ko
2025-10-02T16:37:23.8768857Z LD [M] drivers/input/misc/bma150.ko
2025-10-02T16:37:23.8790431Z LD [M] drivers/input/misc/cm109.ko
2025-10-02T16:37:23.8803416Z LD [M] drivers/input/misc/cma3000_d0x.ko
2025-10-02T16:37:23.8865251Z LD [M] drivers/input/misc/cma3000_d0x_i2c.ko
2025-10-02T16:37:23.8900685Z LD [M] drivers/input/misc/da9052_onkey.ko
2025-10-02T16:37:23.8946281Z LD [M] drivers/input/misc/da9055_onkey.ko
2025-10-02T16:37:23.8972082Z LD [M] drivers/input/misc/da9063_onkey.ko
2025-10-02T16:37:23.8976353Z LD [M] drivers/input/misc/drv260x.ko
2025-10-02T16:37:23.8987505Z LD [M] drivers/input/misc/drv2665.ko
2025-10-02T16:37:23.9014680Z LD [M] drivers/input/misc/drv2667.ko
2025-10-02T16:37:23.9057250Z LD [M] drivers/input/misc/e3x0-button.ko
2025-10-02T16:37:23.9073662Z LD [M] drivers/input/misc/gpio-beeper.ko
2025-10-02T16:37:23.9119351Z LD [M] drivers/input/misc/gpio-vibra.ko
2025-10-02T16:37:23.9151390Z LD [M] drivers/input/misc/gpio_decoder.ko
2025-10-02T16:37:23.9198240Z LD [M] drivers/input/misc/ims-pcu.ko
2025-10-02T16:37:23.9199426Z LD [M] drivers/input/misc/ideapad_slidebar.ko
2025-10-02T16:37:23.9239057Z LD [M] drivers/input/misc/iqs269a.ko
2025-10-02T16:37:23.9240132Z LD [M] drivers/input/misc/keyspan_remote.ko
2025-10-02T16:37:23.9293914Z LD [M] drivers/input/misc/max77693-haptic.ko
2025-10-02T16:37:23.9303160Z LD [M] drivers/input/misc/kxtj9.ko
2025-10-02T16:37:23.9372901Z LD [M] drivers/input/misc/max8925_onkey.ko
2025-10-02T16:37:23.9373875Z LD [M] drivers/input/misc/max8997_haptic.ko
2025-10-02T16:37:23.9383650Z LD [M] drivers/input/misc/mc13783-pwrbutton.ko
2025-10-02T16:37:23.9435813Z LD [M] drivers/input/misc/mma8450.ko
2025-10-02T16:37:23.9471568Z LD [M] drivers/input/misc/palmas-pwrbutton.ko
2025-10-02T16:37:23.9500582Z LD [M] drivers/input/misc/pcf50633-input.ko
2025-10-02T16:37:23.9508246Z LD [M] drivers/input/misc/pcap_keys.ko
2025-10-02T16:37:23.9515866Z LD [M] drivers/input/misc/pcf8574_keypad.ko
2025-10-02T16:37:23.9594043Z LD [M] drivers/input/misc/powermate.ko
2025-10-02T16:37:23.9612222Z LD [M] drivers/input/misc/pcspkr.ko
2025-10-02T16:37:23.9631570Z LD [M] drivers/input/misc/pwm-beeper.ko
2025-10-02T16:37:23.9684161Z LD [M] drivers/input/misc/pwm-vibra.ko
2025-10-02T16:37:23.9699732Z LD [M] drivers/input/misc/rave-sp-pwrbutton.ko
2025-10-02T16:37:23.9739091Z LD [M] drivers/input/misc/regulator-haptic.ko
2025-10-02T16:37:23.9767645Z LD [M] drivers/input/misc/retu-pwrbutton.ko
2025-10-02T16:37:23.9790254Z LD [M] drivers/input/misc/rotary_encoder.ko
2025-10-02T16:37:23.9825355Z LD [M] drivers/input/misc/soc_button_array.ko
2025-10-02T16:37:23.9866389Z LD [M] drivers/input/misc/twl4030-pwrbutton.ko
2025-10-02T16:37:23.9905801Z LD [M] drivers/input/misc/twl4030-vibra.ko
2025-10-02T16:37:23.9917277Z LD [M] drivers/input/misc/twl6040-vibra.ko
2025-10-02T16:37:23.9939627Z LD [M] drivers/input/misc/uinput.ko
2025-10-02T16:37:23.9979172Z LD [M] drivers/input/misc/wm831x-on.ko
2025-10-02T16:37:24.0027836Z LD [M] drivers/input/misc/xen-kbdfront.ko
2025-10-02T16:37:24.0039830Z LD [M] drivers/input/misc/yealink.ko
2025-10-02T16:37:24.0071574Z LD [M] drivers/input/mouse/bcm5974.ko
2025-10-02T16:37:24.0074598Z LD [M] drivers/input/mouse/appletouch.ko
2025-10-02T16:37:24.0112977Z LD [M] drivers/input/mouse/cyapatp.ko
2025-10-02T16:37:24.0173464Z LD [M] drivers/input/mouse/elan_i2c.ko
2025-10-02T16:37:24.0208415Z LD [M] drivers/input/mouse/psmouse.ko
2025-10-02T16:37:24.0240471Z LD [M] drivers/input/mouse/gpio_mouse.ko
2025-10-02T16:37:24.0241896Z LD [M] drivers/input/mouse/sermouse.ko
2025-10-02T16:37:24.0316348Z LD [M] drivers/input/mouse/synaptics_i2c.ko
2025-10-02T16:37:24.0332117Z LD [M] drivers/input/mouse/synaptics_usb.ko
2025-10-02T16:37:24.0411991Z LD [M] drivers/input/mouse/vsxxxaa.ko
2025-10-02T16:37:24.0419683Z LD [M] drivers/input/mousedev.ko
2025-10-02T16:37:24.0473966Z LD [M] drivers/input/rmi4/rmi_core.ko
2025-10-02T16:37:24.0510835Z LD [M] drivers/input/rmi4/rmi_i2c.ko
2025-10-02T16:37:24.0512213Z LD [M] drivers/input/rmi4/rmi_smbus.ko
2025-10-02T16:37:24.0546271Z LD [M] drivers/input/rmi4/rmi_spi.ko
2025-10-02T16:37:24.0573456Z LD [M] drivers/input/serio/altera_ps2.ko
2025-10-02T16:37:24.0614806Z LD [M] drivers/input/serio/arc_ps2.ko
2025-10-02T16:37:24.0663913Z LD [M] drivers/input/serio/ct82c710.ko
2025-10-02T16:37:24.0670948Z LD [M] drivers/input/serio/hyperv-keyboard.ko
2025-10-02T16:37:24.0685737Z LD [M] drivers/input/serio/parkbd.ko
2025-10-02T16:37:24.0732133Z LD [M] drivers/input/serio/pcips2.ko
2025-10-02T16:37:24.0769251Z LD [M] drivers/input/serio/ps2-gpio.ko
2025-10-02T16:37:24.0790861Z LD [M] drivers/input/serio/ps2mult.ko
2025-10-02T16:37:24.0814298Z LD [M] drivers/input/serio/serport.ko
2025-10-02T16:37:24.0834183Z LD [M] drivers/input/serio/serio_raw.ko
2025-10-02T16:37:24.0884590Z LD [M] drivers/input/serio/userio.ko
2025-10-02T16:37:24.0898969Z LD [M] drivers/input/sparse-keymap.ko
2025-10-02T16:37:24.0918032Z LD [M] drivers/input/tablet/acecad.ko
2025-10-02T16:37:24.0949338Z LD [M] drivers/input/tablet/aiptek.ko
2025-10-02T16:37:24.0980416Z LD [M] drivers/input/tablet/gtco.ko
2025-10-02T16:37:24.1006269Z LD [M] drivers/input/tablet/kbtab.ko
2025-10-02T16:37:24.1013118Z LD [M] drivers/input/tablet/hanwang.ko
2025-10-02T16:37:24.1049329Z LD [M] drivers/input/tablet/pegasus_notetaker.ko
2025-10-02T16:37:24.1103553Z LD [M] drivers/input/tablet/wacom_serial4.ko
2025-10-02T16:37:24.1131257Z LD [M] drivers/input/touchscreen/88pm860x-ts.ko
2025-10-02T16:37:24.1133487Z LD [M] drivers/input/touchscreen/ad7877.ko
2025-10-02T16:37:24.1176561Z LD [M] drivers/input/touchscreen/ad7879-i2c.ko
2025-10-02T16:37:24.1196183Z LD [M] drivers/input/touchscreen/ad7879-spi.ko
2025-10-02T16:37:24.1241505Z LD [M] drivers/input/touchscreen/ad7879.ko
2025-10-02T16:37:24.1270474Z LD [M] drivers/input/touchscreen/ads7846.ko
2025-10-02T16:37:24.1294278Z LD [M] drivers/input/touchscreen/atmel_mxt_ts.ko
2025-10-02T16:37:24.1313040Z LD [M] drivers/input/touchscreen/auo-pixcir-ts.ko
2025-10-02T16:37:24.1348287Z LD [M] drivers/input/touchscreen/bu21013_ts.ko
2025-10-02T16:37:24.1362576Z LD [M] drivers/input/touchscreen/bu21029_ts.ko
2025-10-02T16:37:24.1418046Z LD [M] drivers/input/touchscreen/chipone_icn8505.ko
2025-10-02T16:37:24.1450324Z LD [M] drivers/input/touchscreen/cy8ctma140.ko
2025-10-02T16:37:24.1466499Z LD [M] drivers/input/touchscreen/cy8ctmg110_ts.ko
2025-10-02T16:37:24.1495889Z LD [M] drivers/input/touchscreen/cyttsp4_i2c.ko
2025-10-02T16:37:24.1521178Z LD [M] drivers/input/touchscreen/cyttsp4_core.ko
2025-10-02T16:37:24.1555886Z LD [M] drivers/input/touchscreen/cyttsp4_spi.ko
2025-10-02T16:37:24.1612114Z LD [M] drivers/input/touchscreen/cyttsp_i2c.ko
2025-10-02T16:37:24.1614875Z LD [M] drivers/input/touchscreen/cyttsp_i2c_common.ko
2025-10-02T16:37:24.1617890Z LD [M] drivers/input/touchscreen/cyttsp_core.ko
2025-10-02T16:37:24.1679857Z LD [M] drivers/input/touchscreen/cyttsp_spi.ko
2025-10-02T16:37:24.1681377Z LD [M] drivers/input/touchscreen/da9034-ts.ko
2025-10-02T16:37:24.1740885Z LD [M] drivers/input/touchscreen/da9052_tsi.ko
2025-10-02T16:37:24.1766422Z LD [M] drivers/input/touchscreen/dynapro.ko
2025-10-02T16:37:24.1781948Z LD [M] drivers/input/touchscreen/edt-ft5x06.ko
2025-10-02T16:37:24.1827577Z LD [M] drivers/input/touchscreen/eeti_ts.ko
2025-10-02T16:37:24.1830765Z LD [M] drivers/input/touchscreen/egalax_ts_serial.ko
2025-10-02T16:37:24.1882829Z LD [M] drivers/input/touchscreen/ektf2127.ko
2025-10-02T16:37:24.1905307Z LD [M] drivers/input/touchscreen/elants_i2c.ko
2025-10-02T16:37:24.1924759Z LD [M] drivers/input/touchscreen/elo.ko
2025-10-02T16:37:24.1965472Z LD [M] drivers/input/touchscreen/fujitsu_ts.ko
2025-10-02T16:37:24.1971741Z LD [M] drivers/input/touchscreen/exc3000.ko
2025-10-02T16:37:24.2042951Z LD [M] drivers/input/touchscreen/goodix.ko
2025-10-02T16:37:24.2060180Z LD [M] drivers/input/touchscreen/gunze.ko
2025-10-02T16:37:24.2063857Z LD [M] drivers/input/touchscreen/hampshire.ko
2025-10-02T16:37:24.2102829Z LD [M] drivers/input/touchscreen/ili210x.ko
2025-10-02T16:37:24.2146441Z LD [M] drivers/input/touchscreen/hideep.ko
2025-10-02T16:37:24.2179314Z LD [M] drivers/input/touchscreen/inexio.ko
2025-10-02T16:37:24.2184076Z LD [M] drivers/input/touchscreen/iqs5xx.ko
2025-10-02T16:37:24.2195185Z LD [M] drivers/input/touchscreen/max11801_ts.ko
2025-10-02T16:37:24.2254166Z LD [M] drivers/input/touchscreen/mc13783_ts.ko
2025-10-02T16:37:24.2304753Z LD [M] drivers/input/touchscreen/melfas_mip4.ko
2025-10-02T16:37:24.2320367Z LD [M] drivers/input/touchscreen/mcs5000_ts.ko
2025-10-02T16:37:24.2321351Z LD [M] drivers/input/touchscreen/mk712.ko
2025-10-02T16:37:24.2403166Z LD [M] drivers/input/touchscreen/mms114.ko
2025-10-02T16:37:24.2404607Z LD [M] drivers/input/touchscreen/mtouch.ko
2025-10-02T16:37:24.2460893Z LD [M] drivers/input/touchscreen/pcap_ts.ko
2025-10-02T16:37:24.2462322Z LD [M] drivers/input/touchscreen/penmount.ko
2025-10-02T16:37:24.2468221Z LD [M] drivers/input/touchscreen/pixcir_i2c_ts.ko
2025-10-02T16:37:24.2492409Z LD [M] drivers/input/touchscreen/raydium_i2c_ts.ko
2025-10-02T16:37:24.2528295Z LD [M] drivers/input/touchscreen/resistive-adc-touch.ko
2025-10-02T16:37:24.2585253Z LD [M] drivers/input/touchscreen/rohm_bu21023.ko
2025-10-02T16:37:24.2610801Z LD [M] drivers/input/touchscreen/s6sy761.ko
2025-10-02T16:37:24.2635620Z LD [M] drivers/input/touchscreen/silead.ko
2025-10-02T16:37:24.2674372Z LD [M] drivers/input/touchscreen/st1232.ko
2025-10-02T16:37:24.2678680Z LD [M] drivers/input/touchscreen/sis_i2c.ko
2025-10-02T16:37:24.2713639Z LD [M] drivers/input/touchscreen/stmfts.ko
2025-10-02T16:37:24.2728151Z LD [M] drivers/input/touchscreen/sur40.ko
2025-10-02T16:37:24.2767190Z LD [M] drivers/input/touchscreen/surface3_spi.ko
2025-10-02T16:37:24.2820949Z LD [M] drivers/input/touchscreen/sx8654.ko
2025-10-02T16:37:24.2849260Z LD [M] drivers/input/touchscreen/touchright.ko
2025-10-02T16:37:24.2859172Z LD [M] drivers/input/touchscreen/touchit213.ko
2025-10-02T16:37:24.2900559Z LD [M] drivers/input/touchscreen/touchwin.ko
2025-10-02T16:37:24.2916085Z LD [M] drivers/input/touchscreen/tps6507x-ts.ko
2025-10-02T16:37:24.2960579Z LD [M] drivers/input/touchscreen/tsc2004.ko
2025-10-02T16:37:24.3020052Z LD [M] drivers/input/touchscreen/tsc2005.ko
2025-10-02T16:37:24.3022183Z LD [M] drivers/input/touchscreen/tsc2007.ko
2025-10-02T16:37:24.3031001Z LD [M] drivers/input/touchscreen/tsc200x-core.ko
2025-10-02T16:37:24.3031921Z LD [M] drivers/input/touchscreen/tsc40.ko
2025-10-02T16:37:24.3097482Z LD [M] drivers/input/touchscreen/ucb1400_ts.ko
2025-10-02T16:37:24.3098599Z LD [M] drivers/input/touchscreen/usbtouchscreen.ko
2025-10-02T16:37:24.3153947Z LD [M] drivers/input/touchscreen/wacom_w8001.ko
2025-10-02T16:37:24.3163314Z LD [M] drivers/input/touchscreen/wacom_i2c.ko
2025-10-02T16:37:24.3198484Z LD [M] drivers/input/touchscreen/wdt87xx_i2c.ko
2025-10-02T16:37:24.3216776Z LD [M] drivers/input/touchscreen/wm97xx-ts.ko
2025-10-02T16:37:24.3250545Z LD [M] drivers/input/touchscreen/wm831x-ts.ko
2025-10-02T16:37:24.3294246Z LD [M] drivers/input/touchscreen/zet6223.ko
2025-10-02T16:37:24.3328312Z LD [M] drivers/input/touchscreen/zforce_ts.ko
2025-10-02T16:37:24.3333213Z LD [M] drivers/input/touchscreen/zinitix.ko
2025-10-02T16:37:24.3375643Z LD [M] drivers/ipack/devices/ipoctal.ko
2025-10-02T16:37:24.3390401Z LD [M] drivers/ipack/carriers/tpci200.ko
2025-10-02T16:37:24.3511923Z LD [M] drivers/ipack/ipack.ko
2025-10-02T16:37:24.3512826Z LD [M] drivers/isdn/hardware/mISDN/avmfritz.ko
2025-10-02T16:37:24.3521057Z LD [M] drivers/isdn/hardware/mISDN/hfcmulti.ko
2025-10-02T16:37:24.3564478Z LD [M] drivers/irqchip/irq-madera.ko
2025-10-02T16:37:24.3570736Z LD [M] drivers/isdn/capi/kernelcapi.ko
2025-10-02T16:37:24.3718767Z LD [M] drivers/isdn/hardware/mISDN/hfcpci.ko
2025-10-02T16:37:24.3721515Z LD [M] drivers/isdn/hardware/mISDN/hfcsusb.ko
2025-10-02T16:37:24.3768951Z LD [M] drivers/isdn/hardware/mISDN/isdnhdlc.ko
2025-10-02T16:37:24.3792078Z LD [M] drivers/isdn/hardware/mISDN/mISDNinfineon.ko
2025-10-02T16:37:24.3835167Z LD [M] drivers/isdn/hardware/mISDN/mISDNipac.ko
2025-10-02T16:37:24.3902777Z LD [M] drivers/isdn/hardware/mISDN/mISDNisar.ko
2025-10-02T16:37:24.3944928Z LD [M] drivers/isdn/hardware/mISDN/netjet.ko
2025-10-02T16:37:24.4035946Z LD [M] drivers/isdn/hardware/mISDN/speedfax.ko
2025-10-02T16:37:24.4305524Z LD [M] drivers/isdn/hardware/mISDN/w6692.ko
2025-10-02T16:37:24.4371107Z LD [M] drivers/isdn/mISDN/l1oip.ko
2025-10-02T16:37:24.4372331Z LD [M] drivers/isdn/mISDN/mISDN_core.ko
2025-10-02T16:37:24.4385804Z LD [M] drivers/isdn/mISDN/mISDN_dsp.ko
2025-10-02T16:37:24.4403349Z LD [M] drivers/leds/led-class-flash.ko
2025-10-02T16:37:24.5433093Z LD [M] drivers/leds/led-class-multicolor.ko
2025-10-02T16:37:24.5441128Z LD [M] drivers/leds/leds-88pm860x.ko
2025-10-02T16:37:24.5464706Z LD [M] drivers/leds/leds-adp5520.ko
2025-10-02T16:37:24.5501115Z LD [M] drivers/leds/leds-apu.ko
2025-10-02T16:37:24.5502860Z LD [M] drivers/leds/leds-as3645a.ko
2025-10-02T16:37:24.6358443Z LD [M] drivers/leds/leds-bd2802.ko
2025-10-02T16:37:24.6373411Z LD [M] drivers/leds/leds-blinkm.ko
2025-10-02T16:37:24.6398481Z LD [M] drivers/leds/leds-clevo-mail.ko
2025-10-02T16:37:24.6403084Z LD [M] drivers/leds/leds-da903x.ko
2025-10-02T16:37:24.6427158Z LD [M] drivers/leds/leds-da9052.ko
2025-10-02T16:37:24.6482186Z LD [M] drivers/leds/leds-dac124s085.ko
2025-10-02T16:37:24.6504957Z LD [M] drivers/leds/leds-gpio.ko
2025-10-02T16:37:24.6507331Z LD [M] drivers/leds/leds-lm3530.ko
2025-10-02T16:37:24.6537913Z LD [M] drivers/leds/leds-lm3532.ko
2025-10-02T16:37:24.6570288Z LD [M] drivers/leds/leds-lm3533.ko
2025-10-02T16:37:24.6595935Z LD [M] drivers/leds/leds-lm355x.ko
2025-10-02T16:37:24.6651837Z LD [M] drivers/leds/leds-lm3601x.ko
2025-10-02T16:37:24.6656426Z LD [M] drivers/leds/leds-lm36274.ko
2025-10-02T16:37:24.6663873Z LD [M] drivers/leds/leds-lm3642.ko
2025-10-02T16:37:24.6715805Z LD [M] drivers/leds/leds-lp3944.ko
2025-10-02T16:37:24.6748013Z LD [M] drivers/leds/leds-lp3952.ko
2025-10-02T16:37:24.6772029Z LD [M] drivers/leds/leds-lp50xx.ko
2025-10-02T16:37:24.6833158Z LD [M] drivers/leds/leds-lp8788.ko
2025-10-02T16:37:24.6834312Z LD [M] drivers/leds/leds-max8997.ko
2025-10-02T16:37:24.6872851Z LD [M] drivers/leds/leds-mc13783.ko
2025-10-02T16:37:24.6900328Z LD [M] drivers/leds/leds-menf21bmc.ko
2025-10-02T16:37:24.6910028Z LD [M] drivers/leds/leds-mlxcpld.ko
2025-10-02T16:37:24.6934106Z LD [M] drivers/leds/leds-mlxreg.ko
2025-10-02T16:37:24.6988447Z LD [M] drivers/leds/leds-pca9532.ko
2025-10-02T16:37:24.6994525Z LD [M] drivers/leds/leds-nic78bx.ko
2025-10-02T16:37:24.7004401Z LD [M] drivers/leds/leds-mt6323.ko
2025-10-02T16:37:24.7021029Z LD [M] drivers/leds/leds-pca955x.ko
2025-10-02T16:37:24.7056134Z LD [M] drivers/leds/leds-pca963x.ko
2025-10-02T16:37:24.7100743Z LD [M] drivers/leds/leds-pwm.ko
2025-10-02T16:37:24.7135562Z LD [M] drivers/leds/leds-regulator.ko
2025-10-02T16:37:24.7171477Z LD [M] drivers/leds/leds-sgm3140.ko
2025-10-02T16:37:24.7172981Z LD [M] drivers/leds/leds-tca6507.ko
2025-10-02T16:37:24.7181181Z LD [M] drivers/leds/leds-ss4200.ko
2025-10-02T16:37:24.7230061Z LD [M] drivers/leds/leds-ti-lmu-common.ko
2025-10-02T16:37:24.7277140Z LD [M] drivers/leds/leds-tlc591xx.ko
2025-10-02T16:37:24.7291459Z LD [M] drivers/leds/leds-tps6105x.ko
2025-10-02T16:37:24.7303798Z LD [M] drivers/leds/leds-wm831x-status.ko
2025-10-02T16:37:24.7353840Z LD [M] drivers/leds/leds-wm8350.ko
2025-10-02T16:37:24.7361722Z LD [M] drivers/leds/trigger/ledtrig-activity.ko
2025-10-02T16:37:24.7414103Z LD [M] drivers/leds/trigger/ledtrig-camera.ko
2025-10-02T16:37:24.7465876Z LD [M] drivers/leds/trigger/ledtrig-backlight.ko
2025-10-02T16:37:24.7467153Z LD [M] drivers/leds/trigger/ledtrig-audio.ko
2025-10-02T16:37:24.7468464Z LD [M] drivers/leds/trigger/ledtrig-default-on.ko
2025-10-02T16:37:24.7517810Z LD [M] drivers/leds/trigger/ledtrig-gpio.ko
2025-10-02T16:37:24.7545585Z LD [M] drivers/leds/trigger/ledtrig-heartbeat.ko
2025-10-02T16:37:24.7553339Z LD [M] drivers/leds/trigger/ledtrig-oneshot.ko
2025-10-02T16:37:24.7557726Z LD [M] drivers/leds/trigger/ledtrig-netdev.ko
2025-10-02T16:37:24.7607769Z LD [M] drivers/leds/trigger/ledtrig-pattern.ko
2025-10-02T16:37:24.7653409Z LD [M] drivers/leds/trigger/ledtrig-timer.ko
2025-10-02T16:37:24.7666642Z LD [M] drivers/leds/trigger/ledtrig-transient.ko
2025-10-02T16:37:24.7691467Z LD [M] drivers/leds/uleds.ko
2025-10-02T16:37:24.7713843Z LD [M] drivers/macintosh/mac_hid.ko
2025-10-02T16:37:24.7748220Z LD [M] drivers/mailbox/mailbox-altera.ko
2025-10-02T16:37:24.7760726Z LD [M] drivers/mcb/mcb-lpc.ko
2025-10-02T16:37:24.7807806Z LD [M] drivers/mcb/mcb-pci.ko
2025-10-02T16:37:24.7830705Z LD [M] drivers/mcb/mcb.ko
2025-10-02T16:37:24.7845371Z LD [M] drivers/md/bcache/bcache.ko
2025-10-02T16:37:24.7867052Z LD [M] drivers/md/dm-bio-prison.ko
2025-10-02T16:37:24.7916263Z LD [M] drivers/md/dm-cache-smq.ko
2025-10-02T16:37:24.7931597Z LD [M] drivers/md/dm-bufio.ko
2025-10-02T16:37:24.8042868Z LD [M] drivers/md/dm-clone.ko
2025-10-02T16:37:24.8059955Z LD [M] drivers/md/dm-cache.ko
2025-10-02T16:37:24.8088426Z LD [M] drivers/md/dm-crypt.ko
2025-10-02T16:37:24.8125282Z LD [M] drivers/md/dm-delay.ko
2025-10-02T16:37:24.8246956Z LD [M] drivers/md/dm-dust.ko
2025-10-02T16:37:24.8350923Z LD [M] drivers/md/dm-ebs.ko
2025-10-02T16:37:24.8385299Z LD [M] drivers/md/dm-flakey.ko
2025-10-02T16:37:24.8410134Z LD [M] drivers/md/dm-historical-service-time.ko
2025-10-02T16:37:24.8421035Z LD [M] drivers/md/dm-era.ko
2025-10-02T16:37:24.8422230Z LD [M] drivers/md/dm-integrity.ko
2025-10-02T16:37:24.8469942Z LD [M] drivers/md/dm-log-userspace.ko
2025-10-02T16:37:24.8537859Z LD [M] drivers/md/dm-log-writes.ko
2025-10-02T16:37:24.8550029Z LD [M] drivers/md/dm-log.ko
2025-10-02T16:37:24.8557664Z LD [M] drivers/md/dm-mirror.ko
2025-10-02T16:37:24.8621391Z LD [M] drivers/md/dm-mod.ko
2025-10-02T16:37:24.8642908Z LD [M] drivers/md/dm-multipath.ko
2025-10-02T16:37:24.8683516Z LD [M] drivers/md/dm-queue-length.ko
2025-10-02T16:37:24.8723675Z LD [M] drivers/md/dm-region-hash.ko
2025-10-02T16:37:24.8748820Z LD [M] drivers/md/dm-raid.ko
2025-10-02T16:37:24.8791316Z LD [M] drivers/md/dm-round-robin.ko
2025-10-02T16:37:24.8807413Z LD [M] drivers/md/dm-service-time.ko
2025-10-02T16:37:24.8872107Z LD [M] drivers/md/dm-snapshot.ko
2025-10-02T16:37:24.8924677Z LD [M] drivers/md/dm-switch.ko
2025-10-02T16:37:24.8958824Z LD [M] drivers/md/dm-thin-pool.ko
2025-10-02T16:37:24.8970087Z LD [M] drivers/md/dm-unstripe.ko
2025-10-02T16:37:24.8996460Z LD [M] drivers/md/dm-verity.ko
2025-10-02T16:37:24.9052601Z LD [M] drivers/md/dm-writecache.ko
2025-10-02T16:37:24.9079686Z LD [M] drivers/md/dm-zero.ko
2025-10-02T16:37:24.9135287Z LD [M] drivers/md/dm-zoned.ko
2025-10-02T16:37:24.9187610Z LD [M] drivers/md/faulty.ko
2025-10-02T16:37:24.9189228Z LD [M] drivers/md/linear.ko
2025-10-02T16:37:24.9216133Z LD [M] drivers/md/md-cluster.ko
2025-10-02T16:37:24.9244622Z LD [M] drivers/md/multipath.ko
2025-10-02T16:37:24.9247688Z LD [M] drivers/md/md-mod.ko
2025-10-02T16:37:24.9321201Z LD [M] drivers/md/persistent-data/dm-persistent-data.ko
2025-10-02T16:37:24.9329738Z LD [M] drivers/md/raid0.ko
2025-10-02T16:37:24.9368688Z LD [M] drivers/md/raid1.ko
2025-10-02T16:37:24.9411728Z LD [M] drivers/md/raid10.ko
2025-10-02T16:37:24.9513130Z LD [M] drivers/md/raid456.ko
2025-10-02T16:37:24.9521251Z LD [M] drivers/media/cec/core/cec.ko
2025-10-02T16:37:24.9542649Z LD [M] drivers/media/cec/i2c/ch7322.ko
2025-10-02T16:37:24.9594493Z LD [M] drivers/media/cec/platform/cec-gpio/cec-gpio.ko
2025-10-02T16:37:24.9663947Z LD [M] drivers/media/cec/platform/cros-ec/cros-ec-cec.ko
2025-10-02T16:37:24.9727567Z LD [M] drivers/media/cec/platform/seco/seco-cec.ko
2025-10-02T16:37:24.9740970Z LD [M] drivers/media/cec/usb/pulse8/pulse8-cec.ko
2025-10-02T16:37:24.9745447Z LD [M] drivers/media/cec/usb/rainshadow/rainshadow-cec.ko
2025-10-02T16:37:24.9774242Z LD [M] drivers/media/common/b2c2/b2c2-flexcop.ko
2025-10-02T16:37:24.9814241Z LD [M] drivers/media/common/cypress_firmware.ko
2025-10-02T16:37:24.9836167Z LD [M] drivers/media/common/cx2341x.ko
2025-10-02T16:37:24.9889937Z LD [M] drivers/media/common/saa7146/saa7146_vv.ko
2025-10-02T16:37:24.9891122Z LD [M] drivers/media/common/saa7146/saa7146.ko
2025-10-02T16:37:24.9954981Z LD [M] drivers/media/common/siano/smsdvb.ko
2025-10-02T16:37:24.9980120Z LD [M] drivers/media/common/siano/smsmdtv.ko
2025-10-02T16:37:25.0003870Z LD [M] drivers/media/common/tveeprom.ko
2025-10-02T16:37:25.0054978Z LD [M] drivers/media/common/v4l2-tpg/v4l2-tpg.ko
2025-10-02T16:37:25.0092169Z LD [M] drivers/media/common/videobuf2/videobuf2-common.ko
2025-10-02T16:37:25.0118830Z LD [M] drivers/media/common/videobuf2/videobuf2-dma-contig.ko
2025-10-02T16:37:25.0145217Z LD [M] drivers/media/common/videobuf2/videobuf2-dvb.ko
2025-10-02T16:37:25.0149413Z LD [M] drivers/media/common/videobuf2/videobuf2-dma-sg.ko
2025-10-02T16:37:25.0216130Z LD [M] drivers/media/common/videobuf2/videobuf2-memops.ko
2025-10-02T16:37:25.0268048Z LD [M] drivers/media/common/videobuf2/videobuf2-vmalloc.ko
2025-10-02T16:37:25.0300792Z LD [M] drivers/media/common/videobuf2/videobuf2-v4l2.ko
2025-10-02T16:37:25.0302099Z LD [M] drivers/media/dvb-core/dvb-core.ko
2025-10-02T16:37:25.0335175Z LD [M] drivers/media/dvb-frontends/a8293.ko
2025-10-02T16:37:25.0352364Z LD [M] drivers/media/dvb-frontends/af9013.ko
2025-10-02T16:37:25.0408475Z LD [M] drivers/media/dvb-frontends/as102_fe.ko
2025-10-02T16:37:25.0424030Z LD [M] drivers/media/dvb-frontends/af9033.ko
2025-10-02T16:37:25.0518079Z LD [M] drivers/media/dvb-frontends/ascot2e.ko
2025-10-02T16:37:25.0521101Z LD [M] drivers/media/dvb-frontends/au8522_common.ko
2025-10-02T16:37:25.0527493Z LD [M] drivers/media/dvb-frontends/atbm8830.ko
2025-10-02T16:37:25.0555061Z LD [M] drivers/media/dvb-frontends/au8522_decoder.ko
2025-10-02T16:37:25.0576937Z LD [M] drivers/media/dvb-frontends/au8522_dig.ko
2025-10-02T16:37:25.0640221Z LD [M] drivers/media/dvb-frontends/bcm3510.ko
2025-10-02T16:37:25.0646547Z LD [M] drivers/media/dvb-frontends/cx22700.ko
2025-10-02T16:37:25.0670635Z LD [M] drivers/media/dvb-frontends/cx22702.ko
2025-10-02T16:37:25.0708287Z LD [M] drivers/media/dvb-frontends/cx24110.ko
2025-10-02T16:37:25.0723108Z LD [M] drivers/media/dvb-frontends/cx24113.ko
2025-10-02T16:37:25.0751831Z LD [M] drivers/media/dvb-frontends/cx24116.ko
2025-10-02T16:37:25.0770198Z LD [M] drivers/media/dvb-frontends/cx24117.ko
2025-10-02T16:37:25.0834991Z LD [M] drivers/media/dvb-frontends/cx24123.ko
2025-10-02T16:37:25.0840492Z LD [M] drivers/media/dvb-frontends/cx24120.ko
2025-10-02T16:37:25.0878018Z LD [M] drivers/media/dvb-frontends/cxd2820r.ko
2025-10-02T16:37:25.0894177Z LD [M] drivers/media/dvb-frontends/cxd2099.ko
2025-10-02T16:37:25.0936004Z LD [M] drivers/media/dvb-frontends/cxd2841er.ko
2025-10-02T16:37:25.0966964Z LD [M] drivers/media/dvb-frontends/dib0070.ko
2025-10-02T16:37:25.0983690Z LD [M] drivers/media/dvb-frontends/dib0090.ko
2025-10-02T16:37:25.1056447Z LD [M] drivers/media/dvb-frontends/dib3000mb.ko
2025-10-02T16:37:25.1114672Z LD [M] drivers/media/dvb-frontends/dib7000p.ko
2025-10-02T16:37:25.1138429Z LD [M] drivers/media/dvb-frontends/dib3000mc.ko
2025-10-02T16:37:25.1140512Z LD [M] drivers/media/dvb-frontends/dib8000.ko
2025-10-02T16:37:25.1141676Z LD [M] drivers/media/dvb-frontends/dib7000m.ko
2025-10-02T16:37:25.1272411Z LD [M] drivers/media/dvb-frontends/drx39xyj/drx39xyj.ko
2025-10-02T16:37:25.1273960Z LD [M] drivers/media/dvb-frontends/dibx000_common.ko
2025-10-02T16:37:25.1276563Z LD [M] drivers/media/dvb-frontends/drxd.ko
2025-10-02T16:37:25.1321261Z LD [M] drivers/media/dvb-frontends/drxk.ko
2025-10-02T16:37:25.1334685Z LD [M] drivers/media/dvb-frontends/ds3000.ko
2025-10-02T16:37:25.1401571Z LD [M] drivers/media/dvb-frontends/dvb-pll.ko
2025-10-02T16:37:25.1433703Z LD [M] drivers/media/dvb-frontends/dvb_dummy_fe.ko
2025-10-02T16:37:25.1455189Z LD [M] drivers/media/dvb-frontends/ec100.ko
2025-10-02T16:37:25.1468373Z LD [M] drivers/media/dvb-frontends/gp8psk-fe.ko
2025-10-02T16:37:25.1499988Z LD [M] drivers/media/dvb-frontends/helene.ko
2025-10-02T16:37:25.1536630Z LD [M] drivers/media/dvb-frontends/horus3a.ko
2025-10-02T16:37:25.1562730Z LD [M] drivers/media/dvb-frontends/isl6405.ko
2025-10-02T16:37:25.1594539Z LD [M] drivers/media/dvb-frontends/isl6421.ko
2025-10-02T16:37:25.1599022Z LD [M] drivers/media/dvb-frontends/isl6423.ko
2025-10-02T16:37:25.1664119Z LD [M] drivers/media/dvb-frontends/itd1000.ko
2025-10-02T16:37:25.1676941Z LD [M] drivers/media/dvb-frontends/ix2505v.ko
2025-10-02T16:37:25.1706868Z LD [M] drivers/media/dvb-frontends/l64781.ko
2025-10-02T16:37:25.1727374Z LD [M] drivers/media/dvb-frontends/lg2160.ko
2025-10-02T16:37:25.1747550Z LD [M] drivers/media/dvb-frontends/lgdt3305.ko
2025-10-02T16:37:25.1783782Z LD [M] drivers/media/dvb-frontends/lgdt3306a.ko
2025-10-02T16:37:25.1817165Z LD [M] drivers/media/dvb-frontends/lgdt330x.ko
2025-10-02T16:37:25.1837270Z LD [M] drivers/media/dvb-frontends/lgs8gxx.ko
2025-10-02T16:37:25.1900703Z LD [M] drivers/media/dvb-frontends/lnbh25.ko
2025-10-02T16:37:25.1909293Z LD [M] drivers/media/dvb-frontends/lnbp21.ko
2025-10-02T16:37:25.1931402Z LD [M] drivers/media/dvb-frontends/lnbp22.ko
2025-10-02T16:37:25.1968705Z LD [M] drivers/media/dvb-frontends/m88ds3103.ko
2025-10-02T16:37:25.1990086Z LD [M] drivers/media/dvb-frontends/m88rs2000.ko
2025-10-02T16:37:25.1999265Z LD [M] drivers/media/dvb-frontends/mb86a16.ko
2025-10-02T16:37:25.2022503Z LD [M] drivers/media/dvb-frontends/mb86a20s.ko
2025-10-02T16:37:25.2056911Z LD [M] drivers/media/dvb-frontends/mn88472.ko
2025-10-02T16:37:25.2134148Z LD [M] drivers/media/dvb-frontends/mt312.ko
2025-10-02T16:37:25.2138475Z LD [M] drivers/media/dvb-frontends/mn88473.ko
2025-10-02T16:37:25.2170661Z LD [M] drivers/media/dvb-frontends/mt352.ko
2025-10-02T16:37:25.2171778Z LD [M] drivers/media/dvb-frontends/mxl5xx.ko
2025-10-02T16:37:25.2211443Z LD [M] drivers/media/dvb-frontends/nxt200x.ko
2025-10-02T16:37:25.2272132Z LD [M] drivers/media/dvb-frontends/nxt6000.ko
2025-10-02T16:37:25.2297984Z LD [M] drivers/media/dvb-frontends/or51132.ko
2025-10-02T16:37:25.2308790Z LD [M] drivers/media/dvb-frontends/or51211.ko
2025-10-02T16:37:25.2337901Z LD [M] drivers/media/dvb-frontends/rtl2832.ko
2025-10-02T16:37:25.2358880Z LD [M] drivers/media/dvb-frontends/rtl2830.ko
2025-10-02T16:37:25.2419383Z LD [M] drivers/media/dvb-frontends/s5h1409.ko
2025-10-02T16:37:25.2439019Z LD [M] drivers/media/dvb-frontends/s5h1411.ko
2025-10-02T16:37:25.2464616Z LD [M] drivers/media/dvb-frontends/s5h1420.ko
2025-10-02T16:37:25.2480124Z LD [M] drivers/media/dvb-frontends/s921.ko
2025-10-02T16:37:25.2500482Z LD [M] drivers/media/dvb-frontends/si2165.ko
2025-10-02T16:37:25.2553716Z LD [M] drivers/media/dvb-frontends/si2168.ko
2025-10-02T16:37:25.2596166Z LD [M] drivers/media/dvb-frontends/sp2.ko
2025-10-02T16:37:25.2601465Z LD [M] drivers/media/dvb-frontends/si21xx.ko
2025-10-02T16:37:25.2634084Z LD [M] drivers/media/dvb-frontends/sp8870.ko
2025-10-02T16:37:25.2689393Z LD [M] drivers/media/dvb-frontends/sp887x.ko
2025-10-02T16:37:25.2731224Z LD [M] drivers/media/dvb-frontends/stb0899.ko
2025-10-02T16:37:25.2759870Z LD [M] drivers/media/dvb-frontends/stb6000.ko
2025-10-02T16:37:25.2765493Z LD [M] drivers/media/dvb-frontends/stb6100.ko
2025-10-02T16:37:25.2845889Z LD [M] drivers/media/dvb-frontends/stv0288.ko
2025-10-02T16:37:25.2917905Z LD [M] drivers/media/dvb-frontends/stv0297.ko
2025-10-02T16:37:25.2922934Z LD [M] drivers/media/dvb-frontends/stv0299.ko
2025-10-02T16:37:25.2969390Z LD [M] drivers/media/dvb-frontends/stv0900.ko
2025-10-02T16:37:25.3014618Z LD [M] drivers/media/dvb-frontends/stv0367.ko
2025-10-02T16:37:25.3077567Z LD [M] drivers/media/dvb-frontends/stv090x.ko
2025-10-02T16:37:25.3078545Z LD [M] drivers/media/dvb-frontends/stv0910.ko
2025-10-02T16:37:25.3080745Z LD [M] drivers/media/dvb-frontends/stv6110.ko
2025-10-02T16:37:25.3184601Z LD [M] drivers/media/dvb-frontends/stv6110x.ko
2025-10-02T16:37:25.3185842Z LD [M] drivers/media/dvb-frontends/stv6111.ko
2025-10-02T16:37:25.3210093Z LD [M] drivers/media/dvb-frontends/tc90522.ko
2025-10-02T16:37:25.3250282Z LD [M] drivers/media/dvb-frontends/tda10021.ko
2025-10-02T16:37:25.3266965Z LD [M] drivers/media/dvb-frontends/tda10023.ko
2025-10-02T16:37:25.3322888Z LD [M] drivers/media/dvb-frontends/tda10048.ko
2025-10-02T16:37:25.3327110Z LD [M] drivers/media/dvb-frontends/tda1004x.ko
2025-10-02T16:37:25.3353892Z LD [M] drivers/media/dvb-frontends/tda10071.ko
2025-10-02T16:37:25.3378305Z LD [M] drivers/media/dvb-frontends/tda10086.ko
2025-10-02T16:37:25.3457685Z LD [M] drivers/media/dvb-frontends/tda665x.ko
2025-10-02T16:37:25.3461221Z LD [M] drivers/media/dvb-frontends/tda18271c2dd.ko
2025-10-02T16:37:25.3463643Z LD [M] drivers/media/dvb-frontends/tda8083.ko
2025-10-02T16:37:25.3501375Z LD [M] drivers/media/dvb-frontends/tda8261.ko
2025-10-02T16:37:25.3545504Z LD [M] drivers/media/dvb-frontends/tda826x.ko
2025-10-02T16:37:25.3599734Z LD [M] drivers/media/dvb-frontends/tua6100.ko
2025-10-02T16:37:25.3603915Z LD [M] drivers/media/dvb-frontends/ts2020.ko
2025-10-02T16:37:25.3618725Z LD [M] drivers/media/dvb-frontends/ves1820.ko
2025-10-02T16:37:25.3660689Z LD [M] drivers/media/dvb-frontends/zd1301_demod.ko
2025-10-02T16:37:25.3671321Z LD [M] drivers/media/dvb-frontends/ves1x93.ko
2025-10-02T16:37:25.3723105Z LD [M] drivers/media/dvb-frontends/zl10036.ko
2025-10-02T16:37:25.3747064Z LD [M] drivers/media/dvb-frontends/zl10039.ko
2025-10-02T16:37:25.3763909Z LD [M] drivers/media/dvb-frontends/zl10353.ko
2025-10-02T16:37:25.3806973Z LD [M] drivers/media/firewire/firedtv.ko
2025-10-02T16:37:25.3814039Z LD [M] drivers/media/i2c/ad5820.ko
2025-10-02T16:37:25.3881423Z LD [M] drivers/media/i2c/adp1653.ko
2025-10-02T16:37:25.3909446Z LD [M] drivers/media/i2c/aptina-pll.ko
2025-10-02T16:37:25.3911698Z LD [M] drivers/media/i2c/ak7375.ko
2025-10-02T16:37:25.3938720Z LD [M] drivers/media/i2c/cs3308.ko
2025-10-02T16:37:25.4005372Z LD [M] drivers/media/i2c/cs5345.ko
2025-10-02T16:37:25.4013903Z LD [M] drivers/media/i2c/cs53l32a.ko
2025-10-02T16:37:25.4050378Z LD [M] drivers/media/i2c/cx25840/cx25840.ko
2025-10-02T16:37:25.4073710Z LD [M] drivers/media/i2c/dw9714.ko
2025-10-02T16:37:25.4098418Z LD [M] drivers/media/i2c/dw9768.ko
2025-10-02T16:37:25.4127868Z LD [M] drivers/media/i2c/dw9807-vcm.ko
2025-10-02T16:37:25.4166747Z LD [M] drivers/media/i2c/et8ek8/et8ek8.ko
2025-10-02T16:37:25.4223858Z LD [M] drivers/media/i2c/hi556.ko
2025-10-02T16:37:25.4240766Z LD [M] drivers/media/i2c/imx214.ko
2025-10-02T16:37:25.4254769Z LD [M] drivers/media/i2c/imx219.ko
2025-10-02T16:37:25.4306001Z LD [M] drivers/media/i2c/imx258.ko
2025-10-02T16:37:25.4329173Z LD [M] drivers/media/i2c/imx274.ko
2025-10-02T16:37:25.4348241Z LD [M] drivers/media/i2c/imx290.ko
2025-10-02T16:37:25.4386297Z LD [M] drivers/media/i2c/imx319.ko
2025-10-02T16:37:25.4405751Z LD [M] drivers/media/i2c/imx355.ko
2025-10-02T16:37:25.4454951Z LD [M] drivers/media/i2c/ir-kbd-i2c.ko
2025-10-02T16:37:25.4495516Z LD [M] drivers/media/i2c/lm3560.ko
2025-10-02T16:37:25.4537014Z LD [M] drivers/media/i2c/lm3646.ko
2025-10-02T16:37:25.4570836Z LD [M] drivers/media/i2c/m52790.ko
2025-10-02T16:37:25.4571848Z LD [M] drivers/media/i2c/m5mols/m5mols.ko
2025-10-02T16:37:25.4601334Z LD [M] drivers/media/i2c/msp3400.ko
2025-10-02T16:37:25.4641649Z LD [M] drivers/media/i2c/mt9m001.ko
2025-10-02T16:37:25.4694549Z LD [M] drivers/media/i2c/mt9m032.ko
2025-10-02T16:37:25.4695422Z LD [M] drivers/media/i2c/mt9m111.ko
2025-10-02T16:37:25.4752353Z LD [M] drivers/media/i2c/mt9p031.ko
2025-10-02T16:37:25.4759308Z LD [M] drivers/media/i2c/mt9t001.ko
2025-10-02T16:37:25.4774903Z LD [M] drivers/media/i2c/mt9t112.ko
2025-10-02T16:37:25.4832662Z LD [M] drivers/media/i2c/mt9v011.ko
2025-10-02T16:37:25.4866550Z LD [M] drivers/media/i2c/mt9v032.ko
2025-10-02T16:37:25.4903097Z LD [M] drivers/media/i2c/mt9v111.ko
2025-10-02T16:37:25.4910580Z LD [M] drivers/media/i2c/noon010pc30.ko
2025-10-02T16:37:25.4934685Z LD [M] drivers/media/i2c/ov13858.ko
2025-10-02T16:37:25.4972887Z LD [M] drivers/media/i2c/ov2640.ko
2025-10-02T16:37:25.5029980Z LD [M] drivers/media/i2c/ov2659.ko
2025-10-02T16:37:25.5039090Z LD [M] drivers/media/i2c/ov2680.ko
2025-10-02T16:37:25.5080924Z LD [M] drivers/media/i2c/ov2685.ko
2025-10-02T16:37:25.5111293Z LD [M] drivers/media/i2c/ov2740.ko
2025-10-02T16:37:25.5151375Z LD [M] drivers/media/i2c/ov5647.ko
2025-10-02T16:37:25.5169307Z LD [M] drivers/media/i2c/ov5670.ko
2025-10-02T16:37:25.5203359Z LD [M] drivers/media/i2c/ov5675.ko
2025-10-02T16:37:25.5248958Z LD [M] drivers/media/i2c/ov5695.ko
2025-10-02T16:37:25.5256950Z LD [M] drivers/media/i2c/ov6650.ko
2025-10-02T16:37:25.5321253Z LD [M] drivers/media/i2c/ov7251.ko
2025-10-02T16:37:25.5325727Z LD [M] drivers/media/i2c/ov7640.ko
2025-10-02T16:37:25.5331121Z LD [M] drivers/media/i2c/ov7670.ko
2025-10-02T16:37:25.5407129Z LD [M] drivers/media/i2c/ov772x.ko
2025-10-02T16:37:25.5439804Z LD [M] drivers/media/i2c/ov7740.ko
2025-10-02T16:37:25.5444539Z LD [M] drivers/media/i2c/ov8856.ko
2025-10-02T16:37:25.5515224Z LD [M] drivers/media/i2c/ov9640.ko
2025-10-02T16:37:25.5516203Z LD [M] drivers/media/i2c/ov9650.ko
2025-10-02T16:37:25.5538228Z LD [M] drivers/media/i2c/rdacm20-camera_module.ko
2025-10-02T16:37:25.5562430Z LD [M] drivers/media/i2c/rj54n1cb0c.ko
2025-10-02T16:37:25.5608496Z LD [M] drivers/media/i2c/s5c73m3/s5c73m3.ko
2025-10-02T16:37:25.5631503Z LD [M] drivers/media/i2c/s5k4ecgx.ko
2025-10-02T16:37:25.5679848Z LD [M] drivers/media/i2c/s5k5baf.ko
2025-10-02T16:37:25.5705812Z LD [M] drivers/media/i2c/s5k6a3.ko
2025-10-02T16:37:25.5728941Z LD [M] drivers/media/i2c/s5k6aa.ko
2025-10-02T16:37:25.5771950Z LD [M] drivers/media/i2c/saa6588.ko
2025-10-02T16:37:25.5792382Z LD [M] drivers/media/i2c/saa6752hs.ko
2025-10-02T16:37:25.5825203Z LD [M] drivers/media/i2c/saa7115.ko
2025-10-02T16:37:25.5867819Z LD [M] drivers/media/i2c/saa7127.ko
2025-10-02T16:37:25.5908244Z LD [M] drivers/media/i2c/saa717x.ko
2025-10-02T16:37:25.5919385Z LD [M] drivers/media/i2c/smiapp-pll.ko
2025-10-02T16:37:25.5957973Z LD [M] drivers/media/i2c/sony-btf-mpx.ko
2025-10-02T16:37:25.5962471Z LD [M] drivers/media/i2c/smiapp/smiapp.ko
2025-10-02T16:37:25.5996921Z LD [M] drivers/media/i2c/sr030pc30.ko
2025-10-02T16:37:25.6052702Z LD [M] drivers/media/i2c/tda7432.ko
2025-10-02T16:37:25.6055631Z LD [M] drivers/media/i2c/tda9840.ko
2025-10-02T16:37:25.6092777Z LD [M] drivers/media/i2c/tea6415c.ko
2025-10-02T16:37:25.6115327Z LD [M] drivers/media/i2c/tea6420.ko
2025-10-02T16:37:25.6174698Z LD [M] drivers/media/i2c/tvp5150.ko
2025-10-02T16:37:25.6178684Z LD [M] drivers/media/i2c/tvaudio.ko
2025-10-02T16:37:25.6210591Z LD [M] drivers/media/i2c/tw2804.ko
2025-10-02T16:37:25.6230819Z LD [M] drivers/media/i2c/tw9903.ko
2025-10-02T16:37:25.6267672Z LD [M] drivers/media/i2c/tw9906.ko
2025-10-02T16:37:25.6339030Z LD [M] drivers/media/i2c/uda1342.ko
2025-10-02T16:37:25.6340101Z LD [M] drivers/media/i2c/upd64031a.ko
2025-10-02T16:37:25.6345562Z LD [M] drivers/media/i2c/upd64083.ko
2025-10-02T16:37:25.6395124Z LD [M] drivers/media/i2c/vp27smpx.ko
2025-10-02T16:37:25.6414658Z LD [M] drivers/media/i2c/vs6624.ko
2025-10-02T16:37:25.6453575Z LD [M] drivers/media/i2c/wm8739.ko
2025-10-02T16:37:25.6463281Z LD [M] drivers/media/i2c/wm8775.ko
2025-10-02T16:37:25.6498109Z LD [M] drivers/media/mc/mc.ko
2025-10-02T16:37:25.6541027Z LD [M] drivers/media/mmc/siano/smssdio.ko
2025-10-02T16:37:25.6557660Z LD [M] drivers/media/pci/b2c2/b2c2-flexcop-pci.ko
2025-10-02T16:37:25.6591118Z LD [M] drivers/media/pci/bt8xx/bt878.ko
2025-10-02T16:37:25.6641652Z LD [M] drivers/media/pci/bt8xx/bttv.ko
2025-10-02T16:37:25.6696289Z LD [M] drivers/media/pci/bt8xx/dst.ko
2025-10-02T16:37:25.6710048Z LD [M] drivers/media/pci/bt8xx/dst_ca.ko
2025-10-02T16:37:25.6714567Z LD [M] drivers/media/pci/cx18/cx18-alsa.ko
2025-10-02T16:37:25.6720585Z LD [M] drivers/media/pci/bt8xx/dvb-bt8xx.ko
2025-10-02T16:37:25.6838005Z LD [M] drivers/media/pci/cx18/cx18.ko
2025-10-02T16:37:25.6860060Z LD [M] drivers/media/pci/cx23885/altera-ci.ko
2025-10-02T16:37:25.6899163Z LD [M] drivers/media/pci/cx23885/cx23885.ko
2025-10-02T16:37:25.6906505Z LD [M] drivers/media/pci/cx25821/cx25821-alsa.ko
2025-10-02T16:37:25.6974119Z LD [M] drivers/media/pci/cx25821/cx25821.ko
2025-10-02T16:37:25.7026323Z LD [M] drivers/media/pci/cx88/cx88-alsa.ko
2025-10-02T16:37:25.7075781Z LD [M] drivers/media/pci/cx88/cx88-blackbird.ko
2025-10-02T16:37:25.7170126Z LD [M] drivers/media/pci/cx88/cx88-dvb.ko
2025-10-02T16:37:25.7278630Z LD [M] drivers/media/pci/cx88/cx88-vp3054-i2c.ko
2025-10-02T16:37:25.7283016Z LD [M] drivers/media/pci/cx88/cx8800.ko
2025-10-02T16:37:25.7359028Z LD [M] drivers/media/pci/cx88/cx8802.ko
2025-10-02T16:37:25.7392821Z LD [M] drivers/media/pci/cx88/cx88xx.ko
2025-10-02T16:37:25.7471724Z LD [M] drivers/media/pci/ddbridge/ddbridge-dummy-fe.ko
2025-10-02T16:37:25.7662726Z LD [M] drivers/media/pci/ddbridge/ddbridge.ko
2025-10-02T16:37:25.7710078Z LD [M] drivers/media/pci/dm1105/dm1105.ko
2025-10-02T16:37:25.7715039Z LD [M] drivers/media/pci/dt3155/dt3155.ko
2025-10-02T16:37:25.7748603Z LD [M] drivers/media/pci/intel/ipu3/ipu3-cio2.ko
2025-10-02T16:37:25.7858083Z LD [M] drivers/media/pci/ivtv/ivtv-alsa.ko
2025-10-02T16:37:25.7992042Z LD [M] drivers/media/pci/ivtv/ivtv.ko
2025-10-02T16:37:25.8020419Z LD [M] drivers/media/pci/mantis/hopper.ko
2025-10-02T16:37:25.8040255Z LD [M] drivers/media/pci/ivtv/ivtvfb.ko
2025-10-02T16:37:25.8053031Z LD [M] drivers/media/pci/mantis/mantis.ko
2025-10-02T16:37:25.8134013Z LD [M] drivers/media/pci/mantis/mantis_core.ko
2025-10-02T16:37:25.8272817Z LD [M] drivers/media/pci/meye/meye.ko
2025-10-02T16:37:25.8314646Z LD [M] drivers/media/pci/netup_unidvb/netup-unidvb.ko
2025-10-02T16:37:25.8361289Z LD [M] drivers/media/pci/ngene/ngene.ko
2025-10-02T16:37:25.8408965Z LD [M] drivers/media/pci/pluto2/pluto2.ko
2025-10-02T16:37:25.8477106Z LD [M] drivers/media/pci/pt1/earth-pt1.ko
2025-10-02T16:37:25.8497768Z LD [M] drivers/media/pci/pt3/earth-pt3.ko
2025-10-02T16:37:25.8544417Z LD [M] drivers/media/pci/saa7134/saa7134-alsa.ko
2025-10-02T16:37:25.8580752Z LD [M] drivers/media/pci/saa7134/saa7134-empress.ko
2025-10-02T16:37:25.8612161Z LD [M] drivers/media/pci/saa7134/saa7134-dvb.ko
2025-10-02T16:37:25.8652776Z LD [M] drivers/media/pci/saa7134/saa7134-go7007.ko
2025-10-02T16:37:25.8697483Z LD [M] drivers/media/pci/saa7146/hexium_gemini.ko
2025-10-02T16:37:25.8716368Z LD [M] drivers/media/pci/saa7146/hexium_orion.ko
2025-10-02T16:37:25.8726114Z LD [M] drivers/media/pci/saa7134/saa7134.ko
2025-10-02T16:37:25.8765744Z LD [M] drivers/media/pci/saa7146/mxb.ko
2025-10-02T16:37:25.8839314Z LD [M] drivers/media/pci/saa7164/saa7164.ko
2025-10-02T16:37:25.8866769Z LD [M] drivers/media/pci/solo6x10/solo6x10.ko
2025-10-02T16:37:25.8873633Z LD [M] drivers/media/pci/smipcie/smipcie.ko
2025-10-02T16:37:25.8974145Z LD [M] drivers/media/pci/ttpci/budget-av.ko
2025-10-02T16:37:25.9080996Z LD [M] drivers/media/pci/ttpci/budget-ci.ko
2025-10-02T16:37:25.9082455Z LD [M] drivers/media/pci/ttpci/budget-core.ko
2025-10-02T16:37:25.9157887Z LD [M] drivers/media/pci/ttpci/budget-patch.ko
2025-10-02T16:37:25.9161930Z LD [M] drivers/media/pci/ttpci/budget.ko
2025-10-02T16:37:25.9203403Z LD [M] drivers/media/pci/ttpci/dvb-ttpci.ko
2025-10-02T16:37:25.9236949Z LD [M] drivers/media/pci/ttpci/ttpci-eeprom.ko
2025-10-02T16:37:25.9243922Z LD [M] drivers/media/pci/tw5864/tw5864.ko
2025-10-02T16:37:25.9307696Z LD [M] drivers/media/pci/tw686x/tw686x.ko
2025-10-02T16:37:25.9318056Z LD [M] drivers/media/pci/tw68/tw68.ko
2025-10-02T16:37:25.9412714Z LD [M] drivers/media/platform/aspeed-video.ko
2025-10-02T16:37:25.9417780Z LD [M] drivers/media/platform/cadence/cdns-csi2rx.ko
2025-10-02T16:37:25.9484274Z LD [M] drivers/media/platform/cadence/cdns-csi2tx.ko
2025-10-02T16:37:25.9496032Z LD [M] drivers/media/platform/m2m-deinterlace.ko
2025-10-02T16:37:25.9530633Z LD [M] drivers/media/platform/marvell-ccic/cafe_ccic.ko
2025-10-02T16:37:25.9567550Z LD [M] drivers/media/radio/dsbr100.ko
2025-10-02T16:37:25.9570680Z LD [M] drivers/media/platform/marvell-ccic/mcam-core.ko
2025-10-02T16:37:25.9639745Z LD [M] drivers/media/radio/radio-keene.ko
2025-10-02T16:37:25.9671653Z LD [M] drivers/media/radio/radio-ma901.ko
2025-10-02T16:37:25.9675730Z LD [M] drivers/media/radio/radio-maxiradio.ko
2025-10-02T16:37:25.9702339Z LD [M] drivers/media/radio/radio-mr800.ko
2025-10-02T16:37:25.9705434Z LD [M] drivers/media/radio/radio-raremono.ko
2025-10-02T16:37:25.9789394Z LD [M] drivers/media/radio/radio-shark.ko
2025-10-02T16:37:25.9794253Z LD [M] drivers/media/radio/radio-si476x.ko
2025-10-02T16:37:25.9838118Z LD [M] drivers/media/radio/radio-tea5764.ko
2025-10-02T16:37:25.9870674Z LD [M] drivers/media/radio/radio-wl1273.ko
2025-10-02T16:37:25.9890948Z LD [M] drivers/media/radio/saa7706h.ko
2025-10-02T16:37:25.9930643Z LD [M] drivers/media/radio/shark2.ko
2025-10-02T16:37:25.9964909Z LD [M] drivers/media/radio/si470x/radio-si470x-common.ko
2025-10-02T16:37:25.9969664Z LD [M] drivers/media/radio/si470x/radio-si470x-i2c.ko
2025-10-02T16:37:26.0005364Z LD [M] drivers/media/radio/si470x/radio-si470x-usb.ko
2025-10-02T16:37:26.0032020Z LD [M] drivers/media/radio/si4713/radio-platform-si4713.ko
2025-10-02T16:37:26.0081695Z LD [M] drivers/media/radio/si4713/radio-usb-si4713.ko
2025-10-02T16:37:26.0112867Z LD [M] drivers/media/radio/si4713/si4713.ko
2025-10-02T16:37:26.0127403Z LD [M] drivers/media/radio/tea575x.ko
2025-10-02T16:37:26.0162313Z LD [M] drivers/media/radio/tef6862.ko
2025-10-02T16:37:26.0221990Z LD [M] drivers/media/radio/wl128x/fm_drv.ko
2025-10-02T16:37:26.0245456Z LD [M] drivers/media/rc/ati_remote.ko
2025-10-02T16:37:26.0253425Z LD [M] drivers/media/rc/ene_ir.ko
2025-10-02T16:37:26.0291123Z LD [M] drivers/media/rc/fintek-cir.ko
2025-10-02T16:37:26.0301585Z LD [M] drivers/media/rc/igorplugusb.ko
2025-10-02T16:37:26.0364845Z LD [M] drivers/media/rc/iguanair.ko
2025-10-02T16:37:26.0414786Z LD [M] drivers/media/rc/imon.ko
2025-10-02T16:37:26.0424735Z LD [M] drivers/media/rc/imon_raw.ko
2025-10-02T16:37:26.0467145Z LD [M] drivers/media/rc/ir-imon-decoder.ko
2025-10-02T16:37:26.0481109Z LD [M] drivers/media/rc/ir-jvc-decoder.ko
2025-10-02T16:37:26.0487658Z LD [M] drivers/media/rc/ir-mce_kbd-decoder.ko
2025-10-02T16:37:26.0533919Z LD [M] drivers/media/rc/ir-nec-decoder.ko
2025-10-02T16:37:26.0572031Z LD [M] drivers/media/rc/ir-rc5-decoder.ko
2025-10-02T16:37:26.0595322Z LD [M] drivers/media/rc/ir-rc6-decoder.ko
2025-10-02T16:37:26.0623714Z LD [M] drivers/media/rc/ir-rcmm-decoder.ko
2025-10-02T16:37:26.0638989Z LD [M] drivers/media/rc/ir-sanyo-decoder.ko
2025-10-02T16:37:26.0698583Z LD [M] drivers/media/rc/ir-sharp-decoder.ko
2025-10-02T16:37:26.0721870Z LD [M] drivers/media/rc/ir-sony-decoder.ko
2025-10-02T16:37:26.0739976Z LD [M] drivers/media/rc/ir-xmp-decoder.ko
2025-10-02T16:37:26.0770697Z LD [M] drivers/media/rc/ir_toy.ko
2025-10-02T16:37:26.0771579Z LD [M] drivers/media/rc/ite-cir.ko
2025-10-02T16:37:26.0846918Z LD [M] drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.ko
2025-10-02T16:37:26.0862511Z LD [M] drivers/media/rc/keymaps/rc-anysee.ko
2025-10-02T16:37:26.0863919Z LD [M] drivers/media/rc/keymaps/rc-apac-viewcomp.ko
2025-10-02T16:37:26.0868687Z LD [M] drivers/media/rc/keymaps/rc-alink-dtu-m.ko
2025-10-02T16:37:26.0908748Z LD [M] drivers/media/rc/keymaps/rc-astrometa-t2hybrid.ko
2025-10-02T16:37:26.0967261Z LD [M] drivers/media/rc/keymaps/rc-asus-pc39.ko
2025-10-02T16:37:26.0976119Z LD [M] drivers/media/rc/keymaps/rc-asus-ps3-100.ko
2025-10-02T16:37:26.0982037Z LD [M] drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.ko
2025-10-02T16:37:26.1042339Z LD [M] drivers/media/rc/keymaps/rc-avermedia-a16d.ko
2025-10-02T16:37:26.1053892Z LD [M] drivers/media/rc/keymaps/rc-ati-x10.ko
2025-10-02T16:37:26.1096871Z LD [M] drivers/media/rc/keymaps/rc-avermedia-m135a.ko
2025-10-02T16:37:26.1101386Z LD [M] drivers/media/rc/keymaps/rc-avermedia-cardbus.ko
2025-10-02T16:37:26.1103837Z LD [M] drivers/media/rc/keymaps/rc-avermedia-dvbt.ko
2025-10-02T16:37:26.1132322Z LD [M] drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.ko
2025-10-02T16:37:26.1197257Z LD [M] drivers/media/rc/keymaps/rc-avermedia-rm-ks.ko
2025-10-02T16:37:26.1210472Z LD [M] drivers/media/rc/keymaps/rc-avermedia.ko
2025-10-02T16:37:26.1237606Z LD [M] drivers/media/rc/keymaps/rc-avertv-303.ko
2025-10-02T16:37:26.1250782Z LD [M] drivers/media/rc/keymaps/rc-azurewave-ad-tu700.ko
2025-10-02T16:37:26.1264613Z LD [M] drivers/media/rc/keymaps/rc-beelink-gs1.ko
2025-10-02T16:37:26.1307672Z LD [M] drivers/media/rc/keymaps/rc-behold.ko
2025-10-02T16:37:26.1309976Z LD [M] drivers/media/rc/keymaps/rc-behold-columbus.ko
2025-10-02T16:37:26.1341345Z LD [M] drivers/media/rc/keymaps/rc-budget-ci-old.ko
2025-10-02T16:37:26.1378922Z LD [M] drivers/media/rc/keymaps/rc-cinergy-1400.ko
2025-10-02T16:37:26.1406616Z LD [M] drivers/media/rc/keymaps/rc-cinergy.ko
2025-10-02T16:37:26.1411545Z LD [M] drivers/media/rc/keymaps/rc-d680-dmb.ko
2025-10-02T16:37:26.1423446Z LD [M] drivers/media/rc/keymaps/rc-delock-61959.ko
2025-10-02T16:37:26.1453986Z LD [M] drivers/media/rc/keymaps/rc-dib0700-nec.ko
2025-10-02T16:37:26.1502562Z LD [M] drivers/media/rc/keymaps/rc-dib0700-rc5.ko
2025-10-02T16:37:26.1507562Z LD [M] drivers/media/rc/keymaps/rc-digitalnow-tinytwin.ko
2025-10-02T16:37:26.1523338Z LD [M] drivers/media/rc/keymaps/rc-digittrade.ko
2025-10-02T16:37:26.1565901Z LD [M] drivers/media/rc/keymaps/rc-dm1105-nec.ko
2025-10-02T16:37:26.1571268Z LD [M] drivers/media/rc/keymaps/rc-dntv-live-dvb-t.ko
2025-10-02T16:37:26.1624712Z LD [M] drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.ko
2025-10-02T16:37:26.1651064Z LD [M] drivers/media/rc/keymaps/rc-dtt200u.ko
2025-10-02T16:37:26.1675074Z LD [M] drivers/media/rc/keymaps/rc-dvico-mce.ko
2025-10-02T16:37:26.1677941Z LD [M] drivers/media/rc/keymaps/rc-dvbsky.ko
2025-10-02T16:37:26.1685880Z LD [M] drivers/media/rc/keymaps/rc-dvico-portable.ko
2025-10-02T16:37:26.1736174Z LD [M] drivers/media/rc/keymaps/rc-em-terratec.ko
2025-10-02T16:37:26.1783967Z LD [M] drivers/media/rc/keymaps/rc-encore-enltv.ko
2025-10-02T16:37:26.1797933Z LD [M] drivers/media/rc/keymaps/rc-evga-indtube.ko
2025-10-02T16:37:26.1804439Z LD [M] drivers/media/rc/keymaps/rc-encore-enltv2.ko
2025-10-02T16:37:26.1824954Z LD [M] drivers/media/rc/keymaps/rc-encore-enltv-fm53.ko
2025-10-02T16:37:26.1844884Z LD [M] drivers/media/rc/keymaps/rc-eztv.ko
2025-10-02T16:37:26.1879146Z LD [M] drivers/media/rc/keymaps/rc-flydvb.ko
2025-10-02T16:37:26.1901395Z LD [M] drivers/media/rc/keymaps/rc-flyvideo.ko
2025-10-02T16:37:26.1931340Z LD [M] drivers/media/rc/keymaps/rc-fusionhdtv-mce.ko
2025-10-02T16:37:26.1947933Z LD [M] drivers/media/rc/keymaps/rc-gadmei-rm008z.ko
2025-10-02T16:37:26.1972140Z LD [M] drivers/media/rc/keymaps/rc-geekbox.ko
2025-10-02T16:37:26.2000729Z LD [M] drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.ko
2025-10-02T16:37:26.2014155Z LD [M] drivers/media/rc/keymaps/rc-gotview7135.ko
2025-10-02T16:37:26.2067834Z LD [M] drivers/media/rc/keymaps/rc-hisi-tv-demo.ko
2025-10-02T16:37:26.2070361Z LD [M] drivers/media/rc/keymaps/rc-hauppauge.ko
2025-10-02T16:37:26.2080930Z LD [M] drivers/media/rc/keymaps/rc-hisi-poplar.ko
2025-10-02T16:37:26.2123040Z LD [M] drivers/media/rc/keymaps/rc-imon-mce.ko
2025-10-02T16:37:26.2146237Z LD [M] drivers/media/rc/keymaps/rc-imon-pad.ko
2025-10-02T16:37:26.2171179Z LD [M] drivers/media/rc/keymaps/rc-imon-rsc.ko
2025-10-02T16:37:26.2198533Z LD [M] drivers/media/rc/keymaps/rc-it913x-v1.ko
2025-10-02T16:37:26.2201816Z LD [M] drivers/media/rc/keymaps/rc-iodata-bctv7e.ko
2025-10-02T16:37:26.2262442Z LD [M] drivers/media/rc/keymaps/rc-it913x-v2.ko
2025-10-02T16:37:26.2290197Z LD [M] drivers/media/rc/keymaps/rc-kaiomy.ko
2025-10-02T16:37:26.2325781Z LD [M] drivers/media/rc/keymaps/rc-kworld-315u.ko
2025-10-02T16:37:26.2330246Z LD [M] drivers/media/rc/keymaps/rc-kworld-pc150u.ko
2025-10-02T16:37:26.2334457Z LD [M] drivers/media/rc/keymaps/rc-khadas.ko
2025-10-02T16:37:26.2362135Z LD [M] drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.ko
2025-10-02T16:37:26.2392108Z LD [M] drivers/media/rc/keymaps/rc-leadtek-y04g0051.ko
2025-10-02T16:37:26.2404356Z LD [M] drivers/media/rc/keymaps/rc-lme2510.ko
2025-10-02T16:37:26.2409409Z LD [M] drivers/media/rc/keymaps/rc-manli.ko
2025-10-02T16:37:26.2461122Z LD [M] drivers/media/rc/keymaps/rc-medion-x10-digitainer.ko
2025-10-02T16:37:26.2475291Z LD [M] drivers/media/rc/keymaps/rc-medion-x10-or2x.ko
2025-10-02T16:37:26.2504364Z LD [M] drivers/media/rc/keymaps/rc-medion-x10.ko
2025-10-02T16:37:26.2510009Z LD [M] drivers/media/rc/keymaps/rc-msi-digivox-iii.ko
2025-10-02T16:37:26.2544091Z LD [M] drivers/media/rc/keymaps/rc-msi-digivox-ii.ko
2025-10-02T16:37:26.2592598Z LD [M] drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.ko
2025-10-02T16:37:26.2593590Z LD [M] drivers/media/rc/keymaps/rc-msi-tvanywhere.ko
2025-10-02T16:37:26.2643537Z LD [M] drivers/media/rc/keymaps/rc-nebula.ko
2025-10-02T16:37:26.2645714Z LD [M] drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.ko
2025-10-02T16:37:26.2657834Z LD [M] drivers/media/rc/keymaps/rc-norwood.ko
2025-10-02T16:37:26.2696805Z LD [M] drivers/media/rc/keymaps/rc-npgtech.ko
2025-10-02T16:37:26.2730757Z LD [M] drivers/media/rc/keymaps/rc-odroid.ko
2025-10-02T16:37:26.2742571Z LD [M] drivers/media/rc/keymaps/rc-pctv-sedna.ko
2025-10-02T16:37:26.2771300Z LD [M] drivers/media/rc/keymaps/rc-pinnacle-color.ko
2025-10-02T16:37:26.2791251Z LD [M] drivers/media/rc/keymaps/rc-pinnacle-grey.ko
2025-10-02T16:37:26.2810589Z LD [M] drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.ko
2025-10-02T16:37:26.2816907Z LD [M] drivers/media/rc/keymaps/rc-pixelview-002t.ko
2025-10-02T16:37:26.2861806Z LD [M] drivers/media/rc/keymaps/rc-pixelview-mk12.ko
2025-10-02T16:37:26.2901335Z LD [M] drivers/media/rc/keymaps/rc-pixelview-new.ko
2025-10-02T16:37:26.2906038Z LD [M] drivers/media/rc/keymaps/rc-pixelview.ko
2025-10-02T16:37:26.2948989Z LD [M] drivers/media/rc/keymaps/rc-powercolor-real-angel.ko
2025-10-02T16:37:26.2952475Z LD [M] drivers/media/rc/keymaps/rc-proteus-2309.ko
2025-10-02T16:37:26.2965026Z LD [M] drivers/media/rc/keymaps/rc-purpletv.ko
2025-10-02T16:37:26.3002558Z LD [M] drivers/media/rc/keymaps/rc-pv951.ko
2025-10-02T16:37:26.3035776Z LD [M] drivers/media/rc/keymaps/rc-rc6-mce.ko
2025-10-02T16:37:26.3065262Z LD [M] drivers/media/rc/keymaps/rc-real-audio-220-32-keys.ko
2025-10-02T16:37:26.3078151Z LD [M] drivers/media/rc/keymaps/rc-snapstream-firefly.ko
2025-10-02T16:37:26.3090077Z LD [M] drivers/media/rc/keymaps/rc-reddo.ko
2025-10-02T16:37:26.3115854Z LD [M] drivers/media/rc/keymaps/rc-streamzap.ko
2025-10-02T16:37:26.3146537Z LD [M] drivers/media/rc/keymaps/rc-su3000.ko
2025-10-02T16:37:26.3187889Z LD [M] drivers/media/rc/keymaps/rc-tanix-tx3mini.ko
2025-10-02T16:37:26.3210457Z LD [M] drivers/media/rc/keymaps/rc-tango.ko
2025-10-02T16:37:26.3211816Z LD [M] drivers/media/rc/keymaps/rc-tanix-tx5max.ko
2025-10-02T16:37:26.3251114Z LD [M] drivers/media/rc/keymaps/rc-tbs-nec.ko
2025-10-02T16:37:26.3268837Z LD [M] drivers/media/rc/keymaps/rc-technisat-ts35.ko
2025-10-02T16:37:26.3286112Z LD [M] drivers/media/rc/keymaps/rc-technisat-usb2.ko
2025-10-02T16:37:26.3312531Z LD [M] drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.ko
2025-10-02T16:37:26.3334339Z LD [M] drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.ko
2025-10-02T16:37:26.3374502Z LD [M] drivers/media/rc/keymaps/rc-terratec-cinergy-xs.ko
2025-10-02T16:37:26.3375845Z LD [M] drivers/media/rc/keymaps/rc-terratec-slim-2.ko
2025-10-02T16:37:26.3395298Z LD [M] drivers/media/rc/keymaps/rc-terratec-slim.ko
2025-10-02T16:37:26.3455016Z LD [M] drivers/media/rc/keymaps/rc-tevii-nec.ko
2025-10-02T16:37:26.3476890Z LD [M] drivers/media/rc/keymaps/rc-tivo.ko
2025-10-02T16:37:26.3490795Z LD [M] drivers/media/rc/keymaps/rc-total-media-in-hand-02.ko
2025-10-02T16:37:26.3515808Z LD [M] drivers/media/rc/keymaps/rc-total-media-in-hand.ko
2025-10-02T16:37:26.3550258Z LD [M] drivers/media/rc/keymaps/rc-trekstor.ko
2025-10-02T16:37:26.3563677Z LD [M] drivers/media/rc/keymaps/rc-tt-1500.ko
2025-10-02T16:37:26.3598157Z LD [M] drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.ko
2025-10-02T16:37:26.3614678Z LD [M] drivers/media/rc/keymaps/rc-twinhan1027.ko
2025-10-02T16:37:26.3635638Z LD [M] drivers/media/rc/keymaps/rc-videomate-m1f.ko
2025-10-02T16:37:26.3645388Z LD [M] drivers/media/rc/keymaps/rc-vega-s9x.ko
2025-10-02T16:37:26.3681170Z LD [M] drivers/media/rc/keymaps/rc-videomate-s350.ko
2025-10-02T16:37:26.3698221Z LD [M] drivers/media/rc/keymaps/rc-videomate-tv-pvr.ko
2025-10-02T16:37:26.3742511Z LD [M] drivers/media/rc/keymaps/rc-videostrong-kii-pro.ko
2025-10-02T16:37:26.3761317Z LD [M] drivers/media/rc/keymaps/rc-wetek-play2.ko
2025-10-02T16:37:26.3763569Z LD [M] drivers/media/rc/keymaps/rc-wetek-hub.ko
2025-10-02T16:37:26.3781433Z LD [M] drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.ko
2025-10-02T16:37:26.3824813Z LD [M] drivers/media/rc/keymaps/rc-winfast.ko
2025-10-02T16:37:26.3857794Z LD [M] drivers/media/rc/keymaps/rc-x96max.ko
2025-10-02T16:37:26.3875233Z LD [M] drivers/media/rc/keymaps/rc-xbox-dvd.ko
2025-10-02T16:37:26.3907372Z LD [M] drivers/media/rc/mceusb.ko
2025-10-02T16:37:26.3915328Z LD [M] drivers/media/rc/keymaps/rc-zx-irdec.ko
2025-10-02T16:37:26.3924542Z LD [M] drivers/media/rc/nuvoton-cir.ko
2025-10-02T16:37:26.3993726Z LD [M] drivers/media/rc/rc-loopback.ko
2025-10-02T16:37:26.3994608Z LD [M] drivers/media/rc/redrat3.ko
2025-10-02T16:37:26.4051610Z LD [M] drivers/media/rc/serial_ir.ko
2025-10-02T16:37:26.4054462Z LD [M] drivers/media/rc/sir_ir.ko
2025-10-02T16:37:26.4080760Z LD [M] drivers/media/rc/streamzap.ko
2025-10-02T16:37:26.4117680Z LD [M] drivers/media/rc/ttusbir.ko
2025-10-02T16:37:26.4144452Z LD [M] drivers/media/rc/winbond-cir.ko
2025-10-02T16:37:26.4186545Z LD [M] drivers/media/rc/xbox_remote.ko
2025-10-02T16:37:26.4203362Z LD [M] drivers/media/spi/cxd2880-spi.ko
2025-10-02T16:37:26.4212685Z LD [M] drivers/media/test-drivers/vicodec/vicodec.ko
2025-10-02T16:37:26.4251747Z LD [M] drivers/media/test-drivers/vidtv/dvb-vidtv-bridge.ko
2025-10-02T16:37:26.4318155Z LD [M] drivers/media/test-drivers/vidtv/dvb-vidtv-demod.ko
2025-10-02T16:37:26.4339166Z LD [M] drivers/media/test-drivers/vidtv/dvb-vidtv-tuner.ko
2025-10-02T16:37:26.4400996Z LD [M] drivers/media/test-drivers/vim2m.ko
2025-10-02T16:37:26.4410869Z LD [M] drivers/media/test-drivers/vivid/vivid.ko
2025-10-02T16:37:26.4420054Z LD [M] drivers/media/test-drivers/vimc/vimc.ko
2025-10-02T16:37:26.4479356Z LD [M] drivers/media/tuners/e4000.ko
2025-10-02T16:37:26.4515366Z LD [M] drivers/media/tuners/fc0011.ko
2025-10-02T16:37:26.4629083Z LD [M] drivers/media/tuners/fc0012.ko
2025-10-02T16:37:26.4670133Z LD [M] drivers/media/tuners/fc0013.ko
2025-10-02T16:37:26.4671488Z LD [M] drivers/media/tuners/fc2580.ko
2025-10-02T16:37:26.4764310Z LD [M] drivers/media/tuners/it913x.ko
2025-10-02T16:37:26.4814029Z LD [M] drivers/media/tuners/m88rs6000t.ko
2025-10-02T16:37:26.4873715Z LD [M] drivers/media/tuners/max2165.ko
2025-10-02T16:37:26.4931531Z LD [M] drivers/media/tuners/mc44s803.ko
2025-10-02T16:37:26.4986270Z LD [M] drivers/media/tuners/mt2060.ko
2025-10-02T16:37:26.5003626Z LD [M] drivers/media/tuners/mt2063.ko
2025-10-02T16:37:26.5011832Z LD [M] drivers/media/tuners/mt20xx.ko
2025-10-02T16:37:26.5122530Z LD [M] drivers/media/tuners/mt2131.ko
2025-10-02T16:37:26.5166468Z LD [M] drivers/media/tuners/mt2266.ko
2025-10-02T16:37:26.5213751Z LD [M] drivers/media/tuners/mxl5005s.ko
2025-10-02T16:37:26.5231670Z LD [M] drivers/media/tuners/mxl5007t.ko
2025-10-02T16:37:26.5245934Z LD [M] drivers/media/tuners/mxl301rf.ko
2025-10-02T16:37:26.5248608Z LD [M] drivers/media/tuners/qm1d1b0004.ko
2025-10-02T16:37:26.5302823Z LD [M] drivers/media/tuners/qm1d1c0042.ko
2025-10-02T16:37:26.5374930Z LD [M] drivers/media/tuners/qt1010.ko
2025-10-02T16:37:26.5441778Z LD [M] drivers/media/tuners/r820t.ko
2025-10-02T16:37:26.5451319Z LD [M] drivers/media/tuners/tda18212.ko
2025-10-02T16:37:26.5467771Z LD [M] drivers/media/tuners/si2157.ko
2025-10-02T16:37:26.5487319Z LD [M] drivers/media/tuners/tda18218.ko
2025-10-02T16:37:26.5547604Z LD [M] drivers/media/tuners/tda18250.ko
2025-10-02T16:37:26.5636545Z LD [M] drivers/media/tuners/tda18271.ko
2025-10-02T16:37:26.5638005Z LD [M] drivers/media/tuners/tda827x.ko
2025-10-02T16:37:26.5872729Z LD [M] drivers/media/tuners/tda8290.ko
2025-10-02T16:37:26.5911125Z LD [M] drivers/media/tuners/tda9887.ko
2025-10-02T16:37:26.5919084Z LD [M] drivers/media/tuners/tua9001.ko
2025-10-02T16:37:26.5927781Z LD [M] drivers/media/tuners/tea5761.ko
2025-10-02T16:37:26.5937042Z LD [M] drivers/media/tuners/tea5767.ko
2025-10-02T16:37:26.6346592Z LD [M] drivers/media/tuners/tuner-simple.ko
2025-10-02T16:37:26.6378789Z LD [M] drivers/media/tuners/tuner-types.ko
2025-10-02T16:37:26.6399448Z LD [M] drivers/media/tuners/tuner-xc2028.ko
2025-10-02T16:37:26.6420473Z LD [M] drivers/media/tuners/xc4000.ko
2025-10-02T16:37:26.6430302Z LD [M] drivers/media/tuners/xc5000.ko
2025-10-02T16:37:26.6854607Z LD [M] drivers/media/usb/as102/dvb-as102.ko
2025-10-02T16:37:26.6871032Z LD [M] drivers/media/usb/b2c2/b2c2-flexcop-usb.ko
2025-10-02T16:37:26.6872180Z LD [M] drivers/media/usb/au0828/au0828.ko
2025-10-02T16:37:26.6900715Z LD [M] drivers/media/usb/cpia2/cpia2.ko
2025-10-02T16:37:26.6915372Z LD [M] drivers/media/usb/cx231xx/cx231xx-alsa.ko
2025-10-02T16:37:26.7513777Z LD [M] drivers/media/usb/cx231xx/cx231xx-dvb.ko
2025-10-02T16:37:26.7522102Z LD [M] drivers/media/usb/cx231xx/cx231xx.ko
2025-10-02T16:37:26.7547679Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-af9015.ko
2025-10-02T16:37:26.7601532Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-anysee.ko
2025-10-02T16:37:26.7620354Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-af9035.ko
2025-10-02T16:37:26.7846071Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-au6610.ko
2025-10-02T16:37:26.7868441Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-az6007.ko
2025-10-02T16:37:26.7873095Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-ce6230.ko
2025-10-02T16:37:26.7904411Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-dvbsky.ko
2025-10-02T16:37:26.8286821Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-ec168.ko
2025-10-02T16:37:26.8310973Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-gl861.ko
2025-10-02T16:37:26.8349227Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-mxl111sf.ko
2025-10-02T16:37:26.8350964Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-rtl28xxu.ko
2025-10-02T16:37:26.8375900Z LD [M] drivers/media/usb/dvb-usb-v2/dvb-usb-lmedm04.ko
2025-10-02T16:37:26.9384448Z LD [M] drivers/media/usb/dvb-usb-v2/mxl111sf-demod.ko
2025-10-02T16:37:26.9388583Z LD [M] drivers/media/usb/dvb-usb-v2/dvb_usb_v2.ko
2025-10-02T16:37:26.9393480Z LD [M] drivers/media/usb/dvb-usb-v2/mxl111sf-tuner.ko
2025-10-02T16:37:26.9882597Z LD [M] drivers/media/usb/dvb-usb-v2/zd1301.ko
2025-10-02T16:37:26.9896387Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-a800.ko
2025-10-02T16:37:27.0394039Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-af9005-remote.ko
2025-10-02T16:37:27.0397131Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-af9005.ko
2025-10-02T16:37:27.0435578Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-az6027.ko
2025-10-02T16:37:27.0447072Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-cinergyT2.ko
2025-10-02T16:37:27.0448045Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-cxusb.ko
2025-10-02T16:37:27.0847904Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dib0700.ko
2025-10-02T16:37:27.0879346Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-common.ko
2025-10-02T16:37:27.0930661Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mb.ko
2025-10-02T16:37:27.0932132Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common.ko
2025-10-02T16:37:27.0934096Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc.ko
2025-10-02T16:37:27.1345565Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-digitv.ko
2025-10-02T16:37:27.1370756Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dtt200u.ko
2025-10-02T16:37:27.1371755Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dtv5100.ko
2025-10-02T16:37:27.1372684Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-dw2102.ko
2025-10-02T16:37:27.1404876Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-gp8psk.ko
2025-10-02T16:37:27.1810830Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-m920x.ko
2025-10-02T16:37:27.1812175Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko
2025-10-02T16:37:27.1833510Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-opera.ko
2025-10-02T16:37:27.1844867Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-pctv452e.ko
2025-10-02T16:37:27.1868344Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-technisat-usb2.ko
2025-10-02T16:37:27.2286811Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-ttusb2.ko
2025-10-02T16:37:27.2301672Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-umt-010.ko
2025-10-02T16:37:27.2304130Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-vp702x.ko
2025-10-02T16:37:27.2306212Z LD [M] drivers/media/usb/dvb-usb/dvb-usb-vp7045.ko
2025-10-02T16:37:27.2344008Z LD [M] drivers/media/usb/dvb-usb/dvb-usb.ko
2025-10-02T16:37:27.2766114Z LD [M] drivers/media/usb/em28xx/em28xx-alsa.ko
2025-10-02T16:37:27.2773757Z LD [M] drivers/media/usb/em28xx/em28xx-dvb.ko
2025-10-02T16:37:27.2824504Z LD [M] drivers/media/usb/em28xx/em28xx-rc.ko
2025-10-02T16:37:27.2827496Z LD [M] drivers/media/usb/em28xx/em28xx-v4l.ko
2025-10-02T16:37:27.2859179Z LD [M] drivers/media/usb/em28xx/em28xx.ko
2025-10-02T16:37:27.2977514Z LD [M] drivers/media/usb/go7007/go7007-loader.ko
2025-10-02T16:37:27.3880538Z LD [M] drivers/media/usb/go7007/go7007-usb.ko
2025-10-02T16:37:27.3885670Z LD [M] drivers/media/usb/go7007/go7007.ko
2025-10-02T16:37:27.3886782Z LD [M] drivers/media/usb/go7007/s2250.ko
2025-10-02T16:37:27.3893389Z LD [M] drivers/media/usb/gspca/gl860/gspca_gl860.ko
2025-10-02T16:37:27.4393753Z LD [M] drivers/media/usb/gspca/gspca_benq.ko
2025-10-02T16:37:27.4407191Z LD [M] drivers/media/usb/gspca/gspca_conex.ko
2025-10-02T16:37:27.4440835Z LD [M] drivers/media/usb/gspca/gspca_cpia1.ko
2025-10-02T16:37:27.4442074Z LD [M] drivers/media/usb/gspca/gspca_dtcs033.ko
2025-10-02T16:37:27.4464434Z LD [M] drivers/media/usb/gspca/gspca_etoms.ko
2025-10-02T16:37:27.4834110Z LD [M] drivers/media/usb/gspca/gspca_finepix.ko
2025-10-02T16:37:27.4836453Z LD [M] drivers/media/usb/gspca/gspca_jeilinj.ko
2025-10-02T16:37:27.4860942Z LD [M] drivers/media/usb/gspca/gspca_kinect.ko
2025-10-02T16:37:27.4867038Z LD [M] drivers/media/usb/gspca/gspca_jl2005bcd.ko
2025-10-02T16:37:27.4891547Z LD [M] drivers/media/usb/gspca/gspca_konica.ko
2025-10-02T16:37:27.5314193Z LD [M] drivers/media/usb/gspca/gspca_main.ko
2025-10-02T16:37:27.5370451Z LD [M] drivers/media/usb/gspca/gspca_mars.ko
2025-10-02T16:37:27.5377510Z LD [M] drivers/media/usb/gspca/gspca_mr97310a.ko
2025-10-02T16:37:27.5378490Z LD [M] drivers/media/usb/gspca/gspca_ov519.ko
2025-10-02T16:37:27.5404928Z LD [M] drivers/media/usb/gspca/gspca_nw80x.ko
2025-10-02T16:37:27.5810856Z LD [M] drivers/media/usb/gspca/gspca_ov534.ko
2025-10-02T16:37:27.5813475Z LD [M] drivers/media/usb/gspca/gspca_ov534_9.ko
2025-10-02T16:37:27.5821712Z LD [M] drivers/media/usb/gspca/gspca_pac207.ko
2025-10-02T16:37:27.5847430Z LD [M] drivers/media/usb/gspca/gspca_pac7302.ko
2025-10-02T16:37:27.5862021Z LD [M] drivers/media/usb/gspca/gspca_pac7311.ko
2025-10-02T16:37:27.6310845Z LD [M] drivers/media/usb/gspca/gspca_se401.ko
2025-10-02T16:37:27.6312153Z LD [M] drivers/media/usb/gspca/gspca_sn9c2028.ko
2025-10-02T16:37:27.6313165Z LD [M] drivers/media/usb/gspca/gspca_sn9c20x.ko
2025-10-02T16:37:27.6314229Z LD [M] drivers/media/usb/gspca/gspca_sonixb.ko
2025-10-02T16:37:27.6707861Z LD [M] drivers/media/usb/gspca/gspca_sonixj.ko
2025-10-02T16:37:27.6910274Z LD [M] drivers/media/usb/gspca/gspca_spca1528.ko
2025-10-02T16:37:27.6930474Z LD [M] drivers/media/usb/gspca/gspca_spca500.ko
2025-10-02T16:37:27.6941849Z LD [M] drivers/media/usb/gspca/gspca_spca501.ko
2025-10-02T16:37:27.6961074Z LD [M] drivers/media/usb/gspca/gspca_spca506.ko
2025-10-02T16:37:27.6967496Z LD [M] drivers/media/usb/gspca/gspca_spca505.ko
2025-10-02T16:37:27.7511378Z LD [M] drivers/media/usb/gspca/gspca_spca508.ko
2025-10-02T16:37:27.7513053Z LD [M] drivers/media/usb/gspca/gspca_spca561.ko
2025-10-02T16:37:27.7514402Z LD [M] drivers/media/usb/gspca/gspca_sq905.ko
2025-10-02T16:37:27.7528792Z LD [M] drivers/media/usb/gspca/gspca_sq930x.ko
2025-10-02T16:37:27.7581190Z LD [M] drivers/media/usb/gspca/gspca_sq905c.ko
2025-10-02T16:37:27.7585716Z LD [M] drivers/media/usb/gspca/gspca_stk014.ko
2025-10-02T16:37:27.7592622Z LD [M] drivers/media/usb/gspca/gspca_stk1135.ko
2025-10-02T16:37:27.7620677Z LD [M] drivers/media/usb/gspca/gspca_stv0680.ko
2025-10-02T16:37:27.7655694Z LD [M] drivers/media/usb/gspca/gspca_sunplus.ko
2025-10-02T16:37:27.7685347Z LD [M] drivers/media/usb/gspca/gspca_t613.ko
2025-10-02T16:37:27.7716416Z LD [M] drivers/media/usb/gspca/gspca_topro.ko
2025-10-02T16:37:27.7748435Z LD [M] drivers/media/usb/gspca/gspca_touptek.ko
2025-10-02T16:37:27.7763766Z LD [M] drivers/media/usb/gspca/gspca_tv8532.ko
2025-10-02T16:37:27.7797233Z LD [M] drivers/media/usb/gspca/gspca_vc032x.ko
2025-10-02T16:37:27.7815850Z LD [M] drivers/media/usb/gspca/gspca_vicam.ko
2025-10-02T16:37:27.7861209Z LD [M] drivers/media/usb/gspca/gspca_xirlink_cit.ko
2025-10-02T16:37:27.7875575Z LD [M] drivers/media/usb/gspca/gspca_zc3xx.ko
2025-10-02T16:37:27.7958712Z LD [M] drivers/media/usb/gspca/m5602/gspca_m5602.ko
2025-10-02T16:37:27.7960096Z LD [M] drivers/media/usb/hdpvr/hdpvr.ko
2025-10-02T16:37:27.7974174Z LD [M] drivers/media/usb/gspca/stv06xx/gspca_stv06xx.ko
2025-10-02T16:37:27.8021258Z LD [M] drivers/media/usb/pvrusb2/pvrusb2.ko
2025-10-02T16:37:27.8039805Z LD [M] drivers/media/usb/pwc/pwc.ko
2025-10-02T16:37:27.8107617Z LD [M] drivers/media/usb/s2255/s2255drv.ko
2025-10-02T16:37:27.8185001Z LD [M] drivers/media/usb/siano/smsusb.ko
2025-10-02T16:37:27.8197468Z LD [M] drivers/media/usb/stk1160/stk1160.ko
2025-10-02T16:37:27.8320893Z LD [M] drivers/media/usb/stkwebcam/stkwebcam.ko
2025-10-02T16:37:27.8343863Z LD [M] drivers/media/usb/tm6000/tm6000-alsa.ko
2025-10-02T16:37:27.8385647Z LD [M] drivers/media/usb/tm6000/tm6000.ko
2025-10-02T16:37:27.8434218Z LD [M] drivers/media/usb/tm6000/tm6000-dvb.ko
2025-10-02T16:37:27.8531138Z LD [M] drivers/media/usb/ttusb-budget/dvb-ttusb-budget.ko
2025-10-02T16:37:27.8564075Z LD [M] drivers/media/usb/ttusb-dec/ttusb_dec.ko
2025-10-02T16:37:27.8600705Z LD [M] drivers/media/usb/ttusb-dec/ttusbdecfe.ko
2025-10-02T16:37:27.8613079Z LD [M] drivers/media/usb/usbtv/usbtv.ko
2025-10-02T16:37:27.8702419Z LD [M] drivers/media/usb/uvc/uvcvideo.ko
2025-10-02T16:37:27.8718482Z LD [M] drivers/media/usb/zr364xx/zr364xx.ko
2025-10-02T16:37:27.8750353Z LD [M] drivers/media/v4l2-core/tuner.ko
2025-10-02T16:37:27.8780274Z LD [M] drivers/media/v4l2-core/v4l2-flash-led-class.ko
2025-10-02T16:37:27.8781273Z LD [M] drivers/media/v4l2-core/v4l2-dv-timings.ko
2025-10-02T16:37:27.8845780Z LD [M] drivers/media/v4l2-core/v4l2-fwnode.ko
2025-10-02T16:37:27.8861200Z LD [M] drivers/media/v4l2-core/v4l2-mem2mem.ko
2025-10-02T16:37:27.8927138Z LD [M] drivers/media/v4l2-core/videobuf-dma-sg.ko
2025-10-02T16:37:27.8934988Z LD [M] drivers/media/v4l2-core/videobuf-core.ko
2025-10-02T16:37:27.9008348Z LD [M] drivers/media/v4l2-core/videobuf-vmalloc.ko
2025-10-02T16:37:27.9035671Z LD [M] drivers/media/v4l2-core/videodev.ko
2025-10-02T16:37:27.9072559Z LD [M] drivers/memstick/core/memstick.ko
2025-10-02T16:37:27.9100566Z LD [M] drivers/memstick/core/ms_block.ko
2025-10-02T16:37:27.9106446Z LD [M] drivers/memstick/core/mspro_block.ko
2025-10-02T16:37:27.9150695Z LD [M] drivers/memstick/host/jmb38x_ms.ko
2025-10-02T16:37:27.9212726Z LD [M] drivers/memstick/host/r592.ko
2025-10-02T16:37:27.9217388Z LD [M] drivers/memstick/host/rtsx_pci_ms.ko
2025-10-02T16:37:27.9340417Z LD [M] drivers/memstick/host/rtsx_usb_ms.ko
2025-10-02T16:37:27.9341565Z LD [M] drivers/message/fusion/mptbase.ko
2025-10-02T16:37:27.9354733Z LD [M] drivers/memstick/host/tifm_ms.ko
2025-10-02T16:37:27.9390464Z LD [M] drivers/message/fusion/mptctl.ko
2025-10-02T16:37:27.9451043Z LD [M] drivers/message/fusion/mptfc.ko
2025-10-02T16:37:27.9452573Z LD [M] drivers/message/fusion/mptlan.ko
2025-10-02T16:37:27.9512883Z LD [M] drivers/message/fusion/mptsas.ko
2025-10-02T16:37:27.9530473Z LD [M] drivers/message/fusion/mptscsih.ko
2025-10-02T16:37:27.9594727Z LD [M] drivers/message/fusion/mptspi.ko
2025-10-02T16:37:27.9633051Z LD [M] drivers/mfd/88pm800.ko
2025-10-02T16:37:27.9672629Z LD [M] drivers/mfd/88pm805.ko
2025-10-02T16:37:27.9685487Z LD [M] drivers/mfd/88pm80x.ko
2025-10-02T16:37:27.9742719Z LD [M] drivers/mfd/arizona-spi.ko
2025-10-02T16:37:27.9758005Z LD [M] drivers/mfd/axp20x-i2c.ko
2025-10-02T16:37:27.9769052Z LD [M] drivers/mfd/arizona-i2c.ko
2025-10-02T16:37:27.9807273Z LD [M] drivers/mfd/axp20x.ko
2025-10-02T16:37:27.9851250Z LD [M] drivers/mfd/bcm590xx.ko
2025-10-02T16:37:27.9855215Z LD [M] drivers/mfd/bd9571mwv.ko
2025-10-02T16:37:27.9882541Z LD [M] drivers/mfd/cros_ec_dev.ko
2025-10-02T16:37:27.9922601Z LD [M] drivers/mfd/da9062-core.ko
2025-10-02T16:37:27.9950651Z LD [M] drivers/mfd/da9063.ko
2025-10-02T16:37:27.9986331Z LD [M] drivers/mfd/da9150-core.ko
2025-10-02T16:37:27.9990137Z LD [M] drivers/mfd/dln2.ko
2025-10-02T16:37:28.0016001Z LD [M] drivers/mfd/htc-pasic3.ko
2025-10-02T16:37:28.0102589Z LD [M] drivers/mfd/intel-lpss-acpi.ko
2025-10-02T16:37:28.0113063Z LD [M] drivers/mfd/intel-lpss-pci.ko
2025-10-02T16:37:28.0113967Z LD [M] drivers/mfd/intel-lpss.ko
2025-10-02T16:37:28.0147513Z LD [M] drivers/mfd/intel-m10-bmc.ko
2025-10-02T16:37:28.0155022Z LD [M] drivers/mfd/intel_pmc_bxt.ko
2025-10-02T16:37:28.0214210Z LD [M] drivers/mfd/intel_quark_i2c_gpio.ko
2025-10-02T16:37:28.0224407Z LD [M] drivers/mfd/intel_soc_pmic_bxtwc.ko
2025-10-02T16:37:28.0263575Z LD [M] drivers/mfd/intel_soc_pmic_chtdc_ti.ko
2025-10-02T16:37:28.0279314Z LD [M] drivers/mfd/intel_soc_pmic_mrfld.ko
2025-10-02T16:37:28.0333107Z LD [M] drivers/mfd/iqs62x.ko
2025-10-02T16:37:28.0345090Z LD [M] drivers/mfd/janz-cmodio.ko
2025-10-02T16:37:28.0375095Z LD [M] drivers/mfd/lm3533-core.ko
2025-10-02T16:37:28.0385862Z LD [M] drivers/mfd/kempld-core.ko
2025-10-02T16:37:28.0443414Z LD [M] drivers/mfd/lm3533-ctrlbank.ko
2025-10-02T16:37:28.0455451Z LD [M] drivers/mfd/lp3943.ko
2025-10-02T16:37:28.0463237Z LD [M] drivers/mfd/lp873x.ko
2025-10-02T16:37:28.0526082Z LD [M] drivers/mfd/lpc_ich.ko
2025-10-02T16:37:28.0568704Z LD [M] drivers/mfd/lpc_sch.ko
2025-10-02T16:37:28.0574872Z LD [M] drivers/mfd/madera-i2c.ko
2025-10-02T16:37:28.0603328Z LD [M] drivers/mfd/madera.ko
2025-10-02T16:37:28.0644858Z LD [M] drivers/mfd/madera-spi.ko
2025-10-02T16:37:28.0682820Z LD [M] drivers/mfd/max14577.ko
2025-10-02T16:37:28.0687244Z LD [M] drivers/mfd/max77693.ko
2025-10-02T16:37:28.0723926Z LD [M] drivers/mfd/max8907.ko
2025-10-02T16:37:28.0797776Z LD [M] drivers/mfd/mc13xxx-core.ko
2025-10-02T16:37:28.0802879Z LD [M] drivers/mfd/mc13xxx-i2c.ko
2025-10-02T16:37:28.0841798Z LD [M] drivers/mfd/mc13xxx-spi.ko
2025-10-02T16:37:28.0858540Z LD [M] drivers/mfd/mp2629.ko
2025-10-02T16:37:28.0870658Z LD [M] drivers/mfd/menf21bmc.ko
2025-10-02T16:37:28.0912263Z LD [M] drivers/mfd/mt6360-core.ko
2025-10-02T16:37:28.0943840Z LD [M] drivers/mfd/pcf50633-adc.ko
2025-10-02T16:37:28.0959059Z LD [M] drivers/mfd/mt6397.ko
2025-10-02T16:37:28.0970948Z LD [M] drivers/mfd/pcf50633-gpio.ko
2025-10-02T16:37:28.1012603Z LD [M] drivers/mfd/pcf50633.ko
2025-10-02T16:37:28.1065784Z LD [M] drivers/mfd/rdc321x-southbridge.ko
2025-10-02T16:37:28.1078748Z LD [M] drivers/mfd/rave-sp.ko
2025-10-02T16:37:28.1104071Z LD [M] drivers/mfd/rt5033.ko
2025-10-02T16:37:28.1106049Z LD [M] drivers/mfd/retu-mfd.ko
2025-10-02T16:37:28.1174777Z LD [M] drivers/mfd/si476x-core.ko
2025-10-02T16:37:28.1183820Z LD [M] drivers/mfd/sky81452.ko
2025-10-02T16:37:28.1201151Z LD [M] drivers/mfd/sm501.ko
2025-10-02T16:37:28.1253032Z LD [M] drivers/mfd/ti-lmu.ko
2025-10-02T16:37:28.1267926Z LD [M] drivers/mfd/tps6105x.ko
2025-10-02T16:37:28.1333405Z LD [M] drivers/mfd/tps6507x.ko
2025-10-02T16:37:28.1350765Z LD [M] drivers/mfd/tps65086.ko
2025-10-02T16:37:28.1354540Z LD [M] drivers/mfd/tps65010.ko
2025-10-02T16:37:28.1395191Z LD [M] drivers/mfd/tps65912-core.ko
2025-10-02T16:37:28.1415044Z LD [M] drivers/mfd/tps65912-i2c.ko
2025-10-02T16:37:28.1454190Z LD [M] drivers/mfd/tps65912-spi.ko
2025-10-02T16:37:28.1455477Z LD [M] drivers/mfd/tqmx86.ko
2025-10-02T16:37:28.1471117Z LD [M] drivers/mfd/ucb1400_core.ko
2025-10-02T16:37:28.1539001Z LD [M] drivers/mfd/viperboard.ko
2025-10-02T16:37:28.1566524Z LD [M] drivers/mfd/vx855.ko
2025-10-02T16:37:28.1581202Z LD [M] drivers/mfd/wcd934x.ko
2025-10-02T16:37:28.1625767Z LD [M] drivers/mfd/wl1273-core.ko
2025-10-02T16:37:28.1641841Z LD [M] drivers/mfd/wm8994.ko
2025-10-02T16:37:28.1684099Z LD [M] drivers/misc/ad525x_dpot-spi.ko
2025-10-02T16:37:28.1710411Z LD [M] drivers/misc/ad525x_dpot-i2c.ko
2025-10-02T16:37:28.1711910Z LD [M] drivers/misc/ad525x_dpot.ko
2025-10-02T16:37:28.1742105Z LD [M] drivers/misc/altera-stapl/altera-stapl.ko
2025-10-02T16:37:28.1778036Z LD [M] drivers/misc/apds9802als.ko
2025-10-02T16:37:28.1802315Z LD [M] drivers/misc/apds990x.ko
2025-10-02T16:37:28.1853141Z LD [M] drivers/misc/bh1770glc.ko
2025-10-02T16:37:28.1857502Z LD [M] drivers/misc/c2port/c2port-duramar2150.ko
2025-10-02T16:37:28.1893875Z LD [M] drivers/misc/c2port/core.ko
2025-10-02T16:37:28.1912389Z LD [M] drivers/misc/cardreader/alcor_pci.ko
2025-10-02T16:37:28.1966945Z LD [M] drivers/misc/cardreader/rtsx_pci.ko
2025-10-02T16:37:28.1978113Z LD [M] drivers/misc/cardreader/rtsx_usb.ko
2025-10-02T16:37:28.2030540Z LD [M] drivers/misc/cb710/cb710.ko
2025-10-02T16:37:28.2039894Z LD [M] drivers/misc/ds1682.ko
2025-10-02T16:37:28.2041357Z LD [M] drivers/misc/echo/echo.ko
2025-10-02T16:37:28.2145470Z LD [M] drivers/misc/eeprom/at24.ko
2025-10-02T16:37:28.2149141Z LD [M] drivers/misc/eeprom/ee1004.ko
2025-10-02T16:37:28.2174021Z LD [M] drivers/misc/eeprom/eeprom.ko
2025-10-02T16:37:28.2192212Z LD [M] drivers/misc/eeprom/eeprom_93cx6.ko
2025-10-02T16:37:28.2209108Z LD [M] drivers/misc/eeprom/idt_89hpesx.ko
2025-10-02T16:37:28.2281212Z LD [M] drivers/misc/eeprom/max6875.ko
2025-10-02T16:37:28.2297695Z LD [M] drivers/misc/enclosure.ko
2025-10-02T16:37:28.2322431Z LD [M] drivers/misc/genwqe/genwqe_card.ko
2025-10-02T16:37:28.2324465Z LD [M] drivers/misc/habanalabs/habanalabs.ko
2025-10-02T16:37:28.2461875Z LD [M] drivers/misc/hmc6352.ko
2025-10-02T16:37:28.2467030Z LD [M] drivers/misc/ibmasm/ibmasm.ko
2025-10-02T16:37:28.2485949Z LD [M] drivers/misc/ics932s401.ko
2025-10-02T16:37:28.2487978Z LD [M] drivers/misc/hpilo.ko
2025-10-02T16:37:28.2571489Z LD [M] drivers/misc/isl29003.ko
2025-10-02T16:37:28.2622064Z LD [M] drivers/misc/isl29020.ko
2025-10-02T16:37:28.2633835Z LD [M] drivers/misc/lattice-ecp3-config.ko
2025-10-02T16:37:28.2668846Z LD [M] drivers/misc/lis3lv02d/lis3lv02d.ko
2025-10-02T16:37:28.2711282Z LD [M] drivers/misc/lis3lv02d/lis3lv02d_i2c.ko
2025-10-02T16:37:28.2732537Z LD [M] drivers/misc/mei/hdcp/mei_hdcp.ko
2025-10-02T16:37:28.2767943Z LD [M] drivers/misc/mei/mei-me.ko
2025-10-02T16:37:28.2815481Z LD [M] drivers/misc/mei/mei-txe.ko
2025-10-02T16:37:28.2860017Z LD [M] drivers/misc/mei/mei.ko
2025-10-02T16:37:28.2871784Z LD [M] drivers/misc/pci_endpoint_test.ko
2025-10-02T16:37:28.2944373Z LD [M] drivers/misc/pvpanic.ko
2025-10-02T16:37:28.2953180Z LD [M] drivers/misc/phantom.ko
2025-10-02T16:37:28.2966783Z LD [M] drivers/misc/ti-st/st_drv.ko
2025-10-02T16:37:28.3086632Z LD [M] drivers/misc/tifm_7xx1.ko
2025-10-02T16:37:28.3092467Z LD [M] drivers/misc/tsl2550.ko
2025-10-02T16:37:28.3120266Z LD [M] drivers/misc/tifm_core.ko
2025-10-02T16:37:28.3170244Z LD [M] drivers/misc/uacce/uacce.ko
2025-10-02T16:37:28.3259363Z LD [M] drivers/misc/vmw_balloon.ko
2025-10-02T16:37:28.3274052Z LD [M] drivers/misc/vmw_vmci/vmw_vmci.ko
2025-10-02T16:37:28.3343309Z LD [M] drivers/misc/xilinx_sdfec.ko
2025-10-02T16:37:28.3350286Z LD [M] drivers/mmc/core/mmc_block.ko
2025-10-02T16:37:28.3356490Z LD [M] drivers/mmc/core/mmc_core.ko
2025-10-02T16:37:28.3430968Z LD [M] drivers/mmc/core/mmc_test.ko
2025-10-02T16:37:28.3490059Z LD [M] drivers/mmc/host/alcor.ko
2025-10-02T16:37:28.3501952Z LD [M] drivers/mmc/core/sdio_uart.ko
2025-10-02T16:37:28.3537481Z LD [M] drivers/mmc/host/cb710-mmc.ko
2025-10-02T16:37:28.3645208Z LD [M] drivers/mmc/host/cqhci.ko
2025-10-02T16:37:28.3651103Z LD [M] drivers/mmc/host/mmc_hsq.ko
2025-10-02T16:37:28.3700266Z LD [M] drivers/mmc/host/mmc_spi.ko
2025-10-02T16:37:28.3705788Z LD [M] drivers/mmc/host/mtk-sd.ko
2025-10-02T16:37:28.3717657Z LD [M] drivers/mmc/host/rtsx_pci_sdmmc.ko
2025-10-02T16:37:28.3793345Z LD [M] drivers/mmc/host/rtsx_usb_sdmmc.ko
2025-10-02T16:37:28.3800473Z LD [M] drivers/mmc/host/sdhci-acpi.ko
2025-10-02T16:37:28.3839930Z LD [M] drivers/mmc/host/sdhci-pci.ko
2025-10-02T16:37:28.3885189Z LD [M] drivers/mmc/host/sdhci-pltfm.ko
2025-10-02T16:37:28.3902893Z LD [M] drivers/mmc/host/sdhci-xenon-driver.ko
2025-10-02T16:37:28.3941087Z LD [M] drivers/mmc/host/sdhci.ko
2025-10-02T16:37:28.3974257Z LD [M] drivers/mmc/host/sdhci_f_sdh30.ko
2025-10-02T16:37:28.4047234Z LD [M] drivers/mmc/host/toshsd.ko
2025-10-02T16:37:28.4048423Z LD [M] drivers/mmc/host/tifm_sd.ko
2025-10-02T16:37:28.4054988Z LD [M] drivers/mmc/host/sdricoh_cs.ko
2025-10-02T16:37:28.4143030Z LD [M] drivers/mmc/host/ushc.ko
2025-10-02T16:37:28.4144264Z LD [M] drivers/mmc/host/usdhi6rol0.ko
2025-10-02T16:37:28.4190563Z LD [M] drivers/mmc/host/wbsd.ko
2025-10-02T16:37:28.4199162Z LD [M] drivers/mmc/host/via-sdmmc.ko
2025-10-02T16:37:28.4208016Z LD [M] drivers/mmc/host/vub300.ko
2025-10-02T16:37:28.4267161Z LD [M] drivers/most/most_cdev.ko
2025-10-02T16:37:28.4299942Z LD [M] drivers/most/most_core.ko
2025-10-02T16:37:28.4348969Z LD [M] drivers/most/most_usb.ko
2025-10-02T16:37:28.4377412Z LD [M] drivers/mtd/chips/chipreg.ko
2025-10-02T16:37:28.4386949Z LD [M] drivers/mtd/devices/block2mtd.ko
2025-10-02T16:37:28.4400515Z LD [M] drivers/mtd/devices/phram.ko
2025-10-02T16:37:28.4457458Z LD [M] drivers/mtd/mtd.ko
2025-10-02T16:37:28.4482238Z LD [M] drivers/mtd/mtd_blkdevs.ko
2025-10-02T16:37:28.4523031Z LD [M] drivers/mtd/mtdblock.ko
2025-10-02T16:37:28.4563233Z LD [M] drivers/mtd/nand/nandcore.ko
2025-10-02T16:37:28.4564166Z LD [M] drivers/mtd/nand/raw/nand.ko
2025-10-02T16:37:28.4617439Z LD [M] drivers/mtd/nand/raw/nand_ecc.ko
2025-10-02T16:37:28.4643617Z LD [M] drivers/mtd/nand/raw/nandsim.ko
2025-10-02T16:37:28.4713911Z LD [M] drivers/mtd/spi-nor/controllers/intel-spi-platform.ko
2025-10-02T16:37:28.4726098Z LD [M] drivers/mtd/spi-nor/controllers/intel-spi.ko
2025-10-02T16:37:28.4728357Z LD [M] drivers/mtd/spi-nor/controllers/intel-spi-pci.ko
2025-10-02T16:37:28.4783462Z LD [M] drivers/mtd/spi-nor/spi-nor.ko
2025-10-02T16:37:28.4839181Z LD [M] drivers/mtd/ubi/ubi.ko
2025-10-02T16:37:28.4848901Z LD [M] drivers/mux/mux-adg792a.ko
2025-10-02T16:37:28.4910503Z LD [M] drivers/mux/mux-adgs1408.ko
2025-10-02T16:37:28.4911729Z LD [M] drivers/mux/mux-core.ko
2025-10-02T16:37:28.4980152Z LD [M] drivers/mux/mux-gpio.ko
2025-10-02T16:37:28.5017208Z LD [M] drivers/net/appletalk/ipddp.ko
2025-10-02T16:37:28.5022021Z LD [M] drivers/net/bareudp.ko
2025-10-02T16:37:28.5054128Z LD [M] drivers/net/bonding/bonding.ko
2025-10-02T16:37:28.5127873Z LD [M] drivers/net/can/c_can/c_can.ko
2025-10-02T16:37:28.5161642Z LD [M] drivers/net/can/c_can/c_can_pci.ko
2025-10-02T16:37:28.5168640Z LD [M] drivers/net/can/c_can/c_can_platform.ko
2025-10-02T16:37:28.5248168Z LD [M] drivers/net/can/cc770/cc770.ko
2025-10-02T16:37:28.5288528Z LD [M] drivers/net/can/cc770/cc770_platform.ko
2025-10-02T16:37:28.5304873Z LD [M] drivers/net/can/dev/can-dev.ko
2025-10-02T16:37:28.5318942Z LD [M] drivers/net/can/ifi_canfd/ifi_canfd.ko
2025-10-02T16:37:28.5440858Z LD [M] drivers/net/can/janz-ican3.ko
2025-10-02T16:37:28.5453872Z LD [M] drivers/net/can/m_can/m_can.ko
2025-10-02T16:37:28.5462262Z LD [M] drivers/net/can/kvaser_pciefd.ko
2025-10-02T16:37:28.5501922Z LD [M] drivers/net/can/m_can/tcan4x5x.ko
2025-10-02T16:37:28.5504667Z LD [M] drivers/net/can/m_can/m_can_platform.ko
2025-10-02T16:37:28.5577907Z LD [M] drivers/net/can/peak_canfd/peak_pciefd.ko
2025-10-02T16:37:28.5621380Z LD [M] drivers/net/can/sja1000/ems_pci.ko
2025-10-02T16:37:28.5628195Z LD [M] drivers/net/can/sja1000/f81601.ko
2025-10-02T16:37:28.5668658Z LD [M] drivers/net/can/sja1000/peak_pci.ko
2025-10-02T16:37:28.5703654Z LD [M] drivers/net/can/sja1000/kvaser_pci.ko
2025-10-02T16:37:28.5770445Z LD [M] drivers/net/can/sja1000/peak_pcmcia.ko
2025-10-02T16:37:28.5797093Z LD [M] drivers/net/can/sja1000/sja1000_platform.ko
2025-10-02T16:37:28.5804697Z LD [M] drivers/net/can/sja1000/plx_pci.ko
2025-10-02T16:37:28.5811572Z LD [M] drivers/net/can/sja1000/sja1000.ko
2025-10-02T16:37:28.5882424Z LD [M] drivers/net/can/slcan.ko
2025-10-02T16:37:28.5900769Z LD [M] drivers/net/can/softing/softing.ko
2025-10-02T16:37:28.5937517Z LD [M] drivers/net/can/softing/softing_cs.ko
2025-10-02T16:37:28.5949133Z LD [M] drivers/net/can/spi/hi311x.ko
2025-10-02T16:37:28.5986929Z LD [M] drivers/net/can/spi/mcp251x.ko
2025-10-02T16:37:28.6044741Z LD [M] drivers/net/can/spi/mcp251xfd/mcp251xfd.ko
2025-10-02T16:37:28.6051527Z LD [M] drivers/net/can/usb/ems_usb.ko
2025-10-02T16:37:28.6081986Z LD [M] drivers/net/can/usb/esd_usb2.ko
2025-10-02T16:37:28.6129823Z LD [M] drivers/net/can/usb/gs_usb.ko
2025-10-02T16:37:28.6155061Z LD [M] drivers/net/can/usb/kvaser_usb/kvaser_usb.ko
2025-10-02T16:37:28.6197916Z LD [M] drivers/net/can/usb/mcba_usb.ko
2025-10-02T16:37:28.6260356Z LD [M] drivers/net/can/usb/peak_usb/peak_usb.ko
2025-10-02T16:37:28.6272326Z LD [M] drivers/net/can/usb/ucan.ko
2025-10-02T16:37:28.6334078Z LD [M] drivers/net/can/usb/usb_8dev.ko
2025-10-02T16:37:28.6342572Z LD [M] drivers/net/can/vcan.ko
2025-10-02T16:37:28.6403084Z LD [M] drivers/net/can/vxcan.ko
2025-10-02T16:37:28.6406696Z LD [M] drivers/net/dsa/b53/b53_common.ko
2025-10-02T16:37:28.6481153Z LD [M] drivers/net/dsa/b53/b53_mdio.ko
2025-10-02T16:37:28.6510448Z LD [M] drivers/net/dsa/b53/b53_mmap.ko
2025-10-02T16:37:28.6536721Z LD [M] drivers/net/dsa/b53/b53_serdes.ko
2025-10-02T16:37:28.6575272Z LD [M] drivers/net/dsa/b53/b53_spi.ko
2025-10-02T16:37:28.6594199Z LD [M] drivers/net/dsa/b53/b53_srab.ko
2025-10-02T16:37:28.6637814Z LD [M] drivers/net/dsa/bcm-sf2.ko
2025-10-02T16:37:28.6666030Z LD [M] drivers/net/dsa/dsa_loop.ko
2025-10-02T16:37:28.6677859Z LD [M] drivers/net/dsa/dsa_loop_bdinfo.ko
2025-10-02T16:37:28.6736135Z LD [M] drivers/net/dsa/lan9303-core.ko
2025-10-02T16:37:28.6760976Z LD [M] drivers/net/dsa/lan9303_i2c.ko
2025-10-02T16:37:28.6815634Z LD [M] drivers/net/dsa/microchip/ksz8795.ko
2025-10-02T16:37:28.6826689Z LD [M] drivers/net/dsa/lan9303_mdio.ko
2025-10-02T16:37:28.6851663Z LD [M] drivers/net/dsa/microchip/ksz8795_spi.ko
2025-10-02T16:37:28.6884397Z LD [M] drivers/net/dsa/microchip/ksz9477.ko
2025-10-02T16:37:28.6928913Z LD [M] drivers/net/dsa/microchip/ksz9477_i2c.ko
2025-10-02T16:37:28.6996692Z LD [M] drivers/net/dsa/microchip/ksz9477_spi.ko
2025-10-02T16:37:28.7008866Z LD [M] drivers/net/dsa/microchip/ksz_common.ko
2025-10-02T16:37:28.7027139Z LD [M] drivers/net/dsa/mt7530.ko
2025-10-02T16:37:28.7031435Z LD [M] drivers/net/dsa/mv88e6060.ko
2025-10-02T16:37:28.7109164Z LD [M] drivers/net/dsa/mv88e6xxx/mv88e6xxx.ko
2025-10-02T16:37:28.7180781Z LD [M] drivers/net/dsa/ocelot/mscc_seville.ko
2025-10-02T16:37:28.7181904Z LD [M] drivers/net/dsa/qca/ar9331.ko
2025-10-02T16:37:28.7182882Z LD [M] drivers/net/dsa/qca8k.ko
2025-10-02T16:37:28.7248725Z LD [M] drivers/net/dsa/realtek-smi.ko
2025-10-02T16:37:28.7322039Z LD [M] drivers/net/dsa/sja1105/sja1105.ko
2025-10-02T16:37:28.7359440Z LD [M] drivers/net/dsa/vitesse-vsc73xx-core.ko
2025-10-02T16:37:28.7421685Z LD [M] drivers/net/dsa/vitesse-vsc73xx-platform.ko
2025-10-02T16:37:28.7491035Z LD [M] drivers/net/dsa/vitesse-vsc73xx-spi.ko
2025-10-02T16:37:28.7556354Z LD [M] drivers/net/dummy.ko
2025-10-02T16:37:28.7670982Z LD [M] drivers/net/eql.ko
2025-10-02T16:37:28.7671908Z LD [M] drivers/net/ethernet/3com/3c574_cs.ko
2025-10-02T16:37:28.7672944Z LD [M] drivers/net/ethernet/3com/3c589_cs.ko
2025-10-02T16:37:28.7741811Z LD [M] drivers/net/ethernet/3com/3c59x.ko
2025-10-02T16:37:28.7817241Z LD [M] drivers/net/ethernet/8390/8390.ko
2025-10-02T16:37:28.7818402Z LD [M] drivers/net/ethernet/3com/typhoon.ko
2025-10-02T16:37:28.7870012Z LD [M] drivers/net/ethernet/8390/axnet_cs.ko
2025-10-02T16:37:28.7902641Z LD [M] drivers/net/ethernet/8390/ne2k-pci.ko
2025-10-02T16:37:28.7968717Z LD [M] drivers/net/ethernet/8390/pcnet_cs.ko
2025-10-02T16:37:28.7974043Z LD [M] drivers/net/ethernet/adaptec/starfire.ko
2025-10-02T16:37:28.8032998Z LD [M] drivers/net/ethernet/agere/et131x.ko
2025-10-02T16:37:28.8039251Z LD [M] drivers/net/ethernet/alacritech/slicoss.ko
2025-10-02T16:37:28.8071084Z LD [M] drivers/net/ethernet/alteon/acenic.ko
2025-10-02T16:37:28.8106784Z LD [M] drivers/net/ethernet/altera/altera_tse.ko
2025-10-02T16:37:28.8184578Z LD [M] drivers/net/ethernet/amazon/ena/ena.ko
2025-10-02T16:37:28.8185660Z LD [M] drivers/net/ethernet/amd/amd8111e.ko
2025-10-02T16:37:28.8229411Z LD [M] drivers/net/ethernet/amd/nmclan_cs.ko
2025-10-02T16:37:28.8254731Z LD [M] drivers/net/ethernet/amd/pcnet32.ko
2025-10-02T16:37:28.8323972Z LD [M] drivers/net/ethernet/amd/xgbe/amd-xgbe.ko
2025-10-02T16:37:28.8365286Z LD [M] drivers/net/ethernet/aquantia/atlantic/atlantic.ko
2025-10-02T16:37:28.8385386Z LD [M] drivers/net/ethernet/atheros/alx/alx.ko
2025-10-02T16:37:28.8425162Z LD [M] drivers/net/ethernet/atheros/atl1c/atl1c.ko
2025-10-02T16:37:28.8494153Z LD [M] drivers/net/ethernet/atheros/atl1e/atl1e.ko
2025-10-02T16:37:28.8592362Z LD [M] drivers/net/ethernet/atheros/atlx/atl1.ko
2025-10-02T16:37:28.8645052Z LD [M] drivers/net/ethernet/atheros/atlx/atl2.ko
2025-10-02T16:37:28.8737525Z LD [M] drivers/net/ethernet/aurora/nb8800.ko
2025-10-02T16:37:28.8765930Z LD [M] drivers/net/ethernet/broadcom/b44.ko
2025-10-02T16:37:28.8807808Z LD [M] drivers/net/ethernet/broadcom/bcmsysport.ko
2025-10-02T16:37:28.8828076Z LD [M] drivers/net/ethernet/broadcom/bnx2.ko
2025-10-02T16:37:28.8829007Z LD [M] drivers/net/ethernet/broadcom/bnx2x/bnx2x.ko
2025-10-02T16:37:28.8907829Z LD [M] drivers/net/ethernet/broadcom/bnxt/bnxt_en.ko
2025-10-02T16:37:28.8966237Z LD [M] drivers/net/ethernet/broadcom/cnic.ko
2025-10-02T16:37:28.8994594Z LD [M] drivers/net/ethernet/broadcom/genet/genet.ko
2025-10-02T16:37:28.9032098Z LD [M] drivers/net/ethernet/broadcom/tg3.ko
2025-10-02T16:37:28.9174054Z LD [M] drivers/net/ethernet/brocade/bna/bna.ko
2025-10-02T16:37:28.9318967Z LD [M] drivers/net/ethernet/cadence/macb.ko
2025-10-02T16:37:28.9358492Z LD [M] drivers/net/ethernet/cadence/macb_pci.ko
2025-10-02T16:37:28.9540791Z LD [M] drivers/net/ethernet/cavium/liquidio/liquidio.ko
2025-10-02T16:37:28.9600534Z LD [M] drivers/net/ethernet/cavium/common/cavium_ptp.ko
2025-10-02T16:37:28.9629004Z LD [M] drivers/net/ethernet/cavium/liquidio/liquidio_vf.ko
2025-10-02T16:37:28.9674965Z LD [M] drivers/net/ethernet/cavium/thunder/nicvf.ko
2025-10-02T16:37:28.9680084Z LD [M] drivers/net/ethernet/cavium/thunder/nicpf.ko
2025-10-02T16:37:28.9743575Z LD [M] drivers/net/ethernet/cavium/thunder/thunder_bgx.ko
2025-10-02T16:37:28.9927272Z LD [M] drivers/net/ethernet/chelsio/cxgb3/cxgb3.ko
2025-10-02T16:37:28.9928427Z LD [M] drivers/net/ethernet/chelsio/cxgb/cxgb.ko
2025-10-02T16:37:28.9960419Z LD [M] drivers/net/ethernet/cavium/thunder/thunder_xcv.ko
2025-10-02T16:37:29.0085534Z LD [M] drivers/net/ethernet/chelsio/cxgb4/cxgb4.ko
2025-10-02T16:37:29.0140846Z LD [M] drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf.ko
2025-10-02T16:37:29.0154325Z LD [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ipsec/ch_ipsec.ko
2025-10-02T16:37:29.0277800Z LD [M] drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ch_ktls.ko
2025-10-02T16:37:29.0351581Z LD [M] drivers/net/ethernet/chelsio/libcxgb/libcxgb.ko
2025-10-02T16:37:29.0352584Z LD [M] drivers/net/ethernet/cisco/enic/enic.ko
2025-10-02T16:37:29.0353513Z LD [M] drivers/net/ethernet/dec/tulip/de2104x.ko
2025-10-02T16:37:29.0480406Z LD [M] drivers/net/ethernet/dec/tulip/de4x5.ko
2025-10-02T16:37:29.0521978Z LD [M] drivers/net/ethernet/dec/tulip/dmfe.ko
2025-10-02T16:37:29.0586200Z LD [M] drivers/net/ethernet/dec/tulip/tulip.ko
2025-10-02T16:37:29.0665686Z LD [M] drivers/net/ethernet/dec/tulip/uli526x.ko
2025-10-02T16:37:29.0688119Z LD [M] drivers/net/ethernet/dec/tulip/winbond-840.ko
2025-10-02T16:37:29.0744014Z LD [M] drivers/net/ethernet/dec/tulip/xircom_cb.ko
2025-10-02T16:37:29.0824357Z LD [M] drivers/net/ethernet/dlink/dl2k.ko
2025-10-02T16:37:29.0860283Z LD [M] drivers/net/ethernet/dlink/sundance.ko
2025-10-02T16:37:29.0902627Z LD [M] drivers/net/ethernet/dnet.ko
2025-10-02T16:37:29.0916373Z LD [M] drivers/net/ethernet/ec_bhf.ko
2025-10-02T16:37:29.0992135Z LD [M] drivers/net/ethernet/emulex/benet/be2net.ko
2025-10-02T16:37:29.1008191Z LD [M] drivers/net/ethernet/ethoc.ko
2025-10-02T16:37:29.1046041Z LD [M] drivers/net/ethernet/fujitsu/fmvj18x_cs.ko
2025-10-02T16:37:29.1050073Z LD [M] drivers/net/ethernet/fealnx.ko
2025-10-02T16:37:29.1084202Z LD [M] drivers/net/ethernet/google/gve/gve.ko
2025-10-02T16:37:29.1174135Z LD [M] drivers/net/ethernet/huawei/hinic/hinic.ko
2025-10-02T16:37:29.1219909Z LD [M] drivers/net/ethernet/intel/e100.ko
2025-10-02T16:37:29.1274446Z LD [M] drivers/net/ethernet/intel/e1000/e1000.ko
2025-10-02T16:37:29.1306467Z LD [M] drivers/net/ethernet/intel/e1000e/e1000e.ko
2025-10-02T16:37:29.1328951Z LD [M] drivers/net/ethernet/intel/fm10k/fm10k.ko
2025-10-02T16:37:29.1404715Z LD [M] drivers/net/ethernet/intel/i40e/i40e.ko
2025-10-02T16:37:29.1540226Z LD [M] drivers/net/ethernet/intel/iavf/iavf.ko
2025-10-02T16:37:29.1763270Z LD [M] drivers/net/ethernet/intel/ice/ice.ko
2025-10-02T16:37:29.1780417Z LD [M] drivers/net/ethernet/intel/igbvf/igbvf.ko
2025-10-02T16:37:29.1798718Z LD [M] drivers/net/ethernet/intel/igb/igb.ko
2025-10-02T16:37:29.2031697Z LD [M] drivers/net/ethernet/intel/igc/igc.ko
2025-10-02T16:37:29.2054416Z LD [M] drivers/net/ethernet/intel/ixgb/ixgb.ko
2025-10-02T16:37:29.2271714Z LD [M] drivers/net/ethernet/intel/ixgbe/ixgbe.ko
2025-10-02T16:37:29.2317061Z LD [M] drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko
2025-10-02T16:37:29.2338878Z LD [M] drivers/net/ethernet/jme.ko
2025-10-02T16:37:29.2344421Z LD [M] drivers/net/ethernet/marvell/mvmdio.ko
2025-10-02T16:37:29.2494142Z LD [M] drivers/net/ethernet/marvell/prestera/prestera.ko
2025-10-02T16:37:29.2529158Z LD [M] drivers/net/ethernet/marvell/prestera/prestera_pci.ko
2025-10-02T16:37:29.2640356Z LD [M] drivers/net/ethernet/marvell/skge.ko
2025-10-02T16:37:29.2701073Z LD [M] drivers/net/ethernet/marvell/sky2.ko
2025-10-02T16:37:29.2728306Z LD [M] drivers/net/ethernet/mellanox/mlx4/mlx4_core.ko
2025-10-02T16:37:29.2770870Z LD [M] drivers/net/ethernet/mellanox/mlx4/mlx4_en.ko
2025-10-02T16:37:29.2844327Z LD [M] drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko
2025-10-02T16:37:29.2981439Z LD [M] drivers/net/ethernet/mellanox/mlxfw/mlxfw.ko
2025-10-02T16:37:29.3202242Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c.ko
2025-10-02T16:37:29.3207121Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_minimal.ko
2025-10-02T16:37:29.3265699Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_core.ko
2025-10-02T16:37:29.3393005Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci.ko
2025-10-02T16:37:29.3441510Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_spectrum.ko
2025-10-02T16:37:29.3591440Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchib.ko
2025-10-02T16:37:29.3622424Z LD [M] drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchx2.ko
2025-10-02T16:37:29.3685181Z LD [M] drivers/net/ethernet/micrel/ks8842.ko
2025-10-02T16:37:29.3795606Z LD [M] drivers/net/ethernet/micrel/ks8851_common.ko
2025-10-02T16:37:29.3951358Z LD [M] drivers/net/ethernet/micrel/ks8851_par.ko
2025-10-02T16:37:29.4078618Z LD [M] drivers/net/ethernet/micrel/ks8851_spi.ko
2025-10-02T16:37:29.4080403Z LD [M] drivers/net/ethernet/micrel/ksz884x.ko
2025-10-02T16:37:29.4282513Z LD [M] drivers/net/ethernet/microchip/enc28j60.ko
2025-10-02T16:37:29.4305862Z LD [M] drivers/net/ethernet/microchip/encx24j600-regmap.ko
2025-10-02T16:37:29.4482424Z LD [M] drivers/net/ethernet/microchip/encx24j600.ko
2025-10-02T16:37:29.4490777Z LD [M] drivers/net/ethernet/microchip/lan743x.ko
2025-10-02T16:37:29.4550793Z LD [M] drivers/net/ethernet/mscc/mscc_ocelot_switch_lib.ko
2025-10-02T16:37:29.4906429Z LD [M] drivers/net/ethernet/myricom/myri10ge/myri10ge.ko
2025-10-02T16:37:29.4923612Z LD [M] drivers/net/ethernet/natsemi/natsemi.ko
2025-10-02T16:37:29.4932814Z LD [M] drivers/net/ethernet/natsemi/ns83820.ko
2025-10-02T16:37:29.5242039Z LD [M] drivers/net/ethernet/neterion/s2io.ko
2025-10-02T16:37:29.5317418Z LD [M] drivers/net/ethernet/neterion/vxge/vxge.ko
2025-10-02T16:37:29.5382178Z LD [M] drivers/net/ethernet/netronome/nfp/nfp.ko
2025-10-02T16:37:29.5384747Z LD [M] drivers/net/ethernet/ni/nixge.ko
2025-10-02T16:37:29.5493624Z LD [M] drivers/net/ethernet/nvidia/forcedeth.ko
2025-10-02T16:37:29.5554758Z LD [M] drivers/net/ethernet/packetengines/yellowfin.ko
2025-10-02T16:37:29.5573891Z LD [M] drivers/net/ethernet/packetengines/hamachi.ko
2025-10-02T16:37:29.5733079Z LD [M] drivers/net/ethernet/pensando/ionic/ionic.ko
2025-10-02T16:37:29.5790950Z LD [M] drivers/net/ethernet/qlogic/qed/qed.ko
2025-10-02T16:37:29.5792527Z LD [M] drivers/net/ethernet/qlogic/netxen/netxen_nic.ko
2025-10-02T16:37:29.6164735Z LD [M] drivers/net/ethernet/qlogic/qede/qede.ko
2025-10-02T16:37:29.6252188Z LD [M] drivers/net/ethernet/qlogic/qla3xxx.ko
2025-10-02T16:37:29.6568174Z LD [M] drivers/net/ethernet/qlogic/qlcnic/qlcnic.ko
2025-10-02T16:37:29.6654629Z LD [M] drivers/net/ethernet/qualcomm/emac/qcom-emac.ko
2025-10-02T16:37:29.6840876Z LD [M] drivers/net/ethernet/qualcomm/rmnet/rmnet.ko
2025-10-02T16:37:29.6952763Z LD [M] drivers/net/ethernet/rdc/r6040.ko
2025-10-02T16:37:29.7018354Z LD [M] drivers/net/ethernet/realtek/8139cp.ko
2025-10-02T16:37:29.7913464Z LD [M] drivers/net/ethernet/realtek/atp.ko
2025-10-02T16:37:29.7914398Z LD [M] drivers/net/ethernet/realtek/8139too.ko
2025-10-02T16:37:29.7941662Z LD [M] drivers/net/ethernet/realtek/r8169.ko
2025-10-02T16:37:29.7967636Z LD [M] drivers/net/ethernet/rocker/rocker.ko
2025-10-02T16:37:29.8051206Z LD [M] drivers/net/ethernet/samsung/sxgbe/samsung-sxgbe.ko
2025-10-02T16:37:29.8069033Z LD [M] drivers/net/ethernet/sfc/sfc.ko
2025-10-02T16:37:29.8074010Z LD [M] drivers/net/ethernet/sfc/falcon/sfc-falcon.ko
2025-10-02T16:37:29.8226314Z LD [M] drivers/net/ethernet/silan/sc92031.ko
2025-10-02T16:37:29.8292600Z LD [M] drivers/net/ethernet/sis/sis900.ko
2025-10-02T16:37:29.8301341Z LD [M] drivers/net/ethernet/sis/sis190.ko
2025-10-02T16:37:29.8372997Z LD [M] drivers/net/ethernet/smsc/epic100.ko
2025-10-02T16:37:29.8505785Z LD [M] drivers/net/ethernet/smsc/smc91c92_cs.ko
2025-10-02T16:37:29.8561869Z LD [M] drivers/net/ethernet/smsc/smsc911x.ko
2025-10-02T16:37:29.8600723Z LD [M] drivers/net/ethernet/smsc/smsc9420.ko
2025-10-02T16:37:29.8609157Z LD [M] drivers/net/ethernet/stmicro/stmmac/dwmac-generic.ko
2025-10-02T16:37:29.8686829Z LD [M] drivers/net/ethernet/stmicro/stmmac/dwmac-intel.ko
2025-10-02T16:37:29.8765220Z LD [M] drivers/net/ethernet/stmicro/stmmac/stmmac-pci.ko
2025-10-02T16:37:29.8771163Z LD [M] drivers/net/ethernet/stmicro/stmmac/stmmac.ko
2025-10-02T16:37:29.8779087Z LD [M] drivers/net/ethernet/stmicro/stmmac/stmmac-platform.ko
2025-10-02T16:37:29.8864568Z LD [M] drivers/net/ethernet/sun/cassini.ko
2025-10-02T16:37:29.8965969Z LD [M] drivers/net/ethernet/sun/niu.ko
2025-10-02T16:37:29.8990930Z LD [M] drivers/net/ethernet/sun/sunhme.ko
2025-10-02T16:37:29.8992327Z LD [M] drivers/net/ethernet/sun/sungem.ko
2025-10-02T16:37:29.9087295Z LD [M] drivers/net/ethernet/synopsys/dwc-xlgmac.ko
2025-10-02T16:37:29.9169288Z LD [M] drivers/net/ethernet/tehuti/tehuti.ko
2025-10-02T16:37:29.9195661Z LD [M] drivers/net/ethernet/ti/tlan.ko
2025-10-02T16:37:29.9315862Z LD [M] drivers/net/ethernet/via/via-rhine.ko
2025-10-02T16:37:29.9340423Z LD [M] drivers/net/ethernet/via/via-velocity.ko
2025-10-02T16:37:29.9430965Z LD [M] drivers/net/ethernet/wiznet/w5100-spi.ko
2025-10-02T16:37:29.9432356Z LD [M] drivers/net/ethernet/wiznet/w5100.ko
2025-10-02T16:37:29.9459252Z LD [M] drivers/net/ethernet/wiznet/w5300.ko
2025-10-02T16:37:29.9795015Z LD [M] drivers/net/ethernet/xilinx/ll_temac.ko
2025-10-02T16:37:29.9843013Z LD [M] drivers/net/ethernet/xilinx/xilinx_emac.ko
2025-10-02T16:37:29.9862921Z LD [M] drivers/net/ethernet/xircom/xirc2ps_cs.ko
2025-10-02T16:37:29.9878516Z LD [M] drivers/net/fddi/defxx.ko
2025-10-02T16:37:29.9895274Z LD [M] drivers/net/fddi/skfp/skfp.ko
2025-10-02T16:37:30.0315751Z LD [M] drivers/net/fjes/fjes.ko
2025-10-02T16:37:30.0341870Z LD [M] drivers/net/geneve.ko
2025-10-02T16:37:30.0344686Z LD [M] drivers/net/gtp.ko
2025-10-02T16:37:30.0348801Z LD [M] drivers/net/hamradio/6pack.ko
2025-10-02T16:37:30.0403926Z LD [M] drivers/net/hamradio/baycom_par.ko
2025-10-02T16:37:30.0530193Z LD [M] drivers/net/hamradio/baycom_ser_fdx.ko
2025-10-02T16:37:30.0542167Z LD [M] drivers/net/hamradio/hdlcdrv.ko
2025-10-02T16:37:30.0571308Z LD [M] drivers/net/hamradio/baycom_ser_hdx.ko
2025-10-02T16:37:30.0593281Z LD [M] drivers/net/hamradio/mkiss.ko
2025-10-02T16:37:30.0594349Z LD [M] drivers/net/hamradio/bpqether.ko
2025-10-02T16:37:30.0664308Z LD [M] drivers/net/hamradio/yam.ko
2025-10-02T16:37:30.0700407Z LD [M] drivers/net/hyperv/hv_netvsc.ko
2025-10-02T16:37:30.0701714Z LD [M] drivers/net/ieee802154/adf7242.ko
2025-10-02T16:37:30.0744262Z LD [M] drivers/net/ieee802154/at86rf230.ko
2025-10-02T16:37:30.0777263Z LD [M] drivers/net/ieee802154/atusb.ko
2025-10-02T16:37:30.0832514Z LD [M] drivers/net/ieee802154/ca8210.ko
2025-10-02T16:37:30.0835990Z LD [M] drivers/net/ieee802154/cc2520.ko
2025-10-02T16:37:30.0941939Z LD [M] drivers/net/ieee802154/fakelb.ko
2025-10-02T16:37:30.0972089Z LD [M] drivers/net/ieee802154/mac802154_hwsim.ko
2025-10-02T16:37:30.1003915Z LD [M] drivers/net/ieee802154/mcr20a.ko
2025-10-02T16:37:30.1014665Z LD [M] drivers/net/ieee802154/mrf24j40.ko
2025-10-02T16:37:30.1015945Z LD [M] drivers/net/ifb.ko
2025-10-02T16:37:30.1099640Z LD [M] drivers/net/ipvlan/ipvlan.ko
2025-10-02T16:37:30.1147833Z LD [M] drivers/net/macsec.ko
2025-10-02T16:37:30.1148932Z LD [M] drivers/net/macvlan.ko
2025-10-02T16:37:30.1169103Z LD [M] drivers/net/ipvlan/ipvtap.ko
2025-10-02T16:37:30.1244737Z LD [M] drivers/net/macvtap.ko
2025-10-02T16:37:30.1269317Z LD [M] drivers/net/mdio.ko
2025-10-02T16:37:30.1338320Z LD [M] drivers/net/mdio/mdio-bcm-unimac.ko
2025-10-02T16:37:30.1348250Z LD [M] drivers/net/mdio/mdio-cavium.ko
2025-10-02T16:37:30.1354583Z LD [M] drivers/net/mdio/mdio-bitbang.ko
2025-10-02T16:37:30.1396074Z LD [M] drivers/net/mdio/mdio-gpio.ko
2025-10-02T16:37:30.1418810Z LD [M] drivers/net/mdio/mdio-i2c.ko
2025-10-02T16:37:30.1460063Z LD [M] drivers/net/mdio/mdio-mscc-miim.ko
2025-10-02T16:37:30.1476815Z LD [M] drivers/net/mdio/mdio-mvusb.ko
2025-10-02T16:37:30.1532346Z LD [M] drivers/net/mii.ko
2025-10-02T16:37:30.1533374Z LD [M] drivers/net/mdio/mdio-thunder.ko
2025-10-02T16:37:30.1550504Z LD [M] drivers/net/net_failover.ko
2025-10-02T16:37:30.1592969Z LD [M] drivers/net/netconsole.ko
2025-10-02T16:37:30.1616558Z LD [M] drivers/net/netdevsim/netdevsim.ko
2025-10-02T16:37:30.1667136Z LD [M] drivers/net/nlmon.ko
2025-10-02T16:37:30.1687765Z LD [M] drivers/net/ntb_netdev.ko
2025-10-02T16:37:30.1692466Z LD [M] drivers/net/pcs/pcs-lynx.ko
2025-10-02T16:37:30.1730959Z LD [M] drivers/net/pcs/pcs-xpcs.ko
2025-10-02T16:37:30.1791925Z LD [M] drivers/net/phy/adin.ko
2025-10-02T16:37:30.1825483Z LD [M] drivers/net/phy/amd.ko
2025-10-02T16:37:30.1841480Z LD [M] drivers/net/phy/aquantia.ko
2025-10-02T16:37:30.1916511Z LD [M] drivers/net/phy/at803x.ko
2025-10-02T16:37:30.1937121Z LD [M] drivers/net/phy/bcm-phy-lib.ko
2025-10-02T16:37:30.1952403Z LD [M] drivers/net/phy/ax88796b.ko
2025-10-02T16:37:30.1991903Z LD [M] drivers/net/phy/bcm54140.ko
2025-10-02T16:37:30.2017503Z LD [M] drivers/net/phy/bcm7xxx.ko
2025-10-02T16:37:30.2052091Z LD [M] drivers/net/phy/bcm84881.ko
2025-10-02T16:37:30.2094645Z LD [M] drivers/net/phy/broadcom.ko
2025-10-02T16:37:30.2098817Z LD [M] drivers/net/phy/bcm87xx.ko
2025-10-02T16:37:30.2109823Z LD [M] drivers/net/phy/cicada.ko
2025-10-02T16:37:30.2166789Z LD [M] drivers/net/phy/davicom.ko
2025-10-02T16:37:30.2184236Z LD [M] drivers/net/phy/cortina.ko
2025-10-02T16:37:30.2220583Z LD [M] drivers/net/phy/dp83640.ko
2025-10-02T16:37:30.2239978Z LD [M] drivers/net/phy/dp83822.ko
2025-10-02T16:37:30.2277521Z LD [M] drivers/net/phy/dp83848.ko
2025-10-02T16:37:30.2303450Z LD [M] drivers/net/phy/dp83867.ko
2025-10-02T16:37:30.2334597Z LD [M] drivers/net/phy/dp83869.ko
2025-10-02T16:37:30.2360298Z LD [M] drivers/net/phy/dp83tc811.ko
2025-10-02T16:37:30.2395262Z LD [M] drivers/net/phy/fixed_phy.ko
2025-10-02T16:37:30.2433030Z LD [M] drivers/net/phy/et1011c.ko
2025-10-02T16:37:30.2476833Z LD [M] drivers/net/phy/intel-xway.ko
2025-10-02T16:37:30.2480948Z LD [M] drivers/net/phy/icplus.ko
2025-10-02T16:37:30.2485557Z LD [M] drivers/net/phy/libphy.ko
2025-10-02T16:37:30.2534972Z LD [M] drivers/net/phy/lxt.ko
2025-10-02T16:37:30.2576780Z LD [M] drivers/net/phy/marvell.ko
2025-10-02T16:37:30.2614141Z LD [M] drivers/net/phy/marvell10g.ko
2025-10-02T16:37:30.2690675Z LD [M] drivers/net/phy/mdio_devres.ko
2025-10-02T16:37:30.2691570Z LD [M] drivers/net/phy/micrel.ko
2025-10-02T16:37:30.2766524Z LD [M] drivers/net/phy/microchip.ko
2025-10-02T16:37:30.2776428Z LD [M] drivers/net/phy/microchip_t1.ko
2025-10-02T16:37:30.2780515Z LD [M] drivers/net/phy/mscc/mscc.ko
2025-10-02T16:37:30.2813864Z LD [M] drivers/net/phy/national.ko
2025-10-02T16:37:30.2840430Z LD [M] drivers/net/phy/nxp-tja11xx.ko
2025-10-02T16:37:30.2886696Z LD [M] drivers/net/phy/phylink.ko
2025-10-02T16:37:30.2908549Z LD [M] drivers/net/phy/qsemi.ko
2025-10-02T16:37:30.2960302Z LD [M] drivers/net/phy/realtek.ko
2025-10-02T16:37:30.2982574Z LD [M] drivers/net/phy/sfp.ko
2025-10-02T16:37:30.3012093Z LD [M] drivers/net/phy/smsc.ko
2025-10-02T16:37:30.3056475Z LD [M] drivers/net/phy/spi_ks8995.ko
2025-10-02T16:37:30.3075898Z LD [M] drivers/net/phy/ste10Xp.ko
2025-10-02T16:37:30.3116693Z LD [M] drivers/net/phy/teranetics.ko
2025-10-02T16:37:30.3150314Z LD [M] drivers/net/phy/uPD60620.ko
2025-10-02T16:37:30.3164457Z LD [M] drivers/net/phy/vitesse.ko
2025-10-02T16:37:30.3197848Z LD [M] drivers/net/phy/xilinx_gmii2rgmii.ko
2025-10-02T16:37:30.3206719Z LD [M] drivers/net/plip/plip.ko
2025-10-02T16:37:30.3263190Z LD [M] drivers/net/ppp/bsd_comp.ko
2025-10-02T16:37:30.3295637Z LD [M] drivers/net/ppp/ppp_async.ko
2025-10-02T16:37:30.3323926Z LD [M] drivers/net/ppp/ppp_deflate.ko
2025-10-02T16:37:30.3344823Z LD [M] drivers/net/ppp/ppp_generic.ko
2025-10-02T16:37:30.3372516Z LD [M] drivers/net/ppp/ppp_mppe.ko
2025-10-02T16:37:30.3390876Z LD [M] drivers/net/ppp/ppp_synctty.ko
2025-10-02T16:37:30.3438610Z LD [M] drivers/net/ppp/pppoe.ko
2025-10-02T16:37:30.3454288Z LD [M] drivers/net/ppp/pppox.ko
2025-10-02T16:37:30.3530271Z LD [M] drivers/net/ppp/pptp.ko
2025-10-02T16:37:30.3545265Z LD [M] drivers/net/sb1000.ko
2025-10-02T16:37:30.3572758Z LD [M] drivers/net/slip/slhc.ko
2025-10-02T16:37:30.3600909Z LD [M] drivers/net/slip/slip.ko
2025-10-02T16:37:30.3630826Z LD [M] drivers/net/sungem_phy.ko
2025-10-02T16:37:30.3675500Z LD [M] drivers/net/tap.ko
2025-10-02T16:37:30.3705438Z LD [M] drivers/net/team/team.ko
2025-10-02T16:37:30.3724483Z LD [M] drivers/net/team/team_mode_activebackup.ko
2025-10-02T16:37:30.3752157Z LD [M] drivers/net/team/team_mode_broadcast.ko
2025-10-02T16:37:30.3764714Z LD [M] drivers/net/team/team_mode_loadbalance.ko
2025-10-02T16:37:30.3865400Z LD [M] drivers/net/team/team_mode_random.ko
2025-10-02T16:37:30.3902387Z LD [M] drivers/net/team/team_mode_roundrobin.ko
2025-10-02T16:37:30.3903640Z LD [M] drivers/net/thunderbolt-net.ko
2025-10-02T16:37:30.3911150Z LD [M] drivers/net/tun.ko
2025-10-02T16:37:30.3949727Z LD [M] drivers/net/usb/aqc111.ko
2025-10-02T16:37:30.3998998Z LD [M] drivers/net/usb/asix.ko
2025-10-02T16:37:30.4036383Z LD [M] drivers/net/usb/ax88179_178a.ko
2025-10-02T16:37:30.4053419Z LD [M] drivers/net/usb/catc.ko
2025-10-02T16:37:30.4133696Z LD [M] drivers/net/usb/cdc-phonet.ko
2025-10-02T16:37:30.4165706Z LD [M] drivers/net/usb/cdc_eem.ko
2025-10-02T16:37:30.4178445Z LD [M] drivers/net/usb/cdc_ether.ko
2025-10-02T16:37:30.4205660Z LD [M] drivers/net/usb/cdc_ncm.ko
2025-10-02T16:37:30.4224591Z LD [M] drivers/net/usb/cdc_mbim.ko
2025-10-02T16:37:30.4298566Z LD [M] drivers/net/usb/ch9200.ko
2025-10-02T16:37:30.4310216Z LD [M] drivers/net/usb/cx82310_eth.ko
2025-10-02T16:37:30.4311605Z LD [M] drivers/net/usb/cdc_subset.ko
2025-10-02T16:37:30.4355356Z LD [M] drivers/net/usb/dm9601.ko
2025-10-02T16:37:30.4408843Z LD [M] drivers/net/usb/gl620a.ko
2025-10-02T16:37:30.4456592Z LD [M] drivers/net/usb/hso.ko
2025-10-02T16:37:30.4461156Z LD [M] drivers/net/usb/huawei_cdc_ncm.ko
2025-10-02T16:37:30.4506362Z LD [M] drivers/net/usb/int51x1.ko
2025-10-02T16:37:30.4519906Z LD [M] drivers/net/usb/ipheth.ko
2025-10-02T16:37:30.4545932Z LD [M] drivers/net/usb/kalmia.ko
2025-10-02T16:37:30.4603974Z LD [M] drivers/net/usb/kaweth.ko
2025-10-02T16:37:30.4640961Z LD [M] drivers/net/usb/lan78xx.ko
2025-10-02T16:37:30.4674549Z LD [M] drivers/net/usb/lg-vl600.ko
2025-10-02T16:37:30.4693306Z LD [M] drivers/net/usb/mcs7830.ko
2025-10-02T16:37:30.4723502Z LD [M] drivers/net/usb/net1080.ko
2025-10-02T16:37:30.4754912Z LD [M] drivers/net/usb/pegasus.ko
2025-10-02T16:37:30.4780175Z LD [M] drivers/net/usb/plusb.ko
2025-10-02T16:37:30.4838382Z LD [M] drivers/net/usb/qmi_wwan.ko
2025-10-02T16:37:30.4846841Z LD [M] drivers/net/usb/r8152.ko
2025-10-02T16:37:30.4916782Z LD [M] drivers/net/usb/rndis_host.ko
2025-10-02T16:37:30.4923578Z LD [M] drivers/net/usb/rtl8150.ko
2025-10-02T16:37:30.4927940Z LD [M] drivers/net/usb/sierra_net.ko
2025-10-02T16:37:30.5000983Z LD [M] drivers/net/usb/smsc75xx.ko
2025-10-02T16:37:30.5087129Z LD [M] drivers/net/usb/smsc95xx.ko
2025-10-02T16:37:30.5092852Z LD [M] drivers/net/usb/sr9700.ko
2025-10-02T16:37:30.5097698Z LD [M] drivers/net/usb/sr9800.ko
2025-10-02T16:37:30.5151840Z LD [M] drivers/net/usb/usbnet.ko
2025-10-02T16:37:30.5179386Z LD [M] drivers/net/usb/zaurus.ko
2025-10-02T16:37:30.5209209Z LD [M] drivers/net/veth.ko
2025-10-02T16:37:30.5251931Z LD [M] drivers/net/virtio_net.ko
2025-10-02T16:37:30.5273076Z LD [M] drivers/net/vmxnet3/vmxnet3.ko
2025-10-02T16:37:30.5361673Z LD [M] drivers/net/vrf.ko
2025-10-02T16:37:30.5404510Z LD [M] drivers/net/vxlan/vxlan.ko
2025-10-02T16:37:30.5438979Z LD [M] drivers/net/wimax/i2400m/i2400m-usb.ko
2025-10-02T16:37:30.5443955Z LD [M] drivers/net/vsockmon.ko
2025-10-02T16:37:30.5625379Z LD [M] drivers/net/wimax/i2400m/i2400m.ko
2025-10-02T16:37:30.5636887Z LD [M] drivers/net/wireguard/wireguard.ko
2025-10-02T16:37:30.5663707Z LD [M] drivers/net/wireless/admtek/adm8211.ko
2025-10-02T16:37:30.5746208Z LD [M] drivers/net/wireless/ath/ar5523/ar5523.ko
2025-10-02T16:37:30.5845514Z LD [M] drivers/net/wireless/ath/ath.ko
2025-10-02T16:37:30.5980393Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_core.ko
2025-10-02T16:37:30.5987107Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_pci.ko
2025-10-02T16:37:30.6024702Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_sdio.ko
2025-10-02T16:37:30.6863486Z LD [M] drivers/net/wireless/ath/ath10k/ath10k_usb.ko
2025-10-02T16:37:30.6927714Z LD [M] drivers/net/wireless/ath/ath11k/ath11k.ko
2025-10-02T16:37:30.7360810Z LD [M] drivers/net/wireless/ath/ath11k/ath11k_ahb.ko
2025-10-02T16:37:30.7385850Z LD [M] drivers/net/wireless/ath/ath11k/ath11k_pci.ko
2025-10-02T16:37:30.7403615Z LD [M] drivers/net/wireless/ath/ath5k/ath5k.ko
2025-10-02T16:37:30.7530788Z LD [M] drivers/net/wireless/ath/ath6kl/ath6kl_core.ko
2025-10-02T16:37:30.7575084Z LD [M] drivers/net/wireless/ath/ath6kl/ath6kl_sdio.ko
2025-10-02T16:37:30.7763365Z LD [M] drivers/net/wireless/ath/ath6kl/ath6kl_usb.ko
2025-10-02T16:37:30.7896517Z LD [M] drivers/net/wireless/ath/ath9k/ath9k.ko
2025-10-02T16:37:30.7954502Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_common.ko
2025-10-02T16:37:30.8004924Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_htc.ko
2025-10-02T16:37:30.8081316Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_hw.ko
2025-10-02T16:37:30.8170175Z LD [M] drivers/net/wireless/ath/ath9k/ath9k_pci_owl_loader.ko
2025-10-02T16:37:30.8297641Z LD [M] drivers/net/wireless/ath/carl9170/carl9170.ko
2025-10-02T16:37:30.8368314Z LD [M] drivers/net/wireless/ath/wcn36xx/wcn36xx.ko
2025-10-02T16:37:30.8532153Z LD [M] drivers/net/wireless/ath/wil6210/wil6210.ko
2025-10-02T16:37:30.8704144Z LD [M] drivers/net/wireless/atmel/at76c50x-usb.ko
2025-10-02T16:37:30.8745664Z LD [M] drivers/net/wireless/atmel/atmel.ko
2025-10-02T16:37:30.8792514Z LD [M] drivers/net/wireless/atmel/atmel_cs.ko
2025-10-02T16:37:30.8828560Z LD [M] drivers/net/wireless/atmel/atmel_pci.ko
2025-10-02T16:37:30.8937682Z LD [M] drivers/net/wireless/broadcom/b43/b43.ko
2025-10-02T16:37:30.8971183Z LD [M] drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac.ko
2025-10-02T16:37:30.8977473Z LD [M] drivers/net/wireless/broadcom/brcm80211/brcmsmac/brcmsmac.ko
2025-10-02T16:37:30.8985888Z LD [M] drivers/net/wireless/broadcom/b43legacy/b43legacy.ko
2025-10-02T16:37:30.9223864Z LD [M] drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil.ko
2025-10-02T16:37:30.9376468Z LD [M] drivers/net/wireless/cisco/airo.ko
2025-10-02T16:37:30.9668971Z LD [M] drivers/net/wireless/cisco/airo_cs.ko
2025-10-02T16:37:30.9754123Z LD [M] drivers/net/wireless/intel/ipw2x00/ipw2100.ko
2025-10-02T16:37:30.9885904Z LD [M] drivers/net/wireless/intel/ipw2x00/ipw2200.ko
2025-10-02T16:37:30.9950938Z LD [M] drivers/net/wireless/intel/iwlegacy/iwl3945.ko
2025-10-02T16:37:30.9960375Z LD [M] drivers/net/wireless/intel/ipw2x00/libipw.ko
2025-10-02T16:37:30.9962859Z LD [M] drivers/net/wireless/intel/iwlegacy/iwl4965.ko
2025-10-02T16:37:31.0385219Z LD [M] drivers/net/wireless/intel/iwlegacy/iwlegacy.ko
2025-10-02T16:37:31.0393823Z LD [M] drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.ko
2025-10-02T16:37:31.0410864Z LD [M] drivers/net/wireless/intel/iwlwifi/iwlwifi.ko
2025-10-02T16:37:31.0437491Z LD [M] drivers/net/wireless/intel/iwlwifi/mvm/iwlmvm.ko
2025-10-02T16:37:31.0984522Z LD [M] drivers/net/wireless/intersil/hostap/hostap.ko
2025-10-02T16:37:31.1039419Z LD [M] drivers/net/wireless/intersil/hostap/hostap_cs.ko
2025-10-02T16:37:31.1344802Z LD [M] drivers/net/wireless/intersil/hostap/hostap_pci.ko
2025-10-02T16:37:31.1375134Z LD [M] drivers/net/wireless/intersil/hostap/hostap_plx.ko
2025-10-02T16:37:31.1400122Z LD [M] drivers/net/wireless/intersil/orinoco/orinoco.ko
2025-10-02T16:37:31.1430228Z LD [M] drivers/net/wireless/intersil/orinoco/orinoco_cs.ko
2025-10-02T16:37:31.1551034Z LD [M] drivers/net/wireless/intersil/orinoco/orinoco_nortel.ko
2025-10-02T16:37:31.1570979Z LD [M] drivers/net/wireless/intersil/orinoco/orinoco_pci.ko
2025-10-02T16:37:31.1619890Z LD [M] drivers/net/wireless/intersil/orinoco/orinoco_plx.ko
2025-10-02T16:37:31.1631758Z LD [M] drivers/net/wireless/intersil/orinoco/orinoco_tmd.ko
2025-10-02T16:37:31.1690579Z LD [M] drivers/net/wireless/intersil/orinoco/orinoco_usb.ko
2025-10-02T16:37:31.1727255Z LD [M] drivers/net/wireless/intersil/orinoco/spectrum_cs.ko
2025-10-02T16:37:31.1730396Z LD [M] drivers/net/wireless/intersil/p54/p54common.ko
2025-10-02T16:37:31.1760772Z LD [M] drivers/net/wireless/intersil/p54/p54pci.ko
2025-10-02T16:37:31.1826914Z LD [M] drivers/net/wireless/intersil/p54/p54spi.ko
2025-10-02T16:37:31.1837231Z LD [M] drivers/net/wireless/intersil/p54/p54usb.ko
2025-10-02T16:37:31.1866501Z LD [M] drivers/net/wireless/intersil/prism54/prism54.ko
2025-10-02T16:37:31.1884098Z LD [M] drivers/net/wireless/mac80211_hwsim.ko
2025-10-02T16:37:31.1946785Z LD [M] drivers/net/wireless/marvell/libertas/libertas.ko
2025-10-02T16:37:31.2045161Z LD [M] drivers/net/wireless/marvell/libertas/libertas_cs.ko
2025-10-02T16:37:31.2081793Z LD [M] drivers/net/wireless/marvell/libertas/libertas_sdio.ko
2025-10-02T16:37:31.2084170Z LD [M] drivers/net/wireless/marvell/libertas/libertas_spi.ko
2025-10-02T16:37:31.2152931Z LD [M] drivers/net/wireless/marvell/libertas/usb8xxx.ko
2025-10-02T16:37:31.2179241Z LD [M] drivers/net/wireless/marvell/libertas_tf/libertas_tf.ko
2025-10-02T16:37:31.2220327Z LD [M] drivers/net/wireless/marvell/libertas_tf/libertas_tf_usb.ko
2025-10-02T16:37:31.2246585Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex_pcie.ko
2025-10-02T16:37:31.2254927Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex.ko
2025-10-02T16:37:31.2292131Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex_sdio.ko
2025-10-02T16:37:31.2393256Z LD [M] drivers/net/wireless/marvell/mwifiex/mwifiex_usb.ko
2025-10-02T16:37:31.2423251Z LD [M] drivers/net/wireless/mediatek/mt76/mt76-sdio.ko
2025-10-02T16:37:31.2430544Z LD [M] drivers/net/wireless/marvell/mwl8k.ko
2025-10-02T16:37:31.2439220Z LD [M] drivers/net/wireless/mediatek/mt76/mt76-usb.ko
2025-10-02T16:37:31.2529730Z LD [M] drivers/net/wireless/mediatek/mt76/mt76.ko
2025-10-02T16:37:31.2565586Z LD [M] drivers/net/wireless/mediatek/mt76/mt7603/mt7603e.ko
2025-10-02T16:37:31.2614961Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common.ko
2025-10-02T16:37:31.2726015Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7615e.ko
2025-10-02T16:37:31.3056158Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common.ko
2025-10-02T16:37:31.3081071Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663s.ko
2025-10-02T16:37:31.3101120Z LD [M] drivers/net/wireless/mediatek/mt76/mt7615/mt7663u.ko
2025-10-02T16:37:31.3129239Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common.ko
2025-10-02T16:37:31.3155881Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0e.ko
2025-10-02T16:37:31.3242601Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0u.ko
2025-10-02T16:37:31.3248873Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x02-lib.ko
2025-10-02T16:37:31.3384784Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x02-usb.ko
2025-10-02T16:37:31.3402764Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common.ko
2025-10-02T16:37:31.3421171Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2e.ko
2025-10-02T16:37:31.3536545Z LD [M] drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2u.ko
2025-10-02T16:37:31.3663346Z LD [M] drivers/net/wireless/mediatek/mt76/mt7915/mt7915e.ko
2025-10-02T16:37:31.3863855Z LD [M] drivers/net/wireless/mediatek/mt7601u/mt7601u.ko
2025-10-02T16:37:31.4366052Z LD [M] drivers/net/wireless/microchip/wilc1000/wilc1000-sdio.ko
2025-10-02T16:37:31.4375697Z LD [M] drivers/net/wireless/microchip/wilc1000/wilc1000-spi.ko
2025-10-02T16:37:31.4411092Z LD [M] drivers/net/wireless/microchip/wilc1000/wilc1000.ko
2025-10-02T16:37:31.4886245Z LD [M] drivers/net/wireless/quantenna/qtnfmac/qtnfmac.ko
2025-10-02T16:37:31.4920096Z LD [M] drivers/net/wireless/quantenna/qtnfmac/qtnfmac_pcie.ko
2025-10-02T16:37:31.4961438Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2500pci.ko
2025-10-02T16:37:31.4962478Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2500usb.ko
2025-10-02T16:37:31.4963584Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2400pci.ko
2025-10-02T16:37:31.5114281Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2800lib.ko
2025-10-02T16:37:31.5137457Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2800mmio.ko
2025-10-02T16:37:31.5168230Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2800pci.ko
2025-10-02T16:37:31.5177360Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2800usb.ko
2025-10-02T16:37:31.5205829Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2x00lib.ko
2025-10-02T16:37:31.5294322Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2x00pci.ko
2025-10-02T16:37:31.5317799Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2x00mmio.ko
2025-10-02T16:37:31.5351945Z LD [M] drivers/net/wireless/ralink/rt2x00/rt2x00usb.ko
2025-10-02T16:37:31.5463278Z LD [M] drivers/net/wireless/ralink/rt2x00/rt61pci.ko
2025-10-02T16:37:31.5482303Z LD [M] drivers/net/wireless/ralink/rt2x00/rt73usb.ko
2025-10-02T16:37:31.5531874Z LD [M] drivers/net/wireless/ray_cs.ko
2025-10-02T16:37:31.5566753Z LD [M] drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8187.ko
2025-10-02T16:37:31.5570036Z LD [M] drivers/net/wireless/realtek/rtl818x/rtl8180/rtl818x_pci.ko
2025-10-02T16:37:31.5637591Z LD [M] drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.ko
2025-10-02T16:37:31.5675817Z LD [M] drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist.ko
2025-10-02T16:37:31.5740385Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8188ee/rtl8188ee.ko
2025-10-02T16:37:31.5753969Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common.ko
2025-10-02T16:37:31.5833027Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ce/rtl8192ce.ko
2025-10-02T16:37:31.5962228Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192cu/rtl8192cu.ko
2025-10-02T16:37:31.6095724Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192ee/rtl8192ee.ko
2025-10-02T16:37:31.6100853Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192de/rtl8192de.ko
2025-10-02T16:37:31.6289368Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8192se/rtl8192se.ko
2025-10-02T16:37:31.6322619Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8723ae/rtl8723ae.ko
2025-10-02T16:37:31.6408514Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8723be/rtl8723be.ko
2025-10-02T16:37:31.6450812Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common.ko
2025-10-02T16:37:31.6587370Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl8821ae/rtl8821ae.ko
2025-10-02T16:37:31.6608657Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl_pci.ko
2025-10-02T16:37:31.6753869Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtl_usb.ko
2025-10-02T16:37:31.6790623Z LD [M] drivers/net/wireless/realtek/rtlwifi/rtlwifi.ko
2025-10-02T16:37:31.6801709Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8723d.ko
2025-10-02T16:37:31.6812751Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8723de.ko
2025-10-02T16:37:31.6935085Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8821c.ko
2025-10-02T16:37:31.6987848Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8821ce.ko
2025-10-02T16:37:31.6998351Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822b.ko
2025-10-02T16:37:31.7018490Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822be.ko
2025-10-02T16:37:31.7182509Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822c.ko
2025-10-02T16:37:31.7191855Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_8822ce.ko
2025-10-02T16:37:31.7220607Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_core.ko
2025-10-02T16:37:31.7248873Z LD [M] drivers/net/wireless/realtek/rtw88/rtw88_pci.ko
2025-10-02T16:37:31.7292437Z LD [M] drivers/net/wireless/rndis_wlan.ko
2025-10-02T16:37:31.7391723Z LD [M] drivers/net/wireless/rsi/rsi_91x.ko
2025-10-02T16:37:31.7532913Z LD [M] drivers/net/wireless/rsi/rsi_sdio.ko
2025-10-02T16:37:31.7863389Z LD [M] drivers/net/wireless/rsi/rsi_usb.ko
2025-10-02T16:37:31.8387891Z LD [M] drivers/net/wireless/st/cw1200/cw1200_core.ko
2025-10-02T16:37:31.8402692Z LD [M] drivers/net/wireless/st/cw1200/cw1200_wlan_sdio.ko
2025-10-02T16:37:31.8481579Z LD [M] drivers/net/wireless/st/cw1200/cw1200_wlan_spi.ko
2025-10-02T16:37:31.8502646Z LD [M] drivers/net/wireless/ti/wl1251/wl1251_sdio.ko
2025-10-02T16:37:31.8503571Z LD [M] drivers/net/wireless/ti/wl1251/wl1251.ko
2025-10-02T16:37:31.9293371Z LD [M] drivers/net/wireless/ti/wl1251/wl1251_spi.ko
2025-10-02T16:37:31.9310225Z LD [M] drivers/net/wireless/ti/wl12xx/wl12xx.ko
2025-10-02T16:37:31.9371526Z LD [M] drivers/net/wireless/ti/wl18xx/wl18xx.ko
2025-10-02T16:37:31.9872362Z LD [M] drivers/net/wireless/ti/wlcore/wlcore.ko
2025-10-02T16:37:31.9886523Z LD [M] drivers/net/wireless/ti/wlcore/wlcore_sdio.ko
2025-10-02T16:37:31.9910753Z LD [M] drivers/net/wireless/wl3501_cs.ko
2025-10-02T16:37:31.9918962Z LD [M] drivers/net/wireless/virt_wifi.ko
2025-10-02T16:37:31.9962363Z LD [M] drivers/net/wireless/zydas/zd1201.ko
2025-10-02T16:37:32.1378751Z LD [M] drivers/net/wireless/zydas/zd1211rw/zd1211rw.ko
2025-10-02T16:37:32.1410528Z LD [M] drivers/net/xen-netback/xen-netback.ko
2025-10-02T16:37:32.1431060Z LD [M] drivers/net/xen-netfront.ko
2025-10-02T16:37:32.1465814Z LD [M] drivers/nfc/fdp/fdp.ko
2025-10-02T16:37:32.1893844Z LD [M] drivers/nfc/fdp/fdp_i2c.ko
2025-10-02T16:37:32.1918674Z LD [M] drivers/nfc/mei_phy.ko
2025-10-02T16:37:32.1932574Z LD [M] drivers/nfc/microread/microread.ko
2025-10-02T16:37:32.2021886Z LD [M] drivers/nfc/microread/microread_i2c.ko
2025-10-02T16:37:32.2367119Z LD [M] drivers/nfc/microread/microread_mei.ko
2025-10-02T16:37:32.2394011Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_i2c.ko
2025-10-02T16:37:32.2397295Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl.ko
2025-10-02T16:37:32.2807931Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_spi.ko
2025-10-02T16:37:32.2829834Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_uart.ko
2025-10-02T16:37:32.3283316Z LD [M] drivers/nfc/nfcmrvl/nfcmrvl_usb.ko
2025-10-02T16:37:32.3326891Z LD [M] drivers/nfc/nfcsim.ko
2025-10-02T16:37:32.3342996Z LD [M] drivers/nfc/nxp-nci/nxp-nci.ko
2025-10-02T16:37:32.3780441Z LD [M] drivers/nfc/nxp-nci/nxp-nci_i2c.ko
2025-10-02T16:37:32.4255492Z LD [M] drivers/nfc/pn533/pn532_uart.ko
2025-10-02T16:37:32.5840305Z LD [M] drivers/nfc/pn533/pn533.ko
2025-10-02T16:37:32.6314802Z LD [M] drivers/nfc/pn533/pn533_i2c.ko
2025-10-02T16:37:32.8275085Z LD [M] drivers/nfc/pn533/pn533_usb.ko
2025-10-02T16:37:32.9381067Z LD [M] drivers/nfc/pn544/pn544.ko
2025-10-02T16:37:32.9382321Z LD [M] drivers/nfc/pn544/pn544_i2c.ko
2025-10-02T16:37:33.0329153Z LD [M] drivers/nfc/pn544/pn544_mei.ko
2025-10-02T16:37:33.0340985Z LD [M] drivers/nfc/port100.ko
2025-10-02T16:37:33.0820100Z LD [M] drivers/nfc/s3fwrn5/s3fwrn5.ko
2025-10-02T16:37:33.1295640Z LD [M] drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko
2025-10-02T16:37:33.1297852Z LD [M] drivers/nfc/st-nci/st-nci.ko
2025-10-02T16:37:33.2884837Z LD [M] drivers/nfc/st-nci/st-nci_i2c.ko
2025-10-02T16:37:33.2918181Z LD [M] drivers/nfc/st-nci/st-nci_spi.ko
2025-10-02T16:37:33.2946082Z LD [M] drivers/nfc/st21nfca/st21nfca_hci.ko
2025-10-02T16:37:33.2966228Z LD [M] drivers/nfc/st21nfca/st21nfca_i2c.ko
2025-10-02T16:37:33.3006747Z LD [M] drivers/nfc/st95hf/st95hf.ko
2025-10-02T16:37:33.3039932Z LD [M] drivers/nfc/trf7970a.ko
2025-10-02T16:37:33.3067403Z LD [M] drivers/ntb/hw/amd/ntb_hw_amd.ko
2025-10-02T16:37:33.3103372Z LD [M] drivers/ntb/hw/idt/ntb_hw_idt.ko
2025-10-02T16:37:33.3130555Z LD [M] drivers/ntb/hw/intel/ntb_hw_intel.ko
2025-10-02T16:37:33.3171105Z LD [M] drivers/ntb/hw/mscc/ntb_hw_switchtec.ko
2025-10-02T16:37:33.3219401Z LD [M] drivers/ntb/ntb.ko
2025-10-02T16:37:33.3241875Z LD [M] drivers/ntb/ntb_transport.ko
2025-10-02T16:37:33.3309326Z LD [M] drivers/nvdimm/nd_blk.ko
2025-10-02T16:37:33.3314501Z LD [M] drivers/nvdimm/nd_btt.ko
2025-10-02T16:37:33.3327751Z LD [M] drivers/nvdimm/nd_e820.ko
2025-10-02T16:37:33.3347698Z LD [M] drivers/nvdimm/nd_pmem.ko
2025-10-02T16:37:33.3398984Z LD [M] drivers/nvdimm/nd_virtio.ko
2025-10-02T16:37:33.3434337Z LD [M] drivers/nvdimm/virtio_pmem.ko
2025-10-02T16:37:33.3439010Z LD [M] drivers/nvme/host/nvme-fabrics.ko
2025-10-02T16:37:33.3463707Z LD [M] drivers/nvme/host/nvme-fc.ko
2025-10-02T16:37:33.3536215Z LD [M] drivers/nvme/host/nvme-rdma.ko
2025-10-02T16:37:33.3540791Z LD [M] drivers/nvme/host/nvme-tcp.ko
2025-10-02T16:37:33.3570870Z LD [M] drivers/nvme/target/nvme-fcloop.ko
2025-10-02T16:37:33.3580303Z LD [M] drivers/nvme/target/nvme-loop.ko
2025-10-02T16:37:33.3685819Z LD [M] drivers/nvme/target/nvmet-fc.ko
2025-10-02T16:37:33.3728393Z LD [M] drivers/nvme/target/nvmet-rdma.ko
2025-10-02T16:37:33.3768694Z LD [M] drivers/nvme/target/nvmet.ko
2025-10-02T16:37:33.3769786Z LD [M] drivers/nvme/target/nvmet-tcp.ko
2025-10-02T16:37:33.3770727Z LD [M] drivers/nvmem/nvmem-rave-sp-eeprom.ko
2025-10-02T16:37:33.3862539Z LD [M] drivers/parport/parport.ko
2025-10-02T16:37:33.3908412Z LD [M] drivers/parport/parport_ax88796.ko
2025-10-02T16:37:33.3930423Z LD [M] drivers/parport/parport_cs.ko
2025-10-02T16:37:33.3943974Z LD [M] drivers/parport/parport_pc.ko
2025-10-02T16:37:33.4034875Z LD [M] drivers/parport/parport_serial.ko
2025-10-02T16:37:33.4041711Z LD [M] drivers/pci/controller/pci-hyperv-intf.ko
2025-10-02T16:37:33.4049412Z LD [M] drivers/pci/controller/pci-hyperv.ko
2025-10-02T16:37:33.4116726Z LD [M] drivers/pci/controller/vmd.ko
2025-10-02T16:37:33.4121411Z LD [M] drivers/pci/hotplug/acpiphp_ibm.ko
2025-10-02T16:37:33.4154109Z LD [M] drivers/pci/hotplug/cpcihp_generic.ko
2025-10-02T16:37:33.4164492Z LD [M] drivers/pci/hotplug/cpcihp_zt5550.ko
2025-10-02T16:37:33.4238272Z LD [M] drivers/pci/pci-pf-stub.ko
2025-10-02T16:37:33.4259191Z LD [M] drivers/pci/pcie/aer_inject.ko
2025-10-02T16:37:33.4294646Z LD [M] drivers/pci/switch/switchtec.ko
2025-10-02T16:37:33.4301742Z LD [M] drivers/pci/xen-pcifront.ko
2025-10-02T16:37:33.4310738Z LD [M] drivers/pcmcia/i82092.ko
2025-10-02T16:37:33.4375708Z LD [M] drivers/pcmcia/pcmcia.ko
2025-10-02T16:37:33.4443248Z LD [M] drivers/pcmcia/pcmcia_core.ko
2025-10-02T16:37:33.4471374Z LD [M] drivers/pcmcia/pcmcia_rsrc.ko
2025-10-02T16:37:33.4503901Z LD [M] drivers/pcmcia/pd6729.ko
2025-10-02T16:37:33.4550018Z LD [M] drivers/pcmcia/yenta_socket.ko
2025-10-02T16:37:33.4615282Z LD [M] drivers/phy/broadcom/phy-bcm-kona-usb2.ko
2025-10-02T16:37:33.4618995Z LD [M] drivers/phy/intel/phy-intel-lgm-emmc.ko
2025-10-02T16:37:33.4670474Z LD [M] drivers/phy/marvell/phy-pxa-28nm-hsic.ko
2025-10-02T16:37:33.4684545Z LD [M] drivers/phy/marvell/phy-pxa-28nm-usb2.ko
2025-10-02T16:37:33.4763484Z LD [M] drivers/phy/motorola/phy-cpcap-usb.ko
2025-10-02T16:37:33.4813019Z LD [M] drivers/phy/phy-lgm-usb.ko
2025-10-02T16:37:33.4827944Z LD [M] drivers/phy/qualcomm/phy-qcom-usb-hs.ko
2025-10-02T16:37:33.4860784Z LD [M] drivers/phy/qualcomm/phy-qcom-usb-hsic.ko
2025-10-02T16:37:33.4873144Z LD [M] drivers/phy/ti/phy-tusb1210.ko
2025-10-02T16:37:33.4906224Z LD [M] drivers/pinctrl/cirrus/pinctrl-madera.ko
2025-10-02T16:37:33.4952749Z LD [M] drivers/pinctrl/pinctrl-amd.ko
2025-10-02T16:37:33.4991222Z LD [M] drivers/pinctrl/pinctrl-da9062.ko
2025-10-02T16:37:33.4997949Z LD [M] drivers/pinctrl/pinctrl-mcp23s08.ko
2025-10-02T16:37:33.5011731Z LD [M] drivers/pinctrl/pinctrl-mcp23s08_i2c.ko
2025-10-02T16:37:33.5060441Z LD [M] drivers/pinctrl/pinctrl-mcp23s08_spi.ko
2025-10-02T16:37:33.5117995Z LD [M] drivers/platform/chrome/chromeos_laptop.ko
2025-10-02T16:37:33.5150241Z LD [M] drivers/platform/chrome/chromeos_pstore.ko
2025-10-02T16:37:33.5151480Z LD [M] drivers/platform/chrome/cros-ec-sensorhub.ko
2025-10-02T16:37:33.5172130Z LD [M] drivers/platform/chrome/chromeos_tbmc.ko
2025-10-02T16:37:33.5223950Z LD [M] drivers/platform/chrome/cros_ec.ko
2025-10-02T16:37:33.5241592Z LD [M] drivers/platform/chrome/cros_ec_chardev.ko
2025-10-02T16:37:33.5260544Z LD [M] drivers/platform/chrome/cros_ec_debugfs.ko
2025-10-02T16:37:33.5279979Z LD [M] drivers/platform/chrome/cros_ec_i2c.ko
2025-10-02T16:37:33.5321013Z LD [M] drivers/platform/chrome/cros_ec_ishtp.ko
2025-10-02T16:37:33.5370754Z LD [M] drivers/platform/chrome/cros_ec_lightbar.ko
2025-10-02T16:37:33.5385491Z LD [M] drivers/platform/chrome/cros_ec_lpcs.ko
2025-10-02T16:37:33.5414600Z LD [M] drivers/platform/chrome/cros_ec_sysfs.ko
2025-10-02T16:37:33.5420604Z LD [M] drivers/platform/chrome/cros_ec_spi.ko
2025-10-02T16:37:33.5442958Z LD [M] drivers/platform/chrome/cros_ec_typec.ko
2025-10-02T16:37:33.5477671Z LD [M] drivers/platform/chrome/cros_kbd_led_backlight.ko
2025-10-02T16:37:33.5509309Z LD [M] drivers/platform/chrome/cros_usbpd_logger.ko
2025-10-02T16:37:33.5563395Z LD [M] drivers/platform/chrome/cros_usbpd_notify.ko
2025-10-02T16:37:33.5564397Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec.ko
2025-10-02T16:37:33.5608023Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko
2025-10-02T16:37:33.5639183Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec_telem.ko
2025-10-02T16:37:33.5647544Z LD [M] drivers/platform/mellanox/mlxreg-hotplug.ko
2025-10-02T16:37:33.5673570Z LD [M] drivers/platform/chrome/wilco_ec/wilco_ec_events.ko
2025-10-02T16:37:33.5678324Z LD [M] drivers/platform/mellanox/mlxreg-io.ko
2025-10-02T16:37:33.5720276Z LD [M] drivers/platform/x86/acer-wireless.ko
2025-10-02T16:37:33.5746032Z LD [M] drivers/platform/x86/acer-wmi.ko
2025-10-02T16:37:33.5790884Z LD [M] drivers/platform/x86/alienware-wmi.ko
2025-10-02T16:37:33.5811011Z LD [M] drivers/platform/x86/acerhdf.ko
2025-10-02T16:37:33.5820583Z LD [M] drivers/platform/x86/amilo-rfkill.ko
2025-10-02T16:37:33.5870527Z LD [M] drivers/platform/x86/apple-gmux.ko
2025-10-02T16:37:33.5882897Z LD [M] drivers/platform/x86/asus-laptop.ko
2025-10-02T16:37:33.5913640Z LD [M] drivers/platform/x86/asus-nb-wmi.ko
2025-10-02T16:37:33.5953361Z LD [M] drivers/platform/x86/asus-wireless.ko
2025-10-02T16:37:33.5954529Z LD [M] drivers/platform/x86/asus-wmi.ko
2025-10-02T16:37:33.6035820Z LD [M] drivers/platform/x86/classmate-laptop.ko
2025-10-02T16:37:33.6041496Z LD [M] drivers/platform/x86/compal-laptop.ko
2025-10-02T16:37:33.6043601Z LD [M] drivers/platform/x86/dcdbas.ko
2025-10-02T16:37:33.6111426Z LD [M] drivers/platform/x86/dell-laptop.ko
2025-10-02T16:37:33.6117816Z LD [M] drivers/platform/x86/dell-rbtn.ko
2025-10-02T16:37:33.6158752Z LD [M] drivers/platform/x86/dell-smbios.ko
2025-10-02T16:37:33.6179938Z LD [M] drivers/platform/x86/dell-smo8800.ko
2025-10-02T16:37:33.6211289Z LD [M] drivers/platform/x86/dell-wmi-aio.ko
2025-10-02T16:37:33.6243357Z LD [M] drivers/platform/x86/dell-wmi-descriptor.ko
2025-10-02T16:37:33.6306450Z LD [M] drivers/platform/x86/dell-wmi-led.ko
2025-10-02T16:37:33.6313094Z LD [M] drivers/platform/x86/dell-wmi.ko
2025-10-02T16:37:33.6317603Z LD [M] drivers/platform/x86/eeepc-laptop.ko
2025-10-02T16:37:33.6334020Z LD [M] drivers/platform/x86/eeepc-wmi.ko
2025-10-02T16:37:33.6353286Z LD [M] drivers/platform/x86/fujitsu-laptop.ko
2025-10-02T16:37:33.6383484Z LD [M] drivers/platform/x86/fujitsu-tablet.ko
2025-10-02T16:37:33.6420489Z LD [M] drivers/platform/x86/gpd-pocket-fan.ko
2025-10-02T16:37:33.6456491Z LD [M] drivers/platform/x86/hdaps.ko
2025-10-02T16:37:33.6474131Z LD [M] drivers/platform/x86/hp-wireless.ko
2025-10-02T16:37:33.6485811Z LD [M] drivers/platform/x86/hp-wmi.ko
2025-10-02T16:37:33.6554989Z LD [M] drivers/platform/x86/huawei-wmi.ko
2025-10-02T16:37:33.6567129Z LD [M] drivers/platform/x86/hp_accel.ko
2025-10-02T16:37:33.6610280Z LD [M] drivers/platform/x86/i2c-multi-instantiate.ko
2025-10-02T16:37:33.6612437Z LD [M] drivers/platform/x86/ibm_rtl.ko
2025-10-02T16:37:33.6640719Z LD [M] drivers/platform/x86/ideapad-laptop.ko
2025-10-02T16:37:33.6689161Z LD [M] drivers/platform/x86/intel-hid.ko
2025-10-02T16:37:33.6703007Z LD [M] drivers/platform/x86/intel-rst.ko
2025-10-02T16:37:33.6751309Z LD [M] drivers/platform/x86/intel-smartconnect.ko
2025-10-02T16:37:33.6765952Z LD [M] drivers/platform/x86/intel-vbtn.ko
2025-10-02T16:37:33.6767191Z LD [M] drivers/platform/x86/intel-uncore-frequency.ko
2025-10-02T16:37:33.6807251Z LD [M] drivers/platform/x86/intel-wmi-sbl-fw-update.ko
2025-10-02T16:37:33.6846976Z LD [M] drivers/platform/x86/intel-wmi-thunderbolt.ko
2025-10-02T16:37:33.6892355Z LD [M] drivers/platform/x86/intel_bxtwc_tmu.ko
2025-10-02T16:37:33.6911229Z LD [M] drivers/platform/x86/intel_atomisp2_led.ko
2025-10-02T16:37:33.6912184Z LD [M] drivers/platform/x86/intel_cht_int33fe.ko
2025-10-02T16:37:33.6916777Z LD [M] drivers/platform/x86/intel_chtdc_ti_pwrbtn.ko
2025-10-02T16:37:33.6992360Z LD [M] drivers/platform/x86/intel_int0002_vgpio.ko
2025-10-02T16:37:33.6998776Z LD [M] drivers/platform/x86/intel_ips.ko
2025-10-02T16:37:33.7004355Z LD [M] drivers/platform/x86/intel_menlow.ko
2025-10-02T16:37:33.7050249Z LD [M] drivers/platform/x86/intel_mid_powerbtn.ko
2025-10-02T16:37:33.7091559Z LD [M] drivers/platform/x86/intel_mid_thermal.ko
2025-10-02T16:37:33.7124563Z LD [M] drivers/platform/x86/intel_mrfld_pwrbtn.ko
2025-10-02T16:37:33.7129882Z LD [M] drivers/platform/x86/intel_oaktrail.ko
2025-10-02T16:37:33.7131551Z LD [M] drivers/platform/x86/intel_punit_ipc.ko
2025-10-02T16:37:33.7194441Z LD [M] drivers/platform/x86/intel_scu_ipcutil.ko
2025-10-02T16:37:33.7202095Z LD [M] drivers/platform/x86/intel_scu_pltdrv.ko
2025-10-02T16:37:33.7234914Z LD [M] drivers/platform/x86/intel_speed_select_if/isst_if_common.ko
2025-10-02T16:37:33.7313417Z LD [M] drivers/platform/x86/intel_speed_select_if/isst_if_mbox_msr.ko
2025-10-02T16:37:33.7314597Z LD [M] drivers/platform/x86/intel_speed_select_if/isst_if_mbox_pci.ko
2025-10-02T16:37:33.7315903Z LD [M] drivers/platform/x86/intel_speed_select_if/isst_if_mmio.ko
2025-10-02T16:37:33.7351117Z LD [M] drivers/platform/x86/intel_telemetry_core.ko
2025-10-02T16:37:33.7364350Z LD [M] drivers/platform/x86/intel_telemetry_debugfs.ko
2025-10-02T16:37:33.7404322Z LD [M] drivers/platform/x86/intel_telemetry_pltdrv.ko
2025-10-02T16:37:33.7418125Z LD [M] drivers/platform/x86/lg-laptop.ko
2025-10-02T16:37:33.7462262Z LD [M] drivers/platform/x86/msi-laptop.ko
2025-10-02T16:37:33.7463642Z LD [M] drivers/platform/x86/mlx-platform.ko
2025-10-02T16:37:33.7515327Z LD [M] drivers/platform/x86/msi-wmi.ko
2025-10-02T16:37:33.7516380Z LD [M] drivers/platform/x86/mxm-wmi.ko
2025-10-02T16:37:33.7571944Z LD [M] drivers/platform/x86/panasonic-laptop.ko
2025-10-02T16:37:33.7591149Z LD [M] drivers/platform/x86/pcengines-apuv2.ko
2025-10-02T16:37:33.7637301Z LD [M] drivers/platform/x86/samsung-laptop.ko
2025-10-02T16:37:33.7642207Z LD [M] drivers/platform/x86/peaq-wmi.ko
2025-10-02T16:37:33.7656524Z LD [M] drivers/platform/x86/samsung-q10.ko
2025-10-02T16:37:33.7695126Z LD [M] drivers/platform/x86/sony-laptop.ko
2025-10-02T16:37:33.7717235Z LD [M] drivers/platform/x86/surface3-wmi.ko
2025-10-02T16:37:33.7764520Z LD [M] drivers/platform/x86/surface3_button.ko
2025-10-02T16:37:33.7770633Z LD [M] drivers/platform/x86/surface3_power.ko
2025-10-02T16:37:33.7810263Z LD [M] drivers/platform/x86/surfacepro3_button.ko
2025-10-02T16:37:33.7827416Z LD [M] drivers/platform/x86/system76_acpi.ko
2025-10-02T16:37:33.7881782Z LD [M] drivers/platform/x86/thinkpad_acpi.ko
2025-10-02T16:37:33.7901608Z LD [M] drivers/platform/x86/topstar-laptop.ko
2025-10-02T16:37:33.7910049Z LD [M] drivers/platform/x86/toshiba-wmi.ko
2025-10-02T16:37:33.7951323Z LD [M] drivers/platform/x86/toshiba_acpi.ko
2025-10-02T16:37:33.7963196Z LD [M] drivers/platform/x86/toshiba_bluetooth.ko
2025-10-02T16:37:33.8031308Z LD [M] drivers/platform/x86/toshiba_haps.ko
2025-10-02T16:37:33.8058604Z LD [M] drivers/platform/x86/wmi-bmof.ko
2025-10-02T16:37:33.8077509Z LD [M] drivers/platform/x86/wmi.ko
2025-10-02T16:37:33.8118646Z LD [M] drivers/platform/x86/xiaomi-wmi.ko
2025-10-02T16:37:33.8140357Z LD [M] drivers/power/supply/88pm860x_charger.ko
2025-10-02T16:37:33.8154032Z LD [M] drivers/power/supply/88pm860x_battery.ko
2025-10-02T16:37:33.8193555Z LD [M] drivers/power/supply/adp5061.ko
2025-10-02T16:37:33.8200331Z LD [M] drivers/power/supply/axp20x_ac_power.ko
2025-10-02T16:37:33.8261405Z LD [M] drivers/power/supply/axp20x_battery.ko
2025-10-02T16:37:33.8264452Z LD [M] drivers/power/supply/axp20x_usb_power.ko
2025-10-02T16:37:33.8272745Z LD [M] drivers/power/supply/axp288_charger.ko
2025-10-02T16:37:33.8330272Z LD [M] drivers/power/supply/axp288_fuel_gauge.ko
2025-10-02T16:37:33.8331517Z LD [M] drivers/power/supply/bd99954-charger.ko
2025-10-02T16:37:33.8383874Z LD [M] drivers/power/supply/bq2415x_charger.ko
2025-10-02T16:37:33.8403185Z LD [M] drivers/power/supply/bq24190_charger.ko
2025-10-02T16:37:33.8432329Z LD [M] drivers/power/supply/bq24257_charger.ko
2025-10-02T16:37:33.8464128Z LD [M] drivers/power/supply/bq2515x_charger.ko
2025-10-02T16:37:33.8472453Z LD [M] drivers/power/supply/bq24735-charger.ko
2025-10-02T16:37:33.8531276Z LD [M] drivers/power/supply/bq25890_charger.ko
2025-10-02T16:37:33.8582247Z LD [M] drivers/power/supply/bq25980_charger.ko
2025-10-02T16:37:33.8583851Z LD [M] drivers/power/supply/bq27xxx_battery.ko
2025-10-02T16:37:33.8597163Z LD [M] drivers/power/supply/bq27xxx_battery_hdq.ko
2025-10-02T16:37:33.8630691Z LD [M] drivers/power/supply/bq27xxx_battery_i2c.ko
2025-10-02T16:37:33.8639844Z LD [M] drivers/power/supply/cros_usbpd-charger.ko
2025-10-02T16:37:33.8680382Z LD [M] drivers/power/supply/cw2015_battery.ko
2025-10-02T16:37:33.8719148Z LD [M] drivers/power/supply/da9030_battery.ko
2025-10-02T16:37:33.8736878Z LD [M] drivers/power/supply/da9052-battery.ko
2025-10-02T16:37:33.8766974Z LD [M] drivers/power/supply/da9150-charger.ko
2025-10-02T16:37:33.8771912Z LD [M] drivers/power/supply/da9150-fg.ko
2025-10-02T16:37:33.8834116Z LD [M] drivers/power/supply/ds2760_battery.ko
2025-10-02T16:37:33.8882503Z LD [M] drivers/power/supply/ds2780_battery.ko
2025-10-02T16:37:33.8883636Z LD [M] drivers/power/supply/ds2781_battery.ko
2025-10-02T16:37:33.8890334Z LD [M] drivers/power/supply/ds2782_battery.ko
2025-10-02T16:37:33.8920663Z LD [M] drivers/power/supply/generic-adc-battery.ko
2025-10-02T16:37:33.8968849Z LD [M] drivers/power/supply/gpio-charger.ko
2025-10-02T16:37:33.8995403Z LD [M] drivers/power/supply/isp1704_charger.ko
2025-10-02T16:37:33.9018148Z LD [M] drivers/power/supply/lp8727_charger.ko
2025-10-02T16:37:33.9028722Z LD [M] drivers/power/supply/lp8788-charger.ko
2025-10-02T16:37:33.9062463Z LD [M] drivers/power/supply/lt3651-charger.ko
2025-10-02T16:37:33.9071765Z LD [M] drivers/power/supply/ltc2941-battery-gauge.ko
2025-10-02T16:37:33.9171340Z LD [M] drivers/power/supply/max14577_charger.ko
2025-10-02T16:37:33.9172997Z LD [M] drivers/power/supply/max17040_battery.ko
2025-10-02T16:37:33.9174190Z LD [M] drivers/power/supply/max17042_battery.ko
2025-10-02T16:37:33.9178838Z LD [M] drivers/power/supply/max1721x_battery.ko
2025-10-02T16:37:33.9213521Z LD [M] drivers/power/supply/max77693_charger.ko
2025-10-02T16:37:33.9274885Z LD [M] drivers/power/supply/max8903_charger.ko
2025-10-02T16:37:33.9301025Z LD [M] drivers/power/supply/max8925_power.ko
2025-10-02T16:37:33.9330794Z LD [M] drivers/power/supply/mp2629_charger.ko
2025-10-02T16:37:33.9333972Z LD [M] drivers/power/supply/max8997_charger.ko
2025-10-02T16:37:33.9375081Z LD [M] drivers/power/supply/max8998_charger.ko
2025-10-02T16:37:33.9391197Z LD [M] drivers/power/supply/pcf50633-charger.ko
2025-10-02T16:37:33.9434411Z LD [M] drivers/power/supply/pda_power.ko
2025-10-02T16:37:33.9450273Z LD [M] drivers/power/supply/rt5033_battery.ko
2025-10-02T16:37:33.9469096Z LD [M] drivers/power/supply/rt9455_charger.ko
2025-10-02T16:37:33.9504840Z LD [M] drivers/power/supply/rx51_battery.ko
2025-10-02T16:37:33.9520814Z LD [M] drivers/power/supply/sbs-battery.ko
2025-10-02T16:37:33.9568844Z LD [M] drivers/power/supply/sbs-charger.ko
2025-10-02T16:37:33.9587429Z LD [M] drivers/power/supply/sbs-manager.ko
2025-10-02T16:37:33.9638964Z LD [M] drivers/power/supply/tps65090-charger.ko
2025-10-02T16:37:33.9645216Z LD [M] drivers/power/supply/smb347-charger.ko
2025-10-02T16:37:33.9651221Z LD [M] drivers/power/supply/test_power.ko
2025-10-02T16:37:33.9707706Z LD [M] drivers/power/supply/twl4030_charger.ko
2025-10-02T16:37:33.9731707Z LD [M] drivers/power/supply/twl4030_madc_battery.ko
2025-10-02T16:37:33.9768347Z LD [M] drivers/power/supply/wm831x_backup.ko
2025-10-02T16:37:33.9772822Z LD [M] drivers/power/supply/wm831x_power.ko
2025-10-02T16:37:33.9797858Z LD [M] drivers/power/supply/wilco-charger.ko
2025-10-02T16:37:33.9850665Z LD [M] drivers/power/supply/wm8350_power.ko
2025-10-02T16:37:33.9871323Z LD [M] drivers/powercap/intel_rapl_common.ko
2025-10-02T16:37:33.9879020Z LD [M] drivers/powercap/intel_rapl_msr.ko
2025-10-02T16:37:33.9932079Z LD [M] drivers/pps/clients/pps-gpio.ko
2025-10-02T16:37:33.9969810Z LD [M] drivers/pps/clients/pps-ktimer.ko
2025-10-02T16:37:33.9997589Z LD [M] drivers/pps/clients/pps-ldisc.ko
2025-10-02T16:37:34.0013405Z LD [M] drivers/pps/clients/pps_parport.ko
2025-10-02T16:37:34.0028713Z LD [M] drivers/ptp/ptp_clockmatrix.ko
2025-10-02T16:37:34.0064472Z LD [M] drivers/ptp/ptp_ines.ko
2025-10-02T16:37:34.0066433Z LD [M] drivers/ptp/ptp_idt82p33.ko
2025-10-02T16:37:34.0129218Z LD [M] drivers/ptp/ptp_kvm.ko
2025-10-02T16:37:34.0133711Z LD [M] drivers/ptp/ptp_vmw.ko
2025-10-02T16:37:34.0200402Z LD [M] drivers/pwm/pwm-cros-ec.ko
2025-10-02T16:37:34.0201286Z LD [M] drivers/pwm/pwm-iqs620a.ko
2025-10-02T16:37:34.0239356Z LD [M] drivers/pwm/pwm-lp3943.ko
2025-10-02T16:37:34.0280257Z LD [M] drivers/pwm/pwm-lpss-pci.ko
2025-10-02T16:37:34.0281371Z LD [M] drivers/pwm/pwm-lpss-platform.ko
2025-10-02T16:37:34.0322977Z LD [M] drivers/pwm/pwm-lpss.ko
2025-10-02T16:37:34.0352296Z LD [M] drivers/pwm/pwm-twl-led.ko
2025-10-02T16:37:34.0365833Z LD [M] drivers/pwm/pwm-pca9685.ko
2025-10-02T16:37:34.0368817Z LD [M] drivers/pwm/pwm-twl.ko
2025-10-02T16:37:34.0406314Z LD [M] drivers/regulator/88pg86x.ko
2025-10-02T16:37:34.0459309Z LD [M] drivers/regulator/88pm800-regulator.ko
2025-10-02T16:37:34.0491822Z LD [M] drivers/regulator/88pm8607.ko
2025-10-02T16:37:34.0495664Z LD [M] drivers/regulator/aat2870-regulator.ko
2025-10-02T16:37:34.0516766Z LD [M] drivers/regulator/ab3100.ko
2025-10-02T16:37:34.0578214Z LD [M] drivers/regulator/act8865-regulator.ko
2025-10-02T16:37:34.0598848Z LD [M] drivers/regulator/ad5398.ko
2025-10-02T16:37:34.0639959Z LD [M] drivers/regulator/arizona-ldo1.ko
2025-10-02T16:37:34.0670828Z LD [M] drivers/regulator/arizona-micsupp.ko
2025-10-02T16:37:34.0672011Z LD [M] drivers/regulator/as3711-regulator.ko
2025-10-02T16:37:34.0732977Z LD [M] drivers/regulator/axp20x-regulator.ko
2025-10-02T16:37:34.0747873Z LD [M] drivers/regulator/bcm590xx-regulator.ko
2025-10-02T16:37:34.0792388Z LD [M] drivers/regulator/bd9571mwv-regulator.ko
2025-10-02T16:37:34.0810986Z LD [M] drivers/regulator/da903x-regulator.ko
2025-10-02T16:37:34.0836250Z LD [M] drivers/regulator/da9052-regulator.ko
2025-10-02T16:37:34.0892665Z LD [M] drivers/regulator/da9055-regulator.ko
2025-10-02T16:37:34.0895505Z LD [M] drivers/regulator/da9062-regulator.ko
2025-10-02T16:37:34.0959352Z LD [M] drivers/regulator/da9210-regulator.ko
2025-10-02T16:37:34.0986577Z LD [M] drivers/regulator/da9211-regulator.ko
2025-10-02T16:37:34.1019369Z LD [M] drivers/regulator/fan53555.ko
2025-10-02T16:37:34.1038023Z LD [M] drivers/regulator/fixed.ko
2025-10-02T16:37:34.1060640Z LD [M] drivers/regulator/gpio-regulator.ko
2025-10-02T16:37:34.1112001Z LD [M] drivers/regulator/isl6271a-regulator.ko
2025-10-02T16:37:34.1128762Z LD [M] drivers/regulator/isl9305.ko
2025-10-02T16:37:34.1170136Z LD [M] drivers/regulator/lm363x-regulator.ko
2025-10-02T16:37:34.1189357Z LD [M] drivers/regulator/lp3971.ko
2025-10-02T16:37:34.1208586Z LD [M] drivers/regulator/lp3972.ko
2025-10-02T16:37:34.1265259Z LD [M] drivers/regulator/lp872x.ko
2025-10-02T16:37:34.1281179Z LD [M] drivers/regulator/lp8755.ko
2025-10-02T16:37:34.1312675Z LD [M] drivers/regulator/lp8788-buck.ko
2025-10-02T16:37:34.1331719Z LD [M] drivers/regulator/lp8788-ldo.ko
2025-10-02T16:37:34.1366912Z LD [M] drivers/regulator/ltc3589.ko
2025-10-02T16:37:34.1410021Z LD [M] drivers/regulator/ltc3676.ko
2025-10-02T16:37:34.1425714Z LD [M] drivers/regulator/max14577-regulator.ko
2025-10-02T16:37:34.1462345Z LD [M] drivers/regulator/max1586.ko
2025-10-02T16:37:34.1490683Z LD [M] drivers/regulator/max77693-regulator.ko
2025-10-02T16:37:34.1514615Z LD [M] drivers/regulator/max77826-regulator.ko
2025-10-02T16:37:34.1562716Z LD [M] drivers/regulator/max8649.ko
2025-10-02T16:37:34.1595176Z LD [M] drivers/regulator/max8660.ko
2025-10-02T16:37:34.1598073Z LD [M] drivers/regulator/max8907-regulator.ko
2025-10-02T16:37:34.1646898Z LD [M] drivers/regulator/max8925-regulator.ko
2025-10-02T16:37:34.1669853Z LD [M] drivers/regulator/max8952.ko
2025-10-02T16:37:34.1694707Z LD [M] drivers/regulator/max8997-regulator.ko
2025-10-02T16:37:34.1721775Z LD [M] drivers/regulator/max8998.ko
2025-10-02T16:37:34.1743601Z LD [M] drivers/regulator/mc13783-regulator.ko
2025-10-02T16:37:34.1788861Z LD [M] drivers/regulator/mc13892-regulator.ko
2025-10-02T16:37:34.1799993Z LD [M] drivers/regulator/mc13xxx-regulator-core.ko
2025-10-02T16:37:34.1858948Z LD [M] drivers/regulator/mp8859.ko
2025-10-02T16:37:34.1878370Z LD [M] drivers/regulator/mt6311-regulator.ko
2025-10-02T16:37:34.1935050Z LD [M] drivers/regulator/mt6323-regulator.ko
2025-10-02T16:37:34.1973234Z LD [M] drivers/regulator/mt6358-regulator.ko
2025-10-02T16:37:34.1993128Z LD [M] drivers/regulator/mt6360-regulator.ko
2025-10-02T16:37:34.1994572Z LD [M] drivers/regulator/mt6397-regulator.ko
2025-10-02T16:37:34.2032630Z LD [M] drivers/regulator/palmas-regulator.ko
2025-10-02T16:37:34.2078383Z LD [M] drivers/regulator/pca9450-regulator.ko
2025-10-02T16:37:34.2127641Z LD [M] drivers/regulator/pcap-regulator.ko
2025-10-02T16:37:34.2150923Z LD [M] drivers/regulator/pcf50633-regulator.ko
2025-10-02T16:37:34.2151846Z LD [M] drivers/regulator/pfuze100-regulator.ko
2025-10-02T16:37:34.2250513Z LD [M] drivers/regulator/pv88060-regulator.ko
2025-10-02T16:37:34.2252650Z LD [M] drivers/regulator/pv88080-regulator.ko
2025-10-02T16:37:34.2280288Z LD [M] drivers/regulator/pv88090-regulator.ko
2025-10-02T16:37:34.2317183Z LD [M] drivers/regulator/pwm-regulator.ko
2025-10-02T16:37:34.2350885Z LD [M] drivers/regulator/rc5t583-regulator.ko
2025-10-02T16:37:34.2426333Z LD [M] drivers/regulator/rpi-panel-attiny-regulator.ko
2025-10-02T16:37:34.2468492Z LD [M] drivers/regulator/rt4801-regulator.ko
2025-10-02T16:37:34.2480660Z LD [M] drivers/regulator/rt5033-regulator.ko
2025-10-02T16:37:34.2532583Z LD [M] drivers/regulator/rtmv20-regulator.ko
2025-10-02T16:37:34.2570617Z LD [M] drivers/regulator/s2mps11.ko
2025-10-02T16:37:34.2574250Z LD [M] drivers/regulator/s2mpa01.ko
2025-10-02T16:37:34.2647756Z LD [M] drivers/regulator/s5m8767.ko
2025-10-02T16:37:34.2653590Z LD [M] drivers/regulator/sky81452-regulator.ko
2025-10-02T16:37:34.2677706Z LD [M] drivers/regulator/slg51000-regulator.ko
2025-10-02T16:37:34.2759972Z LD [M] drivers/regulator/tps51632-regulator.ko
2025-10-02T16:37:34.2762200Z LD [M] drivers/regulator/tps6105x-regulator.ko
2025-10-02T16:37:34.2777260Z LD [M] drivers/regulator/tps62360-regulator.ko
2025-10-02T16:37:34.2806137Z LD [M] drivers/regulator/tps65023-regulator.ko
2025-10-02T16:37:34.2847237Z LD [M] drivers/regulator/tps6507x-regulator.ko
2025-10-02T16:37:34.2891050Z LD [M] drivers/regulator/tps65086-regulator.ko
2025-10-02T16:37:34.2913014Z LD [M] drivers/regulator/tps65090-regulator.ko
2025-10-02T16:37:34.2930415Z LD [M] drivers/regulator/tps65132-regulator.ko
2025-10-02T16:37:34.2978967Z LD [M] drivers/regulator/tps6586x-regulator.ko
2025-10-02T16:37:34.2994029Z LD [M] drivers/regulator/tps6524x-regulator.ko
2025-10-02T16:37:34.3039681Z LD [M] drivers/regulator/tps65910-regulator.ko
2025-10-02T16:37:34.3073471Z LD [M] drivers/regulator/tps65912-regulator.ko
2025-10-02T16:37:34.3078728Z LD [M] drivers/regulator/tps80031-regulator.ko
2025-10-02T16:37:34.3110290Z LD [M] drivers/regulator/twl-regulator.ko
2025-10-02T16:37:34.3152282Z LD [M] drivers/regulator/twl6030-regulator.ko
2025-10-02T16:37:34.3182786Z LD [M] drivers/regulator/userspace-consumer.ko
2025-10-02T16:37:34.3200037Z LD [M] drivers/regulator/virtual.ko
2025-10-02T16:37:34.3244837Z LD [M] drivers/regulator/wm831x-dcdc.ko
2025-10-02T16:37:34.3266811Z LD [M] drivers/regulator/wm831x-isink.ko
2025-10-02T16:37:34.3321553Z LD [M] drivers/regulator/wm831x-ldo.ko
2025-10-02T16:37:34.3330457Z LD [M] drivers/regulator/wm8350-regulator.ko
2025-10-02T16:37:34.3381041Z LD [M] drivers/regulator/wm8400-regulator.ko
2025-10-02T16:37:34.3398458Z LD [M] drivers/regulator/wm8994-regulator.ko
2025-10-02T16:37:34.3421969Z LD [M] drivers/reset/reset-ti-syscon.ko
2025-10-02T16:37:34.3468519Z LD [M] drivers/rpmsg/qcom_glink.ko
2025-10-02T16:37:34.3493325Z LD [M] drivers/rpmsg/qcom_glink_rpm.ko
2025-10-02T16:37:34.3536994Z LD [M] drivers/rpmsg/rpmsg_char.ko
2025-10-02T16:37:34.3556458Z LD [M] drivers/rpmsg/rpmsg_core.ko
2025-10-02T16:37:34.3565893Z LD [M] drivers/rpmsg/virtio_rpmsg_bus.ko
2025-10-02T16:37:34.3601388Z LD [M] drivers/rtc/rtc-88pm80x.ko
2025-10-02T16:37:34.3627142Z LD [M] drivers/rtc/rtc-88pm860x.ko
2025-10-02T16:37:34.3690612Z LD [M] drivers/rtc/rtc-ab-b5ze-s3.ko
2025-10-02T16:37:34.3693272Z LD [M] drivers/rtc/rtc-ab-eoz9.ko
2025-10-02T16:37:34.3709458Z LD [M] drivers/rtc/rtc-ab3100.ko
2025-10-02T16:37:34.3768583Z LD [M] drivers/rtc/rtc-bq32k.ko
2025-10-02T16:37:34.3770118Z LD [M] drivers/rtc/rtc-abx80x.ko
2025-10-02T16:37:34.3801699Z LD [M] drivers/rtc/rtc-bq4802.ko
2025-10-02T16:37:34.3835170Z LD [M] drivers/rtc/rtc-cros-ec.ko
2025-10-02T16:37:34.3840678Z LD [M] drivers/rtc/rtc-da9052.ko
2025-10-02T16:37:34.3890229Z LD [M] drivers/rtc/rtc-da9055.ko
2025-10-02T16:37:34.3907969Z LD [M] drivers/rtc/rtc-da9063.ko
2025-10-02T16:37:34.3978050Z LD [M] drivers/rtc/rtc-ds1302.ko
2025-10-02T16:37:34.3982268Z LD [M] drivers/rtc/rtc-ds1286.ko
2025-10-02T16:37:34.3988520Z LD [M] drivers/rtc/rtc-ds1305.ko
2025-10-02T16:37:34.4020855Z LD [M] drivers/rtc/rtc-ds1307.ko
2025-10-02T16:37:34.4083788Z LD [M] drivers/rtc/rtc-ds1347.ko
2025-10-02T16:37:34.4092498Z LD [M] drivers/rtc/rtc-ds1343.ko
2025-10-02T16:37:34.4102291Z LD [M] drivers/rtc/rtc-ds1374.ko
2025-10-02T16:37:34.4140396Z LD [M] drivers/rtc/rtc-ds1390.ko
2025-10-02T16:37:34.4174560Z LD [M] drivers/rtc/rtc-ds1511.ko
2025-10-02T16:37:34.4212572Z LD [M] drivers/rtc/rtc-ds1553.ko
2025-10-02T16:37:34.4225118Z LD [M] drivers/rtc/rtc-ds1672.ko
2025-10-02T16:37:34.4257642Z LD [M] drivers/rtc/rtc-ds1685.ko
2025-10-02T16:37:34.4278643Z LD [M] drivers/rtc/rtc-ds1742.ko
2025-10-02T16:37:34.4319811Z LD [M] drivers/rtc/rtc-ds2404.ko
2025-10-02T16:37:34.4335218Z LD [M] drivers/rtc/rtc-ds3232.ko
2025-10-02T16:37:34.4369862Z LD [M] drivers/rtc/rtc-em3027.ko
2025-10-02T16:37:34.4391035Z LD [M] drivers/rtc/rtc-fm3130.ko
2025-10-02T16:37:34.4408200Z LD [M] drivers/rtc/rtc-ftrtc010.ko
2025-10-02T16:37:34.4437286Z LD [M] drivers/rtc/rtc-hid-sensor-time.ko
2025-10-02T16:37:34.4506599Z LD [M] drivers/rtc/rtc-isl12022.ko
2025-10-02T16:37:34.4507479Z LD [M] drivers/rtc/rtc-isl1208.ko
2025-10-02T16:37:34.4519407Z LD [M] drivers/rtc/rtc-lp8788.ko
2025-10-02T16:37:34.4543822Z LD [M] drivers/rtc/rtc-m41t80.ko
2025-10-02T16:37:34.4600755Z LD [M] drivers/rtc/rtc-m41t93.ko
2025-10-02T16:37:34.4626465Z LD [M] drivers/rtc/rtc-m41t94.ko
2025-10-02T16:37:34.4641127Z LD [M] drivers/rtc/rtc-m48t35.ko
2025-10-02T16:37:34.4652804Z LD [M] drivers/rtc/rtc-m48t59.ko
2025-10-02T16:37:34.4704517Z LD [M] drivers/rtc/rtc-m48t86.ko
2025-10-02T16:37:34.4746742Z LD [M] drivers/rtc/rtc-max6900.ko
2025-10-02T16:37:34.4777975Z LD [M] drivers/rtc/rtc-max6902.ko
2025-10-02T16:37:34.4806445Z LD [M] drivers/rtc/rtc-max6916.ko
2025-10-02T16:37:34.4815668Z LD [M] drivers/rtc/rtc-max8907.ko
2025-10-02T16:37:34.4826816Z LD [M] drivers/rtc/rtc-max8925.ko
2025-10-02T16:37:34.4867587Z LD [M] drivers/rtc/rtc-max8997.ko
2025-10-02T16:37:34.4899937Z LD [M] drivers/rtc/rtc-max8998.ko
2025-10-02T16:37:34.4926755Z LD [M] drivers/rtc/rtc-mc13xxx.ko
2025-10-02T16:37:34.4946644Z LD [M] drivers/rtc/rtc-mcp795.ko
2025-10-02T16:37:34.4968918Z LD [M] drivers/rtc/rtc-msm6242.ko
2025-10-02T16:37:34.4977139Z LD [M] drivers/rtc/rtc-mt6397.ko
2025-10-02T16:37:34.5036031Z LD [M] drivers/rtc/rtc-palmas.ko
2025-10-02T16:37:34.5076653Z LD [M] drivers/rtc/rtc-pcap.ko
2025-10-02T16:37:34.5096526Z LD [M] drivers/rtc/rtc-pcf2123.ko
2025-10-02T16:37:34.5132320Z LD [M] drivers/rtc/rtc-pcf50633.ko
2025-10-02T16:37:34.5170814Z LD [M] drivers/rtc/rtc-pcf2127.ko
2025-10-02T16:37:34.5171918Z LD [M] drivers/rtc/rtc-pcf85063.ko
2025-10-02T16:37:34.5183980Z LD [M] drivers/rtc/rtc-pcf8523.ko
2025-10-02T16:37:34.5246476Z LD [M] drivers/rtc/rtc-pcf85363.ko
2025-10-02T16:37:34.5265739Z LD [M] drivers/rtc/rtc-pcf8563.ko
2025-10-02T16:37:34.5281824Z LD [M] drivers/rtc/rtc-pcf8583.ko
2025-10-02T16:37:34.5308236Z LD [M] drivers/rtc/rtc-r9701.ko
2025-10-02T16:37:34.5323724Z LD [M] drivers/rtc/rtc-rc5t583.ko
2025-10-02T16:37:34.5376883Z LD [M] drivers/rtc/rtc-rp5c01.ko
2025-10-02T16:37:34.5407596Z LD [M] drivers/rtc/rtc-rs5c348.ko
2025-10-02T16:37:34.5421757Z LD [M] drivers/rtc/rtc-rs5c372.ko
2025-10-02T16:37:34.5451931Z LD [M] drivers/rtc/rtc-rv3028.ko
2025-10-02T16:37:34.5454809Z LD [M] drivers/rtc/rtc-rv3029c2.ko
2025-10-02T16:37:34.5519957Z LD [M] drivers/rtc/rtc-rv3032.ko
2025-10-02T16:37:34.5548686Z LD [M] drivers/rtc/rtc-rx4581.ko
2025-10-02T16:37:34.5558671Z LD [M] drivers/rtc/rtc-rv8803.ko
2025-10-02T16:37:34.5598664Z LD [M] drivers/rtc/rtc-rx6110.ko
2025-10-02T16:37:34.5648449Z LD [M] drivers/rtc/rtc-rx8025.ko
2025-10-02T16:37:34.5661751Z LD [M] drivers/rtc/rtc-rx8010.ko
2025-10-02T16:37:34.5685141Z LD [M] drivers/rtc/rtc-rx8581.ko
2025-10-02T16:37:34.5785710Z LD [M] drivers/rtc/rtc-s35390a.ko
2025-10-02T16:37:34.5808175Z LD [M] drivers/rtc/rtc-s5m.ko
2025-10-02T16:37:34.5823900Z LD [M] drivers/rtc/rtc-sd3078.ko
2025-10-02T16:37:34.5868946Z LD [M] drivers/rtc/rtc-stk17ta8.ko
2025-10-02T16:37:34.5908482Z LD [M] drivers/rtc/rtc-tps6586x.ko
2025-10-02T16:37:34.5923591Z LD [M] drivers/rtc/rtc-tps80031.ko
2025-10-02T16:37:34.5984025Z LD [M] drivers/rtc/rtc-tps65910.ko
2025-10-02T16:37:34.5992048Z LD [M] drivers/rtc/rtc-v3020.ko
2025-10-02T16:37:34.6038396Z LD [M] drivers/rtc/rtc-wm8350.ko
2025-10-02T16:37:34.6043972Z LD [M] drivers/rtc/rtc-wilco-ec.ko
2025-10-02T16:37:34.6058364Z LD [M] drivers/rtc/rtc-wm831x.ko
2025-10-02T16:37:34.6130291Z LD [M] drivers/rtc/rtc-x1205.ko
2025-10-02T16:37:34.6178743Z LD [M] drivers/scsi/3w-9xxx.ko
2025-10-02T16:37:34.6209076Z LD [M] drivers/scsi/3w-sas.ko
2025-10-02T16:37:34.6251386Z LD [M] drivers/scsi/3w-xxxx.ko
2025-10-02T16:37:34.6265921Z LD [M] drivers/scsi/BusLogic.ko
2025-10-02T16:37:34.6298127Z LD [M] drivers/scsi/aacraid/aacraid.ko
2025-10-02T16:37:34.6298945Z LD [M] drivers/scsi/a100u2w.ko
2025-10-02T16:37:34.6424290Z LD [M] drivers/scsi/advansys.ko
2025-10-02T16:37:34.6438596Z LD [M] drivers/scsi/aic7xxx/aic79xx.ko
2025-10-02T16:37:34.6473145Z LD [M] drivers/scsi/aic7xxx/aic7xxx.ko
2025-10-02T16:37:34.6535156Z LD [M] drivers/scsi/aic94xx/aic94xx.ko
2025-10-02T16:37:34.6602867Z LD [M] drivers/scsi/am53c974.ko
2025-10-02T16:37:34.6705970Z LD [M] drivers/scsi/arcmsr/arcmsr.ko
2025-10-02T16:37:34.6760338Z LD [M] drivers/scsi/atp870u.ko
2025-10-02T16:37:34.6869964Z LD [M] drivers/scsi/be2iscsi/be2iscsi.ko
2025-10-02T16:37:34.6894643Z LD [M] drivers/scsi/bfa/bfa.ko
2025-10-02T16:37:34.6940586Z LD [M] drivers/scsi/bnx2fc/bnx2fc.ko
2025-10-02T16:37:34.7053089Z LD [M] drivers/scsi/bnx2i/bnx2i.ko
2025-10-02T16:37:34.7076559Z LD [M] drivers/scsi/ch.ko
2025-10-02T16:37:34.7226782Z LD [M] drivers/scsi/csiostor/csiostor.ko
2025-10-02T16:37:34.7263017Z LD [M] drivers/scsi/cxgbi/cxgb3i/cxgb3i.ko
2025-10-02T16:37:34.7271574Z LD [M] drivers/scsi/cxgbi/cxgb4i/cxgb4i.ko
2025-10-02T16:37:34.7447473Z LD [M] drivers/scsi/cxgbi/libcxgbi.ko
2025-10-02T16:37:34.7517392Z LD [M] drivers/scsi/dc395x.ko
2025-10-02T16:37:34.7554373Z LD [M] drivers/scsi/device_handler/scsi_dh_alua.ko
2025-10-02T16:37:34.7628069Z LD [M] drivers/scsi/device_handler/scsi_dh_emc.ko
2025-10-02T16:37:34.7671246Z LD [M] drivers/scsi/device_handler/scsi_dh_hp_sw.ko
2025-10-02T16:37:34.7723422Z LD [M] drivers/scsi/device_handler/scsi_dh_rdac.ko
2025-10-02T16:37:34.7737032Z LD [M] drivers/scsi/dmx3191d.ko
2025-10-02T16:37:34.7812978Z LD [M] drivers/scsi/dpt_i2o.ko
2025-10-02T16:37:34.7813842Z LD [M] drivers/scsi/esas2r/esas2r.ko
2025-10-02T16:37:34.7824542Z LD [M] drivers/scsi/esp_scsi.ko
2025-10-02T16:37:34.7879789Z LD [M] drivers/scsi/fcoe/fcoe.ko
2025-10-02T16:37:34.7939839Z LD [M] drivers/scsi/fcoe/libfcoe.ko
2025-10-02T16:37:34.7977886Z LD [M] drivers/scsi/fdomain_pci.ko
2025-10-02T16:37:34.7980807Z LD [M] drivers/scsi/fdomain.ko
2025-10-02T16:37:34.8054974Z LD [M] drivers/scsi/fnic/fnic.ko
2025-10-02T16:37:34.8082036Z LD [M] drivers/scsi/gdth.ko
2025-10-02T16:37:34.8096768Z LD [M] drivers/scsi/hpsa.ko
2025-10-02T16:37:34.8108862Z LD [M] drivers/scsi/hptiop.ko
2025-10-02T16:37:34.8224167Z LD [M] drivers/scsi/hv_storvsc.ko
2025-10-02T16:37:34.8233562Z LD [M] drivers/scsi/imm.ko
2025-10-02T16:37:34.8281313Z LD [M] drivers/scsi/initio.ko
2025-10-02T16:37:34.8312552Z LD [M] drivers/scsi/ipr.ko
2025-10-02T16:37:34.8339130Z LD [M] drivers/scsi/ips.ko
2025-10-02T16:37:34.8362196Z LD [M] drivers/scsi/isci/isci.ko
2025-10-02T16:37:34.8428834Z LD [M] drivers/scsi/iscsi_boot_sysfs.ko
2025-10-02T16:37:34.8488006Z LD [M] drivers/scsi/iscsi_tcp.ko
2025-10-02T16:37:34.8529045Z LD [M] drivers/scsi/libfc/libfc.ko
2025-10-02T16:37:34.8557410Z LD [M] drivers/scsi/libiscsi.ko
2025-10-02T16:37:34.8576504Z LD [M] drivers/scsi/libiscsi_tcp.ko
2025-10-02T16:37:34.8630518Z LD [M] drivers/scsi/libsas/libsas.ko
2025-10-02T16:37:34.8725492Z LD [M] drivers/scsi/lpfc/lpfc.ko
2025-10-02T16:37:34.8739216Z LD [M] drivers/scsi/megaraid.ko
2025-10-02T16:37:34.8906637Z LD [M] drivers/scsi/megaraid/megaraid_mbox.ko
2025-10-02T16:37:34.8960933Z LD [M] drivers/scsi/megaraid/megaraid_mm.ko
2025-10-02T16:37:34.9110468Z LD [M] drivers/scsi/megaraid/megaraid_sas.ko
2025-10-02T16:37:34.9138141Z LD [M] drivers/scsi/mpt3sas/mpt3sas.ko
2025-10-02T16:37:34.9149899Z LD [M] drivers/scsi/mvsas/mvsas.ko
2025-10-02T16:37:34.9162618Z LD [M] drivers/scsi/mvumi.ko
2025-10-02T16:37:34.9300850Z LD [M] drivers/scsi/myrb.ko
2025-10-02T16:37:34.9451867Z LD [M] drivers/scsi/myrs.ko
2025-10-02T16:37:34.9452697Z LD [M] drivers/scsi/pcmcia/aha152x_cs.ko
2025-10-02T16:37:34.9466172Z LD [M] drivers/scsi/pcmcia/fdomain_cs.ko
2025-10-02T16:37:34.9573892Z LD [M] drivers/scsi/pcmcia/qlogic_cs.ko
2025-10-02T16:37:34.9602365Z LD [M] drivers/scsi/pcmcia/sym53c500_cs.ko
2025-10-02T16:37:34.9643270Z LD [M] drivers/scsi/pm8001/pm80xx.ko
2025-10-02T16:37:34.9657598Z LD [M] drivers/scsi/pmcraid.ko
2025-10-02T16:37:34.9720336Z LD [M] drivers/scsi/ppa.ko
2025-10-02T16:37:34.9750918Z LD [M] drivers/scsi/qedf/qedf.ko
2025-10-02T16:37:34.9830313Z LD [M] drivers/scsi/qedi/qedi.ko
2025-10-02T16:37:34.9860506Z LD [M] drivers/scsi/qla1280.ko
2025-10-02T16:37:34.9989445Z LD [M] drivers/scsi/qla2xxx/qla2xxx.ko
2025-10-02T16:37:35.0079631Z LD [M] drivers/scsi/qla2xxx/tcm_qla2xxx.ko
2025-10-02T16:37:35.0110039Z LD [M] drivers/scsi/qla4xxx/qla4xxx.ko
2025-10-02T16:37:35.0265016Z LD [M] drivers/scsi/qlogicfas408.ko
2025-10-02T16:37:35.0295223Z LD [M] drivers/scsi/raid_class.ko
2025-10-02T16:37:35.0334041Z LD [M] drivers/scsi/scsi_debug.ko
2025-10-02T16:37:35.0423451Z LD [M] drivers/scsi/scsi_transport_fc.ko
2025-10-02T16:37:35.0495085Z LD [M] drivers/scsi/scsi_transport_iscsi.ko
2025-10-02T16:37:35.0540448Z LD [M] drivers/scsi/scsi_transport_sas.ko
2025-10-02T16:37:35.0691049Z LD [M] drivers/scsi/scsi_transport_spi.ko
2025-10-02T16:37:35.0709388Z LD [M] drivers/scsi/scsi_transport_srp.ko
2025-10-02T16:37:35.0828944Z LD [M] drivers/scsi/ses.ko
2025-10-02T16:37:35.0838947Z LD [M] drivers/scsi/sg.ko
2025-10-02T16:37:35.0849085Z LD [M] drivers/scsi/smartpqi/smartpqi.ko
2025-10-02T16:37:35.0887977Z LD [M] drivers/scsi/snic/snic.ko
2025-10-02T16:37:35.0955079Z LD [M] drivers/scsi/sr_mod.ko
2025-10-02T16:37:35.1011767Z LD [M] drivers/scsi/st.ko
2025-10-02T16:37:35.1101144Z LD [M] drivers/scsi/stex.ko
2025-10-02T16:37:35.1124180Z LD [M] drivers/scsi/sym53c8xx_2/sym53c8xx.ko
2025-10-02T16:37:35.1191065Z LD [M] drivers/scsi/ufs/cdns-pltfrm.ko
2025-10-02T16:37:35.1213384Z LD [M] drivers/scsi/ufs/ufshcd-core.ko
2025-10-02T16:37:35.1284008Z LD [M] drivers/scsi/ufs/ufshcd-pci.ko
2025-10-02T16:37:35.1320604Z LD [M] drivers/scsi/ufs/ufshcd-pltfrm.ko
2025-10-02T16:37:35.1347078Z LD [M] drivers/scsi/virtio_scsi.ko
2025-10-02T16:37:35.1407422Z LD [M] drivers/scsi/vmw_pvscsi.ko
2025-10-02T16:37:35.1433739Z LD [M] drivers/scsi/wd719x.ko
2025-10-02T16:37:35.1481783Z LD [M] drivers/scsi/xen-scsifront.ko
2025-10-02T16:37:35.1489816Z LD [M] drivers/siox/siox-bus-gpio.ko
2025-10-02T16:37:35.1612068Z LD [M] drivers/siox/siox-core.ko
2025-10-02T16:37:35.1622262Z LD [M] drivers/slimbus/slim-qcom-ctrl.ko
2025-10-02T16:37:35.1651372Z LD [M] drivers/soc/qcom/qmi_helpers.ko
2025-10-02T16:37:35.1666176Z LD [M] drivers/slimbus/slimbus.ko
2025-10-02T16:37:35.1720293Z LD [M] drivers/soc/xilinx/xlnx_vcu.ko
2025-10-02T16:37:35.1790600Z LD [M] drivers/soundwire/soundwire-bus.ko
2025-10-02T16:37:35.1791548Z LD [M] drivers/soundwire/soundwire-cadence.ko
2025-10-02T16:37:35.1820599Z LD [M] drivers/soundwire/soundwire-generic-allocation.ko
2025-10-02T16:37:35.1913106Z LD [M] drivers/soundwire/soundwire-intel.ko
2025-10-02T16:37:35.1926914Z LD [M] drivers/soundwire/soundwire-qcom.ko
2025-10-02T16:37:35.1958648Z LD [M] drivers/spi/spi-altera.ko
2025-10-02T16:37:35.1959781Z LD [M] drivers/spi/spi-amd.ko
2025-10-02T16:37:35.2013644Z LD [M] drivers/spi/spi-axi-spi-engine.ko
2025-10-02T16:37:35.2055126Z LD [M] drivers/spi/spi-bitbang.ko
2025-10-02T16:37:35.2081972Z LD [M] drivers/spi/spi-butterfly.ko
2025-10-02T16:37:35.2103104Z LD [M] drivers/spi/spi-cadence.ko
2025-10-02T16:37:35.2120621Z LD [M] drivers/spi/spi-dln2.ko
2025-10-02T16:37:35.2167885Z LD [M] drivers/spi/spi-dw-mmio.ko
2025-10-02T16:37:35.2204663Z LD [M] drivers/spi/spi-dw-pci.ko
2025-10-02T16:37:35.2211817Z LD [M] drivers/spi/spi-dw.ko
2025-10-02T16:37:35.2244848Z LD [M] drivers/spi/spi-gpio.ko
2025-10-02T16:37:35.2289091Z LD [M] drivers/spi/spi-lm70llp.ko
2025-10-02T16:37:35.2305347Z LD [M] drivers/spi/spi-loopback-test.ko
2025-10-02T16:37:35.2324328Z LD [M] drivers/spi/spi-mux.ko
2025-10-02T16:37:35.2390393Z LD [M] drivers/spi/spi-mxic.ko
2025-10-02T16:37:35.2420887Z LD [M] drivers/spi/spi-nxp-fspi.ko
2025-10-02T16:37:35.2421705Z LD [M] drivers/spi/spi-oc-tiny.ko
2025-10-02T16:37:35.2462441Z LD [M] drivers/spi/spi-pxa2xx-pci.ko
2025-10-02T16:37:35.2467732Z LD [M] drivers/spi/spi-pxa2xx-platform.ko
2025-10-02T16:37:35.2521299Z LD [M] drivers/spi/spi-sc18is602.ko
2025-10-02T16:37:35.2548837Z LD [M] drivers/spi/spi-sifive.ko
2025-10-02T16:37:35.2568434Z LD [M] drivers/spi/spi-slave-system-control.ko
2025-10-02T16:37:35.2609914Z LD [M] drivers/spi/spi-slave-time.ko
2025-10-02T16:37:35.2649408Z LD [M] drivers/spi/spi-tle62x0.ko
2025-10-02T16:37:35.2665649Z LD [M] drivers/spi/spi-xcomm.ko
2025-10-02T16:37:35.2688622Z LD [M] drivers/spi/spi-xilinx.ko
2025-10-02T16:37:35.2717657Z LD [M] drivers/spi/spi-zynqmp-gqspi.ko
2025-10-02T16:37:35.2771270Z LD [M] drivers/spi/spidev.ko
2025-10-02T16:37:35.2811231Z LD [M] drivers/ssb/ssb.ko
2025-10-02T16:37:35.2812380Z LD [M] drivers/staging/fieldbus/fieldbus_dev.ko
2025-10-02T16:37:35.2817789Z LD [M] drivers/staging/fwserial/firewire-serial.ko
2025-10-02T16:37:35.2887367Z LD [M] drivers/staging/gasket/apex.ko
2025-10-02T16:37:35.2913898Z LD [M] drivers/staging/gasket/gasket.ko
2025-10-02T16:37:35.2950654Z LD [M] drivers/staging/gdm724x/gdmtty.ko
2025-10-02T16:37:35.2980572Z LD [M] drivers/staging/gdm724x/gdmulte.ko
2025-10-02T16:37:35.3032536Z LD [M] drivers/staging/gs_fpgaboot/gs_fpga.ko
2025-10-02T16:37:35.3059147Z LD [M] drivers/staging/iio/accel/adis16203.ko
2025-10-02T16:37:35.3089902Z LD [M] drivers/staging/iio/accel/adis16240.ko
2025-10-02T16:37:35.3130537Z LD [M] drivers/staging/iio/adc/ad7280a.ko
2025-10-02T16:37:35.3194674Z LD [M] drivers/staging/iio/adc/ad7816.ko
2025-10-02T16:37:35.3198886Z LD [M] drivers/staging/iio/addac/adt7316-spi.ko
2025-10-02T16:37:35.3203032Z LD [M] drivers/staging/iio/addac/adt7316-i2c.ko
2025-10-02T16:37:35.3243424Z LD [M] drivers/staging/iio/addac/adt7316.ko
2025-10-02T16:37:35.3262087Z LD [M] drivers/staging/iio/cdc/ad7150.ko
2025-10-02T16:37:35.3279203Z LD [M] drivers/staging/iio/cdc/ad7746.ko
2025-10-02T16:37:35.3324277Z LD [M] drivers/staging/iio/frequency/ad9832.ko
2025-10-02T16:37:35.3354149Z LD [M] drivers/staging/iio/frequency/ad9834.ko
2025-10-02T16:37:35.3373336Z LD [M] drivers/staging/iio/impedance-analyzer/ad5933.ko
2025-10-02T16:37:35.3399195Z LD [M] drivers/staging/iio/meter/ade7854-i2c.ko
2025-10-02T16:37:35.3450553Z LD [M] drivers/staging/iio/meter/ade7854.ko
2025-10-02T16:37:35.3470708Z LD [M] drivers/staging/iio/meter/ade7854-spi.ko
2025-10-02T16:37:35.3503700Z LD [M] drivers/staging/iio/resolver/ad2s1210.ko
2025-10-02T16:37:35.3515609Z LD [M] drivers/staging/kpc2000/kpc2000/kpc2000.ko
2025-10-02T16:37:35.3542222Z LD [M] drivers/staging/kpc2000/kpc2000_i2c.ko
2025-10-02T16:37:35.3550252Z LD [M] drivers/staging/kpc2000/kpc2000_spi.ko
2025-10-02T16:37:35.3599888Z LD [M] drivers/staging/kpc2000/kpc_dma/kpc_dma.ko
2025-10-02T16:37:35.3629727Z LD [M] drivers/staging/ks7010/ks7010.ko
2025-10-02T16:37:35.3667311Z LD [M] drivers/staging/media/atomisp/atomisp.ko
2025-10-02T16:37:35.3690975Z LD [M] drivers/staging/media/atomisp/i2c/atomisp-gc0310.ko
2025-10-02T16:37:35.3728178Z LD [M] drivers/staging/media/atomisp/i2c/atomisp-gc2235.ko
2025-10-02T16:37:35.3762558Z LD [M] drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper.ko
2025-10-02T16:37:35.3823411Z LD [M] drivers/staging/media/atomisp/i2c/atomisp-lm3554.ko
2025-10-02T16:37:35.3848666Z LD [M] drivers/staging/media/atomisp/i2c/atomisp-mt9m114.ko
2025-10-02T16:37:35.3902045Z LD [M] drivers/staging/media/atomisp/i2c/atomisp-ov2680.ko
2025-10-02T16:37:35.3941336Z LD [M] drivers/staging/media/atomisp/i2c/atomisp-ov2722.ko
2025-10-02T16:37:35.3962708Z LD [M] drivers/staging/media/atomisp/i2c/ov5693/atomisp-ov5693.ko
2025-10-02T16:37:35.3983780Z LD [M] drivers/staging/media/atomisp/pci/atomisp_gmin_platform.ko
2025-10-02T16:37:35.4096542Z LD [M] drivers/staging/media/ipu3/ipu3-imgu.ko
2025-10-02T16:37:35.4131328Z LD [M] drivers/staging/most/i2c/most_i2c.ko
2025-10-02T16:37:35.4137257Z LD [M] drivers/staging/most/net/most_net.ko
2025-10-02T16:37:35.4142788Z LD [M] drivers/staging/most/sound/most_sound.ko
2025-10-02T16:37:35.4253461Z LD [M] drivers/staging/pi433/pi433.ko
2025-10-02T16:37:35.4267088Z LD [M] drivers/staging/most/video/most_video.ko
2025-10-02T16:37:35.4322380Z LD [M] drivers/staging/qlge/qlge.ko
2025-10-02T16:37:35.4323631Z LD [M] drivers/staging/rtl8188eu/r8188eu.ko
2025-10-02T16:37:35.4443299Z LD [M] drivers/staging/rtl8192e/rtl8192e/r8192e_pci.ko
2025-10-02T16:37:35.4476383Z LD [M] drivers/staging/rtl8192e/rtllib.ko
2025-10-02T16:37:35.4510952Z LD [M] drivers/staging/rtl8192e/rtllib_crypt_ccmp.ko
2025-10-02T16:37:35.4540485Z LD [M] drivers/staging/rtl8192e/rtllib_crypt_tkip.ko
2025-10-02T16:37:35.4695463Z LD [M] drivers/staging/rtl8192e/rtllib_crypt_wep.ko
2025-10-02T16:37:35.4742925Z LD [M] drivers/staging/rtl8192u/r8192u_usb.ko
2025-10-02T16:37:35.4880881Z LD [M] drivers/staging/rtl8712/r8712u.ko
2025-10-02T16:37:35.4910542Z LD [M] drivers/staging/rtl8723bs/r8723bs.ko
2025-10-02T16:37:35.5023508Z LD [M] drivers/staging/rts5208/rts5208.ko
2025-10-02T16:37:35.5511505Z LD [M] drivers/staging/unisys/visorhba/visorhba.ko
2025-10-02T16:37:35.5545368Z LD [M] drivers/staging/unisys/visorinput/visorinput.ko
2025-10-02T16:37:35.5581431Z LD [M] drivers/staging/unisys/visornic/visornic.ko
2025-10-02T16:37:35.5592655Z LD [M] drivers/staging/vt6655/vt6655_stage.ko
2025-10-02T16:37:35.5695988Z LD [M] drivers/staging/vt6656/vt6656_stage.ko
2025-10-02T16:37:35.5718175Z LD [M] drivers/staging/wlan-ng/prism2_usb.ko
2025-10-02T16:37:35.5737184Z LD [M] drivers/staging/wfx/wfx.ko
2025-10-02T16:37:35.5890976Z LD [M] drivers/target/iscsi/cxgbit/cxgbit.ko
2025-10-02T16:37:35.6138618Z LD [M] drivers/target/iscsi/iscsi_target_mod.ko
2025-10-02T16:37:35.6225192Z LD [M] drivers/target/loopback/tcm_loop.ko
2025-10-02T16:37:35.6256363Z LD [M] drivers/target/sbp/sbp_target.ko
2025-10-02T16:37:35.6404106Z LD [M] drivers/target/target_core_file.ko
2025-10-02T16:37:35.6512575Z LD [M] drivers/target/target_core_iblock.ko
2025-10-02T16:37:35.6567940Z LD [M] drivers/target/target_core_mod.ko
2025-10-02T16:37:35.6579718Z LD [M] drivers/target/target_core_pscsi.ko
2025-10-02T16:37:35.6602637Z LD [M] drivers/target/target_core_user.ko
2025-10-02T16:37:35.6626804Z LD [M] drivers/target/tcm_fc/tcm_fc.ko
2025-10-02T16:37:35.6692206Z LD [M] drivers/tee/amdtee/amdtee.ko
2025-10-02T16:37:35.6700094Z LD [M] drivers/tee/tee.ko
2025-10-02T16:37:35.6814620Z LD [M] drivers/thermal/intel/int340x_thermal/acpi_thermal_rel.ko
2025-10-02T16:37:35.6850268Z LD [M] drivers/thermal/intel/int340x_thermal/int3400_thermal.ko
2025-10-02T16:37:35.6854907Z LD [M] drivers/thermal/intel/int340x_thermal/int3402_thermal.ko
2025-10-02T16:37:35.6882402Z LD [M] drivers/thermal/intel/int340x_thermal/int3403_thermal.ko
2025-10-02T16:37:35.6942323Z LD [M] drivers/thermal/intel/int340x_thermal/int3406_thermal.ko
2025-10-02T16:37:35.6946888Z LD [M] drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.ko
2025-10-02T16:37:35.7001201Z LD [M] drivers/thermal/intel/int340x_thermal/processor_thermal_device.ko
2025-10-02T16:37:35.7037623Z LD [M] drivers/thermal/intel/intel_bxt_pmic_thermal.ko
2025-10-02T16:37:35.7072344Z LD [M] drivers/thermal/intel/intel_pch_thermal.ko
2025-10-02T16:37:35.7100902Z LD [M] drivers/thermal/intel/intel_soc_dts_iosf.ko
2025-10-02T16:37:35.7130315Z LD [M] drivers/thermal/intel/intel_powerclamp.ko
2025-10-02T16:37:35.7139881Z LD [M] drivers/thermal/intel/intel_soc_dts_thermal.ko
2025-10-02T16:37:35.7177574Z LD [M] drivers/thermal/intel/x86_pkg_temp_thermal.ko
2025-10-02T16:37:35.7211028Z LD [M] drivers/thermal/thermal-generic-adc.ko
2025-10-02T16:37:35.7215991Z LD [M] drivers/thunderbolt/thunderbolt.ko
2025-10-02T16:37:35.7260686Z LD [M] drivers/tty/cyclades.ko
2025-10-02T16:37:35.7278560Z LD [M] drivers/tty/ipwireless/ipwireless.ko
2025-10-02T16:37:35.7300352Z LD [M] drivers/tty/isicom.ko
2025-10-02T16:37:35.7324807Z LD [M] drivers/tty/moxa.ko
2025-10-02T16:37:35.7464653Z LD [M] drivers/tty/mxser.ko
2025-10-02T16:37:35.7490415Z LD [M] drivers/tty/n_hdlc.ko
2025-10-02T16:37:35.7505597Z LD [M] drivers/tty/n_tracerouter.ko
2025-10-02T16:37:35.7560891Z LD [M] drivers/tty/n_tracesink.ko
2025-10-02T16:37:35.7600206Z LD [M] drivers/tty/nozomi.ko
2025-10-02T16:37:35.7604535Z LD [M] drivers/tty/rocket.ko
2025-10-02T16:37:35.7653890Z LD [M] drivers/tty/serial/8250/8250_dw.ko
2025-10-02T16:37:35.7680485Z LD [M] drivers/tty/serial/8250/8250_exar.ko
2025-10-02T16:37:35.7690724Z LD [M] drivers/tty/serial/8250/8250_men_mcb.ko
2025-10-02T16:37:35.7759924Z LD [M] drivers/tty/serial/8250/serial_cs.ko
2025-10-02T16:37:35.7790783Z LD [M] drivers/tty/serial/altera_jtaguart.ko
2025-10-02T16:37:35.7800990Z LD [M] drivers/tty/serial/altera_uart.ko
2025-10-02T16:37:35.7837935Z LD [M] drivers/tty/serial/arc_uart.ko
2025-10-02T16:37:35.7844375Z LD [M] drivers/tty/serial/fsl_linflexuart.ko
2025-10-02T16:37:35.7914181Z LD [M] drivers/tty/serial/fsl_lpuart.ko
2025-10-02T16:37:35.7926164Z LD [M] drivers/tty/serial/ifx6x60.ko
2025-10-02T16:37:35.7970905Z LD [M] drivers/tty/serial/jsm/jsm.ko
2025-10-02T16:37:35.7977624Z LD [M] drivers/tty/serial/max3100.ko
2025-10-02T16:37:35.7994441Z LD [M] drivers/tty/serial/max310x.ko
2025-10-02T16:37:35.8087765Z LD [M] drivers/tty/serial/men_z135_uart.ko
2025-10-02T16:37:35.8109332Z LD [M] drivers/tty/serial/rp2.ko
2025-10-02T16:37:35.8122767Z LD [M] drivers/tty/serial/sc16is7xx.ko
2025-10-02T16:37:35.8193552Z LD [M] drivers/tty/serial/sccnxp.ko
2025-10-02T16:37:35.8206478Z LD [M] drivers/tty/serial/sprd_serial.ko
2025-10-02T16:37:35.8241293Z LD [M] drivers/tty/serial/uartlite.ko
2025-10-02T16:37:35.8265837Z LD [M] drivers/tty/synclink.ko
2025-10-02T16:37:35.8305220Z LD [M] drivers/tty/synclink_gt.ko
2025-10-02T16:37:35.8326493Z LD [M] drivers/tty/synclinkmp.ko
2025-10-02T16:37:35.8361448Z LD [M] drivers/tty/ttynull.ko
2025-10-02T16:37:35.8388427Z LD [M] drivers/uio/uio.ko
2025-10-02T16:37:35.8481129Z LD [M] drivers/uio/uio_aec.ko
2025-10-02T16:37:35.8486931Z LD [M] drivers/uio/uio_cif.ko
2025-10-02T16:37:35.8541894Z LD [M] drivers/uio/uio_dmem_genirq.ko
2025-10-02T16:37:35.8549870Z LD [M] drivers/uio/uio_hv_generic.ko
2025-10-02T16:37:35.8580633Z LD [M] drivers/uio/uio_mf624.ko
2025-10-02T16:37:35.8587600Z LD [M] drivers/uio/uio_netx.ko
2025-10-02T16:37:35.8620399Z LD [M] drivers/uio/uio_pci_generic.ko
2025-10-02T16:37:35.8686266Z LD [M] drivers/uio/uio_pruss.ko
2025-10-02T16:37:35.8695089Z LD [M] drivers/uio/uio_pdrv_genirq.ko
2025-10-02T16:37:35.8717906Z LD [M] drivers/uio/uio_sercos3.ko
2025-10-02T16:37:35.8760326Z LD [M] drivers/usb/atm/speedtch.ko
2025-10-02T16:37:35.8761430Z LD [M] drivers/usb/atm/cxacru.ko
2025-10-02T16:37:35.8801735Z LD [M] drivers/usb/atm/ueagle-atm.ko
2025-10-02T16:37:35.8860803Z LD [M] drivers/usb/atm/usbatm.ko
2025-10-02T16:37:35.8865239Z LD [M] drivers/usb/atm/xusbatm.ko
2025-10-02T16:37:35.8866317Z LD [M] drivers/usb/c67x00/c67x00.ko
2025-10-02T16:37:35.8930628Z LD [M] drivers/usb/class/cdc-acm.ko
2025-10-02T16:37:35.9060558Z LD [M] drivers/usb/class/usblp.ko
2025-10-02T16:37:35.9061412Z LD [M] drivers/usb/class/cdc-wdm.ko
2025-10-02T16:37:35.9086914Z LD [M] drivers/usb/class/usbtmc.ko
2025-10-02T16:37:35.9113245Z LD [M] drivers/usb/common/ulpi.ko
2025-10-02T16:37:35.9119890Z LD [M] drivers/usb/common/usb-conn-gpio.ko
2025-10-02T16:37:35.9189798Z LD [M] drivers/usb/core/ledtrig-usbport.ko
2025-10-02T16:37:35.9210513Z LD [M] drivers/usb/host/bcma-hcd.ko
2025-10-02T16:37:35.9250933Z LD [M] drivers/usb/host/ehci-fsl.ko
2025-10-02T16:37:35.9292257Z LD [M] drivers/usb/host/fotg210-hcd.ko
2025-10-02T16:37:35.9306555Z LD [M] drivers/usb/host/ehci-platform.ko
2025-10-02T16:37:35.9390756Z LD [M] drivers/usb/host/fsl-mph-dr-of.ko
2025-10-02T16:37:35.9395268Z LD [M] drivers/usb/host/isp116x-hcd.ko
2025-10-02T16:37:35.9490668Z LD [M] drivers/usb/host/max3421-hcd.ko
2025-10-02T16:37:35.9491941Z LD [M] drivers/usb/host/ohci-platform.ko
2025-10-02T16:37:35.9561371Z LD [M] drivers/usb/host/oxu210hp-hcd.ko
2025-10-02T16:37:35.9599313Z LD [M] drivers/usb/host/sl811-hcd.ko
2025-10-02T16:37:35.9624080Z LD [M] drivers/usb/host/r8a66597-hcd.ko
2025-10-02T16:37:35.9643673Z LD [M] drivers/usb/host/sl811_cs.ko
2025-10-02T16:37:35.9676808Z LD [M] drivers/usb/host/ssb-hcd.ko
2025-10-02T16:37:35.9761874Z LD [M] drivers/usb/host/u132-hcd.ko
2025-10-02T16:37:35.9775202Z LD [M] drivers/usb/host/xhci-pci-renesas.ko
2025-10-02T16:37:35.9792873Z LD [M] drivers/usb/host/xhci-pci.ko
2025-10-02T16:37:35.9842936Z LD [M] drivers/usb/host/xhci-plat-hcd.ko
2025-10-02T16:37:35.9862904Z LD [M] drivers/usb/image/mdc800.ko
2025-10-02T16:37:36.0273263Z LD [M] drivers/usb/image/microtek.ko
2025-10-02T16:37:36.0290740Z LD [M] drivers/usb/misc/adutux.ko
2025-10-02T16:37:36.0293543Z LD [M] drivers/usb/misc/apple-mfi-fastcharge.ko
2025-10-02T16:37:36.0298793Z LD [M] drivers/usb/misc/appledisplay.ko
2025-10-02T16:37:36.0371774Z LD [M] drivers/usb/misc/chaoskey.ko
2025-10-02T16:37:36.0394801Z LD [M] drivers/usb/misc/cypress_cy7c63.ko
2025-10-02T16:37:36.0411642Z LD [M] drivers/usb/misc/cytherm.ko
2025-10-02T16:37:36.0450864Z LD [M] drivers/usb/misc/ehset.ko
2025-10-02T16:37:36.0470328Z LD [M] drivers/usb/misc/emi26.ko
2025-10-02T16:37:36.0505603Z LD [M] drivers/usb/misc/emi62.ko
2025-10-02T16:37:36.0542250Z LD [M] drivers/usb/misc/ezusb.ko
2025-10-02T16:37:36.0575790Z LD [M] drivers/usb/misc/iowarrior.ko
2025-10-02T16:37:36.0580497Z LD [M] drivers/usb/misc/idmouse.ko
2025-10-02T16:37:36.0588370Z LD [M] drivers/usb/misc/ftdi-elan.ko
2025-10-02T16:37:36.0685026Z LD [M] drivers/usb/misc/isight_firmware.ko
2025-10-02T16:37:36.0694552Z LD [M] drivers/usb/misc/ldusb.ko
2025-10-02T16:37:36.0720701Z LD [M] drivers/usb/misc/legousbtower.ko
2025-10-02T16:37:36.0733910Z LD [M] drivers/usb/misc/lvstest.ko
2025-10-02T16:37:36.0793922Z LD [M] drivers/usb/misc/sisusbvga/sisusbvga.ko
2025-10-02T16:37:36.0817393Z LD [M] drivers/usb/misc/trancevibrator.ko
2025-10-02T16:37:36.0818670Z LD [M] drivers/usb/misc/usb251xb.ko
2025-10-02T16:37:36.0861222Z LD [M] drivers/usb/misc/usb4604.ko
2025-10-02T16:37:36.0883441Z LD [M] drivers/usb/misc/usb3503.ko
2025-10-02T16:37:36.0902210Z LD [M] drivers/usb/misc/usblcd.ko
2025-10-02T16:37:36.0945546Z LD [M] drivers/usb/misc/usbtest.ko
2025-10-02T16:37:36.0946736Z LD [M] drivers/usb/misc/usbsevseg.ko
2025-10-02T16:37:36.1015101Z LD [M] drivers/usb/misc/uss720.ko
2025-10-02T16:37:36.1023156Z LD [M] drivers/usb/misc/yurex.ko
2025-10-02T16:37:36.1061488Z LD [M] drivers/usb/mon/usbmon.ko
2025-10-02T16:37:36.1090395Z LD [M] drivers/usb/phy/phy-generic.ko
2025-10-02T16:37:36.1093373Z LD [M] drivers/usb/phy/phy-gpio-vbus-usb.ko
2025-10-02T16:37:36.1142791Z LD [M] drivers/usb/phy/phy-isp1301.ko
2025-10-02T16:37:36.1177850Z LD [M] drivers/usb/phy/phy-tahvo.ko
2025-10-02T16:37:36.1218305Z LD [M] drivers/usb/roles/intel-xhci-usb-role-switch.ko
2025-10-02T16:37:36.1226985Z LD [M] drivers/usb/roles/roles.ko
2025-10-02T16:37:36.1259977Z LD [M] drivers/usb/serial/aircable.ko
2025-10-02T16:37:36.1297010Z LD [M] drivers/usb/serial/ark3116.ko
2025-10-02T16:37:36.1310757Z LD [M] drivers/usb/serial/belkin_sa.ko
2025-10-02T16:37:36.1353924Z LD [M] drivers/usb/serial/ch341.ko
2025-10-02T16:37:36.1368233Z LD [M] drivers/usb/serial/cp210x.ko
2025-10-02T16:37:36.1414058Z LD [M] drivers/usb/serial/cypress_m8.ko
2025-10-02T16:37:36.1424655Z LD [M] drivers/usb/serial/digi_acceleport.ko
2025-10-02T16:37:36.1438598Z LD [M] drivers/usb/serial/cyberjack.ko
2025-10-02T16:37:36.1489017Z LD [M] drivers/usb/serial/empeg.ko
2025-10-02T16:37:36.1551041Z LD [M] drivers/usb/serial/f81232.ko
2025-10-02T16:37:36.1567812Z LD [M] drivers/usb/serial/f81534.ko
2025-10-02T16:37:36.1606838Z LD [M] drivers/usb/serial/garmin_gps.ko
2025-10-02T16:37:36.1613390Z LD [M] drivers/usb/serial/ftdi_sio.ko
2025-10-02T16:37:36.1639191Z LD [M] drivers/usb/serial/io_edgeport.ko
2025-10-02T16:37:36.1670446Z LD [M] drivers/usb/serial/io_ti.ko
2025-10-02T16:37:36.1711097Z LD [M] drivers/usb/serial/ipaq.ko
2025-10-02T16:37:36.1735956Z LD [M] drivers/usb/serial/ipw.ko
2025-10-02T16:37:36.1788130Z LD [M] drivers/usb/serial/ir-usb.ko
2025-10-02T16:37:36.1838634Z LD [M] drivers/usb/serial/iuu_phoenix.ko
2025-10-02T16:37:36.1844772Z LD [M] drivers/usb/serial/keyspan.ko
2025-10-02T16:37:36.1861314Z LD [M] drivers/usb/serial/keyspan_pda.ko
2025-10-02T16:37:36.1901018Z LD [M] drivers/usb/serial/kl5kusb105.ko
2025-10-02T16:37:36.1936644Z LD [M] drivers/usb/serial/kobil_sct.ko
2025-10-02T16:37:36.1973072Z LD [M] drivers/usb/serial/mct_u232.ko
2025-10-02T16:37:36.1976099Z LD [M] drivers/usb/serial/metro-usb.ko
2025-10-02T16:37:36.2012194Z LD [M] drivers/usb/serial/mos7720.ko
2025-10-02T16:37:36.2017840Z LD [M] drivers/usb/serial/mos7840.ko
2025-10-02T16:37:36.2096157Z LD [M] drivers/usb/serial/mxuport.ko
2025-10-02T16:37:36.2148245Z LD [M] drivers/usb/serial/opticon.ko
2025-10-02T16:37:36.2152667Z LD [M] drivers/usb/serial/navman.ko
2025-10-02T16:37:36.2156901Z LD [M] drivers/usb/serial/option.ko
2025-10-02T16:37:36.2161487Z LD [M] drivers/usb/serial/omninet.ko
2025-10-02T16:37:36.2247415Z LD [M] drivers/usb/serial/oti6858.ko
2025-10-02T16:37:36.2284912Z LD [M] drivers/usb/serial/pl2303.ko
2025-10-02T16:37:36.2285771Z LD [M] drivers/usb/serial/qcaux.ko
2025-10-02T16:37:36.2314335Z LD [M] drivers/usb/serial/qcserial.ko
2025-10-02T16:37:36.2340581Z LD [M] drivers/usb/serial/quatech2.ko
2025-10-02T16:37:36.2393979Z LD [M] drivers/usb/serial/safe_serial.ko
2025-10-02T16:37:36.2415709Z LD [M] drivers/usb/serial/sierra.ko
2025-10-02T16:37:36.2421523Z LD [M] drivers/usb/serial/spcp8x5.ko
2025-10-02T16:37:36.2467448Z LD [M] drivers/usb/serial/ssu100.ko
2025-10-02T16:37:36.2476004Z LD [M] drivers/usb/serial/symbolserial.ko
2025-10-02T16:37:36.2533704Z LD [M] drivers/usb/serial/ti_usb_3410_5052.ko
2025-10-02T16:37:36.2611517Z LD [M] drivers/usb/serial/usb_wwan.ko
2025-10-02T16:37:36.2616033Z LD [M] drivers/usb/serial/upd78f0730.ko
2025-10-02T16:37:36.2623634Z LD [M] drivers/usb/serial/usb-serial-simple.ko
2025-10-02T16:37:36.2638736Z LD [M] drivers/usb/serial/usb_debug.ko
2025-10-02T16:37:36.2749884Z LD [M] drivers/usb/serial/visor.ko
2025-10-02T16:37:36.2789415Z LD [M] drivers/usb/serial/whiteheat.ko
2025-10-02T16:37:36.2807517Z LD [M] drivers/usb/serial/wishbone-serial.ko
2025-10-02T16:37:36.2853713Z LD [M] drivers/usb/serial/xsens_mt.ko
2025-10-02T16:37:36.2865279Z LD [M] drivers/usb/storage/uas.ko
2025-10-02T16:37:36.2892726Z LD [M] drivers/usb/storage/ums-alauda.ko
2025-10-02T16:37:36.2931673Z LD [M] drivers/usb/storage/ums-cypress.ko
2025-10-02T16:37:36.2948104Z LD [M] drivers/usb/storage/ums-datafab.ko
2025-10-02T16:37:36.3004915Z LD [M] drivers/usb/storage/ums-eneub6250.ko
2025-10-02T16:37:36.3021724Z LD [M] drivers/usb/storage/ums-freecom.ko
2025-10-02T16:37:36.3037076Z LD [M] drivers/usb/storage/ums-isd200.ko
2025-10-02T16:37:36.3065048Z LD [M] drivers/usb/storage/ums-jumpshot.ko
2025-10-02T16:37:36.3120699Z LD [M] drivers/usb/storage/ums-karma.ko
2025-10-02T16:37:36.3128684Z LD [M] drivers/usb/storage/ums-onetouch.ko
2025-10-02T16:37:36.3145094Z LD [M] drivers/usb/storage/ums-realtek.ko
2025-10-02T16:37:36.3192713Z LD [M] drivers/usb/storage/ums-sddr55.ko
2025-10-02T16:37:36.3211625Z LD [M] drivers/usb/storage/ums-sddr09.ko
2025-10-02T16:37:36.3240689Z LD [M] drivers/usb/storage/ums-usbat.ko
2025-10-02T16:37:36.3241775Z LD [M] drivers/usb/storage/usb-storage.ko
2025-10-02T16:37:36.3310306Z LD [M] drivers/usb/typec/altmodes/typec_displayport.ko
2025-10-02T16:37:36.3321908Z LD [M] drivers/usb/typec/altmodes/typec_nvidia.ko
2025-10-02T16:37:36.3324255Z LD [M] drivers/usb/typec/hd3ss3220.ko
2025-10-02T16:37:36.3376537Z LD [M] drivers/usb/typec/mux/intel_pmc_mux.ko
2025-10-02T16:37:36.3418443Z LD [M] drivers/usb/typec/stusb160x.ko
2025-10-02T16:37:36.3425299Z LD [M] drivers/usb/typec/mux/pi3usb30532.ko
2025-10-02T16:37:36.3488698Z LD [M] drivers/usb/typec/tcpm/tcpci.ko
2025-10-02T16:37:36.3513953Z LD [M] drivers/usb/typec/tcpm/fusb302.ko
2025-10-02T16:37:36.3516805Z LD [M] drivers/usb/typec/tcpm/tcpci_maxim.ko
2025-10-02T16:37:36.3555885Z LD [M] drivers/usb/typec/tcpm/tcpci_rt1711h.ko
2025-10-02T16:37:36.3581157Z LD [M] drivers/usb/typec/tcpm/tcpci_mt6360.ko
2025-10-02T16:37:36.3616835Z LD [M] drivers/usb/typec/tcpm/typec_wcove.ko
2025-10-02T16:37:36.3623415Z LD [M] drivers/usb/typec/tcpm/tcpm.ko
2025-10-02T16:37:36.3631407Z LD [M] drivers/usb/typec/tps6598x.ko
2025-10-02T16:37:36.3700891Z LD [M] drivers/usb/typec/typec.ko
2025-10-02T16:37:36.3710327Z LD [M] drivers/usb/typec/ucsi/typec_ucsi.ko
2025-10-02T16:37:36.3738970Z LD [M] drivers/usb/typec/ucsi/ucsi_acpi.ko
2025-10-02T16:37:36.3768012Z LD [M] drivers/usb/typec/ucsi/ucsi_ccg.ko
2025-10-02T16:37:36.3806196Z LD [M] drivers/usb/usbip/usbip-core.ko
2025-10-02T16:37:36.3836812Z LD [M] drivers/usb/usbip/usbip-host.ko
2025-10-02T16:37:36.3853025Z LD [M] drivers/usb/usbip/vhci-hcd.ko
2025-10-02T16:37:36.3892230Z LD [M] drivers/vdpa/ifcvf/ifcvf.ko
2025-10-02T16:37:36.3955237Z LD [M] drivers/vdpa/mlx5/mlx5_vdpa.ko
2025-10-02T16:37:36.3971037Z LD [M] drivers/vdpa/vdpa.ko
2025-10-02T16:37:36.3992028Z LD [M] drivers/vdpa/vdpa_sim/vdpa_sim.ko
2025-10-02T16:37:36.4038424Z LD [M] drivers/vfio/mdev/mdev.ko
2025-10-02T16:37:36.4065087Z LD [M] drivers/vfio/mdev/vfio_mdev.ko
2025-10-02T16:37:36.4101765Z LD [M] drivers/vfio/pci/vfio-pci.ko
2025-10-02T16:37:36.4122116Z LD [M] drivers/vfio/vfio.ko
2025-10-02T16:37:36.4176198Z LD [M] drivers/vfio/vfio_iommu_type1.ko
2025-10-02T16:37:36.4181871Z LD [M] drivers/vfio/vfio_virqfd.ko
2025-10-02T16:37:36.4213895Z LD [M] drivers/vhost/vhost.ko
2025-10-02T16:37:36.4270800Z LD [M] drivers/vhost/vhost_iotlb.ko
2025-10-02T16:37:36.4276186Z LD [M] drivers/vhost/vhost_net.ko
2025-10-02T16:37:36.4344173Z LD [M] drivers/vhost/vhost_scsi.ko
2025-10-02T16:37:36.4351186Z LD [M] drivers/vhost/vhost_vdpa.ko
2025-10-02T16:37:36.4372460Z LD [M] drivers/vhost/vhost_vsock.ko
2025-10-02T16:37:36.4433672Z LD [M] drivers/vhost/vringh.ko
2025-10-02T16:37:36.4440611Z LD [M] drivers/video/backlight/88pm860x_bl.ko
2025-10-02T16:37:36.4475802Z LD [M] drivers/video/backlight/aat2870_bl.ko
2025-10-02T16:37:36.4498682Z LD [M] drivers/video/backlight/adp5520_bl.ko
2025-10-02T16:37:36.4512495Z LD [M] drivers/video/backlight/adp8860_bl.ko
2025-10-02T16:37:36.4554241Z LD [M] drivers/video/backlight/adp8870_bl.ko
2025-10-02T16:37:36.4593097Z LD [M] drivers/video/backlight/ams369fg06.ko
2025-10-02T16:37:36.4622211Z LD [M] drivers/video/backlight/apple_bl.ko
2025-10-02T16:37:36.4658581Z LD [M] drivers/video/backlight/arcxcnn_bl.ko
2025-10-02T16:37:36.4678191Z LD [M] drivers/video/backlight/as3711_bl.ko
2025-10-02T16:37:36.4744088Z LD [M] drivers/video/backlight/bd6107.ko
2025-10-02T16:37:36.4780651Z LD [M] drivers/video/backlight/da903x_bl.ko
2025-10-02T16:37:36.4788972Z LD [M] drivers/video/backlight/da9052_bl.ko
2025-10-02T16:37:36.4811969Z LD [M] drivers/video/backlight/gpio_backlight.ko
2025-10-02T16:37:36.4873405Z LD [M] drivers/video/backlight/ili922x.ko
2025-10-02T16:37:36.4881189Z LD [M] drivers/video/backlight/hx8357.ko
2025-10-02T16:37:36.4943320Z LD [M] drivers/video/backlight/ili9320.ko
2025-10-02T16:37:36.4951381Z LD [M] drivers/video/backlight/kb3886_bl.ko
2025-10-02T16:37:36.4952773Z LD [M] drivers/video/backlight/ktd253-backlight.ko
2025-10-02T16:37:36.5013202Z LD [M] drivers/video/backlight/l4f00242t03.ko
2025-10-02T16:37:36.5040618Z LD [M] drivers/video/backlight/lcd.ko
2025-10-02T16:37:36.5081250Z LD [M] drivers/video/backlight/lm3533_bl.ko
2025-10-02T16:37:36.5090750Z LD [M] drivers/video/backlight/lm3630a_bl.ko
2025-10-02T16:37:36.5091964Z LD [M] drivers/video/backlight/lm3639_bl.ko
2025-10-02T16:37:36.5165865Z LD [M] drivers/video/backlight/lms283gf05.ko
2025-10-02T16:37:36.5192019Z LD [M] drivers/video/backlight/lms501kf03.ko
2025-10-02T16:37:36.5231562Z LD [M] drivers/video/backlight/lp855x_bl.ko
2025-10-02T16:37:36.5243910Z LD [M] drivers/video/backlight/lp8788_bl.ko
2025-10-02T16:37:36.5245102Z LD [M] drivers/video/backlight/ltv350qv.ko
2025-10-02T16:37:36.5313679Z LD [M] drivers/video/backlight/lv5207lp.ko
2025-10-02T16:37:36.5359172Z LD [M] drivers/video/backlight/max8925_bl.ko
2025-10-02T16:37:36.5368304Z LD [M] drivers/video/backlight/otm3225a.ko
2025-10-02T16:37:36.5379425Z LD [M] drivers/video/backlight/pandora_bl.ko
2025-10-02T16:37:36.5407630Z LD [M] drivers/video/backlight/pcf50633-backlight.ko
2025-10-02T16:37:36.5463617Z LD [M] drivers/video/backlight/platform_lcd.ko
2025-10-02T16:37:36.5500344Z LD [M] drivers/video/backlight/pwm_bl.ko
2025-10-02T16:37:36.5507165Z LD [M] drivers/video/backlight/qcom-wled.ko
2025-10-02T16:37:36.5514591Z LD [M] drivers/video/backlight/rave-sp-backlight.ko
2025-10-02T16:37:36.5573363Z LD [M] drivers/video/backlight/sky81452-backlight.ko
2025-10-02T16:37:36.5601744Z LD [M] drivers/video/backlight/tdo24m.ko
2025-10-02T16:37:36.5646655Z LD [M] drivers/video/backlight/vgg2432a4.ko
2025-10-02T16:37:36.5665269Z LD [M] drivers/video/backlight/wm831x_bl.ko
2025-10-02T16:37:36.5671104Z LD [M] drivers/video/fbdev/core/fb_sys_fops.ko
2025-10-02T16:37:36.5708868Z LD [M] drivers/video/fbdev/core/syscopyarea.ko
2025-10-02T16:37:36.5778572Z LD [M] drivers/video/fbdev/core/sysfillrect.ko
2025-10-02T16:37:36.5780453Z LD [M] drivers/video/fbdev/core/sysimgblt.ko
2025-10-02T16:37:36.5790047Z LD [M] drivers/video/fbdev/hyperv_fb.ko
2025-10-02T16:37:36.5820299Z LD [M] drivers/video/fbdev/xen-fbfront.ko
2025-10-02T16:37:36.5854686Z LD [M] drivers/virt/nitro_enclaves/nitro_enclaves.ko
2025-10-02T16:37:36.5930539Z LD [M] drivers/virt/vboxguest/vboxguest.ko
2025-10-02T16:37:36.5946299Z LD [M] drivers/virtio/virtio_balloon.ko
2025-10-02T16:37:36.5968623Z LD [M] drivers/virtio/virtio_dma_buf.ko
2025-10-02T16:37:36.5973130Z LD [M] drivers/virtio/virtio_input.ko
2025-10-02T16:37:36.6009058Z LD [M] drivers/virtio/virtio_mem.ko
2025-10-02T16:37:36.6055356Z LD [M] drivers/virtio/virtio_mmio.ko
2025-10-02T16:37:36.6097057Z LD [M] drivers/virtio/virtio_pci.ko
2025-10-02T16:37:36.6120205Z LD [M] drivers/virtio/virtio_vdpa.ko
2025-10-02T16:37:36.6157283Z LD [M] drivers/visorbus/visorbus.ko
2025-10-02T16:37:36.6168248Z LD [M] drivers/w1/masters/ds1wm.ko
2025-10-02T16:37:36.6220740Z LD [M] drivers/w1/masters/ds2482.ko
2025-10-02T16:37:36.6272532Z LD [M] drivers/w1/masters/ds2490.ko
2025-10-02T16:37:36.6288244Z LD [M] drivers/w1/masters/matrox_w1.ko
2025-10-02T16:37:36.6321268Z LD [M] drivers/w1/masters/sgi_w1.ko
2025-10-02T16:37:36.6322291Z LD [M] drivers/w1/masters/w1-gpio.ko
2025-10-02T16:37:36.6330569Z LD [M] drivers/w1/slaves/w1_ds2405.ko
2025-10-02T16:37:36.6402482Z LD [M] drivers/w1/slaves/w1_ds2406.ko
2025-10-02T16:37:36.6422705Z LD [M] drivers/w1/slaves/w1_ds2408.ko
2025-10-02T16:37:36.6424722Z LD [M] drivers/w1/slaves/w1_ds2413.ko
2025-10-02T16:37:36.6459193Z LD [M] drivers/w1/slaves/w1_ds2430.ko
2025-10-02T16:37:36.6469140Z LD [M] drivers/w1/slaves/w1_ds2423.ko
2025-10-02T16:37:36.6517106Z LD [M] drivers/w1/slaves/w1_ds2431.ko
2025-10-02T16:37:36.6523176Z LD [M] drivers/w1/slaves/w1_ds2433.ko
2025-10-02T16:37:36.6572579Z LD [M] drivers/w1/slaves/w1_ds250x.ko
2025-10-02T16:37:36.6573699Z LD [M] drivers/w1/slaves/w1_ds2438.ko
2025-10-02T16:37:36.6608694Z LD [M] drivers/w1/slaves/w1_ds2780.ko
2025-10-02T16:37:36.6639848Z LD [M] drivers/w1/slaves/w1_ds2781.ko
2025-10-02T16:37:36.6654122Z LD [M] drivers/w1/slaves/w1_ds2805.ko
2025-10-02T16:37:36.6684541Z LD [M] drivers/w1/slaves/w1_ds28e04.ko
2025-10-02T16:37:36.6704434Z LD [M] drivers/w1/slaves/w1_ds28e17.ko
2025-10-02T16:37:36.6737357Z LD [M] drivers/w1/slaves/w1_smem.ko
2025-10-02T16:37:36.6781565Z LD [M] drivers/w1/slaves/w1_therm.ko
2025-10-02T16:37:36.6788392Z LD [M] drivers/w1/wire.ko
2025-10-02T16:37:36.6797042Z LD [M] drivers/watchdog/acquirewdt.ko
2025-10-02T16:37:36.6850376Z LD [M] drivers/watchdog/advantechwdt.ko
2025-10-02T16:37:36.6900334Z LD [M] drivers/watchdog/alim1535_wdt.ko
2025-10-02T16:37:36.6906987Z LD [M] drivers/watchdog/cadence_wdt.ko
2025-10-02T16:37:36.6912471Z LD [M] drivers/watchdog/alim7101_wdt.ko
2025-10-02T16:37:36.6990172Z LD [M] drivers/watchdog/cpu5wdt.ko
2025-10-02T16:37:36.7010661Z LD [M] drivers/watchdog/da9052_wdt.ko
2025-10-02T16:37:36.7031860Z LD [M] drivers/watchdog/da9055_wdt.ko
2025-10-02T16:37:36.7052632Z LD [M] drivers/watchdog/da9062_wdt.ko
2025-10-02T16:37:36.7067229Z LD [M] drivers/watchdog/da9063_wdt.ko
2025-10-02T16:37:36.7118891Z LD [M] drivers/watchdog/dw_wdt.ko
2025-10-02T16:37:36.7136799Z LD [M] drivers/watchdog/ebc-c384_wdt.ko
2025-10-02T16:37:36.7178645Z LD [M] drivers/watchdog/f71808e_wdt.ko
2025-10-02T16:37:36.7180728Z LD [M] drivers/watchdog/hpwdt.ko
2025-10-02T16:37:36.7190716Z LD [M] drivers/watchdog/eurotechwdt.ko
2025-10-02T16:37:36.7239825Z LD [M] drivers/watchdog/iTCO_vendor_support.ko
2025-10-02T16:37:36.7262936Z LD [M] drivers/watchdog/i6300esb.ko
2025-10-02T16:37:36.7320310Z LD [M] drivers/watchdog/iTCO_wdt.ko
2025-10-02T16:37:36.7321566Z LD [M] drivers/watchdog/ib700wdt.ko
2025-10-02T16:37:36.7357509Z LD [M] drivers/watchdog/it8712f_wdt.ko
2025-10-02T16:37:36.7362580Z LD [M] drivers/watchdog/ie6xx_wdt.ko
2025-10-02T16:37:36.7377982Z LD [M] drivers/watchdog/ibmasr.ko
2025-10-02T16:37:36.7411698Z LD [M] drivers/watchdog/it87_wdt.ko
2025-10-02T16:37:36.7455392Z LD [M] drivers/watchdog/kempld_wdt.ko
2025-10-02T16:37:36.7503108Z LD [M] drivers/watchdog/max63xx_wdt.ko
2025-10-02T16:37:36.7509367Z LD [M] drivers/watchdog/machzwd.ko
2025-10-02T16:37:36.7521782Z LD [M] drivers/watchdog/mei_wdt.ko
2025-10-02T16:37:36.7550704Z LD [M] drivers/watchdog/mena21_wdt.ko
2025-10-02T16:37:36.7588811Z LD [M] drivers/watchdog/menf21bmc_wdt.ko
2025-10-02T16:37:36.7616438Z LD [M] drivers/watchdog/menz69_wdt.ko
2025-10-02T16:37:36.7650399Z LD [M] drivers/watchdog/mlx_wdt.ko
2025-10-02T16:37:36.7659390Z LD [M] drivers/watchdog/ni903x_wdt.ko
2025-10-02T16:37:36.7696626Z LD [M] drivers/watchdog/nv_tco.ko
2025-10-02T16:37:36.7705578Z LD [M] drivers/watchdog/nic7018_wdt.ko
2025-10-02T16:37:36.7735722Z LD [M] drivers/watchdog/of_xilinx_wdt.ko
2025-10-02T16:37:36.7764276Z LD [M] drivers/watchdog/pc87413_wdt.ko
2025-10-02T16:37:36.7812033Z LD [M] drivers/watchdog/pcwd_pci.ko
2025-10-02T16:37:36.7817589Z LD [M] drivers/watchdog/pcwd_usb.ko
2025-10-02T16:37:36.7842718Z LD [M] drivers/watchdog/rave-sp-wdt.ko
2025-10-02T16:37:36.7870352Z LD [M] drivers/watchdog/pretimeout_noop.ko
2025-10-02T16:37:36.7913625Z LD [M] drivers/watchdog/retu_wdt.ko
2025-10-02T16:37:36.7930864Z LD [M] drivers/watchdog/sbc60xxwdt.ko
2025-10-02T16:37:36.7962777Z LD [M] drivers/watchdog/sbc_fitpc2_wdt.ko
2025-10-02T16:37:36.7974670Z LD [M] drivers/watchdog/sbc_epx_c3.ko
2025-10-02T16:37:36.8005505Z LD [M] drivers/watchdog/sc1200wdt.ko
2025-10-02T16:37:36.8048986Z LD [M] drivers/watchdog/sch311x_wdt.ko
2025-10-02T16:37:36.8051684Z LD [M] drivers/watchdog/smsc37b787_wdt.ko
2025-10-02T16:37:36.8090065Z LD [M] drivers/watchdog/softdog.ko
2025-10-02T16:37:36.8099901Z LD [M] drivers/watchdog/sp5100_tco.ko
2025-10-02T16:37:36.8155301Z LD [M] drivers/watchdog/tqmx86_wdt.ko
2025-10-02T16:37:36.8163277Z LD [M] drivers/watchdog/twl4030_wdt.ko
2025-10-02T16:37:36.8185479Z LD [M] drivers/watchdog/via_wdt.ko
2025-10-02T16:37:36.8217352Z LD [M] drivers/watchdog/w83627hf_wdt.ko
2025-10-02T16:37:36.8241738Z LD [M] drivers/watchdog/w83877f_wdt.ko
2025-10-02T16:37:36.8276853Z LD [M] drivers/watchdog/w83977f_wdt.ko
2025-10-02T16:37:36.8289170Z LD [M] drivers/watchdog/wafer5823wdt.ko
2025-10-02T16:37:36.8323916Z LD [M] drivers/watchdog/wdat_wdt.ko
2025-10-02T16:37:36.8345317Z LD [M] drivers/watchdog/wdt_pci.ko
2025-10-02T16:37:36.8369893Z LD [M] drivers/watchdog/wm831x_wdt.ko
2025-10-02T16:37:36.8404568Z LD [M] drivers/watchdog/wm8350_wdt.ko
2025-10-02T16:37:36.8446024Z LD [M] drivers/watchdog/ziirave_wdt.ko
2025-10-02T16:37:36.8460360Z LD [M] drivers/watchdog/xen_wdt.ko
2025-10-02T16:37:36.8476509Z LD [M] drivers/xen/pvcalls-front.ko
2025-10-02T16:37:36.8508216Z LD [M] drivers/xen/xen-acpi-processor.ko
2025-10-02T16:37:36.8531075Z LD [M] drivers/xen/xen-evtchn.ko
2025-10-02T16:37:36.8570249Z LD [M] drivers/xen/xen-front-pgdir-shbuf.ko
2025-10-02T16:37:36.8583290Z LD [M] drivers/xen/xen-gntalloc.ko
2025-10-02T16:37:36.8652661Z LD [M] drivers/xen/xen-gntdev.ko
2025-10-02T16:37:36.8666140Z LD [M] drivers/xen/xen-pciback/xen-pciback.ko
2025-10-02T16:37:36.8689000Z LD [M] drivers/xen/xen-privcmd.ko
2025-10-02T16:37:36.8693629Z LD [M] drivers/xen/xen-scsiback.ko
2025-10-02T16:37:36.8747821Z LD [M] drivers/xen/xenfs/xenfs.ko
2025-10-02T16:37:36.8810068Z LD [M] fs/9p/9p.ko
2025-10-02T16:37:36.8856936Z LD [M] fs/affs/affs.ko
2025-10-02T16:37:36.8868838Z LD [M] fs/afs/kafs.ko
2025-10-02T16:37:36.8904479Z LD [M] fs/befs/befs.ko
2025-10-02T16:37:36.8933217Z LD [M] fs/btrfs/btrfs.ko
2025-10-02T16:37:36.9140474Z LD [M] fs/cachefiles/cachefiles.ko
2025-10-02T16:37:36.9201513Z LD [M] fs/ceph/ceph.ko
2025-10-02T16:37:36.9259211Z LD [M] fs/cifs/cifs.ko
2025-10-02T16:37:36.9482323Z LD [M] fs/coda/coda.ko
2025-10-02T16:37:36.9836187Z LD [M] fs/cramfs/cramfs.ko
2025-10-02T16:37:37.0044328Z LD [M] fs/dlm/dlm.ko
2025-10-02T16:37:37.2461352Z LD [M] fs/ecryptfs/ecryptfs.ko
2025-10-02T16:37:37.5164821Z LD [M] fs/erofs/erofs.ko
2025-10-02T16:37:38.1788416Z LD [M] fs/exfat/exfat.ko
2025-10-02T16:37:38.3387347Z LD [M] fs/ext4/ext4.ko
2025-10-02T16:37:38.3882876Z LD [M] fs/f2fs/f2fs.ko
2025-10-02T16:37:38.6280132Z LD [M] fs/fat/fat.ko
2025-10-02T16:37:39.3801397Z LD [M] fs/fat/msdos.ko
2025-10-02T16:37:39.5902707Z LD [M] fs/fat/vfat.ko
2025-10-02T16:37:39.9877551Z LD [M] fs/fscache/fscache.ko
2025-10-02T16:37:40.1262592Z LD [M] fs/fuse/cuse.ko
2025-10-02T16:37:40.2807200Z LD [M] fs/fuse/fuse.ko
2025-10-02T16:37:40.3309236Z LD [M] fs/fuse/virtiofs.ko
2025-10-02T16:37:40.3441053Z LD [M] fs/gfs2/gfs2.ko
2025-10-02T16:37:40.3498169Z LD [M] fs/hfs/hfs.ko
2025-10-02T16:37:40.3681832Z LD [M] fs/hfsplus/hfsplus.ko
2025-10-02T16:37:40.3745572Z LD [M] fs/isofs/isofs.ko
2025-10-02T16:37:40.3796896Z LD [M] fs/jbd2/jbd2.ko
2025-10-02T16:37:40.3987583Z LD [M] fs/jffs2/jffs2.ko
2025-10-02T16:37:40.3997750Z LD [M] fs/jfs/jfs.ko
2025-10-02T16:37:40.4184236Z LD [M] fs/lockd/lockd.ko
2025-10-02T16:37:40.4210376Z LD [M] fs/mbcache.ko
2025-10-02T16:37:40.4440769Z LD [M] fs/minix/minix.ko
2025-10-02T16:37:40.4671834Z LD [M] fs/nfs/blocklayout/blocklayoutdriver.ko
2025-10-02T16:37:40.4681512Z LD [M] fs/nfs/filelayout/nfs_layout_nfsv41_files.ko
2025-10-02T16:37:40.4690772Z LD [M] fs/nfs/flexfilelayout/nfs_layout_flexfiles.ko
2025-10-02T16:37:40.4782035Z LD [M] fs/nfs/nfs.ko
2025-10-02T16:37:40.4975492Z LD [M] fs/nfs/nfsv2.ko
2025-10-02T16:37:40.5013661Z LD [M] fs/nfs/nfsv3.ko
2025-10-02T16:37:40.5020532Z LD [M] fs/nfs/nfsv4.ko
2025-10-02T16:37:40.5026972Z LD [M] fs/nfs_common/grace.ko
2025-10-02T16:37:40.5142629Z LD [M] fs/nfs_common/nfs_acl.ko
2025-10-02T16:37:40.5215297Z LD [M] fs/nfsd/nfsd.ko
2025-10-02T16:37:40.5349878Z LD [M] fs/nilfs2/nilfs2.ko
2025-10-02T16:37:40.5396752Z LD [M] fs/nls/mac-celtic.ko
2025-10-02T16:37:40.5512948Z LD [M] fs/nls/mac-centeuro.ko
2025-10-02T16:37:40.5862023Z LD [M] fs/nls/mac-croatian.ko
2025-10-02T16:37:40.6050595Z LD [M] fs/nls/mac-cyrillic.ko
2025-10-02T16:37:40.6183137Z LD [M] fs/nls/mac-gaelic.ko
2025-10-02T16:37:40.6223271Z LD [M] fs/nls/mac-greek.ko
2025-10-02T16:37:40.6315801Z LD [M] fs/nls/mac-iceland.ko
2025-10-02T16:37:40.6319115Z LD [M] fs/nls/mac-inuit.ko
2025-10-02T16:37:40.6335046Z LD [M] fs/nls/mac-roman.ko
2025-10-02T16:37:40.6431952Z LD [M] fs/nls/mac-romanian.ko
2025-10-02T16:37:40.6459419Z LD [M] fs/nls/nls_cp1250.ko
2025-10-02T16:37:40.6466367Z LD [M] fs/nls/mac-turkish.ko
2025-10-02T16:37:40.6547102Z LD [M] fs/nls/nls_cp1251.ko
2025-10-02T16:37:40.6577966Z LD [M] fs/nls/nls_cp1255.ko
2025-10-02T16:37:40.6609806Z LD [M] fs/nls/nls_cp737.ko
2025-10-02T16:37:40.6664237Z LD [M] fs/nls/nls_cp775.ko
2025-10-02T16:37:40.6737613Z LD [M] fs/nls/nls_cp850.ko
2025-10-02T16:37:40.6742506Z LD [M] fs/nls/nls_cp852.ko
2025-10-02T16:37:40.6807745Z LD [M] fs/nls/nls_cp855.ko
2025-10-02T16:37:40.6880008Z LD [M] fs/nls/nls_cp857.ko
2025-10-02T16:37:40.6885576Z LD [M] fs/nls/nls_cp860.ko
2025-10-02T16:37:40.6890155Z LD [M] fs/nls/nls_cp861.ko
2025-10-02T16:37:40.6942502Z LD [M] fs/nls/nls_cp862.ko
2025-10-02T16:37:40.7003097Z LD [M] fs/nls/nls_cp863.ko
2025-10-02T16:37:40.7013539Z LD [M] fs/nls/nls_cp864.ko
2025-10-02T16:37:40.7017440Z LD [M] fs/nls/nls_cp865.ko
2025-10-02T16:37:40.7054661Z LD [M] fs/nls/nls_cp866.ko
2025-10-02T16:37:40.7092961Z LD [M] fs/nls/nls_cp869.ko
2025-10-02T16:37:40.7121720Z LD [M] fs/nls/nls_cp874.ko
2025-10-02T16:37:40.7142130Z LD [M] fs/nls/nls_cp932.ko
2025-10-02T16:37:40.7173960Z LD [M] fs/nls/nls_cp936.ko
2025-10-02T16:37:40.7183864Z LD [M] fs/nls/nls_cp949.ko
2025-10-02T16:37:40.7218361Z LD [M] fs/nls/nls_cp950.ko
2025-10-02T16:37:40.7242653Z LD [M] fs/nls/nls_euc-jp.ko
2025-10-02T16:37:40.7261166Z LD [M] fs/nls/nls_iso8859-1.ko
2025-10-02T16:37:40.7321626Z LD [M] fs/nls/nls_iso8859-13.ko
2025-10-02T16:37:40.7350635Z LD [M] fs/nls/nls_iso8859-14.ko
2025-10-02T16:37:40.7351436Z LD [M] fs/nls/nls_iso8859-15.ko
2025-10-02T16:37:40.7386766Z LD [M] fs/nls/nls_iso8859-2.ko
2025-10-02T16:37:40.7404128Z LD [M] fs/nls/nls_iso8859-3.ko
2025-10-02T16:37:40.7438662Z LD [M] fs/nls/nls_iso8859-4.ko
2025-10-02T16:37:40.7456803Z LD [M] fs/nls/nls_iso8859-5.ko
2025-10-02T16:37:40.7485779Z LD [M] fs/nls/nls_iso8859-6.ko
2025-10-02T16:37:40.7529073Z LD [M] fs/nls/nls_iso8859-7.ko
2025-10-02T16:37:40.7532169Z LD [M] fs/nls/nls_iso8859-9.ko
2025-10-02T16:37:40.7560723Z LD [M] fs/nls/nls_koi8-r.ko
2025-10-02T16:37:40.7589336Z LD [M] fs/nls/nls_koi8-ru.ko
2025-10-02T16:37:40.7590489Z LD [M] fs/nls/nls_koi8-u.ko
2025-10-02T16:37:40.7644767Z LD [M] fs/nls/nls_utf8.ko
2025-10-02T16:37:40.7663706Z LD [M] fs/ocfs2/cluster/ocfs2_nodemanager.ko
2025-10-02T16:37:40.7683219Z LD [M] fs/ocfs2/dlm/ocfs2_dlm.ko
2025-10-02T16:37:40.7711494Z LD [M] fs/ocfs2/ocfs2.ko
2025-10-02T16:37:40.7722723Z LD [M] fs/ocfs2/dlmfs/ocfs2_dlmfs.ko
2025-10-02T16:37:40.7780635Z LD [M] fs/ocfs2/ocfs2_stack_o2cb.ko
2025-10-02T16:37:40.7866045Z LD [M] fs/ocfs2/ocfs2_stack_user.ko
2025-10-02T16:37:40.7911431Z LD [M] fs/ocfs2/ocfs2_stackglue.ko
2025-10-02T16:37:40.7995114Z LD [M] fs/omfs/omfs.ko
2025-10-02T16:37:40.8000797Z LD [M] fs/orangefs/orangefs.ko
2025-10-02T16:37:40.8035921Z LD [M] fs/overlayfs/overlay.ko
2025-10-02T16:37:40.8155696Z LD [M] fs/pstore/ramoops.ko
2025-10-02T16:37:40.8190668Z LD [M] fs/quota/quota_tree.ko
2025-10-02T16:37:40.8298153Z LD [M] fs/quota/quota_v1.ko
2025-10-02T16:37:40.8303670Z LD [M] fs/quota/quota_v2.ko
2025-10-02T16:37:40.8389260Z LD [M] fs/reiserfs/reiserfs.ko
2025-10-02T16:37:40.8444631Z LD [M] fs/romfs/romfs.ko
2025-10-02T16:37:40.8472943Z LD [M] fs/ubifs/ubifs.ko
2025-10-02T16:37:40.8513885Z LD [M] fs/squashfs/squashfs.ko
2025-10-02T16:37:40.8605785Z LD [M] fs/udf/udf.ko
2025-10-02T16:37:40.8864465Z LD [M] fs/ufs/ufs.ko
2025-10-02T16:37:40.8948190Z LD [M] fs/vboxsf/vboxsf.ko
2025-10-02T16:37:40.8986520Z LD [M] fs/xfs/xfs.ko
2025-10-02T16:37:40.9178703Z LD [M] kernel/kheaders.ko
2025-10-02T16:37:40.9179725Z LD [M] fs/zonefs/zonefs.ko
2025-10-02T16:37:40.9337973Z LD [M] lib/842/842_compress.ko
2025-10-02T16:37:40.9342633Z LD [M] lib/842/842_decompress.ko
2025-10-02T16:37:40.9373280Z LD [M] lib/crc-itu-t.ko
2025-10-02T16:37:40.9466827Z LD [M] lib/crc16.ko
2025-10-02T16:37:40.9482949Z LD [M] lib/crc4.ko
2025-10-02T16:37:40.9524302Z LD [M] lib/crc64.ko
2025-10-02T16:37:40.9564868Z LD [M] lib/crc7.ko
2025-10-02T16:37:40.9626725Z LD [M] lib/crc8.ko
2025-10-02T16:37:40.9640995Z LD [M] lib/crypto/libchacha.ko
2025-10-02T16:37:40.9652478Z LD [M] lib/crypto/libarc4.ko
2025-10-02T16:37:40.9681195Z LD [M] lib/crypto/libchacha20poly1305.ko
2025-10-02T16:37:40.9747592Z LD [M] lib/crypto/libcurve25519-generic.ko
2025-10-02T16:37:40.9753958Z LD [M] lib/crypto/libdes.ko
2025-10-02T16:37:40.9755953Z LD [M] lib/crypto/libcurve25519.ko
2025-10-02T16:37:40.9820905Z LD [M] lib/crypto/libpoly1305.ko
2025-10-02T16:37:40.9861017Z LD [M] lib/libcrc32c.ko
2025-10-02T16:37:40.9895555Z LD [M] lib/lru_cache.ko
2025-10-02T16:37:40.9920080Z LD [M] lib/lz4/lz4hc_compress.ko
2025-10-02T16:37:40.9943930Z LD [M] lib/math/cordic.ko
2025-10-02T16:37:40.9969986Z LD [M] lib/objagg.ko
2025-10-02T16:37:41.0023931Z LD [M] lib/parman.ko
2025-10-02T16:37:41.0037708Z LD [M] lib/raid6/raid6_pq.ko
2025-10-02T16:37:41.0061878Z LD [M] lib/reed_solomon/reed_solomon.ko
2025-10-02T16:37:41.0128446Z LD [M] lib/ts_bm.ko
2025-10-02T16:37:41.0158130Z LD [M] lib/ts_fsm.ko
2025-10-02T16:37:41.0181500Z LD [M] lib/ts_kmp.ko
2025-10-02T16:37:41.0229034Z LD [M] mm/hwpoison-inject.ko
2025-10-02T16:37:41.0255344Z LD [M] net/6lowpan/6lowpan.ko
2025-10-02T16:37:41.0278555Z LD [M] net/6lowpan/nhc_dest.ko
2025-10-02T16:37:41.0309121Z LD [M] net/6lowpan/nhc_fragment.ko
2025-10-02T16:37:41.0360561Z LD [M] net/6lowpan/nhc_ghc_ext_dest.ko
2025-10-02T16:37:41.0419393Z LD [M] net/6lowpan/nhc_ghc_ext_frag.ko
2025-10-02T16:37:41.0452165Z LD [M] net/6lowpan/nhc_ghc_ext_hop.ko
2025-10-02T16:37:41.0511343Z LD [M] net/6lowpan/nhc_ghc_ext_route.ko
2025-10-02T16:37:41.0525551Z LD [M] net/6lowpan/nhc_ghc_icmpv6.ko
2025-10-02T16:37:41.0558390Z LD [M] net/6lowpan/nhc_ghc_udp.ko
2025-10-02T16:37:41.0601012Z LD [M] net/6lowpan/nhc_hop.ko
2025-10-02T16:37:41.0637430Z LD [M] net/6lowpan/nhc_ipv6.ko
2025-10-02T16:37:41.0662698Z LD [M] net/6lowpan/nhc_mobility.ko
2025-10-02T16:37:41.0702366Z LD [M] net/6lowpan/nhc_routing.ko
2025-10-02T16:37:41.0738834Z LD [M] net/6lowpan/nhc_udp.ko
2025-10-02T16:37:41.0770227Z LD [M] net/802/fddi.ko
2025-10-02T16:37:41.0826480Z LD [M] net/802/garp.ko
2025-10-02T16:37:41.0843855Z LD [M] net/802/mrp.ko
2025-10-02T16:37:41.0893855Z LD [M] net/802/p8022.ko
2025-10-02T16:37:41.0948994Z LD [M] net/802/psnap.ko
2025-10-02T16:37:41.0989372Z LD [M] net/802/stp.ko
2025-10-02T16:37:41.1013951Z LD [M] net/8021q/8021q.ko
2025-10-02T16:37:41.1057712Z LD [M] net/9p/9pnet.ko
2025-10-02T16:37:41.1096746Z LD [M] net/9p/9pnet_rdma.ko
2025-10-02T16:37:41.1119887Z LD [M] net/9p/9pnet_virtio.ko
2025-10-02T16:37:41.1251264Z LD [M] net/9p/9pnet_xen.ko
2025-10-02T16:37:41.1264562Z LD [M] net/appletalk/appletalk.ko
2025-10-02T16:37:41.1274655Z LD [M] net/atm/atm.ko
2025-10-02T16:37:41.1335663Z LD [M] net/atm/br2684.ko
2025-10-02T16:37:41.1373732Z LD [M] net/atm/clip.ko
2025-10-02T16:37:41.1542213Z LD [M] net/atm/lec.ko
2025-10-02T16:37:41.1565990Z LD [M] net/atm/mpoa.ko
2025-10-02T16:37:41.1579168Z LD [M] net/atm/pppoatm.ko
2025-10-02T16:37:41.1795976Z LD [M] net/ax25/ax25.ko
2025-10-02T16:37:41.1816911Z LD [M] net/bluetooth/bluetooth.ko
2025-10-02T16:37:41.1850316Z LD [M] net/batman-adv/batman-adv.ko
2025-10-02T16:37:41.1862810Z LD [M] net/bluetooth/bluetooth_6lowpan.ko
2025-10-02T16:37:41.2048292Z LD [M] net/bluetooth/bnep/bnep.ko
2025-10-02T16:37:41.2243835Z LD [M] net/bluetooth/cmtp/cmtp.ko
2025-10-02T16:37:41.2427474Z LD [M] net/bluetooth/hidp/hidp.ko
2025-10-02T16:37:41.2580404Z LD [M] net/bluetooth/rfcomm/rfcomm.ko
2025-10-02T16:37:41.2674315Z LD [M] net/bridge/br_netfilter.ko
2025-10-02T16:37:41.2716018Z LD [M] net/bridge/bridge.ko
2025-10-02T16:37:41.2884132Z LD [M] net/bridge/netfilter/ebt_802_3.ko
2025-10-02T16:37:41.2890538Z LD [M] net/bridge/netfilter/ebt_among.ko
2025-10-02T16:37:41.3023397Z LD [M] net/bridge/netfilter/ebt_arp.ko
2025-10-02T16:37:41.3069158Z LD [M] net/bridge/netfilter/ebt_arpreply.ko
2025-10-02T16:37:41.3117777Z LD [M] net/bridge/netfilter/ebt_dnat.ko
2025-10-02T16:37:41.3175181Z LD [M] net/bridge/netfilter/ebt_ip.ko
2025-10-02T16:37:41.3243437Z LD [M] net/bridge/netfilter/ebt_ip6.ko
2025-10-02T16:37:41.3271895Z LD [M] net/bridge/netfilter/ebt_limit.ko
2025-10-02T16:37:41.3301458Z LD [M] net/bridge/netfilter/ebt_log.ko
2025-10-02T16:37:41.3341533Z LD [M] net/bridge/netfilter/ebt_mark.ko
2025-10-02T16:37:41.3414850Z LD [M] net/bridge/netfilter/ebt_mark_m.ko
2025-10-02T16:37:41.3415761Z LD [M] net/bridge/netfilter/ebt_nflog.ko
2025-10-02T16:37:41.3452409Z LD [M] net/bridge/netfilter/ebt_pkttype.ko
2025-10-02T16:37:41.3492667Z LD [M] net/bridge/netfilter/ebt_redirect.ko
2025-10-02T16:37:41.3548895Z LD [M] net/bridge/netfilter/ebt_snat.ko
2025-10-02T16:37:41.3585736Z LD [M] net/bridge/netfilter/ebt_stp.ko
2025-10-02T16:37:41.3586624Z LD [M] net/bridge/netfilter/ebt_vlan.ko
2025-10-02T16:37:41.3646161Z LD [M] net/bridge/netfilter/ebtable_broute.ko
2025-10-02T16:37:41.3697330Z LD [M] net/bridge/netfilter/ebtable_filter.ko
2025-10-02T16:37:41.3730246Z LD [M] net/bridge/netfilter/ebtable_nat.ko
2025-10-02T16:37:41.3751989Z LD [M] net/bridge/netfilter/ebtables.ko
2025-10-02T16:37:41.3828884Z LD [M] net/bridge/netfilter/nf_conntrack_bridge.ko
2025-10-02T16:37:41.3836695Z LD [M] net/bridge/netfilter/nf_log_bridge.ko
2025-10-02T16:37:41.3851707Z LD [M] net/bridge/netfilter/nft_meta_bridge.ko
2025-10-02T16:37:41.3883870Z LD [M] net/bridge/netfilter/nft_reject_bridge.ko
2025-10-02T16:37:41.3982069Z LD [M] net/can/can-bcm.ko
2025-10-02T16:37:41.3985794Z LD [M] net/can/can-gw.ko
2025-10-02T16:37:41.4011765Z LD [M] net/can/can-isotp.ko
2025-10-02T16:37:41.4037469Z LD [M] net/can/can-raw.ko
2025-10-02T16:37:41.4065134Z LD [M] net/can/can.ko
2025-10-02T16:37:41.4135253Z LD [M] net/can/j1939/can-j1939.ko
2025-10-02T16:37:41.4142124Z LD [M] net/ceph/libceph.ko
2025-10-02T16:37:41.4188061Z LD [M] net/core/failover.ko
2025-10-02T16:37:41.4203934Z LD [M] net/core/pktgen.ko
2025-10-02T16:37:41.4268826Z LD [M] net/dns_resolver/dns_resolver.ko
2025-10-02T16:37:41.4327444Z LD [M] net/dsa/dsa_core.ko
2025-10-02T16:37:41.4429839Z LD [M] net/dsa/tag_8021q.ko
2025-10-02T16:37:41.4460366Z LD [M] net/dsa/tag_ar9331.ko
2025-10-02T16:37:41.4508058Z LD [M] net/dsa/tag_brcm.ko
2025-10-02T16:37:41.4644640Z LD [M] net/dsa/tag_dsa.ko
2025-10-02T16:37:41.4690633Z LD [M] net/dsa/tag_gswip.ko
2025-10-02T16:37:41.4705477Z LD [M] net/dsa/tag_edsa.ko
2025-10-02T16:37:41.4828536Z LD [M] net/dsa/tag_ksz.ko
2025-10-02T16:37:41.4892508Z LD [M] net/dsa/tag_lan9303.ko
2025-10-02T16:37:41.4904329Z LD [M] net/dsa/tag_mtk.ko
2025-10-02T16:37:41.4911650Z LD [M] net/dsa/tag_ocelot.ko
2025-10-02T16:37:41.5055124Z LD [M] net/dsa/tag_qca.ko
2025-10-02T16:37:41.5066050Z LD [M] net/dsa/tag_rtl4_a.ko
2025-10-02T16:37:41.5100256Z LD [M] net/dsa/tag_sja1105.ko
2025-10-02T16:37:41.5101174Z LD [M] net/dsa/tag_trailer.ko
2025-10-02T16:37:41.5115592Z LD [M] net/hsr/hsr.ko
2025-10-02T16:37:41.5207008Z LD [M] net/ieee802154/6lowpan/ieee802154_6lowpan.ko
2025-10-02T16:37:41.5222198Z LD [M] net/ieee802154/ieee802154.ko
2025-10-02T16:37:41.5238354Z LD [M] net/ieee802154/ieee802154_socket.ko
2025-10-02T16:37:41.5270808Z LD [M] net/ife/ife.ko
2025-10-02T16:37:41.5389383Z LD [M] net/ipv4/ah4.ko
2025-10-02T16:37:41.5401709Z LD [M] net/ipv4/esp4.ko
2025-10-02T16:37:41.5415514Z LD [M] net/ipv4/esp4_offload.ko
2025-10-02T16:37:41.5433576Z LD [M] net/ipv4/fou.ko
2025-10-02T16:37:41.5602465Z LD [M] net/ipv4/gre.ko
2025-10-02T16:37:41.5620729Z LD [M] net/ipv4/inet_diag.ko
2025-10-02T16:37:41.5660570Z LD [M] net/ipv4/ip_gre.ko
2025-10-02T16:37:41.5675037Z LD [M] net/ipv4/ip_tunnel.ko
2025-10-02T16:37:41.5676084Z LD [M] net/ipv4/ip_vti.ko
2025-10-02T16:37:41.5789283Z LD [M] net/ipv4/ipcomp.ko
2025-10-02T16:37:41.5825717Z LD [M] net/ipv4/ipip.ko
2025-10-02T16:37:41.5850535Z LD [M] net/ipv4/netfilter/arp_tables.ko
2025-10-02T16:37:41.5853373Z LD [M] net/ipv4/netfilter/arpt_mangle.ko
2025-10-02T16:37:41.5932883Z LD [M] net/ipv4/netfilter/arptable_filter.ko
2025-10-02T16:37:41.5949026Z LD [M] net/ipv4/netfilter/ip_tables.ko
2025-10-02T16:37:41.5990053Z LD [M] net/ipv4/netfilter/ipt_CLUSTERIP.ko
2025-10-02T16:37:41.6010837Z LD [M] net/ipv4/netfilter/ipt_ECN.ko
2025-10-02T16:37:41.6059306Z LD [M] net/ipv4/netfilter/ipt_REJECT.ko
2025-10-02T16:37:41.6060725Z LD [M] net/ipv4/netfilter/ipt_SYNPROXY.ko
2025-10-02T16:37:41.6191699Z LD [M] net/ipv4/netfilter/ipt_ah.ko
2025-10-02T16:37:41.6220318Z LD [M] net/ipv4/netfilter/ipt_rpfilter.ko
2025-10-02T16:37:41.6221341Z LD [M] net/ipv4/netfilter/iptable_filter.ko
2025-10-02T16:37:41.6233934Z LD [M] net/ipv4/netfilter/iptable_mangle.ko
2025-10-02T16:37:41.6254591Z LD [M] net/ipv4/netfilter/iptable_nat.ko
2025-10-02T16:37:41.6336544Z LD [M] net/ipv4/netfilter/iptable_raw.ko
2025-10-02T16:37:41.6397603Z LD [M] net/ipv4/netfilter/nf_defrag_ipv4.ko
2025-10-02T16:37:41.6430693Z LD [M] net/ipv4/netfilter/nf_dup_ipv4.ko
2025-10-02T16:37:41.6431849Z LD [M] net/ipv4/netfilter/nf_flow_table_ipv4.ko
2025-10-02T16:37:41.6432985Z LD [M] net/ipv4/netfilter/iptable_security.ko
2025-10-02T16:37:41.6502661Z LD [M] net/ipv4/netfilter/nf_log_arp.ko
2025-10-02T16:37:41.6550713Z LD [M] net/ipv4/netfilter/nf_log_ipv4.ko
2025-10-02T16:37:41.6561753Z LD [M] net/ipv4/netfilter/nf_nat_h323.ko
2025-10-02T16:37:41.6568350Z LD [M] net/ipv4/netfilter/nf_nat_pptp.ko
2025-10-02T16:37:41.6578212Z LD [M] net/ipv4/netfilter/nf_nat_snmp_basic.ko
2025-10-02T16:37:41.6666751Z LD [M] net/ipv4/netfilter/nf_reject_ipv4.ko
2025-10-02T16:37:41.6694223Z LD [M] net/ipv4/netfilter/nf_socket_ipv4.ko
2025-10-02T16:37:41.6737079Z LD [M] net/ipv4/netfilter/nft_dup_ipv4.ko
2025-10-02T16:37:41.6745117Z LD [M] net/ipv4/netfilter/nf_tproxy_ipv4.ko
2025-10-02T16:37:41.6773583Z LD [M] net/ipv4/netfilter/nft_fib_ipv4.ko
2025-10-02T16:37:41.6860100Z LD [M] net/ipv4/netfilter/nft_reject_ipv4.ko
2025-10-02T16:37:41.6861932Z LD [M] net/ipv4/raw_diag.ko
2025-10-02T16:37:41.6894854Z LD [M] net/ipv4/tcp_bbr.ko
2025-10-02T16:37:41.6896590Z LD [M] net/ipv4/tcp_bic.ko
2025-10-02T16:37:41.6961165Z LD [M] net/ipv4/tcp_cdg.ko
2025-10-02T16:37:41.6999083Z LD [M] net/ipv4/tcp_dctcp.ko
2025-10-02T16:37:41.7044763Z LD [M] net/ipv4/tcp_diag.ko
2025-10-02T16:37:41.7066718Z LD [M] net/ipv4/tcp_highspeed.ko
2025-10-02T16:37:41.7094121Z LD [M] net/ipv4/tcp_htcp.ko
2025-10-02T16:37:41.7109908Z LD [M] net/ipv4/tcp_hybla.ko
2025-10-02T16:37:41.7169073Z LD [M] net/ipv4/tcp_illinois.ko
2025-10-02T16:37:41.7212248Z LD [M] net/ipv4/tcp_lp.ko
2025-10-02T16:37:41.7244983Z LD [M] net/ipv4/tcp_nv.ko
2025-10-02T16:37:41.7263058Z LD [M] net/ipv4/tcp_scalable.ko
2025-10-02T16:37:41.7285195Z LD [M] net/ipv4/tcp_vegas.ko
2025-10-02T16:37:41.7360361Z LD [M] net/ipv4/tcp_veno.ko
2025-10-02T16:37:41.7368715Z LD [M] net/ipv4/tcp_westwood.ko
2025-10-02T16:37:41.7390400Z LD [M] net/ipv4/tcp_yeah.ko
2025-10-02T16:37:41.7417882Z LD [M] net/ipv4/tunnel4.ko
2025-10-02T16:37:41.7453161Z LD [M] net/ipv4/udp_diag.ko
2025-10-02T16:37:41.7514935Z LD [M] net/ipv4/udp_tunnel.ko
2025-10-02T16:37:41.7529211Z LD [M] net/ipv4/xfrm4_tunnel.ko
2025-10-02T16:37:41.7564619Z LD [M] net/ipv6/ah6.ko
2025-10-02T16:37:41.7601448Z LD [M] net/ipv6/esp6.ko
2025-10-02T16:37:41.7650877Z LD [M] net/ipv6/esp6_offload.ko
2025-10-02T16:37:41.7670372Z LD [M] net/ipv6/fou6.ko
2025-10-02T16:37:41.7714977Z LD [M] net/ipv6/ila/ila.ko
2025-10-02T16:37:41.7731214Z LD [M] net/ipv6/ip6_gre.ko
2025-10-02T16:37:41.7810286Z LD [M] net/ipv6/ip6_tunnel.ko
2025-10-02T16:37:41.7818207Z LD [M] net/ipv6/ip6_udp_tunnel.ko
2025-10-02T16:37:41.7827550Z LD [M] net/ipv6/ip6_vti.ko
2025-10-02T16:37:41.7976508Z LD [M] net/ipv6/ipcomp6.ko
2025-10-02T16:37:41.7980845Z LD [M] net/ipv6/mip6.ko
2025-10-02T16:37:41.8010565Z LD [M] net/ipv6/netfilter/ip6_tables.ko
2025-10-02T16:37:41.8047921Z LD [M] net/ipv6/netfilter/ip6t_REJECT.ko
2025-10-02T16:37:41.8049107Z LD [M] net/ipv6/netfilter/ip6t_NPT.ko
2025-10-02T16:37:41.8140684Z LD [M] net/ipv6/netfilter/ip6t_SYNPROXY.ko
2025-10-02T16:37:41.8151385Z LD [M] net/ipv6/netfilter/ip6t_ah.ko
2025-10-02T16:37:41.8191587Z LD [M] net/ipv6/netfilter/ip6t_eui64.ko
2025-10-02T16:37:41.8200301Z LD [M] net/ipv6/netfilter/ip6t_frag.ko
2025-10-02T16:37:41.8221440Z LD [M] net/ipv6/netfilter/ip6t_hbh.ko
2025-10-02T16:37:41.8312501Z LD [M] net/ipv6/netfilter/ip6t_ipv6header.ko
2025-10-02T16:37:41.8340282Z LD [M] net/ipv6/netfilter/ip6t_rpfilter.ko
2025-10-02T16:37:41.8341496Z LD [M] net/ipv6/netfilter/ip6t_mh.ko
2025-10-02T16:37:41.8357486Z LD [M] net/ipv6/netfilter/ip6t_rt.ko
2025-10-02T16:37:41.8457612Z LD [M] net/ipv6/netfilter/ip6t_srh.ko
2025-10-02T16:37:41.8490142Z LD [M] net/ipv6/netfilter/ip6table_filter.ko
2025-10-02T16:37:41.8505208Z LD [M] net/ipv6/netfilter/ip6table_mangle.ko
2025-10-02T16:37:41.8510854Z LD [M] net/ipv6/netfilter/ip6table_nat.ko
2025-10-02T16:37:41.8531948Z LD [M] net/ipv6/netfilter/ip6table_raw.ko
2025-10-02T16:37:41.8660389Z LD [M] net/ipv6/netfilter/ip6table_security.ko
2025-10-02T16:37:41.8661613Z LD [M] net/ipv6/netfilter/nf_defrag_ipv6.ko
2025-10-02T16:37:41.8665733Z LD [M] net/ipv6/netfilter/nf_dup_ipv6.ko
2025-10-02T16:37:41.8670101Z LD [M] net/ipv6/netfilter/nf_flow_table_ipv6.ko
2025-10-02T16:37:41.8701436Z LD [M] net/ipv6/netfilter/nf_log_ipv6.ko
2025-10-02T16:37:41.8779196Z LD [M] net/ipv6/netfilter/nf_reject_ipv6.ko
2025-10-02T16:37:41.8817920Z LD [M] net/ipv6/netfilter/nf_socket_ipv6.ko
2025-10-02T16:37:41.8818818Z LD [M] net/ipv6/netfilter/nf_tproxy_ipv6.ko
2025-10-02T16:37:41.8872575Z LD [M] net/ipv6/netfilter/nft_fib_ipv6.ko
2025-10-02T16:37:41.8886906Z LD [M] net/ipv6/netfilter/nft_dup_ipv6.ko
2025-10-02T16:37:41.8927686Z LD [M] net/ipv6/netfilter/nft_reject_ipv6.ko
2025-10-02T16:37:41.8973770Z LD [M] net/ipv6/sit.ko
2025-10-02T16:37:41.8974889Z LD [M] net/ipv6/tunnel6.ko
2025-10-02T16:37:41.9016787Z LD [M] net/ipv6/xfrm6_tunnel.ko
2025-10-02T16:37:41.9060039Z LD [M] net/kcm/kcm.ko
2025-10-02T16:37:41.9078849Z LD [M] net/key/af_key.ko
2025-10-02T16:37:41.9155673Z LD [M] net/l2tp/l2tp_core.ko
2025-10-02T16:37:41.9188305Z LD [M] net/l2tp/l2tp_debugfs.ko
2025-10-02T16:37:41.9208020Z LD [M] net/l2tp/l2tp_eth.ko
2025-10-02T16:37:41.9281265Z LD [M] net/l2tp/l2tp_ip.ko
2025-10-02T16:37:41.9292347Z LD [M] net/l2tp/l2tp_ip6.ko
2025-10-02T16:37:41.9360967Z LD [M] net/l2tp/l2tp_netlink.ko
2025-10-02T16:37:41.9388721Z LD [M] net/l2tp/l2tp_ppp.ko
2025-10-02T16:37:41.9394939Z LD [M] net/llc/llc.ko
2025-10-02T16:37:41.9494594Z LD [M] net/llc/llc2.ko
2025-10-02T16:37:41.9532025Z LD [M] net/mac80211/mac80211.ko
2025-10-02T16:37:41.9556975Z LD [M] net/mac802154/mac802154.ko
2025-10-02T16:37:41.9587323Z LD [M] net/mpls/mpls_gso.ko
2025-10-02T16:37:41.9600279Z LD [M] net/mpls/mpls_iptunnel.ko
2025-10-02T16:37:41.9775378Z LD [M] net/mpls/mpls_router.ko
2025-10-02T16:37:41.9783682Z LD [M] net/mptcp/mptcp_diag.ko
2025-10-02T16:37:41.9974037Z LD [M] net/netfilter/ipset/ip_set.ko
2025-10-02T16:37:42.0018248Z LD [M] net/netfilter/ipset/ip_set_bitmap_ip.ko
2025-10-02T16:37:42.0054635Z LD [M] net/netfilter/ipset/ip_set_bitmap_ipmac.ko
2025-10-02T16:37:42.0097684Z LD [M] net/netfilter/ipset/ip_set_bitmap_port.ko
2025-10-02T16:37:42.0194342Z LD [M] net/netfilter/ipset/ip_set_hash_ip.ko
2025-10-02T16:37:42.0234901Z LD [M] net/netfilter/ipset/ip_set_hash_ipmac.ko
2025-10-02T16:37:42.0261118Z LD [M] net/netfilter/ipset/ip_set_hash_ipmark.ko
2025-10-02T16:37:42.0298766Z LD [M] net/netfilter/ipset/ip_set_hash_ipport.ko
2025-10-02T16:37:42.0426915Z LD [M] net/netfilter/ipset/ip_set_hash_ipportip.ko
2025-10-02T16:37:42.0506191Z LD [M] net/netfilter/ipset/ip_set_hash_ipportnet.ko
2025-10-02T16:37:42.0522293Z LD [M] net/netfilter/ipset/ip_set_hash_mac.ko
2025-10-02T16:37:42.0604896Z LD [M] net/netfilter/ipset/ip_set_hash_net.ko
2025-10-02T16:37:42.0640856Z LD [M] net/netfilter/ipset/ip_set_hash_netiface.ko
2025-10-02T16:37:42.0715417Z LD [M] net/netfilter/ipset/ip_set_hash_netnet.ko
2025-10-02T16:37:42.0758661Z LD [M] net/netfilter/ipset/ip_set_hash_netport.ko
2025-10-02T16:37:42.0825372Z LD [M] net/netfilter/ipset/ip_set_hash_netportnet.ko
2025-10-02T16:37:42.0854096Z LD [M] net/netfilter/ipset/ip_set_list_set.ko
2025-10-02T16:37:42.0940075Z LD [M] net/netfilter/ipvs/ip_vs.ko
2025-10-02T16:37:42.0972464Z LD [M] net/netfilter/ipvs/ip_vs_dh.ko
2025-10-02T16:37:42.1035095Z LD [M] net/netfilter/ipvs/ip_vs_fo.ko
2025-10-02T16:37:42.1043247Z LD [M] net/netfilter/ipvs/ip_vs_ftp.ko
2025-10-02T16:37:42.1131550Z LD [M] net/netfilter/ipvs/ip_vs_lblc.ko
2025-10-02T16:37:42.1190141Z LD [M] net/netfilter/ipvs/ip_vs_lblcr.ko
2025-10-02T16:37:42.1193637Z LD [M] net/netfilter/ipvs/ip_vs_lc.ko
2025-10-02T16:37:42.1282262Z LD [M] net/netfilter/ipvs/ip_vs_mh.ko
2025-10-02T16:37:42.1326796Z LD [M] net/netfilter/ipvs/ip_vs_nq.ko
2025-10-02T16:37:42.1342371Z LD [M] net/netfilter/ipvs/ip_vs_ovf.ko
2025-10-02T16:37:42.1480174Z LD [M] net/netfilter/ipvs/ip_vs_pe_sip.ko
2025-10-02T16:37:42.1494453Z LD [M] net/netfilter/ipvs/ip_vs_rr.ko
2025-10-02T16:37:42.1528876Z LD [M] net/netfilter/ipvs/ip_vs_sed.ko
2025-10-02T16:37:42.1783687Z LD [M] net/netfilter/ipvs/ip_vs_sh.ko
2025-10-02T16:37:42.1841777Z LD [M] net/netfilter/ipvs/ip_vs_wrr.ko
2025-10-02T16:37:42.1846158Z LD [M] net/netfilter/ipvs/ip_vs_wlc.ko
2025-10-02T16:37:42.1883434Z LD [M] net/netfilter/nf_conncount.ko
2025-10-02T16:37:42.1960909Z LD [M] net/netfilter/nf_conntrack.ko
2025-10-02T16:37:42.2012448Z LD [M] net/netfilter/nf_conntrack_amanda.ko
2025-10-02T16:37:42.2038457Z LD [M] net/netfilter/nf_conntrack_broadcast.ko
2025-10-02T16:37:42.2123105Z LD [M] net/netfilter/nf_conntrack_ftp.ko
2025-10-02T16:37:42.2209314Z LD [M] net/netfilter/nf_conntrack_h323.ko
2025-10-02T16:37:42.2239659Z LD [M] net/netfilter/nf_conntrack_irc.ko
2025-10-02T16:37:42.2323945Z LD [M] net/netfilter/nf_conntrack_netbios_ns.ko
2025-10-02T16:37:42.2407980Z LD [M] net/netfilter/nf_conntrack_netlink.ko
2025-10-02T16:37:42.2429862Z LD [M] net/netfilter/nf_conntrack_pptp.ko
2025-10-02T16:37:42.2480215Z LD [M] net/netfilter/nf_conntrack_sane.ko
2025-10-02T16:37:42.2598135Z LD [M] net/netfilter/nf_conntrack_sip.ko
2025-10-02T16:37:42.2621634Z LD [M] net/netfilter/nf_conntrack_snmp.ko
2025-10-02T16:37:42.2675264Z LD [M] net/netfilter/nf_conntrack_tftp.ko
2025-10-02T16:37:42.2770879Z LD [M] net/netfilter/nf_dup_netdev.ko
2025-10-02T16:37:42.2782263Z LD [M] net/netfilter/nf_flow_table.ko
2025-10-02T16:37:42.2863018Z LD [M] net/netfilter/nf_flow_table_inet.ko
2025-10-02T16:37:42.2897756Z LD [M] net/netfilter/nf_log_common.ko
2025-10-02T16:37:42.2930701Z LD [M] net/netfilter/nf_log_netdev.ko
2025-10-02T16:37:42.2940860Z LD [M] net/netfilter/nf_nat.ko
2025-10-02T16:37:42.3014913Z LD [M] net/netfilter/nf_nat_amanda.ko
2025-10-02T16:37:42.3034975Z LD [M] net/netfilter/nf_nat_ftp.ko
2025-10-02T16:37:42.3074942Z LD [M] net/netfilter/nf_nat_irc.ko
2025-10-02T16:37:42.3082413Z LD [M] net/netfilter/nf_nat_sip.ko
2025-10-02T16:37:42.3169400Z LD [M] net/netfilter/nf_nat_tftp.ko
2025-10-02T16:37:42.3200924Z LD [M] net/netfilter/nf_synproxy_core.ko
2025-10-02T16:37:42.3223054Z LD [M] net/netfilter/nf_tables.ko
2025-10-02T16:37:42.3261611Z LD [M] net/netfilter/nfnetlink.ko
2025-10-02T16:37:42.3270980Z LD [M] net/netfilter/nfnetlink_acct.ko
2025-10-02T16:37:42.3308250Z LD [M] net/netfilter/nfnetlink_cthelper.ko
2025-10-02T16:37:42.3471361Z LD [M] net/netfilter/nfnetlink_cttimeout.ko
2025-10-02T16:37:42.3492296Z LD [M] net/netfilter/nfnetlink_osf.ko
2025-10-02T16:37:42.3500059Z LD [M] net/netfilter/nfnetlink_log.ko
2025-10-02T16:37:42.3512003Z LD [M] net/netfilter/nfnetlink_queue.ko
2025-10-02T16:37:42.3640748Z LD [M] net/netfilter/nft_chain_nat.ko
2025-10-02T16:37:42.3641742Z LD [M] net/netfilter/nft_compat.ko
2025-10-02T16:37:42.3710782Z LD [M] net/netfilter/nft_connlimit.ko
2025-10-02T16:37:42.3729416Z LD [M] net/netfilter/nft_counter.ko
2025-10-02T16:37:42.3774968Z LD [M] net/netfilter/nft_ct.ko
2025-10-02T16:37:42.3801129Z LD [M] net/netfilter/nft_dup_netdev.ko
2025-10-02T16:37:42.3874431Z LD [M] net/netfilter/nft_fib.ko
2025-10-02T16:37:42.3877139Z LD [M] net/netfilter/nft_fib_inet.ko
2025-10-02T16:37:42.4005406Z LD [M] net/netfilter/nft_fib_netdev.ko
2025-10-02T16:37:42.4007734Z LD [M] net/netfilter/nft_flow_offload.ko
2025-10-02T16:37:42.4051798Z LD [M] net/netfilter/nft_fwd_netdev.ko
2025-10-02T16:37:42.4064866Z LD [M] net/netfilter/nft_hash.ko
2025-10-02T16:37:42.4146433Z LD [M] net/netfilter/nft_limit.ko
2025-10-02T16:37:42.4159235Z LD [M] net/netfilter/nft_log.ko
2025-10-02T16:37:42.4181051Z LD [M] net/netfilter/nft_masq.ko
2025-10-02T16:37:42.4215597Z LD [M] net/netfilter/nft_nat.ko
2025-10-02T16:37:42.4225023Z LD [M] net/netfilter/nft_numgen.ko
2025-10-02T16:37:42.4311283Z LD [M] net/netfilter/nft_objref.ko
2025-10-02T16:37:42.4327229Z LD [M] net/netfilter/nft_osf.ko
2025-10-02T16:37:42.4350273Z LD [M] net/netfilter/nft_queue.ko
2025-10-02T16:37:42.4378650Z LD [M] net/netfilter/nft_quota.ko
2025-10-02T16:37:42.4392130Z LD [M] net/netfilter/nft_redir.ko
2025-10-02T16:37:42.4457216Z LD [M] net/netfilter/nft_reject.ko
2025-10-02T16:37:42.4483091Z LD [M] net/netfilter/nft_reject_inet.ko
2025-10-02T16:37:42.4523012Z LD [M] net/netfilter/nft_socket.ko
2025-10-02T16:37:42.4550689Z LD [M] net/netfilter/nft_synproxy.ko
2025-10-02T16:37:42.4555863Z LD [M] net/netfilter/nft_tproxy.ko
2025-10-02T16:37:42.4608303Z LD [M] net/netfilter/nft_tunnel.ko
2025-10-02T16:37:42.4647852Z LD [M] net/netfilter/nft_xfrm.ko
2025-10-02T16:37:42.4675571Z LD [M] net/netfilter/x_tables.ko
2025-10-02T16:37:42.4711097Z LD [M] net/netfilter/xt_AUDIT.ko
2025-10-02T16:37:42.4730658Z LD [M] net/netfilter/xt_CHECKSUM.ko
2025-10-02T16:37:42.4802466Z LD [M] net/netfilter/xt_CLASSIFY.ko
2025-10-02T16:37:42.4807745Z LD [M] net/netfilter/xt_CONNSECMARK.ko
2025-10-02T16:37:42.4873410Z LD [M] net/netfilter/xt_CT.ko
2025-10-02T16:37:42.4883435Z LD [M] net/netfilter/xt_DSCP.ko
2025-10-02T16:37:42.4912146Z LD [M] net/netfilter/xt_HL.ko
2025-10-02T16:37:42.4962336Z LD [M] net/netfilter/xt_HMARK.ko
2025-10-02T16:37:42.4976036Z LD [M] net/netfilter/xt_IDLETIMER.ko
2025-10-02T16:37:42.5038008Z LD [M] net/netfilter/xt_LED.ko
2025-10-02T16:37:42.5043142Z LD [M] net/netfilter/xt_LOG.ko
2025-10-02T16:37:42.5094060Z LD [M] net/netfilter/xt_MASQUERADE.ko
2025-10-02T16:37:42.5180280Z LD [M] net/netfilter/xt_NETMAP.ko
2025-10-02T16:37:42.5184678Z LD [M] net/netfilter/xt_NFLOG.ko
2025-10-02T16:37:42.5186227Z LD [M] net/netfilter/xt_NFQUEUE.ko
2025-10-02T16:37:42.5197650Z LD [M] net/netfilter/xt_RATEEST.ko
2025-10-02T16:37:42.5270911Z LD [M] net/netfilter/xt_REDIRECT.ko
2025-10-02T16:37:42.5328897Z LD [M] net/netfilter/xt_SECMARK.ko
2025-10-02T16:37:42.5338646Z LD [M] net/netfilter/xt_TCPMSS.ko
2025-10-02T16:37:42.5358856Z LD [M] net/netfilter/xt_TCPOPTSTRIP.ko
2025-10-02T16:37:42.5375549Z LD [M] net/netfilter/xt_TEE.ko
2025-10-02T16:37:42.5438187Z LD [M] net/netfilter/xt_TPROXY.ko
2025-10-02T16:37:42.5491358Z LD [M] net/netfilter/xt_TRACE.ko
2025-10-02T16:37:42.5508334Z LD [M] net/netfilter/xt_addrtype.ko
2025-10-02T16:37:42.5520079Z LD [M] net/netfilter/xt_bpf.ko
2025-10-02T16:37:42.5533495Z LD [M] net/netfilter/xt_cgroup.ko
2025-10-02T16:37:42.5613211Z LD [M] net/netfilter/xt_cluster.ko
2025-10-02T16:37:42.5622152Z LD [M] net/netfilter/xt_comment.ko
2025-10-02T16:37:42.5651234Z LD [M] net/netfilter/xt_connbytes.ko
2025-10-02T16:37:42.5684186Z LD [M] net/netfilter/xt_connlabel.ko
2025-10-02T16:37:42.5701217Z LD [M] net/netfilter/xt_connlimit.ko
2025-10-02T16:37:42.5770712Z LD [M] net/netfilter/xt_connmark.ko
2025-10-02T16:37:42.5785384Z LD [M] net/netfilter/xt_conntrack.ko
2025-10-02T16:37:42.5800920Z LD [M] net/netfilter/xt_cpu.ko
2025-10-02T16:37:42.5850175Z LD [M] net/netfilter/xt_dccp.ko
2025-10-02T16:37:42.5874391Z LD [M] net/netfilter/xt_devgroup.ko
2025-10-02T16:37:42.5913383Z LD [M] net/netfilter/xt_dscp.ko
2025-10-02T16:37:42.5938948Z LD [M] net/netfilter/xt_ecn.ko
2025-10-02T16:37:42.5971455Z LD [M] net/netfilter/xt_esp.ko
2025-10-02T16:37:42.6027955Z LD [M] net/netfilter/xt_hashlimit.ko
2025-10-02T16:37:42.6032002Z LD [M] net/netfilter/xt_helper.ko
2025-10-02T16:37:42.6087423Z LD [M] net/netfilter/xt_hl.ko
2025-10-02T16:37:42.6117090Z LD [M] net/netfilter/xt_ipcomp.ko
2025-10-02T16:37:42.6126619Z LD [M] net/netfilter/xt_iprange.ko
2025-10-02T16:37:42.6174222Z LD [M] net/netfilter/xt_ipvs.ko
2025-10-02T16:37:42.6234644Z LD [M] net/netfilter/xt_l2tp.ko
2025-10-02T16:37:42.6252664Z LD [M] net/netfilter/xt_length.ko
2025-10-02T16:37:42.6281032Z LD [M] net/netfilter/xt_limit.ko
2025-10-02T16:37:42.6291872Z LD [M] net/netfilter/xt_mac.ko
2025-10-02T16:37:42.6346501Z LD [M] net/netfilter/xt_mark.ko
2025-10-02T16:37:42.6389068Z LD [M] net/netfilter/xt_multiport.ko
2025-10-02T16:37:42.6403486Z LD [M] net/netfilter/xt_nat.ko
2025-10-02T16:37:42.6408705Z LD [M] net/netfilter/xt_nfacct.ko
2025-10-02T16:37:42.6470312Z LD [M] net/netfilter/xt_osf.ko
2025-10-02T16:37:42.6495026Z LD [M] net/netfilter/xt_owner.ko
2025-10-02T16:37:42.6542996Z LD [M] net/netfilter/xt_physdev.ko
2025-10-02T16:37:42.6556625Z LD [M] net/netfilter/xt_pkttype.ko
2025-10-02T16:37:42.6571928Z LD [M] net/netfilter/xt_policy.ko
2025-10-02T16:37:42.6624789Z LD [M] net/netfilter/xt_quota.ko
2025-10-02T16:37:42.6653989Z LD [M] net/netfilter/xt_rateest.ko
2025-10-02T16:37:42.6698884Z LD [M] net/netfilter/xt_realm.ko
2025-10-02T16:37:42.6708124Z LD [M] net/netfilter/xt_recent.ko
2025-10-02T16:37:42.6739267Z LD [M] net/netfilter/xt_sctp.ko
2025-10-02T16:37:42.6771223Z LD [M] net/netfilter/xt_set.ko
2025-10-02T16:37:42.6813931Z LD [M] net/netfilter/xt_socket.ko
2025-10-02T16:37:42.6843510Z LD [M] net/netfilter/xt_state.ko
2025-10-02T16:37:42.6876169Z LD [M] net/netfilter/xt_statistic.ko
2025-10-02T16:37:42.6919285Z LD [M] net/netfilter/xt_string.ko
2025-10-02T16:37:42.6960104Z LD [M] net/netfilter/xt_tcpmss.ko
2025-10-02T16:37:42.6985462Z LD [M] net/netfilter/xt_tcpudp.ko
2025-10-02T16:37:42.7007910Z LD [M] net/netfilter/xt_time.ko
2025-10-02T16:37:42.7022491Z LD [M] net/netfilter/xt_u32.ko
2025-10-02T16:37:42.7060540Z LD [M] net/netlink/netlink_diag.ko
2025-10-02T16:37:42.7128571Z LD [M] net/netrom/netrom.ko
2025-10-02T16:37:42.7160525Z LD [M] net/nfc/hci/hci.ko
2025-10-02T16:37:42.7161563Z LD [M] net/nfc/nci/nci.ko
2025-10-02T16:37:42.7162455Z LD [M] net/nfc/nci/nci_spi.ko
2025-10-02T16:37:42.7226328Z LD [M] net/nfc/nci/nci_uart.ko
2025-10-02T16:37:42.7346119Z LD [M] net/nfc/nfc.ko
2025-10-02T16:37:42.7361009Z LD [M] net/nfc/nfc_digital.ko
2025-10-02T16:37:42.7389193Z LD [M] net/nsh/nsh.ko
2025-10-02T16:37:42.7536633Z LD [M] net/openvswitch/openvswitch.ko
2025-10-02T16:37:42.7553379Z LD [M] net/openvswitch/vport-geneve.ko
2025-10-02T16:37:42.7574276Z LD [M] net/openvswitch/vport-gre.ko
2025-10-02T16:37:42.7612321Z LD [M] net/openvswitch/vport-vxlan.ko
2025-10-02T16:37:42.7712600Z LD [M] net/packet/af_packet_diag.ko
2025-10-02T16:37:42.7732024Z LD [M] net/phonet/phonet.ko
2025-10-02T16:37:42.7747033Z LD [M] net/phonet/pn_pep.ko
2025-10-02T16:37:42.7861026Z LD [M] net/psample/psample.ko
2025-10-02T16:37:42.7865341Z LD [M] net/qrtr/qrtr-mhi.ko
2025-10-02T16:37:42.7938336Z LD [M] net/qrtr/qrtr-smd.ko
2025-10-02T16:37:42.8000029Z LD [M] net/qrtr/qrtr-tun.ko
2025-10-02T16:37:42.8039944Z LD [M] net/qrtr/qrtr.ko
2025-10-02T16:37:42.8070586Z LD [M] net/rds/rds.ko
2025-10-02T16:37:42.8074927Z LD [M] net/rds/rds_rdma.ko
2025-10-02T16:37:42.8150444Z LD [M] net/rfkill/rfkill-gpio.ko
2025-10-02T16:37:42.8151504Z LD [M] net/rds/rds_tcp.ko
2025-10-02T16:37:42.8316966Z LD [M] net/rfkill/rfkill.ko
2025-10-02T16:37:42.8336174Z LD [M] net/rose/rose.ko
2025-10-02T16:37:42.8530664Z LD [M] net/rxrpc/rxrpc.ko
2025-10-02T16:37:42.8576560Z LD [M] net/sched/act_bpf.ko
2025-10-02T16:37:42.8651921Z LD [M] net/sched/act_connmark.ko
2025-10-02T16:37:42.8892294Z LD [M] net/sched/act_csum.ko
2025-10-02T16:37:42.8920644Z LD [M] net/sched/act_ct.ko
2025-10-02T16:37:42.8928174Z LD [M] net/sched/act_ctinfo.ko
2025-10-02T16:37:42.9002278Z LD [M] net/sched/act_gact.ko
2025-10-02T16:37:42.9090585Z LD [M] net/sched/act_gate.ko
2025-10-02T16:37:42.9108621Z LD [M] net/sched/act_ife.ko
2025-10-02T16:37:42.9143352Z LD [M] net/sched/act_ipt.ko
2025-10-02T16:37:42.9156352Z LD [M] net/sched/act_meta_mark.ko
2025-10-02T16:37:42.9254260Z LD [M] net/sched/act_meta_skbprio.ko
2025-10-02T16:37:42.9259077Z LD [M] net/sched/act_meta_skbtcindex.ko
2025-10-02T16:37:42.9299302Z LD [M] net/sched/act_mirred.ko
2025-10-02T16:37:42.9307281Z LD [M] net/sched/act_mpls.ko
2025-10-02T16:37:42.9391216Z LD [M] net/sched/act_nat.ko
2025-10-02T16:37:42.9400964Z LD [M] net/sched/act_pedit.ko
2025-10-02T16:37:42.9441245Z LD [M] net/sched/act_police.ko
2025-10-02T16:37:42.9465195Z LD [M] net/sched/act_sample.ko
2025-10-02T16:37:42.9565428Z LD [M] net/sched/act_skbedit.ko
2025-10-02T16:37:42.9590659Z LD [M] net/sched/act_simple.ko
2025-10-02T16:37:42.9598661Z LD [M] net/sched/act_skbmod.ko
2025-10-02T16:37:42.9632103Z LD [M] net/sched/act_tunnel_key.ko
2025-10-02T16:37:42.9723085Z LD [M] net/sched/act_vlan.ko
2025-10-02T16:37:42.9746388Z LD [M] net/sched/cls_basic.ko
2025-10-02T16:37:42.9763941Z LD [M] net/sched/cls_bpf.ko
2025-10-02T16:37:42.9839776Z LD [M] net/sched/cls_cgroup.ko
2025-10-02T16:37:42.9913903Z LD [M] net/sched/cls_flow.ko
2025-10-02T16:37:42.9930427Z LD [M] net/sched/cls_flower.ko
2025-10-02T16:37:42.9957842Z LD [M] net/sched/cls_fw.ko
2025-10-02T16:37:42.9962710Z LD [M] net/sched/cls_matchall.ko
2025-10-02T16:37:43.0007787Z LD [M] net/sched/cls_route.ko
2025-10-02T16:37:43.0128988Z LD [M] net/sched/cls_u32.ko
2025-10-02T16:37:43.0162898Z LD [M] net/sched/em_canid.ko
2025-10-02T16:37:43.0220210Z LD [M] net/sched/em_cmp.ko
2025-10-02T16:37:43.0221474Z LD [M] net/sched/em_ipset.ko
2025-10-02T16:37:43.0235292Z LD [M] net/sched/em_ipt.ko
2025-10-02T16:37:43.0289108Z LD [M] net/sched/em_meta.ko
2025-10-02T16:37:43.0346955Z LD [M] net/sched/em_nbyte.ko
2025-10-02T16:37:43.0368670Z LD [M] net/sched/em_text.ko
2025-10-02T16:37:43.0397285Z LD [M] net/sched/em_u32.ko
2025-10-02T16:37:43.0402109Z LD [M] net/sched/sch_cake.ko
2025-10-02T16:37:43.0490284Z LD [M] net/sched/sch_cbs.ko
2025-10-02T16:37:43.0497873Z LD [M] net/sched/sch_choke.ko
2025-10-02T16:37:43.0530260Z LD [M] net/sched/sch_codel.ko
2025-10-02T16:37:43.0535949Z LD [M] net/sched/sch_drr.ko
2025-10-02T16:37:43.0621127Z LD [M] net/sched/sch_etf.ko
2025-10-02T16:37:43.0720297Z LD [M] net/sched/sch_ets.ko
2025-10-02T16:37:43.0730687Z LD [M] net/sched/sch_fq.ko
2025-10-02T16:37:43.0731720Z LD [M] net/sched/sch_fq_pie.ko
2025-10-02T16:37:43.0790862Z LD [M] net/sched/sch_hfsc.ko
2025-10-02T16:37:43.0791692Z LD [M] net/sched/sch_gred.ko
2025-10-02T16:37:43.0868596Z LD [M] net/sched/sch_hhf.ko
2025-10-02T16:37:43.0903090Z LD [M] net/sched/sch_htb.ko
2025-10-02T16:37:43.0914052Z LD [M] net/sched/sch_ingress.ko
2025-10-02T16:37:43.0965656Z LD [M] net/sched/sch_mqprio.ko
2025-10-02T16:37:43.0996295Z LD [M] net/sched/sch_multiq.ko
2025-10-02T16:37:43.1027826Z LD [M] net/sched/sch_netem.ko
2025-10-02T16:37:43.1051148Z LD [M] net/sched/sch_pie.ko
2025-10-02T16:37:43.1116491Z LD [M] net/sched/sch_plug.ko
2025-10-02T16:37:43.1122898Z LD [M] net/sched/sch_prio.ko
2025-10-02T16:37:43.1149793Z LD [M] net/sched/sch_qfq.ko
2025-10-02T16:37:43.1225541Z LD [M] net/sched/sch_red.ko
2025-10-02T16:37:43.1250580Z LD [M] net/sched/sch_sfb.ko
2025-10-02T16:37:43.1264227Z LD [M] net/sched/sch_sfq.ko
2025-10-02T16:37:43.1278855Z LD [M] net/sched/sch_skbprio.ko
2025-10-02T16:37:43.1347867Z LD [M] net/sched/sch_taprio.ko
2025-10-02T16:37:43.1403723Z LD [M] net/sched/sch_tbf.ko
2025-10-02T16:37:43.1416839Z LD [M] net/sched/sch_teql.ko
2025-10-02T16:37:43.1424962Z LD [M] net/sctp/sctp.ko
2025-10-02T16:37:43.1456505Z LD [M] net/sctp/sctp_diag.ko
2025-10-02T16:37:43.1570570Z LD [M] net/smc/smc.ko
2025-10-02T16:37:43.1591009Z LD [M] net/smc/smc_diag.ko
2025-10-02T16:37:43.1602030Z LD [M] net/sunrpc/auth_gss/auth_rpcgss.ko
2025-10-02T16:37:43.1621930Z LD [M] net/sunrpc/auth_gss/rpcsec_gss_krb5.ko
2025-10-02T16:37:43.1761591Z LD [M] net/sunrpc/sunrpc.ko
2025-10-02T16:37:43.1832966Z LD [M] net/sunrpc/xprtrdma/rpcrdma.ko
2025-10-02T16:37:43.2018354Z LD [M] net/tipc/diag.ko
2025-10-02T16:37:43.2192441Z LD [M] net/tipc/tipc.ko
2025-10-02T16:37:43.2196376Z LD [M] net/tls/tls.ko
2025-10-02T16:37:43.2594696Z LD [M] net/unix/unix_diag.ko
2025-10-02T16:37:43.2691489Z LD [M] net/vmw_vsock/hv_sock.ko
2025-10-02T16:37:43.2782052Z LD [M] net/vmw_vsock/vmw_vsock_virtio_transport.ko
2025-10-02T16:37:43.2808687Z LD [M] net/vmw_vsock/vmw_vsock_virtio_transport_common.ko
2025-10-02T16:37:43.2849069Z LD [M] net/vmw_vsock/vmw_vsock_vmci_transport.ko
2025-10-02T16:37:43.3019907Z LD [M] net/vmw_vsock/vsock.ko
2025-10-02T16:37:43.3063141Z LD [M] net/vmw_vsock/vsock_diag.ko
2025-10-02T16:37:43.3105081Z LD [M] net/vmw_vsock/vsock_loopback.ko
2025-10-02T16:37:43.3222155Z LD [M] net/wimax/wimax.ko
2025-10-02T16:37:43.3240062Z LD [M] net/wireless/cfg80211.ko
2025-10-02T16:37:43.3260618Z LD [M] net/wireless/lib80211.ko
2025-10-02T16:37:43.3318448Z LD [M] net/wireless/lib80211_crypt_ccmp.ko
2025-10-02T16:37:43.3397661Z LD [M] net/wireless/lib80211_crypt_tkip.ko
2025-10-02T16:37:43.3474928Z LD [M] net/wireless/lib80211_crypt_wep.ko
2025-10-02T16:37:43.3475801Z LD [M] net/xdp/xsk_diag.ko
2025-10-02T16:37:43.3543487Z LD [M] net/xfrm/xfrm_interface.ko
2025-10-02T16:37:43.3602912Z LD [M] net/xfrm/xfrm_ipcomp.ko
2025-10-02T16:37:43.3640812Z LD [M] security/keys/encrypted-keys/encrypted-keys.ko
2025-10-02T16:37:43.3641940Z LD [M] security/keys/trusted-keys/trusted.ko
2025-10-02T16:37:43.3720514Z LD [M] sound/ac97_bus.ko
2025-10-02T16:37:43.3750348Z LD [M] sound/core/oss/snd-mixer-oss.ko
2025-10-02T16:37:43.3763895Z LD [M] sound/core/oss/snd-pcm-oss.ko
2025-10-02T16:37:43.3800817Z LD [M] sound/core/seq/oss/snd-seq-oss.ko
2025-10-02T16:37:43.3825717Z LD [M] sound/core/seq/snd-seq-dummy.ko
2025-10-02T16:37:43.3943245Z LD [M] sound/core/seq/snd-seq-midi-emul.ko
2025-10-02T16:37:43.3958591Z LD [M] sound/core/seq/snd-seq-midi-event.ko
2025-10-02T16:37:43.4015878Z LD [M] sound/core/seq/snd-seq-midi.ko
2025-10-02T16:37:43.4037610Z LD [M] sound/core/seq/snd-seq-virmidi.ko
2025-10-02T16:37:43.4066457Z LD [M] sound/core/seq/snd-seq.ko
2025-10-02T16:37:43.4088533Z LD [M] sound/core/snd-compress.ko
2025-10-02T16:37:43.4157484Z LD [M] sound/core/snd-hrtimer.ko
2025-10-02T16:37:43.4179267Z LD [M] sound/core/snd-hwdep.ko
2025-10-02T16:37:43.4232311Z LD [M] sound/core/snd-pcm-dmaengine.ko
2025-10-02T16:37:43.4273776Z LD [M] sound/core/snd-pcm.ko
2025-10-02T16:37:43.4306314Z LD [M] sound/core/snd-rawmidi.ko
2025-10-02T16:37:43.4325118Z LD [M] sound/core/snd-seq-device.ko
2025-10-02T16:37:43.4402047Z LD [M] sound/core/snd-timer.ko
2025-10-02T16:37:43.4442688Z LD [M] sound/core/snd.ko
2025-10-02T16:37:43.4495351Z LD [M] sound/drivers/mpu401/snd-mpu401-uart.ko
2025-10-02T16:37:43.4557229Z LD [M] sound/drivers/mpu401/snd-mpu401.ko
2025-10-02T16:37:43.4617252Z LD [M] sound/drivers/opl3/snd-opl3-lib.ko
2025-10-02T16:37:43.4640874Z LD [M] sound/drivers/opl3/snd-opl3-synth.ko
2025-10-02T16:37:43.4659349Z LD [M] sound/drivers/snd-aloop.ko
2025-10-02T16:37:43.4695899Z LD [M] sound/drivers/snd-dummy.ko
2025-10-02T16:37:43.4768313Z LD [M] sound/drivers/snd-mtpav.ko
2025-10-02T16:37:43.4785211Z LD [M] sound/drivers/snd-mts64.ko
2025-10-02T16:37:43.4792825Z LD [M] sound/drivers/snd-portman2x4.ko
2025-10-02T16:37:43.4830860Z LD [M] sound/drivers/snd-serial-u16550.ko
2025-10-02T16:37:43.4920278Z LD [M] sound/drivers/snd-virmidi.ko
2025-10-02T16:37:43.4930643Z LD [M] sound/drivers/vx/snd-vx-lib.ko
2025-10-02T16:37:43.4934891Z LD [M] sound/firewire/bebob/snd-bebob.ko
2025-10-02T16:37:43.4939696Z LD [M] sound/firewire/dice/snd-dice.ko
2025-10-02T16:37:43.5037952Z LD [M] sound/firewire/digi00x/snd-firewire-digi00x.ko
2025-10-02T16:37:43.5078645Z LD [M] sound/firewire/fireface/snd-fireface.ko
2025-10-02T16:37:43.5130508Z LD [M] sound/firewire/fireworks/snd-fireworks.ko
2025-10-02T16:37:43.5179198Z LD [M] sound/firewire/motu/snd-firewire-motu.ko
2025-10-02T16:37:43.5196729Z LD [M] sound/firewire/oxfw/snd-oxfw.ko
2025-10-02T16:37:43.5271504Z LD [M] sound/firewire/snd-firewire-lib.ko
2025-10-02T16:37:43.5311063Z LD [M] sound/firewire/snd-isight.ko
2025-10-02T16:37:43.5386564Z LD [M] sound/firewire/tascam/snd-firewire-tascam.ko
2025-10-02T16:37:43.5430934Z LD [M] sound/hda/ext/snd-hda-ext-core.ko
2025-10-02T16:37:43.5450665Z LD [M] sound/hda/snd-hda-core.ko
2025-10-02T16:37:43.5470471Z LD [M] sound/hda/snd-intel-dspcfg.ko
2025-10-02T16:37:43.5601081Z LD [M] sound/i2c/other/snd-ak4113.ko
2025-10-02T16:37:43.5678044Z LD [M] sound/i2c/other/snd-ak4114.ko
2025-10-02T16:37:43.5715402Z LD [M] sound/i2c/other/snd-ak4117.ko
2025-10-02T16:37:43.5748899Z LD [M] sound/i2c/other/snd-ak4xxx-adda.ko
2025-10-02T16:37:43.5761775Z LD [M] sound/i2c/other/snd-pt2258.ko
2025-10-02T16:37:43.5859930Z LD [M] sound/i2c/snd-cs8427.ko
2025-10-02T16:37:43.5911239Z LD [M] sound/isa/sb/snd-sb-common.ko
2025-10-02T16:37:43.5920513Z LD [M] sound/pci/ac97/snd-ac97-codec.ko
2025-10-02T16:37:43.5932145Z LD [M] sound/i2c/snd-i2c.ko
2025-10-02T16:37:43.5961202Z LD [M] sound/pci/ali5451/snd-ali5451.ko
2025-10-02T16:37:43.6020001Z LD [M] sound/pci/asihpi/snd-asihpi.ko
2025-10-02T16:37:43.6065999Z LD [M] sound/pci/au88x0/snd-au8810.ko
2025-10-02T16:37:43.6118629Z LD [M] sound/pci/au88x0/snd-au8820.ko
2025-10-02T16:37:43.6146032Z LD [M] sound/pci/au88x0/snd-au8830.ko
2025-10-02T16:37:43.6256720Z LD [M] sound/pci/aw2/snd-aw2.ko
2025-10-02T16:37:43.6266534Z LD [M] sound/pci/ca0106/snd-ca0106.ko
2025-10-02T16:37:43.6365610Z LD [M] sound/pci/cs46xx/snd-cs46xx.ko
2025-10-02T16:37:43.6378413Z LD [M] sound/pci/ctxfi/snd-ctxfi.ko
2025-10-02T16:37:43.6407507Z LD [M] sound/pci/echoaudio/snd-darla20.ko
2025-10-02T16:37:43.6431135Z LD [M] sound/pci/echoaudio/snd-darla24.ko
2025-10-02T16:37:43.6502735Z LD [M] sound/pci/echoaudio/snd-echo3g.ko
2025-10-02T16:37:43.6582276Z LD [M] sound/pci/echoaudio/snd-gina20.ko
2025-10-02T16:37:43.6588621Z LD [M] sound/pci/echoaudio/snd-gina24.ko
2025-10-02T16:37:43.6628898Z LD [M] sound/pci/echoaudio/snd-indigo.ko
2025-10-02T16:37:43.6699758Z LD [M] sound/pci/echoaudio/snd-indigodj.ko
2025-10-02T16:37:43.6732629Z LD [M] sound/pci/echoaudio/snd-indigodjx.ko
2025-10-02T16:37:43.6782134Z LD [M] sound/pci/echoaudio/snd-indigoio.ko
2025-10-02T16:37:43.6790972Z LD [M] sound/pci/echoaudio/snd-indigoiox.ko
2025-10-02T16:37:43.6816686Z LD [M] sound/pci/echoaudio/snd-layla20.ko
2025-10-02T16:37:43.6895797Z LD [M] sound/pci/echoaudio/snd-layla24.ko
2025-10-02T16:37:43.6921487Z LD [M] sound/pci/echoaudio/snd-mia.ko
2025-10-02T16:37:43.6935563Z LD [M] sound/pci/echoaudio/snd-mona.ko
2025-10-02T16:37:43.6956787Z LD [M] sound/pci/emu10k1/snd-emu10k1-synth.ko
2025-10-02T16:37:43.6998236Z LD [M] sound/pci/emu10k1/snd-emu10k1.ko
2025-10-02T16:37:43.7085187Z LD [M] sound/pci/emu10k1/snd-emu10k1x.ko
2025-10-02T16:37:43.7103997Z LD [M] sound/pci/hda/snd-hda-codec-analog.ko
2025-10-02T16:37:43.7118499Z LD [M] sound/pci/hda/snd-hda-codec-ca0110.ko
2025-10-02T16:37:43.7149322Z LD [M] sound/pci/hda/snd-hda-codec-ca0132.ko
2025-10-02T16:37:43.7243328Z LD [M] sound/pci/hda/snd-hda-codec-cirrus.ko
2025-10-02T16:37:43.7244294Z LD [M] sound/pci/hda/snd-hda-codec-cmedia.ko
2025-10-02T16:37:43.7264018Z LD [M] sound/pci/hda/snd-hda-codec-conexant.ko
2025-10-02T16:37:43.7346323Z LD [M] sound/pci/hda/snd-hda-codec-generic.ko
2025-10-02T16:37:43.7401347Z LD [M] sound/pci/hda/snd-hda-codec-hdmi.ko
2025-10-02T16:37:43.7418173Z LD [M] sound/pci/hda/snd-hda-codec-idt.ko
2025-10-02T16:37:43.7439900Z LD [M] sound/pci/hda/snd-hda-codec-realtek.ko
2025-10-02T16:37:43.7454699Z LD [M] sound/pci/hda/snd-hda-codec-si3054.ko
2025-10-02T16:37:43.7562570Z LD [M] sound/pci/hda/snd-hda-codec-via.ko
2025-10-02T16:37:43.7600412Z LD [M] sound/pci/hda/snd-hda-codec.ko
2025-10-02T16:37:43.7608760Z LD [M] sound/pci/hda/snd-hda-intel.ko
2025-10-02T16:37:43.7629132Z LD [M] sound/pci/ice1712/snd-ice1712.ko
2025-10-02T16:37:43.7648814Z LD [M] sound/pci/ice1712/snd-ice1724.ko
2025-10-02T16:37:43.7718963Z LD [M] sound/pci/ice1712/snd-ice17xx-ak4xxx.ko
2025-10-02T16:37:43.7772411Z LD [M] sound/pci/korg1212/snd-korg1212.ko
2025-10-02T16:37:43.7826360Z LD [M] sound/pci/lola/snd-lola.ko
2025-10-02T16:37:43.7838096Z LD [M] sound/pci/lx6464es/snd-lx6464es.ko
2025-10-02T16:37:43.7950355Z LD [M] sound/pci/mixart/snd-mixart.ko
2025-10-02T16:37:43.8019998Z LD [M] sound/pci/nm256/snd-nm256.ko
2025-10-02T16:37:43.8022454Z LD [M] sound/pci/oxygen/snd-oxygen-lib.ko
2025-10-02T16:37:43.8046071Z LD [M] sound/pci/oxygen/snd-oxygen.ko
2025-10-02T16:37:43.8069144Z LD [M] sound/pci/oxygen/snd-virtuoso.ko
2025-10-02T16:37:43.8141168Z LD [M] sound/pci/pcxhr/snd-pcxhr.ko
2025-10-02T16:37:43.8181266Z LD [M] sound/pci/riptide/snd-riptide.ko
2025-10-02T16:37:43.8212020Z LD [M] sound/pci/rme9652/snd-hdsp.ko
2025-10-02T16:37:43.8230163Z LD [M] sound/pci/rme9652/snd-hdspm.ko
2025-10-02T16:37:43.8282448Z LD [M] sound/pci/rme9652/snd-rme9652.ko
2025-10-02T16:37:43.8345745Z LD [M] sound/pci/snd-ad1889.ko
2025-10-02T16:37:43.8358331Z LD [M] sound/pci/snd-als300.ko
2025-10-02T16:37:43.8397771Z LD [M] sound/pci/snd-als4000.ko
2025-10-02T16:37:43.8426763Z LD [M] sound/pci/snd-atiixp-modem.ko
2025-10-02T16:37:43.8478665Z LD [M] sound/pci/snd-atiixp.ko
2025-10-02T16:37:43.8489412Z LD [M] sound/pci/snd-azt3328.ko
2025-10-02T16:37:43.8501358Z LD [M] sound/pci/snd-bt87x.ko
2025-10-02T16:37:43.8560829Z LD [M] sound/pci/snd-cmipci.ko
2025-10-02T16:37:43.8587176Z LD [M] sound/pci/snd-cs4281.ko
2025-10-02T16:37:43.8622922Z LD [M] sound/pci/snd-ens1370.ko
2025-10-02T16:37:43.8638276Z LD [M] sound/pci/snd-ens1371.ko
2025-10-02T16:37:43.8654147Z LD [M] sound/pci/snd-es1938.ko
2025-10-02T16:37:43.8770441Z LD [M] sound/pci/snd-es1968.ko
2025-10-02T16:37:43.8771344Z LD [M] sound/pci/snd-fm801.ko
2025-10-02T16:37:43.8781802Z LD [M] sound/pci/snd-intel8x0.ko
2025-10-02T16:37:43.8811128Z LD [M] sound/pci/snd-intel8x0m.ko
2025-10-02T16:37:43.8837364Z LD [M] sound/pci/snd-maestro3.ko
2025-10-02T16:37:43.8906698Z LD [M] sound/pci/snd-rme32.ko
2025-10-02T16:37:43.8923333Z LD [M] sound/pci/snd-rme96.ko
2025-10-02T16:37:43.8952282Z LD [M] sound/pci/snd-sonicvibes.ko
2025-10-02T16:37:43.8961294Z LD [M] sound/pci/snd-via82xx-modem.ko
2025-10-02T16:37:43.9028460Z LD [M] sound/pci/snd-via82xx.ko
2025-10-02T16:37:43.9057429Z LD [M] sound/pci/trident/snd-trident.ko
2025-10-02T16:37:43.9076486Z LD [M] sound/pci/vx222/snd-vx222.ko
2025-10-02T16:37:43.9099348Z LD [M] sound/pci/ymfpci/snd-ymfpci.ko
2025-10-02T16:37:43.9143668Z LD [M] sound/pcmcia/pdaudiocf/snd-pdaudiocf.ko
2025-10-02T16:37:43.9182558Z LD [M] sound/pcmcia/vx/snd-vxpocket.ko
2025-10-02T16:37:43.9227532Z LD [M] sound/soc/amd/acp_audio_dma.ko
2025-10-02T16:37:43.9266291Z LD [M] sound/soc/amd/raven/snd-acp3x-i2s.ko
2025-10-02T16:37:43.9280568Z LD [M] sound/soc/amd/raven/snd-acp3x-pcm-dma.ko
2025-10-02T16:37:43.9350787Z LD [M] sound/soc/amd/raven/snd-pci-acp3x.ko
2025-10-02T16:37:43.9373223Z LD [M] sound/soc/amd/renoir/snd-acp3x-pdm-dma.ko
2025-10-02T16:37:43.9411094Z LD [M] sound/soc/amd/renoir/snd-acp3x-rn.ko
2025-10-02T16:37:43.9416305Z LD [M] sound/soc/amd/renoir/snd-rn-pci-acp3x.ko
2025-10-02T16:37:43.9425214Z LD [M] sound/soc/amd/snd-soc-acp-da7219mx98357-mach.ko
2025-10-02T16:37:43.9481001Z LD [M] sound/soc/amd/snd-soc-acp-rt5645-mach.ko
2025-10-02T16:37:43.9522593Z LD [M] sound/soc/amd/snd-soc-acp-rt5682-mach.ko
2025-10-02T16:37:43.9535222Z LD [M] sound/soc/codecs/sirf-audio-codec.ko
2025-10-02T16:37:43.9565507Z LD [M] sound/soc/codecs/snd-soc-ac97.ko
2025-10-02T16:37:43.9574085Z LD [M] sound/soc/codecs/snd-soc-adau-utils.ko
2025-10-02T16:37:43.9623884Z LD [M] sound/soc/codecs/snd-soc-adau1701.ko
2025-10-02T16:37:43.9666294Z LD [M] sound/soc/codecs/snd-soc-adau1761-i2c.ko
2025-10-02T16:37:43.9674920Z LD [M] sound/soc/codecs/snd-soc-adau1761-spi.ko
2025-10-02T16:37:43.9691277Z LD [M] sound/soc/codecs/snd-soc-adau1761.ko
2025-10-02T16:37:43.9721384Z LD [M] sound/soc/codecs/snd-soc-adau17x1.ko
2025-10-02T16:37:43.9794137Z LD [M] sound/soc/codecs/snd-soc-adau7002.ko
2025-10-02T16:37:43.9803384Z LD [M] sound/soc/codecs/snd-soc-adau7118-hw.ko
2025-10-02T16:37:43.9830316Z LD [M] sound/soc/codecs/snd-soc-adau7118-i2c.ko
2025-10-02T16:37:43.9865063Z LD [M] sound/soc/codecs/snd-soc-adau7118.ko
2025-10-02T16:37:43.9878723Z LD [M] sound/soc/codecs/snd-soc-ak4104.ko
2025-10-02T16:37:43.9926548Z LD [M] sound/soc/codecs/snd-soc-ak4458.ko
2025-10-02T16:37:43.9941764Z LD [M] sound/soc/codecs/snd-soc-ak4118.ko
2025-10-02T16:37:43.9942883Z LD [M] sound/soc/codecs/snd-soc-ak4554.ko
2025-10-02T16:37:44.0020681Z LD [M] sound/soc/codecs/snd-soc-ak4613.ko
2025-10-02T16:37:44.0026083Z LD [M] sound/soc/codecs/snd-soc-ak4642.ko
2025-10-02T16:37:44.0063815Z LD [M] sound/soc/codecs/snd-soc-ak5386.ko
2025-10-02T16:37:44.0072269Z LD [M] sound/soc/codecs/snd-soc-ak5558.ko
2025-10-02T16:37:44.0099707Z LD [M] sound/soc/codecs/snd-soc-alc5623.ko
2025-10-02T16:37:44.0160903Z LD [M] sound/soc/codecs/snd-soc-bd28623.ko
2025-10-02T16:37:44.0163080Z LD [M] sound/soc/codecs/snd-soc-cros-ec-codec.ko
2025-10-02T16:37:44.0199299Z LD [M] sound/soc/codecs/snd-soc-cs35l32.ko
2025-10-02T16:37:44.0210636Z LD [M] sound/soc/codecs/snd-soc-cs35l33.ko
2025-10-02T16:37:44.0275764Z LD [M] sound/soc/codecs/snd-soc-cs35l34.ko
2025-10-02T16:37:44.0312103Z LD [M] sound/soc/codecs/snd-soc-cs35l35.ko
2025-10-02T16:37:44.0313013Z LD [M] sound/soc/codecs/snd-soc-cs35l36.ko
2025-10-02T16:37:44.0341062Z LD [M] sound/soc/codecs/snd-soc-cs4234.ko
2025-10-02T16:37:44.0379371Z LD [M] sound/soc/codecs/snd-soc-cs4265.ko
2025-10-02T16:37:44.0468985Z LD [M] sound/soc/codecs/snd-soc-cs4270.ko
2025-10-02T16:37:44.0490421Z LD [M] sound/soc/codecs/snd-soc-cs4271-i2c.ko
2025-10-02T16:37:44.0506397Z LD [M] sound/soc/codecs/snd-soc-cs4271-spi.ko
2025-10-02T16:37:44.0514260Z LD [M] sound/soc/codecs/snd-soc-cs4271.ko
2025-10-02T16:37:44.0543760Z LD [M] sound/soc/codecs/snd-soc-cs42l42.ko
2025-10-02T16:37:44.0620904Z LD [M] sound/soc/codecs/snd-soc-cs42l51-i2c.ko
2025-10-02T16:37:44.0628184Z LD [M] sound/soc/codecs/snd-soc-cs42l51.ko
2025-10-02T16:37:44.0646152Z LD [M] sound/soc/codecs/snd-soc-cs42l52.ko
2025-10-02T16:37:44.0670427Z LD [M] sound/soc/codecs/snd-soc-cs42l56.ko
2025-10-02T16:37:44.0701098Z LD [M] sound/soc/codecs/snd-soc-cs42l73.ko
2025-10-02T16:37:44.0752809Z LD [M] sound/soc/codecs/snd-soc-cs42xx8-i2c.ko
2025-10-02T16:37:44.0789074Z LD [M] sound/soc/codecs/snd-soc-cs42xx8.ko
2025-10-02T16:37:44.0794816Z LD [M] sound/soc/codecs/snd-soc-cs43130.ko
2025-10-02T16:37:44.0826099Z LD [M] sound/soc/codecs/snd-soc-cs4341.ko
2025-10-02T16:37:44.0849284Z LD [M] sound/soc/codecs/snd-soc-cs4349.ko
2025-10-02T16:37:44.0888888Z LD [M] sound/soc/codecs/snd-soc-cs53l30.ko
2025-10-02T16:37:44.0929677Z LD [M] sound/soc/codecs/snd-soc-cx2072x.ko
2025-10-02T16:37:44.0965714Z LD [M] sound/soc/codecs/snd-soc-da7213.ko
2025-10-02T16:37:44.0982256Z LD [M] sound/soc/codecs/snd-soc-da7219.ko
2025-10-02T16:37:44.1018260Z LD [M] sound/soc/codecs/snd-soc-dmic.ko
2025-10-02T16:37:44.1030917Z LD [M] sound/soc/codecs/snd-soc-es7134.ko
2025-10-02T16:37:44.1083010Z LD [M] sound/soc/codecs/snd-soc-es7241.ko
2025-10-02T16:37:44.1129329Z LD [M] sound/soc/codecs/snd-soc-es8316.ko
2025-10-02T16:37:44.1155238Z LD [M] sound/soc/codecs/snd-soc-es8328-i2c.ko
2025-10-02T16:37:44.1157959Z LD [M] sound/soc/codecs/snd-soc-es8328-spi.ko
2025-10-02T16:37:44.1190557Z LD [M] sound/soc/codecs/snd-soc-es8328.ko
2025-10-02T16:37:44.1223454Z LD [M] sound/soc/codecs/snd-soc-gtm601.ko
2025-10-02T16:37:44.1265065Z LD [M] sound/soc/codecs/snd-soc-hdac-hda.ko
2025-10-02T16:37:44.1270075Z LD [M] sound/soc/codecs/snd-soc-hdac-hdmi.ko
2025-10-02T16:37:44.1302540Z LD [M] sound/soc/codecs/snd-soc-hdmi-codec.ko
2025-10-02T16:37:44.1343107Z LD [M] sound/soc/codecs/snd-soc-inno-rk3036.ko
2025-10-02T16:37:44.1361955Z LD [M] sound/soc/codecs/snd-soc-max9759.ko
2025-10-02T16:37:44.1398839Z LD [M] sound/soc/codecs/snd-soc-max98088.ko
2025-10-02T16:37:44.1456504Z LD [M] sound/soc/codecs/snd-soc-max98090.ko
2025-10-02T16:37:44.1489204Z LD [M] sound/soc/codecs/snd-soc-max98357a.ko
2025-10-02T16:37:44.1490582Z LD [M] sound/soc/codecs/snd-soc-max98373-i2c.ko
2025-10-02T16:37:44.1507076Z LD [M] sound/soc/codecs/snd-soc-max98373-sdw.ko
2025-10-02T16:37:44.1585345Z LD [M] sound/soc/codecs/snd-soc-max98373.ko
2025-10-02T16:37:44.1597167Z LD [M] sound/soc/codecs/snd-soc-max98504.ko
2025-10-02T16:37:44.1620349Z LD [M] sound/soc/codecs/snd-soc-max98390.ko
2025-10-02T16:37:44.1627104Z LD [M] sound/soc/codecs/snd-soc-max9860.ko
2025-10-02T16:37:44.1669171Z LD [M] sound/soc/codecs/snd-soc-max9867.ko
2025-10-02T16:37:44.1730482Z LD [M] sound/soc/codecs/snd-soc-max98927.ko
2025-10-02T16:37:44.1732069Z LD [M] sound/soc/codecs/snd-soc-msm8916-digital.ko
2025-10-02T16:37:44.1751473Z LD [M] sound/soc/codecs/snd-soc-mt6351.ko
2025-10-02T16:37:44.1795316Z LD [M] sound/soc/codecs/snd-soc-mt6358.ko
2025-10-02T16:37:44.1830529Z LD [M] sound/soc/codecs/snd-soc-mt6660.ko
2025-10-02T16:37:44.1876443Z LD [M] sound/soc/codecs/snd-soc-nau8540.ko
2025-10-02T16:37:44.1891588Z LD [M] sound/soc/codecs/snd-soc-nau8810.ko
2025-10-02T16:37:44.1903124Z LD [M] sound/soc/codecs/snd-soc-nau8822.ko
2025-10-02T16:37:44.1994228Z LD [M] sound/soc/codecs/snd-soc-nau8824.ko
2025-10-02T16:37:44.1995582Z LD [M] sound/soc/codecs/snd-soc-nau8825.ko
2025-10-02T16:37:44.2037382Z LD [M] sound/soc/codecs/snd-soc-pcm1681.ko
2025-10-02T16:37:44.2051320Z LD [M] sound/soc/codecs/snd-soc-pcm1789-codec.ko
2025-10-02T16:37:44.2059921Z LD [M] sound/soc/codecs/snd-soc-pcm1789-i2c.ko
2025-10-02T16:37:44.2156083Z LD [M] sound/soc/codecs/snd-soc-pcm179x-codec.ko
2025-10-02T16:37:44.2162112Z LD [M] sound/soc/codecs/snd-soc-pcm179x-i2c.ko
2025-10-02T16:37:44.2191006Z LD [M] sound/soc/codecs/snd-soc-pcm179x-spi.ko
2025-10-02T16:37:44.2198650Z LD [M] sound/soc/codecs/snd-soc-pcm186x-i2c.ko
2025-10-02T16:37:44.2215207Z LD [M] sound/soc/codecs/snd-soc-pcm186x-spi.ko
2025-10-02T16:37:44.2277160Z LD [M] sound/soc/codecs/snd-soc-pcm186x.ko
2025-10-02T16:37:44.2300473Z LD [M] sound/soc/codecs/snd-soc-pcm3060-i2c.ko
2025-10-02T16:37:44.2315051Z LD [M] sound/soc/codecs/snd-soc-pcm3060-spi.ko
2025-10-02T16:37:44.2332229Z LD [M] sound/soc/codecs/snd-soc-pcm3060.ko
2025-10-02T16:37:44.2367103Z LD [M] sound/soc/codecs/snd-soc-pcm3168a-i2c.ko
2025-10-02T16:37:44.2420709Z LD [M] sound/soc/codecs/snd-soc-pcm3168a-spi.ko
2025-10-02T16:37:44.2450767Z LD [M] sound/soc/codecs/snd-soc-pcm3168a.ko
2025-10-02T16:37:44.2451853Z LD [M] sound/soc/codecs/snd-soc-pcm512x-i2c.ko
2025-10-02T16:37:44.2480010Z LD [M] sound/soc/codecs/snd-soc-pcm512x-spi.ko
2025-10-02T16:37:44.2512732Z LD [M] sound/soc/codecs/snd-soc-pcm512x.ko
2025-10-02T16:37:44.2539011Z LD [M] sound/soc/codecs/snd-soc-rk3328.ko
2025-10-02T16:37:44.2566763Z LD [M] sound/soc/codecs/snd-soc-rl6231.ko
2025-10-02T16:37:44.2600688Z LD [M] sound/soc/codecs/snd-soc-rl6347a.ko
2025-10-02T16:37:44.2613600Z LD [M] sound/soc/codecs/snd-soc-rt1011.ko
2025-10-02T16:37:44.2671099Z LD [M] sound/soc/codecs/snd-soc-rt1015.ko
2025-10-02T16:37:44.2690032Z LD [M] sound/soc/codecs/snd-soc-rt1308-sdw.ko
2025-10-02T16:37:44.2721234Z LD [M] sound/soc/codecs/snd-soc-rt1308.ko
2025-10-02T16:37:44.2722560Z LD [M] sound/soc/codecs/snd-soc-rt286.ko
2025-10-02T16:37:44.2783603Z LD [M] sound/soc/codecs/snd-soc-rt298.ko
2025-10-02T16:37:44.2805071Z LD [M] sound/soc/codecs/snd-soc-rt5514-spi.ko
2025-10-02T16:37:44.2846465Z LD [M] sound/soc/codecs/snd-soc-rt5514.ko
2025-10-02T16:37:44.2863138Z LD [M] sound/soc/codecs/snd-soc-rt5616.ko
2025-10-02T16:37:44.2888067Z LD [M] sound/soc/codecs/snd-soc-rt5631.ko
2025-10-02T16:37:44.2946340Z LD [M] sound/soc/codecs/snd-soc-rt5640.ko
2025-10-02T16:37:44.2954684Z LD [M] sound/soc/codecs/snd-soc-rt5645.ko
2025-10-02T16:37:44.3001884Z LD [M] sound/soc/codecs/snd-soc-rt5651.ko
2025-10-02T16:37:44.3018103Z LD [M] sound/soc/codecs/snd-soc-rt5660.ko
2025-10-02T16:37:44.3044175Z LD [M] sound/soc/codecs/snd-soc-rt5663.ko
2025-10-02T16:37:44.3122850Z LD [M] sound/soc/codecs/snd-soc-rt5670.ko
2025-10-02T16:37:44.3150335Z LD [M] sound/soc/codecs/snd-soc-rt5677-spi.ko
2025-10-02T16:37:44.3162114Z LD [M] sound/soc/codecs/snd-soc-rt5677.ko
2025-10-02T16:37:44.3179334Z LD [M] sound/soc/codecs/snd-soc-rt5682-i2c.ko
2025-10-02T16:37:44.3225116Z LD [M] sound/soc/codecs/snd-soc-rt5682-sdw.ko
2025-10-02T16:37:44.3285369Z LD [M] sound/soc/codecs/snd-soc-rt5682.ko
2025-10-02T16:37:44.3308708Z LD [M] sound/soc/codecs/snd-soc-rt700.ko
2025-10-02T16:37:44.3317440Z LD [M] sound/soc/codecs/snd-soc-rt711.ko
2025-10-02T16:37:44.3360425Z LD [M] sound/soc/codecs/snd-soc-rt715.ko
2025-10-02T16:37:44.3399658Z LD [M] sound/soc/codecs/snd-soc-sgtl5000.ko
2025-10-02T16:37:44.3466782Z LD [M] sound/soc/codecs/snd-soc-si476x.ko
2025-10-02T16:37:44.3470345Z LD [M] sound/soc/codecs/snd-soc-sigmadsp-i2c.ko
2025-10-02T16:37:44.3509372Z LD [M] sound/soc/codecs/snd-soc-sigmadsp-regmap.ko
2025-10-02T16:37:44.3549059Z LD [M] sound/soc/codecs/snd-soc-sigmadsp.ko
2025-10-02T16:37:44.3562992Z LD [M] sound/soc/codecs/snd-soc-simple-amplifier.ko
2025-10-02T16:37:44.3603968Z LD [M] sound/soc/codecs/snd-soc-spdif-rx.ko
2025-10-02T16:37:44.3624763Z LD [M] sound/soc/codecs/snd-soc-spdif-tx.ko
2025-10-02T16:37:44.3634471Z LD [M] sound/soc/codecs/snd-soc-ssm2305.ko
2025-10-02T16:37:44.3691869Z LD [M] sound/soc/codecs/snd-soc-ssm2602-i2c.ko
2025-10-02T16:37:44.3717087Z LD [M] sound/soc/codecs/snd-soc-ssm2602-spi.ko
2025-10-02T16:37:44.3753403Z LD [M] sound/soc/codecs/snd-soc-ssm2602.ko
2025-10-02T16:37:44.3763908Z LD [M] sound/soc/codecs/snd-soc-ssm4567.ko
2025-10-02T16:37:44.3776302Z LD [M] sound/soc/codecs/snd-soc-sta32x.ko
2025-10-02T16:37:44.3849317Z LD [M] sound/soc/codecs/snd-soc-sta350.ko
2025-10-02T16:37:44.3866862Z LD [M] sound/soc/codecs/snd-soc-sti-sas.ko
2025-10-02T16:37:44.3868393Z LD [M] sound/soc/codecs/snd-soc-tas2552.ko
2025-10-02T16:37:44.3907116Z LD [M] sound/soc/codecs/snd-soc-tas2562.ko
2025-10-02T16:37:44.4062020Z LD [M] sound/soc/codecs/snd-soc-tas2764.ko
2025-10-02T16:37:44.4083708Z LD [M] sound/soc/codecs/snd-soc-tas2770.ko
2025-10-02T16:37:44.4141753Z LD [M] sound/soc/codecs/snd-soc-tas5086.ko
2025-10-02T16:37:44.4150598Z LD [M] sound/soc/codecs/snd-soc-tas571x.ko
2025-10-02T16:37:44.4223851Z LD [M] sound/soc/codecs/snd-soc-tas5720.ko
2025-10-02T16:37:44.4269375Z LD [M] sound/soc/codecs/snd-soc-tas6424.ko
2025-10-02T16:37:44.4272190Z LD [M] sound/soc/codecs/snd-soc-tda7419.ko
2025-10-02T16:37:44.4354275Z LD [M] sound/soc/codecs/snd-soc-tlv320adcx140.ko
2025-10-02T16:37:44.4380277Z LD [M] sound/soc/codecs/snd-soc-tfa9879.ko
2025-10-02T16:37:44.4427463Z LD [M] sound/soc/codecs/snd-soc-tlv320aic23-i2c.ko
2025-10-02T16:37:44.4461915Z LD [M] sound/soc/codecs/snd-soc-tlv320aic23-spi.ko
2025-10-02T16:37:44.4508622Z LD [M] sound/soc/codecs/snd-soc-tlv320aic23.ko
2025-10-02T16:37:44.4547488Z LD [M] sound/soc/codecs/snd-soc-tlv320aic31xx.ko
2025-10-02T16:37:44.4576217Z LD [M] sound/soc/codecs/snd-soc-tlv320aic32x4-i2c.ko
2025-10-02T16:37:44.4580240Z LD [M] sound/soc/codecs/snd-soc-tlv320aic32x4-spi.ko
2025-10-02T16:37:44.4648789Z LD [M] sound/soc/codecs/snd-soc-tlv320aic32x4.ko
2025-10-02T16:37:44.4656967Z LD [M] sound/soc/codecs/snd-soc-tlv320aic3x.ko
2025-10-02T16:37:44.4716578Z LD [M] sound/soc/codecs/snd-soc-tpa6130a2.ko
2025-10-02T16:37:44.4749398Z LD [M] sound/soc/codecs/snd-soc-ts3a227e.ko
2025-10-02T16:37:44.4761768Z LD [M] sound/soc/codecs/snd-soc-tscs42xx.ko
2025-10-02T16:37:44.4828397Z LD [M] sound/soc/codecs/snd-soc-tscs454.ko
2025-10-02T16:37:44.4837203Z LD [M] sound/soc/codecs/snd-soc-uda1334.ko
2025-10-02T16:37:44.4866980Z LD [M] sound/soc/codecs/snd-soc-wcd9335.ko
2025-10-02T16:37:44.4902854Z LD [M] sound/soc/codecs/snd-soc-wcd934x.ko
2025-10-02T16:37:44.4937257Z LD [M] sound/soc/codecs/snd-soc-wm8510.ko
2025-10-02T16:37:44.4986300Z LD [M] sound/soc/codecs/snd-soc-wm8523.ko
2025-10-02T16:37:44.5022351Z LD [M] sound/soc/codecs/snd-soc-wm8524.ko
2025-10-02T16:37:44.5057647Z LD [M] sound/soc/codecs/snd-soc-wm8580.ko
2025-10-02T16:37:44.5062757Z LD [M] sound/soc/codecs/snd-soc-wm8711.ko
2025-10-02T16:37:44.5110317Z LD [M] sound/soc/codecs/snd-soc-wm8728.ko
2025-10-02T16:37:44.5137179Z LD [M] sound/soc/codecs/snd-soc-wm8731.ko
2025-10-02T16:37:44.5153189Z LD [M] sound/soc/codecs/snd-soc-wm8737.ko
2025-10-02T16:37:44.5194129Z LD [M] sound/soc/codecs/snd-soc-wm8741.ko
2025-10-02T16:37:44.5217288Z LD [M] sound/soc/codecs/snd-soc-wm8750.ko
2025-10-02T16:37:44.5241294Z LD [M] sound/soc/codecs/snd-soc-wm8753.ko
2025-10-02T16:37:44.5295379Z LD [M] sound/soc/codecs/snd-soc-wm8770.ko
2025-10-02T16:37:44.5311722Z LD [M] sound/soc/codecs/snd-soc-wm8776.ko
2025-10-02T16:37:44.5344909Z LD [M] sound/soc/codecs/snd-soc-wm8782.ko
2025-10-02T16:37:44.5357430Z LD [M] sound/soc/codecs/snd-soc-wm8804-i2c.ko
2025-10-02T16:37:44.5440860Z LD [M] sound/soc/codecs/snd-soc-wm8804-spi.ko
2025-10-02T16:37:44.5455437Z LD [M] sound/soc/codecs/snd-soc-wm8804.ko
2025-10-02T16:37:44.5472268Z LD [M] sound/soc/codecs/snd-soc-wm8903.ko
2025-10-02T16:37:44.5484587Z LD [M] sound/soc/codecs/snd-soc-wm8904.ko
2025-10-02T16:37:44.5495578Z LD [M] sound/soc/codecs/snd-soc-wm8960.ko
2025-10-02T16:37:44.5574798Z LD [M] sound/soc/codecs/snd-soc-wm8962.ko
2025-10-02T16:37:44.5590856Z LD [M] sound/soc/codecs/snd-soc-wm8974.ko
2025-10-02T16:37:44.5622702Z LD [M] sound/soc/codecs/snd-soc-wm8978.ko
2025-10-02T16:37:44.5643145Z LD [M] sound/soc/codecs/snd-soc-wm8985.ko
2025-10-02T16:37:44.5680068Z LD [M] sound/soc/codecs/snd-soc-wsa881x.ko
2025-10-02T16:37:44.5728708Z LD [M] sound/soc/codecs/snd-soc-zl38060.ko
2025-10-02T16:37:44.5759243Z LD [M] sound/soc/codecs/snd-soc-zx-aud96p22.ko
2025-10-02T16:37:44.5790499Z LD [M] sound/soc/dwc/designware_i2s.ko
2025-10-02T16:37:44.5802917Z LD [M] sound/soc/generic/snd-soc-simple-card-utils.ko
2025-10-02T16:37:44.5836224Z LD [M] sound/soc/generic/snd-soc-simple-card.ko
2025-10-02T16:37:44.5874499Z LD [M] sound/soc/hisilicon/hi6210-i2s.ko
2025-10-02T16:37:44.5907242Z LD [M] sound/soc/img/img-i2s-in.ko
2025-10-02T16:37:44.5948994Z LD [M] sound/soc/img/img-i2s-out.ko
2025-10-02T16:37:44.5980701Z LD [M] sound/soc/img/img-parallel-out.ko
2025-10-02T16:37:44.5995742Z LD [M] sound/soc/img/img-spdif-in.ko
2025-10-02T16:37:44.6030955Z LD [M] sound/soc/img/img-spdif-out.ko
2025-10-02T16:37:44.6070953Z LD [M] sound/soc/img/pistachio-internal-dac.ko
2025-10-02T16:37:44.6101537Z LD [M] sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko
2025-10-02T16:37:44.6125877Z LD [M] sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
2025-10-02T16:37:44.6157318Z LD [M] sound/soc/intel/atom/sst/snd-intel-sst-core.ko
2025-10-02T16:37:44.6186895Z LD [M] sound/soc/intel/atom/sst/snd-intel-sst-pci.ko
2025-10-02T16:37:44.6223559Z LD [M] sound/soc/intel/boards/snd-skl_nau88l25_max98357a.ko
2025-10-02T16:37:44.6241435Z LD [M] sound/soc/intel/boards/snd-soc-cml_rt1011_rt5682.ko
2025-10-02T16:37:44.6308799Z LD [M] sound/soc/intel/boards/snd-soc-ehl-rt5660.ko
2025-10-02T16:37:44.6345366Z LD [M] sound/soc/intel/boards/snd-soc-kbl_da7219_max98357a.ko
2025-10-02T16:37:44.6378160Z LD [M] sound/soc/intel/boards/snd-soc-kbl_da7219_max98927.ko
2025-10-02T16:37:44.6406404Z LD [M] sound/soc/intel/boards/snd-soc-kbl_rt5660.ko
2025-10-02T16:37:44.6422658Z LD [M] sound/soc/intel/boards/snd-soc-kbl_rt5663_max98927.ko
2025-10-02T16:37:44.6463133Z LD [M] sound/soc/intel/boards/snd-soc-kbl_rt5663_rt5514_max98927.ko
2025-10-02T16:37:44.6491003Z LD [M] sound/soc/intel/boards/snd-soc-skl_hda_dsp.ko
2025-10-02T16:37:44.6532094Z LD [M] sound/soc/intel/boards/snd-soc-skl_nau88l25_ssm4567.ko
2025-10-02T16:37:44.6551920Z LD [M] sound/soc/intel/boards/snd-soc-skl_rt286.ko
2025-10-02T16:37:44.6581055Z LD [M] sound/soc/intel/boards/snd-soc-sof-sdw.ko
2025-10-02T16:37:44.6627709Z LD [M] sound/soc/intel/boards/snd-soc-sof_da7219_max98373.ko
2025-10-02T16:37:44.6657214Z LD [M] sound/soc/intel/boards/snd-soc-sof_rt5682.ko
2025-10-02T16:37:44.6684571Z LD [M] sound/soc/intel/boards/snd-soc-sst-bdw-rt5650-mach.ko
2025-10-02T16:37:44.6696535Z LD [M] sound/soc/intel/boards/snd-soc-sst-bdw-rt5677-mach.ko
2025-10-02T16:37:44.6831066Z LD [M] sound/soc/intel/boards/snd-soc-sst-broadwell.ko
2025-10-02T16:37:44.6832709Z LD [M] sound/soc/intel/boards/snd-soc-sst-bxt-da7219_max98357a.ko
2025-10-02T16:37:44.6842532Z LD [M] sound/soc/intel/boards/snd-soc-sst-bxt-rt298.ko
2025-10-02T16:37:44.6864668Z LD [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-cx2072x.ko
2025-10-02T16:37:44.6928175Z LD [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-da7213.ko
2025-10-02T16:37:44.6944513Z LD [M] sound/soc/intel/boards/snd-soc-sst-byt-cht-es8316.ko
2025-10-02T16:37:44.6994989Z LD [M] sound/soc/intel/boards/snd-soc-sst-bytcr-rt5640.ko
2025-10-02T16:37:44.6998853Z LD [M] sound/soc/intel/boards/snd-soc-sst-bytcr-rt5651.ko
2025-10-02T16:37:44.7018547Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-max98090_ti.ko
2025-10-02T16:37:44.7088620Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-nau8824.ko
2025-10-02T16:37:44.7100934Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5645.ko
2025-10-02T16:37:44.7148346Z LD [M] sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5672.ko
2025-10-02T16:37:44.7165001Z LD [M] sound/soc/intel/boards/snd-soc-sst-glk-rt5682_max98357a.ko
2025-10-02T16:37:44.7173778Z LD [M] sound/soc/intel/boards/snd-soc-sst-haswell.ko
2025-10-02T16:37:44.7249384Z LD [M] sound/soc/intel/boards/snd-soc-sst-sof-pcm512x.ko
2025-10-02T16:37:44.7255920Z LD [M] sound/soc/intel/boards/snd-soc-sst-sof-wm8804.ko
2025-10-02T16:37:44.7298003Z LD [M] sound/soc/intel/catpt/snd-soc-catpt.ko
2025-10-02T16:37:44.7329374Z LD [M] sound/soc/intel/common/snd-soc-acpi-intel-match.ko
2025-10-02T16:37:44.7338617Z LD [M] sound/soc/intel/common/snd-soc-sst-dsp.ko
2025-10-02T16:37:44.7413241Z LD [M] sound/soc/intel/common/snd-soc-sst-ipc.ko
2025-10-02T16:37:44.7417591Z LD [M] sound/soc/intel/skylake/snd-soc-skl-ssp-clk.ko
2025-10-02T16:37:44.7484956Z LD [M] sound/soc/intel/skylake/snd-soc-skl.ko
2025-10-02T16:37:44.7525519Z LD [M] sound/soc/snd-soc-acpi.ko
2025-10-02T16:37:44.7569439Z LD [M] sound/soc/snd-soc-core.ko
2025-10-02T16:37:44.7588877Z LD [M] sound/soc/sof/intel/snd-sof-intel-byt.ko
2025-10-02T16:37:44.7647493Z LD [M] sound/soc/sof/intel/snd-sof-intel-hda-common.ko
2025-10-02T16:37:44.7680387Z LD [M] sound/soc/sof/intel/snd-sof-intel-hda.ko
2025-10-02T16:37:44.7784454Z LD [M] sound/soc/sof/intel/snd-sof-intel-ipc.ko
2025-10-02T16:37:44.7832979Z LD [M] sound/soc/sof/snd-sof-acpi.ko
2025-10-02T16:37:44.7941615Z LD [M] sound/soc/sof/snd-sof-pci.ko
2025-10-02T16:37:44.8003333Z LD [M] sound/soc/sof/snd-sof.ko
2025-10-02T16:37:44.8125215Z LD [M] sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko
2025-10-02T16:37:44.8139769Z LD [M] sound/soc/xilinx/snd-soc-xlnx-i2s.ko
2025-10-02T16:37:44.8161865Z LD [M] sound/soc/xilinx/snd-soc-xlnx-formatter-pcm.ko
2025-10-02T16:37:44.8341637Z LD [M] sound/soc/xilinx/snd-soc-xlnx-spdif.ko
2025-10-02T16:37:44.8342937Z LD [M] sound/soc/xtensa/snd-soc-xtfpga-i2s.ko
2025-10-02T16:37:44.8401190Z LD [M] sound/soc/zte/zx-tdm.ko
2025-10-02T16:37:44.8437303Z LD [M] sound/soundcore.ko
2025-10-02T16:37:44.8812621Z LD [M] sound/synth/emux/snd-emux-synth.ko
2025-10-02T16:37:44.8840524Z LD [M] sound/synth/snd-util-mem.ko
2025-10-02T16:37:44.8844873Z LD [M] sound/usb/6fire/snd-usb-6fire.ko
2025-10-02T16:37:44.8851345Z LD [M] sound/usb/bcd2000/snd-bcd2000.ko
2025-10-02T16:37:44.8935474Z LD [M] sound/usb/caiaq/snd-usb-caiaq.ko
2025-10-02T16:37:44.8997620Z LD [M] sound/usb/hiface/snd-usb-hiface.ko
2025-10-02T16:37:44.9004966Z LD [M] sound/usb/line6/snd-usb-line6.ko
2025-10-02T16:37:44.9008001Z LD [M] sound/usb/line6/snd-usb-pod.ko
2025-10-02T16:37:44.9076029Z LD [M] sound/usb/line6/snd-usb-podhd.ko
2025-10-02T16:37:44.9131355Z LD [M] sound/usb/line6/snd-usb-toneport.ko
2025-10-02T16:37:44.9149288Z LD [M] sound/usb/line6/snd-usb-variax.ko
2025-10-02T16:37:44.9153595Z LD [M] sound/usb/misc/snd-ua101.ko
2025-10-02T16:37:44.9216748Z LD [M] sound/usb/snd-usb-audio.ko
2025-10-02T16:37:44.9261941Z LD [M] sound/usb/snd-usbmidi-lib.ko
2025-10-02T16:37:44.9285382Z LD [M] sound/usb/usx2y/snd-usb-us122l.ko
2025-10-02T16:37:44.9288165Z LD [M] sound/usb/usx2y/snd-usb-usx2y.ko
2025-10-02T16:37:44.9329781Z LD [M] sound/x86/snd-hdmi-lpe-audio.ko
2025-10-02T16:37:44.9419614Z LD [M] sound/xen/snd_xen_front.ko
2025-10-02T16:37:44.9426263Z LD [M] virt/lib/irqbypass.ko
2025-10-02T16:37:44.9722419Z ==> Entering fakeroot environment...
2025-10-02T16:37:46.7581751Z ==> Starting package_linux510()...
2025-10-02T16:37:52.6377488Z INSTALL arch/x86/crypto/aegis128-aesni.ko
2025-10-02T16:37:52.6409654Z INSTALL arch/x86/crypto/aesni-intel.ko
2025-10-02T16:37:52.6415165Z INSTALL arch/x86/crypto/blake2s-x86_64.ko
2025-10-02T16:37:52.6433496Z INSTALL arch/x86/crypto/blowfish-x86_64.ko
2025-10-02T16:37:52.6449353Z INSTALL arch/x86/crypto/camellia-aesni-avx-x86_64.ko
2025-10-02T16:37:52.8875195Z INSTALL arch/x86/crypto/camellia-aesni-avx2.ko
2025-10-02T16:37:52.8880920Z INSTALL arch/x86/crypto/camellia-x86_64.ko
2025-10-02T16:37:52.8918921Z INSTALL arch/x86/crypto/cast5-avx-x86_64.ko
2025-10-02T16:37:52.8966810Z INSTALL arch/x86/crypto/cast6-avx-x86_64.ko
2025-10-02T16:37:52.9820065Z INSTALL arch/x86/crypto/chacha-x86_64.ko
2025-10-02T16:37:53.0107075Z INSTALL arch/x86/crypto/crc32-pclmul.ko
2025-10-02T16:37:53.0298274Z INSTALL arch/x86/crypto/crc32c-intel.ko
2025-10-02T16:37:53.0374495Z INSTALL arch/x86/crypto/crct10dif-pclmul.ko
2025-10-02T16:37:53.0381132Z INSTALL arch/x86/crypto/curve25519-x86_64.ko
2025-10-02T16:37:53.0453785Z INSTALL arch/x86/crypto/des3_ede-x86_64.ko
2025-10-02T16:37:53.0621536Z INSTALL arch/x86/crypto/ghash-clmulni-intel.ko
2025-10-02T16:37:53.0925933Z INSTALL arch/x86/crypto/glue_helper.ko
2025-10-02T16:37:53.0968361Z INSTALL arch/x86/crypto/nhpoly1305-avx2.ko
2025-10-02T16:37:53.0984383Z INSTALL arch/x86/crypto/nhpoly1305-sse2.ko
2025-10-02T16:37:53.1101002Z INSTALL arch/x86/crypto/poly1305-x86_64.ko
2025-10-02T16:37:53.1313884Z INSTALL arch/x86/crypto/serpent-avx-x86_64.ko
2025-10-02T16:37:53.1453365Z INSTALL arch/x86/crypto/serpent-avx2.ko
2025-10-02T16:37:53.1497366Z INSTALL arch/x86/crypto/serpent-sse2-x86_64.ko
2025-10-02T16:37:53.1513633Z INSTALL arch/x86/crypto/sha1-ssse3.ko
2025-10-02T16:37:53.1606848Z INSTALL arch/x86/crypto/sha256-ssse3.ko
2025-10-02T16:37:53.2044395Z INSTALL arch/x86/crypto/sha512-ssse3.ko
2025-10-02T16:37:53.2154312Z INSTALL arch/x86/crypto/twofish-avx-x86_64.ko
2025-10-02T16:37:53.2168217Z INSTALL arch/x86/crypto/twofish-x86_64-3way.ko
2025-10-02T16:37:53.2211389Z INSTALL arch/x86/crypto/twofish-x86_64.ko
2025-10-02T16:37:53.2258077Z INSTALL arch/x86/events/amd/power.ko
2025-10-02T16:37:53.2680473Z INSTALL arch/x86/events/intel/intel-cstate.ko
2025-10-02T16:37:53.2693079Z INSTALL arch/x86/events/intel/intel-uncore.ko
2025-10-02T16:37:53.2744970Z INSTALL arch/x86/events/rapl.ko
2025-10-02T16:37:53.2769416Z INSTALL arch/x86/kernel/cpu/mce/mce-inject.ko
2025-10-02T16:37:53.2770843Z INSTALL arch/x86/kvm/kvm-amd.ko
2025-10-02T16:37:53.3374619Z INSTALL arch/x86/kvm/kvm-intel.ko
2025-10-02T16:37:53.3410594Z INSTALL arch/x86/kvm/kvm.ko
2025-10-02T16:37:53.3425312Z INSTALL arch/x86/oprofile/oprofile.ko
2025-10-02T16:37:53.4423723Z INSTALL crypto/842.ko
2025-10-02T16:37:53.4450028Z INSTALL crypto/adiantum.ko
2025-10-02T16:37:53.4898434Z INSTALL crypto/aegis128.ko
2025-10-02T16:37:53.4923014Z INSTALL crypto/aes_ti.ko
2025-10-02T16:37:53.5124583Z INSTALL crypto/af_alg.ko
2025-10-02T16:37:53.5650437Z INSTALL crypto/algif_aead.ko
2025-10-02T16:37:53.5668369Z INSTALL crypto/algif_hash.ko
2025-10-02T16:37:53.5725378Z INSTALL crypto/algif_rng.ko
2025-10-02T16:37:53.6311830Z INSTALL crypto/algif_skcipher.ko
2025-10-02T16:37:53.6340342Z INSTALL crypto/ansi_cprng.ko
2025-10-02T16:37:53.6380753Z INSTALL crypto/asymmetric_keys/asym_tpm.ko
2025-10-02T16:37:53.7005159Z INSTALL crypto/asymmetric_keys/pkcs8_key_parser.ko
2025-10-02T16:37:53.7008968Z INSTALL crypto/asymmetric_keys/tpm_key_parser.ko
2025-10-02T16:37:53.7101347Z INSTALL crypto/async_tx/async_memcpy.ko
2025-10-02T16:37:53.7491622Z INSTALL crypto/async_tx/async_pq.ko
2025-10-02T16:37:53.7496637Z INSTALL crypto/async_tx/async_raid6_recov.ko
2025-10-02T16:37:53.7546326Z INSTALL crypto/async_tx/async_tx.ko
2025-10-02T16:37:53.7681448Z INSTALL crypto/async_tx/async_xor.ko
2025-10-02T16:37:53.8055509Z INSTALL crypto/async_tx/raid6test.ko
2025-10-02T16:37:53.8072277Z INSTALL crypto/authenc.ko
2025-10-02T16:37:53.8187762Z INSTALL crypto/authencesn.ko
2025-10-02T16:37:53.8283881Z INSTALL crypto/blake2b_generic.ko
2025-10-02T16:37:53.8656419Z INSTALL crypto/blake2s_generic.ko
2025-10-02T16:37:53.8662153Z INSTALL crypto/blowfish_common.ko
2025-10-02T16:37:53.8760171Z INSTALL crypto/blowfish_generic.ko
2025-10-02T16:37:53.8849014Z INSTALL crypto/camellia_generic.ko
2025-10-02T16:37:53.9227422Z INSTALL crypto/cast5_generic.ko
2025-10-02T16:37:53.9288904Z INSTALL crypto/cast6_generic.ko
2025-10-02T16:37:53.9291737Z INSTALL crypto/cast_common.ko
2025-10-02T16:37:53.9531398Z INSTALL crypto/cbc.ko
2025-10-02T16:37:53.9875443Z INSTALL crypto/ccm.ko
2025-10-02T16:37:53.9876551Z INSTALL crypto/cfb.ko
2025-10-02T16:37:53.9940423Z INSTALL crypto/chacha20poly1305.ko
2025-10-02T16:37:53.9980656Z INSTALL crypto/chacha_generic.ko
2025-10-02T16:37:54.0500728Z INSTALL crypto/cmac.ko
2025-10-02T16:37:54.0541029Z INSTALL crypto/crc32_generic.ko
2025-10-02T16:37:54.0558352Z INSTALL crypto/crc32c_generic.ko
2025-10-02T16:37:54.0600764Z INSTALL crypto/cryptd.ko
2025-10-02T16:37:54.0980227Z INSTALL crypto/crypto_engine.ko
2025-10-02T16:37:54.1095782Z INSTALL crypto/crypto_simd.ko
2025-10-02T16:37:54.1233203Z INSTALL crypto/crypto_user.ko
2025-10-02T16:37:54.1340280Z INSTALL crypto/cts.ko
2025-10-02T16:37:54.1567314Z INSTALL crypto/curve25519-generic.ko
2025-10-02T16:37:54.1665908Z INSTALL crypto/deflate.ko
2025-10-02T16:37:54.1834295Z INSTALL crypto/des_generic.ko
2025-10-02T16:37:54.1864260Z INSTALL crypto/drbg.ko
2025-10-02T16:37:54.1941459Z INSTALL crypto/ecb.ko
2025-10-02T16:37:54.2018855Z INSTALL crypto/ecc.ko
2025-10-02T16:37:54.2159276Z INSTALL crypto/ecdh_generic.ko
2025-10-02T16:37:54.2307748Z INSTALL crypto/echainiv.ko
2025-10-02T16:37:54.2513785Z INSTALL crypto/ecrdsa_generic.ko
2025-10-02T16:37:54.2606806Z INSTALL crypto/essiv.ko
2025-10-02T16:37:54.2642661Z INSTALL crypto/fcrypt.ko
2025-10-02T16:37:54.2786572Z INSTALL crypto/gcm.ko
2025-10-02T16:37:54.2903368Z INSTALL crypto/gf128mul.ko
2025-10-02T16:37:54.3083591Z INSTALL crypto/ghash-generic.ko
2025-10-02T16:37:54.3157054Z INSTALL crypto/keywrap.ko
2025-10-02T16:37:54.3170663Z INSTALL crypto/lrw.ko
2025-10-02T16:37:54.3465685Z INSTALL crypto/lz4hc.ko
2025-10-02T16:37:54.3507099Z INSTALL crypto/lzo-rle.ko
2025-10-02T16:37:54.3620392Z INSTALL crypto/lzo.ko
2025-10-02T16:37:54.3744294Z INSTALL crypto/michael_mic.ko
2025-10-02T16:37:54.3746021Z INSTALL crypto/md4.ko
2025-10-02T16:37:54.3945005Z INSTALL crypto/nhpoly1305.ko
2025-10-02T16:37:54.4007532Z INSTALL crypto/ofb.ko
2025-10-02T16:37:54.4044192Z INSTALL crypto/pcbc.ko
2025-10-02T16:37:54.4202401Z INSTALL crypto/pcrypt.ko
2025-10-02T16:37:54.4279920Z INSTALL crypto/poly1305_generic.ko
2025-10-02T16:37:54.4471386Z INSTALL crypto/rmd128.ko
2025-10-02T16:37:54.4491449Z INSTALL crypto/rmd160.ko
2025-10-02T16:37:54.4545546Z INSTALL crypto/rmd256.ko
2025-10-02T16:37:54.4718563Z INSTALL crypto/rmd320.ko
2025-10-02T16:37:54.4822359Z INSTALL crypto/salsa20_generic.ko
2025-10-02T16:37:54.5022842Z INSTALL crypto/seqiv.ko
2025-10-02T16:37:54.5081690Z INSTALL crypto/serpent_generic.ko
2025-10-02T16:37:54.5105088Z INSTALL crypto/sha3_generic.ko
2025-10-02T16:37:54.5265645Z INSTALL crypto/sm2_generic.ko
2025-10-02T16:37:54.5273837Z INSTALL crypto/sm3_generic.ko
2025-10-02T16:37:54.5505978Z INSTALL crypto/sm4_generic.ko
2025-10-02T16:37:54.5703547Z INSTALL crypto/streebog_generic.ko
2025-10-02T16:37:54.5709754Z INSTALL crypto/tcrypt.ko
2025-10-02T16:37:54.5818695Z INSTALL crypto/tgr192.ko
2025-10-02T16:37:54.5826412Z INSTALL crypto/twofish_common.ko
2025-10-02T16:37:54.5974233Z INSTALL crypto/twofish_generic.ko
2025-10-02T16:37:54.6318106Z INSTALL crypto/vmac.ko
2025-10-02T16:37:54.6394677Z INSTALL crypto/wp512.ko
2025-10-02T16:37:54.6468020Z INSTALL crypto/xcbc.ko
2025-10-02T16:37:54.6505704Z INSTALL crypto/xor.ko
2025-10-02T16:37:54.6951786Z INSTALL crypto/xxhash_generic.ko
2025-10-02T16:37:54.6953280Z INSTALL crypto/xts.ko
2025-10-02T16:37:54.7021728Z INSTALL drivers/accessibility/speakup/speakup.ko
2025-10-02T16:37:54.7046030Z INSTALL drivers/accessibility/speakup/speakup_acntsa.ko
2025-10-02T16:37:54.7094588Z INSTALL drivers/accessibility/speakup/speakup_apollo.ko
2025-10-02T16:37:54.7442538Z INSTALL drivers/accessibility/speakup/speakup_audptr.ko
2025-10-02T16:37:54.7501903Z INSTALL drivers/accessibility/speakup/speakup_bns.ko
2025-10-02T16:37:54.7544005Z INSTALL drivers/accessibility/speakup/speakup_decext.ko
2025-10-02T16:37:54.7644802Z INSTALL drivers/accessibility/speakup/speakup_dectlk.ko
2025-10-02T16:37:54.7971108Z INSTALL drivers/accessibility/speakup/speakup_dummy.ko
2025-10-02T16:37:54.8058342Z INSTALL drivers/accessibility/speakup/speakup_ltlk.ko
2025-10-02T16:37:54.8229744Z INSTALL drivers/accessibility/speakup/speakup_soft.ko
2025-10-02T16:37:54.8235113Z INSTALL drivers/accessibility/speakup/speakup_spkout.ko
2025-10-02T16:37:54.8412256Z INSTALL drivers/accessibility/speakup/speakup_txprt.ko
2025-10-02T16:37:54.8537967Z INSTALL drivers/acpi/acpi_configfs.ko
2025-10-02T16:37:54.8622250Z INSTALL drivers/acpi/acpi_extlog.ko
2025-10-02T16:37:54.8807104Z INSTALL drivers/acpi/acpi_ipmi.ko
2025-10-02T16:37:54.8821505Z INSTALL drivers/acpi/acpi_pad.ko
2025-10-02T16:37:54.8888198Z INSTALL drivers/acpi/acpi_tad.ko
2025-10-02T16:37:54.9091040Z INSTALL drivers/acpi/apei/einj.ko
2025-10-02T16:37:54.9152049Z INSTALL drivers/acpi/apei/erst-dbg.ko
2025-10-02T16:37:54.9356893Z INSTALL drivers/acpi/custom_method.ko
2025-10-02T16:37:54.9455752Z INSTALL drivers/acpi/dptf/dptf_pch_fivr.ko
2025-10-02T16:37:54.9486526Z INSTALL drivers/acpi/dptf/dptf_power.ko
2025-10-02T16:37:54.9694827Z INSTALL drivers/acpi/ec_sys.ko
2025-10-02T16:37:54.9756255Z INSTALL drivers/acpi/nfit/nfit.ko
2025-10-02T16:37:54.9832091Z INSTALL drivers/acpi/sbs.ko
2025-10-02T16:37:54.9989911Z INSTALL drivers/acpi/sbshc.ko
2025-10-02T16:37:55.0088274Z INSTALL drivers/acpi/video.ko
2025-10-02T16:37:55.0180361Z INSTALL drivers/ata/acard-ahci.ko
2025-10-02T16:37:55.0521159Z INSTALL drivers/ata/ahci_platform.ko
2025-10-02T16:37:55.0652946Z INSTALL drivers/ata/ata_generic.ko
2025-10-02T16:37:55.0758627Z INSTALL drivers/ata/ata_piix.ko
2025-10-02T16:37:55.0885623Z INSTALL drivers/ata/libahci_platform.ko
2025-10-02T16:37:55.0943408Z INSTALL drivers/ata/pata_acpi.ko
2025-10-02T16:37:55.1137318Z INSTALL drivers/ata/pata_ali.ko
2025-10-02T16:37:55.1142043Z INSTALL drivers/ata/pata_amd.ko
2025-10-02T16:37:55.1458758Z INSTALL drivers/ata/pata_artop.ko
2025-10-02T16:37:55.1468140Z INSTALL drivers/ata/pata_atiixp.ko
2025-10-02T16:37:55.1481581Z INSTALL drivers/ata/pata_atp867x.ko
2025-10-02T16:37:55.1649260Z INSTALL drivers/ata/pata_cmd640.ko
2025-10-02T16:37:55.1747517Z INSTALL drivers/ata/pata_cmd64x.ko
2025-10-02T16:37:55.1995215Z INSTALL drivers/ata/pata_cypress.ko
2025-10-02T16:37:55.2046773Z INSTALL drivers/ata/pata_efar.ko
2025-10-02T16:37:55.2068114Z INSTALL drivers/ata/pata_hpt366.ko
2025-10-02T16:37:55.2186552Z INSTALL drivers/ata/pata_hpt37x.ko
2025-10-02T16:37:55.2396958Z INSTALL drivers/ata/pata_hpt3x2n.ko
2025-10-02T16:37:55.2518761Z INSTALL drivers/ata/pata_hpt3x3.ko
2025-10-02T16:37:55.2614484Z INSTALL drivers/ata/pata_it8213.ko
2025-10-02T16:37:55.2627427Z INSTALL drivers/ata/pata_it821x.ko
2025-10-02T16:37:55.2844464Z INSTALL drivers/ata/pata_jmicron.ko
2025-10-02T16:37:55.2964100Z INSTALL drivers/ata/pata_legacy.ko
2025-10-02T16:37:55.3108871Z INSTALL drivers/ata/pata_marvell.ko
2025-10-02T16:37:55.3157515Z INSTALL drivers/ata/pata_mpiix.ko
2025-10-02T16:37:55.3189164Z INSTALL drivers/ata/pata_netcell.ko
2025-10-02T16:37:55.3358224Z INSTALL drivers/ata/pata_ninja32.ko
2025-10-02T16:37:55.3590693Z INSTALL drivers/ata/pata_ns87410.ko
2025-10-02T16:37:55.3649190Z INSTALL drivers/ata/pata_ns87415.ko
2025-10-02T16:37:55.3696123Z INSTALL drivers/ata/pata_oldpiix.ko
2025-10-02T16:37:55.3711834Z INSTALL drivers/ata/pata_opti.ko
2025-10-02T16:37:55.3860663Z INSTALL drivers/ata/pata_optidma.ko
2025-10-02T16:37:55.4189639Z INSTALL drivers/ata/pata_pcmcia.ko
2025-10-02T16:37:55.4191018Z INSTALL drivers/ata/pata_pdc2027x.ko
2025-10-02T16:37:55.4232652Z INSTALL drivers/ata/pata_pdc202xx_old.ko
2025-10-02T16:37:55.4277051Z INSTALL drivers/ata/pata_piccolo.ko
2025-10-02T16:37:55.4303316Z INSTALL drivers/ata/pata_radisys.ko
2025-10-02T16:37:55.4738249Z INSTALL drivers/ata/pata_rdc.ko
2025-10-02T16:37:55.4783445Z INSTALL drivers/ata/pata_rz1000.ko
2025-10-02T16:37:55.4820019Z INSTALL drivers/ata/pata_sch.ko
2025-10-02T16:37:55.4830423Z INSTALL drivers/ata/pata_serverworks.ko
2025-10-02T16:37:55.4842168Z INSTALL drivers/ata/pata_sil680.ko
2025-10-02T16:37:55.5304921Z INSTALL drivers/ata/pata_sis.ko
2025-10-02T16:37:55.5334445Z INSTALL drivers/ata/pata_sl82c105.ko
2025-10-02T16:37:55.5372285Z INSTALL drivers/ata/pata_triflex.ko
2025-10-02T16:37:55.5392396Z INSTALL drivers/ata/pata_via.ko
2025-10-02T16:37:55.5399112Z INSTALL drivers/ata/pdc_adma.ko
2025-10-02T16:37:55.5880216Z INSTALL drivers/ata/sata_dwc_460ex.ko
2025-10-02T16:37:55.5904465Z INSTALL drivers/ata/sata_inic162x.ko
2025-10-02T16:37:55.5967801Z INSTALL drivers/ata/sata_mv.ko
2025-10-02T16:37:55.5988360Z INSTALL drivers/ata/sata_nv.ko
2025-10-02T16:37:55.6001734Z INSTALL drivers/ata/sata_promise.ko
2025-10-02T16:37:55.6530823Z INSTALL drivers/ata/sata_qstor.ko
2025-10-02T16:37:55.6581598Z INSTALL drivers/ata/sata_sil.ko
2025-10-02T16:37:55.6651391Z INSTALL drivers/ata/sata_sil24.ko
2025-10-02T16:37:55.6825215Z INSTALL drivers/ata/sata_sis.ko
2025-10-02T16:37:55.6864159Z INSTALL drivers/ata/sata_svw.ko
2025-10-02T16:37:55.7138943Z INSTALL drivers/ata/sata_sx4.ko
2025-10-02T16:37:55.7200486Z INSTALL drivers/ata/sata_uli.ko
2025-10-02T16:37:55.7224785Z INSTALL drivers/ata/sata_via.ko
2025-10-02T16:37:55.7341245Z INSTALL drivers/ata/sata_vsc.ko
2025-10-02T16:37:55.7411849Z INSTALL drivers/atm/ambassador.ko
2025-10-02T16:37:55.7708182Z INSTALL drivers/atm/atmtcp.ko
2025-10-02T16:37:55.7760913Z INSTALL drivers/atm/eni.ko
2025-10-02T16:37:55.7804251Z INSTALL drivers/atm/firestream.ko
2025-10-02T16:37:55.7917541Z INSTALL drivers/atm/fore_200e.ko
2025-10-02T16:37:55.8200653Z INSTALL drivers/atm/he.ko
2025-10-02T16:37:55.8326885Z INSTALL drivers/atm/horizon.ko
2025-10-02T16:37:55.8553992Z INSTALL drivers/atm/idt77252.ko
2025-10-02T16:37:55.8616394Z INSTALL drivers/atm/iphase.ko
2025-10-02T16:37:55.8825651Z INSTALL drivers/atm/lanai.ko
2025-10-02T16:37:55.8901675Z INSTALL drivers/atm/nicstar.ko
2025-10-02T16:37:55.8989066Z INSTALL drivers/atm/solos-pci.ko
2025-10-02T16:37:55.9504620Z INSTALL drivers/atm/suni.ko
2025-10-02T16:37:55.9537126Z INSTALL drivers/atm/uPD98402.ko
2025-10-02T16:37:55.9595682Z INSTALL drivers/atm/zatm.ko
2025-10-02T16:37:55.9713374Z INSTALL drivers/auxdisplay/cfag12864b.ko
2025-10-02T16:37:55.9724297Z INSTALL drivers/auxdisplay/cfag12864bfb.ko
2025-10-02T16:37:56.0119634Z INSTALL drivers/auxdisplay/charlcd.ko
2025-10-02T16:37:56.0141424Z INSTALL drivers/auxdisplay/hd44780.ko
2025-10-02T16:37:56.0191991Z INSTALL drivers/auxdisplay/img-ascii-lcd.ko
2025-10-02T16:37:56.0269322Z INSTALL drivers/auxdisplay/ks0108.ko
2025-10-02T16:37:56.0293725Z INSTALL drivers/auxdisplay/panel.ko
2025-10-02T16:37:56.0645918Z INSTALL drivers/base/regmap/regmap-sccb.ko
2025-10-02T16:37:56.0730559Z INSTALL drivers/base/regmap/regmap-sdw.ko
2025-10-02T16:37:56.0793400Z INSTALL drivers/base/regmap/regmap-slimbus.ko
2025-10-02T16:37:56.0874687Z INSTALL drivers/base/regmap/regmap-spi-avmm.ko
2025-10-02T16:37:56.0937223Z INSTALL drivers/base/regmap/regmap-w1.ko
2025-10-02T16:37:56.1141997Z INSTALL drivers/bcma/bcma.ko
2025-10-02T16:37:56.1157870Z INSTALL drivers/block/aoe/aoe.ko
2025-10-02T16:37:56.1219127Z INSTALL drivers/block/brd.ko
2025-10-02T16:37:56.1449108Z INSTALL drivers/block/cryptoloop.ko
2025-10-02T16:37:56.1461321Z INSTALL drivers/block/drbd/drbd.ko
2025-10-02T16:37:56.1845825Z INSTALL drivers/block/floppy.ko
2025-10-02T16:37:56.2067279Z INSTALL drivers/block/loop.ko
2025-10-02T16:37:56.2274596Z INSTALL drivers/block/mtip32xx/mtip32xx.ko
2025-10-02T16:37:56.2282493Z INSTALL drivers/block/nbd.ko
2025-10-02T16:37:56.2824761Z INSTALL drivers/block/null_blk/null_blk.ko
2025-10-02T16:37:56.3145373Z INSTALL drivers/block/pktcdvd.ko
2025-10-02T16:37:56.3364877Z INSTALL drivers/block/rbd.ko
2025-10-02T16:37:56.3518358Z INSTALL drivers/block/rnbd/rnbd-client.ko
2025-10-02T16:37:56.3974115Z INSTALL drivers/block/rnbd/rnbd-server.ko
2025-10-02T16:37:56.4072728Z INSTALL drivers/block/rsxx/rsxx.ko
2025-10-02T16:37:56.4540590Z INSTALL drivers/block/skd.ko
2025-10-02T16:37:56.4854580Z INSTALL drivers/block/umem.ko
2025-10-02T16:37:56.4897725Z INSTALL drivers/block/virtio_blk.ko
2025-10-02T16:37:56.5319150Z INSTALL drivers/block/xen-blkback/xen-blkback.ko
2025-10-02T16:37:56.5713352Z INSTALL drivers/block/xen-blkfront.ko
2025-10-02T16:37:56.5736658Z INSTALL drivers/block/zram/zram.ko
2025-10-02T16:37:56.5779227Z INSTALL drivers/bluetooth/ath3k.ko
2025-10-02T16:37:56.5823741Z INSTALL drivers/bluetooth/bcm203x.ko
2025-10-02T16:37:56.6304101Z INSTALL drivers/bluetooth/bfusb.ko
2025-10-02T16:37:56.6414340Z INSTALL drivers/bluetooth/bluecard_cs.ko
2025-10-02T16:37:56.6516320Z INSTALL drivers/bluetooth/bpa10x.ko
2025-10-02T16:37:56.6517779Z INSTALL drivers/bluetooth/bt3c_cs.ko
2025-10-02T16:37:56.6588263Z INSTALL drivers/bluetooth/btbcm.ko
2025-10-02T16:37:56.6985023Z INSTALL drivers/bluetooth/btintel.ko
2025-10-02T16:37:56.6993059Z INSTALL drivers/bluetooth/btmrvl.ko
2025-10-02T16:37:56.7079148Z INSTALL drivers/bluetooth/btmrvl_sdio.ko
2025-10-02T16:37:56.7103494Z INSTALL drivers/bluetooth/btmtksdio.ko
2025-10-02T16:37:56.7270378Z INSTALL drivers/bluetooth/btmtkuart.ko
2025-10-02T16:37:56.7665256Z INSTALL drivers/bluetooth/btqca.ko
2025-10-02T16:37:56.7736815Z INSTALL drivers/bluetooth/btrtl.ko
2025-10-02T16:37:56.7753617Z INSTALL drivers/bluetooth/btrsi.ko
2025-10-02T16:37:56.7804383Z INSTALL drivers/bluetooth/btsdio.ko
2025-10-02T16:37:56.7868388Z INSTALL drivers/bluetooth/btusb.ko
2025-10-02T16:37:56.8228253Z INSTALL drivers/bluetooth/dtl1_cs.ko
2025-10-02T16:37:56.8304047Z INSTALL drivers/bluetooth/hci_nokia.ko
2025-10-02T16:37:56.8386842Z INSTALL drivers/bluetooth/hci_uart.ko
2025-10-02T16:37:56.8395425Z INSTALL drivers/bluetooth/hci_vhci.ko
2025-10-02T16:37:56.8861188Z INSTALL drivers/bus/mhi/host/mhi.ko
2025-10-02T16:37:56.8921882Z INSTALL drivers/cdrom/cdrom.ko
2025-10-02T16:37:56.8991336Z INSTALL drivers/char/agp/agpgart.ko
2025-10-02T16:37:56.9013688Z INSTALL drivers/char/agp/amd64-agp.ko
2025-10-02T16:37:56.9702409Z INSTALL drivers/char/agp/intel-agp.ko
2025-10-02T16:37:57.0056529Z INSTALL drivers/char/agp/intel-gtt.ko
2025-10-02T16:37:57.0130231Z INSTALL drivers/char/agp/sis-agp.ko
2025-10-02T16:37:57.0135657Z INSTALL drivers/char/agp/via-agp.ko
2025-10-02T16:37:57.0424688Z INSTALL drivers/char/applicom.ko
2025-10-02T16:37:57.0451770Z INSTALL drivers/char/hangcheck-timer.ko
2025-10-02T16:37:57.0695319Z INSTALL drivers/char/hw_random/amd-rng.ko
2025-10-02T16:37:57.0716948Z INSTALL drivers/char/hw_random/ba431-rng.ko
2025-10-02T16:37:57.0762644Z INSTALL drivers/char/hw_random/intel-rng.ko
2025-10-02T16:37:57.1066054Z INSTALL drivers/char/hw_random/rng-core.ko
2025-10-02T16:37:57.1072935Z INSTALL drivers/char/hw_random/timeriomem-rng.ko
2025-10-02T16:37:57.1271329Z INSTALL drivers/char/hw_random/via-rng.ko
2025-10-02T16:37:57.1280473Z INSTALL drivers/char/hw_random/virtio-rng.ko
2025-10-02T16:37:57.1322928Z INSTALL drivers/char/hw_random/xiphera-trng.ko
2025-10-02T16:37:57.1621045Z INSTALL drivers/char/ipmi/ipmb_dev_int.ko
2025-10-02T16:37:57.1763907Z INSTALL drivers/char/ipmi/ipmi_devintf.ko
2025-10-02T16:37:57.1810813Z INSTALL drivers/char/ipmi/ipmi_msghandler.ko
2025-10-02T16:37:57.1835149Z INSTALL drivers/char/ipmi/ipmi_poweroff.ko
2025-10-02T16:37:57.1847872Z INSTALL drivers/char/ipmi/ipmi_si.ko
2025-10-02T16:37:57.2220630Z INSTALL drivers/char/ipmi/ipmi_ssif.ko
2025-10-02T16:37:57.2417189Z INSTALL drivers/char/ipmi/ipmi_watchdog.ko
2025-10-02T16:37:57.2456811Z INSTALL drivers/char/lp.ko
2025-10-02T16:37:57.2801845Z INSTALL drivers/char/mwave/mwave.ko
2025-10-02T16:37:57.3024559Z INSTALL drivers/char/pcmcia/cm4000_cs.ko
2025-10-02T16:37:57.3119430Z INSTALL drivers/char/pcmcia/cm4040_cs.ko
2025-10-02T16:37:57.3188179Z INSTALL drivers/char/pcmcia/scr24x_cs.ko
2025-10-02T16:37:57.3211551Z INSTALL drivers/char/pcmcia/synclink_cs.ko
2025-10-02T16:37:57.3773623Z INSTALL drivers/char/ppdev.ko
2025-10-02T16:37:57.3851320Z INSTALL drivers/char/raw.ko
2025-10-02T16:37:57.3884414Z INSTALL drivers/char/tlclk.ko
2025-10-02T16:37:57.4086235Z INSTALL drivers/char/tpm/st33zp24/tpm_st33zp24.ko
2025-10-02T16:37:57.4120928Z INSTALL drivers/char/tpm/st33zp24/tpm_st33zp24_i2c.ko
2025-10-02T16:37:57.4424463Z INSTALL drivers/char/tpm/st33zp24/tpm_st33zp24_spi.ko
2025-10-02T16:37:57.4426278Z INSTALL drivers/char/tpm/tpm.ko
2025-10-02T16:37:57.4566745Z INSTALL drivers/char/tpm/tpm_atmel.ko
2025-10-02T16:37:57.4633824Z INSTALL drivers/char/tpm/tpm_crb.ko
2025-10-02T16:37:57.4643212Z INSTALL drivers/char/tpm/tpm_i2c_atmel.ko
2025-10-02T16:37:57.5056739Z INSTALL drivers/char/tpm/tpm_i2c_infineon.ko
2025-10-02T16:37:57.5067879Z INSTALL drivers/char/tpm/tpm_i2c_nuvoton.ko
2025-10-02T16:37:57.5207777Z INSTALL drivers/char/tpm/tpm_infineon.ko
2025-10-02T16:37:57.5221755Z INSTALL drivers/char/tpm/tpm_nsc.ko
2025-10-02T16:37:57.5634647Z INSTALL drivers/char/tpm/tpm_tis.ko
2025-10-02T16:37:57.5688423Z INSTALL drivers/char/tpm/tpm_tis_core.ko
2025-10-02T16:37:57.5724662Z INSTALL drivers/char/tpm/tpm_tis_spi.ko
2025-10-02T16:37:57.5790604Z INSTALL drivers/char/tpm/tpm_vtpm_proxy.ko
2025-10-02T16:37:57.5900972Z INSTALL drivers/char/tpm/xen-tpmfront.ko
2025-10-02T16:37:57.6155378Z INSTALL drivers/char/virtio_console.ko
2025-10-02T16:37:57.6346361Z INSTALL drivers/char/xillybus/xillybus_core.ko
2025-10-02T16:37:57.6366270Z INSTALL drivers/char/xillybus/xillybus_pcie.ko
2025-10-02T16:37:57.6412388Z INSTALL drivers/clk/clk-cdce706.ko
2025-10-02T16:37:57.6590856Z INSTALL drivers/clk/clk-cs2000-cp.ko
2025-10-02T16:37:57.6885482Z INSTALL drivers/clk/clk-max9485.ko
2025-10-02T16:37:57.6962869Z INSTALL drivers/clk/clk-palmas.ko
2025-10-02T16:37:57.7072909Z INSTALL drivers/clk/clk-pwm.ko
2025-10-02T16:37:57.7141725Z INSTALL drivers/clk/clk-s2mps11.ko
2025-10-02T16:37:57.7233051Z INSTALL drivers/clk/clk-si5341.ko
2025-10-02T16:37:57.7410891Z INSTALL drivers/clk/clk-si5351.ko
2025-10-02T16:37:57.7497767Z INSTALL drivers/clk/clk-si544.ko
2025-10-02T16:37:57.7559795Z INSTALL drivers/clk/clk-twl6040.ko
2025-10-02T16:37:57.7606593Z INSTALL drivers/clk/clk-wm831x.ko
2025-10-02T16:37:57.7944230Z INSTALL drivers/counter/counter.ko
2025-10-02T16:37:57.8031262Z INSTALL drivers/cpufreq/acpi-cpufreq.ko
2025-10-02T16:37:57.8097220Z INSTALL drivers/cpufreq/amd_freq_sensitivity.ko
2025-10-02T16:37:57.8126189Z INSTALL drivers/cpufreq/p4-clockmod.ko
2025-10-02T16:37:57.8178264Z INSTALL drivers/cpufreq/pcc-cpufreq.ko
2025-10-02T16:37:57.8602307Z INSTALL drivers/cpufreq/powernow-k8.ko
2025-10-02T16:37:57.8621073Z INSTALL drivers/cpufreq/speedstep-lib.ko
2025-10-02T16:37:57.8687744Z INSTALL drivers/cpuidle/cpuidle-haltpoll.ko
2025-10-02T16:37:57.8695450Z INSTALL drivers/crypto/amlogic/amlogic-gxl-crypto.ko
2025-10-02T16:37:57.8805412Z INSTALL drivers/crypto/atmel-ecc.ko
2025-10-02T16:37:57.9256690Z INSTALL drivers/crypto/atmel-i2c.ko
2025-10-02T16:37:57.9258484Z INSTALL drivers/crypto/atmel-sha204a.ko
2025-10-02T16:37:57.9337287Z INSTALL drivers/crypto/cavium/nitrox/n5pf.ko
2025-10-02T16:37:57.9364900Z INSTALL drivers/crypto/ccp/ccp-crypto.ko
2025-10-02T16:37:57.9397113Z INSTALL drivers/crypto/ccp/ccp.ko
2025-10-02T16:37:57.9750924Z INSTALL drivers/crypto/chelsio/chcr.ko
2025-10-02T16:37:57.9841897Z INSTALL drivers/crypto/inside-secure/crypto_safexcel.ko
2025-10-02T16:37:58.0248049Z INSTALL drivers/crypto/padlock-aes.ko
2025-10-02T16:37:58.0361955Z INSTALL drivers/crypto/padlock-sha.ko
2025-10-02T16:37:58.0797012Z INSTALL drivers/crypto/qat/qat_c3xxx/qat_c3xxx.ko
2025-10-02T16:37:58.0798408Z INSTALL drivers/crypto/qat/qat_c3xxxvf/qat_c3xxxvf.ko
2025-10-02T16:37:58.0946186Z INSTALL drivers/crypto/qat/qat_c62x/qat_c62x.ko
2025-10-02T16:37:58.1049192Z INSTALL drivers/crypto/qat/qat_c62xvf/qat_c62xvf.ko
2025-10-02T16:37:58.1396251Z INSTALL drivers/crypto/qat/qat_common/intel_qat.ko
2025-10-02T16:37:58.1426679Z INSTALL drivers/crypto/qat/qat_dh895xcc/qat_dh895xcc.ko
2025-10-02T16:37:58.1428716Z INSTALL drivers/crypto/qat/qat_dh895xccvf/qat_dh895xccvf.ko
2025-10-02T16:37:58.1520610Z INSTALL drivers/crypto/virtio/virtio_crypto.ko
2025-10-02T16:37:58.1608130Z INSTALL drivers/dax/device_dax.ko
2025-10-02T16:37:58.2016671Z INSTALL drivers/dax/hmem/dax_hmem.ko
2025-10-02T16:37:58.2074320Z INSTALL drivers/dax/kmem.ko
2025-10-02T16:37:58.2224262Z INSTALL drivers/dax/pmem/dax_pmem.ko
2025-10-02T16:37:58.2399335Z INSTALL drivers/dax/pmem/dax_pmem_compat.ko
2025-10-02T16:37:58.2585226Z INSTALL drivers/dax/pmem/dax_pmem_core.ko
2025-10-02T16:37:58.2655840Z INSTALL drivers/dca/dca.ko
2025-10-02T16:37:58.2656673Z INSTALL drivers/devfreq/governor_passive.ko
2025-10-02T16:37:58.2978070Z INSTALL drivers/devfreq/governor_performance.ko
2025-10-02T16:37:58.3040429Z INSTALL drivers/devfreq/governor_powersave.ko
2025-10-02T16:37:58.3124722Z INSTALL drivers/devfreq/governor_simpleondemand.ko
2025-10-02T16:37:58.3169149Z INSTALL drivers/devfreq/governor_userspace.ko
2025-10-02T16:37:58.3293589Z INSTALL drivers/dma/altera-msgdma.ko
2025-10-02T16:37:58.3530963Z INSTALL drivers/dma/dw-edma/dw-edma-pcie.ko
2025-10-02T16:37:58.3532457Z INSTALL drivers/dma/dw-edma/dw-edma.ko
2025-10-02T16:37:58.3585730Z INSTALL drivers/dma/dw/dw_dmac.ko
2025-10-02T16:37:58.3633998Z INSTALL drivers/dma/idma64.ko
2025-10-02T16:37:58.3826407Z INSTALL drivers/dma/idxd/idxd.ko
2025-10-02T16:37:58.4116164Z INSTALL drivers/dma/ioat/ioatdma.ko
2025-10-02T16:37:58.4210103Z INSTALL drivers/dma/plx_dma.ko
2025-10-02T16:37:58.4212245Z INSTALL drivers/dma/qcom/hdma.ko
2025-10-02T16:37:58.4237401Z INSTALL drivers/dma/qcom/hdma_mgmt.ko
2025-10-02T16:37:58.4821308Z INSTALL drivers/dma/sf-pdma/sf-pdma.ko
2025-10-02T16:37:58.4941401Z INSTALL drivers/edac/amd64_edac_mod.ko
2025-10-02T16:37:58.4968019Z INSTALL drivers/edac/e752x_edac.ko
2025-10-02T16:37:58.5141109Z INSTALL drivers/edac/edac_mce_amd.ko
2025-10-02T16:37:58.5165576Z INSTALL drivers/edac/i10nm_edac.ko
2025-10-02T16:37:58.5474929Z INSTALL drivers/edac/i3000_edac.ko
2025-10-02T16:37:58.5643844Z INSTALL drivers/edac/i3200_edac.ko
2025-10-02T16:37:58.5699045Z INSTALL drivers/edac/i5000_edac.ko
2025-10-02T16:37:58.5721116Z INSTALL drivers/edac/i5100_edac.ko
2025-10-02T16:37:58.5984102Z INSTALL drivers/edac/i5400_edac.ko
2025-10-02T16:37:58.5991920Z INSTALL drivers/edac/i7300_edac.ko
2025-10-02T16:37:58.6074379Z INSTALL drivers/edac/i7core_edac.ko
2025-10-02T16:37:58.6279664Z INSTALL drivers/edac/i82975x_edac.ko
2025-10-02T16:37:58.6363227Z INSTALL drivers/edac/ie31200_edac.ko
2025-10-02T16:37:58.6645925Z INSTALL drivers/edac/sb_edac.ko
2025-10-02T16:37:58.6653898Z INSTALL drivers/edac/pnd2_edac.ko
2025-10-02T16:37:58.6764916Z INSTALL drivers/edac/skx_edac.ko
2025-10-02T16:37:58.6857449Z INSTALL drivers/edac/skx_edac_common.ko
2025-10-02T16:37:58.6900722Z INSTALL drivers/edac/x38_edac.ko
2025-10-02T16:37:58.7304681Z INSTALL drivers/extcon/extcon-adc-jack.ko
2025-10-02T16:37:58.7367012Z INSTALL drivers/extcon/extcon-arizona.ko
2025-10-02T16:37:58.7411970Z INSTALL drivers/extcon/extcon-axp288.ko
2025-10-02T16:37:58.7481108Z INSTALL drivers/extcon/extcon-fsa9480.ko
2025-10-02T16:37:58.7506747Z INSTALL drivers/extcon/extcon-gpio.ko
2025-10-02T16:37:58.7920930Z INSTALL drivers/extcon/extcon-intel-cht-wc.ko
2025-10-02T16:37:58.7937795Z INSTALL drivers/extcon/extcon-intel-int3496.ko
2025-10-02T16:37:58.8000670Z INSTALL drivers/extcon/extcon-intel-mrfld.ko
2025-10-02T16:37:58.8068597Z INSTALL drivers/extcon/extcon-max14577.ko
2025-10-02T16:37:58.8257119Z INSTALL drivers/extcon/extcon-max3355.ko
2025-10-02T16:37:58.8427583Z INSTALL drivers/extcon/extcon-max77693.ko
2025-10-02T16:37:58.8503895Z INSTALL drivers/extcon/extcon-max77843.ko
2025-10-02T16:37:58.8546465Z INSTALL drivers/extcon/extcon-max8997.ko
2025-10-02T16:37:58.8614091Z INSTALL drivers/extcon/extcon-palmas.ko
2025-10-02T16:37:58.8827778Z INSTALL drivers/extcon/extcon-ptn5150.ko
2025-10-02T16:37:58.9078221Z INSTALL drivers/extcon/extcon-rt8973a.ko
2025-10-02T16:37:58.9127781Z INSTALL drivers/extcon/extcon-sm5502.ko
2025-10-02T16:37:58.9138559Z INSTALL drivers/extcon/extcon-usb-gpio.ko
2025-10-02T16:37:58.9179104Z INSTALL drivers/extcon/extcon-usbc-cros-ec.ko
2025-10-02T16:37:58.9447401Z INSTALL drivers/firewire/firewire-core.ko
2025-10-02T16:37:58.9652264Z INSTALL drivers/firewire/firewire-net.ko
2025-10-02T16:37:58.9679848Z INSTALL drivers/firewire/firewire-ohci.ko
2025-10-02T16:37:58.9719724Z INSTALL drivers/firewire/firewire-sbp2.ko
2025-10-02T16:37:58.9726682Z INSTALL drivers/firewire/nosy.ko
2025-10-02T16:37:59.0433977Z INSTALL drivers/firmware/edd.ko
2025-10-02T16:37:59.0488489Z INSTALL drivers/firmware/efi/capsule-loader.ko
2025-10-02T16:37:59.0518390Z INSTALL drivers/firmware/efi/efibc.ko
2025-10-02T16:37:59.0571150Z INSTALL drivers/firmware/google/coreboot_table.ko
2025-10-02T16:37:59.0643294Z INSTALL drivers/firmware/google/framebuffer-coreboot.ko
2025-10-02T16:37:59.1014925Z INSTALL drivers/firmware/google/memconsole-coreboot.ko
2025-10-02T16:37:59.1045760Z INSTALL drivers/firmware/google/memconsole.ko
2025-10-02T16:37:59.1080272Z INSTALL drivers/firmware/google/vpd-sysfs.ko
2025-10-02T16:37:59.1117877Z INSTALL drivers/firmware/iscsi_ibft.ko
2025-10-02T16:37:59.1126383Z INSTALL drivers/firmware/qemu_fw_cfg.ko
2025-10-02T16:37:59.1560132Z INSTALL drivers/fpga/altera-cvp.ko
2025-10-02T16:37:59.1618634Z INSTALL drivers/fpga/altera-pr-ip-core.ko
2025-10-02T16:37:59.1645552Z INSTALL drivers/fpga/altera-freeze-bridge.ko
2025-10-02T16:37:59.1668300Z INSTALL drivers/fpga/altera-ps-spi.ko
2025-10-02T16:37:59.1708783Z INSTALL drivers/fpga/dfl-afu.ko
2025-10-02T16:37:59.2178648Z INSTALL drivers/fpga/dfl-fme-br.ko
2025-10-02T16:37:59.2213795Z INSTALL drivers/fpga/dfl-fme-mgr.ko
2025-10-02T16:37:59.2221205Z INSTALL drivers/fpga/dfl-fme-region.ko
2025-10-02T16:37:59.2241447Z INSTALL drivers/fpga/dfl-fme.ko
2025-10-02T16:37:59.2523942Z INSTALL drivers/fpga/dfl-pci.ko
2025-10-02T16:37:59.2638558Z INSTALL drivers/fpga/dfl.ko
2025-10-02T16:37:59.2710577Z INSTALL drivers/fpga/fpga-bridge.ko
2025-10-02T16:37:59.2831691Z INSTALL drivers/fpga/fpga-mgr.ko
2025-10-02T16:37:59.3135525Z INSTALL drivers/fpga/fpga-region.ko
2025-10-02T16:37:59.3152684Z INSTALL drivers/fpga/machxo2-spi.ko
2025-10-02T16:37:59.3330594Z INSTALL drivers/fpga/xilinx-pr-decoupler.ko
2025-10-02T16:37:59.3419629Z INSTALL drivers/fpga/xilinx-spi.ko
2025-10-02T16:37:59.3496571Z INSTALL drivers/gnss/gnss-mtk.ko
2025-10-02T16:37:59.3732417Z INSTALL drivers/gnss/gnss-serial.ko
2025-10-02T16:37:59.3822703Z INSTALL drivers/gnss/gnss-sirf.ko
2025-10-02T16:37:59.3871656Z INSTALL drivers/gnss/gnss-ubx.ko
2025-10-02T16:37:59.3911674Z INSTALL drivers/gnss/gnss.ko
2025-10-02T16:37:59.3995312Z INSTALL drivers/gpio/gpio-adp5520.ko
2025-10-02T16:37:59.4244085Z INSTALL drivers/gpio/gpio-adp5588.ko
2025-10-02T16:37:59.4330937Z INSTALL drivers/gpio/gpio-aggregator.ko
2025-10-02T16:37:59.4365891Z INSTALL drivers/gpio/gpio-amd-fch.ko
2025-10-02T16:37:59.4486749Z INSTALL drivers/gpio/gpio-amd8111.ko
2025-10-02T16:37:59.4506668Z INSTALL drivers/gpio/gpio-amdpt.ko
2025-10-02T16:37:59.4721087Z INSTALL drivers/gpio/gpio-arizona.ko
2025-10-02T16:37:59.4859975Z INSTALL drivers/gpio/gpio-bd9571mwv.ko
2025-10-02T16:37:59.4902707Z INSTALL drivers/gpio/gpio-crystalcove.ko
2025-10-02T16:37:59.5079172Z INSTALL drivers/gpio/gpio-da9052.ko
2025-10-02T16:37:59.5080314Z INSTALL drivers/gpio/gpio-da9055.ko
2025-10-02T16:37:59.5301119Z INSTALL drivers/gpio/gpio-dln2.ko
2025-10-02T16:37:59.5305947Z INSTALL drivers/gpio/gpio-dwapb.ko
2025-10-02T16:37:59.5554327Z INSTALL drivers/gpio/gpio-exar.ko
2025-10-02T16:37:59.5600018Z INSTALL drivers/gpio/gpio-f7188x.ko
2025-10-02T16:37:59.5615075Z INSTALL drivers/gpio/gpio-generic.ko
2025-10-02T16:37:59.5881500Z INSTALL drivers/gpio/gpio-ich.ko
2025-10-02T16:37:59.5902755Z INSTALL drivers/gpio/gpio-it87.ko
2025-10-02T16:37:59.6084581Z INSTALL drivers/gpio/gpio-janz-ttl.ko
2025-10-02T16:37:59.6176457Z INSTALL drivers/gpio/gpio-kempld.ko
2025-10-02T16:37:59.6498419Z INSTALL drivers/gpio/gpio-lp3943.ko
2025-10-02T16:37:59.6666160Z INSTALL drivers/gpio/gpio-lp873x.ko
2025-10-02T16:37:59.6732559Z INSTALL drivers/gpio/gpio-madera.ko
2025-10-02T16:37:59.6801265Z INSTALL drivers/gpio/gpio-max3191x.ko
2025-10-02T16:37:59.6907604Z INSTALL drivers/gpio/gpio-max7300.ko
2025-10-02T16:37:59.6974170Z INSTALL drivers/gpio/gpio-max7301.ko
2025-10-02T16:37:59.7238592Z INSTALL drivers/gpio/gpio-max730x.ko
2025-10-02T16:37:59.7296939Z INSTALL drivers/gpio/gpio-max732x.ko
2025-10-02T16:37:59.7378993Z INSTALL drivers/gpio/gpio-mb86s7x.ko
2025-10-02T16:37:59.7391479Z INSTALL drivers/gpio/gpio-mc33880.ko
2025-10-02T16:37:59.7444684Z INSTALL drivers/gpio/gpio-menz127.ko
2025-10-02T16:37:59.7827810Z INSTALL drivers/gpio/gpio-ml-ioh.ko
2025-10-02T16:37:59.7895519Z INSTALL drivers/gpio/gpio-mockup.ko
2025-10-02T16:37:59.7949106Z INSTALL drivers/gpio/gpio-pca953x.ko
2025-10-02T16:37:59.7950471Z INSTALL drivers/gpio/gpio-pca9570.ko
2025-10-02T16:37:59.7975411Z INSTALL drivers/gpio/gpio-pcf857x.ko
2025-10-02T16:37:59.8388813Z INSTALL drivers/gpio/gpio-pci-idio-16.ko
2025-10-02T16:37:59.8480315Z INSTALL drivers/gpio/gpio-pcie-idio-24.ko
2025-10-02T16:37:59.8531285Z INSTALL drivers/gpio/gpio-pisosr.ko
2025-10-02T16:37:59.8541121Z INSTALL drivers/gpio/gpio-rdc321x.ko
2025-10-02T16:37:59.8630414Z INSTALL drivers/gpio/gpio-sch.ko
2025-10-02T16:37:59.9006806Z INSTALL drivers/gpio/gpio-sch311x.ko
2025-10-02T16:37:59.9063667Z INSTALL drivers/gpio/gpio-siox.ko
2025-10-02T16:37:59.9082418Z INSTALL drivers/gpio/gpio-tpic2810.ko
2025-10-02T16:37:59.9098756Z INSTALL drivers/gpio/gpio-tps65086.ko
2025-10-02T16:37:59.9104055Z INSTALL drivers/gpio/gpio-tps65912.ko
2025-10-02T16:37:59.9562841Z INSTALL drivers/gpio/gpio-tqmx86.ko
2025-10-02T16:37:59.9586547Z INSTALL drivers/gpio/gpio-twl4030.ko
2025-10-02T16:37:59.9625522Z INSTALL drivers/gpio/gpio-twl6040.ko
2025-10-02T16:37:59.9628442Z INSTALL drivers/gpio/gpio-ucb1400.ko
2025-10-02T16:37:59.9655854Z INSTALL drivers/gpio/gpio-viperboard.ko
2025-10-02T16:38:00.0128639Z INSTALL drivers/gpio/gpio-vx855.ko
2025-10-02T16:38:00.0133364Z INSTALL drivers/gpio/gpio-wcove.ko
2025-10-02T16:38:00.0159693Z INSTALL drivers/gpio/gpio-winbond.ko
2025-10-02T16:38:00.0187414Z INSTALL drivers/gpio/gpio-wm831x.ko
2025-10-02T16:38:00.0213892Z INSTALL drivers/gpio/gpio-wm8350.ko
2025-10-02T16:38:00.0655871Z INSTALL drivers/gpio/gpio-wm8994.ko
2025-10-02T16:38:00.0693506Z INSTALL drivers/gpio/gpio-ws16c48.ko
2025-10-02T16:38:00.0724195Z INSTALL drivers/gpio/gpio-xilinx.ko
2025-10-02T16:38:00.0763207Z INSTALL drivers/gpio/gpio-xra1403.ko
2025-10-02T16:38:00.0801419Z INSTALL drivers/gpu/drm/amd/amdgpu/amdgpu.ko
2025-10-02T16:38:00.1218056Z INSTALL drivers/gpu/drm/ast/ast.ko
2025-10-02T16:38:00.1303877Z INSTALL drivers/gpu/drm/bochs/bochs-drm.ko
2025-10-02T16:38:00.1330555Z INSTALL drivers/gpu/drm/bridge/analogix/analogix-anx78xx.ko
2025-10-02T16:38:00.1359260Z INSTALL drivers/gpu/drm/bridge/analogix/analogix_dp.ko
2025-10-02T16:38:00.2255213Z INSTALL drivers/gpu/drm/drm.ko
2025-10-02T16:38:00.2276572Z INSTALL drivers/gpu/drm/drm_kms_helper.ko
2025-10-02T16:38:00.2347533Z INSTALL drivers/gpu/drm/drm_mipi_dbi.ko
2025-10-02T16:38:00.2510967Z INSTALL drivers/gpu/drm/drm_ttm_helper.ko
2025-10-02T16:38:00.3130806Z INSTALL drivers/gpu/drm/drm_vram_helper.ko
2025-10-02T16:38:00.3293781Z INSTALL drivers/gpu/drm/gma500/gma500_gfx.ko
2025-10-02T16:38:00.3907898Z INSTALL drivers/gpu/drm/i2c/ch7006.ko
2025-10-02T16:38:00.5196604Z INSTALL drivers/gpu/drm/i2c/sil164.ko
2025-10-02T16:38:00.5329760Z INSTALL drivers/gpu/drm/i2c/tda9950.ko
2025-10-02T16:38:00.5800545Z INSTALL drivers/gpu/drm/i2c/tda998x.ko
2025-10-02T16:38:00.6299257Z INSTALL drivers/gpu/drm/i915/gvt/kvmgt.ko
2025-10-02T16:38:00.6502052Z INSTALL drivers/gpu/drm/i915/i915.ko
2025-10-02T16:38:00.6506405Z INSTALL drivers/gpu/drm/mgag200/mgag200.ko
2025-10-02T16:38:00.7141625Z INSTALL drivers/gpu/drm/nouveau/nouveau.ko
2025-10-02T16:38:00.7820949Z INSTALL drivers/gpu/drm/panel/panel-raspberrypi-touchscreen.ko
2025-10-02T16:38:00.8085534Z INSTALL drivers/gpu/drm/qxl/qxl.ko
2025-10-02T16:38:00.8699990Z INSTALL drivers/gpu/drm/radeon/radeon.ko
2025-10-02T16:38:00.9745174Z INSTALL drivers/gpu/drm/scheduler/gpu-sched.ko
2025-10-02T16:38:01.0963985Z INSTALL drivers/gpu/drm/tiny/cirrus.ko
2025-10-02T16:38:01.1899278Z INSTALL drivers/gpu/drm/tiny/gm12u320.ko
2025-10-02T16:38:01.2786512Z INSTALL drivers/gpu/drm/tiny/hx8357d.ko
2025-10-02T16:38:01.3685678Z INSTALL drivers/gpu/drm/tiny/ili9225.ko
2025-10-02T16:38:01.4658266Z INSTALL drivers/gpu/drm/tiny/ili9341.ko
2025-10-02T16:38:01.5547356Z INSTALL drivers/gpu/drm/tiny/ili9486.ko
2025-10-02T16:38:01.6467695Z INSTALL drivers/gpu/drm/tiny/mi0283qt.ko
2025-10-02T16:38:01.7429115Z INSTALL drivers/gpu/drm/tiny/repaper.ko
2025-10-02T16:38:01.8559382Z INSTALL drivers/gpu/drm/tiny/st7586.ko
2025-10-02T16:38:01.9498894Z INSTALL drivers/gpu/drm/tiny/st7735r.ko
2025-10-02T16:38:02.0338105Z INSTALL drivers/gpu/drm/ttm/ttm.ko
2025-10-02T16:38:02.2950702Z INSTALL drivers/gpu/drm/udl/udl.ko
2025-10-02T16:38:02.3621305Z INSTALL drivers/gpu/drm/vboxvideo/vboxvideo.ko
2025-10-02T16:38:02.4044508Z INSTALL drivers/gpu/drm/vgem/vgem.ko
2025-10-02T16:38:02.4884928Z INSTALL drivers/gpu/drm/virtio/virtio-gpu.ko
2025-10-02T16:38:02.4985105Z INSTALL drivers/gpu/drm/vkms/vkms.ko
2025-10-02T16:38:02.6100111Z INSTALL drivers/gpu/drm/vmwgfx/vmwgfx.ko
2025-10-02T16:38:02.6536620Z INSTALL drivers/gpu/drm/xen/drm_xen_front.ko
2025-10-02T16:38:02.7902407Z INSTALL drivers/hid/hid-a4tech.ko
2025-10-02T16:38:02.8747905Z INSTALL drivers/hid/hid-accutouch.ko
2025-10-02T16:38:02.9547901Z INSTALL drivers/hid/hid-alps.ko
2025-10-02T16:38:03.0561621Z INSTALL drivers/hid/hid-apple.ko
2025-10-02T16:38:03.1037987Z INSTALL drivers/hid/hid-appleir.ko
2025-10-02T16:38:03.1557394Z INSTALL drivers/hid/hid-asus.ko
2025-10-02T16:38:03.1890596Z INSTALL drivers/hid/hid-aureal.ko
2025-10-02T16:38:03.2442463Z INSTALL drivers/hid/hid-axff.ko
2025-10-02T16:38:03.2541164Z INSTALL drivers/hid/hid-belkin.ko
2025-10-02T16:38:03.3267953Z INSTALL drivers/hid/hid-betopff.ko
2025-10-02T16:38:03.3285095Z INSTALL drivers/hid/hid-bigbenff.ko
2025-10-02T16:38:03.3981221Z INSTALL drivers/hid/hid-cherry.ko
2025-10-02T16:38:03.4095129Z INSTALL drivers/hid/hid-chicony.ko
2025-10-02T16:38:03.4726735Z INSTALL drivers/hid/hid-cmedia.ko
2025-10-02T16:38:03.4935981Z INSTALL drivers/hid/hid-corsair.ko
2025-10-02T16:38:03.5346982Z INSTALL drivers/hid/hid-cougar.ko
2025-10-02T16:38:03.5595118Z INSTALL drivers/hid/hid-cp2112.ko
2025-10-02T16:38:03.6233838Z INSTALL drivers/hid/hid-creative-sb0540.ko
2025-10-02T16:38:03.6303987Z INSTALL drivers/hid/hid-cypress.ko
2025-10-02T16:38:03.6634011Z INSTALL drivers/hid/hid-dr.ko
2025-10-02T16:38:03.6792566Z INSTALL drivers/hid/hid-elan.ko
2025-10-02T16:38:03.6910782Z INSTALL drivers/hid/hid-elecom.ko
2025-10-02T16:38:03.7178295Z INSTALL drivers/hid/hid-elo.ko
2025-10-02T16:38:03.7296019Z INSTALL drivers/hid/hid-emsff.ko
2025-10-02T16:38:03.7297088Z INSTALL drivers/hid/hid-ezkey.ko
2025-10-02T16:38:03.7592915Z INSTALL drivers/hid/hid-gaff.ko
2025-10-02T16:38:03.7735873Z INSTALL drivers/hid/hid-gembird.ko
2025-10-02T16:38:03.7773460Z INSTALL drivers/hid/hid-gfrm.ko
2025-10-02T16:38:03.7820206Z INSTALL drivers/hid/hid-glorious.ko
2025-10-02T16:38:03.8149836Z INSTALL drivers/hid/hid-google-hammer.ko
2025-10-02T16:38:03.8230750Z INSTALL drivers/hid/hid-gt683r.ko
2025-10-02T16:38:03.8281254Z INSTALL drivers/hid/hid-gyration.ko
2025-10-02T16:38:03.8335216Z INSTALL drivers/hid/hid-holtek-kbd.ko
2025-10-02T16:38:03.8803341Z INSTALL drivers/hid/hid-holtek-mouse.ko
2025-10-02T16:38:03.8813388Z INSTALL drivers/hid/hid-holtekff.ko
2025-10-02T16:38:03.8829979Z INSTALL drivers/hid/hid-hyperv.ko
2025-10-02T16:38:03.8865989Z INSTALL drivers/hid/hid-icade.ko
2025-10-02T16:38:03.9344933Z INSTALL drivers/hid/hid-ite.ko
2025-10-02T16:38:03.9367876Z INSTALL drivers/hid/hid-jabra.ko
2025-10-02T16:38:03.9407831Z INSTALL drivers/hid/hid-kensington.ko
2025-10-02T16:38:03.9433642Z INSTALL drivers/hid/hid-keytouch.ko
2025-10-02T16:38:03.9863644Z INSTALL drivers/hid/hid-kye.ko
2025-10-02T16:38:03.9886896Z INSTALL drivers/hid/hid-lcpower.ko
2025-10-02T16:38:03.9965161Z INSTALL drivers/hid/hid-led.ko
2025-10-02T16:38:03.9983092Z INSTALL drivers/hid/hid-lenovo.ko
2025-10-02T16:38:04.0426939Z INSTALL drivers/hid/hid-lg-g15.ko
2025-10-02T16:38:04.0474397Z INSTALL drivers/hid/hid-logitech-dj.ko
2025-10-02T16:38:04.0609838Z INSTALL drivers/hid/hid-logitech-hidpp.ko
2025-10-02T16:38:04.0649119Z INSTALL drivers/hid/hid-logitech.ko
2025-10-02T16:38:04.1073907Z INSTALL drivers/hid/hid-macally.ko
2025-10-02T16:38:04.1347566Z INSTALL drivers/hid/hid-magicmouse.ko
2025-10-02T16:38:04.1516175Z INSTALL drivers/hid/hid-maltron.ko
2025-10-02T16:38:04.1600917Z INSTALL drivers/hid/hid-mcp2221.ko
2025-10-02T16:38:04.1693033Z INSTALL drivers/hid/hid-mf.ko
2025-10-02T16:38:04.1926219Z INSTALL drivers/hid/hid-microsoft.ko
2025-10-02T16:38:04.2099890Z INSTALL drivers/hid/hid-monterey.ko
2025-10-02T16:38:04.2345236Z INSTALL drivers/hid/hid-multitouch.ko
2025-10-02T16:38:04.2357803Z INSTALL drivers/hid/hid-nti.ko
2025-10-02T16:38:04.2491108Z INSTALL drivers/hid/hid-ntrig.ko
2025-10-02T16:38:04.2562900Z INSTALL drivers/hid/hid-ortek.ko
2025-10-02T16:38:04.3013532Z INSTALL drivers/hid/hid-penmount.ko
2025-10-02T16:38:04.3020229Z INSTALL drivers/hid/hid-petalynx.ko
2025-10-02T16:38:04.3035907Z INSTALL drivers/hid/hid-picolcd.ko
2025-10-02T16:38:04.3135120Z INSTALL drivers/hid/hid-pl.ko
2025-10-02T16:38:04.3587464Z INSTALL drivers/hid/hid-primax.ko
2025-10-02T16:38:04.3592384Z INSTALL drivers/hid/hid-plantronics.ko
2025-10-02T16:38:04.3643267Z INSTALL drivers/hid/hid-prodikeys.ko
2025-10-02T16:38:04.4074066Z INSTALL drivers/hid/hid-redragon.ko
2025-10-02T16:38:04.4219350Z INSTALL drivers/hid/hid-retrode.ko
2025-10-02T16:38:04.4223998Z INSTALL drivers/hid/hid-rmi.ko
2025-10-02T16:38:04.4244784Z INSTALL drivers/hid/hid-roccat-arvo.ko
2025-10-02T16:38:04.4608221Z INSTALL drivers/hid/hid-roccat-common.ko
2025-10-02T16:38:04.4755390Z INSTALL drivers/hid/hid-roccat-isku.ko
2025-10-02T16:38:04.4814497Z INSTALL drivers/hid/hid-roccat-kone.ko
2025-10-02T16:38:04.4914194Z INSTALL drivers/hid/hid-roccat-koneplus.ko
2025-10-02T16:38:04.5148979Z INSTALL drivers/hid/hid-roccat-konepure.ko
2025-10-02T16:38:04.5352933Z INSTALL drivers/hid/hid-roccat-kovaplus.ko
2025-10-02T16:38:04.5504012Z INSTALL drivers/hid/hid-roccat-lua.ko
2025-10-02T16:38:04.5609303Z INSTALL drivers/hid/hid-roccat-pyra.ko
2025-10-02T16:38:04.5727367Z INSTALL drivers/hid/hid-roccat-ryos.ko
2025-10-02T16:38:04.6016609Z INSTALL drivers/hid/hid-roccat-savu.ko
2025-10-02T16:38:04.6059982Z INSTALL drivers/hid/hid-roccat.ko
2025-10-02T16:38:04.6286642Z INSTALL drivers/hid/hid-saitek.ko
2025-10-02T16:38:04.6360843Z INSTALL drivers/hid/hid-samsung.ko
2025-10-02T16:38:04.6581866Z INSTALL drivers/hid/hid-sensor-hub.ko
2025-10-02T16:38:04.6604166Z INSTALL drivers/hid/hid-sjoy.ko
2025-10-02T16:38:04.6784391Z INSTALL drivers/hid/hid-sony.ko
2025-10-02T16:38:04.7138738Z INSTALL drivers/hid/hid-speedlink.ko
2025-10-02T16:38:04.7171064Z INSTALL drivers/hid/hid-steam.ko
2025-10-02T16:38:04.7298673Z INSTALL drivers/hid/hid-steelseries.ko
2025-10-02T16:38:04.7493764Z INSTALL drivers/hid/hid-sunplus.ko
2025-10-02T16:38:04.7695097Z INSTALL drivers/hid/hid-tivo.ko
2025-10-02T16:38:04.7796267Z INSTALL drivers/hid/hid-tmff.ko
2025-10-02T16:38:04.8027453Z INSTALL drivers/hid/hid-topseed.ko
2025-10-02T16:38:04.8035475Z INSTALL drivers/hid/hid-twinhan.ko
2025-10-02T16:38:04.8208485Z INSTALL drivers/hid/hid-u2fzero.ko
2025-10-02T16:38:04.8292051Z INSTALL drivers/hid/hid-uclogic.ko
2025-10-02T16:38:04.8604485Z INSTALL drivers/hid/hid-udraw-ps3.ko
2025-10-02T16:38:04.8628240Z INSTALL drivers/hid/hid-viewsonic.ko
2025-10-02T16:38:04.8764004Z INSTALL drivers/hid/hid-vivaldi.ko
2025-10-02T16:38:04.9026640Z INSTALL drivers/hid/hid-waltop.ko
2025-10-02T16:38:04.9108198Z INSTALL drivers/hid/hid-wiimote.ko
2025-10-02T16:38:04.9222861Z INSTALL drivers/hid/hid-xinmo.ko
2025-10-02T16:38:04.9311988Z INSTALL drivers/hid/hid-zpff.ko
2025-10-02T16:38:04.9556587Z INSTALL drivers/hid/hid-zydacron.ko
2025-10-02T16:38:04.9865451Z INSTALL drivers/hid/i2c-hid/i2c-hid.ko
2025-10-02T16:38:04.9868125Z INSTALL drivers/hid/intel-ish-hid/intel-ish-ipc.ko
2025-10-02T16:38:05.0121959Z INSTALL drivers/hid/intel-ish-hid/intel-ishtp-hid.ko
2025-10-02T16:38:05.0210294Z INSTALL drivers/hid/intel-ish-hid/intel-ishtp-loader.ko
2025-10-02T16:38:05.0577120Z INSTALL drivers/hid/intel-ish-hid/intel-ishtp.ko
2025-10-02T16:38:05.0611671Z INSTALL drivers/hid/uhid.ko
2025-10-02T16:38:05.0954575Z INSTALL drivers/hid/usbhid/usbhid.ko
2025-10-02T16:38:05.1021175Z INSTALL drivers/hid/wacom.ko
2025-10-02T16:38:05.1353954Z INSTALL drivers/hv/hv_balloon.ko
2025-10-02T16:38:05.1611488Z INSTALL drivers/hv/hv_utils.ko
2025-10-02T16:38:05.2173914Z INSTALL drivers/hv/hv_vmbus.ko
2025-10-02T16:38:05.2288193Z INSTALL drivers/hwmon/abituguru.ko
2025-10-02T16:38:05.2368806Z INSTALL drivers/hwmon/abituguru3.ko
2025-10-02T16:38:05.2633870Z INSTALL drivers/hwmon/acpi_power_meter.ko
2025-10-02T16:38:05.3159040Z INSTALL drivers/hwmon/ad7314.ko
2025-10-02T16:38:05.3297698Z INSTALL drivers/hwmon/ad7414.ko
2025-10-02T16:38:05.3465007Z INSTALL drivers/hwmon/ad7418.ko
2025-10-02T16:38:05.3815179Z INSTALL drivers/hwmon/adc128d818.ko
2025-10-02T16:38:05.3853654Z INSTALL drivers/hwmon/adcxx.ko
2025-10-02T16:38:05.3932562Z INSTALL drivers/hwmon/adm1021.ko
2025-10-02T16:38:05.3957532Z INSTALL drivers/hwmon/adm1025.ko
2025-10-02T16:38:05.4414203Z INSTALL drivers/hwmon/adm1026.ko
2025-10-02T16:38:05.4498594Z INSTALL drivers/hwmon/adm1029.ko
2025-10-02T16:38:05.4572653Z INSTALL drivers/hwmon/adm1031.ko
2025-10-02T16:38:05.4574112Z INSTALL drivers/hwmon/adm1177.ko
2025-10-02T16:38:05.5157198Z INSTALL drivers/hwmon/adm9240.ko
2025-10-02T16:38:05.5164949Z INSTALL drivers/hwmon/ads7828.ko
2025-10-02T16:38:05.5349988Z INSTALL drivers/hwmon/adt7310.ko
2025-10-02T16:38:05.5352179Z INSTALL drivers/hwmon/ads7871.ko
2025-10-02T16:38:05.5748357Z INSTALL drivers/hwmon/adt7410.ko
2025-10-02T16:38:05.5838836Z INSTALL drivers/hwmon/adt7411.ko
2025-10-02T16:38:05.5870145Z INSTALL drivers/hwmon/adt7462.ko
2025-10-02T16:38:05.5910608Z INSTALL drivers/hwmon/adt7470.ko
2025-10-02T16:38:05.6330859Z INSTALL drivers/hwmon/adt7475.ko
2025-10-02T16:38:05.6513396Z INSTALL drivers/hwmon/adt7x10.ko
2025-10-02T16:38:05.6642104Z INSTALL drivers/hwmon/amc6821.ko
2025-10-02T16:38:05.6788856Z INSTALL drivers/hwmon/amd_energy.ko
2025-10-02T16:38:05.7147685Z INSTALL drivers/hwmon/applesmc.ko
2025-10-02T16:38:05.7152704Z INSTALL drivers/hwmon/as370-hwmon.ko
2025-10-02T16:38:05.7248652Z INSTALL drivers/hwmon/asb100.ko
2025-10-02T16:38:05.7433494Z INSTALL drivers/hwmon/asc7621.ko
2025-10-02T16:38:05.7635532Z INSTALL drivers/hwmon/aspeed-pwm-tacho.ko
2025-10-02T16:38:05.7960523Z INSTALL drivers/hwmon/asus_atk0110.ko
2025-10-02T16:38:05.8064237Z INSTALL drivers/hwmon/atxp1.ko
2025-10-02T16:38:05.8235543Z INSTALL drivers/hwmon/axi-fan-control.ko
2025-10-02T16:38:05.8262064Z INSTALL drivers/hwmon/coretemp.ko
2025-10-02T16:38:05.8696003Z INSTALL drivers/hwmon/corsair-cpro.ko
2025-10-02T16:38:05.8733709Z INSTALL drivers/hwmon/da9052-hwmon.ko
2025-10-02T16:38:05.8780838Z INSTALL drivers/hwmon/da9055-hwmon.ko
2025-10-02T16:38:05.8789218Z INSTALL drivers/hwmon/dell-smm-hwmon.ko
2025-10-02T16:38:05.9293627Z INSTALL drivers/hwmon/dme1737.ko
2025-10-02T16:38:05.9297679Z INSTALL drivers/hwmon/drivetemp.ko
2025-10-02T16:38:05.9369004Z INSTALL drivers/hwmon/ds1621.ko
2025-10-02T16:38:05.9670842Z INSTALL drivers/hwmon/ds620.ko
2025-10-02T16:38:05.9877131Z INSTALL drivers/hwmon/emc1403.ko
2025-10-02T16:38:05.9966516Z INSTALL drivers/hwmon/emc2103.ko
2025-10-02T16:38:06.0307511Z INSTALL drivers/hwmon/emc6w201.ko
2025-10-02T16:38:06.0336794Z INSTALL drivers/hwmon/f71805f.ko
2025-10-02T16:38:06.0527766Z INSTALL drivers/hwmon/f71882fg.ko
2025-10-02T16:38:06.0610190Z INSTALL drivers/hwmon/f75375s.ko
2025-10-02T16:38:06.0954344Z INSTALL drivers/hwmon/fam15h_power.ko
2025-10-02T16:38:06.1214383Z INSTALL drivers/hwmon/fschmd.ko
2025-10-02T16:38:06.1316924Z INSTALL drivers/hwmon/ftsteutates.ko
2025-10-02T16:38:06.1519041Z INSTALL drivers/hwmon/g760a.ko
2025-10-02T16:38:06.1575197Z INSTALL drivers/hwmon/g762.ko
2025-10-02T16:38:06.1940805Z INSTALL drivers/hwmon/gl518sm.ko
2025-10-02T16:38:06.1976980Z INSTALL drivers/hwmon/gl520sm.ko
2025-10-02T16:38:06.2167994Z INSTALL drivers/hwmon/hih6130.ko
2025-10-02T16:38:06.2171357Z INSTALL drivers/hwmon/hwmon-vid.ko
2025-10-02T16:38:06.2642674Z INSTALL drivers/hwmon/i5500_temp.ko
2025-10-02T16:38:06.2703597Z INSTALL drivers/hwmon/i5k_amb.ko
2025-10-02T16:38:06.2784564Z INSTALL drivers/hwmon/ibmaem.ko
2025-10-02T16:38:06.2879687Z INSTALL drivers/hwmon/ibmpex.ko
2025-10-02T16:38:06.3110851Z INSTALL drivers/hwmon/iio_hwmon.ko
2025-10-02T16:38:06.3406548Z INSTALL drivers/hwmon/ina209.ko
2025-10-02T16:38:06.3437962Z INSTALL drivers/hwmon/ina2xx.ko
2025-10-02T16:38:06.3577054Z INSTALL drivers/hwmon/ina3221.ko
2025-10-02T16:38:06.3579853Z INSTALL drivers/hwmon/intel-m10-bmc-hwmon.ko
2025-10-02T16:38:06.3996137Z INSTALL drivers/hwmon/it87.ko
2025-10-02T16:38:06.4190170Z INSTALL drivers/hwmon/jc42.ko
2025-10-02T16:38:06.4197557Z INSTALL drivers/hwmon/k10temp.ko
2025-10-02T16:38:06.4200668Z INSTALL drivers/hwmon/k8temp.ko
2025-10-02T16:38:06.4766166Z INSTALL drivers/hwmon/lineage-pem.ko
2025-10-02T16:38:06.4814876Z INSTALL drivers/hwmon/lm63.ko
2025-10-02T16:38:06.4900272Z INSTALL drivers/hwmon/lm70.ko
2025-10-02T16:38:06.5100654Z INSTALL drivers/hwmon/lm73.ko
2025-10-02T16:38:06.5446723Z INSTALL drivers/hwmon/lm75.ko
2025-10-02T16:38:06.5496971Z INSTALL drivers/hwmon/lm77.ko
2025-10-02T16:38:06.5591945Z INSTALL drivers/hwmon/lm78.ko
2025-10-02T16:38:06.5745176Z INSTALL drivers/hwmon/lm80.ko
2025-10-02T16:38:06.6053510Z INSTALL drivers/hwmon/lm83.ko
2025-10-02T16:38:06.6134166Z INSTALL drivers/hwmon/lm85.ko
2025-10-02T16:38:06.6278106Z INSTALL drivers/hwmon/lm87.ko
2025-10-02T16:38:06.6468525Z INSTALL drivers/hwmon/lm90.ko
2025-10-02T16:38:06.6735990Z INSTALL drivers/hwmon/lm92.ko
2025-10-02T16:38:06.7002254Z INSTALL drivers/hwmon/lm93.ko
2025-10-02T16:38:06.7038471Z INSTALL drivers/hwmon/lm95234.ko
2025-10-02T16:38:06.7046756Z INSTALL drivers/hwmon/lm95241.ko
2025-10-02T16:38:06.7249993Z INSTALL drivers/hwmon/lm95245.ko
2025-10-02T16:38:06.7319428Z INSTALL drivers/hwmon/ltc2945.ko
2025-10-02T16:38:06.7644196Z INSTALL drivers/hwmon/ltc2947-core.ko
2025-10-02T16:38:06.7788592Z INSTALL drivers/hwmon/ltc2947-i2c.ko
2025-10-02T16:38:06.7868451Z INSTALL drivers/hwmon/ltc2990.ko
2025-10-02T16:38:06.7887193Z INSTALL drivers/hwmon/ltc2947-spi.ko
2025-10-02T16:38:06.7976015Z INSTALL drivers/hwmon/ltc4151.ko
2025-10-02T16:38:06.8333753Z INSTALL drivers/hwmon/ltc4215.ko
2025-10-02T16:38:06.8335839Z INSTALL drivers/hwmon/ltc4222.ko
2025-10-02T16:38:06.8360365Z INSTALL drivers/hwmon/ltc4245.ko
2025-10-02T16:38:06.8381042Z INSTALL drivers/hwmon/ltc4260.ko
2025-10-02T16:38:06.8482191Z INSTALL drivers/hwmon/ltc4261.ko
2025-10-02T16:38:06.8857894Z INSTALL drivers/hwmon/max1111.ko
2025-10-02T16:38:06.8885596Z INSTALL drivers/hwmon/max16065.ko
2025-10-02T16:38:06.8909717Z INSTALL drivers/hwmon/max1619.ko
2025-10-02T16:38:06.8960310Z INSTALL drivers/hwmon/max1668.ko
2025-10-02T16:38:06.8977217Z INSTALL drivers/hwmon/max197.ko
2025-10-02T16:38:06.9445630Z INSTALL drivers/hwmon/max31722.ko
2025-10-02T16:38:06.9487332Z INSTALL drivers/hwmon/max31730.ko
2025-10-02T16:38:06.9511776Z INSTALL drivers/hwmon/max31790.ko
2025-10-02T16:38:06.9574351Z INSTALL drivers/hwmon/max6621.ko
2025-10-02T16:38:06.9584264Z INSTALL drivers/hwmon/max6639.ko
2025-10-02T16:38:06.9998756Z INSTALL drivers/hwmon/max6642.ko
2025-10-02T16:38:07.0041646Z INSTALL drivers/hwmon/max6650.ko
2025-10-02T16:38:07.0073766Z INSTALL drivers/hwmon/max6697.ko
2025-10-02T16:38:07.0142569Z INSTALL drivers/hwmon/mc13783-adc.ko
2025-10-02T16:38:07.0160221Z INSTALL drivers/hwmon/mcp3021.ko
2025-10-02T16:38:07.0589043Z INSTALL drivers/hwmon/menf21bmc_hwmon.ko
2025-10-02T16:38:07.0628472Z INSTALL drivers/hwmon/mlxreg-fan.ko
2025-10-02T16:38:07.0649769Z INSTALL drivers/hwmon/mr75203.ko
2025-10-02T16:38:07.0668765Z INSTALL drivers/hwmon/nct6683.ko
2025-10-02T16:38:07.0760985Z INSTALL drivers/hwmon/nct6775.ko
2025-10-02T16:38:07.1136358Z INSTALL drivers/hwmon/nct7802.ko
2025-10-02T16:38:07.1180439Z INSTALL drivers/hwmon/nct7904.ko
2025-10-02T16:38:07.1208779Z INSTALL drivers/hwmon/npcm750-pwm-fan.ko
2025-10-02T16:38:07.1292202Z INSTALL drivers/hwmon/ntc_thermistor.ko
2025-10-02T16:38:07.1769404Z INSTALL drivers/hwmon/pc87360.ko
2025-10-02T16:38:07.1834785Z INSTALL drivers/hwmon/pc87427.ko
2025-10-02T16:38:07.1867066Z INSTALL drivers/hwmon/pcf8591.ko
2025-10-02T16:38:07.1894525Z INSTALL drivers/hwmon/pmbus/adm1266.ko
2025-10-02T16:38:07.2054938Z INSTALL drivers/hwmon/pmbus/adm1275.ko
2025-10-02T16:38:07.2520613Z INSTALL drivers/hwmon/pmbus/bel-pfe.ko
2025-10-02T16:38:07.2550831Z INSTALL drivers/hwmon/pmbus/ibm-cffps.ko
2025-10-02T16:38:07.2574660Z INSTALL drivers/hwmon/pmbus/inspur-ipsps.ko
2025-10-02T16:38:07.2620487Z INSTALL drivers/hwmon/pmbus/ir35221.ko
2025-10-02T16:38:07.2666674Z INSTALL drivers/hwmon/pmbus/ir38064.ko
2025-10-02T16:38:07.2961670Z INSTALL drivers/hwmon/pmbus/irps5401.ko
2025-10-02T16:38:07.3132266Z INSTALL drivers/hwmon/pmbus/isl68137.ko
2025-10-02T16:38:07.3133334Z INSTALL drivers/hwmon/pmbus/lm25066.ko
2025-10-02T16:38:07.3144446Z INSTALL drivers/hwmon/pmbus/ltc2978.ko
2025-10-02T16:38:07.3185935Z INSTALL drivers/hwmon/pmbus/ltc3815.ko
2025-10-02T16:38:07.3378089Z INSTALL drivers/hwmon/pmbus/max16064.ko
2025-10-02T16:38:07.3614623Z INSTALL drivers/hwmon/pmbus/max16601.ko
2025-10-02T16:38:07.3680064Z INSTALL drivers/hwmon/pmbus/max20730.ko
2025-10-02T16:38:07.3737197Z INSTALL drivers/hwmon/pmbus/max20751.ko
2025-10-02T16:38:07.3771123Z INSTALL drivers/hwmon/pmbus/max31785.ko
2025-10-02T16:38:07.3866745Z INSTALL drivers/hwmon/pmbus/max34440.ko
2025-10-02T16:38:07.4181105Z INSTALL drivers/hwmon/pmbus/max8688.ko
2025-10-02T16:38:07.4190361Z INSTALL drivers/hwmon/pmbus/mp2975.ko
2025-10-02T16:38:07.4304473Z INSTALL drivers/hwmon/pmbus/pmbus.ko
2025-10-02T16:38:07.4360248Z INSTALL drivers/hwmon/pmbus/pmbus_core.ko
2025-10-02T16:38:07.4361206Z INSTALL drivers/hwmon/pmbus/pxe1610.ko
2025-10-02T16:38:07.4644227Z INSTALL drivers/hwmon/pmbus/tps40422.ko
2025-10-02T16:38:07.4666812Z INSTALL drivers/hwmon/pmbus/tps53679.ko
2025-10-02T16:38:07.4823315Z INSTALL drivers/hwmon/pmbus/ucd9000.ko
2025-10-02T16:38:07.4853196Z INSTALL drivers/hwmon/pmbus/ucd9200.ko
2025-10-02T16:38:07.5147193Z INSTALL drivers/hwmon/pmbus/xdpe12284.ko
2025-10-02T16:38:07.5216828Z INSTALL drivers/hwmon/powr1220.ko
2025-10-02T16:38:07.5217660Z INSTALL drivers/hwmon/pmbus/zl6100.ko
2025-10-02T16:38:07.5306207Z INSTALL drivers/hwmon/sch5627.ko
2025-10-02T16:38:07.5531190Z INSTALL drivers/hwmon/sch5636.ko
2025-10-02T16:38:07.5676376Z INSTALL drivers/hwmon/sch56xx-common.ko
2025-10-02T16:38:07.5793079Z INSTALL drivers/hwmon/sht15.ko
2025-10-02T16:38:07.5812178Z INSTALL drivers/hwmon/sht21.ko
2025-10-02T16:38:07.6027460Z INSTALL drivers/hwmon/sht3x.ko
2025-10-02T16:38:07.6078258Z INSTALL drivers/hwmon/shtc1.ko
2025-10-02T16:38:07.6292207Z INSTALL drivers/hwmon/sis5595.ko
2025-10-02T16:38:07.6394324Z INSTALL drivers/hwmon/smm665.ko
2025-10-02T16:38:07.6428530Z INSTALL drivers/hwmon/smsc47b397.ko
2025-10-02T16:38:07.6589303Z INSTALL drivers/hwmon/smsc47m1.ko
2025-10-02T16:38:07.6652903Z INSTALL drivers/hwmon/smsc47m192.ko
2025-10-02T16:38:07.6971881Z INSTALL drivers/hwmon/stts751.ko
2025-10-02T16:38:07.7018346Z INSTALL drivers/hwmon/tc654.ko
2025-10-02T16:38:07.7040654Z INSTALL drivers/hwmon/tc74.ko
2025-10-02T16:38:07.7276749Z INSTALL drivers/hwmon/thmc50.ko
2025-10-02T16:38:07.7343769Z INSTALL drivers/hwmon/tmp102.ko
2025-10-02T16:38:07.7536376Z INSTALL drivers/hwmon/tmp103.ko
2025-10-02T16:38:07.7600501Z INSTALL drivers/hwmon/tmp108.ko
2025-10-02T16:38:07.7609796Z INSTALL drivers/hwmon/tmp401.ko
2025-10-02T16:38:07.7921194Z INSTALL drivers/hwmon/tmp421.ko
2025-10-02T16:38:07.7931692Z INSTALL drivers/hwmon/tmp513.ko
2025-10-02T16:38:07.8062753Z INSTALL drivers/hwmon/via-cputemp.ko
2025-10-02T16:38:07.8129339Z INSTALL drivers/hwmon/via686a.ko
2025-10-02T16:38:07.8203800Z INSTALL drivers/hwmon/vt1211.ko
2025-10-02T16:38:07.8516323Z INSTALL drivers/hwmon/vt8231.ko
2025-10-02T16:38:07.8538338Z INSTALL drivers/hwmon/w83627ehf.ko
2025-10-02T16:38:07.8625728Z INSTALL drivers/hwmon/w83627hf.ko
2025-10-02T16:38:07.8821142Z INSTALL drivers/hwmon/w83773g.ko
2025-10-02T16:38:07.8950638Z INSTALL drivers/hwmon/w83781d.ko
2025-10-02T16:38:07.9235995Z INSTALL drivers/hwmon/w83791d.ko
2025-10-02T16:38:07.9243812Z INSTALL drivers/hwmon/w83792d.ko
2025-10-02T16:38:07.9406038Z INSTALL drivers/hwmon/w83793.ko
2025-10-02T16:38:07.9430797Z INSTALL drivers/hwmon/w83795.ko
2025-10-02T16:38:07.9821625Z INSTALL drivers/hwmon/w83l785ts.ko
2025-10-02T16:38:07.9981917Z INSTALL drivers/hwmon/w83l786ng.ko
2025-10-02T16:38:08.0160662Z INSTALL drivers/hwmon/wm831x-hwmon.ko
2025-10-02T16:38:08.0354130Z INSTALL drivers/hwmon/wm8350-hwmon.ko
2025-10-02T16:38:08.0425299Z INSTALL drivers/hwmon/xgene-hwmon.ko
2025-10-02T16:38:08.0501328Z INSTALL drivers/hwtracing/intel_th/intel_th.ko
2025-10-02T16:38:08.0553780Z INSTALL drivers/hwtracing/intel_th/intel_th_acpi.ko
2025-10-02T16:38:08.0696066Z INSTALL drivers/hwtracing/intel_th/intel_th_gth.ko
2025-10-02T16:38:08.0880850Z INSTALL drivers/hwtracing/intel_th/intel_th_msu.ko
2025-10-02T16:38:08.1078062Z INSTALL drivers/hwtracing/intel_th/intel_th_pci.ko
2025-10-02T16:38:08.1081056Z INSTALL drivers/hwtracing/intel_th/intel_th_msu_sink.ko
2025-10-02T16:38:08.1192452Z INSTALL drivers/hwtracing/intel_th/intel_th_pti.ko
2025-10-02T16:38:08.1271141Z INSTALL drivers/hwtracing/intel_th/intel_th_sth.ko
2025-10-02T16:38:08.1617136Z INSTALL drivers/hwtracing/stm/stm_console.ko
2025-10-02T16:38:08.1653568Z INSTALL drivers/hwtracing/stm/stm_core.ko
2025-10-02T16:38:08.1694870Z INSTALL drivers/hwtracing/stm/stm_ftrace.ko
2025-10-02T16:38:08.1716257Z INSTALL drivers/hwtracing/stm/stm_heartbeat.ko
2025-10-02T16:38:08.1757358Z INSTALL drivers/hwtracing/stm/stm_p_basic.ko
2025-10-02T16:38:08.2161138Z INSTALL drivers/hwtracing/stm/stm_p_sys-t.ko
2025-10-02T16:38:08.2187607Z INSTALL drivers/i2c/algos/i2c-algo-bit.ko
2025-10-02T16:38:08.2203766Z INSTALL drivers/i2c/algos/i2c-algo-pca.ko
2025-10-02T16:38:08.2264622Z INSTALL drivers/i2c/busses/i2c-ali1535.ko
2025-10-02T16:38:08.2493189Z INSTALL drivers/i2c/busses/i2c-ali1563.ko
2025-10-02T16:38:08.2670579Z INSTALL drivers/i2c/busses/i2c-ali15x3.ko
2025-10-02T16:38:08.2783701Z INSTALL drivers/i2c/busses/i2c-amd-mp2-pci.ko
2025-10-02T16:38:08.2842025Z INSTALL drivers/i2c/busses/i2c-amd-mp2-plat.ko
2025-10-02T16:38:08.2866327Z INSTALL drivers/i2c/busses/i2c-amd756-s4882.ko
2025-10-02T16:38:08.3136241Z INSTALL drivers/i2c/busses/i2c-amd756.ko
2025-10-02T16:38:08.3304070Z INSTALL drivers/i2c/busses/i2c-amd8111.ko
2025-10-02T16:38:08.3355953Z INSTALL drivers/i2c/busses/i2c-cbus-gpio.ko
2025-10-02T16:38:08.3440138Z INSTALL drivers/i2c/busses/i2c-cht-wc.ko
2025-10-02T16:38:08.3459109Z INSTALL drivers/i2c/busses/i2c-cros-ec-tunnel.ko
2025-10-02T16:38:08.3848399Z INSTALL drivers/i2c/busses/i2c-diolan-u2c.ko
2025-10-02T16:38:08.3850137Z INSTALL drivers/i2c/busses/i2c-dln2.ko
2025-10-02T16:38:08.3868609Z INSTALL drivers/i2c/busses/i2c-emev2.ko
2025-10-02T16:38:08.3938139Z INSTALL drivers/i2c/busses/i2c-gpio.ko
2025-10-02T16:38:08.3996258Z INSTALL drivers/i2c/busses/i2c-i801.ko
2025-10-02T16:38:08.4416225Z INSTALL drivers/i2c/busses/i2c-isch.ko
2025-10-02T16:38:08.4448448Z INSTALL drivers/i2c/busses/i2c-ismt.ko
2025-10-02T16:38:08.4504233Z INSTALL drivers/i2c/busses/i2c-kempld.ko
2025-10-02T16:38:08.4553576Z INSTALL drivers/i2c/busses/i2c-mlxcpld.ko
2025-10-02T16:38:08.4780735Z INSTALL drivers/i2c/busses/i2c-nct6775.ko
2025-10-02T16:38:08.4959848Z INSTALL drivers/i2c/busses/i2c-nforce2-s4985.ko
2025-10-02T16:38:08.5107758Z INSTALL drivers/i2c/busses/i2c-nvidia-gpu.ko
2025-10-02T16:38:08.5108854Z INSTALL drivers/i2c/busses/i2c-nforce2.ko
2025-10-02T16:38:08.5128500Z INSTALL drivers/i2c/busses/i2c-ocores.ko
2025-10-02T16:38:08.5428079Z INSTALL drivers/i2c/busses/i2c-parport.ko
2025-10-02T16:38:08.5440051Z INSTALL drivers/i2c/busses/i2c-pca-platform.ko
2025-10-02T16:38:08.5655104Z INSTALL drivers/i2c/busses/i2c-piix4.ko
2025-10-02T16:38:08.5697924Z INSTALL drivers/i2c/busses/i2c-robotfuzz-osif.ko
2025-10-02T16:38:08.5710185Z INSTALL drivers/i2c/busses/i2c-scmi.ko
2025-10-02T16:38:08.6049304Z INSTALL drivers/i2c/busses/i2c-simtec.ko
2025-10-02T16:38:08.6051420Z INSTALL drivers/i2c/busses/i2c-sis5595.ko
2025-10-02T16:38:08.6195411Z INSTALL drivers/i2c/busses/i2c-sis630.ko
2025-10-02T16:38:08.6294988Z INSTALL drivers/i2c/busses/i2c-sis96x.ko
2025-10-02T16:38:08.6325124Z INSTALL drivers/i2c/busses/i2c-taos-evm.ko
2025-10-02T16:38:08.6585087Z INSTALL drivers/i2c/busses/i2c-tiny-usb.ko
2025-10-02T16:38:08.6649308Z INSTALL drivers/i2c/busses/i2c-via.ko
2025-10-02T16:38:08.6779005Z INSTALL drivers/i2c/busses/i2c-viapro.ko
2025-10-02T16:38:08.6884235Z INSTALL drivers/i2c/busses/i2c-viperboard.ko
2025-10-02T16:38:08.6897964Z INSTALL drivers/i2c/busses/i2c-xiic.ko
2025-10-02T16:38:08.7181163Z INSTALL drivers/i2c/i2c-dev.ko
2025-10-02T16:38:08.7185712Z INSTALL drivers/i2c/i2c-mux.ko
2025-10-02T16:38:08.7384307Z INSTALL drivers/i2c/i2c-slave-eeprom.ko
2025-10-02T16:38:08.7555841Z INSTALL drivers/i2c/i2c-slave-testunit.ko
2025-10-02T16:38:08.7561792Z INSTALL drivers/i2c/i2c-smbus.ko
2025-10-02T16:38:08.7775544Z INSTALL drivers/i2c/i2c-stub.ko
2025-10-02T16:38:08.7858051Z INSTALL drivers/i2c/muxes/i2c-mux-gpio.ko
2025-10-02T16:38:08.7887563Z INSTALL drivers/i2c/muxes/i2c-mux-ltc4306.ko
2025-10-02T16:38:08.8032705Z INSTALL drivers/i2c/muxes/i2c-mux-mlxcpld.ko
2025-10-02T16:38:08.8210390Z INSTALL drivers/i2c/muxes/i2c-mux-pca9541.ko
2025-10-02T16:38:08.8329928Z INSTALL drivers/i2c/muxes/i2c-mux-pca954x.ko
2025-10-02T16:38:08.8394117Z INSTALL drivers/i2c/muxes/i2c-mux-reg.ko
2025-10-02T16:38:08.8416536Z INSTALL drivers/iio/accel/adis16201.ko
2025-10-02T16:38:08.8523596Z INSTALL drivers/iio/accel/adis16209.ko
2025-10-02T16:38:08.8781962Z INSTALL drivers/iio/accel/adxl372.ko
2025-10-02T16:38:08.8917639Z INSTALL drivers/iio/accel/adxl372_i2c.ko
2025-10-02T16:38:08.8996835Z INSTALL drivers/iio/accel/adxl372_spi.ko
2025-10-02T16:38:08.9000369Z INSTALL drivers/iio/accel/bma220_spi.ko
2025-10-02T16:38:08.9024457Z INSTALL drivers/iio/accel/bma400_core.ko
2025-10-02T16:38:08.9374431Z INSTALL drivers/iio/accel/bma400_i2c.ko
2025-10-02T16:38:08.9397311Z INSTALL drivers/iio/accel/bma400_spi.ko
2025-10-02T16:38:08.9471133Z INSTALL drivers/iio/accel/bmc150-accel-core.ko
2025-10-02T16:38:08.9498155Z INSTALL drivers/iio/accel/bmc150-accel-i2c.ko
2025-10-02T16:38:08.9606383Z INSTALL drivers/iio/accel/bmc150-accel-spi.ko
2025-10-02T16:38:08.9859808Z INSTALL drivers/iio/accel/cros_ec_accel_legacy.ko
2025-10-02T16:38:08.9926779Z INSTALL drivers/iio/accel/da280.ko
2025-10-02T16:38:09.0100239Z INSTALL drivers/iio/accel/da311.ko
2025-10-02T16:38:09.0118665Z INSTALL drivers/iio/accel/dmard09.ko
2025-10-02T16:38:09.0202718Z INSTALL drivers/iio/accel/dmard10.ko
2025-10-02T16:38:09.0368416Z INSTALL drivers/iio/accel/hid-sensor-accel-3d.ko
2025-10-02T16:38:09.0442025Z INSTALL drivers/iio/accel/kxcjk-1013.ko
2025-10-02T16:38:09.0622169Z INSTALL drivers/iio/accel/kxsd9-i2c.ko
2025-10-02T16:38:09.0671179Z INSTALL drivers/iio/accel/kxsd9-spi.ko
2025-10-02T16:38:09.0746334Z INSTALL drivers/iio/accel/kxsd9.ko
2025-10-02T16:38:09.1033593Z INSTALL drivers/iio/accel/mc3230.ko
2025-10-02T16:38:09.1125506Z INSTALL drivers/iio/accel/mma7455_core.ko
2025-10-02T16:38:09.1128303Z INSTALL drivers/iio/accel/mma7455_i2c.ko
2025-10-02T16:38:09.1144092Z INSTALL drivers/iio/accel/mma7455_spi.ko
2025-10-02T16:38:09.1319913Z INSTALL drivers/iio/accel/mma7660.ko
2025-10-02T16:38:09.1539273Z INSTALL drivers/iio/accel/mma8452.ko
2025-10-02T16:38:09.1607689Z INSTALL drivers/iio/accel/mma9551_core.ko
2025-10-02T16:38:09.1610209Z INSTALL drivers/iio/accel/mma9551.ko
2025-10-02T16:38:09.1717338Z INSTALL drivers/iio/accel/mma9553.ko
2025-10-02T16:38:09.1818264Z INSTALL drivers/iio/accel/mxc4005.ko
2025-10-02T16:38:09.2197655Z INSTALL drivers/iio/accel/mxc6255.ko
2025-10-02T16:38:09.2221130Z INSTALL drivers/iio/accel/sca3000.ko
2025-10-02T16:38:09.2261582Z INSTALL drivers/iio/accel/ssp_accel_sensor.ko
2025-10-02T16:38:09.2441781Z INSTALL drivers/iio/accel/st_accel.ko
2025-10-02T16:38:09.2547734Z INSTALL drivers/iio/accel/st_accel_i2c.ko
2025-10-02T16:38:09.2761265Z INSTALL drivers/iio/accel/st_accel_spi.ko
2025-10-02T16:38:09.2782815Z INSTALL drivers/iio/accel/stk8312.ko
2025-10-02T16:38:09.2795947Z INSTALL drivers/iio/accel/stk8ba50.ko
2025-10-02T16:38:09.3071549Z INSTALL drivers/iio/adc/ad7091r-base.ko
2025-10-02T16:38:09.3083642Z INSTALL drivers/iio/adc/ad7091r5.ko
2025-10-02T16:38:09.3329066Z INSTALL drivers/iio/adc/ad7124.ko
2025-10-02T16:38:09.3377467Z INSTALL drivers/iio/adc/ad7192.ko
2025-10-02T16:38:09.3413503Z INSTALL drivers/iio/adc/ad7266.ko
2025-10-02T16:38:09.3607539Z INSTALL drivers/iio/adc/ad7291.ko
2025-10-02T16:38:09.3620164Z INSTALL drivers/iio/adc/ad7292.ko
2025-10-02T16:38:09.3861097Z INSTALL drivers/iio/adc/ad7298.ko
2025-10-02T16:38:09.3939751Z INSTALL drivers/iio/adc/ad7476.ko
2025-10-02T16:38:09.3976943Z INSTALL drivers/iio/adc/ad7606.ko
2025-10-02T16:38:09.4110825Z INSTALL drivers/iio/adc/ad7606_par.ko
2025-10-02T16:38:09.4216811Z INSTALL drivers/iio/adc/ad7606_spi.ko
2025-10-02T16:38:09.4410923Z INSTALL drivers/iio/adc/ad7766.ko
2025-10-02T16:38:09.4462270Z INSTALL drivers/iio/adc/ad7768-1.ko
2025-10-02T16:38:09.4581275Z INSTALL drivers/iio/adc/ad7780.ko
2025-10-02T16:38:09.4640713Z INSTALL drivers/iio/adc/ad7791.ko
2025-10-02T16:38:09.4866006Z INSTALL drivers/iio/adc/ad7793.ko
2025-10-02T16:38:09.4930604Z INSTALL drivers/iio/adc/ad7887.ko
2025-10-02T16:38:09.5040207Z INSTALL drivers/iio/adc/ad7923.ko
2025-10-02T16:38:09.5141797Z INSTALL drivers/iio/adc/ad7949.ko
2025-10-02T16:38:09.5284269Z INSTALL drivers/iio/adc/ad799x.ko
2025-10-02T16:38:09.5503028Z INSTALL drivers/iio/adc/ad_sigma_delta.ko
2025-10-02T16:38:09.5503974Z INSTALL drivers/iio/adc/axp20x_adc.ko
2025-10-02T16:38:09.5654487Z INSTALL drivers/iio/adc/axp288_adc.ko
2025-10-02T16:38:09.5676979Z INSTALL drivers/iio/adc/cc10001_adc.ko
2025-10-02T16:38:09.5938096Z INSTALL drivers/iio/adc/da9150-gpadc.ko
2025-10-02T16:38:09.6058247Z INSTALL drivers/iio/adc/dln2-adc.ko
2025-10-02T16:38:09.6082465Z INSTALL drivers/iio/adc/hi8435.ko
2025-10-02T16:38:09.6243185Z INSTALL drivers/iio/adc/ina2xx-adc.ko
2025-10-02T16:38:09.6260433Z INSTALL drivers/iio/adc/hx711.ko
2025-10-02T16:38:09.6507674Z INSTALL drivers/iio/adc/intel_mrfld_adc.ko
2025-10-02T16:38:09.6611646Z INSTALL drivers/iio/adc/lp8788_adc.ko
2025-10-02T16:38:09.6675961Z INSTALL drivers/iio/adc/ltc2471.ko
2025-10-02T16:38:09.6871417Z INSTALL drivers/iio/adc/ltc2485.ko
2025-10-02T16:38:09.6962099Z INSTALL drivers/iio/adc/ltc2496.ko
2025-10-02T16:38:09.7028321Z INSTALL drivers/iio/adc/ltc2497-core.ko
2025-10-02T16:38:09.7167432Z INSTALL drivers/iio/adc/ltc2497.ko
2025-10-02T16:38:09.7204623Z INSTALL drivers/iio/adc/max1027.ko
2025-10-02T16:38:09.7371232Z INSTALL drivers/iio/adc/max11100.ko
2025-10-02T16:38:09.7468905Z INSTALL drivers/iio/adc/max1118.ko
2025-10-02T16:38:09.7560685Z INSTALL drivers/iio/adc/max1241.ko
2025-10-02T16:38:09.7700745Z INSTALL drivers/iio/adc/max1363.ko
2025-10-02T16:38:09.7836127Z INSTALL drivers/iio/adc/max9611.ko
2025-10-02T16:38:09.7875300Z INSTALL drivers/iio/adc/mcp320x.ko
2025-10-02T16:38:09.8073210Z INSTALL drivers/iio/adc/mcp3422.ko
2025-10-02T16:38:09.8112672Z INSTALL drivers/iio/adc/mcp3911.ko
2025-10-02T16:38:09.8260496Z INSTALL drivers/iio/adc/men_z188_adc.ko
2025-10-02T16:38:09.8430163Z INSTALL drivers/iio/adc/mp2629_adc.ko
2025-10-02T16:38:09.8486497Z INSTALL drivers/iio/adc/nau7802.ko
2025-10-02T16:38:09.8623810Z INSTALL drivers/iio/adc/palmas_gpadc.ko
2025-10-02T16:38:09.8681591Z INSTALL drivers/iio/adc/ti-adc081c.ko
2025-10-02T16:38:09.8728931Z INSTALL drivers/iio/adc/ti-adc0832.ko
2025-10-02T16:38:09.9034005Z INSTALL drivers/iio/adc/ti-adc084s021.ko
2025-10-02T16:38:09.9168543Z INSTALL drivers/iio/adc/ti-adc108s102.ko
2025-10-02T16:38:09.9192948Z INSTALL drivers/iio/adc/ti-adc12138.ko
2025-10-02T16:38:09.9263570Z INSTALL drivers/iio/adc/ti-adc128s052.ko
2025-10-02T16:38:09.9288014Z INSTALL drivers/iio/adc/ti-adc161s626.ko
2025-10-02T16:38:09.9575999Z INSTALL drivers/iio/adc/ti-ads1015.ko
2025-10-02T16:38:09.9672100Z INSTALL drivers/iio/adc/ti-ads7950.ko
2025-10-02T16:38:09.9766400Z INSTALL drivers/iio/adc/ti-tlc4541.ko
2025-10-02T16:38:09.9844610Z INSTALL drivers/iio/adc/twl4030-madc.ko
2025-10-02T16:38:09.9915082Z INSTALL drivers/iio/adc/twl6030-gpadc.ko
2025-10-02T16:38:10.0201410Z INSTALL drivers/iio/adc/viperboard_adc.ko
2025-10-02T16:38:10.0274950Z INSTALL drivers/iio/adc/xilinx-xadc.ko
2025-10-02T16:38:10.0381628Z INSTALL drivers/iio/amplifiers/ad8366.ko
2025-10-02T16:38:10.0459163Z INSTALL drivers/iio/amplifiers/hmc425a.ko
2025-10-02T16:38:10.0523536Z INSTALL drivers/iio/buffer/industrialio-buffer-cb.ko
2025-10-02T16:38:10.0670147Z INSTALL drivers/iio/buffer/industrialio-buffer-dma.ko
2025-10-02T16:38:10.0866401Z INSTALL drivers/iio/buffer/industrialio-buffer-dmaengine.ko
2025-10-02T16:38:10.0946429Z INSTALL drivers/iio/buffer/industrialio-hw-consumer.ko
2025-10-02T16:38:10.0992526Z INSTALL drivers/iio/buffer/industrialio-triggered-buffer.ko
2025-10-02T16:38:10.1102939Z INSTALL drivers/iio/buffer/kfifo_buf.ko
2025-10-02T16:38:10.1180724Z INSTALL drivers/iio/chemical/ams-iaq-core.ko
2025-10-02T16:38:10.1390863Z INSTALL drivers/iio/chemical/atlas-ezo-sensor.ko
2025-10-02T16:38:10.1458451Z INSTALL drivers/iio/chemical/atlas-sensor.ko
2025-10-02T16:38:10.1505574Z INSTALL drivers/iio/chemical/bme680_core.ko
2025-10-02T16:38:10.1612914Z INSTALL drivers/iio/chemical/bme680_i2c.ko
2025-10-02T16:38:10.1684804Z INSTALL drivers/iio/chemical/bme680_spi.ko
2025-10-02T16:38:10.1870815Z INSTALL drivers/iio/chemical/ccs811.ko
2025-10-02T16:38:10.2035780Z INSTALL drivers/iio/chemical/pms7003.ko
2025-10-02T16:38:10.2115196Z INSTALL drivers/iio/chemical/scd30_core.ko
2025-10-02T16:38:10.2152855Z INSTALL drivers/iio/chemical/scd30_i2c.ko
2025-10-02T16:38:10.2206426Z INSTALL drivers/iio/chemical/scd30_serial.ko
2025-10-02T16:38:10.2449848Z INSTALL drivers/iio/chemical/sgp30.ko
2025-10-02T16:38:10.2546487Z INSTALL drivers/iio/chemical/sps30.ko
2025-10-02T16:38:10.2612315Z INSTALL drivers/iio/chemical/vz89x.ko
2025-10-02T16:38:10.2746650Z INSTALL drivers/iio/common/cros_ec_sensors/cros_ec_lid_angle.ko
2025-10-02T16:38:10.2771655Z INSTALL drivers/iio/common/cros_ec_sensors/cros_ec_sensors.ko
2025-10-02T16:38:10.3023684Z INSTALL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core.ko
2025-10-02T16:38:10.3151504Z INSTALL drivers/iio/common/hid-sensors/hid-sensor-iio-common.ko
2025-10-02T16:38:10.3183271Z INSTALL drivers/iio/common/hid-sensors/hid-sensor-trigger.ko
2025-10-02T16:38:10.3230071Z INSTALL drivers/iio/common/ms_sensors/ms_sensors_i2c.ko
2025-10-02T16:38:10.3246359Z INSTALL drivers/iio/common/ssp_sensors/sensorhub.ko
2025-10-02T16:38:10.3857995Z INSTALL drivers/iio/common/ssp_sensors/ssp_iio.ko
2025-10-02T16:38:10.3867237Z INSTALL drivers/iio/common/st_sensors/st_sensors.ko
2025-10-02T16:38:10.3945424Z INSTALL drivers/iio/common/st_sensors/st_sensors_i2c.ko
2025-10-02T16:38:10.4027201Z INSTALL drivers/iio/common/st_sensors/st_sensors_spi.ko
2025-10-02T16:38:10.4141459Z INSTALL drivers/iio/dac/ad5064.ko
2025-10-02T16:38:10.4549178Z INSTALL drivers/iio/dac/ad5360.ko
2025-10-02T16:38:10.4590258Z INSTALL drivers/iio/dac/ad5380.ko
2025-10-02T16:38:10.4815236Z INSTALL drivers/iio/dac/ad5421.ko
2025-10-02T16:38:10.4903367Z INSTALL drivers/iio/dac/ad5446.ko
2025-10-02T16:38:10.5016070Z INSTALL drivers/iio/dac/ad5449.ko
2025-10-02T16:38:10.5254240Z INSTALL drivers/iio/dac/ad5504.ko
2025-10-02T16:38:10.5317779Z INSTALL drivers/iio/dac/ad5592r-base.ko
2025-10-02T16:38:10.5426213Z INSTALL drivers/iio/dac/ad5592r.ko
2025-10-02T16:38:10.5462350Z INSTALL drivers/iio/dac/ad5593r.ko
2025-10-02T16:38:10.5486494Z INSTALL drivers/iio/dac/ad5624r_spi.ko
2025-10-02T16:38:10.5874818Z INSTALL drivers/iio/dac/ad5686-spi.ko
2025-10-02T16:38:10.5877144Z INSTALL drivers/iio/dac/ad5686.ko
2025-10-02T16:38:10.5929136Z INSTALL drivers/iio/dac/ad5696-i2c.ko
2025-10-02T16:38:10.5938584Z INSTALL drivers/iio/dac/ad5755.ko
2025-10-02T16:38:10.6144094Z INSTALL drivers/iio/dac/ad5758.ko
2025-10-02T16:38:10.6397080Z INSTALL drivers/iio/dac/ad5761.ko
2025-10-02T16:38:10.6399028Z INSTALL drivers/iio/dac/ad5764.ko
2025-10-02T16:38:10.6435706Z INSTALL drivers/iio/dac/ad5770r.ko
2025-10-02T16:38:10.6516952Z INSTALL drivers/iio/dac/ad5791.ko
2025-10-02T16:38:10.6788622Z INSTALL drivers/iio/dac/ad7303.ko
2025-10-02T16:38:10.6944438Z INSTALL drivers/iio/dac/ad8801.ko
2025-10-02T16:38:10.6972655Z INSTALL drivers/iio/dac/ds4424.ko
2025-10-02T16:38:10.6997498Z INSTALL drivers/iio/dac/ltc1660.ko
2025-10-02T16:38:10.7029702Z INSTALL drivers/iio/dac/ltc2632.ko
2025-10-02T16:38:10.7385113Z INSTALL drivers/iio/dac/m62332.ko
2025-10-02T16:38:10.7474201Z INSTALL drivers/iio/dac/max517.ko
2025-10-02T16:38:10.7529247Z INSTALL drivers/iio/dac/mcp4725.ko
2025-10-02T16:38:10.7606255Z INSTALL drivers/iio/dac/mcp4922.ko
2025-10-02T16:38:10.7616072Z INSTALL drivers/iio/dac/ti-dac082s085.ko
2025-10-02T16:38:10.7839202Z INSTALL drivers/iio/dac/ti-dac5571.ko
2025-10-02T16:38:10.7935284Z INSTALL drivers/iio/dac/ti-dac7311.ko
2025-10-02T16:38:10.8153544Z INSTALL drivers/iio/dac/ti-dac7612.ko
2025-10-02T16:38:10.8190285Z INSTALL drivers/iio/frequency/ad9523.ko
2025-10-02T16:38:10.8194420Z INSTALL drivers/iio/frequency/adf4350.ko
2025-10-02T16:38:10.8486063Z INSTALL drivers/iio/frequency/adf4371.ko
2025-10-02T16:38:10.8489744Z INSTALL drivers/iio/gyro/adis16080.ko
2025-10-02T16:38:10.8660864Z INSTALL drivers/iio/gyro/adis16130.ko
2025-10-02T16:38:10.8774317Z INSTALL drivers/iio/gyro/adis16136.ko
2025-10-02T16:38:10.8829838Z INSTALL drivers/iio/gyro/adis16260.ko
2025-10-02T16:38:10.9036010Z INSTALL drivers/iio/gyro/adxrs290.ko
2025-10-02T16:38:10.9104997Z INSTALL drivers/iio/gyro/adxrs450.ko
2025-10-02T16:38:10.9135602Z INSTALL drivers/iio/gyro/bmg160_core.ko
2025-10-02T16:38:10.9378458Z INSTALL drivers/iio/gyro/bmg160_i2c.ko
2025-10-02T16:38:10.9438725Z INSTALL drivers/iio/gyro/bmg160_spi.ko
2025-10-02T16:38:10.9660396Z INSTALL drivers/iio/gyro/fxas21002c_core.ko
2025-10-02T16:38:10.9671202Z INSTALL drivers/iio/gyro/fxas21002c_i2c.ko
2025-10-02T16:38:10.9762673Z INSTALL drivers/iio/gyro/fxas21002c_spi.ko
2025-10-02T16:38:10.9866430Z INSTALL drivers/iio/gyro/hid-sensor-gyro-3d.ko
2025-10-02T16:38:10.9916025Z INSTALL drivers/iio/gyro/itg3200.ko
2025-10-02T16:38:11.0203367Z INSTALL drivers/iio/gyro/mpu3050.ko
2025-10-02T16:38:11.0258827Z INSTALL drivers/iio/gyro/ssp_gyro_sensor.ko
2025-10-02T16:38:11.0280918Z INSTALL drivers/iio/gyro/st_gyro.ko
2025-10-02T16:38:11.0460919Z INSTALL drivers/iio/gyro/st_gyro_i2c.ko
2025-10-02T16:38:11.0560561Z INSTALL drivers/iio/gyro/st_gyro_spi.ko
2025-10-02T16:38:11.0856248Z INSTALL drivers/iio/health/afe4403.ko
2025-10-02T16:38:11.0900785Z INSTALL drivers/iio/health/afe4404.ko
2025-10-02T16:38:11.0941256Z INSTALL drivers/iio/health/max30102.ko
2025-10-02T16:38:11.0953389Z INSTALL drivers/iio/health/max30100.ko
2025-10-02T16:38:11.1037785Z INSTALL drivers/iio/humidity/am2315.ko
2025-10-02T16:38:11.1481649Z INSTALL drivers/iio/humidity/dht11.ko
2025-10-02T16:38:11.1525769Z INSTALL drivers/iio/humidity/hdc100x.ko
2025-10-02T16:38:11.1553470Z INSTALL drivers/iio/humidity/hdc2010.ko
2025-10-02T16:38:11.1578389Z INSTALL drivers/iio/humidity/hid-sensor-humidity.ko
2025-10-02T16:38:11.1601880Z INSTALL drivers/iio/humidity/hts221.ko
2025-10-02T16:38:11.2044394Z INSTALL drivers/iio/humidity/hts221_i2c.ko
2025-10-02T16:38:11.2095669Z INSTALL drivers/iio/humidity/htu21.ko
2025-10-02T16:38:11.2100468Z INSTALL drivers/iio/humidity/hts221_spi.ko
2025-10-02T16:38:11.2156348Z INSTALL drivers/iio/humidity/si7005.ko
2025-10-02T16:38:11.2216903Z INSTALL drivers/iio/humidity/si7020.ko
2025-10-02T16:38:11.2555058Z INSTALL drivers/iio/imu/adis16400.ko
2025-10-02T16:38:11.2605375Z INSTALL drivers/iio/imu/adis16460.ko
2025-10-02T16:38:11.2633221Z INSTALL drivers/iio/imu/adis16475.ko
2025-10-02T16:38:11.2655101Z INSTALL drivers/iio/imu/adis16480.ko
2025-10-02T16:38:11.2702847Z INSTALL drivers/iio/imu/adis_lib.ko
2025-10-02T16:38:11.3220850Z INSTALL drivers/iio/imu/bmi160/bmi160_core.ko
2025-10-02T16:38:11.3256607Z INSTALL drivers/iio/imu/bmi160/bmi160_i2c.ko
2025-10-02T16:38:11.3336222Z INSTALL drivers/iio/imu/bmi160/bmi160_spi.ko
2025-10-02T16:38:11.3352567Z INSTALL drivers/iio/imu/fxos8700_core.ko
2025-10-02T16:38:11.3368267Z INSTALL drivers/iio/imu/fxos8700_i2c.ko
2025-10-02T16:38:11.3784537Z INSTALL drivers/iio/imu/fxos8700_spi.ko
2025-10-02T16:38:11.3810998Z INSTALL drivers/iio/imu/inv_icm42600/inv-icm42600-i2c.ko
2025-10-02T16:38:11.3831030Z INSTALL drivers/iio/imu/inv_icm42600/inv-icm42600-spi.ko
2025-10-02T16:38:11.3907303Z INSTALL drivers/iio/imu/inv_icm42600/inv-icm42600.ko
2025-10-02T16:38:11.3917907Z INSTALL drivers/iio/imu/inv_mpu6050/inv-mpu6050-i2c.ko
2025-10-02T16:38:11.4281563Z INSTALL drivers/iio/imu/inv_mpu6050/inv-mpu6050-spi.ko
2025-10-02T16:38:11.4304395Z INSTALL drivers/iio/imu/inv_mpu6050/inv-mpu6050.ko
2025-10-02T16:38:11.4361370Z INSTALL drivers/iio/imu/kmx61.ko
2025-10-02T16:38:11.4426109Z INSTALL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.ko
2025-10-02T16:38:11.4792086Z INSTALL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_i2c.ko
2025-10-02T16:38:11.4912939Z INSTALL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_spi.ko
2025-10-02T16:38:11.5106558Z INSTALL drivers/iio/industrialio-configfs.ko
2025-10-02T16:38:11.5131484Z INSTALL drivers/iio/industrialio-sw-device.ko
2025-10-02T16:38:11.5157569Z INSTALL drivers/iio/industrialio-sw-trigger.ko
2025-10-02T16:38:11.5297569Z INSTALL drivers/iio/industrialio-triggered-event.ko
2025-10-02T16:38:11.5507657Z INSTALL drivers/iio/industrialio.ko
2025-10-02T16:38:11.5604633Z INSTALL drivers/iio/light/acpi-als.ko
2025-10-02T16:38:11.5706983Z INSTALL drivers/iio/light/adjd_s311.ko
2025-10-02T16:38:11.5709438Z INSTALL drivers/iio/light/adux1020.ko
2025-10-02T16:38:11.5748753Z INSTALL drivers/iio/light/al3010.ko
2025-10-02T16:38:11.6217913Z INSTALL drivers/iio/light/al3320a.ko
2025-10-02T16:38:11.6249761Z INSTALL drivers/iio/light/apds9300.ko
2025-10-02T16:38:11.6295536Z INSTALL drivers/iio/light/apds9960.ko
2025-10-02T16:38:11.6299032Z INSTALL drivers/iio/light/as73211.ko
2025-10-02T16:38:11.6672751Z INSTALL drivers/iio/light/bh1750.ko
2025-10-02T16:38:11.6772251Z INSTALL drivers/iio/light/bh1780.ko
2025-10-02T16:38:11.6851599Z INSTALL drivers/iio/light/cm32181.ko
2025-10-02T16:38:11.6949100Z INSTALL drivers/iio/light/cm3232.ko
2025-10-02T16:38:11.6963136Z INSTALL drivers/iio/light/cm3323.ko
2025-10-02T16:38:11.7171451Z INSTALL drivers/iio/light/cm36651.ko
2025-10-02T16:38:11.7332773Z INSTALL drivers/iio/light/cros_ec_light_prox.ko
2025-10-02T16:38:11.7480287Z INSTALL drivers/iio/light/gp2ap020a00f.ko
2025-10-02T16:38:11.7486090Z INSTALL drivers/iio/light/gp2ap002.ko
2025-10-02T16:38:11.7528589Z INSTALL drivers/iio/light/hid-sensor-als.ko
2025-10-02T16:38:11.7675324Z INSTALL drivers/iio/light/hid-sensor-prox.ko
2025-10-02T16:38:11.7872669Z INSTALL drivers/iio/light/iqs621-als.ko
2025-10-02T16:38:11.8155877Z INSTALL drivers/iio/light/isl29018.ko
2025-10-02T16:38:11.8158060Z INSTALL drivers/iio/light/isl29028.ko
2025-10-02T16:38:11.8174710Z INSTALL drivers/iio/light/isl29125.ko
2025-10-02T16:38:11.8240713Z INSTALL drivers/iio/light/jsa1212.ko
2025-10-02T16:38:11.8423348Z INSTALL drivers/iio/light/lm3533-als.ko
2025-10-02T16:38:11.8745399Z INSTALL drivers/iio/light/ltr501.ko
2025-10-02T16:38:11.8805385Z INSTALL drivers/iio/light/lv0104cs.ko
2025-10-02T16:38:11.8824772Z INSTALL drivers/iio/light/max44000.ko
2025-10-02T16:38:11.8880682Z INSTALL drivers/iio/light/max44009.ko
2025-10-02T16:38:11.9010831Z INSTALL drivers/iio/light/noa1305.ko
2025-10-02T16:38:11.9350986Z INSTALL drivers/iio/light/opt3001.ko
2025-10-02T16:38:11.9377180Z INSTALL drivers/iio/light/pa12203001.ko
2025-10-02T16:38:11.9413218Z INSTALL drivers/iio/light/rpr0521.ko
2025-10-02T16:38:11.9495338Z INSTALL drivers/iio/light/si1133.ko
2025-10-02T16:38:11.9560264Z INSTALL drivers/iio/light/si1145.ko
2025-10-02T16:38:11.9939871Z INSTALL drivers/iio/light/st_uvis25_core.ko
2025-10-02T16:38:11.9983558Z INSTALL drivers/iio/light/st_uvis25_i2c.ko
2025-10-02T16:38:12.0025660Z INSTALL drivers/iio/light/st_uvis25_spi.ko
2025-10-02T16:38:12.0094523Z INSTALL drivers/iio/light/stk3310.ko
2025-10-02T16:38:12.0307754Z INSTALL drivers/iio/light/tcs3414.ko
2025-10-02T16:38:12.0483335Z INSTALL drivers/iio/light/tcs3472.ko
2025-10-02T16:38:12.0532291Z INSTALL drivers/iio/light/tsl2563.ko
2025-10-02T16:38:12.0602472Z INSTALL drivers/iio/light/tsl2583.ko
2025-10-02T16:38:12.0685160Z INSTALL drivers/iio/light/tsl2772.ko
2025-10-02T16:38:12.0795737Z INSTALL drivers/iio/light/tsl4531.ko
2025-10-02T16:38:12.1133712Z INSTALL drivers/iio/light/us5182d.ko
2025-10-02T16:38:12.1164965Z INSTALL drivers/iio/light/vcnl4000.ko
2025-10-02T16:38:12.1345458Z INSTALL drivers/iio/light/vcnl4035.ko
2025-10-02T16:38:12.1352130Z INSTALL drivers/iio/light/veml6030.ko
2025-10-02T16:38:12.1374149Z INSTALL drivers/iio/light/veml6070.ko
2025-10-02T16:38:12.1738930Z INSTALL drivers/iio/light/vl6180.ko
2025-10-02T16:38:12.1853344Z INSTALL drivers/iio/light/zopt2201.ko
2025-10-02T16:38:12.1892665Z INSTALL drivers/iio/magnetometer/ak8975.ko
2025-10-02T16:38:12.1986826Z INSTALL drivers/iio/magnetometer/bmc150_magn.ko
2025-10-02T16:38:12.2035084Z INSTALL drivers/iio/magnetometer/bmc150_magn_i2c.ko
2025-10-02T16:38:12.2319821Z INSTALL drivers/iio/magnetometer/bmc150_magn_spi.ko
2025-10-02T16:38:12.2462756Z INSTALL drivers/iio/magnetometer/hid-sensor-magn-3d.ko
2025-10-02T16:38:12.2504982Z INSTALL drivers/iio/magnetometer/hmc5843_core.ko
2025-10-02T16:38:12.2587084Z INSTALL drivers/iio/magnetometer/hmc5843_i2c.ko
2025-10-02T16:38:12.2589756Z INSTALL drivers/iio/magnetometer/hmc5843_spi.ko
2025-10-02T16:38:12.2757744Z INSTALL drivers/iio/magnetometer/mag3110.ko
2025-10-02T16:38:12.3040148Z INSTALL drivers/iio/magnetometer/mmc35240.ko
2025-10-02T16:38:12.3094151Z INSTALL drivers/iio/magnetometer/rm3100-core.ko
2025-10-02T16:38:12.3117754Z INSTALL drivers/iio/magnetometer/rm3100-i2c.ko
2025-10-02T16:38:12.3136248Z INSTALL drivers/iio/magnetometer/rm3100-spi.ko
2025-10-02T16:38:12.3478803Z INSTALL drivers/iio/magnetometer/st_magn.ko
2025-10-02T16:38:12.3581869Z INSTALL drivers/iio/magnetometer/st_magn_i2c.ko
2025-10-02T16:38:12.3637421Z INSTALL drivers/iio/magnetometer/st_magn_spi.ko
2025-10-02T16:38:12.3666446Z INSTALL drivers/iio/orientation/hid-sensor-incl-3d.ko
2025-10-02T16:38:12.3675050Z INSTALL drivers/iio/orientation/hid-sensor-rotation.ko
2025-10-02T16:38:12.3965335Z INSTALL drivers/iio/position/iqs624-pos.ko
2025-10-02T16:38:12.4099652Z INSTALL drivers/iio/potentiometer/ad5272.ko
2025-10-02T16:38:12.4206023Z INSTALL drivers/iio/potentiometer/ds1803.ko
2025-10-02T16:38:12.4235020Z INSTALL drivers/iio/potentiometer/max5432.ko
2025-10-02T16:38:12.4287045Z INSTALL drivers/iio/potentiometer/max5481.ko
2025-10-02T16:38:12.4471343Z INSTALL drivers/iio/potentiometer/max5487.ko
2025-10-02T16:38:12.4684794Z INSTALL drivers/iio/potentiometer/mcp4018.ko
2025-10-02T16:38:12.4721126Z INSTALL drivers/iio/potentiometer/mcp41010.ko
2025-10-02T16:38:12.4782115Z INSTALL drivers/iio/potentiometer/mcp4131.ko
2025-10-02T16:38:12.4798163Z INSTALL drivers/iio/potentiometer/mcp4531.ko
2025-10-02T16:38:12.4974355Z INSTALL drivers/iio/potentiometer/tpl0102.ko
2025-10-02T16:38:12.5214547Z INSTALL drivers/iio/potentiostat/lmp91000.ko
2025-10-02T16:38:12.5299049Z INSTALL drivers/iio/pressure/abp060mg.ko
2025-10-02T16:38:12.5456090Z INSTALL drivers/iio/pressure/bmp280-i2c.ko
2025-10-02T16:38:12.5504356Z INSTALL drivers/iio/pressure/bmp280-spi.ko
2025-10-02T16:38:12.5509219Z INSTALL drivers/iio/pressure/bmp280.ko
2025-10-02T16:38:12.5782266Z INSTALL drivers/iio/pressure/cros_ec_baro.ko
2025-10-02T16:38:12.5860082Z INSTALL drivers/iio/pressure/dlhl60d.ko
2025-10-02T16:38:12.5920431Z INSTALL drivers/iio/pressure/dps310.ko
2025-10-02T16:38:12.6042263Z INSTALL drivers/iio/pressure/hid-sensor-press.ko
2025-10-02T16:38:12.6122113Z INSTALL drivers/iio/pressure/hp03.ko
2025-10-02T16:38:12.6284684Z INSTALL drivers/iio/pressure/hp206c.ko
2025-10-02T16:38:12.6394932Z INSTALL drivers/iio/pressure/icp10100.ko
2025-10-02T16:38:12.6518792Z INSTALL drivers/iio/pressure/mpl115.ko
2025-10-02T16:38:12.6595026Z INSTALL drivers/iio/pressure/mpl115_i2c.ko
2025-10-02T16:38:12.6620068Z INSTALL drivers/iio/pressure/mpl115_spi.ko
2025-10-02T16:38:12.6821177Z INSTALL drivers/iio/pressure/mpl3115.ko
2025-10-02T16:38:12.7013768Z INSTALL drivers/iio/pressure/ms5611_core.ko
2025-10-02T16:38:12.7071622Z INSTALL drivers/iio/pressure/ms5611_i2c.ko
2025-10-02T16:38:12.7097498Z INSTALL drivers/iio/pressure/ms5611_spi.ko
2025-10-02T16:38:12.7211767Z INSTALL drivers/iio/pressure/ms5637.ko
2025-10-02T16:38:12.7390887Z INSTALL drivers/iio/pressure/st_pressure.ko
2025-10-02T16:38:12.7589251Z INSTALL drivers/iio/pressure/st_pressure_i2c.ko
2025-10-02T16:38:12.7590490Z INSTALL drivers/iio/pressure/st_pressure_spi.ko
2025-10-02T16:38:12.7608081Z INSTALL drivers/iio/pressure/t5403.ko
2025-10-02T16:38:12.7710783Z INSTALL drivers/iio/pressure/zpa2326.ko
2025-10-02T16:38:12.8053714Z INSTALL drivers/iio/pressure/zpa2326_i2c.ko
2025-10-02T16:38:12.8108016Z INSTALL drivers/iio/pressure/zpa2326_spi.ko
2025-10-02T16:38:12.8112074Z INSTALL drivers/iio/proximity/as3935.ko
2025-10-02T16:38:12.8172872Z INSTALL drivers/iio/proximity/isl29501.ko
2025-10-02T16:38:12.8469166Z INSTALL drivers/iio/proximity/mb1232.ko
2025-10-02T16:38:12.8538371Z INSTALL drivers/iio/proximity/ping.ko
2025-10-02T16:38:12.8667445Z INSTALL drivers/iio/proximity/pulsedlight-lidar-lite-v2.ko
2025-10-02T16:38:12.8806334Z INSTALL drivers/iio/proximity/rfd77402.ko
2025-10-02T16:38:12.8822203Z INSTALL drivers/iio/proximity/srf04.ko
2025-10-02T16:38:12.8980761Z INSTALL drivers/iio/proximity/srf08.ko
2025-10-02T16:38:12.9085399Z INSTALL drivers/iio/proximity/sx9310.ko
2025-10-02T16:38:12.9204209Z INSTALL drivers/iio/proximity/sx9500.ko
2025-10-02T16:38:12.9327828Z INSTALL drivers/iio/proximity/vcnl3020.ko
2025-10-02T16:38:12.9401343Z INSTALL drivers/iio/proximity/vl53l0x-i2c.ko
2025-10-02T16:38:12.9503658Z INSTALL drivers/iio/resolver/ad2s1200.ko
2025-10-02T16:38:12.9775860Z INSTALL drivers/iio/resolver/ad2s90.ko
2025-10-02T16:38:12.9884717Z INSTALL drivers/iio/temperature/hid-sensor-temperature.ko
2025-10-02T16:38:12.9897809Z INSTALL drivers/iio/temperature/iqs620at-temp.ko
2025-10-02T16:38:12.9961373Z INSTALL drivers/iio/temperature/ltc2983.ko
2025-10-02T16:38:12.9972788Z INSTALL drivers/iio/temperature/max31856.ko
2025-10-02T16:38:13.0320181Z INSTALL drivers/iio/temperature/maxim_thermocouple.ko
2025-10-02T16:38:13.0401103Z INSTALL drivers/iio/temperature/mlx90614.ko
2025-10-02T16:38:13.0488320Z INSTALL drivers/iio/temperature/mlx90632.ko
2025-10-02T16:38:13.0514587Z INSTALL drivers/iio/temperature/tmp006.ko
2025-10-02T16:38:13.0570906Z INSTALL drivers/iio/temperature/tmp007.ko
2025-10-02T16:38:13.0870068Z INSTALL drivers/iio/temperature/tsys01.ko
2025-10-02T16:38:13.1047668Z INSTALL drivers/iio/temperature/tsys02d.ko
2025-10-02T16:38:13.1131793Z INSTALL drivers/iio/trigger/iio-trig-hrtimer.ko
2025-10-02T16:38:13.1132857Z INSTALL drivers/iio/trigger/iio-trig-interrupt.ko
2025-10-02T16:38:13.1180539Z INSTALL drivers/iio/trigger/iio-trig-loop.ko
2025-10-02T16:38:13.1381287Z INSTALL drivers/iio/trigger/iio-trig-sysfs.ko
2025-10-02T16:38:13.1556058Z INSTALL drivers/infiniband/core/ib_cm.ko
2025-10-02T16:38:13.1655220Z INSTALL drivers/infiniband/core/ib_umad.ko
2025-10-02T16:38:13.1670577Z INSTALL drivers/infiniband/core/ib_core.ko
2025-10-02T16:38:13.1745788Z INSTALL drivers/infiniband/core/ib_uverbs.ko
2025-10-02T16:38:13.1954262Z INSTALL drivers/infiniband/core/iw_cm.ko
2025-10-02T16:38:13.2470822Z INSTALL drivers/infiniband/core/rdma_cm.ko
2025-10-02T16:38:13.3055444Z INSTALL drivers/infiniband/core/rdma_ucm.ko
2025-10-02T16:38:13.3067268Z INSTALL drivers/infiniband/hw/bnxt_re/bnxt_re.ko
2025-10-02T16:38:13.3654011Z INSTALL drivers/infiniband/hw/cxgb4/iw_cxgb4.ko
2025-10-02T16:38:13.4095119Z INSTALL drivers/infiniband/hw/efa/efa.ko
2025-10-02T16:38:13.4267236Z INSTALL drivers/infiniband/hw/hfi1/hfi1.ko
2025-10-02T16:38:13.4881020Z INSTALL drivers/infiniband/hw/i40iw/i40iw.ko
2025-10-02T16:38:13.5223307Z INSTALL drivers/infiniband/hw/mlx4/mlx4_ib.ko
2025-10-02T16:38:13.6180745Z INSTALL drivers/infiniband/hw/mlx5/mlx5_ib.ko
2025-10-02T16:38:13.6817522Z INSTALL drivers/infiniband/hw/mthca/ib_mthca.ko
2025-10-02T16:38:13.7614833Z INSTALL drivers/infiniband/hw/ocrdma/ocrdma.ko
2025-10-02T16:38:13.8233400Z INSTALL drivers/infiniband/hw/qedr/qedr.ko
2025-10-02T16:38:13.9360173Z INSTALL drivers/infiniband/hw/qib/ib_qib.ko
2025-10-02T16:38:13.9396976Z INSTALL drivers/infiniband/hw/usnic/usnic_verbs.ko
2025-10-02T16:38:14.0182636Z INSTALL drivers/infiniband/hw/vmw_pvrdma/vmw_pvrdma.ko
2025-10-02T16:38:14.0210949Z INSTALL drivers/infiniband/sw/rdmavt/rdmavt.ko
2025-10-02T16:38:14.0918638Z INSTALL drivers/infiniband/sw/rxe/rdma_rxe.ko
2025-10-02T16:38:14.1376224Z INSTALL drivers/infiniband/sw/siw/siw.ko
2025-10-02T16:38:14.2299113Z INSTALL drivers/infiniband/ulp/ipoib/ib_ipoib.ko
2025-10-02T16:38:14.3078373Z INSTALL drivers/infiniband/ulp/iser/ib_iser.ko
2025-10-02T16:38:14.3598476Z INSTALL drivers/infiniband/ulp/isert/ib_isert.ko
2025-10-02T16:38:14.4000044Z INSTALL drivers/infiniband/ulp/opa_vnic/opa_vnic.ko
2025-10-02T16:38:14.4309312Z INSTALL drivers/infiniband/ulp/rtrs/rtrs-client.ko
2025-10-02T16:38:14.4319867Z INSTALL drivers/infiniband/ulp/rtrs/rtrs-core.ko
2025-10-02T16:38:14.4745538Z INSTALL drivers/infiniband/ulp/rtrs/rtrs-server.ko
2025-10-02T16:38:14.4766526Z INSTALL drivers/infiniband/ulp/srp/ib_srp.ko
2025-10-02T16:38:14.4846559Z INSTALL drivers/infiniband/ulp/srpt/ib_srpt.ko
2025-10-02T16:38:14.5152144Z INSTALL drivers/input/ff-memless.ko
2025-10-02T16:38:14.5461187Z INSTALL drivers/input/gameport/emu10k1-gp.ko
2025-10-02T16:38:14.5692836Z INSTALL drivers/input/gameport/fm801-gp.ko
2025-10-02T16:38:14.5716247Z INSTALL drivers/input/gameport/gameport.ko
2025-10-02T16:38:14.5965453Z INSTALL drivers/input/gameport/lightning.ko
2025-10-02T16:38:14.6044747Z INSTALL drivers/input/gameport/ns558.ko
2025-10-02T16:38:14.6054364Z INSTALL drivers/input/input-polldev.ko
2025-10-02T16:38:14.6219072Z INSTALL drivers/input/joydev.ko
2025-10-02T16:38:14.6413392Z INSTALL drivers/input/joystick/a3d.ko
2025-10-02T16:38:14.6480483Z INSTALL drivers/input/joystick/adc-joystick.ko
2025-10-02T16:38:14.6580435Z INSTALL drivers/input/joystick/adi.ko
2025-10-02T16:38:14.6628786Z INSTALL drivers/input/joystick/analog.ko
2025-10-02T16:38:14.6951974Z INSTALL drivers/input/joystick/as5011.ko
2025-10-02T16:38:14.6965905Z INSTALL drivers/input/joystick/cobra.ko
2025-10-02T16:38:14.7036312Z INSTALL drivers/input/joystick/db9.ko
2025-10-02T16:38:14.7171615Z INSTALL drivers/input/joystick/fsia6b.ko
2025-10-02T16:38:14.7370270Z INSTALL drivers/input/joystick/gamecon.ko
2025-10-02T16:38:14.7506417Z INSTALL drivers/input/joystick/gf2k.ko
2025-10-02T16:38:14.7561307Z INSTALL drivers/input/joystick/grip.ko
2025-10-02T16:38:14.7637205Z INSTALL drivers/input/joystick/grip_mp.ko
2025-10-02T16:38:14.7717639Z INSTALL drivers/input/joystick/guillemot.ko
2025-10-02T16:38:14.8011053Z INSTALL drivers/input/joystick/iforce/iforce-serio.ko
2025-10-02T16:38:14.8174293Z INSTALL drivers/input/joystick/iforce/iforce-usb.ko
2025-10-02T16:38:14.8210990Z INSTALL drivers/input/joystick/iforce/iforce.ko
2025-10-02T16:38:14.8239745Z INSTALL drivers/input/joystick/interact.ko
2025-10-02T16:38:14.8265398Z INSTALL drivers/input/joystick/joydump.ko
2025-10-02T16:38:14.8520348Z INSTALL drivers/input/joystick/magellan.ko
2025-10-02T16:38:14.8685977Z INSTALL drivers/input/joystick/psxpad-spi.ko
2025-10-02T16:38:14.8785641Z INSTALL drivers/input/joystick/pxrc.ko
2025-10-02T16:38:14.8840869Z INSTALL drivers/input/joystick/sidewinder.ko
2025-10-02T16:38:14.8875425Z INSTALL drivers/input/joystick/spaceball.ko
2025-10-02T16:38:14.9076353Z INSTALL drivers/input/joystick/spaceorb.ko
2025-10-02T16:38:14.9280721Z INSTALL drivers/input/joystick/stinger.ko
2025-10-02T16:38:14.9371661Z INSTALL drivers/input/joystick/tmdc.ko
2025-10-02T16:38:14.9433636Z INSTALL drivers/input/joystick/turbografx.ko
2025-10-02T16:38:14.9462606Z INSTALL drivers/input/joystick/twidjoy.ko
2025-10-02T16:38:14.9562166Z INSTALL drivers/input/joystick/walkera0701.ko
2025-10-02T16:38:14.9881249Z INSTALL drivers/input/joystick/warrior.ko
2025-10-02T16:38:14.9941622Z INSTALL drivers/input/joystick/xpad.ko
2025-10-02T16:38:14.9975526Z INSTALL drivers/input/joystick/zhenhua.ko
2025-10-02T16:38:15.0001931Z INSTALL drivers/input/keyboard/adc-keys.ko
2025-10-02T16:38:15.0143627Z INSTALL drivers/input/keyboard/adp5520-keys.ko
2025-10-02T16:38:15.0417779Z INSTALL drivers/input/keyboard/adp5588-keys.ko
2025-10-02T16:38:15.0484311Z INSTALL drivers/input/keyboard/adp5589-keys.ko
2025-10-02T16:38:15.0580313Z INSTALL drivers/input/keyboard/applespi.ko
2025-10-02T16:38:15.0811174Z INSTALL drivers/input/keyboard/cros_ec_keyb.ko
2025-10-02T16:38:15.0829919Z INSTALL drivers/input/keyboard/dlink-dir685-touchkeys.ko
2025-10-02T16:38:15.0994923Z INSTALL drivers/input/keyboard/gpio_keys.ko
2025-10-02T16:38:15.1085878Z INSTALL drivers/input/keyboard/gpio_keys_polled.ko
2025-10-02T16:38:15.1347439Z INSTALL drivers/input/keyboard/iqs62x-keys.ko
2025-10-02T16:38:15.1352443Z INSTALL drivers/input/keyboard/lkkbd.ko
2025-10-02T16:38:15.1507666Z INSTALL drivers/input/keyboard/lm8323.ko
2025-10-02T16:38:15.1585151Z INSTALL drivers/input/keyboard/lm8333.ko
2025-10-02T16:38:15.1661416Z INSTALL drivers/input/keyboard/matrix_keypad.ko
2025-10-02T16:38:15.1872863Z INSTALL drivers/input/keyboard/max7359_keypad.ko
2025-10-02T16:38:15.1954422Z INSTALL drivers/input/keyboard/mcs_touchkey.ko
2025-10-02T16:38:15.2115459Z INSTALL drivers/input/keyboard/mpr121_touchkey.ko
2025-10-02T16:38:15.2164454Z INSTALL drivers/input/keyboard/mtk-pmic-keys.ko
2025-10-02T16:38:15.2208079Z INSTALL drivers/input/keyboard/newtonkbd.ko
2025-10-02T16:38:15.2423856Z INSTALL drivers/input/keyboard/opencores-kbd.ko
2025-10-02T16:38:15.2537342Z INSTALL drivers/input/keyboard/qt1050.ko
2025-10-02T16:38:15.2665452Z INSTALL drivers/input/keyboard/qt1070.ko
2025-10-02T16:38:15.2701199Z INSTALL drivers/input/keyboard/qt2160.ko
2025-10-02T16:38:15.2744857Z INSTALL drivers/input/keyboard/samsung-keypad.ko
2025-10-02T16:38:15.2956251Z INSTALL drivers/input/keyboard/stowaway.ko
2025-10-02T16:38:15.3054926Z INSTALL drivers/input/keyboard/sunkbd.ko
2025-10-02T16:38:15.3262752Z INSTALL drivers/input/keyboard/tca6416-keypad.ko
2025-10-02T16:38:15.3332852Z INSTALL drivers/input/keyboard/tca8418_keypad.ko
2025-10-02T16:38:15.3344781Z INSTALL drivers/input/keyboard/tm2-touchkey.ko
2025-10-02T16:38:15.3471660Z INSTALL drivers/input/keyboard/twl4030_keypad.ko
2025-10-02T16:38:15.3621053Z INSTALL drivers/input/keyboard/xtkbd.ko
2025-10-02T16:38:15.3881492Z INSTALL drivers/input/matrix-keymap.ko
2025-10-02T16:38:15.3887356Z INSTALL drivers/input/misc/88pm80x_onkey.ko
2025-10-02T16:38:15.3913113Z INSTALL drivers/input/misc/88pm860x_onkey.ko
2025-10-02T16:38:15.3971098Z INSTALL drivers/input/misc/ad714x-i2c.ko
2025-10-02T16:38:15.4030652Z INSTALL drivers/input/misc/ad714x-spi.ko
2025-10-02T16:38:15.4405275Z INSTALL drivers/input/misc/ad714x.ko
2025-10-02T16:38:15.4415017Z INSTALL drivers/input/misc/adxl34x-i2c.ko
2025-10-02T16:38:15.4474887Z INSTALL drivers/input/misc/adxl34x-spi.ko
2025-10-02T16:38:15.4488910Z INSTALL drivers/input/misc/adxl34x.ko
2025-10-02T16:38:15.4505009Z INSTALL drivers/input/misc/apanel.ko
2025-10-02T16:38:15.4954375Z INSTALL drivers/input/misc/arizona-haptics.ko
2025-10-02T16:38:15.5020044Z INSTALL drivers/input/misc/ati_remote2.ko
2025-10-02T16:38:15.5073817Z INSTALL drivers/input/misc/atlas_btns.ko
2025-10-02T16:38:15.5087576Z INSTALL drivers/input/misc/axp20x-pek.ko
2025-10-02T16:38:15.5106522Z INSTALL drivers/input/misc/bma150.ko
2025-10-02T16:38:15.5518952Z INSTALL drivers/input/misc/cm109.ko
2025-10-02T16:38:15.5594240Z INSTALL drivers/input/misc/cma3000_d0x.ko
2025-10-02T16:38:15.5660224Z INSTALL drivers/input/misc/cma3000_d0x_i2c.ko
2025-10-02T16:38:15.5662499Z INSTALL drivers/input/misc/da9052_onkey.ko
2025-10-02T16:38:15.5712362Z INSTALL drivers/input/misc/da9055_onkey.ko
2025-10-02T16:38:15.6133791Z INSTALL drivers/input/misc/da9063_onkey.ko
2025-10-02T16:38:15.6147300Z INSTALL drivers/input/misc/drv260x.ko
2025-10-02T16:38:15.6200535Z INSTALL drivers/input/misc/drv2665.ko
2025-10-02T16:38:15.6239040Z INSTALL drivers/input/misc/drv2667.ko
2025-10-02T16:38:15.6240495Z INSTALL drivers/input/misc/e3x0-button.ko
2025-10-02T16:38:15.6691677Z INSTALL drivers/input/misc/gpio-beeper.ko
2025-10-02T16:38:15.6728230Z INSTALL drivers/input/misc/gpio-vibra.ko
2025-10-02T16:38:15.6758458Z INSTALL drivers/input/misc/gpio_decoder.ko
2025-10-02T16:38:15.6761541Z INSTALL drivers/input/misc/ideapad_slidebar.ko
2025-10-02T16:38:15.6813176Z INSTALL drivers/input/misc/ims-pcu.ko
2025-10-02T16:38:15.7232559Z INSTALL drivers/input/misc/iqs269a.ko
2025-10-02T16:38:15.7243285Z INSTALL drivers/input/misc/keyspan_remote.ko
2025-10-02T16:38:15.7293724Z INSTALL drivers/input/misc/kxtj9.ko
2025-10-02T16:38:15.7331245Z INSTALL drivers/input/misc/max77693-haptic.ko
2025-10-02T16:38:15.7645149Z INSTALL drivers/input/misc/max8925_onkey.ko
2025-10-02T16:38:15.7872535Z INSTALL drivers/input/misc/max8997_haptic.ko
2025-10-02T16:38:15.7873636Z INSTALL drivers/input/misc/mc13783-pwrbutton.ko
2025-10-02T16:38:15.7954125Z INSTALL drivers/input/misc/mma8450.ko
2025-10-02T16:38:15.7964122Z INSTALL drivers/input/misc/palmas-pwrbutton.ko
2025-10-02T16:38:15.8179006Z INSTALL drivers/input/misc/pcap_keys.ko
2025-10-02T16:38:15.8401109Z INSTALL drivers/input/misc/pcf50633-input.ko
2025-10-02T16:38:15.8461927Z INSTALL drivers/input/misc/pcf8574_keypad.ko
2025-10-02T16:38:15.8499766Z INSTALL drivers/input/misc/pcspkr.ko
2025-10-02T16:38:15.8524440Z INSTALL drivers/input/misc/powermate.ko
2025-10-02T16:38:15.8625888Z INSTALL drivers/input/misc/pwm-beeper.ko
2025-10-02T16:38:15.8967366Z INSTALL drivers/input/misc/pwm-vibra.ko
2025-10-02T16:38:15.8972579Z INSTALL drivers/input/misc/rave-sp-pwrbutton.ko
2025-10-02T16:38:15.9005756Z INSTALL drivers/input/misc/regulator-haptic.ko
2025-10-02T16:38:15.9091154Z INSTALL drivers/input/misc/retu-pwrbutton.ko
2025-10-02T16:38:15.9100392Z INSTALL drivers/input/misc/rotary_encoder.ko
2025-10-02T16:38:15.9523260Z INSTALL drivers/input/misc/twl4030-pwrbutton.ko
2025-10-02T16:38:15.9524300Z INSTALL drivers/input/misc/soc_button_array.ko
2025-10-02T16:38:15.9562993Z INSTALL drivers/input/misc/twl4030-vibra.ko
2025-10-02T16:38:15.9602247Z INSTALL drivers/input/misc/twl6040-vibra.ko
2025-10-02T16:38:15.9615721Z INSTALL drivers/input/misc/uinput.ko
2025-10-02T16:38:16.0042624Z INSTALL drivers/input/misc/wm831x-on.ko
2025-10-02T16:38:16.0103073Z INSTALL drivers/input/misc/xen-kbdfront.ko
2025-10-02T16:38:16.0123855Z INSTALL drivers/input/misc/yealink.ko
2025-10-02T16:38:16.0148848Z INSTALL drivers/input/mouse/appletouch.ko
2025-10-02T16:38:16.0232683Z INSTALL drivers/input/mouse/bcm5974.ko
2025-10-02T16:38:16.0538544Z INSTALL drivers/input/mouse/cyapatp.ko
2025-10-02T16:38:16.0742014Z INSTALL drivers/input/mouse/elan_i2c.ko
2025-10-02T16:38:16.0767882Z INSTALL drivers/input/mouse/gpio_mouse.ko
2025-10-02T16:38:16.0814755Z INSTALL drivers/input/mouse/psmouse.ko
2025-10-02T16:38:16.0967895Z INSTALL drivers/input/mouse/sermouse.ko
2025-10-02T16:38:16.1459790Z INSTALL drivers/input/mouse/synaptics_i2c.ko
2025-10-02T16:38:16.1541868Z INSTALL drivers/input/mouse/synaptics_usb.ko
2025-10-02T16:38:16.1587074Z INSTALL drivers/input/mouse/vsxxxaa.ko
2025-10-02T16:38:16.1657973Z INSTALL drivers/input/mousedev.ko
2025-10-02T16:38:16.2052973Z INSTALL drivers/input/rmi4/rmi_core.ko
2025-10-02T16:38:16.2153251Z INSTALL drivers/input/rmi4/rmi_i2c.ko
2025-10-02T16:38:16.2214393Z INSTALL drivers/input/rmi4/rmi_smbus.ko
2025-10-02T16:38:16.2328716Z INSTALL drivers/input/rmi4/rmi_spi.ko
2025-10-02T16:38:16.2804152Z INSTALL drivers/input/serio/altera_ps2.ko
2025-10-02T16:38:16.2845939Z INSTALL drivers/input/serio/arc_ps2.ko
2025-10-02T16:38:16.2885883Z INSTALL drivers/input/serio/ct82c710.ko
2025-10-02T16:38:16.2997969Z INSTALL drivers/input/serio/hyperv-keyboard.ko
2025-10-02T16:38:16.3258314Z INSTALL drivers/input/serio/parkbd.ko
2025-10-02T16:38:16.3334845Z INSTALL drivers/input/serio/pcips2.ko
2025-10-02T16:38:16.3439364Z INSTALL drivers/input/serio/ps2-gpio.ko
2025-10-02T16:38:16.3460658Z INSTALL drivers/input/serio/ps2mult.ko
2025-10-02T16:38:16.3585164Z INSTALL drivers/input/serio/serio_raw.ko
2025-10-02T16:38:16.3807818Z INSTALL drivers/input/serio/serport.ko
2025-10-02T16:38:16.3834926Z INSTALL drivers/input/serio/userio.ko
2025-10-02T16:38:16.3949139Z INSTALL drivers/input/sparse-keymap.ko
2025-10-02T16:38:16.4014892Z INSTALL drivers/input/tablet/acecad.ko
2025-10-02T16:38:16.4311373Z INSTALL drivers/input/tablet/aiptek.ko
2025-10-02T16:38:16.4358604Z INSTALL drivers/input/tablet/gtco.ko
2025-10-02T16:38:16.4387138Z INSTALL drivers/input/tablet/hanwang.ko
2025-10-02T16:38:16.4434315Z INSTALL drivers/input/tablet/kbtab.ko
2025-10-02T16:38:16.4536413Z INSTALL drivers/input/tablet/pegasus_notetaker.ko
2025-10-02T16:38:16.4975503Z INSTALL drivers/input/tablet/wacom_serial4.ko
2025-10-02T16:38:16.4988555Z INSTALL drivers/input/touchscreen/88pm860x-ts.ko
2025-10-02T16:38:16.5005014Z INSTALL drivers/input/touchscreen/ad7877.ko
2025-10-02T16:38:16.5080892Z INSTALL drivers/input/touchscreen/ad7879-i2c.ko
2025-10-02T16:38:16.5254842Z INSTALL drivers/input/touchscreen/ad7879-spi.ko
2025-10-02T16:38:16.5535771Z INSTALL drivers/input/touchscreen/ad7879.ko
2025-10-02T16:38:16.5628405Z INSTALL drivers/input/touchscreen/ads7846.ko
2025-10-02T16:38:16.5644983Z INSTALL drivers/input/touchscreen/atmel_mxt_ts.ko
2025-10-02T16:38:16.5649782Z INSTALL drivers/input/touchscreen/auo-pixcir-ts.ko
2025-10-02T16:38:16.5777733Z INSTALL drivers/input/touchscreen/bu21013_ts.ko
2025-10-02T16:38:16.6221870Z INSTALL drivers/input/touchscreen/bu21029_ts.ko
2025-10-02T16:38:16.6312101Z INSTALL drivers/input/touchscreen/chipone_icn8505.ko
2025-10-02T16:38:16.6325813Z INSTALL drivers/input/touchscreen/cy8ctma140.ko
2025-10-02T16:38:16.6340107Z INSTALL drivers/input/touchscreen/cy8ctmg110_ts.ko
2025-10-02T16:38:16.6592637Z INSTALL drivers/input/touchscreen/cyttsp4_core.ko
2025-10-02T16:38:16.6841906Z INSTALL drivers/input/touchscreen/cyttsp4_spi.ko
2025-10-02T16:38:16.6859103Z INSTALL drivers/input/touchscreen/cyttsp4_i2c.ko
2025-10-02T16:38:16.6860503Z INSTALL drivers/input/touchscreen/cyttsp_core.ko
2025-10-02T16:38:16.6912032Z INSTALL drivers/input/touchscreen/cyttsp_i2c.ko
2025-10-02T16:38:16.7377439Z INSTALL drivers/input/touchscreen/cyttsp_i2c_common.ko
2025-10-02T16:38:16.7395896Z INSTALL drivers/input/touchscreen/cyttsp_spi.ko
2025-10-02T16:38:16.7439337Z INSTALL drivers/input/touchscreen/da9034-ts.ko
2025-10-02T16:38:16.7490501Z INSTALL drivers/input/touchscreen/da9052_tsi.ko
2025-10-02T16:38:16.7508771Z INSTALL drivers/input/touchscreen/dynapro.ko
2025-10-02T16:38:16.7910900Z INSTALL drivers/input/touchscreen/edt-ft5x06.ko
2025-10-02T16:38:16.7911940Z INSTALL drivers/input/touchscreen/eeti_ts.ko
2025-10-02T16:38:16.7936104Z INSTALL drivers/input/touchscreen/egalax_ts_serial.ko
2025-10-02T16:38:16.8006105Z INSTALL drivers/input/touchscreen/ektf2127.ko
2025-10-02T16:38:16.8066346Z INSTALL drivers/input/touchscreen/elants_i2c.ko
2025-10-02T16:38:16.8443996Z INSTALL drivers/input/touchscreen/elo.ko
2025-10-02T16:38:16.8499241Z INSTALL drivers/input/touchscreen/exc3000.ko
2025-10-02T16:38:16.8548390Z INSTALL drivers/input/touchscreen/fujitsu_ts.ko
2025-10-02T16:38:16.8590782Z INSTALL drivers/input/touchscreen/goodix.ko
2025-10-02T16:38:16.8907679Z INSTALL drivers/input/touchscreen/gunze.ko
2025-10-02T16:38:16.9053254Z INSTALL drivers/input/touchscreen/hampshire.ko
2025-10-02T16:38:16.9076518Z INSTALL drivers/input/touchscreen/hideep.ko
2025-10-02T16:38:16.9169109Z INSTALL drivers/input/touchscreen/ili210x.ko
2025-10-02T16:38:16.9303683Z INSTALL drivers/input/touchscreen/inexio.ko
2025-10-02T16:38:16.9352453Z INSTALL drivers/input/touchscreen/iqs5xx.ko
2025-10-02T16:38:16.9715396Z INSTALL drivers/input/touchscreen/max11801_ts.ko
2025-10-02T16:38:16.9761228Z INSTALL drivers/input/touchscreen/mc13783_ts.ko
2025-10-02T16:38:16.9792200Z INSTALL drivers/input/touchscreen/mcs5000_ts.ko
2025-10-02T16:38:16.9804123Z INSTALL drivers/input/touchscreen/melfas_mip4.ko
2025-10-02T16:38:16.9885758Z INSTALL drivers/input/touchscreen/mk712.ko
2025-10-02T16:38:17.0250957Z INSTALL drivers/input/touchscreen/mms114.ko
2025-10-02T16:38:17.0366617Z INSTALL drivers/input/touchscreen/mtouch.ko
2025-10-02T16:38:17.0389080Z INSTALL drivers/input/touchscreen/pcap_ts.ko
2025-10-02T16:38:17.0438889Z INSTALL drivers/input/touchscreen/penmount.ko
2025-10-02T16:38:17.0516617Z INSTALL drivers/input/touchscreen/pixcir_i2c_ts.ko
2025-10-02T16:38:17.0778222Z INSTALL drivers/input/touchscreen/raydium_i2c_ts.ko
2025-10-02T16:38:17.0903115Z INSTALL drivers/input/touchscreen/resistive-adc-touch.ko
2025-10-02T16:38:17.0982010Z INSTALL drivers/input/touchscreen/rohm_bu21023.ko
2025-10-02T16:38:17.1027844Z INSTALL drivers/input/touchscreen/s6sy761.ko
2025-10-02T16:38:17.1240989Z INSTALL drivers/input/touchscreen/silead.ko
2025-10-02T16:38:17.1407778Z INSTALL drivers/input/touchscreen/sis_i2c.ko
2025-10-02T16:38:17.1446114Z INSTALL drivers/input/touchscreen/st1232.ko
2025-10-02T16:38:17.1570654Z INSTALL drivers/input/touchscreen/stmfts.ko
2025-10-02T16:38:17.1645174Z INSTALL drivers/input/touchscreen/sur40.ko
2025-10-02T16:38:17.1921905Z INSTALL drivers/input/touchscreen/surface3_spi.ko
2025-10-02T16:38:17.1952293Z INSTALL drivers/input/touchscreen/sx8654.ko
2025-10-02T16:38:17.2009973Z INSTALL drivers/input/touchscreen/touchit213.ko
2025-10-02T16:38:17.2206138Z INSTALL drivers/input/touchscreen/touchright.ko
2025-10-02T16:38:17.2355299Z INSTALL drivers/input/touchscreen/touchwin.ko
2025-10-02T16:38:17.2494479Z INSTALL drivers/input/touchscreen/tps6507x-ts.ko
2025-10-02T16:38:17.2517593Z INSTALL drivers/input/touchscreen/tsc2004.ko
2025-10-02T16:38:17.2548457Z INSTALL drivers/input/touchscreen/tsc2005.ko
2025-10-02T16:38:17.2716216Z INSTALL drivers/input/touchscreen/tsc2007.ko
2025-10-02T16:38:17.2777972Z INSTALL drivers/input/touchscreen/tsc200x-core.ko
2025-10-02T16:38:17.3052634Z INSTALL drivers/input/touchscreen/tsc40.ko
2025-10-02T16:38:17.3090163Z INSTALL drivers/input/touchscreen/ucb1400_ts.ko
2025-10-02T16:38:17.3102472Z INSTALL drivers/input/touchscreen/usbtouchscreen.ko
2025-10-02T16:38:17.3356132Z INSTALL drivers/input/touchscreen/wacom_w8001.ko
2025-10-02T16:38:17.3358061Z INSTALL drivers/input/touchscreen/wacom_i2c.ko
2025-10-02T16:38:17.3544134Z INSTALL drivers/input/touchscreen/wdt87xx_i2c.ko
2025-10-02T16:38:17.3621351Z INSTALL drivers/input/touchscreen/wm831x-ts.ko
2025-10-02T16:38:17.3924288Z INSTALL drivers/input/touchscreen/wm97xx-ts.ko
2025-10-02T16:38:17.3930776Z INSTALL drivers/input/touchscreen/zet6223.ko
2025-10-02T16:38:17.4025296Z INSTALL drivers/input/touchscreen/zforce_ts.ko
2025-10-02T16:38:17.4135331Z INSTALL drivers/input/touchscreen/zinitix.ko
2025-10-02T16:38:17.4228198Z INSTALL drivers/ipack/carriers/tpci200.ko
2025-10-02T16:38:17.4488906Z INSTALL drivers/ipack/devices/ipoctal.ko
2025-10-02T16:38:17.4697008Z INSTALL drivers/ipack/ipack.ko
2025-10-02T16:38:17.4782188Z INSTALL drivers/irqchip/irq-madera.ko
2025-10-02T16:38:17.4815394Z INSTALL drivers/isdn/capi/kernelcapi.ko
2025-10-02T16:38:17.4829156Z INSTALL drivers/isdn/hardware/mISDN/avmfritz.ko
2025-10-02T16:38:17.5175754Z INSTALL drivers/isdn/hardware/mISDN/hfcmulti.ko
2025-10-02T16:38:17.5277917Z INSTALL drivers/isdn/hardware/mISDN/hfcpci.ko
2025-10-02T16:38:17.5303995Z INSTALL drivers/isdn/hardware/mISDN/hfcsusb.ko
2025-10-02T16:38:17.5568838Z INSTALL drivers/isdn/hardware/mISDN/isdnhdlc.ko
2025-10-02T16:38:17.5905798Z INSTALL drivers/isdn/hardware/mISDN/mISDNinfineon.ko
2025-10-02T16:38:17.6063492Z INSTALL drivers/isdn/hardware/mISDN/mISDNipac.ko
2025-10-02T16:38:17.6189992Z INSTALL drivers/isdn/hardware/mISDN/mISDNisar.ko
2025-10-02T16:38:17.6311635Z INSTALL drivers/isdn/hardware/mISDN/netjet.ko
2025-10-02T16:38:17.6605308Z INSTALL drivers/isdn/hardware/mISDN/speedfax.ko
2025-10-02T16:38:17.6734852Z INSTALL drivers/isdn/hardware/mISDN/w6692.ko
2025-10-02T16:38:17.7004626Z INSTALL drivers/isdn/mISDN/l1oip.ko
2025-10-02T16:38:17.7017073Z INSTALL drivers/isdn/mISDN/mISDN_core.ko
2025-10-02T16:38:17.7094574Z INSTALL drivers/isdn/mISDN/mISDN_dsp.ko
2025-10-02T16:38:17.7368256Z INSTALL drivers/leds/led-class-flash.ko
2025-10-02T16:38:17.7557597Z INSTALL drivers/leds/led-class-multicolor.ko
2025-10-02T16:38:17.7967170Z INSTALL drivers/leds/leds-88pm860x.ko
2025-10-02T16:38:17.7992529Z INSTALL drivers/leds/leds-adp5520.ko
2025-10-02T16:38:17.8225967Z INSTALL drivers/leds/leds-apu.ko
2025-10-02T16:38:17.8337128Z INSTALL drivers/leds/leds-as3645a.ko
2025-10-02T16:38:17.8514225Z INSTALL drivers/leds/leds-bd2802.ko
2025-10-02T16:38:17.8534929Z INSTALL drivers/leds/leds-blinkm.ko
2025-10-02T16:38:17.8654962Z INSTALL drivers/leds/leds-clevo-mail.ko
2025-10-02T16:38:17.8775098Z INSTALL drivers/leds/leds-da903x.ko
2025-10-02T16:38:17.8986101Z INSTALL drivers/leds/leds-da9052.ko
2025-10-02T16:38:17.9084289Z INSTALL drivers/leds/leds-dac124s085.ko
2025-10-02T16:38:17.9171820Z INSTALL drivers/leds/leds-gpio.ko
2025-10-02T16:38:17.9247669Z INSTALL drivers/leds/leds-lm3530.ko
2025-10-02T16:38:17.9330993Z INSTALL drivers/leds/leds-lm3532.ko
2025-10-02T16:38:17.9560890Z INSTALL drivers/leds/leds-lm3533.ko
2025-10-02T16:38:17.9562207Z INSTALL drivers/leds/leds-lm355x.ko
2025-10-02T16:38:17.9768486Z INSTALL drivers/leds/leds-lm3601x.ko
2025-10-02T16:38:17.9851657Z INSTALL drivers/leds/leds-lm36274.ko
2025-10-02T16:38:17.9903419Z INSTALL drivers/leds/leds-lm3642.ko
2025-10-02T16:38:18.0131776Z INSTALL drivers/leds/leds-lp3944.ko
2025-10-02T16:38:18.0182578Z INSTALL drivers/leds/leds-lp3952.ko
2025-10-02T16:38:18.0352435Z INSTALL drivers/leds/leds-lp50xx.ko
2025-10-02T16:38:18.0401292Z INSTALL drivers/leds/leds-lp8788.ko
2025-10-02T16:38:18.0600651Z INSTALL drivers/leds/leds-max8997.ko
2025-10-02T16:38:18.0703048Z INSTALL drivers/leds/leds-mc13783.ko
2025-10-02T16:38:18.0743298Z INSTALL drivers/leds/leds-menf21bmc.ko
2025-10-02T16:38:18.0879332Z INSTALL drivers/leds/leds-mlxcpld.ko
2025-10-02T16:38:18.0960661Z INSTALL drivers/leds/leds-mlxreg.ko
2025-10-02T16:38:18.1133238Z INSTALL drivers/leds/leds-mt6323.ko
2025-10-02T16:38:18.1285944Z INSTALL drivers/leds/leds-nic78bx.ko
2025-10-02T16:38:18.1415584Z INSTALL drivers/leds/leds-pca9532.ko
2025-10-02T16:38:18.1431841Z INSTALL drivers/leds/leds-pca955x.ko
2025-10-02T16:38:18.1436304Z INSTALL drivers/leds/leds-pca963x.ko
2025-10-02T16:38:18.1576112Z INSTALL drivers/leds/leds-pwm.ko
2025-10-02T16:38:18.1797968Z INSTALL drivers/leds/leds-regulator.ko
2025-10-02T16:38:18.1974417Z INSTALL drivers/leds/leds-sgm3140.ko
2025-10-02T16:38:18.2006104Z INSTALL drivers/leds/leds-ss4200.ko
2025-10-02T16:38:18.2019779Z INSTALL drivers/leds/leds-tca6507.ko
2025-10-02T16:38:18.2057066Z INSTALL drivers/leds/leds-ti-lmu-common.ko
2025-10-02T16:38:18.2336360Z INSTALL drivers/leds/leds-tlc591xx.ko
2025-10-02T16:38:18.2514373Z INSTALL drivers/leds/leds-tps6105x.ko
2025-10-02T16:38:18.2564886Z INSTALL drivers/leds/leds-wm831x-status.ko
2025-10-02T16:38:18.2596585Z INSTALL drivers/leds/leds-wm8350.ko
2025-10-02T16:38:18.2643162Z INSTALL drivers/leds/trigger/ledtrig-activity.ko
2025-10-02T16:38:18.2892128Z INSTALL drivers/leds/trigger/ledtrig-audio.ko
2025-10-02T16:38:18.2964568Z INSTALL drivers/leds/trigger/ledtrig-backlight.ko
2025-10-02T16:38:18.3104942Z INSTALL drivers/leds/trigger/ledtrig-camera.ko
2025-10-02T16:38:18.3127175Z INSTALL drivers/leds/trigger/ledtrig-default-on.ko
2025-10-02T16:38:18.3172113Z INSTALL drivers/leds/trigger/ledtrig-gpio.ko
2025-10-02T16:38:18.3441873Z INSTALL drivers/leds/trigger/ledtrig-heartbeat.ko
2025-10-02T16:38:18.3498658Z INSTALL drivers/leds/trigger/ledtrig-netdev.ko
2025-10-02T16:38:18.3566296Z INSTALL drivers/leds/trigger/ledtrig-oneshot.ko
2025-10-02T16:38:18.3631841Z INSTALL drivers/leds/trigger/ledtrig-pattern.ko
2025-10-02T16:38:18.3643944Z INSTALL drivers/leds/trigger/ledtrig-timer.ko
2025-10-02T16:38:18.3980134Z INSTALL drivers/leds/trigger/ledtrig-transient.ko
2025-10-02T16:38:18.4028050Z INSTALL drivers/leds/uleds.ko
2025-10-02T16:38:18.4097991Z INSTALL drivers/macintosh/mac_hid.ko
2025-10-02T16:38:18.4101792Z INSTALL drivers/mailbox/mailbox-altera.ko
2025-10-02T16:38:18.4290661Z INSTALL drivers/mcb/mcb-lpc.ko
2025-10-02T16:38:18.4561847Z INSTALL drivers/mcb/mcb-pci.ko
2025-10-02T16:38:18.4615022Z INSTALL drivers/mcb/mcb.ko
2025-10-02T16:38:18.4637935Z INSTALL drivers/md/bcache/bcache.ko
2025-10-02T16:38:18.4644220Z INSTALL drivers/md/dm-bio-prison.ko
2025-10-02T16:38:18.4765648Z INSTALL drivers/md/dm-bufio.ko
2025-10-02T16:38:18.5136584Z INSTALL drivers/md/dm-cache-smq.ko
2025-10-02T16:38:18.5194879Z INSTALL drivers/md/dm-cache.ko
2025-10-02T16:38:18.5280602Z INSTALL drivers/md/dm-clone.ko
2025-10-02T16:38:18.5759999Z INSTALL drivers/md/dm-crypt.ko
2025-10-02T16:38:18.6005757Z INSTALL drivers/md/dm-delay.ko
2025-10-02T16:38:18.6341176Z INSTALL drivers/md/dm-dust.ko
2025-10-02T16:38:18.6435053Z INSTALL drivers/md/dm-ebs.ko
2025-10-02T16:38:18.6773972Z INSTALL drivers/md/dm-era.ko
2025-10-02T16:38:18.6891117Z INSTALL drivers/md/dm-flakey.ko
2025-10-02T16:38:18.6963620Z INSTALL drivers/md/dm-historical-service-time.ko
2025-10-02T16:38:18.6998174Z INSTALL drivers/md/dm-integrity.ko
2025-10-02T16:38:18.7517375Z INSTALL drivers/md/dm-log-userspace.ko
2025-10-02T16:38:18.7555019Z INSTALL drivers/md/dm-log-writes.ko
2025-10-02T16:38:18.7624576Z INSTALL drivers/md/dm-log.ko
2025-10-02T16:38:18.7716063Z INSTALL drivers/md/dm-mirror.ko
2025-10-02T16:38:18.8087686Z INSTALL drivers/md/dm-mod.ko
2025-10-02T16:38:18.8152537Z INSTALL drivers/md/dm-multipath.ko
2025-10-02T16:38:18.8240078Z INSTALL drivers/md/dm-queue-length.ko
2025-10-02T16:38:18.8268836Z INSTALL drivers/md/dm-raid.ko
2025-10-02T16:38:18.8501496Z INSTALL drivers/md/dm-region-hash.ko
2025-10-02T16:38:18.8808362Z INSTALL drivers/md/dm-round-robin.ko
2025-10-02T16:38:18.8942190Z INSTALL drivers/md/dm-service-time.ko
2025-10-02T16:38:18.9232762Z INSTALL drivers/md/dm-snapshot.ko
2025-10-02T16:38:18.9275446Z INSTALL drivers/md/dm-switch.ko
2025-10-02T16:38:18.9365646Z INSTALL drivers/md/dm-thin-pool.ko
2025-10-02T16:38:18.9500809Z INSTALL drivers/md/dm-unstripe.ko
2025-10-02T16:38:18.9853713Z INSTALL drivers/md/dm-verity.ko
2025-10-02T16:38:19.0053205Z INSTALL drivers/md/dm-writecache.ko
2025-10-02T16:38:19.0181468Z INSTALL drivers/md/dm-zero.ko
2025-10-02T16:38:19.0305756Z INSTALL drivers/md/dm-zoned.ko
2025-10-02T16:38:19.0614728Z INSTALL drivers/md/faulty.ko
2025-10-02T16:38:19.0627759Z INSTALL drivers/md/linear.ko
2025-10-02T16:38:19.0885802Z INSTALL drivers/md/md-cluster.ko
2025-10-02T16:38:19.0979058Z INSTALL drivers/md/md-mod.ko
2025-10-02T16:38:19.1212350Z INSTALL drivers/md/multipath.ko
2025-10-02T16:38:19.1284742Z INSTALL drivers/md/persistent-data/dm-persistent-data.ko
2025-10-02T16:38:19.1485779Z INSTALL drivers/md/raid0.ko
2025-10-02T16:38:19.1747847Z INSTALL drivers/md/raid1.ko
2025-10-02T16:38:19.1857892Z INSTALL drivers/md/raid10.ko
2025-10-02T16:38:19.2209174Z INSTALL drivers/md/raid456.ko
2025-10-02T16:38:19.2823696Z INSTALL drivers/media/cec/core/cec.ko
2025-10-02T16:38:19.2857700Z INSTALL drivers/media/cec/i2c/ch7322.ko
2025-10-02T16:38:19.3080084Z INSTALL drivers/media/cec/platform/cec-gpio/cec-gpio.ko
2025-10-02T16:38:19.3164718Z INSTALL drivers/media/cec/platform/cros-ec/cros-ec-cec.ko
2025-10-02T16:38:19.3527356Z INSTALL drivers/media/cec/platform/seco/seco-cec.ko
2025-10-02T16:38:19.3746204Z INSTALL drivers/media/cec/usb/pulse8/pulse8-cec.ko
2025-10-02T16:38:19.3836467Z INSTALL drivers/media/cec/usb/rainshadow/rainshadow-cec.ko
2025-10-02T16:38:19.3860065Z INSTALL drivers/media/common/b2c2/b2c2-flexcop.ko
2025-10-02T16:38:19.4194606Z INSTALL drivers/media/common/cx2341x.ko
2025-10-02T16:38:19.4203347Z INSTALL drivers/media/common/cypress_firmware.ko
2025-10-02T16:38:19.4400994Z INSTALL drivers/media/common/saa7146/saa7146.ko
2025-10-02T16:38:19.4484006Z INSTALL drivers/media/common/saa7146/saa7146_vv.ko
2025-10-02T16:38:19.4764434Z INSTALL drivers/media/common/siano/smsdvb.ko
2025-10-02T16:38:19.4776353Z INSTALL drivers/media/common/siano/smsmdtv.ko
2025-10-02T16:38:19.4906714Z INSTALL drivers/media/common/tveeprom.ko
2025-10-02T16:38:19.5230981Z INSTALL drivers/media/common/v4l2-tpg/v4l2-tpg.ko
2025-10-02T16:38:19.5494989Z INSTALL drivers/media/common/videobuf2/videobuf2-common.ko
2025-10-02T16:38:19.5505969Z INSTALL drivers/media/common/videobuf2/videobuf2-dma-contig.ko
2025-10-02T16:38:19.5633662Z INSTALL drivers/media/common/videobuf2/videobuf2-dma-sg.ko
2025-10-02T16:38:19.5934988Z INSTALL drivers/media/common/videobuf2/videobuf2-dvb.ko
2025-10-02T16:38:19.6099409Z INSTALL drivers/media/common/videobuf2/videobuf2-memops.ko
2025-10-02T16:38:19.6196114Z INSTALL drivers/media/common/videobuf2/videobuf2-v4l2.ko
2025-10-02T16:38:19.6232629Z INSTALL drivers/media/common/videobuf2/videobuf2-vmalloc.ko
2025-10-02T16:38:19.6546657Z INSTALL drivers/media/dvb-core/dvb-core.ko
2025-10-02T16:38:19.6615548Z INSTALL drivers/media/dvb-frontends/a8293.ko
2025-10-02T16:38:19.6645087Z INSTALL drivers/media/dvb-frontends/af9013.ko
2025-10-02T16:38:19.6930576Z INSTALL drivers/media/dvb-frontends/af9033.ko
2025-10-02T16:38:19.6960567Z INSTALL drivers/media/dvb-frontends/as102_fe.ko
2025-10-02T16:38:19.7206990Z INSTALL drivers/media/dvb-frontends/ascot2e.ko
2025-10-02T16:38:19.7433278Z INSTALL drivers/media/dvb-frontends/atbm8830.ko
2025-10-02T16:38:19.7517014Z INSTALL drivers/media/dvb-frontends/au8522_common.ko
2025-10-02T16:38:19.7624051Z INSTALL drivers/media/dvb-frontends/au8522_decoder.ko
2025-10-02T16:38:19.7855548Z INSTALL drivers/media/dvb-frontends/au8522_dig.ko
2025-10-02T16:38:19.8150389Z INSTALL drivers/media/dvb-frontends/bcm3510.ko
2025-10-02T16:38:19.8199116Z INSTALL drivers/media/dvb-frontends/cx22700.ko
2025-10-02T16:38:19.8213525Z INSTALL drivers/media/dvb-frontends/cx22702.ko
2025-10-02T16:38:19.8466494Z INSTALL drivers/media/dvb-frontends/cx24110.ko
2025-10-02T16:38:19.8493284Z INSTALL drivers/media/dvb-frontends/cx24113.ko
2025-10-02T16:38:19.8704857Z INSTALL drivers/media/dvb-frontends/cx24116.ko
2025-10-02T16:38:19.8805774Z INSTALL drivers/media/dvb-frontends/cx24117.ko
2025-10-02T16:38:19.8819771Z INSTALL drivers/media/dvb-frontends/cx24120.ko
2025-10-02T16:38:19.9069157Z INSTALL drivers/media/dvb-frontends/cx24123.ko
2025-10-02T16:38:19.9245797Z INSTALL drivers/media/dvb-frontends/cxd2099.ko
2025-10-02T16:38:19.9354067Z INSTALL drivers/media/dvb-frontends/cxd2820r.ko
2025-10-02T16:38:19.9555513Z INSTALL drivers/media/dvb-frontends/cxd2841er.ko
2025-10-02T16:38:19.9702180Z INSTALL drivers/media/dvb-frontends/dib0070.ko
2025-10-02T16:38:19.9707543Z INSTALL drivers/media/dvb-frontends/dib0090.ko
2025-10-02T16:38:19.9961625Z INSTALL drivers/media/dvb-frontends/dib3000mb.ko
2025-10-02T16:38:20.0241466Z INSTALL drivers/media/dvb-frontends/dib3000mc.ko
2025-10-02T16:38:20.0449923Z INSTALL drivers/media/dvb-frontends/dib7000m.ko
2025-10-02T16:38:20.0528440Z INSTALL drivers/media/dvb-frontends/dib7000p.ko
2025-10-02T16:38:20.0657375Z INSTALL drivers/media/dvb-frontends/dib8000.ko
2025-10-02T16:38:20.0780551Z INSTALL drivers/media/dvb-frontends/dibx000_common.ko
2025-10-02T16:38:20.0938331Z INSTALL drivers/media/dvb-frontends/drx39xyj/drx39xyj.ko
2025-10-02T16:38:20.1224351Z INSTALL drivers/media/dvb-frontends/drxd.ko
2025-10-02T16:38:20.1335513Z INSTALL drivers/media/dvb-frontends/drxk.ko
2025-10-02T16:38:20.1523169Z INSTALL drivers/media/dvb-frontends/ds3000.ko
2025-10-02T16:38:20.1810969Z INSTALL drivers/media/dvb-frontends/dvb-pll.ko
2025-10-02T16:38:20.2084922Z INSTALL drivers/media/dvb-frontends/ec100.ko
2025-10-02T16:38:20.2092406Z INSTALL drivers/media/dvb-frontends/dvb_dummy_fe.ko
2025-10-02T16:38:20.2309953Z INSTALL drivers/media/dvb-frontends/gp8psk-fe.ko
2025-10-02T16:38:20.2495512Z INSTALL drivers/media/dvb-frontends/helene.ko
2025-10-02T16:38:20.2517181Z INSTALL drivers/media/dvb-frontends/horus3a.ko
2025-10-02T16:38:20.2637043Z INSTALL drivers/media/dvb-frontends/isl6405.ko
2025-10-02T16:38:20.2638082Z INSTALL drivers/media/dvb-frontends/isl6421.ko
2025-10-02T16:38:20.2897171Z INSTALL drivers/media/dvb-frontends/isl6423.ko
2025-10-02T16:38:20.3096967Z INSTALL drivers/media/dvb-frontends/itd1000.ko
2025-10-02T16:38:20.3128083Z INSTALL drivers/media/dvb-frontends/ix2505v.ko
2025-10-02T16:38:20.3129090Z INSTALL drivers/media/dvb-frontends/l64781.ko
2025-10-02T16:38:20.3138618Z INSTALL drivers/media/dvb-frontends/lg2160.ko
2025-10-02T16:38:20.3536783Z INSTALL drivers/media/dvb-frontends/lgdt3305.ko
2025-10-02T16:38:20.3599274Z INSTALL drivers/media/dvb-frontends/lgdt3306a.ko
2025-10-02T16:38:20.3667587Z INSTALL drivers/media/dvb-frontends/lgdt330x.ko
2025-10-02T16:38:20.3712937Z INSTALL drivers/media/dvb-frontends/lgs8gxx.ko
2025-10-02T16:38:20.3793603Z INSTALL drivers/media/dvb-frontends/lnbh25.ko
2025-10-02T16:38:20.4221276Z INSTALL drivers/media/dvb-frontends/lnbp21.ko
2025-10-02T16:38:20.4301154Z INSTALL drivers/media/dvb-frontends/lnbp22.ko
2025-10-02T16:38:20.4388415Z INSTALL drivers/media/dvb-frontends/m88ds3103.ko
2025-10-02T16:38:20.4412804Z INSTALL drivers/media/dvb-frontends/m88rs2000.ko
2025-10-02T16:38:20.4488382Z INSTALL drivers/media/dvb-frontends/mb86a16.ko
2025-10-02T16:38:20.4696093Z INSTALL drivers/media/dvb-frontends/mb86a20s.ko
2025-10-02T16:38:20.4774673Z INSTALL drivers/media/dvb-frontends/mn88472.ko
2025-10-02T16:38:20.5036230Z INSTALL drivers/media/dvb-frontends/mn88473.ko
2025-10-02T16:38:20.5177893Z INSTALL drivers/media/dvb-frontends/mt312.ko
2025-10-02T16:38:20.5240533Z INSTALL drivers/media/dvb-frontends/mt352.ko
2025-10-02T16:38:20.5464009Z INSTALL drivers/media/dvb-frontends/mxl5xx.ko
2025-10-02T16:38:20.5532043Z INSTALL drivers/media/dvb-frontends/nxt200x.ko
2025-10-02T16:38:20.5655345Z INSTALL drivers/media/dvb-frontends/nxt6000.ko
2025-10-02T16:38:20.5753496Z INSTALL drivers/media/dvb-frontends/or51132.ko
2025-10-02T16:38:20.5874838Z INSTALL drivers/media/dvb-frontends/or51211.ko
2025-10-02T16:38:20.6171747Z INSTALL drivers/media/dvb-frontends/rtl2830.ko
2025-10-02T16:38:20.6244600Z INSTALL drivers/media/dvb-frontends/rtl2832.ko
2025-10-02T16:38:20.6259119Z INSTALL drivers/media/dvb-frontends/s5h1409.ko
2025-10-02T16:38:20.6395171Z INSTALL drivers/media/dvb-frontends/s5h1411.ko
2025-10-02T16:38:20.6501165Z INSTALL drivers/media/dvb-frontends/s5h1420.ko
2025-10-02T16:38:20.6816813Z INSTALL drivers/media/dvb-frontends/s921.ko
2025-10-02T16:38:20.7000285Z INSTALL drivers/media/dvb-frontends/si2168.ko
2025-10-02T16:38:20.7001314Z INSTALL drivers/media/dvb-frontends/si2165.ko
2025-10-02T16:38:20.7079173Z INSTALL drivers/media/dvb-frontends/si21xx.ko
2025-10-02T16:38:20.7098817Z INSTALL drivers/media/dvb-frontends/sp2.ko
2025-10-02T16:38:20.7315864Z INSTALL drivers/media/dvb-frontends/sp8870.ko
2025-10-02T16:38:20.7643365Z INSTALL drivers/media/dvb-frontends/sp887x.ko
2025-10-02T16:38:20.7684903Z INSTALL drivers/media/dvb-frontends/stb0899.ko
2025-10-02T16:38:20.7694829Z INSTALL drivers/media/dvb-frontends/stb6000.ko
2025-10-02T16:38:20.7760484Z INSTALL drivers/media/dvb-frontends/stb6100.ko
2025-10-02T16:38:20.7975953Z INSTALL drivers/media/dvb-frontends/stv0288.ko
2025-10-02T16:38:20.8172972Z INSTALL drivers/media/dvb-frontends/stv0297.ko
2025-10-02T16:38:20.8175233Z INSTALL drivers/media/dvb-frontends/stv0299.ko
2025-10-02T16:38:20.8319432Z INSTALL drivers/media/dvb-frontends/stv0367.ko
2025-10-02T16:38:20.8615963Z INSTALL drivers/media/dvb-frontends/stv0900.ko
2025-10-02T16:38:20.8667411Z INSTALL drivers/media/dvb-frontends/stv090x.ko
2025-10-02T16:38:20.8753878Z INSTALL drivers/media/dvb-frontends/stv0910.ko
2025-10-02T16:38:20.8841709Z INSTALL drivers/media/dvb-frontends/stv6110.ko
2025-10-02T16:38:20.9151092Z INSTALL drivers/media/dvb-frontends/stv6110x.ko
2025-10-02T16:38:20.9393753Z INSTALL drivers/media/dvb-frontends/stv6111.ko
2025-10-02T16:38:20.9498149Z INSTALL drivers/media/dvb-frontends/tc90522.ko
2025-10-02T16:38:20.9674202Z INSTALL drivers/media/dvb-frontends/tda10021.ko
2025-10-02T16:38:20.9706026Z INSTALL drivers/media/dvb-frontends/tda10023.ko
2025-10-02T16:38:20.9812920Z INSTALL drivers/media/dvb-frontends/tda10048.ko
2025-10-02T16:38:20.9979695Z INSTALL drivers/media/dvb-frontends/tda1004x.ko
2025-10-02T16:38:21.0110449Z INSTALL drivers/media/dvb-frontends/tda10071.ko
2025-10-02T16:38:21.0240780Z INSTALL drivers/media/dvb-frontends/tda10086.ko
2025-10-02T16:38:21.0310643Z INSTALL drivers/media/dvb-frontends/tda18271c2dd.ko
2025-10-02T16:38:21.0455383Z INSTALL drivers/media/dvb-frontends/tda665x.ko
2025-10-02T16:38:21.0722993Z INSTALL drivers/media/dvb-frontends/tda8083.ko
2025-10-02T16:38:21.0797939Z INSTALL drivers/media/dvb-frontends/tda8261.ko
2025-10-02T16:38:21.0838086Z INSTALL drivers/media/dvb-frontends/tda826x.ko
2025-10-02T16:38:21.0918665Z INSTALL drivers/media/dvb-frontends/ts2020.ko
2025-10-02T16:38:21.0969664Z INSTALL drivers/media/dvb-frontends/tua6100.ko
2025-10-02T16:38:21.1275807Z INSTALL drivers/media/dvb-frontends/ves1820.ko
2025-10-02T16:38:21.1334183Z INSTALL drivers/media/dvb-frontends/ves1x93.ko
2025-10-02T16:38:21.1346932Z INSTALL drivers/media/dvb-frontends/zd1301_demod.ko
2025-10-02T16:38:21.1549644Z INSTALL drivers/media/dvb-frontends/zl10036.ko
2025-10-02T16:38:21.1557234Z INSTALL drivers/media/dvb-frontends/zl10039.ko
2025-10-02T16:38:21.1896698Z INSTALL drivers/media/dvb-frontends/zl10353.ko
2025-10-02T16:38:21.1899627Z INSTALL drivers/media/firewire/firedtv.ko
2025-10-02T16:38:21.1974048Z INSTALL drivers/media/i2c/ad5820.ko
2025-10-02T16:38:21.2096939Z INSTALL drivers/media/i2c/adp1653.ko
2025-10-02T16:38:21.2123184Z INSTALL drivers/media/i2c/ak7375.ko
2025-10-02T16:38:21.2452233Z INSTALL drivers/media/i2c/aptina-pll.ko
2025-10-02T16:38:21.2591843Z INSTALL drivers/media/i2c/cs3308.ko
2025-10-02T16:38:21.2686278Z INSTALL drivers/media/i2c/cs5345.ko
2025-10-02T16:38:21.2691342Z INSTALL drivers/media/i2c/cs53l32a.ko
2025-10-02T16:38:21.2714993Z INSTALL drivers/media/i2c/cx25840/cx25840.ko
2025-10-02T16:38:21.2994230Z INSTALL drivers/media/i2c/dw9714.ko
2025-10-02T16:38:21.3057948Z INSTALL drivers/media/i2c/dw9768.ko
2025-10-02T16:38:21.3140664Z INSTALL drivers/media/i2c/dw9807-vcm.ko
2025-10-02T16:38:21.3205694Z INSTALL drivers/media/i2c/et8ek8/et8ek8.ko
2025-10-02T16:38:21.3615402Z INSTALL drivers/media/i2c/hi556.ko
2025-10-02T16:38:21.3664876Z INSTALL drivers/media/i2c/imx214.ko
2025-10-02T16:38:21.3717243Z INSTALL drivers/media/i2c/imx219.ko
2025-10-02T16:38:21.3795344Z INSTALL drivers/media/i2c/imx258.ko
2025-10-02T16:38:21.3814694Z INSTALL drivers/media/i2c/imx274.ko
2025-10-02T16:38:21.4302259Z INSTALL drivers/media/i2c/imx290.ko
2025-10-02T16:38:21.4335844Z INSTALL drivers/media/i2c/imx319.ko
2025-10-02T16:38:21.4378625Z INSTALL drivers/media/i2c/imx355.ko
2025-10-02T16:38:21.4405836Z INSTALL drivers/media/i2c/ir-kbd-i2c.ko
2025-10-02T16:38:21.4520900Z INSTALL drivers/media/i2c/lm3560.ko
2025-10-02T16:38:21.4963425Z INSTALL drivers/media/i2c/lm3646.ko
2025-10-02T16:38:21.4980786Z INSTALL drivers/media/i2c/m52790.ko
2025-10-02T16:38:21.5062082Z INSTALL drivers/media/i2c/m5mols/m5mols.ko
2025-10-02T16:38:21.5071702Z INSTALL drivers/media/i2c/msp3400.ko
2025-10-02T16:38:21.5128938Z INSTALL drivers/media/i2c/mt9m001.ko
2025-10-02T16:38:21.5473829Z INSTALL drivers/media/i2c/mt9m032.ko
2025-10-02T16:38:21.5570540Z INSTALL drivers/media/i2c/mt9m111.ko
2025-10-02T16:38:21.5735724Z INSTALL drivers/media/i2c/mt9p031.ko
2025-10-02T16:38:21.5869010Z INSTALL drivers/media/i2c/mt9t001.ko
2025-10-02T16:38:21.5916231Z INSTALL drivers/media/i2c/mt9t112.ko
2025-10-02T16:38:21.6095263Z INSTALL drivers/media/i2c/mt9v011.ko
2025-10-02T16:38:21.6286011Z INSTALL drivers/media/i2c/mt9v032.ko
2025-10-02T16:38:21.6397926Z INSTALL drivers/media/i2c/mt9v111.ko
2025-10-02T16:38:21.6487548Z INSTALL drivers/media/i2c/noon010pc30.ko
2025-10-02T16:38:21.6493896Z INSTALL drivers/media/i2c/ov13858.ko
2025-10-02T16:38:21.6753815Z INSTALL drivers/media/i2c/ov2640.ko
2025-10-02T16:38:21.6936412Z INSTALL drivers/media/i2c/ov2659.ko
2025-10-02T16:38:21.6998993Z INSTALL drivers/media/i2c/ov2680.ko
2025-10-02T16:38:21.7039117Z INSTALL drivers/media/i2c/ov2685.ko
2025-10-02T16:38:21.7074726Z INSTALL drivers/media/i2c/ov2740.ko
2025-10-02T16:38:21.7464701Z INSTALL drivers/media/i2c/ov5647.ko
2025-10-02T16:38:21.7645992Z INSTALL drivers/media/i2c/ov5670.ko
2025-10-02T16:38:21.7649238Z INSTALL drivers/media/i2c/ov5675.ko
2025-10-02T16:38:21.7693819Z INSTALL drivers/media/i2c/ov5695.ko
2025-10-02T16:38:21.7705969Z INSTALL drivers/media/i2c/ov6650.ko
2025-10-02T16:38:21.8033488Z INSTALL drivers/media/i2c/ov7251.ko
2025-10-02T16:38:21.8286531Z INSTALL drivers/media/i2c/ov7640.ko
2025-10-02T16:38:21.8328097Z INSTALL drivers/media/i2c/ov7670.ko
2025-10-02T16:38:21.8338911Z INSTALL drivers/media/i2c/ov772x.ko
2025-10-02T16:38:21.8425532Z INSTALL drivers/media/i2c/ov7740.ko
2025-10-02T16:38:21.8685830Z INSTALL drivers/media/i2c/ov8856.ko
2025-10-02T16:38:21.8749671Z INSTALL drivers/media/i2c/ov9640.ko
2025-10-02T16:38:21.8999952Z INSTALL drivers/media/i2c/ov9650.ko
2025-10-02T16:38:21.9007736Z INSTALL drivers/media/i2c/rdacm20-camera_module.ko
2025-10-02T16:38:21.9085736Z INSTALL drivers/media/i2c/rj54n1cb0c.ko
2025-10-02T16:38:21.9355484Z INSTALL drivers/media/i2c/s5c73m3/s5c73m3.ko
2025-10-02T16:38:21.9420921Z INSTALL drivers/media/i2c/s5k4ecgx.ko
2025-10-02T16:38:21.9669332Z INSTALL drivers/media/i2c/s5k5baf.ko
2025-10-02T16:38:21.9685979Z INSTALL drivers/media/i2c/s5k6a3.ko
2025-10-02T16:38:21.9736601Z INSTALL drivers/media/i2c/s5k6aa.ko
2025-10-02T16:38:22.0048625Z INSTALL drivers/media/i2c/saa6588.ko
2025-10-02T16:38:22.0137071Z INSTALL drivers/media/i2c/saa6752hs.ko
2025-10-02T16:38:22.0192725Z INSTALL drivers/media/i2c/saa7115.ko
2025-10-02T16:38:22.0217772Z INSTALL drivers/media/i2c/saa7127.ko
2025-10-02T16:38:22.0467137Z INSTALL drivers/media/i2c/saa717x.ko
2025-10-02T16:38:22.0578909Z INSTALL drivers/media/i2c/smiapp-pll.ko
2025-10-02T16:38:22.0795313Z INSTALL drivers/media/i2c/smiapp/smiapp.ko
2025-10-02T16:38:22.0908248Z INSTALL drivers/media/i2c/sony-btf-mpx.ko
2025-10-02T16:38:22.0975470Z INSTALL drivers/media/i2c/sr030pc30.ko
2025-10-02T16:38:22.1225440Z INSTALL drivers/media/i2c/tda7432.ko
2025-10-02T16:38:22.1245739Z INSTALL drivers/media/i2c/tda9840.ko
2025-10-02T16:38:22.1539406Z INSTALL drivers/media/i2c/tea6415c.ko
2025-10-02T16:38:22.1540691Z INSTALL drivers/media/i2c/tea6420.ko
2025-10-02T16:38:22.1721632Z INSTALL drivers/media/i2c/tvaudio.ko
2025-10-02T16:38:22.1754624Z INSTALL drivers/media/i2c/tvp5150.ko
2025-10-02T16:38:22.1829829Z INSTALL drivers/media/i2c/tw2804.ko
2025-10-02T16:38:22.2023399Z INSTALL drivers/media/i2c/tw9903.ko
2025-10-02T16:38:22.2054618Z INSTALL drivers/media/i2c/tw9906.ko
2025-10-02T16:38:22.2447528Z INSTALL drivers/media/i2c/uda1342.ko
2025-10-02T16:38:22.2491384Z INSTALL drivers/media/i2c/upd64031a.ko
2025-10-02T16:38:22.2515544Z INSTALL drivers/media/i2c/upd64083.ko
2025-10-02T16:38:22.2554215Z INSTALL drivers/media/i2c/vp27smpx.ko
2025-10-02T16:38:22.2651777Z INSTALL drivers/media/i2c/vs6624.ko
2025-10-02T16:38:22.2992671Z INSTALL drivers/media/i2c/wm8739.ko
2025-10-02T16:38:22.3001379Z INSTALL drivers/media/i2c/wm8775.ko
2025-10-02T16:38:22.3033459Z INSTALL drivers/media/mc/mc.ko
2025-10-02T16:38:22.3098183Z INSTALL drivers/media/mmc/siano/smssdio.ko
2025-10-02T16:38:22.3172395Z INSTALL drivers/media/pci/b2c2/b2c2-flexcop-pci.ko
2025-10-02T16:38:22.3530890Z INSTALL drivers/media/pci/bt8xx/bt878.ko
2025-10-02T16:38:22.3625712Z INSTALL drivers/media/pci/bt8xx/bttv.ko
2025-10-02T16:38:22.3662932Z INSTALL drivers/media/pci/bt8xx/dst.ko
2025-10-02T16:38:22.3718246Z INSTALL drivers/media/pci/bt8xx/dst_ca.ko
2025-10-02T16:38:22.4119889Z INSTALL drivers/media/pci/bt8xx/dvb-bt8xx.ko
2025-10-02T16:38:22.4351753Z INSTALL drivers/media/pci/cx18/cx18-alsa.ko
2025-10-02T16:38:22.4398392Z INSTALL drivers/media/pci/cx18/cx18.ko
2025-10-02T16:38:22.4480931Z INSTALL drivers/media/pci/cx23885/altera-ci.ko
2025-10-02T16:38:22.4814784Z INSTALL drivers/media/pci/cx23885/cx23885.ko
2025-10-02T16:38:22.4963270Z INSTALL drivers/media/pci/cx25821/cx25821-alsa.ko
2025-10-02T16:38:22.5155003Z INSTALL drivers/media/pci/cx25821/cx25821.ko
2025-10-02T16:38:22.5425371Z INSTALL drivers/media/pci/cx88/cx88-alsa.ko
2025-10-02T16:38:22.5705959Z INSTALL drivers/media/pci/cx88/cx88-blackbird.ko
2025-10-02T16:38:22.6087275Z INSTALL drivers/media/pci/cx88/cx88-dvb.ko
2025-10-02T16:38:22.6158837Z INSTALL drivers/media/pci/cx88/cx88-vp3054-i2c.ko
2025-10-02T16:38:22.6503156Z INSTALL drivers/media/pci/cx88/cx8800.ko
2025-10-02T16:38:22.6584858Z INSTALL drivers/media/pci/cx88/cx8802.ko
2025-10-02T16:38:22.6601572Z INSTALL drivers/media/pci/cx88/cx88xx.ko
2025-10-02T16:38:22.7087679Z INSTALL drivers/media/pci/ddbridge/ddbridge-dummy-fe.ko
2025-10-02T16:38:22.7176205Z INSTALL drivers/media/pci/ddbridge/ddbridge.ko
2025-10-02T16:38:22.7270954Z INSTALL drivers/media/pci/dm1105/dm1105.ko
2025-10-02T16:38:22.7383465Z INSTALL drivers/media/pci/dt3155/dt3155.ko
2025-10-02T16:38:22.7641746Z INSTALL drivers/media/pci/intel/ipu3/ipu3-cio2.ko
2025-10-02T16:38:22.7727645Z INSTALL drivers/media/pci/ivtv/ivtv-alsa.ko
2025-10-02T16:38:22.7934868Z INSTALL drivers/media/pci/ivtv/ivtv.ko
2025-10-02T16:38:22.8119076Z INSTALL drivers/media/pci/ivtv/ivtvfb.ko
2025-10-02T16:38:22.8394522Z INSTALL drivers/media/pci/mantis/hopper.ko
2025-10-02T16:38:22.8440830Z INSTALL drivers/media/pci/mantis/mantis.ko
2025-10-02T16:38:22.8502083Z INSTALL drivers/media/pci/mantis/mantis_core.ko
2025-10-02T16:38:22.8912887Z INSTALL drivers/media/pci/meye/meye.ko
2025-10-02T16:38:22.9058191Z INSTALL drivers/media/pci/netup_unidvb/netup-unidvb.ko
2025-10-02T16:38:22.9224041Z INSTALL drivers/media/pci/ngene/ngene.ko
2025-10-02T16:38:22.9504436Z INSTALL drivers/media/pci/pluto2/pluto2.ko
2025-10-02T16:38:22.9718690Z INSTALL drivers/media/pci/pt1/earth-pt1.ko
2025-10-02T16:38:22.9972263Z INSTALL drivers/media/pci/pt3/earth-pt3.ko
2025-10-02T16:38:23.0083259Z INSTALL drivers/media/pci/saa7134/saa7134-alsa.ko
2025-10-02T16:38:23.0115948Z INSTALL drivers/media/pci/saa7134/saa7134-dvb.ko
2025-10-02T16:38:23.0302788Z INSTALL drivers/media/pci/saa7134/saa7134-empress.ko
2025-10-02T16:38:23.0417971Z INSTALL drivers/media/pci/saa7134/saa7134-go7007.ko
2025-10-02T16:38:23.0763914Z INSTALL drivers/media/pci/saa7134/saa7134.ko
2025-10-02T16:38:23.0776228Z INSTALL drivers/media/pci/saa7146/hexium_gemini.ko
2025-10-02T16:38:23.0874387Z INSTALL drivers/media/pci/saa7146/hexium_orion.ko
2025-10-02T16:38:23.0953684Z INSTALL drivers/media/pci/saa7146/mxb.ko
2025-10-02T16:38:23.1059794Z INSTALL drivers/media/pci/saa7164/saa7164.ko
2025-10-02T16:38:23.1464921Z INSTALL drivers/media/pci/smipcie/smipcie.ko
2025-10-02T16:38:23.1476260Z INSTALL drivers/media/pci/solo6x10/solo6x10.ko
2025-10-02T16:38:23.1730861Z INSTALL drivers/media/pci/ttpci/budget-av.ko
2025-10-02T16:38:23.2247494Z INSTALL drivers/media/pci/ttpci/budget-ci.ko
2025-10-02T16:38:23.2610290Z INSTALL drivers/media/pci/ttpci/budget-core.ko
2025-10-02T16:38:23.2696458Z INSTALL drivers/media/pci/ttpci/budget-patch.ko
2025-10-02T16:38:23.2840996Z INSTALL drivers/media/pci/ttpci/budget.ko
2025-10-02T16:38:23.2964607Z INSTALL drivers/media/pci/ttpci/dvb-ttpci.ko
2025-10-02T16:38:23.3088452Z INSTALL drivers/media/pci/ttpci/ttpci-eeprom.ko
2025-10-02T16:38:23.3270700Z INSTALL drivers/media/pci/tw5864/tw5864.ko
2025-10-02T16:38:23.3339265Z INSTALL drivers/media/pci/tw68/tw68.ko
2025-10-02T16:38:23.3462732Z INSTALL drivers/media/pci/tw686x/tw686x.ko
2025-10-02T16:38:23.3606729Z INSTALL drivers/media/platform/aspeed-video.ko
2025-10-02T16:38:23.4025583Z INSTALL drivers/media/platform/cadence/cdns-csi2rx.ko
2025-10-02T16:38:23.4097691Z INSTALL drivers/media/platform/cadence/cdns-csi2tx.ko
2025-10-02T16:38:23.4213140Z INSTALL drivers/media/platform/m2m-deinterlace.ko
2025-10-02T16:38:23.4402445Z INSTALL drivers/media/platform/marvell-ccic/cafe_ccic.ko
2025-10-02T16:38:23.4580572Z INSTALL drivers/media/platform/marvell-ccic/mcam-core.ko
2025-10-02T16:38:23.4691231Z INSTALL drivers/media/radio/dsbr100.ko
2025-10-02T16:38:23.4752862Z INSTALL drivers/media/radio/radio-keene.ko
2025-10-02T16:38:23.4836528Z INSTALL drivers/media/radio/radio-ma901.ko
2025-10-02T16:38:23.4970919Z INSTALL drivers/media/radio/radio-maxiradio.ko
2025-10-02T16:38:23.5267272Z INSTALL drivers/media/radio/radio-mr800.ko
2025-10-02T16:38:23.5329390Z INSTALL drivers/media/radio/radio-raremono.ko
2025-10-02T16:38:23.5338499Z INSTALL drivers/media/radio/radio-shark.ko
2025-10-02T16:38:23.5398998Z INSTALL drivers/media/radio/radio-si476x.ko
2025-10-02T16:38:23.5595089Z INSTALL drivers/media/radio/radio-tea5764.ko
2025-10-02T16:38:23.5885670Z INSTALL drivers/media/radio/radio-wl1273.ko
2025-10-02T16:38:23.5890612Z INSTALL drivers/media/radio/saa7706h.ko
2025-10-02T16:38:23.5945040Z INSTALL drivers/media/radio/shark2.ko
2025-10-02T16:38:23.6097204Z INSTALL drivers/media/radio/si470x/radio-si470x-common.ko
2025-10-02T16:38:23.6137163Z INSTALL drivers/media/radio/si470x/radio-si470x-i2c.ko
2025-10-02T16:38:23.6475976Z INSTALL drivers/media/radio/si470x/radio-si470x-usb.ko
2025-10-02T16:38:23.6613457Z INSTALL drivers/media/radio/si4713/radio-platform-si4713.ko
2025-10-02T16:38:23.6744864Z INSTALL drivers/media/radio/si4713/radio-usb-si4713.ko
2025-10-02T16:38:23.6839450Z INSTALL drivers/media/radio/si4713/si4713.ko
2025-10-02T16:38:23.6881758Z INSTALL drivers/media/radio/tea575x.ko
2025-10-02T16:38:23.7025320Z INSTALL drivers/media/radio/tef6862.ko
2025-10-02T16:38:23.7106351Z INSTALL drivers/media/radio/wl128x/fm_drv.ko
2025-10-02T16:38:23.7431669Z INSTALL drivers/media/rc/ati_remote.ko
2025-10-02T16:38:23.7481609Z INSTALL drivers/media/rc/ene_ir.ko
2025-10-02T16:38:23.7494016Z INSTALL drivers/media/rc/fintek-cir.ko
2025-10-02T16:38:23.7611556Z INSTALL drivers/media/rc/igorplugusb.ko
2025-10-02T16:38:23.8070434Z INSTALL drivers/media/rc/iguanair.ko
2025-10-02T16:38:23.8096919Z INSTALL drivers/media/rc/imon.ko
2025-10-02T16:38:23.8123791Z INSTALL drivers/media/rc/imon_raw.ko
2025-10-02T16:38:23.8136979Z INSTALL drivers/media/rc/ir-imon-decoder.ko
2025-10-02T16:38:23.8320676Z INSTALL drivers/media/rc/ir-jvc-decoder.ko
2025-10-02T16:38:23.8693559Z INSTALL drivers/media/rc/ir-mce_kbd-decoder.ko
2025-10-02T16:38:23.8694547Z INSTALL drivers/media/rc/ir-nec-decoder.ko
2025-10-02T16:38:23.8748627Z INSTALL drivers/media/rc/ir-rc5-decoder.ko
2025-10-02T16:38:23.8764286Z INSTALL drivers/media/rc/ir-rc6-decoder.ko
2025-10-02T16:38:23.8931715Z INSTALL drivers/media/rc/ir-rcmm-decoder.ko
2025-10-02T16:38:23.9247317Z INSTALL drivers/media/rc/ir-sanyo-decoder.ko
2025-10-02T16:38:23.9250873Z INSTALL drivers/media/rc/ir-sharp-decoder.ko
2025-10-02T16:38:23.9275532Z INSTALL drivers/media/rc/ir-sony-decoder.ko
2025-10-02T16:38:23.9333707Z INSTALL drivers/media/rc/ir-xmp-decoder.ko
2025-10-02T16:38:23.9436499Z INSTALL drivers/media/rc/ir_toy.ko
2025-10-02T16:38:23.9721803Z INSTALL drivers/media/rc/ite-cir.ko
2025-10-02T16:38:23.9797148Z INSTALL drivers/media/rc/keymaps/rc-adstech-dvb-t-pci.ko
2025-10-02T16:38:23.9865815Z INSTALL drivers/media/rc/keymaps/rc-alink-dtu-m.ko
2025-10-02T16:38:23.9906008Z INSTALL drivers/media/rc/keymaps/rc-anysee.ko
2025-10-02T16:38:23.9983312Z INSTALL drivers/media/rc/keymaps/rc-apac-viewcomp.ko
2025-10-02T16:38:24.0248548Z INSTALL drivers/media/rc/keymaps/rc-astrometa-t2hybrid.ko
2025-10-02T16:38:24.0317889Z INSTALL drivers/media/rc/keymaps/rc-asus-pc39.ko
2025-10-02T16:38:24.0372526Z INSTALL drivers/media/rc/keymaps/rc-asus-ps3-100.ko
2025-10-02T16:38:24.0395370Z INSTALL drivers/media/rc/keymaps/rc-ati-tv-wonder-hd-600.ko
2025-10-02T16:38:24.0565759Z INSTALL drivers/media/rc/keymaps/rc-ati-x10.ko
2025-10-02T16:38:24.0746268Z INSTALL drivers/media/rc/keymaps/rc-avermedia-a16d.ko
2025-10-02T16:38:24.0827920Z INSTALL drivers/media/rc/keymaps/rc-avermedia-cardbus.ko
2025-10-02T16:38:24.0864194Z INSTALL drivers/media/rc/keymaps/rc-avermedia-dvbt.ko
2025-10-02T16:38:24.0883463Z INSTALL drivers/media/rc/keymaps/rc-avermedia-m135a.ko
2025-10-02T16:38:24.0999344Z INSTALL drivers/media/rc/keymaps/rc-avermedia-m733a-rm-k6.ko
2025-10-02T16:38:24.1220893Z INSTALL drivers/media/rc/keymaps/rc-avermedia-rm-ks.ko
2025-10-02T16:38:24.1313825Z INSTALL drivers/media/rc/keymaps/rc-avermedia.ko
2025-10-02T16:38:24.1315925Z INSTALL drivers/media/rc/keymaps/rc-avertv-303.ko
2025-10-02T16:38:24.1383947Z INSTALL drivers/media/rc/keymaps/rc-azurewave-ad-tu700.ko
2025-10-02T16:38:24.1411356Z INSTALL drivers/media/rc/keymaps/rc-beelink-gs1.ko
2025-10-02T16:38:24.1724215Z INSTALL drivers/media/rc/keymaps/rc-behold-columbus.ko
2025-10-02T16:38:24.1759746Z INSTALL drivers/media/rc/keymaps/rc-behold.ko
2025-10-02T16:38:24.1774240Z INSTALL drivers/media/rc/keymaps/rc-budget-ci-old.ko
2025-10-02T16:38:24.1839165Z INSTALL drivers/media/rc/keymaps/rc-cinergy-1400.ko
2025-10-02T16:38:24.1860685Z INSTALL drivers/media/rc/keymaps/rc-cinergy.ko
2025-10-02T16:38:24.2201346Z INSTALL drivers/media/rc/keymaps/rc-d680-dmb.ko
2025-10-02T16:38:24.2236148Z INSTALL drivers/media/rc/keymaps/rc-delock-61959.ko
2025-10-02T16:38:24.2246322Z INSTALL drivers/media/rc/keymaps/rc-dib0700-nec.ko
2025-10-02T16:38:24.2257053Z INSTALL drivers/media/rc/keymaps/rc-dib0700-rc5.ko
2025-10-02T16:38:24.2326838Z INSTALL drivers/media/rc/keymaps/rc-digitalnow-tinytwin.ko
2025-10-02T16:38:24.2701686Z INSTALL drivers/media/rc/keymaps/rc-digittrade.ko
2025-10-02T16:38:24.2725121Z INSTALL drivers/media/rc/keymaps/rc-dm1105-nec.ko
2025-10-02T16:38:24.2765981Z INSTALL drivers/media/rc/keymaps/rc-dntv-live-dvb-t.ko
2025-10-02T16:38:24.2775109Z INSTALL drivers/media/rc/keymaps/rc-dntv-live-dvbt-pro.ko
2025-10-02T16:38:24.2790705Z INSTALL drivers/media/rc/keymaps/rc-dtt200u.ko
2025-10-02T16:38:24.3183877Z INSTALL drivers/media/rc/keymaps/rc-dvbsky.ko
2025-10-02T16:38:24.3199027Z INSTALL drivers/media/rc/keymaps/rc-dvico-mce.ko
2025-10-02T16:38:24.3229340Z INSTALL drivers/media/rc/keymaps/rc-dvico-portable.ko
2025-10-02T16:38:24.3233921Z INSTALL drivers/media/rc/keymaps/rc-em-terratec.ko
2025-10-02T16:38:24.3292530Z INSTALL drivers/media/rc/keymaps/rc-encore-enltv-fm53.ko
2025-10-02T16:38:24.3667284Z INSTALL drivers/media/rc/keymaps/rc-encore-enltv.ko
2025-10-02T16:38:24.3668359Z INSTALL drivers/media/rc/keymaps/rc-encore-enltv2.ko
2025-10-02T16:38:24.3706343Z INSTALL drivers/media/rc/keymaps/rc-evga-indtube.ko
2025-10-02T16:38:24.3717426Z INSTALL drivers/media/rc/keymaps/rc-eztv.ko
2025-10-02T16:38:24.3736831Z INSTALL drivers/media/rc/keymaps/rc-flydvb.ko
2025-10-02T16:38:24.4147244Z INSTALL drivers/media/rc/keymaps/rc-flyvideo.ko
2025-10-02T16:38:24.4163131Z INSTALL drivers/media/rc/keymaps/rc-fusionhdtv-mce.ko
2025-10-02T16:38:24.4177484Z INSTALL drivers/media/rc/keymaps/rc-gadmei-rm008z.ko
2025-10-02T16:38:24.4202686Z INSTALL drivers/media/rc/keymaps/rc-geekbox.ko
2025-10-02T16:38:24.4225981Z INSTALL drivers/media/rc/keymaps/rc-genius-tvgo-a11mce.ko
2025-10-02T16:38:24.4597645Z INSTALL drivers/media/rc/keymaps/rc-gotview7135.ko
2025-10-02T16:38:24.4638101Z INSTALL drivers/media/rc/keymaps/rc-hauppauge.ko
2025-10-02T16:38:24.4642543Z INSTALL drivers/media/rc/keymaps/rc-hisi-poplar.ko
2025-10-02T16:38:24.4682262Z INSTALL drivers/media/rc/keymaps/rc-hisi-tv-demo.ko
2025-10-02T16:38:24.4695482Z INSTALL drivers/media/rc/keymaps/rc-imon-mce.ko
2025-10-02T16:38:24.5047217Z INSTALL drivers/media/rc/keymaps/rc-imon-pad.ko
2025-10-02T16:38:24.5095307Z INSTALL drivers/media/rc/keymaps/rc-imon-rsc.ko
2025-10-02T16:38:24.5114164Z INSTALL drivers/media/rc/keymaps/rc-iodata-bctv7e.ko
2025-10-02T16:38:24.5144826Z INSTALL drivers/media/rc/keymaps/rc-it913x-v1.ko
2025-10-02T16:38:24.5195868Z INSTALL drivers/media/rc/keymaps/rc-it913x-v2.ko
2025-10-02T16:38:24.5504076Z INSTALL drivers/media/rc/keymaps/rc-kaiomy.ko
2025-10-02T16:38:24.5521466Z INSTALL drivers/media/rc/keymaps/rc-khadas.ko
2025-10-02T16:38:24.5585986Z INSTALL drivers/media/rc/keymaps/rc-kworld-315u.ko
2025-10-02T16:38:24.5613399Z INSTALL drivers/media/rc/keymaps/rc-kworld-pc150u.ko
2025-10-02T16:38:24.5640156Z INSTALL drivers/media/rc/keymaps/rc-kworld-plus-tv-analog.ko
2025-10-02T16:38:24.5970738Z INSTALL drivers/media/rc/keymaps/rc-leadtek-y04g0051.ko
2025-10-02T16:38:24.5986265Z INSTALL drivers/media/rc/keymaps/rc-lme2510.ko
2025-10-02T16:38:24.6040917Z INSTALL drivers/media/rc/keymaps/rc-manli.ko
2025-10-02T16:38:24.6064024Z INSTALL drivers/media/rc/keymaps/rc-medion-x10-digitainer.ko
2025-10-02T16:38:24.6106404Z INSTALL drivers/media/rc/keymaps/rc-medion-x10-or2x.ko
2025-10-02T16:38:24.6408184Z INSTALL drivers/media/rc/keymaps/rc-medion-x10.ko
2025-10-02T16:38:24.6482845Z INSTALL drivers/media/rc/keymaps/rc-msi-digivox-ii.ko
2025-10-02T16:38:24.6489882Z INSTALL drivers/media/rc/keymaps/rc-msi-digivox-iii.ko
2025-10-02T16:38:24.6577281Z INSTALL drivers/media/rc/keymaps/rc-msi-tvanywhere-plus.ko
2025-10-02T16:38:24.6595134Z INSTALL drivers/media/rc/keymaps/rc-msi-tvanywhere.ko
2025-10-02T16:38:24.6885786Z INSTALL drivers/media/rc/keymaps/rc-nebula.ko
2025-10-02T16:38:24.6920470Z INSTALL drivers/media/rc/keymaps/rc-nec-terratec-cinergy-xs.ko
2025-10-02T16:38:24.6928377Z INSTALL drivers/media/rc/keymaps/rc-norwood.ko
2025-10-02T16:38:24.6988658Z INSTALL drivers/media/rc/keymaps/rc-npgtech.ko
2025-10-02T16:38:24.7047051Z INSTALL drivers/media/rc/keymaps/rc-odroid.ko
2025-10-02T16:38:24.7385699Z INSTALL drivers/media/rc/keymaps/rc-pctv-sedna.ko
2025-10-02T16:38:24.7426720Z INSTALL drivers/media/rc/keymaps/rc-pinnacle-color.ko
2025-10-02T16:38:24.7440678Z INSTALL drivers/media/rc/keymaps/rc-pinnacle-grey.ko
2025-10-02T16:38:24.7467755Z INSTALL drivers/media/rc/keymaps/rc-pinnacle-pctv-hd.ko
2025-10-02T16:38:24.7478261Z INSTALL drivers/media/rc/keymaps/rc-pixelview-002t.ko
2025-10-02T16:38:24.7872614Z INSTALL drivers/media/rc/keymaps/rc-pixelview-mk12.ko
2025-10-02T16:38:24.7873732Z INSTALL drivers/media/rc/keymaps/rc-pixelview-new.ko
2025-10-02T16:38:24.7942790Z INSTALL drivers/media/rc/keymaps/rc-pixelview.ko
2025-10-02T16:38:24.7950663Z INSTALL drivers/media/rc/keymaps/rc-powercolor-real-angel.ko
2025-10-02T16:38:24.7966463Z INSTALL drivers/media/rc/keymaps/rc-proteus-2309.ko
2025-10-02T16:38:24.8241211Z INSTALL drivers/media/rc/keymaps/rc-purpletv.ko
2025-10-02T16:38:24.8371987Z INSTALL drivers/media/rc/keymaps/rc-pv951.ko
2025-10-02T16:38:24.8424346Z INSTALL drivers/media/rc/keymaps/rc-rc6-mce.ko
2025-10-02T16:38:24.8433695Z INSTALL drivers/media/rc/keymaps/rc-real-audio-220-32-keys.ko
2025-10-02T16:38:24.8440532Z INSTALL drivers/media/rc/keymaps/rc-reddo.ko
2025-10-02T16:38:24.8695133Z INSTALL drivers/media/rc/keymaps/rc-snapstream-firefly.ko
2025-10-02T16:38:24.8859793Z INSTALL drivers/media/rc/keymaps/rc-streamzap.ko
2025-10-02T16:38:24.8875756Z INSTALL drivers/media/rc/keymaps/rc-su3000.ko
2025-10-02T16:38:24.8878447Z INSTALL drivers/media/rc/keymaps/rc-tango.ko
2025-10-02T16:38:24.8925638Z INSTALL drivers/media/rc/keymaps/rc-tanix-tx3mini.ko
2025-10-02T16:38:24.9170977Z INSTALL drivers/media/rc/keymaps/rc-tanix-tx5max.ko
2025-10-02T16:38:24.9301457Z INSTALL drivers/media/rc/keymaps/rc-tbs-nec.ko
2025-10-02T16:38:24.9331597Z INSTALL drivers/media/rc/keymaps/rc-technisat-ts35.ko
2025-10-02T16:38:24.9343098Z INSTALL drivers/media/rc/keymaps/rc-technisat-usb2.ko
2025-10-02T16:38:24.9360983Z INSTALL drivers/media/rc/keymaps/rc-terratec-cinergy-c-pci.ko
2025-10-02T16:38:24.9691544Z INSTALL drivers/media/rc/keymaps/rc-terratec-cinergy-s2-hd.ko
2025-10-02T16:38:24.9764700Z INSTALL drivers/media/rc/keymaps/rc-terratec-cinergy-xs.ko
2025-10-02T16:38:24.9781450Z INSTALL drivers/media/rc/keymaps/rc-terratec-slim-2.ko
2025-10-02T16:38:24.9828101Z INSTALL drivers/media/rc/keymaps/rc-terratec-slim.ko
2025-10-02T16:38:24.9840470Z INSTALL drivers/media/rc/keymaps/rc-tevii-nec.ko
2025-10-02T16:38:25.0149788Z INSTALL drivers/media/rc/keymaps/rc-tivo.ko
2025-10-02T16:38:25.0232977Z INSTALL drivers/media/rc/keymaps/rc-total-media-in-hand-02.ko
2025-10-02T16:38:25.0280989Z INSTALL drivers/media/rc/keymaps/rc-total-media-in-hand.ko
2025-10-02T16:38:25.0286595Z INSTALL drivers/media/rc/keymaps/rc-trekstor.ko
2025-10-02T16:38:25.0317156Z INSTALL drivers/media/rc/keymaps/rc-tt-1500.ko
2025-10-02T16:38:25.0580047Z INSTALL drivers/media/rc/keymaps/rc-twinhan-dtv-cab-ci.ko
2025-10-02T16:38:25.0664745Z INSTALL drivers/media/rc/keymaps/rc-twinhan1027.ko
2025-10-02T16:38:25.0774283Z INSTALL drivers/media/rc/keymaps/rc-vega-s9x.ko
2025-10-02T16:38:25.0778656Z INSTALL drivers/media/rc/keymaps/rc-videomate-m1f.ko
2025-10-02T16:38:25.0811591Z INSTALL drivers/media/rc/keymaps/rc-videomate-s350.ko
2025-10-02T16:38:25.1045585Z INSTALL drivers/media/rc/keymaps/rc-videomate-tv-pvr.ko
2025-10-02T16:38:25.1133147Z INSTALL drivers/media/rc/keymaps/rc-videostrong-kii-pro.ko
2025-10-02T16:38:25.1210367Z INSTALL drivers/media/rc/keymaps/rc-wetek-hub.ko
2025-10-02T16:38:25.1255434Z INSTALL drivers/media/rc/keymaps/rc-wetek-play2.ko
2025-10-02T16:38:25.1270584Z INSTALL drivers/media/rc/keymaps/rc-winfast-usbii-deluxe.ko
2025-10-02T16:38:25.1549840Z INSTALL drivers/media/rc/keymaps/rc-winfast.ko
2025-10-02T16:38:25.1593698Z INSTALL drivers/media/rc/keymaps/rc-x96max.ko
2025-10-02T16:38:25.1649148Z INSTALL drivers/media/rc/keymaps/rc-xbox-dvd.ko
2025-10-02T16:38:25.1704524Z INSTALL drivers/media/rc/keymaps/rc-zx-irdec.ko
2025-10-02T16:38:25.1719412Z INSTALL drivers/media/rc/mceusb.ko
2025-10-02T16:38:25.2006861Z INSTALL drivers/media/rc/nuvoton-cir.ko
2025-10-02T16:38:25.2063362Z INSTALL drivers/media/rc/rc-loopback.ko
2025-10-02T16:38:25.2099345Z INSTALL drivers/media/rc/redrat3.ko
2025-10-02T16:38:25.2264857Z INSTALL drivers/media/rc/serial_ir.ko
2025-10-02T16:38:25.2600353Z INSTALL drivers/media/rc/sir_ir.ko
2025-10-02T16:38:25.2622538Z INSTALL drivers/media/rc/streamzap.ko
2025-10-02T16:38:25.2634633Z INSTALL drivers/media/rc/ttusbir.ko
2025-10-02T16:38:25.2791401Z INSTALL drivers/media/rc/winbond-cir.ko
2025-10-02T16:38:25.3018750Z INSTALL drivers/media/rc/xbox_remote.ko
2025-10-02T16:38:25.3199181Z INSTALL drivers/media/spi/cxd2880-spi.ko
2025-10-02T16:38:25.3266231Z INSTALL drivers/media/test-drivers/vicodec/vicodec.ko
2025-10-02T16:38:25.3306695Z INSTALL drivers/media/test-drivers/vidtv/dvb-vidtv-bridge.ko
2025-10-02T16:38:25.3398781Z INSTALL drivers/media/test-drivers/vidtv/dvb-vidtv-demod.ko
2025-10-02T16:38:25.3513215Z INSTALL drivers/media/test-drivers/vidtv/dvb-vidtv-tuner.ko
2025-10-02T16:38:25.3841040Z INSTALL drivers/media/test-drivers/vim2m.ko
2025-10-02T16:38:25.4004836Z INSTALL drivers/media/test-drivers/vimc/vimc.ko
2025-10-02T16:38:25.4142053Z INSTALL drivers/media/test-drivers/vivid/vivid.ko
2025-10-02T16:38:25.4189179Z INSTALL drivers/media/tuners/e4000.ko
2025-10-02T16:38:25.4344886Z INSTALL drivers/media/tuners/fc0011.ko
2025-10-02T16:38:25.4450846Z INSTALL drivers/media/tuners/fc0012.ko
2025-10-02T16:38:25.4858772Z INSTALL drivers/media/tuners/fc0013.ko
2025-10-02T16:38:25.4925390Z INSTALL drivers/media/tuners/fc2580.ko
2025-10-02T16:38:25.4935642Z INSTALL drivers/media/tuners/it913x.ko
2025-10-02T16:38:25.5043333Z INSTALL drivers/media/tuners/m88rs6000t.ko
2025-10-02T16:38:25.5525214Z INSTALL drivers/media/tuners/max2165.ko
2025-10-02T16:38:25.5549225Z INSTALL drivers/media/tuners/mc44s803.ko
2025-10-02T16:38:25.5600108Z INSTALL drivers/media/tuners/mt2060.ko
2025-10-02T16:38:25.5751303Z INSTALL drivers/media/tuners/mt2063.ko
2025-10-02T16:38:25.6139106Z INSTALL drivers/media/tuners/mt20xx.ko
2025-10-02T16:38:25.6161525Z INSTALL drivers/media/tuners/mt2131.ko
2025-10-02T16:38:25.6239724Z INSTALL drivers/media/tuners/mt2266.ko
2025-10-02T16:38:25.6242050Z INSTALL drivers/media/tuners/mxl301rf.ko
2025-10-02T16:38:25.6515234Z INSTALL drivers/media/tuners/mxl5005s.ko
2025-10-02T16:38:25.6746152Z INSTALL drivers/media/tuners/mxl5007t.ko
2025-10-02T16:38:25.6783682Z INSTALL drivers/media/tuners/qm1d1b0004.ko
2025-10-02T16:38:25.6804045Z INSTALL drivers/media/tuners/qm1d1c0042.ko
2025-10-02T16:38:25.6813847Z INSTALL drivers/media/tuners/qt1010.ko
2025-10-02T16:38:25.7260711Z INSTALL drivers/media/tuners/r820t.ko
2025-10-02T16:38:25.7336158Z INSTALL drivers/media/tuners/si2157.ko
2025-10-02T16:38:25.7371564Z INSTALL drivers/media/tuners/tda18212.ko
2025-10-02T16:38:25.7390904Z INSTALL drivers/media/tuners/tda18218.ko
2025-10-02T16:38:25.7474360Z INSTALL drivers/media/tuners/tda18250.ko
2025-10-02T16:38:25.7927536Z INSTALL drivers/media/tuners/tda18271.ko
2025-10-02T16:38:25.7935169Z INSTALL drivers/media/tuners/tda827x.ko
2025-10-02T16:38:25.7970592Z INSTALL drivers/media/tuners/tda8290.ko
2025-10-02T16:38:25.8042028Z INSTALL drivers/media/tuners/tda9887.ko
2025-10-02T16:38:25.8103821Z INSTALL drivers/media/tuners/tea5761.ko
2025-10-02T16:38:25.8660097Z INSTALL drivers/media/tuners/tea5767.ko
2025-10-02T16:38:25.8664567Z INSTALL drivers/media/tuners/tua9001.ko
2025-10-02T16:38:25.8689879Z INSTALL drivers/media/tuners/tuner-simple.ko
2025-10-02T16:38:25.8717969Z INSTALL drivers/media/tuners/tuner-types.ko
2025-10-02T16:38:25.8865124Z INSTALL drivers/media/tuners/tuner-xc2028.ko
2025-10-02T16:38:25.9249755Z INSTALL drivers/media/tuners/xc4000.ko
2025-10-02T16:38:25.9284073Z INSTALL drivers/media/tuners/xc5000.ko
2025-10-02T16:38:25.9316833Z INSTALL drivers/media/usb/as102/dvb-as102.ko
2025-10-02T16:38:25.9336906Z INSTALL drivers/media/usb/au0828/au0828.ko
2025-10-02T16:38:25.9640880Z INSTALL drivers/media/usb/b2c2/b2c2-flexcop-usb.ko
2025-10-02T16:38:26.0057377Z INSTALL drivers/media/usb/cpia2/cpia2.ko
2025-10-02T16:38:26.0090694Z INSTALL drivers/media/usb/cx231xx/cx231xx-alsa.ko
2025-10-02T16:38:26.0132259Z INSTALL drivers/media/usb/cx231xx/cx231xx-dvb.ko
2025-10-02T16:38:26.0193460Z INSTALL drivers/media/usb/cx231xx/cx231xx.ko
2025-10-02T16:38:26.0736749Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-af9015.ko
2025-10-02T16:38:26.0914926Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-af9035.ko
2025-10-02T16:38:26.0931098Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-anysee.ko
2025-10-02T16:38:26.1023223Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-au6610.ko
2025-10-02T16:38:26.1602327Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-az6007.ko
2025-10-02T16:38:26.1692781Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-ce6230.ko
2025-10-02T16:38:26.1764150Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-dvbsky.ko
2025-10-02T16:38:26.1797282Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-ec168.ko
2025-10-02T16:38:26.2079184Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-gl861.ko
2025-10-02T16:38:26.2260383Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-lmedm04.ko
2025-10-02T16:38:26.2413529Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-mxl111sf.ko
2025-10-02T16:38:26.2477886Z INSTALL drivers/media/usb/dvb-usb-v2/dvb-usb-rtl28xxu.ko
2025-10-02T16:38:26.2507731Z INSTALL drivers/media/usb/dvb-usb-v2/dvb_usb_v2.ko
2025-10-02T16:38:26.2776709Z INSTALL drivers/media/usb/dvb-usb-v2/mxl111sf-demod.ko
2025-10-02T16:38:26.2940645Z INSTALL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner.ko
2025-10-02T16:38:26.3301170Z INSTALL drivers/media/usb/dvb-usb-v2/zd1301.ko
2025-10-02T16:38:26.3454528Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-a800.ko
2025-10-02T16:38:26.3484919Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote.ko
2025-10-02T16:38:26.3556676Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-af9005.ko
2025-10-02T16:38:26.3826279Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-az6027.ko
2025-10-02T16:38:26.3847497Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-cinergyT2.ko
2025-10-02T16:38:26.3996295Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-cxusb.ko
2025-10-02T16:38:26.4043733Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-dib0700.ko
2025-10-02T16:38:26.4278148Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common.ko
2025-10-02T16:38:26.4475795Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mb.ko
2025-10-02T16:38:26.4588386Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common.ko
2025-10-02T16:38:26.4840773Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc.ko
2025-10-02T16:38:26.5127708Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-digitv.ko
2025-10-02T16:38:26.5134859Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-dtt200u.ko
2025-10-02T16:38:26.5198950Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-dtv5100.ko
2025-10-02T16:38:26.5272541Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-dw2102.ko
2025-10-02T16:38:26.5374674Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-gp8psk.ko
2025-10-02T16:38:26.5771601Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-m920x.ko
2025-10-02T16:38:26.5797342Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-nova-t-usb2.ko
2025-10-02T16:38:26.5846886Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-opera.ko
2025-10-02T16:38:26.6150119Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-pctv452e.ko
2025-10-02T16:38:26.6260999Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-technisat-usb2.ko
2025-10-02T16:38:26.6339292Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-ttusb2.ko
2025-10-02T16:38:26.6397871Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-umt-010.ko
2025-10-02T16:38:26.6509096Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-vp702x.ko
2025-10-02T16:38:26.6824931Z INSTALL drivers/media/usb/dvb-usb/dvb-usb-vp7045.ko
2025-10-02T16:38:26.6831830Z INSTALL drivers/media/usb/dvb-usb/dvb-usb.ko
2025-10-02T16:38:26.7016300Z INSTALL drivers/media/usb/em28xx/em28xx-alsa.ko
2025-10-02T16:38:26.7109994Z INSTALL drivers/media/usb/em28xx/em28xx-rc.ko
2025-10-02T16:38:26.7112504Z INSTALL drivers/media/usb/em28xx/em28xx-dvb.ko
2025-10-02T16:38:26.7540819Z INSTALL drivers/media/usb/em28xx/em28xx-v4l.ko
2025-10-02T16:38:26.7611648Z INSTALL drivers/media/usb/em28xx/em28xx.ko
2025-10-02T16:38:26.7684862Z INSTALL drivers/media/usb/go7007/go7007-loader.ko
2025-10-02T16:38:26.7742403Z INSTALL drivers/media/usb/go7007/go7007-usb.ko
2025-10-02T16:38:26.8005438Z INSTALL drivers/media/usb/go7007/go7007.ko
2025-10-02T16:38:26.8277231Z INSTALL drivers/media/usb/go7007/s2250.ko
2025-10-02T16:38:26.8483482Z INSTALL drivers/media/usb/gspca/gl860/gspca_gl860.ko
2025-10-02T16:38:26.8534365Z INSTALL drivers/media/usb/gspca/gspca_benq.ko
2025-10-02T16:38:26.8835412Z INSTALL drivers/media/usb/gspca/gspca_cpia1.ko
2025-10-02T16:38:26.8838310Z INSTALL drivers/media/usb/gspca/gspca_conex.ko
2025-10-02T16:38:26.8993464Z INSTALL drivers/media/usb/gspca/gspca_dtcs033.ko
2025-10-02T16:38:26.9050885Z INSTALL drivers/media/usb/gspca/gspca_etoms.ko
2025-10-02T16:38:26.9429220Z INSTALL drivers/media/usb/gspca/gspca_finepix.ko
2025-10-02T16:38:26.9441930Z INSTALL drivers/media/usb/gspca/gspca_jeilinj.ko
2025-10-02T16:38:26.9506287Z INSTALL drivers/media/usb/gspca/gspca_jl2005bcd.ko
2025-10-02T16:38:26.9547510Z INSTALL drivers/media/usb/gspca/gspca_kinect.ko
2025-10-02T16:38:26.9864015Z INSTALL drivers/media/usb/gspca/gspca_konica.ko
2025-10-02T16:38:26.9929959Z INSTALL drivers/media/usb/gspca/gspca_main.ko
2025-10-02T16:38:27.0002184Z INSTALL drivers/media/usb/gspca/gspca_mars.ko
2025-10-02T16:38:27.0025545Z INSTALL drivers/media/usb/gspca/gspca_mr97310a.ko
2025-10-02T16:38:27.0190627Z INSTALL drivers/media/usb/gspca/gspca_nw80x.ko
2025-10-02T16:38:27.0495845Z INSTALL drivers/media/usb/gspca/gspca_ov519.ko
2025-10-02T16:38:27.0646740Z INSTALL drivers/media/usb/gspca/gspca_ov534.ko
2025-10-02T16:38:27.0712988Z INSTALL drivers/media/usb/gspca/gspca_ov534_9.ko
2025-10-02T16:38:27.0749209Z INSTALL drivers/media/usb/gspca/gspca_pac207.ko
2025-10-02T16:38:27.0790218Z INSTALL drivers/media/usb/gspca/gspca_pac7302.ko
2025-10-02T16:38:27.1305200Z INSTALL drivers/media/usb/gspca/gspca_pac7311.ko
2025-10-02T16:38:27.1310634Z INSTALL drivers/media/usb/gspca/gspca_se401.ko
2025-10-02T16:38:27.1327205Z INSTALL drivers/media/usb/gspca/gspca_sn9c2028.ko
2025-10-02T16:38:27.1419290Z INSTALL drivers/media/usb/gspca/gspca_sn9c20x.ko
2025-10-02T16:38:27.1594963Z INSTALL drivers/media/usb/gspca/gspca_sonixb.ko
2025-10-02T16:38:27.1861177Z INSTALL drivers/media/usb/gspca/gspca_sonixj.ko
2025-10-02T16:38:27.1974982Z INSTALL drivers/media/usb/gspca/gspca_spca1528.ko
2025-10-02T16:38:27.1982196Z INSTALL drivers/media/usb/gspca/gspca_spca500.ko
2025-10-02T16:38:27.2192230Z INSTALL drivers/media/usb/gspca/gspca_spca501.ko
2025-10-02T16:38:27.2329948Z INSTALL drivers/media/usb/gspca/gspca_spca505.ko
2025-10-02T16:38:27.2514217Z INSTALL drivers/media/usb/gspca/gspca_spca506.ko
2025-10-02T16:38:27.2681706Z INSTALL drivers/media/usb/gspca/gspca_spca508.ko
2025-10-02T16:38:27.2683866Z INSTALL drivers/media/usb/gspca/gspca_spca561.ko
2025-10-02T16:38:27.2698450Z INSTALL drivers/media/usb/gspca/gspca_sq905.ko
2025-10-02T16:38:27.2960982Z INSTALL drivers/media/usb/gspca/gspca_sq905c.ko
2025-10-02T16:38:27.3019430Z INSTALL drivers/media/usb/gspca/gspca_sq930x.ko
2025-10-02T16:38:27.3206779Z INSTALL drivers/media/usb/gspca/gspca_stk014.ko
2025-10-02T16:38:27.3293241Z INSTALL drivers/media/usb/gspca/gspca_stk1135.ko
2025-10-02T16:38:27.3297473Z INSTALL drivers/media/usb/gspca/gspca_stv0680.ko
2025-10-02T16:38:27.3562980Z INSTALL drivers/media/usb/gspca/gspca_sunplus.ko
2025-10-02T16:38:27.3706905Z INSTALL drivers/media/usb/gspca/gspca_t613.ko
2025-10-02T16:38:27.3841720Z INSTALL drivers/media/usb/gspca/gspca_topro.ko
2025-10-02T16:38:27.3870884Z INSTALL drivers/media/usb/gspca/gspca_touptek.ko
2025-10-02T16:38:27.3923037Z INSTALL drivers/media/usb/gspca/gspca_tv8532.ko
2025-10-02T16:38:27.4201936Z INSTALL drivers/media/usb/gspca/gspca_vc032x.ko
2025-10-02T16:38:27.4366220Z INSTALL drivers/media/usb/gspca/gspca_vicam.ko
2025-10-02T16:38:27.4471024Z INSTALL drivers/media/usb/gspca/gspca_xirlink_cit.ko
2025-10-02T16:38:27.4472367Z INSTALL drivers/media/usb/gspca/gspca_zc3xx.ko
2025-10-02T16:38:27.4735285Z INSTALL drivers/media/usb/gspca/m5602/gspca_m5602.ko
2025-10-02T16:38:27.4970095Z INSTALL drivers/media/usb/gspca/stv06xx/gspca_stv06xx.ko
2025-10-02T16:38:27.4974561Z INSTALL drivers/media/usb/hdpvr/hdpvr.ko
2025-10-02T16:38:27.5231048Z INSTALL drivers/media/usb/pvrusb2/pvrusb2.ko
2025-10-02T16:38:27.5238551Z INSTALL drivers/media/usb/pwc/pwc.ko
2025-10-02T16:38:27.5764600Z INSTALL drivers/media/usb/s2255/s2255drv.ko
2025-10-02T16:38:27.5811594Z INSTALL drivers/media/usb/siano/smsusb.ko
2025-10-02T16:38:27.5841915Z INSTALL drivers/media/usb/stk1160/stk1160.ko
2025-10-02T16:38:27.6524573Z INSTALL drivers/media/usb/stkwebcam/stkwebcam.ko
2025-10-02T16:38:27.6525627Z INSTALL drivers/media/usb/tm6000/tm6000-alsa.ko
2025-10-02T16:38:27.6655039Z INSTALL drivers/media/usb/tm6000/tm6000-dvb.ko
2025-10-02T16:38:27.6673921Z INSTALL drivers/media/usb/tm6000/tm6000.ko
2025-10-02T16:38:27.7171312Z INSTALL drivers/media/usb/ttusb-budget/dvb-ttusb-budget.ko
2025-10-02T16:38:27.7172920Z INSTALL drivers/media/usb/ttusb-dec/ttusb_dec.ko
2025-10-02T16:38:27.7422066Z INSTALL drivers/media/usb/ttusb-dec/ttusbdecfe.ko
2025-10-02T16:38:27.7704826Z INSTALL drivers/media/usb/usbtv/usbtv.ko
2025-10-02T16:38:27.7895369Z INSTALL drivers/media/usb/uvc/uvcvideo.ko
2025-10-02T16:38:27.7948222Z INSTALL drivers/media/usb/zr364xx/zr364xx.ko
2025-10-02T16:38:27.7987755Z INSTALL drivers/media/v4l2-core/tuner.ko
2025-10-02T16:38:27.8026475Z INSTALL drivers/media/v4l2-core/v4l2-dv-timings.ko
2025-10-02T16:38:27.8511336Z INSTALL drivers/media/v4l2-core/v4l2-flash-led-class.ko
2025-10-02T16:38:27.8704705Z INSTALL drivers/media/v4l2-core/v4l2-fwnode.ko
2025-10-02T16:38:27.8720243Z INSTALL drivers/media/v4l2-core/v4l2-mem2mem.ko
2025-10-02T16:38:27.8845371Z INSTALL drivers/media/v4l2-core/videobuf-core.ko
2025-10-02T16:38:27.9122585Z INSTALL drivers/media/v4l2-core/videobuf-dma-sg.ko
2025-10-02T16:38:27.9407476Z INSTALL drivers/media/v4l2-core/videobuf-vmalloc.ko
2025-10-02T16:38:27.9526270Z INSTALL drivers/media/v4l2-core/videodev.ko
2025-10-02T16:38:27.9587172Z INSTALL drivers/memstick/core/memstick.ko
2025-10-02T16:38:27.9613540Z INSTALL drivers/memstick/core/ms_block.ko
2025-10-02T16:38:27.9780888Z INSTALL drivers/memstick/core/mspro_block.ko
2025-10-02T16:38:28.0048238Z INSTALL drivers/memstick/host/jmb38x_ms.ko
2025-10-02T16:38:28.0323762Z INSTALL drivers/memstick/host/r592.ko
2025-10-02T16:38:28.0486838Z INSTALL drivers/memstick/host/rtsx_pci_ms.ko
2025-10-02T16:38:28.0691321Z INSTALL drivers/memstick/host/rtsx_usb_ms.ko
2025-10-02T16:38:28.0785687Z INSTALL drivers/memstick/host/tifm_ms.ko
2025-10-02T16:38:28.1046989Z INSTALL drivers/message/fusion/mptbase.ko
2025-10-02T16:38:28.1116818Z INSTALL drivers/message/fusion/mptctl.ko
2025-10-02T16:38:28.1411397Z INSTALL drivers/message/fusion/mptfc.ko
2025-10-02T16:38:28.1483862Z INSTALL drivers/message/fusion/mptlan.ko
2025-10-02T16:38:28.1821175Z INSTALL drivers/message/fusion/mptsas.ko
2025-10-02T16:38:28.2200054Z INSTALL drivers/message/fusion/mptscsih.ko
2025-10-02T16:38:28.2261016Z INSTALL drivers/message/fusion/mptspi.ko
2025-10-02T16:38:28.2262260Z INSTALL drivers/mfd/88pm800.ko
2025-10-02T16:38:28.2373193Z INSTALL drivers/mfd/88pm805.ko
2025-10-02T16:38:28.2847360Z INSTALL drivers/mfd/88pm80x.ko
2025-10-02T16:38:28.2885024Z INSTALL drivers/mfd/arizona-i2c.ko
2025-10-02T16:38:28.2916660Z INSTALL drivers/mfd/arizona-spi.ko
2025-10-02T16:38:28.2930376Z INSTALL drivers/mfd/axp20x-i2c.ko
2025-10-02T16:38:28.2950197Z INSTALL drivers/mfd/axp20x.ko
2025-10-02T16:38:28.3365501Z INSTALL drivers/mfd/bcm590xx.ko
2025-10-02T16:38:28.3397032Z INSTALL drivers/mfd/bd9571mwv.ko
2025-10-02T16:38:28.3400213Z INSTALL drivers/mfd/cros_ec_dev.ko
2025-10-02T16:38:28.3446407Z INSTALL drivers/mfd/da9062-core.ko
2025-10-02T16:38:28.3583108Z INSTALL drivers/mfd/da9063.ko
2025-10-02T16:38:28.3895643Z INSTALL drivers/mfd/da9150-core.ko
2025-10-02T16:38:28.3917562Z INSTALL drivers/mfd/dln2.ko
2025-10-02T16:38:28.3931955Z INSTALL drivers/mfd/htc-pasic3.ko
2025-10-02T16:38:28.4016054Z INSTALL drivers/mfd/intel-lpss-acpi.ko
2025-10-02T16:38:28.4201124Z INSTALL drivers/mfd/intel-lpss-pci.ko
2025-10-02T16:38:28.4466345Z INSTALL drivers/mfd/intel-lpss.ko
2025-10-02T16:38:28.4518525Z INSTALL drivers/mfd/intel-m10-bmc.ko
2025-10-02T16:38:28.4526984Z INSTALL drivers/mfd/intel_pmc_bxt.ko
2025-10-02T16:38:28.4565093Z INSTALL drivers/mfd/intel_quark_i2c_gpio.ko
2025-10-02T16:38:28.4872111Z INSTALL drivers/mfd/intel_soc_pmic_bxtwc.ko
2025-10-02T16:38:28.5033326Z INSTALL drivers/mfd/intel_soc_pmic_chtdc_ti.ko
2025-10-02T16:38:28.5091055Z INSTALL drivers/mfd/intel_soc_pmic_mrfld.ko
2025-10-02T16:38:28.5098613Z INSTALL drivers/mfd/iqs62x.ko
2025-10-02T16:38:28.5119860Z INSTALL drivers/mfd/janz-cmodio.ko
2025-10-02T16:38:28.5477827Z INSTALL drivers/mfd/kempld-core.ko
2025-10-02T16:38:28.5549868Z INSTALL drivers/mfd/lm3533-core.ko
2025-10-02T16:38:28.5637453Z INSTALL drivers/mfd/lp3943.ko
2025-10-02T16:38:28.5638295Z INSTALL drivers/mfd/lm3533-ctrlbank.ko
2025-10-02T16:38:28.5664214Z INSTALL drivers/mfd/lp873x.ko
2025-10-02T16:38:28.6083799Z INSTALL drivers/mfd/lpc_ich.ko
2025-10-02T16:38:28.6154336Z INSTALL drivers/mfd/lpc_sch.ko
2025-10-02T16:38:28.6176969Z INSTALL drivers/mfd/madera-i2c.ko
2025-10-02T16:38:28.6250473Z INSTALL drivers/mfd/madera-spi.ko
2025-10-02T16:38:28.6251549Z INSTALL drivers/mfd/madera.ko
2025-10-02T16:38:28.6672377Z INSTALL drivers/mfd/max14577.ko
2025-10-02T16:38:28.6710085Z INSTALL drivers/mfd/max77693.ko
2025-10-02T16:38:28.6715509Z INSTALL drivers/mfd/max8907.ko
2025-10-02T16:38:28.6758736Z INSTALL drivers/mfd/mc13xxx-core.ko
2025-10-02T16:38:28.7260091Z INSTALL drivers/mfd/mc13xxx-i2c.ko
2025-10-02T16:38:28.7261103Z INSTALL drivers/mfd/mc13xxx-spi.ko
2025-10-02T16:38:28.7282434Z INSTALL drivers/mfd/menf21bmc.ko
2025-10-02T16:38:28.7283293Z INSTALL drivers/mfd/mp2629.ko
2025-10-02T16:38:28.7341953Z INSTALL drivers/mfd/mt6360-core.ko
2025-10-02T16:38:28.7762571Z INSTALL drivers/mfd/mt6397.ko
2025-10-02T16:38:28.7805427Z INSTALL drivers/mfd/pcf50633-adc.ko
2025-10-02T16:38:28.7809985Z INSTALL drivers/mfd/pcf50633-gpio.ko
2025-10-02T16:38:28.7826252Z INSTALL drivers/mfd/pcf50633.ko
2025-10-02T16:38:28.7847046Z INSTALL drivers/mfd/rave-sp.ko
2025-10-02T16:38:28.8322216Z INSTALL drivers/mfd/rdc321x-southbridge.ko
2025-10-02T16:38:28.8373003Z INSTALL drivers/mfd/retu-mfd.ko
2025-10-02T16:38:28.8382016Z INSTALL drivers/mfd/rt5033.ko
2025-10-02T16:38:28.8395678Z INSTALL drivers/mfd/si476x-core.ko
2025-10-02T16:38:28.8520938Z INSTALL drivers/mfd/sky81452.ko
2025-10-02T16:38:28.8857599Z INSTALL drivers/mfd/sm501.ko
2025-10-02T16:38:28.8908548Z INSTALL drivers/mfd/ti-lmu.ko
2025-10-02T16:38:28.8938101Z INSTALL drivers/mfd/tps6105x.ko
2025-10-02T16:38:28.8995355Z INSTALL drivers/mfd/tps65010.ko
2025-10-02T16:38:28.9298479Z INSTALL drivers/mfd/tps6507x.ko
2025-10-02T16:38:28.9420602Z INSTALL drivers/mfd/tps65086.ko
2025-10-02T16:38:28.9466321Z INSTALL drivers/mfd/tps65912-core.ko
2025-10-02T16:38:28.9491333Z INSTALL drivers/mfd/tps65912-i2c.ko
2025-10-02T16:38:28.9708651Z INSTALL drivers/mfd/tps65912-spi.ko
2025-10-02T16:38:28.9887887Z INSTALL drivers/mfd/tqmx86.ko
2025-10-02T16:38:28.9917225Z INSTALL drivers/mfd/ucb1400_core.ko
2025-10-02T16:38:28.9962089Z INSTALL drivers/mfd/viperboard.ko
2025-10-02T16:38:28.9973604Z INSTALL drivers/mfd/vx855.ko
2025-10-02T16:38:29.0266768Z INSTALL drivers/mfd/wcd934x.ko
2025-10-02T16:38:29.0372507Z INSTALL drivers/mfd/wl1273-core.ko
2025-10-02T16:38:29.0418062Z INSTALL drivers/mfd/wm8994.ko
2025-10-02T16:38:29.0420213Z INSTALL drivers/misc/ad525x_dpot-i2c.ko
2025-10-02T16:38:29.0471110Z INSTALL drivers/misc/ad525x_dpot-spi.ko
2025-10-02T16:38:29.0781076Z INSTALL drivers/misc/ad525x_dpot.ko
2025-10-02T16:38:29.0943094Z INSTALL drivers/misc/altera-stapl/altera-stapl.ko
2025-10-02T16:38:29.0944073Z INSTALL drivers/misc/apds9802als.ko
2025-10-02T16:38:29.1034382Z INSTALL drivers/misc/apds990x.ko
2025-10-02T16:38:29.1131846Z INSTALL drivers/misc/bh1770glc.ko
2025-10-02T16:38:29.1494368Z INSTALL drivers/misc/c2port/c2port-duramar2150.ko
2025-10-02T16:38:29.1519407Z INSTALL drivers/misc/c2port/core.ko
2025-10-02T16:38:29.1588774Z INSTALL drivers/misc/cardreader/alcor_pci.ko
2025-10-02T16:38:29.1667610Z INSTALL drivers/misc/cardreader/rtsx_pci.ko
2025-10-02T16:38:29.1887614Z INSTALL drivers/misc/cardreader/rtsx_usb.ko
2025-10-02T16:38:29.2034481Z INSTALL drivers/misc/cb710/cb710.ko
2025-10-02T16:38:29.2206708Z INSTALL drivers/misc/ds1682.ko
2025-10-02T16:38:29.2210531Z INSTALL drivers/misc/echo/echo.ko
2025-10-02T16:38:29.2600103Z INSTALL drivers/misc/eeprom/at24.ko
2025-10-02T16:38:29.2674774Z INSTALL drivers/misc/eeprom/ee1004.ko
2025-10-02T16:38:29.2771205Z INSTALL drivers/misc/eeprom/eeprom.ko
2025-10-02T16:38:29.2800120Z INSTALL drivers/misc/eeprom/eeprom_93cx6.ko
2025-10-02T16:38:29.3092737Z INSTALL drivers/misc/eeprom/idt_89hpesx.ko
2025-10-02T16:38:29.3159151Z INSTALL drivers/misc/eeprom/max6875.ko
2025-10-02T16:38:29.3178192Z INSTALL drivers/misc/enclosure.ko
2025-10-02T16:38:29.3340664Z INSTALL drivers/misc/genwqe/genwqe_card.ko
2025-10-02T16:38:29.3342085Z INSTALL drivers/misc/habanalabs/habanalabs.ko
2025-10-02T16:38:29.3717171Z INSTALL drivers/misc/hmc6352.ko
2025-10-02T16:38:29.3830898Z INSTALL drivers/misc/hpilo.ko
2025-10-02T16:38:29.3925779Z INSTALL drivers/misc/ibmasm/ibmasm.ko
2025-10-02T16:38:29.4265987Z INSTALL drivers/misc/ics932s401.ko
2025-10-02T16:38:29.4553844Z INSTALL drivers/misc/isl29003.ko
2025-10-02T16:38:29.4646801Z INSTALL drivers/misc/isl29020.ko
2025-10-02T16:38:29.4801295Z INSTALL drivers/misc/lattice-ecp3-config.ko
2025-10-02T16:38:29.4969202Z INSTALL drivers/misc/lis3lv02d/lis3lv02d.ko
2025-10-02T16:38:29.5100761Z INSTALL drivers/misc/lis3lv02d/lis3lv02d_i2c.ko
2025-10-02T16:38:29.5151925Z INSTALL drivers/misc/mei/hdcp/mei_hdcp.ko
2025-10-02T16:38:29.5410145Z INSTALL drivers/misc/mei/mei-me.ko
2025-10-02T16:38:29.5665973Z INSTALL drivers/misc/mei/mei-txe.ko
2025-10-02T16:38:29.5666884Z INSTALL drivers/misc/mei/mei.ko
2025-10-02T16:38:29.5824516Z INSTALL drivers/misc/pci_endpoint_test.ko
2025-10-02T16:38:29.6466216Z INSTALL drivers/misc/phantom.ko
2025-10-02T16:38:29.6490541Z INSTALL drivers/misc/pvpanic.ko
2025-10-02T16:38:29.6701472Z INSTALL drivers/misc/ti-st/st_drv.ko
2025-10-02T16:38:29.7004135Z INSTALL drivers/misc/tifm_7xx1.ko
2025-10-02T16:38:29.7167128Z INSTALL drivers/misc/tifm_core.ko
2025-10-02T16:38:29.7557621Z INSTALL drivers/misc/uacce/uacce.ko
2025-10-02T16:38:29.7565393Z INSTALL drivers/misc/tsl2550.ko
2025-10-02T16:38:29.7785721Z INSTALL drivers/misc/vmw_balloon.ko
2025-10-02T16:38:29.7793267Z INSTALL drivers/misc/vmw_vmci/vmw_vmci.ko
2025-10-02T16:38:29.7856241Z INSTALL drivers/misc/xilinx_sdfec.ko
2025-10-02T16:38:29.8135234Z INSTALL drivers/mmc/core/mmc_block.ko
2025-10-02T16:38:29.8156148Z INSTALL drivers/mmc/core/mmc_core.ko
2025-10-02T16:38:29.8420228Z INSTALL drivers/mmc/core/mmc_test.ko
2025-10-02T16:38:29.8521544Z INSTALL drivers/mmc/core/sdio_uart.ko
2025-10-02T16:38:29.9037994Z INSTALL drivers/mmc/host/alcor.ko
2025-10-02T16:38:29.9127370Z INSTALL drivers/mmc/host/cb710-mmc.ko
2025-10-02T16:38:29.9160815Z INSTALL drivers/mmc/host/cqhci.ko
2025-10-02T16:38:29.9661896Z INSTALL drivers/mmc/host/mmc_hsq.ko
2025-10-02T16:38:29.9730475Z INSTALL drivers/mmc/host/mmc_spi.ko
2025-10-02T16:38:29.9822160Z INSTALL drivers/mmc/host/mtk-sd.ko
2025-10-02T16:38:29.9893619Z INSTALL drivers/mmc/host/rtsx_pci_sdmmc.ko
2025-10-02T16:38:30.0268984Z INSTALL drivers/mmc/host/rtsx_usb_sdmmc.ko
2025-10-02T16:38:30.0402342Z INSTALL drivers/mmc/host/sdhci-acpi.ko
2025-10-02T16:38:30.0485399Z INSTALL drivers/mmc/host/sdhci-pci.ko
2025-10-02T16:38:30.0553331Z INSTALL drivers/mmc/host/sdhci-pltfm.ko
2025-10-02T16:38:30.0647284Z INSTALL drivers/mmc/host/sdhci-xenon-driver.ko
2025-10-02T16:38:30.1042217Z INSTALL drivers/mmc/host/sdhci.ko
2025-10-02T16:38:30.1121626Z INSTALL drivers/mmc/host/sdhci_f_sdh30.ko
2025-10-02T16:38:30.1167214Z INSTALL drivers/mmc/host/sdricoh_cs.ko
2025-10-02T16:38:30.1414435Z INSTALL drivers/mmc/host/tifm_sd.ko
2025-10-02T16:38:30.1655733Z INSTALL drivers/mmc/host/toshsd.ko
2025-10-02T16:38:30.1664054Z INSTALL drivers/mmc/host/usdhi6rol0.ko
2025-10-02T16:38:30.1825024Z INSTALL drivers/mmc/host/ushc.ko
2025-10-02T16:38:30.2147432Z INSTALL drivers/mmc/host/via-sdmmc.ko
2025-10-02T16:38:30.2170961Z INSTALL drivers/mmc/host/vub300.ko
2025-10-02T16:38:30.2258044Z INSTALL drivers/mmc/host/wbsd.ko
2025-10-02T16:38:30.2355368Z INSTALL drivers/most/most_cdev.ko
2025-10-02T16:38:30.2496379Z INSTALL drivers/most/most_core.ko
2025-10-02T16:38:30.2883834Z INSTALL drivers/most/most_usb.ko
2025-10-02T16:38:30.2917122Z INSTALL drivers/mtd/chips/chipreg.ko
2025-10-02T16:38:30.2983884Z INSTALL drivers/mtd/devices/block2mtd.ko
2025-10-02T16:38:30.3008620Z INSTALL drivers/mtd/devices/phram.ko
2025-10-02T16:38:30.3428077Z INSTALL drivers/mtd/mtd.ko
2025-10-02T16:38:30.3491063Z INSTALL drivers/mtd/mtd_blkdevs.ko
2025-10-02T16:38:30.3513662Z INSTALL drivers/mtd/mtdblock.ko
2025-10-02T16:38:30.3570141Z INSTALL drivers/mtd/nand/nandcore.ko
2025-10-02T16:38:30.3592599Z INSTALL drivers/mtd/nand/raw/nand.ko
2025-10-02T16:38:30.4064605Z INSTALL drivers/mtd/nand/raw/nand_ecc.ko
2025-10-02T16:38:30.4112224Z INSTALL drivers/mtd/nand/raw/nandsim.ko
2025-10-02T16:38:30.4231342Z INSTALL drivers/mtd/spi-nor/controllers/intel-spi-pci.ko
2025-10-02T16:38:30.4568752Z INSTALL drivers/mtd/spi-nor/controllers/intel-spi-platform.ko
2025-10-02T16:38:30.4590588Z INSTALL drivers/mtd/spi-nor/controllers/intel-spi.ko
2025-10-02T16:38:30.4827079Z INSTALL drivers/mtd/spi-nor/spi-nor.ko
2025-10-02T16:38:30.5134225Z INSTALL drivers/mtd/ubi/ubi.ko
2025-10-02T16:38:30.5137607Z INSTALL drivers/mux/mux-adg792a.ko
2025-10-02T16:38:30.5147130Z INSTALL drivers/mux/mux-adgs1408.ko
2025-10-02T16:38:30.5232315Z INSTALL drivers/mux/mux-core.ko
2025-10-02T16:38:30.5727316Z INSTALL drivers/mux/mux-gpio.ko
2025-10-02T16:38:30.5745614Z INSTALL drivers/net/appletalk/ipddp.ko
2025-10-02T16:38:30.5806586Z INSTALL drivers/net/bareudp.ko
2025-10-02T16:38:30.5882338Z INSTALL drivers/net/bonding/bonding.ko
2025-10-02T16:38:30.6277196Z INSTALL drivers/net/can/c_can/c_can.ko
2025-10-02T16:38:30.6342028Z INSTALL drivers/net/can/c_can/c_can_pci.ko
2025-10-02T16:38:30.6682919Z INSTALL drivers/net/can/c_can/c_can_platform.ko
2025-10-02T16:38:30.6911520Z INSTALL drivers/net/can/cc770/cc770.ko
2025-10-02T16:38:30.7162060Z INSTALL drivers/net/can/cc770/cc770_platform.ko
2025-10-02T16:38:30.7203412Z INSTALL drivers/net/can/dev/can-dev.ko
2025-10-02T16:38:30.7418834Z INSTALL drivers/net/can/ifi_canfd/ifi_canfd.ko
2025-10-02T16:38:30.7544396Z INSTALL drivers/net/can/janz-ican3.ko
2025-10-02T16:38:30.7827187Z INSTALL drivers/net/can/kvaser_pciefd.ko
2025-10-02T16:38:30.7957843Z INSTALL drivers/net/can/m_can/m_can.ko
2025-10-02T16:38:30.7978712Z INSTALL drivers/net/can/m_can/m_can_platform.ko
2025-10-02T16:38:30.8001334Z INSTALL drivers/net/can/m_can/tcan4x5x.ko
2025-10-02T16:38:30.8364562Z INSTALL drivers/net/can/peak_canfd/peak_pciefd.ko
2025-10-02T16:38:30.8501143Z INSTALL drivers/net/can/sja1000/ems_pci.ko
2025-10-02T16:38:30.8549701Z INSTALL drivers/net/can/sja1000/f81601.ko
2025-10-02T16:38:30.8594160Z INSTALL drivers/net/can/sja1000/kvaser_pci.ko
2025-10-02T16:38:30.8599905Z INSTALL drivers/net/can/sja1000/peak_pci.ko
2025-10-02T16:38:30.9007128Z INSTALL drivers/net/can/sja1000/peak_pcmcia.ko
2025-10-02T16:38:30.9012850Z INSTALL drivers/net/can/sja1000/plx_pci.ko
2025-10-02T16:38:30.9122313Z INSTALL drivers/net/can/sja1000/sja1000.ko
2025-10-02T16:38:30.9186105Z INSTALL drivers/net/can/sja1000/sja1000_platform.ko
2025-10-02T16:38:30.9266422Z INSTALL drivers/net/can/slcan.ko
2025-10-02T16:38:30.9504312Z INSTALL drivers/net/can/softing/softing.ko
2025-10-02T16:38:30.9589667Z INSTALL drivers/net/can/softing/softing_cs.ko
2025-10-02T16:38:30.9687510Z INSTALL drivers/net/can/spi/hi311x.ko
2025-10-02T16:38:30.9769905Z INSTALL drivers/net/can/spi/mcp251x.ko
2025-10-02T16:38:30.9935316Z INSTALL drivers/net/can/spi/mcp251xfd/mcp251xfd.ko
2025-10-02T16:38:31.0120634Z INSTALL drivers/net/can/usb/ems_usb.ko
2025-10-02T16:38:31.0241461Z INSTALL drivers/net/can/usb/esd_usb2.ko
2025-10-02T16:38:31.0386429Z INSTALL drivers/net/can/usb/gs_usb.ko
2025-10-02T16:38:31.0504416Z INSTALL drivers/net/can/usb/kvaser_usb/kvaser_usb.ko
2025-10-02T16:38:31.0764847Z INSTALL drivers/net/can/usb/mcba_usb.ko
2025-10-02T16:38:31.0815491Z INSTALL drivers/net/can/usb/peak_usb/peak_usb.ko
2025-10-02T16:38:31.0818512Z INSTALL drivers/net/can/usb/ucan.ko
2025-10-02T16:38:31.1145915Z INSTALL drivers/net/can/usb/usb_8dev.ko
2025-10-02T16:38:31.1384990Z INSTALL drivers/net/can/vcan.ko
2025-10-02T16:38:31.1540335Z INSTALL drivers/net/can/vxcan.ko
2025-10-02T16:38:31.1616939Z INSTALL drivers/net/dsa/b53/b53_common.ko
2025-10-02T16:38:31.1697375Z INSTALL drivers/net/dsa/b53/b53_mdio.ko
2025-10-02T16:38:31.1771197Z INSTALL drivers/net/dsa/b53/b53_mmap.ko
2025-10-02T16:38:31.1918684Z INSTALL drivers/net/dsa/b53/b53_serdes.ko
2025-10-02T16:38:31.2160595Z INSTALL drivers/net/dsa/b53/b53_spi.ko
2025-10-02T16:38:31.2203661Z INSTALL drivers/net/dsa/b53/b53_srab.ko
2025-10-02T16:38:31.2262003Z INSTALL drivers/net/dsa/bcm-sf2.ko
2025-10-02T16:38:31.2467554Z INSTALL drivers/net/dsa/dsa_loop.ko
2025-10-02T16:38:31.2708105Z INSTALL drivers/net/dsa/dsa_loop_bdinfo.ko
2025-10-02T16:38:31.2774146Z INSTALL drivers/net/dsa/lan9303-core.ko
2025-10-02T16:38:31.2840060Z INSTALL drivers/net/dsa/lan9303_i2c.ko
2025-10-02T16:38:31.2994470Z INSTALL drivers/net/dsa/lan9303_mdio.ko
2025-10-02T16:38:31.3002993Z INSTALL drivers/net/dsa/microchip/ksz8795.ko
2025-10-02T16:38:31.3209177Z INSTALL drivers/net/dsa/microchip/ksz8795_spi.ko
2025-10-02T16:38:31.3287106Z INSTALL drivers/net/dsa/microchip/ksz9477.ko
2025-10-02T16:38:31.3461250Z INSTALL drivers/net/dsa/microchip/ksz9477_i2c.ko
2025-10-02T16:38:31.3463372Z INSTALL drivers/net/dsa/microchip/ksz9477_spi.ko
2025-10-02T16:38:31.3726979Z INSTALL drivers/net/dsa/microchip/ksz_common.ko
2025-10-02T16:38:31.3789417Z INSTALL drivers/net/dsa/mt7530.ko
2025-10-02T16:38:31.3948988Z INSTALL drivers/net/dsa/mv88e6060.ko
2025-10-02T16:38:31.3965807Z INSTALL drivers/net/dsa/mv88e6xxx/mv88e6xxx.ko
2025-10-02T16:38:31.4108861Z INSTALL drivers/net/dsa/ocelot/mscc_seville.ko
2025-10-02T16:38:31.4450542Z INSTALL drivers/net/dsa/qca/ar9331.ko
2025-10-02T16:38:31.4497417Z INSTALL drivers/net/dsa/qca8k.ko
2025-10-02T16:38:31.4500703Z INSTALL drivers/net/dsa/realtek-smi.ko
2025-10-02T16:38:31.4904089Z INSTALL drivers/net/dsa/sja1105/sja1105.ko
2025-10-02T16:38:31.4999430Z INSTALL drivers/net/dsa/vitesse-vsc73xx-core.ko
2025-10-02T16:38:31.5315313Z INSTALL drivers/net/dsa/vitesse-vsc73xx-platform.ko
2025-10-02T16:38:31.5546578Z INSTALL drivers/net/dsa/vitesse-vsc73xx-spi.ko
2025-10-02T16:38:31.5719931Z INSTALL drivers/net/dummy.ko
2025-10-02T16:38:31.5873978Z INSTALL drivers/net/eql.ko
2025-10-02T16:38:31.6134737Z INSTALL drivers/net/ethernet/3com/3c574_cs.ko
2025-10-02T16:38:31.6202016Z INSTALL drivers/net/ethernet/3com/3c589_cs.ko
2025-10-02T16:38:31.6233473Z INSTALL drivers/net/ethernet/3com/3c59x.ko
2025-10-02T16:38:31.6346549Z INSTALL drivers/net/ethernet/3com/typhoon.ko
2025-10-02T16:38:31.6666887Z INSTALL drivers/net/ethernet/8390/8390.ko
2025-10-02T16:38:31.6867163Z INSTALL drivers/net/ethernet/8390/axnet_cs.ko
2025-10-02T16:38:31.6965100Z INSTALL drivers/net/ethernet/8390/ne2k-pci.ko
2025-10-02T16:38:31.7273360Z INSTALL drivers/net/ethernet/8390/pcnet_cs.ko
2025-10-02T16:38:31.7295293Z INSTALL drivers/net/ethernet/adaptec/starfire.ko
2025-10-02T16:38:31.7301090Z INSTALL drivers/net/ethernet/agere/et131x.ko
2025-10-02T16:38:31.7640961Z INSTALL drivers/net/ethernet/alacritech/slicoss.ko
2025-10-02T16:38:31.7677970Z INSTALL drivers/net/ethernet/alteon/acenic.ko
2025-10-02T16:38:31.8101814Z INSTALL drivers/net/ethernet/altera/altera_tse.ko
2025-10-02T16:38:31.8112959Z INSTALL drivers/net/ethernet/amazon/ena/ena.ko
2025-10-02T16:38:31.8207931Z INSTALL drivers/net/ethernet/amd/amd8111e.ko
2025-10-02T16:38:31.8411583Z INSTALL drivers/net/ethernet/amd/nmclan_cs.ko
2025-10-02T16:38:31.8528014Z INSTALL drivers/net/ethernet/amd/pcnet32.ko
2025-10-02T16:38:31.8757203Z INSTALL drivers/net/ethernet/amd/xgbe/amd-xgbe.ko
2025-10-02T16:38:31.8926758Z INSTALL drivers/net/ethernet/aquantia/atlantic/atlantic.ko
2025-10-02T16:38:31.9327558Z INSTALL drivers/net/ethernet/atheros/alx/alx.ko
2025-10-02T16:38:31.9500069Z INSTALL drivers/net/ethernet/atheros/atl1c/atl1c.ko
2025-10-02T16:38:31.9625976Z INSTALL drivers/net/ethernet/atheros/atl1e/atl1e.ko
2025-10-02T16:38:32.0180759Z INSTALL drivers/net/ethernet/atheros/atlx/atl1.ko
2025-10-02T16:38:32.0416353Z INSTALL drivers/net/ethernet/atheros/atlx/atl2.ko
2025-10-02T16:38:32.0940382Z INSTALL drivers/net/ethernet/aurora/nb8800.ko
2025-10-02T16:38:32.1284807Z INSTALL drivers/net/ethernet/broadcom/b44.ko
2025-10-02T16:38:32.1298961Z INSTALL drivers/net/ethernet/broadcom/bcmsysport.ko
2025-10-02T16:38:32.1353318Z INSTALL drivers/net/ethernet/broadcom/bnx2.ko
2025-10-02T16:38:32.1540907Z INSTALL drivers/net/ethernet/broadcom/bnx2x/bnx2x.ko
2025-10-02T16:38:32.1747806Z INSTALL drivers/net/ethernet/broadcom/bnxt/bnxt_en.ko
2025-10-02T16:38:32.1995429Z INSTALL drivers/net/ethernet/broadcom/cnic.ko
2025-10-02T16:38:32.2277430Z INSTALL drivers/net/ethernet/broadcom/genet/genet.ko
2025-10-02T16:38:32.2818475Z INSTALL drivers/net/ethernet/broadcom/tg3.ko
2025-10-02T16:38:32.3367114Z INSTALL drivers/net/ethernet/brocade/bna/bna.ko
2025-10-02T16:38:32.3496346Z INSTALL drivers/net/ethernet/cadence/macb.ko
2025-10-02T16:38:32.4451475Z INSTALL drivers/net/ethernet/cadence/macb_pci.ko
2025-10-02T16:38:32.4987653Z INSTALL drivers/net/ethernet/cavium/common/cavium_ptp.ko
2025-10-02T16:38:32.5039662Z INSTALL drivers/net/ethernet/cavium/liquidio/liquidio.ko
2025-10-02T16:38:32.5134521Z INSTALL drivers/net/ethernet/cavium/liquidio/liquidio_vf.ko
2025-10-02T16:38:32.5750434Z INSTALL drivers/net/ethernet/cavium/thunder/nicpf.ko
2025-10-02T16:38:32.5792192Z INSTALL drivers/net/ethernet/cavium/thunder/nicvf.ko
2025-10-02T16:38:32.6731333Z INSTALL drivers/net/ethernet/cavium/thunder/thunder_bgx.ko
2025-10-02T16:38:32.6736982Z INSTALL drivers/net/ethernet/cavium/thunder/thunder_xcv.ko
2025-10-02T16:38:32.7423872Z INSTALL drivers/net/ethernet/chelsio/cxgb/cxgb.ko
2025-10-02T16:38:32.7431590Z INSTALL drivers/net/ethernet/chelsio/cxgb3/cxgb3.ko
2025-10-02T16:38:32.7736089Z INSTALL drivers/net/ethernet/chelsio/cxgb4/cxgb4.ko
2025-10-02T16:38:32.8067642Z INSTALL drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf.ko
2025-10-02T16:38:32.8682008Z INSTALL drivers/net/ethernet/chelsio/inline_crypto/ch_ipsec/ch_ipsec.ko
2025-10-02T16:38:32.8826720Z INSTALL drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/ch_ktls.ko
2025-10-02T16:38:32.9406445Z INSTALL drivers/net/ethernet/chelsio/libcxgb/libcxgb.ko
2025-10-02T16:38:32.9559069Z INSTALL drivers/net/ethernet/cisco/enic/enic.ko
2025-10-02T16:38:32.9626591Z INSTALL drivers/net/ethernet/dec/tulip/de2104x.ko
2025-10-02T16:38:32.9786074Z INSTALL drivers/net/ethernet/dec/tulip/de4x5.ko
2025-10-02T16:38:33.0231367Z INSTALL drivers/net/ethernet/dec/tulip/dmfe.ko
2025-10-02T16:38:33.0475149Z INSTALL drivers/net/ethernet/dec/tulip/tulip.ko
2025-10-02T16:38:33.0617791Z INSTALL drivers/net/ethernet/dec/tulip/uli526x.ko
2025-10-02T16:38:33.1260907Z INSTALL drivers/net/ethernet/dec/tulip/winbond-840.ko
2025-10-02T16:38:33.1262304Z INSTALL drivers/net/ethernet/dec/tulip/xircom_cb.ko
2025-10-02T16:38:33.1465286Z INSTALL drivers/net/ethernet/dlink/dl2k.ko
2025-10-02T16:38:33.1670433Z INSTALL drivers/net/ethernet/dlink/sundance.ko
2025-10-02T16:38:33.2032888Z INSTALL drivers/net/ethernet/dnet.ko
2025-10-02T16:38:33.2107929Z INSTALL drivers/net/ethernet/ec_bhf.ko
2025-10-02T16:38:33.2184591Z INSTALL drivers/net/ethernet/emulex/benet/be2net.ko
2025-10-02T16:38:33.2642693Z INSTALL drivers/net/ethernet/ethoc.ko
2025-10-02T16:38:33.2657267Z INSTALL drivers/net/ethernet/fealnx.ko
2025-10-02T16:38:33.2801913Z INSTALL drivers/net/ethernet/fujitsu/fmvj18x_cs.ko
2025-10-02T16:38:33.2924040Z INSTALL drivers/net/ethernet/google/gve/gve.ko
2025-10-02T16:38:33.3358536Z INSTALL drivers/net/ethernet/huawei/hinic/hinic.ko
2025-10-02T16:38:33.3498925Z INSTALL drivers/net/ethernet/intel/e1000/e1000.ko
2025-10-02T16:38:33.3502087Z INSTALL drivers/net/ethernet/intel/e100.ko
2025-10-02T16:38:33.3964062Z INSTALL drivers/net/ethernet/intel/e1000e/e1000e.ko
2025-10-02T16:38:33.4014764Z INSTALL drivers/net/ethernet/intel/fm10k/fm10k.ko
2025-10-02T16:38:33.4557683Z INSTALL drivers/net/ethernet/intel/i40e/i40e.ko
2025-10-02T16:38:33.5360885Z INSTALL drivers/net/ethernet/intel/iavf/iavf.ko
2025-10-02T16:38:33.5645054Z INSTALL drivers/net/ethernet/intel/ice/ice.ko
2025-10-02T16:38:33.6148031Z INSTALL drivers/net/ethernet/intel/igb/igb.ko
2025-10-02T16:38:33.7161135Z INSTALL drivers/net/ethernet/intel/igbvf/igbvf.ko
2025-10-02T16:38:33.7516352Z INSTALL drivers/net/ethernet/intel/igc/igc.ko
2025-10-02T16:38:33.8598826Z INSTALL drivers/net/ethernet/intel/ixgb/ixgb.ko
2025-10-02T16:38:33.9265649Z INSTALL drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko
2025-10-02T16:38:33.9273638Z INSTALL drivers/net/ethernet/intel/ixgbe/ixgbe.ko
2025-10-02T16:38:33.9508734Z INSTALL drivers/net/ethernet/jme.ko
2025-10-02T16:38:34.0109371Z INSTALL drivers/net/ethernet/marvell/mvmdio.ko
2025-10-02T16:38:34.0426960Z INSTALL drivers/net/ethernet/marvell/prestera/prestera.ko
2025-10-02T16:38:34.0575864Z INSTALL drivers/net/ethernet/marvell/prestera/prestera_pci.ko
2025-10-02T16:38:34.0764983Z INSTALL drivers/net/ethernet/marvell/skge.ko
2025-10-02T16:38:34.0936691Z INSTALL drivers/net/ethernet/marvell/sky2.ko
2025-10-02T16:38:34.1251248Z INSTALL drivers/net/ethernet/mellanox/mlx4/mlx4_core.ko
2025-10-02T16:38:34.1528532Z INSTALL drivers/net/ethernet/mellanox/mlx4/mlx4_en.ko
2025-10-02T16:38:34.1834726Z INSTALL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko
2025-10-02T16:38:34.2129670Z INSTALL drivers/net/ethernet/mellanox/mlxfw/mlxfw.ko
2025-10-02T16:38:34.3145660Z INSTALL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core.ko
2025-10-02T16:38:34.3185483Z INSTALL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c.ko
2025-10-02T16:38:34.3500865Z INSTALL drivers/net/ethernet/mellanox/mlxsw/mlxsw_minimal.ko
2025-10-02T16:38:34.3768679Z INSTALL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci.ko
2025-10-02T16:38:34.4182519Z INSTALL drivers/net/ethernet/mellanox/mlxsw/mlxsw_spectrum.ko
2025-10-02T16:38:34.4915151Z INSTALL drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchib.ko
2025-10-02T16:38:34.5033014Z INSTALL drivers/net/ethernet/mellanox/mlxsw/mlxsw_switchx2.ko
2025-10-02T16:38:34.5700482Z INSTALL drivers/net/ethernet/micrel/ks8842.ko
2025-10-02T16:38:34.6036367Z INSTALL drivers/net/ethernet/micrel/ks8851_common.ko
2025-10-02T16:38:34.6086749Z INSTALL drivers/net/ethernet/micrel/ks8851_par.ko
2025-10-02T16:38:34.6546303Z INSTALL drivers/net/ethernet/micrel/ks8851_spi.ko
2025-10-02T16:38:34.6717808Z INSTALL drivers/net/ethernet/micrel/ksz884x.ko
2025-10-02T16:38:34.6940925Z INSTALL drivers/net/ethernet/microchip/enc28j60.ko
2025-10-02T16:38:34.7366715Z INSTALL drivers/net/ethernet/microchip/encx24j600-regmap.ko
2025-10-02T16:38:34.7803152Z INSTALL drivers/net/ethernet/microchip/encx24j600.ko
2025-10-02T16:38:34.7989165Z INSTALL drivers/net/ethernet/microchip/lan743x.ko
2025-10-02T16:38:34.8096216Z INSTALL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib.ko
2025-10-02T16:38:34.8839451Z INSTALL drivers/net/ethernet/myricom/myri10ge/myri10ge.ko
2025-10-02T16:38:34.8926547Z INSTALL drivers/net/ethernet/natsemi/natsemi.ko
2025-10-02T16:38:34.9655354Z INSTALL drivers/net/ethernet/natsemi/ns83820.ko
2025-10-02T16:38:34.9740478Z INSTALL drivers/net/ethernet/neterion/s2io.ko
2025-10-02T16:38:35.0307092Z INSTALL drivers/net/ethernet/neterion/vxge/vxge.ko
2025-10-02T16:38:35.0597181Z INSTALL drivers/net/ethernet/netronome/nfp/nfp.ko
2025-10-02T16:38:35.0618949Z INSTALL drivers/net/ethernet/ni/nixge.ko
2025-10-02T16:38:35.0960848Z INSTALL drivers/net/ethernet/nvidia/forcedeth.ko
2025-10-02T16:38:35.1586639Z INSTALL drivers/net/ethernet/packetengines/hamachi.ko
2025-10-02T16:38:35.1977253Z INSTALL drivers/net/ethernet/packetengines/yellowfin.ko
2025-10-02T16:38:35.2295987Z INSTALL drivers/net/ethernet/pensando/ionic/ionic.ko
2025-10-02T16:38:35.2571436Z INSTALL drivers/net/ethernet/qlogic/netxen/netxen_nic.ko
2025-10-02T16:38:35.2854425Z INSTALL drivers/net/ethernet/qlogic/qed/qed.ko
2025-10-02T16:38:35.4082101Z INSTALL drivers/net/ethernet/qlogic/qede/qede.ko
2025-10-02T16:38:35.4661617Z INSTALL drivers/net/ethernet/qlogic/qla3xxx.ko
2025-10-02T16:38:35.4763625Z INSTALL drivers/net/ethernet/qlogic/qlcnic/qlcnic.ko
2025-10-02T16:38:35.4905948Z INSTALL drivers/net/ethernet/qualcomm/emac/qcom-emac.ko
2025-10-02T16:38:35.5588249Z INSTALL drivers/net/ethernet/qualcomm/rmnet/rmnet.ko
2025-10-02T16:38:35.5708613Z INSTALL drivers/net/ethernet/rdc/r6040.ko
2025-10-02T16:38:35.6312083Z INSTALL drivers/net/ethernet/realtek/8139cp.ko
2025-10-02T16:38:35.6385288Z INSTALL drivers/net/ethernet/realtek/8139too.ko
2025-10-02T16:38:35.6544771Z INSTALL drivers/net/ethernet/realtek/atp.ko
2025-10-02T16:38:35.7158343Z INSTALL drivers/net/ethernet/realtek/r8169.ko
2025-10-02T16:38:35.7425448Z INSTALL drivers/net/ethernet/rocker/rocker.ko
2025-10-02T16:38:35.7463603Z INSTALL drivers/net/ethernet/samsung/sxgbe/samsung-sxgbe.ko
2025-10-02T16:38:35.8725614Z INSTALL drivers/net/ethernet/sfc/falcon/sfc-falcon.ko
2025-10-02T16:38:35.8799876Z INSTALL drivers/net/ethernet/sfc/sfc.ko
2025-10-02T16:38:35.8981238Z INSTALL drivers/net/ethernet/silan/sc92031.ko
2025-10-02T16:38:35.9010079Z INSTALL drivers/net/ethernet/sis/sis190.ko
2025-10-02T16:38:35.9606375Z INSTALL drivers/net/ethernet/sis/sis900.ko
2025-10-02T16:38:35.9972316Z INSTALL drivers/net/ethernet/smsc/epic100.ko
2025-10-02T16:38:36.0143839Z INSTALL drivers/net/ethernet/smsc/smc91c92_cs.ko
2025-10-02T16:38:36.0526615Z INSTALL drivers/net/ethernet/smsc/smsc911x.ko
2025-10-02T16:38:36.0654164Z INSTALL drivers/net/ethernet/smsc/smsc9420.ko
2025-10-02T16:38:36.1118784Z INSTALL drivers/net/ethernet/stmicro/stmmac/dwmac-generic.ko
2025-10-02T16:38:36.1207197Z INSTALL drivers/net/ethernet/stmicro/stmmac/dwmac-intel.ko
2025-10-02T16:38:36.1398182Z INSTALL drivers/net/ethernet/stmicro/stmmac/stmmac-pci.ko
2025-10-02T16:38:36.1550788Z INSTALL drivers/net/ethernet/stmicro/stmmac/stmmac-platform.ko
2025-10-02T16:38:36.1692321Z INSTALL drivers/net/ethernet/stmicro/stmmac/stmmac.ko
2025-10-02T16:38:36.1927886Z INSTALL drivers/net/ethernet/sun/cassini.ko
2025-10-02T16:38:36.1961934Z INSTALL drivers/net/ethernet/sun/niu.ko
2025-10-02T16:38:36.2094963Z INSTALL drivers/net/ethernet/sun/sungem.ko
2025-10-02T16:38:36.2958248Z INSTALL drivers/net/ethernet/sun/sunhme.ko
2025-10-02T16:38:36.3094994Z INSTALL drivers/net/ethernet/synopsys/dwc-xlgmac.ko
2025-10-02T16:38:36.3248670Z INSTALL drivers/net/ethernet/tehuti/tehuti.ko
2025-10-02T16:38:36.3724791Z INSTALL drivers/net/ethernet/ti/tlan.ko
2025-10-02T16:38:36.3758224Z INSTALL drivers/net/ethernet/via/via-rhine.ko
2025-10-02T16:38:36.3959951Z INSTALL drivers/net/ethernet/via/via-velocity.ko
2025-10-02T16:38:36.4275764Z INSTALL drivers/net/ethernet/wiznet/w5100-spi.ko
2025-10-02T16:38:36.4360614Z INSTALL drivers/net/ethernet/wiznet/w5100.ko
2025-10-02T16:38:36.4622582Z INSTALL drivers/net/ethernet/wiznet/w5300.ko
2025-10-02T16:38:36.4739044Z INSTALL drivers/net/ethernet/xilinx/ll_temac.ko
2025-10-02T16:38:36.4816954Z INSTALL drivers/net/ethernet/xilinx/xilinx_emac.ko
2025-10-02T16:38:36.4884360Z INSTALL drivers/net/ethernet/xircom/xirc2ps_cs.ko
2025-10-02T16:38:36.5131693Z INSTALL drivers/net/fddi/defxx.ko
2025-10-02T16:38:36.5237880Z INSTALL drivers/net/fddi/skfp/skfp.ko
2025-10-02T16:38:36.5578287Z INSTALL drivers/net/fjes/fjes.ko
2025-10-02T16:38:36.5582116Z INSTALL drivers/net/geneve.ko
2025-10-02T16:38:36.5720244Z INSTALL drivers/net/gtp.ko
2025-10-02T16:38:36.5958248Z INSTALL drivers/net/hamradio/6pack.ko
2025-10-02T16:38:36.6433298Z INSTALL drivers/net/hamradio/baycom_ser_fdx.ko
2025-10-02T16:38:36.6442588Z INSTALL drivers/net/hamradio/baycom_par.ko
2025-10-02T16:38:36.6715172Z INSTALL drivers/net/hamradio/baycom_ser_hdx.ko
2025-10-02T16:38:36.6898114Z INSTALL drivers/net/hamradio/bpqether.ko
2025-10-02T16:38:36.6926638Z INSTALL drivers/net/hamradio/hdlcdrv.ko
2025-10-02T16:38:36.6931762Z INSTALL drivers/net/hamradio/mkiss.ko
2025-10-02T16:38:36.7085711Z INSTALL drivers/net/hamradio/yam.ko
2025-10-02T16:38:36.7376799Z INSTALL drivers/net/hyperv/hv_netvsc.ko
2025-10-02T16:38:36.7519323Z INSTALL drivers/net/ieee802154/adf7242.ko
2025-10-02T16:38:36.7524731Z INSTALL drivers/net/ieee802154/at86rf230.ko
2025-10-02T16:38:36.7654887Z INSTALL drivers/net/ieee802154/atusb.ko
2025-10-02T16:38:36.7736449Z INSTALL drivers/net/ieee802154/ca8210.ko
2025-10-02T16:38:36.8219152Z INSTALL drivers/net/ieee802154/cc2520.ko
2025-10-02T16:38:36.8314091Z INSTALL drivers/net/ieee802154/fakelb.ko
2025-10-02T16:38:36.8331610Z INSTALL drivers/net/ieee802154/mac802154_hwsim.ko
2025-10-02T16:38:36.8614728Z INSTALL drivers/net/ieee802154/mcr20a.ko
2025-10-02T16:38:36.8870112Z INSTALL drivers/net/ieee802154/mrf24j40.ko
2025-10-02T16:38:36.8873495Z INSTALL drivers/net/ifb.ko
2025-10-02T16:38:36.8886843Z INSTALL drivers/net/ipvlan/ipvlan.ko
2025-10-02T16:38:36.8975921Z INSTALL drivers/net/ipvlan/ipvtap.ko
2025-10-02T16:38:36.9367472Z INSTALL drivers/net/macsec.ko
2025-10-02T16:38:36.9515072Z INSTALL drivers/net/macvlan.ko
2025-10-02T16:38:36.9594642Z INSTALL drivers/net/macvtap.ko
2025-10-02T16:38:36.9620475Z INSTALL drivers/net/mdio.ko
2025-10-02T16:38:36.9670401Z INSTALL drivers/net/mdio/mdio-bcm-unimac.ko
2025-10-02T16:38:37.0113075Z INSTALL drivers/net/mdio/mdio-bitbang.ko
2025-10-02T16:38:37.0196696Z INSTALL drivers/net/mdio/mdio-cavium.ko
2025-10-02T16:38:37.0207903Z INSTALL drivers/net/mdio/mdio-gpio.ko
2025-10-02T16:38:37.0270277Z INSTALL drivers/net/mdio/mdio-i2c.ko
2025-10-02T16:38:37.0318820Z INSTALL drivers/net/mdio/mdio-mscc-miim.ko
2025-10-02T16:38:37.0596068Z INSTALL drivers/net/mdio/mdio-mvusb.ko
2025-10-02T16:38:37.0694137Z INSTALL drivers/net/mdio/mdio-thunder.ko
2025-10-02T16:38:37.0746297Z INSTALL drivers/net/mii.ko
2025-10-02T16:38:37.0785935Z INSTALL drivers/net/net_failover.ko
2025-10-02T16:38:37.0808760Z INSTALL drivers/net/netconsole.ko
2025-10-02T16:38:37.1085738Z INSTALL drivers/net/netdevsim/netdevsim.ko
2025-10-02T16:38:37.1216041Z INSTALL drivers/net/nlmon.ko
2025-10-02T16:38:37.1376260Z INSTALL drivers/net/ntb_netdev.ko
2025-10-02T16:38:37.1470761Z INSTALL drivers/net/pcs/pcs-lynx.ko
2025-10-02T16:38:37.1473923Z INSTALL drivers/net/pcs/pcs-xpcs.ko
2025-10-02T16:38:37.1676203Z INSTALL drivers/net/phy/adin.ko
2025-10-02T16:38:37.1951545Z INSTALL drivers/net/phy/amd.ko
2025-10-02T16:38:37.1998010Z INSTALL drivers/net/phy/aquantia.ko
2025-10-02T16:38:37.2161585Z INSTALL drivers/net/phy/at803x.ko
2025-10-02T16:38:37.2210377Z INSTALL drivers/net/phy/ax88796b.ko
2025-10-02T16:38:37.2251781Z INSTALL drivers/net/phy/bcm-phy-lib.ko
2025-10-02T16:38:37.2578907Z INSTALL drivers/net/phy/bcm54140.ko
2025-10-02T16:38:37.2583946Z INSTALL drivers/net/phy/bcm7xxx.ko
2025-10-02T16:38:37.2688865Z INSTALL drivers/net/phy/bcm84881.ko
2025-10-02T16:38:37.2722736Z INSTALL drivers/net/phy/bcm87xx.ko
2025-10-02T16:38:37.2974228Z INSTALL drivers/net/phy/broadcom.ko
2025-10-02T16:38:37.3153309Z INSTALL drivers/net/phy/cicada.ko
2025-10-02T16:38:37.3173022Z INSTALL drivers/net/phy/cortina.ko
2025-10-02T16:38:37.3238793Z INSTALL drivers/net/phy/davicom.ko
2025-10-02T16:38:37.3240891Z INSTALL drivers/net/phy/dp83640.ko
2025-10-02T16:38:37.3662644Z INSTALL drivers/net/phy/dp83822.ko
2025-10-02T16:38:37.3703447Z INSTALL drivers/net/phy/dp83848.ko
2025-10-02T16:38:37.3723680Z INSTALL drivers/net/phy/dp83867.ko
2025-10-02T16:38:37.3753580Z INSTALL drivers/net/phy/dp83869.ko
2025-10-02T16:38:37.4010214Z INSTALL drivers/net/phy/dp83tc811.ko
2025-10-02T16:38:37.4202837Z INSTALL drivers/net/phy/et1011c.ko
2025-10-02T16:38:37.4256143Z INSTALL drivers/net/phy/fixed_phy.ko
2025-10-02T16:38:37.4316881Z INSTALL drivers/net/phy/icplus.ko
2025-10-02T16:38:37.4333580Z INSTALL drivers/net/phy/intel-xway.ko
2025-10-02T16:38:37.4471548Z INSTALL drivers/net/phy/libphy.ko
2025-10-02T16:38:37.4720248Z INSTALL drivers/net/phy/lxt.ko
2025-10-02T16:38:37.4818624Z INSTALL drivers/net/phy/marvell.ko
2025-10-02T16:38:37.4870002Z INSTALL drivers/net/phy/marvell10g.ko
2025-10-02T16:38:37.4889841Z INSTALL drivers/net/phy/mdio_devres.ko
2025-10-02T16:38:37.5251831Z INSTALL drivers/net/phy/micrel.ko
2025-10-02T16:38:37.5567396Z INSTALL drivers/net/phy/microchip.ko
2025-10-02T16:38:37.5571629Z INSTALL drivers/net/phy/microchip_t1.ko
2025-10-02T16:38:37.5593540Z INSTALL drivers/net/phy/mscc/mscc.ko
2025-10-02T16:38:37.5775027Z INSTALL drivers/net/phy/national.ko
2025-10-02T16:38:37.6140169Z INSTALL drivers/net/phy/nxp-tja11xx.ko
2025-10-02T16:38:37.6171932Z INSTALL drivers/net/phy/phylink.ko
2025-10-02T16:38:37.6204678Z INSTALL drivers/net/phy/qsemi.ko
2025-10-02T16:38:37.6260684Z INSTALL drivers/net/phy/realtek.ko
2025-10-02T16:38:37.6624094Z INSTALL drivers/net/phy/sfp.ko
2025-10-02T16:38:37.6680214Z INSTALL drivers/net/phy/smsc.ko
2025-10-02T16:38:37.6823992Z INSTALL drivers/net/phy/spi_ks8995.ko
2025-10-02T16:38:37.6966953Z INSTALL drivers/net/phy/ste10Xp.ko
2025-10-02T16:38:37.7071301Z INSTALL drivers/net/phy/teranetics.ko
2025-10-02T16:38:37.7126355Z INSTALL drivers/net/phy/uPD60620.ko
2025-10-02T16:38:37.7391733Z INSTALL drivers/net/phy/vitesse.ko
2025-10-02T16:38:37.7460889Z INSTALL drivers/net/phy/xilinx_gmii2rgmii.ko
2025-10-02T16:38:37.7498180Z INSTALL drivers/net/plip/plip.ko
2025-10-02T16:38:37.7527035Z INSTALL drivers/net/ppp/bsd_comp.ko
2025-10-02T16:38:37.7552426Z INSTALL drivers/net/ppp/ppp_async.ko
2025-10-02T16:38:37.8012489Z INSTALL drivers/net/ppp/ppp_deflate.ko
2025-10-02T16:38:37.8017140Z INSTALL drivers/net/ppp/ppp_generic.ko
2025-10-02T16:38:37.8095763Z INSTALL drivers/net/ppp/ppp_mppe.ko
2025-10-02T16:38:37.8133783Z INSTALL drivers/net/ppp/ppp_synctty.ko
2025-10-02T16:38:37.8154522Z INSTALL drivers/net/ppp/pppoe.ko
2025-10-02T16:38:37.8611063Z INSTALL drivers/net/ppp/pppox.ko
2025-10-02T16:38:37.8716114Z INSTALL drivers/net/ppp/pptp.ko
2025-10-02T16:38:37.8806920Z INSTALL drivers/net/sb1000.ko
2025-10-02T16:38:37.8826782Z INSTALL drivers/net/slip/slhc.ko
2025-10-02T16:38:37.8886899Z INSTALL drivers/net/slip/slip.ko
2025-10-02T16:38:37.9171458Z INSTALL drivers/net/sungem_phy.ko
2025-10-02T16:38:37.9367734Z INSTALL drivers/net/tap.ko
2025-10-02T16:38:37.9439399Z INSTALL drivers/net/team/team.ko
2025-10-02T16:38:37.9457716Z INSTALL drivers/net/team/team_mode_activebackup.ko
2025-10-02T16:38:37.9531170Z INSTALL drivers/net/team/team_mode_broadcast.ko
2025-10-02T16:38:37.9826894Z INSTALL drivers/net/team/team_mode_loadbalance.ko
2025-10-02T16:38:38.0020413Z INSTALL drivers/net/team/team_mode_random.ko
2025-10-02T16:38:38.0037992Z INSTALL drivers/net/team/team_mode_roundrobin.ko
2025-10-02T16:38:38.0096808Z INSTALL drivers/net/thunderbolt-net.ko
2025-10-02T16:38:38.0423610Z INSTALL drivers/net/tun.ko
2025-10-02T16:38:38.0424632Z INSTALL drivers/net/usb/aqc111.ko
2025-10-02T16:38:38.0554783Z INSTALL drivers/net/usb/asix.ko
2025-10-02T16:38:38.0563378Z INSTALL drivers/net/usb/ax88179_178a.ko
2025-10-02T16:38:38.0744489Z INSTALL drivers/net/usb/catc.ko
2025-10-02T16:38:38.1206109Z INSTALL drivers/net/usb/cdc-phonet.ko
2025-10-02T16:38:38.1333353Z INSTALL drivers/net/usb/cdc_eem.ko
2025-10-02T16:38:38.1468495Z INSTALL drivers/net/usb/cdc_ether.ko
2025-10-02T16:38:38.1607182Z INSTALL drivers/net/usb/cdc_mbim.ko
2025-10-02T16:38:38.1651215Z INSTALL drivers/net/usb/cdc_ncm.ko
2025-10-02T16:38:38.1802692Z INSTALL drivers/net/usb/cdc_subset.ko
2025-10-02T16:38:38.1816597Z INSTALL drivers/net/usb/ch9200.ko
2025-10-02T16:38:38.2157803Z INSTALL drivers/net/usb/cx82310_eth.ko
2025-10-02T16:38:38.2257863Z INSTALL drivers/net/usb/dm9601.ko
2025-10-02T16:38:38.2357243Z INSTALL drivers/net/usb/gl620a.ko
2025-10-02T16:38:38.2370986Z INSTALL drivers/net/usb/hso.ko
2025-10-02T16:38:38.2564392Z INSTALL drivers/net/usb/huawei_cdc_ncm.ko
2025-10-02T16:38:38.2668141Z INSTALL drivers/net/usb/int51x1.ko
2025-10-02T16:38:38.2901376Z INSTALL drivers/net/usb/ipheth.ko
2025-10-02T16:38:38.2902361Z INSTALL drivers/net/usb/kalmia.ko
2025-10-02T16:38:38.3155048Z INSTALL drivers/net/usb/kaweth.ko
2025-10-02T16:38:38.3176548Z INSTALL drivers/net/usb/lan78xx.ko
2025-10-02T16:38:38.3316839Z INSTALL drivers/net/usb/lg-vl600.ko
2025-10-02T16:38:38.3460343Z INSTALL drivers/net/usb/mcs7830.ko
2025-10-02T16:38:38.3524659Z INSTALL drivers/net/usb/net1080.ko
2025-10-02T16:38:38.3865170Z INSTALL drivers/net/usb/pegasus.ko
2025-10-02T16:38:38.3971378Z INSTALL drivers/net/usb/plusb.ko
2025-10-02T16:38:38.4073493Z INSTALL drivers/net/usb/qmi_wwan.ko
2025-10-02T16:38:38.4150631Z INSTALL drivers/net/usb/r8152.ko
2025-10-02T16:38:38.4253378Z INSTALL drivers/net/usb/rndis_host.ko
2025-10-02T16:38:38.4466532Z INSTALL drivers/net/usb/rtl8150.ko
2025-10-02T16:38:38.4725993Z INSTALL drivers/net/usb/sierra_net.ko
2025-10-02T16:38:38.4972325Z INSTALL drivers/net/usb/smsc75xx.ko
2025-10-02T16:38:38.5036892Z INSTALL drivers/net/usb/smsc95xx.ko
2025-10-02T16:38:38.5157086Z INSTALL drivers/net/usb/sr9700.ko
2025-10-02T16:38:38.5440471Z INSTALL drivers/net/usb/sr9800.ko
2025-10-02T16:38:38.5458078Z INSTALL drivers/net/usb/usbnet.ko
2025-10-02T16:38:38.5777670Z INSTALL drivers/net/usb/zaurus.ko
2025-10-02T16:38:38.5917040Z INSTALL drivers/net/veth.ko
2025-10-02T16:38:38.6089414Z INSTALL drivers/net/virtio_net.ko
2025-10-02T16:38:38.6219150Z INSTALL drivers/net/vmxnet3/vmxnet3.ko
2025-10-02T16:38:38.6330774Z INSTALL drivers/net/vrf.ko
2025-10-02T16:38:38.6380560Z INSTALL drivers/net/vsockmon.ko
2025-10-02T16:38:38.6758950Z INSTALL drivers/net/vxlan/vxlan.ko
2025-10-02T16:38:38.6876702Z INSTALL drivers/net/wimax/i2400m/i2400m-usb.ko
2025-10-02T16:38:38.7076737Z INSTALL drivers/net/wimax/i2400m/i2400m.ko
2025-10-02T16:38:38.7121407Z INSTALL drivers/net/wireguard/wireguard.ko
2025-10-02T16:38:38.7300961Z INSTALL drivers/net/wireless/admtek/adm8211.ko
2025-10-02T16:38:38.7738549Z INSTALL drivers/net/wireless/ath/ar5523/ar5523.ko
2025-10-02T16:38:38.7842759Z INSTALL drivers/net/wireless/ath/ath.ko
2025-10-02T16:38:38.8105816Z INSTALL drivers/net/wireless/ath/ath10k/ath10k_core.ko
2025-10-02T16:38:38.8650611Z INSTALL drivers/net/wireless/ath/ath10k/ath10k_pci.ko
2025-10-02T16:38:38.8808914Z INSTALL drivers/net/wireless/ath/ath10k/ath10k_sdio.ko
2025-10-02T16:38:38.8867227Z INSTALL drivers/net/wireless/ath/ath10k/ath10k_usb.ko
2025-10-02T16:38:38.8915976Z INSTALL drivers/net/wireless/ath/ath11k/ath11k.ko
2025-10-02T16:38:38.9624917Z INSTALL drivers/net/wireless/ath/ath11k/ath11k_ahb.ko
2025-10-02T16:38:38.9640752Z INSTALL drivers/net/wireless/ath/ath11k/ath11k_pci.ko
2025-10-02T16:38:38.9711311Z INSTALL drivers/net/wireless/ath/ath5k/ath5k.ko
2025-10-02T16:38:39.0405159Z INSTALL drivers/net/wireless/ath/ath6kl/ath6kl_core.ko
2025-10-02T16:38:39.0696790Z INSTALL drivers/net/wireless/ath/ath6kl/ath6kl_sdio.ko
2025-10-02T16:38:39.1865311Z INSTALL drivers/net/wireless/ath/ath6kl/ath6kl_usb.ko
2025-10-02T16:38:39.1886459Z INSTALL drivers/net/wireless/ath/ath9k/ath9k.ko
2025-10-02T16:38:39.2898854Z INSTALL drivers/net/wireless/ath/ath9k/ath9k_common.ko
2025-10-02T16:38:39.3403772Z INSTALL drivers/net/wireless/ath/ath9k/ath9k_htc.ko
2025-10-02T16:38:39.3940474Z INSTALL drivers/net/wireless/ath/ath9k/ath9k_hw.ko
2025-10-02T16:38:39.4057030Z INSTALL drivers/net/wireless/ath/ath9k/ath9k_pci_owl_loader.ko
2025-10-02T16:38:39.4196979Z INSTALL drivers/net/wireless/ath/carl9170/carl9170.ko
2025-10-02T16:38:39.4344239Z INSTALL drivers/net/wireless/ath/wcn36xx/wcn36xx.ko
2025-10-02T16:38:39.4551864Z INSTALL drivers/net/wireless/ath/wil6210/wil6210.ko
2025-10-02T16:38:39.5054931Z INSTALL drivers/net/wireless/atmel/at76c50x-usb.ko
2025-10-02T16:38:39.5759173Z INSTALL drivers/net/wireless/atmel/atmel.ko
2025-10-02T16:38:39.6106714Z INSTALL drivers/net/wireless/atmel/atmel_cs.ko
2025-10-02T16:38:39.6230606Z INSTALL drivers/net/wireless/atmel/atmel_pci.ko
2025-10-02T16:38:39.6727438Z INSTALL drivers/net/wireless/broadcom/b43/b43.ko
2025-10-02T16:38:39.6877412Z INSTALL drivers/net/wireless/broadcom/b43legacy/b43legacy.ko
2025-10-02T16:38:39.6990883Z INSTALL drivers/net/wireless/broadcom/brcm80211/brcmfmac/brcmfmac.ko
2025-10-02T16:38:39.7761220Z INSTALL drivers/net/wireless/broadcom/brcm80211/brcmsmac/brcmsmac.ko
2025-10-02T16:38:39.9169222Z INSTALL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil.ko
2025-10-02T16:38:39.9299368Z INSTALL drivers/net/wireless/cisco/airo.ko
2025-10-02T16:38:40.0218734Z INSTALL drivers/net/wireless/cisco/airo_cs.ko
2025-10-02T16:38:40.0755098Z INSTALL drivers/net/wireless/intel/ipw2x00/ipw2100.ko
2025-10-02T16:38:40.0851592Z INSTALL drivers/net/wireless/intel/ipw2x00/ipw2200.ko
2025-10-02T16:38:40.0947798Z INSTALL drivers/net/wireless/intel/ipw2x00/libipw.ko
2025-10-02T16:38:40.2039095Z INSTALL drivers/net/wireless/intel/iwlegacy/iwl3945.ko
2025-10-02T16:38:40.2195284Z INSTALL drivers/net/wireless/intel/iwlegacy/iwl4965.ko
2025-10-02T16:38:40.2475228Z INSTALL drivers/net/wireless/intel/iwlegacy/iwlegacy.ko
2025-10-02T16:38:40.2547367Z INSTALL drivers/net/wireless/intel/iwlwifi/dvm/iwldvm.ko
2025-10-02T16:38:40.2652279Z INSTALL drivers/net/wireless/intel/iwlwifi/iwlwifi.ko
2025-10-02T16:38:40.3778284Z INSTALL drivers/net/wireless/intel/iwlwifi/mvm/iwlmvm.ko
2025-10-02T16:38:40.4270115Z INSTALL drivers/net/wireless/intersil/hostap/hostap.ko
2025-10-02T16:38:40.4645259Z INSTALL drivers/net/wireless/intersil/hostap/hostap_cs.ko
2025-10-02T16:38:40.5793550Z INSTALL drivers/net/wireless/intersil/hostap/hostap_pci.ko
2025-10-02T16:38:40.6288459Z INSTALL drivers/net/wireless/intersil/hostap/hostap_plx.ko
2025-10-02T16:38:40.6342076Z INSTALL drivers/net/wireless/intersil/orinoco/orinoco.ko
2025-10-02T16:38:40.6601012Z INSTALL drivers/net/wireless/intersil/orinoco/orinoco_cs.ko
2025-10-02T16:38:40.7334223Z INSTALL drivers/net/wireless/intersil/orinoco/orinoco_nortel.ko
2025-10-02T16:38:40.7342906Z INSTALL drivers/net/wireless/intersil/orinoco/orinoco_pci.ko
2025-10-02T16:38:40.7494580Z INSTALL drivers/net/wireless/intersil/orinoco/orinoco_plx.ko
2025-10-02T16:38:40.7670155Z INSTALL drivers/net/wireless/intersil/orinoco/orinoco_tmd.ko
2025-10-02T16:38:40.7930616Z INSTALL drivers/net/wireless/intersil/orinoco/orinoco_usb.ko
2025-10-02T16:38:40.7981355Z INSTALL drivers/net/wireless/intersil/orinoco/spectrum_cs.ko
2025-10-02T16:38:40.7997109Z INSTALL drivers/net/wireless/intersil/p54/p54common.ko
2025-10-02T16:38:40.8297466Z INSTALL drivers/net/wireless/intersil/p54/p54pci.ko
2025-10-02T16:38:40.8615365Z INSTALL drivers/net/wireless/intersil/p54/p54spi.ko
2025-10-02T16:38:40.8694118Z INSTALL drivers/net/wireless/intersil/p54/p54usb.ko
2025-10-02T16:38:40.8776571Z INSTALL drivers/net/wireless/intersil/prism54/prism54.ko
2025-10-02T16:38:40.8958720Z INSTALL drivers/net/wireless/mac80211_hwsim.ko
2025-10-02T16:38:40.8961511Z INSTALL drivers/net/wireless/marvell/libertas/libertas.ko
2025-10-02T16:38:40.9368507Z INSTALL drivers/net/wireless/marvell/libertas/libertas_cs.ko
2025-10-02T16:38:40.9395274Z INSTALL drivers/net/wireless/marvell/libertas/libertas_sdio.ko
2025-10-02T16:38:40.9925628Z INSTALL drivers/net/wireless/marvell/libertas/libertas_spi.ko
2025-10-02T16:38:41.0076365Z INSTALL drivers/net/wireless/marvell/libertas/usb8xxx.ko
2025-10-02T16:38:41.0107110Z INSTALL drivers/net/wireless/marvell/libertas_tf/libertas_tf.ko
2025-10-02T16:38:41.0147041Z INSTALL drivers/net/wireless/marvell/libertas_tf/libertas_tf_usb.ko
2025-10-02T16:38:41.0447817Z INSTALL drivers/net/wireless/marvell/mwifiex/mwifiex.ko
2025-10-02T16:38:41.0631089Z INSTALL drivers/net/wireless/marvell/mwifiex/mwifiex_pcie.ko
2025-10-02T16:38:41.0699961Z INSTALL drivers/net/wireless/marvell/mwifiex/mwifiex_sdio.ko
2025-10-02T16:38:41.0740326Z INSTALL drivers/net/wireless/marvell/mwifiex/mwifiex_usb.ko
2025-10-02T16:38:41.0851660Z INSTALL drivers/net/wireless/marvell/mwl8k.ko
2025-10-02T16:38:41.1561081Z INSTALL drivers/net/wireless/mediatek/mt76/mt76-sdio.ko
2025-10-02T16:38:41.1607777Z INSTALL drivers/net/wireless/mediatek/mt76/mt76-usb.ko
2025-10-02T16:38:41.1666418Z INSTALL drivers/net/wireless/mediatek/mt76/mt76.ko
2025-10-02T16:38:41.1921670Z INSTALL drivers/net/wireless/mediatek/mt76/mt7603/mt7603e.ko
2025-10-02T16:38:41.2188279Z INSTALL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common.ko
2025-10-02T16:38:41.2524643Z INSTALL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e.ko
2025-10-02T16:38:41.2947214Z INSTALL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common.ko
2025-10-02T16:38:41.3044289Z INSTALL drivers/net/wireless/mediatek/mt76/mt7615/mt7663s.ko
2025-10-02T16:38:41.3369858Z INSTALL drivers/net/wireless/mediatek/mt76/mt7615/mt7663u.ko
2025-10-02T16:38:41.3691392Z INSTALL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common.ko
2025-10-02T16:38:41.3752329Z INSTALL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0e.ko
2025-10-02T16:38:41.3831138Z INSTALL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0u.ko
2025-10-02T16:38:41.3880516Z INSTALL drivers/net/wireless/mediatek/mt76/mt76x02-lib.ko
2025-10-02T16:38:41.3947144Z INSTALL drivers/net/wireless/mediatek/mt76/mt76x02-usb.ko
2025-10-02T16:38:41.4353235Z INSTALL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common.ko
2025-10-02T16:38:41.4500489Z INSTALL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2e.ko
2025-10-02T16:38:41.4510383Z INSTALL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2u.ko
2025-10-02T16:38:41.4603934Z INSTALL drivers/net/wireless/mediatek/mt76/mt7915/mt7915e.ko
2025-10-02T16:38:41.5172535Z INSTALL drivers/net/wireless/mediatek/mt7601u/mt7601u.ko
2025-10-02T16:38:41.5183421Z INSTALL drivers/net/wireless/microchip/wilc1000/wilc1000-sdio.ko
2025-10-02T16:38:41.5280586Z INSTALL drivers/net/wireless/microchip/wilc1000/wilc1000-spi.ko
2025-10-02T16:38:41.5282271Z INSTALL drivers/net/wireless/microchip/wilc1000/wilc1000.ko
2025-10-02T16:38:41.5789417Z INSTALL drivers/net/wireless/quantenna/qtnfmac/qtnfmac.ko
2025-10-02T16:38:41.5917717Z INSTALL drivers/net/wireless/quantenna/qtnfmac/qtnfmac_pcie.ko
2025-10-02T16:38:41.5919976Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2400pci.ko
2025-10-02T16:38:41.6736040Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2500pci.ko
2025-10-02T16:38:41.6836295Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2500usb.ko
2025-10-02T16:38:41.6942532Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2800lib.ko
2025-10-02T16:38:41.6963619Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2800mmio.ko
2025-10-02T16:38:41.7418583Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2800pci.ko
2025-10-02T16:38:41.7508736Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2800usb.ko
2025-10-02T16:38:41.7666636Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2x00lib.ko
2025-10-02T16:38:41.7790885Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2x00mmio.ko
2025-10-02T16:38:41.7904338Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2x00pci.ko
2025-10-02T16:38:41.8286176Z INSTALL drivers/net/wireless/ralink/rt2x00/rt2x00usb.ko
2025-10-02T16:38:41.8293648Z INSTALL drivers/net/wireless/ralink/rt2x00/rt61pci.ko
2025-10-02T16:38:41.8360000Z INSTALL drivers/net/wireless/ralink/rt2x00/rt73usb.ko
2025-10-02T16:38:41.8410303Z INSTALL drivers/net/wireless/ray_cs.ko
2025-10-02T16:38:41.9068558Z INSTALL drivers/net/wireless/realtek/rtl818x/rtl8180/rtl818x_pci.ko
2025-10-02T16:38:41.9094206Z INSTALL drivers/net/wireless/realtek/rtl818x/rtl8187/rtl8187.ko
2025-10-02T16:38:41.9149143Z INSTALL drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu.ko
2025-10-02T16:38:41.9152871Z INSTALL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist.ko
2025-10-02T16:38:41.9574946Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8188ee/rtl8188ee.ko
2025-10-02T16:38:42.0078571Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common.ko
2025-10-02T16:38:42.0134730Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8192ce/rtl8192ce.ko
2025-10-02T16:38:42.1006052Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8192cu/rtl8192cu.ko
2025-10-02T16:38:42.1301638Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8192de/rtl8192de.ko
2025-10-02T16:38:42.1416742Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8192ee/rtl8192ee.ko
2025-10-02T16:38:42.1429224Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8192se/rtl8192se.ko
2025-10-02T16:38:42.1790939Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8723ae/rtl8723ae.ko
2025-10-02T16:38:42.2392637Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8723be/rtl8723be.ko
2025-10-02T16:38:42.2782822Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common.ko
2025-10-02T16:38:42.3005394Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl8821ae/rtl8821ae.ko
2025-10-02T16:38:42.3293979Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl_pci.ko
2025-10-02T16:38:42.3493749Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtl_usb.ko
2025-10-02T16:38:42.3919339Z INSTALL drivers/net/wireless/realtek/rtlwifi/rtlwifi.ko
2025-10-02T16:38:42.4075322Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_8723d.ko
2025-10-02T16:38:42.4200838Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_8723de.ko
2025-10-02T16:38:42.4230836Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_8821c.ko
2025-10-02T16:38:42.4836905Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_8821ce.ko
2025-10-02T16:38:42.5155161Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_8822b.ko
2025-10-02T16:38:42.5303346Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_8822be.ko
2025-10-02T16:38:42.5445273Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_8822c.ko
2025-10-02T16:38:42.5661850Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_8822ce.ko
2025-10-02T16:38:42.5862015Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_core.ko
2025-10-02T16:38:42.6438192Z INSTALL drivers/net/wireless/realtek/rtw88/rtw88_pci.ko
2025-10-02T16:38:42.6448543Z INSTALL drivers/net/wireless/rndis_wlan.ko
2025-10-02T16:38:42.6502156Z INSTALL drivers/net/wireless/rsi/rsi_91x.ko
2025-10-02T16:38:42.7246700Z INSTALL drivers/net/wireless/rsi/rsi_sdio.ko
2025-10-02T16:38:42.7480357Z INSTALL drivers/net/wireless/rsi/rsi_usb.ko
2025-10-02T16:38:42.7563183Z INSTALL drivers/net/wireless/st/cw1200/cw1200_core.ko
2025-10-02T16:38:42.7977545Z INSTALL drivers/net/wireless/st/cw1200/cw1200_wlan_sdio.ko
2025-10-02T16:38:42.8006325Z INSTALL drivers/net/wireless/st/cw1200/cw1200_wlan_spi.ko
2025-10-02T16:38:42.8097186Z INSTALL drivers/net/wireless/ti/wl1251/wl1251.ko
2025-10-02T16:38:42.8133804Z INSTALL drivers/net/wireless/ti/wl1251/wl1251_sdio.ko
2025-10-02T16:38:42.8541973Z INSTALL drivers/net/wireless/ti/wl1251/wl1251_spi.ko
2025-10-02T16:38:42.8614287Z INSTALL drivers/net/wireless/ti/wl12xx/wl12xx.ko
2025-10-02T16:38:42.8787269Z INSTALL drivers/net/wireless/ti/wl18xx/wl18xx.ko
2025-10-02T16:38:42.9256534Z INSTALL drivers/net/wireless/ti/wlcore/wlcore.ko
2025-10-02T16:38:42.9492133Z INSTALL drivers/net/wireless/ti/wlcore/wlcore_sdio.ko
2025-10-02T16:38:42.9615881Z INSTALL drivers/net/wireless/virt_wifi.ko
2025-10-02T16:38:42.9833327Z INSTALL drivers/net/wireless/wl3501_cs.ko
2025-10-02T16:38:42.9936927Z INSTALL drivers/net/wireless/zydas/zd1201.ko
2025-10-02T16:38:43.0275368Z INSTALL drivers/net/wireless/zydas/zd1211rw/zd1211rw.ko
2025-10-02T16:38:43.0440559Z INSTALL drivers/net/xen-netback/xen-netback.ko
2025-10-02T16:38:43.0718562Z INSTALL drivers/net/xen-netfront.ko
2025-10-02T16:38:43.0728878Z INSTALL drivers/nfc/fdp/fdp.ko
2025-10-02T16:38:43.1321431Z INSTALL drivers/nfc/fdp/fdp_i2c.ko
2025-10-02T16:38:43.1594648Z INSTALL drivers/nfc/mei_phy.ko
2025-10-02T16:38:43.1757749Z INSTALL drivers/nfc/microread/microread.ko
2025-10-02T16:38:43.1795386Z INSTALL drivers/nfc/microread/microread_i2c.ko
2025-10-02T16:38:43.1895684Z INSTALL drivers/nfc/microread/microread_mei.ko
2025-10-02T16:38:43.2323536Z INSTALL drivers/nfc/nfcmrvl/nfcmrvl.ko
2025-10-02T16:38:43.2337920Z INSTALL drivers/nfc/nfcmrvl/nfcmrvl_i2c.ko
2025-10-02T16:38:43.2423629Z INSTALL drivers/nfc/nfcmrvl/nfcmrvl_spi.ko
2025-10-02T16:38:43.2424567Z INSTALL drivers/nfc/nfcmrvl/nfcmrvl_uart.ko
2025-10-02T16:38:43.2528798Z INSTALL drivers/nfc/nfcmrvl/nfcmrvl_usb.ko
2025-10-02T16:38:43.2845967Z INSTALL drivers/nfc/nfcsim.ko
2025-10-02T16:38:43.2912635Z INSTALL drivers/nfc/nxp-nci/nxp-nci.ko
2025-10-02T16:38:43.2957349Z INSTALL drivers/nfc/nxp-nci/nxp-nci_i2c.ko
2025-10-02T16:38:43.2982254Z INSTALL drivers/nfc/pn533/pn532_uart.ko
2025-10-02T16:38:43.3200420Z INSTALL drivers/nfc/pn533/pn533.ko
2025-10-02T16:38:43.3440224Z INSTALL drivers/nfc/pn533/pn533_i2c.ko
2025-10-02T16:38:43.3483392Z INSTALL drivers/nfc/pn533/pn533_usb.ko
2025-10-02T16:38:43.3492894Z INSTALL drivers/nfc/pn544/pn544.ko
2025-10-02T16:38:43.3515938Z INSTALL drivers/nfc/pn544/pn544_i2c.ko
2025-10-02T16:38:43.4060821Z INSTALL drivers/nfc/pn544/pn544_mei.ko
2025-10-02T16:38:43.4107847Z INSTALL drivers/nfc/port100.ko
2025-10-02T16:38:43.4127471Z INSTALL drivers/nfc/s3fwrn5/s3fwrn5.ko
2025-10-02T16:38:43.4153077Z INSTALL drivers/nfc/s3fwrn5/s3fwrn5_i2c.ko
2025-10-02T16:38:43.4176844Z INSTALL drivers/nfc/st-nci/st-nci.ko
2025-10-02T16:38:43.4544000Z INSTALL drivers/nfc/st-nci/st-nci_i2c.ko
2025-10-02T16:38:43.4715794Z INSTALL drivers/nfc/st-nci/st-nci_spi.ko
2025-10-02T16:38:43.4720639Z INSTALL drivers/nfc/st21nfca/st21nfca_hci.ko
2025-10-02T16:38:43.4737705Z INSTALL drivers/nfc/st21nfca/st21nfca_i2c.ko
2025-10-02T16:38:43.4963516Z INSTALL drivers/nfc/st95hf/st95hf.ko
2025-10-02T16:38:43.5125382Z INSTALL drivers/nfc/trf7970a.ko
2025-10-02T16:38:43.5301558Z INSTALL drivers/ntb/hw/amd/ntb_hw_amd.ko
2025-10-02T16:38:43.5397064Z INSTALL drivers/ntb/hw/idt/ntb_hw_idt.ko
2025-10-02T16:38:43.5524391Z INSTALL drivers/ntb/hw/intel/ntb_hw_intel.ko
2025-10-02T16:38:43.5651029Z INSTALL drivers/ntb/hw/mscc/ntb_hw_switchtec.ko
2025-10-02T16:38:43.5866766Z INSTALL drivers/ntb/ntb.ko
2025-10-02T16:38:43.6056054Z INSTALL drivers/ntb/ntb_transport.ko
2025-10-02T16:38:43.6287493Z INSTALL drivers/nvdimm/nd_blk.ko
2025-10-02T16:38:43.6424261Z INSTALL drivers/nvdimm/nd_btt.ko
2025-10-02T16:38:43.6544469Z INSTALL drivers/nvdimm/nd_e820.ko
2025-10-02T16:38:43.6632889Z INSTALL drivers/nvdimm/nd_pmem.ko
2025-10-02T16:38:43.6849200Z INSTALL drivers/nvdimm/nd_virtio.ko
2025-10-02T16:38:43.7025157Z INSTALL drivers/nvdimm/virtio_pmem.ko
2025-10-02T16:38:43.7088265Z INSTALL drivers/nvme/host/nvme-fabrics.ko
2025-10-02T16:38:43.7112950Z INSTALL drivers/nvme/host/nvme-fc.ko
2025-10-02T16:38:43.7327193Z INSTALL drivers/nvme/host/nvme-rdma.ko
2025-10-02T16:38:43.7408590Z INSTALL drivers/nvme/host/nvme-tcp.ko
2025-10-02T16:38:43.7528674Z INSTALL drivers/nvme/target/nvme-fcloop.ko
2025-10-02T16:38:43.7754341Z INSTALL drivers/nvme/target/nvme-loop.ko
2025-10-02T16:38:43.8023970Z INSTALL drivers/nvme/target/nvmet-fc.ko
2025-10-02T16:38:43.8246988Z INSTALL drivers/nvme/target/nvmet-rdma.ko
2025-10-02T16:38:43.8278819Z INSTALL drivers/nvme/target/nvmet-tcp.ko
2025-10-02T16:38:43.8338794Z INSTALL drivers/nvme/target/nvmet.ko
2025-10-02T16:38:43.8402032Z INSTALL drivers/nvmem/nvmem-rave-sp-eeprom.ko
2025-10-02T16:38:43.8886102Z INSTALL drivers/parport/parport.ko
2025-10-02T16:38:43.8936523Z INSTALL drivers/parport/parport_ax88796.ko
2025-10-02T16:38:43.9061525Z INSTALL drivers/parport/parport_cs.ko
2025-10-02T16:38:43.9248255Z INSTALL drivers/parport/parport_pc.ko
2025-10-02T16:38:43.9563850Z INSTALL drivers/parport/parport_serial.ko
2025-10-02T16:38:43.9608238Z INSTALL drivers/pci/controller/pci-hyperv-intf.ko
2025-10-02T16:38:43.9947371Z INSTALL drivers/pci/controller/pci-hyperv.ko
2025-10-02T16:38:43.9977145Z INSTALL drivers/pci/controller/vmd.ko
2025-10-02T16:38:44.0078694Z INSTALL drivers/pci/hotplug/acpiphp_ibm.ko
2025-10-02T16:38:44.0162535Z INSTALL drivers/pci/hotplug/cpcihp_generic.ko
2025-10-02T16:38:44.0183242Z INSTALL drivers/pci/hotplug/cpcihp_zt5550.ko
2025-10-02T16:38:44.0655629Z INSTALL drivers/pci/pci-pf-stub.ko
2025-10-02T16:38:44.0656964Z INSTALL drivers/pci/pcie/aer_inject.ko
2025-10-02T16:38:44.0725237Z INSTALL drivers/pci/switch/switchtec.ko
2025-10-02T16:38:44.0741859Z INSTALL drivers/pci/xen-pcifront.ko
2025-10-02T16:38:44.0798131Z INSTALL drivers/pcmcia/i82092.ko
2025-10-02T16:38:44.1158884Z INSTALL drivers/pcmcia/pcmcia.ko
2025-10-02T16:38:44.1306425Z INSTALL drivers/pcmcia/pcmcia_core.ko
2025-10-02T16:38:44.1426043Z INSTALL drivers/pcmcia/pcmcia_rsrc.ko
2025-10-02T16:38:44.1571153Z INSTALL drivers/pcmcia/pd6729.ko
2025-10-02T16:38:44.1643946Z INSTALL drivers/pcmcia/yenta_socket.ko
2025-10-02T16:38:44.2042558Z INSTALL drivers/phy/broadcom/phy-bcm-kona-usb2.ko
2025-10-02T16:38:44.2129187Z INSTALL drivers/phy/intel/phy-intel-lgm-emmc.ko
2025-10-02T16:38:44.2132672Z INSTALL drivers/phy/marvell/phy-pxa-28nm-hsic.ko
2025-10-02T16:38:44.2371432Z INSTALL drivers/phy/marvell/phy-pxa-28nm-usb2.ko
2025-10-02T16:38:44.2564079Z INSTALL drivers/phy/motorola/phy-cpcap-usb.ko
2025-10-02T16:38:44.2642274Z INSTALL drivers/phy/phy-lgm-usb.ko
2025-10-02T16:38:44.2747032Z INSTALL drivers/phy/qualcomm/phy-qcom-usb-hs.ko
2025-10-02T16:38:44.2762571Z INSTALL drivers/phy/qualcomm/phy-qcom-usb-hsic.ko
2025-10-02T16:38:44.2831396Z INSTALL drivers/phy/ti/phy-tusb1210.ko
2025-10-02T16:38:44.3042547Z INSTALL drivers/pinctrl/cirrus/pinctrl-madera.ko
2025-10-02T16:38:44.3190424Z INSTALL drivers/pinctrl/pinctrl-amd.ko
2025-10-02T16:38:44.3272809Z INSTALL drivers/pinctrl/pinctrl-da9062.ko
2025-10-02T16:38:44.3296710Z INSTALL drivers/pinctrl/pinctrl-mcp23s08.ko
2025-10-02T16:38:44.3334571Z INSTALL drivers/pinctrl/pinctrl-mcp23s08_i2c.ko
2025-10-02T16:38:44.3709057Z INSTALL drivers/pinctrl/pinctrl-mcp23s08_spi.ko
2025-10-02T16:38:44.3879009Z INSTALL drivers/platform/chrome/chromeos_laptop.ko
2025-10-02T16:38:44.3903505Z INSTALL drivers/platform/chrome/chromeos_pstore.ko
2025-10-02T16:38:44.3917436Z INSTALL drivers/platform/chrome/chromeos_tbmc.ko
2025-10-02T16:38:44.3985419Z INSTALL drivers/platform/chrome/cros-ec-sensorhub.ko
2025-10-02T16:38:44.4205935Z INSTALL drivers/platform/chrome/cros_ec.ko
2025-10-02T16:38:44.4421588Z INSTALL drivers/platform/chrome/cros_ec_chardev.ko
2025-10-02T16:38:44.4509851Z INSTALL drivers/platform/chrome/cros_ec_debugfs.ko
2025-10-02T16:38:44.4547345Z INSTALL drivers/platform/chrome/cros_ec_i2c.ko
2025-10-02T16:38:44.4688264Z INSTALL drivers/platform/chrome/cros_ec_ishtp.ko
2025-10-02T16:38:44.4742865Z INSTALL drivers/platform/chrome/cros_ec_lightbar.ko
2025-10-02T16:38:44.5016054Z INSTALL drivers/platform/chrome/cros_ec_lpcs.ko
2025-10-02T16:38:44.5079906Z INSTALL drivers/platform/chrome/cros_ec_spi.ko
2025-10-02T16:38:44.5211297Z INSTALL drivers/platform/chrome/cros_ec_sysfs.ko
2025-10-02T16:38:44.5309196Z INSTALL drivers/platform/chrome/cros_ec_typec.ko
2025-10-02T16:38:44.5330057Z INSTALL drivers/platform/chrome/cros_kbd_led_backlight.ko
2025-10-02T16:38:44.5639296Z INSTALL drivers/platform/chrome/cros_usbpd_logger.ko
2025-10-02T16:38:44.5708279Z INSTALL drivers/platform/chrome/cros_usbpd_notify.ko
2025-10-02T16:38:44.5787807Z INSTALL drivers/platform/chrome/wilco_ec/wilco_ec.ko
2025-10-02T16:38:44.5855013Z INSTALL drivers/platform/chrome/wilco_ec/wilco_ec_debugfs.ko
2025-10-02T16:38:44.5908291Z INSTALL drivers/platform/chrome/wilco_ec/wilco_ec_events.ko
2025-10-02T16:38:44.6291949Z INSTALL drivers/platform/chrome/wilco_ec/wilco_ec_telem.ko
2025-10-02T16:38:44.6298668Z INSTALL drivers/platform/mellanox/mlxreg-hotplug.ko
2025-10-02T16:38:44.6369679Z INSTALL drivers/platform/mellanox/mlxreg-io.ko
2025-10-02T16:38:44.6450540Z INSTALL drivers/platform/x86/acer-wireless.ko
2025-10-02T16:38:44.6521839Z INSTALL drivers/platform/x86/acer-wmi.ko
2025-10-02T16:38:44.6793019Z INSTALL drivers/platform/x86/acerhdf.ko
2025-10-02T16:38:44.6874429Z INSTALL drivers/platform/x86/alienware-wmi.ko
2025-10-02T16:38:44.6924082Z INSTALL drivers/platform/x86/amilo-rfkill.ko
2025-10-02T16:38:44.6944151Z INSTALL drivers/platform/x86/apple-gmux.ko
2025-10-02T16:38:44.7395292Z INSTALL drivers/platform/x86/asus-laptop.ko
2025-10-02T16:38:44.7444979Z INSTALL drivers/platform/x86/asus-nb-wmi.ko
2025-10-02T16:38:44.7468663Z INSTALL drivers/platform/x86/asus-wireless.ko
2025-10-02T16:38:44.7553691Z INSTALL drivers/platform/x86/asus-wmi.ko
2025-10-02T16:38:44.7644283Z INSTALL drivers/platform/x86/classmate-laptop.ko
2025-10-02T16:38:44.8070264Z INSTALL drivers/platform/x86/compal-laptop.ko
2025-10-02T16:38:44.8104526Z INSTALL drivers/platform/x86/dcdbas.ko
2025-10-02T16:38:44.8156292Z INSTALL drivers/platform/x86/dell-laptop.ko
2025-10-02T16:38:44.8274840Z INSTALL drivers/platform/x86/dell-rbtn.ko
2025-10-02T16:38:44.8598164Z INSTALL drivers/platform/x86/dell-smbios.ko
2025-10-02T16:38:44.8708692Z INSTALL drivers/platform/x86/dell-smo8800.ko
2025-10-02T16:38:44.8772063Z INSTALL drivers/platform/x86/dell-wmi-aio.ko
2025-10-02T16:38:44.8867437Z INSTALL drivers/platform/x86/dell-wmi-descriptor.ko
2025-10-02T16:38:44.8884154Z INSTALL drivers/platform/x86/dell-wmi-led.ko
2025-10-02T16:38:44.9270927Z INSTALL drivers/platform/x86/dell-wmi.ko
2025-10-02T16:38:44.9289250Z INSTALL drivers/platform/x86/eeepc-laptop.ko
2025-10-02T16:38:44.9354563Z INSTALL drivers/platform/x86/eeepc-wmi.ko
2025-10-02T16:38:44.9386338Z INSTALL drivers/platform/x86/fujitsu-laptop.ko
2025-10-02T16:38:44.9492701Z INSTALL drivers/platform/x86/fujitsu-tablet.ko
2025-10-02T16:38:44.9883367Z INSTALL drivers/platform/x86/gpd-pocket-fan.ko
2025-10-02T16:38:44.9904113Z INSTALL drivers/platform/x86/hdaps.ko
2025-10-02T16:38:45.0018894Z INSTALL drivers/platform/x86/hp-wireless.ko
2025-10-02T16:38:45.0035990Z INSTALL drivers/platform/x86/hp-wmi.ko
2025-10-02T16:38:45.0120266Z INSTALL drivers/platform/x86/hp_accel.ko
2025-10-02T16:38:45.0485232Z INSTALL drivers/platform/x86/huawei-wmi.ko
2025-10-02T16:38:45.0511417Z INSTALL drivers/platform/x86/i2c-multi-instantiate.ko
2025-10-02T16:38:45.0543965Z INSTALL drivers/platform/x86/ibm_rtl.ko
2025-10-02T16:38:45.0662600Z INSTALL drivers/platform/x86/ideapad-laptop.ko
2025-10-02T16:38:45.0669654Z INSTALL drivers/platform/x86/intel-hid.ko
2025-10-02T16:38:45.1139165Z INSTALL drivers/platform/x86/intel-rst.ko
2025-10-02T16:38:45.1142212Z INSTALL drivers/platform/x86/intel-smartconnect.ko
2025-10-02T16:38:45.1149298Z INSTALL drivers/platform/x86/intel-uncore-frequency.ko
2025-10-02T16:38:45.1282235Z INSTALL drivers/platform/x86/intel-vbtn.ko
2025-10-02T16:38:45.1320064Z INSTALL drivers/platform/x86/intel-wmi-sbl-fw-update.ko
2025-10-02T16:38:45.1623031Z INSTALL drivers/platform/x86/intel-wmi-thunderbolt.ko
2025-10-02T16:38:45.1624101Z INSTALL drivers/platform/x86/intel_atomisp2_led.ko
2025-10-02T16:38:45.1790714Z INSTALL drivers/platform/x86/intel_bxtwc_tmu.ko
2025-10-02T16:38:45.1796401Z INSTALL drivers/platform/x86/intel_cht_int33fe.ko
2025-10-02T16:38:45.1873559Z INSTALL drivers/platform/x86/intel_chtdc_ti_pwrbtn.ko
2025-10-02T16:38:45.2085955Z INSTALL drivers/platform/x86/intel_int0002_vgpio.ko
2025-10-02T16:38:45.2088073Z INSTALL drivers/platform/x86/intel_ips.ko
2025-10-02T16:38:45.2265372Z INSTALL drivers/platform/x86/intel_menlow.ko
2025-10-02T16:38:45.2326331Z INSTALL drivers/platform/x86/intel_mid_powerbtn.ko
2025-10-02T16:38:45.2455317Z INSTALL drivers/platform/x86/intel_mid_thermal.ko
2025-10-02T16:38:45.2532019Z INSTALL drivers/platform/x86/intel_mrfld_pwrbtn.ko
2025-10-02T16:38:45.2815527Z INSTALL drivers/platform/x86/intel_oaktrail.ko
2025-10-02T16:38:45.2856112Z INSTALL drivers/platform/x86/intel_punit_ipc.ko
2025-10-02T16:38:45.2886468Z INSTALL drivers/platform/x86/intel_scu_ipcutil.ko
2025-10-02T16:38:45.3075341Z INSTALL drivers/platform/x86/intel_scu_pltdrv.ko
2025-10-02T16:38:45.3077782Z INSTALL drivers/platform/x86/intel_speed_select_if/isst_if_common.ko
2025-10-02T16:38:45.3371927Z INSTALL drivers/platform/x86/intel_speed_select_if/isst_if_mbox_msr.ko
2025-10-02T16:38:45.3394258Z INSTALL drivers/platform/x86/intel_speed_select_if/isst_if_mbox_pci.ko
2025-10-02T16:38:45.3414209Z INSTALL drivers/platform/x86/intel_speed_select_if/isst_if_mmio.ko
2025-10-02T16:38:45.3538172Z INSTALL drivers/platform/x86/intel_telemetry_core.ko
2025-10-02T16:38:45.3704073Z INSTALL drivers/platform/x86/intel_telemetry_debugfs.ko
2025-10-02T16:38:45.3894172Z INSTALL drivers/platform/x86/intel_telemetry_pltdrv.ko
2025-10-02T16:38:45.3927659Z INSTALL drivers/platform/x86/lg-laptop.ko
2025-10-02T16:38:45.3955253Z INSTALL drivers/platform/x86/mlx-platform.ko
2025-10-02T16:38:45.4016664Z INSTALL drivers/platform/x86/msi-laptop.ko
2025-10-02T16:38:45.4365105Z INSTALL drivers/platform/x86/msi-wmi.ko
2025-10-02T16:38:45.4580571Z INSTALL drivers/platform/x86/mxm-wmi.ko
2025-10-02T16:38:45.4584782Z INSTALL drivers/platform/x86/panasonic-laptop.ko
2025-10-02T16:38:45.4656446Z INSTALL drivers/platform/x86/pcengines-apuv2.ko
2025-10-02T16:38:45.4779688Z INSTALL drivers/platform/x86/peaq-wmi.ko
2025-10-02T16:38:45.4864464Z INSTALL drivers/platform/x86/samsung-laptop.ko
2025-10-02T16:38:45.5117703Z INSTALL drivers/platform/x86/samsung-q10.ko
2025-10-02T16:38:45.5127865Z INSTALL drivers/platform/x86/sony-laptop.ko
2025-10-02T16:38:45.5220752Z INSTALL drivers/platform/x86/surface3-wmi.ko
2025-10-02T16:38:45.5371165Z INSTALL drivers/platform/x86/surface3_button.ko
2025-10-02T16:38:45.5555040Z INSTALL drivers/platform/x86/surface3_power.ko
2025-10-02T16:38:45.5623977Z INSTALL drivers/platform/x86/surfacepro3_button.ko
2025-10-02T16:38:45.5751675Z INSTALL drivers/platform/x86/system76_acpi.ko
2025-10-02T16:38:45.5976572Z INSTALL drivers/platform/x86/thinkpad_acpi.ko
2025-10-02T16:38:45.6192987Z INSTALL drivers/platform/x86/topstar-laptop.ko
2025-10-02T16:38:45.6211882Z INSTALL drivers/platform/x86/toshiba-wmi.ko
2025-10-02T16:38:45.6258081Z INSTALL drivers/platform/x86/toshiba_acpi.ko
2025-10-02T16:38:45.6400908Z INSTALL drivers/platform/x86/toshiba_bluetooth.ko
2025-10-02T16:38:45.6754072Z INSTALL drivers/platform/x86/toshiba_haps.ko
2025-10-02T16:38:45.6797397Z INSTALL drivers/platform/x86/wmi-bmof.ko
2025-10-02T16:38:45.6934864Z INSTALL drivers/platform/x86/wmi.ko
2025-10-02T16:38:45.7290375Z INSTALL drivers/platform/x86/xiaomi-wmi.ko
2025-10-02T16:38:45.7291715Z INSTALL drivers/power/supply/88pm860x_battery.ko
2025-10-02T16:38:45.7391762Z INSTALL drivers/power/supply/88pm860x_charger.ko
2025-10-02T16:38:45.7620982Z INSTALL drivers/power/supply/adp5061.ko
2025-10-02T16:38:45.7725157Z INSTALL drivers/power/supply/axp20x_ac_power.ko
2025-10-02T16:38:45.7765353Z INSTALL drivers/power/supply/axp20x_battery.ko
2025-10-02T16:38:45.8036434Z INSTALL drivers/power/supply/axp288_charger.ko
2025-10-02T16:38:45.8053242Z INSTALL drivers/power/supply/axp20x_usb_power.ko
2025-10-02T16:38:45.8163806Z INSTALL drivers/power/supply/axp288_fuel_gauge.ko
2025-10-02T16:38:45.8203912Z INSTALL drivers/power/supply/bd99954-charger.ko
2025-10-02T16:38:45.8303820Z INSTALL drivers/power/supply/bq2415x_charger.ko
2025-10-02T16:38:45.8685481Z INSTALL drivers/power/supply/bq24190_charger.ko
2025-10-02T16:38:45.8702545Z INSTALL drivers/power/supply/bq24257_charger.ko
2025-10-02T16:38:45.8784747Z INSTALL drivers/power/supply/bq24735-charger.ko
2025-10-02T16:38:45.8786386Z INSTALL drivers/power/supply/bq2515x_charger.ko
2025-10-02T16:38:45.9045101Z INSTALL drivers/power/supply/bq25890_charger.ko
2025-10-02T16:38:45.9353852Z INSTALL drivers/power/supply/bq25980_charger.ko
2025-10-02T16:38:45.9362439Z INSTALL drivers/power/supply/bq27xxx_battery.ko
2025-10-02T16:38:45.9440678Z INSTALL drivers/power/supply/bq27xxx_battery_hdq.ko
2025-10-02T16:38:45.9460302Z INSTALL drivers/power/supply/bq27xxx_battery_i2c.ko
2025-10-02T16:38:45.9714828Z INSTALL drivers/power/supply/cros_usbpd-charger.ko
2025-10-02T16:38:45.9920598Z INSTALL drivers/power/supply/cw2015_battery.ko
2025-10-02T16:38:45.9985960Z INSTALL drivers/power/supply/da9030_battery.ko
2025-10-02T16:38:46.0002802Z INSTALL drivers/power/supply/da9052-battery.ko
2025-10-02T16:38:46.0069846Z INSTALL drivers/power/supply/da9150-charger.ko
2025-10-02T16:38:46.0340019Z INSTALL drivers/power/supply/da9150-fg.ko
2025-10-02T16:38:46.0522844Z INSTALL drivers/power/supply/ds2760_battery.ko
2025-10-02T16:38:46.0580382Z INSTALL drivers/power/supply/ds2780_battery.ko
2025-10-02T16:38:46.0618127Z INSTALL drivers/power/supply/ds2781_battery.ko
2025-10-02T16:38:46.0665349Z INSTALL drivers/power/supply/ds2782_battery.ko
2025-10-02T16:38:46.0956753Z INSTALL drivers/power/supply/generic-adc-battery.ko
2025-10-02T16:38:46.1134223Z INSTALL drivers/power/supply/gpio-charger.ko
2025-10-02T16:38:46.1181843Z INSTALL drivers/power/supply/isp1704_charger.ko
2025-10-02T16:38:46.1238838Z INSTALL drivers/power/supply/lp8727_charger.ko
2025-10-02T16:38:46.1260789Z INSTALL drivers/power/supply/lp8788-charger.ko
2025-10-02T16:38:46.1493775Z INSTALL drivers/power/supply/lt3651-charger.ko
2025-10-02T16:38:46.1730910Z INSTALL drivers/power/supply/ltc2941-battery-gauge.ko
2025-10-02T16:38:46.1793227Z INSTALL drivers/power/supply/max17040_battery.ko
2025-10-02T16:38:46.1809807Z INSTALL drivers/power/supply/max14577_charger.ko
2025-10-02T16:38:46.1897638Z INSTALL drivers/power/supply/max17042_battery.ko
2025-10-02T16:38:46.2021917Z INSTALL drivers/power/supply/max1721x_battery.ko
2025-10-02T16:38:46.2215288Z INSTALL drivers/power/supply/max77693_charger.ko
2025-10-02T16:38:46.2377087Z INSTALL drivers/power/supply/max8903_charger.ko
2025-10-02T16:38:46.2419448Z INSTALL drivers/power/supply/max8925_power.ko
2025-10-02T16:38:46.2497892Z INSTALL drivers/power/supply/max8997_charger.ko
2025-10-02T16:38:46.2541457Z INSTALL drivers/power/supply/max8998_charger.ko
2025-10-02T16:38:46.2848676Z INSTALL drivers/power/supply/mp2629_charger.ko
2025-10-02T16:38:46.2946862Z INSTALL drivers/power/supply/pcf50633-charger.ko
2025-10-02T16:38:46.3012230Z INSTALL drivers/power/supply/pda_power.ko
2025-10-02T16:38:46.3016475Z INSTALL drivers/power/supply/rt5033_battery.ko
2025-10-02T16:38:46.3172060Z INSTALL drivers/power/supply/rt9455_charger.ko
2025-10-02T16:38:46.3493673Z INSTALL drivers/power/supply/rx51_battery.ko
2025-10-02T16:38:46.3547154Z INSTALL drivers/power/supply/sbs-battery.ko
2025-10-02T16:38:46.3568298Z INSTALL drivers/power/supply/sbs-charger.ko
2025-10-02T16:38:46.3596782Z INSTALL drivers/power/supply/sbs-manager.ko
2025-10-02T16:38:46.3916774Z INSTALL drivers/power/supply/smb347-charger.ko
2025-10-02T16:38:46.4005893Z INSTALL drivers/power/supply/test_power.ko
2025-10-02T16:38:46.4088797Z INSTALL drivers/power/supply/tps65090-charger.ko
2025-10-02T16:38:46.4219086Z INSTALL drivers/power/supply/twl4030_charger.ko
2025-10-02T16:38:46.4229079Z INSTALL drivers/power/supply/twl4030_madc_battery.ko
2025-10-02T16:38:46.4513838Z INSTALL drivers/power/supply/wilco-charger.ko
2025-10-02T16:38:46.4586693Z INSTALL drivers/power/supply/wm831x_backup.ko
2025-10-02T16:38:46.4684874Z INSTALL drivers/power/supply/wm831x_power.ko
2025-10-02T16:38:46.4697951Z INSTALL drivers/power/supply/wm8350_power.ko
2025-10-02T16:38:46.4921123Z INSTALL drivers/powercap/intel_rapl_common.ko
2025-10-02T16:38:46.5086724Z INSTALL drivers/powercap/intel_rapl_msr.ko
2025-10-02T16:38:46.5154814Z INSTALL drivers/pps/clients/pps-gpio.ko
2025-10-02T16:38:46.5230826Z INSTALL drivers/pps/clients/pps-ktimer.ko
2025-10-02T16:38:46.5245596Z INSTALL drivers/pps/clients/pps-ldisc.ko
2025-10-02T16:38:46.5588255Z INSTALL drivers/pps/clients/pps_parport.ko
2025-10-02T16:38:46.5667734Z INSTALL drivers/ptp/ptp_clockmatrix.ko
2025-10-02T16:38:46.5728825Z INSTALL drivers/ptp/ptp_idt82p33.ko
2025-10-02T16:38:46.5749288Z INSTALL drivers/ptp/ptp_ines.ko
2025-10-02T16:38:46.5813345Z INSTALL drivers/ptp/ptp_kvm.ko
2025-10-02T16:38:46.6229901Z INSTALL drivers/ptp/ptp_vmw.ko
2025-10-02T16:38:46.6335836Z INSTALL drivers/pwm/pwm-cros-ec.ko
2025-10-02T16:38:46.6396379Z INSTALL drivers/pwm/pwm-iqs620a.ko
2025-10-02T16:38:46.6451022Z INSTALL drivers/pwm/pwm-lp3943.ko
2025-10-02T16:38:46.6474049Z INSTALL drivers/pwm/pwm-lpss-pci.ko
2025-10-02T16:38:46.6767902Z INSTALL drivers/pwm/pwm-lpss-platform.ko
2025-10-02T16:38:46.6887426Z INSTALL drivers/pwm/pwm-lpss.ko
2025-10-02T16:38:46.6973667Z INSTALL drivers/pwm/pwm-pca9685.ko
2025-10-02T16:38:46.6979435Z INSTALL drivers/pwm/pwm-twl-led.ko
2025-10-02T16:38:46.6981583Z INSTALL drivers/pwm/pwm-twl.ko
2025-10-02T16:38:46.7260875Z INSTALL drivers/regulator/88pg86x.ko
2025-10-02T16:38:46.7385488Z INSTALL drivers/regulator/88pm800-regulator.ko
2025-10-02T16:38:46.7450401Z INSTALL drivers/regulator/88pm8607.ko
2025-10-02T16:38:46.7497240Z INSTALL drivers/regulator/aat2870-regulator.ko
2025-10-02T16:38:46.7542219Z INSTALL drivers/regulator/ab3100.ko
2025-10-02T16:38:46.7866230Z INSTALL drivers/regulator/act8865-regulator.ko
2025-10-02T16:38:46.7935505Z INSTALL drivers/regulator/ad5398.ko
2025-10-02T16:38:46.7947142Z INSTALL drivers/regulator/arizona-ldo1.ko
2025-10-02T16:38:46.7995116Z INSTALL drivers/regulator/arizona-micsupp.ko
2025-10-02T16:38:46.8102740Z INSTALL drivers/regulator/as3711-regulator.ko
2025-10-02T16:38:46.8465232Z INSTALL drivers/regulator/axp20x-regulator.ko
2025-10-02T16:38:46.8493530Z INSTALL drivers/regulator/bcm590xx-regulator.ko
2025-10-02T16:38:46.8525132Z INSTALL drivers/regulator/bd9571mwv-regulator.ko
2025-10-02T16:38:46.8552725Z INSTALL drivers/regulator/da903x-regulator.ko
2025-10-02T16:38:46.8565469Z INSTALL drivers/regulator/da9052-regulator.ko
2025-10-02T16:38:46.9093421Z INSTALL drivers/regulator/da9055-regulator.ko
2025-10-02T16:38:46.9098218Z INSTALL drivers/regulator/da9062-regulator.ko
2025-10-02T16:38:46.9108873Z INSTALL drivers/regulator/da9210-regulator.ko
2025-10-02T16:38:46.9118558Z INSTALL drivers/regulator/da9211-regulator.ko
2025-10-02T16:38:46.9163669Z INSTALL drivers/regulator/fan53555.ko
2025-10-02T16:38:46.9642490Z INSTALL drivers/regulator/fixed.ko
2025-10-02T16:38:46.9663422Z INSTALL drivers/regulator/gpio-regulator.ko
2025-10-02T16:38:46.9690100Z INSTALL drivers/regulator/isl6271a-regulator.ko
2025-10-02T16:38:46.9725311Z INSTALL drivers/regulator/isl9305.ko
2025-10-02T16:38:46.9735877Z INSTALL drivers/regulator/lm363x-regulator.ko
2025-10-02T16:38:47.0171145Z INSTALL drivers/regulator/lp3971.ko
2025-10-02T16:38:47.0189939Z INSTALL drivers/regulator/lp3972.ko
2025-10-02T16:38:47.0202126Z INSTALL drivers/regulator/lp872x.ko
2025-10-02T16:38:47.0242473Z INSTALL drivers/regulator/lp8755.ko
2025-10-02T16:38:47.0262633Z INSTALL drivers/regulator/lp8788-buck.ko
2025-10-02T16:38:47.0680819Z INSTALL drivers/regulator/lp8788-ldo.ko
2025-10-02T16:38:47.0785068Z INSTALL drivers/regulator/ltc3589.ko
2025-10-02T16:38:47.0814259Z INSTALL drivers/regulator/ltc3676.ko
2025-10-02T16:38:47.0843402Z INSTALL drivers/regulator/max14577-regulator.ko
2025-10-02T16:38:47.0866701Z INSTALL drivers/regulator/max1586.ko
2025-10-02T16:38:47.1206968Z INSTALL drivers/regulator/max77693-regulator.ko
2025-10-02T16:38:47.1328603Z INSTALL drivers/regulator/max77826-regulator.ko
2025-10-02T16:38:47.1365206Z INSTALL drivers/regulator/max8649.ko
2025-10-02T16:38:47.1404633Z INSTALL drivers/regulator/max8660.ko
2025-10-02T16:38:47.1408030Z INSTALL drivers/regulator/max8907-regulator.ko
2025-10-02T16:38:47.1770606Z INSTALL drivers/regulator/max8925-regulator.ko
2025-10-02T16:38:47.1864411Z INSTALL drivers/regulator/max8952.ko
2025-10-02T16:38:47.1921486Z INSTALL drivers/regulator/max8997-regulator.ko
2025-10-02T16:38:47.1923204Z INSTALL drivers/regulator/max8998.ko
2025-10-02T16:38:47.1940580Z INSTALL drivers/regulator/mc13783-regulator.ko
2025-10-02T16:38:47.2352307Z INSTALL drivers/regulator/mc13892-regulator.ko
2025-10-02T16:38:47.2402123Z INSTALL drivers/regulator/mc13xxx-regulator-core.ko
2025-10-02T16:38:47.2460434Z INSTALL drivers/regulator/mp8859.ko
2025-10-02T16:38:47.2478818Z INSTALL drivers/regulator/mt6311-regulator.ko
2025-10-02T16:38:47.2626571Z INSTALL drivers/regulator/mt6323-regulator.ko
2025-10-02T16:38:47.2943923Z INSTALL drivers/regulator/mt6358-regulator.ko
2025-10-02T16:38:47.2954860Z INSTALL drivers/regulator/mt6360-regulator.ko
2025-10-02T16:38:47.2989198Z INSTALL drivers/regulator/mt6397-regulator.ko
2025-10-02T16:38:47.2990891Z INSTALL drivers/regulator/palmas-regulator.ko
2025-10-02T16:38:47.3200959Z INSTALL drivers/regulator/pca9450-regulator.ko
2025-10-02T16:38:47.3542556Z INSTALL drivers/regulator/pcap-regulator.ko
2025-10-02T16:38:47.3585877Z INSTALL drivers/regulator/pcf50633-regulator.ko
2025-10-02T16:38:47.3675417Z INSTALL drivers/regulator/pv88060-regulator.ko
2025-10-02T16:38:47.3678341Z INSTALL drivers/regulator/pfuze100-regulator.ko
2025-10-02T16:38:47.3686732Z INSTALL drivers/regulator/pv88080-regulator.ko
2025-10-02T16:38:47.4051525Z INSTALL drivers/regulator/pv88090-regulator.ko
2025-10-02T16:38:47.4072909Z INSTALL drivers/regulator/pwm-regulator.ko
2025-10-02T16:38:47.4166576Z INSTALL drivers/regulator/rc5t583-regulator.ko
2025-10-02T16:38:47.4206277Z INSTALL drivers/regulator/rpi-panel-attiny-regulator.ko
2025-10-02T16:38:47.4461712Z INSTALL drivers/regulator/rt4801-regulator.ko
2025-10-02T16:38:47.4573877Z INSTALL drivers/regulator/rt5033-regulator.ko
2025-10-02T16:38:47.4587560Z INSTALL drivers/regulator/rtmv20-regulator.ko
2025-10-02T16:38:47.4653853Z INSTALL drivers/regulator/s2mpa01.ko
2025-10-02T16:38:47.4668056Z INSTALL drivers/regulator/s2mps11.ko
2025-10-02T16:38:47.5011895Z INSTALL drivers/regulator/s5m8767.ko
2025-10-02T16:38:47.5047028Z INSTALL drivers/regulator/sky81452-regulator.ko
2025-10-02T16:38:47.5209846Z INSTALL drivers/regulator/slg51000-regulator.ko
2025-10-02T16:38:47.5302276Z INSTALL drivers/regulator/tps51632-regulator.ko
2025-10-02T16:38:47.5374588Z INSTALL drivers/regulator/tps6105x-regulator.ko
2025-10-02T16:38:47.5487801Z INSTALL drivers/regulator/tps62360-regulator.ko
2025-10-02T16:38:47.5686767Z INSTALL drivers/regulator/tps65023-regulator.ko
2025-10-02T16:38:47.5764209Z INSTALL drivers/regulator/tps6507x-regulator.ko
2025-10-02T16:38:47.5843377Z INSTALL drivers/regulator/tps65086-regulator.ko
2025-10-02T16:38:47.5854152Z INSTALL drivers/regulator/tps65090-regulator.ko
2025-10-02T16:38:47.5983782Z INSTALL drivers/regulator/tps65132-regulator.ko
2025-10-02T16:38:47.6255771Z INSTALL drivers/regulator/tps6524x-regulator.ko
2025-10-02T16:38:47.6331016Z INSTALL drivers/regulator/tps6586x-regulator.ko
2025-10-02T16:38:47.6346634Z INSTALL drivers/regulator/tps65910-regulator.ko
2025-10-02T16:38:47.6392618Z INSTALL drivers/regulator/tps65912-regulator.ko
2025-10-02T16:38:47.6572079Z INSTALL drivers/regulator/tps80031-regulator.ko
2025-10-02T16:38:47.6868404Z INSTALL drivers/regulator/twl-regulator.ko
2025-10-02T16:38:47.6954656Z INSTALL drivers/regulator/twl6030-regulator.ko
2025-10-02T16:38:47.6960651Z INSTALL drivers/regulator/userspace-consumer.ko
2025-10-02T16:38:47.6997162Z INSTALL drivers/regulator/virtual.ko
2025-10-02T16:38:47.7124234Z INSTALL drivers/regulator/wm831x-dcdc.ko
2025-10-02T16:38:47.7489319Z INSTALL drivers/regulator/wm831x-isink.ko
2025-10-02T16:38:47.7523333Z INSTALL drivers/regulator/wm831x-ldo.ko
2025-10-02T16:38:47.7541316Z INSTALL drivers/regulator/wm8400-regulator.ko
2025-10-02T16:38:47.7543394Z INSTALL drivers/regulator/wm8350-regulator.ko
2025-10-02T16:38:47.7856507Z INSTALL drivers/regulator/wm8994-regulator.ko
2025-10-02T16:38:47.8075647Z INSTALL drivers/reset/reset-ti-syscon.ko
2025-10-02T16:38:47.8077438Z INSTALL drivers/rpmsg/qcom_glink.ko
2025-10-02T16:38:47.8087486Z INSTALL drivers/rpmsg/qcom_glink_rpm.ko
2025-10-02T16:38:47.8213879Z INSTALL drivers/rpmsg/rpmsg_char.ko
2025-10-02T16:38:47.8437755Z INSTALL drivers/rpmsg/rpmsg_core.ko
2025-10-02T16:38:47.8506097Z INSTALL drivers/rpmsg/virtio_rpmsg_bus.ko
2025-10-02T16:38:47.8591022Z INSTALL drivers/rtc/rtc-88pm80x.ko
2025-10-02T16:38:47.8801953Z INSTALL drivers/rtc/rtc-88pm860x.ko
2025-10-02T16:38:47.8805990Z INSTALL drivers/rtc/rtc-ab-b5ze-s3.ko
2025-10-02T16:38:47.9053000Z INSTALL drivers/rtc/rtc-ab-eoz9.ko
2025-10-02T16:38:47.9072395Z INSTALL drivers/rtc/rtc-ab3100.ko
2025-10-02T16:38:47.9150548Z INSTALL drivers/rtc/rtc-abx80x.ko
2025-10-02T16:38:47.9411034Z INSTALL drivers/rtc/rtc-bq32k.ko
2025-10-02T16:38:47.9451136Z INSTALL drivers/rtc/rtc-bq4802.ko
2025-10-02T16:38:47.9580757Z INSTALL drivers/rtc/rtc-cros-ec.ko
2025-10-02T16:38:47.9610297Z INSTALL drivers/rtc/rtc-da9052.ko
2025-10-02T16:38:47.9843243Z INSTALL drivers/rtc/rtc-da9055.ko
2025-10-02T16:38:47.9920057Z INSTALL drivers/rtc/rtc-da9063.ko
2025-10-02T16:38:48.0011745Z INSTALL drivers/rtc/rtc-ds1286.ko
2025-10-02T16:38:48.0091458Z INSTALL drivers/rtc/rtc-ds1302.ko
2025-10-02T16:38:48.0240592Z INSTALL drivers/rtc/rtc-ds1305.ko
2025-10-02T16:38:48.0401051Z INSTALL drivers/rtc/rtc-ds1307.ko
2025-10-02T16:38:48.0444493Z INSTALL drivers/rtc/rtc-ds1343.ko
2025-10-02T16:38:48.0602669Z INSTALL drivers/rtc/rtc-ds1347.ko
2025-10-02T16:38:48.0636117Z INSTALL drivers/rtc/rtc-ds1374.ko
2025-10-02T16:38:48.0703565Z INSTALL drivers/rtc/rtc-ds1390.ko
2025-10-02T16:38:48.0965075Z INSTALL drivers/rtc/rtc-ds1511.ko
2025-10-02T16:38:48.1206186Z INSTALL drivers/rtc/rtc-ds1553.ko
2025-10-02T16:38:48.1213762Z INSTALL drivers/rtc/rtc-ds1672.ko
2025-10-02T16:38:48.1241995Z INSTALL drivers/rtc/rtc-ds1685.ko
2025-10-02T16:38:48.1256524Z INSTALL drivers/rtc/rtc-ds1742.ko
2025-10-02T16:38:48.1567033Z INSTALL drivers/rtc/rtc-ds2404.ko
2025-10-02T16:38:48.1694123Z INSTALL drivers/rtc/rtc-ds3232.ko
2025-10-02T16:38:48.1792117Z INSTALL drivers/rtc/rtc-em3027.ko
2025-10-02T16:38:48.1829419Z INSTALL drivers/rtc/rtc-fm3130.ko
2025-10-02T16:38:48.1922524Z INSTALL drivers/rtc/rtc-ftrtc010.ko
2025-10-02T16:38:48.2150935Z INSTALL drivers/rtc/rtc-hid-sensor-time.ko
2025-10-02T16:38:48.2293016Z INSTALL drivers/rtc/rtc-isl12022.ko
2025-10-02T16:38:48.2378400Z INSTALL drivers/rtc/rtc-isl1208.ko
2025-10-02T16:38:48.2415549Z INSTALL drivers/rtc/rtc-lp8788.ko
2025-10-02T16:38:48.2480370Z INSTALL drivers/rtc/rtc-m41t80.ko
2025-10-02T16:38:48.2711410Z INSTALL drivers/rtc/rtc-m41t93.ko
2025-10-02T16:38:48.2790717Z INSTALL drivers/rtc/rtc-m41t94.ko
2025-10-02T16:38:48.2953093Z INSTALL drivers/rtc/rtc-m48t35.ko
2025-10-02T16:38:48.3033975Z INSTALL drivers/rtc/rtc-m48t59.ko
2025-10-02T16:38:48.3127241Z INSTALL drivers/rtc/rtc-m48t86.ko
2025-10-02T16:38:48.3213661Z INSTALL drivers/rtc/rtc-max6900.ko
2025-10-02T16:38:48.3326075Z INSTALL drivers/rtc/rtc-max6902.ko
2025-10-02T16:38:48.3417123Z INSTALL drivers/rtc/rtc-max6916.ko
2025-10-02T16:38:48.3646838Z INSTALL drivers/rtc/rtc-max8907.ko
2025-10-02T16:38:48.3688713Z INSTALL drivers/rtc/rtc-max8925.ko
2025-10-02T16:38:48.3708268Z INSTALL drivers/rtc/rtc-max8997.ko
2025-10-02T16:38:48.3817551Z INSTALL drivers/rtc/rtc-max8998.ko
2025-10-02T16:38:48.3886307Z INSTALL drivers/rtc/rtc-mc13xxx.ko
2025-10-02T16:38:48.4198529Z INSTALL drivers/rtc/rtc-mcp795.ko
2025-10-02T16:38:48.4254502Z INSTALL drivers/rtc/rtc-msm6242.ko
2025-10-02T16:38:48.4255799Z INSTALL drivers/rtc/rtc-mt6397.ko
2025-10-02T16:38:48.4451010Z INSTALL drivers/rtc/rtc-palmas.ko
2025-10-02T16:38:48.4472219Z INSTALL drivers/rtc/rtc-pcap.ko
2025-10-02T16:38:48.4729069Z INSTALL drivers/rtc/rtc-pcf2123.ko
2025-10-02T16:38:48.4783516Z INSTALL drivers/rtc/rtc-pcf2127.ko
2025-10-02T16:38:48.4786204Z INSTALL drivers/rtc/rtc-pcf50633.ko
2025-10-02T16:38:48.4999442Z INSTALL drivers/rtc/rtc-pcf85063.ko
2025-10-02T16:38:48.5021227Z INSTALL drivers/rtc/rtc-pcf8523.ko
2025-10-02T16:38:48.5335321Z INSTALL drivers/rtc/rtc-pcf85363.ko
2025-10-02T16:38:48.5341310Z INSTALL drivers/rtc/rtc-pcf8563.ko
2025-10-02T16:38:48.5435122Z INSTALL drivers/rtc/rtc-pcf8583.ko
2025-10-02T16:38:48.5536969Z INSTALL drivers/rtc/rtc-r9701.ko
2025-10-02T16:38:48.5568688Z INSTALL drivers/rtc/rtc-rc5t583.ko
2025-10-02T16:38:48.5914167Z INSTALL drivers/rtc/rtc-rp5c01.ko
2025-10-02T16:38:48.5921644Z INSTALL drivers/rtc/rtc-rs5c348.ko
2025-10-02T16:38:48.5930496Z INSTALL drivers/rtc/rtc-rs5c372.ko
2025-10-02T16:38:48.6006361Z INSTALL drivers/rtc/rtc-rv3028.ko
2025-10-02T16:38:48.6211950Z INSTALL drivers/rtc/rtc-rv3029c2.ko
2025-10-02T16:38:48.6376240Z INSTALL drivers/rtc/rtc-rv3032.ko
2025-10-02T16:38:48.6452965Z INSTALL drivers/rtc/rtc-rv8803.ko
2025-10-02T16:38:48.6686432Z INSTALL drivers/rtc/rtc-rx4581.ko
2025-10-02T16:38:48.6692853Z INSTALL drivers/rtc/rtc-rx6110.ko
2025-10-02T16:38:48.6797691Z INSTALL drivers/rtc/rtc-rx8010.ko
2025-10-02T16:38:48.6998734Z INSTALL drivers/rtc/rtc-rx8025.ko
2025-10-02T16:38:48.7014105Z INSTALL drivers/rtc/rtc-rx8581.ko
2025-10-02T16:38:48.7180915Z INSTALL drivers/rtc/rtc-s35390a.ko
2025-10-02T16:38:48.7259069Z INSTALL drivers/rtc/rtc-s5m.ko
2025-10-02T16:38:48.7367357Z INSTALL drivers/rtc/rtc-sd3078.ko
2025-10-02T16:38:48.7628921Z INSTALL drivers/rtc/rtc-stk17ta8.ko
2025-10-02T16:38:48.7681315Z INSTALL drivers/rtc/rtc-tps6586x.ko
2025-10-02T16:38:48.7689258Z INSTALL drivers/rtc/rtc-tps65910.ko
2025-10-02T16:38:48.7838353Z INSTALL drivers/rtc/rtc-tps80031.ko
2025-10-02T16:38:48.7857909Z INSTALL drivers/rtc/rtc-v3020.ko
2025-10-02T16:38:48.8120039Z INSTALL drivers/rtc/rtc-wilco-ec.ko
2025-10-02T16:38:48.8235714Z INSTALL drivers/rtc/rtc-wm831x.ko
2025-10-02T16:38:48.8251675Z INSTALL drivers/rtc/rtc-wm8350.ko
2025-10-02T16:38:48.8373539Z INSTALL drivers/rtc/rtc-x1205.ko
2025-10-02T16:38:48.8495370Z INSTALL drivers/scsi/3w-9xxx.ko
2025-10-02T16:38:48.8675094Z INSTALL drivers/scsi/3w-sas.ko
2025-10-02T16:38:48.8735414Z INSTALL drivers/scsi/3w-xxxx.ko
2025-10-02T16:38:48.8770236Z INSTALL drivers/scsi/BusLogic.ko
2025-10-02T16:38:48.9254917Z INSTALL drivers/scsi/a100u2w.ko
2025-10-02T16:38:48.9333926Z INSTALL drivers/scsi/aacraid/aacraid.ko
2025-10-02T16:38:48.9421591Z INSTALL drivers/scsi/advansys.ko
2025-10-02T16:38:48.9573011Z INSTALL drivers/scsi/aic7xxx/aic79xx.ko
2025-10-02T16:38:48.9795830Z INSTALL drivers/scsi/aic7xxx/aic7xxx.ko
2025-10-02T16:38:48.9923161Z INSTALL drivers/scsi/aic94xx/aic94xx.ko
2025-10-02T16:38:49.0295510Z INSTALL drivers/scsi/am53c974.ko
2025-10-02T16:38:49.1013295Z INSTALL drivers/scsi/arcmsr/arcmsr.ko
2025-10-02T16:38:49.1093608Z INSTALL drivers/scsi/atp870u.ko
2025-10-02T16:38:49.1649202Z INSTALL drivers/scsi/be2iscsi/be2iscsi.ko
2025-10-02T16:38:49.1787200Z INSTALL drivers/scsi/bfa/bfa.ko
2025-10-02T16:38:49.1956204Z INSTALL drivers/scsi/bnx2fc/bnx2fc.ko
2025-10-02T16:38:49.1975125Z INSTALL drivers/scsi/bnx2i/bnx2i.ko
2025-10-02T16:38:49.2086218Z INSTALL drivers/scsi/ch.ko
2025-10-02T16:38:49.2818424Z INSTALL drivers/scsi/csiostor/csiostor.ko
2025-10-02T16:38:49.3017236Z INSTALL drivers/scsi/cxgbi/cxgb3i/cxgb3i.ko
2025-10-02T16:38:49.3455786Z INSTALL drivers/scsi/cxgbi/cxgb4i/cxgb4i.ko
2025-10-02T16:38:49.3792827Z INSTALL drivers/scsi/cxgbi/libcxgbi.ko
2025-10-02T16:38:49.3884032Z INSTALL drivers/scsi/dc395x.ko
2025-10-02T16:38:49.4669002Z INSTALL drivers/scsi/device_handler/scsi_dh_emc.ko
2025-10-02T16:38:49.4684836Z INSTALL drivers/scsi/device_handler/scsi_dh_alua.ko
2025-10-02T16:38:49.4761221Z INSTALL drivers/scsi/device_handler/scsi_dh_hp_sw.ko
2025-10-02T16:38:49.5245390Z INSTALL drivers/scsi/device_handler/scsi_dh_rdac.ko
2025-10-02T16:38:49.5246333Z INSTALL drivers/scsi/dmx3191d.ko
2025-10-02T16:38:49.5355217Z INSTALL drivers/scsi/dpt_i2o.ko
2025-10-02T16:38:49.5444874Z INSTALL drivers/scsi/esas2r/esas2r.ko
2025-10-02T16:38:49.5885393Z INSTALL drivers/scsi/esp_scsi.ko
2025-10-02T16:38:49.5901360Z INSTALL drivers/scsi/fcoe/fcoe.ko
2025-10-02T16:38:49.6378807Z INSTALL drivers/scsi/fcoe/libfcoe.ko
2025-10-02T16:38:49.6843463Z INSTALL drivers/scsi/fdomain.ko
2025-10-02T16:38:49.6913763Z INSTALL drivers/scsi/fdomain_pci.ko
2025-10-02T16:38:49.6996207Z INSTALL drivers/scsi/fnic/fnic.ko
2025-10-02T16:38:49.7475599Z INSTALL drivers/scsi/gdth.ko
2025-10-02T16:38:49.7515084Z INSTALL drivers/scsi/hpsa.ko
2025-10-02T16:38:49.7525891Z INSTALL drivers/scsi/hptiop.ko
2025-10-02T16:38:49.7551160Z INSTALL drivers/scsi/hv_storvsc.ko
2025-10-02T16:38:49.8291358Z INSTALL drivers/scsi/imm.ko
2025-10-02T16:38:49.8425105Z INSTALL drivers/scsi/initio.ko
2025-10-02T16:38:49.8671270Z INSTALL drivers/scsi/ipr.ko
2025-10-02T16:38:49.8761893Z INSTALL drivers/scsi/ips.ko
2025-10-02T16:38:49.8840140Z INSTALL drivers/scsi/isci/isci.ko
2025-10-02T16:38:49.8979171Z INSTALL drivers/scsi/iscsi_boot_sysfs.ko
2025-10-02T16:38:49.9012962Z INSTALL drivers/scsi/iscsi_tcp.ko
2025-10-02T16:38:49.9660313Z INSTALL drivers/scsi/libfc/libfc.ko
2025-10-02T16:38:49.9742887Z INSTALL drivers/scsi/libiscsi.ko
2025-10-02T16:38:49.9866825Z INSTALL drivers/scsi/libiscsi_tcp.ko
2025-10-02T16:38:50.0532740Z INSTALL drivers/scsi/libsas/libsas.ko
2025-10-02T16:38:50.0550681Z INSTALL drivers/scsi/lpfc/lpfc.ko
2025-10-02T16:38:50.0889072Z INSTALL drivers/scsi/megaraid.ko
2025-10-02T16:38:50.1052311Z INSTALL drivers/scsi/megaraid/megaraid_mbox.ko
2025-10-02T16:38:50.1778725Z INSTALL drivers/scsi/megaraid/megaraid_mm.ko
2025-10-02T16:38:50.1926024Z INSTALL drivers/scsi/megaraid/megaraid_sas.ko
2025-10-02T16:38:50.1991907Z INSTALL drivers/scsi/mpt3sas/mpt3sas.ko
2025-10-02T16:38:50.2010153Z INSTALL drivers/scsi/mvsas/mvsas.ko
2025-10-02T16:38:50.2362917Z INSTALL drivers/scsi/mvumi.ko
2025-10-02T16:38:50.3191491Z INSTALL drivers/scsi/myrb.ko
2025-10-02T16:38:50.3549037Z INSTALL drivers/scsi/myrs.ko
2025-10-02T16:38:50.3990054Z INSTALL drivers/scsi/pcmcia/aha152x_cs.ko
2025-10-02T16:38:50.4483648Z INSTALL drivers/scsi/pcmcia/fdomain_cs.ko
2025-10-02T16:38:50.4889783Z INSTALL drivers/scsi/pcmcia/qlogic_cs.ko
2025-10-02T16:38:50.4991344Z INSTALL drivers/scsi/pcmcia/sym53c500_cs.ko
2025-10-02T16:38:50.5153970Z INSTALL drivers/scsi/pm8001/pm80xx.ko
2025-10-02T16:38:50.5592459Z INSTALL drivers/scsi/pmcraid.ko
2025-10-02T16:38:50.5609779Z INSTALL drivers/scsi/ppa.ko
2025-10-02T16:38:50.5682763Z INSTALL drivers/scsi/qedf/qedf.ko
2025-10-02T16:38:50.6627998Z INSTALL drivers/scsi/qedi/qedi.ko
2025-10-02T16:38:50.6805970Z INSTALL drivers/scsi/qla1280.ko
2025-10-02T16:38:50.7425422Z INSTALL drivers/scsi/qla2xxx/qla2xxx.ko
2025-10-02T16:38:50.7778918Z INSTALL drivers/scsi/qla2xxx/tcm_qla2xxx.ko
2025-10-02T16:38:50.7783659Z INSTALL drivers/scsi/qla4xxx/qla4xxx.ko
2025-10-02T16:38:50.8221042Z INSTALL drivers/scsi/qlogicfas408.ko
2025-10-02T16:38:50.9043372Z INSTALL drivers/scsi/raid_class.ko
2025-10-02T16:38:50.9066494Z INSTALL drivers/scsi/scsi_debug.ko
2025-10-02T16:38:50.9900720Z INSTALL drivers/scsi/scsi_transport_fc.ko
2025-10-02T16:38:51.0937125Z INSTALL drivers/scsi/scsi_transport_iscsi.ko
2025-10-02T16:38:51.1036763Z INSTALL drivers/scsi/scsi_transport_sas.ko
2025-10-02T16:38:51.1105533Z INSTALL drivers/scsi/scsi_transport_spi.ko
2025-10-02T16:38:51.1326472Z INSTALL drivers/scsi/scsi_transport_srp.ko
2025-10-02T16:38:51.2040804Z INSTALL drivers/scsi/ses.ko
2025-10-02T16:38:51.2276524Z INSTALL drivers/scsi/sg.ko
2025-10-02T16:38:51.2295361Z INSTALL drivers/scsi/smartpqi/smartpqi.ko
2025-10-02T16:38:51.2748718Z INSTALL drivers/scsi/snic/snic.ko
2025-10-02T16:38:51.2771831Z INSTALL drivers/scsi/sr_mod.ko
2025-10-02T16:38:51.3178406Z INSTALL drivers/scsi/st.ko
2025-10-02T16:38:51.3826226Z INSTALL drivers/scsi/stex.ko
2025-10-02T16:38:51.3830658Z INSTALL drivers/scsi/sym53c8xx_2/sym53c8xx.ko
2025-10-02T16:38:51.4181959Z INSTALL drivers/scsi/ufs/cdns-pltfrm.ko
2025-10-02T16:38:51.4538935Z INSTALL drivers/scsi/ufs/ufshcd-core.ko
2025-10-02T16:38:51.4687699Z INSTALL drivers/scsi/ufs/ufshcd-pci.ko
2025-10-02T16:38:51.4915729Z INSTALL drivers/scsi/ufs/ufshcd-pltfrm.ko
2025-10-02T16:38:51.5263512Z INSTALL drivers/scsi/virtio_scsi.ko
2025-10-02T16:38:51.5273268Z INSTALL drivers/scsi/vmw_pvscsi.ko
2025-10-02T16:38:51.5542956Z INSTALL drivers/scsi/wd719x.ko
2025-10-02T16:38:51.5801650Z INSTALL drivers/scsi/xen-scsifront.ko
2025-10-02T16:38:51.6112811Z INSTALL drivers/siox/siox-bus-gpio.ko
2025-10-02T16:38:51.6201309Z INSTALL drivers/siox/siox-core.ko
2025-10-02T16:38:51.6259829Z INSTALL drivers/slimbus/slim-qcom-ctrl.ko
2025-10-02T16:38:51.6508519Z INSTALL drivers/slimbus/slimbus.ko
2025-10-02T16:38:51.6720470Z INSTALL drivers/soc/qcom/qmi_helpers.ko
2025-10-02T16:38:51.6859978Z INSTALL drivers/soc/xilinx/xlnx_vcu.ko
2025-10-02T16:38:51.6881282Z INSTALL drivers/soundwire/soundwire-bus.ko
2025-10-02T16:38:51.6961194Z INSTALL drivers/soundwire/soundwire-cadence.ko
2025-10-02T16:38:51.7237525Z INSTALL drivers/soundwire/soundwire-generic-allocation.ko
2025-10-02T16:38:51.7357726Z INSTALL drivers/soundwire/soundwire-intel.ko
2025-10-02T16:38:51.7505447Z INSTALL drivers/soundwire/soundwire-qcom.ko
2025-10-02T16:38:51.7705553Z INSTALL drivers/spi/spi-altera.ko
2025-10-02T16:38:51.7978144Z INSTALL drivers/spi/spi-amd.ko
2025-10-02T16:38:51.8066327Z INSTALL drivers/spi/spi-axi-spi-engine.ko
2025-10-02T16:38:51.8126271Z INSTALL drivers/spi/spi-bitbang.ko
2025-10-02T16:38:51.8262845Z INSTALL drivers/spi/spi-butterfly.ko
2025-10-02T16:38:51.8316178Z INSTALL drivers/spi/spi-cadence.ko
2025-10-02T16:38:51.8544433Z INSTALL drivers/spi/spi-dln2.ko
2025-10-02T16:38:51.8581814Z INSTALL drivers/spi/spi-dw-mmio.ko
2025-10-02T16:38:51.8677049Z INSTALL drivers/spi/spi-dw-pci.ko
2025-10-02T16:38:51.8831066Z INSTALL drivers/spi/spi-dw.ko
2025-10-02T16:38:51.8854061Z INSTALL drivers/spi/spi-gpio.ko
2025-10-02T16:38:51.9086963Z INSTALL drivers/spi/spi-lm70llp.ko
2025-10-02T16:38:51.9189227Z INSTALL drivers/spi/spi-loopback-test.ko
2025-10-02T16:38:51.9251077Z INSTALL drivers/spi/spi-mux.ko
2025-10-02T16:38:51.9481272Z INSTALL drivers/spi/spi-mxic.ko
2025-10-02T16:38:51.9485809Z INSTALL drivers/spi/spi-nxp-fspi.ko
2025-10-02T16:38:51.9622571Z INSTALL drivers/spi/spi-oc-tiny.ko
2025-10-02T16:38:51.9647780Z INSTALL drivers/spi/spi-pxa2xx-pci.ko
2025-10-02T16:38:51.9954300Z INSTALL drivers/spi/spi-pxa2xx-platform.ko
2025-10-02T16:38:52.0039918Z INSTALL drivers/spi/spi-sc18is602.ko
2025-10-02T16:38:52.0110221Z INSTALL drivers/spi/spi-sifive.ko
2025-10-02T16:38:52.0185055Z INSTALL drivers/spi/spi-slave-system-control.ko
2025-10-02T16:38:52.0225364Z INSTALL drivers/spi/spi-slave-time.ko
2025-10-02T16:38:52.0559145Z INSTALL drivers/spi/spi-tle62x0.ko
2025-10-02T16:38:52.0657533Z INSTALL drivers/spi/spi-xcomm.ko
2025-10-02T16:38:52.0673558Z INSTALL drivers/spi/spi-xilinx.ko
2025-10-02T16:38:52.0719015Z INSTALL drivers/spi/spi-zynqmp-gqspi.ko
2025-10-02T16:38:52.0750388Z INSTALL drivers/spi/spidev.ko
2025-10-02T16:38:52.1137567Z INSTALL drivers/ssb/ssb.ko
2025-10-02T16:38:52.1207359Z INSTALL drivers/staging/fieldbus/fieldbus_dev.ko
2025-10-02T16:38:52.1273754Z INSTALL drivers/staging/fwserial/firewire-serial.ko
2025-10-02T16:38:52.1326213Z INSTALL drivers/staging/gasket/apex.ko
2025-10-02T16:38:52.1370029Z INSTALL drivers/staging/gasket/gasket.ko
2025-10-02T16:38:52.1841695Z INSTALL drivers/staging/gdm724x/gdmtty.ko
2025-10-02T16:38:52.1964883Z INSTALL drivers/staging/gdm724x/gdmulte.ko
2025-10-02T16:38:52.2287600Z INSTALL drivers/staging/gs_fpgaboot/gs_fpga.ko
2025-10-02T16:38:52.2386075Z INSTALL drivers/staging/iio/accel/adis16203.ko
2025-10-02T16:38:52.2735804Z INSTALL drivers/staging/iio/accel/adis16240.ko
2025-10-02T16:38:52.2737095Z INSTALL drivers/staging/iio/adc/ad7280a.ko
2025-10-02T16:38:52.2768651Z INSTALL drivers/staging/iio/adc/ad7816.ko
2025-10-02T16:38:52.2925037Z INSTALL drivers/staging/iio/addac/adt7316-i2c.ko
2025-10-02T16:38:52.2929318Z INSTALL drivers/staging/iio/addac/adt7316-spi.ko
2025-10-02T16:38:52.3256451Z INSTALL drivers/staging/iio/addac/adt7316.ko
2025-10-02T16:38:52.3311334Z INSTALL drivers/staging/iio/cdc/ad7150.ko
2025-10-02T16:38:52.3373137Z INSTALL drivers/staging/iio/cdc/ad7746.ko
2025-10-02T16:38:52.3484530Z INSTALL drivers/staging/iio/frequency/ad9832.ko
2025-10-02T16:38:52.3503360Z INSTALL drivers/staging/iio/frequency/ad9834.ko
2025-10-02T16:38:52.3918594Z INSTALL drivers/staging/iio/impedance-analyzer/ad5933.ko
2025-10-02T16:38:52.3934094Z INSTALL drivers/staging/iio/meter/ade7854-i2c.ko
2025-10-02T16:38:52.4017501Z INSTALL drivers/staging/iio/meter/ade7854-spi.ko
2025-10-02T16:38:52.4043715Z INSTALL drivers/staging/iio/meter/ade7854.ko
2025-10-02T16:38:52.4096025Z INSTALL drivers/staging/iio/resolver/ad2s1210.ko
2025-10-02T16:38:52.4426590Z INSTALL drivers/staging/kpc2000/kpc2000/kpc2000.ko
2025-10-02T16:38:52.4524806Z INSTALL drivers/staging/kpc2000/kpc2000_i2c.ko
2025-10-02T16:38:52.4581590Z INSTALL drivers/staging/kpc2000/kpc2000_spi.ko
2025-10-02T16:38:52.4655393Z INSTALL drivers/staging/kpc2000/kpc_dma/kpc_dma.ko
2025-10-02T16:38:52.4747945Z INSTALL drivers/staging/ks7010/ks7010.ko
2025-10-02T16:38:52.5104746Z INSTALL drivers/staging/media/atomisp/atomisp.ko
2025-10-02T16:38:52.5126397Z INSTALL drivers/staging/media/atomisp/i2c/atomisp-gc0310.ko
2025-10-02T16:38:52.5156077Z INSTALL drivers/staging/media/atomisp/i2c/atomisp-gc2235.ko
2025-10-02T16:38:52.5397400Z INSTALL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper.ko
2025-10-02T16:38:52.5838273Z INSTALL drivers/staging/media/atomisp/i2c/atomisp-mt9m114.ko
2025-10-02T16:38:52.5839852Z INSTALL drivers/staging/media/atomisp/i2c/atomisp-lm3554.ko
2025-10-02T16:38:52.5854606Z INSTALL drivers/staging/media/atomisp/i2c/atomisp-ov2680.ko
2025-10-02T16:38:52.5948900Z INSTALL drivers/staging/media/atomisp/i2c/atomisp-ov2722.ko
2025-10-02T16:38:52.6488975Z INSTALL drivers/staging/media/atomisp/i2c/ov5693/atomisp-ov5693.ko
2025-10-02T16:38:52.6576884Z INSTALL drivers/staging/media/atomisp/pci/atomisp_gmin_platform.ko
2025-10-02T16:38:52.6651365Z INSTALL drivers/staging/media/ipu3/ipu3-imgu.ko
2025-10-02T16:38:52.6777851Z INSTALL drivers/staging/most/i2c/most_i2c.ko
2025-10-02T16:38:52.7217761Z INSTALL drivers/staging/most/net/most_net.ko
2025-10-02T16:38:52.7283349Z INSTALL drivers/staging/most/sound/most_sound.ko
2025-10-02T16:38:52.7403692Z INSTALL drivers/staging/most/video/most_video.ko
2025-10-02T16:38:52.7890824Z INSTALL drivers/staging/pi433/pi433.ko
2025-10-02T16:38:52.7896150Z INSTALL drivers/staging/qlge/qlge.ko
2025-10-02T16:38:52.8214639Z INSTALL drivers/staging/rtl8188eu/r8188eu.ko
2025-10-02T16:38:52.8433367Z INSTALL drivers/staging/rtl8192e/rtl8192e/r8192e_pci.ko
2025-10-02T16:38:52.8671429Z INSTALL drivers/staging/rtl8192e/rtllib.ko
2025-10-02T16:38:52.9527107Z INSTALL drivers/staging/rtl8192e/rtllib_crypt_ccmp.ko
2025-10-02T16:38:53.0284248Z INSTALL drivers/staging/rtl8192e/rtllib_crypt_tkip.ko
2025-10-02T16:38:53.0370459Z INSTALL drivers/staging/rtl8192e/rtllib_crypt_wep.ko
2025-10-02T16:38:53.0795142Z INSTALL drivers/staging/rtl8192u/r8192u_usb.ko
2025-10-02T16:38:53.1075761Z INSTALL drivers/staging/rtl8712/r8712u.ko
2025-10-02T16:38:53.1123474Z INSTALL drivers/staging/rtl8723bs/r8723bs.ko
2025-10-02T16:38:53.3024186Z INSTALL drivers/staging/rts5208/rts5208.ko
2025-10-02T16:38:53.3705941Z INSTALL drivers/staging/unisys/visorhba/visorhba.ko
2025-10-02T16:38:53.4166229Z INSTALL drivers/staging/unisys/visorinput/visorinput.ko
2025-10-02T16:38:53.4168146Z INSTALL drivers/staging/unisys/visornic/visornic.ko
2025-10-02T16:38:53.4536045Z INSTALL drivers/staging/vt6655/vt6655_stage.ko
2025-10-02T16:38:53.4826244Z INSTALL drivers/staging/vt6656/vt6656_stage.ko
2025-10-02T16:38:53.5246168Z INSTALL drivers/staging/wfx/wfx.ko
2025-10-02T16:38:53.5820443Z INSTALL drivers/staging/wlan-ng/prism2_usb.ko
2025-10-02T16:38:53.5937078Z INSTALL drivers/target/iscsi/cxgbit/cxgbit.ko
2025-10-02T16:38:53.6119994Z INSTALL drivers/target/iscsi/iscsi_target_mod.ko
2025-10-02T16:38:53.7418642Z INSTALL drivers/target/loopback/tcm_loop.ko
2025-10-02T16:38:53.7568480Z INSTALL drivers/target/sbp/sbp_target.ko
2025-10-02T16:38:53.7588253Z INSTALL drivers/target/target_core_file.ko
2025-10-02T16:38:53.7794113Z INSTALL drivers/target/target_core_iblock.ko
2025-10-02T16:38:53.8190611Z INSTALL drivers/target/target_core_mod.ko
2025-10-02T16:38:53.8213440Z INSTALL drivers/target/target_core_pscsi.ko
2025-10-02T16:38:53.8617018Z INSTALL drivers/target/target_core_user.ko
2025-10-02T16:38:53.8635463Z INSTALL drivers/target/tcm_fc/tcm_fc.ko
2025-10-02T16:38:53.9040536Z INSTALL drivers/tee/amdtee/amdtee.ko
2025-10-02T16:38:53.9557340Z INSTALL drivers/tee/tee.ko
2025-10-02T16:38:53.9750841Z INSTALL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel.ko
2025-10-02T16:38:54.0064685Z INSTALL drivers/thermal/intel/int340x_thermal/int3400_thermal.ko
2025-10-02T16:38:54.0133287Z INSTALL drivers/thermal/intel/int340x_thermal/int3402_thermal.ko
2025-10-02T16:38:54.0225132Z INSTALL drivers/thermal/intel/int340x_thermal/int3403_thermal.ko
2025-10-02T16:38:54.0444012Z INSTALL drivers/thermal/intel/int340x_thermal/int3406_thermal.ko
2025-10-02T16:38:54.0633249Z INSTALL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone.ko
2025-10-02T16:38:54.0692699Z INSTALL drivers/thermal/intel/int340x_thermal/processor_thermal_device.ko
2025-10-02T16:38:54.0799676Z INSTALL drivers/thermal/intel/intel_bxt_pmic_thermal.ko
2025-10-02T16:38:54.0953367Z INSTALL drivers/thermal/intel/intel_pch_thermal.ko
2025-10-02T16:38:54.1331131Z INSTALL drivers/thermal/intel/intel_powerclamp.ko
2025-10-02T16:38:54.1335567Z INSTALL drivers/thermal/intel/intel_soc_dts_iosf.ko
2025-10-02T16:38:54.1356143Z INSTALL drivers/thermal/intel/intel_soc_dts_thermal.ko
2025-10-02T16:38:54.1418970Z INSTALL drivers/thermal/intel/x86_pkg_temp_thermal.ko
2025-10-02T16:38:54.1911139Z INSTALL drivers/thunderbolt/thunderbolt.ko
2025-10-02T16:38:54.1912357Z INSTALL drivers/thermal/thermal-generic-adc.ko
2025-10-02T16:38:54.2040404Z INSTALL drivers/tty/cyclades.ko
2025-10-02T16:38:54.2067723Z INSTALL drivers/tty/ipwireless/ipwireless.ko
2025-10-02T16:38:54.2212944Z INSTALL drivers/tty/isicom.ko
2025-10-02T16:38:54.2470675Z INSTALL drivers/tty/moxa.ko
2025-10-02T16:38:54.2900326Z INSTALL drivers/tty/mxser.ko
2025-10-02T16:38:54.2918614Z INSTALL drivers/tty/n_hdlc.ko
2025-10-02T16:38:54.3014500Z INSTALL drivers/tty/n_tracerouter.ko
2025-10-02T16:38:54.3432320Z INSTALL drivers/tty/n_tracesink.ko
2025-10-02T16:38:54.3524876Z INSTALL drivers/tty/nozomi.ko
2025-10-02T16:38:54.3585100Z INSTALL drivers/tty/rocket.ko
2025-10-02T16:38:54.3706996Z INSTALL drivers/tty/serial/8250/8250_dw.ko
2025-10-02T16:38:54.4038075Z INSTALL drivers/tty/serial/8250/8250_exar.ko
2025-10-02T16:38:54.4381392Z INSTALL drivers/tty/serial/8250/8250_men_mcb.ko
2025-10-02T16:38:54.4428263Z INSTALL drivers/tty/serial/8250/serial_cs.ko
2025-10-02T16:38:54.4449764Z INSTALL drivers/tty/serial/altera_jtaguart.ko
2025-10-02T16:38:54.4828566Z INSTALL drivers/tty/serial/altera_uart.ko
2025-10-02T16:38:54.4883644Z INSTALL drivers/tty/serial/arc_uart.ko
2025-10-02T16:38:54.4940017Z INSTALL drivers/tty/serial/fsl_linflexuart.ko
2025-10-02T16:38:54.4998060Z INSTALL drivers/tty/serial/fsl_lpuart.ko
2025-10-02T16:38:54.5083902Z INSTALL drivers/tty/serial/ifx6x60.ko
2025-10-02T16:38:54.5395035Z INSTALL drivers/tty/serial/jsm/jsm.ko
2025-10-02T16:38:54.5400475Z INSTALL drivers/tty/serial/max3100.ko
2025-10-02T16:38:54.5486549Z INSTALL drivers/tty/serial/max310x.ko
2025-10-02T16:38:54.5777093Z INSTALL drivers/tty/serial/men_z135_uart.ko
2025-10-02T16:38:54.5780509Z INSTALL drivers/tty/serial/rp2.ko
2025-10-02T16:38:54.6226281Z INSTALL drivers/tty/serial/sc16is7xx.ko
2025-10-02T16:38:54.6233739Z INSTALL drivers/tty/serial/sccnxp.ko
2025-10-02T16:38:54.6302251Z INSTALL drivers/tty/serial/sprd_serial.ko
2025-10-02T16:38:54.6375739Z INSTALL drivers/tty/serial/uartlite.ko
2025-10-02T16:38:54.6420559Z INSTALL drivers/tty/synclink.ko
2025-10-02T16:38:54.6747120Z INSTALL drivers/tty/synclink_gt.ko
2025-10-02T16:38:54.6933277Z INSTALL drivers/tty/synclinkmp.ko
2025-10-02T16:38:54.6956837Z INSTALL drivers/tty/ttynull.ko
2025-10-02T16:38:54.7037126Z INSTALL drivers/uio/uio.ko
2025-10-02T16:38:54.7517740Z INSTALL drivers/uio/uio_aec.ko
2025-10-02T16:38:54.7568951Z INSTALL drivers/uio/uio_cif.ko
2025-10-02T16:38:54.7636051Z INSTALL drivers/uio/uio_dmem_genirq.ko
2025-10-02T16:38:54.7668060Z INSTALL drivers/uio/uio_hv_generic.ko
2025-10-02T16:38:54.7990852Z INSTALL drivers/uio/uio_mf624.ko
2025-10-02T16:38:54.8024175Z INSTALL drivers/uio/uio_netx.ko
2025-10-02T16:38:54.8048327Z INSTALL drivers/uio/uio_pci_generic.ko
2025-10-02T16:38:54.8194108Z INSTALL drivers/uio/uio_pdrv_genirq.ko
2025-10-02T16:38:54.8276371Z INSTALL drivers/uio/uio_pruss.ko
2025-10-02T16:38:54.8455927Z INSTALL drivers/uio/uio_sercos3.ko
2025-10-02T16:38:54.8503714Z INSTALL drivers/usb/atm/speedtch.ko
2025-10-02T16:38:54.8508285Z INSTALL drivers/usb/atm/cxacru.ko
2025-10-02T16:38:54.8799864Z INSTALL drivers/usb/atm/ueagle-atm.ko
2025-10-02T16:38:54.8806937Z INSTALL drivers/usb/atm/usbatm.ko
2025-10-02T16:38:54.9004656Z INSTALL drivers/usb/atm/xusbatm.ko
2025-10-02T16:38:54.9185034Z INSTALL drivers/usb/c67x00/c67x00.ko
2025-10-02T16:38:54.9277194Z INSTALL drivers/usb/class/cdc-acm.ko
2025-10-02T16:38:54.9560703Z INSTALL drivers/usb/class/cdc-wdm.ko
2025-10-02T16:38:54.9677327Z INSTALL drivers/usb/class/usblp.ko
2025-10-02T16:38:54.9905576Z INSTALL drivers/usb/class/usbtmc.ko
2025-10-02T16:38:54.9947467Z INSTALL drivers/usb/common/ulpi.ko
2025-10-02T16:38:55.0040053Z INSTALL drivers/usb/common/usb-conn-gpio.ko
2025-10-02T16:38:55.0331267Z INSTALL drivers/usb/core/ledtrig-usbport.ko
2025-10-02T16:38:55.0401577Z INSTALL drivers/usb/host/bcma-hcd.ko
2025-10-02T16:38:55.0516387Z INSTALL drivers/usb/host/ehci-fsl.ko
2025-10-02T16:38:55.0650743Z INSTALL drivers/usb/host/ehci-platform.ko
2025-10-02T16:38:55.0764643Z INSTALL drivers/usb/host/fotg210-hcd.ko
2025-10-02T16:38:55.0885507Z INSTALL drivers/usb/host/fsl-mph-dr-of.ko
2025-10-02T16:38:55.0905428Z INSTALL drivers/usb/host/isp116x-hcd.ko
2025-10-02T16:38:55.1087789Z INSTALL drivers/usb/host/max3421-hcd.ko
2025-10-02T16:38:55.1236829Z INSTALL drivers/usb/host/ohci-platform.ko
2025-10-02T16:38:55.1296678Z INSTALL drivers/usb/host/oxu210hp-hcd.ko
2025-10-02T16:38:55.1681211Z INSTALL drivers/usb/host/r8a66597-hcd.ko
2025-10-02T16:38:55.1781287Z INSTALL drivers/usb/host/sl811-hcd.ko
2025-10-02T16:38:55.1813986Z INSTALL drivers/usb/host/sl811_cs.ko
2025-10-02T16:38:55.1900526Z INSTALL drivers/usb/host/ssb-hcd.ko
2025-10-02T16:38:55.2248179Z INSTALL drivers/usb/host/u132-hcd.ko
2025-10-02T16:38:55.2434346Z INSTALL drivers/usb/host/xhci-pci-renesas.ko
2025-10-02T16:38:55.2478448Z INSTALL drivers/usb/host/xhci-pci.ko
2025-10-02T16:38:55.2511018Z INSTALL drivers/usb/host/xhci-plat-hcd.ko
2025-10-02T16:38:55.2535288Z INSTALL drivers/usb/image/mdc800.ko
2025-10-02T16:38:55.3078930Z INSTALL drivers/usb/image/microtek.ko
2025-10-02T16:38:55.3108854Z INSTALL drivers/usb/misc/adutux.ko
2025-10-02T16:38:55.3138664Z INSTALL drivers/usb/misc/apple-mfi-fastcharge.ko
2025-10-02T16:38:55.3179082Z INSTALL drivers/usb/misc/appledisplay.ko
2025-10-02T16:38:55.3180754Z INSTALL drivers/usb/misc/chaoskey.ko
2025-10-02T16:38:55.3573692Z INSTALL drivers/usb/misc/cypress_cy7c63.ko
2025-10-02T16:38:55.3732884Z INSTALL drivers/usb/misc/cytherm.ko
2025-10-02T16:38:55.3764317Z INSTALL drivers/usb/misc/ehset.ko
2025-10-02T16:38:55.3796401Z INSTALL drivers/usb/misc/emi26.ko
2025-10-02T16:38:55.3813468Z INSTALL drivers/usb/misc/emi62.ko
2025-10-02T16:38:55.4107065Z INSTALL drivers/usb/misc/ezusb.ko
2025-10-02T16:38:55.4274114Z INSTALL drivers/usb/misc/ftdi-elan.ko
2025-10-02T16:38:55.4293013Z INSTALL drivers/usb/misc/idmouse.ko
2025-10-02T16:38:55.4351366Z INSTALL drivers/usb/misc/iowarrior.ko
2025-10-02T16:38:55.4363914Z INSTALL drivers/usb/misc/isight_firmware.ko
2025-10-02T16:38:55.4560387Z INSTALL drivers/usb/misc/ldusb.ko
2025-10-02T16:38:55.4904819Z INSTALL drivers/usb/misc/legousbtower.ko
2025-10-02T16:38:55.4908541Z INSTALL drivers/usb/misc/lvstest.ko
2025-10-02T16:38:55.4984118Z INSTALL drivers/usb/misc/sisusbvga/sisusbvga.ko
2025-10-02T16:38:55.5120285Z INSTALL drivers/usb/misc/trancevibrator.ko
2025-10-02T16:38:55.5130727Z INSTALL drivers/usb/misc/usb251xb.ko
2025-10-02T16:38:55.5465708Z INSTALL drivers/usb/misc/usb3503.ko
2025-10-02T16:38:55.5484774Z INSTALL drivers/usb/misc/usb4604.ko
2025-10-02T16:38:55.5665176Z INSTALL drivers/usb/misc/usblcd.ko
2025-10-02T16:38:55.5736409Z INSTALL drivers/usb/misc/usbsevseg.ko
2025-10-02T16:38:55.5755761Z INSTALL drivers/usb/misc/usbtest.ko
2025-10-02T16:38:55.5985692Z INSTALL drivers/usb/misc/uss720.ko
2025-10-02T16:38:55.5991083Z INSTALL drivers/usb/misc/yurex.ko
2025-10-02T16:38:55.6296310Z INSTALL drivers/usb/mon/usbmon.ko
2025-10-02T16:38:55.6385853Z INSTALL drivers/usb/phy/phy-generic.ko
2025-10-02T16:38:55.6560877Z INSTALL drivers/usb/phy/phy-gpio-vbus-usb.ko
2025-10-02T16:38:55.6672435Z INSTALL drivers/usb/phy/phy-tahvo.ko
2025-10-02T16:38:55.6679050Z INSTALL drivers/usb/phy/phy-isp1301.ko
2025-10-02T16:38:55.7011324Z INSTALL drivers/usb/roles/intel-xhci-usb-role-switch.ko
2025-10-02T16:38:55.7012634Z INSTALL drivers/usb/roles/roles.ko
2025-10-02T16:38:55.7084283Z INSTALL drivers/usb/serial/aircable.ko
2025-10-02T16:38:55.7189165Z INSTALL drivers/usb/serial/ark3116.ko
2025-10-02T16:38:55.7232287Z INSTALL drivers/usb/serial/belkin_sa.ko
2025-10-02T16:38:55.7555105Z INSTALL drivers/usb/serial/ch341.ko
2025-10-02T16:38:55.7557827Z INSTALL drivers/usb/serial/cp210x.ko
2025-10-02T16:38:55.7594182Z INSTALL drivers/usb/serial/cyberjack.ko
2025-10-02T16:38:55.7814472Z INSTALL drivers/usb/serial/cypress_m8.ko
2025-10-02T16:38:55.7876162Z INSTALL drivers/usb/serial/digi_acceleport.ko
2025-10-02T16:38:55.8235945Z INSTALL drivers/usb/serial/f81232.ko
2025-10-02T16:38:55.8240559Z INSTALL drivers/usb/serial/empeg.ko
2025-10-02T16:38:55.8512997Z INSTALL drivers/usb/serial/f81534.ko
2025-10-02T16:38:55.8552423Z INSTALL drivers/usb/serial/ftdi_sio.ko
2025-10-02T16:38:55.8634262Z INSTALL drivers/usb/serial/garmin_gps.ko
2025-10-02T16:38:55.8738127Z INSTALL drivers/usb/serial/io_edgeport.ko
2025-10-02T16:38:55.8937635Z INSTALL drivers/usb/serial/io_ti.ko
2025-10-02T16:38:55.9174021Z INSTALL drivers/usb/serial/ipaq.ko
2025-10-02T16:38:55.9392634Z INSTALL drivers/usb/serial/ipw.ko
2025-10-02T16:38:55.9828144Z INSTALL drivers/usb/serial/ir-usb.ko
2025-10-02T16:38:55.9887278Z INSTALL drivers/usb/serial/iuu_phoenix.ko
2025-10-02T16:38:55.9909895Z INSTALL drivers/usb/serial/keyspan.ko
2025-10-02T16:38:56.0073423Z INSTALL drivers/usb/serial/keyspan_pda.ko
2025-10-02T16:38:56.0199459Z INSTALL drivers/usb/serial/kl5kusb105.ko
2025-10-02T16:38:56.0521901Z INSTALL drivers/usb/serial/kobil_sct.ko
2025-10-02T16:38:56.0703883Z INSTALL drivers/usb/serial/mct_u232.ko
2025-10-02T16:38:56.0711016Z INSTALL drivers/usb/serial/metro-usb.ko
2025-10-02T16:38:56.0815548Z INSTALL drivers/usb/serial/mos7720.ko
2025-10-02T16:38:56.0948677Z INSTALL drivers/usb/serial/mos7840.ko
2025-10-02T16:38:56.1131313Z INSTALL drivers/usb/serial/mxuport.ko
2025-10-02T16:38:56.1319044Z INSTALL drivers/usb/serial/navman.ko
2025-10-02T16:38:56.1330203Z INSTALL drivers/usb/serial/omninet.ko
2025-10-02T16:38:56.1707189Z INSTALL drivers/usb/serial/opticon.ko
2025-10-02T16:38:56.1762253Z INSTALL drivers/usb/serial/option.ko
2025-10-02T16:38:56.1845952Z INSTALL drivers/usb/serial/oti6858.ko
2025-10-02T16:38:56.1874615Z INSTALL drivers/usb/serial/pl2303.ko
2025-10-02T16:38:56.1893811Z INSTALL drivers/usb/serial/qcaux.ko
2025-10-02T16:38:56.2383757Z INSTALL drivers/usb/serial/qcserial.ko
2025-10-02T16:38:56.2390337Z INSTALL drivers/usb/serial/quatech2.ko
2025-10-02T16:38:56.2611640Z INSTALL drivers/usb/serial/safe_serial.ko
2025-10-02T16:38:56.2615163Z INSTALL drivers/usb/serial/sierra.ko
2025-10-02T16:38:56.2985537Z INSTALL drivers/usb/serial/spcp8x5.ko
2025-10-02T16:38:56.3040061Z INSTALL drivers/usb/serial/ssu100.ko
2025-10-02T16:38:56.3234098Z INSTALL drivers/usb/serial/symbolserial.ko
2025-10-02T16:38:56.3373875Z INSTALL drivers/usb/serial/upd78f0730.ko
2025-10-02T16:38:56.3376215Z INSTALL drivers/usb/serial/ti_usb_3410_5052.ko
2025-10-02T16:38:56.3467913Z INSTALL drivers/usb/serial/usb-serial-simple.ko
2025-10-02T16:38:56.3577628Z INSTALL drivers/usb/serial/usb_debug.ko
2025-10-02T16:38:56.3694524Z INSTALL drivers/usb/serial/usb_wwan.ko
2025-10-02T16:38:56.3925137Z INSTALL drivers/usb/serial/visor.ko
2025-10-02T16:38:56.3995180Z INSTALL drivers/usb/serial/whiteheat.ko
2025-10-02T16:38:56.4048854Z INSTALL drivers/usb/serial/wishbone-serial.ko
2025-10-02T16:38:56.4145558Z INSTALL drivers/usb/serial/xsens_mt.ko
2025-10-02T16:38:56.4453498Z INSTALL drivers/usb/storage/uas.ko
2025-10-02T16:38:56.4507228Z INSTALL drivers/usb/storage/ums-alauda.ko
2025-10-02T16:38:56.4598112Z INSTALL drivers/usb/storage/ums-cypress.ko
2025-10-02T16:38:56.4608547Z INSTALL drivers/usb/storage/ums-datafab.ko
2025-10-02T16:38:56.4830782Z INSTALL drivers/usb/storage/ums-eneub6250.ko
2025-10-02T16:38:56.5056949Z INSTALL drivers/usb/storage/ums-freecom.ko
2025-10-02T16:38:56.5103970Z INSTALL drivers/usb/storage/ums-isd200.ko
2025-10-02T16:38:56.5143032Z INSTALL drivers/usb/storage/ums-jumpshot.ko
2025-10-02T16:38:56.5215877Z INSTALL drivers/usb/storage/ums-karma.ko
2025-10-02T16:38:56.5530349Z INSTALL drivers/usb/storage/ums-onetouch.ko
2025-10-02T16:38:56.5602402Z INSTALL drivers/usb/storage/ums-realtek.ko
2025-10-02T16:38:56.5650561Z INSTALL drivers/usb/storage/ums-sddr09.ko
2025-10-02T16:38:56.5721404Z INSTALL drivers/usb/storage/ums-sddr55.ko
2025-10-02T16:38:56.5773761Z INSTALL drivers/usb/storage/ums-usbat.ko
2025-10-02T16:38:56.6156901Z INSTALL drivers/usb/storage/usb-storage.ko
2025-10-02T16:38:56.6266363Z INSTALL drivers/usb/typec/altmodes/typec_displayport.ko
2025-10-02T16:38:56.6309374Z INSTALL drivers/usb/typec/altmodes/typec_nvidia.ko
2025-10-02T16:38:56.6325907Z INSTALL drivers/usb/typec/hd3ss3220.ko
2025-10-02T16:38:56.6401332Z INSTALL drivers/usb/typec/mux/intel_pmc_mux.ko
2025-10-02T16:38:56.6860695Z INSTALL drivers/usb/typec/mux/pi3usb30532.ko
2025-10-02T16:38:56.6909238Z INSTALL drivers/usb/typec/stusb160x.ko
2025-10-02T16:38:56.6983197Z INSTALL drivers/usb/typec/tcpm/fusb302.ko
2025-10-02T16:38:56.6990263Z INSTALL drivers/usb/typec/tcpm/tcpci.ko
2025-10-02T16:38:56.7339647Z INSTALL drivers/usb/typec/tcpm/tcpci_maxim.ko
2025-10-02T16:38:56.7402152Z INSTALL drivers/usb/typec/tcpm/tcpci_mt6360.ko
2025-10-02T16:38:56.7514884Z INSTALL drivers/usb/typec/tcpm/tcpci_rt1711h.ko
2025-10-02T16:38:56.7645304Z INSTALL drivers/usb/typec/tcpm/tcpm.ko
2025-10-02T16:38:56.7874771Z INSTALL drivers/usb/typec/tcpm/typec_wcove.ko
2025-10-02T16:38:56.7875867Z INSTALL drivers/usb/typec/tps6598x.ko
2025-10-02T16:38:56.7933363Z INSTALL drivers/usb/typec/typec.ko
2025-10-02T16:38:56.7978052Z INSTALL drivers/usb/typec/ucsi/typec_ucsi.ko
2025-10-02T16:38:56.8445314Z INSTALL drivers/usb/typec/ucsi/ucsi_acpi.ko
2025-10-02T16:38:56.8559323Z INSTALL drivers/usb/typec/ucsi/ucsi_ccg.ko
2025-10-02T16:38:56.8562094Z INSTALL drivers/usb/usbip/usbip-core.ko
2025-10-02T16:38:56.8835297Z INSTALL drivers/usb/usbip/usbip-host.ko
2025-10-02T16:38:56.8921763Z INSTALL drivers/usb/usbip/vhci-hcd.ko
2025-10-02T16:38:56.8925620Z INSTALL drivers/vdpa/ifcvf/ifcvf.ko
2025-10-02T16:38:56.9270792Z INSTALL drivers/vdpa/mlx5/mlx5_vdpa.ko
2025-10-02T16:38:56.9365091Z INSTALL drivers/vdpa/vdpa.ko
2025-10-02T16:38:56.9628047Z INSTALL drivers/vdpa/vdpa_sim/vdpa_sim.ko
2025-10-02T16:38:56.9666882Z INSTALL drivers/vfio/mdev/mdev.ko
2025-10-02T16:38:56.9916914Z INSTALL drivers/vfio/mdev/vfio_mdev.ko
2025-10-02T16:38:57.0011842Z INSTALL drivers/vfio/pci/vfio-pci.ko
2025-10-02T16:38:57.0157309Z INSTALL drivers/vfio/vfio.ko
2025-10-02T16:38:57.0277829Z INSTALL drivers/vfio/vfio_iommu_type1.ko
2025-10-02T16:38:57.0286162Z INSTALL drivers/vfio/vfio_virqfd.ko
2025-10-02T16:38:57.0406974Z INSTALL drivers/vhost/vhost.ko
2025-10-02T16:38:57.0825092Z INSTALL drivers/vhost/vhost_iotlb.ko
2025-10-02T16:38:57.1054441Z INSTALL drivers/vhost/vhost_net.ko
2025-10-02T16:38:57.1065200Z INSTALL drivers/vhost/vhost_scsi.ko
2025-10-02T16:38:57.1116635Z INSTALL drivers/vhost/vhost_vdpa.ko
2025-10-02T16:38:57.1401935Z INSTALL drivers/vhost/vhost_vsock.ko
2025-10-02T16:38:57.1421346Z INSTALL drivers/vhost/vringh.ko
2025-10-02T16:38:57.1795655Z INSTALL drivers/video/backlight/88pm860x_bl.ko
2025-10-02T16:38:57.1882251Z INSTALL drivers/video/backlight/aat2870_bl.ko
2025-10-02T16:38:57.1950990Z INSTALL drivers/video/backlight/adp5520_bl.ko
2025-10-02T16:38:57.2079693Z INSTALL drivers/video/backlight/adp8860_bl.ko
2025-10-02T16:38:57.2153237Z INSTALL drivers/video/backlight/adp8870_bl.ko
2025-10-02T16:38:57.2397462Z INSTALL drivers/video/backlight/ams369fg06.ko
2025-10-02T16:38:57.2441306Z INSTALL drivers/video/backlight/apple_bl.ko
2025-10-02T16:38:57.2502603Z INSTALL drivers/video/backlight/arcxcnn_bl.ko
2025-10-02T16:38:57.2721741Z INSTALL drivers/video/backlight/as3711_bl.ko
2025-10-02T16:38:57.2861053Z INSTALL drivers/video/backlight/bd6107.ko
2025-10-02T16:38:57.2984098Z INSTALL drivers/video/backlight/da903x_bl.ko
2025-10-02T16:38:57.3023403Z INSTALL drivers/video/backlight/da9052_bl.ko
2025-10-02T16:38:57.3024770Z INSTALL drivers/video/backlight/gpio_backlight.ko
2025-10-02T16:38:57.3302245Z INSTALL drivers/video/backlight/hx8357.ko
2025-10-02T16:38:57.3309210Z INSTALL drivers/video/backlight/ili922x.ko
2025-10-02T16:38:57.3506020Z INSTALL drivers/video/backlight/ili9320.ko
2025-10-02T16:38:57.3565582Z INSTALL drivers/video/backlight/kb3886_bl.ko
2025-10-02T16:38:57.3595468Z INSTALL drivers/video/backlight/ktd253-backlight.ko
2025-10-02T16:38:57.3791336Z INSTALL drivers/video/backlight/l4f00242t03.ko
2025-10-02T16:38:57.3843974Z INSTALL drivers/video/backlight/lcd.ko
2025-10-02T16:38:57.4026946Z INSTALL drivers/video/backlight/lm3533_bl.ko
2025-10-02T16:38:57.4054115Z INSTALL drivers/video/backlight/lm3630a_bl.ko
2025-10-02T16:38:57.4062362Z INSTALL drivers/video/backlight/lm3639_bl.ko
2025-10-02T16:38:57.4450897Z INSTALL drivers/video/backlight/lms283gf05.ko
2025-10-02T16:38:57.4479958Z INSTALL drivers/video/backlight/lms501kf03.ko
2025-10-02T16:38:57.4599748Z INSTALL drivers/video/backlight/lp855x_bl.ko
2025-10-02T16:38:57.4641781Z INSTALL drivers/video/backlight/lp8788_bl.ko
2025-10-02T16:38:57.4700652Z INSTALL drivers/video/backlight/ltv350qv.ko
2025-10-02T16:38:57.4939279Z INSTALL drivers/video/backlight/lv5207lp.ko
2025-10-02T16:38:57.5055590Z INSTALL drivers/video/backlight/max8925_bl.ko
2025-10-02T16:38:57.5143585Z INSTALL drivers/video/backlight/otm3225a.ko
2025-10-02T16:38:57.5168108Z INSTALL drivers/video/backlight/pandora_bl.ko
2025-10-02T16:38:57.5184522Z INSTALL drivers/video/backlight/pcf50633-backlight.ko
2025-10-02T16:38:57.5467016Z INSTALL drivers/video/backlight/platform_lcd.ko
2025-10-02T16:38:57.5547526Z INSTALL drivers/video/backlight/pwm_bl.ko
2025-10-02T16:38:57.5647687Z INSTALL drivers/video/backlight/qcom-wled.ko
2025-10-02T16:38:57.5682450Z INSTALL drivers/video/backlight/rave-sp-backlight.ko
2025-10-02T16:38:57.5737568Z INSTALL drivers/video/backlight/sky81452-backlight.ko
2025-10-02T16:38:57.5996342Z INSTALL drivers/video/backlight/tdo24m.ko
2025-10-02T16:38:57.6145221Z INSTALL drivers/video/backlight/vgg2432a4.ko
2025-10-02T16:38:57.6158364Z INSTALL drivers/video/backlight/wm831x_bl.ko
2025-10-02T16:38:57.6174951Z INSTALL drivers/video/fbdev/core/fb_sys_fops.ko
2025-10-02T16:38:57.6213335Z INSTALL drivers/video/fbdev/core/syscopyarea.ko
2025-10-02T16:38:57.6610730Z INSTALL drivers/video/fbdev/core/sysfillrect.ko
2025-10-02T16:38:57.6632172Z INSTALL drivers/video/fbdev/core/sysimgblt.ko
2025-10-02T16:38:57.6671783Z INSTALL drivers/video/fbdev/hyperv_fb.ko
2025-10-02T16:38:57.6690009Z INSTALL drivers/video/fbdev/xen-fbfront.ko
2025-10-02T16:38:57.6703739Z INSTALL drivers/virt/nitro_enclaves/nitro_enclaves.ko
2025-10-02T16:38:57.7100319Z INSTALL drivers/virt/vboxguest/vboxguest.ko
2025-10-02T16:38:57.7222502Z INSTALL drivers/virtio/virtio_balloon.ko
2025-10-02T16:38:57.7319189Z INSTALL drivers/virtio/virtio_dma_buf.ko
2025-10-02T16:38:57.7370808Z INSTALL drivers/virtio/virtio_input.ko
2025-10-02T16:38:57.7556104Z INSTALL drivers/virtio/virtio_mem.ko
2025-10-02T16:38:57.7754712Z INSTALL drivers/virtio/virtio_mmio.ko
2025-10-02T16:38:57.7891101Z INSTALL drivers/virtio/virtio_pci.ko
2025-10-02T16:38:57.7919670Z INSTALL drivers/virtio/virtio_vdpa.ko
2025-10-02T16:38:57.7992917Z INSTALL drivers/visorbus/visorbus.ko
2025-10-02T16:38:57.8284516Z INSTALL drivers/w1/masters/ds1wm.ko
2025-10-02T16:38:57.8339446Z INSTALL drivers/w1/masters/ds2482.ko
2025-10-02T16:38:57.8408889Z INSTALL drivers/w1/masters/ds2490.ko
2025-10-02T16:38:57.8694778Z INSTALL drivers/w1/masters/matrox_w1.ko
2025-10-02T16:38:57.8964823Z INSTALL drivers/w1/masters/sgi_w1.ko
2025-10-02T16:38:57.8965932Z INSTALL drivers/w1/masters/w1-gpio.ko
2025-10-02T16:38:57.9024704Z INSTALL drivers/w1/slaves/w1_ds2405.ko
2025-10-02T16:38:57.9033972Z INSTALL drivers/w1/slaves/w1_ds2406.ko
2025-10-02T16:38:57.9142537Z INSTALL drivers/w1/slaves/w1_ds2408.ko
2025-10-02T16:38:57.9448322Z INSTALL drivers/w1/slaves/w1_ds2413.ko
2025-10-02T16:38:57.9520717Z INSTALL drivers/w1/slaves/w1_ds2423.ko
2025-10-02T16:38:57.9522184Z INSTALL drivers/w1/slaves/w1_ds2430.ko
2025-10-02T16:38:57.9564318Z INSTALL drivers/w1/slaves/w1_ds2431.ko
2025-10-02T16:38:57.9767610Z INSTALL drivers/w1/slaves/w1_ds2433.ko
2025-10-02T16:38:57.9976485Z INSTALL drivers/w1/slaves/w1_ds2438.ko
2025-10-02T16:38:58.0030916Z INSTALL drivers/w1/slaves/w1_ds250x.ko
2025-10-02T16:38:58.0062314Z INSTALL drivers/w1/slaves/w1_ds2780.ko
2025-10-02T16:38:58.0114629Z INSTALL drivers/w1/slaves/w1_ds2781.ko
2025-10-02T16:38:58.0300496Z INSTALL drivers/w1/slaves/w1_ds2805.ko
2025-10-02T16:38:58.0518259Z INSTALL drivers/w1/slaves/w1_ds28e04.ko
2025-10-02T16:38:58.0544862Z INSTALL drivers/w1/slaves/w1_ds28e17.ko
2025-10-02T16:38:58.0556002Z INSTALL drivers/w1/slaves/w1_smem.ko
2025-10-02T16:38:58.0567155Z INSTALL drivers/w1/slaves/w1_therm.ko
2025-10-02T16:38:58.0930560Z INSTALL drivers/w1/wire.ko
2025-10-02T16:38:58.1060226Z INSTALL drivers/watchdog/acquirewdt.ko
2025-10-02T16:38:58.1113205Z INSTALL drivers/watchdog/advantechwdt.ko
2025-10-02T16:38:58.1116473Z INSTALL drivers/watchdog/alim1535_wdt.ko
2025-10-02T16:38:58.1303707Z INSTALL drivers/watchdog/alim7101_wdt.ko
2025-10-02T16:38:58.1662149Z INSTALL drivers/watchdog/cadence_wdt.ko
2025-10-02T16:38:58.1664702Z INSTALL drivers/watchdog/cpu5wdt.ko
2025-10-02T16:38:58.1687261Z INSTALL drivers/watchdog/da9052_wdt.ko
2025-10-02T16:38:58.1838416Z INSTALL drivers/watchdog/da9055_wdt.ko
2025-10-02T16:38:58.1964875Z INSTALL drivers/watchdog/da9062_wdt.ko
2025-10-02T16:38:58.2191980Z INSTALL drivers/watchdog/da9063_wdt.ko
2025-10-02T16:38:58.2229069Z INSTALL drivers/watchdog/dw_wdt.ko
2025-10-02T16:38:58.2271193Z INSTALL drivers/watchdog/ebc-c384_wdt.ko
2025-10-02T16:38:58.2301535Z INSTALL drivers/watchdog/eurotechwdt.ko
2025-10-02T16:38:58.2455641Z INSTALL drivers/watchdog/f71808e_wdt.ko
2025-10-02T16:38:58.2724502Z INSTALL drivers/watchdog/hpwdt.ko
2025-10-02T16:38:58.2760435Z INSTALL drivers/watchdog/i6300esb.ko
2025-10-02T16:38:58.2830381Z INSTALL drivers/watchdog/iTCO_vendor_support.ko
2025-10-02T16:38:58.2856484Z INSTALL drivers/watchdog/iTCO_wdt.ko
2025-10-02T16:38:58.3133696Z INSTALL drivers/watchdog/ib700wdt.ko
2025-10-02T16:38:58.3291403Z INSTALL drivers/watchdog/ibmasr.ko
2025-10-02T16:38:58.3299254Z INSTALL drivers/watchdog/ie6xx_wdt.ko
2025-10-02T16:38:58.3354777Z INSTALL drivers/watchdog/it8712f_wdt.ko
2025-10-02T16:38:58.3466974Z INSTALL drivers/watchdog/it87_wdt.ko
2025-10-02T16:38:58.3634872Z INSTALL drivers/watchdog/kempld_wdt.ko
2025-10-02T16:38:58.3818066Z INSTALL drivers/watchdog/machzwd.ko
2025-10-02T16:38:58.3837957Z INSTALL drivers/watchdog/max63xx_wdt.ko
2025-10-02T16:38:58.3898262Z INSTALL drivers/watchdog/mei_wdt.ko
2025-10-02T16:38:58.4041586Z INSTALL drivers/watchdog/mena21_wdt.ko
2025-10-02T16:38:58.4282572Z INSTALL drivers/watchdog/menf21bmc_wdt.ko
2025-10-02T16:38:58.4343771Z INSTALL drivers/watchdog/menz69_wdt.ko
2025-10-02T16:38:58.4354845Z INSTALL drivers/watchdog/mlx_wdt.ko
2025-10-02T16:38:58.4456850Z INSTALL drivers/watchdog/ni903x_wdt.ko
2025-10-02T16:38:58.4645745Z INSTALL drivers/watchdog/nic7018_wdt.ko
2025-10-02T16:38:58.4759214Z INSTALL drivers/watchdog/nv_tco.ko
2025-10-02T16:38:58.4849035Z INSTALL drivers/watchdog/of_xilinx_wdt.ko
2025-10-02T16:38:58.4904018Z INSTALL drivers/watchdog/pc87413_wdt.ko
2025-10-02T16:38:58.4977905Z INSTALL drivers/watchdog/pcwd_pci.ko
2025-10-02T16:38:58.5140176Z INSTALL drivers/watchdog/pcwd_usb.ko
2025-10-02T16:38:58.5318644Z INSTALL drivers/watchdog/pretimeout_noop.ko
2025-10-02T16:38:58.5367864Z INSTALL drivers/watchdog/rave-sp-wdt.ko
2025-10-02T16:38:58.5490518Z INSTALL drivers/watchdog/retu_wdt.ko
2025-10-02T16:38:58.5626893Z INSTALL drivers/watchdog/sbc60xxwdt.ko
2025-10-02T16:38:58.5791665Z INSTALL drivers/watchdog/sbc_epx_c3.ko
2025-10-02T16:38:58.5821248Z INSTALL drivers/watchdog/sbc_fitpc2_wdt.ko
2025-10-02T16:38:58.5860929Z INSTALL drivers/watchdog/sc1200wdt.ko
2025-10-02T16:38:58.5978936Z INSTALL drivers/watchdog/sch311x_wdt.ko
2025-10-02T16:38:58.6280557Z INSTALL drivers/watchdog/smsc37b787_wdt.ko
2025-10-02T16:38:58.6323575Z INSTALL drivers/watchdog/softdog.ko
2025-10-02T16:38:58.6330855Z INSTALL drivers/watchdog/sp5100_tco.ko
2025-10-02T16:38:58.6475989Z INSTALL drivers/watchdog/tqmx86_wdt.ko
2025-10-02T16:38:58.6487595Z INSTALL drivers/watchdog/twl4030_wdt.ko
2025-10-02T16:38:58.6837051Z INSTALL drivers/watchdog/via_wdt.ko
2025-10-02T16:38:58.6880846Z INSTALL drivers/watchdog/w83627hf_wdt.ko
2025-10-02T16:38:58.6905393Z INSTALL drivers/watchdog/w83877f_wdt.ko
2025-10-02T16:38:58.6976860Z INSTALL drivers/watchdog/w83977f_wdt.ko
2025-10-02T16:38:58.7035341Z INSTALL drivers/watchdog/wafer5823wdt.ko
2025-10-02T16:38:58.7426297Z INSTALL drivers/watchdog/wdat_wdt.ko
2025-10-02T16:38:58.7466002Z INSTALL drivers/watchdog/wdt_pci.ko
2025-10-02T16:38:58.7491627Z INSTALL drivers/watchdog/wm831x_wdt.ko
2025-10-02T16:38:58.7536501Z INSTALL drivers/watchdog/wm8350_wdt.ko
2025-10-02T16:38:58.7541352Z INSTALL drivers/watchdog/xen_wdt.ko
2025-10-02T16:38:58.8026234Z INSTALL drivers/watchdog/ziirave_wdt.ko
2025-10-02T16:38:58.8064943Z INSTALL drivers/xen/pvcalls-front.ko
2025-10-02T16:38:58.8080349Z INSTALL drivers/xen/xen-acpi-processor.ko
2025-10-02T16:38:58.8102331Z INSTALL drivers/xen/xen-evtchn.ko
2025-10-02T16:38:58.8122265Z INSTALL drivers/xen/xen-front-pgdir-shbuf.ko
2025-10-02T16:38:58.8607998Z INSTALL drivers/xen/xen-gntalloc.ko
2025-10-02T16:38:58.8680444Z INSTALL drivers/xen/xen-gntdev.ko
2025-10-02T16:38:58.8696638Z INSTALL drivers/xen/xen-pciback/xen-pciback.ko
2025-10-02T16:38:58.8773271Z INSTALL drivers/xen/xen-privcmd.ko
2025-10-02T16:38:58.8812005Z INSTALL drivers/xen/xen-scsiback.ko
2025-10-02T16:38:58.9249712Z INSTALL drivers/xen/xenfs/xenfs.ko
2025-10-02T16:38:58.9544434Z INSTALL fs/9p/9p.ko
2025-10-02T16:38:58.9629216Z INSTALL fs/affs/affs.ko
2025-10-02T16:38:58.9653479Z INSTALL fs/afs/kafs.ko
2025-10-02T16:38:58.9906599Z INSTALL fs/befs/befs.ko
2025-10-02T16:38:58.9965947Z INSTALL fs/btrfs/btrfs.ko
2025-10-02T16:38:59.0705233Z INSTALL fs/cachefiles/cachefiles.ko
2025-10-02T16:38:59.0812177Z INSTALL fs/ceph/ceph.ko
2025-10-02T16:38:59.0913830Z INSTALL fs/cifs/cifs.ko
2025-10-02T16:38:59.2049459Z INSTALL fs/coda/coda.ko
2025-10-02T16:38:59.3506978Z INSTALL fs/cramfs/cramfs.ko
2025-10-02T16:38:59.3596069Z INSTALL fs/dlm/dlm.ko
2025-10-02T16:38:59.4606980Z INSTALL fs/ecryptfs/ecryptfs.ko
2025-10-02T16:38:59.6377873Z INSTALL fs/erofs/erofs.ko
2025-10-02T16:38:59.6506398Z INSTALL fs/exfat/exfat.ko
2025-10-02T16:38:59.6825405Z INSTALL fs/ext4/ext4.ko
2025-10-02T16:38:59.7668166Z INSTALL fs/f2fs/f2fs.ko
2025-10-02T16:38:59.8147042Z INSTALL fs/fat/fat.ko
2025-10-02T16:39:00.0247455Z INSTALL fs/fat/msdos.ko
2025-10-02T16:39:00.1176236Z INSTALL fs/fat/vfat.ko
2025-10-02T16:39:00.2217006Z INSTALL fs/fscache/fscache.ko
2025-10-02T16:39:00.3267424Z INSTALL fs/fuse/cuse.ko
2025-10-02T16:39:00.4170951Z INSTALL fs/fuse/fuse.ko
2025-10-02T16:39:00.4712860Z INSTALL fs/fuse/virtiofs.ko
2025-10-02T16:39:00.5234861Z INSTALL fs/gfs2/gfs2.ko
2025-10-02T16:39:00.5867371Z INSTALL fs/hfs/hfs.ko
2025-10-02T16:39:00.5903817Z INSTALL fs/hfsplus/hfsplus.ko
2025-10-02T16:39:00.6362061Z INSTALL fs/isofs/isofs.ko
2025-10-02T16:39:00.6575275Z INSTALL fs/jbd2/jbd2.ko
2025-10-02T16:39:00.7161953Z INSTALL fs/jffs2/jffs2.ko
2025-10-02T16:39:00.7406869Z INSTALL fs/jfs/jfs.ko
2025-10-02T16:39:00.7676961Z INSTALL fs/lockd/lockd.ko
2025-10-02T16:39:00.8580751Z INSTALL fs/mbcache.ko
2025-10-02T16:39:00.9363267Z INSTALL fs/minix/minix.ko
2025-10-02T16:39:00.9413381Z INSTALL fs/nfs/blocklayout/blocklayoutdriver.ko
2025-10-02T16:39:00.9516723Z INSTALL fs/nfs/filelayout/nfs_layout_nfsv41_files.ko
2025-10-02T16:39:00.9884271Z INSTALL fs/nfs/flexfilelayout/nfs_layout_flexfiles.ko
2025-10-02T16:39:00.9929145Z INSTALL fs/nfs/nfs.ko
2025-10-02T16:39:01.0251195Z INSTALL fs/nfs/nfsv2.ko
2025-10-02T16:39:01.0279954Z INSTALL fs/nfs/nfsv3.ko
2025-10-02T16:39:01.0333367Z INSTALL fs/nfs/nfsv4.ko
2025-10-02T16:39:01.1027534Z INSTALL fs/nfs_common/grace.ko
2025-10-02T16:39:01.1212088Z INSTALL fs/nfs_common/nfs_acl.ko
2025-10-02T16:39:01.1441731Z INSTALL fs/nfsd/nfsd.ko
2025-10-02T16:39:01.1607130Z INSTALL fs/nilfs2/nilfs2.ko
2025-10-02T16:39:01.1740351Z INSTALL fs/nls/mac-celtic.ko
2025-10-02T16:39:01.2576984Z INSTALL fs/nls/mac-centeuro.ko
2025-10-02T16:39:01.3367357Z INSTALL fs/nls/mac-croatian.ko
2025-10-02T16:39:01.4086088Z INSTALL fs/nls/mac-cyrillic.ko
2025-10-02T16:39:01.4249639Z INSTALL fs/nls/mac-gaelic.ko
2025-10-02T16:39:01.4591699Z INSTALL fs/nls/mac-greek.ko
2025-10-02T16:39:01.4611235Z INSTALL fs/nls/mac-iceland.ko
2025-10-02T16:39:01.4787960Z INSTALL fs/nls/mac-inuit.ko
2025-10-02T16:39:01.5168845Z INSTALL fs/nls/mac-roman.ko
2025-10-02T16:39:01.5278537Z INSTALL fs/nls/mac-romanian.ko
2025-10-02T16:39:01.5301037Z INSTALL fs/nls/mac-turkish.ko
2025-10-02T16:39:01.5666611Z INSTALL fs/nls/nls_cp1250.ko
2025-10-02T16:39:01.5826604Z INSTALL fs/nls/nls_cp1251.ko
2025-10-02T16:39:01.5908613Z INSTALL fs/nls/nls_cp1255.ko
2025-10-02T16:39:01.6242772Z INSTALL fs/nls/nls_cp737.ko
2025-10-02T16:39:01.6353772Z INSTALL fs/nls/nls_cp775.ko
2025-10-02T16:39:01.6595109Z INSTALL fs/nls/nls_cp850.ko
2025-10-02T16:39:01.6918347Z INSTALL fs/nls/nls_cp852.ko
2025-10-02T16:39:01.7007252Z INSTALL fs/nls/nls_cp855.ko
2025-10-02T16:39:01.7563376Z INSTALL fs/nls/nls_cp857.ko
2025-10-02T16:39:01.7564990Z INSTALL fs/nls/nls_cp860.ko
2025-10-02T16:39:01.7578988Z INSTALL fs/nls/nls_cp861.ko
2025-10-02T16:39:01.7691866Z INSTALL fs/nls/nls_cp862.ko
2025-10-02T16:39:01.8251386Z INSTALL fs/nls/nls_cp863.ko
2025-10-02T16:39:01.8265170Z INSTALL fs/nls/nls_cp864.ko
2025-10-02T16:39:01.8269846Z INSTALL fs/nls/nls_cp865.ko
2025-10-02T16:39:01.8339380Z INSTALL fs/nls/nls_cp866.ko
2025-10-02T16:39:01.8484514Z INSTALL fs/nls/nls_cp869.ko
2025-10-02T16:39:01.8835935Z INSTALL fs/nls/nls_cp874.ko
2025-10-02T16:39:01.8886313Z INSTALL fs/nls/nls_cp932.ko
2025-10-02T16:39:01.9007296Z INSTALL fs/nls/nls_cp936.ko
2025-10-02T16:39:01.9030449Z INSTALL fs/nls/nls_cp949.ko
2025-10-02T16:39:01.9115714Z INSTALL fs/nls/nls_cp950.ko
2025-10-02T16:39:01.9586620Z INSTALL fs/nls/nls_euc-jp.ko
2025-10-02T16:39:02.0007476Z INSTALL fs/nls/nls_iso8859-1.ko
2025-10-02T16:39:02.0009807Z INSTALL fs/nls/nls_iso8859-13.ko
2025-10-02T16:39:02.0202796Z INSTALL fs/nls/nls_iso8859-14.ko
2025-10-02T16:39:02.0275154Z INSTALL fs/nls/nls_iso8859-15.ko
2025-10-02T16:39:02.0293058Z INSTALL fs/nls/nls_iso8859-2.ko
2025-10-02T16:39:02.0456418Z INSTALL fs/nls/nls_iso8859-3.ko
2025-10-02T16:39:02.0511856Z INSTALL fs/nls/nls_iso8859-4.ko
2025-10-02T16:39:02.0668593Z INSTALL fs/nls/nls_iso8859-5.ko
2025-10-02T16:39:02.0719988Z INSTALL fs/nls/nls_iso8859-6.ko
2025-10-02T16:39:02.0764148Z INSTALL fs/nls/nls_iso8859-7.ko
2025-10-02T16:39:02.0907341Z INSTALL fs/nls/nls_iso8859-9.ko
2025-10-02T16:39:02.1000473Z INSTALL fs/nls/nls_koi8-r.ko
2025-10-02T16:39:02.1150975Z INSTALL fs/nls/nls_koi8-ru.ko
2025-10-02T16:39:02.1245794Z INSTALL fs/nls/nls_koi8-u.ko
2025-10-02T16:39:02.1280728Z INSTALL fs/nls/nls_utf8.ko
2025-10-02T16:39:02.1463720Z INSTALL fs/ocfs2/cluster/ocfs2_nodemanager.ko
2025-10-02T16:39:02.1548595Z INSTALL fs/ocfs2/dlm/ocfs2_dlm.ko
2025-10-02T16:39:02.1559063Z INSTALL fs/ocfs2/dlmfs/ocfs2_dlmfs.ko
2025-10-02T16:39:02.1659445Z INSTALL fs/ocfs2/ocfs2.ko
2025-10-02T16:39:02.1788866Z INSTALL fs/ocfs2/ocfs2_stack_o2cb.ko
2025-10-02T16:39:02.2470492Z INSTALL fs/ocfs2/ocfs2_stack_user.ko
2025-10-02T16:39:02.2548697Z INSTALL fs/ocfs2/ocfs2_stackglue.ko
2025-10-02T16:39:02.2907869Z INSTALL fs/omfs/omfs.ko
2025-10-02T16:39:02.3170592Z INSTALL fs/orangefs/orangefs.ko
2025-10-02T16:39:02.3478381Z INSTALL fs/overlayfs/overlay.ko
2025-10-02T16:39:02.3754934Z INSTALL fs/pstore/ramoops.ko
2025-10-02T16:39:02.3844369Z INSTALL fs/quota/quota_tree.ko
2025-10-02T16:39:02.4510866Z INSTALL fs/quota/quota_v1.ko
2025-10-02T16:39:02.4739269Z INSTALL fs/quota/quota_v2.ko
2025-10-02T16:39:02.4935821Z INSTALL fs/reiserfs/reiserfs.ko
2025-10-02T16:39:02.5135287Z INSTALL fs/romfs/romfs.ko
2025-10-02T16:39:02.5332843Z INSTALL fs/squashfs/squashfs.ko
2025-10-02T16:39:02.5445165Z INSTALL fs/ubifs/ubifs.ko
2025-10-02T16:39:02.5980821Z INSTALL fs/udf/udf.ko
2025-10-02T16:39:02.6806332Z INSTALL fs/ufs/ufs.ko
2025-10-02T16:39:02.7847897Z INSTALL fs/vboxsf/vboxsf.ko
2025-10-02T16:39:02.8298602Z INSTALL fs/xfs/xfs.ko
2025-10-02T16:39:02.8492057Z INSTALL fs/zonefs/zonefs.ko
2025-10-02T16:39:02.8977319Z INSTALL kernel/kheaders.ko
2025-10-02T16:39:02.9357940Z INSTALL lib/842/842_compress.ko
2025-10-02T16:39:02.9771996Z INSTALL lib/842/842_decompress.ko
2025-10-02T16:39:03.0099290Z INSTALL lib/crc-itu-t.ko
2025-10-02T16:39:03.0588732Z INSTALL lib/crc16.ko
2025-10-02T16:39:03.0830362Z INSTALL lib/crc4.ko
2025-10-02T16:39:03.1135903Z INSTALL lib/crc64.ko
2025-10-02T16:39:03.1505064Z INSTALL lib/crc7.ko
2025-10-02T16:39:03.1931959Z INSTALL lib/crc8.ko
2025-10-02T16:39:03.2120400Z INSTALL lib/crypto/libarc4.ko
2025-10-02T16:39:03.2433390Z INSTALL lib/crypto/libchacha.ko
2025-10-02T16:39:03.2446728Z INSTALL lib/crypto/libchacha20poly1305.ko
2025-10-02T16:39:03.2621568Z INSTALL lib/crypto/libcurve25519-generic.ko
2025-10-02T16:39:03.3037984Z INSTALL lib/crypto/libcurve25519.ko
2025-10-02T16:39:03.3109703Z INSTALL lib/crypto/libdes.ko
2025-10-02T16:39:03.3188378Z INSTALL lib/crypto/libpoly1305.ko
2025-10-02T16:39:03.3620798Z INSTALL lib/libcrc32c.ko
2025-10-02T16:39:03.3894422Z INSTALL lib/lru_cache.ko
2025-10-02T16:39:03.3913325Z INSTALL lib/lz4/lz4hc_compress.ko
2025-10-02T16:39:03.4013622Z INSTALL lib/math/cordic.ko
2025-10-02T16:39:03.4486793Z INSTALL lib/objagg.ko
2025-10-02T16:39:03.4515553Z INSTALL lib/parman.ko
2025-10-02T16:39:03.4576409Z INSTALL lib/raid6/raid6_pq.ko
2025-10-02T16:39:03.5213665Z INSTALL lib/reed_solomon/reed_solomon.ko
2025-10-02T16:39:03.5343511Z INSTALL lib/ts_bm.ko
2025-10-02T16:39:03.5791902Z INSTALL lib/ts_fsm.ko
2025-10-02T16:39:03.5918750Z INSTALL lib/ts_kmp.ko
2025-10-02T16:39:03.5953084Z INSTALL mm/hwpoison-inject.ko
2025-10-02T16:39:03.6345357Z INSTALL net/6lowpan/6lowpan.ko
2025-10-02T16:39:03.6443902Z INSTALL net/6lowpan/nhc_dest.ko
2025-10-02T16:39:03.6472249Z INSTALL net/6lowpan/nhc_fragment.ko
2025-10-02T16:39:03.7000861Z INSTALL net/6lowpan/nhc_ghc_ext_dest.ko
2025-10-02T16:39:03.7017807Z INSTALL net/6lowpan/nhc_ghc_ext_frag.ko
2025-10-02T16:39:03.7339771Z INSTALL net/6lowpan/nhc_ghc_ext_hop.ko
2025-10-02T16:39:03.7544642Z INSTALL net/6lowpan/nhc_ghc_ext_route.ko
2025-10-02T16:39:03.7576023Z INSTALL net/6lowpan/nhc_ghc_icmpv6.ko
2025-10-02T16:39:03.7732500Z INSTALL net/6lowpan/nhc_ghc_udp.ko
2025-10-02T16:39:03.8106735Z INSTALL net/6lowpan/nhc_hop.ko
2025-10-02T16:39:03.8109056Z INSTALL net/6lowpan/nhc_ipv6.ko
2025-10-02T16:39:03.8324529Z INSTALL net/6lowpan/nhc_mobility.ko
2025-10-02T16:39:03.8541737Z INSTALL net/6lowpan/nhc_routing.ko
2025-10-02T16:39:03.8625388Z INSTALL net/6lowpan/nhc_udp.ko
2025-10-02T16:39:03.8962082Z INSTALL net/802/fddi.ko
2025-10-02T16:39:03.9093730Z INSTALL net/802/garp.ko
2025-10-02T16:39:03.9172468Z INSTALL net/802/mrp.ko
2025-10-02T16:39:03.9440529Z INSTALL net/802/p8022.ko
2025-10-02T16:39:03.9795405Z INSTALL net/802/psnap.ko
2025-10-02T16:39:03.9851152Z INSTALL net/802/stp.ko
2025-10-02T16:39:03.9984247Z INSTALL net/8021q/8021q.ko
2025-10-02T16:39:04.0303157Z INSTALL net/9p/9pnet.ko
2025-10-02T16:39:04.0405303Z INSTALL net/9p/9pnet_rdma.ko
2025-10-02T16:39:04.1130602Z INSTALL net/9p/9pnet_virtio.ko
2025-10-02T16:39:04.1255417Z INSTALL net/9p/9pnet_xen.ko
2025-10-02T16:39:04.1404846Z INSTALL net/appletalk/appletalk.ko
2025-10-02T16:39:04.1483979Z INSTALL net/atm/atm.ko
2025-10-02T16:39:04.1845928Z INSTALL net/atm/br2684.ko
2025-10-02T16:39:04.1932293Z INSTALL net/atm/clip.ko
2025-10-02T16:39:04.2368203Z INSTALL net/atm/lec.ko
2025-10-02T16:39:04.2624178Z INSTALL net/atm/mpoa.ko
2025-10-02T16:39:04.2633617Z INSTALL net/atm/pppoatm.ko
2025-10-02T16:39:04.2786197Z INSTALL net/ax25/ax25.ko
2025-10-02T16:39:04.3241783Z INSTALL net/batman-adv/batman-adv.ko
2025-10-02T16:39:04.3253509Z INSTALL net/bluetooth/bluetooth.ko
2025-10-02T16:39:04.3647945Z INSTALL net/bluetooth/bluetooth_6lowpan.ko
2025-10-02T16:39:04.4208377Z INSTALL net/bluetooth/bnep/bnep.ko
2025-10-02T16:39:04.4503387Z INSTALL net/bluetooth/cmtp/cmtp.ko
2025-10-02T16:39:04.4981487Z INSTALL net/bluetooth/hidp/hidp.ko
2025-10-02T16:39:04.5527572Z INSTALL net/bluetooth/rfcomm/rfcomm.ko
2025-10-02T16:39:04.5744741Z INSTALL net/bridge/br_netfilter.ko
2025-10-02T16:39:04.5954525Z INSTALL net/bridge/bridge.ko
2025-10-02T16:39:04.6792271Z INSTALL net/bridge/netfilter/ebt_802_3.ko
2025-10-02T16:39:04.6846315Z INSTALL net/bridge/netfilter/ebt_among.ko
2025-10-02T16:39:04.7381595Z INSTALL net/bridge/netfilter/ebt_arp.ko
2025-10-02T16:39:04.7385486Z INSTALL net/bridge/netfilter/ebt_arpreply.ko
2025-10-02T16:39:04.7481700Z INSTALL net/bridge/netfilter/ebt_dnat.ko
2025-10-02T16:39:04.7883132Z INSTALL net/bridge/netfilter/ebt_ip.ko
2025-10-02T16:39:04.7891999Z INSTALL net/bridge/netfilter/ebt_ip6.ko
2025-10-02T16:39:04.8071827Z INSTALL net/bridge/netfilter/ebt_limit.ko
2025-10-02T16:39:04.8446853Z INSTALL net/bridge/netfilter/ebt_log.ko
2025-10-02T16:39:04.8500791Z INSTALL net/bridge/netfilter/ebt_mark.ko
2025-10-02T16:39:04.8553827Z INSTALL net/bridge/netfilter/ebt_mark_m.ko
2025-10-02T16:39:04.9019993Z INSTALL net/bridge/netfilter/ebt_nflog.ko
2025-10-02T16:39:04.9106165Z INSTALL net/bridge/netfilter/ebt_pkttype.ko
2025-10-02T16:39:04.9116562Z INSTALL net/bridge/netfilter/ebt_redirect.ko
2025-10-02T16:39:04.9295865Z INSTALL net/bridge/netfilter/ebt_snat.ko
2025-10-02T16:39:04.9527808Z INSTALL net/bridge/netfilter/ebt_stp.ko
2025-10-02T16:39:04.9606539Z INSTALL net/bridge/netfilter/ebt_vlan.ko
2025-10-02T16:39:04.9646401Z INSTALL net/bridge/netfilter/ebtable_broute.ko
2025-10-02T16:39:04.9782306Z INSTALL net/bridge/netfilter/ebtable_filter.ko
2025-10-02T16:39:05.0054137Z INSTALL net/bridge/netfilter/ebtable_nat.ko
2025-10-02T16:39:05.0129737Z INSTALL net/bridge/netfilter/ebtables.ko
2025-10-02T16:39:05.0182584Z INSTALL net/bridge/netfilter/nf_conntrack_bridge.ko
2025-10-02T16:39:05.0226143Z INSTALL net/bridge/netfilter/nf_log_bridge.ko
2025-10-02T16:39:05.0549748Z INSTALL net/bridge/netfilter/nft_meta_bridge.ko
2025-10-02T16:39:05.0571896Z INSTALL net/bridge/netfilter/nft_reject_bridge.ko
2025-10-02T16:39:05.0694763Z INSTALL net/can/can-bcm.ko
2025-10-02T16:39:05.0805065Z INSTALL net/can/can-gw.ko
2025-10-02T16:39:05.0891032Z INSTALL net/can/can-isotp.ko
2025-10-02T16:39:05.1060636Z INSTALL net/can/can-raw.ko
2025-10-02T16:39:05.1122838Z INSTALL net/can/can.ko
2025-10-02T16:39:05.1399944Z INSTALL net/can/j1939/can-j1939.ko
2025-10-02T16:39:05.1464133Z INSTALL net/ceph/libceph.ko
2025-10-02T16:39:05.1583248Z INSTALL net/core/failover.ko
2025-10-02T16:39:05.1678237Z INSTALL net/core/pktgen.ko
2025-10-02T16:39:05.1820224Z INSTALL net/dns_resolver/dns_resolver.ko
2025-10-02T16:39:05.2215593Z INSTALL net/dsa/dsa_core.ko
2025-10-02T16:39:05.2296622Z INSTALL net/dsa/tag_8021q.ko
2025-10-02T16:39:05.2623114Z INSTALL net/dsa/tag_ar9331.ko
2025-10-02T16:39:05.2695883Z INSTALL net/dsa/tag_brcm.ko
2025-10-02T16:39:05.2770432Z INSTALL net/dsa/tag_dsa.ko
2025-10-02T16:39:05.3214939Z INSTALL net/dsa/tag_edsa.ko
2025-10-02T16:39:05.3287835Z INSTALL net/dsa/tag_gswip.ko
2025-10-02T16:39:05.3400803Z INSTALL net/dsa/tag_ksz.ko
2025-10-02T16:39:05.3433368Z INSTALL net/dsa/tag_lan9303.ko
2025-10-02T16:39:05.3717339Z INSTALL net/dsa/tag_mtk.ko
2025-10-02T16:39:05.3814415Z INSTALL net/dsa/tag_ocelot.ko
2025-10-02T16:39:05.3836356Z INSTALL net/dsa/tag_qca.ko
2025-10-02T16:39:05.3915641Z INSTALL net/dsa/tag_rtl4_a.ko
2025-10-02T16:39:05.4254067Z INSTALL net/dsa/tag_sja1105.ko
2025-10-02T16:39:05.4296032Z INSTALL net/dsa/tag_trailer.ko
2025-10-02T16:39:05.4368395Z INSTALL net/hsr/hsr.ko
2025-10-02T16:39:05.4470865Z INSTALL net/ieee802154/6lowpan/ieee802154_6lowpan.ko
2025-10-02T16:39:05.4853969Z INSTALL net/ieee802154/ieee802154.ko
2025-10-02T16:39:05.4889678Z INSTALL net/ieee802154/ieee802154_socket.ko
2025-10-02T16:39:05.5100126Z INSTALL net/ife/ife.ko
2025-10-02T16:39:05.5349163Z INSTALL net/ipv4/ah4.ko
2025-10-02T16:39:05.5586701Z INSTALL net/ipv4/esp4.ko
2025-10-02T16:39:05.5626795Z INSTALL net/ipv4/esp4_offload.ko
2025-10-02T16:39:05.5683620Z INSTALL net/ipv4/fou.ko
2025-10-02T16:39:05.5972595Z INSTALL net/ipv4/gre.ko
2025-10-02T16:39:05.6261513Z INSTALL net/ipv4/inet_diag.ko
2025-10-02T16:39:05.6311280Z INSTALL net/ipv4/ip_gre.ko
2025-10-02T16:39:05.6316991Z INSTALL net/ipv4/ip_tunnel.ko
2025-10-02T16:39:05.6390836Z INSTALL net/ipv4/ip_vti.ko
2025-10-02T16:39:05.6481069Z INSTALL net/ipv4/ipcomp.ko
2025-10-02T16:39:05.6938976Z INSTALL net/ipv4/ipip.ko
2025-10-02T16:39:05.7009372Z INSTALL net/ipv4/netfilter/arp_tables.ko
2025-10-02T16:39:05.7019008Z INSTALL net/ipv4/netfilter/arpt_mangle.ko
2025-10-02T16:39:05.7066351Z INSTALL net/ipv4/netfilter/arptable_filter.ko
2025-10-02T16:39:05.7109105Z INSTALL net/ipv4/netfilter/ip_tables.ko
2025-10-02T16:39:05.7516259Z INSTALL net/ipv4/netfilter/ipt_CLUSTERIP.ko
2025-10-02T16:39:05.7532170Z INSTALL net/ipv4/netfilter/ipt_ECN.ko
2025-10-02T16:39:05.7622162Z INSTALL net/ipv4/netfilter/ipt_REJECT.ko
2025-10-02T16:39:05.7680941Z INSTALL net/ipv4/netfilter/ipt_SYNPROXY.ko
2025-10-02T16:39:05.7920075Z INSTALL net/ipv4/netfilter/ipt_ah.ko
2025-10-02T16:39:05.8070480Z INSTALL net/ipv4/netfilter/ipt_rpfilter.ko
2025-10-02T16:39:05.8082253Z INSTALL net/ipv4/netfilter/iptable_filter.ko
2025-10-02T16:39:05.8138353Z INSTALL net/ipv4/netfilter/iptable_mangle.ko
2025-10-02T16:39:05.8150286Z INSTALL net/ipv4/netfilter/iptable_nat.ko
2025-10-02T16:39:05.8385114Z INSTALL net/ipv4/netfilter/iptable_raw.ko
2025-10-02T16:39:05.8576105Z INSTALL net/ipv4/netfilter/iptable_security.ko
2025-10-02T16:39:05.8614032Z INSTALL net/ipv4/netfilter/nf_defrag_ipv4.ko
2025-10-02T16:39:05.8648616Z INSTALL net/ipv4/netfilter/nf_dup_ipv4.ko
2025-10-02T16:39:05.8683337Z INSTALL net/ipv4/netfilter/nf_flow_table_ipv4.ko
2025-10-02T16:39:05.8922037Z INSTALL net/ipv4/netfilter/nf_log_arp.ko
2025-10-02T16:39:05.9064906Z INSTALL net/ipv4/netfilter/nf_log_ipv4.ko
2025-10-02T16:39:05.9072928Z INSTALL net/ipv4/netfilter/nf_nat_h323.ko
2025-10-02T16:39:05.9135331Z INSTALL net/ipv4/netfilter/nf_nat_pptp.ko
2025-10-02T16:39:05.9141849Z INSTALL net/ipv4/netfilter/nf_nat_snmp_basic.ko
2025-10-02T16:39:05.9405625Z INSTALL net/ipv4/netfilter/nf_reject_ipv4.ko
2025-10-02T16:39:05.9609778Z INSTALL net/ipv4/netfilter/nf_socket_ipv4.ko
2025-10-02T16:39:05.9676326Z INSTALL net/ipv4/netfilter/nf_tproxy_ipv4.ko
2025-10-02T16:39:05.9695296Z INSTALL net/ipv4/netfilter/nft_dup_ipv4.ko
2025-10-02T16:39:05.9710579Z INSTALL net/ipv4/netfilter/nft_fib_ipv4.ko
2025-10-02T16:39:05.9991447Z INSTALL net/ipv4/netfilter/nft_reject_ipv4.ko
2025-10-02T16:39:06.0057685Z INSTALL net/ipv4/raw_diag.ko
2025-10-02T16:39:06.0165736Z INSTALL net/ipv4/tcp_bbr.ko
2025-10-02T16:39:06.0211696Z INSTALL net/ipv4/tcp_bic.ko
2025-10-02T16:39:06.0233845Z INSTALL net/ipv4/tcp_cdg.ko
2025-10-02T16:39:06.0477661Z INSTALL net/ipv4/tcp_dctcp.ko
2025-10-02T16:39:06.0577607Z INSTALL net/ipv4/tcp_diag.ko
2025-10-02T16:39:06.0698213Z INSTALL net/ipv4/tcp_highspeed.ko
2025-10-02T16:39:06.0790682Z INSTALL net/ipv4/tcp_htcp.ko
2025-10-02T16:39:06.0875088Z INSTALL net/ipv4/tcp_hybla.ko
2025-10-02T16:39:06.0980000Z INSTALL net/ipv4/tcp_illinois.ko
2025-10-02T16:39:06.1088067Z INSTALL net/ipv4/tcp_lp.ko
2025-10-02T16:39:06.1090709Z INSTALL net/ipv4/tcp_nv.ko
2025-10-02T16:39:06.1322550Z INSTALL net/ipv4/tcp_scalable.ko
2025-10-02T16:39:06.1378197Z INSTALL net/ipv4/tcp_vegas.ko
2025-10-02T16:39:06.1465414Z INSTALL net/ipv4/tcp_veno.ko
2025-10-02T16:39:06.1564080Z INSTALL net/ipv4/tcp_westwood.ko
2025-10-02T16:39:06.1665225Z INSTALL net/ipv4/tcp_yeah.ko
2025-10-02T16:39:06.1810567Z INSTALL net/ipv4/tunnel4.ko
2025-10-02T16:39:06.1905180Z INSTALL net/ipv4/udp_diag.ko
2025-10-02T16:39:06.1975108Z INSTALL net/ipv4/udp_tunnel.ko
2025-10-02T16:39:06.2015217Z INSTALL net/ipv4/xfrm4_tunnel.ko
2025-10-02T16:39:06.2156441Z INSTALL net/ipv6/ah6.ko
2025-10-02T16:39:06.2365544Z INSTALL net/ipv6/esp6.ko
2025-10-02T16:39:06.2501829Z INSTALL net/ipv6/esp6_offload.ko
2025-10-02T16:39:06.2632507Z INSTALL net/ipv6/fou6.ko
2025-10-02T16:39:06.2668796Z INSTALL net/ipv6/ila/ila.ko
2025-10-02T16:39:06.2724747Z INSTALL net/ipv6/ip6_gre.ko
2025-10-02T16:39:06.2977255Z INSTALL net/ipv6/ip6_tunnel.ko
2025-10-02T16:39:06.3044924Z INSTALL net/ipv6/ip6_udp_tunnel.ko
2025-10-02T16:39:06.3122900Z INSTALL net/ipv6/ip6_vti.ko
2025-10-02T16:39:06.3465390Z INSTALL net/ipv6/ipcomp6.ko
2025-10-02T16:39:06.3470390Z INSTALL net/ipv6/mip6.ko
2025-10-02T16:39:06.3655363Z INSTALL net/ipv6/netfilter/ip6_tables.ko
2025-10-02T16:39:06.3775200Z INSTALL net/ipv6/netfilter/ip6t_NPT.ko
2025-10-02T16:39:06.3804494Z INSTALL net/ipv6/netfilter/ip6t_REJECT.ko
2025-10-02T16:39:06.4032082Z INSTALL net/ipv6/netfilter/ip6t_SYNPROXY.ko
2025-10-02T16:39:06.4038052Z INSTALL net/ipv6/netfilter/ip6t_ah.ko
2025-10-02T16:39:06.4314348Z INSTALL net/ipv6/netfilter/ip6t_eui64.ko
2025-10-02T16:39:06.4352904Z INSTALL net/ipv6/netfilter/ip6t_hbh.ko
2025-10-02T16:39:06.4358824Z INSTALL net/ipv6/netfilter/ip6t_frag.ko
2025-10-02T16:39:06.4523855Z INSTALL net/ipv6/netfilter/ip6t_ipv6header.ko
2025-10-02T16:39:06.4633888Z INSTALL net/ipv6/netfilter/ip6t_mh.ko
2025-10-02T16:39:06.4801478Z INSTALL net/ipv6/netfilter/ip6t_rpfilter.ko
2025-10-02T16:39:06.4860960Z INSTALL net/ipv6/netfilter/ip6t_rt.ko
2025-10-02T16:39:06.4917035Z INSTALL net/ipv6/netfilter/ip6t_srh.ko
2025-10-02T16:39:06.4920964Z INSTALL net/ipv6/netfilter/ip6table_filter.ko
2025-10-02T16:39:06.5069331Z INSTALL net/ipv6/netfilter/ip6table_mangle.ko
2025-10-02T16:39:06.5331020Z INSTALL net/ipv6/netfilter/ip6table_nat.ko
2025-10-02T16:39:06.5405797Z INSTALL net/ipv6/netfilter/ip6table_raw.ko
2025-10-02T16:39:06.5451746Z INSTALL net/ipv6/netfilter/ip6table_security.ko
2025-10-02T16:39:06.5467825Z INSTALL net/ipv6/netfilter/nf_defrag_ipv6.ko
2025-10-02T16:39:06.5542015Z INSTALL net/ipv6/netfilter/nf_dup_ipv6.ko
2025-10-02T16:39:06.5857792Z INSTALL net/ipv6/netfilter/nf_flow_table_ipv6.ko
2025-10-02T16:39:06.5936156Z INSTALL net/ipv6/netfilter/nf_log_ipv6.ko
2025-10-02T16:39:06.5977298Z INSTALL net/ipv6/netfilter/nf_reject_ipv6.ko
2025-10-02T16:39:06.5998703Z INSTALL net/ipv6/netfilter/nf_socket_ipv6.ko
2025-10-02T16:39:06.6059010Z INSTALL net/ipv6/netfilter/nf_tproxy_ipv6.ko
2025-10-02T16:39:06.6277226Z INSTALL net/ipv6/netfilter/nft_dup_ipv6.ko
2025-10-02T16:39:06.6492385Z INSTALL net/ipv6/netfilter/nft_fib_ipv6.ko
2025-10-02T16:39:06.6530989Z INSTALL net/ipv6/netfilter/nft_reject_ipv6.ko
2025-10-02T16:39:06.6575247Z INSTALL net/ipv6/sit.ko
2025-10-02T16:39:06.6615367Z INSTALL net/ipv6/tunnel6.ko
2025-10-02T16:39:06.6950590Z INSTALL net/ipv6/xfrm6_tunnel.ko
2025-10-02T16:39:06.7047087Z INSTALL net/kcm/kcm.ko
2025-10-02T16:39:06.7125086Z INSTALL net/key/af_key.ko
2025-10-02T16:39:06.7128742Z INSTALL net/l2tp/l2tp_core.ko
2025-10-02T16:39:06.7396303Z INSTALL net/l2tp/l2tp_debugfs.ko
2025-10-02T16:39:06.7524395Z INSTALL net/l2tp/l2tp_eth.ko
2025-10-02T16:39:06.7883818Z INSTALL net/l2tp/l2tp_ip.ko
2025-10-02T16:39:06.8005135Z INSTALL net/l2tp/l2tp_ip6.ko
2025-10-02T16:39:06.8060287Z INSTALL net/l2tp/l2tp_netlink.ko
2025-10-02T16:39:06.8082511Z INSTALL net/l2tp/l2tp_ppp.ko
2025-10-02T16:39:06.8104328Z INSTALL net/llc/llc.ko
2025-10-02T16:39:06.8415104Z INSTALL net/llc/llc2.ko
2025-10-02T16:39:06.8660389Z INSTALL net/mac80211/mac80211.ko
2025-10-02T16:39:06.8739853Z INSTALL net/mac802154/mac802154.ko
2025-10-02T16:39:06.8740855Z INSTALL net/mpls/mpls_gso.ko
2025-10-02T16:39:06.8763048Z INSTALL net/mpls/mpls_iptunnel.ko
2025-10-02T16:39:06.9326041Z INSTALL net/mpls/mpls_router.ko
2025-10-02T16:39:06.9447633Z INSTALL net/mptcp/mptcp_diag.ko
2025-10-02T16:39:07.0050617Z INSTALL net/netfilter/ipset/ip_set.ko
2025-10-02T16:39:07.0095181Z INSTALL net/netfilter/ipset/ip_set_bitmap_ip.ko
2025-10-02T16:39:07.0166810Z INSTALL net/netfilter/ipset/ip_set_bitmap_ipmac.ko
2025-10-02T16:39:07.0181389Z INSTALL net/netfilter/ipset/ip_set_bitmap_port.ko
2025-10-02T16:39:07.0711000Z INSTALL net/netfilter/ipset/ip_set_hash_ip.ko
2025-10-02T16:39:07.0748163Z INSTALL net/netfilter/ipset/ip_set_hash_ipmac.ko
2025-10-02T16:39:07.0825320Z INSTALL net/netfilter/ipset/ip_set_hash_ipmark.ko
2025-10-02T16:39:07.1028035Z INSTALL net/netfilter/ipset/ip_set_hash_ipport.ko
2025-10-02T16:39:07.1507641Z INSTALL net/netfilter/ipset/ip_set_hash_ipportip.ko
2025-10-02T16:39:07.1601373Z INSTALL net/netfilter/ipset/ip_set_hash_ipportnet.ko
2025-10-02T16:39:07.1824632Z INSTALL net/netfilter/ipset/ip_set_hash_mac.ko
2025-10-02T16:39:07.1977672Z INSTALL net/netfilter/ipset/ip_set_hash_net.ko
2025-10-02T16:39:07.2525143Z INSTALL net/netfilter/ipset/ip_set_hash_netiface.ko
2025-10-02T16:39:07.2562257Z INSTALL net/netfilter/ipset/ip_set_hash_netnet.ko
2025-10-02T16:39:07.2677778Z INSTALL net/netfilter/ipset/ip_set_hash_netport.ko
2025-10-02T16:39:07.2718489Z INSTALL net/netfilter/ipset/ip_set_hash_netportnet.ko
2025-10-02T16:39:07.3424551Z INSTALL net/netfilter/ipset/ip_set_list_set.ko
2025-10-02T16:39:07.3562184Z INSTALL net/netfilter/ipvs/ip_vs.ko
2025-10-02T16:39:07.3685157Z INSTALL net/netfilter/ipvs/ip_vs_dh.ko
2025-10-02T16:39:07.3718596Z INSTALL net/netfilter/ipvs/ip_vs_fo.ko
2025-10-02T16:39:07.4063275Z INSTALL net/netfilter/ipvs/ip_vs_ftp.ko
2025-10-02T16:39:07.4143995Z INSTALL net/netfilter/ipvs/ip_vs_lblc.ko
2025-10-02T16:39:07.4257354Z INSTALL net/netfilter/ipvs/ip_vs_lblcr.ko
2025-10-02T16:39:07.4748125Z INSTALL net/netfilter/ipvs/ip_vs_lc.ko
2025-10-02T16:39:07.4766743Z INSTALL net/netfilter/ipvs/ip_vs_mh.ko
2025-10-02T16:39:07.4895196Z INSTALL net/netfilter/ipvs/ip_vs_nq.ko
2025-10-02T16:39:07.5320502Z INSTALL net/netfilter/ipvs/ip_vs_ovf.ko
2025-10-02T16:39:07.5362189Z INSTALL net/netfilter/ipvs/ip_vs_pe_sip.ko
2025-10-02T16:39:07.5492048Z INSTALL net/netfilter/ipvs/ip_vs_rr.ko
2025-10-02T16:39:07.5511671Z INSTALL net/netfilter/ipvs/ip_vs_sed.ko
2025-10-02T16:39:07.5794680Z INSTALL net/netfilter/ipvs/ip_vs_sh.ko
2025-10-02T16:39:07.5885329Z INSTALL net/netfilter/ipvs/ip_vs_wlc.ko
2025-10-02T16:39:07.5969803Z INSTALL net/netfilter/ipvs/ip_vs_wrr.ko
2025-10-02T16:39:07.6030393Z INSTALL net/netfilter/nf_conncount.ko
2025-10-02T16:39:07.6377370Z INSTALL net/netfilter/nf_conntrack.ko
2025-10-02T16:39:07.6402486Z INSTALL net/netfilter/nf_conntrack_amanda.ko
2025-10-02T16:39:07.6518376Z INSTALL net/netfilter/nf_conntrack_broadcast.ko
2025-10-02T16:39:07.6670766Z INSTALL net/netfilter/nf_conntrack_ftp.ko
2025-10-02T16:39:07.7005307Z INSTALL net/netfilter/nf_conntrack_h323.ko
2025-10-02T16:39:07.7026642Z INSTALL net/netfilter/nf_conntrack_irc.ko
2025-10-02T16:39:07.7367887Z INSTALL net/netfilter/nf_conntrack_netbios_ns.ko
2025-10-02T16:39:07.7729682Z INSTALL net/netfilter/nf_conntrack_netlink.ko
2025-10-02T16:39:07.7981534Z INSTALL net/netfilter/nf_conntrack_pptp.ko
2025-10-02T16:39:07.8045922Z INSTALL net/netfilter/nf_conntrack_sane.ko
2025-10-02T16:39:07.8186365Z INSTALL net/netfilter/nf_conntrack_sip.ko
2025-10-02T16:39:07.8323640Z INSTALL net/netfilter/nf_conntrack_snmp.ko
2025-10-02T16:39:07.8571476Z INSTALL net/netfilter/nf_conntrack_tftp.ko
2025-10-02T16:39:07.8602620Z INSTALL net/netfilter/nf_dup_netdev.ko
2025-10-02T16:39:07.8677484Z INSTALL net/netfilter/nf_flow_table.ko
2025-10-02T16:39:07.8888974Z INSTALL net/netfilter/nf_flow_table_inet.ko
2025-10-02T16:39:07.9030972Z INSTALL net/netfilter/nf_log_common.ko
2025-10-02T16:39:07.9106071Z INSTALL net/netfilter/nf_nat.ko
2025-10-02T16:39:07.9110088Z INSTALL net/netfilter/nf_log_netdev.ko
2025-10-02T16:39:07.9418155Z INSTALL net/netfilter/nf_nat_amanda.ko
2025-10-02T16:39:07.9435335Z INSTALL net/netfilter/nf_nat_ftp.ko
2025-10-02T16:39:07.9567560Z INSTALL net/netfilter/nf_nat_irc.ko
2025-10-02T16:39:07.9624060Z INSTALL net/netfilter/nf_nat_sip.ko
2025-10-02T16:39:07.9889048Z INSTALL net/netfilter/nf_nat_tftp.ko
2025-10-02T16:39:07.9933490Z INSTALL net/netfilter/nf_synproxy_core.ko
2025-10-02T16:39:07.9974942Z INSTALL net/netfilter/nf_tables.ko
2025-10-02T16:39:08.0091318Z INSTALL net/netfilter/nfnetlink.ko
2025-10-02T16:39:08.0278890Z INSTALL net/netfilter/nfnetlink_acct.ko
2025-10-02T16:39:08.0514238Z INSTALL net/netfilter/nfnetlink_cthelper.ko
2025-10-02T16:39:08.0597198Z INSTALL net/netfilter/nfnetlink_cttimeout.ko
2025-10-02T16:39:08.0644015Z INSTALL net/netfilter/nfnetlink_log.ko
2025-10-02T16:39:08.0910668Z INSTALL net/netfilter/nfnetlink_osf.ko
2025-10-02T16:39:08.1172193Z INSTALL net/netfilter/nfnetlink_queue.ko
2025-10-02T16:39:08.1246652Z INSTALL net/netfilter/nft_chain_nat.ko
2025-10-02T16:39:08.1317273Z INSTALL net/netfilter/nft_compat.ko
2025-10-02T16:39:08.1526657Z INSTALL net/netfilter/nft_connlimit.ko
2025-10-02T16:39:08.1798844Z INSTALL net/netfilter/nft_counter.ko
2025-10-02T16:39:08.1866070Z INSTALL net/netfilter/nft_ct.ko
2025-10-02T16:39:08.1963212Z INSTALL net/netfilter/nft_dup_netdev.ko
2025-10-02T16:39:08.2223212Z INSTALL net/netfilter/nft_fib.ko
2025-10-02T16:39:08.2313245Z INSTALL net/netfilter/nft_fib_inet.ko
2025-10-02T16:39:08.2519111Z INSTALL net/netfilter/nft_fib_netdev.ko
2025-10-02T16:39:08.2551258Z INSTALL net/netfilter/nft_flow_offload.ko
2025-10-02T16:39:08.2586537Z INSTALL net/netfilter/nft_fwd_netdev.ko
2025-10-02T16:39:08.2720569Z INSTALL net/netfilter/nft_hash.ko
2025-10-02T16:39:08.2755929Z INSTALL net/netfilter/nft_limit.ko
2025-10-02T16:39:08.3044316Z INSTALL net/netfilter/nft_log.ko
2025-10-02T16:39:08.3083212Z INSTALL net/netfilter/nft_masq.ko
2025-10-02T16:39:08.3097109Z INSTALL net/netfilter/nft_nat.ko
2025-10-02T16:39:08.3166009Z INSTALL net/netfilter/nft_numgen.ko
2025-10-02T16:39:08.3322048Z INSTALL net/netfilter/nft_objref.ko
2025-10-02T16:39:08.3596655Z INSTALL net/netfilter/nft_osf.ko
2025-10-02T16:39:08.3629849Z INSTALL net/netfilter/nft_queue.ko
2025-10-02T16:39:08.3672959Z INSTALL net/netfilter/nft_quota.ko
2025-10-02T16:39:08.3687890Z INSTALL net/netfilter/nft_redir.ko
2025-10-02T16:39:08.3911661Z INSTALL net/netfilter/nft_reject.ko
2025-10-02T16:39:08.4108827Z INSTALL net/netfilter/nft_reject_inet.ko
2025-10-02T16:39:08.4165840Z INSTALL net/netfilter/nft_socket.ko
2025-10-02T16:39:08.4167317Z INSTALL net/netfilter/nft_synproxy.ko
2025-10-02T16:39:08.4205559Z INSTALL net/netfilter/nft_tproxy.ko
2025-10-02T16:39:08.4401333Z INSTALL net/netfilter/nft_tunnel.ko
2025-10-02T16:39:08.4632757Z INSTALL net/netfilter/nft_xfrm.ko
2025-10-02T16:39:08.4692547Z INSTALL net/netfilter/x_tables.ko
2025-10-02T16:39:08.4735113Z INSTALL net/netfilter/xt_AUDIT.ko
2025-10-02T16:39:08.4838975Z INSTALL net/netfilter/xt_CHECKSUM.ko
2025-10-02T16:39:08.4890669Z INSTALL net/netfilter/xt_CLASSIFY.ko
2025-10-02T16:39:08.5083082Z INSTALL net/netfilter/xt_CONNSECMARK.ko
2025-10-02T16:39:08.5240108Z INSTALL net/netfilter/xt_CT.ko
2025-10-02T16:39:08.5384221Z INSTALL net/netfilter/xt_DSCP.ko
2025-10-02T16:39:08.5455619Z INSTALL net/netfilter/xt_HL.ko
2025-10-02T16:39:08.5484548Z INSTALL net/netfilter/xt_HMARK.ko
2025-10-02T16:39:08.5641329Z INSTALL net/netfilter/xt_IDLETIMER.ko
2025-10-02T16:39:08.5728399Z INSTALL net/netfilter/xt_LED.ko
2025-10-02T16:39:08.5841633Z INSTALL net/netfilter/xt_LOG.ko
2025-10-02T16:39:08.5946745Z INSTALL net/netfilter/xt_MASQUERADE.ko
2025-10-02T16:39:08.6029319Z INSTALL net/netfilter/xt_NETMAP.ko
2025-10-02T16:39:08.6265642Z INSTALL net/netfilter/xt_NFLOG.ko
2025-10-02T16:39:08.6338456Z INSTALL net/netfilter/xt_NFQUEUE.ko
2025-10-02T16:39:08.6351450Z INSTALL net/netfilter/xt_RATEEST.ko
2025-10-02T16:39:08.6509781Z INSTALL net/netfilter/xt_REDIRECT.ko
2025-10-02T16:39:08.6530282Z INSTALL net/netfilter/xt_SECMARK.ko
2025-10-02T16:39:08.6758762Z INSTALL net/netfilter/xt_TCPMSS.ko
2025-10-02T16:39:08.6895644Z INSTALL net/netfilter/xt_TCPOPTSTRIP.ko
2025-10-02T16:39:08.6981554Z INSTALL net/netfilter/xt_TEE.ko
2025-10-02T16:39:08.6993331Z INSTALL net/netfilter/xt_TPROXY.ko
2025-10-02T16:39:08.7048831Z INSTALL net/netfilter/xt_TRACE.ko
2025-10-02T16:39:08.7266067Z INSTALL net/netfilter/xt_addrtype.ko
2025-10-02T16:39:08.7440380Z INSTALL net/netfilter/xt_bpf.ko
2025-10-02T16:39:08.7484458Z INSTALL net/netfilter/xt_cgroup.ko
2025-10-02T16:39:08.7550505Z INSTALL net/netfilter/xt_cluster.ko
2025-10-02T16:39:08.7587935Z INSTALL net/netfilter/xt_comment.ko
2025-10-02T16:39:08.7780501Z INSTALL net/netfilter/xt_connbytes.ko
2025-10-02T16:39:08.7965218Z INSTALL net/netfilter/xt_connlabel.ko
2025-10-02T16:39:08.8013063Z INSTALL net/netfilter/xt_connlimit.ko
2025-10-02T16:39:08.8056679Z INSTALL net/netfilter/xt_connmark.ko
2025-10-02T16:39:08.8085816Z INSTALL net/netfilter/xt_conntrack.ko
2025-10-02T16:39:08.8341181Z INSTALL net/netfilter/xt_cpu.ko
2025-10-02T16:39:08.8465956Z INSTALL net/netfilter/xt_dccp.ko
2025-10-02T16:39:08.8542239Z INSTALL net/netfilter/xt_devgroup.ko
2025-10-02T16:39:08.8549269Z INSTALL net/netfilter/xt_dscp.ko
2025-10-02T16:39:08.8637207Z INSTALL net/netfilter/xt_ecn.ko
2025-10-02T16:39:08.8835650Z INSTALL net/netfilter/xt_esp.ko
2025-10-02T16:39:08.8960272Z INSTALL net/netfilter/xt_hashlimit.ko
2025-10-02T16:39:08.8991372Z INSTALL net/netfilter/xt_helper.ko
2025-10-02T16:39:08.9060494Z INSTALL net/netfilter/xt_hl.ko
2025-10-02T16:39:08.9172735Z INSTALL net/netfilter/xt_ipcomp.ko
2025-10-02T16:39:08.9366392Z INSTALL net/netfilter/xt_iprange.ko
2025-10-02T16:39:08.9509442Z INSTALL net/netfilter/xt_ipvs.ko
2025-10-02T16:39:08.9535814Z INSTALL net/netfilter/xt_l2tp.ko
2025-10-02T16:39:08.9623691Z INSTALL net/netfilter/xt_limit.ko
2025-10-02T16:39:08.9624816Z INSTALL net/netfilter/xt_length.ko
2025-10-02T16:39:08.9900908Z INSTALL net/netfilter/xt_mac.ko
2025-10-02T16:39:09.0020718Z INSTALL net/netfilter/xt_mark.ko
2025-10-02T16:39:09.0100579Z INSTALL net/netfilter/xt_multiport.ko
2025-10-02T16:39:09.0101772Z INSTALL net/netfilter/xt_nat.ko
2025-10-02T16:39:09.0130934Z INSTALL net/netfilter/xt_nfacct.ko
2025-10-02T16:39:09.0361053Z INSTALL net/netfilter/xt_osf.ko
2025-10-02T16:39:09.0495871Z INSTALL net/netfilter/xt_owner.ko
2025-10-02T16:39:09.0600589Z INSTALL net/netfilter/xt_physdev.ko
2025-10-02T16:39:09.0627750Z INSTALL net/netfilter/xt_pkttype.ko
2025-10-02T16:39:09.0711496Z INSTALL net/netfilter/xt_policy.ko
2025-10-02T16:39:09.0853610Z INSTALL net/netfilter/xt_quota.ko
2025-10-02T16:39:09.0978344Z INSTALL net/netfilter/xt_rateest.ko
2025-10-02T16:39:09.1100904Z INSTALL net/netfilter/xt_realm.ko
2025-10-02T16:39:09.1160588Z INSTALL net/netfilter/xt_recent.ko
2025-10-02T16:39:09.1231059Z INSTALL net/netfilter/xt_sctp.ko
2025-10-02T16:39:09.1408319Z INSTALL net/netfilter/xt_set.ko
2025-10-02T16:39:09.1470875Z INSTALL net/netfilter/xt_socket.ko
2025-10-02T16:39:09.1560160Z INSTALL net/netfilter/xt_state.ko
2025-10-02T16:39:09.1691671Z INSTALL net/netfilter/xt_statistic.ko
2025-10-02T16:39:09.1763379Z INSTALL net/netfilter/xt_string.ko
2025-10-02T16:39:09.2022632Z INSTALL net/netfilter/xt_tcpmss.ko
2025-10-02T16:39:09.2047815Z INSTALL net/netfilter/xt_tcpudp.ko
2025-10-02T16:39:09.2100538Z INSTALL net/netfilter/xt_time.ko
2025-10-02T16:39:09.2204964Z INSTALL net/netfilter/xt_u32.ko
2025-10-02T16:39:09.2205801Z INSTALL net/netlink/netlink_diag.ko
2025-10-02T16:39:09.2494337Z INSTALL net/netrom/netrom.ko
2025-10-02T16:39:09.2545149Z INSTALL net/nfc/hci/hci.ko
2025-10-02T16:39:09.2654367Z INSTALL net/nfc/nci/nci.ko
2025-10-02T16:39:09.2733653Z INSTALL net/nfc/nci/nci_spi.ko
2025-10-02T16:39:09.2749408Z INSTALL net/nfc/nci/nci_uart.ko
2025-10-02T16:39:09.3410655Z INSTALL net/nfc/nfc.ko
2025-10-02T16:39:09.3532423Z INSTALL net/nfc/nfc_digital.ko
2025-10-02T16:39:09.3536876Z INSTALL net/nsh/nsh.ko
2025-10-02T16:39:09.3635235Z INSTALL net/openvswitch/openvswitch.ko
2025-10-02T16:39:09.3863715Z INSTALL net/openvswitch/vport-geneve.ko
2025-10-02T16:39:09.4103108Z INSTALL net/openvswitch/vport-gre.ko
2025-10-02T16:39:09.4466854Z INSTALL net/openvswitch/vport-vxlan.ko
2025-10-02T16:39:09.4584732Z INSTALL net/packet/af_packet_diag.ko
2025-10-02T16:39:09.4684573Z INSTALL net/phonet/phonet.ko
2025-10-02T16:39:09.5061473Z INSTALL net/phonet/pn_pep.ko
2025-10-02T16:39:09.5158958Z INSTALL net/psample/psample.ko
2025-10-02T16:39:09.5256112Z INSTALL net/qrtr/qrtr-mhi.ko
2025-10-02T16:39:09.5445727Z INSTALL net/qrtr/qrtr-smd.ko
2025-10-02T16:39:09.5630152Z INSTALL net/qrtr/qrtr-tun.ko
2025-10-02T16:39:09.5707212Z INSTALL net/qrtr/qrtr.ko
2025-10-02T16:39:09.5759672Z INSTALL net/rds/rds.ko
2025-10-02T16:39:09.5819892Z INSTALL net/rds/rds_rdma.ko
2025-10-02T16:39:09.6067213Z INSTALL net/rds/rds_tcp.ko
2025-10-02T16:39:09.6278475Z INSTALL net/rfkill/rfkill-gpio.ko
2025-10-02T16:39:09.6676848Z INSTALL net/rfkill/rfkill.ko
2025-10-02T16:39:09.6801950Z INSTALL net/rose/rose.ko
2025-10-02T16:39:09.6847716Z INSTALL net/rxrpc/rxrpc.ko
2025-10-02T16:39:09.7176673Z INSTALL net/sched/act_bpf.ko
2025-10-02T16:39:09.7226075Z INSTALL net/sched/act_connmark.ko
2025-10-02T16:39:09.7544744Z INSTALL net/sched/act_csum.ko
2025-10-02T16:39:09.7773773Z INSTALL net/sched/act_ct.ko
2025-10-02T16:39:09.7861091Z INSTALL net/sched/act_gact.ko
2025-10-02T16:39:09.7875994Z INSTALL net/sched/act_ctinfo.ko
2025-10-02T16:39:09.8223862Z INSTALL net/sched/act_gate.ko
2025-10-02T16:39:09.8487792Z INSTALL net/sched/act_ife.ko
2025-10-02T16:39:09.8518172Z INSTALL net/sched/act_ipt.ko
2025-10-02T16:39:09.8543985Z INSTALL net/sched/act_meta_mark.ko
2025-10-02T16:39:09.8867897Z INSTALL net/sched/act_meta_skbprio.ko
2025-10-02T16:39:09.9117835Z INSTALL net/sched/act_mirred.ko
2025-10-02T16:39:09.9122748Z INSTALL net/sched/act_meta_skbtcindex.ko
2025-10-02T16:39:09.9219059Z INSTALL net/sched/act_mpls.ko
2025-10-02T16:39:09.9287725Z INSTALL net/sched/act_nat.ko
2025-10-02T16:39:09.9733829Z INSTALL net/sched/act_pedit.ko
2025-10-02T16:39:09.9743971Z INSTALL net/sched/act_police.ko
2025-10-02T16:39:09.9847240Z INSTALL net/sched/act_sample.ko
2025-10-02T16:39:09.9878628Z INSTALL net/sched/act_simple.ko
2025-10-02T16:39:10.0405107Z INSTALL net/sched/act_skbedit.ko
2025-10-02T16:39:10.0405982Z INSTALL net/sched/act_skbmod.ko
2025-10-02T16:39:10.0428431Z INSTALL net/sched/act_tunnel_key.ko
2025-10-02T16:39:10.0450713Z INSTALL net/sched/act_vlan.ko
2025-10-02T16:39:10.0679820Z INSTALL net/sched/cls_basic.ko
2025-10-02T16:39:10.0990826Z INSTALL net/sched/cls_bpf.ko
2025-10-02T16:39:10.1034318Z INSTALL net/sched/cls_cgroup.ko
2025-10-02T16:39:10.1067637Z INSTALL net/sched/cls_flow.ko
2025-10-02T16:39:10.1137253Z INSTALL net/sched/cls_flower.ko
2025-10-02T16:39:10.1186860Z INSTALL net/sched/cls_fw.ko
2025-10-02T16:39:10.1600823Z INSTALL net/sched/cls_matchall.ko
2025-10-02T16:39:10.1636709Z INSTALL net/sched/cls_route.ko
2025-10-02T16:39:10.1760597Z INSTALL net/sched/cls_u32.ko
2025-10-02T16:39:10.1826592Z INSTALL net/sched/em_canid.ko
2025-10-02T16:39:10.2036267Z INSTALL net/sched/em_cmp.ko
2025-10-02T16:39:10.2131913Z INSTALL net/sched/em_ipset.ko
2025-10-02T16:39:10.2176627Z INSTALL net/sched/em_ipt.ko
2025-10-02T16:39:10.2327831Z INSTALL net/sched/em_meta.ko
2025-10-02T16:39:10.2517420Z INSTALL net/sched/em_nbyte.ko
2025-10-02T16:39:10.2526134Z INSTALL net/sched/em_text.ko
2025-10-02T16:39:10.2608184Z INSTALL net/sched/em_u32.ko
2025-10-02T16:39:10.2698957Z INSTALL net/sched/sch_cake.ko
2025-10-02T16:39:10.2960882Z INSTALL net/sched/sch_cbs.ko
2025-10-02T16:39:10.2966526Z INSTALL net/sched/sch_choke.ko
2025-10-02T16:39:10.3080859Z INSTALL net/sched/sch_codel.ko
2025-10-02T16:39:10.3109171Z INSTALL net/sched/sch_drr.ko
2025-10-02T16:39:10.3555870Z INSTALL net/sched/sch_etf.ko
2025-10-02T16:39:10.3556889Z INSTALL net/sched/sch_ets.ko
2025-10-02T16:39:10.3577958Z INSTALL net/sched/sch_fq.ko
2025-10-02T16:39:10.3633532Z INSTALL net/sched/sch_fq_pie.ko
2025-10-02T16:39:10.3691358Z INSTALL net/sched/sch_gred.ko
2025-10-02T16:39:10.4174310Z INSTALL net/sched/sch_hfsc.ko
2025-10-02T16:39:10.4175259Z INSTALL net/sched/sch_hhf.ko
2025-10-02T16:39:10.4178521Z INSTALL net/sched/sch_htb.ko
2025-10-02T16:39:10.4240219Z INSTALL net/sched/sch_ingress.ko
2025-10-02T16:39:10.4445295Z INSTALL net/sched/sch_mqprio.ko
2025-10-02T16:39:10.4780690Z INSTALL net/sched/sch_multiq.ko
2025-10-02T16:39:10.4839336Z INSTALL net/sched/sch_netem.ko
2025-10-02T16:39:10.4851144Z INSTALL net/sched/sch_pie.ko
2025-10-02T16:39:10.4924816Z INSTALL net/sched/sch_plug.ko
2025-10-02T16:39:10.5094591Z INSTALL net/sched/sch_prio.ko
2025-10-02T16:39:10.5360746Z INSTALL net/sched/sch_qfq.ko
2025-10-02T16:39:10.5425121Z INSTALL net/sched/sch_red.ko
2025-10-02T16:39:10.5444443Z INSTALL net/sched/sch_sfb.ko
2025-10-02T16:39:10.5540700Z INSTALL net/sched/sch_sfq.ko
2025-10-02T16:39:10.5837822Z INSTALL net/sched/sch_skbprio.ko
2025-10-02T16:39:10.5967441Z INSTALL net/sched/sch_taprio.ko
2025-10-02T16:39:10.5980568Z INSTALL net/sched/sch_tbf.ko
2025-10-02T16:39:10.6055253Z INSTALL net/sched/sch_teql.ko
2025-10-02T16:39:10.6130101Z INSTALL net/sctp/sctp.ko
2025-10-02T16:39:10.6399624Z INSTALL net/sctp/sctp_diag.ko
2025-10-02T16:39:10.6624983Z INSTALL net/smc/smc.ko
2025-10-02T16:39:10.6686128Z INSTALL net/smc/smc_diag.ko
2025-10-02T16:39:10.6689784Z INSTALL net/sunrpc/auth_gss/auth_rpcgss.ko
2025-10-02T16:39:10.7028536Z INSTALL net/sunrpc/auth_gss/rpcsec_gss_krb5.ko
2025-10-02T16:39:10.7267666Z INSTALL net/sunrpc/sunrpc.ko
2025-10-02T16:39:10.8360833Z INSTALL net/sunrpc/xprtrdma/rpcrdma.ko
2025-10-02T16:39:10.8570424Z INSTALL net/tipc/diag.ko
2025-10-02T16:39:10.8995147Z INSTALL net/tipc/tipc.ko
2025-10-02T16:39:10.9146094Z INSTALL net/tls/tls.ko
2025-10-02T16:39:11.0385356Z INSTALL net/unix/unix_diag.ko
2025-10-02T16:39:11.1030742Z INSTALL net/vmw_vsock/hv_sock.ko
2025-10-02T16:39:11.1105694Z INSTALL net/vmw_vsock/vmw_vsock_virtio_transport.ko
2025-10-02T16:39:11.1752411Z INSTALL net/vmw_vsock/vmw_vsock_virtio_transport_common.ko
2025-10-02T16:39:11.1873689Z INSTALL net/vmw_vsock/vmw_vsock_vmci_transport.ko
2025-10-02T16:39:11.1912544Z INSTALL net/vmw_vsock/vsock.ko
2025-10-02T16:39:11.2744049Z INSTALL net/vmw_vsock/vsock_diag.ko
2025-10-02T16:39:11.2830766Z INSTALL net/vmw_vsock/vsock_loopback.ko
2025-10-02T16:39:11.2921527Z INSTALL net/wimax/wimax.ko
2025-10-02T16:39:11.3011213Z INSTALL net/wireless/cfg80211.ko
2025-10-02T16:39:11.3324052Z INSTALL net/wireless/lib80211.ko
2025-10-02T16:39:11.3337250Z INSTALL net/wireless/lib80211_crypt_ccmp.ko
2025-10-02T16:39:11.3350218Z INSTALL net/wireless/lib80211_crypt_tkip.ko
2025-10-02T16:39:11.3842679Z INSTALL net/wireless/lib80211_crypt_wep.ko
2025-10-02T16:39:11.3931024Z INSTALL net/xdp/xsk_diag.ko
2025-10-02T16:39:11.4010815Z INSTALL net/xfrm/xfrm_interface.ko
2025-10-02T16:39:11.4023718Z INSTALL net/xfrm/xfrm_ipcomp.ko
2025-10-02T16:39:11.4494961Z INSTALL security/keys/encrypted-keys/encrypted-keys.ko
2025-10-02T16:39:11.4526675Z INSTALL security/keys/trusted-keys/trusted.ko
2025-10-02T16:39:11.4528374Z INSTALL sound/ac97_bus.ko
2025-10-02T16:39:11.4714354Z INSTALL sound/core/oss/snd-mixer-oss.ko
2025-10-02T16:39:11.5096575Z INSTALL sound/core/oss/snd-pcm-oss.ko
2025-10-02T16:39:11.5291021Z INSTALL sound/core/seq/oss/snd-seq-oss.ko
2025-10-02T16:39:11.5310461Z INSTALL sound/core/seq/snd-seq-dummy.ko
2025-10-02T16:39:11.5421144Z INSTALL sound/core/seq/snd-seq-midi-emul.ko
2025-10-02T16:39:11.5942452Z INSTALL sound/core/seq/snd-seq-midi-event.ko
2025-10-02T16:39:11.6006216Z INSTALL sound/core/seq/snd-seq-midi.ko
2025-10-02T16:39:11.6030366Z INSTALL sound/core/seq/snd-seq-virmidi.ko
2025-10-02T16:39:11.6554774Z INSTALL sound/core/seq/snd-seq.ko
2025-10-02T16:39:11.6593160Z INSTALL sound/core/snd-compress.ko
2025-10-02T16:39:11.6615674Z INSTALL sound/core/snd-hrtimer.ko
2025-10-02T16:39:11.6652767Z INSTALL sound/core/snd-hwdep.ko
2025-10-02T16:39:11.7206221Z INSTALL sound/core/snd-pcm-dmaengine.ko
2025-10-02T16:39:11.7326708Z INSTALL sound/core/snd-pcm.ko
2025-10-02T16:39:11.7507191Z INSTALL sound/core/snd-rawmidi.ko
2025-10-02T16:39:11.7768715Z INSTALL sound/core/snd-seq-device.ko
2025-10-02T16:39:11.7977231Z INSTALL sound/core/snd-timer.ko
2025-10-02T16:39:11.8292434Z INSTALL sound/core/snd.ko
2025-10-02T16:39:11.8433597Z INSTALL sound/drivers/mpu401/snd-mpu401-uart.ko
2025-10-02T16:39:11.9030727Z INSTALL sound/drivers/mpu401/snd-mpu401.ko
2025-10-02T16:39:11.9150479Z INSTALL sound/drivers/opl3/snd-opl3-lib.ko
2025-10-02T16:39:11.9181329Z INSTALL sound/drivers/opl3/snd-opl3-synth.ko
2025-10-02T16:39:11.9640809Z INSTALL sound/drivers/snd-aloop.ko
2025-10-02T16:39:11.9854976Z INSTALL sound/drivers/snd-dummy.ko
2025-10-02T16:39:11.9955968Z INSTALL sound/drivers/snd-mtpav.ko
2025-10-02T16:39:11.9979434Z INSTALL sound/drivers/snd-mts64.ko
2025-10-02T16:39:12.0491060Z INSTALL sound/drivers/snd-portman2x4.ko
2025-10-02T16:39:12.0507987Z INSTALL sound/drivers/snd-serial-u16550.ko
2025-10-02T16:39:12.0554149Z INSTALL sound/drivers/snd-virmidi.ko
2025-10-02T16:39:12.0798015Z INSTALL sound/drivers/vx/snd-vx-lib.ko
2025-10-02T16:39:12.0998205Z INSTALL sound/firewire/bebob/snd-bebob.ko
2025-10-02T16:39:12.1080725Z INSTALL sound/firewire/dice/snd-dice.ko
2025-10-02T16:39:12.1142200Z INSTALL sound/firewire/digi00x/snd-firewire-digi00x.ko
2025-10-02T16:39:12.1246620Z INSTALL sound/firewire/fireface/snd-fireface.ko
2025-10-02T16:39:12.1781369Z INSTALL sound/firewire/fireworks/snd-fireworks.ko
2025-10-02T16:39:12.1966653Z INSTALL sound/firewire/motu/snd-firewire-motu.ko
2025-10-02T16:39:12.1998729Z INSTALL sound/firewire/oxfw/snd-oxfw.ko
2025-10-02T16:39:12.2072352Z INSTALL sound/firewire/snd-firewire-lib.ko
2025-10-02T16:39:12.2182088Z INSTALL sound/firewire/snd-isight.ko
2025-10-02T16:39:12.2722864Z INSTALL sound/firewire/tascam/snd-firewire-tascam.ko
2025-10-02T16:39:12.2740224Z INSTALL sound/hda/ext/snd-hda-ext-core.ko
2025-10-02T16:39:12.2865724Z INSTALL sound/hda/snd-hda-core.ko
2025-10-02T16:39:12.2998271Z INSTALL sound/hda/snd-intel-dspcfg.ko
2025-10-02T16:39:12.3106213Z INSTALL sound/i2c/other/snd-ak4113.ko
2025-10-02T16:39:12.3461558Z INSTALL sound/i2c/other/snd-ak4114.ko
2025-10-02T16:39:12.3490325Z INSTALL sound/i2c/other/snd-ak4117.ko
2025-10-02T16:39:12.3693997Z INSTALL sound/i2c/other/snd-ak4xxx-adda.ko
2025-10-02T16:39:12.3761272Z INSTALL sound/i2c/other/snd-pt2258.ko
2025-10-02T16:39:12.4090437Z INSTALL sound/i2c/snd-cs8427.ko
2025-10-02T16:39:12.4097741Z INSTALL sound/i2c/snd-i2c.ko
2025-10-02T16:39:12.4261655Z INSTALL sound/isa/sb/snd-sb-common.ko
2025-10-02T16:39:12.4291312Z INSTALL sound/pci/ac97/snd-ac97-codec.ko
2025-10-02T16:39:12.4374591Z INSTALL sound/pci/ali5451/snd-ali5451.ko
2025-10-02T16:39:12.4651086Z INSTALL sound/pci/asihpi/snd-asihpi.ko
2025-10-02T16:39:12.4680008Z INSTALL sound/pci/au88x0/snd-au8810.ko
2025-10-02T16:39:12.4956728Z INSTALL sound/pci/au88x0/snd-au8820.ko
2025-10-02T16:39:12.5285080Z INSTALL sound/pci/au88x0/snd-au8830.ko
2025-10-02T16:39:12.5833844Z INSTALL sound/pci/aw2/snd-aw2.ko
2025-10-02T16:39:12.5871034Z INSTALL sound/pci/ca0106/snd-ca0106.ko
2025-10-02T16:39:12.6201885Z INSTALL sound/pci/cs46xx/snd-cs46xx.ko
2025-10-02T16:39:12.6400934Z INSTALL sound/pci/ctxfi/snd-ctxfi.ko
2025-10-02T16:39:12.6478300Z INSTALL sound/pci/echoaudio/snd-darla20.ko
2025-10-02T16:39:12.6567890Z INSTALL sound/pci/echoaudio/snd-darla24.ko
2025-10-02T16:39:12.6955271Z INSTALL sound/pci/echoaudio/snd-echo3g.ko
2025-10-02T16:39:12.7406162Z INSTALL sound/pci/echoaudio/snd-gina20.ko
2025-10-02T16:39:12.7547713Z INSTALL sound/pci/echoaudio/snd-gina24.ko
2025-10-02T16:39:12.7697177Z INSTALL sound/pci/echoaudio/snd-indigo.ko
2025-10-02T16:39:12.8152239Z INSTALL sound/pci/echoaudio/snd-indigodj.ko
2025-10-02T16:39:12.8214532Z INSTALL sound/pci/echoaudio/snd-indigodjx.ko
2025-10-02T16:39:12.8462971Z INSTALL sound/pci/echoaudio/snd-indigoio.ko
2025-10-02T16:39:12.8548720Z INSTALL sound/pci/echoaudio/snd-indigoiox.ko
2025-10-02T16:39:12.8674619Z INSTALL sound/pci/echoaudio/snd-layla20.ko
2025-10-02T16:39:12.8974948Z INSTALL sound/pci/echoaudio/snd-layla24.ko
2025-10-02T16:39:12.9000373Z INSTALL sound/pci/echoaudio/snd-mia.ko
2025-10-02T16:39:12.9432992Z INSTALL sound/pci/echoaudio/snd-mona.ko
2025-10-02T16:39:12.9446780Z INSTALL sound/pci/emu10k1/snd-emu10k1-synth.ko
2025-10-02T16:39:12.9698488Z INSTALL sound/pci/emu10k1/snd-emu10k1.ko
2025-10-02T16:39:12.9995072Z INSTALL sound/pci/emu10k1/snd-emu10k1x.ko
2025-10-02T16:39:13.0025463Z INSTALL sound/pci/hda/snd-hda-codec-analog.ko
2025-10-02T16:39:13.0111371Z INSTALL sound/pci/hda/snd-hda-codec-ca0110.ko
2025-10-02T16:39:13.0487665Z INSTALL sound/pci/hda/snd-hda-codec-ca0132.ko
2025-10-02T16:39:13.0637831Z INSTALL sound/pci/hda/snd-hda-codec-cmedia.ko
2025-10-02T16:39:13.0651344Z INSTALL sound/pci/hda/snd-hda-codec-cirrus.ko
2025-10-02T16:39:13.0787427Z INSTALL sound/pci/hda/snd-hda-codec-conexant.ko
2025-10-02T16:39:13.1146367Z INSTALL sound/pci/hda/snd-hda-codec-generic.ko
2025-10-02T16:39:13.1379920Z INSTALL sound/pci/hda/snd-hda-codec-hdmi.ko
2025-10-02T16:39:13.1783151Z INSTALL sound/pci/hda/snd-hda-codec-idt.ko
2025-10-02T16:39:13.1785619Z INSTALL sound/pci/hda/snd-hda-codec-realtek.ko
2025-10-02T16:39:13.1975488Z INSTALL sound/pci/hda/snd-hda-codec-si3054.ko
2025-10-02T16:39:13.2510210Z INSTALL sound/pci/hda/snd-hda-codec-via.ko
2025-10-02T16:39:13.2521801Z INSTALL sound/pci/hda/snd-hda-codec.ko
2025-10-02T16:39:13.2551254Z INSTALL sound/pci/hda/snd-hda-intel.ko
2025-10-02T16:39:13.3162050Z INSTALL sound/pci/ice1712/snd-ice1712.ko
2025-10-02T16:39:13.3378925Z INSTALL sound/pci/ice1712/snd-ice1724.ko
2025-10-02T16:39:13.3535259Z INSTALL sound/pci/ice1712/snd-ice17xx-ak4xxx.ko
2025-10-02T16:39:13.3591385Z INSTALL sound/pci/korg1212/snd-korg1212.ko
2025-10-02T16:39:13.4219448Z INSTALL sound/pci/lola/snd-lola.ko
2025-10-02T16:39:13.4408750Z INSTALL sound/pci/lx6464es/snd-lx6464es.ko
2025-10-02T16:39:13.4464323Z INSTALL sound/pci/nm256/snd-nm256.ko
2025-10-02T16:39:13.4470129Z INSTALL sound/pci/mixart/snd-mixart.ko
2025-10-02T16:39:13.5209625Z INSTALL sound/pci/oxygen/snd-oxygen-lib.ko
2025-10-02T16:39:13.5355102Z INSTALL sound/pci/oxygen/snd-oxygen.ko
2025-10-02T16:39:13.5456270Z INSTALL sound/pci/oxygen/snd-virtuoso.ko
2025-10-02T16:39:13.5475515Z INSTALL sound/pci/pcxhr/snd-pcxhr.ko
2025-10-02T16:39:13.5584672Z INSTALL sound/pci/riptide/snd-riptide.ko
2025-10-02T16:39:13.6150458Z INSTALL sound/pci/rme9652/snd-hdsp.ko
2025-10-02T16:39:13.6221156Z INSTALL sound/pci/rme9652/snd-hdspm.ko
2025-10-02T16:39:13.6249041Z INSTALL sound/pci/rme9652/snd-rme9652.ko
2025-10-02T16:39:13.6647576Z INSTALL sound/pci/snd-ad1889.ko
2025-10-02T16:39:13.6691212Z INSTALL sound/pci/snd-als300.ko
2025-10-02T16:39:13.7086280Z INSTALL sound/pci/snd-als4000.ko
2025-10-02T16:39:13.7235412Z INSTALL sound/pci/snd-atiixp-modem.ko
2025-10-02T16:39:13.7315385Z INSTALL sound/pci/snd-atiixp.ko
2025-10-02T16:39:13.7440563Z INSTALL sound/pci/snd-azt3328.ko
2025-10-02T16:39:13.7469356Z INSTALL sound/pci/snd-bt87x.ko
2025-10-02T16:39:13.7711122Z INSTALL sound/pci/snd-cmipci.ko
2025-10-02T16:39:13.7943962Z INSTALL sound/pci/snd-cs4281.ko
2025-10-02T16:39:13.8012432Z INSTALL sound/pci/snd-ens1370.ko
2025-10-02T16:39:13.8185822Z INSTALL sound/pci/snd-ens1371.ko
2025-10-02T16:39:13.8419385Z INSTALL sound/pci/snd-es1938.ko
2025-10-02T16:39:13.8550709Z INSTALL sound/pci/snd-es1968.ko
2025-10-02T16:39:13.8618580Z INSTALL sound/pci/snd-fm801.ko
2025-10-02T16:39:13.8820982Z INSTALL sound/pci/snd-intel8x0.ko
2025-10-02T16:39:13.9074366Z INSTALL sound/pci/snd-intel8x0m.ko
2025-10-02T16:39:13.9238481Z INSTALL sound/pci/snd-maestro3.ko
2025-10-02T16:39:13.9420207Z INSTALL sound/pci/snd-rme32.ko
2025-10-02T16:39:13.9443272Z INSTALL sound/pci/snd-rme96.ko
2025-10-02T16:39:13.9529850Z INSTALL sound/pci/snd-sonicvibes.ko
2025-10-02T16:39:13.9785158Z INSTALL sound/pci/snd-via82xx-modem.ko
2025-10-02T16:39:13.9937001Z INSTALL sound/pci/snd-via82xx.ko
2025-10-02T16:39:14.0173060Z INSTALL sound/pci/trident/snd-trident.ko
2025-10-02T16:39:14.0204040Z INSTALL sound/pci/vx222/snd-vx222.ko
2025-10-02T16:39:14.0372785Z INSTALL sound/pci/ymfpci/snd-ymfpci.ko
2025-10-02T16:39:14.0383838Z INSTALL sound/pcmcia/pdaudiocf/snd-pdaudiocf.ko
2025-10-02T16:39:14.0840886Z INSTALL sound/pcmcia/vx/snd-vxpocket.ko
2025-10-02T16:39:14.0967289Z INSTALL sound/soc/amd/acp_audio_dma.ko
2025-10-02T16:39:14.1079177Z INSTALL sound/soc/amd/raven/snd-acp3x-i2s.ko
2025-10-02T16:39:14.1106987Z INSTALL sound/soc/amd/raven/snd-acp3x-pcm-dma.ko
2025-10-02T16:39:14.1257064Z INSTALL sound/soc/amd/raven/snd-pci-acp3x.ko
2025-10-02T16:39:14.1533165Z INSTALL sound/soc/amd/renoir/snd-acp3x-pdm-dma.ko
2025-10-02T16:39:14.1636709Z INSTALL sound/soc/amd/renoir/snd-acp3x-rn.ko
2025-10-02T16:39:14.1637739Z INSTALL sound/soc/amd/renoir/snd-rn-pci-acp3x.ko
2025-10-02T16:39:14.1658805Z INSTALL sound/soc/amd/snd-soc-acp-da7219mx98357-mach.ko
2025-10-02T16:39:14.1840552Z INSTALL sound/soc/amd/snd-soc-acp-rt5645-mach.ko
2025-10-02T16:39:14.2056620Z INSTALL sound/soc/amd/snd-soc-acp-rt5682-mach.ko
2025-10-02T16:39:14.2126615Z INSTALL sound/soc/codecs/sirf-audio-codec.ko
2025-10-02T16:39:14.2167622Z INSTALL sound/soc/codecs/snd-soc-ac97.ko
2025-10-02T16:39:14.2232621Z INSTALL sound/soc/codecs/snd-soc-adau-utils.ko
2025-10-02T16:39:14.2506604Z INSTALL sound/soc/codecs/snd-soc-adau1701.ko
2025-10-02T16:39:14.2646453Z INSTALL sound/soc/codecs/snd-soc-adau1761-i2c.ko
2025-10-02T16:39:14.2701149Z INSTALL sound/soc/codecs/snd-soc-adau1761-spi.ko
2025-10-02T16:39:14.2704346Z INSTALL sound/soc/codecs/snd-soc-adau1761.ko
2025-10-02T16:39:14.2733998Z INSTALL sound/soc/codecs/snd-soc-adau17x1.ko
2025-10-02T16:39:14.3078488Z INSTALL sound/soc/codecs/snd-soc-adau7002.ko
2025-10-02T16:39:14.3191216Z INSTALL sound/soc/codecs/snd-soc-adau7118-hw.ko
2025-10-02T16:39:14.3301505Z INSTALL sound/soc/codecs/snd-soc-adau7118-i2c.ko
2025-10-02T16:39:14.3370639Z INSTALL sound/soc/codecs/snd-soc-adau7118.ko
2025-10-02T16:39:14.3385975Z INSTALL sound/soc/codecs/snd-soc-ak4104.ko
2025-10-02T16:39:14.3540492Z INSTALL sound/soc/codecs/snd-soc-ak4118.ko
2025-10-02T16:39:14.3736694Z INSTALL sound/soc/codecs/snd-soc-ak4458.ko
2025-10-02T16:39:14.3811508Z INSTALL sound/soc/codecs/snd-soc-ak4554.ko
2025-10-02T16:39:14.3894918Z INSTALL sound/soc/codecs/snd-soc-ak4613.ko
2025-10-02T16:39:14.3982347Z INSTALL sound/soc/codecs/snd-soc-ak4642.ko
2025-10-02T16:39:14.4001508Z INSTALL sound/soc/codecs/snd-soc-ak5386.ko
2025-10-02T16:39:14.4391440Z INSTALL sound/soc/codecs/snd-soc-ak5558.ko
2025-10-02T16:39:14.4452238Z INSTALL sound/soc/codecs/snd-soc-alc5623.ko
2025-10-02T16:39:14.4477756Z INSTALL sound/soc/codecs/snd-soc-bd28623.ko
2025-10-02T16:39:14.4498442Z INSTALL sound/soc/codecs/snd-soc-cros-ec-codec.ko
2025-10-02T16:39:14.4509036Z INSTALL sound/soc/codecs/snd-soc-cs35l32.ko
2025-10-02T16:39:14.4945072Z INSTALL sound/soc/codecs/snd-soc-cs35l33.ko
2025-10-02T16:39:14.5076159Z INSTALL sound/soc/codecs/snd-soc-cs35l34.ko
2025-10-02T16:39:14.5156291Z INSTALL sound/soc/codecs/snd-soc-cs35l35.ko
2025-10-02T16:39:14.5199907Z INSTALL sound/soc/codecs/snd-soc-cs35l36.ko
2025-10-02T16:39:14.5252769Z INSTALL sound/soc/codecs/snd-soc-cs4234.ko
2025-10-02T16:39:14.5716803Z INSTALL sound/soc/codecs/snd-soc-cs4265.ko
2025-10-02T16:39:14.5805881Z INSTALL sound/soc/codecs/snd-soc-cs4270.ko
2025-10-02T16:39:14.5908297Z INSTALL sound/soc/codecs/snd-soc-cs4271-spi.ko
2025-10-02T16:39:14.5912830Z INSTALL sound/soc/codecs/snd-soc-cs4271-i2c.ko
2025-10-02T16:39:14.6056230Z INSTALL sound/soc/codecs/snd-soc-cs4271.ko
2025-10-02T16:39:14.6310957Z INSTALL sound/soc/codecs/snd-soc-cs42l42.ko
2025-10-02T16:39:14.6333067Z INSTALL sound/soc/codecs/snd-soc-cs42l51-i2c.ko
2025-10-02T16:39:14.6372188Z INSTALL sound/soc/codecs/snd-soc-cs42l51.ko
2025-10-02T16:39:14.6423642Z INSTALL sound/soc/codecs/snd-soc-cs42l52.ko
2025-10-02T16:39:14.6698927Z INSTALL sound/soc/codecs/snd-soc-cs42l56.ko
2025-10-02T16:39:14.6856450Z INSTALL sound/soc/codecs/snd-soc-cs42l73.ko
2025-10-02T16:39:14.7047561Z INSTALL sound/soc/codecs/snd-soc-cs42xx8-i2c.ko
2025-10-02T16:39:14.7125153Z INSTALL sound/soc/codecs/snd-soc-cs42xx8.ko
2025-10-02T16:39:14.7212190Z INSTALL sound/soc/codecs/snd-soc-cs43130.ko
2025-10-02T16:39:14.7475112Z INSTALL sound/soc/codecs/snd-soc-cs4341.ko
2025-10-02T16:39:14.7604099Z INSTALL sound/soc/codecs/snd-soc-cs4349.ko
2025-10-02T16:39:14.7661265Z INSTALL sound/soc/codecs/snd-soc-cs53l30.ko
2025-10-02T16:39:14.7814430Z INSTALL sound/soc/codecs/snd-soc-cx2072x.ko
2025-10-02T16:39:14.8006007Z INSTALL sound/soc/codecs/snd-soc-da7213.ko
2025-10-02T16:39:14.8189710Z INSTALL sound/soc/codecs/snd-soc-da7219.ko
2025-10-02T16:39:14.8209869Z INSTALL sound/soc/codecs/snd-soc-dmic.ko
2025-10-02T16:39:14.8333330Z INSTALL sound/soc/codecs/snd-soc-es7134.ko
2025-10-02T16:39:14.8604377Z INSTALL sound/soc/codecs/snd-soc-es7241.ko
2025-10-02T16:39:14.8726323Z INSTALL sound/soc/codecs/snd-soc-es8316.ko
2025-10-02T16:39:14.8826142Z INSTALL sound/soc/codecs/snd-soc-es8328-i2c.ko
2025-10-02T16:39:14.8978730Z INSTALL sound/soc/codecs/snd-soc-es8328-spi.ko
2025-10-02T16:39:14.9062571Z INSTALL sound/soc/codecs/snd-soc-es8328.ko
2025-10-02T16:39:14.9283511Z INSTALL sound/soc/codecs/snd-soc-hdac-hda.ko
2025-10-02T16:39:14.9287081Z INSTALL sound/soc/codecs/snd-soc-gtm601.ko
2025-10-02T16:39:14.9433776Z INSTALL sound/soc/codecs/snd-soc-hdac-hdmi.ko
2025-10-02T16:39:14.9462052Z INSTALL sound/soc/codecs/snd-soc-hdmi-codec.ko
2025-10-02T16:39:14.9718274Z INSTALL sound/soc/codecs/snd-soc-inno-rk3036.ko
2025-10-02T16:39:14.9820167Z INSTALL sound/soc/codecs/snd-soc-max9759.ko
2025-10-02T16:39:14.9866302Z INSTALL sound/soc/codecs/snd-soc-max98088.ko
2025-10-02T16:39:15.0101996Z INSTALL sound/soc/codecs/snd-soc-max98090.ko
2025-10-02T16:39:15.0327308Z INSTALL sound/soc/codecs/snd-soc-max98357a.ko
2025-10-02T16:39:15.0331053Z INSTALL sound/soc/codecs/snd-soc-max98373-i2c.ko
2025-10-02T16:39:15.0342775Z INSTALL sound/soc/codecs/snd-soc-max98373-sdw.ko
2025-10-02T16:39:15.0707285Z INSTALL sound/soc/codecs/snd-soc-max98373.ko
2025-10-02T16:39:15.0799869Z INSTALL sound/soc/codecs/snd-soc-max98390.ko
2025-10-02T16:39:15.1003094Z INSTALL sound/soc/codecs/snd-soc-max98504.ko
2025-10-02T16:39:15.1005242Z INSTALL sound/soc/codecs/snd-soc-max9860.ko
2025-10-02T16:39:15.1118211Z INSTALL sound/soc/codecs/snd-soc-max9867.ko
2025-10-02T16:39:15.1360729Z INSTALL sound/soc/codecs/snd-soc-max98927.ko
2025-10-02T16:39:15.1477412Z INSTALL sound/soc/codecs/snd-soc-msm8916-digital.ko
2025-10-02T16:39:15.1583739Z INSTALL sound/soc/codecs/snd-soc-mt6351.ko
2025-10-02T16:39:15.1717079Z INSTALL sound/soc/codecs/snd-soc-mt6358.ko
2025-10-02T16:39:15.1902012Z INSTALL sound/soc/codecs/snd-soc-mt6660.ko
2025-10-02T16:39:15.1998406Z INSTALL sound/soc/codecs/snd-soc-nau8540.ko
2025-10-02T16:39:15.2231694Z INSTALL sound/soc/codecs/snd-soc-nau8810.ko
2025-10-02T16:39:15.2466030Z INSTALL sound/soc/codecs/snd-soc-nau8822.ko
2025-10-02T16:39:15.2535371Z INSTALL sound/soc/codecs/snd-soc-nau8824.ko
2025-10-02T16:39:15.2594401Z INSTALL sound/soc/codecs/snd-soc-nau8825.ko
2025-10-02T16:39:15.2595384Z INSTALL sound/soc/codecs/snd-soc-pcm1681.ko
2025-10-02T16:39:15.3040932Z INSTALL sound/soc/codecs/snd-soc-pcm1789-codec.ko
2025-10-02T16:39:15.3194178Z INSTALL sound/soc/codecs/snd-soc-pcm1789-i2c.ko
2025-10-02T16:39:15.3219378Z INSTALL sound/soc/codecs/snd-soc-pcm179x-codec.ko
2025-10-02T16:39:15.3487381Z INSTALL sound/soc/codecs/snd-soc-pcm179x-i2c.ko
2025-10-02T16:39:15.3492268Z INSTALL sound/soc/codecs/snd-soc-pcm179x-spi.ko
2025-10-02T16:39:15.3500853Z INSTALL sound/soc/codecs/snd-soc-pcm186x-i2c.ko
2025-10-02T16:39:15.3716481Z INSTALL sound/soc/codecs/snd-soc-pcm186x-spi.ko
2025-10-02T16:39:15.3795799Z INSTALL sound/soc/codecs/snd-soc-pcm186x.ko
2025-10-02T16:39:15.3956102Z INSTALL sound/soc/codecs/snd-soc-pcm3060-i2c.ko
2025-10-02T16:39:15.3977095Z INSTALL sound/soc/codecs/snd-soc-pcm3060-spi.ko
2025-10-02T16:39:15.3984709Z INSTALL sound/soc/codecs/snd-soc-pcm3060.ko
2025-10-02T16:39:15.4209086Z INSTALL sound/soc/codecs/snd-soc-pcm3168a-i2c.ko
2025-10-02T16:39:15.4395534Z INSTALL sound/soc/codecs/snd-soc-pcm3168a-spi.ko
2025-10-02T16:39:15.4449826Z INSTALL sound/soc/codecs/snd-soc-pcm3168a.ko
2025-10-02T16:39:15.4490565Z INSTALL sound/soc/codecs/snd-soc-pcm512x-i2c.ko
2025-10-02T16:39:15.4552570Z INSTALL sound/soc/codecs/snd-soc-pcm512x-spi.ko
2025-10-02T16:39:15.4775256Z INSTALL sound/soc/codecs/snd-soc-pcm512x.ko
2025-10-02T16:39:15.4878334Z INSTALL sound/soc/codecs/snd-soc-rk3328.ko
2025-10-02T16:39:15.4940418Z INSTALL sound/soc/codecs/snd-soc-rl6231.ko
2025-10-02T16:39:15.5011115Z INSTALL sound/soc/codecs/snd-soc-rl6347a.ko
2025-10-02T16:39:15.5110549Z INSTALL sound/soc/codecs/snd-soc-rt1011.ko
2025-10-02T16:39:15.5438789Z INSTALL sound/soc/codecs/snd-soc-rt1015.ko
2025-10-02T16:39:15.5441572Z INSTALL sound/soc/codecs/snd-soc-rt1308-sdw.ko
2025-10-02T16:39:15.5490037Z INSTALL sound/soc/codecs/snd-soc-rt1308.ko
2025-10-02T16:39:15.5608593Z INSTALL sound/soc/codecs/snd-soc-rt286.ko
2025-10-02T16:39:15.6013551Z INSTALL sound/soc/codecs/snd-soc-rt298.ko
2025-10-02T16:39:15.6081949Z INSTALL sound/soc/codecs/snd-soc-rt5514-spi.ko
2025-10-02T16:39:15.6164696Z INSTALL sound/soc/codecs/snd-soc-rt5514.ko
2025-10-02T16:39:15.6182260Z INSTALL sound/soc/codecs/snd-soc-rt5616.ko
2025-10-02T16:39:15.6421640Z INSTALL sound/soc/codecs/snd-soc-rt5631.ko
2025-10-02T16:39:15.6815071Z INSTALL sound/soc/codecs/snd-soc-rt5640.ko
2025-10-02T16:39:15.6828790Z INSTALL sound/soc/codecs/snd-soc-rt5645.ko
2025-10-02T16:39:15.6906959Z INSTALL sound/soc/codecs/snd-soc-rt5651.ko
2025-10-02T16:39:15.6955792Z INSTALL sound/soc/codecs/snd-soc-rt5660.ko
2025-10-02T16:39:15.7300991Z INSTALL sound/soc/codecs/snd-soc-rt5663.ko
2025-10-02T16:39:15.7764901Z INSTALL sound/soc/codecs/snd-soc-rt5670.ko
2025-10-02T16:39:15.7918040Z INSTALL sound/soc/codecs/snd-soc-rt5677-spi.ko
2025-10-02T16:39:15.8063818Z INSTALL sound/soc/codecs/snd-soc-rt5677.ko
2025-10-02T16:39:15.8158120Z INSTALL sound/soc/codecs/snd-soc-rt5682-i2c.ko
2025-10-02T16:39:15.8528910Z INSTALL sound/soc/codecs/snd-soc-rt5682-sdw.ko
2025-10-02T16:39:15.8532133Z INSTALL sound/soc/codecs/snd-soc-rt5682.ko
2025-10-02T16:39:15.8826535Z INSTALL sound/soc/codecs/snd-soc-rt700.ko
2025-10-02T16:39:15.8945049Z INSTALL sound/soc/codecs/snd-soc-rt711.ko
2025-10-02T16:39:15.9298823Z INSTALL sound/soc/codecs/snd-soc-rt715.ko
2025-10-02T16:39:15.9495120Z INSTALL sound/soc/codecs/snd-soc-sgtl5000.ko
2025-10-02T16:39:15.9641135Z INSTALL sound/soc/codecs/snd-soc-si476x.ko
2025-10-02T16:39:15.9774556Z INSTALL sound/soc/codecs/snd-soc-sigmadsp-i2c.ko
2025-10-02T16:39:15.9782539Z INSTALL sound/soc/codecs/snd-soc-sigmadsp-regmap.ko
2025-10-02T16:39:16.0121089Z INSTALL sound/soc/codecs/snd-soc-sigmadsp.ko
2025-10-02T16:39:16.0156291Z INSTALL sound/soc/codecs/snd-soc-simple-amplifier.ko
2025-10-02T16:39:16.0200472Z INSTALL sound/soc/codecs/snd-soc-spdif-rx.ko
2025-10-02T16:39:16.0220581Z INSTALL sound/soc/codecs/snd-soc-spdif-tx.ko
2025-10-02T16:39:16.0386428Z INSTALL sound/soc/codecs/snd-soc-ssm2305.ko
2025-10-02T16:39:16.0610420Z INSTALL sound/soc/codecs/snd-soc-ssm2602-i2c.ko
2025-10-02T16:39:16.0677052Z INSTALL sound/soc/codecs/snd-soc-ssm2602-spi.ko
2025-10-02T16:39:16.0681689Z INSTALL sound/soc/codecs/snd-soc-ssm2602.ko
2025-10-02T16:39:16.0725028Z INSTALL sound/soc/codecs/snd-soc-ssm4567.ko
2025-10-02T16:39:16.0879200Z INSTALL sound/soc/codecs/snd-soc-sta32x.ko
2025-10-02T16:39:16.1120693Z INSTALL sound/soc/codecs/snd-soc-sta350.ko
2025-10-02T16:39:16.1124473Z INSTALL sound/soc/codecs/snd-soc-sti-sas.ko
2025-10-02T16:39:16.1251555Z INSTALL sound/soc/codecs/snd-soc-tas2552.ko
2025-10-02T16:39:16.1314448Z INSTALL sound/soc/codecs/snd-soc-tas2562.ko
2025-10-02T16:39:16.1645535Z INSTALL sound/soc/codecs/snd-soc-tas2764.ko
2025-10-02T16:39:16.1742841Z INSTALL sound/soc/codecs/snd-soc-tas2770.ko
2025-10-02T16:39:16.1850288Z INSTALL sound/soc/codecs/snd-soc-tas5086.ko
2025-10-02T16:39:16.1903947Z INSTALL sound/soc/codecs/snd-soc-tas571x.ko
2025-10-02T16:39:16.1920208Z INSTALL sound/soc/codecs/snd-soc-tas5720.ko
2025-10-02T16:39:16.2301045Z INSTALL sound/soc/codecs/snd-soc-tas6424.ko
2025-10-02T16:39:16.2358087Z INSTALL sound/soc/codecs/snd-soc-tda7419.ko
2025-10-02T16:39:16.2450629Z INSTALL sound/soc/codecs/snd-soc-tfa9879.ko
2025-10-02T16:39:16.2494794Z INSTALL sound/soc/codecs/snd-soc-tlv320adcx140.ko
2025-10-02T16:39:16.2653642Z INSTALL sound/soc/codecs/snd-soc-tlv320aic23-i2c.ko
2025-10-02T16:39:16.2976321Z INSTALL sound/soc/codecs/snd-soc-tlv320aic23.ko
2025-10-02T16:39:16.2986691Z INSTALL sound/soc/codecs/snd-soc-tlv320aic23-spi.ko
2025-10-02T16:39:16.3004494Z INSTALL sound/soc/codecs/snd-soc-tlv320aic31xx.ko
2025-10-02T16:39:16.3135723Z INSTALL sound/soc/codecs/snd-soc-tlv320aic32x4-i2c.ko
2025-10-02T16:39:16.3289209Z INSTALL sound/soc/codecs/snd-soc-tlv320aic32x4-spi.ko
2025-10-02T16:39:16.3480148Z INSTALL sound/soc/codecs/snd-soc-tlv320aic32x4.ko
2025-10-02T16:39:16.3590680Z INSTALL sound/soc/codecs/snd-soc-tlv320aic3x.ko
2025-10-02T16:39:16.3695485Z INSTALL sound/soc/codecs/snd-soc-tpa6130a2.ko
2025-10-02T16:39:16.3745084Z INSTALL sound/soc/codecs/snd-soc-ts3a227e.ko
2025-10-02T16:39:16.3806449Z INSTALL sound/soc/codecs/snd-soc-tscs42xx.ko
2025-10-02T16:39:16.4339236Z INSTALL sound/soc/codecs/snd-soc-tscs454.ko
2025-10-02T16:39:16.4340638Z INSTALL sound/soc/codecs/snd-soc-uda1334.ko
2025-10-02T16:39:16.4365469Z INSTALL sound/soc/codecs/snd-soc-wcd9335.ko
2025-10-02T16:39:16.4465808Z INSTALL sound/soc/codecs/snd-soc-wcd934x.ko
2025-10-02T16:39:16.4696781Z INSTALL sound/soc/codecs/snd-soc-wm8510.ko
2025-10-02T16:39:16.4820531Z INSTALL sound/soc/codecs/snd-soc-wm8523.ko
2025-10-02T16:39:16.5074602Z INSTALL sound/soc/codecs/snd-soc-wm8524.ko
2025-10-02T16:39:16.5105510Z INSTALL sound/soc/codecs/snd-soc-wm8580.ko
2025-10-02T16:39:16.5361730Z INSTALL sound/soc/codecs/snd-soc-wm8711.ko
2025-10-02T16:39:16.5436160Z INSTALL sound/soc/codecs/snd-soc-wm8728.ko
2025-10-02T16:39:16.5668933Z INSTALL sound/soc/codecs/snd-soc-wm8731.ko
2025-10-02T16:39:16.5714747Z INSTALL sound/soc/codecs/snd-soc-wm8737.ko
2025-10-02T16:39:16.5836576Z INSTALL sound/soc/codecs/snd-soc-wm8741.ko
2025-10-02T16:39:16.5915870Z INSTALL sound/soc/codecs/snd-soc-wm8750.ko
2025-10-02T16:39:16.6020348Z INSTALL sound/soc/codecs/snd-soc-wm8753.ko
2025-10-02T16:39:16.6242443Z INSTALL sound/soc/codecs/snd-soc-wm8770.ko
2025-10-02T16:39:16.6356998Z INSTALL sound/soc/codecs/snd-soc-wm8776.ko
2025-10-02T16:39:16.6566428Z INSTALL sound/soc/codecs/snd-soc-wm8782.ko
2025-10-02T16:39:16.6839069Z INSTALL sound/soc/codecs/snd-soc-wm8804-i2c.ko
2025-10-02T16:39:16.6972897Z INSTALL sound/soc/codecs/snd-soc-wm8804-spi.ko
2025-10-02T16:39:16.6985443Z INSTALL sound/soc/codecs/snd-soc-wm8804.ko
2025-10-02T16:39:16.7038484Z INSTALL sound/soc/codecs/snd-soc-wm8903.ko
2025-10-02T16:39:16.7062566Z INSTALL sound/soc/codecs/snd-soc-wm8904.ko
2025-10-02T16:39:16.7303745Z INSTALL sound/soc/codecs/snd-soc-wm8960.ko
2025-10-02T16:39:16.7418965Z INSTALL sound/soc/codecs/snd-soc-wm8962.ko
2025-10-02T16:39:16.7713206Z INSTALL sound/soc/codecs/snd-soc-wm8974.ko
2025-10-02T16:39:16.7989064Z INSTALL sound/soc/codecs/snd-soc-wm8978.ko
2025-10-02T16:39:16.8008838Z INSTALL sound/soc/codecs/snd-soc-wm8985.ko
2025-10-02T16:39:16.8116244Z INSTALL sound/soc/codecs/snd-soc-wsa881x.ko
2025-10-02T16:39:16.8330832Z INSTALL sound/soc/codecs/snd-soc-zl38060.ko
2025-10-02T16:39:16.8640915Z INSTALL sound/soc/codecs/snd-soc-zx-aud96p22.ko
2025-10-02T16:39:16.8772589Z INSTALL sound/soc/generic/snd-soc-simple-card-utils.ko
2025-10-02T16:39:16.8774835Z INSTALL sound/soc/dwc/designware_i2s.ko
2025-10-02T16:39:16.8858639Z INSTALL sound/soc/generic/snd-soc-simple-card.ko
2025-10-02T16:39:16.8870978Z INSTALL sound/soc/hisilicon/hi6210-i2s.ko
2025-10-02T16:39:16.9205768Z INSTALL sound/soc/img/img-i2s-in.ko
2025-10-02T16:39:16.9331061Z INSTALL sound/soc/img/img-i2s-out.ko
2025-10-02T16:39:16.9386505Z INSTALL sound/soc/img/img-parallel-out.ko
2025-10-02T16:39:16.9473167Z INSTALL sound/soc/img/img-spdif-in.ko
2025-10-02T16:39:16.9503794Z INSTALL sound/soc/img/img-spdif-out.ko
2025-10-02T16:39:16.9722794Z INSTALL sound/soc/img/pistachio-internal-dac.ko
2025-10-02T16:39:16.9724906Z INSTALL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko
2025-10-02T16:39:16.9905937Z INSTALL sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
2025-10-02T16:39:17.0075240Z INSTALL sound/soc/intel/atom/sst/snd-intel-sst-core.ko
2025-10-02T16:39:17.0133848Z INSTALL sound/soc/intel/atom/sst/snd-intel-sst-pci.ko
2025-10-02T16:39:17.0203913Z INSTALL sound/soc/intel/boards/snd-skl_nau88l25_max98357a.ko
2025-10-02T16:39:17.0482574Z INSTALL sound/soc/intel/boards/snd-soc-cml_rt1011_rt5682.ko
2025-10-02T16:39:17.0722226Z INSTALL sound/soc/intel/boards/snd-soc-ehl-rt5660.ko
2025-10-02T16:39:17.0855839Z INSTALL sound/soc/intel/boards/snd-soc-kbl_da7219_max98357a.ko
2025-10-02T16:39:17.1064556Z INSTALL sound/soc/intel/boards/snd-soc-kbl_da7219_max98927.ko
2025-10-02T16:39:17.1211717Z INSTALL sound/soc/intel/boards/snd-soc-kbl_rt5660.ko
2025-10-02T16:39:17.1226383Z INSTALL sound/soc/intel/boards/snd-soc-kbl_rt5663_max98927.ko
2025-10-02T16:39:17.1327918Z INSTALL sound/soc/intel/boards/snd-soc-kbl_rt5663_rt5514_max98927.ko
2025-10-02T16:39:17.1546153Z INSTALL sound/soc/intel/boards/snd-soc-skl_hda_dsp.ko
2025-10-02T16:39:17.1738816Z INSTALL sound/soc/intel/boards/snd-soc-skl_nau88l25_ssm4567.ko
2025-10-02T16:39:17.1798703Z INSTALL sound/soc/intel/boards/snd-soc-skl_rt286.ko
2025-10-02T16:39:17.1880733Z INSTALL sound/soc/intel/boards/snd-soc-sof-sdw.ko
2025-10-02T16:39:17.2003380Z INSTALL sound/soc/intel/boards/snd-soc-sof_da7219_max98373.ko
2025-10-02T16:39:17.2148650Z INSTALL sound/soc/intel/boards/snd-soc-sof_rt5682.ko
2025-10-02T16:39:17.2356474Z INSTALL sound/soc/intel/boards/snd-soc-sst-bdw-rt5650-mach.ko
2025-10-02T16:39:17.2512687Z INSTALL sound/soc/intel/boards/snd-soc-sst-bdw-rt5677-mach.ko
2025-10-02T16:39:17.2730931Z INSTALL sound/soc/intel/boards/snd-soc-sst-broadwell.ko
2025-10-02T16:39:17.2745921Z INSTALL sound/soc/intel/boards/snd-soc-sst-bxt-da7219_max98357a.ko
2025-10-02T16:39:17.2803088Z INSTALL sound/soc/intel/boards/snd-soc-sst-bxt-rt298.ko
2025-10-02T16:39:17.2900637Z INSTALL sound/soc/intel/boards/snd-soc-sst-byt-cht-cx2072x.ko
2025-10-02T16:39:17.3087115Z INSTALL sound/soc/intel/boards/snd-soc-sst-byt-cht-da7213.ko
2025-10-02T16:39:17.3266821Z INSTALL sound/soc/intel/boards/snd-soc-sst-byt-cht-es8316.ko
2025-10-02T16:39:17.3348040Z INSTALL sound/soc/intel/boards/snd-soc-sst-bytcr-rt5640.ko
2025-10-02T16:39:17.3459062Z INSTALL sound/soc/intel/boards/snd-soc-sst-bytcr-rt5651.ko
2025-10-02T16:39:17.3564744Z INSTALL sound/soc/intel/boards/snd-soc-sst-cht-bsw-max98090_ti.ko
2025-10-02T16:39:17.3608432Z INSTALL sound/soc/intel/boards/snd-soc-sst-cht-bsw-nau8824.ko
2025-10-02T16:39:17.3775038Z INSTALL sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5645.ko
2025-10-02T16:39:17.4115593Z INSTALL sound/soc/intel/boards/snd-soc-sst-cht-bsw-rt5672.ko
2025-10-02T16:39:17.4128893Z INSTALL sound/soc/intel/boards/snd-soc-sst-glk-rt5682_max98357a.ko
2025-10-02T16:39:17.4307577Z INSTALL sound/soc/intel/boards/snd-soc-sst-haswell.ko
2025-10-02T16:39:17.4327722Z INSTALL sound/soc/intel/boards/snd-soc-sst-sof-pcm512x.ko
2025-10-02T16:39:17.4331615Z INSTALL sound/soc/intel/boards/snd-soc-sst-sof-wm8804.ko
2025-10-02T16:39:17.4768173Z INSTALL sound/soc/intel/catpt/snd-soc-catpt.ko
2025-10-02T16:39:17.4794556Z INSTALL sound/soc/intel/common/snd-soc-acpi-intel-match.ko
2025-10-02T16:39:17.4822159Z INSTALL sound/soc/intel/common/snd-soc-sst-dsp.ko
2025-10-02T16:39:17.4856111Z INSTALL sound/soc/intel/common/snd-soc-sst-ipc.ko
2025-10-02T16:39:17.4917011Z INSTALL sound/soc/intel/skylake/snd-soc-skl-ssp-clk.ko
2025-10-02T16:39:17.5446077Z INSTALL sound/soc/intel/skylake/snd-soc-skl.ko
2025-10-02T16:39:17.5491102Z INSTALL sound/soc/snd-soc-acpi.ko
2025-10-02T16:39:17.5538600Z INSTALL sound/soc/snd-soc-core.ko
2025-10-02T16:39:17.5543700Z INSTALL sound/soc/sof/intel/snd-sof-intel-byt.ko
2025-10-02T16:39:17.5896387Z INSTALL sound/soc/sof/intel/snd-sof-intel-hda-common.ko
2025-10-02T16:39:17.6025045Z INSTALL sound/soc/sof/intel/snd-sof-intel-hda.ko
2025-10-02T16:39:17.6251857Z INSTALL sound/soc/sof/intel/snd-sof-intel-ipc.ko
2025-10-02T16:39:17.6638597Z INSTALL sound/soc/sof/snd-sof-acpi.ko
2025-10-02T16:39:17.6801766Z INSTALL sound/soc/sof/snd-sof-pci.ko
2025-10-02T16:39:17.7358442Z INSTALL sound/soc/sof/snd-sof.ko
2025-10-02T16:39:17.7361636Z INSTALL sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko
2025-10-02T16:39:17.7573558Z INSTALL sound/soc/xilinx/snd-soc-xlnx-formatter-pcm.ko
2025-10-02T16:39:17.7681050Z INSTALL sound/soc/xilinx/snd-soc-xlnx-i2s.ko
2025-10-02T16:39:17.7857119Z INSTALL sound/soc/xilinx/snd-soc-xlnx-spdif.ko
2025-10-02T16:39:17.8270817Z INSTALL sound/soc/xtensa/snd-soc-xtfpga-i2s.ko
2025-10-02T16:39:17.8295540Z INSTALL sound/soc/zte/zx-tdm.ko
2025-10-02T16:39:17.8394608Z INSTALL sound/soundcore.ko
2025-10-02T16:39:17.8730937Z INSTALL sound/synth/emux/snd-emux-synth.ko
2025-10-02T16:39:17.8797184Z INSTALL sound/synth/snd-util-mem.ko
2025-10-02T16:39:17.8931578Z INSTALL sound/usb/6fire/snd-usb-6fire.ko
2025-10-02T16:39:17.8971660Z INSTALL sound/usb/bcd2000/snd-bcd2000.ko
2025-10-02T16:39:17.9024378Z INSTALL sound/usb/caiaq/snd-usb-caiaq.ko
2025-10-02T16:39:17.9464749Z INSTALL sound/usb/hiface/snd-usb-hiface.ko
2025-10-02T16:39:17.9598700Z INSTALL sound/usb/line6/snd-usb-line6.ko
2025-10-02T16:39:17.9790641Z INSTALL sound/usb/line6/snd-usb-pod.ko
2025-10-02T16:39:17.9828936Z INSTALL sound/usb/line6/snd-usb-podhd.ko
2025-10-02T16:39:17.9913985Z INSTALL sound/usb/line6/snd-usb-toneport.ko
2025-10-02T16:39:18.0114322Z INSTALL sound/usb/line6/snd-usb-variax.ko
2025-10-02T16:39:18.0354925Z INSTALL sound/usb/misc/snd-ua101.ko
2025-10-02T16:39:18.0454071Z INSTALL sound/usb/snd-usb-audio.ko
2025-10-02T16:39:18.0470254Z INSTALL sound/usb/snd-usbmidi-lib.ko
2025-10-02T16:39:18.0516307Z INSTALL sound/usb/usx2y/snd-usb-us122l.ko
2025-10-02T16:39:18.0569998Z INSTALL sound/usb/usx2y/snd-usb-usx2y.ko
2025-10-02T16:39:18.1155777Z INSTALL sound/x86/snd-hdmi-lpe-audio.ko
2025-10-02T16:39:18.1257627Z INSTALL sound/xen/snd_xen_front.ko
2025-10-02T16:39:18.1262441Z INSTALL virt/lib/irqbypass.ko
2025-10-02T16:39:18.2958679Z DEPMOD 5.10.245-1-MANJARO
2025-10-02T16:39:21.4924600Z ==> Tidying install...
2025-10-02T16:39:21.4942269Z -> Removing libtool files...
2025-10-02T16:39:21.5778311Z -> Purging unwanted files...
2025-10-02T16:39:21.7390856Z -> Removing static library files...
2025-10-02T16:39:21.8216147Z -> Compressing man and info pages...
2025-10-02T16:39:21.8256543Z ==> Checking for packaging issues...
2025-10-02T16:39:22.4458805Z ==> Creating package "linux510"...
2025-10-02T16:39:22.4478510Z -> Generating .PKGINFO file...
2025-10-02T16:39:23.2120002Z -> Generating .BUILDINFO file...
2025-10-02T16:39:23.3882737Z -> Generating .MTREE file...
2025-10-02T16:39:24.4636602Z -> Compressing package...
2025-10-02T16:39:25.5058570Z ==> Starting package_linux510-headers()...
2025-10-02T16:39:50.1641393Z Adding symlink...
2025-10-02T16:39:50.5410898Z ==> Tidying install...
2025-10-02T16:39:50.5430951Z -> Removing libtool files...
2025-10-02T16:39:50.8840863Z -> Purging unwanted files...
2025-10-02T16:39:51.5961013Z -> Removing static library files...
2025-10-02T16:39:51.9501638Z -> Compressing man and info pages...
2025-10-02T16:39:51.9545345Z ==> Checking for packaging issues...
2025-10-02T16:39:52.9665238Z ==> WARNING: Package contains reference to $srcdir
2025-10-02T16:39:52.9666443Z usr/lib/modules/5.10.245-1-MANJARO/build/tools/objtool/objtool
2025-10-02T16:39:54.3105950Z ==> Creating package "linux510-headers"...
2025-10-02T16:39:54.3126742Z -> Generating .PKGINFO file...
2025-10-02T16:39:56.7377199Z -> Generating .BUILDINFO file...
2025-10-02T16:39:57.1865189Z -> Generating .MTREE file...
2025-10-02T16:40:00.5180918Z -> Compressing package...
2025-10-02T16:40:03.8853794Z ==> Leaving fakeroot environment.
2025-10-02T16:40:03.8896364Z ==> Finished making: linux510 5.10.245-1 (Thu 02 Oct 2025 04:40:03 PM UTC)
2025-10-02T16:40:03.9962781Z ^[[1m Cleaning up.^[[0m
2025-10-02T16:40:03.9963141Z
2025-10-02T16:40:04.0314985Z ## signing /home/runner/work/linux510/linux510/linux510-5.10.245-1-x86_64.pkg.tar.zst
2025-10-02T16:40:05.1101882Z ## signing /home/runner/work/linux510/linux510/linux510-headers-5.10.245-1-x86_64.pkg.tar.zst
2025-10-02T16:40:06.4442281Z ==> Retrieving sources...
2025-10-02T16:40:06.4496733Z -> Found linux-5.10.tar.xz
2025-10-02T16:40:06.4544496Z -> Found patch-5.10.245.xz
2025-10-02T16:40:06.4592179Z -> Found config
2025-10-02T16:40:06.4639218Z -> Found config.anbox
2025-10-02T16:40:06.4687037Z -> Found linux-5.10.236-std-gnu11.patch
2025-10-02T16:40:06.4736007Z -> Found 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-CLONE_NEWUSER.patch
2025-10-02T16:40:06.4784368Z -> Found 0002-HID-quirks-Add-Apple-Magic-Trackpad-2-to-hid_have_special_driver-list.patch
2025-10-02T16:40:06.4831690Z -> Found 0101-i2c-nuvoton-nc677x-hwmon-driver.patch
2025-10-02T16:40:06.4879655Z -> Found 0102-iomap-iomap_bmap-should-accept-unwritten-maps.patch
2025-10-02T16:40:06.4927590Z -> Found 0104-revert-xhci-Add-support-for-Renesas-controller-with-memory.patch
2025-10-02T16:40:06.4975250Z -> Found 0107-quirk-kernel-org-bug-210681-firmware_rome_error.patch
2025-10-02T16:40:06.5022989Z -> Found 0999-patch_realtek.patch
2025-10-02T16:40:06.5038010Z ==> Generating checksums for source files...
2025-10-02T16:40:06.7585703Z [master 08649ce] update config
2025-10-02T16:40:06.7586768Z 2 files changed, 2 insertions(+), 2 deletions(-)
2025-10-02T16:40:10.0509236Z To https://gitlab.manjaro.org/packages/core/linux510.git
2025-10-02T16:40:10.0510403Z 3453e72..08649ce master -> master
2025-10-02T16:40:10.0689246Z ##[group]Run _chrpkb=/var/lib/chrootbuild/build/linux510/PKGBUILD
2025-10-02T16:40:10.0690133Z ^[[36;1m_chrpkb=/var/lib/chrootbuild/build/linux510/PKGBUILD^[[0m
2025-10-02T16:40:10.0690721Z ^[[36;1m_ver=$(grep ^pkgver= ${_chrpkb} | cut -d'=' -f2)^[[0m
2025-10-02T16:40:10.0691265Z ^[[36;1m_rel=$(grep ^pkgrel= ${_chrpkb} | cut -d'=' -f2)^[[0m
2025-10-02T16:40:10.0691757Z ^[[36;1m_tag=${_ver}-${_rel}^[[0m
2025-10-02T16:40:10.0692213Z ^[[36;1msudo zip linux-${_tag}.zip ./*.zst ./*sig^[[0m
2025-10-02T16:40:10.0693172Z ^[[36;1mecho *** | gh auth login --with-token^[[0m
2025-10-02T16:40:10.0694007Z ^[[36;1mgh release create ${_tag} --title ${_tag} --repo manjaro-kernels/linux510 --notes "automated release" || echo "release already exists"^[[0m
2025-10-02T16:40:10.0694953Z ^[[36;1mGITHUB_LINK=https://github.com/${GITHUB_REPOSITORY}/releases/download/${_tag}^[[0m
2025-10-02T16:40:10.0695740Z ^[[36;1mgh release upload ${_tag} --repo ${GITHUB_REPOSITORY} --clobber ./linux-${_tag}.zip^[[0m
2025-10-02T16:40:10.0696374Z ^[[36;1mecho "TAG=${_tag}" >>$GITHUB_ENV^[[0m
2025-10-02T16:40:10.0696874Z ^[[36;1mecho "GITHUB_LINK=${GITHUB_LINK}" >>$GITHUB_ENV^[[0m
2025-10-02T16:40:10.0697398Z ^[[36;1msudo rm -rf /var/lib/chrootbuild^[[0m
2025-10-02T16:40:10.1127571Z shell: /usr/bin/bash -O extglob {0}
2025-10-02T16:40:10.1128130Z env:
2025-10-02T16:40:10.1128560Z KERNEL: linux510
2025-10-02T16:40:10.1129045Z CHRSRC: /var/lib/chrootbuild/build/linux510
2025-10-02T16:40:10.1129833Z ##[endgroup]
2025-10-02T16:40:12.0645082Z adding: linux510-5.10.245-1-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T16:40:12.8358399Z adding: linux510-headers-5.10.245-1-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T16:40:12.8359308Z adding: linux510-5.10.245-1-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T16:40:12.8360692Z adding: linux510-headers-5.10.245-1-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T16:40:16.0862740Z https://github.com/manjaro-kernels/linux510/releases/tag/5.10.245-1
2025-10-02T16:40:28.7492279Z ##[group]Run sudo cp linux510/modules.list .
2025-10-02T16:40:28.7492849Z ^[[36;1msudo cp linux510/modules.list .^[[0m
2025-10-02T16:40:28.7493559Z ^[[36;1msudo sed -i -e '/^#/d' modules.list^[[0m
2025-10-02T16:40:28.7494294Z ^[[36;1msudo mkdir modules^[[0m
2025-10-02T16:40:28.7494740Z ^[[36;1mpushd modules^[[0m
2025-10-02T16:40:28.7495186Z ^[[36;1mfor m in $(cat ../modules.list); do^[[0m
2025-10-02T16:40:28.7496641Z ^[[36;1m sudo git clone "***gitlab.manjaro.org/packages/extra/linux510-extramodules/$m.git"^[[0m
2025-10-02T16:40:28.7497637Z ^[[36;1m if [[ ! "repo" == "none" ]]; then^[[0m
2025-10-02T16:40:28.7498272Z ^[[36;1m _m=$m^[[0m
2025-10-02T16:40:28.7498827Z ^[[36;1m [[ $m == "spl_zfs" ]] && _m=zfs^[[0m
2025-10-02T16:40:28.7500019Z ^[[36;1m [[ $m == "virtualbox-modules" ]] || [[ $m == "virtualbox" ]] && _m=virtualbox-host-modules^[[0m
2025-10-02T16:40:28.7500968Z ^[[36;1m cd $m^[[0m
2025-10-02T16:40:28.7501758Z ^[[36;1m repover=$(sudo pacman -Syi linux510-$_m | grep Version | rev | cut -d' ' -f1 | rev) || true^[[0m
2025-10-02T16:40:28.7502422Z ^[[36;1m if [[ ! -z "$repover" ]]; then^[[0m
2025-10-02T16:40:28.7503010Z ^[[36;1m _reporel=$(echo $repover | cut -d- -f2)^[[0m
2025-10-02T16:40:28.7503650Z ^[[36;1m _gitrel=$(grep "^pkgrel=" PKGBUILD | cut -d= -f2)^[[0m
2025-10-02T16:40:28.7504252Z ^[[36;1m if [[ "repo" == "git" ]]; then^[[0m
2025-10-02T16:40:28.7504823Z ^[[36;1m _rel=$_gitrel^[[0m
2025-10-02T16:40:28.7505267Z ^[[36;1m elif [[ "repo" == "repo" ]]; then^[[0m
2025-10-02T16:40:28.7505754Z ^[[36;1m _rel=$_reporel^[[0m
2025-10-02T16:40:28.7506256Z ^[[36;1m fi^[[0m
2025-10-02T16:40:28.7506740Z ^[[36;1m if [[ $_rel == 0.* ]]; then^[[0m
2025-10-02T16:40:28.7507295Z ^[[36;1m if [[ ! 5.10.245-1 == *rc* ]]; then^[[0m
2025-10-02T16:40:28.7507853Z ^[[36;1m _newrel=1^[[0m
2025-10-02T16:40:28.7508634Z ^[[36;1m else^[[0m
2025-10-02T16:40:28.7509128Z ^[[36;1m _rel=${_rel#*.}^[[0m
2025-10-02T16:40:28.7509975Z ^[[36;1m _newrel=0.$((${_rel}+1))^[[0m
2025-10-02T16:40:28.7510519Z ^[[36;1m fi^[[0m
2025-10-02T16:40:28.7510912Z ^[[36;1m else^[[0m
2025-10-02T16:40:28.7511410Z ^[[36;1m _newrel=$((${_rel}+1))^[[0m
2025-10-02T16:40:28.7511993Z ^[[36;1m fi^[[0m
2025-10-02T16:40:28.7512417Z ^[[36;1m _ver=$(echo $repover | cut -d- -f1)^[[0m
2025-10-02T16:40:28.7512952Z ^[[36;1m _gitver=$(grep ^pkgver= PKGBUILD | cut -d= -f2)^[[0m
2025-10-02T16:40:28.7513663Z ^[[36;1m ## [[ $(vercmp $_gitver $_ver) == 1 ]] && _newrel=1^[[0m
2025-10-02T16:40:28.7514349Z ^[[36;1m sudo sed -i -e "/^pkgrel=/c\pkgrel=$_newrel" PKGBUILD^[[0m
2025-10-02T16:40:28.7514948Z ^[[36;1m if [[ "$_newrel" != "$_gitrel" ]]; then^[[0m
2025-10-02T16:40:28.7515443Z ^[[36;1m sudo git add PKGBUILD^[[0m
2025-10-02T16:40:28.7516129Z ^[[36;1m sudo git commit -m"${_gitver}-$(grep "^pkgrel=" PKGBUILD | cut -d= -f2)"^[[0m
2025-10-02T16:40:28.7516857Z ^[[36;1m sudo git push^[[0m
2025-10-02T16:40:28.7517377Z ^[[36;1m sudo rm -rf .git^[[0m
2025-10-02T16:40:28.7517889Z ^[[36;1m fi^[[0m
2025-10-02T16:40:28.7518271Z ^[[36;1m else^[[0m
2025-10-02T16:40:28.7518866Z ^[[36;1m echo "$m doesn't exist yet in repo. Attempting initial build."^[[0m
2025-10-02T16:40:28.7519757Z ^[[36;1m fi^[[0m
2025-10-02T16:40:28.7520240Z ^[[36;1m cd ..^[[0m
2025-10-02T16:40:28.7520629Z ^[[36;1m fi^[[0m
2025-10-02T16:40:28.7521019Z ^[[36;1mdone^[[0m
2025-10-02T16:40:28.7521463Z ^[[36;1mpopd^[[0m
2025-10-02T16:40:28.7556528Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-02T16:40:28.7557146Z env:
2025-10-02T16:40:28.7557605Z KERNEL: linux510
2025-10-02T16:40:28.7558088Z CHRSRC: /var/lib/chrootbuild/build/linux510
2025-10-02T16:40:28.7558686Z TAG: 5.10.245-1
2025-10-02T16:40:28.7559269Z GITHUB_LINK: https://github.com/manjaro-kernels/linux510/releases/download/5.10.245-1
2025-10-02T16:40:28.7560148Z ##[endgroup]
2025-10-02T16:40:28.7891386Z ~/work/linux510/linux510/modules ~/work/linux510/linux510
2025-10-02T16:40:28.7974735Z Cloning into 'acpi_call'...
2025-10-02T16:40:30.3607692Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:40:32.1159426Z [master 2542d0f] 1.2.2-198
2025-10-02T16:40:32.1160186Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:40:34.8070043Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/acpi_call.git
2025-10-02T16:40:34.8071088Z fbf5536..2542d0f master -> master
2025-10-02T16:40:34.8274808Z Cloning into 'bbswitch'...
2025-10-02T16:40:36.3205187Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:40:37.1357193Z [master 6d2e3da] 0.8-295
2025-10-02T16:40:37.1357769Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:40:39.6689186Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/bbswitch.git
2025-10-02T16:40:39.6690576Z 6caa4b8..6d2e3da master -> master
2025-10-02T16:40:39.6901972Z Cloning into 'broadcom-wl'...
2025-10-02T16:40:41.1507990Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:40:42.1369373Z [master 3824d27] 6.30.223.271-295
2025-10-02T16:40:42.1370202Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:40:44.1086289Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/broadcom-wl.git
2025-10-02T16:40:44.1087301Z 0c2cc0d..3824d27 master -> master
2025-10-02T16:40:44.1294081Z Cloning into 'nvidia'...
2025-10-02T16:40:45.6270888Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:40:46.4648390Z [master c6abde0] 580.95.05-2
2025-10-02T16:40:46.4649267Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:40:48.9768685Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/nvidia.git
2025-10-02T16:40:48.9770414Z 3e8c8fe..c6abde0 master -> master
2025-10-02T16:40:48.9981877Z Cloning into 'nvidia-390xx'...
2025-10-02T16:40:50.5279122Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:40:51.4982292Z [master 448d9fd] 390.157-116
2025-10-02T16:40:51.4983170Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:40:53.6151733Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/nvidia-390xx.git
2025-10-02T16:40:53.6152743Z 8332d4b..448d9fd master -> master
2025-10-02T16:40:53.6360546Z Cloning into 'nvidia-470xx'...
2025-10-02T16:40:54.9662911Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:40:55.7971833Z [master 82d1df5] 470.256.02-38
2025-10-02T16:40:55.7972484Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:40:58.4171375Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/nvidia-470xx.git
2025-10-02T16:40:58.4172300Z 4752efa..82d1df5 master -> master
2025-10-02T16:40:58.4370875Z Cloning into 'nvidia-570xx'...
2025-10-02T16:40:59.4286103Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:00.4058596Z [main 4a299f8] 570.190-2
2025-10-02T16:41:00.4059178Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:02.5458820Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/nvidia-570xx.git
2025-10-02T16:41:02.5460191Z 002e59a..4a299f8 main -> main
2025-10-02T16:41:02.5663162Z Cloning into 'nvidia-575xx'...
2025-10-02T16:41:03.5375335Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:04.3250140Z [main 9f4f09c] 575.64.05-2
2025-10-02T16:41:04.3250699Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:06.5024064Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/nvidia-575xx.git
2025-10-02T16:41:06.5024975Z db33334..9f4f09c main -> main
2025-10-02T16:41:06.5226713Z Cloning into 'nvidia-570xx-open'...
2025-10-02T16:41:07.5254468Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:08.5037541Z [main db151c0] 570.190-2
2025-10-02T16:41:08.5038088Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:10.4935142Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/nvidia-570xx-open.git
2025-10-02T16:41:10.4936477Z 37f0227..db151c0 main -> main
2025-10-02T16:41:10.5135586Z Cloning into 'nvidia-575xx-open'...
2025-10-02T16:41:11.4655635Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:12.4315203Z [main 93c3b23] 575.64.05-2
2025-10-02T16:41:12.4316047Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:15.5828183Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/nvidia-575xx-open.git
2025-10-02T16:41:15.5829200Z 8f9460c..93c3b23 main -> main
2025-10-02T16:41:15.6026448Z Cloning into 'nvidia-open'...
2025-10-02T16:41:16.6237822Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:17.4114725Z [master bfda3b5] 580.95.05-2
2025-10-02T16:41:17.4115267Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:19.8679251Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/nvidia-open.git
2025-10-02T16:41:19.8680336Z 3bc8f7e..bfda3b5 master -> master
2025-10-02T16:41:19.8880890Z Cloning into 'r8168'...
2025-10-02T16:41:21.3529914Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:22.1406987Z [master 0f35f55] 8.055.00-17
2025-10-02T16:41:22.1407541Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:24.0647348Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/r8168.git
2025-10-02T16:41:24.0648370Z 424c55f..0f35f55 master -> master
2025-10-02T16:41:24.0852635Z Cloning into 'rtl8723bu'...
2025-10-02T16:41:25.5981471Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:26.3846522Z [master 2b005be] 20250811-8
2025-10-02T16:41:26.3847065Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:28.6087699Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/rtl8723bu.git
2025-10-02T16:41:28.6088977Z f1dcd06..2b005be master -> master
2025-10-02T16:41:28.6294187Z Cloning into 'tp_smapi'...
2025-10-02T16:41:29.9742369Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:30.7703695Z [master b70428a] 0.45-11
2025-10-02T16:41:30.7704536Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:32.6872766Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/tp_smapi.git
2025-10-02T16:41:32.6874203Z 766a4a4..b70428a master -> master
2025-10-02T16:41:32.7078865Z Cloning into 'vhba-module'...
2025-10-02T16:41:34.1193385Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:34.9462182Z [master a4c12e1] 20250329-16
2025-10-02T16:41:36.7678058Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/vhba-module.git
2025-10-02T16:41:36.7678949Z 7691071..a4c12e1 master -> master
2025-10-02T16:41:36.7679894Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:36.7886059Z Cloning into 'virtualbox'...
2025-10-02T16:41:38.2490340Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:39.0360208Z [master 53d76ae] 7.2.2-3
2025-10-02T16:41:39.0361063Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:40.8793712Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/virtualbox.git
2025-10-02T16:41:40.8794852Z 8911d1b..53d76ae master -> master
2025-10-02T16:41:40.8998250Z Cloning into 'zfs'...
2025-10-02T16:41:42.3466260Z warning: config file /etc/pacman.conf, line 38: directive 'DownloadUser' in section 'options' not recognized.
2025-10-02T16:41:43.1733521Z [master 8aa5529] 2.3.4-7
2025-10-02T16:41:43.1734236Z 1 file changed, 1 insertion(+), 1 deletion(-)
2025-10-02T16:41:45.0022571Z To https://gitlab.manjaro.org/packages/extra/linux510-extramodules/zfs.git
2025-10-02T16:41:45.0023362Z 19b897b..8aa5529 master -> master
2025-10-02T16:41:45.0171522Z ~/work/linux510/linux510
2025-10-02T16:41:45.0202924Z ##[group]Run sudo chrootbuild -K modules -i "linux510-5.10.245-1*.zst" -i "linux510-headers*.zst" -b unstable
2025-10-02T16:41:45.0203972Z ^[[36;1msudo chrootbuild -K modules -i "linux510-5.10.245-1*.zst" -i "linux510-headers*.zst" -b unstable^[[0m
2025-10-02T16:41:45.0204868Z ^[[36;1msudo rm ./linux510-5.10.245-1-x86_64.pkg.tar.zst{,.sig} ./linux510-headers-5.10.245-1-x86_64.pkg.tar.zst{,.sig}^[[0m
2025-10-02T16:41:45.0205859Z ^[[36;1mif [ -z "***^[[0m
2025-10-02T16:41:45.0206493Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0207097Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0207698Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0208274Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0208850Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0209409Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0210258Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0210857Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0211459Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0212042Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0212624Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0213227Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0213809Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0214373Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0214950Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0215523Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0216121Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0216688Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0217265Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0217867Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0218457Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0219046Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0219898Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0220488Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0221202Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0221774Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0222381Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0222944Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0223505Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0224084Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0224638Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0225202Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0225795Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0226368Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0226933Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0227569Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0228156Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0228738Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0229335Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0230133Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0230713Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0231284Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0231847Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0232429Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0233005Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0233609Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0234191Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0234751Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0235336Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0235921Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0236510Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0237095Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0237664Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0238237Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0238829Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0239396Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0240058Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0240656Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0241217Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0241812Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0242380Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0242976Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0243537Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0244101Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0244681Z ^[[36;1m***^[[0m
2025-10-02T16:41:45.0245315Z ^[[36;1m***" ] || [ -z "***" ]; then ^[[0m
2025-10-02T16:41:45.0245831Z ^[[36;1m echo "## gpg credentials not provided. Skip signing."^[[0m
2025-10-02T16:41:45.0246353Z ^[[36;1melse^[[0m
2025-10-02T16:41:45.0246858Z ^[[36;1m for p in $(find $PWD -maxdepth 1 -regex '.*\.pkg\.tar\.\(xz\|zst\)'); do^[[0m
2025-10-02T16:41:45.0247543Z ^[[36;1m echo "## signing $p"^[[0m
2025-10-02T16:41:45.0248392Z ^[[36;1m gpg --pinentry-mode loopback --passphrase "***" --detach-sign ${p}^[[0m
2025-10-02T16:41:45.0294489Z ^[[36;1m done^[[0m
2025-10-02T16:41:45.0294960Z ^[[36;1mfi^[[0m
2025-10-02T16:41:45.0329230Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2025-10-02T16:41:45.0330005Z env:
2025-10-02T16:41:45.0330397Z KERNEL: linux510
2025-10-02T16:41:45.0330827Z CHRSRC: /var/lib/chrootbuild/build/linux510
2025-10-02T16:41:45.0331304Z TAG: 5.10.245-1
2025-10-02T16:41:45.0331884Z GITHUB_LINK: https://github.com/manjaro-kernels/linux510/releases/download/5.10.245-1
2025-10-02T16:41:45.0332507Z ##[endgroup]
2025-10-02T16:41:45.0661348Z
2025-10-02T16:41:45.0661883Z - modules
2025-10-02T16:41:45.0662855Z ^[[1m^[[32m^[[1m:: List(s) to build:^[[0m
2025-10-02T16:41:45.0676102Z
2025-10-02T16:41:45.0676564Z ^[[1m^[[32m^[[1m:: Create install root at [/var/lib/chrootbuild]^[[0m
2025-10-02T16:41:45.0920210Z
2025-10-02T16:41:45.0921120Z ^[[1m^[[32m^[[1m:: Install build environment^[[0m
2025-10-02T16:41:45.1024711Z :: Synchronizing package databases...
2025-10-02T16:41:46.6957980Z core downloading...
2025-10-02T16:41:46.6958952Z extra downloading...
2025-10-02T16:41:46.6960145Z multilib downloading...
2025-10-02T16:41:46.7000095Z resolving dependencies...
2025-10-02T16:41:46.9082709Z looking for conflicting packages...
2025-10-02T16:41:46.9129312Z warning: dependency cycle detected:
2025-10-02T16:41:46.9130421Z warning: systemd-libs will be installed before its libcap dependency
2025-10-02T16:41:46.9131536Z
2025-10-02T16:41:46.9142355Z Packages (140) acl-2.3.2-1 attr-2.5.2-1 audit-4.0.5-1 autoconf-2.72-1 automake-1.18.1-1 bash-5.3.3-2 binutils-2.45+r29+g2b2e51a31ec7-1 bison-3.8.2-8 brotli-1.1.0-3 bzip2-1.0.8-6 ca-certificates-20240618-1 ca-certificates-mozilla-3.116-1 ca-certificates-utils-20240618-1 coreutils-9.8-2 cryptsetup-2.8.1-1 curl-8.16.0-1 db5.3-5.3.28-5 dbus-1.16.2-1 dbus-broker-37-2 dbus-broker-units-37-2 dbus-units-37-2 debugedit-5.2-1 device-mapper-2.03.35-1 diffutils-3.12-2 e2fsprogs-1.47.3-1 expat-2.7.3-1 fakeroot-1.37.1.2-1 file-5.46-5 filesystem-2025.05.03-1 findutils-4.10.0-3 flex-2.6.4-5 gawk-5.3.2-1 gc-8.2.8-2 gcc-15.2.1+r22+gc4e96a094636-1 gcc-libs-15.2.1+r22+gc4e96a094636-1 gdbm-1.26-1 gettext-0.26-1 glib2-2.86.0-2 glibc-2.42+r17+gd7274d718e6f-1 gmp-6.3.0-2 gnulib-l10n-20241231-1 gnupg-2.4.8-1 gnutls-3.8.10-1 gpgme-2.0.1-1 grep-3.12-2 groff-1.23.0-7 guile-3.0.10-1 gzip-1.14-2 hwdata-0.399-1 iana-etc-20250612-1 icu-76.1-1 jansson-2.14.1-1 json-c-0.18-2 kbd-2.8.0-1 keyutils-1.6.3-3 kmod-34.2-1 krb5-1.21.3-2 leancrypto-1.5.1-1 libarchive-3.8.1-1 libassuan-3.0.0-1 libcap-2.76-1 libcap-ng-0.8.5-3 libelf-0.193-5 libevent-2.1.12-4 libffi-3.5.2-1 libgcrypt-1.11.2-1 libgpg-error-1.55-1 libidn2-2.3.7-1 libisl-0.27-1 libksba-1.6.7-2 libldap-2.6.10-2 libmpc-1.3.1-2 libnghttp2-1.67.1-1 libnghttp3-1.12.0-1 libnsl-2.0.1-1 libp11-kit-0.25.9-1 libpsl-0.21.5-2 libsasl-2.1.28-5 libseccomp-2.5.6-1 libsecret-0.21.7-1 libssh2-1.11.1-1 libsysprof-capture-49.0-1 libtasn1-4.20.0-1 libtirpc-1.3.7-1 libtool-2.6.0-1 libunistring-1.3-1 libusb-1.0.29-1 libverto-0.3.2-5 libxcrypt-4.4.38-1 libxml2-2.15.0-1 linux-api-headers-6.16-2 lmdb-0.9.33-1 lz4-1:1.10.0-2 m4-1.4.20-1 make-4.4.1-2 mpdecimal-4.0.1-1 mpfr-4.2.2-1 ncurses-6.5-4 nettle-3.10.2-1 npth-1.8-1 openssl-3.5.4-1 p11-kit-0.25.9-1 pacman-7.0.0.r10.ga2d0293-3 pacman-mirrors-5.2-1 pam-1.7.1-1 pambase-20250719-1 patch-2.8-1 pcre2-10.46-1 perl-5.42.0-1 pinentry-1.3.2-2 pkgconf-2.5.1-1 popt-1.19-2 python-3.13.7-1 python-charset-normalizer-3.4.3-1 python-idna-3.10-2 python-npyscreen-4.10.5-10 python-pytz-2025.2-1 python-requests-2.32.5-1 python-urllib3-2.5.0-1 readline-8.3.001-1 sed-4.9-3 shadow-4.18.0-1 sqlite-3.50.4-2 sudo-1.9.17.p1-1 systemd-257.9-1 systemd-libs-257.9-1 tar-1.35-2 texinfo-7.2-1 tpm2-tss-4.1.3-1 tzdata-2025b-1 util-linux-2.41.2-1 util-linux-libs-2.41.2-1 which-2.23-1 xxhash-0.8.3-1 xz-5.8.1-1 zlib-1:1.3.1-2 zstd-1.5.7-2 archlinux-keyring-20250929-1 base-devel-1-3 manjaro-keyring-20230719-3
2025-10-02T16:41:46.9151607Z
2025-10-02T16:41:46.9151811Z Total Installed Size: 1068.73 MiB
2025-10-02T16:41:46.9152080Z
2025-10-02T16:41:46.9152332Z :: Proceed with installation? [Y/n]
2025-10-02T16:41:46.9152823Z checking keyring...
2025-10-02T16:41:47.1700952Z checking package integrity...
2025-10-02T16:41:50.5045996Z loading package files...
2025-10-02T16:41:50.6736812Z checking for file conflicts...
2025-10-02T16:41:50.8399383Z checking available disk space...
2025-10-02T16:41:50.8445596Z :: Processing package changes...
2025-10-02T16:41:50.8446610Z installing linux-api-headers...
2025-10-02T16:41:50.9294680Z installing tzdata...
2025-10-02T16:41:51.0976916Z Optional dependencies for tzdata
2025-10-02T16:41:51.0977840Z bash: for tzselect [pending]
2025-10-02T16:41:51.0978466Z glibc: for zdump, zic [pending]
2025-10-02T16:41:51.0979099Z installing iana-etc...
2025-10-02T16:41:51.1049225Z installing filesystem...
2025-10-02T16:41:51.1121014Z installing glibc...
2025-10-02T16:41:51.3088376Z Optional dependencies for glibc
2025-10-02T16:41:51.3089005Z gd: for memusagestat
2025-10-02T16:41:51.3089901Z perl: for mtrace [pending]
2025-10-02T16:41:51.3090493Z installing gcc-libs...
2025-10-02T16:41:51.6347026Z installing ncurses...
2025-10-02T16:41:51.9030434Z Optional dependencies for ncurses
2025-10-02T16:41:51.9031345Z bash: for ncursesw6-config [pending]
2025-10-02T16:41:51.9032149Z installing readline...
2025-10-02T16:41:51.9095910Z installing bash...
2025-10-02T16:41:51.9394314Z Optional dependencies for bash
2025-10-02T16:41:51.9395147Z bash-completion: for tab completion
2025-10-02T16:41:51.9395953Z installing acl...
2025-10-02T16:41:51.9455302Z installing attr...
2025-10-02T16:41:51.9493536Z installing gmp...
2025-10-02T16:41:51.9528914Z installing zlib...
2025-10-02T16:41:51.9548261Z installing sqlite...
2025-10-02T16:41:51.9831520Z installing util-linux-libs...
2025-10-02T16:41:51.9920319Z Optional dependencies for util-linux-libs
2025-10-02T16:41:51.9921252Z python: python bindings to libmount [pending]
2025-10-02T16:41:51.9922148Z installing e2fsprogs...
2025-10-02T16:41:52.0134682Z Optional dependencies for e2fsprogs
2025-10-02T16:41:52.0135477Z lvm2: for e2scrub
2025-10-02T16:41:52.0136190Z util-linux: for e2scrub [pending]
2025-10-02T16:41:52.0137053Z smtp-forwarder: for e2scrub_fail script
2025-10-02T16:41:52.0137868Z installing keyutils...
2025-10-02T16:41:52.0188829Z installing gdbm...
2025-10-02T16:41:52.0237764Z installing openssl...
2025-10-02T16:41:52.4873142Z Optional dependencies for openssl
2025-10-02T16:41:52.4873807Z ca-certificates [pending]
2025-10-02T16:41:52.4874368Z perl [pending]
2025-10-02T16:41:52.4874890Z installing libsasl...
2025-10-02T16:41:52.4917703Z installing libldap...
2025-10-02T16:41:52.5076588Z installing libevent...
2025-10-02T16:41:52.5146394Z Optional dependencies for libevent
2025-10-02T16:41:52.5147003Z python: event_rpcgen.py [pending]
2025-10-02T16:41:52.5147558Z installing libverto...
2025-10-02T16:41:52.5160140Z installing lmdb...
2025-10-02T16:41:52.5183705Z installing krb5...
2025-10-02T16:41:52.5410290Z installing libcap-ng...
2025-10-02T16:41:52.5443336Z installing audit...
2025-10-02T16:41:52.5619108Z Optional dependencies for audit
2025-10-02T16:41:52.5620108Z libldap: for audispd-zos-remote [installed]
2025-10-02T16:41:52.5620807Z sh: for augenrules [installed]
2025-10-02T16:41:52.5621413Z installing libxcrypt...
2025-10-02T16:41:52.5643716Z installing libtirpc...
2025-10-02T16:41:52.5712964Z installing libnsl...
2025-10-02T16:41:52.5728355Z installing pambase...
2025-10-02T16:41:52.5736324Z installing libgpg-error...
2025-10-02T16:41:52.5800096Z installing libgcrypt...
2025-10-02T16:41:52.5860577Z installing lz4...
2025-10-02T16:41:52.5887530Z installing xz...
2025-10-02T16:41:52.6210181Z installing zstd...
2025-10-02T16:41:52.6269313Z installing systemd-libs...
2025-10-02T16:41:52.6909445Z installing pam...
2025-10-02T16:41:52.7309788Z installing libcap...
2025-10-02T16:41:52.7433487Z installing coreutils...
2025-10-02T16:41:52.7977011Z installing findutils...
2025-10-02T16:41:52.8049874Z installing libtasn1...
2025-10-02T16:41:52.8112324Z installing libffi...
2025-10-02T16:41:52.8128536Z installing libp11-kit...
2025-10-02T16:41:52.8205423Z installing p11-kit...
2025-10-02T16:41:52.8413935Z installing ca-certificates-utils...
2025-10-02T16:41:52.8436505Z installing ca-certificates-mozilla...
2025-10-02T16:41:52.8464150Z installing ca-certificates...
2025-10-02T16:41:52.8467211Z installing brotli...
2025-10-02T16:41:52.8517739Z installing libunistring...
2025-10-02T16:41:52.8614507Z installing libidn2...
2025-10-02T16:41:52.8680900Z installing libnghttp2...
2025-10-02T16:41:52.8701096Z installing libnghttp3...
2025-10-02T16:41:52.8718791Z installing libpsl...
2025-10-02T16:41:52.8745975Z installing libssh2...
2025-10-02T16:41:52.8897806Z installing curl...
2025-10-02T16:41:52.9323941Z installing mpfr...
2025-10-02T16:41:52.9369063Z installing gawk...
2025-10-02T16:41:52.9510231Z installing gnulib-l10n...
2025-10-02T16:41:52.9556641Z installing icu...
2025-10-02T16:41:53.0710207Z installing libxml2...
2025-10-02T16:41:53.0823441Z Optional dependencies for libxml2
2025-10-02T16:41:53.0824099Z python: Python bindings [pending]
2025-10-02T16:41:53.0824675Z installing gettext...
2025-10-02T16:41:53.1253367Z Optional dependencies for gettext
2025-10-02T16:41:53.1254112Z git: for autopoint infrastructure updates
2025-10-02T16:41:53.1254804Z appstream: for appstream support
2025-10-02T16:41:53.1255419Z installing nettle...
2025-10-02T16:41:53.1334443Z installing leancrypto...
2025-10-02T16:41:53.1478722Z installing gnutls...
2025-10-02T16:41:53.2521523Z Optional dependencies for gnutls
2025-10-02T16:41:53.2522480Z tpm2-tss: support for TPM2 wrapped keys [pending]
2025-10-02T16:41:53.2523307Z installing libksba...
2025-10-02T16:41:53.2540330Z installing libusb...
2025-10-02T16:41:53.2557212Z installing libassuan...
2025-10-02T16:41:53.2576571Z installing libsysprof-capture...
2025-10-02T16:41:53.2597987Z installing bzip2...
2025-10-02T16:41:53.2618014Z installing pcre2...
2025-10-02T16:41:53.2918675Z Optional dependencies for pcre2
2025-10-02T16:41:53.2919939Z sh: for pcre2-config [installed]
2025-10-02T16:41:53.2920528Z installing glib2...
2025-10-02T16:41:53.3955491Z Optional dependencies for glib2
2025-10-02T16:41:53.3956197Z dconf: GSettings storage backend
2025-10-02T16:41:53.3956844Z glib2-devel: development tools
2025-10-02T16:41:53.3957458Z gvfs: most gio functionality
2025-10-02T16:41:53.3958045Z installing json-c...
2025-10-02T16:41:53.3981858Z installing tpm2-tss...
2025-10-02T16:41:53.4233497Z installing libsecret...
2025-10-02T16:41:53.4328630Z Optional dependencies for libsecret
2025-10-02T16:41:53.4329284Z org.freedesktop.secrets: secret storage backend
2025-10-02T16:41:53.4330531Z installing pinentry...
2025-10-02T16:41:53.4360712Z Optional dependencies for pinentry
2025-10-02T16:41:53.4361313Z gcr: GNOME backend
2025-10-02T16:41:53.4361814Z gtk3: GTK backend
2025-10-02T16:41:53.4362322Z qt5-x11extras: Qt5 backend
2025-10-02T16:41:53.4362852Z kwayland5: Qt5 backend
2025-10-02T16:41:53.4363371Z kguiaddons: Qt6 backend
2025-10-02T16:41:53.4363896Z kwindowsystem: Qt6 backend
2025-10-02T16:41:53.4364410Z installing npth...
2025-10-02T16:41:53.4372537Z installing gnupg...
2025-10-02T16:41:53.4847718Z Optional dependencies for gnupg
2025-10-02T16:41:53.4848404Z pcsclite: for using scdaemon not with the gnupg internal card driver
2025-10-02T16:41:53.4848997Z installing gpgme...
2025-10-02T16:41:53.4886445Z installing grep...
2025-10-02T16:41:53.4947731Z installing libarchive...
2025-10-02T16:41:53.5022068Z installing expat...
2025-10-02T16:41:53.5050920Z installing mpdecimal...
2025-10-02T16:41:53.5076294Z installing python...
2025-10-02T16:41:53.8370902Z Optional dependencies for python
2025-10-02T16:41:53.8372385Z python-setuptools: for building Python packages using tooling that is usually bundled with Python
2025-10-02T16:41:53.8374087Z python-pip: for installing Python packages using tooling that is usually bundled with Python
2025-10-02T16:41:53.8375509Z python-pipx: for installing Python software not packaged on Arch Linux
2025-10-02T16:41:53.8376678Z sqlite: for a default database integration [installed]
2025-10-02T16:41:53.8377602Z xz: for lzma [installed]
2025-10-02T16:41:53.8378352Z tk: for tkinter
2025-10-02T16:41:53.8379086Z installing python-npyscreen...
2025-10-02T16:41:53.8552868Z installing python-pytz...
2025-10-02T16:41:53.8576258Z installing python-charset-normalizer...
2025-10-02T16:41:53.8635881Z installing python-idna...
2025-10-02T16:41:53.8681730Z installing python-urllib3...
2025-10-02T16:41:53.8803349Z Optional dependencies for python-urllib3
2025-10-02T16:41:53.8804210Z python-brotli: Brotli support
2025-10-02T16:41:53.8805066Z python-brotlicffi: Brotli support
2025-10-02T16:41:53.8805849Z python-h2: HTTP/2 support
2025-10-02T16:41:53.8806654Z python-pysocks: SOCKS support
2025-10-02T16:41:53.8807498Z python-zstandard: Zstandard support
2025-10-02T16:41:53.8808344Z installing python-requests...
2025-10-02T16:41:53.8865868Z Optional dependencies for python-requests
2025-10-02T16:41:53.8866803Z python-chardet: alternative character encoding library
2025-10-02T16:41:53.8867805Z python-pysocks: SOCKS proxy support
2025-10-02T16:41:53.8868676Z installing pacman-mirrors...
2025-10-02T16:41:53.9073279Z Optional dependencies for pacman-mirrors
2025-10-02T16:41:53.9074135Z gtk3: for interactive mode (GUI)
2025-10-02T16:41:53.9074982Z python-gobject: for interactive mode (GUI)
2025-10-02T16:41:53.9116757Z installing device-mapper...
2025-10-02T16:41:53.9117514Z installing popt...
2025-10-02T16:41:53.9161669Z installing cryptsetup...
2025-10-02T16:41:53.9285498Z installing dbus...
2025-10-02T16:41:53.9365105Z installing dbus-broker...
2025-10-02T16:41:53.9392286Z installing dbus-broker-units...
2025-10-02T16:41:53.9396997Z installing dbus-units...
2025-10-02T16:41:53.9400132Z installing sed...
2025-10-02T16:41:53.9451980Z installing gzip...
2025-10-02T16:41:53.9479031Z Optional dependencies for gzip
2025-10-02T16:41:53.9480039Z less: zless support
2025-10-02T16:41:53.9480771Z util-linux: zmore support [pending]
2025-10-02T16:41:53.9481597Z diffutils: zdiff/zcmp support [pending]
2025-10-02T16:41:53.9482377Z installing kbd...
2025-10-02T16:41:54.0065114Z installing kmod...
2025-10-02T16:41:54.0109200Z installing hwdata...
2025-10-02T16:41:54.0275740Z installing libelf...
2025-10-02T16:41:54.0391049Z installing libseccomp...
2025-10-02T16:41:54.0434757Z installing file...
2025-10-02T16:41:54.0559222Z installing shadow...
2025-10-02T16:41:54.0957330Z installing util-linux...
2025-10-02T16:41:54.2119288Z Optional dependencies for util-linux
2025-10-02T16:41:54.2120479Z words: default dictionary for look
2025-10-02T16:41:54.2121325Z installing systemd...
2025-10-02T16:41:54.3811847Z Initializing machine ID from random generator.
2025-10-02T16:41:54.3954480Z Creating group 'nobody' with GID 65534.
2025-10-02T16:41:54.3959202Z Creating group 'adm' with GID 999.
2025-10-02T16:41:54.3964480Z Creating group 'wheel' with GID 998.
2025-10-02T16:41:54.3969260Z Creating group 'utmp' with GID 997.
2025-10-02T16:41:54.3974405Z Creating group 'audio' with GID 996.
2025-10-02T16:41:54.3979252Z Creating group 'disk' with GID 995.
2025-10-02T16:41:54.3984373Z Creating group 'input' with GID 994.
2025-10-02T16:41:54.3989222Z Creating group 'kmem' with GID 993.
2025-10-02T16:41:54.3994381Z Creating group 'kvm' with GID 992.
2025-10-02T16:41:54.3999256Z Creating group 'lp' with GID 991.
2025-10-02T16:41:54.4004480Z Creating group 'optical' with GID 990.
2025-10-02T16:41:54.4009175Z Creating group 'render' with GID 989.
2025-10-02T16:41:54.4014327Z Creating group 'sgx' with GID 988.
2025-10-02T16:41:54.4019155Z Creating group 'storage' with GID 987.
2025-10-02T16:41:54.4035556Z Creating group 'tty' with GID 5.
2025-10-02T16:41:54.4036466Z Creating group 'uucp' with GID 986.
2025-10-02T16:41:54.4037429Z Creating group 'video' with GID 985.
2025-10-02T16:41:54.4040260Z Creating group 'users' with GID 984.
2025-10-02T16:41:54.4043969Z Creating group 'sys' with GID 3.
2025-10-02T16:41:54.4047542Z Creating group 'mem' with GID 8.
2025-10-02T16:41:54.4051523Z Creating group 'ftp' with GID 11.
2025-10-02T16:41:54.4055184Z Creating group 'mail' with GID 12.
2025-10-02T16:41:54.4058780Z Creating group 'log' with GID 19.
2025-10-02T16:41:54.4062670Z Creating group 'smmsp' with GID 25.
2025-10-02T16:41:54.4066300Z Creating group 'proc' with GID 26.
2025-10-02T16:41:54.4069955Z Creating group 'games' with GID 50.
2025-10-02T16:41:54.4074371Z Creating group 'lock' with GID 54.
2025-10-02T16:41:54.4078084Z Creating group 'network' with GID 90.
2025-10-02T16:41:54.4081947Z Creating group 'floppy' with GID 94.
2025-10-02T16:41:54.4085552Z Creating group 'scanner' with GID 96.
2025-10-02T16:41:54.4089173Z Creating group 'power' with GID 98.
2025-10-02T16:41:54.4094121Z Creating group 'groups' with GID 983.
2025-10-02T16:41:54.4098780Z Creating group 'systemd-journal' with GID 982.
2025-10-02T16:41:54.4103713Z Creating group 'rfkill' with GID 981.
2025-10-02T16:41:54.4104718Z Creating user 'nobody' (Kernel Overflow User) with UID 65534 and GID 65534.
2025-10-02T16:41:54.4108978Z Creating group 'dbus' with GID 81.
2025-10-02T16:41:54.4113776Z Creating user 'dbus' (System Message Bus) with UID 81 and GID 81.
2025-10-02T16:41:54.4118360Z Creating group 'bin' with GID 1.
2025-10-02T16:41:54.4122474Z Creating user 'bin' (n/a) with UID 1 and GID 1.
2025-10-02T16:41:54.4127053Z Creating group 'daemon' with GID 2.
2025-10-02T16:41:54.4131337Z Creating user 'daemon' (n/a) with UID 2 and GID 2.
2025-10-02T16:41:54.4134014Z Creating user 'mail' (n/a) with UID 8 and GID 12.
2025-10-02T16:41:54.4136849Z Creating user 'ftp' (n/a) with UID 14 and GID 11.
2025-10-02T16:41:54.4141841Z Creating group 'http' with GID 33.
2025-10-02T16:41:54.4145711Z Creating user 'http' (n/a) with UID 33 and GID 33.
2025-10-02T16:41:54.4150660Z Creating group 'systemd-coredump' with GID 980.
2025-10-02T16:41:54.4154871Z Creating user 'systemd-coredump' (systemd Core Dumper) with UID 980 and GID 980.
2025-10-02T16:41:54.4159368Z Creating group 'systemd-network' with GID 979.
2025-10-02T16:41:54.4163672Z Creating user 'systemd-network' (systemd Network Management) with UID 979 and GID 979.
2025-10-02T16:41:54.4168249Z Creating group 'systemd-oom' with GID 978.
2025-10-02T16:41:54.4172508Z Creating user 'systemd-oom' (systemd Userspace OOM Killer) with UID 978 and GID 978.
2025-10-02T16:41:54.4177134Z Creating group 'systemd-journal-remote' with GID 977.
2025-10-02T16:41:54.4181486Z Creating user 'systemd-journal-remote' (systemd Journal Remote) with UID 977 and GID 977.
2025-10-02T16:41:54.4186040Z Creating group 'systemd-resolve' with GID 976.
2025-10-02T16:41:54.4190170Z Creating user 'systemd-resolve' (systemd Resolver) with UID 976 and GID 976.
2025-10-02T16:41:54.4194901Z Creating group 'systemd-timesync' with GID 975.
2025-10-02T16:41:54.4199034Z Creating user 'systemd-timesync' (systemd Time Synchronization) with UID 975 and GID 975.
2025-10-02T16:41:54.4203741Z Creating group 'tss' with GID 974.
2025-10-02T16:41:54.4207677Z Creating user 'tss' (tss user for tpm2) with UID 974 and GID 974.
2025-10-02T16:41:54.4212746Z Creating group 'uuidd' with GID 973.
2025-10-02T16:41:54.4216902Z Creating user 'uuidd' (UUID generator helper daemon) with UID 973 and GID 973.
2025-10-02T16:41:54.4453804Z Created symlink '/etc/systemd/system/getty.target.wants/getty@tty1.service' → '/usr/lib/systemd/system/getty@.service'.
2025-10-02T16:41:54.4455903Z Created symlink '/etc/systemd/system/multi-user.target.wants/remote-fs.target' → '/usr/lib/systemd/system/remote-fs.target'.
2025-10-02T16:41:54.4457559Z Created symlink '/etc/systemd/system/sockets.target.wants/systemd-userdbd.socket' → '/usr/lib/systemd/system/systemd-userdbd.socket'.
2025-10-02T16:41:54.4505961Z Optional dependencies for systemd
2025-10-02T16:41:54.4506677Z libmicrohttpd: systemd-journal-gatewayd and systemd-journal-remote
2025-10-02T16:41:54.4507302Z quota-tools: kernel-level quota management
2025-10-02T16:41:54.4507883Z systemd-sysvcompat: symlink package to provide sysvinit binaries
2025-10-02T16:41:54.4508572Z systemd-ukify: combine kernel and initrd into a signed Unified Kernel Image
2025-10-02T16:41:54.4509209Z polkit: allow administration as unprivileged user
2025-10-02T16:41:54.4510138Z curl: systemd-journal-upload, machinectl pull-tar and pull-raw [installed]
2025-10-02T16:41:54.4510846Z gnutls: systemd-journal-gatewayd and systemd-journal-remote [installed]
2025-10-02T16:41:54.4511437Z qrencode: show QR codes
2025-10-02T16:41:54.4511862Z iptables: firewall features
2025-10-02T16:41:54.4512332Z libarchive: convert DDIs to tarballs [installed]
2025-10-02T16:41:54.4512848Z libbpf: support BPF programs
2025-10-02T16:41:54.4513332Z libpwquality: check password quality
2025-10-02T16:41:54.4513854Z libfido2: unlocking LUKS2 volumes with FIDO2 token
2025-10-02T16:41:54.4514381Z libp11-kit: support PKCS#11 [installed]
2025-10-02T16:41:54.4514893Z tpm2-tss: unlocking LUKS2 volumes with TPM2 [installed]
2025-10-02T16:41:54.4515401Z installing pacman...
2025-10-02T16:41:54.4521334Z warning: /var/lib/chrootbuild/etc/pacman.conf installed as /var/lib/chrootbuild/etc/pacman.conf.pacnew
2025-10-02T16:41:54.4820392Z Optional dependencies for pacman
2025-10-02T16:41:54.4821046Z base-devel: required to use makepkg [pending]
2025-10-02T16:41:54.4821791Z perl-locale-gettext: translation support in makepkg-template
2025-10-02T16:41:54.5116620Z installing archlinux-keyring...
2025-10-02T16:41:54.5117254Z installing m4...
2025-10-02T16:41:54.5163776Z installing diffutils...
2025-10-02T16:41:54.5231810Z installing db5.3...
2025-10-02T16:41:54.5377625Z installing perl...
2025-10-02T16:41:54.9186415Z installing autoconf...
2025-10-02T16:41:54.9276350Z installing automake...
2025-10-02T16:41:54.9394251Z installing jansson...
2025-10-02T16:41:54.9412382Z installing binutils...
2025-10-02T16:41:55.0484318Z Optional dependencies for binutils
2025-10-02T16:41:55.0485087Z debuginfod: for debuginfod server/client functionality
2025-10-02T16:41:55.0485806Z installing bison...
2025-10-02T16:41:55.0698046Z installing xxhash...
2025-10-02T16:41:55.0724761Z installing debugedit...
2025-10-02T16:41:55.0735945Z installing fakeroot...
2025-10-02T16:41:55.0975359Z installing flex...
2025-10-02T16:41:55.1034547Z installing libmpc...
2025-10-02T16:41:55.1046755Z installing libisl...
2025-10-02T16:41:55.1190643Z installing gcc...
2025-10-02T16:41:55.7342410Z Optional dependencies for gcc
2025-10-02T16:41:55.7343144Z lib32-gcc-libs: for generating code for 32-bit ABI
2025-10-02T16:41:55.7343868Z installing groff...
2025-10-02T16:41:55.7930495Z Optional dependencies for groff
2025-10-02T16:41:55.7931398Z netpbm: for use together with man -H command interaction in browsers
2025-10-02T16:41:55.7932401Z psutils: for use together with man -H command interaction in browsers
2025-10-02T16:41:55.7933262Z libxaw: for gxditview
2025-10-02T16:41:55.7933918Z perl-file-homedir: for use with glilypond
2025-10-02T16:41:55.7934621Z installing tar...
2025-10-02T16:41:55.8030654Z installing libtool...
2025-10-02T16:41:55.8118291Z installing gc...
2025-10-02T16:41:55.8186749Z installing guile...
2025-10-02T16:41:55.9876475Z installing make...
2025-10-02T16:41:55.9944618Z installing manjaro-keyring...
2025-10-02T16:41:56.0196232Z >>> Run `pacman-key --init` to set up your pacman keyring.
2025-10-02T16:41:56.0197225Z >>> Then run `pacman-key --populate manjaro` to install the Manjaro keyring.
2025-10-02T16:41:56.0198327Z installing patch...
2025-10-02T16:41:56.0212244Z Optional dependencies for patch
2025-10-02T16:41:56.0213094Z ed: for patch -e functionality
2025-10-02T16:41:56.0213869Z installing pkgconf...
2025-10-02T16:41:56.0244165Z installing sudo...
2025-10-02T16:41:56.0515126Z installing texinfo...
2025-10-02T16:41:56.1194097Z Optional dependencies for texinfo
2025-10-02T16:41:56.1195110Z perl-archive-zip: EPUB file output via texi2any
2025-10-02T16:41:56.1195880Z installing which...
2025-10-02T16:41:56.1200232Z installing base-devel...
2025-10-02T16:41:56.3120919Z :: Running post-transaction hooks...
2025-10-02T16:41:56.3121596Z ( 1/14) Creating system user accounts...
2025-10-02T16:41:56.3222340Z Creating group 'alpm' with GID 972.
2025-10-02T16:41:56.3225900Z Creating user 'alpm' (Manjaro Linux Package Management) with UID 972 and GID 972.
2025-10-02T16:41:56.3283247Z ( 2/14) Updating journal message catalog...
2025-10-02T16:41:56.3438652Z ( 3/14) Reloading system manager configuration...
2025-10-02T16:41:56.3514233Z Skipped: Running in chroot.
2025-10-02T16:41:56.3516441Z ( 4/14) Reloading user manager configuration...
2025-10-02T16:41:56.3590929Z Skipped: Running in chroot.
2025-10-02T16:41:56.3593220Z ( 5/14) Updating udev hardware database...
2025-10-02T16:41:56.6539724Z ( 6/14) Applying kernel sysctl settings...
2025-10-02T16:41:56.6625771Z Skipped: Running in chroot.
2025-10-02T16:41:56.6627898Z ( 7/14) Creating temporary files...
2025-10-02T16:41:56.6891313Z ( 8/14) Reloading device manager configuration...
2025-10-02T16:41:56.6966733Z Skipped: Running in chroot.
2025-10-02T16:41:56.6968973Z ( 9/14) Arming ConditionNeedsUpdate...
2025-10-02T16:41:56.7035946Z (10/14) Rebuilding certificate stores...
2025-10-02T16:41:57.8421510Z (11/14) Reloading system bus configuration...
2025-10-02T16:41:57.8506334Z Skipped: Running in chroot.
2025-10-02T16:41:57.8508297Z (12/14) Checking for old perl modules...
2025-10-02T16:41:57.8587835Z (13/14) Configuring pacman-mirrors ...
2025-10-02T16:41:58.0053821Z ::^[[1;37mINFO^[[1;m Internet connection appears to be down
2025-10-02T16:41:58.0054842Z ::^[[1;37mINFO^[[1;m Mirror ranking is not available
2025-10-02T16:41:58.0055731Z ::^[[1;37mINFO^[[1;m Mirror list is generated using random method
2025-10-02T16:41:58.0056740Z ::^[[1;37mINFO^[[1;m Writing mirror list
2025-10-02T16:41:58.0057733Z ::Global : https://mirrors.manjaro.org/repo/stable^[[1;m
2025-10-02T16:41:58.0058855Z ::Global : https://mirrors2.manjaro.org/stable^[[1;m
2025-10-02T16:41:58.0060361Z ::Global : https://mirrors.cicku.me/manjaro/stable^[[1;m
2025-10-02T16:41:58.0061986Z ::^[[1;37mINFO^[[1;m Mirror list generated and saved to: /etc/pacman.d/mirrorlist
2025-10-02T16:41:58.0229685Z hint: use `pacman-mirrors` to generate and update your pacman mirrorlist.
2025-10-02T16:41:58.0232136Z (14/14) Updating the info directory file...
2025-10-02T16:42:00.3402371Z Backing up pacman-mirrors.conf...
2025-10-02T16:42:00.3418070Z Removing pacman-mirrors & Python packages to ensure clean chroot...
2025-10-02T16:42:00.3506278Z
2025-10-02T16:42:00.3507458Z Packages (9) mpdecimal-4.0.1-1 pacman-mirrors-5.2-1 python-3.13.7-1 python-charset-normalizer-3.4.3-1 python-idna-3.10-2 python-npyscreen-4.10.5-10 python-pytz-2025.2-1 python-requests-2.32.5-1 python-urllib3-2.5.0-1
2025-10-02T16:42:00.3508597Z
2025-10-02T16:42:00.3508840Z Total Removed Size: 73.74 MiB
2025-10-02T16:42:00.3509166Z
2025-10-02T16:42:00.3515747Z :: Do you want to remove these packages? [Y/n]
2025-10-02T16:42:00.3516324Z :: Processing package changes...
2025-10-02T16:42:00.3516819Z removing mpdecimal...
2025-10-02T16:42:00.3592764Z removing pacman-mirrors...
2025-10-02T16:42:00.3708128Z removing python...
2025-10-02T16:42:00.4592590Z removing python-charset-normalizer...
2025-10-02T16:42:00.4618191Z removing python-idna...
2025-10-02T16:42:00.4635409Z removing python-npyscreen...
2025-10-02T16:42:00.4690435Z removing python-pytz...
2025-10-02T16:42:00.4702652Z removing python-requests...
2025-10-02T16:42:00.4723486Z removing python-urllib3...
2025-10-02T16:42:00.5041020Z :: Running post-transaction hooks...
2025-10-02T16:42:00.5041740Z (1/1) Arming ConditionNeedsUpdate...
2025-10-02T16:42:00.5133373Z Restoring pacman-mirrors.conf...
2025-10-02T16:42:00.5148750Z
2025-10-02T16:42:00.5149802Z ^[[1m^[[32m^[[1m:: Populate keyrings.^[[0m
2025-10-02T16:42:00.5362710Z gpg: /etc/pacman.d/gnupg/trustdb.gpg: trustdb created
2025-10-02T16:42:00.5363710Z gpg: no ultimately trusted keys found
2025-10-02T16:42:00.5703919Z gpg: starting migration from earlier GnuPG versions
2025-10-02T16:42:00.5750278Z gpg: porting secret keys from '/etc/pacman.d/gnupg/secring.gpg' to gpg-agent
2025-10-02T16:42:00.5751308Z gpg: migration succeeded
2025-10-02T16:42:00.5782066Z ==> Generating pacman master key. This may take some time.
2025-10-02T16:42:00.5810870Z gpg: Generating pacman keyring master key...
2025-10-02T16:42:03.7162513Z gpg: directory '/etc/pacman.d/gnupg/openpgp-revocs.d' created
2025-10-02T16:42:03.7392003Z gpg: revocation certificate stored as '/etc/pacman.d/gnupg/openpgp-revocs.d/E7E8A84EDCD10D0D7AECADE9E7E1C6F1F53B9AD2.rev'
2025-10-02T16:42:03.7393311Z gpg: Done
2025-10-02T16:42:03.7423481Z ==> Updating trust database...
2025-10-02T16:42:03.7462463Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-02T16:42:03.7463549Z gpg: depth: 0 valid: 1 signed: 0 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-02T16:42:03.7667223Z ==> Appending keys from archlinux.gpg...
2025-10-02T16:42:06.5993537Z ==> Appending keys from manjaro.gpg...
2025-10-02T16:42:07.6088370Z ==> Locally signing trusted keys in keyring...
2025-10-02T16:42:10.1832905Z -> Locally signed 23 keys.
2025-10-02T16:42:10.1854521Z ==> Importing owner trust values...
2025-10-02T16:42:10.1888051Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1888523Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1889271Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1889985Z gpg: inserting ownertrust of 4
2025-10-02T16:42:10.1890430Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1925459Z gpg: inserting ownertrust of 4
2025-10-02T16:42:10.1926235Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1927022Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1927586Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1928021Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1928435Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1928869Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1929302Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1929962Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1930380Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1930918Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1931660Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1932385Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1933131Z gpg: inserting ownertrust of 4
2025-10-02T16:42:10.1933772Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1934197Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1934609Z gpg: setting ownertrust to 4
2025-10-02T16:42:10.1935021Z gpg: inserting ownertrust of 4
2025-10-02T16:42:10.1954048Z ==> Disabling revoked keys in keyring...
2025-10-02T16:42:10.5446707Z -> Disabled 58 keys.
2025-10-02T16:42:10.5468209Z ==> Updating trust database...
2025-10-02T16:42:10.5509954Z gpg: Note: third-party key signatures using the SHA1 algorithm are rejected
2025-10-02T16:42:10.5510786Z gpg: (use option "--allow-weak-key-signatures" to override)
2025-10-02T16:42:10.5798202Z gpg: marginals needed: 3 completes needed: 1 trust model: pgp
2025-10-02T16:42:10.6151376Z gpg: depth: 0 valid: 1 signed: 20 trust: 0-, 0q, 0n, 0m, 0f, 1u
2025-10-02T16:42:10.6464093Z gpg: depth: 1 valid: 20 signed: 102 trust: 0-, 0q, 0n, 20m, 0f, 0u
2025-10-02T16:42:10.6662966Z gpg: depth: 2 valid: 75 signed: 19 trust: 75-, 0q, 0n, 0m, 0f, 0u
2025-10-02T16:42:10.6665526Z gpg: next trustdb check due at 2025-11-16
2025-10-02T16:42:10.6679323Z
2025-10-02T16:42:10.6680329Z ^[[1m^[[32m^[[1m:: Create locale^[[0m
2025-10-02T16:42:10.6736868Z Generating locales...
2025-10-02T16:42:11.1338040Z C.UTF-8... done
2025-10-02T16:42:12.3060895Z en_US.UTF-8... done
2025-10-02T16:42:13.4730167Z de_DE.UTF-8... done
2025-10-02T16:42:13.4730836Z Generation complete.
2025-10-02T16:42:13.5064524Z
2025-10-02T16:42:13.5065802Z ^[[1m^[[32m^[[1m:: Configure branch [unstable]^[[0m
2025-10-02T16:42:13.5110206Z
2025-10-02T16:42:13.5110843Z ^[[1m^[[32m^[[1m:: Update chroot file system^[[0m
2025-10-02T16:42:13.5245672Z :: Synchronizing package databases...
2025-10-02T16:42:14.2966418Z core downloading...
2025-10-02T16:42:14.2967381Z extra downloading...
2025-10-02T16:42:14.2968207Z multilib downloading...
2025-10-02T16:42:14.2971320Z :: Starting full system upgrade...
2025-10-02T16:42:14.5225828Z there is nothing to do
2025-10-02T16:42:14.5280786Z
2025-10-02T16:42:14.5281238Z linux510-5.10.245-1*.zst
2025-10-02T16:42:14.5282553Z ^[[1m^[[32m^[[1m:: Install local package(s):^[[0m
2025-10-02T16:42:14.5283185Z linux510-headers*.zst
2025-10-02T16:42:14.5283434Z
2025-10-02T16:42:14.7011124Z loading packages...
2025-10-02T16:42:14.7011938Z resolving dependencies...
2025-10-02T16:42:14.8825739Z :: There are 3 providers available for initramfs:
2025-10-02T16:42:14.8832906Z :: Repository core
2025-10-02T16:42:14.8833671Z 1) mkinitcpio
2025-10-02T16:42:14.8834245Z :: Repository extra
2025-10-02T16:42:14.8834792Z 2) booster 3) dracut
2025-10-02T16:42:14.8835201Z
2025-10-02T16:42:14.8835545Z Enter a number (default=1):
2025-10-02T16:42:14.8836295Z looking for conflicting packages...
2025-10-02T16:42:14.8836782Z
2025-10-02T16:42:14.8837756Z Packages (7) mkinitcpio-39.2-4 mkinitcpio-busybox-1.36.1-1 mpdecimal-4.0.1-1 pahole-1:1.30-2 python-3.13.7-1 linux510-5.10.245-1 linux510-headers-5.10.245-1
2025-10-02T16:42:14.8838633Z
2025-10-02T16:42:14.8838857Z Total Download Size: 0.34 MiB
2025-10-02T16:42:14.8839358Z Total Installed Size: 274.87 MiB
2025-10-02T16:42:14.8839868Z
2025-10-02T16:42:14.8840391Z :: Proceed with installation? [Y/n]
2025-10-02T16:42:14.8841236Z :: Retrieving packages...
2025-10-02T16:42:15.8246392Z mkinitcpio-busybox-1.36.1-1-x86_64 downloading...
2025-10-02T16:42:15.8247530Z mkinitcpio-39.2-4-any downloading...
2025-10-02T16:42:15.8248240Z checking keyring...
2025-10-02T16:42:15.8682946Z checking package integrity...
2025-10-02T16:42:15.9758742Z loading package files...
2025-10-02T16:42:15.9876451Z checking for file conflicts...
2025-10-02T16:42:16.0180887Z checking available disk space...
2025-10-02T16:42:16.0247124Z :: Processing package changes...
2025-10-02T16:42:16.0248067Z installing mkinitcpio-busybox...
2025-10-02T16:42:16.0268826Z installing mkinitcpio...
2025-10-02T16:42:16.0320875Z Optional dependencies for mkinitcpio
2025-10-02T16:42:16.0321684Z xz: Use lzma or xz compression for the initramfs image [installed]
2025-10-02T16:42:16.0322403Z bzip2: Use bzip2 compression for the initramfs image [installed]
2025-10-02T16:42:16.0323058Z lzop: Use lzo compression for the initramfs image
2025-10-02T16:42:16.0323694Z lz4: Use lz4 compression for the initramfs image [installed]
2025-10-02T16:42:16.0324372Z mkinitcpio-nfs-utils: Support for root filesystem on NFS
2025-10-02T16:42:16.0324992Z systemd-ukify: alternative UKI generator
2025-10-02T16:42:16.0325523Z installing linux510...
2025-10-02T16:42:16.5537871Z Optional dependencies for linux510
2025-10-02T16:42:16.5538955Z linux-firmware: firmware images needed for some devices
2025-10-02T16:42:16.5540199Z scx-scheds: to use sched-ext schedulers
2025-10-02T16:42:16.5540929Z wireless-regdb: to set the correct wireless channels of your country
2025-10-02T16:42:16.5541675Z installing mpdecimal...
2025-10-02T16:42:16.5561977Z installing python...
2025-10-02T16:42:16.8589283Z Optional dependencies for python
2025-10-02T16:42:16.8590587Z python-setuptools: for building Python packages using tooling that is usually bundled with Python
2025-10-02T16:42:16.8591659Z python-pip: for installing Python packages using tooling that is usually bundled with Python
2025-10-02T16:42:16.8592592Z python-pipx: for installing Python software not packaged on Arch Linux
2025-10-02T16:42:16.8593368Z sqlite: for a default database integration [installed]
2025-10-02T16:42:16.8593979Z xz: for lzma [installed]
2025-10-02T16:42:16.8594481Z tk: for tkinter
2025-10-02T16:42:16.8595172Z installing pahole...
2025-10-02T16:42:16.8640487Z Optional dependencies for pahole
2025-10-02T16:42:16.8641711Z ostra-cg: Generate call graphs from encoded traces
2025-10-02T16:42:16.8642786Z installing linux510-headers...
2025-10-02T16:42:18.8832332Z :: Running post-transaction hooks...
2025-10-02T16:42:18.8833877Z (1/5) Reloading system manager configuration...
2025-10-02T16:42:18.9657621Z Skipped: Running in chroot.
2025-10-02T16:42:18.9658619Z (2/5) Creating temporary files...
2025-10-02T16:42:19.0686418Z (3/5) Arming ConditionNeedsUpdate...
2025-10-02T16:42:19.1435691Z (4/5) Updating module dependencies...
2025-10-02T16:42:22.2668015Z (5/5) Updating linux initcpios...
2025-10-02T16:42:22.4216347Z ==> Building image from preset: /etc/mkinitcpio.d/linux510.preset: 'default'
2025-10-02T16:42:22.4217439Z ==> Using default configuration file: '/etc/mkinitcpio.conf'
2025-10-02T16:42:22.4218161Z -> -k /boot/vmlinuz-5.10-x86_64 -g /boot/initramfs-5.10-x86_64.img
2025-10-02T16:42:22.4654260Z ==> Starting build: '5.10.245-1-MANJARO'
2025-10-02T16:42:22.4827367Z -> Running build hook: [base]
2025-10-02T16:42:22.7154212Z -> Running build hook: [udev]
2025-10-02T16:42:22.9111548Z -> Running build hook: [autodetect]
2025-10-02T16:42:22.9770035Z -> Running build hook: [microcode]
2025-10-02T16:42:22.9924217Z -> Running build hook: [modconf]
2025-10-02T16:42:22.9981123Z -> Running build hook: [kms]
2025-10-02T16:42:23.1999839Z -> Running build hook: [keyboard]
2025-10-02T16:42:23.5175625Z -> Running build hook: [keymap]
2025-10-02T16:42:23.5359105Z -> Running build hook: [consolefont]
2025-10-02T16:42:23.5439853Z ==> WARNING: consolefont: no font found in configuration
2025-10-02T16:42:23.5467213Z -> Running build hook: [block]
2025-10-02T16:42:24.6293635Z -> Running build hook: [filesystems]
2025-10-02T16:42:24.7809401Z -> Running build hook: [fsck]
2025-10-02T16:42:24.8704633Z ==> Generating module dependencies
2025-10-02T16:42:24.9157751Z ==> Creating zstd-compressed initcpio image: '/boot/initramfs-5.10-x86_64.img'
2025-10-02T16:42:24.9857368Z -> Early uncompressed CPIO image generation successful
2025-10-02T16:42:25.1201020Z ==> Initcpio image generation successful
2025-10-02T16:42:25.1269782Z ==> Building image from preset: /etc/mkinitcpio.d/linux510.preset: 'fallback'
2025-10-02T16:42:25.1271064Z ==> Using default configuration file: '/etc/mkinitcpio.conf'
2025-10-02T16:42:25.1279019Z -> -k /boot/vmlinuz-5.10-x86_64 -g /boot/initramfs-5.10-x86_64-fallback.img -S autodetect
2025-10-02T16:42:25.1720200Z ==> Starting build: '5.10.245-1-MANJARO'
2025-10-02T16:42:25.1902841Z -> Running build hook: [base]
2025-10-02T16:42:25.4294569Z -> Running build hook: [udev]
2025-10-02T16:42:25.6371688Z -> Running build hook: [microcode]
2025-10-02T16:42:25.6410949Z -> Running build hook: [modconf]
2025-10-02T16:42:25.6469326Z -> Running build hook: [kms]
2025-10-02T16:42:25.9406044Z ==> WARNING: Possibly missing firmware for module: 'ast'
2025-10-02T16:42:26.1207345Z ==> WARNING: Possibly missing firmware for module: 'amdgpu'
2025-10-02T16:42:26.2650942Z ==> WARNING: Possibly missing firmware for module: 'radeon'
2025-10-02T16:42:26.3345984Z ==> WARNING: Possibly missing firmware for module: 'nouveau'
2025-10-02T16:42:26.3973112Z ==> WARNING: Possibly missing firmware for module: 'i915'
2025-10-02T16:42:26.4808363Z -> Running build hook: [keyboard]
2025-10-02T16:42:27.6386531Z -> Running build hook: [keymap]
2025-10-02T16:42:27.6572519Z -> Running build hook: [consolefont]
2025-10-02T16:42:27.6654012Z ==> WARNING: consolefont: no font found in configuration
2025-10-02T16:42:27.6681914Z -> Running build hook: [block]
2025-10-02T16:42:27.8467981Z ==> WARNING: Possibly missing firmware for module: 'cxgb4'
2025-10-02T16:42:27.8569905Z ==> WARNING: Possibly missing firmware for module: 'csiostor'
2025-10-02T16:42:27.8853130Z ==> WARNING: Possibly missing firmware for module: 'aic94xx'
2025-10-02T16:42:27.9309998Z ==> WARNING: Possibly missing firmware for module: 'qed'
2025-10-02T16:42:27.9450095Z ==> WARNING: Possibly missing firmware for module: 'qla1280'
2025-10-02T16:42:28.1129256Z ==> WARNING: Possibly missing firmware for module: 'bfa'
2025-10-02T16:42:28.1637817Z ==> WARNING: Possibly missing firmware for module: 'cxgb3'
2025-10-02T16:42:28.3339090Z ==> WARNING: Possibly missing firmware for module: 'qla2xxx'
2025-10-02T16:42:28.3492551Z ==> WARNING: Possibly missing firmware for module: 'isci'
2025-10-02T16:42:28.3554225Z ==> WARNING: Possibly missing firmware for module: 'advansys'
2025-10-02T16:42:28.5222358Z ==> WARNING: Possibly missing firmware for module: 'wd719x'
2025-10-02T16:42:29.3252274Z ==> WARNING: Possibly missing firmware for module: 'ums_eneub6250'
2025-10-02T16:42:30.9469990Z -> Running build hook: [filesystems]
2025-10-02T16:42:31.7872650Z -> Running build hook: [fsck]
2025-10-02T16:42:33.0739849Z ==> Generating module dependencies
2025-10-02T16:42:33.9926022Z ==> Creating zstd-compressed initcpio image: '/boot/initramfs-5.10-x86_64-fallback.img'
2025-10-02T16:42:34.4637122Z -> Early uncompressed CPIO image generation successful
2025-10-02T16:42:34.5891435Z ==> Initcpio image generation successful
2025-10-02T16:42:34.6926110Z
2025-10-02T16:42:34.6927369Z ^[[1m * modules: Building packages.^[[0m
2025-10-02T16:42:34.6927968Z
2025-10-02T16:42:34.6939197Z ^[[1m^[[33m^[[1m >> modules: 1/17 - acpi_call^[[0m
2025-10-02T16:42:34.6951892Z ^[[1m logfile: /home/runner/.chrootbuild-logs/acpi_call_202510021642^[[0m
2025-10-02T16:42:34.6952362Z
2025-10-02T16:43:15.7650891Z ^[[1m^[[33m^[[1m >> modules: 2/17 - bbswitch^[[0m
2025-10-02T16:43:15.7663839Z ^[[1m logfile: /home/runner/.chrootbuild-logs/bbswitch_202510021643^[[0m
2025-10-02T16:43:15.7664281Z
2025-10-02T16:43:21.2207692Z ^[[1m^[[33m^[[1m >> modules: 3/17 - broadcom-wl^[[0m
2025-10-02T16:43:21.2220932Z ^[[1m logfile: /home/runner/.chrootbuild-logs/broadcom-wl_202510021643^[[0m
2025-10-02T16:43:21.2221923Z
2025-10-02T16:44:07.6038245Z ^[[1m^[[33m^[[1m >> modules: 4/17 - nvidia^[[0m
2025-10-02T16:44:07.6051784Z ^[[1m logfile: /home/runner/.chrootbuild-logs/nvidia_202510021644^[[0m
2025-10-02T16:44:07.6052294Z
2025-10-02T16:48:41.3094481Z ^[[1m^[[33m^[[1m >> modules: 5/17 - nvidia-390xx^[[0m
2025-10-02T16:48:41.3111350Z ^[[1m logfile: /home/runner/.chrootbuild-logs/nvidia-390xx_202510021648^[[0m
2025-10-02T16:48:41.3111829Z
2025-10-02T16:51:27.6737940Z ^[[1m^[[33m^[[1m >> modules: 6/17 - nvidia-470xx^[[0m
2025-10-02T16:51:27.6751220Z ^[[1m logfile: /home/runner/.chrootbuild-logs/nvidia-470xx_202510021651^[[0m
2025-10-02T16:51:27.6751694Z
2025-10-02T16:54:57.6229077Z ^[[1m^[[33m^[[1m >> modules: 7/17 - nvidia-570xx^[[0m
2025-10-02T16:54:57.6244509Z ^[[1m logfile: /home/runner/.chrootbuild-logs/nvidia-570xx_202510021654^[[0m
2025-10-02T16:54:57.6244976Z
2025-10-02T16:59:52.8392789Z ^[[1m^[[33m^[[1m >> modules: 8/17 - nvidia-575xx^[[0m
2025-10-02T16:59:52.8407336Z ^[[1m logfile: /home/runner/.chrootbuild-logs/nvidia-575xx_202510021659^[[0m
2025-10-02T16:59:52.8408119Z
2025-10-02T17:04:54.3225720Z ^[[1m^[[33m^[[1m >> modules: 9/17 - nvidia-570xx-open^[[0m
2025-10-02T17:04:54.3241017Z ^[[1m logfile: /home/runner/.chrootbuild-logs/nvidia-570xx-open_202510021704^[[0m
2025-10-02T17:04:54.3241783Z
2025-10-02T17:13:03.1231400Z ^[[1m^[[33m^[[1m >> modules: 10/17 - nvidia-575xx-open^[[0m
2025-10-02T17:13:03.1244563Z ^[[1m logfile: /home/runner/.chrootbuild-logs/nvidia-575xx-open_202510021713^[[0m
2025-10-02T17:13:03.1245357Z
2025-10-02T17:21:08.4592599Z ^[[1m^[[33m^[[1m >> modules: 11/17 - nvidia-open^[[0m
2025-10-02T17:21:08.4605134Z ^[[1m logfile: /home/runner/.chrootbuild-logs/nvidia-open_202510021721^[[0m
2025-10-02T17:21:08.4605933Z
2025-10-02T17:28:51.2831137Z ^[[1m^[[33m^[[1m >> modules: 12/17 - r8168^[[0m
2025-10-02T17:28:51.2845048Z ^[[1m logfile: /home/runner/.chrootbuild-logs/r8168_202510021728^[[0m
2025-10-02T17:28:51.2845497Z
2025-10-02T17:29:02.3965844Z ^[[1m^[[33m^[[1m >> modules: 13/17 - rtl8723bu^[[0m
2025-10-02T17:29:02.3978410Z ^[[1m logfile: /home/runner/.chrootbuild-logs/rtl8723bu_202510021729^[[0m
2025-10-02T17:29:02.3979161Z
2025-10-02T17:29:34.9966177Z ^[[1m^[[33m^[[1m >> modules: 14/17 - tp_smapi^[[0m
2025-10-02T17:29:34.9978962Z ^[[1m logfile: /home/runner/.chrootbuild-logs/tp_smapi_202510021729^[[0m
2025-10-02T17:29:34.9979421Z
2025-10-02T17:29:41.3711842Z ^[[1m^[[33m^[[1m >> modules: 15/17 - vhba-module^[[0m
2025-10-02T17:29:41.3724261Z ^[[1m logfile: /home/runner/.chrootbuild-logs/vhba-module_202510021729^[[0m
2025-10-02T17:29:41.3725029Z
2025-10-02T17:29:46.0537924Z ^[[1m^[[33m^[[1m >> modules: 16/17 - virtualbox^[[0m
2025-10-02T17:29:46.0550296Z ^[[1m logfile: /home/runner/.chrootbuild-logs/virtualbox_202510021729^[[0m
2025-10-02T17:29:46.0551027Z
2025-10-02T17:30:37.8690035Z ^[[1m^[[33m^[[1m >> modules: 17/17 - zfs^[[0m
2025-10-02T17:30:37.8702512Z ^[[1m logfile: /home/runner/.chrootbuild-logs/zfs_202510021730^[[0m
2025-10-02T17:30:37.8703059Z
2025-10-02T17:37:20.1574951Z ^[[1m Finished.^[[0m
2025-10-02T17:37:20.1575323Z
2025-10-02T17:37:20.1575575Z ^[[1m Cleaning up.^[[0m
2025-10-02T17:37:20.1575847Z
2025-10-02T17:37:20.1957491Z ## signing /home/runner/work/linux510/linux510/linux510-vhba-module-20250329-16-x86_64.pkg.tar.zst
2025-10-02T17:37:20.4432179Z ## signing /home/runner/work/linux510/linux510/linux510-rtl8723bu-20250811-8-x86_64.pkg.tar.zst
2025-10-02T17:37:20.6957659Z ## signing /home/runner/work/linux510/linux510/linux510-nvidia-470xx-470.256.02-38-x86_64.pkg.tar.zst
2025-10-02T17:37:20.9779208Z ## signing /home/runner/work/linux510/linux510/linux510-acpi_call-1.2.2-198-x86_64.pkg.tar.zst
2025-10-02T17:37:21.2237576Z ## signing /home/runner/work/linux510/linux510/linux510-r8168-8.055.00-17-x86_64.pkg.tar.zst
2025-10-02T17:37:21.4694750Z ## signing /home/runner/work/linux510/linux510/linux510-nvidia-580.95.05-2-x86_64.pkg.tar.zst
2025-10-02T17:37:21.8416329Z ## signing /home/runner/work/linux510/linux510/linux510-virtualbox-host-modules-7.2.2-3-x86_64.pkg.tar.zst
2025-10-02T17:37:22.0871663Z ## signing /home/runner/work/linux510/linux510/linux510-nvidia-575xx-open-575.64.05-2-x86_64.pkg.tar.zst
2025-10-02T17:37:22.3420562Z ## signing /home/runner/work/linux510/linux510/linux510-zfs-2.3.4-7-x86_64.pkg.tar.zst
2025-10-02T17:37:22.5893348Z ## signing /home/runner/work/linux510/linux510/linux510-nvidia-575xx-575.64.05-2-x86_64.pkg.tar.zst
2025-10-02T17:37:22.9630847Z ## signing /home/runner/work/linux510/linux510/linux510-tp_smapi-0.45-11-x86_64.pkg.tar.zst
2025-10-02T17:37:23.2093526Z ## signing /home/runner/work/linux510/linux510/linux510-nvidia-570xx-open-570.190-2-x86_64.pkg.tar.zst
2025-10-02T17:37:23.4651254Z ## signing /home/runner/work/linux510/linux510/linux510-nvidia-570xx-570.190-2-x86_64.pkg.tar.zst
2025-10-02T17:37:23.8185033Z ## signing /home/runner/work/linux510/linux510/linux510-broadcom-wl-6.30.223.271-295-x86_64.pkg.tar.zst
2025-10-02T17:37:24.0656541Z ## signing /home/runner/work/linux510/linux510/linux510-nvidia-open-580.95.05-2-x86_64.pkg.tar.zst
2025-10-02T17:37:24.3258011Z ## signing /home/runner/work/linux510/linux510/linux510-bbswitch-0.8-295-x86_64.pkg.tar.zst
2025-10-02T17:37:24.5706683Z ## signing /home/runner/work/linux510/linux510/linux510-nvidia-390xx-390.157-116-x86_64.pkg.tar.zst
2025-10-02T17:37:24.8321983Z ##[group]Run pushd /home/runner/.chrootbuild-logs
2025-10-02T17:37:24.8322594Z ^[[36;1mpushd /home/runner/.chrootbuild-logs^[[0m
2025-10-02T17:37:24.8323110Z ^[[36;1msudo zip "linux-5.10.245-1-logs.zip" ./*^[[0m
2025-10-02T17:37:24.8323876Z ^[[36;1mecho *** | gh auth login --with-token^[[0m
2025-10-02T17:37:24.8324565Z ^[[36;1mGITHUB_LINK=https://github.com/manjaro-kernels/linux510/releases/download/5.10.245-1^[[0m
2025-10-02T17:37:24.8325443Z ^[[36;1mgh release upload 5.10.245-1 --repo ${GITHUB_REPOSITORY} --clobber ./linux-5.10.245-1-logs.zip # ./*.tar^[[0m
2025-10-02T17:37:24.8326112Z ^[[36;1mpopd^[[0m
2025-10-02T17:37:24.8358351Z shell: /usr/bin/bash -O extglob {0}
2025-10-02T17:37:24.8358824Z env:
2025-10-02T17:37:24.8359203Z KERNEL: linux510
2025-10-02T17:37:24.8359864Z CHRSRC: /var/lib/chrootbuild/build/linux510
2025-10-02T17:37:24.8360463Z TAG: 5.10.245-1
2025-10-02T17:37:24.8361147Z GITHUB_LINK: https://github.com/manjaro-kernels/linux510/releases/download/5.10.245-1
2025-10-02T17:37:24.8361784Z ##[endgroup]
2025-10-02T17:37:24.8412845Z ~/.chrootbuild-logs ~/work/linux510/linux510
2025-10-02T17:37:24.8482131Z adding: acpi_call_202510021642 (deflated 81%)
2025-10-02T17:37:24.8483009Z adding: bbswitch_202510021643 (deflated 63%)
2025-10-02T17:37:24.8484947Z adding: broadcom-wl_202510021643 (deflated 81%)
2025-10-02T17:37:24.8486093Z adding: build_log (deflated 56%)
2025-10-02T17:37:24.8489282Z adding: nvidia-390xx_202510021648 (deflated 81%)
2025-10-02T17:37:24.8492818Z adding: nvidia-470xx_202510021651 (deflated 83%)
2025-10-02T17:37:24.8496462Z adding: nvidia-570xx-open_202510021704 (deflated 85%)
2025-10-02T17:37:24.8500101Z adding: nvidia-570xx_202510021654 (deflated 85%)
2025-10-02T17:37:24.8503665Z adding: nvidia-575xx-open_202510021713 (deflated 85%)
2025-10-02T17:37:24.8506957Z adding: nvidia-575xx_202510021659 (deflated 85%)
2025-10-02T17:37:24.8509808Z adding: nvidia-open_202510021721 (deflated 85%)
2025-10-02T17:37:24.8513756Z adding: nvidia_202510021644 (deflated 85%)
2025-10-02T17:37:24.8514658Z adding: r8168_202510021728 (deflated 70%)
2025-10-02T17:37:24.8516333Z adding: rtl8723bu_202510021729 (deflated 78%)
2025-10-02T17:37:24.8517685Z adding: tp_smapi_202510021729 (deflated 65%)
2025-10-02T17:37:24.8518544Z adding: vhba-module_202510021729 (deflated 65%)
2025-10-02T17:37:24.8520696Z adding: virtualbox_202510021729 (deflated 83%)
2025-10-02T17:37:24.8523013Z adding: zfs_202510021730 (deflated 86%)
2025-10-02T17:37:25.7751446Z ~/work/linux510/linux510
2025-10-02T17:37:25.7784632Z ##[group]Run sudo zip "linux-5.10.245-1-extramodules.zip" ./*.zst ./*.sig
2025-10-02T17:37:25.7785331Z ^[[36;1msudo zip "linux-5.10.245-1-extramodules.zip" ./*.zst ./*.sig^[[0m
2025-10-02T17:37:25.7786276Z ^[[36;1mecho *** | gh auth login --with-token^[[0m
2025-10-02T17:37:25.7787070Z ^[[36;1mGITHUB_LINK=https://github.com/manjaro-kernels/linux510/releases/download/5.10.245-1^[[0m
2025-10-02T17:37:25.7788000Z ^[[36;1mgh release upload 5.10.245-1 --repo ${GITHUB_REPOSITORY} --clobber ./linux-5.10.245-1-extramodules.zip # ./*.tar^[[0m
2025-10-02T17:37:25.7820853Z shell: /usr/bin/bash -O extglob {0}
2025-10-02T17:37:25.7821315Z env:
2025-10-02T17:37:25.7821692Z KERNEL: linux510
2025-10-02T17:37:25.7822127Z CHRSRC: /var/lib/chrootbuild/build/linux510
2025-10-02T17:37:25.7822599Z TAG: 5.10.245-1
2025-10-02T17:37:25.7823172Z GITHUB_LINK: https://github.com/manjaro-kernels/linux510/releases/download/5.10.245-1
2025-10-02T17:37:25.7823793Z ##[endgroup]
2025-10-02T17:37:25.7945238Z adding: linux510-acpi_call-1.2.2-198-x86_64.pkg.tar.zst (stored 0%)
2025-10-02T17:37:25.7946616Z adding: linux510-bbswitch-0.8-295-x86_64.pkg.tar.zst (stored 0%)
2025-10-02T17:37:25.8299457Z adding: linux510-broadcom-wl-6.30.223.271-295-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:26.0510634Z adding: linux510-nvidia-390xx-390.157-116-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:26.6419289Z adding: linux510-nvidia-470xx-470.256.02-38-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:28.3778414Z adding: linux510-nvidia-570xx-570.190-2-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:28.5384668Z adding: linux510-nvidia-570xx-open-570.190-2-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:30.5920196Z adding: linux510-nvidia-575xx-575.64.05-2-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:30.7484790Z adding: linux510-nvidia-575xx-open-575.64.05-2-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:32.7815594Z adding: linux510-nvidia-580.95.05-2-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:33.0198285Z adding: linux510-nvidia-open-580.95.05-2-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:33.0216407Z adding: linux510-r8168-8.055.00-17-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:33.1366466Z adding: linux510-rtl8723bu-20250811-8-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:33.1372651Z adding: linux510-tp_smapi-0.45-11-x86_64.pkg.tar.zst (deflated 1%)
2025-10-02T17:37:33.1375410Z adding: linux510-vhba-module-20250329-16-x86_64.pkg.tar.zst (deflated 2%)
2025-10-02T17:37:33.1418970Z adding: linux510-virtualbox-host-modules-7.2.2-3-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:33.1774501Z adding: linux510-zfs-2.3.4-7-x86_64.pkg.tar.zst (deflated 0%)
2025-10-02T17:37:33.1775807Z adding: linux510-acpi_call-1.2.2-198-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1776987Z adding: linux510-bbswitch-0.8-295-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1778122Z adding: linux510-broadcom-wl-6.30.223.271-295-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1779328Z adding: linux510-nvidia-390xx-390.157-116-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1780502Z adding: linux510-nvidia-470xx-470.256.02-38-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1781549Z adding: linux510-nvidia-570xx-570.190-2-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1782813Z adding: linux510-nvidia-570xx-open-570.190-2-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1783889Z adding: linux510-nvidia-575xx-575.64.05-2-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1784974Z adding: linux510-nvidia-575xx-open-575.64.05-2-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1785960Z adding: linux510-nvidia-580.95.05-2-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1786792Z adding: linux510-nvidia-open-580.95.05-2-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1787615Z adding: linux510-r8168-8.055.00-17-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1788428Z adding: linux510-rtl8723bu-20250811-8-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1789642Z adding: linux510-tp_smapi-0.45-11-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1791088Z adding: linux510-vhba-module-20250329-16-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1792503Z adding: linux510-virtualbox-host-modules-7.2.2-3-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:33.1793720Z adding: linux510-zfs-2.3.4-7-x86_64.pkg.tar.zst.sig (stored 0%)
2025-10-02T17:37:40.0303406Z ##[group]Run if [[ -z "***" ]]; then
2025-10-02T17:37:40.0303983Z ^[[36;1mif [[ -z "***" ]]; then ^[[0m
2025-10-02T17:37:40.0304490Z ^[[36;1m echo "## no bxt-API-key provided. unable to deploy."^[[0m
2025-10-02T17:37:40.0305004Z ^[[36;1m exit 0^[[0m
2025-10-02T17:37:40.0305389Z ^[[36;1mfi^[[0m
2025-10-02T17:37:40.0305847Z ^[[36;1mif [[ ! -f /home/runner/.chrootbuild-logs/err_list ]]; then^[[0m
2025-10-02T17:37:40.0306403Z ^[[36;1m # Server URL^[[0m
2025-10-02T17:37:40.0306908Z ^[[36;1m BASE_URL="https://bxt.staging.manjaro.org/api/deploy"^[[0m
2025-10-02T17:37:40.0307460Z ^[[36;1m # API key for authentication^[[0m
2025-10-02T17:37:40.0307943Z ^[[36;1m API_KEY="***"^[[0m
2025-10-02T17:37:40.0308351Z ^[[36;1m^[[0m
2025-10-02T17:37:40.0308774Z ^[[36;1m # Start the deployment and get a session ID^[[0m
2025-10-02T17:37:40.0309310Z ^[[36;1m echo "Starting deployment..."^[[0m
2025-10-02T17:37:40.0310341Z ^[[36;1m SESSION_ID=$(curl -s -X POST "$BASE_URL/start" -H "key: $API_KEY" -H "job-url: https://github.com/manjaro-kernels/linux510/actions/runs/18197556981")^[[0m
2025-10-02T17:37:40.0311161Z ^[[36;1m if [ -z "$SESSION_ID" ]; then^[[0m
2025-10-02T17:37:40.0311640Z ^[[36;1m echo "Failed to obtain a session ID."^[[0m
2025-10-02T17:37:40.0312122Z ^[[36;1m exit 1^[[0m
2025-10-02T17:37:40.0312511Z ^[[36;1m fi^[[0m
2025-10-02T17:37:40.0312922Z ^[[36;1m echo "Session ID: $SESSION_ID"^[[0m
2025-10-02T17:37:40.0313369Z ^[[36;1m^[[0m
2025-10-02T17:37:40.0313764Z ^[[36;1m # Function to push a package^[[0m
2025-10-02T17:37:40.0314229Z ^[[36;1m push_package() {^[[0m
2025-10-02T17:37:40.0314665Z ^[[36;1m local FILE_PATH="$1"^[[0m
2025-10-02T17:37:40.0315104Z ^[[36;1m local BRANCH="$2"^[[0m
2025-10-02T17:37:40.0315537Z ^[[36;1m local REPOSITORY="$3"^[[0m
2025-10-02T17:37:40.0315991Z ^[[36;1m local ARCHITECTURE="$4"^[[0m
2025-10-02T17:37:40.0316421Z ^[[36;1m^[[0m
2025-10-02T17:37:40.0316938Z ^[[36;1m echo "Pushing package: $FILE_PATH..."^[[0m
2025-10-02T17:37:40.0317423Z ^[[36;1m^[[0m
2025-10-02T17:37:40.0317885Z ^[[36;1m # Push the package^[[0m
2025-10-02T17:37:40.0318373Z ^[[36;1m PUSH_RESPONSE=$(curl -s -X POST "$BASE_URL/push" \^[[0m
2025-10-02T17:37:40.0318914Z ^[[36;1m -H "session: $SESSION_ID" \^[[0m
2025-10-02T17:37:40.0319381Z ^[[36;1m -H "key: $API_KEY" \^[[0m
2025-10-02T17:37:40.0320036Z ^[[36;1m -F "branch=$BRANCH" \^[[0m
2025-10-02T17:37:40.0320503Z ^[[36;1m -F "repository=$REPOSITORY" \^[[0m
2025-10-02T17:37:40.0320999Z ^[[36;1m -F "architecture=$ARCHITECTURE" \^[[0m
2025-10-02T17:37:40.0321501Z ^[[36;1m -F "file=@$FILE_PATH" \^[[0m
2025-10-02T17:37:40.0321963Z ^[[36;1m -F "signature=@$FILE_PATH.sig")^[[0m
2025-10-02T17:37:40.0322716Z ^[[36;1m^[[0m
2025-10-02T17:37:40.0323249Z ^[[36;1m # Check for errors in the response^[[0m
2025-10-02T17:37:40.0323765Z ^[[36;1m if [[ "$PUSH_RESPONSE" != *"ok"* ]]; then^[[0m
2025-10-02T17:37:40.0324292Z ^[[36;1m echo "Error pushing package: $FILE_PATH"^[[0m
2025-10-02T17:37:40.0324812Z ^[[36;1m echo "Error message: $PUSH_RESPONSE"^[[0m
2025-10-02T17:37:40.0325301Z ^[[36;1m return 1^[[0m
2025-10-02T17:37:40.0325701Z ^[[36;1m fi^[[0m
2025-10-02T17:37:40.0326081Z ^[[36;1m^[[0m
2025-10-02T17:37:40.0326482Z ^[[36;1m echo "Package pushed: $FILE_PATH"^[[0m
2025-10-02T17:37:40.0326955Z ^[[36;1m }^[[0m
2025-10-02T17:37:40.0327333Z ^[[36;1m^[[0m
2025-10-02T17:37:40.0327717Z ^[[36;1m # Push modules^[[0m
2025-10-02T17:37:40.0328139Z ^[[36;1m for m in $(ls ./*.zst); do^[[0m
2025-10-02T17:37:40.0328625Z ^[[36;1m push_package "${m}" "unstable" "extra" "x86_64"^[[0m
2025-10-02T17:37:40.0329114Z ^[[36;1m done^[[0m
2025-10-02T17:37:40.0329672Z ^[[36;1m mkdir kernel^[[0m
2025-10-02T17:37:40.0330116Z ^[[36;1m unzip linux-5.10.245-1.zip -d kernel^[[0m
2025-10-02T17:37:40.0330599Z ^[[36;1m # Push kernel^[[0m
2025-10-02T17:37:40.0331148Z ^[[36;1m for k in $(ls kernel/*.zst); do^[[0m
2025-10-02T17:37:40.0331731Z ^[[36;1m push_package "${k}" "unstable" "core" "x86_64"^[[0m
2025-10-02T17:37:40.0332215Z ^[[36;1m done^[[0m
2025-10-02T17:37:40.0332586Z ^[[36;1m^[[0m
2025-10-02T17:37:40.0332989Z ^[[36;1m # Finish the deployment transaction^[[0m
2025-10-02T17:37:40.0333490Z ^[[36;1m echo "Finishing deployment..."^[[0m
2025-10-02T17:37:40.0334126Z ^[[36;1m END_RESPONSE=$(curl -s -X POST "$BASE_URL/end" -H "session: $SESSION_ID" -H "key: $API_KEY")^[[0m
2025-10-02T17:37:40.0334734Z ^[[36;1m^[[0m
2025-10-02T17:37:40.0335125Z ^[[36;1m # Check the response for success^[[0m
2025-10-02T17:37:40.0335611Z ^[[36;1m if [[ "$END_RESPONSE" == *"ok"* ]]; then^[[0m
2025-10-02T17:37:40.0336135Z ^[[36;1m echo "Deployment completed successfully."^[[0m
2025-10-02T17:37:40.0336625Z ^[[36;1m else^[[0m
2025-10-02T17:37:40.0337020Z ^[[36;1m echo $END_RESPONSE^[[0m
2025-10-02T17:37:40.0337445Z ^[[36;1m fi^[[0m
2025-10-02T17:37:40.0337822Z ^[[36;1mfi^[[0m
2025-10-02T17:37:40.0369983Z shell: /usr/bin/bash -O extglob {0}
2025-10-02T17:37:40.0370446Z env:
2025-10-02T17:37:40.0370820Z KERNEL: linux510
2025-10-02T17:37:40.0371252Z CHRSRC: /var/lib/chrootbuild/build/linux510
2025-10-02T17:37:40.0371723Z TAG: 5.10.245-1
2025-10-02T17:37:40.0372303Z GITHUB_LINK: https://github.com/manjaro-kernels/linux510/releases/download/5.10.245-1
2025-10-02T17:37:40.0372928Z ##[endgroup]
2025-10-02T17:37:40.0424943Z Starting deployment...
2025-10-02T17:37:40.6150809Z Session ID: 3477121728794245835
2025-10-02T17:37:40.6169263Z Pushing package: ./linux510-acpi_call-1.2.2-198-x86_64.pkg.tar.zst...
2025-10-02T17:37:41.1048464Z Package pushed: ./linux510-acpi_call-1.2.2-198-x86_64.pkg.tar.zst
2025-10-02T17:37:41.1049827Z Pushing package: ./linux510-bbswitch-0.8-295-x86_64.pkg.tar.zst...
2025-10-02T17:37:41.4744847Z Package pushed: ./linux510-bbswitch-0.8-295-x86_64.pkg.tar.zst
2025-10-02T17:37:41.4745903Z Pushing package: ./linux510-broadcom-wl-6.30.223.271-295-x86_64.pkg.tar.zst...
2025-10-02T17:37:42.5554036Z Package pushed: ./linux510-broadcom-wl-6.30.223.271-295-x86_64.pkg.tar.zst
2025-10-02T17:37:42.5555928Z Pushing package: ./linux510-nvidia-390xx-390.157-116-x86_64.pkg.tar.zst...
2025-10-02T17:37:44.6214055Z Package pushed: ./linux510-nvidia-390xx-390.157-116-x86_64.pkg.tar.zst
2025-10-02T17:37:44.6215020Z Pushing package: ./linux510-nvidia-470xx-470.256.02-38-x86_64.pkg.tar.zst...
2025-10-02T17:37:48.5036298Z Package pushed: ./linux510-nvidia-470xx-470.256.02-38-x86_64.pkg.tar.zst
2025-10-02T17:37:48.5037819Z Pushing package: ./linux510-nvidia-570xx-570.190-2-x86_64.pkg.tar.zst...
2025-10-02T17:37:57.9334213Z Package pushed: ./linux510-nvidia-570xx-570.190-2-x86_64.pkg.tar.zst
2025-10-02T17:37:57.9335149Z Pushing package: ./linux510-nvidia-570xx-open-570.190-2-x86_64.pkg.tar.zst...
2025-10-02T17:37:59.6477199Z Package pushed: ./linux510-nvidia-570xx-open-570.190-2-x86_64.pkg.tar.zst
2025-10-02T17:37:59.6478153Z Pushing package: ./linux510-nvidia-575xx-575.64.05-2-x86_64.pkg.tar.zst...
2025-10-02T17:38:10.6924723Z Package pushed: ./linux510-nvidia-575xx-575.64.05-2-x86_64.pkg.tar.zst
2025-10-02T17:38:10.6925738Z Pushing package: ./linux510-nvidia-575xx-open-575.64.05-2-x86_64.pkg.tar.zst...
2025-10-02T17:38:12.3831867Z Package pushed: ./linux510-nvidia-575xx-open-575.64.05-2-x86_64.pkg.tar.zst
2025-10-02T17:38:12.3832626Z Pushing package: ./linux510-nvidia-580.95.05-2-x86_64.pkg.tar.zst...
2025-10-02T17:38:23.3023364Z Package pushed: ./linux510-nvidia-580.95.05-2-x86_64.pkg.tar.zst
2025-10-02T17:38:23.3024254Z Pushing package: ./linux510-nvidia-open-580.95.05-2-x86_64.pkg.tar.zst...
2025-10-02T17:38:25.3755260Z Package pushed: ./linux510-nvidia-open-580.95.05-2-x86_64.pkg.tar.zst
2025-10-02T17:38:25.3763318Z Pushing package: ./linux510-r8168-8.055.00-17-x86_64.pkg.tar.zst...
2025-10-02T17:38:25.9809446Z Package pushed: ./linux510-r8168-8.055.00-17-x86_64.pkg.tar.zst
2025-10-02T17:38:25.9810551Z Pushing package: ./linux510-rtl8723bu-20250811-8-x86_64.pkg.tar.zst...
2025-10-02T17:38:27.5462253Z Package pushed: ./linux510-rtl8723bu-20250811-8-x86_64.pkg.tar.zst
2025-10-02T17:38:27.5463323Z Pushing package: ./linux510-tp_smapi-0.45-11-x86_64.pkg.tar.zst...
2025-10-02T17:38:28.0331849Z Package pushed: ./linux510-tp_smapi-0.45-11-x86_64.pkg.tar.zst
2025-10-02T17:38:28.0332827Z Pushing package: ./linux510-vhba-module-20250329-16-x86_64.pkg.tar.zst...
2025-10-02T17:38:28.5177213Z Package pushed: ./linux510-vhba-module-20250329-16-x86_64.pkg.tar.zst
2025-10-02T17:38:28.5178265Z Pushing package: ./linux510-virtualbox-host-modules-7.2.2-3-x86_64.pkg.tar.zst...
2025-10-02T17:38:29.2401669Z Package pushed: ./linux510-virtualbox-host-modules-7.2.2-3-x86_64.pkg.tar.zst
2025-10-02T17:38:29.2402894Z Pushing package: ./linux510-zfs-2.3.4-7-x86_64.pkg.tar.zst...
2025-10-02T17:38:30.4400306Z Package pushed: ./linux510-zfs-2.3.4-7-x86_64.pkg.tar.zst
2025-10-02T17:38:30.4589343Z Archive: linux-5.10.245-1.zip
2025-10-02T17:38:30.8779131Z inflating: kernel/linux510-5.10.245-1-x86_64.pkg.tar.zst
2025-10-02T17:38:31.0530661Z inflating: kernel/linux510-headers-5.10.245-1-x86_64.pkg.tar.zst
2025-10-02T17:38:31.0531918Z extracting: kernel/linux510-5.10.245-1-x86_64.pkg.tar.zst.sig
2025-10-02T17:38:31.0532846Z extracting: kernel/linux510-headers-5.10.245-1-x86_64.pkg.tar.zst.sig
2025-10-02T17:38:31.0553223Z Pushing package: kernel/linux510-5.10.245-1-x86_64.pkg.tar.zst...
2025-10-02T17:38:41.2954541Z Package pushed: kernel/linux510-5.10.245-1-x86_64.pkg.tar.zst
2025-10-02T17:38:41.2955694Z Pushing package: kernel/linux510-headers-5.10.245-1-x86_64.pkg.tar.zst...
2025-10-02T17:38:45.7830106Z Package pushed: kernel/linux510-headers-5.10.245-1-x86_64.pkg.tar.zst
2025-10-02T17:38:45.7831157Z Finishing deployment...
2025-10-02T17:39:12.6797066Z Deployment completed successfully.
2025-10-02T17:39:12.6870705Z Cleaning up orphan processes
^ permalink raw reply [flat|nested] 10+ messages in thread
* Patch "arch: back to -std=gnu89 in < v5.18" has been added to the 5.10-stable tree
2025-10-17 16:53 ` [PATCH 5.10.y 2/3] arch: back to -std=gnu89 in < v5.18 Matthieu Baerts (NGI0)
@ 2025-11-03 1:43 ` gregkh
0 siblings, 0 replies; 10+ messages in thread
From: gregkh @ 2025-11-03 1:43 UTC (permalink / raw)
To: adobriyan, ardb, arnd, gregkh, matttbe, mptcp, nathan, sashal
Cc: stable-commits
This is a note to let you know that I've just added the patch titled
arch: back to -std=gnu89 in < v5.18
to the 5.10-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
arch-back-to-std-gnu89-in-v5.18.patch
and it can be found in the queue-5.10 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
From matttbe@kernel.org Sat Oct 18 01:54:02 2025
From: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>
Date: Fri, 17 Oct 2025 18:53:26 +0200
Subject: arch: back to -std=gnu89 in < v5.18
To: stable@vger.kernel.org, Greg Kroah-Hartman <gregkh@linuxfoundation.org>, Sasha Levin <sashal@kernel.org>
Cc: MPTCP Upstream <mptcp@lists.linux.dev>, "Matthieu Baerts (NGI0)" <matttbe@kernel.org>, Nathan Chancellor <nathan@kernel.org>, Ard Biesheuvel <ardb@kernel.org>, Alexey Dobriyan <adobriyan@gmail.com>, Arnd Bergmann <arnd@arndb.de>
Message-ID: <20251017-v5-10-gcc-15-v1-2-cdbbfe1a2100@kernel.org>
From: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>
Recent fixes have been backported to < v5.18 to fix build issues with
GCC 5.15. They all force -std=gnu11 in the CFLAGS, "because [the kernel]
requests the gnu11 standard via '-std=' in the main Makefile".
This is true for >= 5.18 versions, but not before. This switch to
-std=gnu11 has been done in commit e8c07082a810 ("Kbuild: move to
-std=gnu11").
For a question of uniformity, force -std=gnu89, similar to what is done
in the main Makefile.
Note: the fixes tags below refers to upstream commits, but this fix is
only for kernels not having commit e8c07082a810 ("Kbuild: move to
-std=gnu11").
Fixes: 7cbb015e2d3d ("parisc: fix building with gcc-15")
Fixes: 3b8b80e99376 ("s390: Add '-std=gnu11' to decompressor and purgatory CFLAGS")
Fixes: b3bee1e7c3f2 ("x86/boot: Compile boot code with -std=gnu11 too")
Fixes: ee2ab467bddf ("x86/boot: Use '-std=gnu11' to fix build with GCC 15")
Fixes: 8ba14d9f490a ("efi: libstub: Use '-std=gnu11' to fix build with GCC 15")
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Ard Biesheuvel <ardb@kernel.org>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
arch/parisc/boot/compressed/Makefile | 2 +-
arch/s390/Makefile | 2 +-
arch/s390/purgatory/Makefile | 2 +-
arch/x86/Makefile | 2 +-
arch/x86/boot/compressed/Makefile | 2 +-
drivers/firmware/efi/libstub/Makefile | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
--- a/arch/parisc/boot/compressed/Makefile
+++ b/arch/parisc/boot/compressed/Makefile
@@ -22,7 +22,7 @@ KBUILD_CFLAGS += -fno-PIE -mno-space-reg
ifndef CONFIG_64BIT
KBUILD_CFLAGS += -mfast-indirect-calls
endif
-KBUILD_CFLAGS += -std=gnu11
+KBUILD_CFLAGS += -std=gnu89
OBJECTS += $(obj)/head.o $(obj)/real2.o $(obj)/firmware.o $(obj)/misc.o $(obj)/piggy.o
--- a/arch/s390/Makefile
+++ b/arch/s390/Makefile
@@ -23,7 +23,7 @@ endif
aflags_dwarf := -Wa,-gdwarf-2
KBUILD_AFLAGS_DECOMPRESSOR := $(CLANG_FLAGS) -m64 -D__ASSEMBLY__
KBUILD_AFLAGS_DECOMPRESSOR += $(if $(CONFIG_DEBUG_INFO),$(aflags_dwarf))
-KBUILD_CFLAGS_DECOMPRESSOR := $(CLANG_FLAGS) -m64 -O2 -std=gnu11
+KBUILD_CFLAGS_DECOMPRESSOR := $(CLANG_FLAGS) -m64 -O2 -std=gnu89
KBUILD_CFLAGS_DECOMPRESSOR += -DDISABLE_BRANCH_PROFILING -D__NO_FORTIFY
KBUILD_CFLAGS_DECOMPRESSOR += -fno-delete-null-pointer-checks -msoft-float
KBUILD_CFLAGS_DECOMPRESSOR += -fno-asynchronous-unwind-tables
--- a/arch/s390/purgatory/Makefile
+++ b/arch/s390/purgatory/Makefile
@@ -20,7 +20,7 @@ GCOV_PROFILE := n
UBSAN_SANITIZE := n
KASAN_SANITIZE := n
-KBUILD_CFLAGS := -std=gnu11 -fno-strict-aliasing -Wall -Wstrict-prototypes
+KBUILD_CFLAGS := -std=gnu89 -fno-strict-aliasing -Wall -Wstrict-prototypes
KBUILD_CFLAGS += -Wno-pointer-sign -Wno-sign-compare
KBUILD_CFLAGS += -fno-zero-initialized-in-bss -fno-builtin -ffreestanding
KBUILD_CFLAGS += -c -MD -Os -m64 -msoft-float -fno-common
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -31,7 +31,7 @@ endif
CODE16GCC_CFLAGS := -m32 -Wa,$(srctree)/arch/x86/boot/code16gcc.h
M16_CFLAGS := $(call cc-option, -m16, $(CODE16GCC_CFLAGS))
-REALMODE_CFLAGS := -std=gnu11 $(M16_CFLAGS) -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
+REALMODE_CFLAGS := -std=gnu89 $(M16_CFLAGS) -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
-Wall -Wstrict-prototypes -march=i386 -mregparm=3 \
-fno-strict-aliasing -fomit-frame-pointer -fno-pic \
-mno-mmx -mno-sse $(call cc-option,-fcf-protection=none)
--- a/arch/x86/boot/compressed/Makefile
+++ b/arch/x86/boot/compressed/Makefile
@@ -33,7 +33,7 @@ targets := vmlinux vmlinux.bin vmlinux.b
# avoid errors with '-march=i386', and future flags may depend on the target to
# be valid.
KBUILD_CFLAGS := -m$(BITS) -O2 $(CLANG_FLAGS)
-KBUILD_CFLAGS += -std=gnu11
+KBUILD_CFLAGS += -std=gnu89
KBUILD_CFLAGS += -fno-strict-aliasing -fPIE
KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
cflags-$(CONFIG_X86_32) := -march=i386
--- a/drivers/firmware/efi/libstub/Makefile
+++ b/drivers/firmware/efi/libstub/Makefile
@@ -7,7 +7,7 @@
#
cflags-$(CONFIG_X86_32) := -march=i386
cflags-$(CONFIG_X86_64) := -mcmodel=small
-cflags-$(CONFIG_X86) += -m$(BITS) -D__KERNEL__ -std=gnu11 \
+cflags-$(CONFIG_X86) += -m$(BITS) -D__KERNEL__ -std=gnu89 \
-fPIC -fno-strict-aliasing -mno-red-zone \
-mno-mmx -mno-sse -fshort-wchar \
-Wno-pointer-sign \
Patches currently in stable-queue which might be from matttbe@kernel.org are
queue-5.10/arch-back-to-std-gnu89-in-v5.18.patch
queue-5.10/x86-boot-compile-boot-code-with-std-gnu11-too.patch
queue-5.10/tracing-fix-declaration-after-statement-warning.patch
^ permalink raw reply [flat|nested] 10+ messages in thread
* Patch "x86/boot: Compile boot code with -std=gnu11 too" has been added to the 5.10-stable tree
2025-10-17 16:53 ` [PATCH 5.10.y 1/3] x86/boot: Compile boot code with -std=gnu11 too Matthieu Baerts (NGI0)
@ 2025-11-03 1:43 ` gregkh
0 siblings, 0 replies; 10+ messages in thread
From: gregkh @ 2025-11-03 1:43 UTC (permalink / raw)
To: adobriyan, ardb, dave.hansen, gregkh, hpa, matttbe, mingo, mptcp,
nathan, sashal
Cc: stable-commits
This is a note to let you know that I've just added the patch titled
x86/boot: Compile boot code with -std=gnu11 too
to the 5.10-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
x86-boot-compile-boot-code-with-std-gnu11-too.patch
and it can be found in the queue-5.10 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
From matttbe@kernel.org Sat Oct 18 01:53:53 2025
From: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>
Date: Fri, 17 Oct 2025 18:53:25 +0200
Subject: x86/boot: Compile boot code with -std=gnu11 too
To: stable@vger.kernel.org, Greg Kroah-Hartman <gregkh@linuxfoundation.org>, Sasha Levin <sashal@kernel.org>
Cc: MPTCP Upstream <mptcp@lists.linux.dev>, "Matthieu Baerts (NGI0)" <matttbe@kernel.org>, Alexey Dobriyan <adobriyan@gmail.com>, Ingo Molnar <mingo@kernel.org>, "H. Peter Anvin (Intel)" <hpa@zytor.com>, Nathan Chancellor <nathan@kernel.org>, Dave Hansen <dave.hansen@linux.intel.com>, Ard Biesheuvel <ardb@kernel.org>
Message-ID: <20251017-v5-10-gcc-15-v1-1-cdbbfe1a2100@kernel.org>
From: Alexey Dobriyan <adobriyan@gmail.com>
commit b3bee1e7c3f2b1b77182302c7b2131c804175870 upstream.
Use -std=gnu11 for consistency with main kernel code.
It doesn't seem to change anything in vmlinux.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Acked-by: H. Peter Anvin (Intel) <hpa@zytor.com>
Link: https://lore.kernel.org/r/2058761e-12a4-4b2f-9690-3c3c1c9902a5@p183
[ This kernel version doesn't build with GCC 15:
In file included from include/uapi/linux/posix_types.h:5,
from include/uapi/linux/types.h:14,
from include/linux/types.h:6,
from arch/x86/realmode/rm/wakeup.h:11,
from arch/x86/realmode/rm/wakemain.c:2:
include/linux/stddef.h:11:9: error: cannot use keyword 'false' as enumeration constant
11 | false = 0,
| ^~~~~
include/linux/stddef.h:11:9: note: 'false' is a keyword with '-std=c23' onwards
include/linux/types.h:30:33: error: 'bool' cannot be defined via 'typedef'
30 | typedef _Bool bool;
| ^~~~
include/linux/types.h:30:33: note: 'bool' is a keyword with '-std=c23' onwards
include/linux/types.h:30:1: warning: useless type name in empty declaration
30 | typedef _Bool bool;
| ^~~~~~~
The fix is similar to commit ee2ab467bddf ("x86/boot: Use '-std=gnu11'
to fix build with GCC 15") which has been backported to this kernel.
Note: In < 5.18 version, -std=gnu89 is used instead of -std=gnu11, see
commit e8c07082a810 ("Kbuild: move to -std=gnu11"). I suggest not to
modify that in this commit here as all the other similar fixes to
support GCC 15 set -std=gnu11. This can be done in a dedicated commit
if needed.
There was a conflict, because commit 2838307b019d ("x86/build: Remove
-m16 workaround for unsupported versions of GCC") is not in this
version and change code in the context. -std=gnu11 can still be added
at the same place. ]
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
arch/x86/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -31,7 +31,7 @@ endif
CODE16GCC_CFLAGS := -m32 -Wa,$(srctree)/arch/x86/boot/code16gcc.h
M16_CFLAGS := $(call cc-option, -m16, $(CODE16GCC_CFLAGS))
-REALMODE_CFLAGS := $(M16_CFLAGS) -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
+REALMODE_CFLAGS := -std=gnu11 $(M16_CFLAGS) -g -Os -DDISABLE_BRANCH_PROFILING -D__DISABLE_EXPORTS \
-Wall -Wstrict-prototypes -march=i386 -mregparm=3 \
-fno-strict-aliasing -fomit-frame-pointer -fno-pic \
-mno-mmx -mno-sse $(call cc-option,-fcf-protection=none)
Patches currently in stable-queue which might be from matttbe@kernel.org are
queue-5.10/arch-back-to-std-gnu89-in-v5.18.patch
queue-5.10/x86-boot-compile-boot-code-with-std-gnu11-too.patch
queue-5.10/tracing-fix-declaration-after-statement-warning.patch
^ permalink raw reply [flat|nested] 10+ messages in thread
* Patch "tracing: fix declaration-after-statement warning" has been added to the 5.10-stable tree
2025-10-17 16:53 ` [PATCH 5.10.y 3/3] tracing: fix declaration-after-statement warning Matthieu Baerts (NGI0)
@ 2025-11-03 1:43 ` gregkh
0 siblings, 0 replies; 10+ messages in thread
From: gregkh @ 2025-11-03 1:43 UTC (permalink / raw)
To: douglas.raillard, gregkh, mathieu.desnoyers, matttbe, mhiramat,
mptcp, rostedt, sashal
Cc: stable-commits
This is a note to let you know that I've just added the patch titled
tracing: fix declaration-after-statement warning
to the 5.10-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
tracing-fix-declaration-after-statement-warning.patch
and it can be found in the queue-5.10 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
From matttbe@kernel.org Sat Oct 18 01:53:59 2025
From: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>
Date: Fri, 17 Oct 2025 18:53:27 +0200
Subject: tracing: fix declaration-after-statement warning
To: stable@vger.kernel.org, Greg Kroah-Hartman <gregkh@linuxfoundation.org>, Sasha Levin <sashal@kernel.org>
Cc: MPTCP Upstream <mptcp@lists.linux.dev>, "Matthieu Baerts (NGI0)" <matttbe@kernel.org>, Douglas Raillard <douglas.raillard@arm.com>, "Masami Hiramatsu (Google)" <mhiramat@kernel.org>, "Steven Rostedt (Google)" <rostedt@goodmis.org>, Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Message-ID: <20251017-v5-10-gcc-15-v1-3-cdbbfe1a2100@kernel.org>
From: "Matthieu Baerts (NGI0)" <matttbe@kernel.org>
When building this kernel version this warning is visible:
kernel/trace/trace_events_synth.c: In function 'synth_event_reg':
kernel/trace/trace_events_synth.c:847:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
847 | int ret = trace_event_reg(call, type, data);
| ^~~
This can be easily fixed by declaring 'ret' earlier.
This issue is visible in < v5.18, because -std=gnu89 is used by default,
see commit e8c07082a810 ("Kbuild: move to -std=gnu11").
Please note that in v5.15.y, the 'Fixes' commit has been modified during
the backport, not to have this warning. See commit 72848b81b3dd
("tracing: Ensure module defining synth event cannot be unloaded while
tracing") from v5.15.y.
Fixes: 21581dd4e7ff ("tracing: Ensure module defining synth event cannot be unloaded while tracing")
Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Cc: Douglas Raillard <douglas.raillard@arm.com>
Cc: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Cc: Steven Rostedt (Google) <rostedt@goodmis.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
kernel/trace/trace_events_synth.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--- a/kernel/trace/trace_events_synth.c
+++ b/kernel/trace/trace_events_synth.c
@@ -831,6 +831,7 @@ static int synth_event_reg(struct trace_
enum trace_reg type, void *data)
{
struct synth_event *event = container_of(call, struct synth_event, call);
+ int ret;
switch (type) {
#ifdef CONFIG_PERF_EVENTS
@@ -844,7 +845,7 @@ static int synth_event_reg(struct trace_
break;
}
- int ret = trace_event_reg(call, type, data);
+ ret = trace_event_reg(call, type, data);
switch (type) {
#ifdef CONFIG_PERF_EVENTS
Patches currently in stable-queue which might be from matttbe@kernel.org are
queue-5.10/arch-back-to-std-gnu89-in-v5.18.patch
queue-5.10/x86-boot-compile-boot-code-with-std-gnu11-too.patch
queue-5.10/tracing-fix-declaration-after-statement-warning.patch
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2025-11-03 1:44 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-17 16:53 [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Matthieu Baerts (NGI0)
2025-10-17 16:53 ` [PATCH 5.10.y 1/3] x86/boot: Compile boot code with -std=gnu11 too Matthieu Baerts (NGI0)
2025-11-03 1:43 ` Patch "x86/boot: Compile boot code with -std=gnu11 too" has been added to the 5.10-stable tree gregkh
2025-10-17 16:53 ` [PATCH 5.10.y 2/3] arch: back to -std=gnu89 in < v5.18 Matthieu Baerts (NGI0)
2025-11-03 1:43 ` Patch "arch: back to -std=gnu89 in < v5.18" has been added to the 5.10-stable tree gregkh
2025-10-17 16:53 ` [PATCH 5.10.y 3/3] tracing: fix declaration-after-statement warning Matthieu Baerts (NGI0)
2025-11-03 1:43 ` Patch "tracing: fix declaration-after-statement warning" has been added to the 5.10-stable tree gregkh
2025-10-20 13:32 ` [PATCH 5.10.y 0/3] v5.10: fix build with GCC 15 Greg Kroah-Hartman
2025-10-20 16:00 ` Matthieu Baerts
2025-10-31 8:10 ` Philip Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox