* Re: hardcoded SIGSEGV in __die() ?
From: Joakim Tjernlund @ 2020-03-30 17:16 UTC (permalink / raw)
To: christophe.leroy@c-s.fr, mpe@ellerman.id.au,
linuxppc-dev@ozlabs.org
In-Reply-To: <87lfnovu11.fsf@mpe.ellerman.id.au>
On Thu, 2020-03-26 at 11:28 +1100, Michael Ellerman wrote:
> CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe.
>
>
> Joakim Tjernlund <Joakim.Tjernlund@infinera.com> writes:
> > On Mon, 2020-03-23 at 15:45 +0100, Christophe Leroy wrote:
> > > Le 23/03/2020 à 15:43, Christophe Leroy a écrit :
> > > > Le 23/03/2020 à 15:17, Joakim Tjernlund a écrit :
> > > > > In __die(), see below, there is this call to notify_send() with
> > > > > SIGSEGV hardcoded, this seems odd
> > > > > to me as the variable "err" holds the true signal(in my case SIGBUS)
> > > > > Should not SIGSEGV be replaced with the true signal no.?
> > > >
> > > > As far as I can see, comes from
> > > > https://nam03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgit.kernel.org%2Fpub%2Fscm%2Flinux%2Fkernel%2Fgit%2Ftorvalds%2Flinux.git%2Fcommit%2F%3Fid%3D66fcb1059&data=02%7C01%7CJoakim.Tjernlund%40infinera.com%7Caa316058f9e34dd758c808d7d11ca391%7C285643de5f5b4b03a1530ae2dc8aaf77%7C1%7C0%7C637207793252449714&sdata=LBzRMxHWJzNEztnnG0UzJb7PHvaDGVswQD%2B8WpY9YX8%3D&reserved=0
> > > >
> > >
> > > And
> > > https://nam03.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgit.kernel.org%2Fpub%2Fscm%2Flinux%2Fkernel%2Fgit%2Ftorvalds%2Flinux.git%2Fcommit%2F%3Fid%3Dae87221d3ce49d9de1e43756da834fd0bf05a2ad&data=02%7C01%7CJoakim.Tjernlund%40infinera.com%7Caa316058f9e34dd758c808d7d11ca391%7C285643de5f5b4b03a1530ae2dc8aaf77%7C1%7C0%7C637207793252449714&sdata=Dh%2BUTRgG85oVSgC3SCR1B7izQH4HofT4ppOMiy9xvDA%3D&reserved=0
> > > shows it is (was?) similar on x86.
> > >
> >
> > I tried to follow that chain thinking it would end up sending a signal to user space but I cannot see
> > that happens. Seems to be related to debugging.
> >
> > In short, I cannot see any signal being delivered to user space. If so that would explain why
> > our user space process never dies.
> > Is there a signal hidden in machine_check handler for SIGBUS I cannot see?
>
> It's platform specific. What platform are you on?
>
> See the ppc_md & cur_cpu_spec calls here:
>
> void machine_check_exception(struct pt_regs *regs)
> {
> int recover = 0;
> bool nested = in_nmi();
> if (!nested)
> nmi_enter();
>
> __this_cpu_inc(irq_stat.mce_exceptions);
>
> add_taint(TAINT_MACHINE_CHECK, LOCKDEP_NOW_UNRELIABLE);
>
> /* See if any machine dependent calls. In theory, we would want
> * to call the CPU first, and call the ppc_md. one if the CPU
> * one returns a positive number. However there is existing code
> * that assumes the board gets a first chance, so let's keep it
> * that way for now and fix things later. --BenH.
> */
> if (ppc_md.machine_check_exception)
> recover = ppc_md.machine_check_exception(regs);
> else if (cur_cpu_spec->machine_check)
> recover = cur_cpu_spec->machine_check(regs);
>
> if (recover > 0)
> goto bail;
>
>
> Either the ppc_md or cpu_spec handlers can send a signal, but after a
> bit of grepping I think only the pseries and powernv ones do.
>
> If you get into die() then it's an oops, which is not the same as a
> normal signal.
I had a look at opal_machine_check and friends and came up with:
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c
index 0381242920d9..12715d24141c 100644
--- a/arch/powerpc/kernel/traps.c
+++ b/arch/powerpc/kernel/traps.c
@@ -621,6 +621,11 @@ int machine_check_e500mc(struct pt_regs *regs)
reason & MCSR_MEA ? "Effective" : "Physical", addr);
}
+ if ((user_mode(regs))) {
+ _exception(SIGBUS, regs, reason, regs->nip);
+ recoverable = 1;
+ }
+
silent_out:
mtspr(SPRN_MCSR, mcsr);
return mfspr(SPRN_MCSR) == 0 && recoverable;
@@ -665,6 +670,10 @@ int machine_check_e500(struct pt_regs *regs)
if (reason & MCSR_BUS_RPERR)
printk("Bus - Read Parity Error\n");
+ if ((user_mode(regs))) {
+ _exception(SIGBUS, regs, reason, regs->nip);
+ return 1;
+ }
return 0;
}
@@ -695,6 +704,10 @@ int machine_check_e200(struct pt_regs *regs)
if (reason & MCSR_BUS_WRERR)
printk("Bus - Write Bus Error on buffered store or cache line push\n");
+ if ((user_mode(regs))) {
+ _exception(SIGBUS, regs, reason, regs->nip);
+ return 1;
+ }
return 0;
}
#elif defined(CONFIG_PPC32)
@@ -731,6 +744,10 @@ int machine_check_generic(struct pt_regs *regs)
default:
printk("Unknown values in msr\n");
}
+ if ((user_mode(regs))) {
+ _exception(SIGBUS, regs, reason, regs->nip);
+ return 1;
+ }
return 0;
}
#endif /* everything else */
I don't really know what I am doing, does the above make sense to you?
Jocke
^ permalink raw reply related
* Re: [PATCH 01/12] powerpc/52xx: Blacklist functions running with MMU disabled for kprobe
From: Naveen N. Rao @ 2020-03-30 17:13 UTC (permalink / raw)
To: Benjamin Herrenschmidt, Christophe Leroy, Michael Ellerman,
Paul Mackerras
Cc: linuxppc-dev, linux-kernel
In-Reply-To: <dff05b59a161434a546010507000816750073f28.1585474724.git.christophe.leroy@c-s.fr>
Christophe Leroy wrote:
> kprobe does not handle events happening in real mode, all
> functions running with MMU disabled have to be blacklisted.
>
> Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
> ---
> arch/powerpc/platforms/52xx/lite5200_sleep.S | 2 ++
> 1 file changed, 2 insertions(+)
Apart from the two minor comments, for this series:
Acked-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
- Naveen
^ permalink raw reply
* Re: [PATCH 10/12] powerpc/entry32: Blacklist exception entry points for kprobe.
From: Naveen N. Rao @ 2020-03-30 17:08 UTC (permalink / raw)
To: Benjamin Herrenschmidt, Christophe Leroy, Michael Ellerman,
Paul Mackerras
Cc: linuxppc-dev, linux-kernel
In-Reply-To: <aea027844b12fcbc29ea78d26c5848a6794d1688.1585474724.git.christophe.leroy@c-s.fr>
Christophe Leroy wrote:
> kprobe does not handle events happening in real mode.
>
> As exception entry points are running with MMU disabled,
> blacklist them.
>
> Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
> ---
> arch/powerpc/kernel/entry_32.S | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/arch/powerpc/kernel/entry_32.S b/arch/powerpc/kernel/entry_32.S
> index 94f78c03cb79..9a1a45d6038a 100644
> --- a/arch/powerpc/kernel/entry_32.S
> +++ b/arch/powerpc/kernel/entry_32.S
> @@ -51,6 +51,7 @@ mcheck_transfer_to_handler:
> mfspr r0,SPRN_DSRR1
> stw r0,_DSRR1(r11)
> /* fall through */
> +_ASM_NOKPROBE_SYMBOL(mcheck_transfer_to_handler)
>
> .globl debug_transfer_to_handler
> debug_transfer_to_handler:
> @@ -59,6 +60,7 @@ debug_transfer_to_handler:
> mfspr r0,SPRN_CSRR1
> stw r0,_CSRR1(r11)
> /* fall through */
> +_ASM_NOKPROBE_SYMBOL(debug_transfer_to_handler)
>
> .globl crit_transfer_to_handler
> crit_transfer_to_handler:
> @@ -94,6 +96,7 @@ crit_transfer_to_handler:
> rlwinm r0,r1,0,0,(31 - THREAD_SHIFT)
> stw r0,KSP_LIMIT(r8)
> /* fall through */
> +_ASM_NOKPROBE_SYMBOL(crit_transfer_to_handler)
> #endif
>
> #ifdef CONFIG_40x
> @@ -115,6 +118,7 @@ crit_transfer_to_handler:
> rlwinm r0,r1,0,0,(31 - THREAD_SHIFT)
> stw r0,KSP_LIMIT(r8)
> /* fall through */
> +_ASM_NOKPROBE_SYMBOL(crit_transfer_to_handler)
> #endif
>
> /*
> @@ -127,6 +131,7 @@ crit_transfer_to_handler:
> .globl transfer_to_handler_full
> transfer_to_handler_full:
> SAVE_NVGPRS(r11)
> +_ASM_NOKPROBE_SYMBOL(transfer_to_handler_full)
> /* fall through */
>
> .globl transfer_to_handler
> @@ -286,6 +291,8 @@ reenable_mmu:
> lwz r2, GPR2(r11)
> b fast_exception_return
> #endif
> +_ASM_NOKPROBE_SYMBOL(transfer_to_handler)
> +_ASM_NOKPROBE_SYMBOL(transfer_to_handler_cont)
These are added after 'reenable_mmu', which is itself not blacklisted.
Is that intentional?
- Naveen
^ permalink raw reply
* Re: [RFC PATCH v1] pseries/drmem: don't cache node id in drmem_lmb struct
From: Nathan Lynch @ 2020-03-30 17:07 UTC (permalink / raw)
To: Scott Cheloha
Cc: Nathan Fontenont, David Hildenbrand, Aneesh Kumar, Paul Mackerras,
Michal Suchánek, linuxppc-dev, Rick Lindsley
In-Reply-To: <20200312160704.cmmo7titbh7u4jia@rascal.austin.ibm.com>
Scott Cheloha <cheloha@linux.ibm.com> writes:
> Hi Michal,
>
> On Thu, Mar 12, 2020 at 06:02:37AM +0100, Michal Suchánek wrote:
>>
>> You basically revert the below which will likely cause the very error
>> that was fixed there:
>>
>> commit b2d3b5ee66f2a04a918cc043cec0c9ed3de58f40
>> Author: Nathan Fontenot <nfont@linux.vnet.ibm.com>
>> Date: Tue Oct 2 10:35:59 2018 -0500
>>
>> powerpc/pseries: Track LMB nid instead of using device tree
>>
>> When removing memory we need to remove the memory from the node
>> it was added to instead of looking up the node it should be in
>> in the device tree.
>>
>> During testing we have seen scenarios where the affinity for a
>> LMB changes due to a partition migration or PRRN event. In these
>> cases the node the LMB exists in may not match the node the device
>> tree indicates it belongs in. This can lead to a system crash
>> when trying to DLPAR remove the LMB after a migration or PRRN
>> event. The current code looks up the node in the device tree to
>> remove the LMB from, the crash occurs when we try to offline this
>> node and it does not have any data, i.e. node_data[nid] == NULL.
>
> I'm aware of this patch and that this is a near-total revert.
>
> I'm not reintroducing the original behavior, though. Instead of going
> to the device tree to recompute the expected node id I'm retrieving it
> from the LMB's corresponding memory_block.
>
> That crucial difference is this chunk:
>
> --- a/arch/powerpc/platforms/pseries/hotplug-memory.c
> +++ b/arch/powerpc/platforms/pseries/hotplug-memory.c
> @@ -376,25 +376,29 @@ static int dlpar_add_lmb(struct drmem_lmb *);
>
> static int dlpar_remove_lmb(struct drmem_lmb *lmb)
> {
> + struct memory_block *mem_block;
> unsigned long block_sz;
> int rc;
>
> if (!lmb_is_removable(lmb))
> return -EINVAL;
>
> + mem_block = lmb_to_memblock(lmb);
> + if (mem_block == NULL)
> + return -EINVAL;
> +
Assuming lmb_to_memblock() -> find_memory_block() isn't engaging in O(n)
behavior or worse (which is the case in linux-next), then I think
Scott's change makes sense and is a net win.
^ permalink raw reply
* Re: [PATCH 06/12] powerpc/32s: Make local symbols non visible in hash_low.
From: Naveen N. Rao @ 2020-03-30 17:06 UTC (permalink / raw)
To: Benjamin Herrenschmidt, Christophe Leroy, Michael Ellerman,
Paul Mackerras
Cc: linuxppc-dev, linux-kernel
In-Reply-To: <a19105b21c08020c2af9bf4a37daff8642066ef1.1585474724.git.christophe.leroy@c-s.fr>
Christophe Leroy wrote:
> In hash_low.S, a lot of named local symbols are used instead of
> numbers to ease code lisibility. However, they don't need to be
^^^^^^^^^^
Nit.. visibility
- Naveen
^ permalink raw reply
* Re: [PATCH v3] powerpc: Make setjmp/longjmp signature standard
From: Nick Desaulniers @ 2020-03-30 16:20 UTC (permalink / raw)
To: Clement Courbet
Cc: Greg Kroah-Hartman, LKML, # 3.4.x, clang-built-linux,
Paul Mackerras, Nathan Chancellor, linuxppc-dev, Thomas Gleixner
In-Reply-To: <20200330080400.124803-1-courbet@google.com>
On Mon, Mar 30, 2020 at 1:04 AM Clement Courbet <courbet@google.com> wrote:
>
> Declaring setjmp()/longjmp() as taking longs makes the signature
> non-standard, and makes clang complain. In the past, this has been
> worked around by adding -ffreestanding to the compile flags.
>
> The implementation looks like it only ever propagates the value
> (in longjmp) or sets it to 1 (in setjmp), and we only call longjmp
> with integer parameters.
>
> This allows removing -ffreestanding from the compilation flags.
>
> Context:
> https://lore.kernel.org/patchwork/patch/1214060
> https://lore.kernel.org/patchwork/patch/1216174
>
> Signed-off-by: Clement Courbet <courbet@google.com>
> Reviewed-by: Nathan Chancellor <natechancellor@gmail.com>
> Tested-by: Nathan Chancellor <natechancellor@gmail.com>
> Cc: stable@vger.kernel.org # v4.14+
> Fixes: c9029ef9c957 ("powerpc: Avoid clang warnings around setjmp and longjmp")
Third time's a charm (for patches that tackle this warning). Thanks
for following up on this cleanup!
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Tested-by: Nick Desaulniers <ndesaulniers@google.com>
The extent of my testing was compile testing with Clang.
>
> ---
>
> v2:
> Use and array type as suggested by Segher Boessenkool
> Add fix tags.
>
> v3:
> Properly place tags.
> ---
> arch/powerpc/include/asm/setjmp.h | 6 ++++--
> arch/powerpc/kexec/Makefile | 3 ---
> arch/powerpc/xmon/Makefile | 3 ---
> 3 files changed, 4 insertions(+), 8 deletions(-)
>
> diff --git a/arch/powerpc/include/asm/setjmp.h b/arch/powerpc/include/asm/setjmp.h
> index e9f81bb3f83b..f798e80e4106 100644
> --- a/arch/powerpc/include/asm/setjmp.h
> +++ b/arch/powerpc/include/asm/setjmp.h
> @@ -7,7 +7,9 @@
>
> #define JMP_BUF_LEN 23
>
> -extern long setjmp(long *) __attribute__((returns_twice));
> -extern void longjmp(long *, long) __attribute__((noreturn));
> +typedef long jmp_buf[JMP_BUF_LEN];
> +
> +extern int setjmp(jmp_buf env) __attribute__((returns_twice));
> +extern void longjmp(jmp_buf env, int val) __attribute__((noreturn));
>
> #endif /* _ASM_POWERPC_SETJMP_H */
> diff --git a/arch/powerpc/kexec/Makefile b/arch/powerpc/kexec/Makefile
> index 378f6108a414..86380c69f5ce 100644
> --- a/arch/powerpc/kexec/Makefile
> +++ b/arch/powerpc/kexec/Makefile
> @@ -3,9 +3,6 @@
> # Makefile for the linux kernel.
> #
>
> -# Avoid clang warnings around longjmp/setjmp declarations
> -CFLAGS_crash.o += -ffreestanding
> -
> obj-y += core.o crash.o core_$(BITS).o
>
> obj-$(CONFIG_PPC32) += relocate_32.o
> diff --git a/arch/powerpc/xmon/Makefile b/arch/powerpc/xmon/Makefile
> index c3842dbeb1b7..6f9cccea54f3 100644
> --- a/arch/powerpc/xmon/Makefile
> +++ b/arch/powerpc/xmon/Makefile
> @@ -1,9 +1,6 @@
> # SPDX-License-Identifier: GPL-2.0
> # Makefile for xmon
>
> -# Avoid clang warnings around longjmp/setjmp declarations
> -subdir-ccflags-y := -ffreestanding
> -
> GCOV_PROFILE := n
> KCOV_INSTRUMENT := n
> UBSAN_SANITIZE := n
> --
> 2.26.0.rc2.310.g2932bb562d-goog
>
--
Thanks,
~Nick Desaulniers
^ permalink raw reply
* Re: [PATCH 1/1] ppc/crash: Skip spinlocks during crash
From: Leonardo Bras @ 2020-03-30 14:33 UTC (permalink / raw)
To: Christophe Leroy, Peter Zijlstra, Ingo Molnar, Will Deacon,
Benjamin Herrenschmidt, Paul Mackerras, Michael Ellerman,
Enrico Weigelt, Allison Randal, Thomas Gleixner
Cc: linuxppc-dev, linux-kernel
In-Reply-To: <4759f5e9-24a6-7710-86a0-c8e45f5decb7@c-s.fr>
[-- Attachment #1: Type: text/plain, Size: 3551 bytes --]
Hello Christophe,
On Sat, 2020-03-28 at 10:19 +0000, Christophe Leroy wrote:
> Hi Leonardo,
>
>
> > On 03/27/2020 03:51 PM, Leonardo Bras wrote:
> > >
> > [SNIP]
> > - If the lock is already free, it would change nothing,
> > - Otherwise, the lock will wait.
> > - Waiting cycle just got bigger.
> > - Worst case scenario: running one more cycle, given lock->slock can
> > turn to 0 just after checking.Could you please point where I failed to see the performance penalty?
> > (I need to get better at this :) )
>
> You are right that when the lock is free, it changes nothing. However
> when it is not, it is not just one cycle.
Sorry, what I meant here is one "waiting cycle", meaning that in WCS
there would be 1 extra iteration on that while. Or it would 'spin' one
more time.
>
> Here is arch_spin_lock() without your patch:
>
> 00000440 <my_lock>:
> 440: 39 40 00 01 li r10,1
> 444: 7d 20 18 28 lwarx r9,0,r3
> 448: 2c 09 00 00 cmpwi r9,0
> 44c: 40 82 00 10 bne 45c <my_lock+0x1c>
> 450: 7d 40 19 2d stwcx. r10,0,r3
> 454: 40 a2 ff f0 bne 444 <my_lock+0x4>
> 458: 4c 00 01 2c isync
> 45c: 2f 89 00 00 cmpwi cr7,r9,0
> 460: 4d be 00 20 bclr+ 12,4*cr7+eq
> 464: 7c 21 0b 78 mr r1,r1
> 468: 81 23 00 00 lwz r9,0(r3)
> 46c: 2f 89 00 00 cmpwi cr7,r9,0
> 470: 40 be ff f4 bne cr7,464 <my_lock+0x24>
> 474: 7c 42 13 78 mr r2,r2
> 478: 7d 20 18 28 lwarx r9,0,r3
> 47c: 2c 09 00 00 cmpwi r9,0
> 480: 40 82 00 10 bne 490 <my_lock+0x50>
> 484: 7d 40 19 2d stwcx. r10,0,r3
> 488: 40 a2 ff f0 bne 478 <my_lock+0x38>
> 48c: 4c 00 01 2c isync
> 490: 2f 89 00 00 cmpwi cr7,r9,0
> 494: 40 be ff d0 bne cr7,464 <my_lock+0x24>
> 498: 4e 80 00 20 blr
>
> Here is arch_spin_lock() with your patch. I enclose with === what comes
> in addition:
>
> 00000440 <my_lock>:
> 440: 39 40 00 01 li r10,1
> 444: 7d 20 18 28 lwarx r9,0,r3
> 448: 2c 09 00 00 cmpwi r9,0
> 44c: 40 82 00 10 bne 45c <my_lock+0x1c>
> 450: 7d 40 19 2d stwcx. r10,0,r3
> 454: 40 a2 ff f0 bne 444 <my_lock+0x4>
> 458: 4c 00 01 2c isync
> 45c: 2f 89 00 00 cmpwi cr7,r9,0
> 460: 4d be 00 20 bclr+ 12,4*cr7+eq
> =====================================================
> 464: 3d 40 00 00 lis r10,0
> 466: R_PPC_ADDR16_HA crash_skip_spinlock
> 468: 39 4a 00 00 addi r10,r10,0
> 46a: R_PPC_ADDR16_LO crash_skip_spinlock
> 46c: 39 00 00 01 li r8,1
> 470: 89 2a 00 00 lbz r9,0(r10)
> 474: 2f 89 00 00 cmpwi cr7,r9,0
> 478: 4c 9e 00 20 bnelr cr7
> =====================================================
> 47c: 7c 21 0b 78 mr r1,r1
> 480: 81 23 00 00 lwz r9,0(r3)
> 484: 2f 89 00 00 cmpwi cr7,r9,0
> 488: 40 be ff f4 bne cr7,47c <my_lock+0x3c>
> 48c: 7c 42 13 78 mr r2,r2
> 490: 7d 20 18 28 lwarx r9,0,r3
> 494: 2c 09 00 00 cmpwi r9,0
> 498: 40 82 00 10 bne 4a8 <my_lock+0x68>
> 49c: 7d 00 19 2d stwcx. r8,0,r3
> 4a0: 40 a2 ff f0 bne 490 <my_lock+0x50>
> 4a4: 4c 00 01 2c isync
> 4a8: 2f 89 00 00 cmpwi cr7,r9,0
> 4ac: 40 be ff c4 bne cr7,470 <my_lock+0x30>
> 4b0: 4e 80 00 20 blr
>
>
> Christophe
I agree. When there is waiting, it will usually add some time to it.
Accounting that spinlocks are widely used, it will cause a slowdown in
the whole system.
Thanks for the feedback,
Best regards,
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply
* [PATCH] powerpc/44x: Make AKEBONO depends on NET
From: YueHaibing @ 2020-03-30 14:31 UTC (permalink / raw)
To: mporter, benh, paulus, mpe
Cc: alistair, YueHaibing, linuxppc-dev, linux-kernel
Fix Kconfig warnings:
WARNING: unmet direct dependencies detected for NETDEVICES
Depends on [n]: NET [=n]
Selected by [y]:
- AKEBONO [=y] && PPC_47x [=y]
WARNING: unmet direct dependencies detected for ETHERNET
Depends on [n]: NETDEVICES [=y] && NET [=n]
Selected by [y]:
- AKEBONO [=y] && PPC_47x [=y]
AKEBONO select NETDEVICES and ETHERNET unconditionally,
If NET is not set, build fails. Add this dependcy to fix this.
Fixes: 2a2c74b2efcb ("IBM Akebono: Add the Akebono platform")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
---
arch/powerpc/platforms/44x/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/powerpc/platforms/44x/Kconfig b/arch/powerpc/platforms/44x/Kconfig
index 25ebe634a661..394f662d7df2 100644
--- a/arch/powerpc/platforms/44x/Kconfig
+++ b/arch/powerpc/platforms/44x/Kconfig
@@ -199,6 +199,7 @@ config FSP2
config AKEBONO
bool "IBM Akebono (476gtr) Support"
depends on PPC_47x
+ depends on NET
select SWIOTLB
select 476FPE
select PPC4xx_PCI_EXPRESS
--
2.17.1
^ permalink raw reply related
* Re: [PATCH 1/1] ppc/crash: Skip spinlocks during crash
From: Leonardo Bras @ 2020-03-30 14:12 UTC (permalink / raw)
To: Peter Zijlstra, Christophe Leroy
Cc: Will Deacon, linuxppc-dev, linux-kernel, Ingo Molnar,
Paul Mackerras, Thomas Gleixner, Enrico Weigelt, Allison Randal
In-Reply-To: <20200330110231.GG20696@hirez.programming.kicks-ass.net>
[-- Attachment #1: Type: text/plain, Size: 677 bytes --]
Hello Peter,
On Mon, 2020-03-30 at 13:02 +0200, Peter Zijlstra wrote:
> do {
> > > + if (unlikely(crash_skip_spinlock))
> > > + return;
> >
> > You are adding a test that reads a global var in the middle of a so hot path
> > ? That must kill performance. Can we do different ?
>
> This; adding code to a super hot patch like this for an exceptional case
> like the crash handling seems like a very very bad trade to me.
>
> One possible solution is to simply write 0 to the affected spinlocks
> after sending the NMI IPI thing, no?
Yes, I agree.
I suggested this on a comment in v2 of this patch:
http://patchwork.ozlabs.org/patch/1262468/
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply
* [PATCH v2 2/2] powerpc: Remove Xilinx PPC405/PPC440 support
From: Michal Simek @ 2020-03-30 13:32 UTC (permalink / raw)
To: linux-kernel, monstr, michal.simek, git, sfr, maz
Cc: Kate Stewart, Mark Rutland, Desnes A. Nunes do Rosario,
Geert Uytterhoeven, linux-doc, linux-fbdev, dri-devel,
Paul Mackerras, Miquel Raynal, Mauro Carvalho Chehab,
Fabio Estevam, Sasha Levin, Jonathan Corbet, Masahiro Yamada,
YueHaibing, Krzysztof Kozlowski, Allison Randal, linux-arm-kernel,
devicetree, Andrew Donnellan, Arnd Bergmann,
Bartlomiej Zolnierkiewicz, Alistair Popple, linuxppc-dev,
Nicholas Piggin, Alexios Zavras, Rob Herring, Jonathan Cameron,
Thomas Gleixner, Andy Shevchenko, Dmitry Vyukov, Wei Hu,
Greg Kroah-Hartman, Nick Desaulniers, Enrico Weigelt,
David S. Miller, Thiago Jung Bauermann
In-Reply-To: <cover.1585575111.git.michal.simek@xilinx.com>
The latest Xilinx design tools called ISE and EDK has been released in
October 2013. New tool doesn't support any PPC405/PPC440 new designs.
These platforms are no longer supported and tested.
PowerPC 405/440 port is orphan from 2013 by
commit cdeb89943bfc ("MAINTAINERS: Fix incorrect status tag") and
commit 19624236cce1 ("MAINTAINERS: Update Grant's email address and maintainership")
that's why it is time to remove the support fot these platforms.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
---
Changes in v2:
- Based on my chat with Arnd I removed arch/powerpc/xmon/ changes done in
v1 to keep them the same as before. (kbuild reported some issues with it
too)
Documentation/devicetree/bindings/xilinx.txt | 143 ------
Documentation/powerpc/bootwrapper.rst | 28 +-
MAINTAINERS | 6 -
arch/powerpc/Kconfig.debug | 2 +-
arch/powerpc/boot/Makefile | 7 +-
arch/powerpc/boot/dts/Makefile | 1 -
arch/powerpc/boot/dts/virtex440-ml507.dts | 406 ----------------
arch/powerpc/boot/dts/virtex440-ml510.dts | 466 -------------------
arch/powerpc/boot/ops.h | 1 -
arch/powerpc/boot/serial.c | 5 -
arch/powerpc/boot/uartlite.c | 79 ----
arch/powerpc/boot/virtex.c | 97 ----
arch/powerpc/boot/virtex405-head.S | 31 --
arch/powerpc/boot/wrapper | 8 -
arch/powerpc/configs/40x/virtex_defconfig | 75 ---
arch/powerpc/configs/44x/virtex5_defconfig | 74 ---
arch/powerpc/configs/ppc40x_defconfig | 8 -
arch/powerpc/configs/ppc44x_defconfig | 8 -
arch/powerpc/include/asm/xilinx_intc.h | 16 -
arch/powerpc/include/asm/xilinx_pci.h | 21 -
arch/powerpc/kernel/cputable.c | 39 --
arch/powerpc/platforms/40x/Kconfig | 31 --
arch/powerpc/platforms/40x/Makefile | 1 -
arch/powerpc/platforms/40x/virtex.c | 54 ---
arch/powerpc/platforms/44x/Kconfig | 37 --
arch/powerpc/platforms/44x/Makefile | 2 -
arch/powerpc/platforms/44x/virtex.c | 60 ---
arch/powerpc/platforms/44x/virtex_ml510.c | 30 --
arch/powerpc/platforms/Kconfig | 4 -
arch/powerpc/sysdev/Makefile | 2 -
arch/powerpc/sysdev/xilinx_intc.c | 88 ----
arch/powerpc/sysdev/xilinx_pci.c | 132 ------
drivers/char/Kconfig | 2 +-
drivers/video/fbdev/Kconfig | 2 +-
34 files changed, 7 insertions(+), 1959 deletions(-)
delete mode 100644 arch/powerpc/boot/dts/virtex440-ml507.dts
delete mode 100644 arch/powerpc/boot/dts/virtex440-ml510.dts
delete mode 100644 arch/powerpc/boot/uartlite.c
delete mode 100644 arch/powerpc/boot/virtex.c
delete mode 100644 arch/powerpc/boot/virtex405-head.S
delete mode 100644 arch/powerpc/configs/40x/virtex_defconfig
delete mode 100644 arch/powerpc/configs/44x/virtex5_defconfig
delete mode 100644 arch/powerpc/include/asm/xilinx_intc.h
delete mode 100644 arch/powerpc/include/asm/xilinx_pci.h
delete mode 100644 arch/powerpc/platforms/40x/virtex.c
delete mode 100644 arch/powerpc/platforms/44x/virtex.c
delete mode 100644 arch/powerpc/platforms/44x/virtex_ml510.c
delete mode 100644 arch/powerpc/sysdev/xilinx_intc.c
delete mode 100644 arch/powerpc/sysdev/xilinx_pci.c
diff --git a/Documentation/devicetree/bindings/xilinx.txt b/Documentation/devicetree/bindings/xilinx.txt
index d058ace29345..28199b31fe5e 100644
--- a/Documentation/devicetree/bindings/xilinx.txt
+++ b/Documentation/devicetree/bindings/xilinx.txt
@@ -86,149 +86,6 @@
xlnx,use-parity = <0>;
};
- Some IP cores actually implement 2 or more logical devices. In
- this case, the device should still describe the whole IP core with
- a single node and add a child node for each logical device. The
- ranges property can be used to translate from parent IP-core to the
- registers of each device. In addition, the parent node should be
- compatible with the bus type 'xlnx,compound', and should contain
- #address-cells and #size-cells, as with any other bus. (Note: this
- makes the assumption that both logical devices have the same bus
- binding. If this is not true, then separate nodes should be used
- for each logical device). The 'cell-index' property can be used to
- enumerate logical devices within an IP core. For example, the
- following is the system.mhs entry for the dual ps2 controller found
- on the ml403 reference design.
-
- BEGIN opb_ps2_dual_ref
- PARAMETER INSTANCE = opb_ps2_dual_ref_0
- PARAMETER HW_VER = 1.00.a
- PARAMETER C_BASEADDR = 0xA9000000
- PARAMETER C_HIGHADDR = 0xA9001FFF
- BUS_INTERFACE SOPB = opb_v20_0
- PORT Sys_Intr1 = ps2_1_intr
- PORT Sys_Intr2 = ps2_2_intr
- PORT Clkin1 = ps2_clk_rx_1
- PORT Clkin2 = ps2_clk_rx_2
- PORT Clkpd1 = ps2_clk_tx_1
- PORT Clkpd2 = ps2_clk_tx_2
- PORT Rx1 = ps2_d_rx_1
- PORT Rx2 = ps2_d_rx_2
- PORT Txpd1 = ps2_d_tx_1
- PORT Txpd2 = ps2_d_tx_2
- END
-
- It would result in the following device tree nodes:
-
- opb_ps2_dual_ref_0: opb-ps2-dual-ref@a9000000 {
- #address-cells = <1>;
- #size-cells = <1>;
- compatible = "xlnx,compound";
- ranges = <0 a9000000 2000>;
- // If this device had extra parameters, then they would
- // go here.
- ps2@0 {
- compatible = "xlnx,opb-ps2-dual-ref-1.00.a";
- reg = <0 40>;
- interrupt-parent = <&opb_intc_0>;
- interrupts = <3 0>;
- cell-index = <0>;
- };
- ps2@1000 {
- compatible = "xlnx,opb-ps2-dual-ref-1.00.a";
- reg = <1000 40>;
- interrupt-parent = <&opb_intc_0>;
- interrupts = <3 0>;
- cell-index = <0>;
- };
- };
-
- Also, the system.mhs file defines bus attachments from the processor
- to the devices. The device tree structure should reflect the bus
- attachments. Again an example; this system.mhs fragment:
-
- BEGIN ppc405_virtex4
- PARAMETER INSTANCE = ppc405_0
- PARAMETER HW_VER = 1.01.a
- BUS_INTERFACE DPLB = plb_v34_0
- BUS_INTERFACE IPLB = plb_v34_0
- END
-
- BEGIN opb_intc
- PARAMETER INSTANCE = opb_intc_0
- PARAMETER HW_VER = 1.00.c
- PARAMETER C_BASEADDR = 0xD1000FC0
- PARAMETER C_HIGHADDR = 0xD1000FDF
- BUS_INTERFACE SOPB = opb_v20_0
- END
-
- BEGIN opb_uart16550
- PARAMETER INSTANCE = opb_uart16550_0
- PARAMETER HW_VER = 1.00.d
- PARAMETER C_BASEADDR = 0xa0000000
- PARAMETER C_HIGHADDR = 0xa0001FFF
- BUS_INTERFACE SOPB = opb_v20_0
- END
-
- BEGIN plb_v34
- PARAMETER INSTANCE = plb_v34_0
- PARAMETER HW_VER = 1.02.a
- END
-
- BEGIN plb_bram_if_cntlr
- PARAMETER INSTANCE = plb_bram_if_cntlr_0
- PARAMETER HW_VER = 1.00.b
- PARAMETER C_BASEADDR = 0xFFFF0000
- PARAMETER C_HIGHADDR = 0xFFFFFFFF
- BUS_INTERFACE SPLB = plb_v34_0
- END
-
- BEGIN plb2opb_bridge
- PARAMETER INSTANCE = plb2opb_bridge_0
- PARAMETER HW_VER = 1.01.a
- PARAMETER C_RNG0_BASEADDR = 0x20000000
- PARAMETER C_RNG0_HIGHADDR = 0x3FFFFFFF
- PARAMETER C_RNG1_BASEADDR = 0x60000000
- PARAMETER C_RNG1_HIGHADDR = 0x7FFFFFFF
- PARAMETER C_RNG2_BASEADDR = 0x80000000
- PARAMETER C_RNG2_HIGHADDR = 0xBFFFFFFF
- PARAMETER C_RNG3_BASEADDR = 0xC0000000
- PARAMETER C_RNG3_HIGHADDR = 0xDFFFFFFF
- BUS_INTERFACE SPLB = plb_v34_0
- BUS_INTERFACE MOPB = opb_v20_0
- END
-
- Gives this device tree (some properties removed for clarity):
-
- plb@0 {
- #address-cells = <1>;
- #size-cells = <1>;
- compatible = "xlnx,plb-v34-1.02.a";
- device_type = "ibm,plb";
- ranges; // 1:1 translation
-
- plb_bram_if_cntrl_0: bram@ffff0000 {
- reg = <ffff0000 10000>;
- }
-
- opb@20000000 {
- #address-cells = <1>;
- #size-cells = <1>;
- ranges = <20000000 20000000 20000000
- 60000000 60000000 20000000
- 80000000 80000000 40000000
- c0000000 c0000000 20000000>;
-
- opb_uart16550_0: serial@a0000000 {
- reg = <a00000000 2000>;
- };
-
- opb_intc_0: interrupt-controller@d1000fc0 {
- reg = <d1000fc0 20>;
- };
- };
- };
-
That covers the general approach to binding xilinx IP cores into the
device tree. The following are bindings for specific devices:
diff --git a/Documentation/powerpc/bootwrapper.rst b/Documentation/powerpc/bootwrapper.rst
index a6292afba573..cdfa2bc8425f 100644
--- a/Documentation/powerpc/bootwrapper.rst
+++ b/Documentation/powerpc/bootwrapper.rst
@@ -70,28 +70,6 @@ Currently, the following image format targets exist:
kernel with this image type and it depends entirely on
the embedded device tree for all information.
- The simpleImage is useful for booting systems with
- an unknown firmware interface or for booting from
- a debugger when no firmware is present (such as on
- the Xilinx Virtex platform). The only assumption that
- simpleImage makes is that RAM is correctly initialized
- and that the MMU is either off or has RAM mapped to
- base address 0.
-
- simpleImage also supports inserting special platform
- specific initialization code to the start of the bootup
- sequence. The virtex405 platform uses this feature to
- ensure that the cache is invalidated before caching
- is enabled. Platform specific initialization code is
- added as part of the wrapper script and is keyed on
- the image target name. For example, all
- simpleImage.virtex405-* targets will add the
- virtex405-head.S initialization code (This also means
- that the dts file for virtex405 targets should be
- named (virtex405-<board>.dts). Search the wrapper
- script for 'virtex405' and see the file
- arch/powerpc/boot/virtex405-head.S for details.
-
treeImage.%; Image format for used with OpenBIOS firmware found
on some ppc4xx hardware. This image embeds a device
tree blob inside the image.
@@ -116,10 +94,8 @@ Image types which embed a device tree blob (simpleImage, dtbImage, treeImage,
and cuImage) all generate the device tree blob from a file in the
arch/powerpc/boot/dts/ directory. The Makefile selects the correct device
tree source based on the name of the target. Therefore, if the kernel is
-built with 'make treeImage.walnut simpleImage.virtex405-ml403', then the
-build system will use arch/powerpc/boot/dts/walnut.dts to build
-treeImage.walnut and arch/powerpc/boot/dts/virtex405-ml403.dts to build
-the simpleImage.virtex405-ml403.
+built with 'make treeImage.walnut', then the build system will use
+arch/powerpc/boot/dts/walnut.dts to build treeImage.walnut.
Two special targets called 'zImage' and 'zImage.initrd' also exist. These
targets build all the default images as selected by the kernel configuration.
diff --git a/MAINTAINERS b/MAINTAINERS
index a0d86490c2c6..842a9bbc2013 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -9668,12 +9668,6 @@ L: linuxppc-dev@lists.ozlabs.org
S: Maintained
F: arch/powerpc/platforms/8xx/
-LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
-L: linuxppc-dev@lists.ozlabs.org
-S: Orphan
-F: arch/powerpc/*/*virtex*
-F: arch/powerpc/*/*/*virtex*
-
LINUX FOR POWERPC PA SEMI PWRFICIENT
L: linuxppc-dev@lists.ozlabs.org
S: Orphan
diff --git a/arch/powerpc/Kconfig.debug b/arch/powerpc/Kconfig.debug
index 0b063830eea8..b88900f4832f 100644
--- a/arch/powerpc/Kconfig.debug
+++ b/arch/powerpc/Kconfig.debug
@@ -230,7 +230,7 @@ config PPC_EARLY_DEBUG_40x
help
Select this to enable early debugging for IBM 40x chips via the
inbuilt serial port. This works on chips with a 16550 compatible
- UART. Xilinx chips with uartlite cannot use this option.
+ UART.
config PPC_EARLY_DEBUG_CPM
bool "Early serial debugging for Freescale CPM-based serial ports"
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile
index c53a1b8bba8b..d8077b7071dd 100644
--- a/arch/powerpc/boot/Makefile
+++ b/arch/powerpc/boot/Makefile
@@ -79,7 +79,6 @@ $(obj)/treeboot-walnut.o: BOOTCFLAGS += -mcpu=405
$(obj)/treeboot-iss4xx.o: BOOTCFLAGS += -mcpu=405
$(obj)/treeboot-currituck.o: BOOTCFLAGS += -mcpu=405
$(obj)/treeboot-akebono.o: BOOTCFLAGS += -mcpu=405
-$(obj)/virtex405-head.o: BOOTAFLAGS += -mcpu=405
# The pre-boot decompressors pull in a lot of kernel headers and other source
# files. This creates a bit of a dependency headache since we need to copy
@@ -129,14 +128,12 @@ src-wlib-$(CONFIG_44x) += 4xx.c ebony.c bamboo.c
src-wlib-$(CONFIG_PPC_8xx) += mpc8xx.c planetcore.c fsl-soc.c
src-wlib-$(CONFIG_PPC_82xx) += pq2.c fsl-soc.c planetcore.c
src-wlib-$(CONFIG_EMBEDDED6xx) += ugecon.c fsl-soc.c
-src-wlib-$(CONFIG_XILINX_VIRTEX) += uartlite.c
src-wlib-$(CONFIG_CPM) += cpm-serial.c
src-plat-y := of.c epapr.c
src-plat-$(CONFIG_40x) += fixed-head.S ep405.c cuboot-hotfoot.c \
treeboot-walnut.c cuboot-acadia.c \
- cuboot-kilauea.c simpleboot.c \
- virtex405-head.S virtex.c
+ cuboot-kilauea.c simpleboot.c
src-plat-$(CONFIG_44x) += treeboot-ebony.c cuboot-ebony.c treeboot-bamboo.c \
cuboot-bamboo.c cuboot-sam440ep.c \
cuboot-sequoia.c cuboot-rainier.c \
@@ -144,7 +141,7 @@ src-plat-$(CONFIG_44x) += treeboot-ebony.c cuboot-ebony.c treeboot-bamboo.c \
cuboot-warp.c cuboot-yosemite.c \
treeboot-iss4xx.c treeboot-currituck.c \
treeboot-akebono.c \
- simpleboot.c fixed-head.S virtex.c
+ simpleboot.c fixed-head.S
src-plat-$(CONFIG_PPC_8xx) += cuboot-8xx.c fixed-head.S ep88xc.c redboot-8xx.c
src-plat-$(CONFIG_PPC_MPC52xx) += cuboot-52xx.c
src-plat-$(CONFIG_PPC_82xx) += cuboot-pq2.c fixed-head.S ep8248e.c cuboot-824x.c
diff --git a/arch/powerpc/boot/dts/Makefile b/arch/powerpc/boot/dts/Makefile
index 1cbc0e4ce857..fb335d05aae8 100644
--- a/arch/powerpc/boot/dts/Makefile
+++ b/arch/powerpc/boot/dts/Makefile
@@ -4,4 +4,3 @@ subdir-y += fsl
dtstree := $(srctree)/$(src)
dtb-$(CONFIG_OF_ALL_DTBS) := $(patsubst $(dtstree)/%.dts,%.dtb, $(wildcard $(dtstree)/*.dts))
-dtb-$(CONFIG_XILINX_VIRTEX440_GENERIC_BOARD) += virtex440-ml507.dtb virtex440-ml510.dtb
diff --git a/arch/powerpc/boot/dts/virtex440-ml507.dts b/arch/powerpc/boot/dts/virtex440-ml507.dts
deleted file mode 100644
index 66f1c6312de6..000000000000
--- a/arch/powerpc/boot/dts/virtex440-ml507.dts
+++ /dev/null
@@ -1,406 +0,0 @@
-/*
- * This file supports the Xilinx ML507 board with the 440 processor.
- * A reference design for the FPGA is provided at http://git.xilinx.com.
- *
- * (C) Copyright 2008 Xilinx, Inc.
- *
- * This file is licensed under the terms of the GNU General Public License
- * version 2. This program is licensed "as is" without any warranty of any
- * kind, whether express or implied.
- *
- * ---
- *
- * Device Tree Generator version: 1.1
- *
- * CAUTION: This file is automatically generated by libgen.
- * Version: Xilinx EDK 10.1.03 EDK_K_SP3.6
- *
- * XPS project directory: ml507_ppc440_emb_ref
- */
-
-/dts-v1/;
-
-/ {
- #address-cells = <1>;
- #size-cells = <1>;
- compatible = "xlnx,virtex440";
- dcr-parent = <&ppc440_0>;
- model = "testing";
- DDR2_SDRAM: memory@0 {
- device_type = "memory";
- reg = < 0 0x10000000 >;
- } ;
- chosen {
- bootargs = "console=ttyS0 root=/dev/ram";
- stdout-path = &RS232_Uart_1;
- } ;
- cpus {
- #address-cells = <1>;
- #cpus = <1>;
- #size-cells = <0>;
- ppc440_0: cpu@0 {
- clock-frequency = <400000000>;
- compatible = "PowerPC,440", "ibm,ppc440";
- d-cache-line-size = <0x20>;
- d-cache-size = <0x8000>;
- dcr-access-method = "native";
- dcr-controller ;
- device_type = "cpu";
- i-cache-line-size = <0x20>;
- i-cache-size = <0x8000>;
- model = "PowerPC,440";
- reg = <0>;
- timebase-frequency = <400000000>;
- xlnx,apu-control = <1>;
- xlnx,apu-udi-0 = <0>;
- xlnx,apu-udi-1 = <0>;
- xlnx,apu-udi-10 = <0>;
- xlnx,apu-udi-11 = <0>;
- xlnx,apu-udi-12 = <0>;
- xlnx,apu-udi-13 = <0>;
- xlnx,apu-udi-14 = <0>;
- xlnx,apu-udi-15 = <0>;
- xlnx,apu-udi-2 = <0>;
- xlnx,apu-udi-3 = <0>;
- xlnx,apu-udi-4 = <0>;
- xlnx,apu-udi-5 = <0>;
- xlnx,apu-udi-6 = <0>;
- xlnx,apu-udi-7 = <0>;
- xlnx,apu-udi-8 = <0>;
- xlnx,apu-udi-9 = <0>;
- xlnx,dcr-autolock-enable = <1>;
- xlnx,dcu-rd-ld-cache-plb-prio = <0>;
- xlnx,dcu-rd-noncache-plb-prio = <0>;
- xlnx,dcu-rd-touch-plb-prio = <0>;
- xlnx,dcu-rd-urgent-plb-prio = <0>;
- xlnx,dcu-wr-flush-plb-prio = <0>;
- xlnx,dcu-wr-store-plb-prio = <0>;
- xlnx,dcu-wr-urgent-plb-prio = <0>;
- xlnx,dma0-control = <0>;
- xlnx,dma0-plb-prio = <0>;
- xlnx,dma0-rxchannelctrl = <0x1010000>;
- xlnx,dma0-rxirqtimer = <0x3ff>;
- xlnx,dma0-txchannelctrl = <0x1010000>;
- xlnx,dma0-txirqtimer = <0x3ff>;
- xlnx,dma1-control = <0>;
- xlnx,dma1-plb-prio = <0>;
- xlnx,dma1-rxchannelctrl = <0x1010000>;
- xlnx,dma1-rxirqtimer = <0x3ff>;
- xlnx,dma1-txchannelctrl = <0x1010000>;
- xlnx,dma1-txirqtimer = <0x3ff>;
- xlnx,dma2-control = <0>;
- xlnx,dma2-plb-prio = <0>;
- xlnx,dma2-rxchannelctrl = <0x1010000>;
- xlnx,dma2-rxirqtimer = <0x3ff>;
- xlnx,dma2-txchannelctrl = <0x1010000>;
- xlnx,dma2-txirqtimer = <0x3ff>;
- xlnx,dma3-control = <0>;
- xlnx,dma3-plb-prio = <0>;
- xlnx,dma3-rxchannelctrl = <0x1010000>;
- xlnx,dma3-rxirqtimer = <0x3ff>;
- xlnx,dma3-txchannelctrl = <0x1010000>;
- xlnx,dma3-txirqtimer = <0x3ff>;
- xlnx,endian-reset = <0>;
- xlnx,generate-plb-timespecs = <1>;
- xlnx,icu-rd-fetch-plb-prio = <0>;
- xlnx,icu-rd-spec-plb-prio = <0>;
- xlnx,icu-rd-touch-plb-prio = <0>;
- xlnx,interconnect-imask = <0xffffffff>;
- xlnx,mplb-allow-lock-xfer = <1>;
- xlnx,mplb-arb-mode = <0>;
- xlnx,mplb-awidth = <0x20>;
- xlnx,mplb-counter = <0x500>;
- xlnx,mplb-dwidth = <0x80>;
- xlnx,mplb-max-burst = <8>;
- xlnx,mplb-native-dwidth = <0x80>;
- xlnx,mplb-p2p = <0>;
- xlnx,mplb-prio-dcur = <2>;
- xlnx,mplb-prio-dcuw = <3>;
- xlnx,mplb-prio-icu = <4>;
- xlnx,mplb-prio-splb0 = <1>;
- xlnx,mplb-prio-splb1 = <0>;
- xlnx,mplb-read-pipe-enable = <1>;
- xlnx,mplb-sync-tattribute = <0>;
- xlnx,mplb-wdog-enable = <1>;
- xlnx,mplb-write-pipe-enable = <1>;
- xlnx,mplb-write-post-enable = <1>;
- xlnx,num-dma = <1>;
- xlnx,pir = <0xf>;
- xlnx,ppc440mc-addr-base = <0>;
- xlnx,ppc440mc-addr-high = <0xfffffff>;
- xlnx,ppc440mc-arb-mode = <0>;
- xlnx,ppc440mc-bank-conflict-mask = <0xc00000>;
- xlnx,ppc440mc-control = <0xf810008f>;
- xlnx,ppc440mc-max-burst = <8>;
- xlnx,ppc440mc-prio-dcur = <2>;
- xlnx,ppc440mc-prio-dcuw = <3>;
- xlnx,ppc440mc-prio-icu = <4>;
- xlnx,ppc440mc-prio-splb0 = <1>;
- xlnx,ppc440mc-prio-splb1 = <0>;
- xlnx,ppc440mc-row-conflict-mask = <0x3ffe00>;
- xlnx,ppcdm-asyncmode = <0>;
- xlnx,ppcds-asyncmode = <0>;
- xlnx,user-reset = <0>;
- DMA0: sdma@80 {
- compatible = "xlnx,ll-dma-1.00.a";
- dcr-reg = < 0x80 0x11 >;
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 10 2 11 2 >;
- } ;
- } ;
- } ;
- plb_v46_0: plb@0 {
- #address-cells = <1>;
- #size-cells = <1>;
- compatible = "xlnx,plb-v46-1.03.a", "simple-bus";
- ranges ;
- DIP_Switches_8Bit: gpio@81460000 {
- compatible = "xlnx,xps-gpio-1.00.a";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 7 2 >;
- reg = < 0x81460000 0x10000 >;
- xlnx,all-inputs = <1>;
- xlnx,all-inputs-2 = <0>;
- xlnx,dout-default = <0>;
- xlnx,dout-default-2 = <0>;
- xlnx,family = "virtex5";
- xlnx,gpio-width = <8>;
- xlnx,interrupt-present = <1>;
- xlnx,is-bidir = <1>;
- xlnx,is-bidir-2 = <1>;
- xlnx,is-dual = <0>;
- xlnx,tri-default = <0xffffffff>;
- xlnx,tri-default-2 = <0xffffffff>;
- } ;
- FLASH: flash@fc000000 {
- bank-width = <2>;
- compatible = "xlnx,xps-mch-emc-2.00.a", "cfi-flash";
- reg = < 0xfc000000 0x2000000 >;
- xlnx,family = "virtex5";
- xlnx,include-datawidth-matching-0 = <0x1>;
- xlnx,include-datawidth-matching-1 = <0x0>;
- xlnx,include-datawidth-matching-2 = <0x0>;
- xlnx,include-datawidth-matching-3 = <0x0>;
- xlnx,include-negedge-ioregs = <0x0>;
- xlnx,include-plb-ipif = <0x1>;
- xlnx,include-wrbuf = <0x1>;
- xlnx,max-mem-width = <0x10>;
- xlnx,mch-native-dwidth = <0x20>;
- xlnx,mch-plb-clk-period-ps = <0x2710>;
- xlnx,mch-splb-awidth = <0x20>;
- xlnx,mch0-accessbuf-depth = <0x10>;
- xlnx,mch0-protocol = <0x0>;
- xlnx,mch0-rddatabuf-depth = <0x10>;
- xlnx,mch1-accessbuf-depth = <0x10>;
- xlnx,mch1-protocol = <0x0>;
- xlnx,mch1-rddatabuf-depth = <0x10>;
- xlnx,mch2-accessbuf-depth = <0x10>;
- xlnx,mch2-protocol = <0x0>;
- xlnx,mch2-rddatabuf-depth = <0x10>;
- xlnx,mch3-accessbuf-depth = <0x10>;
- xlnx,mch3-protocol = <0x0>;
- xlnx,mch3-rddatabuf-depth = <0x10>;
- xlnx,mem0-width = <0x10>;
- xlnx,mem1-width = <0x20>;
- xlnx,mem2-width = <0x20>;
- xlnx,mem3-width = <0x20>;
- xlnx,num-banks-mem = <0x1>;
- xlnx,num-channels = <0x2>;
- xlnx,priority-mode = <0x0>;
- xlnx,synch-mem-0 = <0x0>;
- xlnx,synch-mem-1 = <0x0>;
- xlnx,synch-mem-2 = <0x0>;
- xlnx,synch-mem-3 = <0x0>;
- xlnx,synch-pipedelay-0 = <0x2>;
- xlnx,synch-pipedelay-1 = <0x2>;
- xlnx,synch-pipedelay-2 = <0x2>;
- xlnx,synch-pipedelay-3 = <0x2>;
- xlnx,tavdv-ps-mem-0 = <0x1adb0>;
- xlnx,tavdv-ps-mem-1 = <0x3a98>;
- xlnx,tavdv-ps-mem-2 = <0x3a98>;
- xlnx,tavdv-ps-mem-3 = <0x3a98>;
- xlnx,tcedv-ps-mem-0 = <0x1adb0>;
- xlnx,tcedv-ps-mem-1 = <0x3a98>;
- xlnx,tcedv-ps-mem-2 = <0x3a98>;
- xlnx,tcedv-ps-mem-3 = <0x3a98>;
- xlnx,thzce-ps-mem-0 = <0x88b8>;
- xlnx,thzce-ps-mem-1 = <0x1b58>;
- xlnx,thzce-ps-mem-2 = <0x1b58>;
- xlnx,thzce-ps-mem-3 = <0x1b58>;
- xlnx,thzoe-ps-mem-0 = <0x1b58>;
- xlnx,thzoe-ps-mem-1 = <0x1b58>;
- xlnx,thzoe-ps-mem-2 = <0x1b58>;
- xlnx,thzoe-ps-mem-3 = <0x1b58>;
- xlnx,tlzwe-ps-mem-0 = <0x88b8>;
- xlnx,tlzwe-ps-mem-1 = <0x0>;
- xlnx,tlzwe-ps-mem-2 = <0x0>;
- xlnx,tlzwe-ps-mem-3 = <0x0>;
- xlnx,twc-ps-mem-0 = <0x2af8>;
- xlnx,twc-ps-mem-1 = <0x3a98>;
- xlnx,twc-ps-mem-2 = <0x3a98>;
- xlnx,twc-ps-mem-3 = <0x3a98>;
- xlnx,twp-ps-mem-0 = <0x11170>;
- xlnx,twp-ps-mem-1 = <0x2ee0>;
- xlnx,twp-ps-mem-2 = <0x2ee0>;
- xlnx,twp-ps-mem-3 = <0x2ee0>;
- xlnx,xcl0-linesize = <0x4>;
- xlnx,xcl0-writexfer = <0x1>;
- xlnx,xcl1-linesize = <0x4>;
- xlnx,xcl1-writexfer = <0x1>;
- xlnx,xcl2-linesize = <0x4>;
- xlnx,xcl2-writexfer = <0x1>;
- xlnx,xcl3-linesize = <0x4>;
- xlnx,xcl3-writexfer = <0x1>;
- } ;
- Hard_Ethernet_MAC: xps-ll-temac@81c00000 {
- #address-cells = <1>;
- #size-cells = <1>;
- compatible = "xlnx,compound";
- ethernet@81c00000 {
- #address-cells = <1>;
- #size-cells = <0>;
- compatible = "xlnx,xps-ll-temac-1.01.b";
- device_type = "network";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 5 2 >;
- llink-connected = <&DMA0>;
- local-mac-address = [ 02 00 00 00 00 00 ];
- reg = < 0x81c00000 0x40 >;
- xlnx,bus2core-clk-ratio = <1>;
- xlnx,phy-type = <1>;
- xlnx,phyaddr = <1>;
- xlnx,rxcsum = <1>;
- xlnx,rxfifo = <0x1000>;
- xlnx,temac-type = <0>;
- xlnx,txcsum = <1>;
- xlnx,txfifo = <0x1000>;
- phy-handle = <&phy7>;
- clock-frequency = <100000000>;
- phy7: phy@7 {
- compatible = "marvell,88e1111";
- reg = <7>;
- } ;
- } ;
- } ;
- IIC_EEPROM: i2c@81600000 {
- compatible = "xlnx,xps-iic-2.00.a";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 6 2 >;
- reg = < 0x81600000 0x10000 >;
- xlnx,clk-freq = <0x5f5e100>;
- xlnx,family = "virtex5";
- xlnx,gpo-width = <0x1>;
- xlnx,iic-freq = <0x186a0>;
- xlnx,scl-inertial-delay = <0x0>;
- xlnx,sda-inertial-delay = <0x0>;
- xlnx,ten-bit-adr = <0x0>;
- } ;
- LEDs_8Bit: gpio@81400000 {
- compatible = "xlnx,xps-gpio-1.00.a";
- reg = < 0x81400000 0x10000 >;
- xlnx,all-inputs = <0>;
- xlnx,all-inputs-2 = <0>;
- xlnx,dout-default = <0>;
- xlnx,dout-default-2 = <0>;
- xlnx,family = "virtex5";
- xlnx,gpio-width = <8>;
- xlnx,interrupt-present = <0>;
- xlnx,is-bidir = <1>;
- xlnx,is-bidir-2 = <1>;
- xlnx,is-dual = <0>;
- xlnx,tri-default = <0xffffffff>;
- xlnx,tri-default-2 = <0xffffffff>;
- } ;
- LEDs_Positions: gpio@81420000 {
- compatible = "xlnx,xps-gpio-1.00.a";
- reg = < 0x81420000 0x10000 >;
- xlnx,all-inputs = <0>;
- xlnx,all-inputs-2 = <0>;
- xlnx,dout-default = <0>;
- xlnx,dout-default-2 = <0>;
- xlnx,family = "virtex5";
- xlnx,gpio-width = <5>;
- xlnx,interrupt-present = <0>;
- xlnx,is-bidir = <1>;
- xlnx,is-bidir-2 = <1>;
- xlnx,is-dual = <0>;
- xlnx,tri-default = <0xffffffff>;
- xlnx,tri-default-2 = <0xffffffff>;
- } ;
- Push_Buttons_5Bit: gpio@81440000 {
- compatible = "xlnx,xps-gpio-1.00.a";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 8 2 >;
- reg = < 0x81440000 0x10000 >;
- xlnx,all-inputs = <1>;
- xlnx,all-inputs-2 = <0>;
- xlnx,dout-default = <0>;
- xlnx,dout-default-2 = <0>;
- xlnx,family = "virtex5";
- xlnx,gpio-width = <5>;
- xlnx,interrupt-present = <1>;
- xlnx,is-bidir = <1>;
- xlnx,is-bidir-2 = <1>;
- xlnx,is-dual = <0>;
- xlnx,tri-default = <0xffffffff>;
- xlnx,tri-default-2 = <0xffffffff>;
- } ;
- RS232_Uart_1: serial@83e00000 {
- clock-frequency = <100000000>;
- compatible = "xlnx,xps-uart16550-2.00.b", "ns16550";
- current-speed = <9600>;
- device_type = "serial";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 9 2 >;
- reg = < 0x83e00000 0x10000 >;
- reg-offset = <0x1003>;
- reg-shift = <2>;
- xlnx,family = "virtex5";
- xlnx,has-external-rclk = <0>;
- xlnx,has-external-xin = <0>;
- xlnx,is-a-16550 = <1>;
- } ;
- SysACE_CompactFlash: sysace@83600000 {
- compatible = "xlnx,xps-sysace-1.00.a";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 4 2 >;
- reg = < 0x83600000 0x10000 >;
- xlnx,family = "virtex5";
- xlnx,mem-width = <0x10>;
- } ;
- xps_bram_if_cntlr_1: xps-bram-if-cntlr@ffff0000 {
- compatible = "xlnx,xps-bram-if-cntlr-1.00.a";
- reg = < 0xffff0000 0x10000 >;
- xlnx,family = "virtex5";
- } ;
- xps_intc_0: interrupt-controller@81800000 {
- #interrupt-cells = <2>;
- compatible = "xlnx,xps-intc-1.00.a";
- interrupt-controller ;
- reg = < 0x81800000 0x10000 >;
- xlnx,num-intr-inputs = <0xc>;
- } ;
- xps_timebase_wdt_1: xps-timebase-wdt@83a00000 {
- compatible = "xlnx,xps-timebase-wdt-1.00.b";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 2 0 1 2 >;
- reg = < 0x83a00000 0x10000 >;
- xlnx,family = "virtex5";
- xlnx,wdt-enable-once = <0>;
- xlnx,wdt-interval = <0x1e>;
- } ;
- xps_timer_1: timer@83c00000 {
- compatible = "xlnx,xps-timer-1.00.a";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 3 2 >;
- reg = < 0x83c00000 0x10000 >;
- xlnx,count-width = <0x20>;
- xlnx,family = "virtex5";
- xlnx,gen0-assert = <1>;
- xlnx,gen1-assert = <1>;
- xlnx,one-timer-only = <1>;
- xlnx,trig0-assert = <1>;
- xlnx,trig1-assert = <1>;
- } ;
- } ;
-} ;
diff --git a/arch/powerpc/boot/dts/virtex440-ml510.dts b/arch/powerpc/boot/dts/virtex440-ml510.dts
deleted file mode 100644
index 3b736ca26ddc..000000000000
--- a/arch/powerpc/boot/dts/virtex440-ml510.dts
+++ /dev/null
@@ -1,466 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-/*
- * Xilinx ML510 Reference Design support
- *
- * This DTS file was created for the ml510_bsb1_pcores_ppc440 reference design.
- * The reference design contains a bug which prevent PCI DMA from working
- * properly. A description of the bug is given in the plbv46_pci section. It
- * needs to be fixed by the user until Xilinx updates their reference design.
- *
- * Copyright 2009, Roderick Colenbrander
- */
-
-/dts-v1/;
-/ {
- #address-cells = <1>;
- #size-cells = <1>;
- compatible = "xlnx,ml510-ref-design", "xlnx,virtex440";
- dcr-parent = <&ppc440_0>;
- DDR2_SDRAM_DIMM0: memory@0 {
- device_type = "memory";
- reg = < 0x0 0x20000000 >;
- } ;
- alias {
- ethernet0 = &Hard_Ethernet_MAC;
- serial0 = &RS232_Uart_1;
- } ;
- chosen {
- bootargs = "console=ttyS0 root=/dev/ram";
- stdout-path = "/plb@0/serial@83e00000";
- } ;
- cpus {
- #address-cells = <1>;
- #cpus = <0x1>;
- #size-cells = <0>;
- ppc440_0: cpu@0 {
- #address-cells = <1>;
- #size-cells = <1>;
- clock-frequency = <300000000>;
- compatible = "PowerPC,440", "ibm,ppc440";
- d-cache-line-size = <0x20>;
- d-cache-size = <0x8000>;
- dcr-access-method = "native";
- dcr-controller ;
- device_type = "cpu";
- i-cache-line-size = <0x20>;
- i-cache-size = <0x8000>;
- model = "PowerPC,440";
- reg = <0>;
- timebase-frequency = <300000000>;
- xlnx,apu-control = <0x2000>;
- xlnx,apu-udi-0 = <0x0>;
- xlnx,apu-udi-1 = <0x0>;
- xlnx,apu-udi-10 = <0x0>;
- xlnx,apu-udi-11 = <0x0>;
- xlnx,apu-udi-12 = <0x0>;
- xlnx,apu-udi-13 = <0x0>;
- xlnx,apu-udi-14 = <0x0>;
- xlnx,apu-udi-15 = <0x0>;
- xlnx,apu-udi-2 = <0x0>;
- xlnx,apu-udi-3 = <0x0>;
- xlnx,apu-udi-4 = <0x0>;
- xlnx,apu-udi-5 = <0x0>;
- xlnx,apu-udi-6 = <0x0>;
- xlnx,apu-udi-7 = <0x0>;
- xlnx,apu-udi-8 = <0x0>;
- xlnx,apu-udi-9 = <0x0>;
- xlnx,dcr-autolock-enable = <0x1>;
- xlnx,dcu-rd-ld-cache-plb-prio = <0x0>;
- xlnx,dcu-rd-noncache-plb-prio = <0x0>;
- xlnx,dcu-rd-touch-plb-prio = <0x0>;
- xlnx,dcu-rd-urgent-plb-prio = <0x0>;
- xlnx,dcu-wr-flush-plb-prio = <0x0>;
- xlnx,dcu-wr-store-plb-prio = <0x0>;
- xlnx,dcu-wr-urgent-plb-prio = <0x0>;
- xlnx,dma0-control = <0x0>;
- xlnx,dma0-plb-prio = <0x0>;
- xlnx,dma0-rxchannelctrl = <0x1010000>;
- xlnx,dma0-rxirqtimer = <0x3ff>;
- xlnx,dma0-txchannelctrl = <0x1010000>;
- xlnx,dma0-txirqtimer = <0x3ff>;
- xlnx,dma1-control = <0x0>;
- xlnx,dma1-plb-prio = <0x0>;
- xlnx,dma1-rxchannelctrl = <0x1010000>;
- xlnx,dma1-rxirqtimer = <0x3ff>;
- xlnx,dma1-txchannelctrl = <0x1010000>;
- xlnx,dma1-txirqtimer = <0x3ff>;
- xlnx,dma2-control = <0x0>;
- xlnx,dma2-plb-prio = <0x0>;
- xlnx,dma2-rxchannelctrl = <0x1010000>;
- xlnx,dma2-rxirqtimer = <0x3ff>;
- xlnx,dma2-txchannelctrl = <0x1010000>;
- xlnx,dma2-txirqtimer = <0x3ff>;
- xlnx,dma3-control = <0x0>;
- xlnx,dma3-plb-prio = <0x0>;
- xlnx,dma3-rxchannelctrl = <0x1010000>;
- xlnx,dma3-rxirqtimer = <0x3ff>;
- xlnx,dma3-txchannelctrl = <0x1010000>;
- xlnx,dma3-txirqtimer = <0x3ff>;
- xlnx,endian-reset = <0x0>;
- xlnx,generate-plb-timespecs = <0x1>;
- xlnx,icu-rd-fetch-plb-prio = <0x0>;
- xlnx,icu-rd-spec-plb-prio = <0x0>;
- xlnx,icu-rd-touch-plb-prio = <0x0>;
- xlnx,interconnect-imask = <0xffffffff>;
- xlnx,mplb-allow-lock-xfer = <0x1>;
- xlnx,mplb-arb-mode = <0x0>;
- xlnx,mplb-awidth = <0x20>;
- xlnx,mplb-counter = <0x500>;
- xlnx,mplb-dwidth = <0x80>;
- xlnx,mplb-max-burst = <0x8>;
- xlnx,mplb-native-dwidth = <0x80>;
- xlnx,mplb-p2p = <0x0>;
- xlnx,mplb-prio-dcur = <0x2>;
- xlnx,mplb-prio-dcuw = <0x3>;
- xlnx,mplb-prio-icu = <0x4>;
- xlnx,mplb-prio-splb0 = <0x1>;
- xlnx,mplb-prio-splb1 = <0x0>;
- xlnx,mplb-read-pipe-enable = <0x1>;
- xlnx,mplb-sync-tattribute = <0x0>;
- xlnx,mplb-wdog-enable = <0x1>;
- xlnx,mplb-write-pipe-enable = <0x1>;
- xlnx,mplb-write-post-enable = <0x1>;
- xlnx,num-dma = <0x0>;
- xlnx,pir = <0xf>;
- xlnx,ppc440mc-addr-base = <0x0>;
- xlnx,ppc440mc-addr-high = <0x1fffffff>;
- xlnx,ppc440mc-arb-mode = <0x0>;
- xlnx,ppc440mc-bank-conflict-mask = <0x1800000>;
- xlnx,ppc440mc-control = <0xf810008f>;
- xlnx,ppc440mc-max-burst = <0x8>;
- xlnx,ppc440mc-prio-dcur = <0x2>;
- xlnx,ppc440mc-prio-dcuw = <0x3>;
- xlnx,ppc440mc-prio-icu = <0x4>;
- xlnx,ppc440mc-prio-splb0 = <0x1>;
- xlnx,ppc440mc-prio-splb1 = <0x0>;
- xlnx,ppc440mc-row-conflict-mask = <0x7ffe00>;
- xlnx,ppcdm-asyncmode = <0x0>;
- xlnx,ppcds-asyncmode = <0x0>;
- xlnx,user-reset = <0x0>;
- } ;
- } ;
- plb_v46_0: plb@0 {
- #address-cells = <1>;
- #size-cells = <1>;
- compatible = "xlnx,plb-v46-1.03.a", "simple-bus";
- ranges ;
- FLASH: flash@fc000000 {
- bank-width = <2>;
- compatible = "xlnx,xps-mch-emc-2.00.a", "cfi-flash";
- reg = < 0xfc000000 0x2000000 >;
- xlnx,family = "virtex5";
- xlnx,include-datawidth-matching-0 = <0x1>;
- xlnx,include-datawidth-matching-1 = <0x0>;
- xlnx,include-datawidth-matching-2 = <0x0>;
- xlnx,include-datawidth-matching-3 = <0x0>;
- xlnx,include-negedge-ioregs = <0x0>;
- xlnx,include-plb-ipif = <0x1>;
- xlnx,include-wrbuf = <0x1>;
- xlnx,max-mem-width = <0x10>;
- xlnx,mch-native-dwidth = <0x20>;
- xlnx,mch-plb-clk-period-ps = <0x2710>;
- xlnx,mch-splb-awidth = <0x20>;
- xlnx,mch0-accessbuf-depth = <0x10>;
- xlnx,mch0-protocol = <0x0>;
- xlnx,mch0-rddatabuf-depth = <0x10>;
- xlnx,mch1-accessbuf-depth = <0x10>;
- xlnx,mch1-protocol = <0x0>;
- xlnx,mch1-rddatabuf-depth = <0x10>;
- xlnx,mch2-accessbuf-depth = <0x10>;
- xlnx,mch2-protocol = <0x0>;
- xlnx,mch2-rddatabuf-depth = <0x10>;
- xlnx,mch3-accessbuf-depth = <0x10>;
- xlnx,mch3-protocol = <0x0>;
- xlnx,mch3-rddatabuf-depth = <0x10>;
- xlnx,mem0-width = <0x10>;
- xlnx,mem1-width = <0x20>;
- xlnx,mem2-width = <0x20>;
- xlnx,mem3-width = <0x20>;
- xlnx,num-banks-mem = <0x1>;
- xlnx,num-channels = <0x2>;
- xlnx,priority-mode = <0x0>;
- xlnx,synch-mem-0 = <0x0>;
- xlnx,synch-mem-1 = <0x0>;
- xlnx,synch-mem-2 = <0x0>;
- xlnx,synch-mem-3 = <0x0>;
- xlnx,synch-pipedelay-0 = <0x2>;
- xlnx,synch-pipedelay-1 = <0x2>;
- xlnx,synch-pipedelay-2 = <0x2>;
- xlnx,synch-pipedelay-3 = <0x2>;
- xlnx,tavdv-ps-mem-0 = <0x1adb0>;
- xlnx,tavdv-ps-mem-1 = <0x3a98>;
- xlnx,tavdv-ps-mem-2 = <0x3a98>;
- xlnx,tavdv-ps-mem-3 = <0x3a98>;
- xlnx,tcedv-ps-mem-0 = <0x1adb0>;
- xlnx,tcedv-ps-mem-1 = <0x3a98>;
- xlnx,tcedv-ps-mem-2 = <0x3a98>;
- xlnx,tcedv-ps-mem-3 = <0x3a98>;
- xlnx,thzce-ps-mem-0 = <0x88b8>;
- xlnx,thzce-ps-mem-1 = <0x1b58>;
- xlnx,thzce-ps-mem-2 = <0x1b58>;
- xlnx,thzce-ps-mem-3 = <0x1b58>;
- xlnx,thzoe-ps-mem-0 = <0x1b58>;
- xlnx,thzoe-ps-mem-1 = <0x1b58>;
- xlnx,thzoe-ps-mem-2 = <0x1b58>;
- xlnx,thzoe-ps-mem-3 = <0x1b58>;
- xlnx,tlzwe-ps-mem-0 = <0x88b8>;
- xlnx,tlzwe-ps-mem-1 = <0x0>;
- xlnx,tlzwe-ps-mem-2 = <0x0>;
- xlnx,tlzwe-ps-mem-3 = <0x0>;
- xlnx,twc-ps-mem-0 = <0x1adb0>;
- xlnx,twc-ps-mem-1 = <0x3a98>;
- xlnx,twc-ps-mem-2 = <0x3a98>;
- xlnx,twc-ps-mem-3 = <0x3a98>;
- xlnx,twp-ps-mem-0 = <0x11170>;
- xlnx,twp-ps-mem-1 = <0x2ee0>;
- xlnx,twp-ps-mem-2 = <0x2ee0>;
- xlnx,twp-ps-mem-3 = <0x2ee0>;
- xlnx,xcl0-linesize = <0x4>;
- xlnx,xcl0-writexfer = <0x1>;
- xlnx,xcl1-linesize = <0x4>;
- xlnx,xcl1-writexfer = <0x1>;
- xlnx,xcl2-linesize = <0x4>;
- xlnx,xcl2-writexfer = <0x1>;
- xlnx,xcl3-linesize = <0x4>;
- xlnx,xcl3-writexfer = <0x1>;
- } ;
- Hard_Ethernet_MAC: xps-ll-temac@81c00000 {
- #address-cells = <1>;
- #size-cells = <1>;
- compatible = "xlnx,compound";
- ethernet@81c00000 {
- compatible = "xlnx,xps-ll-temac-1.01.b";
- device_type = "network";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 8 2 >;
- llink-connected = <&Hard_Ethernet_MAC_fifo>;
- local-mac-address = [ 02 00 00 00 00 00 ];
- reg = < 0x81c00000 0x40 >;
- xlnx,bus2core-clk-ratio = <0x1>;
- xlnx,phy-type = <0x3>;
- xlnx,phyaddr = <0x1>;
- xlnx,rxcsum = <0x0>;
- xlnx,rxfifo = <0x8000>;
- xlnx,temac-type = <0x0>;
- xlnx,txcsum = <0x0>;
- xlnx,txfifo = <0x8000>;
- } ;
- } ;
- Hard_Ethernet_MAC_fifo: xps-ll-fifo@81a00000 {
- compatible = "xlnx,xps-ll-fifo-1.01.a";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 6 2 >;
- reg = < 0x81a00000 0x10000 >;
- xlnx,family = "virtex5";
- } ;
- IIC_EEPROM: i2c@81600000 {
- compatible = "xlnx,xps-iic-2.00.a";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 9 2 >;
- reg = < 0x81600000 0x10000 >;
- xlnx,clk-freq = <0x5f5e100>;
- xlnx,family = "virtex5";
- xlnx,gpo-width = <0x1>;
- xlnx,iic-freq = <0x186a0>;
- xlnx,scl-inertial-delay = <0x5>;
- xlnx,sda-inertial-delay = <0x5>;
- xlnx,ten-bit-adr = <0x0>;
- } ;
- LCD_OPTIONAL: gpio@81420000 {
- compatible = "xlnx,xps-gpio-1.00.a";
- reg = < 0x81420000 0x10000 >;
- xlnx,all-inputs = <0x0>;
- xlnx,all-inputs-2 = <0x0>;
- xlnx,dout-default = <0x0>;
- xlnx,dout-default-2 = <0x0>;
- xlnx,family = "virtex5";
- xlnx,gpio-width = <0xb>;
- xlnx,interrupt-present = <0x0>;
- xlnx,is-bidir = <0x1>;
- xlnx,is-bidir-2 = <0x1>;
- xlnx,is-dual = <0x0>;
- xlnx,tri-default = <0xffffffff>;
- xlnx,tri-default-2 = <0xffffffff>;
- } ;
- LEDs_4Bit: gpio@81400000 {
- compatible = "xlnx,xps-gpio-1.00.a";
- reg = < 0x81400000 0x10000 >;
- xlnx,all-inputs = <0x0>;
- xlnx,all-inputs-2 = <0x0>;
- xlnx,dout-default = <0x0>;
- xlnx,dout-default-2 = <0x0>;
- xlnx,family = "virtex5";
- xlnx,gpio-width = <0x4>;
- xlnx,interrupt-present = <0x0>;
- xlnx,is-bidir = <0x1>;
- xlnx,is-bidir-2 = <0x1>;
- xlnx,is-dual = <0x0>;
- xlnx,tri-default = <0xffffffff>;
- xlnx,tri-default-2 = <0xffffffff>;
- } ;
- RS232_Uart_1: serial@83e00000 {
- clock-frequency = <100000000>;
- compatible = "xlnx,xps-uart16550-2.00.b", "ns16550";
- current-speed = <9600>;
- device_type = "serial";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 11 2 >;
- reg = < 0x83e00000 0x10000 >;
- reg-offset = <0x1003>;
- reg-shift = <2>;
- xlnx,family = "virtex5";
- xlnx,has-external-rclk = <0x0>;
- xlnx,has-external-xin = <0x0>;
- xlnx,is-a-16550 = <0x1>;
- } ;
- SPI_EEPROM: xps-spi@feff8000 {
- compatible = "xlnx,xps-spi-2.00.b";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 10 2 >;
- reg = < 0xfeff8000 0x80 >;
- xlnx,family = "virtex5";
- xlnx,fifo-exist = <0x1>;
- xlnx,num-ss-bits = <0x1>;
- xlnx,num-transfer-bits = <0x8>;
- xlnx,sck-ratio = <0x80>;
- } ;
- SysACE_CompactFlash: sysace@83600000 {
- compatible = "xlnx,xps-sysace-1.00.a";
- interrupt-parent = <&xps_intc_0>;
- interrupts = < 7 2 >;
- reg = < 0x83600000 0x10000 >;
- xlnx,family = "virtex5";
- xlnx,mem-width = <0x10>;
- } ;
- plbv46_pci_0: plbv46-pci@85e00000 {
- #size-cells = <2>;
- #address-cells = <3>;
- compatible = "xlnx,plbv46-pci-1.03.a";
- device_type = "pci";
- reg = < 0x85e00000 0x10000 >;
-
- /*
- * The default ML510 BSB has C_IPIFBAR2PCIBAR_0 set to
- * 0 which means that a read/write to the memory mapped
- * i/o region (which starts at 0xa0000000) for pci
- * bar 0 on the plb side translates to 0.
- * It is important to set this value to 0xa0000000, so
- * that inbound and outbound pci transactions work
- * properly including DMA.
- */
- ranges = <0x02000000 0 0xa0000000 0xa0000000 0 0x20000000
- 0x01000000 0 0x00000000 0xf0000000 0 0x00010000>;
-
- #interrupt-cells = <1>;
- interrupt-parent = <&xps_intc_0>;
- interrupt-map-mask = <0xff00 0x0 0x0 0x7>;
- interrupt-map = <
- /* IRQ mapping for pci slots and ALI M1533
- * periperhals. In total there are 5 interrupt
- * lines connected to a xps_intc controller.
- * Four of them are PCI IRQ A, B, C, D and
- * which correspond to respectively xpx_intc
- * 5, 4, 3 and 2. The fifth interrupt line is
- * connected to the south bridge and this one
- * uses irq 1 and is active high instead of
- * active low.
- *
- * The M1533 contains various peripherals
- * including AC97 audio, a modem, USB, IDE and
- * some power management stuff. The modem
- * isn't connected on the ML510 and the power
- * management core also isn't used.
- */
-
- /* IDSEL 0x16 / dev=6, bus=0 / PCI slot 3 */
- 0x3000 0 0 1 &xps_intc_0 3 2
- 0x3000 0 0 2 &xps_intc_0 2 2
- 0x3000 0 0 3 &xps_intc_0 5 2
- 0x3000 0 0 4 &xps_intc_0 4 2
-
- /* IDSEL 0x13 / dev=3, bus=1 / PCI slot 4 */
- /*
- 0x11800 0 0 1 &xps_intc_0 5 0 2
- 0x11800 0 0 2 &xps_intc_0 4 0 2
- 0x11800 0 0 3 &xps_intc_0 3 0 2
- 0x11800 0 0 4 &xps_intc_0 2 0 2
- */
-
- /* According to the datasheet + schematic
- * ABCD [FPGA] of slot 5 is mapped to DABC.
- * Testing showed that at least A maps to B,
- * the mapping of the other pins is a guess
- * and for that reason the lines have been
- * commented out.
- */
- /* IDSEL 0x15 / dev=5, bus=0 / PCI slot 5 */
- 0x2800 0 0 1 &xps_intc_0 4 2
- /*
- 0x2800 0 0 2 &xps_intc_0 3 2
- 0x2800 0 0 3 &xps_intc_0 2 2
- 0x2800 0 0 4 &xps_intc_0 5 2
- */
-
- /* IDSEL 0x12 / dev=2, bus=1 / PCI slot 6 */
- /*
- 0x11000 0 0 1 &xps_intc_0 4 0 2
- 0x11000 0 0 2 &xps_intc_0 3 0 2
- 0x11000 0 0 3 &xps_intc_0 2 0 2
- 0x11000 0 0 4 &xps_intc_0 5 0 2
- */
-
- /* IDSEL 0x11 / dev=1, bus=0 / AC97 audio */
- 0x0800 0 0 1 &i8259 7 2
-
- /* IDSEL 0x1b / dev=11, bus=0 / IDE */
- 0x5800 0 0 1 &i8259 14 2
-
- /* IDSEL 0x1f / dev 15, bus=0 / 2x USB 1.1 */
- 0x7800 0 0 1 &i8259 7 2
- >;
- ali_m1533 {
- #size-cells = <1>;
- #address-cells = <2>;
- i8259: interrupt-controller@20 {
- reg = <1 0x20 2
- 1 0xa0 2
- 1 0x4d0 2>;
- interrupt-controller;
- device_type = "interrupt-controller";
- #address-cells = <0>;
- #interrupt-cells = <2>;
- compatible = "chrp,iic";
-
- /* south bridge irq is active high */
- interrupts = <1 3>;
- interrupt-parent = <&xps_intc_0>;
- };
- };
- } ;
- xps_bram_if_cntlr_1: xps-bram-if-cntlr@ffff0000 {
- compatible = "xlnx,xps-bram-if-cntlr-1.00.a";
- reg = < 0xffff0000 0x10000 >;
- xlnx,family = "virtex5";
- } ;
- xps_intc_0: interrupt-controller@81800000 {
- #interrupt-cells = <0x2>;
- compatible = "xlnx,xps-intc-1.00.a";
- interrupt-controller ;
- reg = < 0x81800000 0x10000 >;
- xlnx,num-intr-inputs = <0xc>;
- } ;
- xps_tft_0: tft@86e00000 {
- compatible = "xlnx,xps-tft-1.00.a";
- reg = < 0x86e00000 0x10000 >;
- xlnx,dcr-splb-slave-if = <0x1>;
- xlnx,default-tft-base-addr = <0x0>;
- xlnx,family = "virtex5";
- xlnx,i2c-slave-addr = <0x76>;
- xlnx,mplb-awidth = <0x20>;
- xlnx,mplb-dwidth = <0x80>;
- xlnx,mplb-native-dwidth = <0x40>;
- xlnx,mplb-smallest-slave = <0x20>;
- xlnx,tft-interface = <0x1>;
- } ;
- } ;
-} ;
diff --git a/arch/powerpc/boot/ops.h b/arch/powerpc/boot/ops.h
index e0606766480f..6455fc9a244f 100644
--- a/arch/powerpc/boot/ops.h
+++ b/arch/powerpc/boot/ops.h
@@ -88,7 +88,6 @@ int serial_console_init(void);
int ns16550_console_init(void *devp, struct serial_console_data *scdp);
int cpm_console_init(void *devp, struct serial_console_data *scdp);
int mpc5200_psc_console_init(void *devp, struct serial_console_data *scdp);
-int uartlite_console_init(void *devp, struct serial_console_data *scdp);
int opal_console_init(void *devp, struct serial_console_data *scdp);
void *simple_alloc_init(char *base, unsigned long heap_size,
unsigned long granularity, unsigned long max_allocs);
diff --git a/arch/powerpc/boot/serial.c b/arch/powerpc/boot/serial.c
index 9457863147f9..0bfa7e87e546 100644
--- a/arch/powerpc/boot/serial.c
+++ b/arch/powerpc/boot/serial.c
@@ -132,11 +132,6 @@ int serial_console_init(void)
else if (dt_is_compatible(devp, "fsl,mpc5200-psc-uart"))
rc = mpc5200_psc_console_init(devp, &serial_cd);
#endif
-#ifdef CONFIG_XILINX_VIRTEX
- else if (dt_is_compatible(devp, "xlnx,opb-uartlite-1.00.b") ||
- dt_is_compatible(devp, "xlnx,xps-uartlite-1.00.a"))
- rc = uartlite_console_init(devp, &serial_cd);
-#endif
#ifdef CONFIG_PPC64_BOOT_WRAPPER
else if (dt_is_compatible(devp, "ibm,opal-console-raw"))
rc = opal_console_init(devp, &serial_cd);
diff --git a/arch/powerpc/boot/uartlite.c b/arch/powerpc/boot/uartlite.c
deleted file mode 100644
index 46bed69b4169..000000000000
--- a/arch/powerpc/boot/uartlite.c
+++ /dev/null
@@ -1,79 +0,0 @@
-/*
- * Xilinx UARTLITE bootloader driver
- *
- * Copyright (C) 2007 Secret Lab Technologies Ltd.
- *
- * This file is licensed under the terms of the GNU General Public License
- * version 2. This program is licensed "as is" without any warranty of any
- * kind, whether express or implied.
- */
-
-#include <stdarg.h>
-#include <stddef.h>
-#include "types.h"
-#include "string.h"
-#include "stdio.h"
-#include "io.h"
-#include "ops.h"
-
-#define ULITE_RX 0x00
-#define ULITE_TX 0x04
-#define ULITE_STATUS 0x08
-#define ULITE_CONTROL 0x0c
-
-#define ULITE_STATUS_RXVALID 0x01
-#define ULITE_STATUS_TXFULL 0x08
-
-#define ULITE_CONTROL_RST_RX 0x02
-
-static void * reg_base;
-
-static int uartlite_open(void)
-{
- /* Clear the RX FIFO */
- out_be32(reg_base + ULITE_CONTROL, ULITE_CONTROL_RST_RX);
- return 0;
-}
-
-static void uartlite_putc(unsigned char c)
-{
- u32 reg = ULITE_STATUS_TXFULL;
- while (reg & ULITE_STATUS_TXFULL) /* spin on TXFULL bit */
- reg = in_be32(reg_base + ULITE_STATUS);
- out_be32(reg_base + ULITE_TX, c);
-}
-
-static unsigned char uartlite_getc(void)
-{
- u32 reg = 0;
- while (!(reg & ULITE_STATUS_RXVALID)) /* spin waiting for RXVALID bit */
- reg = in_be32(reg_base + ULITE_STATUS);
- return in_be32(reg_base + ULITE_RX);
-}
-
-static u8 uartlite_tstc(void)
-{
- u32 reg = in_be32(reg_base + ULITE_STATUS);
- return reg & ULITE_STATUS_RXVALID;
-}
-
-int uartlite_console_init(void *devp, struct serial_console_data *scdp)
-{
- int n;
- unsigned long reg_phys;
-
- n = getprop(devp, "virtual-reg", ®_base, sizeof(reg_base));
- if (n != sizeof(reg_base)) {
- if (!dt_xlate_reg(devp, 0, ®_phys, NULL))
- return -1;
-
- reg_base = (void *)reg_phys;
- }
-
- scdp->open = uartlite_open;
- scdp->putc = uartlite_putc;
- scdp->getc = uartlite_getc;
- scdp->tstc = uartlite_tstc;
- scdp->close = NULL;
- return 0;
-}
diff --git a/arch/powerpc/boot/virtex.c b/arch/powerpc/boot/virtex.c
deleted file mode 100644
index f731cbb4bff0..000000000000
--- a/arch/powerpc/boot/virtex.c
+++ /dev/null
@@ -1,97 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0-only
-/*
- * The platform specific code for virtex devices since a boot loader is not
- * always used.
- *
- * (C) Copyright 2008 Xilinx, Inc.
- */
-
-#include "ops.h"
-#include "io.h"
-#include "stdio.h"
-
-#define UART_DLL 0 /* Out: Divisor Latch Low */
-#define UART_DLM 1 /* Out: Divisor Latch High */
-#define UART_FCR 2 /* Out: FIFO Control Register */
-#define UART_FCR_CLEAR_RCVR 0x02 /* Clear the RCVR FIFO */
-#define UART_FCR_CLEAR_XMIT 0x04 /* Clear the XMIT FIFO */
-#define UART_LCR 3 /* Out: Line Control Register */
-#define UART_MCR 4 /* Out: Modem Control Register */
-#define UART_MCR_RTS 0x02 /* RTS complement */
-#define UART_MCR_DTR 0x01 /* DTR complement */
-#define UART_LCR_DLAB 0x80 /* Divisor latch access bit */
-#define UART_LCR_WLEN8 0x03 /* Wordlength: 8 bits */
-
-static int virtex_ns16550_console_init(void *devp)
-{
- unsigned char *reg_base;
- u32 reg_shift, reg_offset, clk, spd;
- u16 divisor;
- int n;
-
- if (dt_get_virtual_reg(devp, (void **)®_base, 1) < 1)
- return -1;
-
- n = getprop(devp, "reg-offset", ®_offset, sizeof(reg_offset));
- if (n == sizeof(reg_offset))
- reg_base += reg_offset;
-
- n = getprop(devp, "reg-shift", ®_shift, sizeof(reg_shift));
- if (n != sizeof(reg_shift))
- reg_shift = 0;
-
- n = getprop(devp, "current-speed", (void *)&spd, sizeof(spd));
- if (n != sizeof(spd))
- spd = 9600;
-
- /* should there be a default clock rate?*/
- n = getprop(devp, "clock-frequency", (void *)&clk, sizeof(clk));
- if (n != sizeof(clk))
- return -1;
-
- divisor = clk / (16 * spd);
-
- /* Access baud rate */
- out_8(reg_base + (UART_LCR << reg_shift), UART_LCR_DLAB);
-
- /* Baud rate based on input clock */
- out_8(reg_base + (UART_DLL << reg_shift), divisor & 0xFF);
- out_8(reg_base + (UART_DLM << reg_shift), divisor >> 8);
-
- /* 8 data, 1 stop, no parity */
- out_8(reg_base + (UART_LCR << reg_shift), UART_LCR_WLEN8);
-
- /* RTS/DTR */
- out_8(reg_base + (UART_MCR << reg_shift), UART_MCR_RTS | UART_MCR_DTR);
-
- /* Clear transmitter and receiver */
- out_8(reg_base + (UART_FCR << reg_shift),
- UART_FCR_CLEAR_XMIT | UART_FCR_CLEAR_RCVR);
- return 0;
-}
-
-/* For virtex, the kernel may be loaded without using a bootloader and if so
- some UARTs need more setup than is provided in the normal console init
-*/
-int platform_specific_init(void)
-{
- void *devp;
- char devtype[MAX_PROP_LEN];
- char path[MAX_PATH_LEN];
-
- devp = finddevice("/chosen");
- if (devp == NULL)
- return -1;
-
- if (getprop(devp, "linux,stdout-path", path, MAX_PATH_LEN) > 0) {
- devp = finddevice(path);
- if (devp == NULL)
- return -1;
-
- if ((getprop(devp, "device_type", devtype, sizeof(devtype)) > 0)
- && !strcmp(devtype, "serial")
- && (dt_is_compatible(devp, "ns16550")))
- virtex_ns16550_console_init(devp);
- }
- return 0;
-}
diff --git a/arch/powerpc/boot/virtex405-head.S b/arch/powerpc/boot/virtex405-head.S
deleted file mode 100644
index 00bab7d7c48c..000000000000
--- a/arch/powerpc/boot/virtex405-head.S
+++ /dev/null
@@ -1,31 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#include "ppc_asm.h"
-
- .text
- .global _zimage_start
-_zimage_start:
-
- /* PPC errata 213: needed by Virtex-4 FX */
- mfccr0 0
- oris 0,0,0x50000000@h
- mtccr0 0
-
- /*
- * Invalidate the data cache if the data cache is turned off.
- * - The 405 core does not invalidate the data cache on power-up
- * or reset but does turn off the data cache. We cannot assume
- * that the cache contents are valid.
- * - If the data cache is turned on this must have been done by
- * a bootloader and we assume that the cache contents are
- * valid.
- */
- mfdccr r9
- cmplwi r9,0
- bne 2f
- lis r9,0
- li r8,256
- mtctr r8
-1: dccci r0,r9
- addi r9,r9,0x20
- bdnz 1b
-2: b _zimage_start_lib
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper
index ed6266367bc0..de5fd5a047e8 100755
--- a/arch/powerpc/boot/wrapper
+++ b/arch/powerpc/boot/wrapper
@@ -323,14 +323,6 @@ adder875-redboot)
platformo="$object/fixed-head.o $object/redboot-8xx.o"
binary=y
;;
-simpleboot-virtex405-*)
- platformo="$object/virtex405-head.o $object/simpleboot.o $object/virtex.o"
- binary=y
- ;;
-simpleboot-virtex440-*)
- platformo="$object/fixed-head.o $object/simpleboot.o $object/virtex.o"
- binary=y
- ;;
simpleboot-*)
platformo="$object/fixed-head.o $object/simpleboot.o"
binary=y
diff --git a/arch/powerpc/configs/40x/virtex_defconfig b/arch/powerpc/configs/40x/virtex_defconfig
deleted file mode 100644
index 5e7c61d1d7d0..000000000000
--- a/arch/powerpc/configs/40x/virtex_defconfig
+++ /dev/null
@@ -1,75 +0,0 @@
-CONFIG_40x=y
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_SYSVIPC=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_IKCONFIG=y
-CONFIG_IKCONFIG_PROC=y
-CONFIG_LOG_BUF_SHIFT=14
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_SLAB=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-CONFIG_MODULE_FORCE_UNLOAD=y
-CONFIG_MODVERSIONS=y
-# CONFIG_BLK_DEV_BSG is not set
-# CONFIG_WALNUT is not set
-CONFIG_XILINX_VIRTEX_GENERIC_BOARD=y
-CONFIG_PREEMPT=y
-CONFIG_MATH_EMULATION=y
-CONFIG_CMDLINE_BOOL=y
-CONFIG_CMDLINE=""
-CONFIG_PCI=y
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_PNP=y
-CONFIG_IP_PNP_DHCP=y
-CONFIG_IP_PNP_BOOTP=y
-CONFIG_NETFILTER=y
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_BLK_DEV_LOOP=y
-CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=8192
-CONFIG_XILINX_SYSACE=y
-CONFIG_NETDEVICES=y
-# CONFIG_SERIO_SERPORT is not set
-CONFIG_SERIO_XILINX_XPS_PS2=y
-CONFIG_SERIAL_8250=y
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_SERIAL_OF_PLATFORM=y
-CONFIG_SERIAL_UARTLITE=y
-CONFIG_SERIAL_UARTLITE_CONSOLE=y
-CONFIG_XILINX_HWICAP=y
-CONFIG_GPIOLIB=y
-CONFIG_GPIO_SYSFS=y
-CONFIG_GPIO_XILINX=y
-# CONFIG_HWMON is not set
-CONFIG_FB=y
-CONFIG_FB_XILINX=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_LOGO=y
-# CONFIG_USB_SUPPORT is not set
-CONFIG_EXT2_FS=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_MSDOS_FS=y
-CONFIG_VFAT_FS=y
-CONFIG_TMPFS=y
-CONFIG_CRAMFS=y
-CONFIG_ROMFS_FS=y
-CONFIG_NFS_FS=y
-CONFIG_ROOT_NFS=y
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_ASCII=m
-CONFIG_NLS_ISO8859_1=m
-CONFIG_NLS_UTF8=m
-CONFIG_CRC_CCITT=y
-CONFIG_FONTS=y
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-CONFIG_PRINTK_TIME=y
-CONFIG_DEBUG_INFO=y
-CONFIG_DEBUG_KERNEL=y
diff --git a/arch/powerpc/configs/44x/virtex5_defconfig b/arch/powerpc/configs/44x/virtex5_defconfig
deleted file mode 100644
index 1f74079e1703..000000000000
--- a/arch/powerpc/configs/44x/virtex5_defconfig
+++ /dev/null
@@ -1,74 +0,0 @@
-CONFIG_44x=y
-# CONFIG_LOCALVERSION_AUTO is not set
-CONFIG_SYSVIPC=y
-CONFIG_POSIX_MQUEUE=y
-CONFIG_IKCONFIG=y
-CONFIG_IKCONFIG_PROC=y
-CONFIG_LOG_BUF_SHIFT=14
-CONFIG_BLK_DEV_INITRD=y
-CONFIG_SLAB=y
-CONFIG_MODULES=y
-CONFIG_MODULE_UNLOAD=y
-CONFIG_MODULE_FORCE_UNLOAD=y
-CONFIG_MODVERSIONS=y
-# CONFIG_BLK_DEV_BSG is not set
-# CONFIG_EBONY is not set
-CONFIG_XILINX_VIRTEX440_GENERIC_BOARD=y
-CONFIG_PREEMPT=y
-CONFIG_MATH_EMULATION=y
-CONFIG_CMDLINE_BOOL=y
-CONFIG_CMDLINE=""
-CONFIG_NET=y
-CONFIG_PACKET=y
-CONFIG_UNIX=y
-CONFIG_INET=y
-CONFIG_IP_MULTICAST=y
-CONFIG_IP_PNP=y
-CONFIG_IP_PNP_DHCP=y
-CONFIG_IP_PNP_BOOTP=y
-CONFIG_NETFILTER=y
-CONFIG_IP_NF_IPTABLES=m
-CONFIG_IP_NF_FILTER=m
-CONFIG_IP_NF_MANGLE=m
-CONFIG_BLK_DEV_LOOP=y
-CONFIG_BLK_DEV_RAM=y
-CONFIG_BLK_DEV_RAM_SIZE=8192
-CONFIG_XILINX_SYSACE=y
-CONFIG_NETDEVICES=y
-# CONFIG_SERIO_SERPORT is not set
-CONFIG_SERIO_XILINX_XPS_PS2=y
-CONFIG_SERIAL_8250=y
-CONFIG_SERIAL_8250_CONSOLE=y
-CONFIG_SERIAL_OF_PLATFORM=y
-CONFIG_SERIAL_UARTLITE=y
-CONFIG_SERIAL_UARTLITE_CONSOLE=y
-CONFIG_XILINX_HWICAP=y
-CONFIG_GPIOLIB=y
-CONFIG_GPIO_SYSFS=y
-CONFIG_GPIO_XILINX=y
-# CONFIG_HWMON is not set
-CONFIG_FB=y
-CONFIG_FB_XILINX=y
-CONFIG_FRAMEBUFFER_CONSOLE=y
-CONFIG_LOGO=y
-# CONFIG_USB_SUPPORT is not set
-CONFIG_EXT2_FS=y
-CONFIG_AUTOFS4_FS=y
-CONFIG_MSDOS_FS=y
-CONFIG_VFAT_FS=y
-CONFIG_TMPFS=y
-CONFIG_CRAMFS=y
-CONFIG_ROMFS_FS=y
-CONFIG_NFS_FS=y
-CONFIG_ROOT_NFS=y
-CONFIG_NLS_CODEPAGE_437=y
-CONFIG_NLS_ASCII=m
-CONFIG_NLS_ISO8859_1=m
-CONFIG_NLS_UTF8=m
-CONFIG_CRC_CCITT=y
-CONFIG_FONTS=y
-CONFIG_FONT_8x8=y
-CONFIG_FONT_8x16=y
-CONFIG_PRINTK_TIME=y
-CONFIG_DEBUG_INFO=y
-CONFIG_DEBUG_KERNEL=y
diff --git a/arch/powerpc/configs/ppc40x_defconfig b/arch/powerpc/configs/ppc40x_defconfig
index a5f683aed328..88960a72b525 100644
--- a/arch/powerpc/configs/ppc40x_defconfig
+++ b/arch/powerpc/configs/ppc40x_defconfig
@@ -14,7 +14,6 @@ CONFIG_EP405=y
CONFIG_HOTFOOT=y
CONFIG_KILAUEA=y
CONFIG_MAKALU=y
-CONFIG_XILINX_VIRTEX_GENERIC_BOARD=y
CONFIG_NET=y
CONFIG_PACKET=y
CONFIG_UNIX=y
@@ -37,33 +36,26 @@ CONFIG_MTD_UBI=m
CONFIG_MTD_UBI_GLUEBI=m
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=35000
-CONFIG_XILINX_SYSACE=m
CONFIG_NETDEVICES=y
CONFIG_IBM_EMAC=y
# CONFIG_INPUT is not set
CONFIG_SERIO=m
# CONFIG_SERIO_I8042 is not set
# CONFIG_SERIO_SERPORT is not set
-CONFIG_SERIO_XILINX_XPS_PS2=m
# CONFIG_VT is not set
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
CONFIG_SERIAL_OF_PLATFORM=y
-CONFIG_SERIAL_UARTLITE=y
-CONFIG_SERIAL_UARTLITE_CONSOLE=y
# CONFIG_HW_RANDOM is not set
-CONFIG_XILINX_HWICAP=m
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m
CONFIG_I2C_GPIO=m
CONFIG_I2C_IBM_IIC=m
-CONFIG_GPIO_XILINX=y
# CONFIG_HWMON is not set
CONFIG_THERMAL=y
CONFIG_FB=m
-CONFIG_FB_XILINX=m
CONFIG_EXT2_FS=y
CONFIG_EXT4_FS=m
CONFIG_VFAT_FS=m
diff --git a/arch/powerpc/configs/ppc44x_defconfig b/arch/powerpc/configs/ppc44x_defconfig
index a41eedfe0a5f..8b595f67068c 100644
--- a/arch/powerpc/configs/ppc44x_defconfig
+++ b/arch/powerpc/configs/ppc44x_defconfig
@@ -22,7 +22,6 @@ CONFIG_GLACIER=y
CONFIG_REDWOOD=y
CONFIG_EIGER=y
CONFIG_YOSEMITE=y
-CONFIG_XILINX_VIRTEX440_GENERIC_BOARD=y
CONFIG_PPC4xx_GPIO=y
CONFIG_MATH_EMULATION=y
CONFIG_NET=y
@@ -46,7 +45,6 @@ CONFIG_MTD_UBI=m
CONFIG_MTD_UBI_GLUEBI=m
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=35000
-CONFIG_XILINX_SYSACE=m
CONFIG_SCSI=m
CONFIG_BLK_DEV_SD=m
# CONFIG_SCSI_LOWLEVEL is not set
@@ -57,7 +55,6 @@ CONFIG_IBM_EMAC=y
CONFIG_SERIO=m
# CONFIG_SERIO_I8042 is not set
# CONFIG_SERIO_SERPORT is not set
-CONFIG_SERIO_XILINX_XPS_PS2=m
# CONFIG_VT is not set
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
@@ -65,18 +62,13 @@ CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
CONFIG_SERIAL_OF_PLATFORM=y
-CONFIG_SERIAL_UARTLITE=y
-CONFIG_SERIAL_UARTLITE_CONSOLE=y
# CONFIG_HW_RANDOM is not set
-CONFIG_XILINX_HWICAP=m
CONFIG_I2C=m
CONFIG_I2C_CHARDEV=m
CONFIG_I2C_GPIO=m
CONFIG_I2C_IBM_IIC=m
-CONFIG_GPIO_XILINX=y
# CONFIG_HWMON is not set
CONFIG_FB=m
-CONFIG_FB_XILINX=m
CONFIG_USB=m
CONFIG_USB_EHCI_HCD=m
CONFIG_USB_OHCI_HCD=m
diff --git a/arch/powerpc/include/asm/xilinx_intc.h b/arch/powerpc/include/asm/xilinx_intc.h
deleted file mode 100644
index ca9aa162fb09..000000000000
--- a/arch/powerpc/include/asm/xilinx_intc.h
+++ /dev/null
@@ -1,16 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
-/*
- * Xilinx intc external definitions
- *
- * Copyright 2007 Secret Lab Technologies Ltd.
- */
-#ifndef _ASM_POWERPC_XILINX_INTC_H
-#define _ASM_POWERPC_XILINX_INTC_H
-
-#ifdef __KERNEL__
-
-extern void __init xilinx_intc_init_tree(void);
-extern unsigned int xintc_get_irq(void);
-
-#endif /* __KERNEL__ */
-#endif /* _ASM_POWERPC_XILINX_INTC_H */
diff --git a/arch/powerpc/include/asm/xilinx_pci.h b/arch/powerpc/include/asm/xilinx_pci.h
deleted file mode 100644
index 7a8275caf6af..000000000000
--- a/arch/powerpc/include/asm/xilinx_pci.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Xilinx pci external definitions
- *
- * Copyright 2009 Roderick Colenbrander
- * Copyright 2009 Secret Lab Technologies Ltd.
- *
- * This file is licensed under the terms of the GNU General Public License
- * version 2. This program is licensed "as is" without any warranty of any
- * kind, whether express or implied.
- */
-
-#ifndef INCLUDE_XILINX_PCI
-#define INCLUDE_XILINX_PCI
-
-#ifdef CONFIG_XILINX_PCI
-extern void __init xilinx_pci_init(void);
-#else
-static inline void __init xilinx_pci_init(void) { return; }
-#endif
-
-#endif /* INCLUDE_XILINX_PCI */
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c
index 245be4fafe13..2dff9041bcdc 100644
--- a/arch/powerpc/kernel/cputable.c
+++ b/arch/powerpc/kernel/cputable.c
@@ -1385,32 +1385,6 @@ static struct cpu_spec __initdata cpu_specs[] = {
.machine_check = machine_check_4xx,
.platform = "ppc405",
},
- { /* Xilinx Virtex-II Pro */
- .pvr_mask = 0xfffff000,
- .pvr_value = 0x20010000,
- .cpu_name = "Virtex-II Pro",
- .cpu_features = CPU_FTRS_40X,
- .cpu_user_features = PPC_FEATURE_32 |
- PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
- .mmu_features = MMU_FTR_TYPE_40x,
- .icache_bsize = 32,
- .dcache_bsize = 32,
- .machine_check = machine_check_4xx,
- .platform = "ppc405",
- },
- { /* Xilinx Virtex-4 FX */
- .pvr_mask = 0xfffff000,
- .pvr_value = 0x20011000,
- .cpu_name = "Virtex-4 FX",
- .cpu_features = CPU_FTRS_40X,
- .cpu_user_features = PPC_FEATURE_32 |
- PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
- .mmu_features = MMU_FTR_TYPE_40x,
- .icache_bsize = 32,
- .dcache_bsize = 32,
- .machine_check = machine_check_4xx,
- .platform = "ppc405",
- },
{ /* 405EP */
.pvr_mask = 0xffff0000,
.pvr_value = 0x51210000,
@@ -1800,19 +1774,6 @@ static struct cpu_spec __initdata cpu_specs[] = {
.machine_check = machine_check_440A,
.platform = "ppc440",
},
- { /* 440 in Xilinx Virtex-5 FXT */
- .pvr_mask = 0xfffffff0,
- .pvr_value = 0x7ff21910,
- .cpu_name = "440 in Virtex-5 FXT",
- .cpu_features = CPU_FTRS_44X,
- .cpu_user_features = COMMON_USER_BOOKE,
- .mmu_features = MMU_FTR_TYPE_44x,
- .icache_bsize = 32,
- .dcache_bsize = 32,
- .cpu_setup = __setup_cpu_440x5,
- .machine_check = machine_check_440A,
- .platform = "ppc440",
- },
{ /* 460EX */
.pvr_mask = 0xffff0006,
.pvr_value = 0x13020002,
diff --git a/arch/powerpc/platforms/40x/Kconfig b/arch/powerpc/platforms/40x/Kconfig
index 6da813b65b42..d06ca51e8443 100644
--- a/arch/powerpc/platforms/40x/Kconfig
+++ b/arch/powerpc/platforms/40x/Kconfig
@@ -55,23 +55,6 @@ config WALNUT
help
This option enables support for the IBM PPC405GP evaluation board.
-config XILINX_VIRTEX_GENERIC_BOARD
- bool "Generic Xilinx Virtex board"
- depends on 40x
- select XILINX_VIRTEX_II_PRO
- select XILINX_VIRTEX_4_FX
- select XILINX_INTC
- help
- This option enables generic support for Xilinx Virtex based boards.
-
- The generic virtex board support matches any device tree which
- specifies 'xilinx,virtex' in its compatible field. This includes
- the Xilinx ML3xx and ML4xx reference designs using the powerpc
- core.
-
- Most Virtex designs should use this unless it needs to do some
- special configuration at board probe time.
-
config OBS600
bool "OpenBlockS 600"
depends on 40x
@@ -109,20 +92,6 @@ config 405EZ
select IBM_EMAC_MAL_CLR_ICINTSTAT if IBM_EMAC
select IBM_EMAC_MAL_COMMON_ERR if IBM_EMAC
-config XILINX_VIRTEX
- bool
- select DEFAULT_UIMAGE
-
-config XILINX_VIRTEX_II_PRO
- bool
- select XILINX_VIRTEX
- select IBM405_ERR77
- select IBM405_ERR51
-
-config XILINX_VIRTEX_4_FX
- bool
- select XILINX_VIRTEX
-
config STB03xxx
bool
select IBM405_ERR77
diff --git a/arch/powerpc/platforms/40x/Makefile b/arch/powerpc/platforms/40x/Makefile
index 828d78340dd9..e9386deed505 100644
--- a/arch/powerpc/platforms/40x/Makefile
+++ b/arch/powerpc/platforms/40x/Makefile
@@ -1,5 +1,4 @@
# SPDX-License-Identifier: GPL-2.0-only
obj-$(CONFIG_WALNUT) += walnut.o
-obj-$(CONFIG_XILINX_VIRTEX_GENERIC_BOARD) += virtex.o
obj-$(CONFIG_EP405) += ep405.o
obj-$(CONFIG_PPC40x_SIMPLE) += ppc40x_simple.o
diff --git a/arch/powerpc/platforms/40x/virtex.c b/arch/powerpc/platforms/40x/virtex.c
deleted file mode 100644
index e3d5e095846b..000000000000
--- a/arch/powerpc/platforms/40x/virtex.c
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Xilinx Virtex (IIpro & 4FX) based board support
- *
- * Copyright 2007 Secret Lab Technologies Ltd.
- *
- * This file is licensed under the terms of the GNU General Public License
- * version 2. This program is licensed "as is" without any warranty of any
- * kind, whether express or implied.
- */
-
-#include <linux/init.h>
-#include <linux/of_platform.h>
-#include <asm/machdep.h>
-#include <asm/prom.h>
-#include <asm/time.h>
-#include <asm/xilinx_intc.h>
-#include <asm/xilinx_pci.h>
-#include <asm/ppc4xx.h>
-
-static const struct of_device_id xilinx_of_bus_ids[] __initconst = {
- { .compatible = "xlnx,plb-v46-1.00.a", },
- { .compatible = "xlnx,plb-v34-1.01.a", },
- { .compatible = "xlnx,plb-v34-1.02.a", },
- { .compatible = "xlnx,opb-v20-1.10.c", },
- { .compatible = "xlnx,dcr-v29-1.00.a", },
- { .compatible = "xlnx,compound", },
- {}
-};
-
-static int __init virtex_device_probe(void)
-{
- of_platform_bus_probe(NULL, xilinx_of_bus_ids, NULL);
-
- return 0;
-}
-machine_device_initcall(virtex, virtex_device_probe);
-
-static int __init virtex_probe(void)
-{
- if (!of_machine_is_compatible("xlnx,virtex"))
- return 0;
-
- return 1;
-}
-
-define_machine(virtex) {
- .name = "Xilinx Virtex",
- .probe = virtex_probe,
- .setup_arch = xilinx_pci_init,
- .init_IRQ = xilinx_intc_init_tree,
- .get_irq = xintc_get_irq,
- .restart = ppc4xx_reset_system,
- .calibrate_decr = generic_calibrate_decr,
-};
diff --git a/arch/powerpc/platforms/44x/Kconfig b/arch/powerpc/platforms/44x/Kconfig
index 25ebe634a661..39e93d23fb38 100644
--- a/arch/powerpc/platforms/44x/Kconfig
+++ b/arch/powerpc/platforms/44x/Kconfig
@@ -232,33 +232,6 @@ config ICON
help
This option enables support for the AMCC PPC440SPe evaluation board.
-config XILINX_VIRTEX440_GENERIC_BOARD
- bool "Generic Xilinx Virtex 5 FXT board support"
- depends on 44x
- select XILINX_VIRTEX_5_FXT
- select XILINX_INTC
- help
- This option enables generic support for Xilinx Virtex based boards
- that use a 440 based processor in the Virtex 5 FXT FPGA architecture.
-
- The generic virtex board support matches any device tree which
- specifies 'xlnx,virtex440' in its compatible field. This includes
- the Xilinx ML5xx reference designs using the powerpc core.
-
- Most Virtex 5 designs should use this unless it needs to do some
- special configuration at board probe time.
-
-config XILINX_ML510
- bool "Xilinx ML510 extra support"
- depends on XILINX_VIRTEX440_GENERIC_BOARD
- select HAVE_PCI
- select XILINX_PCI if PCI
- select PPC_INDIRECT_PCI if PCI
- select PPC_I8259 if PCI
- help
- This option enables extra support for features on the Xilinx ML510
- board. The ML510 has a PCI bus with ALI south bridge.
-
config PPC44x_SIMPLE
bool "Simple PowerPC 44x board support"
depends on 44x
@@ -354,13 +327,3 @@ config 476FPE_ERR46
config IBM440EP_ERR42
bool
-# Xilinx specific config options.
-config XILINX_VIRTEX
- bool
- select DEFAULT_UIMAGE
-
-# Xilinx Virtex 5 FXT FPGA architecture, selected by a Xilinx board above
-config XILINX_VIRTEX_5_FXT
- bool
- select XILINX_VIRTEX
-
diff --git a/arch/powerpc/platforms/44x/Makefile b/arch/powerpc/platforms/44x/Makefile
index 1b78c6af821a..5ba031f57652 100644
--- a/arch/powerpc/platforms/44x/Makefile
+++ b/arch/powerpc/platforms/44x/Makefile
@@ -7,8 +7,6 @@ obj-$(CONFIG_PPC44x_SIMPLE) += ppc44x_simple.o
obj-$(CONFIG_EBONY) += ebony.o
obj-$(CONFIG_SAM440EP) += sam440ep.o
obj-$(CONFIG_WARP) += warp.o
-obj-$(CONFIG_XILINX_VIRTEX_5_FXT) += virtex.o
-obj-$(CONFIG_XILINX_ML510) += virtex_ml510.o
obj-$(CONFIG_ISS4xx) += iss4xx.o
obj-$(CONFIG_CANYONLANDS)+= canyonlands.o
obj-$(CONFIG_CURRITUCK) += ppc476.o
diff --git a/arch/powerpc/platforms/44x/virtex.c b/arch/powerpc/platforms/44x/virtex.c
deleted file mode 100644
index 3eb13ed926ee..000000000000
--- a/arch/powerpc/platforms/44x/virtex.c
+++ /dev/null
@@ -1,60 +0,0 @@
-/*
- * Xilinx Virtex 5FXT based board support, derived from
- * the Xilinx Virtex (IIpro & 4FX) based board support
- *
- * Copyright 2007 Secret Lab Technologies Ltd.
- * Copyright 2008 Xilinx, Inc.
- *
- * This file is licensed under the terms of the GNU General Public License
- * version 2. This program is licensed "as is" without any warranty of any
- * kind, whether express or implied.
- */
-
-#include <linux/init.h>
-#include <linux/of_platform.h>
-#include <asm/machdep.h>
-#include <asm/prom.h>
-#include <asm/time.h>
-#include <asm/xilinx_intc.h>
-#include <asm/xilinx_pci.h>
-#include <asm/reg.h>
-#include <asm/ppc4xx.h>
-#include "44x.h"
-
-static const struct of_device_id xilinx_of_bus_ids[] __initconst = {
- { .compatible = "simple-bus", },
- { .compatible = "xlnx,plb-v46-1.00.a", },
- { .compatible = "xlnx,plb-v46-1.02.a", },
- { .compatible = "xlnx,plb-v34-1.01.a", },
- { .compatible = "xlnx,plb-v34-1.02.a", },
- { .compatible = "xlnx,opb-v20-1.10.c", },
- { .compatible = "xlnx,dcr-v29-1.00.a", },
- { .compatible = "xlnx,compound", },
- {}
-};
-
-static int __init virtex_device_probe(void)
-{
- of_platform_bus_probe(NULL, xilinx_of_bus_ids, NULL);
-
- return 0;
-}
-machine_device_initcall(virtex, virtex_device_probe);
-
-static int __init virtex_probe(void)
-{
- if (!of_machine_is_compatible("xlnx,virtex440"))
- return 0;
-
- return 1;
-}
-
-define_machine(virtex) {
- .name = "Xilinx Virtex440",
- .probe = virtex_probe,
- .setup_arch = xilinx_pci_init,
- .init_IRQ = xilinx_intc_init_tree,
- .get_irq = xintc_get_irq,
- .calibrate_decr = generic_calibrate_decr,
- .restart = ppc4xx_reset_system,
-};
diff --git a/arch/powerpc/platforms/44x/virtex_ml510.c b/arch/powerpc/platforms/44x/virtex_ml510.c
deleted file mode 100644
index 349f218b335c..000000000000
--- a/arch/powerpc/platforms/44x/virtex_ml510.c
+++ /dev/null
@@ -1,30 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-#include <asm/i8259.h>
-#include <linux/pci.h>
-#include "44x.h"
-
-/**
- * ml510_ail_quirk
- */
-static void ml510_ali_quirk(struct pci_dev *dev)
-{
- /* Enable the IDE controller */
- pci_write_config_byte(dev, 0x58, 0x4c);
- /* Assign irq 14 to the primary ide channel */
- pci_write_config_byte(dev, 0x44, 0x0d);
- /* Assign irq 15 to the secondary ide channel */
- pci_write_config_byte(dev, 0x75, 0x0f);
- /* Set the ide controller in native mode */
- pci_write_config_byte(dev, 0x09, 0xff);
-
- /* INTB = disabled, INTA = disabled */
- pci_write_config_byte(dev, 0x48, 0x00);
- /* INTD = disabled, INTC = disabled */
- pci_write_config_byte(dev, 0x4a, 0x00);
- /* Audio = INT7, Modem = disabled. */
- pci_write_config_byte(dev, 0x4b, 0x60);
- /* USB = INT7 */
- pci_write_config_byte(dev, 0x74, 0x06);
-}
-DECLARE_PCI_FIXUP_EARLY(0x10b9, 0x1533, ml510_ali_quirk);
-
diff --git a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig
index 1f8025383caa..5e6479d409a0 100644
--- a/arch/powerpc/platforms/Kconfig
+++ b/arch/powerpc/platforms/Kconfig
@@ -317,8 +317,4 @@ config MCU_MPC8349EMITX
also register MCU GPIOs with the generic GPIO API, so you'll able
to use MCU pins as GPIOs.
-config XILINX_PCI
- bool "Xilinx PCI host bridge support"
- depends on PCI && XILINX_VIRTEX
-
endmenu
diff --git a/arch/powerpc/sysdev/Makefile b/arch/powerpc/sysdev/Makefile
index cb5a5bd2cef5..026b3f01a991 100644
--- a/arch/powerpc/sysdev/Makefile
+++ b/arch/powerpc/sysdev/Makefile
@@ -31,8 +31,6 @@ obj-$(CONFIG_RTC_DRV_CMOS) += rtc_cmos_setup.o
obj-$(CONFIG_PPC_INDIRECT_PCI) += indirect_pci.o
obj-$(CONFIG_PPC_I8259) += i8259.o
obj-$(CONFIG_IPIC) += ipic.o
-obj-$(CONFIG_XILINX_VIRTEX) += xilinx_intc.o
-obj-$(CONFIG_XILINX_PCI) += xilinx_pci.o
obj-$(CONFIG_OF_RTC) += of_rtc.o
obj-$(CONFIG_CPM) += cpm_common.o
diff --git a/arch/powerpc/sysdev/xilinx_intc.c b/arch/powerpc/sysdev/xilinx_intc.c
deleted file mode 100644
index 4a86dcff3fcd..000000000000
--- a/arch/powerpc/sysdev/xilinx_intc.c
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * Interrupt controller driver for Xilinx Virtex FPGAs
- *
- * Copyright (C) 2007 Secret Lab Technologies Ltd.
- *
- * This file is licensed under the terms of the GNU General Public License
- * version 2. This program is licensed "as is" without any warranty of any
- * kind, whether express or implied.
- *
- */
-
-/*
- * This is a driver for the interrupt controller typically found in
- * Xilinx Virtex FPGA designs.
- *
- * The interrupt sense levels are hard coded into the FPGA design with
- * typically a 1:1 relationship between irq lines and devices (no shared
- * irq lines). Therefore, this driver does not attempt to handle edge
- * and level interrupts differently.
- */
-#undef DEBUG
-
-#include <linux/kernel.h>
-#include <linux/irq.h>
-#include <linux/of.h>
-#include <linux/of_address.h>
-#include <linux/of_irq.h>
-#include <asm/io.h>
-#include <asm/processor.h>
-#include <asm/i8259.h>
-#include <asm/irq.h>
-#include <linux/irqchip.h>
-
-#if defined(CONFIG_PPC_I8259)
-/*
- * Support code for cascading to 8259 interrupt controllers
- */
-static void xilinx_i8259_cascade(struct irq_desc *desc)
-{
- struct irq_chip *chip = irq_desc_get_chip(desc);
- unsigned int cascade_irq = i8259_irq();
-
- if (cascade_irq)
- generic_handle_irq(cascade_irq);
-
- /* Let xilinx_intc end the interrupt */
- chip->irq_unmask(&desc->irq_data);
-}
-
-static void __init xilinx_i8259_setup_cascade(void)
-{
- struct device_node *cascade_node;
- int cascade_irq;
-
- /* Initialize i8259 controller */
- cascade_node = of_find_compatible_node(NULL, NULL, "chrp,iic");
- if (!cascade_node)
- return;
-
- cascade_irq = irq_of_parse_and_map(cascade_node, 0);
- if (!cascade_irq) {
- pr_err("virtex_ml510: Failed to map cascade interrupt\n");
- goto out;
- }
-
- i8259_init(cascade_node, 0);
- irq_set_chained_handler(cascade_irq, xilinx_i8259_cascade);
-
- /* Program irq 7 (usb/audio), 14/15 (ide) to level sensitive */
- /* This looks like a dirty hack to me --gcl */
- outb(0xc0, 0x4d0);
- outb(0xc0, 0x4d1);
-
- out:
- of_node_put(cascade_node);
-}
-#else
-static inline void xilinx_i8259_setup_cascade(void) { return; }
-#endif /* defined(CONFIG_PPC_I8259) */
-
-/*
- * Initialize master Xilinx interrupt controller
- */
-void __init xilinx_intc_init_tree(void)
-{
- irqchip_init();
- xilinx_i8259_setup_cascade();
-}
diff --git a/arch/powerpc/sysdev/xilinx_pci.c b/arch/powerpc/sysdev/xilinx_pci.c
deleted file mode 100644
index fea5667699ed..000000000000
--- a/arch/powerpc/sysdev/xilinx_pci.c
+++ /dev/null
@@ -1,132 +0,0 @@
-/*
- * PCI support for Xilinx plbv46_pci soft-core which can be used on
- * Xilinx Virtex ML410 / ML510 boards.
- *
- * Copyright 2009 Roderick Colenbrander
- * Copyright 2009 Secret Lab Technologies Ltd.
- *
- * The pci bridge fixup code was copied from ppc4xx_pci.c and was written
- * by Benjamin Herrenschmidt.
- * Copyright 2007 Ben. Herrenschmidt <benh@kernel.crashing.org>, IBM Corp.
- *
- * This file is licensed under the terms of the GNU General Public License
- * version 2. This program is licensed "as is" without any warranty of any
- * kind, whether express or implied.
- */
-
-#include <linux/ioport.h>
-#include <linux/of.h>
-#include <linux/pci.h>
-#include <mm/mmu_decl.h>
-#include <asm/io.h>
-#include <asm/xilinx_pci.h>
-
-#define XPLB_PCI_ADDR 0x10c
-#define XPLB_PCI_DATA 0x110
-#define XPLB_PCI_BUS 0x114
-
-#define PCI_HOST_ENABLE_CMD PCI_COMMAND_SERR | PCI_COMMAND_PARITY | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY
-
-static const struct of_device_id xilinx_pci_match[] = {
- { .compatible = "xlnx,plbv46-pci-1.03.a", },
- {}
-};
-
-/**
- * xilinx_pci_fixup_bridge - Block Xilinx PHB configuration.
- */
-static void xilinx_pci_fixup_bridge(struct pci_dev *dev)
-{
- struct pci_controller *hose;
- int i;
-
- if (dev->devfn || dev->bus->self)
- return;
-
- hose = pci_bus_to_host(dev->bus);
- if (!hose)
- return;
-
- if (!of_match_node(xilinx_pci_match, hose->dn))
- return;
-
- /* Hide the PCI host BARs from the kernel as their content doesn't
- * fit well in the resource management
- */
- for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
- dev->resource[i].start = 0;
- dev->resource[i].end = 0;
- dev->resource[i].flags = 0;
- }
-
- dev_info(&dev->dev, "Hiding Xilinx plb-pci host bridge resources %s\n",
- pci_name(dev));
-}
-DECLARE_PCI_FIXUP_HEADER(PCI_ANY_ID, PCI_ANY_ID, xilinx_pci_fixup_bridge);
-
-/**
- * xilinx_pci_exclude_device - Don't do config access for non-root bus
- *
- * This is a hack. Config access to any bus other than bus 0 does not
- * currently work on the ML510 so we prevent it here.
- */
-static int
-xilinx_pci_exclude_device(struct pci_controller *hose, u_char bus, u8 devfn)
-{
- return (bus != 0);
-}
-
-/**
- * xilinx_pci_init - Find and register a Xilinx PCI host bridge
- */
-void __init xilinx_pci_init(void)
-{
- struct pci_controller *hose;
- struct resource r;
- void __iomem *pci_reg;
- struct device_node *pci_node;
-
- pci_node = of_find_matching_node(NULL, xilinx_pci_match);
- if(!pci_node)
- return;
-
- if (of_address_to_resource(pci_node, 0, &r)) {
- pr_err("xilinx-pci: cannot resolve base address\n");
- return;
- }
-
- hose = pcibios_alloc_controller(pci_node);
- if (!hose) {
- pr_err("xilinx-pci: pcibios_alloc_controller() failed\n");
- return;
- }
-
- /* Setup config space */
- setup_indirect_pci(hose, r.start + XPLB_PCI_ADDR,
- r.start + XPLB_PCI_DATA,
- PPC_INDIRECT_TYPE_SET_CFG_TYPE);
-
- /* According to the xilinx plbv46_pci documentation the soft-core starts
- * a self-init when the bus master enable bit is set. Without this bit
- * set the pci bus can't be scanned.
- */
- early_write_config_word(hose, 0, 0, PCI_COMMAND, PCI_HOST_ENABLE_CMD);
-
- /* Set the max latency timer to 255 */
- early_write_config_byte(hose, 0, 0, PCI_LATENCY_TIMER, 0xff);
-
- /* Set the max bus number to 255 */
- pci_reg = of_iomap(pci_node, 0);
- out_8(pci_reg + XPLB_PCI_BUS, 0xff);
- iounmap(pci_reg);
-
- /* Nothing past the root bridge is working right now. By default
- * exclude config access to anything except bus 0 */
- if (!ppc_md.pci_exclude_device)
- ppc_md.pci_exclude_device = xilinx_pci_exclude_device;
-
- /* Register the host bridge with the linux kernel! */
- pci_process_bridge_OF_ranges(hose, pci_node, 1);
-
- pr_info("xilinx-pci: Registered PCI host bridge\n");
-}
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig
index 26956c006987..0ccbd6fd6de1 100644
--- a/drivers/char/Kconfig
+++ b/drivers/char/Kconfig
@@ -316,7 +316,7 @@ config DTLK
config XILINX_HWICAP
tristate "Xilinx HWICAP Support"
- depends on XILINX_VIRTEX || MICROBLAZE
+ depends on MICROBLAZE
help
This option enables support for Xilinx Internal Configuration
Access Port (ICAP) driver. The ICAP is used on Xilinx Virtex
diff --git a/drivers/video/fbdev/Kconfig b/drivers/video/fbdev/Kconfig
index f65991a67af2..b174650e0f09 100644
--- a/drivers/video/fbdev/Kconfig
+++ b/drivers/video/fbdev/Kconfig
@@ -2007,7 +2007,7 @@ config FB_PS3_DEFAULT_SIZE_M
config FB_XILINX
tristate "Xilinx frame buffer support"
- depends on FB && (XILINX_VIRTEX || MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP)
+ depends on FB && (MICROBLAZE || ARCH_ZYNQ || ARCH_ZYNQMP)
select FB_CFB_FILLRECT
select FB_CFB_COPYAREA
select FB_CFB_IMAGEBLIT
--
2.26.0
^ permalink raw reply related
* [PATCH v2 0/2] powerpc: Remove support for ppc405/440 Xilinx platforms
From: Michal Simek @ 2020-03-30 13:32 UTC (permalink / raw)
To: linux-kernel, monstr, michal.simek, git, sfr, maz
Cc: Kate Stewart, Mark Rutland, Desnes A. Nunes do Rosario,
Geert Uytterhoeven, linux-doc, alsa-devel, dri-devel,
Jaroslav Kysela, Richard Fontana, Paul Mackerras, Miquel Raynal,
Mauro Carvalho Chehab, Fabio Estevam, Sasha Levin,
Jonathan Corbet, Masahiro Yamada, YueHaibing, Krzysztof Kozlowski,
Allison Randal, linux-arm-kernel, devicetree, Andrew Donnellan,
Arnd Bergmann, Bartlomiej Zolnierkiewicz, Alistair Popple,
linuxppc-dev, Nicholas Piggin, Alexios Zavras, Mark Brown,
linux-fbdev, Jonathan Cameron, Thomas Gleixner, Andy Shevchenko,
Dmitry Vyukov, Wei Hu, Greg Kroah-Hartman, Nick Desaulniers,
Takashi Iwai, Rob Herring, Enrico Weigelt, David S. Miller,
Thiago Jung Bauermann
Hi,
recently we wanted to update xilinx intc driver and we found that function
which we wanted to remove is still wired by ancient Xilinx PowerPC
platforms. Here is the thread about it.
https://lore.kernel.org/linux-next/48d3232d-0f1d-42ea-3109-f44bbabfa2e8@xilinx.com/
I have been talking about it internally and there is no interest in these
platforms and it is also orphan for quite a long time. None is really
running/testing these platforms regularly that's why I think it makes sense
to remove them also with drivers which are specific to this platform.
U-Boot support was removed in 2017 without anybody complain about it
https://github.com/Xilinx/u-boot-xlnx/commit/98f705c9cefdfdba62c069821bbba10273a0a8ed
Based on current ppc/next.
If anyone has any objection about it, please let me know.
Thanks,
Michal
Changes in v2:
- Remove also sound/drivers/pcm-indirect2.[ch] files
Reported-by: Takashi Iwai <tiwai@suse.de>
- Based on my chat with Arnd I removed arch/powerpc/xmon/ changes done in
v1 to keep them the same as before. (kbuild reported some issues with it
too)
Michal Simek (2):
sound: ac97: Remove sound driver for ancient platform
powerpc: Remove Xilinx PPC405/PPC440 support
Documentation/devicetree/bindings/xilinx.txt | 143 --
Documentation/powerpc/bootwrapper.rst | 28 +-
MAINTAINERS | 6 -
arch/powerpc/Kconfig.debug | 2 +-
arch/powerpc/boot/Makefile | 7 +-
arch/powerpc/boot/dts/Makefile | 1 -
arch/powerpc/boot/dts/virtex440-ml507.dts | 406 ------
arch/powerpc/boot/dts/virtex440-ml510.dts | 466 -------
arch/powerpc/boot/ops.h | 1 -
arch/powerpc/boot/serial.c | 5 -
arch/powerpc/boot/uartlite.c | 79 --
arch/powerpc/boot/virtex.c | 97 --
arch/powerpc/boot/virtex405-head.S | 31 -
arch/powerpc/boot/wrapper | 8 -
arch/powerpc/configs/40x/virtex_defconfig | 75 -
arch/powerpc/configs/44x/virtex5_defconfig | 74 -
arch/powerpc/configs/ppc40x_defconfig | 8 -
arch/powerpc/configs/ppc44x_defconfig | 8 -
arch/powerpc/include/asm/xilinx_intc.h | 16 -
arch/powerpc/include/asm/xilinx_pci.h | 21 -
arch/powerpc/kernel/cputable.c | 39 -
arch/powerpc/platforms/40x/Kconfig | 31 -
arch/powerpc/platforms/40x/Makefile | 1 -
arch/powerpc/platforms/40x/virtex.c | 54 -
arch/powerpc/platforms/44x/Kconfig | 37 -
arch/powerpc/platforms/44x/Makefile | 2 -
arch/powerpc/platforms/44x/virtex.c | 60 -
arch/powerpc/platforms/44x/virtex_ml510.c | 30 -
arch/powerpc/platforms/Kconfig | 4 -
arch/powerpc/sysdev/Makefile | 2 -
arch/powerpc/sysdev/xilinx_intc.c | 88 --
arch/powerpc/sysdev/xilinx_pci.c | 132 --
drivers/char/Kconfig | 2 +-
drivers/video/fbdev/Kconfig | 2 +-
sound/drivers/Kconfig | 12 -
sound/drivers/Makefile | 2 -
sound/drivers/ml403-ac97cr.c | 1298 ------------------
sound/drivers/pcm-indirect2.c | 560 --------
sound/drivers/pcm-indirect2.h | 127 --
39 files changed, 7 insertions(+), 3958 deletions(-)
delete mode 100644 arch/powerpc/boot/dts/virtex440-ml507.dts
delete mode 100644 arch/powerpc/boot/dts/virtex440-ml510.dts
delete mode 100644 arch/powerpc/boot/uartlite.c
delete mode 100644 arch/powerpc/boot/virtex.c
delete mode 100644 arch/powerpc/boot/virtex405-head.S
delete mode 100644 arch/powerpc/configs/40x/virtex_defconfig
delete mode 100644 arch/powerpc/configs/44x/virtex5_defconfig
delete mode 100644 arch/powerpc/include/asm/xilinx_intc.h
delete mode 100644 arch/powerpc/include/asm/xilinx_pci.h
delete mode 100644 arch/powerpc/platforms/40x/virtex.c
delete mode 100644 arch/powerpc/platforms/44x/virtex.c
delete mode 100644 arch/powerpc/platforms/44x/virtex_ml510.c
delete mode 100644 arch/powerpc/sysdev/xilinx_intc.c
delete mode 100644 arch/powerpc/sysdev/xilinx_pci.c
delete mode 100644 sound/drivers/ml403-ac97cr.c
delete mode 100644 sound/drivers/pcm-indirect2.c
delete mode 100644 sound/drivers/pcm-indirect2.h
--
2.26.0
^ permalink raw reply
* Re: [PATCH v5 03/13] powerpc/ptrace: drop unnecessary #ifdefs CONFIG_PPC64
From: Balamuruhan S @ 2020-03-30 13:31 UTC (permalink / raw)
To: Christophe Leroy, Benjamin Herrenschmidt, Paul Mackerras,
Michael Ellerman, mikey
Cc: linuxppc-dev, linux-kernel
In-Reply-To: <af38b87a7e1e3efe4f9b664eaeb029e6e7d69fdb.1582848567.git.christophe.leroy@c-s.fr>
On Fri, 2020-02-28 at 00:14 +0000, Christophe Leroy wrote:
> Drop a bunch of #ifdefs CONFIG_PPC64 that are not vital.
>
> Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
> ---
> arch/powerpc/include/asm/ptrace.h | 2 ++
> arch/powerpc/kernel/ptrace/ptrace.c | 18 +++---------------
> 2 files changed, 5 insertions(+), 15 deletions(-)
>
> diff --git a/arch/powerpc/include/asm/ptrace.h
> b/arch/powerpc/include/asm/ptrace.h
> index ee3ada66deb5..8e1953d99353 100644
> --- a/arch/powerpc/include/asm/ptrace.h
> +++ b/arch/powerpc/include/asm/ptrace.h
> @@ -276,6 +276,8 @@ static inline unsigned long
> regs_get_kernel_stack_nth(struct pt_regs *regs,
> #endif /* __ASSEMBLY__ */
>
> #ifndef __powerpc64__
> +/* We need PT_SOFTE defined at all time to avoid #ifdefs */
> +#define PT_SOFTE PT_MQ
> #else /* __powerpc64__ */
> #define PT_FPSCR32 (PT_FPR0 + 2*32 + 1) /* each FP reg occupies 2 32-
> bit userspace slots */
> #define PT_VR0_32 164 /* each Vector reg occupies 4 slots in 32-bit
> */
> diff --git a/arch/powerpc/kernel/ptrace/ptrace.c
> b/arch/powerpc/kernel/ptrace/ptrace.c
> index 7ed54dbb2d7e..3dd94c296ac7 100644
> --- a/arch/powerpc/kernel/ptrace/ptrace.c
> +++ b/arch/powerpc/kernel/ptrace/ptrace.c
> @@ -274,17 +274,15 @@ int ptrace_get_reg(struct task_struct *task, int regno,
> unsigned long *data)
> if (regno == PT_DSCR)
> return get_user_dscr(task, data);
>
> -#ifdef CONFIG_PPC64
> /*
> * softe copies paca->irq_soft_mask variable state. Since irq_soft_mask
> is
> * no more used as a flag, lets force usr to alway see the softe value
> as 1
> * which means interrupts are not soft disabled.
> */
> - if (regno == PT_SOFTE) {
> + if (IS_ENABLED(CONFIG_PPC64) && regno == PT_SOFTE) {
> *data = 1;
> return 0;
> }
> -#endif
>
> regs_max = sizeof(struct user_pt_regs) / sizeof(unsigned long);
> if (regno < regs_max) {
> @@ -1998,7 +1996,6 @@ static const struct user_regset_view
> user_ppc_native_view = {
> .regsets = native_regsets, .n = ARRAY_SIZE(native_regsets)
> };
>
> -#ifdef CONFIG_PPC64
should we care for this ?
/*
* These are the regset flavors matching the CONFIG_PPC32 native set.
*/
static const struct user_regset compat_regsets[] = {
[REGSET_GPR] = {
.core_note_type = NT_PRSTATUS, .n = ELF_NGREG,
.size = sizeof(compat_long_t), .align = sizeof(compat_long_t),
.get = gpr32_get, .set = gpr32_set
},
[REGSET_FPR] = {
.core_note_type = NT_PRFPREG, .n = ELF_NFPREG,
.size = sizeof(double), .align = sizeof(double),
.get = fpr_get, .set = fpr_set
},
> #include <linux/compat.h>
can we move it to head if we do not need the ifdef ?
rest looks good to me.
-- Bala
>
> static int gpr32_get_common(struct task_struct *target,
> @@ -2272,14 +2269,11 @@ static const struct user_regset_view
> user_ppc_compat_view = {
> .name = "ppc", .e_machine = EM_PPC, .ei_osabi = ELF_OSABI,
> .regsets = compat_regsets, .n = ARRAY_SIZE(compat_regsets)
> };
> -#endif /* CONFIG_PPC64 */
>
> const struct user_regset_view *task_user_regset_view(struct task_struct
> *task)
> {
> -#ifdef CONFIG_PPC64
> - if (test_tsk_thread_flag(task, TIF_32BIT))
> + if (IS_ENABLED(CONFIG_PPC64) && test_tsk_thread_flag(task, TIF_32BIT))
> return &user_ppc_compat_view;
> -#endif
> return &user_ppc_native_view;
> }
>
> @@ -3063,11 +3057,7 @@ long arch_ptrace(struct task_struct *child, long
> request,
> else
> dbginfo.num_data_bps = 0;
> dbginfo.num_condition_regs = 0;
> -#ifdef CONFIG_PPC64
> - dbginfo.data_bp_alignment = 8;
> -#else
> - dbginfo.data_bp_alignment = 4;
> -#endif
> + dbginfo.data_bp_alignment = sizeof(long);
> dbginfo.sizeof_condition = 0;
> #ifdef CONFIG_HAVE_HW_BREAKPOINT
> dbginfo.features = PPC_DEBUG_FEATURE_DATA_BP_RANGE;
> @@ -3304,12 +3294,10 @@ long do_syscall_trace_enter(struct pt_regs *regs)
> if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
> trace_sys_enter(regs, regs->gpr[0]);
>
> -#ifdef CONFIG_PPC64
> if (!is_32bit_task())
> audit_syscall_entry(regs->gpr[0], regs->gpr[3], regs->gpr[4],
> regs->gpr[5], regs->gpr[6]);
> else
> -#endif
> audit_syscall_entry(regs->gpr[0],
> regs->gpr[3] & 0xffffffff,
> regs->gpr[4] & 0xffffffff,
^ permalink raw reply
* [PATCH] Fix "[v3, 10/32] powerpc/64s/exception: move real->virt switch into the common handler"
From: Nicholas Piggin @ 2020-03-30 12:31 UTC (permalink / raw)
To: linuxppc-dev; +Cc: Nicholas Piggin
It's possible for interrupts to be replayed when TM is enabled and
suspended, for example rt_sigreturn, where the mtmsrd MSR_KERNEL in
the real-mode entry point to the common handler causes a TM Bad Thing
exception (due to attempting to clear suspended).
The fix for this is to have replay interrupts go to the _virt entry
point and skip the mtmsrd, which matches what happens before this
patch.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
---
arch/powerpc/kernel/exceptions-64s.S | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/arch/powerpc/kernel/exceptions-64s.S b/arch/powerpc/kernel/exceptions-64s.S
index 112cdb446e03..42fced32c8af 100644
--- a/arch/powerpc/kernel/exceptions-64s.S
+++ b/arch/powerpc/kernel/exceptions-64s.S
@@ -2757,12 +2757,12 @@ handle_dabr_fault:
h_doorbell_common_msgclr:
LOAD_REG_IMMEDIATE(r3, PPC_DBELL_MSGTYPE << (63-36))
PPC_MSGCLR(3)
- b h_doorbell_common
+ b h_doorbell_common_virt
doorbell_super_common_msgclr:
LOAD_REG_IMMEDIATE(r3, PPC_DBELL_MSGTYPE << (63-36))
PPC_MSGCLRP(3)
- b doorbell_super_common
+ b doorbell_super_common_virt
/*
* Called from arch_local_irq_enable when an interrupt needs
@@ -2788,20 +2788,20 @@ _GLOBAL(__replay_interrupt)
mfcr r9
ori r12,r12,MSR_EE
cmpwi r3,0x900
- beq decrementer_common
+ beq decrementer_common_virt
cmpwi r3,0x500
BEGIN_FTR_SECTION
- beq h_virt_irq_common
+ beq h_virt_irq_common_virt
FTR_SECTION_ELSE
- beq hardware_interrupt_common
+ beq hardware_interrupt_common_virt
ALT_FTR_SECTION_END_IFSET(CPU_FTR_HVMODE | CPU_FTR_ARCH_300)
cmpwi r3,0xf00
- beq performance_monitor_common
+ beq performance_monitor_common_virt
BEGIN_FTR_SECTION
cmpwi r3,0xa00
beq h_doorbell_common_msgclr
cmpwi r3,0xe60
- beq hmi_exception_common
+ beq hmi_exception_common_virt
FTR_SECTION_ELSE
cmpwi r3,0xa00
beq doorbell_super_common_msgclr
--
2.23.0
^ permalink raw reply related
* [PATCH] powerpc/perf: Add documentation around use of "ppc_set_pmu_inuse" in PMU core-book3s
From: Athira Rajeev @ 2020-03-30 11:38 UTC (permalink / raw)
To: mpe; +Cc: maddy, linuxppc-dev
"pmcregs_in_use" flag is part of lppaca (Virtual Process Area),
which is used to indicate whether Performance Monitoring Unit (PMU) and
PMU sprs are in-use and whether should it be saved/restored by
hypervisor. ppc_set_pmu_inuse() is used to set/unset the VPA
flag "pmcregs_in_use". "pmcregs_in_use" flag is set in
"power_pmu_enable" via ppc_set_pmu_inuse(1) and it is unset
when there are no active events (n_events == 0 condition).
Patch here adds documentation on the ppc_set_pmu_inuse() usage.
Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
Signed-off-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
---
arch/powerpc/perf/core-book3s.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/arch/powerpc/perf/core-book3s.c b/arch/powerpc/perf/core-book3s.c
index 3086055..48bfdc9 100644
--- a/arch/powerpc/perf/core-book3s.c
+++ b/arch/powerpc/perf/core-book3s.c
@@ -1285,6 +1285,11 @@ static void power_pmu_enable(struct pmu *pmu)
goto out;
if (cpuhw->n_events == 0) {
+ /*
+ * Indicate PMU not in-use to Hypervisor.
+ * We end-up here via "ctx_sched_out()" from common code and
+ * "power_pmu_del()".
+ */
ppc_set_pmu_inuse(0);
goto out;
}
@@ -1341,6 +1346,11 @@ static void power_pmu_enable(struct pmu *pmu)
* Write the new configuration to MMCR* with the freeze
* bit set and set the hardware events to their initial values.
* Then unfreeze the events.
+ * ppc_set_pmu_inuse(1): "power_pmu_enable" will unset the
+ * "pmcregs_in_use" flag when a previous profiling/sampling session
+ * is completed and un-setting of flag will notify the Hypervisor to
+ * drop save/restore of PMU sprs. Now that PMU need to be enabled, first
+ * set the "pmcregs_in_use" flag in VPA.
*/
ppc_set_pmu_inuse(1);
mtspr(SPRN_MMCRA, cpuhw->mmcr[2] & ~MMCRA_SAMPLE_ENABLE);
--
1.8.3.1
^ permalink raw reply related
* Re: linux-next: build failure after merge of the tip tree
From: H.J. Lu @ 2020-03-30 11:34 UTC (permalink / raw)
To: Borislav Petkov
Cc: Stephen Rothwell, Kees Cook, Peter Zijlstra,
Linux Kernel Mailing List, Linux Next Mailing List,
H. Peter Anvin, Thomas Gleixner, PowerPC, Ingo Molnar
In-Reply-To: <20200330081652.GB14624@zn.tnic>
On Mon, Mar 30, 2020 at 1:17 AM Borislav Petkov <bp@suse.de> wrote:
>
> On Mon, Mar 30, 2020 at 07:04:16PM +1100, Michael Ellerman wrote:
> > Or just squash the hunk Stephen posted into the commit, which is what I
> > thought would happen to begin with.
> >
> > You can have my ack for it:
> >
> > Acked-by: Michael Ellerman <mpe@ellerman.id.au> (powerpc)
>
> Thanks but considering how this is not really urgent stuff and it can
> take its time and get some wider testing before getting upstream, I'd
> prefer to delay it.
Skip my commit will also delay other commits since they depend on my
commit.
--
H.J.
^ permalink raw reply
* [PATCH v3 4/4] powerpc/papr_scm: Implement support for DSM_PAPR_SCM_HEALTH
From: Vaibhav Jain @ 2020-03-30 11:09 UTC (permalink / raw)
To: linuxppc-dev, linux-nvdimm
Cc: Alastair D'Silva, Aneesh Kumar K . V, Jeff Moyer,
Oliver O'Halloran, Vishal Verma, Vaibhav Jain,
Michael Ellerman, Dan Williams
In-Reply-To: <20200330110943.214097-1-vaibhav@linux.ibm.com>
This patch implements support for papr_scm command
'DSM_PAPR_SCM_HEALTH' that returns a newly introduced 'struct
nd_papr_scm_dimm_health_stat' instance containing dimm health
information back to user space in response to ND_CMD_CALL. This
functionality is implemented in newly introduced papr_scm_get_health()
that queries the scm-dimm health information and then copies these bitmaps
to the package payload whose layout is defined by 'struct
papr_scm_ndctl_health'.
The patch also introduces a new member a new member 'struct
papr_scm_priv.health' thats an instance of 'struct
nd_papr_scm_dimm_health_stat' to cache the health information of a
scm-dimm. As a result functions drc_pmem_query_health() and
papr_flags_show() are updated to populate and use this new struct
instead of two be64 integers that we earlier used.
Signed-off-by: Vaibhav Jain <vaibhav@linux.ibm.com>
---
Changelog:
v2..v3: Updated struct nd_papr_scm_dimm_health_stat_v1 to use '__xx'
types as its exported to the userspace [Aneesh]
Changed the constants DSM_PAPR_SCM_DIMM_XX indicating dimm
health from enum to #defines [Aneesh]
v1..v2: New patch in the series
---
arch/powerpc/include/uapi/asm/papr_scm_dsm.h | 40 +++++++
arch/powerpc/platforms/pseries/papr_scm.c | 111 ++++++++++++++++---
2 files changed, 134 insertions(+), 17 deletions(-)
diff --git a/arch/powerpc/include/uapi/asm/papr_scm_dsm.h b/arch/powerpc/include/uapi/asm/papr_scm_dsm.h
index c039a49b41b4..8265125304ca 100644
--- a/arch/powerpc/include/uapi/asm/papr_scm_dsm.h
+++ b/arch/powerpc/include/uapi/asm/papr_scm_dsm.h
@@ -132,6 +132,7 @@ struct nd_papr_scm_cmd_pkg {
*/
enum dsm_papr_scm {
DSM_PAPR_SCM_MIN = 0x10000,
+ DSM_PAPR_SCM_HEALTH,
DSM_PAPR_SCM_MAX,
};
@@ -158,4 +159,43 @@ static void *papr_scm_pcmd_to_payload(struct nd_papr_scm_cmd_pkg *pcmd)
else
return (void *)((__u8 *) pcmd + pcmd->payload_offset);
}
+
+/* Various scm-dimm health indicators */
+#define DSM_PAPR_SCM_DIMM_HEALTHY 0
+#define DSM_PAPR_SCM_DIMM_UNHEALTHY 1
+#define DSM_PAPR_SCM_DIMM_CRITICAL 2
+#define DSM_PAPR_SCM_DIMM_FATAL 3
+
+/*
+ * Struct exchanged between kernel & ndctl in for PAPR_DSM_PAPR_SMART_HEALTH
+ * Various bitflags indicate the health status of the dimm.
+ *
+ * dimm_unarmed : Dimm not armed. So contents wont persist.
+ * dimm_bad_shutdown : Previous shutdown did not persist contents.
+ * dimm_bad_restore : Contents from previous shutdown werent restored.
+ * dimm_scrubbed : Contents of the dimm have been scrubbed.
+ * dimm_locked : Contents of the dimm cant be modified until CEC reboot
+ * dimm_encrypted : Contents of dimm are encrypted.
+ * dimm_health : Dimm health indicator.
+ */
+struct nd_papr_scm_dimm_health_stat_v1 {
+ __u8 dimm_unarmed;
+ __u8 dimm_bad_shutdown;
+ __u8 dimm_bad_restore;
+ __u8 dimm_scrubbed;
+ __u8 dimm_locked;
+ __u8 dimm_encrypted;
+ __u16 dimm_health;
+};
+
+/*
+ * Typedef the current struct for dimm_health so that any application
+ * or kernel recompiled after introducing a new version automatically
+ * supports the new version.
+ */
+#define nd_papr_scm_dimm_health_stat nd_papr_scm_dimm_health_stat_v1
+
+/* Current version number for the dimm health struct */
+#define ND_PAPR_SCM_DIMM_HEALTH_VERSION 1
+
#endif /* _UAPI_ASM_POWERPC_PAPR_SCM_DSM_H_ */
diff --git a/arch/powerpc/platforms/pseries/papr_scm.c b/arch/powerpc/platforms/pseries/papr_scm.c
index 9a2614aaae88..16746d55f0b7 100644
--- a/arch/powerpc/platforms/pseries/papr_scm.c
+++ b/arch/powerpc/platforms/pseries/papr_scm.c
@@ -47,8 +47,7 @@ struct papr_scm_priv {
struct mutex dimm_mutex;
/* Health information for the dimm */
- __be64 health_bitmap;
- __be64 health_bitmap_valid;
+ struct nd_papr_scm_dimm_health_stat health;
};
static int drc_pmem_bind(struct papr_scm_priv *p)
@@ -158,6 +157,7 @@ static int drc_pmem_query_health(struct papr_scm_priv *p)
{
unsigned long ret[PLPAR_HCALL_BUFSIZE];
int64_t rc;
+ __be64 health;
rc = plpar_hcall(H_SCM_HEALTH, ret, p->drc_index);
if (rc != H_SUCCESS) {
@@ -172,13 +172,41 @@ static int drc_pmem_query_health(struct papr_scm_priv *p)
return rc;
/* Store the retrieved health information in dimm platform data */
- p->health_bitmap = ret[0];
- p->health_bitmap_valid = ret[1];
+ health = ret[0] & ret[1];
dev_dbg(&p->pdev->dev,
"Queried dimm health info. Bitmap:0x%016llx Mask:0x%016llx\n",
- be64_to_cpu(p->health_bitmap),
- be64_to_cpu(p->health_bitmap_valid));
+ be64_to_cpu(ret[0]),
+ be64_to_cpu(ret[1]));
+
+ memset(&p->health, 0, sizeof(p->health));
+
+ /* Check for various masks in bitmap and set the buffer */
+ if (health & PAPR_SCM_DIMM_UNARMED_MASK)
+ p->health.dimm_unarmed = true;
+
+ if (health & PAPR_SCM_DIMM_BAD_SHUTDOWN_MASK)
+ p->health.dimm_bad_shutdown = true;
+
+ if (health & PAPR_SCM_DIMM_BAD_RESTORE_MASK)
+ p->health.dimm_bad_restore = true;
+
+ if (health & PAPR_SCM_DIMM_ENCRYPTED)
+ p->health.dimm_encrypted = true;
+
+ if (health & PAPR_SCM_DIMM_SCRUBBED_AND_LOCKED) {
+ p->health.dimm_locked = true;
+ p->health.dimm_scrubbed = true;
+ }
+
+ if (health & PAPR_SCM_DIMM_HEALTH_UNHEALTHY)
+ p->health.dimm_health = DSM_PAPR_SCM_DIMM_UNHEALTHY;
+
+ if (health & PAPR_SCM_DIMM_HEALTH_CRITICAL)
+ p->health.dimm_health = DSM_PAPR_SCM_DIMM_CRITICAL;
+
+ if (health & PAPR_SCM_DIMM_HEALTH_FATAL)
+ p->health.dimm_health = DSM_PAPR_SCM_DIMM_FATAL;
mutex_unlock(&p->dimm_mutex);
return 0;
@@ -340,6 +368,51 @@ static int cmd_to_func(struct nvdimm *nvdimm, unsigned int cmd, void *buf,
return pkg->hdr.nd_command;
}
+/* Fetch the DIMM health info and populate it in provided package. */
+static int papr_scm_get_health(struct papr_scm_priv *p,
+ struct nd_papr_scm_cmd_pkg *pkg)
+{
+ int rc;
+ size_t copysize = sizeof(p->health);
+
+ rc = drc_pmem_query_health(p);
+ if (rc)
+ goto out;
+ /*
+ * If the requested payload version is greater than one we know
+ * about, return the payload version we know about and let
+ * caller/userspace handle.
+ */
+ if (pkg->payload_version > ND_PAPR_SCM_DIMM_HEALTH_VERSION)
+ pkg->payload_version = ND_PAPR_SCM_DIMM_HEALTH_VERSION;
+
+ if (pkg->hdr.nd_size_out < copysize) {
+ dev_dbg(&p->pdev->dev, "%s Payload not large enough\n",
+ __func__);
+ dev_dbg(&p->pdev->dev, "%s Expected %lu, available %u\n",
+ __func__, copysize, pkg->hdr.nd_size_out);
+ rc = -ENOSPC;
+ goto out;
+ }
+
+ dev_dbg(&p->pdev->dev, "%s Copying payload size=%lu version=0x%x\n",
+ __func__, copysize, pkg->payload_version);
+
+ /* Copy a subset of health struct based on copysize */
+ memcpy(papr_scm_pcmd_to_payload(pkg), &p->health, copysize);
+ pkg->hdr.nd_fw_size = copysize;
+
+out:
+ /*
+ * Put the error in out package and return success from function
+ * so that errors if any are propogated back to userspace.
+ */
+ pkg->cmd_status = rc;
+ dev_dbg(&p->pdev->dev, "%s completion code = %d\n", __func__, rc);
+
+ return 0;
+}
+
int papr_scm_ndctl(struct nvdimm_bus_descriptor *nd_desc, struct nvdimm *nvdimm,
unsigned int cmd, void *buf, unsigned int buf_len, int *cmd_rc)
{
@@ -385,6 +458,11 @@ int papr_scm_ndctl(struct nvdimm_bus_descriptor *nd_desc, struct nvdimm *nvdimm,
*cmd_rc = 0;
break;
+ case DSM_PAPR_SCM_HEALTH:
+ call_pkg = nd_to_papr_cmd_pkg(buf);
+ *cmd_rc = papr_scm_get_health(p, call_pkg);
+ break;
+
default:
dev_dbg(&p->pdev->dev, "Unknown command = %d\n", cmd_in);
*cmd_rc = -EINVAL;
@@ -419,7 +497,6 @@ static ssize_t papr_flags_show(struct device *dev,
{
struct nvdimm *dimm = to_nvdimm(dev);
struct papr_scm_priv *p = nvdimm_provider_data(dimm);
- __be64 health;
int rc;
rc = drc_pmem_query_health(p);
@@ -431,26 +508,26 @@ static ssize_t papr_flags_show(struct device *dev,
if (rc)
return rc;
- health = p->health_bitmap & p->health_bitmap_valid;
-
- /* Check for various masks in bitmap and set the buffer */
- if (health & PAPR_SCM_DIMM_UNARMED_MASK)
+ if (p->health.dimm_unarmed)
rc += sprintf(buf, "not_armed ");
- if (health & PAPR_SCM_DIMM_BAD_SHUTDOWN_MASK)
+ if (p->health.dimm_bad_shutdown)
rc += sprintf(buf + rc, "save_fail ");
- if (health & PAPR_SCM_DIMM_BAD_RESTORE_MASK)
+ if (p->health.dimm_bad_restore)
rc += sprintf(buf + rc, "restore_fail ");
- if (health & PAPR_SCM_DIMM_ENCRYPTED)
+ if (p->health.dimm_encrypted)
rc += sprintf(buf + rc, "encrypted ");
- if (health & PAPR_SCM_DIMM_SMART_EVENT_MASK)
+ if (p->health.dimm_health)
rc += sprintf(buf + rc, "smart_notify ");
- if (health & PAPR_SCM_DIMM_SCRUBBED_AND_LOCKED)
- rc += sprintf(buf + rc, "scrubbed locked ");
+ if (p->health.dimm_scrubbed)
+ rc += sprintf(buf + rc, "scrubbed ");
+
+ if (p->health.dimm_locked)
+ rc += sprintf(buf + rc, "locked ");
if (rc > 0)
rc += sprintf(buf + rc, "\n");
--
2.24.1
^ permalink raw reply related
* [PATCH v3 3/4] powerpc/papr_scm, uapi: Add support for handling PAPR DSM commands
From: Vaibhav Jain @ 2020-03-30 11:09 UTC (permalink / raw)
To: linuxppc-dev, linux-nvdimm
Cc: Alastair D'Silva, Aneesh Kumar K . V, Jeff Moyer,
Oliver O'Halloran, Vishal Verma, Vaibhav Jain,
Michael Ellerman, Dan Williams
In-Reply-To: <20200330110943.214097-1-vaibhav@linux.ibm.com>
Implement support for handling PAPR DSM commands in papr_scm
module. We advertise support for ND_CMD_CALL for the dimm command mask
and implement necessary scaffolding in the module to handle ND_CMD_CALL
ioctl and DSM commands that we receive.
The layout of the DSM commands as we expect from libnvdimm/libndctl is
described in newly introduced uapi header 'papr_scm_dsm.h' which
defines a new 'struct nd_papr_scm_cmd_pkg' header. This header is used
to communicate the DSM command via 'nd_pkg_papr_scm->nd_command' and
size of payload that need to be sent/received for servicing the DSM.
The PAPR DSM commands are assigned indexes started from 0x10000 to
prevent them from overlapping ND_CMD_* values and also makes handling
dimm commands in papr_scm_ndctl() easier via a simplified switch-case
block. For this a new function cmd_to_func() is implemented that reads
the args to papr_scm_ndctl() , performs sanity tests on them and
converts them to PAPR DSM commands which can then be handled via the
switch-case block.
Signed-off-by: Vaibhav Jain <vaibhav@linux.ibm.com>
---
Changelog:
v2..v3: Updated the nd_papr_scm_cmd_pkg to use __xx types as its
exported to the userspace [Aneesh]
v1..v2: New patch in the series.
---
arch/powerpc/include/uapi/asm/papr_scm_dsm.h | 161 +++++++++++++++++++
arch/powerpc/platforms/pseries/papr_scm.c | 87 +++++++++-
2 files changed, 241 insertions(+), 7 deletions(-)
create mode 100644 arch/powerpc/include/uapi/asm/papr_scm_dsm.h
diff --git a/arch/powerpc/include/uapi/asm/papr_scm_dsm.h b/arch/powerpc/include/uapi/asm/papr_scm_dsm.h
new file mode 100644
index 000000000000..c039a49b41b4
--- /dev/null
+++ b/arch/powerpc/include/uapi/asm/papr_scm_dsm.h
@@ -0,0 +1,161 @@
+/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
+/*
+ * PAPR SCM Device specific methods and struct for libndctl and ndctl
+ *
+ * (C) Copyright IBM 2020
+ *
+ * Author: Vaibhav Jain <vaibhav at linux.ibm.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2, or (at your option)
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef _UAPI_ASM_POWERPC_PAPR_SCM_DSM_H_
+#define _UAPI_ASM_POWERPC_PAPR_SCM_DSM_H_
+
+#include <linux/types.h>
+
+#ifdef __KERNEL__
+#include <linux/ndctl.h>
+#else
+#include <ndctl.h>
+#endif
+
+/*
+ * DSM Envelope:
+ *
+ * The ioctl ND_CMD_CALL transfers data between user-space and kernel via
+ * 'envelopes' which consists of a header and user-defined payload sections.
+ * The header is described by 'struct nd_papr_scm_cmd_pkg' which expects a
+ * payload following it and offset of which relative to the struct is provided
+ * by 'nd_papr_scm_cmd_pkg.payload_offset'. *
+ *
+ * +-------------+---------------------+---------------------------+
+ * | 64-Bytes | 8-Bytes | Max 184-Bytes |
+ * +-------------+---------------------+---------------------------+
+ * | nd_papr_scm_cmd_pkg | |
+ * |-------------+ | |
+ * | nd_cmd_pkg | | |
+ * +-------------+---------------------+---------------------------+
+ * | nd_family | | |
+ * | nd_size_out | cmd_status | |
+ * | nd_size_in | payload_version | PAYLOAD |
+ * | nd_command | payload_offset -----> |
+ * | nd_fw_size | | |
+ * +-------------+---------------------+---------------------------+
+ *
+ * DSM Header:
+ *
+ * The header is defined as 'struct nd_papr_scm_cmd_pkg' which embeds a
+ * 'struct nd_cmd_pkg' instance. The DSM command is assigned to member
+ * 'nd_cmd_pkg.nd_command'. Apart from size information of the envelop which is
+ * contained in 'struct nd_cmd_pkg', the header also has members following
+ * members:
+ *
+ * 'cmd_status' : (Out) Errors if any encountered while servicing DSM.
+ * 'payload_version' : (In/Out) Version number associated with the payload.
+ * 'payload_offset' : (In)Relative offset of payload from start of envelope.
+ *
+ * DSM Payload:
+ *
+ * The layout of the DSM Payload is defined by various structs shared between
+ * papr_scm and libndctl so that contents of payload can be interpreted. During
+ * servicing of a DSM the papr_scm module will read input args from the payload
+ * field by casting its contents to an appropriate struct pointer based on the
+ * DSM command. Similarly the output of servicing the DSM command will be copied
+ * to the payload field using the same struct.
+ *
+ * 'libnvdimm' enforces a hard limit of 256 bytes on the envelope size, which
+ * leaves around 184 bytes for the envelope payload (ignoring any padding that
+ * the compiler may silently introduce).
+ *
+ * Payload Version:
+ *
+ * A 'payload_version' field is present in DSM header that indicates a specific
+ * version of the structure present in DSM Payload for a given DSM command. This
+ * provides backward compatibility in case the DSM Payload structure evolves
+ * and different structures are supported by 'papr_scm' and 'libndctl'.
+ *
+ * When sending a DSM Payload to 'papr_scm', 'libndctl' should send the version
+ * of the payload struct it supports via 'payload_version' field. The 'papr_scm'
+ * module when servicing the DSM envelop checks the 'payload_version' and then
+ * uses 'payload struct version' == MIN('payload_version field',
+ * 'max payload-struct-version supported by papr_scm') to service the DSM. After
+ * servicing the DSM, 'papr_scm' put the negotiated version of payload struct in
+ * returned 'payload_version' field.
+ *
+ * Libndctl on receiving the envelop back from papr_scm again checks the
+ * 'payload_version' field and based on it use the appropriate version dsm
+ * struct to parse the results.
+ *
+ * Backward Compatibility:
+ *
+ * Above scheme of exchanging different versioned DSM struct between libndctl
+ * and papr_scm should provide backward compatibility until following two
+ * assumptions/conditions when defining new DSM structs hold:
+ *
+ * Let T(X) = { set of attributes in DSM struct 'T' versioned X }
+ *
+ * 1. T(X) is a proper subset of T(Y) if X > Y.
+ * i.e Each new version of DSM struct should retain existing struct
+ * attributes from previous version
+ *
+ * 2. If an entity (libndctl or papr_scm) supports a DSM struct T(X) then
+ * it should also support T(1), T(2)...T(X - 1).
+ * i.e When adding support for new version of a DSM struct, libndctl
+ * and papr_scm should retain support of the existing DSM struct
+ * version they support.
+ */
+
+/* Papr-scm-header + payload expected with ND_CMD_CALL ioctl from libnvdimm */
+struct nd_papr_scm_cmd_pkg {
+ struct nd_cmd_pkg hdr; /* Package header containing sub-cmd */
+ __s32 cmd_status; /* Out: Sub-cmd status returned back */
+ __u16 payload_offset; /* In: offset from start of struct */
+ __u16 payload_version; /* In/Out: version of the payload */
+ __u8 payload[]; /* In/Out: Sub-cmd data buffer */
+};
+
+/*
+ * Sub commands for ND_CMD_CALL. To prevent overlap from ND_CMD_*, values for
+ * these enums start at 0x10000. These values are then returned from
+ * cmd_to_func() making it easy to implement the switch-case block in
+ * papr_scm_ndctl(). These commands are sent to the kernel via
+ * 'nd_papr_scm_cmd_pkg.hdr.nd_command'
+ */
+enum dsm_papr_scm {
+ DSM_PAPR_SCM_MIN = 0x10000,
+ DSM_PAPR_SCM_MAX,
+};
+
+/* Helpers to evaluate the size of PAPR_SCM envelope */
+/* Calculate the papr_scm-header size */
+#define ND_PAPR_SCM_ENVELOPE_CONTENT_HDR_SIZE \
+ (sizeof(struct nd_papr_scm_cmd_pkg) - sizeof(struct nd_cmd_pkg))
+
+/* Given a type calculate envelope-content size (papr_scm-header + payload) */
+#define ND_PAPR_SCM_ENVELOPE_CONTENT_SIZE(_type_) \
+ (sizeof(_type_) + ND_PAPR_SCM_ENVELOPE_CONTENT_HDR_SIZE)
+
+/* Convert a libnvdimm nd_cmd_pkg to papr_scm specific pkg */
+static struct nd_papr_scm_cmd_pkg *nd_to_papr_cmd_pkg(struct nd_cmd_pkg *cmd)
+{
+ return (struct nd_papr_scm_cmd_pkg *) cmd;
+}
+
+/* Return the payload pointer for a given pcmd */
+static void *papr_scm_pcmd_to_payload(struct nd_papr_scm_cmd_pkg *pcmd)
+{
+ if (pcmd->hdr.nd_size_in == 0 && pcmd->hdr.nd_size_out == 0)
+ return NULL;
+ else
+ return (void *)((__u8 *) pcmd + pcmd->payload_offset);
+}
+#endif /* _UAPI_ASM_POWERPC_PAPR_SCM_DSM_H_ */
diff --git a/arch/powerpc/platforms/pseries/papr_scm.c b/arch/powerpc/platforms/pseries/papr_scm.c
index aaf2e4ab1f75..9a2614aaae88 100644
--- a/arch/powerpc/platforms/pseries/papr_scm.c
+++ b/arch/powerpc/platforms/pseries/papr_scm.c
@@ -15,13 +15,15 @@
#include <asm/plpar_wrappers.h>
#include <asm/papr_scm.h>
+#include <asm/papr_scm_dsm.h>
#define BIND_ANY_ADDR (~0ul)
#define PAPR_SCM_DIMM_CMD_MASK \
((1ul << ND_CMD_GET_CONFIG_SIZE) | \
(1ul << ND_CMD_GET_CONFIG_DATA) | \
- (1ul << ND_CMD_SET_CONFIG_DATA))
+ (1ul << ND_CMD_SET_CONFIG_DATA) | \
+ (1ul << ND_CMD_CALL))
struct papr_scm_priv {
struct platform_device *pdev;
@@ -283,19 +285,82 @@ static int papr_scm_meta_set(struct papr_scm_priv *p,
return 0;
}
+/*
+ * Validate the input to dimm-control function and return papr_scm specific
+ * commands. This does sanity validation to ND_CMD_CALL sub-command packages.
+ */
+static int cmd_to_func(struct nvdimm *nvdimm, unsigned int cmd, void *buf,
+ unsigned int buf_len)
+{
+ unsigned long cmd_mask = PAPR_SCM_DIMM_CMD_MASK;
+ struct nd_papr_scm_cmd_pkg *pkg = nd_to_papr_cmd_pkg(buf);
+
+ /* Only dimm-specific calls are supported atm */
+ if (!nvdimm)
+ return -EINVAL;
+
+ if (!test_bit(cmd, &cmd_mask)) {
+ pr_debug("%s: Unsupported cmd=%u\n", __func__, cmd);
+ return -EINVAL;
+ } else if (cmd != ND_CMD_CALL) {
+ return cmd;
+ }
+
+ /* cmd == ND_CMD_CALL so verify the envelop package */
+
+ if (!buf || buf_len < sizeof(struct nd_papr_scm_cmd_pkg)) {
+ pr_debug("%s: Invalid pkg size=%u\n", __func__, buf_len);
+ return -EINVAL;
+ }
+
+ if (pkg->hdr.nd_family != NVDIMM_FAMILY_PAPR_SCM) {
+ pr_debug("%s: Invalid pkg family=0x%llx\n", __func__,
+ pkg->hdr.nd_family);
+ return -EINVAL;
+
+ }
+
+ if (pkg->hdr.nd_command <= DSM_PAPR_SCM_MIN ||
+ pkg->hdr.nd_command >= DSM_PAPR_SCM_MAX) {
+
+ /* for unknown subcommands return ND_CMD_CALL */
+ pr_debug("%s: Unknown sub-command=0x%llx\n", __func__,
+ pkg->hdr.nd_command);
+ return ND_CMD_CALL;
+ }
+
+ /* We except a payload with all DSM commands */
+ if (papr_scm_pcmd_to_payload(pkg) == NULL) {
+ pr_debug("%s: Empty patload for sub-command=0x%llx\n", __func__,
+ pkg->hdr.nd_command);
+ return -EINVAL;
+ }
+
+ /* Return the DSM_PAPR_SCM_* command */
+ return pkg->hdr.nd_command;
+}
+
int papr_scm_ndctl(struct nvdimm_bus_descriptor *nd_desc, struct nvdimm *nvdimm,
unsigned int cmd, void *buf, unsigned int buf_len, int *cmd_rc)
{
struct nd_cmd_get_config_size *get_size_hdr;
struct papr_scm_priv *p;
+ struct nd_papr_scm_cmd_pkg *call_pkg = NULL;
+ int cmd_in, rc;
- /* Only dimm-specific calls are supported atm */
- if (!nvdimm)
- return -EINVAL;
+ /* Use a local variable in case cmd_rc pointer is NULL */
+ if (cmd_rc == NULL)
+ cmd_rc = &rc;
+
+ cmd_in = cmd_to_func(nvdimm, cmd, buf, buf_len);
+ if (cmd_in < 0) {
+ pr_debug("%s: Invalid cmd=%u. Err=%d\n", __func__, cmd, cmd_in);
+ return cmd_in;
+ }
p = nvdimm_provider_data(nvdimm);
- switch (cmd) {
+ switch (cmd_in) {
case ND_CMD_GET_CONFIG_SIZE:
get_size_hdr = buf;
@@ -313,13 +378,21 @@ int papr_scm_ndctl(struct nvdimm_bus_descriptor *nd_desc, struct nvdimm *nvdimm,
*cmd_rc = papr_scm_meta_set(p, buf);
break;
+ case ND_CMD_CALL:
+ /* This happens if subcommand package sanity fails */
+ call_pkg = nd_to_papr_cmd_pkg(buf);
+ call_pkg->cmd_status = -ENOENT;
+ *cmd_rc = 0;
+ break;
+
default:
- return -EINVAL;
+ dev_dbg(&p->pdev->dev, "Unknown command = %d\n", cmd_in);
+ *cmd_rc = -EINVAL;
}
dev_dbg(&p->pdev->dev, "returned with cmd_rc = %d\n", *cmd_rc);
- return 0;
+ return *cmd_rc;
}
static inline int papr_scm_node(int node)
--
2.24.1
^ permalink raw reply related
* [PATCH v3 2/4] ndctl/uapi: Introduce NVDIMM_FAMILY_PAPR_SCM as a new NVDIMM DSM family
From: Vaibhav Jain @ 2020-03-30 11:09 UTC (permalink / raw)
To: linuxppc-dev, linux-nvdimm
Cc: Alastair D'Silva, Aneesh Kumar K . V, Jeff Moyer,
Oliver O'Halloran, Vishal Verma, Vaibhav Jain,
Michael Ellerman, Dan Williams
In-Reply-To: <20200330110943.214097-1-vaibhav@linux.ibm.com>
Add PAPR-scm family of DSM command-set to the white list of NVDIMM
command sets.
Signed-off-by: Vaibhav Jain <vaibhav@linux.ibm.com>
---
Changelog:
v2..v3 : Updated the patch prefix to 'ndctl/uapi' [Aneesh]
v1..v2 : None
---
include/uapi/linux/ndctl.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/uapi/linux/ndctl.h b/include/uapi/linux/ndctl.h
index de5d90212409..99fb60600ef8 100644
--- a/include/uapi/linux/ndctl.h
+++ b/include/uapi/linux/ndctl.h
@@ -244,6 +244,7 @@ struct nd_cmd_pkg {
#define NVDIMM_FAMILY_HPE2 2
#define NVDIMM_FAMILY_MSFT 3
#define NVDIMM_FAMILY_HYPERV 4
+#define NVDIMM_FAMILY_PAPR_SCM 5
#define ND_IOCTL_CALL _IOWR(ND_IOCTL, ND_CMD_CALL,\
struct nd_cmd_pkg)
--
2.24.1
^ permalink raw reply related
* [PATCH v3 1/4] powerpc/papr_scm: Fetch nvdimm health information from PHYP
From: Vaibhav Jain @ 2020-03-30 11:09 UTC (permalink / raw)
To: linuxppc-dev, linux-nvdimm
Cc: Alastair D'Silva, Aneesh Kumar K . V, Jeff Moyer,
Oliver O'Halloran, Vishal Verma, Vaibhav Jain,
Michael Ellerman, Dan Williams
In-Reply-To: <20200330110943.214097-1-vaibhav@linux.ibm.com>
Implement support for fetching nvdimm health information via
H_SCM_HEALTH hcall as documented in Ref[1]. The hcall returns a pair
of 64-bit big-endian integers which are then stored in 'struct
papr_scm_priv' and subsequently partially exposed to user-space via
newly introduced dimm specific attribute 'papr_flags'. Also a new asm
header named 'papr-scm.h' is added that describes the interface
between PHYP and guest kernel.
Following flags are reported via 'papr_flags' sysfs attribute contents
of which are space separated string flags indicating various nvdimm
states:
* "not_armed" : Indicating that nvdimm contents wont survive a power
cycle.
* "save_fail" : Indicating that nvdimm contents couldn't be flushed
during last shutdown event.
* "restore_fail": Indicating that nvdimm contents couldn't be restored
during dimm initialization.
* "encrypted" : Dimm contents are encrypted.
* "smart_notify": There is health event for the nvdimm.
* "scrubbed" : Indicating that contents of the nvdimm have been
scrubbed.
* "locked" : Indicating that nvdimm contents cant be modified
until next power cycle.
[1]: commit 58b278f568f0 ("powerpc: Provide initial documentation for
PAPR hcalls")
Signed-off-by: Vaibhav Jain <vaibhav@linux.ibm.com>
---
Change-log:
v2..v3 : Removed PAPR_SCM_DIMM_HEALTH_NON_CRITICAL as a condition for
NVDIMM unarmed [Aneesh]
v1..v2 : New patch in the series.
---
arch/powerpc/include/asm/papr_scm.h | 48 ++++++++++
arch/powerpc/platforms/pseries/papr_scm.c | 105 +++++++++++++++++++++-
2 files changed, 151 insertions(+), 2 deletions(-)
create mode 100644 arch/powerpc/include/asm/papr_scm.h
diff --git a/arch/powerpc/include/asm/papr_scm.h b/arch/powerpc/include/asm/papr_scm.h
new file mode 100644
index 000000000000..868d3360f56a
--- /dev/null
+++ b/arch/powerpc/include/asm/papr_scm.h
@@ -0,0 +1,48 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/*
+ * Structures and defines needed to manage nvdimms for spapr guests.
+ */
+#ifndef _ASM_POWERPC_PAPR_SCM_H_
+#define _ASM_POWERPC_PAPR_SCM_H_
+
+#include <linux/types.h>
+#include <asm/bitsperlong.h>
+
+/* DIMM health bitmap bitmap indicators */
+/* SCM device is unable to persist memory contents */
+#define PAPR_SCM_DIMM_UNARMED PPC_BIT(0)
+/* SCM device failed to persist memory contents */
+#define PAPR_SCM_DIMM_SHUTDOWN_DIRTY PPC_BIT(1)
+/* SCM device contents are persisted from previous IPL */
+#define PAPR_SCM_DIMM_SHUTDOWN_CLEAN PPC_BIT(2)
+/* SCM device contents are not persisted from previous IPL */
+#define PAPR_SCM_DIMM_EMPTY PPC_BIT(3)
+/* SCM device memory life remaining is critically low */
+#define PAPR_SCM_DIMM_HEALTH_CRITICAL PPC_BIT(4)
+/* SCM device will be garded off next IPL due to failure */
+#define PAPR_SCM_DIMM_HEALTH_FATAL PPC_BIT(5)
+/* SCM contents cannot persist due to current platform health status */
+#define PAPR_SCM_DIMM_HEALTH_UNHEALTHY PPC_BIT(6)
+/* SCM device is unable to persist memory contents in certain conditions */
+#define PAPR_SCM_DIMM_HEALTH_NON_CRITICAL PPC_BIT(7)
+/* SCM device is encrypted */
+#define PAPR_SCM_DIMM_ENCRYPTED PPC_BIT(8)
+/* SCM device has been scrubbed and locked */
+#define PAPR_SCM_DIMM_SCRUBBED_AND_LOCKED PPC_BIT(9)
+
+/* Bits status indicators for health bitmap indicating unarmed dimm */
+#define PAPR_SCM_DIMM_UNARMED_MASK (PAPR_SCM_DIMM_UNARMED | \
+ PAPR_SCM_DIMM_HEALTH_UNHEALTHY)
+
+/* Bits status indicators for health bitmap indicating unflushed dimm */
+#define PAPR_SCM_DIMM_BAD_SHUTDOWN_MASK (PAPR_SCM_DIMM_SHUTDOWN_DIRTY)
+
+/* Bits status indicators for health bitmap indicating unrestored dimm */
+#define PAPR_SCM_DIMM_BAD_RESTORE_MASK (PAPR_SCM_DIMM_EMPTY)
+
+/* Bit status indicators for smart event notification */
+#define PAPR_SCM_DIMM_SMART_EVENT_MASK (PAPR_SCM_DIMM_HEALTH_CRITICAL | \
+ PAPR_SCM_DIMM_HEALTH_FATAL | \
+ PAPR_SCM_DIMM_HEALTH_UNHEALTHY)
+
+#endif
diff --git a/arch/powerpc/platforms/pseries/papr_scm.c b/arch/powerpc/platforms/pseries/papr_scm.c
index 0b4467e378e5..aaf2e4ab1f75 100644
--- a/arch/powerpc/platforms/pseries/papr_scm.c
+++ b/arch/powerpc/platforms/pseries/papr_scm.c
@@ -14,6 +14,7 @@
#include <linux/delay.h>
#include <asm/plpar_wrappers.h>
+#include <asm/papr_scm.h>
#define BIND_ANY_ADDR (~0ul)
@@ -39,6 +40,13 @@ struct papr_scm_priv {
struct resource res;
struct nd_region *region;
struct nd_interleave_set nd_set;
+
+ /* Protect dimm data from concurrent access */
+ struct mutex dimm_mutex;
+
+ /* Health information for the dimm */
+ __be64 health_bitmap;
+ __be64 health_bitmap_valid;
};
static int drc_pmem_bind(struct papr_scm_priv *p)
@@ -144,6 +152,35 @@ static int drc_pmem_query_n_bind(struct papr_scm_priv *p)
return drc_pmem_bind(p);
}
+static int drc_pmem_query_health(struct papr_scm_priv *p)
+{
+ unsigned long ret[PLPAR_HCALL_BUFSIZE];
+ int64_t rc;
+
+ rc = plpar_hcall(H_SCM_HEALTH, ret, p->drc_index);
+ if (rc != H_SUCCESS) {
+ dev_err(&p->pdev->dev,
+ "Failed to query health information, Err:%lld\n", rc);
+ return -ENXIO;
+ }
+
+ /* Protect modifications to papr_scm_priv with the mutex */
+ rc = mutex_lock_interruptible(&p->dimm_mutex);
+ if (rc)
+ return rc;
+
+ /* Store the retrieved health information in dimm platform data */
+ p->health_bitmap = ret[0];
+ p->health_bitmap_valid = ret[1];
+
+ dev_dbg(&p->pdev->dev,
+ "Queried dimm health info. Bitmap:0x%016llx Mask:0x%016llx\n",
+ be64_to_cpu(p->health_bitmap),
+ be64_to_cpu(p->health_bitmap_valid));
+
+ mutex_unlock(&p->dimm_mutex);
+ return 0;
+}
static int papr_scm_meta_get(struct papr_scm_priv *p,
struct nd_cmd_get_config_data_hdr *hdr)
@@ -304,6 +341,67 @@ static inline int papr_scm_node(int node)
return min_node;
}
+static ssize_t papr_flags_show(struct device *dev,
+ struct device_attribute *attr, char *buf)
+{
+ struct nvdimm *dimm = to_nvdimm(dev);
+ struct papr_scm_priv *p = nvdimm_provider_data(dimm);
+ __be64 health;
+ int rc;
+
+ rc = drc_pmem_query_health(p);
+ if (rc)
+ return rc;
+
+ /* Protect against modifications to papr_scm_priv with the mutex */
+ rc = mutex_lock_interruptible(&p->dimm_mutex);
+ if (rc)
+ return rc;
+
+ health = p->health_bitmap & p->health_bitmap_valid;
+
+ /* Check for various masks in bitmap and set the buffer */
+ if (health & PAPR_SCM_DIMM_UNARMED_MASK)
+ rc += sprintf(buf, "not_armed ");
+
+ if (health & PAPR_SCM_DIMM_BAD_SHUTDOWN_MASK)
+ rc += sprintf(buf + rc, "save_fail ");
+
+ if (health & PAPR_SCM_DIMM_BAD_RESTORE_MASK)
+ rc += sprintf(buf + rc, "restore_fail ");
+
+ if (health & PAPR_SCM_DIMM_ENCRYPTED)
+ rc += sprintf(buf + rc, "encrypted ");
+
+ if (health & PAPR_SCM_DIMM_SMART_EVENT_MASK)
+ rc += sprintf(buf + rc, "smart_notify ");
+
+ if (health & PAPR_SCM_DIMM_SCRUBBED_AND_LOCKED)
+ rc += sprintf(buf + rc, "scrubbed locked ");
+
+ if (rc > 0)
+ rc += sprintf(buf + rc, "\n");
+
+ mutex_unlock(&p->dimm_mutex);
+ return rc;
+}
+DEVICE_ATTR_RO(papr_flags);
+
+/* papr_scm specific dimm attributes */
+static struct attribute *papr_scm_nd_attributes[] = {
+ &dev_attr_papr_flags.attr,
+ NULL,
+};
+
+static struct attribute_group papr_scm_nd_attribute_group = {
+ .attrs = papr_scm_nd_attributes,
+};
+
+static const struct attribute_group *papr_scm_dimm_attr_groups[] = {
+ &papr_scm_nd_attribute_group,
+ NULL,
+};
+
static int papr_scm_nvdimm_init(struct papr_scm_priv *p)
{
struct device *dev = &p->pdev->dev;
@@ -330,8 +428,8 @@ static int papr_scm_nvdimm_init(struct papr_scm_priv *p)
dimm_flags = 0;
set_bit(NDD_ALIASING, &dimm_flags);
- p->nvdimm = nvdimm_create(p->bus, p, NULL, dimm_flags,
- PAPR_SCM_DIMM_CMD_MASK, 0, NULL);
+ p->nvdimm = nvdimm_create(p->bus, p, papr_scm_dimm_attr_groups,
+ dimm_flags, PAPR_SCM_DIMM_CMD_MASK, 0, NULL);
if (!p->nvdimm) {
dev_err(dev, "Error creating DIMM object for %pOF\n", p->dn);
goto err;
@@ -415,6 +513,9 @@ static int papr_scm_probe(struct platform_device *pdev)
if (!p)
return -ENOMEM;
+ /* Initialize the dimm mutex */
+ mutex_init(&p->dimm_mutex);
+
/* optional DT properties */
of_property_read_u32(dn, "ibm,metadata-size", &metadata_size);
--
2.24.1
^ permalink raw reply related
* [PATCH v3 0/4] powerpc/papr_scm: Add support for reporting nvdimm health
From: Vaibhav Jain @ 2020-03-30 11:09 UTC (permalink / raw)
To: linuxppc-dev, linux-nvdimm
Cc: Alastair D'Silva, Aneesh Kumar K . V, Jeff Moyer,
Oliver O'Halloran, Vishal Verma, Vaibhav Jain,
Michael Ellerman, Dan Williams
The PAPR standard[1][3] provides mechanisms to query the health and
performance stats of an NVDIMM via various hcalls as described in Ref[2].
Until now these stats were never available nor exposed to the user-space
tools like 'ndctl'. This is partly due to PAPR platform not having support
for ACPI and NFIT. Hence 'ndctl' is unable to query and report the dimm
health status and a user had no way to determine the current health status
of a NDVIMM.
To overcome this limitation, this patch-set updates papr_scm kernel module
to query and fetch nvdimm health stats using hcalls described in Ref[2].
This health and performance stats are then exposed to userspace via syfs
and Dimm-Specific-Methods(DSM) issued by libndctl.
These changes coupled with proposed ndtcl changes located at Ref[4] should
provide a way for the user to retrieve NVDIMM health status using ndtcl.
Below is a sample output using proposed kernel + ndctl for PAPR NVDIMM in
a emulation environment:
# ndctl list -DH
[
{
"dev":"nmem0",
"health":{
"health_state":"fatal",
"shutdown_state":"dirty"
}
}
]
Dimm health report output on a pseries guest lpar with vPMEM or HMS
based nvdimms that are in perfectly healthy conditions:
# ndctl list -d nmem0 -H
[
{
"dev":"nmem0",
"health":{
"health_state":"ok",
"shutdown_state":"clean"
}
}
]
PAPR Dimm-Specific-Methods(DSM)
================================
As the name suggests DSMs are used by vendor specific code in libndctl to
execute certain operations or fetch certain information for NVDIMMS. DSMs
can be sent to papr_scm module via libndctl (userspace) and libnvdimm
(kernel) using the ND_CMD_CALL ioctl which can be handled in the dimm
control function papr_scm_ndctl(). For PAPR this patchset proposes a single
DSM to retrieve DIMM health, defined in the newly introduced uapi header
named 'papr_scm_dsm.h'. Support for more DSMs will be added in future.
Structure of the patch-set
==========================
The patchset starts with implementing support for fetching nvdimm health
information from PHYP and partially exposing it to user-space via nvdimm
flags.
Second & Third patches deal with implementing support for servicing DSM
commands papr_scm.
Finally the Fourth patch implements support for servicing DSM
'DSM_PAPR_SCM_HEALTH' that returns the nvdimm health information to
libndctl.
Change-log
==========
v2..v3:
* Updated the papr_scm_dsm.h header to be more confimant general kernel
guidelines for UAPI headers. [Aneesh]
* Changed the definition of macro PAPR_SCM_DIMM_UNARMED_MASK to not
include case when the nvdimm is unarmed because its a vPMEM
nvdimm. [Aneesh]
v1..v2:
* Restructured the patch-set based on review comments on V1 patch-set to
simplify the patch review. Multiple small patches have been combined into
single patches to reduce cross referencing that was needed in earlier
patch-set. Hence most of the patches in this patch-set as now new. [Aneesh]
* Removed the initial work done for fetch nvdimm performance statistics.
These changes will be re-proposed in a separate patch-set. [Aneesh]
* Simplified handling of versioning of 'struct
nd_papr_scm_dimm_health_stat_v1' as only one version of the structure is
currently in existence.
References:
[1]: "Power Architecture Platform Reference"
https://en.wikipedia.org/wiki/Power_Architecture_Platform_Reference
[2]: commit 58b278f568f0
("powerpc: Provide initial documentation for PAPR hcalls")
[3]: "Linux on Power Architecture Platform Reference"
https://members.openpowerfoundation.org/document/dl/469
[4]: https://patchwork.kernel.org/project/linux-nvdimm/list/?series=244625
Vaibhav Jain (4):
powerpc/papr_scm: Fetch nvdimm health information from PHYP
ndctl/uapi: Introduce NVDIMM_FAMILY_PAPR_SCM as a new NVDIMM DSM
family
powerpc/papr_scm,uapi: Add support for handling PAPR DSM commands
powerpc/papr_scm: Implement support for DSM_PAPR_SCM_HEALTH
arch/powerpc/include/asm/papr_scm.h | 48 ++++
arch/powerpc/include/uapi/asm/papr_scm_dsm.h | 201 ++++++++++++++
arch/powerpc/platforms/pseries/papr_scm.c | 269 ++++++++++++++++++-
include/uapi/linux/ndctl.h | 1 +
4 files changed, 510 insertions(+), 9 deletions(-)
create mode 100644 arch/powerpc/include/asm/papr_scm.h
create mode 100644 arch/powerpc/include/uapi/asm/papr_scm_dsm.h
--
2.24.1
^ permalink raw reply
* Re: [PATCH 1/1] ppc/crash: Skip spinlocks during crash
From: Peter Zijlstra @ 2020-03-30 11:02 UTC (permalink / raw)
To: Christophe Leroy
Cc: Enrico Weigelt, linuxppc-dev, linux-kernel, Ingo Molnar,
Paul Mackerras, Leonardo Bras, Thomas Gleixner, Will Deacon,
Allison Randal
In-Reply-To: <af505ef0-e0df-e0aa-bb83-3ed99841f151@c-s.fr>
On Fri, Mar 27, 2020 at 07:50:20AM +0100, Christophe Leroy wrote:
>
>
> Le 26/03/2020 à 23:28, Leonardo Bras a écrit :
> > During a crash, there is chance that the cpus that handle the NMI IPI
> > are holding a spin_lock. If this spin_lock is needed by crashing_cpu it
> > will cause a deadlock. (rtas_lock and printk logbuf_log as of today)
> >
> > This is a problem if the system has kdump set up, given if it crashes
> > for any reason kdump may not be saved for crash analysis.
> >
> > Skip spinlocks after NMI IPI is sent to all other cpus.
> >
> > Signed-off-by: Leonardo Bras <leonardo@linux.ibm.com>
> > ---
> > arch/powerpc/include/asm/spinlock.h | 6 ++++++
> > arch/powerpc/kexec/crash.c | 3 +++
> > 2 files changed, 9 insertions(+)
> >
> > diff --git a/arch/powerpc/include/asm/spinlock.h b/arch/powerpc/include/asm/spinlock.h
> > index 860228e917dc..a6381d110795 100644
> > --- a/arch/powerpc/include/asm/spinlock.h
> > +++ b/arch/powerpc/include/asm/spinlock.h
> > @@ -111,6 +111,8 @@ static inline void splpar_spin_yield(arch_spinlock_t *lock) {};
> > static inline void splpar_rw_yield(arch_rwlock_t *lock) {};
> > #endif
> > +extern bool crash_skip_spinlock __read_mostly;
> > +
> > static inline bool is_shared_processor(void)
> > {
> > #ifdef CONFIG_PPC_SPLPAR
> > @@ -142,6 +144,8 @@ static inline void arch_spin_lock(arch_spinlock_t *lock)
> > if (likely(__arch_spin_trylock(lock) == 0))
> > break;
> > do {
> > + if (unlikely(crash_skip_spinlock))
> > + return;
>
> You are adding a test that reads a global var in the middle of a so hot path
> ? That must kill performance. Can we do different ?
This; adding code to a super hot patch like this for an exceptional case
like the crash handling seems like a very very bad trade to me.
One possible solution is to simply write 0 to the affected spinlocks
after sending the NMI IPI thing, no?
^ permalink raw reply
* Re: [PATCH v3 0/5] mm: Enable CONFIG_NODES_SPAN_OTHER_NODES by default for NUMA
From: Baoquan He @ 2020-03-30 10:43 UTC (permalink / raw)
To: Mike Rapoport
Cc: mmorana, Catalin Marinas, Heiko Carstens, Michal Hocko,
open list:MEMORY MANAGEMENT, Paul Mackerras, H. Peter Anvin,
sparclinux, Alexander Duyck, linux-s390, x86,
Christian Borntraeger, Ingo Molnar, Hoan Tran, Pavel Tatashin,
lho, Vasily Gorbik, Vlastimil Babka, Will Deacon, Borislav Petkov,
Thomas Gleixner, linux-arm-kernel, Oscar Salvador, linux-kernel,
Andrew Morton, linuxppc-dev, David S. Miller
In-Reply-To: <20200330102619.GC30942@linux.ibm.com>
On 03/30/20 at 01:26pm, Mike Rapoport wrote:
> On Mon, Mar 30, 2020 at 11:58:43AM +0200, Michal Hocko wrote:
> > On Mon 30-03-20 12:21:27, Mike Rapoport wrote:
> > > On Mon, Mar 30, 2020 at 09:42:46AM +0200, Michal Hocko wrote:
> > > > On Sat 28-03-20 11:31:17, Hoan Tran wrote:
> > > > > In NUMA layout which nodes have memory ranges that span across other nodes,
> > > > > the mm driver can detect the memory node id incorrectly.
> > > > >
> > > > > For example, with layout below
> > > > > Node 0 address: 0000 xxxx 0000 xxxx
> > > > > Node 1 address: xxxx 1111 xxxx 1111
> > > > >
> > > > > Note:
> > > > > - Memory from low to high
> > > > > - 0/1: Node id
> > > > > - x: Invalid memory of a node
> > > > >
> > > > > When mm probes the memory map, without CONFIG_NODES_SPAN_OTHER_NODES
> > > > > config, mm only checks the memory validity but not the node id.
> > > > > Because of that, Node 1 also detects the memory from node 0 as below
> > > > > when it scans from the start address to the end address of node 1.
> > > > >
> > > > > Node 0 address: 0000 xxxx xxxx xxxx
> > > > > Node 1 address: xxxx 1111 1111 1111
> > > > >
> > > > > This layout could occur on any architecture. Most of them enables
> > > > > this config by default with CONFIG_NUMA. This patch, by default, enables
> > > > > CONFIG_NODES_SPAN_OTHER_NODES or uses early_pfn_in_nid() for NUMA.
> > > >
> > > > I am not opposed to this at all. It reduces the config space and that is
> > > > a good thing on its own. The history has shown that meory layout might
> > > > be really wild wrt NUMA. The config is only used for early_pfn_in_nid
> > > > which is clearly an overkill.
> > > >
> > > > Your description doesn't really explain why this is safe though. The
> > > > history of this config is somehow messy, though. Mike has tried
> > > > to remove it a94b3ab7eab4 ("[PATCH] mm: remove arch independent
> > > > NODES_SPAN_OTHER_NODES") just to be reintroduced by 7516795739bd
> > > > ("[PATCH] Reintroduce NODES_SPAN_OTHER_NODES for powerpc") without any
> > > > reasoning what so ever. This doesn't make it really easy see whether
> > > > reasons for reintroduction are still there. Maybe there are some subtle
> > > > dependencies. I do not see any TBH but that might be burried deep in an
> > > > arch specific code.
> > >
> > > Well, back then early_pfn_in_nid() was arch-dependant, today everyone
> > > except ia64 rely on HAVE_MEMBLOCK_NODE_MAP.
> >
> > What would it take to make ia64 use HAVE_MEMBLOCK_NODE_MAP? I would
> > really love to see that thing go away. It is causing problems when
> > people try to use memblock api.
>
> Sorry, my bad, ia64 does not have NODES_SPAN_OTHER_NODES, but it does have
> HAVE_MEMBLOCK_NODE_MAP.
>
> I remember I've tried killing HAVE_MEMBLOCK_NODE_MAP, but I've run into
> some problems and then I've got distracted. I too would like to have
> HAVE_MEMBLOCK_NODE_MAP go away, maybe I'll take another look at it.
>
> > > So, if the memblock node map
> > > is correct, that using CONFIG_NUMA instead of CONFIG_NODES_SPAN_OTHER_NODES
> > > would only mean that early_pfn_in_nid() will cost several cycles more on
> > > architectures that didn't select CONFIG_NODES_SPAN_OTHER_NODES (i.e. arm64
> > > and sh).
> >
> > Do we have any idea on how much of an overhead that is? Because this is
> > per each pfn so it can accumulate a lot!
>
> It's O(log(N)) where N is the amount of the memory banks (ie. memblock.memory.cnt)
This is for the Node id searching. But early_pfn_in_nid() is calling for
each pfn, this is the big one, I think. Otherwise, it may be optimized
as no-op.
>
> > > Agian, ia64 is an exception here.
> >
> > Thanks for the clarification!
> > --
> > Michal Hocko
> > SUSE Labs
>
> --
> Sincerely yours,
> Mike.
>
>
^ permalink raw reply
* Re: [PATCH v3 0/5] mm: Enable CONFIG_NODES_SPAN_OTHER_NODES by default for NUMA
From: Mike Rapoport @ 2020-03-30 10:26 UTC (permalink / raw)
To: Michal Hocko
Cc: mmorana, Catalin Marinas, Heiko Carstens,
open list:MEMORY MANAGEMENT, Paul Mackerras, H. Peter Anvin,
sparclinux, Alexander Duyck, linux-s390, x86,
Christian Borntraeger, Ingo Molnar, Hoan Tran, Pavel Tatashin,
lho, Vasily Gorbik, Vlastimil Babka, Will Deacon, Borislav Petkov,
Thomas Gleixner, linux-arm-kernel, Oscar Salvador, linux-kernel,
Andrew Morton, linuxppc-dev, David S. Miller
In-Reply-To: <20200330095843.GF14243@dhcp22.suse.cz>
On Mon, Mar 30, 2020 at 11:58:43AM +0200, Michal Hocko wrote:
> On Mon 30-03-20 12:21:27, Mike Rapoport wrote:
> > On Mon, Mar 30, 2020 at 09:42:46AM +0200, Michal Hocko wrote:
> > > On Sat 28-03-20 11:31:17, Hoan Tran wrote:
> > > > In NUMA layout which nodes have memory ranges that span across other nodes,
> > > > the mm driver can detect the memory node id incorrectly.
> > > >
> > > > For example, with layout below
> > > > Node 0 address: 0000 xxxx 0000 xxxx
> > > > Node 1 address: xxxx 1111 xxxx 1111
> > > >
> > > > Note:
> > > > - Memory from low to high
> > > > - 0/1: Node id
> > > > - x: Invalid memory of a node
> > > >
> > > > When mm probes the memory map, without CONFIG_NODES_SPAN_OTHER_NODES
> > > > config, mm only checks the memory validity but not the node id.
> > > > Because of that, Node 1 also detects the memory from node 0 as below
> > > > when it scans from the start address to the end address of node 1.
> > > >
> > > > Node 0 address: 0000 xxxx xxxx xxxx
> > > > Node 1 address: xxxx 1111 1111 1111
> > > >
> > > > This layout could occur on any architecture. Most of them enables
> > > > this config by default with CONFIG_NUMA. This patch, by default, enables
> > > > CONFIG_NODES_SPAN_OTHER_NODES or uses early_pfn_in_nid() for NUMA.
> > >
> > > I am not opposed to this at all. It reduces the config space and that is
> > > a good thing on its own. The history has shown that meory layout might
> > > be really wild wrt NUMA. The config is only used for early_pfn_in_nid
> > > which is clearly an overkill.
> > >
> > > Your description doesn't really explain why this is safe though. The
> > > history of this config is somehow messy, though. Mike has tried
> > > to remove it a94b3ab7eab4 ("[PATCH] mm: remove arch independent
> > > NODES_SPAN_OTHER_NODES") just to be reintroduced by 7516795739bd
> > > ("[PATCH] Reintroduce NODES_SPAN_OTHER_NODES for powerpc") without any
> > > reasoning what so ever. This doesn't make it really easy see whether
> > > reasons for reintroduction are still there. Maybe there are some subtle
> > > dependencies. I do not see any TBH but that might be burried deep in an
> > > arch specific code.
> >
> > Well, back then early_pfn_in_nid() was arch-dependant, today everyone
> > except ia64 rely on HAVE_MEMBLOCK_NODE_MAP.
>
> What would it take to make ia64 use HAVE_MEMBLOCK_NODE_MAP? I would
> really love to see that thing go away. It is causing problems when
> people try to use memblock api.
Sorry, my bad, ia64 does not have NODES_SPAN_OTHER_NODES, but it does have
HAVE_MEMBLOCK_NODE_MAP.
I remember I've tried killing HAVE_MEMBLOCK_NODE_MAP, but I've run into
some problems and then I've got distracted. I too would like to have
HAVE_MEMBLOCK_NODE_MAP go away, maybe I'll take another look at it.
> > So, if the memblock node map
> > is correct, that using CONFIG_NUMA instead of CONFIG_NODES_SPAN_OTHER_NODES
> > would only mean that early_pfn_in_nid() will cost several cycles more on
> > architectures that didn't select CONFIG_NODES_SPAN_OTHER_NODES (i.e. arm64
> > and sh).
>
> Do we have any idea on how much of an overhead that is? Because this is
> per each pfn so it can accumulate a lot!
It's O(log(N)) where N is the amount of the memory banks (ie. memblock.memory.cnt)
> > Agian, ia64 is an exception here.
>
> Thanks for the clarification!
> --
> Michal Hocko
> SUSE Labs
--
Sincerely yours,
Mike.
^ permalink raw reply
* Re: [PATCH v3 0/5] mm: Enable CONFIG_NODES_SPAN_OTHER_NODES by default for NUMA
From: Michal Hocko @ 2020-03-30 9:58 UTC (permalink / raw)
To: Mike Rapoport
Cc: mmorana, Catalin Marinas, Heiko Carstens,
open list:MEMORY MANAGEMENT, Paul Mackerras, H. Peter Anvin,
sparclinux, Alexander Duyck, linux-s390, x86,
Christian Borntraeger, Ingo Molnar, Hoan Tran, Pavel Tatashin,
lho, Vasily Gorbik, Vlastimil Babka, Will Deacon, Borislav Petkov,
Thomas Gleixner, linux-arm-kernel, Oscar Salvador, linux-kernel,
Andrew Morton, linuxppc-dev, David S. Miller
In-Reply-To: <20200330092127.GB30942@linux.ibm.com>
On Mon 30-03-20 12:21:27, Mike Rapoport wrote:
> On Mon, Mar 30, 2020 at 09:42:46AM +0200, Michal Hocko wrote:
> > On Sat 28-03-20 11:31:17, Hoan Tran wrote:
> > > In NUMA layout which nodes have memory ranges that span across other nodes,
> > > the mm driver can detect the memory node id incorrectly.
> > >
> > > For example, with layout below
> > > Node 0 address: 0000 xxxx 0000 xxxx
> > > Node 1 address: xxxx 1111 xxxx 1111
> > >
> > > Note:
> > > - Memory from low to high
> > > - 0/1: Node id
> > > - x: Invalid memory of a node
> > >
> > > When mm probes the memory map, without CONFIG_NODES_SPAN_OTHER_NODES
> > > config, mm only checks the memory validity but not the node id.
> > > Because of that, Node 1 also detects the memory from node 0 as below
> > > when it scans from the start address to the end address of node 1.
> > >
> > > Node 0 address: 0000 xxxx xxxx xxxx
> > > Node 1 address: xxxx 1111 1111 1111
> > >
> > > This layout could occur on any architecture. Most of them enables
> > > this config by default with CONFIG_NUMA. This patch, by default, enables
> > > CONFIG_NODES_SPAN_OTHER_NODES or uses early_pfn_in_nid() for NUMA.
> >
> > I am not opposed to this at all. It reduces the config space and that is
> > a good thing on its own. The history has shown that meory layout might
> > be really wild wrt NUMA. The config is only used for early_pfn_in_nid
> > which is clearly an overkill.
> >
> > Your description doesn't really explain why this is safe though. The
> > history of this config is somehow messy, though. Mike has tried
> > to remove it a94b3ab7eab4 ("[PATCH] mm: remove arch independent
> > NODES_SPAN_OTHER_NODES") just to be reintroduced by 7516795739bd
> > ("[PATCH] Reintroduce NODES_SPAN_OTHER_NODES for powerpc") without any
> > reasoning what so ever. This doesn't make it really easy see whether
> > reasons for reintroduction are still there. Maybe there are some subtle
> > dependencies. I do not see any TBH but that might be burried deep in an
> > arch specific code.
>
> Well, back then early_pfn_in_nid() was arch-dependant, today everyone
> except ia64 rely on HAVE_MEMBLOCK_NODE_MAP.
What would it take to make ia64 use HAVE_MEMBLOCK_NODE_MAP? I would
really love to see that thing go away. It is causing problems when
people try to use memblock api.
> So, if the memblock node map
> is correct, that using CONFIG_NUMA instead of CONFIG_NODES_SPAN_OTHER_NODES
> would only mean that early_pfn_in_nid() will cost several cycles more on
> architectures that didn't select CONFIG_NODES_SPAN_OTHER_NODES (i.e. arm64
> and sh).
Do we have any idea on how much of an overhead that is? Because this is
per each pfn so it can accumulate a lot!
> Agian, ia64 is an exception here.
Thanks for the clarification!
--
Michal Hocko
SUSE Labs
^ permalink raw reply
* [mm/debug] f675f2f91d: WARNING:at_mm/debug_vm_pgtable.c:#debug_vm_pgtable
From: kernel test robot @ 2020-03-30 8:56 UTC (permalink / raw)
To: Anshuman Khandual
Cc: Heiko Carstens, linux-mm, Paul Mackerras, H. Peter Anvin,
linux-riscv, Will Deacon, linux-arch, linux-s390, x86,
Mike Rapoport, Christian Borntraeger, Ingo Molnar,
Catalin Marinas, linux-snps-arc, Vasily Gorbik, Anshuman Khandual,
lkp, Borislav Petkov, Paul Walmsley, Kirill A . Shutemov,
Thomas Gleixner, linux-arm-kernel, Vineet Gupta, linux-kernel,
Palmer Dabbelt, Andrew Morton, linuxppc-dev
In-Reply-To: <1585027375-9997-2-git-send-email-anshuman.khandual@arm.com>
[-- Attachment #1: Type: text/plain, Size: 4557 bytes --]
FYI, we noticed the following commit (built with gcc-7):
commit: f675f2f91d0457e2b430936f0d756457fdcad1ca ("[PATCH V2 1/3] mm/debug: Add tests validating arch page table helpers for core features")
url: https://github.com/0day-ci/linux/commits/Anshuman-Khandual/mm-debug-Add-more-arch-page-table-helper-tests/20200324-161233
in testcase: trinity
with following parameters:
runtime: 300s
test-description: Trinity is a linux system call fuzz tester.
test-url: http://codemonkey.org.uk/projects/trinity/
on test machine: qemu-system-x86_64 -enable-kvm -cpu SandyBridge -smp 2 -m 8G
caused below changes (please refer to attached dmesg/kmsg for entire log/backtrace):
+-------------------------------------------------------------------------------+---------------+------------+
| | next-20200323 | f675f2f91d |
+-------------------------------------------------------------------------------+---------------+------------+
| boot_successes | 1 | 0 |
| boot_failures | 3 | 4 |
| WARNING:suspicious_RCU_usage | 3 | 4 |
| drivers/char/ipmi/ipmi_msghandler.c:#RCU-list_traversed_in_non-reader_section | 3 | 4 |
| net/ipv4/fib_trie.c:#RCU-list_traversed_in_non-reader_section | 3 | 2 |
| WARNING:at_mm/debug_vm_pgtable.c:#debug_vm_pgtable | 0 | 4 |
| RIP:debug_vm_pgtable | 0 | 4 |
| calltrace:hrtimers_dead_cpu | 0 | 1 |
| calltrace:irq_exit | 0 | 3 |
+-------------------------------------------------------------------------------+---------------+------------+
If you fix the issue, kindly add following tag
Reported-by: kernel test robot <rong.a.chen@intel.com>
[ 283.486118] WARNING: CPU: 1 PID: 1 at mm/debug_vm_pgtable.c:371 debug_vm_pgtable+0x4dc/0x7e3
[ 283.487342] Modules linked in:
[ 283.487752] CPU: 1 PID: 1 Comm: swapper/0 Not tainted 5.6.0-rc7-next-20200323-00001-gf675f2f91d045 #1
[ 283.488817] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.12.0-1 04/01/2014
[ 283.489794] RIP: 0010:debug_vm_pgtable+0x4dc/0x7e3
[ 283.490361] Code: b5 fd 48 8b 7d d0 be 20 01 00 00 e8 3d 9f b5 fd 48 8b 75 c8 48 8b 7d d0 e8 30 9f b5 fd 48 8b 75 c8 48 8b 7d d0 e8 23 9f b5 fd <0f> 0b 48 8b 75 c8 48 8b 7d d0 e8 14 9f b5 fd 0f 0b 48 8b 75 c8 48
[ 283.492577] RSP: 0000:ffff888236493ed8 EFLAGS: 00010202
[ 283.493235] RAX: 00000001e1d31025 RBX: ffff88823e7f6cd8 RCX: ffffffffffffffff
[ 283.494135] RDX: 0000000000000000 RSI: 0000000000000025 RDI: 00000001e1d31000
[ 283.495002] RBP: ffff888236493f38 R08: 0000000000000001 R09: 0000000000000001
[ 283.495858] R10: 0000000000000001 R11: 0000000000000000 R12: ffff88821d907000
[ 283.496748] R13: ffff88821d8fc498 R14: ffff88821d8fda90 R15: ffff88821d8fc000
[ 283.497614] FS: 0000000000000000(0000) GS:ffff888237800000(0000) knlGS:0000000000000000
[ 283.498585] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[ 283.499290] CR2: 00000000ffffffff CR3: 00000001e1222000 CR4: 00000000000406e0
[ 283.500165] Call Trace:
[ 283.500499] ? rest_init+0x240/0x240
[ 283.500985] kernel_init+0x13/0x110
[ 283.501433] ret_from_fork+0x24/0x30
[ 283.501907] irq event stamp: 4760776
[ 283.502366] hardirqs last enabled at (4760775): [<ffffffffb481e34d>] _raw_spin_unlock_irqrestore+0x4d/0x60
[ 283.511686] hardirqs last disabled at (4760776): [<ffffffffb3c038d4>] trace_hardirqs_off_thunk+0x1a/0x1c
[ 283.512914] softirqs last enabled at (4760748): [<ffffffffb4c002cf>] __do_softirq+0x2cf/0x4ad
[ 283.514086] softirqs last disabled at (4760741): [<ffffffffb3cf4f4d>] irq_exit+0xcd/0xe0
[ 283.515114] ---[ end trace 7e3383c4261f8faa ]---
To reproduce:
# build kernel
cd linux
cp config-5.6.0-rc7-next-20200323-00001-gf675f2f91d045 .config
make HOSTCC=gcc-7 CC=gcc-7 ARCH=x86_64 olddefconfig prepare modules_prepare bzImage
git clone https://github.com/intel/lkp-tests.git
cd lkp-tests
bin/lkp qemu -k <bzImage> job-script # job-script is attached in this email
Thanks,
Rong Chen
[-- Attachment #2: config-5.6.0-rc7-next-20200323-00001-gf675f2f91d045 --]
[-- Type: text/plain, Size: 133330 bytes --]
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86_64 5.6.0-rc7 Kernel Configuration
#
#
# Compiler: gcc-7 (Debian 7.5.0-5) 7.5.0
#
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=70500
CONFIG_CLANG_VERSION=0
CONFIG_CC_CAN_LINK=y
CONFIG_CC_HAS_ASM_GOTO=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_CC_HAS_WARN_MAYBE_UNINITIALIZED=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_TABLE_SORT=y
CONFIG_THREAD_INFO_IN_TASK=y
#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
# CONFIG_COMPILE_TEST is not set
CONFIG_UAPI_HEADER_TEST=y
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_BUILD_SALT=""
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
# CONFIG_KERNEL_GZIP is not set
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
CONFIG_KERNEL_LZ4=y
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
# CONFIG_POSIX_MQUEUE is not set
# CONFIG_WATCH_QUEUE is not set
# CONFIG_CROSS_MEMORY_ATTACH is not set
# CONFIG_USELIB is not set
# CONFIG_AUDIT is not set
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_GENERIC_IRQ_MIGRATION=y
CONFIG_GENERIC_IRQ_INJECTION=y
CONFIG_HARDIRQS_SW_RESEND=y
CONFIG_GENERIC_IRQ_CHIP=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_SIM=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_GENERIC_IRQ_DEBUGFS=y
# end of IRQ subsystem
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_INIT=y
CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y
#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
# end of Timers subsystem
# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_COUNT=y
CONFIG_PREEMPTION=y
#
# CPU/Task time and stats accounting
#
CONFIG_TICK_CPU_ACCOUNTING=y
# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
CONFIG_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_SCHED_AVG_IRQ=y
# CONFIG_SCHED_THERMAL_PRESSURE is not set
# CONFIG_BSD_PROCESS_ACCT is not set
# CONFIG_TASKSTATS is not set
# CONFIG_PSI is not set
# end of CPU/Task time and stats accounting
CONFIG_CPU_ISOLATION=y
#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
CONFIG_PREEMPT_RCU=y
CONFIG_RCU_EXPERT=y
CONFIG_SRCU=y
CONFIG_TREE_SRCU=y
CONFIG_TASKS_RCU_GENERIC=y
CONFIG_TASKS_RCU=y
CONFIG_TASKS_RUDE_RCU=y
CONFIG_TASKS_TRACE_RCU=y
CONFIG_RCU_STALL_COMMON=y
CONFIG_RCU_NEED_SEGCBLIST=y
CONFIG_RCU_FANOUT=64
CONFIG_RCU_FANOUT_LEAF=16
# CONFIG_RCU_FAST_NO_HZ is not set
CONFIG_RCU_BOOST=y
CONFIG_RCU_BOOST_DELAY=500
# CONFIG_RCU_NOCB_CPU is not set
# end of RCU Subsystem
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_IKHEADERS is not set
CONFIG_LOG_BUF_SHIFT=20
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
#
# Scheduler features
#
# end of Scheduler features
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
CONFIG_CC_HAS_INT128=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_CGROUPS=y
# CONFIG_MEMCG is not set
# CONFIG_BLK_CGROUP is not set
# CONFIG_CGROUP_SCHED is not set
# CONFIG_CGROUP_PIDS is not set
# CONFIG_CGROUP_RDMA is not set
# CONFIG_CGROUP_FREEZER is not set
# CONFIG_CGROUP_HUGETLB is not set
# CONFIG_CPUSETS is not set
# CONFIG_CGROUP_DEVICE is not set
# CONFIG_CGROUP_CPUACCT is not set
# CONFIG_CGROUP_PERF is not set
CONFIG_CGROUP_BPF=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_SOCK_CGROUP_DATA=y
# CONFIG_NAMESPACES is not set
CONFIG_CHECKPOINT_RESTORE=y
# CONFIG_SCHED_AUTOGROUP is not set
# CONFIG_SYSFS_DEPRECATED is not set
# CONFIG_RELAY is not set
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
CONFIG_BOOT_CONFIG=y
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_BPF=y
CONFIG_EXPERT=y
CONFIG_MULTIUSER=y
# CONFIG_SGETMASK_SYSCALL is not set
CONFIG_SYSFS_SYSCALL=y
CONFIG_FHANDLE=y
CONFIG_POSIX_TIMERS=y
CONFIG_PRINTK=y
CONFIG_PRINTK_NMI=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
# CONFIG_PCSPKR_PLATFORM is not set
# CONFIG_BASE_FULL is not set
CONFIG_FUTEX=y
CONFIG_FUTEX_PI=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
# CONFIG_EVENTFD is not set
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_IO_URING=y
CONFIG_ADVISE_SYSCALLS=y
CONFIG_HAVE_ARCH_USERFAULTFD_WP=y
CONFIG_MEMBARRIER=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
CONFIG_BPF_SYSCALL=y
CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y
CONFIG_USERFAULTFD=y
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
CONFIG_RSEQ=y
CONFIG_DEBUG_RSEQ=y
CONFIG_EMBEDDED=y
CONFIG_HAVE_PERF_EVENTS=y
CONFIG_PC104=y
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
# end of Kernel Performance Events And Counters
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_COMPAT_BRK=y
# CONFIG_SLAB is not set
# CONFIG_SLUB is not set
CONFIG_SLOB=y
# CONFIG_SLAB_MERGE_DEFAULT is not set
# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set
# CONFIG_PROFILING is not set
CONFIG_TRACEPOINTS=y
# end of General setup
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_MMU=y
CONFIG_ARCH_MMAP_RND_BITS_MIN=28
CONFIG_ARCH_MMAP_RND_BITS_MAX=32
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_HAS_FILTER_PGPROT=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_X86_64_SMP=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_PGTABLE_LEVELS=4
CONFIG_CC_HAS_SANE_STACKPROTECTOR=y
#
# Processor type and features
#
# CONFIG_ZONE_DMA is not set
CONFIG_SMP=y
CONFIG_X86_FEATURE_NAMES=y
# CONFIG_X86_X2APIC is not set
CONFIG_X86_MPPARSE=y
CONFIG_GOLDFISH=y
# CONFIG_RETPOLINE is not set
CONFIG_X86_CPU_RESCTRL=y
CONFIG_X86_EXTENDED_PLATFORM=y
CONFIG_X86_VSMP=y
# CONFIG_X86_GOLDFISH is not set
CONFIG_X86_INTEL_MID=y
CONFIG_X86_INTEL_LPSS=y
CONFIG_X86_AMD_PLATFORM_DEVICE=y
CONFIG_IOSF_MBI=y
CONFIG_IOSF_MBI_DEBUG=y
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
# CONFIG_SCHED_OMIT_FRAME_POINTER is not set
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
CONFIG_PARAVIRT_DEBUG=y
CONFIG_PARAVIRT_SPINLOCKS=y
CONFIG_X86_HV_CALLBACK_VECTOR=y
CONFIG_XEN=y
# CONFIG_XEN_PV is not set
CONFIG_XEN_PVHVM=y
CONFIG_XEN_PVHVM_SMP=y
CONFIG_XEN_SAVE_RESTORE=y
CONFIG_XEN_DEBUG_FS=y
# CONFIG_XEN_PVH is not set
CONFIG_KVM_GUEST=y
CONFIG_ARCH_CPUIDLE_HALTPOLL=y
# CONFIG_PVH is not set
# CONFIG_KVM_DEBUG_FS is not set
CONFIG_PARAVIRT_TIME_ACCOUNTING=y
CONFIG_PARAVIRT_CLOCK=y
# CONFIG_JAILHOUSE_GUEST is not set
# CONFIG_ACRN_GUEST is not set
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_INTERNODE_CACHE_SHIFT=12
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_IA32_FEAT_CTL=y
CONFIG_X86_VMX_FEATURE_NAMES=y
# CONFIG_PROCESSOR_SELECT is not set
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_HYGON=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_CPU_SUP_ZHAOXIN=y
CONFIG_HPET_TIMER=y
CONFIG_APB_TIMER=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
CONFIG_MAXSMP=y
CONFIG_NR_CPUS_RANGE_BEGIN=8192
CONFIG_NR_CPUS_RANGE_END=8192
CONFIG_NR_CPUS_DEFAULT=8192
CONFIG_NR_CPUS=8192
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
# CONFIG_SCHED_MC_PRIO is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set
CONFIG_X86_MCE=y
CONFIG_X86_MCELOG_LEGACY=y
# CONFIG_X86_MCE_INTEL is not set
# CONFIG_X86_MCE_AMD is not set
CONFIG_X86_MCE_INJECT=y
#
# Performance monitoring
#
CONFIG_PERF_EVENTS_INTEL_UNCORE=y
CONFIG_PERF_EVENTS_INTEL_RAPL=y
CONFIG_PERF_EVENTS_INTEL_CSTATE=y
CONFIG_PERF_EVENTS_AMD_POWER=y
# end of Performance monitoring
CONFIG_X86_16BIT=y
CONFIG_X86_ESPFIX64=y
CONFIG_X86_VSYSCALL_EMULATION=y
CONFIG_X86_IOPL_IOPERM=y
CONFIG_I8K=y
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
# CONFIG_X86_5LEVEL is not set
CONFIG_X86_DIRECT_GBPAGES=y
CONFIG_X86_CPA_STATISTICS=y
# CONFIG_AMD_MEM_ENCRYPT is not set
# CONFIG_NUMA is not set
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
# CONFIG_ARCH_MEMORY_PROBE is not set
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
# CONFIG_X86_PMEM_LEGACY is not set
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
# CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK is not set
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
# CONFIG_X86_PAT is not set
CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
CONFIG_X86_UMIP=y
CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
# CONFIG_X86_INTEL_TSX_MODE_OFF is not set
# CONFIG_X86_INTEL_TSX_MODE_ON is not set
CONFIG_X86_INTEL_TSX_MODE_AUTO=y
CONFIG_EFI=y
# CONFIG_EFI_STUB is not set
# CONFIG_SECCOMP is not set
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
# CONFIG_KEXEC_FILE is not set
CONFIG_CRASH_DUMP=y
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
CONFIG_RANDOMIZE_BASE=y
CONFIG_X86_NEED_RELOCS=y
CONFIG_PHYSICAL_ALIGN=0x200000
# CONFIG_RANDOMIZE_MEMORY is not set
CONFIG_HOTPLUG_CPU=y
CONFIG_BOOTPARAM_HOTPLUG_CPU0=y
CONFIG_DEBUG_HOTPLUG_CPU0=y
CONFIG_LEGACY_VSYSCALL_EMULATE=y
# CONFIG_LEGACY_VSYSCALL_XONLY is not set
# CONFIG_LEGACY_VSYSCALL_NONE is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_MODIFY_LDT_SYSCALL=y
CONFIG_HAVE_LIVEPATCH=y
# end of Processor type and features
CONFIG_ARCH_HAS_ADD_PAGES=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
#
# Power management and ACPI options
#
# CONFIG_SUSPEND is not set
CONFIG_HIBERNATE_CALLBACKS=y
# CONFIG_HIBERNATION is not set
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
CONFIG_PM_WAKELOCKS=y
CONFIG_PM_WAKELOCKS_LIMIT=100
# CONFIG_PM_WAKELOCKS_GC is not set
CONFIG_PM=y
CONFIG_PM_DEBUG=y
CONFIG_PM_ADVANCED_DEBUG=y
CONFIG_PM_SLEEP_DEBUG=y
CONFIG_DPM_WATCHDOG=y
CONFIG_DPM_WATCHDOG_TIMEOUT=120
# CONFIG_PM_TRACE_RTC is not set
CONFIG_PM_CLK=y
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
CONFIG_ARCH_SUPPORTS_ACPI=y
CONFIG_ACPI=y
CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
CONFIG_ACPI_DEBUGGER=y
CONFIG_ACPI_DEBUGGER_USER=y
# CONFIG_ACPI_SPCR_TABLE is not set
CONFIG_ACPI_LPIT=y
CONFIG_ACPI_PROCFS_POWER=y
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
# CONFIG_ACPI_EC_DEBUGFS is not set
# CONFIG_ACPI_AC is not set
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
# CONFIG_ACPI_VIDEO is not set
CONFIG_ACPI_FAN=y
CONFIG_ACPI_TAD=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_CPU_FREQ_PSS=y
CONFIG_ACPI_PROCESSOR_CSTATE=y
CONFIG_ACPI_PROCESSOR_IDLE=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_IPMI=y
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_CUSTOM_DSDT_FILE=""
CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
CONFIG_ACPI_TABLE_UPGRADE=y
CONFIG_ACPI_DEBUG=y
CONFIG_ACPI_PCI_SLOT=y
CONFIG_ACPI_CONTAINER=y
CONFIG_ACPI_HOTPLUG_MEMORY=y
CONFIG_ACPI_HOTPLUG_IOAPIC=y
# CONFIG_ACPI_SBS is not set
CONFIG_ACPI_HED=y
# CONFIG_ACPI_CUSTOM_METHOD is not set
# CONFIG_ACPI_BGRT is not set
# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
# CONFIG_ACPI_NFIT is not set
CONFIG_HAVE_ACPI_APEI=y
CONFIG_HAVE_ACPI_APEI_NMI=y
# CONFIG_ACPI_APEI is not set
# CONFIG_DPTF_POWER is not set
CONFIG_ACPI_WATCHDOG=y
# CONFIG_PMIC_OPREGION is not set
# CONFIG_ACPI_CONFIGFS is not set
CONFIG_TPS68470_PMIC_OPREGION=y
CONFIG_X86_PM_TIMER=y
CONFIG_SFI=y
#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ is not set
# end of CPU Frequency scaling
#
# CPU Idle
#
CONFIG_CPU_IDLE=y
# CONFIG_CPU_IDLE_GOV_LADDER is not set
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_CPU_IDLE_GOV_TEO is not set
# CONFIG_CPU_IDLE_GOV_HALTPOLL is not set
CONFIG_HALTPOLL_CPUIDLE=y
# end of CPU Idle
CONFIG_INTEL_IDLE=y
# end of Power management and ACPI options
#
# Bus options (PCI etc.)
#
CONFIG_PCI_DIRECT=y
# CONFIG_PCI_MMCONFIG is not set
CONFIG_PCI_XEN=y
CONFIG_PCI_CNB20LE_QUIRK=y
CONFIG_ISA_BUS=y
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
# CONFIG_X86_SYSFB is not set
# end of Bus options (PCI etc.)
#
# Binary Emulations
#
# CONFIG_IA32_EMULATION is not set
CONFIG_X86_X32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
# end of Binary Emulations
#
# Firmware Drivers
#
CONFIG_EDD=y
# CONFIG_EDD_OFF is not set
# CONFIG_FIRMWARE_MEMMAP is not set
# CONFIG_DMIID is not set
# CONFIG_DMI_SYSFS is not set
CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
CONFIG_FW_CFG_SYSFS=y
# CONFIG_FW_CFG_SYSFS_CMDLINE is not set
CONFIG_GOOGLE_FIRMWARE=y
CONFIG_GOOGLE_SMI=y
CONFIG_GOOGLE_COREBOOT_TABLE=y
CONFIG_GOOGLE_MEMCONSOLE=y
CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY=y
CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT=y
CONFIG_GOOGLE_MEMCONSOLE_COREBOOT=y
CONFIG_GOOGLE_VPD=y
#
# EFI (Extensible Firmware Interface) Support
#
# CONFIG_EFI_VARS is not set
CONFIG_EFI_ESRT=y
CONFIG_EFI_RUNTIME_MAP=y
# CONFIG_EFI_FAKE_MEMMAP is not set
CONFIG_EFI_RUNTIME_WRAPPERS=y
# CONFIG_EFI_CAPSULE_LOADER is not set
# CONFIG_EFI_TEST is not set
# CONFIG_EFI_RCI2_TABLE is not set
# CONFIG_EFI_DISABLE_PCI_DMA is not set
# end of EFI (Extensible Firmware Interface) Support
CONFIG_EFI_EARLYCON=y
#
# Tegra firmware driver
#
# end of Tegra firmware driver
# end of Firmware Drivers
CONFIG_HAVE_KVM=y
# CONFIG_VIRTUALIZATION is not set
#
# General architecture-dependent options
#
CONFIG_CRASH_CORE=y
CONFIG_KEXEC_CORE=y
CONFIG_HOTPLUG_SMT=y
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
# CONFIG_KPROBES is not set
# CONFIG_JUMP_LABEL is not set
CONFIG_UPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y
CONFIG_HAVE_NMI=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
CONFIG_ARCH_HAS_SET_MEMORY=y
CONFIG_ARCH_HAS_SET_DIRECT_MAP=y
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
CONFIG_HAVE_ASM_MODVERSIONS=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_RSEQ=y
CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y
CONFIG_HAVE_CLK=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y
CONFIG_MMU_GATHER_TABLE_FREE=y
CONFIG_MMU_GATHER_RCU_TABLE_FREE=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_HAVE_ARCH_STACKLEAK=y
CONFIG_HAVE_STACKPROTECTOR=y
CONFIG_CC_HAS_STACKPROTECTOR_NONE=y
CONFIG_STACKPROTECTOR=y
# CONFIG_STACKPROTECTOR_STRONG is not set
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_MOVE_PMD=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
CONFIG_HAVE_ARCH_HUGE_VMAP=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
CONFIG_HAVE_EXIT_THREAD=y
CONFIG_ARCH_MMAP_RND_BITS=28
CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y
CONFIG_HAVE_COPY_THREAD_TLS=y
CONFIG_HAVE_STACK_VALIDATION=y
CONFIG_ISA_BUS_API=y
CONFIG_COMPAT_32BIT_TIME=y
CONFIG_HAVE_ARCH_VMAP_STACK=y
# CONFIG_VMAP_STACK is not set
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
CONFIG_STRICT_KERNEL_RWX=y
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
CONFIG_STRICT_MODULE_RWX=y
CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y
CONFIG_ARCH_USE_MEMREMAP_PROT=y
CONFIG_LOCK_EVENT_COUNTS=y
CONFIG_ARCH_HAS_MEM_ENCRYPT=y
#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# end of GCOV-based kernel profiling
CONFIG_PLUGIN_HOSTCC="g++"
CONFIG_HAVE_GCC_PLUGINS=y
# CONFIG_GCC_PLUGINS is not set
# end of General architecture-dependent options
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=1
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
# CONFIG_MODULE_UNLOAD is not set
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
# CONFIG_MODULE_SIG is not set
# CONFIG_MODULE_COMPRESS is not set
# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
CONFIG_UNUSED_SYMBOLS=y
CONFIG_MODULES_TREE_LOOKUP=y
CONFIG_BLOCK=y
CONFIG_BLK_SCSI_REQUEST=y
CONFIG_BLK_DEV_BSG=y
# CONFIG_BLK_DEV_BSGLIB is not set
# CONFIG_BLK_DEV_INTEGRITY is not set
# CONFIG_BLK_DEV_ZONED is not set
# CONFIG_BLK_CMDLINE_PARSER is not set
# CONFIG_BLK_WBT is not set
CONFIG_BLK_DEBUG_FS=y
# CONFIG_BLK_SED_OPAL is not set
#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_EFI_PARTITION=y
# end of Partition Types
CONFIG_BLOCK_COMPAT=y
CONFIG_BLK_MQ_PCI=y
CONFIG_BLK_MQ_VIRTIO=y
CONFIG_BLK_PM=y
#
# IO Schedulers
#
CONFIG_MQ_IOSCHED_DEADLINE=y
CONFIG_MQ_IOSCHED_KYBER=y
# CONFIG_IOSCHED_BFQ is not set
# end of IO Schedulers
CONFIG_PADATA=y
CONFIG_ASN1=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_LOCK_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
CONFIG_QUEUED_SPINLOCKS=y
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
CONFIG_QUEUED_RWLOCKS=y
CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y
CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y
CONFIG_FREEZER=y
#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_ELFCORE=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
CONFIG_BINFMT_SCRIPT=y
CONFIG_BINFMT_MISC=y
CONFIG_COREDUMP=y
# end of Executable file formats
#
# Memory Management options
#
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
# CONFIG_SPARSEMEM_VMEMMAP is not set
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_HAVE_FAST_GUP=y
CONFIG_MEMORY_ISOLATION=y
CONFIG_HAVE_BOOTMEM_INFO_NODE=y
CONFIG_MEMORY_HOTPLUG=y
CONFIG_MEMORY_HOTPLUG_SPARSE=y
CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y
CONFIG_MEMORY_HOTREMOVE=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_MEMORY_BALLOON=y
# CONFIG_COMPACTION is not set
# CONFIG_PAGE_REPORTING is not set
CONFIG_MIGRATION=y
CONFIG_CONTIG_ALLOC=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_VIRT_TO_BUS=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
# CONFIG_MEMORY_FAILURE is not set
# CONFIG_TRANSPARENT_HUGEPAGE is not set
CONFIG_ARCH_WANTS_THP_SWAP=y
CONFIG_CLEANCACHE=y
# CONFIG_FRONTSWAP is not set
CONFIG_CMA=y
# CONFIG_CMA_DEBUG is not set
# CONFIG_CMA_DEBUGFS is not set
CONFIG_CMA_AREAS=7
# CONFIG_MEM_SOFT_DIRTY is not set
# CONFIG_ZPOOL is not set
# CONFIG_ZBUD is not set
# CONFIG_ZSMALLOC is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
CONFIG_IDLE_PAGE_TRACKING=y
CONFIG_ARCH_HAS_PTE_DEVMAP=y
CONFIG_FRAME_VECTOR=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
CONFIG_ARCH_HAS_PKEYS=y
# CONFIG_PERCPU_STATS is not set
# CONFIG_GUP_BENCHMARK is not set
CONFIG_ARCH_HAS_PTE_SPECIAL=y
# end of Memory Management options
CONFIG_NET=y
CONFIG_SKB_EXTENSIONS=y
#
# Networking options
#
# CONFIG_PACKET is not set
CONFIG_UNIX=y
CONFIG_UNIX_SCM=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_TLS is not set
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
# CONFIG_XFRM_INTERFACE is not set
# CONFIG_XFRM_SUB_POLICY is not set
# CONFIG_XFRM_MIGRATE is not set
# CONFIG_XFRM_STATISTICS is not set
# CONFIG_NET_KEY is not set
# CONFIG_XDP_SOCKETS is not set
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
CONFIG_IP_ADVANCED_ROUTER=y
# CONFIG_IP_FIB_TRIE_STATS is not set
CONFIG_IP_MULTIPLE_TABLES=y
# CONFIG_IP_ROUTE_MULTIPATH is not set
# CONFIG_IP_ROUTE_VERBOSE is not set
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
# CONFIG_IP_PNP_BOOTP is not set
# CONFIG_IP_PNP_RARP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
CONFIG_NET_IP_TUNNEL=y
# CONFIG_SYN_COOKIES is not set
# CONFIG_NET_IPVTI is not set
CONFIG_NET_UDP_TUNNEL=y
CONFIG_NET_FOU=y
CONFIG_NET_FOU_IP_TUNNELS=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
CONFIG_INET_TUNNEL=y
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
# CONFIG_INET_UDP_DIAG is not set
# CONFIG_INET_RAW_DIAG is not set
# CONFIG_INET_DIAG_DESTROY is not set
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_CUBIC=y
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
CONFIG_IPV6=y
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
CONFIG_INET6_TUNNEL=y
# CONFIG_IPV6_VTI is not set
CONFIG_IPV6_SIT=y
# CONFIG_IPV6_SIT_6RD is not set
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=y
CONFIG_IPV6_FOU=y
CONFIG_IPV6_FOU_TUNNEL=y
CONFIG_IPV6_MULTIPLE_TABLES=y
# CONFIG_IPV6_SUBTREES is not set
# CONFIG_IPV6_MROUTE is not set
CONFIG_IPV6_SEG6_LWTUNNEL=y
# CONFIG_IPV6_SEG6_HMAC is not set
CONFIG_IPV6_SEG6_BPF=y
CONFIG_MPTCP=y
CONFIG_MPTCP_IPV6=y
# CONFIG_MPTCP_HMAC_TEST is not set
# CONFIG_NETWORK_SECMARK is not set
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
# CONFIG_NETFILTER is not set
# CONFIG_BPFILTER is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
# CONFIG_BRIDGE is not set
CONFIG_HAVE_NET_DSA=y
# CONFIG_NET_DSA is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_6LOWPAN is not set
# CONFIG_IEEE802154 is not set
# CONFIG_NET_SCHED is not set
# CONFIG_DCB is not set
CONFIG_DNS_RESOLVER=m
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
# CONFIG_VSOCKETS is not set
# CONFIG_NETLINK_DIAG is not set
# CONFIG_MPLS is not set
# CONFIG_NET_NSH is not set
# CONFIG_HSR is not set
# CONFIG_NET_SWITCHDEV is not set
CONFIG_NET_L3_MASTER_DEV=y
# CONFIG_NET_NCSI is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_CGROUP_NET_PRIO is not set
# CONFIG_CGROUP_NET_CLASSID is not set
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
# CONFIG_BPF_JIT is not set
CONFIG_BPF_STREAM_PARSER=y
CONFIG_NET_FLOW_LIMIT=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_DROP_MONITOR is not set
# end of Network testing
# end of Networking options
# CONFIG_HAMRADIO is not set
# CONFIG_CAN is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set
# CONFIG_AF_KCM is not set
CONFIG_STREAM_PARSER=y
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
# CONFIG_CFG80211 is not set
#
# CFG80211 needs to be enabled for MAC80211
#
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
# CONFIG_WIMAX is not set
# CONFIG_RFKILL is not set
CONFIG_NET_9P=y
CONFIG_NET_9P_VIRTIO=y
# CONFIG_NET_9P_XEN is not set
# CONFIG_NET_9P_DEBUG is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
# CONFIG_PSAMPLE is not set
# CONFIG_NET_IFE is not set
CONFIG_LWTUNNEL=y
CONFIG_LWTUNNEL_BPF=y
CONFIG_DST_CACHE=y
CONFIG_GRO_CELLS=y
CONFIG_NET_SOCK_MSG=y
# CONFIG_FAILOVER is not set
CONFIG_ETHTOOL_NETLINK=y
CONFIG_HAVE_EBPF_JIT=y
#
# Device Drivers
#
CONFIG_HAVE_EISA=y
CONFIG_EISA=y
CONFIG_EISA_VLB_PRIMING=y
CONFIG_EISA_PCI_EISA=y
CONFIG_EISA_VIRTUAL_ROOT=y
# CONFIG_EISA_NAMES is not set
CONFIG_HAVE_PCI=y
CONFIG_PCI=y
CONFIG_PCI_DOMAINS=y
CONFIG_PCIEPORTBUS=y
CONFIG_HOTPLUG_PCI_PCIE=y
CONFIG_PCIEAER=y
CONFIG_PCIEAER_INJECT=y
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEASPM is not set
CONFIG_PCIE_PME=y
# CONFIG_PCIE_DPC is not set
CONFIG_PCIE_PTM=y
# CONFIG_PCIE_BW is not set
# CONFIG_PCI_MSI is not set
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
# CONFIG_PCI_STUB is not set
CONFIG_PCI_PF_STUB=y
CONFIG_XEN_PCIDEV_FRONTEND=y
CONFIG_PCI_ATS=y
CONFIG_PCI_LOCKLESS_CONFIG=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
# CONFIG_PCI_PASID is not set
CONFIG_PCI_LABEL=y
CONFIG_HOTPLUG_PCI=y
# CONFIG_HOTPLUG_PCI_ACPI is not set
# CONFIG_HOTPLUG_PCI_CPCI is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set
#
# PCI controller drivers
#
# CONFIG_PCI_FTPCI100 is not set
# CONFIG_PCI_HOST_GENERIC is not set
# CONFIG_PCIE_XILINX is not set
#
# DesignWare PCI Core Support
#
# end of DesignWare PCI Core Support
#
# Mobiveil PCIe Core Support
#
# end of Mobiveil PCIe Core Support
#
# Cadence PCIe controllers support
#
# CONFIG_PCIE_CADENCE_PLAT_HOST is not set
# end of Cadence PCIe controllers support
# end of PCI controller drivers
#
# PCI Endpoint
#
# CONFIG_PCI_ENDPOINT is not set
# end of PCI Endpoint
#
# PCI switch controller drivers
#
CONFIG_PCI_SW_SWITCHTEC=y
# end of PCI switch controller drivers
# CONFIG_PCCARD is not set
CONFIG_RAPIDIO=y
CONFIG_RAPIDIO_TSI721=y
CONFIG_RAPIDIO_DISC_TIMEOUT=30
# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set
# CONFIG_RAPIDIO_DMA_ENGINE is not set
CONFIG_RAPIDIO_DEBUG=y
CONFIG_RAPIDIO_ENUM_BASIC=y
CONFIG_RAPIDIO_CHMAN=y
CONFIG_RAPIDIO_MPORT_CDEV=y
#
# RapidIO Switch drivers
#
# CONFIG_RAPIDIO_TSI57X is not set
CONFIG_RAPIDIO_CPS_XX=y
# CONFIG_RAPIDIO_TSI568 is not set
CONFIG_RAPIDIO_CPS_GEN2=y
# CONFIG_RAPIDIO_RXS_GEN3 is not set
# end of RapidIO Switch drivers
#
# Generic Driver Options
#
# CONFIG_UEVENT_HELPER is not set
CONFIG_DEVTMPFS=y
# CONFIG_DEVTMPFS_MOUNT is not set
# CONFIG_STANDALONE is not set
# CONFIG_PREVENT_FIRMWARE_BUILD is not set
#
# Firmware loader
#
CONFIG_FW_LOADER=y
CONFIG_FW_LOADER_PAGED_BUF=y
CONFIG_EXTRA_FIRMWARE=""
CONFIG_FW_LOADER_USER_HELPER=y
CONFIG_FW_LOADER_USER_HELPER_FALLBACK=y
CONFIG_FW_LOADER_COMPRESS=y
CONFIG_FW_CACHE=y
# end of Firmware loader
CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
CONFIG_DEBUG_DEVRES=y
# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
# CONFIG_PM_QOS_KUNIT_TEST is not set
# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
# CONFIG_KUNIT_DRIVER_PE_TEST is not set
CONFIG_SYS_HYPERVISOR=y
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_GENERIC_CPU_VULNERABILITIES=y
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=y
CONFIG_REGMAP_SPI=y
CONFIG_REGMAP_SPMI=y
CONFIG_REGMAP_MMIO=y
CONFIG_REGMAP_IRQ=y
CONFIG_DMA_SHARED_BUFFER=y
CONFIG_DMA_FENCE_TRACE=y
# end of Generic Driver Options
#
# Bus devices
#
# CONFIG_MOXTET is not set
CONFIG_SIMPLE_PM_BUS=y
# CONFIG_MHI_BUS is not set
# end of Bus devices
# CONFIG_CONNECTOR is not set
# CONFIG_GNSS is not set
CONFIG_MTD=y
# CONFIG_MTD_TESTS is not set
#
# Partition parsers
#
CONFIG_MTD_AR7_PARTS=y
CONFIG_MTD_CMDLINE_PARTS=y
CONFIG_MTD_OF_PARTS=y
# CONFIG_MTD_REDBOOT_PARTS is not set
# end of Partition parsers
#
# User Modules And Translation Layers
#
# CONFIG_MTD_BLOCK is not set
# CONFIG_MTD_BLOCK_RO is not set
# CONFIG_FTL is not set
# CONFIG_NFTL is not set
# CONFIG_INFTL is not set
# CONFIG_RFD_FTL is not set
# CONFIG_SSFDC is not set
# CONFIG_SM_FTL is not set
CONFIG_MTD_OOPS=y
# CONFIG_MTD_SWAP is not set
# CONFIG_MTD_PARTITIONED_MASTER is not set
#
# RAM/ROM/Flash chip drivers
#
CONFIG_MTD_CFI=y
CONFIG_MTD_JEDECPROBE=y
CONFIG_MTD_GEN_PROBE=y
CONFIG_MTD_CFI_ADV_OPTIONS=y
CONFIG_MTD_CFI_NOSWAP=y
# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set
# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set
# CONFIG_MTD_CFI_GEOMETRY is not set
CONFIG_MTD_MAP_BANK_WIDTH_1=y
CONFIG_MTD_MAP_BANK_WIDTH_2=y
CONFIG_MTD_MAP_BANK_WIDTH_4=y
CONFIG_MTD_CFI_I1=y
CONFIG_MTD_CFI_I2=y
# CONFIG_MTD_OTP is not set
# CONFIG_MTD_CFI_INTELEXT is not set
CONFIG_MTD_CFI_AMDSTD=y
CONFIG_MTD_CFI_STAA=y
CONFIG_MTD_CFI_UTIL=y
CONFIG_MTD_RAM=y
CONFIG_MTD_ROM=y
CONFIG_MTD_ABSENT=y
# end of RAM/ROM/Flash chip drivers
#
# Mapping drivers for chip access
#
CONFIG_MTD_COMPLEX_MAPPINGS=y
CONFIG_MTD_PHYSMAP=y
# CONFIG_MTD_PHYSMAP_COMPAT is not set
# CONFIG_MTD_PHYSMAP_OF is not set
# CONFIG_MTD_PHYSMAP_GPIO_ADDR is not set
CONFIG_MTD_AMD76XROM=y
# CONFIG_MTD_ICHXROM is not set
CONFIG_MTD_ESB2ROM=y
CONFIG_MTD_CK804XROM=y
# CONFIG_MTD_SCB2_FLASH is not set
# CONFIG_MTD_NETtel is not set
# CONFIG_MTD_L440GX is not set
CONFIG_MTD_PCI=y
CONFIG_MTD_INTEL_VR_NOR=y
CONFIG_MTD_PLATRAM=y
# end of Mapping drivers for chip access
#
# Self-contained MTD device drivers
#
CONFIG_MTD_PMC551=y
# CONFIG_MTD_PMC551_BUGFIX is not set
# CONFIG_MTD_PMC551_DEBUG is not set
CONFIG_MTD_DATAFLASH=y
CONFIG_MTD_DATAFLASH_WRITE_VERIFY=y
# CONFIG_MTD_DATAFLASH_OTP is not set
CONFIG_MTD_MCHP23K256=y
CONFIG_MTD_SST25L=y
# CONFIG_MTD_SLRAM is not set
CONFIG_MTD_PHRAM=y
CONFIG_MTD_MTDRAM=y
CONFIG_MTDRAM_TOTAL_SIZE=4096
CONFIG_MTDRAM_ERASE_SIZE=128
# CONFIG_MTD_BLOCK2MTD is not set
#
# Disk-On-Chip Device Drivers
#
CONFIG_MTD_DOCG3=y
CONFIG_BCH_CONST_M=14
CONFIG_BCH_CONST_T=4
# end of Self-contained MTD device drivers
CONFIG_MTD_NAND_CORE=y
# CONFIG_MTD_ONENAND is not set
CONFIG_MTD_NAND_ECC_SW_HAMMING=y
# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set
CONFIG_MTD_RAW_NAND=y
CONFIG_MTD_NAND_ECC_SW_BCH=y
#
# Raw/parallel NAND flash controllers
#
CONFIG_MTD_NAND_DENALI=y
# CONFIG_MTD_NAND_DENALI_PCI is not set
CONFIG_MTD_NAND_DENALI_DT=y
CONFIG_MTD_NAND_CAFE=y
CONFIG_MTD_NAND_MXIC=y
# CONFIG_MTD_NAND_GPIO is not set
CONFIG_MTD_NAND_PLATFORM=y
# CONFIG_MTD_NAND_CADENCE is not set
#
# Misc
#
CONFIG_MTD_NAND_NANDSIM=y
# CONFIG_MTD_NAND_RICOH is not set
CONFIG_MTD_NAND_DISKONCHIP=y
CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED=y
CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0
CONFIG_MTD_NAND_DISKONCHIP_PROBE_HIGH=y
# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set
CONFIG_MTD_SPI_NAND=y
#
# LPDDR & LPDDR2 PCM memory drivers
#
# CONFIG_MTD_LPDDR is not set
# end of LPDDR & LPDDR2 PCM memory drivers
CONFIG_MTD_SPI_NOR=y
# CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set
CONFIG_SPI_INTEL_SPI=y
CONFIG_SPI_INTEL_SPI_PCI=y
CONFIG_SPI_INTEL_SPI_PLATFORM=y
CONFIG_MTD_UBI=y
CONFIG_MTD_UBI_WL_THRESHOLD=4096
CONFIG_MTD_UBI_BEB_LIMIT=20
# CONFIG_MTD_UBI_FASTMAP is not set
CONFIG_MTD_UBI_GLUEBI=y
# CONFIG_MTD_UBI_BLOCK is not set
CONFIG_MTD_HYPERBUS=y
CONFIG_OF=y
# CONFIG_OF_UNITTEST is not set
CONFIG_OF_KOBJ=y
CONFIG_OF_ADDRESS=y
CONFIG_OF_IRQ=y
CONFIG_OF_NET=y
# CONFIG_OF_OVERLAY is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
CONFIG_PARPORT=y
# CONFIG_PARPORT_PC is not set
CONFIG_PARPORT_AX88796=y
CONFIG_PARPORT_1284=y
CONFIG_PARPORT_NOT_PC=y
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set
#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_NULL_BLK is not set
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_LOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SKD is not set
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_XEN_BLKDEV_FRONTEND=y
# CONFIG_VIRTIO_BLK is not set
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_RSXX is not set
#
# NVME Support
#
# CONFIG_BLK_DEV_NVME is not set
# CONFIG_NVME_FC is not set
# CONFIG_NVME_TARGET is not set
# end of NVME Support
#
# Misc devices
#
# CONFIG_AD525X_DPOT is not set
CONFIG_DUMMY_IRQ=y
# CONFIG_IBM_ASM is not set
CONFIG_PHANTOM=y
# CONFIG_INTEL_MID_PTI is not set
CONFIG_TIFM_CORE=y
# CONFIG_TIFM_7XX1 is not set
CONFIG_ICS932S401=y
CONFIG_ENCLOSURE_SERVICES=y
CONFIG_HP_ILO=y
CONFIG_APDS9802ALS=y
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1770 is not set
CONFIG_SENSORS_APDS990X=y
# CONFIG_HMC6352 is not set
CONFIG_DS1682=y
CONFIG_VMWARE_BALLOON=y
CONFIG_LATTICE_ECP3_CONFIG=y
# CONFIG_SRAM is not set
# CONFIG_PCI_ENDPOINT_TEST is not set
CONFIG_XILINX_SDFEC=y
CONFIG_MISC_RTSX=y
CONFIG_PVPANIC=y
CONFIG_C2PORT=y
# CONFIG_C2PORT_DURAMAR_2150 is not set
#
# EEPROM support
#
CONFIG_EEPROM_AT24=y
CONFIG_EEPROM_AT25=y
# CONFIG_EEPROM_LEGACY is not set
CONFIG_EEPROM_MAX6875=y
CONFIG_EEPROM_93CX6=y
CONFIG_EEPROM_93XX46=y
CONFIG_EEPROM_IDT_89HPESX=y
CONFIG_EEPROM_EE1004=y
# end of EEPROM support
# CONFIG_CB710_CORE is not set
#
# Texas Instruments shared transport line discipline
#
# CONFIG_TI_ST is not set
# end of Texas Instruments shared transport line discipline
# CONFIG_SENSORS_LIS3_I2C is not set
# CONFIG_ALTERA_STAPL is not set
CONFIG_INTEL_MEI=y
# CONFIG_INTEL_MEI_ME is not set
CONFIG_INTEL_MEI_TXE=y
CONFIG_VMWARE_VMCI=y
#
# Intel MIC & related support
#
CONFIG_INTEL_MIC_BUS=y
CONFIG_SCIF_BUS=y
CONFIG_VOP_BUS=y
CONFIG_VOP=y
CONFIG_VHOST_RING=y
# end of Intel MIC & related support
CONFIG_GENWQE=y
CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0
# CONFIG_ECHO is not set
CONFIG_MISC_ALCOR_PCI=y
CONFIG_MISC_RTSX_PCI=y
CONFIG_HABANA_AI=y
# end of Misc devices
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
# CONFIG_SCSI is not set
# end of SCSI device support
# CONFIG_ATA is not set
# CONFIG_MD is not set
# CONFIG_TARGET_CORE is not set
CONFIG_FUSION=y
CONFIG_FUSION_MAX_SGE=128
CONFIG_FUSION_LOGGING=y
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
CONFIG_FIREWIRE_NOSY=y
# end of IEEE 1394 (FireWire) support
# CONFIG_MACINTOSH_DRIVERS is not set
CONFIG_NETDEVICES=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
# CONFIG_DUMMY is not set
# CONFIG_WIREGUARD is not set
# CONFIG_EQUALIZER is not set
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_IPVLAN is not set
# CONFIG_VXLAN is not set
# CONFIG_GENEVE is not set
# CONFIG_BAREUDP is not set
# CONFIG_GTP is not set
CONFIG_MACSEC=y
# CONFIG_NETCONSOLE is not set
# CONFIG_RIONET is not set
CONFIG_TUN=m
# CONFIG_TUN_VNET_CROSS_LE is not set
CONFIG_VETH=m
# CONFIG_VIRTIO_NET is not set
# CONFIG_NLMON is not set
CONFIG_NET_VRF=y
# CONFIG_ARCNET is not set
#
# Distributed Switch Architecture drivers
#
# end of Distributed Switch Architecture drivers
CONFIG_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_EL3 is not set
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_AGERE=y
# CONFIG_ET131X is not set
CONFIG_NET_VENDOR_ALACRITECH=y
# CONFIG_SLICOSS is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMAZON=y
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
# CONFIG_AMD_XGBE is not set
CONFIG_NET_VENDOR_AQUANTIA=y
# CONFIG_AQTION is not set
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
CONFIG_NET_VENDOR_AURORA=y
# CONFIG_AURORA_NB8800 is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BCMGENET is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2X is not set
# CONFIG_SYSTEMPORT is not set
# CONFIG_BNXT is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
CONFIG_NET_VENDOR_CADENCE=y
# CONFIG_MACB is not set
CONFIG_NET_VENDOR_CAVIUM=y
# CONFIG_THUNDER_NIC_PF is not set
# CONFIG_THUNDER_NIC_VF is not set
# CONFIG_THUNDER_NIC_BGX is not set
# CONFIG_THUNDER_NIC_RGX is not set
# CONFIG_CAVIUM_PTP is not set
# CONFIG_LIQUIDIO is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CIRRUS=y
# CONFIG_CS89x0 is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
CONFIG_NET_VENDOR_CORTINA=y
# CONFIG_GEMINI_ETHERNET is not set
# CONFIG_CX_ECAT is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
# CONFIG_NET_TULIP is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_EZCHIP=y
# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set
CONFIG_NET_VENDOR_GOOGLE=y
CONFIG_NET_VENDOR_HUAWEI=y
CONFIG_NET_VENDOR_I825XX=y
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
CONFIG_E1000=y
# CONFIG_E1000E is not set
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGB is not set
# CONFIG_IXGBE is not set
# CONFIG_I40E is not set
# CONFIG_IGC is not set
# CONFIG_JME is not set
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX5_CORE is not set
# CONFIG_MLXSW_CORE is not set
# CONFIG_MLXFW is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8851 is not set
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MICROCHIP=y
# CONFIG_ENC28J60 is not set
# CONFIG_ENCX24J600 is not set
# CONFIG_LAN743X is not set
CONFIG_NET_VENDOR_MICROSEMI=y
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_NETERION=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
CONFIG_NET_VENDOR_NETRONOME=y
CONFIG_NET_VENDOR_NI=y
# CONFIG_NI_XGE_MANAGEMENT_ENET is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_NE2K_PCI is not set
CONFIG_NET_VENDOR_NVIDIA=y
# CONFIG_FORCEDETH is not set
CONFIG_NET_VENDOR_OKI=y
# CONFIG_ETHOC is not set
CONFIG_NET_VENDOR_PACKET_ENGINES=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_PENSANDO=y
# CONFIG_IONIC is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_QED is not set
CONFIG_NET_VENDOR_QUALCOMM=y
# CONFIG_QCA7000_SPI is not set
# CONFIG_QCA7000_UART is not set
# CONFIG_QCOM_EMAC is not set
# CONFIG_RMNET is not set
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_ATP is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
# CONFIG_R8169 is not set
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_ROCKER=y
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SOLARFLARE=y
# CONFIG_SFC is not set
# CONFIG_SFC_FALCON is not set
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_SOCIONEXT=y
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
# CONFIG_DWC_XLGMAC is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TI_CPSW_PHY_SEL is not set
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_NET_VENDOR_XILINX=y
# CONFIG_XILINX_AXI_EMAC is not set
# CONFIG_XILINX_LL_TEMAC is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
# CONFIG_MDIO_DEVICE is not set
# CONFIG_PHYLIB is not set
# CONFIG_MICREL_KS8995MA is not set
# CONFIG_PLIP is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
#
# Host-side USB support is needed for USB Network Adapter support
#
CONFIG_WLAN=y
# CONFIG_WIRELESS_WDS is not set
CONFIG_WLAN_VENDOR_ADMTEK=y
CONFIG_WLAN_VENDOR_ATH=y
# CONFIG_ATH_DEBUG is not set
# CONFIG_ATH5K_PCI is not set
CONFIG_WLAN_VENDOR_ATMEL=y
CONFIG_WLAN_VENDOR_BROADCOM=y
CONFIG_WLAN_VENDOR_CISCO=y
CONFIG_WLAN_VENDOR_INTEL=y
CONFIG_WLAN_VENDOR_INTERSIL=y
# CONFIG_HOSTAP is not set
# CONFIG_PRISM54 is not set
CONFIG_WLAN_VENDOR_MARVELL=y
CONFIG_WLAN_VENDOR_MEDIATEK=y
CONFIG_WLAN_VENDOR_RALINK=y
CONFIG_WLAN_VENDOR_REALTEK=y
CONFIG_WLAN_VENDOR_RSI=y
CONFIG_WLAN_VENDOR_ST=y
CONFIG_WLAN_VENDOR_TI=y
CONFIG_WLAN_VENDOR_ZYDAS=y
CONFIG_WLAN_VENDOR_QUANTENNA=y
#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
# CONFIG_WAN is not set
CONFIG_XEN_NETDEV_FRONTEND=y
# CONFIG_VMXNET3 is not set
# CONFIG_FUJITSU_ES is not set
# CONFIG_USB4_NET is not set
# CONFIG_HYPERV_NET is not set
# CONFIG_NETDEVSIM is not set
# CONFIG_NET_FAILOVER is not set
# CONFIG_ISDN is not set
CONFIG_NVM=y
# CONFIG_NVM_PBLK is not set
#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_LEDS=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set
# CONFIG_INPUT_SPARSEKMAP is not set
# CONFIG_INPUT_MATRIXKMAP is not set
#
# Userland interfaces
#
# CONFIG_INPUT_MOUSEDEV is not set
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_EVDEV is not set
# CONFIG_INPUT_EVBUG is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADC is not set
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
# CONFIG_KEYBOARD_APPLESPI is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1050 is not set
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_DLINK_DIR685 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_GPIO_POLLED is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_MATRIX is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_SAMSUNG is not set
# CONFIG_KEYBOARD_GOLDFISH_EVENTS is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_STMPE is not set
# CONFIG_KEYBOARD_OMAP4 is not set
# CONFIG_KEYBOARD_TC3589X is not set
# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
# CONFIG_KEYBOARD_TWL4030 is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_CROS_EC is not set
# CONFIG_KEYBOARD_CAP11XX is not set
# CONFIG_KEYBOARD_BCM is not set
# CONFIG_KEYBOARD_MTK_PMIC is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_BYD=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
# CONFIG_MOUSE_PS2_ELANTECH is not set
# CONFIG_MOUSE_PS2_SENTELIC is not set
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
CONFIG_MOUSE_PS2_FOCALTECH=y
# CONFIG_MOUSE_PS2_VMMOUSE is not set
CONFIG_MOUSE_PS2_SMBUS=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_CYAPA is not set
# CONFIG_MOUSE_ELAN_I2C is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_GPIO is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set
# CONFIG_RMI4_CORE is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
CONFIG_SERIO_CT82C710=y
CONFIG_SERIO_PARKBD=y
CONFIG_SERIO_PCIPS2=y
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=y
# CONFIG_SERIO_ALTERA_PS2 is not set
CONFIG_SERIO_PS2MULT=y
CONFIG_SERIO_ARC_PS2=y
CONFIG_SERIO_APBPS2=y
CONFIG_HYPERV_KEYBOARD=y
# CONFIG_SERIO_GPIO_PS2 is not set
# CONFIG_USERIO is not set
# CONFIG_GAMEPORT is not set
# end of Hardware I/O ports
# end of Input device support
#
# Character devices
#
CONFIG_TTY=y
# CONFIG_VT is not set
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
CONFIG_LDISC_AUTOLOAD=y
#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
# CONFIG_SERIAL_8250_16550A_VARIANTS is not set
# CONFIG_SERIAL_8250_FINTEK is not set
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_EXAR=y
# CONFIG_SERIAL_8250_MEN_MCB is not set
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set
# CONFIG_SERIAL_8250_ASPEED_VUART is not set
CONFIG_SERIAL_8250_DWLIB=y
# CONFIG_SERIAL_8250_DW is not set
# CONFIG_SERIAL_8250_RT288X is not set
CONFIG_SERIAL_8250_LPSS=y
CONFIG_SERIAL_8250_MID=y
# CONFIG_SERIAL_OF_PLATFORM is not set
#
# Non-8250 serial port support
#
# CONFIG_SERIAL_MAX3100 is not set
# CONFIG_SERIAL_MAX310X is not set
# CONFIG_SERIAL_UARTLITE is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_SIFIVE is not set
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_IFX6X60 is not set
# CONFIG_SERIAL_XILINX_PS_UART is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
# CONFIG_SERIAL_FSL_LINFLEXUART is not set
# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
# CONFIG_SERIAL_MEN_Z135 is not set
# CONFIG_SERIAL_SPRD is not set
# end of Serial drivers
CONFIG_SERIAL_MCTRL_GPIO=y
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_GOLDFISH_TTY is not set
# CONFIG_N_GSM is not set
# CONFIG_NOZOMI is not set
# CONFIG_NULL_TTY is not set
# CONFIG_TRACE_SINK is not set
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
CONFIG_HVC_XEN_FRONTEND=y
CONFIG_SERIAL_DEV_BUS=y
CONFIG_SERIAL_DEV_CTRL_TTYPORT=y
# CONFIG_TTY_PRINTK is not set
# CONFIG_PRINTER is not set
# CONFIG_PPDEV is not set
# CONFIG_VIRTIO_CONSOLE is not set
CONFIG_IPMI_HANDLER=y
CONFIG_IPMI_DMI_DECODE=y
CONFIG_IPMI_PLAT_DATA=y
# CONFIG_IPMI_PANIC_EVENT is not set
# CONFIG_IPMI_DEVICE_INTERFACE is not set
# CONFIG_IPMI_SI is not set
CONFIG_IPMI_SSIF=y
CONFIG_IPMI_WATCHDOG=y
# CONFIG_IPMI_POWEROFF is not set
CONFIG_IPMB_DEVICE_INTERFACE=y
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
CONFIG_HW_RANDOM_INTEL=y
CONFIG_HW_RANDOM_AMD=y
CONFIG_HW_RANDOM_VIA=y
CONFIG_HW_RANDOM_VIRTIO=y
CONFIG_APPLICOM=y
# CONFIG_MWAVE is not set
CONFIG_DEVMEM=y
CONFIG_DEVKMEM=y
CONFIG_NVRAM=y
# CONFIG_RAW_DRIVER is not set
CONFIG_DEVPORT=y
# CONFIG_HPET is not set
CONFIG_HANGCHECK_TIMER=y
CONFIG_TCG_TPM=y
CONFIG_HW_RANDOM_TPM=y
# CONFIG_TCG_TIS is not set
# CONFIG_TCG_TIS_SPI is not set
CONFIG_TCG_TIS_I2C_ATMEL=y
# CONFIG_TCG_TIS_I2C_INFINEON is not set
CONFIG_TCG_TIS_I2C_NUVOTON=y
# CONFIG_TCG_NSC is not set
CONFIG_TCG_ATMEL=y
CONFIG_TCG_INFINEON=y
CONFIG_TCG_XEN=y
CONFIG_TCG_CRB=y
# CONFIG_TCG_VTPM_PROXY is not set
CONFIG_TCG_TIS_ST33ZP24=y
# CONFIG_TCG_TIS_ST33ZP24_I2C is not set
CONFIG_TCG_TIS_ST33ZP24_SPI=y
CONFIG_TELCLOCK=y
CONFIG_XILLYBUS=y
# CONFIG_XILLYBUS_OF is not set
# end of Character devices
# CONFIG_RANDOM_TRUST_CPU is not set
CONFIG_RANDOM_TRUST_BOOTLOADER=y
#
# I2C support
#
CONFIG_I2C=y
# CONFIG_ACPI_I2C_OPREGION is not set
CONFIG_I2C_BOARDINFO=y
# CONFIG_I2C_COMPAT is not set
CONFIG_I2C_CHARDEV=y
CONFIG_I2C_MUX=y
#
# Multiplexer I2C Chip support
#
CONFIG_I2C_ARB_GPIO_CHALLENGE=y
# CONFIG_I2C_MUX_GPIO is not set
# CONFIG_I2C_MUX_GPMUX is not set
CONFIG_I2C_MUX_LTC4306=y
CONFIG_I2C_MUX_PCA9541=y
CONFIG_I2C_MUX_PCA954x=y
# CONFIG_I2C_MUX_PINCTRL is not set
CONFIG_I2C_MUX_REG=y
# CONFIG_I2C_DEMUX_PINCTRL is not set
# CONFIG_I2C_MUX_MLXCPLD is not set
# end of Multiplexer I2C Chip support
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_SMBUS=y
CONFIG_I2C_ALGOBIT=y
#
# I2C Hardware Bus support
#
#
# PC SMBus host controller drivers
#
CONFIG_I2C_ALI1535=y
# CONFIG_I2C_ALI1563 is not set
CONFIG_I2C_ALI15X3=y
CONFIG_I2C_AMD756=y
# CONFIG_I2C_AMD756_S4882 is not set
CONFIG_I2C_AMD8111=y
CONFIG_I2C_AMD_MP2=y
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
CONFIG_I2C_ISMT=y
# CONFIG_I2C_PIIX4 is not set
CONFIG_I2C_NFORCE2=y
# CONFIG_I2C_NFORCE2_S4985 is not set
CONFIG_I2C_NVIDIA_GPU=y
CONFIG_I2C_SIS5595=y
CONFIG_I2C_SIS630=y
CONFIG_I2C_SIS96X=y
CONFIG_I2C_VIA=y
CONFIG_I2C_VIAPRO=y
#
# ACPI drivers
#
CONFIG_I2C_SCMI=y
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_CBUS_GPIO is not set
CONFIG_I2C_DESIGNWARE_CORE=y
CONFIG_I2C_DESIGNWARE_PLATFORM=y
CONFIG_I2C_DESIGNWARE_SLAVE=y
CONFIG_I2C_DESIGNWARE_PCI=y
# CONFIG_I2C_DESIGNWARE_BAYTRAIL is not set
# CONFIG_I2C_EMEV2 is not set
# CONFIG_I2C_GPIO is not set
# CONFIG_I2C_KEMPLD is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
CONFIG_I2C_RK3X=y
CONFIG_I2C_SIMTEC=y
CONFIG_I2C_XILINX=y
#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_TAOS_EVM is not set
#
# Other I2C/SMBus bus drivers
#
CONFIG_I2C_MLXCPLD=y
CONFIG_I2C_CROS_EC_TUNNEL=y
# end of I2C Hardware Bus support
# CONFIG_I2C_STUB is not set
CONFIG_I2C_SLAVE=y
# CONFIG_I2C_SLAVE_EEPROM is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# end of I2C support
# CONFIG_I3C is not set
CONFIG_SPI=y
# CONFIG_SPI_DEBUG is not set
CONFIG_SPI_MASTER=y
CONFIG_SPI_MEM=y
#
# SPI Master Controller Drivers
#
# CONFIG_SPI_ALTERA is not set
CONFIG_SPI_AXI_SPI_ENGINE=y
CONFIG_SPI_BITBANG=y
CONFIG_SPI_BUTTERFLY=y
CONFIG_SPI_CADENCE=y
CONFIG_SPI_DESIGNWARE=y
# CONFIG_SPI_DW_PCI is not set
# CONFIG_SPI_DW_MMIO is not set
CONFIG_SPI_NXP_FLEXSPI=y
# CONFIG_SPI_GPIO is not set
CONFIG_SPI_LM70_LLP=y
# CONFIG_SPI_FSL_SPI is not set
# CONFIG_SPI_OC_TINY is not set
# CONFIG_SPI_PXA2XX is not set
# CONFIG_SPI_ROCKCHIP is not set
CONFIG_SPI_SC18IS602=y
CONFIG_SPI_SIFIVE=y
# CONFIG_SPI_MXIC is not set
# CONFIG_SPI_XCOMM is not set
# CONFIG_SPI_XILINX is not set
CONFIG_SPI_ZYNQMP_GQSPI=y
#
# SPI Multiplexer support
#
# CONFIG_SPI_MUX is not set
#
# SPI Protocol Masters
#
CONFIG_SPI_SPIDEV=y
# CONFIG_SPI_LOOPBACK_TEST is not set
CONFIG_SPI_TLE62X0=y
CONFIG_SPI_SLAVE=y
CONFIG_SPI_SLAVE_TIME=y
CONFIG_SPI_SLAVE_SYSTEM_CONTROL=y
CONFIG_SPMI=y
# CONFIG_HSI is not set
# CONFIG_PPS is not set
#
# PTP clock support
#
# CONFIG_PTP_1588_CLOCK is not set
#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
# end of PTP clock support
CONFIG_PINCTRL=y
CONFIG_PINMUX=y
CONFIG_PINCONF=y
CONFIG_GENERIC_PINCONF=y
CONFIG_DEBUG_PINCTRL=y
CONFIG_PINCTRL_AS3722=y
CONFIG_PINCTRL_AXP209=y
CONFIG_PINCTRL_AMD=y
# CONFIG_PINCTRL_DA9062 is not set
# CONFIG_PINCTRL_MCP23S08 is not set
# CONFIG_PINCTRL_SINGLE is not set
# CONFIG_PINCTRL_SX150X is not set
CONFIG_PINCTRL_STMFX=y
# CONFIG_PINCTRL_MAX77620 is not set
# CONFIG_PINCTRL_OCELOT is not set
# CONFIG_PINCTRL_BAYTRAIL is not set
# CONFIG_PINCTRL_CHERRYVIEW is not set
# CONFIG_PINCTRL_LYNXPOINT is not set
CONFIG_PINCTRL_MERRIFIELD=y
CONFIG_PINCTRL_INTEL=y
CONFIG_PINCTRL_BROXTON=y
# CONFIG_PINCTRL_CANNONLAKE is not set
# CONFIG_PINCTRL_CEDARFORK is not set
# CONFIG_PINCTRL_DENVERTON is not set
# CONFIG_PINCTRL_GEMINILAKE is not set
# CONFIG_PINCTRL_ICELAKE is not set
CONFIG_PINCTRL_LEWISBURG=y
CONFIG_PINCTRL_SUNRISEPOINT=y
# CONFIG_PINCTRL_TIGERLAKE is not set
CONFIG_PINCTRL_LOCHNAGAR=y
# CONFIG_PINCTRL_EQUILIBRIUM is not set
CONFIG_GPIOLIB=y
CONFIG_GPIOLIB_FASTPATH_LIMIT=512
CONFIG_OF_GPIO=y
CONFIG_GPIO_ACPI=y
CONFIG_GPIOLIB_IRQCHIP=y
# CONFIG_DEBUG_GPIO is not set
CONFIG_GPIO_SYSFS=y
CONFIG_GPIO_GENERIC=y
CONFIG_GPIO_MAX730X=y
#
# Memory mapped GPIO drivers
#
CONFIG_GPIO_74XX_MMIO=y
# CONFIG_GPIO_ALTERA is not set
CONFIG_GPIO_AMDPT=y
# CONFIG_GPIO_CADENCE is not set
CONFIG_GPIO_DWAPB=y
# CONFIG_GPIO_EXAR is not set
CONFIG_GPIO_FTGPIO010=y
CONFIG_GPIO_GENERIC_PLATFORM=y
CONFIG_GPIO_GRGPIO=y
CONFIG_GPIO_HLWD=y
CONFIG_GPIO_ICH=y
CONFIG_GPIO_LOGICVC=y
CONFIG_GPIO_MB86S7X=y
# CONFIG_GPIO_MENZ127 is not set
# CONFIG_GPIO_SAMA5D2_PIOBU is not set
# CONFIG_GPIO_SIFIVE is not set
CONFIG_GPIO_SYSCON=y
CONFIG_GPIO_VX855=y
CONFIG_GPIO_XILINX=y
CONFIG_GPIO_AMD_FCH=y
# end of Memory mapped GPIO drivers
#
# Port-mapped I/O GPIO drivers
#
# CONFIG_GPIO_104_DIO_48E is not set
CONFIG_GPIO_104_IDIO_16=y
# CONFIG_GPIO_104_IDI_48 is not set
CONFIG_GPIO_F7188X=y
# CONFIG_GPIO_GPIO_MM is not set
# CONFIG_GPIO_IT87 is not set
# CONFIG_GPIO_SCH is not set
CONFIG_GPIO_SCH311X=y
CONFIG_GPIO_WINBOND=y
# CONFIG_GPIO_WS16C48 is not set
# end of Port-mapped I/O GPIO drivers
#
# I2C GPIO expanders
#
# CONFIG_GPIO_ADP5588 is not set
CONFIG_GPIO_ADNP=y
# CONFIG_GPIO_GW_PLD is not set
# CONFIG_GPIO_MAX7300 is not set
# CONFIG_GPIO_MAX732X is not set
CONFIG_GPIO_PCA953X=y
CONFIG_GPIO_PCA953X_IRQ=y
# CONFIG_GPIO_PCF857X is not set
CONFIG_GPIO_TPIC2810=y
# end of I2C GPIO expanders
#
# MFD GPIO expanders
#
CONFIG_GPIO_ARIZONA=y
CONFIG_GPIO_BD70528=y
CONFIG_GPIO_BD71828=y
CONFIG_GPIO_BD9571MWV=y
# CONFIG_GPIO_CRYSTAL_COVE is not set
# CONFIG_GPIO_DA9052 is not set
# CONFIG_GPIO_DA9055 is not set
# CONFIG_GPIO_KEMPLD is not set
CONFIG_GPIO_LP3943=y
CONFIG_GPIO_LP87565=y
CONFIG_GPIO_MAX77620=y
CONFIG_GPIO_MAX77650=y
CONFIG_GPIO_MSIC=y
CONFIG_GPIO_RC5T583=y
CONFIG_GPIO_STMPE=y
# CONFIG_GPIO_TC3589X is not set
CONFIG_GPIO_TPS65218=y
# CONFIG_GPIO_TPS6586X is not set
CONFIG_GPIO_TPS65910=y
CONFIG_GPIO_TPS65912=y
# CONFIG_GPIO_TPS68470 is not set
CONFIG_GPIO_TQMX86=y
CONFIG_GPIO_TWL4030=y
CONFIG_GPIO_TWL6040=y
CONFIG_GPIO_WHISKEY_COVE=y
# CONFIG_GPIO_WM831X is not set
CONFIG_GPIO_WM8350=y
# end of MFD GPIO expanders
#
# PCI GPIO expanders
#
CONFIG_GPIO_AMD8111=y
# CONFIG_GPIO_BT8XX is not set
CONFIG_GPIO_INTEL_MID=y
# CONFIG_GPIO_MERRIFIELD is not set
CONFIG_GPIO_ML_IOH=y
CONFIG_GPIO_PCI_IDIO_16=y
# CONFIG_GPIO_PCIE_IDIO_24 is not set
CONFIG_GPIO_RDC321X=y
CONFIG_GPIO_SODAVILLE=y
# end of PCI GPIO expanders
#
# SPI GPIO expanders
#
CONFIG_GPIO_74X164=y
CONFIG_GPIO_MAX3191X=y
CONFIG_GPIO_MAX7301=y
# CONFIG_GPIO_MC33880 is not set
# CONFIG_GPIO_PISOSR is not set
CONFIG_GPIO_XRA1403=y
# end of SPI GPIO expanders
CONFIG_GPIO_MOCKUP=y
CONFIG_W1=y
#
# 1-wire Bus Masters
#
CONFIG_W1_MASTER_MATROX=y
CONFIG_W1_MASTER_DS2482=y
CONFIG_W1_MASTER_DS1WM=y
# CONFIG_W1_MASTER_GPIO is not set
CONFIG_W1_MASTER_SGI=y
# end of 1-wire Bus Masters
#
# 1-wire Slaves
#
CONFIG_W1_SLAVE_THERM=y
# CONFIG_W1_SLAVE_SMEM is not set
# CONFIG_W1_SLAVE_DS2405 is not set
CONFIG_W1_SLAVE_DS2408=y
CONFIG_W1_SLAVE_DS2408_READBACK=y
# CONFIG_W1_SLAVE_DS2413 is not set
CONFIG_W1_SLAVE_DS2406=y
CONFIG_W1_SLAVE_DS2423=y
# CONFIG_W1_SLAVE_DS2805 is not set
# CONFIG_W1_SLAVE_DS2430 is not set
CONFIG_W1_SLAVE_DS2431=y
CONFIG_W1_SLAVE_DS2433=y
# CONFIG_W1_SLAVE_DS2433_CRC is not set
CONFIG_W1_SLAVE_DS2438=y
CONFIG_W1_SLAVE_DS250X=y
CONFIG_W1_SLAVE_DS2780=y
CONFIG_W1_SLAVE_DS2781=y
CONFIG_W1_SLAVE_DS28E04=y
CONFIG_W1_SLAVE_DS28E17=y
# end of 1-wire Slaves
CONFIG_POWER_AVS=y
# CONFIG_QCOM_CPR is not set
# CONFIG_POWER_RESET is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_POWER_SUPPLY_HWMON is not set
# CONFIG_PDA_POWER is not set
CONFIG_GENERIC_ADC_BATTERY=y
CONFIG_MAX8925_POWER=y
# CONFIG_WM831X_BACKUP is not set
CONFIG_WM831X_POWER=y
CONFIG_WM8350_POWER=y
# CONFIG_TEST_POWER is not set
CONFIG_CHARGER_ADP5061=y
# CONFIG_BATTERY_DS2760 is not set
CONFIG_BATTERY_DS2780=y
# CONFIG_BATTERY_DS2781 is not set
CONFIG_BATTERY_DS2782=y
CONFIG_BATTERY_LEGO_EV3=y
CONFIG_BATTERY_SBS=y
CONFIG_CHARGER_SBS=y
CONFIG_MANAGER_SBS=y
# CONFIG_BATTERY_BQ27XXX is not set
CONFIG_BATTERY_DA9030=y
CONFIG_BATTERY_DA9052=y
CONFIG_BATTERY_DA9150=y
CONFIG_AXP20X_POWER=y
CONFIG_AXP288_FUEL_GAUGE=y
CONFIG_BATTERY_MAX17040=y
CONFIG_BATTERY_MAX17042=y
# CONFIG_BATTERY_MAX1721X is not set
CONFIG_BATTERY_TWL4030_MADC=y
# CONFIG_CHARGER_PCF50633 is not set
# CONFIG_BATTERY_RX51 is not set
CONFIG_CHARGER_MAX8903=y
# CONFIG_CHARGER_TWL4030 is not set
# CONFIG_CHARGER_LP8727 is not set
CONFIG_CHARGER_GPIO=y
# CONFIG_CHARGER_MANAGER is not set
CONFIG_CHARGER_LT3651=y
# CONFIG_CHARGER_MAX14577 is not set
# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
CONFIG_CHARGER_MAX77650=y
# CONFIG_CHARGER_MAX77693 is not set
CONFIG_CHARGER_BQ2415X=y
CONFIG_CHARGER_BQ24190=y
CONFIG_CHARGER_BQ24257=y
CONFIG_CHARGER_BQ24735=y
CONFIG_CHARGER_BQ25890=y
CONFIG_CHARGER_SMB347=y
CONFIG_CHARGER_TPS65090=y
CONFIG_CHARGER_TPS65217=y
CONFIG_BATTERY_GAUGE_LTC2941=y
CONFIG_BATTERY_GOLDFISH=y
# CONFIG_BATTERY_RT5033 is not set
# CONFIG_CHARGER_RT9455 is not set
CONFIG_CHARGER_CROS_USBPD=y
CONFIG_CHARGER_UCS1002=y
CONFIG_CHARGER_BD70528=y
CONFIG_HWMON=y
CONFIG_HWMON_VID=y
CONFIG_HWMON_DEBUG_CHIP=y
#
# Native drivers
#
CONFIG_SENSORS_ABITUGURU=y
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7314 is not set
CONFIG_SENSORS_AD7414=y
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
CONFIG_SENSORS_ADM1025=y
CONFIG_SENSORS_ADM1026=y
CONFIG_SENSORS_ADM1029=y
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM1177 is not set
# CONFIG_SENSORS_ADM9240 is not set
CONFIG_SENSORS_ADT7X10=y
CONFIG_SENSORS_ADT7310=y
CONFIG_SENSORS_ADT7410=y
CONFIG_SENSORS_ADT7411=y
CONFIG_SENSORS_ADT7462=y
CONFIG_SENSORS_ADT7470=y
# CONFIG_SENSORS_ADT7475 is not set
CONFIG_SENSORS_AS370=y
CONFIG_SENSORS_ASC7621=y
# CONFIG_SENSORS_AXI_FAN_CONTROL is not set
# CONFIG_SENSORS_K8TEMP is not set
CONFIG_SENSORS_K10TEMP=y
CONFIG_SENSORS_FAM15H_POWER=y
# CONFIG_SENSORS_APPLESMC is not set
CONFIG_SENSORS_ASB100=y
CONFIG_SENSORS_ASPEED=y
CONFIG_SENSORS_ATXP1=y
CONFIG_SENSORS_DS620=y
# CONFIG_SENSORS_DS1621 is not set
CONFIG_SENSORS_DELL_SMM=y
# CONFIG_SENSORS_DA9052_ADC is not set
# CONFIG_SENSORS_DA9055 is not set
CONFIG_SENSORS_I5K_AMB=y
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
CONFIG_SENSORS_F75375S=y
CONFIG_SENSORS_FSCHMD=y
CONFIG_SENSORS_FTSTEUTATES=y
CONFIG_SENSORS_GL518SM=y
CONFIG_SENSORS_GL520SM=y
CONFIG_SENSORS_G760A=y
CONFIG_SENSORS_G762=y
CONFIG_SENSORS_GPIO_FAN=y
# CONFIG_SENSORS_HIH6130 is not set
# CONFIG_SENSORS_IBMAEM is not set
# CONFIG_SENSORS_IBMPEX is not set
CONFIG_SENSORS_IIO_HWMON=y
# CONFIG_SENSORS_I5500 is not set
CONFIG_SENSORS_CORETEMP=y
CONFIG_SENSORS_IT87=y
CONFIG_SENSORS_JC42=y
# CONFIG_SENSORS_POWR1220 is not set
CONFIG_SENSORS_LINEAGE=y
CONFIG_SENSORS_LOCHNAGAR=y
# CONFIG_SENSORS_LTC2945 is not set
CONFIG_SENSORS_LTC2947=y
# CONFIG_SENSORS_LTC2947_I2C is not set
CONFIG_SENSORS_LTC2947_SPI=y
# CONFIG_SENSORS_LTC2990 is not set
# CONFIG_SENSORS_LTC4151 is not set
CONFIG_SENSORS_LTC4215=y
CONFIG_SENSORS_LTC4222=y
# CONFIG_SENSORS_LTC4245 is not set
CONFIG_SENSORS_LTC4260=y
CONFIG_SENSORS_LTC4261=y
CONFIG_SENSORS_MAX1111=y
# CONFIG_SENSORS_MAX16065 is not set
CONFIG_SENSORS_MAX1619=y
CONFIG_SENSORS_MAX1668=y
CONFIG_SENSORS_MAX197=y
CONFIG_SENSORS_MAX31722=y
CONFIG_SENSORS_MAX31730=y
# CONFIG_SENSORS_MAX6621 is not set
CONFIG_SENSORS_MAX6639=y
CONFIG_SENSORS_MAX6642=y
# CONFIG_SENSORS_MAX6650 is not set
CONFIG_SENSORS_MAX6697=y
CONFIG_SENSORS_MAX31790=y
CONFIG_SENSORS_MCP3021=y
# CONFIG_SENSORS_TC654 is not set
CONFIG_SENSORS_MENF21BMC_HWMON=y
# CONFIG_SENSORS_ADCXX is not set
# CONFIG_SENSORS_LM63 is not set
CONFIG_SENSORS_LM70=y
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
CONFIG_SENSORS_LM77=y
CONFIG_SENSORS_LM78=y
CONFIG_SENSORS_LM80=y
CONFIG_SENSORS_LM83=y
CONFIG_SENSORS_LM85=y
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
CONFIG_SENSORS_LM92=y
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LM95234 is not set
# CONFIG_SENSORS_LM95241 is not set
CONFIG_SENSORS_LM95245=y
CONFIG_SENSORS_PC87360=y
CONFIG_SENSORS_PC87427=y
CONFIG_SENSORS_NTC_THERMISTOR=y
# CONFIG_SENSORS_NCT6683 is not set
CONFIG_SENSORS_NCT6775=y
# CONFIG_SENSORS_NCT7802 is not set
CONFIG_SENSORS_NCT7904=y
CONFIG_SENSORS_NPCM7XX=y
CONFIG_SENSORS_PCF8591=y
CONFIG_PMBUS=y
CONFIG_SENSORS_PMBUS=y
CONFIG_SENSORS_ADM1275=y
# CONFIG_SENSORS_BEL_PFE is not set
# CONFIG_SENSORS_IBM_CFFPS is not set
CONFIG_SENSORS_INSPUR_IPSPS=y
# CONFIG_SENSORS_IR35221 is not set
CONFIG_SENSORS_IR38064=y
CONFIG_SENSORS_IRPS5401=y
CONFIG_SENSORS_ISL68137=y
CONFIG_SENSORS_LM25066=y
CONFIG_SENSORS_LTC2978=y
CONFIG_SENSORS_LTC2978_REGULATOR=y
CONFIG_SENSORS_LTC3815=y
# CONFIG_SENSORS_MAX16064 is not set
# CONFIG_SENSORS_MAX20730 is not set
# CONFIG_SENSORS_MAX20751 is not set
CONFIG_SENSORS_MAX31785=y
CONFIG_SENSORS_MAX34440=y
# CONFIG_SENSORS_MAX8688 is not set
CONFIG_SENSORS_PXE1610=y
# CONFIG_SENSORS_TPS40422 is not set
CONFIG_SENSORS_TPS53679=y
CONFIG_SENSORS_UCD9000=y
CONFIG_SENSORS_UCD9200=y
CONFIG_SENSORS_XDPE122=y
CONFIG_SENSORS_ZL6100=y
CONFIG_SENSORS_SHT15=y
CONFIG_SENSORS_SHT21=y
CONFIG_SENSORS_SHT3x=y
# CONFIG_SENSORS_SHTC1 is not set
# CONFIG_SENSORS_SIS5595 is not set
CONFIG_SENSORS_DME1737=y
CONFIG_SENSORS_EMC1403=y
CONFIG_SENSORS_EMC2103=y
CONFIG_SENSORS_EMC6W201=y
CONFIG_SENSORS_SMSC47M1=y
CONFIG_SENSORS_SMSC47M192=y
# CONFIG_SENSORS_SMSC47B397 is not set
CONFIG_SENSORS_SCH56XX_COMMON=y
CONFIG_SENSORS_SCH5627=y
CONFIG_SENSORS_SCH5636=y
CONFIG_SENSORS_STTS751=y
CONFIG_SENSORS_SMM665=y
# CONFIG_SENSORS_ADC128D818 is not set
CONFIG_SENSORS_ADS7828=y
CONFIG_SENSORS_ADS7871=y
CONFIG_SENSORS_AMC6821=y
CONFIG_SENSORS_INA209=y
CONFIG_SENSORS_INA2XX=y
CONFIG_SENSORS_INA3221=y
CONFIG_SENSORS_TC74=y
CONFIG_SENSORS_THMC50=y
CONFIG_SENSORS_TMP102=y
# CONFIG_SENSORS_TMP103 is not set
CONFIG_SENSORS_TMP108=y
# CONFIG_SENSORS_TMP401 is not set
CONFIG_SENSORS_TMP421=y
# CONFIG_SENSORS_TMP513 is not set
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
CONFIG_SENSORS_VT8231=y
# CONFIG_SENSORS_W83773G is not set
CONFIG_SENSORS_W83781D=y
# CONFIG_SENSORS_W83791D is not set
CONFIG_SENSORS_W83792D=y
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
CONFIG_SENSORS_W83L785TS=y
CONFIG_SENSORS_W83L786NG=y
# CONFIG_SENSORS_W83627HF is not set
CONFIG_SENSORS_W83627EHF=y
CONFIG_SENSORS_WM831X=y
CONFIG_SENSORS_WM8350=y
#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
CONFIG_THERMAL=y
# CONFIG_THERMAL_STATISTICS is not set
CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
CONFIG_THERMAL_HWMON=y
# CONFIG_THERMAL_OF is not set
CONFIG_THERMAL_WRITABLE_TRIPS=y
# CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE is not set
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE=y
CONFIG_THERMAL_GOV_FAIR_SHARE=y
CONFIG_THERMAL_GOV_STEP_WISE=y
CONFIG_THERMAL_GOV_BANG_BANG=y
CONFIG_THERMAL_GOV_USER_SPACE=y
CONFIG_CLOCK_THERMAL=y
CONFIG_DEVFREQ_THERMAL=y
# CONFIG_THERMAL_EMULATION is not set
CONFIG_THERMAL_MMIO=y
CONFIG_MAX77620_THERMAL=y
# CONFIG_DA9062_THERMAL is not set
#
# Intel thermal drivers
#
# CONFIG_INTEL_POWERCLAMP is not set
CONFIG_INTEL_SOC_DTS_IOSF_CORE=y
CONFIG_INTEL_SOC_DTS_THERMAL=y
#
# ACPI INT340X thermal drivers
#
# CONFIG_INT340X_THERMAL is not set
# end of ACPI INT340X thermal drivers
CONFIG_INTEL_BXT_PMIC_THERMAL=y
CONFIG_INTEL_PCH_THERMAL=y
# end of Intel thermal drivers
# CONFIG_GENERIC_ADC_THERMAL is not set
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
# CONFIG_WATCHDOG_NOWAYOUT is not set
# CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED is not set
CONFIG_WATCHDOG_OPEN_TIMEOUT=0
# CONFIG_WATCHDOG_SYSFS is not set
#
# Watchdog Pretimeout Governors
#
CONFIG_WATCHDOG_PRETIMEOUT_GOV=y
CONFIG_WATCHDOG_PRETIMEOUT_GOV_SEL=m
CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP=y
CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC=y
CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP=y
# CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC is not set
#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_BD70528_WATCHDOG is not set
# CONFIG_DA9052_WATCHDOG is not set
CONFIG_DA9055_WATCHDOG=y
CONFIG_DA9063_WATCHDOG=y
CONFIG_DA9062_WATCHDOG=y
CONFIG_GPIO_WATCHDOG=y
# CONFIG_GPIO_WATCHDOG_ARCH_INITCALL is not set
# CONFIG_MENF21BMC_WATCHDOG is not set
# CONFIG_MENZ069_WATCHDOG is not set
CONFIG_WDAT_WDT=y
# CONFIG_WM831X_WATCHDOG is not set
CONFIG_WM8350_WATCHDOG=y
# CONFIG_XILINX_WATCHDOG is not set
CONFIG_ZIIRAVE_WATCHDOG=y
# CONFIG_RAVE_SP_WATCHDOG is not set
CONFIG_CADENCE_WATCHDOG=y
CONFIG_DW_WATCHDOG=y
# CONFIG_RN5T618_WATCHDOG is not set
# CONFIG_TWL4030_WATCHDOG is not set
# CONFIG_MAX63XX_WATCHDOG is not set
CONFIG_MAX77620_WATCHDOG=y
# CONFIG_RETU_WATCHDOG is not set
CONFIG_STPMIC1_WATCHDOG=y
# CONFIG_ACQUIRE_WDT is not set
CONFIG_ADVANTECH_WDT=y
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
CONFIG_EBC_C384_WDT=y
CONFIG_F71808E_WDT=y
CONFIG_SP5100_TCO=y
CONFIG_SBC_FITPC2_WATCHDOG=y
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
CONFIG_IBMASR=y
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
CONFIG_INTEL_SCU_WATCHDOG=y
CONFIG_INTEL_MID_WATCHDOG=y
CONFIG_ITCO_WDT=y
CONFIG_ITCO_VENDOR_SUPPORT=y
CONFIG_IT8712F_WDT=y
CONFIG_IT87_WDT=y
CONFIG_HP_WATCHDOG=y
# CONFIG_HPWDT_NMI_DECODING is not set
# CONFIG_KEMPLD_WDT is not set
CONFIG_SC1200_WDT=y
# CONFIG_PC87413_WDT is not set
CONFIG_NV_TCO=y
CONFIG_60XX_WDT=y
# CONFIG_CPU5_WDT is not set
CONFIG_SMSC_SCH311X_WDT=y
# CONFIG_SMSC37B787_WDT is not set
CONFIG_TQMX86_WDT=y
CONFIG_VIA_WDT=y
CONFIG_W83627HF_WDT=y
CONFIG_W83877F_WDT=y
# CONFIG_W83977F_WDT is not set
CONFIG_MACHZ_WDT=y
CONFIG_SBC_EPX_C3_WATCHDOG=y
CONFIG_INTEL_MEI_WDT=y
# CONFIG_NI903X_WDT is not set
CONFIG_NIC7018_WDT=y
CONFIG_MEN_A21_WDT=y
CONFIG_XEN_WDT=y
#
# PCI-based Watchdog Cards
#
CONFIG_PCIPCWATCHDOG=y
# CONFIG_WDTPCI is not set
CONFIG_SSB_POSSIBLE=y
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
CONFIG_BCMA=y
CONFIG_BCMA_HOST_PCI_POSSIBLE=y
CONFIG_BCMA_HOST_PCI=y
CONFIG_BCMA_HOST_SOC=y
CONFIG_BCMA_DRIVER_PCI=y
CONFIG_BCMA_SFLASH=y
CONFIG_BCMA_DRIVER_GMAC_CMN=y
CONFIG_BCMA_DRIVER_GPIO=y
# CONFIG_BCMA_DEBUG is not set
#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
# CONFIG_MFD_ACT8945A is not set
CONFIG_MFD_AS3711=y
CONFIG_MFD_AS3722=y
# CONFIG_PMIC_ADP5520 is not set
CONFIG_MFD_AAT2870_CORE=y
CONFIG_MFD_ATMEL_FLEXCOM=y
CONFIG_MFD_ATMEL_HLCDC=y
# CONFIG_MFD_BCM590XX is not set
CONFIG_MFD_BD9571MWV=y
CONFIG_MFD_AXP20X=y
CONFIG_MFD_AXP20X_I2C=y
CONFIG_MFD_CROS_EC_DEV=y
# CONFIG_MFD_MADERA is not set
CONFIG_PMIC_DA903X=y
CONFIG_PMIC_DA9052=y
# CONFIG_MFD_DA9052_SPI is not set
CONFIG_MFD_DA9052_I2C=y
CONFIG_MFD_DA9055=y
CONFIG_MFD_DA9062=y
CONFIG_MFD_DA9063=y
CONFIG_MFD_DA9150=y
# CONFIG_MFD_MC13XXX_SPI is not set
# CONFIG_MFD_MC13XXX_I2C is not set
CONFIG_MFD_HI6421_PMIC=y
CONFIG_HTC_PASIC3=y
CONFIG_HTC_I2CPLD=y
CONFIG_MFD_INTEL_QUARK_I2C_GPIO=y
CONFIG_LPC_ICH=y
CONFIG_LPC_SCH=y
CONFIG_INTEL_SOC_PMIC=y
CONFIG_INTEL_SOC_PMIC_BXTWC=y
# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
CONFIG_INTEL_SOC_PMIC_CHTDC_TI=y
# CONFIG_INTEL_SOC_PMIC_MRFLD is not set
CONFIG_MFD_INTEL_LPSS=y
CONFIG_MFD_INTEL_LPSS_ACPI=y
CONFIG_MFD_INTEL_LPSS_PCI=y
CONFIG_MFD_INTEL_MSIC=y
# CONFIG_MFD_IQS62X is not set
# CONFIG_MFD_JANZ_CMODIO is not set
CONFIG_MFD_KEMPLD=y
CONFIG_MFD_88PM800=y
CONFIG_MFD_88PM805=y
# CONFIG_MFD_88PM860X is not set
CONFIG_MFD_MAX14577=y
CONFIG_MFD_MAX77620=y
CONFIG_MFD_MAX77650=y
CONFIG_MFD_MAX77686=y
CONFIG_MFD_MAX77693=y
CONFIG_MFD_MAX77843=y
CONFIG_MFD_MAX8907=y
CONFIG_MFD_MAX8925=y
CONFIG_MFD_MAX8997=y
# CONFIG_MFD_MAX8998 is not set
CONFIG_MFD_MT6397=y
CONFIG_MFD_MENF21BMC=y
CONFIG_EZX_PCAP=y
# CONFIG_MFD_CPCAP is not set
CONFIG_MFD_RETU=y
CONFIG_MFD_PCF50633=y
CONFIG_PCF50633_ADC=y
CONFIG_PCF50633_GPIO=y
CONFIG_MFD_RDC321X=y
CONFIG_MFD_RT5033=y
CONFIG_MFD_RC5T583=y
# CONFIG_MFD_RK808 is not set
CONFIG_MFD_RN5T618=y
CONFIG_MFD_SEC_CORE=y
# CONFIG_MFD_SI476X_CORE is not set
CONFIG_MFD_SM501=y
# CONFIG_MFD_SM501_GPIO is not set
# CONFIG_MFD_SKY81452 is not set
# CONFIG_MFD_SMSC is not set
# CONFIG_ABX500_CORE is not set
CONFIG_MFD_STMPE=y
#
# STMicroelectronics STMPE Interface Drivers
#
CONFIG_STMPE_I2C=y
CONFIG_STMPE_SPI=y
# end of STMicroelectronics STMPE Interface Drivers
CONFIG_MFD_SYSCON=y
# CONFIG_MFD_TI_AM335X_TSCADC is not set
CONFIG_MFD_LP3943=y
CONFIG_MFD_LP8788=y
CONFIG_MFD_TI_LMU=y
# CONFIG_MFD_PALMAS is not set
CONFIG_TPS6105X=y
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65086 is not set
CONFIG_MFD_TPS65090=y
CONFIG_MFD_TPS65217=y
CONFIG_MFD_TPS68470=y
# CONFIG_MFD_TI_LP873X is not set
CONFIG_MFD_TI_LP87565=y
CONFIG_MFD_TPS65218=y
CONFIG_MFD_TPS6586X=y
CONFIG_MFD_TPS65910=y
CONFIG_MFD_TPS65912=y
# CONFIG_MFD_TPS65912_I2C is not set
CONFIG_MFD_TPS65912_SPI=y
# CONFIG_MFD_TPS80031 is not set
CONFIG_TWL4030_CORE=y
# CONFIG_MFD_TWL4030_AUDIO is not set
CONFIG_TWL6040_CORE=y
CONFIG_MFD_WL1273_CORE=y
# CONFIG_MFD_LM3533 is not set
CONFIG_MFD_TC3589X=y
CONFIG_MFD_TQMX86=y
CONFIG_MFD_VX855=y
CONFIG_MFD_LOCHNAGAR=y
CONFIG_MFD_ARIZONA=y
CONFIG_MFD_ARIZONA_I2C=y
# CONFIG_MFD_ARIZONA_SPI is not set
CONFIG_MFD_CS47L24=y
CONFIG_MFD_WM5102=y
CONFIG_MFD_WM5110=y
CONFIG_MFD_WM8997=y
# CONFIG_MFD_WM8998 is not set
# CONFIG_MFD_WM8400 is not set
CONFIG_MFD_WM831X=y
# CONFIG_MFD_WM831X_I2C is not set
CONFIG_MFD_WM831X_SPI=y
CONFIG_MFD_WM8350=y
CONFIG_MFD_WM8350_I2C=y
# CONFIG_MFD_WM8994 is not set
CONFIG_MFD_ROHM_BD718XX=y
CONFIG_MFD_ROHM_BD70528=y
CONFIG_MFD_ROHM_BD71828=y
CONFIG_MFD_STPMIC1=y
CONFIG_MFD_STMFX=y
# CONFIG_MFD_WCD934X is not set
CONFIG_RAVE_SP_CORE=y
# end of Multifunction device drivers
CONFIG_REGULATOR=y
# CONFIG_REGULATOR_DEBUG is not set
CONFIG_REGULATOR_FIXED_VOLTAGE=y
CONFIG_REGULATOR_VIRTUAL_CONSUMER=y
CONFIG_REGULATOR_USERSPACE_CONSUMER=y
# CONFIG_REGULATOR_88PG86X is not set
CONFIG_REGULATOR_88PM800=y
CONFIG_REGULATOR_ACT8865=y
# CONFIG_REGULATOR_AD5398 is not set
CONFIG_REGULATOR_AAT2870=y
CONFIG_REGULATOR_AS3711=y
CONFIG_REGULATOR_AS3722=y
CONFIG_REGULATOR_AXP20X=y
# CONFIG_REGULATOR_BD70528 is not set
CONFIG_REGULATOR_BD71828=y
CONFIG_REGULATOR_BD718XX=y
CONFIG_REGULATOR_BD9571MWV=y
CONFIG_REGULATOR_DA903X=y
CONFIG_REGULATOR_DA9052=y
# CONFIG_REGULATOR_DA9055 is not set
CONFIG_REGULATOR_DA9062=y
CONFIG_REGULATOR_DA9063=y
CONFIG_REGULATOR_DA9210=y
CONFIG_REGULATOR_DA9211=y
CONFIG_REGULATOR_FAN53555=y
CONFIG_REGULATOR_GPIO=y
# CONFIG_REGULATOR_HI6421 is not set
# CONFIG_REGULATOR_HI6421V530 is not set
CONFIG_REGULATOR_ISL9305=y
CONFIG_REGULATOR_ISL6271A=y
# CONFIG_REGULATOR_LM363X is not set
# CONFIG_REGULATOR_LOCHNAGAR is not set
CONFIG_REGULATOR_LP3971=y
# CONFIG_REGULATOR_LP3972 is not set
# CONFIG_REGULATOR_LP872X is not set
CONFIG_REGULATOR_LP8755=y
# CONFIG_REGULATOR_LP87565 is not set
CONFIG_REGULATOR_LP8788=y
# CONFIG_REGULATOR_LTC3589 is not set
# CONFIG_REGULATOR_LTC3676 is not set
# CONFIG_REGULATOR_MAX14577 is not set
CONFIG_REGULATOR_MAX1586=y
CONFIG_REGULATOR_MAX77620=y
CONFIG_REGULATOR_MAX77650=y
CONFIG_REGULATOR_MAX8649=y
CONFIG_REGULATOR_MAX8660=y
CONFIG_REGULATOR_MAX8907=y
CONFIG_REGULATOR_MAX8925=y
CONFIG_REGULATOR_MAX8952=y
# CONFIG_REGULATOR_MAX8997 is not set
CONFIG_REGULATOR_MAX77686=y
# CONFIG_REGULATOR_MAX77693 is not set
# CONFIG_REGULATOR_MAX77802 is not set
CONFIG_REGULATOR_MCP16502=y
# CONFIG_REGULATOR_MP5416 is not set
# CONFIG_REGULATOR_MP8859 is not set
# CONFIG_REGULATOR_MP886X is not set
CONFIG_REGULATOR_MPQ7920=y
# CONFIG_REGULATOR_MT6311 is not set
CONFIG_REGULATOR_MT6323=y
# CONFIG_REGULATOR_MT6397 is not set
CONFIG_REGULATOR_PCAP=y
CONFIG_REGULATOR_PCF50633=y
CONFIG_REGULATOR_PFUZE100=y
# CONFIG_REGULATOR_PV88060 is not set
CONFIG_REGULATOR_PV88080=y
CONFIG_REGULATOR_PV88090=y
CONFIG_REGULATOR_QCOM_SPMI=y
CONFIG_REGULATOR_RC5T583=y
# CONFIG_REGULATOR_RN5T618 is not set
CONFIG_REGULATOR_ROHM=y
# CONFIG_REGULATOR_RT5033 is not set
CONFIG_REGULATOR_S2MPA01=y
# CONFIG_REGULATOR_S2MPS11 is not set
CONFIG_REGULATOR_S5M8767=y
# CONFIG_REGULATOR_SLG51000 is not set
# CONFIG_REGULATOR_STPMIC1 is not set
CONFIG_REGULATOR_SY8106A=y
CONFIG_REGULATOR_SY8824X=y
CONFIG_REGULATOR_TPS51632=y
# CONFIG_REGULATOR_TPS6105X is not set
CONFIG_REGULATOR_TPS62360=y
CONFIG_REGULATOR_TPS65023=y
# CONFIG_REGULATOR_TPS6507X is not set
# CONFIG_REGULATOR_TPS65090 is not set
# CONFIG_REGULATOR_TPS65132 is not set
CONFIG_REGULATOR_TPS65217=y
CONFIG_REGULATOR_TPS65218=y
CONFIG_REGULATOR_TPS6524X=y
# CONFIG_REGULATOR_TPS6586X is not set
# CONFIG_REGULATOR_TPS65910 is not set
CONFIG_REGULATOR_TPS65912=y
CONFIG_REGULATOR_TWL4030=y
# CONFIG_REGULATOR_VCTRL is not set
# CONFIG_REGULATOR_WM831X is not set
CONFIG_REGULATOR_WM8350=y
CONFIG_RC_CORE=m
CONFIG_RC_MAP=m
CONFIG_LIRC=y
CONFIG_RC_DECODERS=y
# CONFIG_IR_NEC_DECODER is not set
# CONFIG_IR_RC5_DECODER is not set
# CONFIG_IR_RC6_DECODER is not set
# CONFIG_IR_JVC_DECODER is not set
# CONFIG_IR_SONY_DECODER is not set
# CONFIG_IR_SANYO_DECODER is not set
CONFIG_IR_SHARP_DECODER=m
# CONFIG_IR_MCE_KBD_DECODER is not set
# CONFIG_IR_XMP_DECODER is not set
CONFIG_IR_IMON_DECODER=m
# CONFIG_IR_RCMM_DECODER is not set
CONFIG_RC_DEVICES=y
# CONFIG_RC_ATI_REMOTE is not set
# CONFIG_IR_ENE is not set
# CONFIG_IR_HIX5HD2 is not set
# CONFIG_IR_IMON is not set
# CONFIG_IR_IMON_RAW is not set
# CONFIG_IR_MCEUSB is not set
# CONFIG_IR_ITE_CIR is not set
# CONFIG_IR_FINTEK is not set
# CONFIG_IR_NUVOTON is not set
# CONFIG_IR_REDRAT3 is not set
# CONFIG_IR_SPI is not set
# CONFIG_IR_STREAMZAP is not set
# CONFIG_IR_WINBOND_CIR is not set
# CONFIG_IR_IGORPLUGUSB is not set
# CONFIG_IR_IGUANA is not set
# CONFIG_IR_TTUSBIR is not set
CONFIG_RC_LOOPBACK=m
# CONFIG_IR_GPIO_CIR is not set
# CONFIG_IR_GPIO_TX is not set
# CONFIG_IR_SERIAL is not set
# CONFIG_IR_SIR is not set
# CONFIG_RC_XBOX_DVD is not set
# CONFIG_MEDIA_SUPPORT is not set
#
# Graphics support
#
# CONFIG_AGP is not set
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
CONFIG_VGA_SWITCHEROO=y
# CONFIG_DRM is not set
#
# ARM devices
#
# end of ARM devices
# CONFIG_DRM_XEN is not set
#
# Frame buffer Devices
#
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_DDC=y
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_HECUBA=y
CONFIG_FB_SVGALIB=y
CONFIG_FB_BACKLIGHT=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
#
# Frame buffer hardware drivers
#
CONFIG_FB_CIRRUS=y
CONFIG_FB_PM2=y
# CONFIG_FB_PM2_FIFO_DISCONNECT is not set
# CONFIG_FB_CYBER2000 is not set
CONFIG_FB_ARC=y
CONFIG_FB_ASILIANT=y
CONFIG_FB_IMSTT=y
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_VESA is not set
# CONFIG_FB_EFI is not set
CONFIG_FB_N411=y
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
CONFIG_FB_S1D13XXX=y
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
CONFIG_FB_I740=y
CONFIG_FB_LE80578=y
CONFIG_FB_CARILLO_RANCH=y
# CONFIG_FB_MATROX is not set
CONFIG_FB_RADEON=y
# CONFIG_FB_RADEON_I2C is not set
CONFIG_FB_RADEON_BACKLIGHT=y
CONFIG_FB_RADEON_DEBUG=y
CONFIG_FB_ATY128=y
# CONFIG_FB_ATY128_BACKLIGHT is not set
CONFIG_FB_ATY=y
CONFIG_FB_ATY_CT=y
CONFIG_FB_ATY_GENERIC_LCD=y
CONFIG_FB_ATY_GX=y
# CONFIG_FB_ATY_BACKLIGHT is not set
CONFIG_FB_S3=y
# CONFIG_FB_S3_DDC is not set
CONFIG_FB_SAVAGE=y
# CONFIG_FB_SAVAGE_I2C is not set
# CONFIG_FB_SAVAGE_ACCEL is not set
CONFIG_FB_SIS=y
CONFIG_FB_SIS_300=y
CONFIG_FB_SIS_315=y
CONFIG_FB_VIA=y
CONFIG_FB_VIA_DIRECT_PROCFS=y
CONFIG_FB_VIA_X_COMPATIBILITY=y
CONFIG_FB_NEOMAGIC=y
CONFIG_FB_KYRO=y
CONFIG_FB_3DFX=y
# CONFIG_FB_3DFX_ACCEL is not set
# CONFIG_FB_3DFX_I2C is not set
CONFIG_FB_VOODOO1=y
CONFIG_FB_VT8623=y
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
CONFIG_FB_PM3=y
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SM501 is not set
CONFIG_FB_IBM_GXT4500=y
# CONFIG_FB_GOLDFISH is not set
CONFIG_FB_VIRTUAL=y
CONFIG_XEN_FBDEV_FRONTEND=y
CONFIG_FB_METRONOME=y
# CONFIG_FB_MB862XX is not set
CONFIG_FB_HYPERV=y
CONFIG_FB_SIMPLE=y
# CONFIG_FB_SSD1307 is not set
CONFIG_FB_SM712=y
# end of Frame buffer Devices
#
# Backlight & LCD device support
#
CONFIG_LCD_CLASS_DEVICE=y
CONFIG_LCD_L4F00242T03=y
# CONFIG_LCD_LMS283GF05 is not set
CONFIG_LCD_LTV350QV=y
# CONFIG_LCD_ILI922X is not set
CONFIG_LCD_ILI9320=y
CONFIG_LCD_TDO24M=y
CONFIG_LCD_VGG2432A4=y
# CONFIG_LCD_PLATFORM is not set
CONFIG_LCD_AMS369FG06=y
# CONFIG_LCD_LMS501KF03 is not set
# CONFIG_LCD_HX8357 is not set
# CONFIG_LCD_OTM3225A is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_GENERIC is not set
CONFIG_BACKLIGHT_CARILLO_RANCH=y
# CONFIG_BACKLIGHT_DA903X is not set
CONFIG_BACKLIGHT_DA9052=y
CONFIG_BACKLIGHT_MAX8925=y
# CONFIG_BACKLIGHT_APPLE is not set
CONFIG_BACKLIGHT_QCOM_WLED=y
CONFIG_BACKLIGHT_SAHARA=y
# CONFIG_BACKLIGHT_WM831X is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
CONFIG_BACKLIGHT_ADP8870=y
# CONFIG_BACKLIGHT_PCF50633 is not set
CONFIG_BACKLIGHT_AAT2870=y
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_PANDORA is not set
CONFIG_BACKLIGHT_TPS65217=y
CONFIG_BACKLIGHT_AS3711=y
CONFIG_BACKLIGHT_GPIO=y
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
CONFIG_BACKLIGHT_ARCXCNN=y
CONFIG_BACKLIGHT_RAVE_SP=y
# CONFIG_BACKLIGHT_LED is not set
# end of Backlight & LCD device support
CONFIG_VGASTATE=y
CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
CONFIG_LOGO_LINUX_VGA16=y
CONFIG_LOGO_LINUX_CLUT224=y
# end of Graphics support
# CONFIG_SOUND is not set
#
# HID support
#
CONFIG_HID=y
# CONFIG_HID_BATTERY_STRENGTH is not set
# CONFIG_HIDRAW is not set
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=y
#
# Special HID drivers
#
# CONFIG_HID_A4TECH is not set
# CONFIG_HID_ACRUX is not set
# CONFIG_HID_APPLE is not set
# CONFIG_HID_ASUS is not set
# CONFIG_HID_AUREAL is not set
# CONFIG_HID_BELKIN is not set
# CONFIG_HID_CHERRY is not set
# CONFIG_HID_CHICONY is not set
# CONFIG_HID_COUGAR is not set
# CONFIG_HID_MACALLY is not set
# CONFIG_HID_CMEDIA is not set
# CONFIG_HID_CYPRESS is not set
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
# CONFIG_HID_EZKEY is not set
# CONFIG_HID_GEMBIRD is not set
# CONFIG_HID_GFRM is not set
# CONFIG_HID_GLORIOUS is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_WALTOP is not set
# CONFIG_HID_VIEWSONIC is not set
# CONFIG_HID_GYRATION is not set
# CONFIG_HID_ICADE is not set
# CONFIG_HID_ITE is not set
# CONFIG_HID_JABRA is not set
# CONFIG_HID_TWINHAN is not set
# CONFIG_HID_KENSINGTON is not set
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LED is not set
# CONFIG_HID_LENOVO is not set
# CONFIG_HID_LOGITECH is not set
# CONFIG_HID_MAGICMOUSE is not set
# CONFIG_HID_MALTRON is not set
# CONFIG_HID_MAYFLASH is not set
# CONFIG_HID_REDRAGON is not set
# CONFIG_HID_MICROSOFT is not set
# CONFIG_HID_MONTEREY is not set
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NTI is not set
# CONFIG_HID_ORTEK is not set
# CONFIG_HID_PANTHERLORD is not set
# CONFIG_HID_PETALYNX is not set
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PLANTRONICS is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_SAITEK is not set
# CONFIG_HID_SAMSUNG is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEAM is not set
# CONFIG_HID_STEELSERIES is not set
# CONFIG_HID_SUNPLUS is not set
# CONFIG_HID_RMI is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_HYPERV_MOUSE is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
# CONFIG_HID_TOPSEED is not set
# CONFIG_HID_THINGM is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_UDRAW_PS3 is not set
# CONFIG_HID_WIIMOTE is not set
# CONFIG_HID_XINMO is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set
# CONFIG_HID_ALPS is not set
# end of Special HID drivers
#
# I2C HID support
#
# CONFIG_I2C_HID is not set
# end of I2C HID support
#
# Intel ISH HID support
#
# CONFIG_INTEL_ISH_HID is not set
# end of Intel ISH HID support
# end of HID support
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
# CONFIG_USB_LED_TRIG is not set
# CONFIG_USB_ULPI_BUS is not set
# CONFIG_USB_CONN_GPIO is not set
CONFIG_USB_ARCH_HAS_HCD=y
# CONFIG_USB is not set
CONFIG_USB_PCI=y
#
# USB port drivers
#
#
# USB Physical Layer drivers
#
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_GPIO_VBUS is not set
# CONFIG_TAHVO_USB is not set
# end of USB Physical Layer drivers
# CONFIG_USB_GADGET is not set
# CONFIG_TYPEC is not set
# CONFIG_USB_ROLE_SWITCH is not set
# CONFIG_MMC is not set
CONFIG_MEMSTICK=y
CONFIG_MEMSTICK_DEBUG=y
#
# MemoryStick drivers
#
# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
# CONFIG_MSPRO_BLOCK is not set
# CONFIG_MS_BLOCK is not set
#
# MemoryStick Host Controller Drivers
#
CONFIG_MEMSTICK_TIFM_MS=y
# CONFIG_MEMSTICK_JMICRON_38X is not set
# CONFIG_MEMSTICK_R592 is not set
# CONFIG_MEMSTICK_REALTEK_PCI is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
# CONFIG_LEDS_CLASS_FLASH is not set
CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y
#
# LED drivers
#
CONFIG_LEDS_AN30259A=y
CONFIG_LEDS_APU=y
CONFIG_LEDS_BCM6328=y
# CONFIG_LEDS_BCM6358 is not set
CONFIG_LEDS_CR0014114=y
CONFIG_LEDS_EL15203000=y
CONFIG_LEDS_LM3530=y
# CONFIG_LEDS_LM3532 is not set
CONFIG_LEDS_LM3642=y
# CONFIG_LEDS_LM3692X is not set
# CONFIG_LEDS_MT6323 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_GPIO is not set
CONFIG_LEDS_LP3944=y
# CONFIG_LEDS_LP3952 is not set
CONFIG_LEDS_LP55XX_COMMON=y
# CONFIG_LEDS_LP5521 is not set
CONFIG_LEDS_LP5523=y
CONFIG_LEDS_LP5562=y
CONFIG_LEDS_LP8501=y
# CONFIG_LEDS_LP8788 is not set
# CONFIG_LEDS_LP8860 is not set
# CONFIG_LEDS_CLEVO_MAIL is not set
CONFIG_LEDS_PCA955X=y
# CONFIG_LEDS_PCA955X_GPIO is not set
# CONFIG_LEDS_PCA963X is not set
CONFIG_LEDS_WM831X_STATUS=y
# CONFIG_LEDS_WM8350 is not set
# CONFIG_LEDS_DA903X is not set
# CONFIG_LEDS_DA9052 is not set
CONFIG_LEDS_DAC124S085=y
# CONFIG_LEDS_REGULATOR is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
CONFIG_LEDS_LT3593=y
CONFIG_LEDS_TCA6507=y
CONFIG_LEDS_TLC591XX=y
# CONFIG_LEDS_MAX77650 is not set
# CONFIG_LEDS_MAX8997 is not set
CONFIG_LEDS_LM355x=y
# CONFIG_LEDS_MENF21BMC is not set
# CONFIG_LEDS_IS31FL319X is not set
CONFIG_LEDS_IS31FL32XX=y
#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
# CONFIG_LEDS_BLINKM is not set
# CONFIG_LEDS_SYSCON is not set
CONFIG_LEDS_MLXCPLD=y
CONFIG_LEDS_MLXREG=y
# CONFIG_LEDS_USER is not set
CONFIG_LEDS_NIC78BX=y
# CONFIG_LEDS_SPI_BYTE is not set
CONFIG_LEDS_TI_LMU_COMMON=y
CONFIG_LEDS_LM3697=y
CONFIG_LEDS_LM36274=y
# CONFIG_LEDS_TPS6105X is not set
#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
CONFIG_LEDS_TRIGGER_TIMER=y
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_MTD is not set
CONFIG_LEDS_TRIGGER_HEARTBEAT=y
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
# CONFIG_LEDS_TRIGGER_CPU is not set
CONFIG_LEDS_TRIGGER_ACTIVITY=y
CONFIG_LEDS_TRIGGER_GPIO=y
CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
#
# iptables trigger is under Netfilter config (LED target)
#
CONFIG_LEDS_TRIGGER_TRANSIENT=y
CONFIG_LEDS_TRIGGER_CAMERA=y
# CONFIG_LEDS_TRIGGER_PANIC is not set
# CONFIG_LEDS_TRIGGER_NETDEV is not set
# CONFIG_LEDS_TRIGGER_PATTERN is not set
CONFIG_LEDS_TRIGGER_AUDIO=y
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC_ATOMIC_SCRUB=y
CONFIG_EDAC_SUPPORT=y
# CONFIG_EDAC is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_MC146818_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
# CONFIG_RTC_SYSTOHC is not set
# CONFIG_RTC_DEBUG is not set
CONFIG_RTC_NVMEM=y
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
# CONFIG_RTC_INTF_PROC is not set
# CONFIG_RTC_INTF_DEV is not set
CONFIG_RTC_DRV_TEST=y
#
# I2C RTC drivers
#
CONFIG_RTC_DRV_88PM80X=y
CONFIG_RTC_DRV_ABB5ZES3=y
CONFIG_RTC_DRV_ABEOZ9=y
CONFIG_RTC_DRV_ABX80X=y
CONFIG_RTC_DRV_AS3722=y
# CONFIG_RTC_DRV_DS1307 is not set
CONFIG_RTC_DRV_DS1374=y
CONFIG_RTC_DRV_DS1374_WDT=y
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_HYM8563 is not set
# CONFIG_RTC_DRV_LP8788 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_MAX8907 is not set
CONFIG_RTC_DRV_MAX8925=y
# CONFIG_RTC_DRV_MAX8997 is not set
CONFIG_RTC_DRV_MAX77686=y
# CONFIG_RTC_DRV_RS5C372 is not set
CONFIG_RTC_DRV_ISL1208=y
CONFIG_RTC_DRV_ISL12022=y
# CONFIG_RTC_DRV_ISL12026 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF85063 is not set
CONFIG_RTC_DRV_PCF85363=y
# CONFIG_RTC_DRV_PCF8563 is not set
CONFIG_RTC_DRV_PCF8583=y
# CONFIG_RTC_DRV_M41T80 is not set
CONFIG_RTC_DRV_BD70528=y
CONFIG_RTC_DRV_BQ32K=y
CONFIG_RTC_DRV_TWL4030=y
CONFIG_RTC_DRV_TPS6586X=y
# CONFIG_RTC_DRV_TPS65910 is not set
CONFIG_RTC_DRV_RC5T583=y
CONFIG_RTC_DRV_S35390A=y
CONFIG_RTC_DRV_FM3130=y
# CONFIG_RTC_DRV_RX8010 is not set
CONFIG_RTC_DRV_RX8581=y
CONFIG_RTC_DRV_RX8025=y
# CONFIG_RTC_DRV_EM3027 is not set
CONFIG_RTC_DRV_RV3028=y
CONFIG_RTC_DRV_RV8803=y
# CONFIG_RTC_DRV_S5M is not set
CONFIG_RTC_DRV_SD3078=y
#
# SPI RTC drivers
#
CONFIG_RTC_DRV_M41T93=y
CONFIG_RTC_DRV_M41T94=y
CONFIG_RTC_DRV_DS1302=y
CONFIG_RTC_DRV_DS1305=y
# CONFIG_RTC_DRV_DS1343 is not set
CONFIG_RTC_DRV_DS1347=y
CONFIG_RTC_DRV_DS1390=y
CONFIG_RTC_DRV_MAX6916=y
CONFIG_RTC_DRV_R9701=y
# CONFIG_RTC_DRV_RX4581 is not set
# CONFIG_RTC_DRV_RX6110 is not set
# CONFIG_RTC_DRV_RS5C348 is not set
# CONFIG_RTC_DRV_MAX6902 is not set
# CONFIG_RTC_DRV_PCF2123 is not set
CONFIG_RTC_DRV_MCP795=y
CONFIG_RTC_I2C_AND_SPI=y
#
# SPI and I2C RTC drivers
#
# CONFIG_RTC_DRV_DS3232 is not set
CONFIG_RTC_DRV_PCF2127=y
CONFIG_RTC_DRV_RV3029C2=y
CONFIG_RTC_DRV_RV3029_HWMON=y
#
# Platform RTC drivers
#
# CONFIG_RTC_DRV_CMOS is not set
CONFIG_RTC_DRV_VRTC=y
CONFIG_RTC_DRV_DS1286=y
# CONFIG_RTC_DRV_DS1511 is not set
CONFIG_RTC_DRV_DS1553=y
CONFIG_RTC_DRV_DS1685_FAMILY=y
# CONFIG_RTC_DRV_DS1685 is not set
# CONFIG_RTC_DRV_DS1689 is not set
# CONFIG_RTC_DRV_DS17285 is not set
# CONFIG_RTC_DRV_DS17485 is not set
CONFIG_RTC_DRV_DS17885=y
CONFIG_RTC_DRV_DS1742=y
CONFIG_RTC_DRV_DS2404=y
# CONFIG_RTC_DRV_DA9052 is not set
CONFIG_RTC_DRV_DA9055=y
CONFIG_RTC_DRV_DA9063=y
CONFIG_RTC_DRV_STK17TA8=y
# CONFIG_RTC_DRV_M48T86 is not set
CONFIG_RTC_DRV_M48T35=y
# CONFIG_RTC_DRV_M48T59 is not set
CONFIG_RTC_DRV_MSM6242=y
CONFIG_RTC_DRV_BQ4802=y
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
# CONFIG_RTC_DRV_WM831X is not set
CONFIG_RTC_DRV_WM8350=y
CONFIG_RTC_DRV_PCF50633=y
CONFIG_RTC_DRV_ZYNQMP=y
# CONFIG_RTC_DRV_CROS_EC is not set
#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_CADENCE is not set
CONFIG_RTC_DRV_FTRTC010=y
CONFIG_RTC_DRV_PCAP=y
# CONFIG_RTC_DRV_MT6397 is not set
CONFIG_RTC_DRV_R7301=y
#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_GOLDFISH is not set
# CONFIG_DMADEVICES is not set
#
# DMABUF options
#
CONFIG_SYNC_FILE=y
CONFIG_SW_SYNC=y
CONFIG_UDMABUF=y
# CONFIG_DMABUF_MOVE_NOTIFY is not set
CONFIG_DMABUF_SELFTESTS=y
CONFIG_DMABUF_HEAPS=y
CONFIG_DMABUF_HEAPS_SYSTEM=y
# CONFIG_DMABUF_HEAPS_CMA is not set
# end of DMABUF options
CONFIG_AUXDISPLAY=y
CONFIG_HD44780=y
# CONFIG_IMG_ASCII_LCD is not set
# CONFIG_HT16K33 is not set
# CONFIG_PARPORT_PANEL is not set
CONFIG_PANEL_CHANGE_MESSAGE=y
CONFIG_PANEL_BOOT_MESSAGE=""
CONFIG_CHARLCD_BL_OFF=y
# CONFIG_CHARLCD_BL_ON is not set
# CONFIG_CHARLCD_BL_FLASH is not set
# CONFIG_PANEL is not set
CONFIG_CHARLCD=y
CONFIG_UIO=y
# CONFIG_UIO_CIF is not set
CONFIG_UIO_PDRV_GENIRQ=y
# CONFIG_UIO_DMEM_GENIRQ is not set
CONFIG_UIO_AEC=y
# CONFIG_UIO_SERCOS3 is not set
# CONFIG_UIO_PCI_GENERIC is not set
CONFIG_UIO_NETX=y
# CONFIG_UIO_PRUSS is not set
# CONFIG_UIO_MF624 is not set
# CONFIG_UIO_HV_GENERIC is not set
# CONFIG_VIRT_DRIVERS is not set
CONFIG_VIRTIO=y
# CONFIG_VIRTIO_MENU is not set
#
# Microsoft Hyper-V guest support
#
CONFIG_HYPERV=y
CONFIG_HYPERV_TIMER=y
# CONFIG_HYPERV_BALLOON is not set
# end of Microsoft Hyper-V guest support
#
# Xen driver support
#
CONFIG_XEN_BALLOON=y
# CONFIG_XEN_BALLOON_MEMORY_HOTPLUG is not set
# CONFIG_XEN_SCRUB_PAGES_DEFAULT is not set
# CONFIG_XEN_DEV_EVTCHN is not set
# CONFIG_XEN_BACKEND is not set
CONFIG_XENFS=y
CONFIG_XEN_COMPAT_XENFS=y
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
CONFIG_XEN_GNTDEV=y
CONFIG_XEN_GNTDEV_DMABUF=y
CONFIG_XEN_GRANT_DEV_ALLOC=y
CONFIG_XEN_GRANT_DMA_ALLOC=y
CONFIG_SWIOTLB_XEN=y
# CONFIG_XEN_PVCALLS_FRONTEND is not set
CONFIG_XEN_PRIVCMD=y
CONFIG_XEN_EFI=y
CONFIG_XEN_AUTO_XLATE=y
CONFIG_XEN_ACPI=y
# end of Xen driver support
# CONFIG_GREYBUS is not set
CONFIG_STAGING=y
# CONFIG_COMEDI is not set
# CONFIG_RTLLIB is not set
#
# IIO staging drivers
#
#
# Accelerometers
#
# CONFIG_ADIS16203 is not set
# CONFIG_ADIS16240 is not set
# end of Accelerometers
#
# Analog to digital converters
#
# CONFIG_AD7816 is not set
# CONFIG_AD7280 is not set
# end of Analog to digital converters
#
# Analog digital bi-direction converters
#
# CONFIG_ADT7316 is not set
# end of Analog digital bi-direction converters
#
# Capacitance to digital converters
#
# CONFIG_AD7150 is not set
# CONFIG_AD7746 is not set
# end of Capacitance to digital converters
#
# Direct Digital Synthesis
#
# CONFIG_AD9832 is not set
# CONFIG_AD9834 is not set
# end of Direct Digital Synthesis
#
# Network Analyzer, Impedance Converters
#
# CONFIG_AD5933 is not set
# end of Network Analyzer, Impedance Converters
#
# Active energy metering IC
#
# CONFIG_ADE7854 is not set
# end of Active energy metering IC
#
# Resolver to digital converters
#
# CONFIG_AD2S1210 is not set
# end of Resolver to digital converters
# end of IIO staging drivers
# CONFIG_FB_SM750 is not set
#
# Speakup console speech
#
# end of Speakup console speech
# CONFIG_STAGING_MEDIA is not set
#
# Android
#
# CONFIG_ASHMEM is not set
CONFIG_ION=y
CONFIG_ION_SYSTEM_HEAP=y
# CONFIG_ION_CMA_HEAP is not set
# end of Android
# CONFIG_STAGING_BOARD is not set
# CONFIG_GOLDFISH_AUDIO is not set
# CONFIG_GS_FPGABOOT is not set
# CONFIG_UNISYSSPAR is not set
# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set
# CONFIG_FB_TFT is not set
# CONFIG_MOST is not set
# CONFIG_PI433 is not set
#
# Gasket devices
#
# CONFIG_STAGING_GASKET_FRAMEWORK is not set
# end of Gasket devices
# CONFIG_XIL_AXIS_FIFO is not set
# CONFIG_FIELDBUS_DEV is not set
# CONFIG_KPC2000 is not set
# CONFIG_QLGE is not set
CONFIG_NET_VENDOR_HP=y
# CONFIG_HP100 is not set
CONFIG_X86_PLATFORM_DEVICES=y
CONFIG_ACPI_WMI=y
# CONFIG_WMI_BMOF is not set
CONFIG_ALIENWARE_WMI=y
# CONFIG_HUAWEI_WMI is not set
CONFIG_INTEL_WMI_THUNDERBOLT=y
CONFIG_MXM_WMI=y
# CONFIG_PEAQ_WMI is not set
# CONFIG_XIAOMI_WMI is not set
CONFIG_ACERHDF=y
# CONFIG_ACER_WIRELESS is not set
# CONFIG_ACER_WMI is not set
# CONFIG_APPLE_GMUX is not set
# CONFIG_ASUS_LAPTOP is not set
# CONFIG_ASUS_WIRELESS is not set
# CONFIG_ASUS_WMI is not set
# CONFIG_EEEPC_LAPTOP is not set
CONFIG_DCDBAS=y
CONFIG_DELL_SMBIOS=y
CONFIG_DELL_SMBIOS_WMI=y
# CONFIG_DELL_SMBIOS_SMM is not set
# CONFIG_DELL_LAPTOP is not set
# CONFIG_DELL_RBU is not set
CONFIG_DELL_SMO8800=y
# CONFIG_DELL_WMI is not set
CONFIG_DELL_WMI_DESCRIPTOR=y
# CONFIG_DELL_WMI_AIO is not set
CONFIG_DELL_WMI_LED=y
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_FUJITSU_TABLET is not set
CONFIG_GPD_POCKET_FAN=y
# CONFIG_HP_ACCEL is not set
# CONFIG_HP_WIRELESS is not set
# CONFIG_HP_WMI is not set
CONFIG_IBM_RTL=y
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_THINKPAD_ACPI is not set
CONFIG_INTEL_ATOMISP2_PM=y
# CONFIG_INTEL_HID_EVENT is not set
# CONFIG_INTEL_INT0002_VGPIO is not set
CONFIG_INTEL_MENLOW=y
# CONFIG_INTEL_VBTN is not set
# CONFIG_SURFACE3_WMI is not set
# CONFIG_SURFACE_PRO3_BUTTON is not set
# CONFIG_MSI_WMI is not set
# CONFIG_PCENGINES_APU2 is not set
CONFIG_SAMSUNG_LAPTOP=y
CONFIG_SAMSUNG_Q10=y
# CONFIG_ACPI_TOSHIBA is not set
# CONFIG_TOSHIBA_BT_RFKILL is not set
# CONFIG_TOSHIBA_HAPS is not set
# CONFIG_TOSHIBA_WMI is not set
# CONFIG_ACPI_CMPC is not set
# CONFIG_LG_LAPTOP is not set
# CONFIG_PANASONIC_LAPTOP is not set
CONFIG_SYSTEM76_ACPI=y
# CONFIG_TOPSTAR_LAPTOP is not set
# CONFIG_I2C_MULTI_INSTANTIATE is not set
CONFIG_MLX_PLATFORM=y
# CONFIG_INTEL_IPS is not set
# CONFIG_INTEL_RST is not set
CONFIG_INTEL_SMARTCONNECT=y
#
# Intel Speed Select Technology interface support
#
CONFIG_INTEL_SPEED_SELECT_INTERFACE=y
# end of Intel Speed Select Technology interface support
CONFIG_INTEL_UNCORE_FREQ_CONTROL=y
# CONFIG_INTEL_BXTWC_PMIC_TMU is not set
# CONFIG_INTEL_CHTDC_TI_PWRBTN is not set
CONFIG_INTEL_MFLD_THERMAL=y
# CONFIG_INTEL_MID_POWER_BUTTON is not set
CONFIG_INTEL_PMC_CORE=y
CONFIG_INTEL_PMC_IPC=y
CONFIG_INTEL_PUNIT_IPC=y
CONFIG_INTEL_SCU_IPC=y
CONFIG_INTEL_SCU_IPC_UTIL=y
CONFIG_INTEL_TELEMETRY=y
CONFIG_PMC_ATOM=y
CONFIG_GOLDFISH_PIPE=y
CONFIG_MFD_CROS_EC=y
CONFIG_CHROME_PLATFORMS=y
CONFIG_CHROMEOS_LAPTOP=y
CONFIG_CHROMEOS_PSTORE=y
# CONFIG_CHROMEOS_TBMC is not set
CONFIG_CROS_EC=y
CONFIG_CROS_EC_I2C=y
# CONFIG_CROS_EC_SPI is not set
# CONFIG_CROS_EC_LPC is not set
CONFIG_CROS_EC_PROTO=y
# CONFIG_CROS_KBD_LED_BACKLIGHT is not set
CONFIG_CROS_EC_CHARDEV=y
# CONFIG_CROS_EC_LIGHTBAR is not set
CONFIG_CROS_EC_VBC=y
CONFIG_CROS_EC_DEBUGFS=y
CONFIG_CROS_EC_SENSORHUB=y
CONFIG_CROS_EC_SYSFS=y
CONFIG_CROS_USBPD_LOGGER=y
CONFIG_CROS_USBPD_NOTIFY=y
# CONFIG_MELLANOX_PLATFORM is not set
CONFIG_CLKDEV_LOOKUP=y
CONFIG_HAVE_CLK_PREPARE=y
CONFIG_COMMON_CLK=y
#
# Common Clock Framework
#
CONFIG_COMMON_CLK_WM831X=y
# CONFIG_CLK_HSDK is not set
CONFIG_COMMON_CLK_MAX77686=y
# CONFIG_COMMON_CLK_MAX9485 is not set
# CONFIG_COMMON_CLK_SI5341 is not set
CONFIG_COMMON_CLK_SI5351=y
# CONFIG_COMMON_CLK_SI514 is not set
CONFIG_COMMON_CLK_SI544=y
# CONFIG_COMMON_CLK_SI570 is not set
CONFIG_COMMON_CLK_CDCE706=y
CONFIG_COMMON_CLK_CDCE925=y
CONFIG_COMMON_CLK_CS2000_CP=y
CONFIG_COMMON_CLK_S2MPS11=y
CONFIG_CLK_TWL6040=y
CONFIG_COMMON_CLK_LOCHNAGAR=y
# CONFIG_COMMON_CLK_VC5 is not set
CONFIG_COMMON_CLK_BD718XX=y
# CONFIG_COMMON_CLK_FIXED_MMIO is not set
# end of Common Clock Framework
CONFIG_HWSPINLOCK=y
#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_CLKBLD_I8253=y
CONFIG_DW_APB_TIMER=y
# CONFIG_MICROCHIP_PIT64B is not set
# end of Clock Source drivers
# CONFIG_MAILBOX is not set
# CONFIG_IOMMU_SUPPORT is not set
#
# Remoteproc drivers
#
# CONFIG_REMOTEPROC is not set
# end of Remoteproc drivers
#
# Rpmsg drivers
#
# CONFIG_RPMSG_VIRTIO is not set
# end of Rpmsg drivers
# CONFIG_SOUNDWIRE is not set
#
# SOC (System On Chip) specific Drivers
#
#
# Amlogic SoC drivers
#
# end of Amlogic SoC drivers
#
# Aspeed SoC drivers
#
# end of Aspeed SoC drivers
#
# Broadcom SoC drivers
#
# end of Broadcom SoC drivers
#
# NXP/Freescale QorIQ SoC drivers
#
# end of NXP/Freescale QorIQ SoC drivers
#
# i.MX SoC drivers
#
# end of i.MX SoC drivers
#
# Qualcomm SoC drivers
#
# end of Qualcomm SoC drivers
CONFIG_SOC_TI=y
#
# Xilinx SoC drivers
#
# CONFIG_XILINX_VCU is not set
# end of Xilinx SoC drivers
# end of SOC (System On Chip) specific Drivers
CONFIG_PM_DEVFREQ=y
#
# DEVFREQ Governors
#
CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y
CONFIG_DEVFREQ_GOV_PERFORMANCE=y
# CONFIG_DEVFREQ_GOV_POWERSAVE is not set
CONFIG_DEVFREQ_GOV_USERSPACE=y
CONFIG_DEVFREQ_GOV_PASSIVE=y
#
# DEVFREQ Drivers
#
# CONFIG_PM_DEVFREQ_EVENT is not set
CONFIG_EXTCON=y
#
# Extcon Device Drivers
#
# CONFIG_EXTCON_ADC_JACK is not set
# CONFIG_EXTCON_AXP288 is not set
# CONFIG_EXTCON_FSA9480 is not set
CONFIG_EXTCON_GPIO=y
# CONFIG_EXTCON_INTEL_INT3496 is not set
CONFIG_EXTCON_MAX14577=y
# CONFIG_EXTCON_MAX3355 is not set
# CONFIG_EXTCON_MAX77693 is not set
CONFIG_EXTCON_MAX77843=y
CONFIG_EXTCON_MAX8997=y
CONFIG_EXTCON_PTN5150=y
# CONFIG_EXTCON_RT8973A is not set
CONFIG_EXTCON_SM5502=y
# CONFIG_EXTCON_USB_GPIO is not set
CONFIG_EXTCON_USBC_CROS_EC=y
# CONFIG_MEMORY is not set
CONFIG_IIO=y
CONFIG_IIO_BUFFER=y
CONFIG_IIO_BUFFER_CB=y
CONFIG_IIO_BUFFER_HW_CONSUMER=y
CONFIG_IIO_KFIFO_BUF=y
CONFIG_IIO_TRIGGERED_BUFFER=y
CONFIG_IIO_CONFIGFS=y
CONFIG_IIO_TRIGGER=y
CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
CONFIG_IIO_SW_DEVICE=y
CONFIG_IIO_SW_TRIGGER=y
CONFIG_IIO_TRIGGERED_EVENT=y
#
# Accelerometers
#
CONFIG_ADIS16201=y
CONFIG_ADIS16209=y
CONFIG_ADXL345=y
# CONFIG_ADXL345_I2C is not set
CONFIG_ADXL345_SPI=y
CONFIG_ADXL372=y
CONFIG_ADXL372_SPI=y
# CONFIG_ADXL372_I2C is not set
# CONFIG_BMA180 is not set
CONFIG_BMA220=y
CONFIG_BMA400=y
CONFIG_BMA400_I2C=y
CONFIG_BMC150_ACCEL=y
CONFIG_BMC150_ACCEL_I2C=y
CONFIG_BMC150_ACCEL_SPI=y
# CONFIG_DA280 is not set
CONFIG_DA311=y
CONFIG_DMARD06=y
CONFIG_DMARD09=y
# CONFIG_DMARD10 is not set
CONFIG_IIO_CROS_EC_ACCEL_LEGACY=y
# CONFIG_IIO_ST_ACCEL_3AXIS is not set
# CONFIG_KXSD9 is not set
# CONFIG_KXCJK1013 is not set
CONFIG_MC3230=y
CONFIG_MMA7455=y
CONFIG_MMA7455_I2C=y
CONFIG_MMA7455_SPI=y
CONFIG_MMA7660=y
# CONFIG_MMA8452 is not set
# CONFIG_MMA9551 is not set
# CONFIG_MMA9553 is not set
# CONFIG_MXC4005 is not set
# CONFIG_MXC6255 is not set
# CONFIG_SCA3000 is not set
CONFIG_STK8312=y
# CONFIG_STK8BA50 is not set
# end of Accelerometers
#
# Analog to digital converters
#
CONFIG_AD_SIGMA_DELTA=y
CONFIG_AD7091R5=y
CONFIG_AD7124=y
# CONFIG_AD7192 is not set
CONFIG_AD7266=y
CONFIG_AD7291=y
CONFIG_AD7292=y
CONFIG_AD7298=y
CONFIG_AD7476=y
# CONFIG_AD7606_IFACE_PARALLEL is not set
# CONFIG_AD7606_IFACE_SPI is not set
CONFIG_AD7766=y
CONFIG_AD7768_1=y
CONFIG_AD7780=y
CONFIG_AD7791=y
CONFIG_AD7793=y
# CONFIG_AD7887 is not set
CONFIG_AD7923=y
CONFIG_AD7949=y
CONFIG_AD799X=y
# CONFIG_AXP20X_ADC is not set
CONFIG_AXP288_ADC=y
# CONFIG_CC10001_ADC is not set
# CONFIG_DA9150_GPADC is not set
CONFIG_ENVELOPE_DETECTOR=y
CONFIG_HI8435=y
CONFIG_HX711=y
# CONFIG_LP8788_ADC is not set
CONFIG_LTC2471=y
CONFIG_LTC2485=y
CONFIG_LTC2496=y
CONFIG_LTC2497=y
# CONFIG_MAX1027 is not set
# CONFIG_MAX11100 is not set
CONFIG_MAX1118=y
CONFIG_MAX1363=y
CONFIG_MAX9611=y
# CONFIG_MCP320X is not set
CONFIG_MCP3422=y
CONFIG_MCP3911=y
CONFIG_MEN_Z188_ADC=y
# CONFIG_NAU7802 is not set
CONFIG_QCOM_VADC_COMMON=y
# CONFIG_QCOM_SPMI_IADC is not set
CONFIG_QCOM_SPMI_VADC=y
CONFIG_QCOM_SPMI_ADC5=y
CONFIG_SD_ADC_MODULATOR=y
CONFIG_STMPE_ADC=y
CONFIG_STX104=y
# CONFIG_TI_ADC081C is not set
# CONFIG_TI_ADC0832 is not set
CONFIG_TI_ADC084S021=y
CONFIG_TI_ADC12138=y
CONFIG_TI_ADC108S102=y
# CONFIG_TI_ADC128S052 is not set
CONFIG_TI_ADC161S626=y
CONFIG_TI_ADS1015=y
CONFIG_TI_ADS7950=y
# CONFIG_TI_ADS8344 is not set
CONFIG_TI_ADS8688=y
CONFIG_TI_ADS124S08=y
CONFIG_TI_TLC4541=y
CONFIG_TWL4030_MADC=y
CONFIG_TWL6030_GPADC=y
# CONFIG_VF610_ADC is not set
CONFIG_XILINX_XADC=y
# end of Analog to digital converters
#
# Analog Front Ends
#
CONFIG_IIO_RESCALE=y
# end of Analog Front Ends
#
# Amplifiers
#
CONFIG_AD8366=y
# CONFIG_HMC425 is not set
# end of Amplifiers
#
# Chemical Sensors
#
# CONFIG_ATLAS_PH_SENSOR is not set
CONFIG_BME680=y
CONFIG_BME680_I2C=y
CONFIG_BME680_SPI=y
CONFIG_CCS811=y
CONFIG_IAQCORE=y
CONFIG_PMS7003=y
CONFIG_SENSIRION_SGP30=y
CONFIG_SPS30=y
CONFIG_VZ89X=y
# end of Chemical Sensors
CONFIG_IIO_CROS_EC_SENSORS_CORE=y
# CONFIG_IIO_CROS_EC_SENSORS is not set
CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE=y
#
# Hid Sensor IIO Common
#
# end of Hid Sensor IIO Common
CONFIG_IIO_MS_SENSORS_I2C=y
#
# SSP Sensor Common
#
CONFIG_IIO_SSP_SENSORS_COMMONS=y
CONFIG_IIO_SSP_SENSORHUB=y
# end of SSP Sensor Common
CONFIG_IIO_ST_SENSORS_I2C=y
CONFIG_IIO_ST_SENSORS_SPI=y
CONFIG_IIO_ST_SENSORS_CORE=y
#
# Digital to analog converters
#
CONFIG_AD5064=y
CONFIG_AD5360=y
CONFIG_AD5380=y
# CONFIG_AD5421 is not set
# CONFIG_AD5446 is not set
CONFIG_AD5449=y
CONFIG_AD5592R_BASE=y
CONFIG_AD5592R=y
# CONFIG_AD5593R is not set
# CONFIG_AD5504 is not set
CONFIG_AD5624R_SPI=y
CONFIG_AD5686=y
# CONFIG_AD5686_SPI is not set
CONFIG_AD5696_I2C=y
CONFIG_AD5755=y
CONFIG_AD5758=y
CONFIG_AD5761=y
# CONFIG_AD5764 is not set
# CONFIG_AD5770R is not set
CONFIG_AD5791=y
# CONFIG_AD7303 is not set
CONFIG_AD8801=y
CONFIG_CIO_DAC=y
# CONFIG_DPOT_DAC is not set
# CONFIG_DS4424 is not set
# CONFIG_LTC1660 is not set
CONFIG_LTC2632=y
# CONFIG_M62332 is not set
CONFIG_MAX517=y
# CONFIG_MAX5821 is not set
CONFIG_MCP4725=y
CONFIG_MCP4922=y
CONFIG_TI_DAC082S085=y
# CONFIG_TI_DAC5571 is not set
# CONFIG_TI_DAC7311 is not set
# CONFIG_TI_DAC7612 is not set
CONFIG_VF610_DAC=y
# end of Digital to analog converters
#
# IIO dummy driver
#
# CONFIG_IIO_SIMPLE_DUMMY is not set
# end of IIO dummy driver
#
# Frequency Synthesizers DDS/PLL
#
#
# Clock Generator/Distribution
#
# CONFIG_AD9523 is not set
# end of Clock Generator/Distribution
#
# Phase-Locked Loop (PLL) frequency synthesizers
#
CONFIG_ADF4350=y
CONFIG_ADF4371=y
# end of Phase-Locked Loop (PLL) frequency synthesizers
# end of Frequency Synthesizers DDS/PLL
#
# Digital gyroscope sensors
#
# CONFIG_ADIS16080 is not set
CONFIG_ADIS16130=y
# CONFIG_ADIS16136 is not set
CONFIG_ADIS16260=y
CONFIG_ADXRS450=y
CONFIG_BMG160=y
CONFIG_BMG160_I2C=y
CONFIG_BMG160_SPI=y
CONFIG_FXAS21002C=y
CONFIG_FXAS21002C_I2C=y
CONFIG_FXAS21002C_SPI=y
# CONFIG_MPU3050_I2C is not set
# CONFIG_IIO_ST_GYRO_3AXIS is not set
CONFIG_ITG3200=y
# end of Digital gyroscope sensors
#
# Health Sensors
#
#
# Heart Rate Monitors
#
CONFIG_AFE4403=y
CONFIG_AFE4404=y
# CONFIG_MAX30100 is not set
# CONFIG_MAX30102 is not set
# end of Heart Rate Monitors
# end of Health Sensors
#
# Humidity sensors
#
# CONFIG_AM2315 is not set
# CONFIG_DHT11 is not set
# CONFIG_HDC100X is not set
# CONFIG_HTS221 is not set
CONFIG_HTU21=y
CONFIG_SI7005=y
CONFIG_SI7020=y
# end of Humidity sensors
#
# Inertial measurement units
#
CONFIG_ADIS16400=y
CONFIG_ADIS16460=y
CONFIG_ADIS16480=y
CONFIG_BMI160=y
CONFIG_BMI160_I2C=y
# CONFIG_BMI160_SPI is not set
CONFIG_FXOS8700=y
CONFIG_FXOS8700_I2C=y
# CONFIG_FXOS8700_SPI is not set
CONFIG_KMX61=y
CONFIG_INV_MPU6050_IIO=y
CONFIG_INV_MPU6050_I2C=y
# CONFIG_INV_MPU6050_SPI is not set
# CONFIG_IIO_ST_LSM6DSX is not set
# end of Inertial measurement units
CONFIG_IIO_ADIS_LIB=y
CONFIG_IIO_ADIS_LIB_BUFFER=y
#
# Light sensors
#
# CONFIG_ACPI_ALS is not set
CONFIG_ADJD_S311=y
CONFIG_ADUX1020=y
# CONFIG_AL3010 is not set
# CONFIG_AL3320A is not set
CONFIG_APDS9300=y
# CONFIG_APDS9960 is not set
# CONFIG_BH1750 is not set
CONFIG_BH1780=y
CONFIG_CM32181=y
CONFIG_CM3232=y
# CONFIG_CM3323 is not set
CONFIG_CM3605=y
CONFIG_CM36651=y
# CONFIG_IIO_CROS_EC_LIGHT_PROX is not set
# CONFIG_GP2AP002 is not set
CONFIG_GP2AP020A00F=y
# CONFIG_SENSORS_ISL29018 is not set
# CONFIG_SENSORS_ISL29028 is not set
# CONFIG_ISL29125 is not set
CONFIG_JSA1212=y
CONFIG_RPR0521=y
# CONFIG_LTR501 is not set
CONFIG_LV0104CS=y
CONFIG_MAX44000=y
# CONFIG_MAX44009 is not set
CONFIG_NOA1305=y
CONFIG_OPT3001=y
# CONFIG_PA12203001 is not set
# CONFIG_SI1133 is not set
CONFIG_SI1145=y
CONFIG_STK3310=y
CONFIG_ST_UVIS25=y
CONFIG_ST_UVIS25_I2C=y
CONFIG_ST_UVIS25_SPI=y
CONFIG_TCS3414=y
CONFIG_TCS3472=y
CONFIG_SENSORS_TSL2563=y
CONFIG_TSL2583=y
CONFIG_TSL2772=y
# CONFIG_TSL4531 is not set
CONFIG_US5182D=y
CONFIG_VCNL4000=y
# CONFIG_VCNL4035 is not set
CONFIG_VEML6030=y
CONFIG_VEML6070=y
CONFIG_VL6180=y
CONFIG_ZOPT2201=y
# end of Light sensors
#
# Magnetometer sensors
#
CONFIG_AK8974=y
CONFIG_AK8975=y
CONFIG_AK09911=y
CONFIG_BMC150_MAGN=y
# CONFIG_BMC150_MAGN_I2C is not set
CONFIG_BMC150_MAGN_SPI=y
# CONFIG_MAG3110 is not set
# CONFIG_MMC35240 is not set
CONFIG_IIO_ST_MAGN_3AXIS=y
CONFIG_IIO_ST_MAGN_I2C_3AXIS=y
CONFIG_IIO_ST_MAGN_SPI_3AXIS=y
CONFIG_SENSORS_HMC5843=y
CONFIG_SENSORS_HMC5843_I2C=y
# CONFIG_SENSORS_HMC5843_SPI is not set
CONFIG_SENSORS_RM3100=y
CONFIG_SENSORS_RM3100_I2C=y
CONFIG_SENSORS_RM3100_SPI=y
# end of Magnetometer sensors
#
# Multiplexers
#
# CONFIG_IIO_MUX is not set
# end of Multiplexers
#
# Inclinometer sensors
#
# end of Inclinometer sensors
#
# Triggers - standalone
#
CONFIG_IIO_HRTIMER_TRIGGER=y
# CONFIG_IIO_INTERRUPT_TRIGGER is not set
CONFIG_IIO_TIGHTLOOP_TRIGGER=y
CONFIG_IIO_SYSFS_TRIGGER=y
# end of Triggers - standalone
#
# Digital potentiometers
#
CONFIG_AD5272=y
# CONFIG_DS1803 is not set
CONFIG_MAX5432=y
CONFIG_MAX5481=y
# CONFIG_MAX5487 is not set
# CONFIG_MCP4018 is not set
CONFIG_MCP4131=y
CONFIG_MCP4531=y
CONFIG_MCP41010=y
# CONFIG_TPL0102 is not set
# end of Digital potentiometers
#
# Digital potentiostats
#
CONFIG_LMP91000=y
# end of Digital potentiostats
#
# Pressure sensors
#
# CONFIG_ABP060MG is not set
CONFIG_BMP280=y
CONFIG_BMP280_I2C=y
CONFIG_BMP280_SPI=y
# CONFIG_IIO_CROS_EC_BARO is not set
CONFIG_DLHL60D=y
CONFIG_DPS310=y
# CONFIG_HP03 is not set
# CONFIG_ICP10100 is not set
# CONFIG_MPL115_I2C is not set
# CONFIG_MPL115_SPI is not set
# CONFIG_MPL3115 is not set
CONFIG_MS5611=y
CONFIG_MS5611_I2C=y
CONFIG_MS5611_SPI=y
CONFIG_MS5637=y
# CONFIG_IIO_ST_PRESS is not set
CONFIG_T5403=y
CONFIG_HP206C=y
CONFIG_ZPA2326=y
CONFIG_ZPA2326_I2C=y
CONFIG_ZPA2326_SPI=y
# end of Pressure sensors
#
# Lightning sensors
#
CONFIG_AS3935=y
# end of Lightning sensors
#
# Proximity and distance sensors
#
CONFIG_ISL29501=y
# CONFIG_LIDAR_LITE_V2 is not set
CONFIG_MB1232=y
CONFIG_PING=y
CONFIG_RFD77402=y
# CONFIG_SRF04 is not set
CONFIG_SX9500=y
# CONFIG_SRF08 is not set
CONFIG_VL53L0X_I2C=y
# end of Proximity and distance sensors
#
# Resolver to digital converters
#
CONFIG_AD2S90=y
CONFIG_AD2S1200=y
# end of Resolver to digital converters
#
# Temperature sensors
#
CONFIG_LTC2983=y
CONFIG_MAXIM_THERMOCOUPLE=y
CONFIG_MLX90614=y
# CONFIG_MLX90632 is not set
CONFIG_TMP006=y
CONFIG_TMP007=y
CONFIG_TSYS01=y
CONFIG_TSYS02D=y
# CONFIG_MAX31856 is not set
# end of Temperature sensors
# CONFIG_NTB is not set
# CONFIG_VME_BUS is not set
# CONFIG_PWM is not set
#
# IRQ chip support
#
CONFIG_IRQCHIP=y
CONFIG_AL_FIC=y
# end of IRQ chip support
CONFIG_IPACK_BUS=y
CONFIG_BOARD_TPCI200=y
# CONFIG_SERIAL_IPOCTAL is not set
# CONFIG_RESET_CONTROLLER is not set
#
# PHY Subsystem
#
CONFIG_GENERIC_PHY=y
CONFIG_GENERIC_PHY_MIPI_DPHY=y
CONFIG_BCM_KONA_USB2_PHY=y
# CONFIG_PHY_CADENCE_TORRENT is not set
CONFIG_PHY_CADENCE_DPHY=y
CONFIG_PHY_FSL_IMX8MQ_USB=y
# CONFIG_PHY_MIXEL_MIPI_DPHY is not set
CONFIG_PHY_PXA_28NM_HSIC=y
CONFIG_PHY_PXA_28NM_USB2=y
# CONFIG_PHY_CPCAP_USB is not set
# CONFIG_PHY_MAPPHONE_MDM6600 is not set
CONFIG_PHY_OCELOT_SERDES=y
CONFIG_PHY_INTEL_EMMC=y
# end of PHY Subsystem
CONFIG_POWERCAP=y
CONFIG_INTEL_RAPL_CORE=y
CONFIG_INTEL_RAPL=y
CONFIG_IDLE_INJECT=y
CONFIG_MCB=y
CONFIG_MCB_PCI=y
# CONFIG_MCB_LPC is not set
#
# Performance monitor support
#
# end of Performance monitor support
CONFIG_RAS=y
CONFIG_USB4=y
#
# Android
#
CONFIG_ANDROID=y
# CONFIG_ANDROID_BINDER_IPC is not set
# end of Android
# CONFIG_LIBNVDIMM is not set
CONFIG_DAX=y
CONFIG_NVMEM=y
CONFIG_NVMEM_SYSFS=y
CONFIG_NVMEM_SPMI_SDAM=y
CONFIG_RAVE_SP_EEPROM=y
#
# HW tracing support
#
CONFIG_STM=y
CONFIG_STM_PROTO_BASIC=y
CONFIG_STM_PROTO_SYS_T=y
# CONFIG_STM_DUMMY is not set
# CONFIG_STM_SOURCE_CONSOLE is not set
CONFIG_STM_SOURCE_HEARTBEAT=y
CONFIG_INTEL_TH=y
CONFIG_INTEL_TH_PCI=y
CONFIG_INTEL_TH_ACPI=y
CONFIG_INTEL_TH_GTH=y
# CONFIG_INTEL_TH_STH is not set
# CONFIG_INTEL_TH_MSU is not set
CONFIG_INTEL_TH_PTI=y
CONFIG_INTEL_TH_DEBUG=y
# end of HW tracing support
# CONFIG_FPGA is not set
# CONFIG_FSI is not set
CONFIG_TEE=y
#
# TEE drivers
#
# end of TEE drivers
CONFIG_PM_OPP=y
# CONFIG_UNISYS_VISORBUS is not set
# CONFIG_SIOX is not set
CONFIG_SLIMBUS=y
CONFIG_SLIM_QCOM_CTRL=y
# CONFIG_INTERCONNECT is not set
CONFIG_COUNTER=y
CONFIG_104_QUAD_8=y
CONFIG_FTM_QUADDEC=y
# end of Device Drivers
#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
CONFIG_VALIDATE_FS_PARSER=y
CONFIG_FS_IOMAP=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
# CONFIG_EXT4_FS is not set
# CONFIG_EXT4_KUNIT_TESTS is not set
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_XFS_FS=m
# CONFIG_XFS_QUOTA is not set
# CONFIG_XFS_POSIX_ACL is not set
# CONFIG_XFS_RT is not set
# CONFIG_XFS_ONLINE_SCRUB is not set
# CONFIG_XFS_WARN is not set
# CONFIG_XFS_DEBUG is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
CONFIG_BTRFS_FS=m
# CONFIG_BTRFS_FS_POSIX_ACL is not set
# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
# CONFIG_BTRFS_DEBUG is not set
# CONFIG_BTRFS_ASSERT is not set
# CONFIG_BTRFS_FS_REF_VERIFY is not set
# CONFIG_NILFS2_FS is not set
# CONFIG_F2FS_FS is not set
# CONFIG_FS_DAX is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
# CONFIG_EXPORTFS_BLOCK_OPS is not set
CONFIG_FILE_LOCKING=y
# CONFIG_MANDATORY_FILE_LOCKING is not set
# CONFIG_FS_ENCRYPTION is not set
# CONFIG_FS_VERITY is not set
CONFIG_FSNOTIFY=y
# CONFIG_DNOTIFY is not set
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
CONFIG_QUOTA=y
# CONFIG_QUOTA_NETLINK_INTERFACE is not set
# CONFIG_PRINT_QUOTA_WARNING is not set
# CONFIG_QUOTA_DEBUG is not set
CONFIG_QFMT_V1=y
# CONFIG_QFMT_V2 is not set
CONFIG_QUOTACTL=y
CONFIG_QUOTACTL_COMPAT=y
CONFIG_AUTOFS4_FS=y
CONFIG_AUTOFS_FS=y
CONFIG_FUSE_FS=y
CONFIG_CUSE=y
# CONFIG_VIRTIO_FS is not set
CONFIG_OVERLAY_FS=y
CONFIG_OVERLAY_FS_REDIRECT_DIR=y
# CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW is not set
# CONFIG_OVERLAY_FS_INDEX is not set
CONFIG_OVERLAY_FS_XINO_AUTO=y
CONFIG_OVERLAY_FS_METACOPY=y
#
# Caches
#
CONFIG_FSCACHE=y
CONFIG_FSCACHE_STATS=y
# CONFIG_FSCACHE_HISTOGRAM is not set
# CONFIG_FSCACHE_DEBUG is not set
# CONFIG_FSCACHE_OBJECT_LIST is not set
# CONFIG_CACHEFILES is not set
# end of Caches
#
# CD-ROM/DVD Filesystems
#
# CONFIG_ISO9660_FS is not set
# CONFIG_UDF_FS is not set
# end of CD-ROM/DVD Filesystems
#
# DOS/FAT/EXFAT/NT Filesystems
#
# CONFIG_MSDOS_FS is not set
# CONFIG_VFAT_FS is not set
# CONFIG_EXFAT_FS is not set
# CONFIG_NTFS_FS is not set
# end of DOS/FAT/EXFAT/NT Filesystems
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
# CONFIG_PROC_VMCORE_DEVICE_DUMP is not set
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_PROC_CHILDREN=y
CONFIG_PROC_PID_ARCH_STATUS=y
CONFIG_PROC_CPU_RESCTRL=y
CONFIG_KERNFS=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_MEMFD_CREATE=y
CONFIG_ARCH_HAS_GIGANTIC_PAGE=y
CONFIG_CONFIGFS_FS=y
CONFIG_EFIVAR_FS=m
# end of Pseudo filesystems
CONFIG_MISC_FILESYSTEMS=y
CONFIG_ORANGEFS_FS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
CONFIG_ECRYPT_FS=y
CONFIG_ECRYPT_FS_MESSAGING=y
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_JFFS2_FS is not set
CONFIG_UBIFS_FS=y
# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set
CONFIG_UBIFS_FS_LZO=y
CONFIG_UBIFS_FS_ZLIB=y
CONFIG_UBIFS_FS_ZSTD=y
CONFIG_UBIFS_ATIME_SUPPORT=y
CONFIG_UBIFS_FS_XATTR=y
CONFIG_UBIFS_FS_SECURITY=y
# CONFIG_UBIFS_FS_AUTHENTICATION is not set
CONFIG_CRAMFS=y
CONFIG_CRAMFS_BLOCKDEV=y
CONFIG_CRAMFS_MTD=y
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_PSTORE=y
CONFIG_PSTORE_DEFLATE_COMPRESS=y
CONFIG_PSTORE_LZO_COMPRESS=y
# CONFIG_PSTORE_LZ4_COMPRESS is not set
# CONFIG_PSTORE_LZ4HC_COMPRESS is not set
# CONFIG_PSTORE_842_COMPRESS is not set
CONFIG_PSTORE_ZSTD_COMPRESS=y
CONFIG_PSTORE_COMPRESS=y
CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
# CONFIG_PSTORE_LZO_COMPRESS_DEFAULT is not set
# CONFIG_PSTORE_ZSTD_COMPRESS_DEFAULT is not set
CONFIG_PSTORE_COMPRESS_DEFAULT="deflate"
CONFIG_PSTORE_CONSOLE=y
CONFIG_PSTORE_PMSG=y
CONFIG_PSTORE_RAM=m
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
# CONFIG_EROFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V2=y
CONFIG_NFS_V3=y
# CONFIG_NFS_V3_ACL is not set
CONFIG_NFS_V4=m
# CONFIG_NFS_SWAP is not set
# CONFIG_NFS_V4_1 is not set
# CONFIG_ROOT_NFS is not set
# CONFIG_NFS_FSCACHE is not set
# CONFIG_NFS_USE_LEGACY_DNS is not set
CONFIG_NFS_USE_KERNEL_DNS=y
CONFIG_NFS_DISABLE_UDP_SUPPORT=y
# CONFIG_NFSD is not set
CONFIG_GRACE_PERIOD=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=m
# CONFIG_SUNRPC_DEBUG is not set
# CONFIG_CEPH_FS is not set
CONFIG_CIFS=m
# CONFIG_CIFS_STATS2 is not set
CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
# CONFIG_CIFS_WEAK_PW_HASH is not set
# CONFIG_CIFS_UPCALL is not set
# CONFIG_CIFS_XATTR is not set
CONFIG_CIFS_DEBUG=y
# CONFIG_CIFS_DEBUG2 is not set
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
# CONFIG_CIFS_DFS_UPCALL is not set
# CONFIG_CIFS_FSCACHE is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
# CONFIG_9P_FS is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
# CONFIG_NLS_CODEPAGE_437 is not set
CONFIG_NLS_CODEPAGE_737=y
CONFIG_NLS_CODEPAGE_775=y
CONFIG_NLS_CODEPAGE_850=y
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
CONFIG_NLS_CODEPAGE_857=y
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
CONFIG_NLS_CODEPAGE_863=y
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
CONFIG_NLS_CODEPAGE_866=y
# CONFIG_NLS_CODEPAGE_869 is not set
CONFIG_NLS_CODEPAGE_936=y
# CONFIG_NLS_CODEPAGE_950 is not set
CONFIG_NLS_CODEPAGE_932=y
# CONFIG_NLS_CODEPAGE_949 is not set
CONFIG_NLS_CODEPAGE_874=y
CONFIG_NLS_ISO8859_8=y
CONFIG_NLS_CODEPAGE_1250=y
CONFIG_NLS_CODEPAGE_1251=y
# CONFIG_NLS_ASCII is not set
# CONFIG_NLS_ISO8859_1 is not set
CONFIG_NLS_ISO8859_2=y
CONFIG_NLS_ISO8859_3=y
# CONFIG_NLS_ISO8859_4 is not set
CONFIG_NLS_ISO8859_5=y
CONFIG_NLS_ISO8859_6=y
CONFIG_NLS_ISO8859_7=y
# CONFIG_NLS_ISO8859_9 is not set
CONFIG_NLS_ISO8859_13=y
CONFIG_NLS_ISO8859_14=y
CONFIG_NLS_ISO8859_15=y
CONFIG_NLS_KOI8_R=y
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
CONFIG_NLS_MAC_CELTIC=y
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
CONFIG_NLS_MAC_CYRILLIC=y
CONFIG_NLS_MAC_GAELIC=y
CONFIG_NLS_MAC_GREEK=y
CONFIG_NLS_MAC_ICELAND=y
CONFIG_NLS_MAC_INUIT=y
# CONFIG_NLS_MAC_ROMANIAN is not set
CONFIG_NLS_MAC_TURKISH=y
CONFIG_NLS_UTF8=y
# CONFIG_DLM is not set
# CONFIG_UNICODE is not set
CONFIG_IO_WQ=y
# end of File systems
#
# Security options
#
CONFIG_KEYS=y
CONFIG_KEYS_REQUEST_CACHE=y
# CONFIG_PERSISTENT_KEYRINGS is not set
CONFIG_BIG_KEYS=y
CONFIG_TRUSTED_KEYS=y
CONFIG_ENCRYPTED_KEYS=y
CONFIG_KEY_DH_OPERATIONS=y
CONFIG_SECURITY_DMESG_RESTRICT=y
# CONFIG_SECURITY is not set
CONFIG_SECURITYFS=y
CONFIG_PAGE_TABLE_ISOLATION=y
CONFIG_FORTIFY_SOURCE=y
CONFIG_STATIC_USERMODEHELPER=y
CONFIG_STATIC_USERMODEHELPER_PATH="/sbin/usermode-helper"
# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set
CONFIG_DEFAULT_SECURITY_DAC=y
CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity"
#
# Kernel hardening options
#
#
# Memory initialization
#
CONFIG_INIT_STACK_NONE=y
CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y
# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
# end of Memory initialization
# end of Kernel hardening options
# end of Security options
CONFIG_XOR_BLOCKS=m
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_SKCIPHER=y
CONFIG_CRYPTO_SKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_RNG_DEFAULT=y
CONFIG_CRYPTO_AKCIPHER2=y
CONFIG_CRYPTO_AKCIPHER=y
CONFIG_CRYPTO_KPP2=y
CONFIG_CRYPTO_KPP=y
CONFIG_CRYPTO_ACOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_NULL2=y
CONFIG_CRYPTO_PCRYPT=y
CONFIG_CRYPTO_CRYPTD=y
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_TEST is not set
CONFIG_CRYPTO_SIMD=y
CONFIG_CRYPTO_GLUE_HELPER_X86=y
CONFIG_CRYPTO_ENGINE=y
#
# Public-key cryptography
#
CONFIG_CRYPTO_RSA=y
CONFIG_CRYPTO_DH=y
# CONFIG_CRYPTO_ECDH is not set
# CONFIG_CRYPTO_ECRDSA is not set
CONFIG_CRYPTO_CURVE25519=y
# CONFIG_CRYPTO_CURVE25519_X86 is not set
#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=m
CONFIG_CRYPTO_GCM=y
CONFIG_CRYPTO_CHACHA20POLY1305=y
CONFIG_CRYPTO_AEGIS128=y
CONFIG_CRYPTO_AEGIS128_AESNI_SSE2=y
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=y
#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CFB is not set
CONFIG_CRYPTO_CTR=y
# CONFIG_CRYPTO_CTS is not set
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=y
# CONFIG_CRYPTO_OFB is not set
CONFIG_CRYPTO_PCBC=y
CONFIG_CRYPTO_XTS=y
CONFIG_CRYPTO_KEYWRAP=y
CONFIG_CRYPTO_NHPOLY1305=y
CONFIG_CRYPTO_NHPOLY1305_SSE2=y
CONFIG_CRYPTO_NHPOLY1305_AVX2=y
# CONFIG_CRYPTO_ADIANTUM is not set
# CONFIG_CRYPTO_ESSIV is not set
#
# Hash modes
#
CONFIG_CRYPTO_CMAC=y
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_XCBC is not set
CONFIG_CRYPTO_VMAC=y
#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_INTEL=y
CONFIG_CRYPTO_CRC32=y
CONFIG_CRYPTO_CRC32_PCLMUL=y
CONFIG_CRYPTO_XXHASH=y
CONFIG_CRYPTO_BLAKE2B=y
CONFIG_CRYPTO_BLAKE2S=y
CONFIG_CRYPTO_BLAKE2S_X86=y
CONFIG_CRYPTO_CRCT10DIF=y
CONFIG_CRYPTO_GHASH=y
CONFIG_CRYPTO_POLY1305=y
# CONFIG_CRYPTO_POLY1305_X86_64 is not set
CONFIG_CRYPTO_MD4=m
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=y
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
CONFIG_CRYPTO_RMD320=y
CONFIG_CRYPTO_SHA1=y
# CONFIG_CRYPTO_SHA1_SSSE3 is not set
CONFIG_CRYPTO_SHA256_SSSE3=y
# CONFIG_CRYPTO_SHA512_SSSE3 is not set
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
# CONFIG_CRYPTO_SHA3 is not set
CONFIG_CRYPTO_SM3=y
CONFIG_CRYPTO_STREEBOG=y
CONFIG_CRYPTO_TGR192=y
# CONFIG_CRYPTO_WP512 is not set
CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=y
#
# Ciphers
#
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_TI=y
CONFIG_CRYPTO_AES_NI_INTEL=y
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=y
# CONFIG_CRYPTO_BLOWFISH is not set
CONFIG_CRYPTO_BLOWFISH_COMMON=y
CONFIG_CRYPTO_BLOWFISH_X86_64=y
CONFIG_CRYPTO_CAMELLIA=y
CONFIG_CRYPTO_CAMELLIA_X86_64=y
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=y
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set
CONFIG_CRYPTO_CAST_COMMON=y
CONFIG_CRYPTO_CAST5=y
# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAST6 is not set
# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
CONFIG_CRYPTO_DES=y
# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set
# CONFIG_CRYPTO_FCRYPT is not set
CONFIG_CRYPTO_KHAZAD=y
# CONFIG_CRYPTO_SALSA20 is not set
CONFIG_CRYPTO_CHACHA20=y
# CONFIG_CRYPTO_CHACHA20_X86_64 is not set
CONFIG_CRYPTO_SEED=y
CONFIG_CRYPTO_SERPENT=y
CONFIG_CRYPTO_SERPENT_SSE2_X86_64=y
CONFIG_CRYPTO_SERPENT_AVX_X86_64=y
# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set
CONFIG_CRYPTO_SM4=y
CONFIG_CRYPTO_TEA=y
CONFIG_CRYPTO_TWOFISH=y
CONFIG_CRYPTO_TWOFISH_COMMON=y
CONFIG_CRYPTO_TWOFISH_X86_64=y
CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=y
# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set
#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_LZO=y
# CONFIG_CRYPTO_842 is not set
CONFIG_CRYPTO_LZ4=y
# CONFIG_CRYPTO_LZ4HC is not set
CONFIG_CRYPTO_ZSTD=y
#
# Random Number Generation
#
CONFIG_CRYPTO_ANSI_CPRNG=y
CONFIG_CRYPTO_DRBG_MENU=y
CONFIG_CRYPTO_DRBG_HMAC=y
# CONFIG_CRYPTO_DRBG_HASH is not set
CONFIG_CRYPTO_DRBG_CTR=y
CONFIG_CRYPTO_DRBG=y
CONFIG_CRYPTO_JITTERENTROPY=y
# CONFIG_CRYPTO_USER_API_HASH is not set
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
# CONFIG_CRYPTO_USER_API_RNG is not set
# CONFIG_CRYPTO_USER_API_AEAD is not set
CONFIG_CRYPTO_HASH_INFO=y
#
# Crypto library routines
#
CONFIG_CRYPTO_LIB_AES=y
CONFIG_CRYPTO_LIB_ARC4=y
CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=y
CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y
CONFIG_CRYPTO_LIB_BLAKE2S=y
CONFIG_CRYPTO_LIB_CHACHA_GENERIC=y
CONFIG_CRYPTO_LIB_CHACHA=y
CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=y
# CONFIG_CRYPTO_LIB_CURVE25519 is not set
CONFIG_CRYPTO_LIB_DES=y
CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
CONFIG_CRYPTO_LIB_POLY1305_GENERIC=y
CONFIG_CRYPTO_LIB_POLY1305=y
# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set
CONFIG_CRYPTO_LIB_SHA256=y
CONFIG_CRYPTO_HW=y
# CONFIG_CRYPTO_DEV_PADLOCK is not set
# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set
# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set
CONFIG_CRYPTO_DEV_CCP=y
# CONFIG_CRYPTO_DEV_CCP_DD is not set
CONFIG_CRYPTO_DEV_QAT=y
# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
CONFIG_CRYPTO_DEV_QAT_C62X=y
# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
CONFIG_CRYPTO_DEV_QAT_C3XXXVF=y
# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
CONFIG_CRYPTO_DEV_VIRTIO=y
# CONFIG_CRYPTO_DEV_SAFEXCEL is not set
# CONFIG_CRYPTO_DEV_CCREE is not set
CONFIG_CRYPTO_DEV_AMLOGIC_GXL=y
CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG=y
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_ASYMMETRIC_TPM_KEY_SUBTYPE=y
# CONFIG_X509_CERTIFICATE_PARSER is not set
CONFIG_PKCS8_PRIVATE_KEY_PARSER=y
# CONFIG_TPM_KEY_PARSER is not set
#
# Certificates for signature checking
#
# CONFIG_SYSTEM_TRUSTED_KEYRING is not set
CONFIG_SYSTEM_BLACKLIST_KEYRING=y
CONFIG_SYSTEM_BLACKLIST_HASH_LIST=""
# end of Certificates for signature checking
CONFIG_BINARY_PRINTF=y
#
# Library routines
#
CONFIG_RAID6_PQ=m
CONFIG_RAID6_PQ_BENCHMARK=y
CONFIG_PACKING=y
CONFIG_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_CORDIC=y
CONFIG_RATIONAL=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_CRC_CCITT=y
CONFIG_CRC16=y
# CONFIG_CRC_T10DIF is not set
CONFIG_CRC_ITU_T=y
CONFIG_CRC32=y
CONFIG_CRC32_SELFTEST=y
# CONFIG_CRC32_SLICEBY8 is not set
# CONFIG_CRC32_SLICEBY4 is not set
CONFIG_CRC32_SARWATE=y
# CONFIG_CRC32_BIT is not set
CONFIG_CRC64=y
# CONFIG_CRC4 is not set
CONFIG_CRC7=y
CONFIG_LIBCRC32C=y
CONFIG_CRC8=y
CONFIG_XXHASH=y
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_COMPRESS=y
CONFIG_LZ4_DECOMPRESS=y
CONFIG_ZSTD_COMPRESS=y
CONFIG_ZSTD_DECOMPRESS=y
CONFIG_XZ_DEC=y
# CONFIG_XZ_DEC_X86 is not set
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
# CONFIG_XZ_DEC_ARMTHUMB is not set
# CONFIG_XZ_DEC_SPARC is not set
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_REED_SOLOMON=y
CONFIG_REED_SOLOMON_ENC8=y
CONFIG_REED_SOLOMON_DEC8=y
CONFIG_REED_SOLOMON_ENC16=y
CONFIG_REED_SOLOMON_DEC16=y
CONFIG_BCH=y
CONFIG_INTERVAL_TREE=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_SWIOTLB=y
CONFIG_DMA_CMA=y
#
# Default contiguous memory area size:
#
CONFIG_CMA_SIZE_MBYTES=0
CONFIG_CMA_SIZE_SEL_MBYTES=y
# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
# CONFIG_CMA_SIZE_SEL_MIN is not set
# CONFIG_CMA_SIZE_SEL_MAX is not set
CONFIG_CMA_ALIGNMENT=8
# CONFIG_DMA_API_DEBUG is not set
CONFIG_SGL_ALLOC=y
CONFIG_IOMMU_HELPER=y
CONFIG_CPUMASK_OFFSTACK=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
CONFIG_CLZ_TAB=y
# CONFIG_IRQ_POLL is not set
CONFIG_MPILIB=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_HAVE_GENERIC_VDSO=y
CONFIG_GENERIC_GETTIMEOFDAY=y
CONFIG_GENERIC_VDSO_TIME_NS=y
CONFIG_FONT_SUPPORT=y
CONFIG_FONT_8x16=y
CONFIG_FONT_AUTOSELECT=y
CONFIG_ARCH_HAS_PMEM_API=y
CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y
CONFIG_ARCH_HAS_UACCESS_MCSAFE=y
CONFIG_ARCH_STACKWALK=y
CONFIG_STACKDEPOT=y
CONFIG_SBITMAP=y
CONFIG_STRING_SELFTEST=y
# end of Library routines
#
# Kernel hacking
#
#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
# CONFIG_PRINTK_CALLER is not set
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_DYNAMIC_DEBUG is not set
CONFIG_SYMBOLIC_ERRNAME=y
CONFIG_DEBUG_BUGVERBOSE=y
# end of printk and dmesg options
#
# Compile-time checks and compiler options
#
CONFIG_DEBUG_INFO=y
CONFIG_DEBUG_INFO_REDUCED=y
# CONFIG_DEBUG_INFO_SPLIT is not set
CONFIG_DEBUG_INFO_DWARF4=y
CONFIG_DEBUG_INFO_BTF=y
# CONFIG_GDB_SCRIPTS is not set
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_FRAME_WARN=2048
CONFIG_STRIP_ASM_SYMS=y
# CONFIG_READABLE_ASM is not set
CONFIG_HEADERS_INSTALL=y
CONFIG_DEBUG_SECTION_MISMATCH=y
# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set
CONFIG_FRAME_POINTER=y
# CONFIG_STACK_VALIDATION is not set
CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y
# end of Compile-time checks and compiler options
#
# Generic Kernel Debugging Instruments
#
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_MAGIC_SYSRQ_SERIAL=y
CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE=""
CONFIG_DEBUG_FS=y
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
CONFIG_UBSAN=y
# CONFIG_UBSAN_TRAP is not set
CONFIG_UBSAN_BOUNDS=y
CONFIG_UBSAN_MISC=y
# CONFIG_UBSAN_SANITIZE_ALL is not set
# CONFIG_UBSAN_NO_ALIGNMENT is not set
CONFIG_UBSAN_ALIGNMENT=y
# CONFIG_TEST_UBSAN is not set
CONFIG_HAVE_ARCH_KCSAN=y
# CONFIG_KCSAN is not set
# end of Generic Kernel Debugging Instruments
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_MISC=y
#
# Memory Debugging
#
CONFIG_PAGE_EXTENSION=y
CONFIG_DEBUG_PAGEALLOC=y
CONFIG_DEBUG_PAGEALLOC_ENABLE_DEFAULT=y
CONFIG_PAGE_OWNER=y
CONFIG_PAGE_POISONING=y
CONFIG_PAGE_POISONING_NO_SANITY=y
# CONFIG_PAGE_POISONING_ZERO is not set
# CONFIG_DEBUG_PAGE_REF is not set
CONFIG_DEBUG_RODATA_TEST=y
CONFIG_GENERIC_PTDUMP=y
CONFIG_PTDUMP_CORE=y
# CONFIG_PTDUMP_DEBUGFS is not set
CONFIG_DEBUG_OBJECTS=y
CONFIG_DEBUG_OBJECTS_SELFTEST=y
CONFIG_DEBUG_OBJECTS_FREE=y
# CONFIG_DEBUG_OBJECTS_TIMERS is not set
CONFIG_DEBUG_OBJECTS_WORK=y
CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set
CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
CONFIG_DEBUG_STACK_USAGE=y
CONFIG_SCHED_STACK_END_CHECK=y
CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y
CONFIG_DEBUG_VM=y
# CONFIG_DEBUG_VM_VMACACHE is not set
CONFIG_DEBUG_VM_RB=y
CONFIG_DEBUG_VM_PGFLAGS=y
CONFIG_DEBUG_VM_PGTABLE=y
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
CONFIG_DEBUG_VIRTUAL=y
CONFIG_DEBUG_MEMORY_INIT=y
CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=y
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_HAVE_ARCH_KASAN=y
CONFIG_HAVE_ARCH_KASAN_VMALLOC=y
CONFIG_CC_HAS_KASAN_GENERIC=y
CONFIG_KASAN_STACK=1
# end of Memory Debugging
CONFIG_DEBUG_SHIRQ=y
#
# Debug Oops, Lockups and Hangs
#
CONFIG_PANIC_ON_OOPS=y
CONFIG_PANIC_ON_OOPS_VALUE=1
CONFIG_PANIC_TIMEOUT=0
# CONFIG_SOFTLOCKUP_DETECTOR is not set
CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y
# CONFIG_HARDLOCKUP_DETECTOR is not set
# CONFIG_DETECT_HUNG_TASK is not set
# CONFIG_WQ_WATCHDOG is not set
# CONFIG_TEST_LOCKUP is not set
# end of Debug Oops, Lockups and Hangs
#
# Scheduler Debugging
#
CONFIG_SCHED_DEBUG=y
CONFIG_SCHED_INFO=y
CONFIG_SCHEDSTATS=y
# end of Scheduler Debugging
# CONFIG_DEBUG_TIMEKEEPING is not set
CONFIG_DEBUG_PREEMPT=y
#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_LOCK_DEBUGGING_SUPPORT=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCK_STAT=y
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
CONFIG_DEBUG_RWSEMS=y
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_LOCKDEP=y
# CONFIG_DEBUG_LOCKDEP is not set
CONFIG_DEBUG_ATOMIC_SLEEP=y
CONFIG_DEBUG_LOCKING_API_SELFTESTS=y
# CONFIG_LOCK_TORTURE_TEST is not set
CONFIG_WW_MUTEX_SELFTEST=m
# end of Lock Debugging (spinlocks, mutexes, etc...)
CONFIG_TRACE_IRQFLAGS=y
CONFIG_STACKTRACE=y
CONFIG_WARN_ALL_UNSEEDED_RANDOM=y
# CONFIG_DEBUG_KOBJECT is not set
#
# Debug kernel data structures
#
CONFIG_DEBUG_LIST=y
CONFIG_DEBUG_PLIST=y
# CONFIG_DEBUG_SG is not set
CONFIG_DEBUG_NOTIFIERS=y
CONFIG_BUG_ON_DATA_CORRUPTION=y
# end of Debug kernel data structures
CONFIG_DEBUG_CREDENTIALS=y
#
# RCU Debugging
#
CONFIG_PROVE_RCU=y
CONFIG_PROVE_RCU_LIST=y
CONFIG_TORTURE_TEST=y
# CONFIG_RCU_PERF_TEST is not set
CONFIG_RCU_TORTURE_TEST=y
CONFIG_RCU_CPU_STALL_TIMEOUT=21
# CONFIG_RCU_TRACE is not set
# CONFIG_RCU_EQS_DEBUG is not set
# end of RCU Debugging
CONFIG_DEBUG_WQ_FORCE_RR_CPU=y
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
CONFIG_LATENCYTOP=y
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_PREEMPTIRQ_TRACEPOINTS=y
CONFIG_TRACING=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
CONFIG_BOOTTIME_TRACING=y
# CONFIG_FUNCTION_TRACER is not set
# CONFIG_STACK_TRACER is not set
# CONFIG_PREEMPTIRQ_EVENTS is not set
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_PREEMPT_TRACER is not set
# CONFIG_SCHED_TRACER is not set
# CONFIG_HWLAT_TRACER is not set
# CONFIG_MMIOTRACE is not set
# CONFIG_ENABLE_DEFAULT_TRACERS is not set
# CONFIG_FTRACE_SYSCALLS is not set
# CONFIG_TRACER_SNAPSHOT is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_BLK_DEV_IO_TRACE is not set
CONFIG_UPROBE_EVENTS=y
CONFIG_BPF_EVENTS=y
CONFIG_DYNAMIC_EVENTS=y
CONFIG_PROBE_EVENTS=y
CONFIG_TRACING_MAP=y
CONFIG_HIST_TRIGGERS=y
# CONFIG_TRACE_EVENT_INJECT is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_TRACE_EVAL_MAP_FILE is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_PREEMPTIRQ_DELAY_TEST is not set
# CONFIG_SYNTH_EVENT_GEN_TEST is not set
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
# CONFIG_SAMPLES is not set
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
# CONFIG_STRICT_DEVMEM is not set
#
# x86 Debugging
#
# CONFIG_DEBUG_AID_FOR_SYZBOT is not set
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_EARLY_PRINTK_USB=y
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
# CONFIG_EARLY_PRINTK_DBGP is not set
CONFIG_EARLY_PRINTK_USB_XDBC=y
# CONFIG_EFI_PGT_DUMP is not set
CONFIG_DEBUG_WX=y
CONFIG_DOUBLEFAULT=y
CONFIG_DEBUG_TLBFLUSH=y
CONFIG_IOMMU_DEBUG=y
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_X86_DECODER_SELFTEST=y
# CONFIG_IO_DELAY_0X80 is not set
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
CONFIG_IO_DELAY_NONE=y
# CONFIG_DEBUG_BOOT_PARAMS is not set
# CONFIG_CPA_DEBUG is not set
CONFIG_DEBUG_ENTRY=y
# CONFIG_DEBUG_NMI_SELFTEST is not set
CONFIG_X86_DEBUG_FPU=y
CONFIG_PUNIT_ATOM_DEBUG=y
# CONFIG_UNWINDER_ORC is not set
CONFIG_UNWINDER_FRAME_POINTER=y
# end of x86 Debugging
#
# Kernel Testing and Coverage
#
CONFIG_KUNIT=y
CONFIG_KUNIT_TEST=y
# CONFIG_KUNIT_EXAMPLE_TEST is not set
CONFIG_NOTIFIER_ERROR_INJECTION=y
CONFIG_PM_NOTIFIER_ERROR_INJECT=y
# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set
CONFIG_FAULT_INJECTION=y
# CONFIG_FAIL_PAGE_ALLOC is not set
# CONFIG_FAIL_MAKE_REQUEST is not set
# CONFIG_FAIL_IO_TIMEOUT is not set
# CONFIG_FAIL_FUTEX is not set
CONFIG_FAULT_INJECTION_DEBUG_FS=y
CONFIG_ARCH_HAS_KCOV=y
CONFIG_CC_HAS_SANCOV_TRACE_PC=y
# CONFIG_KCOV is not set
CONFIG_RUNTIME_TESTING_MENU=y
# CONFIG_LKDTM is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_TEST_MIN_HEAP is not set
# CONFIG_TEST_SORT is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_RBTREE_TEST is not set
CONFIG_REED_SOLOMON_TEST=y
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PERCPU_TEST is not set
CONFIG_ATOMIC64_SELFTEST=y
# CONFIG_TEST_HEXDUMP is not set
# CONFIG_TEST_STRING_HELPERS is not set
CONFIG_TEST_STRSCPY=m
# CONFIG_TEST_KSTRTOX is not set
CONFIG_TEST_PRINTF=m
CONFIG_TEST_BITMAP=m
# CONFIG_TEST_BITFIELD is not set
# CONFIG_TEST_UUID is not set
# CONFIG_TEST_XARRAY is not set
# CONFIG_TEST_OVERFLOW is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_TEST_HASH is not set
# CONFIG_TEST_IDA is not set
CONFIG_TEST_LKM=m
CONFIG_TEST_VMALLOC=m
CONFIG_TEST_USER_COPY=m
CONFIG_TEST_BPF=m
CONFIG_TEST_BLACKHOLE_DEV=m
# CONFIG_FIND_BIT_BENCHMARK is not set
CONFIG_TEST_FIRMWARE=y
CONFIG_TEST_SYSCTL=m
CONFIG_SYSCTL_KUNIT_TEST=y
# CONFIG_LIST_KUNIT_TEST is not set
# CONFIG_TEST_UDELAY is not set
CONFIG_TEST_STATIC_KEYS=m
CONFIG_TEST_KMOD=m
# CONFIG_TEST_DEBUG_VIRTUAL is not set
# CONFIG_TEST_MEMCAT_P is not set
CONFIG_TEST_STACKINIT=y
# CONFIG_TEST_MEMINIT is not set
CONFIG_MEMTEST=y
CONFIG_HYPERV_TESTING=y
# end of Kernel Testing and Coverage
# end of Kernel hacking
[-- Attachment #3: job-script --]
[-- Type: text/plain, Size: 4613 bytes --]
#!/bin/sh
export_top_env()
{
export suite='trinity'
export testcase='trinity'
export category='functional'
export need_memory='300MB'
export runtime=300
export job_origin='/lkp-src/allot/rand/vm-snb/trinity.yaml'
export queue_cmdline_keys='branch
commit
queue_at_least_once'
export queue='validate'
export testbox='vm-snb-49'
export tbox_group='vm-snb'
export branch='linux-devel/devel-catchup-202003241716'
export commit='f675f2f91d0457e2b430936f0d756457fdcad1ca'
export kconfig='x86_64-randconfig-f002-20200324'
export repeat_to=4
export nr_vm=64
export submit_id='5e8181273f34860483d65d2f'
export job_file='/lkp/jobs/scheduled/vm-snb-49/trinity-300s-debian-x86_64-20191114.cgz-f675f2f91d0457e2b430936f0d756457fdcad1ca-20200330-66691-cee4uf-3.yaml'
export id='6953bbf5925d7754cb4b421c1fc67fa5cdf2456e'
export queuer_version='/lkp-src'
export model='qemu-system-x86_64 -enable-kvm -cpu SandyBridge'
export nr_cpu=2
export memory='8G'
export hdd_partitions='/dev/vda /dev/vdb /dev/vdc /dev/vdd /dev/vde /dev/vdf'
export swap_partitions='/dev/vdg'
export need_kconfig='CONFIG_KVM_GUEST=y'
export ssh_base_port=23032
export rootfs='debian-x86_64-20191114.cgz'
export compiler='gcc-7'
export enqueue_time='2020-03-30 13:18:35 +0800'
export _id='5e81812b3f34860483d65d30'
export _rt='/result/trinity/300s/vm-snb/debian-x86_64-20191114.cgz/x86_64-randconfig-f002-20200324/gcc-7/f675f2f91d0457e2b430936f0d756457fdcad1ca'
export user='lkp'
export result_root='/result/trinity/300s/vm-snb/debian-x86_64-20191114.cgz/x86_64-randconfig-f002-20200324/gcc-7/f675f2f91d0457e2b430936f0d756457fdcad1ca/3'
export scheduler_version='/lkp/lkp/.src-20200330-102913'
export LKP_SERVER='inn'
export arch='x86_64'
export max_uptime=1500
export initrd='/osimage/debian/debian-x86_64-20191114.cgz'
export bootloader_append='root=/dev/ram0
user=lkp
job=/lkp/jobs/scheduled/vm-snb-49/trinity-300s-debian-x86_64-20191114.cgz-f675f2f91d0457e2b430936f0d756457fdcad1ca-20200330-66691-cee4uf-3.yaml
ARCH=x86_64
kconfig=x86_64-randconfig-f002-20200324
branch=linux-devel/devel-catchup-202003241716
commit=f675f2f91d0457e2b430936f0d756457fdcad1ca
BOOT_IMAGE=/pkg/linux/x86_64-randconfig-f002-20200324/gcc-7/f675f2f91d0457e2b430936f0d756457fdcad1ca/vmlinuz-5.6.0-rc7-next-20200323-00001-gf675f2f91d045
max_uptime=1500
RESULT_ROOT=/result/trinity/300s/vm-snb/debian-x86_64-20191114.cgz/x86_64-randconfig-f002-20200324/gcc-7/f675f2f91d0457e2b430936f0d756457fdcad1ca/3
LKP_SERVER=inn
selinux=0
debug
apic=debug
sysrq_always_enabled
rcupdate.rcu_cpu_stall_timeout=100
net.ifnames=0
printk.devkmsg=on
panic=-1
softlockup_panic=1
nmi_watchdog=panic
oops=panic
load_ramdisk=2
prompt_ramdisk=0
drbd.minor_count=8
systemd.log_level=err
ignore_loglevel
console=tty0
earlyprintk=ttyS0,115200
console=ttyS0,115200
vga=normal
rw'
export modules_initrd='/pkg/linux/x86_64-randconfig-f002-20200324/gcc-7/f675f2f91d0457e2b430936f0d756457fdcad1ca/modules.cgz'
export bm_initrd='/osimage/deps/debian-x86_64-20180403.cgz/run-ipconfig_2018-04-03.cgz,/osimage/deps/debian-x86_64-20180403.cgz/lkp_2019-08-05.cgz,/osimage/deps/debian-x86_64-20180403.cgz/rsync-rootfs_2018-04-03.cgz,/osimage/pkg/debian-x86_64-20180403.cgz/trinity-x86_64-1c734c75-1_2020-01-06.cgz'
export lkp_initrd='/osimage/user/lkp/lkp-x86_64.cgz'
export site='inn'
export LKP_CGI_PORT=80
export LKP_CIFS_PORT=139
export schedule_notify_address=
export queue_at_least_once=1
export kernel='/pkg/linux/x86_64-randconfig-f002-20200324/gcc-7/f675f2f91d0457e2b430936f0d756457fdcad1ca/vmlinuz-5.6.0-rc7-next-20200323-00001-gf675f2f91d045'
export dequeue_time='2020-03-30 13:18:47 +0800'
export job_initrd='/lkp/jobs/scheduled/vm-snb-49/trinity-300s-debian-x86_64-20191114.cgz-f675f2f91d0457e2b430936f0d756457fdcad1ca-20200330-66691-cee4uf-3.cgz'
[ -n "$LKP_SRC" ] ||
export LKP_SRC=/lkp/${user:-lkp}/src
}
run_job()
{
echo $$ > $TMP/run-job.pid
. $LKP_SRC/lib/http.sh
. $LKP_SRC/lib/job.sh
. $LKP_SRC/lib/env.sh
export_top_env
run_monitor $LKP_SRC/monitors/wrapper kmsg
run_monitor $LKP_SRC/monitors/wrapper heartbeat
run_monitor $LKP_SRC/monitors/wrapper meminfo
run_monitor $LKP_SRC/monitors/wrapper oom-killer
run_monitor $LKP_SRC/monitors/plain/watchdog
run_test $LKP_SRC/tests/wrapper trinity
}
extract_stats()
{
export stats_part_begin=
export stats_part_end=
$LKP_SRC/stats/wrapper kmsg
$LKP_SRC/stats/wrapper meminfo
$LKP_SRC/stats/wrapper time trinity.time
$LKP_SRC/stats/wrapper dmesg
$LKP_SRC/stats/wrapper kmsg
$LKP_SRC/stats/wrapper last_state
$LKP_SRC/stats/wrapper stderr
$LKP_SRC/stats/wrapper time
}
"$@"
[-- Attachment #4: dmesg.xz --]
[-- Type: application/x-xz, Size: 51016 bytes --]
[-- Attachment #5: trinity --]
[-- Type: text/plain, Size: 279263 bytes --]
Seeding trinity based on x86_64-randconfig-f002-20200324
groupadd: group 'nogroup' already exists
2020-03-30 05:23:55 chroot --userspec nobody:nogroup / trinity -q -q -l off -s 3011191667 -x get_robust_list -x remap_file_pages -N 999999999
Trinity 2019.06 Dave Jones <davej@codemonkey.org.uk>
shm:0x7fa4c8f19000-0x7fa4d5b15d00 (4 pages)
[main] Marking syscall get_robust_list (64bit:274 32bit:312) as to be disabled.
[main] Marking syscall remap_file_pages (64bit:216 32bit:257) as to be disabled.
[main] Couldn't chmod tmp/ to 0777.
[main] Using user passed random seed: 3011191667.
[main] Kernel was tainted on startup. Will ignore flags that are already set.
Marking all syscalls as enabled.
[main] Disabling syscalls marked as disabled by command line options
[main] Marked 64-bit syscall remap_file_pages (216) as deactivated.
[main] Marked 64-bit syscall get_robust_list (274) as deactivated.
[main] Marked 32-bit syscall remap_file_pages (257) as deactivated.
[main] Marked 32-bit syscall get_robust_list (312) as deactivated.
[main] 32-bit syscalls: 426 enabled, 3 disabled. 64-bit syscalls: 345 enabled, 91 disabled.
[main] Using pid_max = 4096
[main] futex: 0 owner:0 global:1
[main] futex: 0 owner:0 global:1
[main] futex: 0 owner:0 global:1
[main] futex: 0 owner:0 global:1
[main] futex: 0 owner:0 global:1
[main] Reserved/initialized 5 futexes.
[main] sysv_shm: id:0 size:8192 flags:7b0 ptr:(nil) global:1
[main] sysv_shm: id:1 size:4096 flags:17b0 ptr:(nil) global:1
[main] Added 14 filenames from /dev
[main] Added 18893 filenames from /proc
[main] Added 13758 filenames from /sys
[main] Couldn't open socket (28:3:2). Address family not supported by protocol
[main] Couldn't open socket (11:3:2). Address family not supported by protocol
[main] Couldn't open socket (2:5:0). Socket type not supported
[main] Couldn't open socket (28:5:1). Address family not supported by protocol
[main] Couldn't open socket (9:5:0). Address family not supported by protocol
[main] Couldn't open socket (11:2:2). Address family not supported by protocol
[main] Couldn't open socket (8:2:0). Address family not supported by protocol
[main] Couldn't open socket (44:3:0). Address family not supported by protocol
[main] Couldn't open socket (38:5:0). Address family not supported by protocol
[main] Couldn't open socket (11:5:1). Address family not supported by protocol
[main] Couldn't open socket (11:5:5). Address family not supported by protocol
[main] Couldn't open socket (2:5:132). Socket type not supported
[main] Couldn't open socket (21:5:0). Address family not supported by protocol
[main] Couldn't open socket (20:2:0). Address family not supported by protocol
[main] Couldn't open socket (37:1:1). Address family not supported by protocol
[main] Couldn't open socket (2:5:0). Socket type not supported
[main] Couldn't open socket (9:5:0). Address family not supported by protocol
[main] Couldn't open socket (36:5:3). Address family not supported by protocol
[main] Couldn't open socket (11:5:10). Address family not supported by protocol
[main] Couldn't open socket (21:5:0). Address family not supported by protocol
[main] Couldn't open socket (34:5:6). Address family not supported by protocol
Can't do protocol UNSPEC
[main] Couldn't open socket (34:5:3). Address family not supported by protocol
[main] Couldn't open socket (38:5:0). Address family not supported by protocol
[main] Couldn't open socket (29:2:2). Address family not supported by protocol
[main] Couldn't open socket (24:2:1). Address family not supported by protocol
[main] Couldn't open socket (23:2:1). Address family not supported by protocol
[main] Couldn't open socket (32:2:2). Address family not supported by protocol
[main] Couldn't open socket (30:5:0). Address family not supported by protocol
[main] Couldn't open socket (41:2:0). Address family not supported by protocol
Can't do protocol WANPIPE
[main] Couldn't open socket (4:2:0). Address family not supported by protocol
[main] Couldn't open socket (33:2:2). Address family not supported by protocol
[main] Couldn't open socket (30:1:0). Address family not supported by protocol
[main] Couldn't open socket (23:1:0). Address family not supported by protocol
Can't do protocol BRIDGE
Can't do protocol KEY
[main] Couldn't open socket (27:1:4). Address family not supported by protocol
Can't do protocol BRIDGE
Can't do protocol PACKET
[main] Couldn't open socket (40:1:1). Address family not supported by protocol
[main] Couldn't open socket (8:2:0). Address family not supported by protocol
Can't do protocol WANPIPE
Can't do protocol LLC
Can't do protocol UNSPEC
Can't do protocol PACKET
[main] Couldn't open socket (2:1:132). Protocol not supported
[main] Enabled 14/14 fd providers. initialized:14.
[main] Error opening tracing_on : Permission denied
[child3:1013] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1014] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1003] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1019] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1025] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1004] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1027] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1032] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1035] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1036] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1015] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1038] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1039] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1040] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1041] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1044] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1046] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1047] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1002] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1028] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1056] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1057] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1037] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1051] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1061] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1064] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1066] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1055] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1068] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1070] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1058] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1074] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1075] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1077] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1079] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1080] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1059] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1084] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1082] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1085] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1086] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1088] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1089] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1069] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1097] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1098] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1099] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1100] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1107] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1111] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1112] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1113] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1114] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1115] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1117] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1092] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1118] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1120] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1121] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1126] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1087] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1136] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1138] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1119] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1139] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1140] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1141] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1143] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1144] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1145] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1146] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1147] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1142] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1128] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1154] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1155] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1156] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1157] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1158] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1159] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1161] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1162] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1163] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1164] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1173] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1174] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1175] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1176] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1177] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1148] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1179] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1181] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1184] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1190] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1073] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1191] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1178] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1160] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1214] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1215] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1216] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1221] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1220] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1224] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1222] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1225] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1226] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1227] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1231] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1230] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1232] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1235] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1237] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1238] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1239] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1240] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1242] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1245] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1246] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1248] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1249] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1250] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1252] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1219] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1257] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1218] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1259] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1262] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1265] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1233] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1266] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1268] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1274] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1272] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1276] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1277] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1278] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1280] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1282] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1283] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1281] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1285] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1286] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1255] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1287] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1284] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1295] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1296] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1299] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1300] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1290] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1301] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1306] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1291] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1310] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1309] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1312] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1313] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1308] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1315] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1318] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1319] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1317] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1316] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1324] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1263] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 10021 iterations. [F:7305 S:2528 HI:367]
[child0:1322] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1325] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1331] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1334] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1333] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1338] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1339] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1341] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1342] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1343] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1345] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1346] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1349] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1351] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1353] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1335] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1337] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1357] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1359] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1323] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1365] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1366] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1360] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1358] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1369] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1372] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1368] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1375] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1376] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1373] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1383] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1385] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1379] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1367] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1355] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1392] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1387] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1401] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1399] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1403] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1404] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1409] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1410] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1411] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1413] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1393] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1418] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1424] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1426] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1429] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1430] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1431] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1432] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1406] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1435] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1436] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1414] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1441] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1442] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1395] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1446] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1433] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1454] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1457] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1438] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1459] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1460] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1461] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1462] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1464] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1465] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1466] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1469] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1447] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1471] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1470] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1477] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1478] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1480] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1482] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1458] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1444] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1494] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1497] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1498] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1500] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1505] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1485] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1511] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1514] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1515] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1483] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1517] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1518] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1516] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1522] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1526] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1527] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1528] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1473] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1532] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1534] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1506] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1542] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1543] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1523] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1548] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1549] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1529] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1553] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1554] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1556] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1555] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1559] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1561] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1562] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1564] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1567] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1537] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1571] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1572] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1574] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1575] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1544] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1578] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1589] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1568] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1590] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1599] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1593] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1557] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1597] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1608] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1606] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1615] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1607] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1620] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1614] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1619] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1625] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1627] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1630] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1635] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1623] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1624] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1640] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1638] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1639] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1641] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1644] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1645] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1647] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1609] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 20092 iterations. [F:14629 S:5096 HI:367]
[child2:1649] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1651] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1653] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1655] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1659] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1643] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1642] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1666] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1667] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1648] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1670] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1671] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1673] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1674] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1675] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1676] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1663] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1685] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1686] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1687] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1688] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1669] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1689] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1691] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1681] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1697] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1698] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1700] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1660] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1703] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1704] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1702] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1709] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1711] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1690] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1694] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1719] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1718] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1721] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1720] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1724] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1723] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1729] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1736] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1710] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1738] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1714] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1739] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1740] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1742] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1746] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1747] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1749] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1748] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1752] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1755] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1741] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1754] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1766] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1767] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1726] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1769] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1771] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1772] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1774] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1775] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1777] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1763] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1783] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1787] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1768] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1791] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1793] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1794] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1796] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1778] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1757] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1804] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1806] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1807] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1808] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1809] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1788] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1811] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1812] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1813] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1814] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1815] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1817] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1818] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1820] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1821] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1798] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1825] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1800] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1829] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1831] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1832] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1834] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1833] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1841] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1838] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1843] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1845] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1847] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1810] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1849] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1850] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1848] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1854] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1853] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1855] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1857] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1859] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1856] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1867] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1862] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1868] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1870] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1822] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1872] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1844] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1880] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1882] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1883] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1884] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1869] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1871] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1890] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1886] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1889] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1902] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1903] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1904] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1894] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1900] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1906] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1915] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1913] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1891] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1922] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1923] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1924] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1926] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1905] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1928] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1929] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1930] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1931] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1932] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1934] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1935] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1936] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1941] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1943] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1921] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1927] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 30108 iterations. [F:21924 S:7633 HI:367]
[child1:1947] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1948] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1953] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1916] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1956] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1957] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1963] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1965] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1968] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1944] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1970] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1969] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1972] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1945] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1974] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1973] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1976] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1954] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1980] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1977] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1986] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1987] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1988] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1971] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1996] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1997] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1999] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2000] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2001] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2002] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1978] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2003] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2008] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2007] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2013] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2012] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2014] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2016] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2017] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2018] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2020] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2021] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2022] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2023] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2025] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2029] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2030] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1982] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2032] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1992] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2041] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2044] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2045] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2046] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2015] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2031] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2034] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2049] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2052] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2053] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2050] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2055] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2059] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2047] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2057] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2061] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2063] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2064] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2066] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2067] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2071] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2048] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2065] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2075] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2080] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2082] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2083] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2084] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2085] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2087] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2088] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2069] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2093] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2094] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2074] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2086] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2100] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2089] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2104] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2103] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2105] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2106] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2107] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2108] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2110] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2111] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2112] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2113] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2116] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2119] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2097] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2122] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2098] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2129] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2109] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2131] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2130] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2134] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2136] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2137] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2138] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2127] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2143] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2144] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2146] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2148] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2132] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2150] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2153] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2154] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2156] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2140] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2160] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2125] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2166] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2158] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2168] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2174] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2175] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2176] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2177] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2178] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2179] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2180] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2149] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2181] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2184] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2185] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2170] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2195] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2163] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2198] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2196] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2206] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2207] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2186] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2216] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2193] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2218] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2221] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2200] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2217] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2229] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2210] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2232] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2233] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2223] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2237] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2240] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2241] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2244] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2245] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2230] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2251] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2226] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2252] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2259] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2260] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2262] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2264] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2261] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2265] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2266] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2247] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2235] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2276] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2277] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2270] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2281] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2282] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2271] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 40215 iterations. [F:29250 S:10204 HI:367]
[child1:2291] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2283] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2272] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2294] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2297] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2298] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2295] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2299] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2301] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2306] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2311] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2312] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2318] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2317] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2320] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2322] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2321] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2323] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2278] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2324] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2328] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2329] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2331] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2332] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2304] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2326] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2341] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2342] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2344] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2345] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2346] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2335] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2330] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2349] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2350] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2354] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2353] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2356] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2340] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2368] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2370] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2371] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2372] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2373] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2351] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2376] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2377] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2378] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2375] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2379] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2362] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2392] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2358] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2394] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2395] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2396] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2397] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2398] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2400] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2403] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2408] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2411] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2402] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2417] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2409] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2413] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2418] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2424] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2427] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2384] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2428] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2429] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2431] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2433] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2440] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2436] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2443] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2442] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2445] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2446] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2448] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2447] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2449] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2452] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2454] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2456] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2459] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2460] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2462] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2465] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2422] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2472] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2471] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2475] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2479] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2480] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2450] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2483] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2484] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2486] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2474] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2489] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2494] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2481] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2496] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2495] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2498] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2499] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2501] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2438] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2503] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2504] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2507] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2487] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2509] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2510] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2511] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2512] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2502] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2508] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2521] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2522] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2525] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2526] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2527] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2529] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2530] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2531] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2532] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2533] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2513] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2535] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2536] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2537] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2538] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2539] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2497] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2545] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2547] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2519] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2552] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2555] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2554] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2557] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2556] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2558] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2559] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2560] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2562] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2561] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2534] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2568] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2571] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2573] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2574] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2576] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2578] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2541] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2581] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2587] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2588] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2589] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2591] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2595] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2596] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2597] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2564] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2566] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2599] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2603] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2604] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2606] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2607] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2608] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2610] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2612] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2614] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 50308 iterations. [F:36554 S:12797 HI:367]
[child1:2582] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2616] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2618] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2622] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2624] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2629] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2630] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2632] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2598] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2635] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2636] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2637] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2638] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2639] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2640] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2641] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2642] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2643] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2644] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2602] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2645] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2648] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2615] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2650] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2634] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2657] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2659] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2660] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2661] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2664] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2666] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2667] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2647] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2649] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2670] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2672] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2679] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2681] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2682] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2684] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2651] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2688] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2690] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2691] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2693] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2675] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2698] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2668] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2702] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2704] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2685] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2706] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2707] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2708] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2695] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2713] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2700] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2721] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2725] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2705] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2727] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2711] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2734] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2735] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2737] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2738] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2739] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2746] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2747] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2751] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2752] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2753] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2754] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2728] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2770] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2771] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2774] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2750] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2775] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2776] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2777] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2778] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2755] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2779] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2783] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2784] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2785] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2786] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2789] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2791] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2792] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2793] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2794] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2796] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2797] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2798] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2799] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2729] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2802] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2805] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2806] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2807] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2817] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2788] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2819] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2821] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2825] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2826] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2827] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2800] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2831] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2832] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2833] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2809] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2838] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2839] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2840] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2828] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2846] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2849] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2850] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2841] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2857] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2818] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2863] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2864] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2853] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2867] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2868] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2870] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2871] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2872] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2874] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2875] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2878] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2859] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2880] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2881] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2865] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2888] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2890] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2892] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2893] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2894] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2895] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2834] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2884] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2882] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 60312 iterations. [F:43795 S:15391 HI:367]
[child2:2901] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2902] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2904] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2907] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2908] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2909] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2905] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2911] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2912] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2914] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2915] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2896] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2919] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2921] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2923] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2924] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2897] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2925] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2934] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2935] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2936] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2917] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2944] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2945] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2929] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2930] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2948] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2950] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2952] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2951] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2956] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2957] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2954] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2962] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2937] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2961] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2960] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2976] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2973] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2963] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2980] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2979] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2981] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2982] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2985] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2986] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2989] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2990] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2967] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2983] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3001] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2987] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3002] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2993] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3004] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3008] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3012] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2998] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3015] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3014] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3017] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3022] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3003] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3027] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3023] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3034] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3024] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3036] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3039] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3035] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3041] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3040] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3028] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3046] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3047] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3051] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3009] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3053] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3043] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3052] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3064] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3042] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3073] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3074] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3076] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3077] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3078] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3080] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3083] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3084] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3085] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3088] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3079] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3090] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3092] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3089] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3066] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3101] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3103] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3054] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3106] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3098] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3114] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3097] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3116] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3115] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3119] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3121] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3105] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3128] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3130] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3131] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3132] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3133] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3134] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3136] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3137] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3138] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3140] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3141] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3144] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3118] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3146] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3149] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3151] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3108] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3145] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3160] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3161] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3162] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3163] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3165] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3171] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3156] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3152] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3123] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3176] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3178] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3179] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3182] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3185] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3188] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3190] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3191] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3192] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3197] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3198] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3199] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3200] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3180] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3204] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3205] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3208] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3187] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3210] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3202] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3214] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3215] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3212] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3220] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 70315 iterations. [F:51068 S:17937 HI:367]
[child2:3209] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3229] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3231] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3233] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3201] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3235] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3216] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3237] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3238] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3239] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3241] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3242] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3244] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3243] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3247] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3246] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3249] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3254] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3255] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3224] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3260] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3261] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3265] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3266] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3267] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3269] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3272] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3251] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3275] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3276] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3279] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3256] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3277] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3281] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3280] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3286] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3289] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3297] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3292] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3295] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3301] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3299] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3302] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3305] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3306] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3307] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3245] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3304] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3309] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3316] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3313] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3323] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3326] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3327] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3322] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3336] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3330] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3338] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3339] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3340] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3345] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3346] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3347] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3348] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3349] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3314] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3351] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3350] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3354] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3357] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3317] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3362] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3365] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3337] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3352] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3374] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3360] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3370] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3383] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3385] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3375] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3377] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3389] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3391] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3390] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3394] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3397] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3395] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3367] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3387] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3411] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3413] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3415] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3418] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3419] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3420] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3422] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3398] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3424] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3404] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3425] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3430] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3431] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3433] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3437] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3443] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3445] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3427] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3447] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3450] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3453] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3454] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3455] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3457] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3456] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3459] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3460] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3462] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3458] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3466] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3468] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3464] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3423] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3475] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3471] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3473] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3412] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3483] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3477] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3488] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3493] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3490] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3491] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3494] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3500] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3504] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3503] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3502] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3506] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3513] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3518] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3519] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3520] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3521] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3522] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3523] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3525] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3492] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3515] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3531] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3535] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3527] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 80341 iterations. [F:58438 S:20419 HI:367]
[child2:3544] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3545] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3547] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3509] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3548] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3549] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3550] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3557] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3551] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3558] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3560] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3562] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3563] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3564] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3561] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3566] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3567] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3572] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3577] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3579] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3576] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3581] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3532] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3582] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3580] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3587] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3584] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3591] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3593] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3590] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3595] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3592] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3597] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3599] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3600] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3538] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3596] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3611] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3612] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3598] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3601] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3617] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3620] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3621] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3623] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3625] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3627] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3628] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3629] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3630] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3632] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3633] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3636] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3607] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3614] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3642] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3643] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3622] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3646] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3647] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3648] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3649] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3650] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3651] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3652] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3653] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3644] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3659] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3638] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3662] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3656] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3666] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3667] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3674] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3675] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3676] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3679] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3682] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3686] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3687] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3639] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3691] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3694] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3663] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3700] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3697] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3701] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3703] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3710] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3713] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3714] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3716] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3705] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3723] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3727] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3688] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3730] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3732] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3717] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3739] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3740] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3728] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3743] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3745] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3660] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3747] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3746] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3751] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3749] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3748] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3733] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3758] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3760] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3762] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3755] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3752] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3763] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3769] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3770] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3771] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3773] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3774] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3767] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3784] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3768] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3789] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3792] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3793] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3794] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3795] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3796] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3798] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3799] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3802] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3806] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3807] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3775] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3808] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3809] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3812] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3810] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3813] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3818] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3821] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3823] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3756] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3815] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3826] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3833] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3832] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3836] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3786] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3838] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3840] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3843] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3828] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3850] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3834] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3853] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3852] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3855] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3857] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3837] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3861] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3866] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3846] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3869] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3856] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3871] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3877] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3870] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3880] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3881] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3862] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3887] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3888] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3890] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3892] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3893] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3894] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3895] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3879] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3898] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3899] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3900] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3901] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3883] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3904] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 90354 iterations. [F:65723 S:22922 HI:367]
[child1:3905] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3907] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3908] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3910] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3911] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3913] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3876] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3920] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3922] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3897] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3926] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3930] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3919] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3923] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3902] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3940] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3938] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3947] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3948] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3949] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3950] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3951] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3953] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3955] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3941] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3956] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3967] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3937] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3968] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3970] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3971] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3958] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3969] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3933] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3979] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3973] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3977] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3983] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3981] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3982] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3988] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3989] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3990] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3992] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3995] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3994] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3999] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3998] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4002] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4004] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3978] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4007] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4011] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4014] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4015] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4016] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4017] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4020] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3984] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:4024] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4023] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:4026] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4027] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:4029] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4030] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4032] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4033] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4038] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4009] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4043] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4044] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4045] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4046] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4047] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4048] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:4031] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:4050] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:4001] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:4056] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:4058] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:4059] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:4051] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:4062] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4039] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4066] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4070] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4071] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4074] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4075] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4078] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4049] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4079] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4080] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4081] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4082] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4086] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4087] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4089] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:4063] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:4094] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:300] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:4060] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:319] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:320] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:321] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:326] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:327] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:4093] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:4083] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:329] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:331] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:342] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:343] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:330] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:348] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:336] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:350] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:351] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:354] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:352] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:356] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:357] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:359] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:360] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:363] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:361] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:366] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:367] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:369] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:370] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:374] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:322] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:372] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:384] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:376] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:387] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:380] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:390] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:391] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:392] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:393] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:395] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:396] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:399] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:400] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:386] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:389] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:410] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:404] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:412] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:414] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:415] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:416] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:417] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:408] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:418] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:430] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:411] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:433] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:434] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:435] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:436] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:437] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 100386 iterations. [F:73051 S:25427 HI:367]
[child0:347] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:438] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:439] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:442] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:443] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:445] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:444] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:446] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:447] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:452] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:454] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:455] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:456] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:457] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:460] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:461] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:462] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:464] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:465] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:466] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:467] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:448] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:475] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:476] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:477] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:480] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:468] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:484] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:487] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:488] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:490] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:491] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:492] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:494] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:495] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:441] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:497] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:499] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:500] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:427] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:513] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:515] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:516] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:518] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:519] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:520] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:505] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:521] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:525] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:538] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:542] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:529] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:547] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:552] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:555] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:562] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:563] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:483] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:569] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:570] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:548] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:568] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:578] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:498] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:581] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:583] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:571] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:586] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:587] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:588] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:589] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:574] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:591] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:590] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:594] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:597] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:598] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:604] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:611] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:579] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:612] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:614] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:615] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:613] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:593] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:618] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:622] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:636] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:584] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:642] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:632] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:621] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:651] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:652] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:653] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:654] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:657] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:658] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:638] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:645] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:668] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:670] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:672] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:674] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:675] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:677] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:646] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:680] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:678] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:683] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:686] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:687] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:688] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:689] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:691] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:694] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:659] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:698] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:699] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:700] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:661] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:702] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:706] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:710] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:711] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:704] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:719] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:723] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:724] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:725] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:726] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:697] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:730] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:731] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:737] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:738] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:740] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:741] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:742] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:744] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:745] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:746] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:748] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:722] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:750] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:757] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:684] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:763] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:764] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:765] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:766] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:767] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:768] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:753] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:772] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:727] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:777] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:769] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:781] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:762] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:784] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:778] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:786] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:788] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:794] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:782] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:798] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 110453 iterations. [F:80434 S:27906 HI:367]
[child0:802] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:779] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:804] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:817] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:818] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:821] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:819] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:823] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:825] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:826] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:830] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:832] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:833] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:834] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:796] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:840] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:827] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:835] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:845] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:846] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:847] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:848] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:793] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:854] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:856] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:843] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:859] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:860] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:861] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:862] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:841] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:868] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:869] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:857] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:871] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:873] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:874] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:849] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:870] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:883] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:875] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:884] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:885] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:886] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:888] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:863] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:887] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:895] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:898] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:876] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:897] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:900] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:899] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:910] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:903] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:906] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:913] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:915] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:917] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:912] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:914] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:926] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:928] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:930] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:931] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:892] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:933] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:934] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:935] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:937] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:938] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:922] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:941] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:940] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:932] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:949] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:948] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:952] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:954] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:956] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:955] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:961] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:959] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:964] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:965] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:967] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:966] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:968] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:969] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:971] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:970] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:973] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:972] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:976] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:982] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:984] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:986] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:987] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:988] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:943] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:990] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:991] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:992] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:974] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:997] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:998] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:999] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1001] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1009] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1010] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1011] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:995] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1016] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1018] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:919] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1022] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1025] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1026] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1028] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1029] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1030] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1033] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1034] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1040] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1041] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:989] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1042] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1024] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1014] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1046] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1056] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1057] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1062] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1063] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1048] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1066] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1067] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1068] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1071] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1072] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1075] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1077] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1078] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1080] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1081] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1044] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1058] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1064] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1090] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1091] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1096] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1097] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1098] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1082] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1101] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1103] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1105] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1087] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1109] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1088] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1100] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1110] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1115] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1111] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1122] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1120] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1126] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1124] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1127] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 120553 iterations. [F:87795 S:30438 HI:367]
[child0:1128] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1129] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1130] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1133] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1135] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1134] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1137] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1116] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1139] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1123] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1136] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1140] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1151] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1153] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1154] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1155] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1158] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1163] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1148] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1166] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1167] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1168] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1141] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1164] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1146] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1169] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1178] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1179] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1180] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1181] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1182] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1170] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1184] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1185] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1186] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1187] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1189] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1190] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1188] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1192] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1197] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1175] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1199] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1204] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1205] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1209] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1210] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1176] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1212] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1214] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1215] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1216] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1217] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1218] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1221] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1223] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1225] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1226] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1228] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1229] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1213] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1236] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1237] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1230] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1243] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1194] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1246] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1248] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1251] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1252] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1253] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1255] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1211] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1259] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1260] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1261] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1265] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1242] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1268] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1245] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1274] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1275] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1257] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1280] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1284] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1285] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1286] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1287] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1288] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1291] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1267] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1293] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1272] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1295] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1296] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1297] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1294] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1302] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1278] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1308] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1310] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1313] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1298] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1319] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1320] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1306] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1322] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1329] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1330] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1331] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1336] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1315] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1339] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1342] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1345] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1346] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1350] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1351] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1353] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1354] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1356] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1321] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1363] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1358] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1366] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1365] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1370] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1368] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1372] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1374] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1375] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1376] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1377] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1378] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1379] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1380] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1381] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1383] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1384] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1386] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1387] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1389] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1390] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1392] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1393] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1394] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1396] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1301] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1400] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1401] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1373] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1402] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1337] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1414] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1417] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1406] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1418] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1398] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 130583 iterations. [F:95111 S:32969 HI:367]
[child2:1413] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1428] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1443] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1444] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1433] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1447] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1449] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1452] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1455] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1459] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1460] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1461] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1462] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1442] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1446] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1467] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1469] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1468] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1436] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1473] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1475] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1472] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1477] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1478] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1470] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1465] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1484] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1480] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1486] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1483] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1491] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1490] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1482] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1493] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1496] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1492] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1497] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1501] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1500] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1499] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1506] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1507] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1505] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1510] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1509] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1512] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1513] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1511] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1516] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1514] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1517] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1519] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1520] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1521] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1526] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1488] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1534] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1535] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1536] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1537] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1540] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1542] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1545] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1502] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1547] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1549] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1551] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1552] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1553] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1554] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1518] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1556] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1546] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1555] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1558] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1565] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1569] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1570] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1571] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1572] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1562] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1577] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1578] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1579] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1580] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1566] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1586] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1529] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1589] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1588] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1592] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1595] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1596] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1597] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1598] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1599] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1600] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1602] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1604] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1609] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1611] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1612] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1613] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1591] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1573] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1623] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1581] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1629] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1630] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1633] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1635] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1636] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1621] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1642] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1641] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1624] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1646] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1614] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1645] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1655] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1652] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1660] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1662] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1663] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1664] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1665] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1644] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1648] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1658] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1674] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1675] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1679] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1682] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1683] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1666] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1687] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1686] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1688] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1689] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1693] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1692] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1699] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1701] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1702] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1708] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1711] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1712] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1713] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1714] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1720] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1721] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1722] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1724] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1726] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1673] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1695] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1728] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1738] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1734] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1746] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1748] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1749] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1735] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1751] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1752] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1754] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1668] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1757] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1759] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1740] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 140598 iterations. [F:102372 S:35532 HI:367]
[child1:1750] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1766] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1768] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1769] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1775] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1776] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1755] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1765] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1785] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1777] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1787] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1779] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1789] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1788] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1790] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1791] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1792] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1793] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1797] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1801] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1794] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1804] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1806] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1805] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1760] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1810] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1786] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1813] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1815] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1817] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1809] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1819] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1816] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1822] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1826] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1825] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1824] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1840] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1823] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1842] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1843] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1845] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1846] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1848] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1828] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1851] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1852] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1853] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1850] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1856] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1857] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1860] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1867] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1870] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1873] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1874] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1877] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1878] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1881] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1884] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1886] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1831] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1890] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1892] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1844] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1899] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1900] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1855] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1902] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1904] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1905] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1906] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1909] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1910] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1911] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1912] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1913] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1914] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1891] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1894] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1926] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1924] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1928] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1931] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1930] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1933] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1934] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1936] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1940] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1919] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1948] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1901] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1954] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1956] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1942] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1958] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1960] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1961] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1963] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1965] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1937] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1969] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1976] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1978] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1957] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1982] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1983] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1985] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1986] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1967] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1990] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1991] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1992] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1950] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1994] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1979] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:1996] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2000] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2005] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2006] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2007] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2010] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2011] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2013] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2014] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2016] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2017] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2018] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2021] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2022] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2023] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2025] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:1987] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2029] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2030] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2031] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2032] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2033] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2034] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:1995] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:1997] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2038] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2036] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2039] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2042] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2045] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2047] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2027] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2040] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2052] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2053] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2055] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2057] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2059] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2060] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2061] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2063] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2066] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2069] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2072] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2073] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2074] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2051] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2077] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2079] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2080] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2081] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2035] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2084] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2048] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2089] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2091] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2082] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2095] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2083] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2097] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2098] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2100] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2099] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2104] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2105] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2093] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 150703 iterations. [F:109777 S:38018 HI:367]
[child2:2106] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2087] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2115] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2116] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2117] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2112] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2103] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2113] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2124] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2127] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2129] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2130] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2131] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2118] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2133] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2134] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2136] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2132] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2138] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2139] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2141] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2143] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2144] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2148] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2140] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2152] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2153] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2154] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2122] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2157] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2149] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2158] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2162] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2164] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2165] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2123] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2169] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2170] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2171] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2174] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2160] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2177] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2178] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2167] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2166] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2182] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2184] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2186] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2187] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2175] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2189] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2195] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2196] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2197] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2198] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2199] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2202] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2203] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2204] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2205] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2207] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2208] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2191] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2210] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2212] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2188] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2220] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2223] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2225] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2213] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2215] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2185] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2234] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2236] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2237] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2238] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2239] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2242] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2244] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2230] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2246] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2228] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2226] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2251] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2255] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2256] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2257] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2258] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2259] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2248] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2261] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2247] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2272] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2254] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2275] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2276] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2277] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2278] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2279] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2262] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2281] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2283] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2286] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2274] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2292] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2293] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2280] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2260] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2300] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2301] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2304] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2288] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2308] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2311] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2309] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2315] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2316] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2319] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2296] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2313] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2327] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2328] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2329] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2330] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2320] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2322] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2334] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2335] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2336] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2338] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2341] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2342] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2297] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2346] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2348] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2352] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2355] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2357] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2359] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2360] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2362] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2364] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2331] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2368] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2369] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2370] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2371] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2372] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2373] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2375] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2337] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2377] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2379] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2343] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2382] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2385] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2388] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2389] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2392] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2366] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2397] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2399] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2400] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2404] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2376] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2410] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2411] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2413] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2414] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2384] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2416] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2415] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2417] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2420] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2419] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2422] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2424] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2426] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2427] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 161010 iterations. [F:117223 S:40667 HI:367]
[child3:2405] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2447] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2423] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2429] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2453] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2454] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2455] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2456] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2457] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2460] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2463] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2464] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2465] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2467] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2449] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2469] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2470] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2472] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2393] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2475] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2450] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2478] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2479] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2468] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2491] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2492] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2493] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2494] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2495] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2499] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2500] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2501] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2476] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2503] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2508] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2507] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2509] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2511] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2512] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2514] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2510] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2516] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2517] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2485] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2519] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2520] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2521] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2518] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2524] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2526] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2527] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2528] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2529] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2532] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2533] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2536] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2537] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2474] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2515] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2540] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2541] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2522] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2543] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2546] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2548] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2549] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2550] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2551] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2553] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2538] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2555] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2558] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2561] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2563] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2565] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2539] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2571] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2560] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2566] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2578] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2579] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2573] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2581] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2542] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2584] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2588] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2590] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2591] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2592] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2577] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2598] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2599] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2601] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2602] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2603] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2605] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2606] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2580] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2607] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2610] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2608] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2614] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2613] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2616] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2617] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2618] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2619] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2582] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2620] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2623] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2594] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2622] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2627] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2629] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2631] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2632] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2638] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2640] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2641] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2642] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2647] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2648] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2651] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2652] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2654] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2655] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2656] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2658] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2660] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2661] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2662] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2664] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2665] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2615] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2624] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2625] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2674] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2671] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2669] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2675] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2680] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2685] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2688] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2690] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2691] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2693] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2695] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2698] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2699] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2677] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2703] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2666] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2706] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2708] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2707] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2711] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2713] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2714] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2715] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2717] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2678] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2721] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2718] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2724] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2723] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2725] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2735] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2736] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2737] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2741] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2742] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2744] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2745] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2702] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2719] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2753] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2754] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2756] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2757] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2758] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2729] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2760] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2764] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2749] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2767] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2768] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2769] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2770] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2761] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2772] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2774] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2765] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2779] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2746] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2780] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2783] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2785] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2786] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 171098 iterations. [F:124566 S:43192 HI:405]
[child2:2788] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2789] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2771] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2791] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2794] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2798] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2800] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2803] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2806] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2807] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2808] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2809] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2813] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2817] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2818] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2819] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2821] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2823] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2775] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2827] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2835] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2837] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2790] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2838] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2840] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2843] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2845] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2839] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2847] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2846] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2849] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2851] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2853] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2852] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2856] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2858] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2782] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2859] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2863] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2867] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2864] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2869] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2880] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2828] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2881] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2886] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2887] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2888] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2854] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2893] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2871] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2900] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2902] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2882] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2905] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2890] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2909] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2913] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2912] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2915] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2917] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2918] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2924] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2925] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2926] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2919] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2933] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2935] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2928] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2938] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2940] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2895] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2943] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2944] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2942] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2948] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2951] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2952] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2955] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2903] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2956] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2957] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2959] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2960] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2937] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2967] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2970] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2971] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2972] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2975] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2980] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2982] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2983] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2986] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2989] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2985] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2991] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2993] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2996] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2997] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:2998] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:2969] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3002] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3003] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3005] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3007] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3008] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3009] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3010] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3011] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3014] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3001] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:2968] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3016] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:2994] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3032] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3030] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3031] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3038] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3034] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3039] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3041] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3044] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3043] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3037] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3049] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3053] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3042] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3050] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3061] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3048] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3057] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3073] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3071] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3076] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3079] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3085] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3087] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3089] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3064] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3074] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3094] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3090] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3093] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3100] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3102] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3095] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3104] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3099] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3111] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3112] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3113] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3114] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3115] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3118] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3119] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3120] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3121] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3123] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3103] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3125] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3126] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 181102 iterations. [F:131820 S:45753 HI:405]
[child3:3127] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3072] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3105] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3131] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3133] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3135] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3124] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3139] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3140] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3141] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3142] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3143] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3144] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3145] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3129] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3138] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3153] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3154] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3146] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3158] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3128] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3160] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3161] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3163] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3151] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3166] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3167] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3169] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3171] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3159] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3173] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3174] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3164] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3176] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3178] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3182] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3172] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3186] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3188] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3156] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3189] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3190] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3194] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3191] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3197] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3199] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3200] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3203] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3185] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3208] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3206] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3212] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3220] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3215] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3222] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3225] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3224] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3229] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3198] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3227] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3232] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3233] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3236] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3175] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3234] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3242] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3244] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3243] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3247] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3250] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3253] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3255] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3257] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3238] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3261] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3240] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3264] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3258] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3271] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3273] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3274] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3265] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3251] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3277] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3279] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3280] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3281] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3283] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3286] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3288] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3289] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3275] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3293] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3294] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3295] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3297] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3267] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3276] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3305] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3299] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3307] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3308] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3312] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3314] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3309] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3317] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3316] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3320] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3300] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3324] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3329] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3292] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3322] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3321] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3337] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3339] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3341] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3342] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3344] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3345] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3346] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3348] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3349] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3350] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3330] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3351] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3377] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3378] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3379] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3380] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3331] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3367] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3343] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3387] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3389] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3390] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3391] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3393] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3381] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3385] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3408] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3412] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3384] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3414] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3403] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3413] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3415] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3422] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3423] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3425] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3396] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3420] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3421] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3426] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3427] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3441] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3442] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3443] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3445] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3446] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3466] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3434] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3468] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3469] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[main] 191112 iterations. [F:139064 S:48311 HI:405]
[child1:3435] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3472] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3473] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3475] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3478] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3480] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3479] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3436] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3484] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3488] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3483] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3489] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child2:3467] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3493] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3498] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3499] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3500] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3501] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child3:3502] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child0:3485] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
trinity: malloc.c:2406: sysmalloc: Assertion `(old_top == initial_top (av) && old_size == 0) || ((unsigned long) (old_size) >= MINSIZE && prev_inuse (old_top) && ((unsigned long) old_end & (pagesize - 1)) == 0)' failed.
[child2:3496] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3506] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3510] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3512] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
[child1:3515] Tried 8 32-bit syscalls unsuccessfully. Disabling all 32-bit syscalls.
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox