arm64 死在memcpy中:Unhandled fault: alignment fault

来源:互联网 发布:上色软件 编辑:程序博客网 时间:2024/04/30 15:50

persistent_ram_save_old->memcpy后内核死掉




根据关键字memcpy persistent、ramoops、alignment fault找到如下博客(解决了我的问题)
http://www.gossamer-threads.com/lists/linux/kernel/2048607   ~已经保存在火狐标签中~~


/****************************************************************

以下是博客中的解释

*******************************************************************/

persistent_ram_update uses vmap / iomap based on whether the buffer is in memory 
region or reserved region. However, both map it as non-cacheable memory. For 
armv8 specifically, non-cacheable mapping requests use a memory type that has to 
be accessed aligned to the request size. memcpy() doesn't guarantee that. 

Signed-off-by: Furquan Shaikh <furquan [at] google> 
--- 

fs/pstore/ram_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/pstore/ram_core.c b/fs/pstore/ram_core.c index 9d7b9a8..cfbc5e4 100644 --- a/fs/pstore/ram_core.c +++ b/fs/pstore/ram_core.c @@ -299,7 +299,7 @@ static void notrace persistent_ram_update(struct persistent_ram_zone *prz, const void *s, unsigned int start, unsigned int count) { struct persistent_ram_buffer *buffer = prz->buffer; - memcpy(buffer->data + start, s, count); + memcpy_toio(buffer->data + start, s, count); persistent_ram_update_ecc(prz, start, count); } 





ramoops_init_prz(dev, cxt, &cxt->cprz, &paddr,cxt->console_size, 0);
ramoops_init_prz(struct device *dev, struct ramoops_context *cxt,struct persistent_ram_zone **prz,phys_addr_t *paddr, size_t sz, u32 sig)
persistent_ram_new(*paddr, sz, sig, &cxt->ecc_info);
persistent_ram_post_init(prz, sig, ecc_info);
if (buffer_size(prz) > prz->buffer_size ||
buffer_start(prz) > buffer_size(prz))
pr_info("persistent_ram: found existing invalid buffer,"
" size %zu, start %zu\n",
  buffer_size(prz), buffer_start(prz));
else {
pr_debug("persistent_ram: found existing buffer,"
" size %zu, start %zu\n",
  buffer_size(prz), buffer_start(prz));
persistent_ram_save_old(prz);->





lark:这些信息是启动过程中读取上次关机原因,屏蔽一下宏,去掉相关的代码
CONFIG_PSTORE=y
CONFIG_PSTORE_CONSOLE=y
CONFIG_PSTORE_RAM=y
CONFIG_PSTORE_FTRACE=y
CONFIG_DEBUG_FS=y

/*****************************************
内核死掉过程中会打印出来的信息
*******************************************/
[01-01 00:00:00.000] [0][0: swapper]Initializing cgroup subsys cpu
[01-01 00:00:00.000] [0][0: swapper]Initializing cgroup subsys cpuacct
[01-01 00:00:00.000] [0][0: swapper]Linux version 3.10.49 (public@dell-PowerEdge-T20) (gcc version 4.9.x-google 20140827 (prerelease) (GCC) ) #1 SMP PREEMPT Mon Sep 28 15:32:35 CST 2015
[01-01 00:00:00.000] [0][0: swapper]CPU: AArch64 Processor [410fd031] revision 1
[01-01 00:00:00.000] [0][0: swapper]Machine: Qualcomm Technologies, Inc. MSM 8939 MTP
[01-01 00:00:00.000] [0][0: swapper]math->name=msm_hsl_uart.
[01-01 00:00:00.000] [0][0: swapper]bootconsole [earlycon0] enabled
[01-01 00:00:00.000] [0][0: swapper]cma: Found external_image__region@0, memory base 0x0000000086000000, size 8 MiB, limit 0xffffffffffffffff
[01-01 00:00:00.000] [0][0: swapper]cma: Found modem_adsp_region@0, memory base 0x0000000086800000, size 85 MiB, limit 0xffffffffffffffff
[01-01 00:00:00.000] [0][0: swapper]cma: Found pheripheral_region@0, memory base 0x000000008bd00000, size 6 MiB, limit 0xffffffffffffffff
[01-01 00:00:00.000] [0][0: swapper]cma: Found pstore_reserve_mem_region@0, memory base 0x000000009ff00000, size 1 MiB, limit 0xffffffffffffffff
[01-01 00:00:00.000] [0][0: swapper]cma: Found venus_region@0, memory base 0x0000000000000000, size 5 MiB, limit 0x0000000090000000
[01-01 00:00:00.000] [0][0: swapper]cma: Found secure_region@0, memory base 0x0000000000000000, size 109 MiB, limit 0xffffffffffffffff
[01-01 00:00:00.000] [0][0: swapper]cma: Found qseecom_region@0, memory base 0x0000000000000000, size 16 MiB, limit 0xffffffffffffffff
[01-01 00:00:00.000] [0][0: swapper]cma: Found audio_region@0, memory base 0x0000000000000000, size 3 MiB, limit 0xffffffffffffffff
[01-01 00:00:00.000] [0][0: swapper]cma: Found splash_region@83000000, memory base 0x0000000083000000, size 32 MiB, limit 0xffffffffffffffff
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 8 MiB at 0x0000000086000000 for external_image_mem
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 85 MiB at 0x0000000086800000 for modem_adsp_mem
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 6 MiB at 0x000000008bd00000 for peripheral_mem
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 1 MiB at 0x000000009ff00000 for pstore_reserve_mem
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 8 MiB at 0x000000008f800000 for venus_mem
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 112 MiB at 0x00000000f9000000 for secure_mem
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 16 MiB at 0x00000000f8000000 for qseecom_mem
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 4 MiB at 0x00000000f7c00000 for audio_mem
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 32 MiB at 0x0000000083000000 for cont_splash_mem
[01-01 00:00:00.000] [0][0: swapper]cma: CMA: reserved 16 MiB at 0x00000000f6c00000 for default region
[01-01 00:00:00.000] [0][0: swapper]PERCPU: Embedded 17 pages/cpu @ffffffc076a86000 s38784 r8192 d22656 u69632
[01-01 00:00:00.000] [0][0: swapper]Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 490496
[01-01 00:00:00.000] [0][0: swapper]Kernel command line: boot_cpus=0,4,5,6,7 sched_enable_hmp=1 console=ttyHSL0,115200,n8 androidboot.console=ttyHSL0 androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 androidboot.bootdevice=7824900.sdhci lpm_levels.sleep_disabled=1 earlyprintk=msm_hsl_uart,0x078b0000 androidboot.emmc=true androidboot.serialno=4156504a androidboot.baseband=msm mdss_mdp.panel=1:dsi:0:qcom,mdss_dsi_fl10802_wvga_video:1:none
[01-01 00:00:00.000] [0][0: swapper]PID hash table entries: 4096 (order: 3, 32768 bytes)
[01-01 00:00:00.000] [0][0: swapper]Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[01-01 00:00:00.000] [0][0: swapper]Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[01-01 00:00:00.000] [0][0: swapper]software IO TLB [mem 0xf4600000-0xf4700000] (1MB) mapped at [ffffffc074600000-ffffffc0746fffff]
[01-01 00:00:00.000] [0][0: swapper]Memory: 1743380K/1994752K available (9968K kernel code, 1164K rwdata, 4780K rodata, 697K init, 1873K bss, 251372K reserved)
[01-01 00:00:00.000] [0][0: swapper]Virtual kernel memory layout:
[01-01 00:00:00.000] [0][0: swapper]    vmalloc : 0xffffff8000000000 - 0xffffffbbffff0000   (245759 MB)
[01-01 00:00:00.000] [0][0: swapper]    vmemmap : 0xffffffbc02000000 - 0xffffffbc04000000   (    32 MB)
[01-01 00:00:00.000] [0][0: swapper]    modules : 0xffffffbffc000000 - 0xffffffc000000000   (    64 MB)
[01-01 00:00:00.000] [0][0: swapper]    memory  : 0xffffffc000000000 - 0xffffffc080000000   (  2048 MB)
[01-01 00:00:00.000] [0][0: swapper]      .init : 0xffffffc000ee9000 - 0xffffffc000f97780   (   698 kB)
[01-01 00:00:00.000] [0][0: swapper]      .text : 0xffffffc000080000 - 0xffffffc000ee8014   ( 14753 kB)
[01-01 00:00:00.000] [0][0: swapper]      .data : 0xffffffc000f98000 - 0xffffffc0010bb090   (  1165 kB)
[01-01 00:00:00.000] [0][0: swapper]SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[01-01 00:00:00.000] [0][0: swapper]HMP scheduling enabled.
[01-01 00:00:00.000] [0][0: swapper/0]Preemptible hierarchical RCU implementation.
[01-01 00:00:00.000] [0][0: swapper/0] RCU dyntick-idle grace-period acceleration is enabled.
[01-01 00:00:00.000] [0][0: swapper/0]NR_IRQS:64 nr_irqs:64 0
[01-01 00:00:00.000] [0][0: swapper/0]Architected cp15 and mmio timer(s) running at 19.20MHz (virt/virt).
[01-01 00:00:00.000] [0][0: swapper/0]sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 3579139424256ns
[    0.000415] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)
[01-01 00:00:00.010] [0][0: swapper/0]pid_max: default: 32768 minimum: 301
[01-01 00:00:00.020] [0][0: swapper/0]Security Framework initialized
[01-01 00:00:00.020] [0][0: swapper/0]SELinux:  Initializing.
[01-01 00:00:00.030] [0][0: swapper/0]Mount-cache hash table entries: 256
[01-01 00:00:00.030] [0][0: swapper/0]Initializing cgroup subsys freezer
[01-01 00:00:00.040] [0][0: swapper/0]ftrace: allocating 35058 entries in 137 pages
[01-01 00:00:00.080] [0][1: swapper/0]/cpus/cpu@100: Missing clock-frequency property
[01-01 00:00:00.080] [0][1: swapper/0]/cpus/cpu@101: Missing clock-frequency property
[01-01 00:00:00.090] [0][1: swapper/0]/cpus/cpu@102: Missing clock-frequency property
[01-01 00:00:00.090] [0][1: swapper/0]/cpus/cpu@103: Missing clock-frequency property
[01-01 00:00:00.100] [0][1: swapper/0]/cpus/cpu@0: Missing clock-frequency property
[01-01 00:00:00.100] [0][1: swapper/0]/cpus/cpu@1: Missing clock-frequency property
[01-01 00:00:00.110] [0][1: swapper/0]/cpus/cpu@2: Missing clock-frequency property
[01-01 00:00:00.110] [0][1: swapper/0]/cpus/cpu@3: Missing clock-frequency property
[01-01 00:00:00.120] [0][1: swapper/0]hw perfevents: enabled with arm/armv8-pmuv3 PMU driver, 7 counters available
[01-01 00:00:00.130] [0][1: swapper/0]ftrace: Allocated trace_printk buffers
[01-01 00:00:00.130] [0][1: swapper/0]MSM Memory Dump base table set up
[01-01 00:00:00.140] [0][1: swapper/0]MSM Memory Dump apps data table set up
[01-01 00:00:00.140] [0][1: swapper/0]cpu_clock_a53_init_little: A53 Power clocks configured
[01-01 00:00:00.150] [4][0: swapper/4]CPU4: Booted secondary processor
[01-01 00:00:00.150] [5][0: swapper/5]CPU5: Booted secondary processor
[01-01 00:00:00.150] [6][0: swapper/6]CPU6: Booted secondary processor
[01-01 00:00:00.150] [7][0: swapper/7]CPU7: Booted secondary processor
[01-01 00:00:00.150] [0][1: swapper/0]Brought up 5 CPUs
[01-01 00:00:00.160] [0][1: swapper/0]SMP: Total of 5 processors activated.
[01-01 00:00:00.190] [4][1: swapper/0]pinctrl core: initialized pinctrl subsystem
[01-01 00:00:00.200] [4][1: swapper/0]regulator-dummy: no parameters
[01-01 00:00:00.210] [4][1: swapper/0]NET: Registered protocol family 16
[01-01 00:00:00.220] [6][1: swapper/0]DMA: preallocated 256 KiB pool for atomic allocations
[01-01 00:00:00.230] [6][1: swapper/0]ramoops: using module parameters
[01-01 00:00:00.240] [6][1: swapper/0]Unhandled fault: alignment fault (0x96000021) at 0xffffff800021803d
[01-01 00:00:00.240] [6][1: swapper/0]Internal error: : 96000021 [#1] PREEMPT SMP
[    0.338639] Modules linked in:
[01-01 00:00:00.250] [6][1: swapper/0]CPU: 6 PID: 1 Comm: swapper/0 Not tainted 3.10.49 #1
[01-01 00:00:00.260] [6][1: swapper/0]task: ffffffc073c08000 ti: ffffffc00c364000 task.ti: ffffffc00c364000
[01-01 00:00:00.270] [6][1: swapper/0]PC is at memcpy+0x9c/0x180
[01-01 00:00:00.280] [6][1: swapper/0]LR is at persistent_ram_save_old+0x16c/0x1a0
[01-01 00:00:00.280] [6][1: swapper/0]pc : [<ffffffc0002de49c>] lr : [<ffffffc00027a5c4>] pstate: 80000005
[01-01 00:00:00.290] [6][1: swapper/0]sp : ffffffc00c367a60
[    0.386816] x29: ffffffc00c367a70 x28: ffffffc000f8c3b0 
[    0.392111] x27: ffffffc0734b8000 x26: ffffffc073518f80 
[    0.397406] x25: ffffffc000fc5dd4 x24: ffffffc073519300 
[    0.402700] x23: 0000000000018031 x22: 0000000000018031 
[    0.407995] x21: ffffff8000200000 x20: 0000000000000002 
[    0.413291] x19: ffffffc07351a080 x18: 0000000000000000 
[    0.418586] x17: 0000000000000000 x16: 0000000000000000 
[    0.423881] x15: 0000000000000000 x14: 0fffffffffffffff 
[    0.429176] x13: 0000000000000038 x12: 0000000000000030 
[    0.434471] x11: 0101010101010101 x10: 0000000000000041 
[    0.439766] x9 : 0000000000000040 x8 : ffffffc076b9df80 
[    0.445062] x7 : 0000000000000336 x6 : ffffffc073560000 
[    0.450356] x5 : 0000000000000000 x4 : 0000000000000020 
[    0.455652] x3 : ffffffbc03cd5800 x2 : 0000000000000002 
[    0.460947] x1 : ffffff800021803d x0 : ffffffc073560000 
[01-01 00:00:00.380] [6][1: swapper/0]
[01-01 00:00:00.380] [6][1: swapper/0]PC: 0xffffffc0002de39c:
[    0.475181] e398  da9f10c7f100058c b4000146b4fffee7 dac00c63dac00cc6 dac010cbdac00c84 9acb20849acb2063 cb44e060d378fc63 f2400842d65f03c0 3840140354000100
[    0.488897] e3d8  f100044238401424 54ffff807a441060 d65f03c0cb040060 d65f03c0d2800000 d503201fd503201f f100405faa0003e6 cb0103e4540003c3 540001c0f2400c84
[    0.502612] e418  36000064cb040042 380014c338401423 7840242336080064 36100064780024c3 b80044c3b8404423 f840842336180064 f101005ff80084c3 f27c04435400032a
[    0.516327] e458  7100807f54000140 540000ab54000080 a88120c7a8c12027 a88120c7a8c12027 a88120c7a8c12027 f840842336180062 36100062f80084c3 b80044c3b8404423
[    0.530042] e498  7840242336080062 36000062780024c3 390000c339400023 f1020042d65f03c0 a8c120275400024a a8c12829a88120c7 a88128c9a8c1302b a8c1382da88130cb
[    0.543757] e4d8  f240145fa88138cd d65f03c054fffba1 d503201fd503201f d503201fd503201f d503201fd503201f a8c12829a8c12027 a8c1382da8c1302b a8c12027a88120c7
[    0.557473] e518  a8c12829a88128c9 a8c1302ba88130cb a8c1382da88138cd 54fffeeaf1010042 a88128c9a88120c7 a88138cda88130cb 54fff841f240145f d503201fd65f03c0
[    0.571189] e558  d503201fd503201f 0000000000000000 0000000000000000 0000000000000000 0000000000000000 54fff3e3eb01001f eb03001f8b020023 8b02000654fff382
[    0.584904] e598  f100405f8b020021 f2400c24540003a3 cb040042540001c0 385ffc2336000064 36080064381ffcc3 781fecc3785fec23 b85fcc2336100064 36180064b81fccc3
[01-01 00:00:00.510] [6][1: swapper/0]
[01-01 00:00:00.510] [6][1: swapper/0]LR: 0xffffffc00027a4c4:
[    0.607560] a4c0  b9400800f9400e60 910030008b20c2a0 54fffe82eb0002df 910003f9f9401260 8b23c2c1b9404a63 910030008b0002a0 b9404e61eb01001f 937f7c204b160002
[    0.621275] a500  910040001a833043 cb20633f927cec00 910043e2d2800000 540000ad6b00003f 7820784438606b04 17fffffb91000400 d2800004f90003ff 2a0403e5aa1603e1
[    0.634990] a540  aa0403e6f9401e60 9401f2212a0403e7 9100033f6b1f001f b9404261540000ad b90042600b000020 5400008014000005 11000400b9404660 b9804a60b9004660
[    0.648706] a580  b9804e608b0002d6 17ffffcd8b000318 b50000a0f9402e60 9139b000d0005740 1400000d941ea7fc f900327493407ef6 cb1602948b1602a1 aa1403e291003021
[    0.662421] a5c0  f9402e6094018f90 aa1603e2910032a1 94018f8b8b140000 a94253f3d10043bf a94463f7a9435bf5 a9417bfdf9402bf9 d65f03c0910183ff 910003fda9bc7bfd
[    0.676136] a600  a9025bf5a90153f3 aa0003f3f9001bf7 93407c41aa0103f7 aa0103f6f9401000 eb00003f2a0103f4 cb00002154000089 8b0102f72a0003f4 93407e83f9400e61
[    0.689852] a640  eb21c01fb9400821 f9400e6154000380 b9400822f9401265 8b04006093407c44 eb05001fd5033bbf 9a85900091002021 6b0200bf885f7c25 88067c2054000061
[    0.703567] a680  d5033bbf35ffff86 17ffffefeb25c09f 91001042d5033bbf 6b01009f885f7c44 88057c4054000061 d5033bbf35ffff85 540001406b01009f f9401264f9400e62
[    0.717282] a6c0  2a0403e5b9400441 eb20c09f0b030020 4b05000054fffe02 f940127517fffffd 4b0102b593407c23 5400024a6b1402bf 2a1503e2f9400e60 d28000008b234003
[01-01 00:00:00.640] [6][1: swapper/0]
[01-01 00:00:00.640] [6][1: swapper/0]SP: 0xffffffc00c367960:
[    0.739938] 7960  0000000000000020 0000000000000000 ffffffc073560000 0000000000000336 ffffffc076b9df80 0000000000000040 0000000000000041 0101010101010101
[    0.753654] 79a0  0000000000000030 0000000000000038 0fffffffffffffff 0000000000000000 0000000000000000 0000000000000000 0000000000000000 ffffffc07351a080
[    0.767369] 79e0  0000000000000002 ffffff8000200000 0000000000018031 0000000000018031 ffffffc073519300 ffffffc000fc5dd4 ffffffc073518f80 ffffffc0734b8000
[    0.781084] 7a20  ffffffc000f8c3b0 ffffffc00c367a70 ffffffc00027a5c4 ffffffc00c367a60 ffffffc0002de49c 0000000080000005 ffffffc000fc5dd4 ffffffc073518f80
[    0.794799] 7a60  0000000000000000 000000009ffbf000 ffffffc00c367ad0 ffffffc00027acf0 ffffffc07351a080 0000000000040000 0000000043474244 ffffff8000200000
[    0.808515] 7aa0  ffffffc000fc5dd4 ffffffc073519300 ffffffc000fc5dd4 ffffffc00027aa80 ffffffc000fc5dd4 ffffffc073519280 ffffffc00c367b40 ffffffc000279c14
[    0.822230] 7ae0  ffffffc0734fe100 0000000000040000 ffffffc00c367bf8 ffffffc0734f0010 ffffffc000fc5d98 00000000000000bf ffffffc000fc5dd4 ffffffc073518f80
[    0.835945] 7b20  ffffffc0734b8000 ffffffc00027a040 ffffffc0734fe100 ffffffc000fc5cb8 ffffffc00c367b90 ffffffc00027a0d0 ffffffc0734fe100 ffffffc000fc5cb8
[01-01 00:00:00.760] [6][1: swapper/0]
[01-01 00:00:00.770] [6][1: swapper/0]Process swapper/0 (pid: 1, stack limit = 0xffffffc00c364058)
[01-01 00:00:00.770] [6][1: swapper/0]Call trace:
[01-01 00:00:00.780] [6][1: swapper/0][<ffffffc0002de49c>] memcpy+0x9c/0x180
[01-01 00:00:00.790] [6][1: swapper/0][<ffffffc00027acec>] persistent_ram_new+0x3f8/0x438
[01-01 00:00:00.790] [6][1: swapper/0][<ffffffc000279c10>] ramoops_init_prz.part.0.constprop.4+0x84/0xe4
[01-01 00:00:00.800] [6][1: swapper/0][<ffffffc00027a0cc>] ramoops_probe+0x288/0x420
[01-01 00:00:00.810] [6][1: swapper/0][<ffffffc000434440>] platform_drv_probe+0x24/0x34
[01-01 00:00:00.820] [6][1: swapper/0][<ffffffc000432e48>] driver_probe_device+0xdc/0x248
[01-01 00:00:00.830] [6][1: swapper/0][<ffffffc000433078>] __driver_attach+0x70/0xa0
[01-01 00:00:00.830] [6][1: swapper/0][<ffffffc000431d6c>] bus_for_each_dev+0x84/0xa8
[01-01 00:00:00.840] [6][1: swapper/0][<ffffffc000432864>] driver_attach+0x28/0x34
[01-01 00:00:00.850] [6][1: swapper/0][<ffffffc000432428>] bus_add_driver+0x100/0x21c
[01-01 00:00:00.860] [6][1: swapper/0][<ffffffc00043370c>] driver_register+0x9c/0x118
[01-01 00:00:00.860] [6][1: swapper/0][<ffffffc000434a58>] platform_driver_register+0x68/0x78
[01-01 00:00:00.870] [6][1: swapper/0][<ffffffc000f06c74>] ramoops_init+0x104/0x118
[01-01 00:00:00.880] [6][1: swapper/0][<ffffffc00008181c>] do_one_initcall+0x88/0x120
[01-01 00:00:00.890] [6][1: swapper/0][<ffffffc000ee98cc>] kernel_init_freeable+0x13c/0x1dc
[01-01 00:00:00.890] [6][1: swapper/0][<ffffffc000a1ce58>] kernel_init+0x1c/0xd4
[01-01 00:00:00.900] [6][1: swapper/0]Code: 36100062 b8404423 b80044c3 36080062 (78402423) 
[01-01 00:00:00.910] [6][1: swapper/0]---[ end trace 1b75b31a2719ed1c ]---
[01-01 00:00:00.920] [6][1: swapper/0]Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b
[01-01 00:00:00.920] [6][1: swapper/0]
[01-01 00:00:00.930] [0][65535: in-isr]CPU0: stopping
[01-01 00:00:00.930] [0][65535: in-isr]
[01-01 00:00:00.930] [0][65535: in-isr]CPU: 0 PID: 0 Comm: swapper/0 Tainted: G      D      3.10.49 #1
[01-01 00:00:00.930] [0][65535: in-isr]task: ffffffc000fa4860 ti: ffffffc000f98000 task.ti: ffffffc000f98000
[01-01 00:00:00.930] [0][65535: in-isr]PC is at arch_cpu_idle+0x20/0x28
[01-01 00:00:00.930] [0][65535: in-isr]LR is at arch_cpu_idle+0x1c/0x28
[01-01 00:00:00.930] [0][65535: in-isr]pc : [<ffffffc0000860a0>] lr : [<ffffffc00008609c>] pstate: 60000205
[01-01 00:00:00.930] [0][65535: in-isr]sp : ffffffc000f9bef0
[    1.071188] x29: ffffffc000f9bef0 x28: 0000004080000000 
[    1.076483] x27: ffffffc000080148 x26: 000000008007d000 
[    1.081777] x25: 000000008007b000 x24: ffffffc076b9f880 
[    1.087073] x23: ffffffc000d4c4a5 x22: ffffffc001103f58 
[    1.092368] x21: ffffffc0010b116b x20: ffffffc000f9bf98 
[    1.097663] x19: ffffffc000f98000 x18: 0000000000000003 
[    1.102958] x17: 0000000000000010 x16: 0000000000002f80 
[    1.108253] x15: 000000000000000e x14: ffffffffffffffff 
[    1.113549] x13: 0000000000000001 x12: 0000000000000001 
[    1.118843] x11: 0000000000000001 x10: 0000000000000399 
[    1.124139] x9 : ffffffc000f9bd00 x8 : 0000000d1cef0000 
[    1.129434] x7 : 0000000000000008 x6 : 0000000098968000 
[    1.134729] x5 : 0000000000000000 x4 : 0000000075af8000 
[    1.140024] x3 : 00000000ffff8b2d x2 : ffffffc076a8abe4 
[    1.145319] x1 : 0000000075af8000 x0 : 00000000ffffffed 
[01-01 00:00:00.930] [0][65535: in-isr]
[01-01 00:00:00.930] [0][65535: in-isr]PC: 0xffffffc000085fa0:
[    1.159728] 5fa0  ad79b40cad78bc0e ad7ba408ad7aac0a ad7d9404ad7c9c06 ad7f8400ad7e8c02 d503201fd65f03c0 d503201fd503201f 910003fda9be7bfd aa0003f3f9000bf3
[    1.173444] 5fe0  d503201faa1e03e0 b27447e1910003e0 910006629272c400 d3565800f9400000 b2742be06b1f001f aa1303e09a811001 d28000028b010041 eb1f001f940d756f
[    1.187159] 6020  f9400bf39a931000 d65f03c0a8c27bfd 910003fda9be7bfd aa0003f3f9000bf3 d503201faa1e03e0 9400399d94003bf7 9400399b94003ce4 f0000061f00081a0
[    1.200874] 6060  d2c0080291100021 8b010001f9420000 8b020021aa1303e0 e7f001f2d63f0020 910003fda9bf7bfd d503201faa1e03e0 340000609418e61d d50342ff94003ce2
[    1.214590] 60a0  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cbad2800020 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cb2d2800040
[    1.228305] 60e0  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 a8c17bfd94265b86 a9bf7bfdd65f03c0 aa1e03e0910003fd 94006d1ed503201f d65f03c0a8c17bfd
[    1.242020] 6120  910003fda9bf7bfd d503201faa1e03e0 940027efd50342df a9bf7bfd14000000 aa1e03e0910003fd d50342dfd503201f f00081a0940027e8 b4000040f9409000
[    1.255735] 6160  a8c17bfdd63f0000 a9be7bfdd65f03c0 f9000fa0910003fd d503201faa1e03e0 940027dbd50342df f9409402f00081a0 f9400fa1b4000082 d63f004052800040
[01-01 00:00:00.930] [0][65535: in-isr]
[01-01 00:00:00.930] [0][65535: in-isr]LR: 0xffffffc000085f9c:
[    1.278565] 5f98  ad77c410ad76cc12 ad79b40cad78bc0e ad7ba408ad7aac0a ad7d9404ad7c9c06 ad7f8400ad7e8c02 d503201fd65f03c0 d503201fd503201f 910003fda9be7bfd
[    1.292281] 5fd8  aa0003f3f9000bf3 d503201faa1e03e0 b27447e1910003e0 910006629272c400 d3565800f9400000 b2742be06b1f001f aa1303e09a811001 d28000028b010041
[    1.305996] 6018  eb1f001f940d756f f9400bf39a931000 d65f03c0a8c27bfd 910003fda9be7bfd aa0003f3f9000bf3 d503201faa1e03e0 9400399d94003bf7 9400399b94003ce4
[    1.319711] 6058  f0000061f00081a0 d2c0080291100021 8b010001f9420000 8b020021aa1303e0 e7f001f2d63f0020 910003fda9bf7bfd d503201faa1e03e0 340000609418e61d
[    1.333426] 6098  d50342ff94003ce2 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cbad2800020 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0
[    1.347141] 60d8  94006cb2d2800040 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 a8c17bfd94265b86 a9bf7bfdd65f03c0 aa1e03e0910003fd 94006d1ed503201f
[    1.360857] 6118  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 940027efd50342df a9bf7bfd14000000 aa1e03e0910003fd d50342dfd503201f f00081a0940027e8
[    1.374572] 6158  b4000040f9409000 a8c17bfdd63f0000 a9be7bfdd65f03c0 f9000fa0910003fd d503201faa1e03e0 940027dbd50342df f9409402f00081a0 f9400fa1b4000082
[    1.388288] 6198  d63f004052800040 9102340090006600 14000000942678fa 910003fda9bd7bfd a9025bf5a90153f3 aa1e03e0aa0003f3 f9408660d503201f f100401f92401000
[01-01 00:00:00.930] [0][65535: in-isr]
[01-01 00:00:00.930] [0][65535: in-isr]SP: 0xffffffc000f9bdf0:
[    1.411117] bdf0  0000000075af8000 0000000000000000 0000000098968000 0000000000000008 0000000d1cef0000 ffffffc000f9bd00 0000000000000399 0000000000000001
[    1.424833] be30  0000000000000001 0000000000000001 ffffffffffffffff 000000000000000e 0000000000002f80 0000000000000010 0000000000000003 ffffffc000f98000
[    1.438548] be70  ffffffc000f9bf98 ffffffc0010b116b ffffffc001103f58 ffffffc000d4c4a5 ffffffc076b9f880 000000008007b000 000000008007d000 ffffffc000080148
[    1.452263] beb0  0000004080000000 ffffffc000f9bef0 ffffffc00008609c ffffffc000f9bef0 ffffffc0000860a0 0000000060000205 ffffffc0010b116b ffffffc001103f58
[    1.465978] bef0  ffffffc000f9bf00 ffffffc0000e6490 ffffffc000f9bf50 ffffffc000a1ce2c 0000000000000001 ffffffc000f9bf98 ffffffc001103000 ffffffc000f3e458
[    1.479694] bf30  ffffffc000f98000 ffffffc076b9f880 000000008007b000 000000008007d000 ffffffc000f9bfa0 ffffffc000ee977c ffffffc00114d000 0000000000000000
[    1.493409] bf70  ffffffc0010bd000 ffffffc000f3e458 ffffffc0010bd000 0000000000000002 0000000000000000 ffffffc000000001 0000000000000000 00000000800800c0
[    1.507124] bfb0  0000000000000000 0000000000000e11 0000000081e00000 00000000410fd031 0000000080fa6048 0000000080000000 0000000000000000 ffffffc000f3e458
[01-01 00:00:00.930] [0][65535: in-isr]
[01-01 00:00:00.930] [0][65535: in-isr]CPU: 0 PID: 0 Comm: swapper/0 Tainted: G      D      3.10.49 #1
[01-01 00:00:00.930] [0][65535: in-isr]Call trace:
[01-01 00:00:00.930] [0][65535: in-isr][<ffffffc000088660>] dump_backtrace+0x0/0x228
[01-01 00:00:00.930] [0][65535: in-isr][<ffffffc0000888a4>] show_stack+0x1c/0x28
[01-01 00:00:00.930] [0][65535: in-isr][<ffffffc000a25a50>] dump_stack+0x1c/0x28
[01-01 00:00:00.930] [0][65535: in-isr][<ffffffc00008ff68>] handle_IPI+0x108/0x1f0
[01-01 00:00:00.930] [0][65535: in-isr][<ffffffc000081740>] gic_handle_irq+0x70/0x88
[01-01 00:00:00.930] [0][65535: in-isr]Exception stack(0xffffffc000f9bdb0 to 0xffffffc000f9bed0)
[01-01 00:00:00.930] [0][65535: in-isr]bda0:                                     00f98000 ffffffc0 00f9bf98 ffffffc0
[01-01 00:00:00.930] [0][65535: in-isr]bdc0: 00f9bef0 ffffffc0 000860a0 ffffffc0 ffffffed 00000000 75af8000 00000000
[01-01 00:00:00.930] [0][65535: in-isr]bde0: 76a8abe4 ffffffc0 ffff8b2d 00000000 75af8000 00000000 00000000 00000000
[01-01 00:00:00.930] [0][65535: in-isr]be00: 98968000 00000000 00000008 00000000 1cef0000 0000000d 00f9bd00 ffffffc0
[01-01 00:00:00.930] [0][65535: in-isr]be20: 00000399 00000000 00000001 00000000 00000001 00000000 00000001 00000000
[01-01 00:00:00.930] [0][65535: in-isr]be40: ffffffff ffffffff 0000000e 00000000 00002f80 00000000 00000010 00000000
[01-01 00:00:00.930] [0][65535: in-isr]be60: 00000003 00000000 00f98000 ffffffc0 00f9bf98 ffffffc0 010b116b ffffffc0
[01-01 00:00:00.930] [0][65535: in-isr]be80: 01103f58 ffffffc0 00d4c4a5 ffffffc0 76b9f880 ffffffc0 8007b000 00000000
[01-01 00:00:00.930] [0][65535: in-isr]bea0: 8007d000 00000000 00080148 ffffffc0 80000000 00000040 00f9bef0 ffffffc0
[01-01 00:00:00.930] [0][65535: in-isr]bec0: 0008609c ffffffc0 00f9bef0 ffffffc0
[01-01 00:00:00.930] [0][65535: in-isr][<ffffffc000084da0>] el1_irq+0x60/0xd0
[01-01 00:00:00.930] [0][65535: in-isr][<ffffffc0000e648c>] cpu_startup_entry+0x164/0x1d0
[01-01 00:00:00.930] [0][65535: in-isr][<ffffffc000a1ce28>] rest_init+0xa8/0xbc
[01-01 00:00:00.930] [0][65535: in-isr][<ffffffc000ee9778>] start_kernel+0x2e8/0x300
[01-01 00:00:00.930] [4][65535: in-isr]CPU4: stopping
[01-01 00:00:00.930] [4][65535: in-isr]
[01-01 00:00:00.930] [4][65535: in-isr]CPU: 4 PID: 0 Comm: swapper/4 Tainted: G      D      3.10.49 #1
[01-01 00:00:00.930] [4][65535: in-isr]task: ffffffc073db8a80 ti: ffffffc073dc4000 task.ti: ffffffc073dc4000
[01-01 00:00:00.930] [4][65535: in-isr]PC is at arch_cpu_idle+0x20/0x28
[01-01 00:00:00.930] [4][65535: in-isr]LR is at arch_cpu_idle+0x1c/0x28
[01-01 00:00:00.930] [4][65535: in-isr]pc : [<ffffffc0000860a0>] lr : [<ffffffc00008609c>] pstate: 60000005
[01-01 00:00:00.930] [4][65535: in-isr]sp : ffffffc073dc7f70
[    1.765895] x29: ffffffc073dc7f70 x28: 0000004080000000 
[    1.771190] x27: ffffffc000081180 x26: 000000008007d000 
[    1.776485] x25: 000000008007b000 x24: 0000000080000000 
[    1.781780] x23: ffffffc000d4c4a5 x22: ffffffc001103f58 
[    1.787075] x21: ffffffc0010b116b x20: ffffffc073dc4000 
[    1.792371] x19: ffffffc073dc4000 x18: 0000000000000003 
[    1.797666] x17: 0000000000000010 x16: 0000000000003200 
[    1.802960] x15: 000000000000000e x14: 0ffffffffffffffe 
[    1.808256] x13: 0000000000000018 x12: 0101010101010101 
[    1.813551] x11: 7f7f7f7f7f7f7f7f x10: 0000000000000000 
[    1.818846] x9 : ffffffc073dc7d80 x8 : 0000000d1cef0000 
[    1.824141] x7 : 0000000000000008 x6 : 0000000098968000 
[    1.829436] x5 : 0000000000000000 x4 : 0000000075b3c000 
[    1.834731] x3 : 00000000ffff8b2d x2 : ffffffc076acebe4 
[    1.840027] x1 : 0000000075b3c000 x0 : 00000000ffffffed 
[01-01 00:00:00.930] [4][65535: in-isr]
[01-01 00:00:00.930] [4][65535: in-isr]PC: 0xffffffc000085fa0:
[    1.854435] 5fa0  ad79b40cad78bc0e ad7ba408ad7aac0a ad7d9404ad7c9c06 ad7f8400ad7e8c02 d503201fd65f03c0 d503201fd503201f 910003fda9be7bfd aa0003f3f9000bf3
[    1.868150] 5fe0  d503201faa1e03e0 b27447e1910003e0 910006629272c400 d3565800f9400000 b2742be06b1f001f aa1303e09a811001 d28000028b010041 eb1f001f940d756f
[    1.881865] 6020  f9400bf39a931000 d65f03c0a8c27bfd 910003fda9be7bfd aa0003f3f9000bf3 d503201faa1e03e0 9400399d94003bf7 9400399b94003ce4 f0000061f00081a0
[    1.895581] 6060  d2c0080291100021 8b010001f9420000 8b020021aa1303e0 e7f001f2d63f0020 910003fda9bf7bfd d503201faa1e03e0 340000609418e61d d50342ff94003ce2
[    1.909296] 60a0  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cbad2800020 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cb2d2800040
[    1.923011] 60e0  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 a8c17bfd94265b86 a9bf7bfdd65f03c0 aa1e03e0910003fd 94006d1ed503201f d65f03c0a8c17bfd
[    1.936727] 6120  910003fda9bf7bfd d503201faa1e03e0 940027efd50342df a9bf7bfd14000000 aa1e03e0910003fd d50342dfd503201f f00081a0940027e8 b4000040f9409000
[    1.950442] 6160  a8c17bfdd63f0000 a9be7bfdd65f03c0 f9000fa0910003fd d503201faa1e03e0 940027dbd50342df f9409402f00081a0 f9400fa1b4000082 d63f004052800040
[01-01 00:00:00.930] [4][65535: in-isr]
[01-01 00:00:00.930] [4][65535: in-isr]LR: 0xffffffc000085f9c:
[    1.973272] 5f98  ad77c410ad76cc12 ad79b40cad78bc0e ad7ba408ad7aac0a ad7d9404ad7c9c06 ad7f8400ad7e8c02 d503201fd65f03c0 d503201fd503201f 910003fda9be7bfd
[    1.986987] 5fd8  aa0003f3f9000bf3 d503201faa1e03e0 b27447e1910003e0 910006629272c400 d3565800f9400000 b2742be06b1f001f aa1303e09a811001 d28000028b010041
[    2.000702] 6018  eb1f001f940d756f f9400bf39a931000 d65f03c0a8c27bfd 910003fda9be7bfd aa0003f3f9000bf3 d503201faa1e03e0 9400399d94003bf7 9400399b94003ce4
[    2.014417] 6058  f0000061f00081a0 d2c0080291100021 8b010001f9420000 8b020021aa1303e0 e7f001f2d63f0020 910003fda9bf7bfd d503201faa1e03e0 340000609418e61d
[    2.028133] 6098  d50342ff94003ce2 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cbad2800020 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0
[    2.041848] 60d8  94006cb2d2800040 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 a8c17bfd94265b86 a9bf7bfdd65f03c0 aa1e03e0910003fd 94006d1ed503201f
[    2.055563] 6118  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 940027efd50342df a9bf7bfd14000000 aa1e03e0910003fd d50342dfd503201f f00081a0940027e8
[    2.069278] 6158  b4000040f9409000 a8c17bfdd63f0000 a9be7bfdd65f03c0 f9000fa0910003fd d503201faa1e03e0 940027dbd50342df f9409402f00081a0 f9400fa1b4000082
[    2.082994] 6198  d63f004052800040 9102340090006600 14000000942678fa 910003fda9bd7bfd a9025bf5a90153f3 aa1e03e0aa0003f3 f9408660d503201f f100401f92401000
[01-01 00:00:00.930] [4][65535: in-isr]
[01-01 00:00:00.930] [4][65535: in-isr]SP: 0xffffffc073dc7e70:
[    2.105824] 7e70  0000000075b3c000 0000000000000000 0000000098968000 0000000000000008 0000000d1cef0000 ffffffc073dc7d80 0000000000000000 7f7f7f7f7f7f7f7f
[    2.119539] 7eb0  0101010101010101 0000000000000018 0ffffffffffffffe 000000000000000e 0000000000003200 0000000000000010 0000000000000003 ffffffc073dc4000
[    2.133254] 7ef0  ffffffc073dc4000 ffffffc0010b116b ffffffc001103f58 ffffffc000d4c4a5 0000000080000000 000000008007b000 000000008007d000 ffffffc000081180
[    2.146970] 7f30  0000004080000000 ffffffc073dc7f70 ffffffc00008609c ffffffc073dc7f70 ffffffc0000860a0 0000000060000005 ffffffc0010b116b ffffffc001103f58
[    2.160685] 7f70  ffffffc073dc7f80 ffffffc0000e6490 ffffffc073dc7fd0 ffffffc000a21218 0000000000000004 ffffffc073dc4000 ffffffc0010bd238 00000000410fd031
[    2.174400] 7fb0  0000000080fa6048 0000000080000000 000000008007b000 000000008007d000 0000000000000000 0000000080081168 0000000000000000 0000000000000e11
[    2.188116] 7ff0  0000000000000000 0000000000000000 0000000000000000 ffffffffffffffff ffffffc073db9500 ffffffc000faa860 ffffffc0000b1a48 0000000000000000
[    2.201831] 8030  0000000000000000 0000000000000000 0000000000000000 0000000000000000 0000000500010002 0000000057ac6e9d 0000000000000000 0000000000000000
[01-01 00:00:00.930] [4][65535: in-isr]
[01-01 00:00:00.930] [4][65535: in-isr]CPU: 4 PID: 0 Comm: swapper/4 Tainted: G      D      3.10.49 #1
[01-01 00:00:00.930] [6][1: swapper/0]SMP: failed to stop secondary CPUs
[01-01 00:00:00.930] [4][65535: in-isr]Call trace:
[01-01 00:00:00.930] [4][65535: in-isr][<ffffffc000088660>] dump_backtrace+0x0/0x228
[01-01 00:00:00.930] [4][65535: in-isr][<ffffffc0000888a4>] show_stack+0x1c/0x28
[01-01 00:00:00.930] [4][65535: in-isr][<ffffffc000a25a50>] dump_stack+0x1c/0x28
[01-01 00:00:00.930] [4][65535: in-isr][<ffffffc00008ff68>] handle_IPI+0x108/0x1f0
[01-01 00:00:00.930] [4][65535: in-isr][<ffffffc000081740>] gic_handle_irq+0x70/0x88
[01-01 00:00:00.930] [4][65535: in-isr]Exception stack(0xffffffc073dc7e30 to 0xffffffc073dc7f50)
[01-01 00:00:00.930] [4][65535: in-isr]7e20:                                     73dc4000 ffffffc0 73dc4000 ffffffc0
[01-01 00:00:00.930] [4][65535: in-isr]7e40: 73dc7f70 ffffffc0 000860a0 ffffffc0 ffffffed 00000000 75b3c000 00000000
[01-01 00:00:00.930] [4][65535: in-isr]7e60: 76acebe4 ffffffc0 ffff8b2d 00000000 75b3c000 00000000 00000000 00000000
[01-01 00:00:00.930] [4][65535: in-isr]7e80: 98968000 00000000 00000008 00000000 1cef0000 0000000d 73dc7d80 ffffffc0
[01-01 00:00:00.930] [4][65535: in-isr]7ea0: 00000000 00000000 7f7f7f7f 7f7f7f7f 01010101 01010101 00000018 00000000
[01-01 00:00:00.930] [4][65535: in-isr]7ec0: fffffffe 0fffffff 0000000e 00000000 00003200 00000000 00000010 00000000
[01-01 00:00:00.930] [4][65535: in-isr]7ee0: 00000003 00000000 73dc4000 ffffffc0 73dc4000 ffffffc0 010b116b ffffffc0
[01-01 00:00:00.930] [4][65535: in-isr]7f00: 01103f58 ffffffc0 00d4c4a5 ffffffc0 80000000 00000000 8007b000 00000000
[01-01 00:00:00.930] [4][65535: in-isr]7f20: 8007d000 00000000 00081180 ffffffc0 80000000 00000040 73dc7f70 ffffffc0
[01-01 00:00:00.930] [4][65535: in-isr]7f40: 0008609c ffffffc0 73dc7f70 ffffffc0
[01-01 00:00:00.930] [4][65535: in-isr][<ffffffc000084da0>] el1_irq+0x60/0xd0
[01-01 00:00:00.930] [4][65535: in-isr][<ffffffc0000e648c>] cpu_startup_entry+0x164/0x1d0
[01-01 00:00:00.930] [4][65535: in-isr][<ffffffc000a21214>] secondary_start_kernel+0xfc/0x10c
[01-01 00:00:00.930] [7][65535: in-isr]CPU7: stopping
[01-01 00:00:00.930] [7][65535: in-isr]
[01-01 00:00:00.930] [7][65535: in-isr]CPU: 7 PID: 0 Comm: swapper/7 Tainted: G      D      3.10.49 #1
[01-01 00:00:00.930] [7][65535: in-isr]task: ffffffc073dbaa00 ti: ffffffc073dd0000 task.ti: ffffffc073dd0000
[01-01 00:00:00.930] [7][65535: in-isr]PC is at arch_cpu_idle+0x20/0x28
[01-01 00:00:00.930] [7][65535: in-isr]LR is at arch_cpu_idle+0x1c/0x28
[01-01 00:00:00.930] [7][65535: in-isr]pc : [<ffffffc0000860a0>] lr : [<ffffffc00008609c>] pstate: 60000005
[01-01 00:00:00.930] [7][65535: in-isr]sp : ffffffc073dd3f70
[01-01 00:00:00.930] [7][65535: in-isr]Rebooting in 5 seconds..
[    2.460775] x29: ffffffc073dd3f70 x28: 0000004080000000 
[    2.471711] x27: ffffffc000081180 x26: 000000008007d000 
[    2.477006] x25: 000000008007b000 x24: 0000000080000000 
[    2.482301] x23: ffffffc000d4c4a5 x22: ffffffc001103f58 
[    2.487596] x21: ffffffc0010b116b x20: ffffffc073dd0000 
[    2.492892] x19: ffffffc073dd0000 x18: 0000000000000000 
[    2.498186] x17: 0000000000000000 x16: 0000000000000000 
[    2.503481] x15: 0000000000000000 x14: 0ffffffffffffffe 
[    2.508776] x13: 0000000000000018 x12: 0101010101010101 
[    2.514072] x11: 7f7f7f7f7f7f7f7f x10: 0000000000000000 
[    2.519367] x9 : ffffffc073dd3d80 x8 : 0000000d1cef0000 
[    2.524662] x7 : 0000000000000008 x6 : 0000000098968000 
[    2.529957] x5 : 0000000000000000 x4 : 0000000075b6f000 
[    2.535252] x3 : 00000000ffff8b2d x2 : ffffffc076b01be4 
[    2.540547] x1 : 0000000075b6f000 x0 : 00000000ffffffed 
[01-01 00:00:00.930] [7][65535: in-isr]
[01-01 00:00:00.930] [7][65535: in-isr]PC: 0xffffffc000085fa0:
[    2.554956] 5fa0  ad79b40cad78bc0e ad7ba408ad7aac0a ad7d9404ad7c9c06 ad7f8400ad7e8c02 d503201fd65f03c0 d503201fd503201f 910003fda9be7bfd aa0003f3f9000bf3
[    2.568671] 5fe0  d503201faa1e03e0 b27447e1910003e0 910006629272c400 d3565800f9400000 b2742be06b1f001f aa1303e09a811001 d28000028b010041 eb1f001f940d756f
[    2.582386] 6020  f9400bf39a931000 d65f03c0a8c27bfd 910003fda9be7bfd aa0003f3f9000bf3 d503201faa1e03e0 9400399d94003bf7 9400399b94003ce4 f0000061f00081a0
[    2.596101] 6060  d2c0080291100021 8b010001f9420000 8b020021aa1303e0 e7f001f2d63f0020 910003fda9bf7bfd d503201faa1e03e0 340000609418e61d d50342ff94003ce2
[    2.609817] 60a0  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cbad2800020 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cb2d2800040
[    2.623532] 60e0  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 a8c17bfd94265b86 a9bf7bfdd65f03c0 aa1e03e0910003fd 94006d1ed503201f d65f03c0a8c17bfd
[    2.637247] 6120  910003fda9bf7bfd d503201faa1e03e0 940027efd50342df a9bf7bfd14000000 aa1e03e0910003fd d50342dfd503201f f00081a0940027e8 b4000040f9409000
[    2.650963] 6160  a8c17bfdd63f0000 a9be7bfdd65f03c0 f9000fa0910003fd d503201faa1e03e0 940027dbd50342df f9409402f00081a0 f9400fa1b4000082 d63f004052800040
[01-01 00:00:00.930] [7][65535: in-isr]
[01-01 00:00:00.930] [7][65535: in-isr]LR: 0xffffffc000085f9c:
[    2.673792] 5f98  ad77c410ad76cc12 ad79b40cad78bc0e ad7ba408ad7aac0a ad7d9404ad7c9c06 ad7f8400ad7e8c02 d503201fd65f03c0 d503201fd503201f 910003fda9be7bfd
[    2.687508] 5fd8  aa0003f3f9000bf3 d503201faa1e03e0 b27447e1910003e0 910006629272c400 d3565800f9400000 b2742be06b1f001f aa1303e09a811001 d28000028b010041
[    2.701223] 6018  eb1f001f940d756f f9400bf39a931000 d65f03c0a8c27bfd 910003fda9be7bfd aa0003f3f9000bf3 d503201faa1e03e0 9400399d94003bf7 9400399b94003ce4
[    2.714939] 6058  f0000061f00081a0 d2c0080291100021 8b010001f9420000 8b020021aa1303e0 e7f001f2d63f0020 910003fda9bf7bfd d503201faa1e03e0 340000609418e61d
[    2.728653] 6098  d50342ff94003ce2 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cbad2800020 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0
[    2.742369] 60d8  94006cb2d2800040 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 a8c17bfd94265b86 a9bf7bfdd65f03c0 aa1e03e0910003fd 94006d1ed503201f
[    2.756084] 6118  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 940027efd50342df a9bf7bfd14000000 aa1e03e0910003fd d50342dfd503201f f00081a0940027e8
[    2.769799] 6158  b4000040f9409000 a8c17bfdd63f0000 a9be7bfdd65f03c0 f9000fa0910003fd d503201faa1e03e0 940027dbd50342df f9409402f00081a0 f9400fa1b4000082
[    2.783515] 6198  d63f004052800040 9102340090006600 14000000942678fa 910003fda9bd7bfd a9025bf5a90153f3 aa1e03e0aa0003f3 f9408660d503201f f100401f92401000
[01-01 00:00:00.930] [7][65535: in-isr]
[01-01 00:00:00.930] [7][65535: in-isr]SP: 0xffffffc073dd3e70:
[    2.806345] 3e70  0000000075b6f000 0000000000000000 0000000098968000 0000000000000008 0000000d1cef0000 ffffffc073dd3d80 0000000000000000 7f7f7f7f7f7f7f7f
[    2.820059] 3eb0  0101010101010101 0000000000000018 0ffffffffffffffe 0000000000000000 0000000000000000 0000000000000000 0000000000000000 ffffffc073dd0000
[    2.833775] 3ef0  ffffffc073dd0000 ffffffc0010b116b ffffffc001103f58 ffffffc000d4c4a5 0000000080000000 000000008007b000 000000008007d000 ffffffc000081180
[    2.847490] 3f30  0000004080000000 ffffffc073dd3f70 ffffffc00008609c ffffffc073dd3f70 ffffffc0000860a0 0000000060000005 ffffffc0010b116b ffffffc001103f58
[    2.861205] 3f70  ffffffc073dd3f80 ffffffc0000e6490 ffffffc073dd3fd0 ffffffc000a21218 0000000000000007 ffffffc073dd0000 ffffffc0010bd238 00000000410fd031
[    2.874921] 3fb0  0000000080fa6048 0000000080000000 000000008007b000 000000008007d000 0000000000000000 0000000080081168 0000000000000000 0000000000000e11
[    2.888636] 3ff0  0000000000000000 0000000000000000 0000000000000000 ffffffffffffffff ffffffc073dbb480 ffffffc000faa860 ffffffc0000b1a48 0000000000000000
[    2.902352] 4030  0000000000000000 0000000000000000 0000000000000000 0000000000000000 0000000400000002 0000000057ac6e9d 0000000000000000 0000000000000000
[01-01 00:00:00.930] [7][65535: in-isr]
[01-01 00:00:00.930] [7][65535: in-isr]CPU: 7 PID: 0 Comm: swapper/7 Tainted: G      D      3.10.49 #1
[01-01 00:00:00.930] [7][65535: in-isr]Call trace:
[01-01 00:00:00.930] [7][65535: in-isr][<ffffffc000088660>] dump_backtrace+0x0/0x228
[01-01 00:00:00.930] [7][65535: in-isr][<ffffffc0000888a4>] show_stack+0x1c/0x28
[01-01 00:00:00.930] [7][65535: in-isr][<ffffffc000a25a50>] dump_stack+0x1c/0x28
[01-01 00:00:00.930] [7][65535: in-isr][<ffffffc00008ff68>] handle_IPI+0x108/0x1f0
[01-01 00:00:00.930] [7][65535: in-isr][<ffffffc000081740>] gic_handle_irq+0x70/0x88
[01-01 00:00:00.930] [7][65535: in-isr]Exception stack(0xffffffc073dd3e30 to 0xffffffc073dd3f50)
[01-01 00:00:00.930] [7][65535: in-isr]3e20:                                     73dd0000 ffffffc0 73dd0000 ffffffc0
[01-01 00:00:00.930] [7][65535: in-isr]3e40: 73dd3f70 ffffffc0 000860a0 ffffffc0 ffffffed 00000000 75b6f000 00000000
[01-01 00:00:00.930] [7][65535: in-isr]3e60: 76b01be4 ffffffc0 ffff8b2d 00000000 75b6f000 00000000 00000000 00000000
[01-01 00:00:00.930] [7][65535: in-isr]3e80: 98968000 00000000 00000008 00000000 1cef0000 0000000d 73dd3d80 ffffffc0
[01-01 00:00:00.930] [7][65535: in-isr]3ea0: 00000000 00000000 7f7f7f7f 7f7f7f7f 01010101 01010101 00000018 00000000
[01-01 00:00:00.930] [7][65535: in-isr]3ec0: fffffffe 0fffffff 00000000 00000000 00000000 00000000 00000000 00000000
[01-01 00:00:00.930] [7][65535: in-isr]3ee0: 00000000 00000000 73dd0000 ffffffc0 73dd0000 ffffffc0 010b116b ffffffc0
[01-01 00:00:00.930] [7][65535: in-isr]3f00: 01103f58 ffffffc0 00d4c4a5 ffffffc0 80000000 00000000 8007b000 00000000
[01-01 00:00:00.930] [7][65535: in-isr]3f20: 8007d000 00000000 00081180 ffffffc0 80000000 00000040 73dd3f70 ffffffc0
[01-01 00:00:00.930] [7][65535: in-isr]3f40: 0008609c ffffffc0 73dd3f70 ffffffc0
[01-01 00:00:00.930] [7][65535: in-isr][<ffffffc000084da0>] el1_irq+0x60/0xd0
[01-01 00:00:00.930] [7][65535: in-isr][<ffffffc0000e648c>] cpu_startup_entry+0x164/0x1d0
[01-01 00:00:00.930] [7][65535: in-isr][<ffffffc000a21214>] secondary_start_kernel+0xfc/0x10c
[01-01 00:00:00.930] [5][65535: in-isr]CPU5: stopping
[01-01 00:00:00.930] [5][65535: in-isr]
[01-01 00:00:00.930] [5][65535: in-isr]CPU: 5 PID: 0 Comm: swapper/5 Tainted: G      D      3.10.49 #1
[01-01 00:00:00.930] [5][65535: in-isr]task: ffffffc073db9500 ti: ffffffc073dc8000 task.ti: ffffffc073dc8000
[01-01 00:00:00.930] [5][65535: in-isr]PC is at arch_cpu_idle+0x20/0x28
[01-01 00:00:00.930] [5][65535: in-isr]LR is at arch_cpu_idle+0x1c/0x28
[01-01 00:00:00.930] [5][65535: in-isr]pc : [<ffffffc0000860a0>] lr : [<ffffffc00008609c>] pstate: 60000005
[01-01 00:00:00.930] [5][65535: in-isr]sp : ffffffc073dcbf70
[    3.154871] x29: ffffffc073dcbf70 x28: 0000004080000000 
[    3.160166] x27: ffffffc000081180 x26: 000000008007d000 
[    3.165460] x25: 000000008007b000 x24: 0000000080000000 
[    3.170756] x23: ffffffc000d4c4a5 x22: ffffffc001103f58 
[    3.176051] x21: ffffffc0010b116b x20: ffffffc073dc8000 
[    3.181346] x19: ffffffc073dc8000 x18: 0000000000000000 
[    3.186641] x17: 0000000000000000 x16: 0000000000000000 
[    3.191936] x15: 0000000000000000 x14: 0ffffffffffffffe 
[    3.197231] x13: 0000000000000018 x12: 0101010101010101 
[    3.202527] x11: 7f7f7f7f7f7f7f7f x10: 0000000000000000 
[    3.207822] x9 : ffffffc073dcbd80 x8 : 0000000d1cef0000 
[    3.213116] x7 : 0000000000000008 x6 : 0000000098968000 
[    3.218412] x5 : 0000000000000000 x4 : 0000000075b4d000 
[    3.223707] x3 : 00000000ffff8b2c x2 : ffffffc076adfbe4 
[    3.229002] x1 : 0000000075b4d000 x0 : 00000000ffffffed 
[01-01 00:00:00.930] [5][65535: in-isr]
[01-01 00:00:00.930] [5][65535: in-isr]PC: 0xffffffc000085fa0:
[    3.243410] 5fa0  ad79b40cad78bc0e ad7ba408ad7aac0a ad7d9404ad7c9c06 ad7f8400ad7e8c02 d503201fd65f03c0 d503201fd503201f 910003fda9be7bfd aa0003f3f9000bf3
[    3.257126] 5fe0  d503201faa1e03e0 b27447e1910003e0 910006629272c400 d3565800f9400000 b2742be06b1f001f aa1303e09a811001 d28000028b010041 eb1f001f940d756f
[    3.270841] 6020  f9400bf39a931000 d65f03c0a8c27bfd 910003fda9be7bfd aa0003f3f9000bf3 d503201faa1e03e0 9400399d94003bf7 9400399b94003ce4 f0000061f00081a0
[    3.284557] 6060  d2c0080291100021 8b010001f9420000 8b020021aa1303e0 e7f001f2d63f0020 910003fda9bf7bfd d503201faa1e03e0 340000609418e61d d50342ff94003ce2
[    3.298272] 60a0  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cbad2800020 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cb2d2800040
[    3.311987] 60e0  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 a8c17bfd94265b86 a9bf7bfdd65f03c0 aa1e03e0910003fd 94006d1ed503201f d65f03c0a8c17bfd
[    3.325702] 6120  910003fda9bf7bfd d503201faa1e03e0 940027efd50342df a9bf7bfd14000000 aa1e03e0910003fd d50342dfd503201f f00081a0940027e8 b4000040f9409000
[    3.339418] 6160  a8c17bfdd63f0000 a9be7bfdd65f03c0 f9000fa0910003fd d503201faa1e03e0 940027dbd50342df f9409402f00081a0 f9400fa1b4000082 d63f004052800040
[01-01 00:00:00.930] [5][65535: in-isr]
[01-01 00:00:00.930] [5][65535: in-isr]LR: 0xffffffc000085f9c:
[    3.362247] 5f98  ad77c410ad76cc12 ad79b40cad78bc0e ad7ba408ad7aac0a ad7d9404ad7c9c06 ad7f8400ad7e8c02 d503201fd65f03c0 d503201fd503201f 910003fda9be7bfd
[    3.375963] 5fd8  aa0003f3f9000bf3 d503201faa1e03e0 b27447e1910003e0 910006629272c400 d3565800f9400000 b2742be06b1f001f aa1303e09a811001 d28000028b010041
[    3.389678] 6018  eb1f001f940d756f f9400bf39a931000 d65f03c0a8c27bfd 910003fda9be7bfd aa0003f3f9000bf3 d503201faa1e03e0 9400399d94003bf7 9400399b94003ce4
[    3.403393] 6058  f0000061f00081a0 d2c0080291100021 8b010001f9420000 8b020021aa1303e0 e7f001f2d63f0020 910003fda9bf7bfd d503201faa1e03e0 340000609418e61d
[    3.417108] 6098  d50342ff94003ce2 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 94006cbad2800020 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0
[    3.430824] 60d8  94006cb2d2800040 d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 a8c17bfd94265b86 a9bf7bfdd65f03c0 aa1e03e0910003fd 94006d1ed503201f
[    3.444539] 6118  d65f03c0a8c17bfd 910003fda9bf7bfd d503201faa1e03e0 940027efd50342df a9bf7bfd14000000 aa1e03e0910003fd d50342dfd503201f f00081a0940027e8
[    3.458254] 6158  b4000040f9409000 a8c17bfdd63f0000 a9be7bfdd65f03c0 f9000fa0910003fd d503201faa1e03e0 940027dbd50342df f9409402f00081a0 f9400fa1b4000082
[    3.471969] 6198  d63f004052800040 9102340090006600 14000000942678fa 910003fda9bd7bfd a9025bf5a90153f3 aa1e03e0aa0003f3 f9408660d503201f f100401f92401000
[01-01 00:00:00.930] [5][65535: in-isr]
[01-01 00:00:00.930] [5][65535: in-isr]SP: 0xffffffc073dcbe70:
[    3.494799] be70  0000000075b4d000 0000000000000000 0000000098968000 0000000000000008 0000000d1cef0000 ffffffc073dcbd80 0000000000000000 7f7f7f7f7f7f7f7f
[    3.508515] beb0  0101010101010101 0000000000000018 0ffffffffffffffe 0000000000000000 0000000000000000 0000000000000000 0000000000000000 ffffffc073dc8000
[    3.522230] bef0  ffffffc073dc8000 ffffffc0010b116b ffffffc001103f58 ffffffc000d4c4a5 0000000080000000 000000008007b000 000000008007d000 ffffffc000081180
[    3.535945] bf30  0000004080000000 ffffffc073dcbf70 ffffffc00008609c ffffffc073dcbf70 ffffffc0000860a0 0000000060000005 ffffffc0010b116b ffffffc001103f58
[    3.549660] bf70  ffffffc073dcbf80 ffffffc0000e6490 ffffffc073dcbfd0 ffffffc000a21218 0000000000000005 ffffffc073dc8000 ffffffc0010bd238 00000000410fd031
[    3.563376] bfb0  0000000080fa6048 0000000080000000 000000008007b000 000000008007d000 0000000000000000 0000000080081168 0000000000000000 0000000000000e11
[    3.577091] bff0  0000000000000000 0000000000000000 0000000000000000 ffffffffffffffff ffffffc073db9f80 ffffffc000faa860 ffffffc0000b1a48 0000000000000000
[    3.590806] c030  0000000000000000 0000000000000000 0000000000000000 0000000000000000 0000000600000002 0000000057ac6e9d 0000000000000000 0000000000000000
[01-01 00:00:00.930] [5][65535: in-isr]
[01-01 00:00:00.930] [5][65535: in-isr]CPU: 5 PID: 0 Comm: swapper/5 Tainted: G      D      3.10.49 #1
[01-01 00:00:00.930] [5][65535: in-isr]Call trace:
[01-01 00:00:00.930] [5][65535: in-isr][<ffffffc000088660>] dump_backtrace+0x0/0x228
[01-01 00:00:00.930] [5][65535: in-isr][<ffffffc0000888a4>] show_stack+0x1c/0x28
[01-01 00:00:00.930] [5][65535: in-isr][<ffffffc000a25a50>] dump_stack+0x1c/0x28
[01-01 00:00:00.930] [5][65535: in-isr][<ffffffc00008ff68>] handle_IPI+0x108/0x1f0
[01-01 00:00:00.930] [5][65535: in-isr][<ffffffc000081740>] gic_handle_irq+0x70/0x88
[01-01 00:00:00.930] [5][65535: in-isr]Exception stack(0xffffffc073dcbe30 to 0xffffffc073dcbf50)
[01-01 00:00:00.930] [5][65535: in-isr]be20:                                     73dc8000 ffffffc0 73dc8000 ffffffc0
[01-01 00:00:00.930] [5][65535: in-isr]be40: 73dcbf70 ffffffc0 000860a0 ffffffc0 ffffffed 00000000 75b4d000 00000000
[01-01 00:00:00.930] [5][65535: in-isr]be60: 76adfbe4 ffffffc0 ffff8b2c 00000000 75b4d000 00000000 00000000 00000000
[01-01 00:00:00.930] [5][65535: in-isr]be80: 98968000 00000000 00000008 00000000 1cef0000 0000000d 73dcbd80 ffffffc0
[01-01 00:00:00.930] [5][65535: in-isr]bea0: 00000000 00000000 7f7f7f7f 7f7f7f7f 01010101 01010101 00000018 00000000
[01-01 00:00:00.930] [5][65535: in-isr]bec0: fffffffe 0fffffff 00000000 00000000 00000000 00000000 00000000 00000000
[01-01 00:00:00.930] [5][65535: in-isr]bee0: 00000000 00000000 73dc8000 ffffffc0 73dc8000 ffffffc0 010b116b ffffffc0
[01-01 00:00:00.930] [5][65535: in-isr]bf00: 01103f58 ffffffc0 00d4c4a5 ffffffc0 80000000 00000000 8007b000 00000000
[01-01 00:00:00.930] [5][65535: in-isr]bf20: 8007d000 00000000 00081180 ffffffc0 80000000 00000040 73dcbf70 ffffffc0
[01-01 00:00:00.930] [5][65535: in-isr]bf40: 0008609c ffffffc0 73dcbf70 ffffffc0
[01-01 00:00:00.930] [5][65535: in-isr][<ffffffc000084da0>] el1_irq+0x60/0xd0
[01-01 00:00:00.930] [5][65535: in-isr][<ffffffc0000e648c>] cpu_startup_entry+0x164/0x1d0
[01-01 00:00:00.930] [5][65535: in-isr][<ffffffc000a21214>] secondary_start_kernel+0xfc/0x10c
[01-01 00:00:00.930] [6][1: swapper/0]Reboot failed -- System halted
0 0