After adding earlycon support to non-root cell, i realized that the problem 
is with non-root cell linux that doesn't even boot.
I send the non-root cell linux's early boot log (putty.log) and .dts and 
non-root cell config files.

-- 
You received this message because you are subscribed to the Google Groups 
"Jailhouse" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jailhouse-dev/4c3f4741-3014-4721-a867-e303a516bb90%40googlegroups.com.

Attachment: inmate-zynqmp.dts
Description: Binary data

/*
 * Jailhouse, a Linux-based partitioning hypervisor
 *
 * Configuration for linux-demo inmate on Avnet Ultra96 board:
 * 2 CPUs, 128M RAM, serial port 2
 *
 * Copyright (c) Siemens AG, 2014-2019
 *
 * Authors:
 *  Jan Kiszka <[email protected]>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 */

#include <jailhouse/types.h>
#include <jailhouse/cell-config.h>

struct {
	struct jailhouse_cell_desc cell;
	__u64 cpus[1];
	struct jailhouse_memory mem_regions[7];
	struct jailhouse_irqchip irqchips[1];
	struct jailhouse_pci_device pci_devices[2];
} __attribute__((packed)) config = {
	.cell = {
		.signature = JAILHOUSE_CELL_DESC_SIGNATURE,
		.revision = JAILHOUSE_CONFIG_REVISION,
		.name = "linux-non-root",
		/*
		 * The flag JAILHOUSE_CELL_VIRTUAL_CONSOLE_PERMITTED allows inmates to invoke
		 * the dbg putc hypercall.
		 *
		 * If JAILHOUSE_CELL_VIRTUAL_CONSOLE_ACTIVE is set, inmates should use the
		 * virtual console. This flag implies JAILHOUSE_CELL_VIRTUAL_CONSOLE_PERMITTED.
		 */
		.flags = JAILHOUSE_CELL_PASSIVE_COMMREG | JAILHOUSE_CELL_VIRTUAL_CONSOLE_PERMITTED |
		JAILHOUSE_CELL_VIRTUAL_CONSOLE_ACTIVE,

		.cpu_set_size = sizeof(config.cpus),
		.num_memory_regions = ARRAY_SIZE(config.mem_regions),
		.num_irqchips = ARRAY_SIZE(config.irqchips),
		.num_pci_devices = ARRAY_SIZE(config.pci_devices),

		.vpci_irq_base = 140-32,

		.console = {
			.address = 0xff010000, /*UART1*/
			//.address = 0xff000000, /*UART0*/ //se eu meter uart0 da erro unhandled trap
			.type= JAILHOUSE_CON_TYPE_XUARTPS,
			.flags = JAILHOUSE_CON_ACCESS_MMIO |
				 JAILHOUSE_CON_REGDIST_4,
		},
	},

	.cpus = {
		0x8, //1000 - fica com cpu3
	},

	.mem_regions = {
		/* UART */ {
			.phys_start = 0xff010000,
			.virt_start = 0xff010000,
			.size = 0x1000,
			.flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
				JAILHOUSE_MEM_IO | JAILHOUSE_MEM_ROOTSHARED,
		},
		/* Colored RAM for kernel image and initramfs*/ {
			.phys_start = 0x40000000,
			.virt_start = 0x40000000,
			.size = 0x30000000, //must be page size aligned  //Image + rootfs.cpio = 200MB // 0x30000000 = 768MB
			.flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
				JAILHOUSE_MEM_EXECUTE | JAILHOUSE_MEM_LOADABLE |
				JAILHOUSE_MEM_DMA| JAILHOUSE_MEM_COLORED_CELL, 
    			.colors = 0xff00,
		},
		/* RAM for loader*/ {
			.phys_start = 0x7bef0000,
			.virt_start = 0, //needs to start at 0 for loader
			.size = 0x10000,
			.flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
				JAILHOUSE_MEM_EXECUTE | JAILHOUSE_MEM_LOADABLE,
		},
		/* RAM */ {
			.phys_start = 0x74000000,
			.virt_start = 0x74000000,
			.size = 0x7ef0000,
			.flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
				JAILHOUSE_MEM_EXECUTE | JAILHOUSE_MEM_DMA |
				JAILHOUSE_MEM_LOADABLE,
		},
		/* IVSHMEM shared memory region */ {
			.phys_start = 0x7bf00000,
			.virt_start = 0x7bf00000,
			.size = 0x100000,
			.flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
				JAILHOUSE_MEM_ROOTSHARED,
		},
		/* communication region */ {
			.virt_start = 0x80000000,
			.size = 0x00001000,
			.flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
				JAILHOUSE_MEM_COMM_REGION,
		},
		/* IVSHMEM shared memory region (network) */ {
			.phys_start = 0x7c000000,
			.virt_start = 0x7c000000,
			.size = 0x100000,
			.flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE |
				JAILHOUSE_MEM_ROOTSHARED,
		},
	},
		

	.irqchips = {
		/* GIC */ {
			.address = 0xf9010000, /* GICD base address - Display controller https://www.xilinx.com/support/documentation/user_guides/ug1085-zynq-ultrascale-trm.pdf page 329*/
			.pin_base = 32, /* The first irqchip starts at .pin_base=32 as the first 32 interrupts are 
reserved for SGIs and PPIs. */ /* https://static.docs.arm.com/ddi0471/a/DDI0471A_gic400_r0p0_trm.pdf page 34*/
			.pin_bitmap = { /* https://www.cl.cam.ac.uk/research/srg/han/ACS-P35/zynq/arm_gic_architecture_specification.pdf page 88 GICD-TYPER*/
				1 << (54 - 32), /* interrupt da UART1 */
				//1 << (53 - 32), /* /proc/interrupts interrupt da UART0 AQUI ESTA A DIFERENÇA / no zynqmp.dtsi na uart0 esta definido a interrupt 53-32=21 */
				0,
				0,
				(1 << (140 - 128)) | (1 << (142 - 128)) //PL to PS interrupt signals 8 to 15.
			},
		},
	},

	.pci_devices = {
		/* 00:00.0 */ {
			.type = JAILHOUSE_PCI_TYPE_IVSHMEM,
			.bdf = 0 << 3, // 00:00.0
			.iommu = 1,//
			.bar_mask = {
				0xffffff00, 0xffffffff, 0x00000000,
				0x00000000, 0x00000000, 0x00000000,
			},
			.shmem_region = 4,
			.shmem_protocol = JAILHOUSE_SHMEM_PROTO_UNDEFINED, //Undefined type
			//.num_msix_vectors = 1,
		},
		/* 00:01.0 */ {
			.type = JAILHOUSE_PCI_TYPE_IVSHMEM,
			.bdf = 1 << 3, // 00:01.0
			.iommu = 1,//
			.bar_mask = {
				0xffffff00, 0xffffffff, 0x00000000,
				0x00000000, 0x00000000, 0x00000000,
			},
			.shmem_region = 6,
			.shmem_protocol = JAILHOUSE_SHMEM_PROTO_VETH, //Virtual peer-to-peer Ethernet
			//.num_msix_vectors = 1,
		},
	},
};
[    0.000000] Booting Linux on physical CPU 0x3

[    0.000000] Linux version 4.14.0-xilinx-v2018.2 (oe-user@oe-host) (gcc 
version 7.2.0 (GCC)) #4 SMP Tue Sep 3 18:58:35 WEST 2019

[    0.000000] Boot CPU: AArch64 Processor [410fd034]

[    0.000000] Machine model: Jailhouse cell on ZynqMP

[    0.000000] earlycon: jailhouse0 at I/O port 0x0 (options '')

[    0.000000] bootconsole [jailhouse0] enabled

[    0.000000] efi: Getting EFI parameters from FDT:

[    0.000000] efi: UEFI not found.

[    0.000000] cma: Reserved 256 MiB at 0x0000000051000000

root@xilinx-ultra96-reva-2018_2:~# [    0.000000] psci: probing for conduit 
method from DT.

[    0.000000] psci: PSCIv1.1 detected in firmware.

[    0.000000] psci: Using standard PSCI v0.2 function IDs

[    0.000000] psci: MIGRATE_INFO_TYPE not supported.

[    0.000000] percpu: Embedded 21 pages/cpu @ffffffc03becb000 s46488 r8192 
d31336 u86016

[    0.000000] Detected VIPT I-cache on CPU0

[    0.000000] CPU features: enabling workaround for ARM erratum 845719

[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 225971

[    0.000000] Kernel command line: console=jailhouse

[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)

[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)

[    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)

[    0.000000] Memory: 287112K/916416K available (7420K kernel code, 474K 
rwdata, 2632K rodata, 169408K init, 2127K bss, 367160K reserved, 262144K 
cma-reserved)

[    0.000000] Virtual kernel memory layout:

[    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 
MB)

[    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbebfff0000   (   250 
GB)

[    0.000000]       .text : 0xffffff8008080000 - 0xffffff80087c0000   (  7424 
KB)

[    0.000000]     .rodata : 0xffffff80087c0000 - 0xffffff8008a60000   (  2688 
KB)

[    0.000000]       .init : 0xffffff8008a60000 - 0xffffff8012fd0000   (169408 
KB)

[    0.000000]       .data : 0xffffff8012fd0000 - 0xffffff8013046a00   (   475 
KB)

[    0.000000]        .bss : 0xffffff8013046a00 - 0xffffff801325a7c8   (  2128 
KB)

[    0.000000]     fixed   : 0xffffffbefe7fd000 - 0xffffffbefec00000   (  4108 
KB)

[    0.000000]     PCI I/O : 0xffffffbefee00000 - 0xffffffbeffe00000   (    16 
MB)

[    0.000000]     vmemmap : 0xffffffbf00000000 - 0xffffffc000000000   (     4 
GB maximum)

[    0.000000]               0xffffffbf00000000 - 0xffffffbf00d1c480   (    13 
MB actual)

[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc03bef0000   (   958 
MB)

[    0.000000] Hierarchical RCU implementation.

[    0.000000]  RCU event tracing is enabled.

[    0.000000]  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.

[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1

[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0

[    0.000000] arch_timer: cp15 timer(s) running at 99.99MHz (virt).

[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff 
max_cycles: 0x1710236356, max_idle_ns: 440795202549 ns

[    0.000003] sched_clock: 56 bits at 99MHz, resolution 10ns, wraps every 
4398046511099ns

[    0.008227] Console: colour dummy device 80x25

[    0.012510] Calibrating delay loop (skipped), value calculated using timer 
frequency.. 199.99 BogoMIPS (lpj=399999)

[    0.022911] pid_max: default: 32768 minimum: 301

[    0.027603] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)

[    0.034200] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)

[    0.042102] ASID allocator initialised with 65536 entries

[    0.047384] Hierarchical SRCU implementation.

[    0.051867] EFI services will not be available.

[    0.056276] smp: Bringing up secondary CPUs ...

[    0.060740] smp: Brought up 1 node, 1 CPU

[    0.064725] SMP: Total of 1 processors activated.

[    0.069422] CPU features: detected feature: 32-bit EL0 Support

[    0.075239] CPU: All CPU(s) started at EL1

[    0.079322] alternatives: patching kernel code

[    0.084292] devtmpfs: initialized

[    0.087907] random: get_random_u32 called from 
bucket_table_alloc+0x108/0x260 with crng_init=0

[    0.096471] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, 
max_idle_ns: 7645041785100000 ns

[    0.106073] futex hash table entries: 256 (order: 3, 32768 bytes)

[    0.118682] pinctrl core: initialized pinctrl subsystem

[    0.124666] NET: Registered protocol family 16

[    0.129471] cpuidle: using governor menu

[    0.133300] vdso: 2 pages (1 code @ ffffff80087c6000, 1 data @ 
ffffff8012fd4000)

[    0.140616] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.

[    0.147739] random: fast init done

[    0.151860] DMA: preallocated 256 KiB pool for atomic allocations

[    0.158404] ff010000.serial: ttyPS0 at MMIO 0xff010000 (irq = 5, base_baud = 
6250000) is a xuartps

[    0.188250] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages

[    0.196110] SCSI subsystem initialized

[    0.199851] pps_core: LinuxPPS API ver. 1 registered

[    0.204648] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo 
Giometti <[email protected]>

[    0.213768] PTP clock support registered

[    0.217677] EDAC MC: Ver: 3.0.0

[    0.222131] FPGA manager framework

[    0.225722] Bluetooth: Core ver 2.22

[    0.229144] NET: Registered protocol family 31

[    0.233551] Bluetooth: HCI device and connection manager initialized

[    0.239890] Bluetooth: HCI socket layer initialized

[    0.244747] Bluetooth: L2CAP socket layer initialized

[    0.249793] Bluetooth: SCO socket layer initialized

[    0.256084] clocksource: Switched to clocksource arch_sys_counter

[    0.262135] VFS: Disk quotas dquot_6.6.0

[    0.265957] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)

[    0.280193] NET: Registered protocol family 2

[    0.284764] TCP established hash table entries: 8192 (order: 4, 65536 bytes)

[    0.291704] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)

[    0.298322] TCP: Hash tables configured (established 8192 bind 8192)

[    0.304581] UDP hash table entries: 512 (order: 2, 16384 bytes)

[    0.310421] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)

[    0.316838] NET: Registered protocol family 1

[    0.322079] RPC: Registered named UNIX socket transport module.

[    0.327835] RPC: Registered udp transport module.

[    0.332509] RPC: Registered tcp transport module.

[    0.337195] RPC: Registered tcp NFSv4.1 backchannel transport module.

[    1.387815] Unable to handle kernel paging request at virtual address 
5000000c0

[    1.395058] Mem abort info:

[    1.397788]   Exception class = DABT (current EL), IL = 32 bits

[    1.403682]   SET = 0, FnV = 0

[    1.406721]   EA = 0, S1PTW = 0

[    1.409843] Data abort info:

[    1.412708]   ISV = 0, ISS = 0x00000005

[    1.416527]   CM = 0, WnR = 0

[    1.419475] [00000005000000c0] user address but active_mm is swapper

[    1.425819] Internal error: Oops: 96000005 [#1] SMP

[    1.430673] Modules linked in:

[    1.433715] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.14.0-xilinx-v2018.2 
#4

[    1.440914] Hardware name: Jailhouse cell on ZynqMP (DT)

[    1.446211] task: ffffffc03a828d00 task.stack: ffffff8008010000

[    1.452124] PC is at __radix_tree_lookup+0x1c/0xe8

[    1.456886] LR is at radix_tree_lookup_slot+0x14/0x28

[    1.461920] pc : [<ffffff80087a7f0c>] lr : [<ffffff80087a7fec>] pstate: 
60000005

[    1.469297] sp : ffffff8008013970

[    1.472596] x29: ffffff8008013970 x28: ffffff8008abbba8 

[    1.477890] x27: 0000000000000000 x26: ffffff80087d1a80 

[    1.483185] x25: 00000000014200ca x24: ffffffc02e400000 

[    1.488480] x23: ffffffc02e4001b8 x22: 0000000000001000 

[    1.493775] x21: 0000000000000000 x20: 0000000000000000 

[    1.499070] x19: ffffffc02e4001c0 x18: 0000000000000010 

[    1.504364] x17: 0000000000000007 x16: ffffffc03a801108 

[    1.509659] x15: ffffff8012fd8000 x14: 6f2e35332d6e6f68 

[    1.514954] x13: 747970632e64616f x12: 0000000000000008 

[    1.520249] x11: 0101010101010101 x10: 0000000000000040 

[    1.525544] x9 : ffffffc02e4001c0 x8 : ffffff80081509c8 

[    1.530838] x7 : 0007ffffffffffff x6 : 00000005000000c1 

[    1.536133] x5 : 00000005000000c0 x4 : 0000000000000001 

[    1.541428] x3 : ffffff8008013988 x2 : 0000000000000000 

[    1.546723] x1 : 0000000000000000 x0 : ffffffc02e4001c0 

[    1.552019] Process swapper/0 (pid: 1, stack limit = 0xffffff8008010000)

[    1.558702] Call trace:

[    1.561134] Exception stack(0xffffff8008013830 to 0xffffff8008013970)

[    1.567557] 3820:                                   ffffffc02e4001c0 
0000000000000000

[    1.575369] 3840: 0000000000000000 ffffff8008013988 0000000000000001 
00000005000000c0

[    1.583182] 3860: 00000005000000c1 0007ffffffffffff ffffff80081509c8 
ffffffc02e4001c0

[    1.590993] 3880: 0000000000000040 0101010101010101 0000000000000008 
747970632e64616f

[    1.598805] 38a0: 6f2e35332d6e6f68 ffffff8012fd8000 ffffffc03a801108 
0000000000000007

[    1.606617] 38c0: 0000000000000010 ffffffc02e4001c0 0000000000000000 
0000000000000000

[    1.614429] 38e0: 0000000000001000 ffffffc02e4001b8 ffffffc02e400000 
00000000014200ca

[    1.622241] 3900: ffffff80087d1a80 0000000000000000 ffffff8008abbba8 
ffffff8008013970

[    1.630053] 3920: ffffff80087a7fec ffffff8008013970 ffffff80087a7f0c 
0000000060000005

[    1.637866] 3940: ffffff80080139b0 0000000000000003 ffffffffffffffff 
ffffff800814ef3c

[    1.645676] 3960: ffffff8008013970 ffffff80087a7f0c

[    1.650540] [<ffffff80087a7f0c>] __radix_tree_lookup+0x1c/0xe8

[    1.656358] [<ffffff8008135d40>] find_get_entry+0x20/0x158

[    1.661822] [<ffffff8008135e9c>] find_lock_entry+0x24/0xd0

[    1.667293] [<ffffff800814fe58>] shmem_getpage_gfp.isra.8+0x98/0xa60

[    1.673627] [<ffffff8008150a00>] shmem_write_begin+0x38/0x60

[    1.679270] [<ffffff8008137128>] generic_perform_write+0x90/0x180

[    1.685345] [<ffffff8008139708>] __generic_file_write_iter+0x100/0x1c8

[    1.691855] [<ffffff8008139954>] generic_file_write_iter+0x184/0x210

[    1.698194] [<ffffff800819a8bc>] __vfs_write+0xac/0x118

[    1.703400] [<ffffff800819ab04>] vfs_write+0x9c/0x1a8

[    1.708435] [<ffffff800819adb8>] SyS_write+0x48/0xb0

[    1.713384] [<ffffff8008a627d4>] xwrite+0x34/0x7c

[    1.718068] [<ffffff8008a6284c>] do_copy+0x30/0xf4

[    1.722842] [<ffffff8008a621d0>] write_buffer+0x34/0x50

[    1.728050] [<ffffff8008a62be4>] unpack_to_rootfs+0xe0/0x260

[    1.733692] [<ffffff8008a62d90>] populate_rootfs+0x2c/0x114

[    1.739250] [<ffffff8008083980>] do_one_initcall+0x38/0x128

[    1.744812] [<ffffff8008a60cc4>] kernel_init_freeable+0x138/0x1d8

[    1.750880] [<ffffff80087b1ae0>] kernel_init+0x10/0x100

[    1.756087] [<ffffff8008084a90>] ret_from_fork+0x10/0x18

[    1.761384] Code: 924004c4 f100049f 540005a1 927ff8c5 (394000a4) 

[    1.767464] ---[ end trace f9d866e48b0d3f01 ]---

[    1.772179] Unable to handle kernel paging request at virtual address 
200000010

[    1.779373] Mem abort info:

[    1.782130]   Exception class = DABT (current EL), IL = 32 bits

[    1.788032]   SET = 0, FnV = 0

[    1.791070]   EA = 0, S1PTW = 0

[    1.794194] Data abort info:

[    1.797059]   ISV = 0, ISS = 0x00000005

[    1.800878]   CM = 0, WnR = 0

[    1.803825] [0000000200000010] user address but active_mm is swapper

[    1.810167] Internal error: Oops: 96000005 [#2] SMP

[    1.815022] Modules linked in:

[    1.818063] CPU: 0 PID: 18 Comm: kworker/0:1 Tainted: G      D         
4.14.0-xilinx-v2018.2 #4

[    1.826740] Hardware name: Jailhouse cell on ZynqMP (DT)

[    1.832041] Workqueue: events delayed_fput

[    1.836115] task: ffffffc03a8c8480 task.stack: ffffff8013278000

[    1.842023] PC is at fsnotify+0x2ac/0x438

[    1.846012] LR is at fsnotify+0xbc/0x438

[    1.849916] pc : [<ffffff80081db554>] lr : [<ffffff80081db364>] pstate: 
00000145

[    1.857293] sp : ffffff801327bcb0

[    1.860592] x29: ffffff801327bcc0 x28: ffffffc03a814c40 

[    1.865887] x27: ffffffc03a814c40 x26: ffffff8008975b18 

[    1.871182] x25: 0000000000000000 x24: ffffffc03a280910 

[    1.876476] x23: 0000000000000001 x22: 0000000000000000 

[    1.881771] x21: ffffffc02e400578 x20: 0000000000000008 

[    1.887066] x19: 0000000000000008 x18: ffffffc03bed5460 

[    1.892361] x17: 000000002e12e1da x16: 00000000946d4223 

[    1.897656] x15: ffffff8012fd8000 x14: 0000000000000000 

[    1.902950] x13: ffffffc03bed5400 x12: 00000000699f84e4 

[    1.908245] x11: 0000000000000000 x10: 0000000000000880 

[    1.913540] x9 : ffffff801327bd90 x8 : ffffffc03a8c8d60 

[    1.918835] x7 : ffffffc03a8c8600 x6 : 0000000000000000 

[    1.924129] x5 : 0000000000000000 x4 : 0000000000000001 

[    1.929424] x3 : 0000000000000000 x2 : 0000004028f0f000 

[    1.934719] x1 : 0000000000000069 x0 : 0000000200000000 

[    1.940015] Process kworker/0:1 (pid: 18, stack limit = 0xffffff8013278000)

[    1.946958] Call trace:

[    1.949390] Exception stack(0xffffff801327bb70 to 0xffffff801327bcb0)

[    1.955813] bb60:                                   0000000200000000 
0000000000000069

[    1.963626] bb80: 0000004028f0f000 0000000000000000 0000000000000001 
0000000000000000

[    1.971438] bba0: 0000000000000000 ffffffc03a8c8600 ffffffc03a8c8d60 
ffffff801327bd90

[    1.979250] bbc0: 0000000000000880 0000000000000000 00000000699f84e4 
ffffffc03bed5400

[    1.987062] bbe0: 0000000000000000 ffffff8012fd8000 00000000946d4223 
000000002e12e1da

[    1.994874] bc00: ffffffc03bed5460 0000000000000008 0000000000000008 
ffffffc02e400578

[    2.002686] bc20: 0000000000000000 0000000000000001 ffffffc03a280910 
0000000000000000

[    2.010498] bc40: ffffff8008975b18 ffffffc03a814c40 ffffffc03a814c40 
ffffff801327bcc0

[    2.018310] bc60: ffffff80081db364 ffffff801327bcb0 ffffff80081db554 
0000000000000145

[    2.026122] bc80: ffffff801327bcd0 ffffff80080f061c ffffffffffffffff 
ffffff80080f061c

[    2.033933] bca0: ffffff801327bcc0 ffffff80081db554

[    2.038795] [<ffffff80081db554>] fsnotify+0x2ac/0x438

[    2.043830] [<ffffff800819be4c>] __fput+0x164/0x1c8

[    2.048690] [<ffffff800819bee8>] delayed_fput+0x38/0x50

[    2.053901] [<ffffff80080b2d74>] process_one_work+0x1dc/0x348

[    2.059627] [<ffffff80080b2f28>] worker_thread+0x48/0x488

[    2.065010] [<ffffff80080b8bbc>] kthread+0x12c/0x130

[    2.069956] [<ffffff8008084a90>] ret_from_fork+0x10/0x18

[    2.075251] Code: f90027ba f94116a0 d2800019 b4000040 (f9400819) 

[    2.081326] ---[ end trace f9d866e48b0d3f02 ]---

[    2.086519] Kernel panic - not syncing: Attempted to kill init! 
exitcode=0x0000000b

[    2.086519] 

[    2.095488] ---[ end Kernel panic - not syncing: Attempted to kill init! 
exitcode=0x0000000b

Reply via email to