Ubuntu Pastebin

Paste from alan at Fri, 11 Aug 2017 18:17:40 +0000

Download as text
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
Aug 11 15:49:27 localhost rsyslogd: [origin software="rsyslogd" swVersion="8.16.0" x-pid="1166" x-info="http://www.rsyslog.com"] start
Aug 11 15:49:27 localhost rsyslogd-2222: command 'KLogPermitNonKernelFacility' is currently not permitted - did you already set it via a RainerScript command (v6+ config)? [v8.16.0 try http://www.rsyslog.com/e/2222 ]
Aug 11 15:49:27 localhost rsyslogd: rsyslogd's groupid changed to 114
Aug 11 15:49:27 localhost rsyslogd: rsyslogd's userid changed to 108
Aug 11 15:49:27 localhost rsyslogd-2039: Could not open output pipe '/dev/xconsole':: No such file or directory [v8.16.0 try http://www.rsyslog.com/e/2039 ]
Aug 11 15:49:27 localhost rsyslogd-2007: action 'action 10' suspended, next retry is Fri Aug 11 15:49:57 2017 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Aug 11 15:49:27 localhost kernel: [    0.000000] Booting Linux on physical CPU 0x0
Aug 11 15:49:27 localhost kernel: [    0.000000] Linux version 4.11.0-13-generic (root@anubis) (gcc version 6.3.1 20170404 (Linaro GCC 6.3-2017.05) ) #19 SMP Thu Aug 10 16:53:30 CEST 2017 (Ubuntu 4.11.0-13.19-generic 4.11.12)
Aug 11 15:49:27 localhost kernel: [    0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
Aug 11 15:49:27 localhost kernel: [    0.000000] CPU: div instructions available: patching division code
Aug 11 15:49:27 localhost kernel: [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
Aug 11 15:49:27 localhost kernel: [    0.000000] OF: fdt: Machine model: FriendlyARM NanoPi NEO
Aug 11 15:49:27 localhost kernel: [    0.000000] Memory policy: Data cache writealloc
Aug 11 15:49:27 localhost kernel: [    0.000000] On node 0 totalpages: 131072
Aug 11 15:49:27 localhost kernel: [    0.000000] free_area_init_node: node 0, pgdat c161d780, node_mem_map dfb20000
Aug 11 15:49:27 localhost kernel: [    0.000000]   Normal zone: 1152 pages used for memmap
Aug 11 15:49:27 localhost kernel: [    0.000000]   Normal zone: 0 pages reserved
Aug 11 15:49:27 localhost kernel: [    0.000000]   Normal zone: 131072 pages, LIFO batch:31
Aug 11 15:49:27 localhost kernel: [    0.000000] psci: probing for conduit method from DT.
Aug 11 15:49:27 localhost kernel: [    0.000000] psci: Using PSCI v0.1 Function IDs from DT
Aug 11 15:49:27 localhost kernel: [    0.000000] percpu: Embedded 18 pages/cpu @dffa3000 s41484 r8192 d24052 u73728
Aug 11 15:49:27 localhost kernel: [    0.000000] pcpu-alloc: s41484 r8192 d24052 u73728 alloc=18*4096
Aug 11 15:49:27 localhost kernel: [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
Aug 11 15:49:27 localhost kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 129920
Aug 11 15:49:27 localhost kernel: [    0.000000] Kernel command line: console=ttyS0,115200 root=/dev/disk/by-label/writable rng_core.default_quality=700 net.ifnames=0 init=/lib/systemd/systemd ro panic=-1 fixrtc snap_core=core_2639.snap snap_kernel=linux-generic-allwinner_5.snap
Aug 11 15:49:27 localhost kernel: [    0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
Aug 11 15:49:27 localhost kernel: [    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Aug 11 15:49:27 localhost kernel: [    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Aug 11 15:49:27 localhost kernel: [    0.000000] allocated 524288 bytes of page_ext
Aug 11 15:49:27 localhost kernel: [    0.000000] Memory: 491236K/524288K available (10240K kernel code, 1240K rwdata, 4584K rodata, 2048K init, 747K bss, 33052K reserved, 0K cma-reserved, 0K highmem)
Aug 11 15:49:27 localhost kernel: [    0.000000] Virtual kernel memory layout:
Aug 11 15:49:27 localhost kernel: [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
Aug 11 15:49:27 localhost kernel: [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
Aug 11 15:49:27 localhost kernel: [    0.000000]     vmalloc : 0xe0800000 - 0xff800000   ( 496 MB)
Aug 11 15:49:27 localhost kernel: [    0.000000]     lowmem  : 0xc0000000 - 0xe0000000   ( 512 MB)
Aug 11 15:49:27 localhost kernel: [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
Aug 11 15:49:27 localhost kernel: [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
Aug 11 15:49:27 localhost kernel: [    0.000000]       .text : 0xc0208000 - 0xc0d00000   (11232 kB)
Aug 11 15:49:27 localhost kernel: [    0.000000]       .init : 0xc1300000 - 0xc1500000   (2048 kB)
Aug 11 15:49:27 localhost kernel: [    0.000000]       .data : 0xc1500000 - 0xc163637c   (1241 kB)
Aug 11 15:49:27 localhost kernel: [    0.000000]        .bss : 0xc1638000 - 0xc16f2d18   ( 748 kB)
Aug 11 15:49:27 localhost kernel: [    0.000000] SLUB: HWalign=128, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Aug 11 15:49:27 localhost kernel: [    0.000000] Hierarchical RCU implementation.
Aug 11 15:49:27 localhost kernel: [    0.000000] 	Build-time adjustment of leaf fanout to 32.
Aug 11 15:49:27 localhost kernel: [    0.000000] NR_IRQS:16 nr_irqs:16 16
Aug 11 15:49:27 localhost kernel: [    0.000000] GIC: Using split EOI/Deactivate mode
Aug 11 15:49:27 localhost kernel: [    0.000000] GIC physical location is 0x1c81000
Aug 11 15:49:27 localhost kernel: [    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
Aug 11 15:49:27 localhost kernel: [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
Aug 11 15:49:27 localhost kernel: [    0.000008] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
Aug 11 15:49:27 localhost kernel: [    0.000021] Switching to timer-based delay loop, resolution 41ns
Aug 11 15:49:27 localhost kernel: [    0.000812] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns
Aug 11 15:49:27 localhost kernel: [    0.001603] Console: colour dummy device 80x30
Aug 11 15:49:27 localhost kernel: [    0.001651] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
Aug 11 15:49:27 localhost kernel: [    0.001668] pid_max: default: 32768 minimum: 301
Aug 11 15:49:27 localhost kernel: [    0.001892] Security Framework initialized
Aug 11 15:49:27 localhost kernel: [    0.001907] Yama: becoming mindful.
Aug 11 15:49:27 localhost kernel: [    0.002017] AppArmor: AppArmor initialized
Aug 11 15:49:27 localhost kernel: [    0.002210] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
Aug 11 15:49:27 localhost kernel: [    0.002221] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
Aug 11 15:49:27 localhost kernel: [    0.003175] CPU: Testing write buffer coherency: ok
Aug 11 15:49:27 localhost kernel: [    0.003227] ftrace: allocating 35547 entries in 105 pages
Aug 11 15:49:27 localhost kernel: [    0.078936] /cpus/cpu@0 missing clock-frequency property
Aug 11 15:49:27 localhost kernel: [    0.078970] /cpus/cpu@1 missing clock-frequency property
Aug 11 15:49:27 localhost kernel: [    0.078983] /cpus/cpu@2 missing clock-frequency property
Aug 11 15:49:27 localhost kernel: [    0.078998] /cpus/cpu@3 missing clock-frequency property
Aug 11 15:49:27 localhost kernel: [    0.079011] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
Aug 11 15:49:27 localhost kernel: [    0.079496] Setting up static identity map for 0x40300000 - 0x40300098
Aug 11 15:49:27 localhost kernel: [    0.085728] smp: Bringing up secondary CPUs ...
Aug 11 15:49:27 localhost kernel: [    0.096688] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
Aug 11 15:49:27 localhost kernel: [    0.107724] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002
Aug 11 15:49:27 localhost kernel: [    0.118638] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003
Aug 11 15:49:27 localhost kernel: [    0.118721] smp: Brought up 1 node, 4 CPUs
Aug 11 15:49:27 localhost kernel: [    0.118744] SMP: Total of 4 processors activated (192.00 BogoMIPS).
Aug 11 15:49:27 localhost kernel: [    0.118751] CPU: All CPU(s) started in HYP mode.
Aug 11 15:49:27 localhost kernel: [    0.118757] CPU: Virtualization extensions available.
Aug 11 15:49:27 localhost kernel: [    0.119853] devtmpfs: initialized
Aug 11 15:49:27 localhost kernel: [    0.124027] evm: security.selinux
Aug 11 15:49:27 localhost kernel: [    0.124039] evm: security.SMACK64
Aug 11 15:49:27 localhost kernel: [    0.124045] evm: security.SMACK64EXEC
Aug 11 15:49:27 localhost kernel: [    0.124050] evm: security.SMACK64TRANSMUTE
Aug 11 15:49:27 localhost kernel: [    0.124055] evm: security.SMACK64MMAP
Aug 11 15:49:27 localhost kernel: [    0.124060] evm: security.ima
Aug 11 15:49:27 localhost kernel: [    0.124065] evm: security.capability
Aug 11 15:49:27 localhost kernel: [    0.124619] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
Aug 11 15:49:27 localhost kernel: [    0.125100] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Aug 11 15:49:27 localhost kernel: [    0.125126] futex hash table entries: 1024 (order: 5, 131072 bytes)
Aug 11 15:49:27 localhost kernel: [    0.125672] pinctrl core: initialized pinctrl subsystem
Aug 11 15:49:27 localhost kernel: [    0.127172] NET: Registered protocol family 16
Aug 11 15:49:27 localhost kernel: [    0.127670] DMA: preallocated 256 KiB pool for atomic coherent allocations
Aug 11 15:49:27 localhost kernel: [    0.129793] cpuidle: using governor ladder
Aug 11 15:49:27 localhost kernel: [    0.129974] cpuidle: using governor menu
Aug 11 15:49:27 localhost kernel: [    0.130379] No ATAGs?
Aug 11 15:49:27 localhost kernel: [    0.130548] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
Aug 11 15:49:27 localhost kernel: [    0.130561] hw-breakpoint: maximum watchpoint size is 8 bytes.
Aug 11 15:49:27 localhost kernel: [    0.131449] Serial: AMBA PL011 UART driver
Aug 11 15:49:27 localhost kernel: [    0.154022] SCSI subsystem initialized
Aug 11 15:49:27 localhost kernel: [    0.154340] libata version 3.00 loaded.
Aug 11 15:49:27 localhost kernel: [    0.154723] vgaarb: loaded
Aug 11 15:49:27 localhost kernel: [    0.155107] usbcore: registered new interface driver usbfs
Aug 11 15:49:27 localhost kernel: [    0.155185] usbcore: registered new interface driver hub
Aug 11 15:49:27 localhost kernel: [    0.155279] usbcore: registered new device driver usb
Aug 11 15:49:27 localhost kernel: [    0.155787] pps_core: LinuxPPS API ver. 1 registered
Aug 11 15:49:27 localhost kernel: [    0.155795] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Aug 11 15:49:27 localhost kernel: [    0.155820] PTP clock support registered
Aug 11 15:49:27 localhost kernel: [    0.157106] Advanced Linux Sound Architecture Driver Initialized.
Aug 11 15:49:27 localhost kernel: [    0.158004] NetLabel: Initializing
Aug 11 15:49:27 localhost kernel: [    0.158015] NetLabel:  domain hash size = 128
Aug 11 15:49:27 localhost kernel: [    0.158020] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Aug 11 15:49:27 localhost kernel: [    0.158101] NetLabel:  unlabeled traffic allowed by default
Aug 11 15:49:27 localhost kernel: [    0.158867] clocksource: Switched to clocksource arch_sys_counter
Aug 11 15:49:27 localhost kernel: [    0.226788] VFS: Disk quotas dquot_6.6.0
Aug 11 15:49:27 localhost kernel: [    0.226966] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Aug 11 15:49:27 localhost kernel: [    0.227521] AppArmor: AppArmor Filesystem Enabled
Aug 11 15:49:27 localhost kernel: [    0.239698] NET: Registered protocol family 2
Aug 11 15:49:27 localhost kernel: [    0.240527] TCP established hash table entries: 4096 (order: 2, 16384 bytes)
Aug 11 15:49:27 localhost kernel: [    0.240596] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
Aug 11 15:49:27 localhost kernel: [    0.240660] TCP: Hash tables configured (established 4096 bind 4096)
Aug 11 15:49:27 localhost kernel: [    0.240789] UDP hash table entries: 256 (order: 1, 8192 bytes)
Aug 11 15:49:27 localhost kernel: [    0.240831] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
Aug 11 15:49:27 localhost kernel: [    0.241098] NET: Registered protocol family 1
Aug 11 15:49:27 localhost kernel: [    0.241139] PCI: CLS 0 bytes, default 128
Aug 11 15:49:27 localhost kernel: [    0.241665] Unpacking initramfs...
Aug 11 15:49:27 localhost kernel: [    4.790098] Freeing initrd memory: 6704K
Aug 11 15:49:27 localhost kernel: [    4.792469] audit: initializing netlink subsys (disabled)
Aug 11 15:49:27 localhost kernel: [    4.792813] audit: type=2000 audit(4.724:1): state=initialized audit_enabled=0 res=1
Aug 11 15:49:27 localhost kernel: [    4.793310] Initialise system trusted keyrings
Aug 11 15:49:27 localhost kernel: [    4.793563] workingset: timestamp_bits=14 max_order=17 bucket_order=3
Aug 11 15:49:27 localhost kernel: [    4.801976] zbud: loaded
Aug 11 15:49:27 localhost kernel: [    4.804493] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Aug 11 15:49:27 localhost kernel: [    4.805881] fuse init (API version 7.26)
Aug 11 15:49:27 localhost kernel: [    4.812197] Key type asymmetric registered
Aug 11 15:49:27 localhost kernel: [    4.812217] Asymmetric key parser 'x509' registered
Aug 11 15:49:27 localhost kernel: [    4.812547] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
Aug 11 15:49:27 localhost kernel: [    4.812748] io scheduler noop registered
Aug 11 15:49:27 localhost kernel: [    4.812758] io scheduler deadline registered
Aug 11 15:49:27 localhost kernel: [    4.813179] io scheduler cfq registered (default)
Aug 11 15:49:27 localhost kernel: [    4.822053] sun8i-h3-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver
Aug 11 15:49:27 localhost kernel: [    4.824368] sun8i-h3-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver
Aug 11 15:49:27 localhost kernel: [    4.833845] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Aug 11 15:49:27 localhost kernel: [    4.843120] console [ttyS0] disabled
Aug 11 15:49:27 localhost kernel: [    4.863333] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 32, base_baud = 1500000) is a U6_16550A
Aug 11 15:49:27 localhost kernel: [    5.590678] console [ttyS0] enabled
Aug 11 15:49:27 localhost kernel: [    5.615160] 1c28c00.serial: ttyS3 at MMIO 0x1c28c00 (irq = 33, base_baud = 1500000) is a U6_16550A
Aug 11 15:49:27 localhost kernel: [    5.625193] msm_serial: driver initialized
Aug 11 15:49:27 localhost kernel: [    5.641026] loop: module loaded
Aug 11 15:49:27 localhost kernel: [    5.647238] libphy: Fixed MDIO Bus: probed
Aug 11 15:49:27 localhost kernel: [    5.651385] tun: Universal TUN/TAP device driver, 1.6
Aug 11 15:49:27 localhost kernel: [    5.657207] PPP generic driver version 2.4.2
Aug 11 15:49:27 localhost kernel: [    5.661998] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 11 15:49:27 localhost kernel: [    5.668563] ehci-pci: EHCI PCI platform driver
Aug 11 15:49:27 localhost kernel: [    5.673066] ehci-orion: EHCI orion driver
Aug 11 15:49:27 localhost kernel: [    5.677172] ehci-exynos: EHCI EXYNOS driver
Aug 11 15:49:27 localhost kernel: [    5.681448] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Aug 11 15:49:27 localhost kernel: [    5.687753] ohci-pci: OHCI PCI platform driver
Aug 11 15:49:27 localhost kernel: [    5.692252] ohci-exynos: OHCI EXYNOS driver
Aug 11 15:49:27 localhost kernel: [    5.696540] uhci_hcd: USB Universal Host Controller Interface driver
Aug 11 15:49:27 localhost kernel: [    5.703473] mousedev: PS/2 mouse device common for all mice
Aug 11 15:49:27 localhost kernel: [    5.710386] sun6i-rtc 1f00000.rtc: rtc core: registered rtc-sun6i as rtc0
Aug 11 15:49:27 localhost kernel: [    5.717206] sun6i-rtc 1f00000.rtc: RTC enabled
Aug 11 15:49:27 localhost kernel: [    5.721903] i2c /dev entries driver
Aug 11 15:49:27 localhost kernel: [    5.727355] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0)
Aug 11 15:49:27 localhost kernel: [    5.735724] device-mapper: uevent: version 1.0.3
Aug 11 15:49:27 localhost kernel: [    5.740832] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
Aug 11 15:49:27 localhost kernel: [    5.749846] cpu cpu0: failed to get clock: -2
Aug 11 15:49:27 localhost kernel: [    5.754248] cpufreq-dt: probe of cpufreq-dt failed with error -2
Aug 11 15:49:27 localhost kernel: [    5.760561] sdhci: Secure Digital Host Controller Interface driver
Aug 11 15:49:27 localhost kernel: [    5.766749] sdhci: Copyright(c) Pierre Ossman
Aug 11 15:49:27 localhost kernel: [    5.772265] sunxi-mmc 1c0f000.mmc: Got CD GPIO
Aug 11 15:49:27 localhost kernel: [    5.814917] sunxi-mmc 1c0f000.mmc: base:0xe118d000 irq:23
Aug 11 15:49:27 localhost kernel: [    5.857956] mmc0: host does not support reading read-only switch, assuming write-enable
Aug 11 15:49:27 localhost kernel: [    5.862900] sunxi-mmc 1c11000.mmc: base:0xe1195000 irq:25
Aug 11 15:49:27 localhost kernel: [    5.863083] sdhci-pltfm: SDHCI platform and OF driver helper
Aug 11 15:49:27 localhost kernel: [    5.868814] sunxi-mmc 1c11000.mmc: smc 1 err, cmd 8, RTO !!
Aug 11 15:49:27 localhost kernel: [    5.872907] sunxi-mmc 1c11000.mmc: smc 1 err, cmd 55, RTO !!
Aug 11 15:49:27 localhost kernel: [    5.873732] sunxi-mmc 1c11000.mmc: smc 1 err, cmd 55, RTO !!
Aug 11 15:49:27 localhost kernel: [    5.874557] sunxi-mmc 1c11000.mmc: smc 1 err, cmd 55, RTO !!
Aug 11 15:49:27 localhost kernel: [    5.875381] sunxi-mmc 1c11000.mmc: smc 1 err, cmd 55, RTO !!
Aug 11 15:49:27 localhost kernel: [    5.905345] ledtrig-cpu: registered to indicate activity on CPUs
Aug 11 15:49:27 localhost kernel: [    5.907263] mmc0: new high speed SDHC card at address 0007
Aug 11 15:49:27 localhost kernel: [    5.908067] mmcblk0: mmc0:0007 SD32G 29.0 GiB 
Aug 11 15:49:27 localhost kernel: [    5.909683]  mmcblk0: p1 p2
Aug 11 15:49:27 localhost kernel: [    5.927745] NET: Registered protocol family 10
Aug 11 15:49:27 localhost kernel: [    5.938992] mmc1: new DDR MMC card at address 0001
Aug 11 15:49:27 localhost kernel: [    5.944877] mmcblk1: mmc1:0001 8WPD3R 7.28 GiB 
Aug 11 15:49:27 localhost kernel: [    5.950006] mmcblk1boot0: mmc1:0001 8WPD3R partition 1 4.00 MiB
Aug 11 15:49:27 localhost kernel: [    5.956708] mmcblk1boot1: mmc1:0001 8WPD3R partition 2 4.00 MiB
Aug 11 15:49:27 localhost kernel: [    5.960750] Segment Routing with IPv6
Aug 11 15:49:27 localhost kernel: [    5.960850] NET: Registered protocol family 17
Aug 11 15:49:27 localhost kernel: [    5.960926] Key type dns_resolver registered
Aug 11 15:49:27 localhost kernel: [    5.961155] ThumbEE CPU extension supported.
Aug 11 15:49:27 localhost kernel: [    5.961168] Registering SWP/SWPB emulation handler
Aug 11 15:49:27 localhost kernel: [    5.962105] registered taskstats version 1
Aug 11 15:49:27 localhost kernel: [    5.962174] Loading compiled-in X.509 certificates
Aug 11 15:49:27 localhost kernel: [    5.979937] Loaded X.509 cert 'Build time autogenerated kernel key: 8e9e223d98e7f9fbb5195a1ecac689afe51671e3'
Aug 11 15:49:27 localhost kernel: [    5.980114] zswap: loaded using pool lzo/zbud
Aug 11 15:49:27 localhost kernel: [    6.008940]  mmcblk1: p1 p2
Aug 11 15:49:27 localhost kernel: [    6.053879] Key type big_key registered
Aug 11 15:49:27 localhost kernel: [    6.057789] Key type trusted registered
Aug 11 15:49:27 localhost kernel: [    6.072332] Key type encrypted registered
Aug 11 15:49:27 localhost kernel: [    6.076393] AppArmor: AppArmor sha1 policy hashing enabled
Aug 11 15:49:27 localhost kernel: [    6.081897] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
Aug 11 15:49:27 localhost kernel: [    6.088353] evm: HMAC attrs: 0x1
Aug 11 15:49:27 localhost kernel: [    6.099950] sun6i-rtc 1f00000.rtc: setting system clock to 1970-01-01 00:00:10 UTC (10)
Aug 11 15:49:27 localhost kernel: [    6.108089] sr_init: No PMIC hook to init smartreflex
Aug 11 15:49:27 localhost kernel: [    6.113386] sr_init: platform driver register failed for SR
Aug 11 15:49:27 localhost kernel: [    6.119418] PM: Hibernation image not present or could not be loaded.
Aug 11 15:49:27 localhost kernel: [    6.119553] vcc3v0: disabling
Aug 11 15:49:27 localhost kernel: [    6.122524] vcc5v0: disabling
Aug 11 15:49:27 localhost kernel: [    6.125518] ALSA device list:
Aug 11 15:49:27 localhost kernel: [    6.128495]   No soundcards found.
Aug 11 15:49:27 localhost kernel: [    6.134484] Freeing unused kernel memory: 2048K
Aug 11 15:49:27 localhost kernel: [    6.219350] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.225450] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.227771] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.228275] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.228788] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.229268] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.229713] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.230287] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.230741] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.231276] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 11 15:49:27 localhost kernel: [    6.516919] random: fast init done
Aug 11 15:49:27 localhost kernel: [    6.706566] usbcore: registered new interface driver usb-storage
Aug 11 15:49:27 localhost kernel: [    8.671953] random: crng init done
Aug 11 15:49:27 localhost kernel: [   13.451019] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
Aug 11 15:49:27 localhost kernel: [   13.460826] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
Aug 11 15:49:27 localhost kernel: [   13.498084] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: errors=remount-ro
Aug 11 15:49:27 localhost kernel: [   13.668769] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
Aug 11 15:49:27 localhost kernel: [   13.678506] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
Aug 11 15:49:27 localhost kernel: [   13.719528] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
Aug 11 15:49:27 localhost kernel: [   23.678769] input: r_gpio_keys as /devices/platform/r_gpio_keys/input/input0
Aug 11 15:49:27 localhost kernel: [   23.767512] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq
Aug 11 15:49:27 localhost kernel: [   23.807063] sunxi-mmc 1c10000.mmc: base:0xe1388000 irq:24
Aug 11 15:49:27 localhost kernel: [   23.813304] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 8, RTO !!
Aug 11 15:49:27 localhost kernel: [   23.838919] mmc2: queuing unknown CIS tuple 0x80 (2 bytes)
Aug 11 15:49:27 localhost kernel: [   23.840541] mmc2: queuing unknown CIS tuple 0x80 (3 bytes)
Aug 11 15:49:27 localhost kernel: [   23.842183] mmc2: queuing unknown CIS tuple 0x80 (3 bytes)
Aug 11 15:49:27 localhost kernel: [   23.845346] mmc2: queuing unknown CIS tuple 0x80 (7 bytes)
Aug 11 15:49:27 localhost kernel: [   23.849304] mmc2: queuing unknown CIS tuple 0x81 (9 bytes)
Aug 11 15:49:27 localhost kernel: [   23.969547] mmc2: new high speed SDIO card at address 0001
Aug 11 15:49:27 localhost kernel: [   25.374206] usbcore: registered new interface driver brcmfmac
Aug 11 15:49:27 localhost kernel: [   26.217186] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null)
Aug 11 15:49:27 localhost kernel: [   26.613572] brcmfmac: brcmf_c_preinit_dcmds: Firmware version = wl0: May 27 2016 00:13:38 version 7.45.41.26 (r640327) FWID 01-df77e4a7
Aug 11 15:49:27 localhost kernel: [   26.642154] brcmfmac: brcmf_cfg80211_reg_notifier: not a ISO3166 code (0x30 0x30)
Aug 11 15:49:27 localhost kernel: [   31.914102] audit: type=1400 audit(1502466565.080:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1128 comm="apparmor_parser"
Aug 11 15:49:27 localhost kernel: [   31.915935] audit: type=1400 audit(1502466565.084:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1128 comm="apparmor_parser"
Aug 11 15:49:27 localhost kernel: [   31.922626] audit: type=1400 audit(1502466565.088:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1126 comm="apparmor_parser"
Aug 11 15:49:27 localhost kernel: [   31.925971] audit: type=1400 audit(1502466565.092:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1126 comm="apparmor_parser"
Aug 11 15:49:27 localhost kernel: [   31.929019] audit: type=1400 audit(1502466565.096:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1126 comm="apparmor_parser"
Aug 11 15:49:27 localhost kernel: [   31.931964] audit: type=1400 audit(1502466565.100:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1126 comm="apparmor_parser"
Aug 11 15:49:27 localhost kernel: [   33.477857] new mount options do not match the existing superblock, will be ignored
Aug 11 15:49:27 localhost systemd[1]: Mounted Debug File System.
Aug 11 15:49:27 localhost systemd[1]: Mounted FUSE Control File System.
Aug 11 15:49:27 localhost systemd[1]: Mounted POSIX Message Queue File System.
Aug 11 15:49:27 localhost systemd[1]: Started Remount Root and Kernel File Systems.
Aug 11 15:49:27 localhost systemd[1]: Started Create Static Device Nodes in /dev.
Aug 11 15:49:27 localhost systemd[1]: Started Nameserver information manager.
Aug 11 15:49:27 localhost loadkeys[745]: Loading /etc/console-setup/cached.kmap.gz
Aug 11 15:49:27 localhost systemd[1]: Started Set console keymap.
Aug 11 15:49:27 localhost systemd[1]: Reached target Network (Pre).
Aug 11 15:49:27 localhost systemd[1]: Starting udev Kernel Device Manager...
Aug 11 15:49:27 localhost systemd[1]: Starting udev Coldplug all Devices...
Aug 11 15:49:27 localhost systemd[1]: Reached target Local File Systems (Pre).
Aug 11 15:49:27 localhost systemd[1]: Mounting /media...
Aug 11 15:49:27 localhost systemd[1]: Mounting /tmp...
Aug 11 15:49:27 localhost systemd[1]: Mounting /mnt...
Aug 11 15:49:27 localhost systemd[1]: var-lib-sudo.mount: Directory /var/lib/sudo to mount over is not empty, mounting anyway.
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/sudo...
Aug 11 15:49:27 localhost systemd-udevd[777]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Aug 11 15:49:27 localhost systemd[1]: Mounted /tmp.
Aug 11 15:49:27 localhost systemd[1]: Mounted /media.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/sudo.
Aug 11 15:49:27 localhost systemd[1]: Mounted /mnt.
Aug 11 15:49:27 localhost systemd[1]: Started udev Kernel Device Manager.
Aug 11 15:49:27 localhost systemd[1]: Starting Network Service...
Aug 11 15:49:27 localhost systemd[1]: Started udev Coldplug all Devices.
Aug 11 15:49:27 localhost systemd-networkd[816]: Enumeration completed
Aug 11 15:49:27 localhost systemd[1]: Started Network Service.
Aug 11 15:49:27 localhost systemd[1]: Starting Update resolvconf for networkd DNS...
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost systemd[1]: Found device /dev/ttyS0.
Aug 11 15:49:27 localhost systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost systemd[1]: dev-disk-by\x2dpath-platform\x2d1c11000.mmc.device: Dev dev-disk-by\x2dpath-platform\x2d1c11000.mmc.device appeared twice with different sysfs paths /sys/devices/platform/soc/1c11000.mmc/mmc_host/mmc1/mmc1:0001/block/mmcblk1 and /sys/devices/platform/soc/1c11000.mmc/mmc_host/mmc1/mmc1:0001/block/mmcblk1/mmcblk1boot0
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/dbus...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/snap...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/misc...
Aug 11 15:49:27 localhost systemd[1]: var-lib-apparmor.mount: Directory /var/lib/apparmor to mount over is not empty, mounting anyway.
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/apparmor...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/tmp...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/console-conf...
Aug 11 15:49:27 localhost systemd[1]: var-lib-systemd-random\x2dseed.mount: Failed to check directory /var/lib/systemd/random-seed: Not a directory
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/systemd/random-seed...
Aug 11 15:49:27 localhost systemd[1]: Mounting /snap...
Aug 11 15:49:27 localhost systemd[1]: var-lib-snapd.mount: Directory /var/lib/snapd to mount over is not empty, mounting anyway.
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/snapd...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/waagent...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/cloud...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/dhcp...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/systemd/rfkill...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/logrotate...
Aug 11 15:49:27 localhost systemd[1]: Mounting /home...
Aug 11 15:49:27 localhost systemd[1]: var-lib-initramfs\x2dtools.mount: Directory /var/lib/initramfs-tools to mount over is not empty, mounting anyway.
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/initramfs-tools...
Aug 11 15:49:27 localhost systemd[1]: var-log.mount: Directory /var/log to mount over is not empty, mounting anyway.
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/log...
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/cache/apparmor...
Aug 11 15:49:27 localhost systemd[1]: Mounting /root...
Aug 11 15:49:27 localhost systemd[1]: var-lib-extrausers.mount: Directory /var/lib/extrausers to mount over is not empty, mounting anyway.
Aug 11 15:49:27 localhost systemd[1]: Mounting /var/lib/extrausers...
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost systemd[1]: Mounted /home.
Aug 11 15:49:27 localhost systemd[1]: Mounted /snap.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/snap.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/cloud.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/dbus.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/dhcp.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/logrotate.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/log.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/cache/apparmor.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/apparmor.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/tmp.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/initramfs-tools.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/misc.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/waagent.
Aug 11 15:49:27 localhost systemd[1]: Mounted /root.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/extrausers.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/snapd.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/systemd/random-seed.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/systemd/rfkill.
Aug 11 15:49:27 localhost systemd[1]: Mounted /var/lib/console-conf.
Aug 11 15:49:27 localhost systemd[1]: Found device /dev/mmcblk0p1.
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost systemd[1]: Starting File System Check on /dev/mmcblk0p1...
Aug 11 15:49:27 localhost systemd[1]: Starting Load/Save RF Kill Switch Status...
Aug 11 15:49:27 localhost systemd[1]: Starting Load/Save Random Seed...
Aug 11 15:49:27 localhost systemd[1]: Starting Flush Journal to Persistent Storage...
Aug 11 15:49:27 localhost systemd[1]: Started Load/Save RF Kill Switch Status.
Aug 11 15:49:27 localhost systemd[1]: Started Load/Save Random Seed.
Aug 11 15:49:27 localhost systemd[1]: Started File System Check Daemon to report status.
Aug 11 15:49:27 localhost systemd[1]: Started Flush Journal to Persistent Storage.
Aug 11 15:49:27 localhost systemd-fsck[1036]: fsck.fat 3.0.28 (2015-05-16)
Aug 11 15:49:27 localhost systemd-fsck[1036]: /dev/mmcblk0p1: 529 files, 62262/258078 clusters
Aug 11 15:49:27 localhost systemd[1]: Started File System Check on /dev/mmcblk0p1.
Aug 11 15:49:27 localhost systemd[1]: Mounting /boot/uboot...
Aug 11 15:49:27 localhost systemd[1]: Mounted /boot/uboot.
Aug 11 15:49:27 localhost systemd[1]: Reached target Local File Systems.
Aug 11 15:49:27 localhost systemd[1]: Starting LSB: AppArmor initialization...
Aug 11 15:49:27 localhost systemd[1]: Starting Create Volatile Files and Directories...
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost systemd[1]: Starting Set console font and keymap...
Aug 11 15:49:27 localhost systemd-tmpfiles[1050]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Aug 11 15:49:27 localhost systemd[1]: Started Create Volatile Files and Directories.
Aug 11 15:49:27 localhost setupcon[1054]: /etc/console-setup is not writable. No files will be saved there.
Aug 11 15:49:27 localhost systemd[1]: Starting Network Time Synchronization...
Aug 11 15:49:27 localhost systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Aug 11 15:49:27 localhost systemd[1]: Started Update UTMP about System Boot/Shutdown.
Aug 11 15:49:27 localhost apparmor[1049]:  * Starting AppArmor profiles
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost systemd[1]: Started Network Time Synchronization.
Aug 11 15:49:27 localhost systemd[1]: Reached target System Time Synchronized.
Aug 11 15:49:27 localhost systemd[1]: Started Set console font and keymap.
Aug 11 15:49:27 localhost systemd[1]: Created slice system-getty.slice.
Aug 11 15:49:27 localhost apparmor[1049]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost apparmor[1049]:    ...done.
Aug 11 15:49:27 localhost systemd[1]: Started LSB: AppArmor initialization.
Aug 11 15:49:27 localhost systemd[1]: Reached target System Initialization.
Aug 11 15:49:27 localhost systemd[1]: Starting Socket activation for snappy daemon.
Aug 11 15:49:27 localhost systemd[1]: Listening on D-Bus System Message Bus Socket.
Aug 11 15:49:27 localhost systemd[1]: Started Timer to automatically refresh installed snaps.
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost systemd[1]: Started Timer to automatically fetch and run repair assertions.
Aug 11 15:49:27 localhost systemd[1]: Started Daily Cleanup of Temporary Directories.
Aug 11 15:49:27 localhost systemd[1]: Reached target Timers.
Aug 11 15:49:27 localhost systemd[1]: Starting Raise network interfaces...
Aug 11 15:49:27 localhost systemd[1]: Listening on Socket activation for snappy daemon.
Aug 11 15:49:27 localhost systemd[1]: Reached target Sockets.
Aug 11 15:49:27 localhost systemd[1]: Reached target Basic System.
Aug 11 15:49:27 localhost systemd[1]: Starting Permit User Sessions...
Aug 11 15:49:27 localhost systemd[1]: Started Cgroup management daemon.
Aug 11 15:49:27 localhost systemd[1]: Started Regular background program processing daemon.
Aug 11 15:49:27 localhost systemd[1]: Starting Ubuntu FAN network setup...
Aug 11 15:49:27 localhost systemd[1]: Starting Login Service...
Aug 11 15:49:27 localhost systemd[1]: Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
Aug 11 15:49:27 localhost systemd[1]: Starting Generate sshd host keys...
Aug 11 15:49:27 localhost systemd[1]: Starting System Logging Service...
Aug 11 15:49:27 localhost systemd[1]: Started D-Bus System Message Bus.
Aug 11 15:49:27 localhost cron[1158]: (CRON) INFO (pidfile fd = 3)
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost cron[1158]: (CRON) INFO (Running @reboot jobs)
Aug 11 15:49:27 localhost dbus[1167]: [system] AppArmor D-Bus mediation is enabled
Aug 11 15:49:27 localhost systemd[1]: Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
Aug 11 15:49:27 localhost systemd[1]: Starting Automatically repair incorrect owner/permissions on core devices...
Aug 11 15:49:27 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:27 localhost systemd[1]: Started System Logging Service.
Aug 11 15:49:27 localhost systemd[1]: Started Permit User Sessions.
Aug 11 15:49:27 localhost systemd[1]: Started Ubuntu FAN network setup.
Aug 11 15:49:27 localhost systemd[1]: Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
Aug 11 15:49:27 localhost systemd[1]: Starting Set console scheme...
Aug 11 15:49:27 localhost systemd[1]: Started Login Service.
Aug 11 15:49:27 localhost systemd[1]: Started Raise network interfaces.
Aug 11 15:49:27 localhost systemd[1]: Reached target Network.
Aug 11 15:49:27 localhost systemd[1]: Starting /etc/rc.local Compatibility...
Aug 11 15:49:27 localhost systemd[1]: Started /etc/rc.local Compatibility.
Aug 11 15:49:27 localhost systemd[1]: Started Getty on tty1.
Aug 11 15:49:27 localhost systemd[1]: Started Serial Getty on ttyS0.
Aug 11 15:49:27 localhost systemd[1]: Reached target Login Prompts.
Aug 11 15:49:28 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:28 localhost systemd[1]: Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
Aug 11 15:49:28 localhost systemd[1]: Started Set console scheme.
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/etc/cloud' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/etc/cloud/cloud-init.disabled' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/snaps' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/snaps/core_2639.snap' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/snaps/linux-generic-allwinner_5.snap' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/assertions' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/assertions/model' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/assertions/NP2Di_FUqsG5iH617Kprc3y8juQU7SXZYo74v-xrbUrJTTJBhPuEA51klU3Puwqd.snap-revision' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/assertions/4AxEOV2aA_FbvUMCokF3FpTXjWanmpyGGFjAu6rjD0H_GLziWyKV7R7g7TffQeuV.snap-revision' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/assertions/16,vvs4L387pDB9dvc9emQgIICUvLRfCObi.snap-declaration' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/assertions/BWDEoaqyr25nF5SNCvEv2v7QnM9QsfCc0PBMYD_i2NGSQ32EF2d4D0hqUel3m8ul.account-key' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/assertions/QfOqF7d2M1Pk2O0SbEKqTdB9Ry2aI0BP.account' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/assertions/QRKsVytYMZrjM3e_JdXGLfKXwCAHs1xjdfL7vNGWksqMLW7y5oM2XL27vFqKoFyv.account-key' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/assertions/16,99T7MUlRhtI3U0QFgl5mXXESAiSwt776.snap-declaration' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/snaps' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/snaps/nanopi-air_x1.snap' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/snaps/core_2639.snap' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/snaps/linux-generic-allwinner_5.snap' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/var/lib/snapd/seed/seed.yaml' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/writable/system-data' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/writable/system-data/var' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/writable/system-data/var/lib' from 1000:1000 to root:root
Aug 11 15:49:28 localhost snapd.core-fixup.sh[1199]: changed ownership of '/writable/system-data/boot' from 1000:1000 to root:root
Aug 11 15:49:29 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:29 localhost snapd.core-fixup.sh[1199]: changed ownership of '/writable/system-data/etc' from 1000:1000 to root:root
Aug 11 15:49:29 localhost sshd-host-keygen[1165]: Creating SSH2 RSA key; this may take some time ...
Aug 11 15:49:29 localhost sshd-host-keygen[1165]: 2048 SHA256:0K9c9doasYsgPT2QO1Xsv3LgPUtuACHwqmb6rj3EhAU root@localhost.localdomain (RSA)
Aug 11 15:49:30 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:32 localhost sh[821]: message repeated 2 times: [ sed: can't read /run/systemd/netif/leases/*: No such file or directory]
Aug 11 15:49:32 localhost systemd[1]: Started Automatically repair incorrect owner/permissions on core devices.
Aug 11 15:49:32 localhost systemd[1]: Starting Snappy daemon...
Aug 11 15:49:32 localhost systemd[1]: Created slice system-serial\x2dconsole\x2dconf.slice.
Aug 11 15:49:32 localhost systemd[1]: Started Ubuntu Core Firstboot Configuration ttyS0.
Aug 11 15:49:32 localhost systemd[1]: Created slice system-console\x2dconf.slice.
Aug 11 15:49:33 localhost systemd[1]: Started Ubuntu Core Firstboot Configuration tty1.
Aug 11 15:49:33 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:34 localhost sshd-host-keygen[1165]: Creating SSH2 DSA key; this may take some time ...
Aug 11 15:49:34 localhost sshd-host-keygen[1165]: 1024 SHA256:Wvt6Kkg1+mY9m13LyNiSQGHDTV6nsLina3zdhfUEiGs root@localhost.localdomain (DSA)
Aug 11 15:49:34 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:36 localhost sh[821]: message repeated 2 times: [ sed: can't read /run/systemd/netif/leases/*: No such file or directory]
Aug 11 15:49:36 localhost sshd-host-keygen[1165]: Creating SSH2 ECDSA key; this may take some time ...
Aug 11 15:49:36 localhost sshd-host-keygen[1165]: 256 SHA256:RzvnePom8KaX0+0T0CmRhurQL+TnpPjjj4csnhp8T8s root@localhost.localdomain (ECDSA)
Aug 11 15:49:37 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:38 localhost systemd[1]: Stopping Getty on tty1...
Aug 11 15:49:38 localhost systemd[1]: Stopping Serial Getty on ttyS0...
Aug 11 15:49:38 localhost systemd[1]: Stopped Serial Getty on ttyS0.
Aug 11 15:49:38 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:38 localhost systemd[1]: Stopped Getty on tty1.
Aug 11 15:49:38 localhost sshd-host-keygen[1165]: Creating SSH2 ED25519 key; this may take some time ...
Aug 11 15:49:38 localhost sshd-host-keygen[1165]: 256 SHA256:Om/v+unX/wkn/oJaHeHRR+tX9m7k/40kS+eyOi09+xc root@localhost.localdomain (ED25519)
Aug 11 15:49:39 localhost systemd[1]: Started Generate sshd host keys.
Aug 11 15:49:39 localhost systemd[1]: Starting OpenBSD Secure Shell server...
Aug 11 15:49:39 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:39 localhost snapd[1297]: 2017/08/11 15:49:39.662967 daemon.go:258: started snapd/2.27+git312.bf017de~ubuntu16.04.1 (series 16) ubuntu-core/16 (armhf) linux/4.11.0-13-generic.
Aug 11 15:49:39 localhost systemd[1]: Started Snappy daemon.
Aug 11 15:49:39 localhost systemd[1]: Starting Auto import assertions from block devices...
Aug 11 15:49:39 localhost systemd[1]: Started Auto import assertions from block devices.
Aug 11 15:49:39 localhost systemd[1]: Started OpenBSD Secure Shell server.
Aug 11 15:49:39 localhost systemd[1]: Reached target Multi-User System.
Aug 11 15:49:39 localhost systemd[1]: Reached target Graphical Interface.
Aug 11 15:49:39 localhost systemd[1]: Starting Update UTMP about System Runlevel Changes...
Aug 11 15:49:40 localhost systemd[1]: Started Update UTMP about System Runlevel Changes.
Aug 11 15:49:40 localhost sh[821]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Aug 11 15:49:46 localhost sh[821]: message repeated 6 times: [ sed: can't read /run/systemd/netif/leases/*: No such file or directory]
Aug 11 15:49:47 localhost systemd[1]: Started Update resolvconf for networkd DNS.
Aug 11 15:49:47 localhost systemd[1]: Startup finished in 18.210s (kernel) + 36.288s (userspace) = 54.498s.
Aug 11 15:51:19 localhost systemd[1]: Reloading.
Aug 11 15:51:19 localhost rsyslogd-2007: action 'action 10' suspended, next retry is Fri Aug 11 15:51:49 2017 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Aug 11 15:51:20 localhost systemd[1]: Reloading.
Aug 11 15:51:20 localhost systemd[1]: Mounting Mount unit for core...
Aug 11 15:51:20 localhost systemd-udevd[777]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Aug 11 15:51:20 localhost systemd[1]: Mounted Mount unit for core.
Aug 11 15:51:24 localhost kernel: [  151.753687] audit: type=1400 audit(1502466684.920:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.core.hook.configure" pid=1507 comm="apparmor_parser"
Aug 11 15:51:26 localhost kernel: [  152.955614] audit: type=1400 audit(1502466686.124:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.core.hook.configure" pid=1514 comm="apparmor_parser"
Aug 11 15:51:36 localhost systemd[1]: Reloading.
Aug 11 15:51:37 localhost systemd[1]: Reloading.
Aug 11 15:51:37 localhost systemd[1]: Mounting Mount unit for linux-generic-allwinner...
Aug 11 15:51:37 localhost systemd-udevd[777]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Aug 11 15:51:37 localhost systemd[1]: Mounted Mount unit for linux-generic-allwinner.
Aug 11 15:51:42 localhost snapd[1297]: 2017/08/11 15:51:42.261172 devicestate.go:166: installing unasserted gadget "nanopi-air"
Aug 11 15:51:42 localhost systemd[1]: Reloading.
Aug 11 15:51:42 localhost systemd[1]: Reloading.
Aug 11 15:51:43 localhost systemd[1]: Mounting Mount unit for nanopi-air...
Aug 11 15:51:43 localhost systemd-udevd[777]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Aug 11 15:51:43 localhost systemd[1]: Mounted Mount unit for nanopi-air.
Aug 11 15:51:59 localhost kernel: [  186.048360] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.054327] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.062750] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.068712] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.077112] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.083062] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.089398] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.097622] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.106024] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.111972] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.120359] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.126308] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.134697] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.140650] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.146988] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.155227] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.163631] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.169582] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.177988] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.183932] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.192322] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.198267] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.204609] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.212845] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.221185] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.227134] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.235524] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.241465] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.249858] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.255809] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.262149] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.270389] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.278745] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.284701] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.293100] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.299049] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.306942] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.312891] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.319227] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.327471] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.335847] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.341799] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.350193] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.356139] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.364542] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.370484] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.376827] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.385073] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.393462] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.399411] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.406961] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.412904] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.421302] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.427254] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.433607] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.441852] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.450237] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.456187] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.464559] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.470502] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.478946] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.484893] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.491227] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.499477] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.507824] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.513770] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.522160] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.528110] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.536484] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.542427] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.548792] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.557025] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.565436] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.571388] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.578982] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.584926] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.593348] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.599297] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.605645] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.613892] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.622279] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.628229] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.636609] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.642548] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.650945] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.656889] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.656951] brcmfmac: brcmf_sdio_bus_rxctl: resumed on timeout
Aug 11 15:51:59 localhost kernel: [  186.669061] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.677428] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.683375] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.690962] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.696905] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.705303] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.711248] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.717597] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.725841] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.734201] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.740149] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.748527] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.754472] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.762851] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.768795] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.775153] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:51:59 localhost kernel: [  186.783410] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:51:59 localhost kernel: [  186.791787] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.797738] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.806131] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.812070] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:51:59 localhost kernel: [  186.820480] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:51:59 localhost kernel: [  186.826419] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  186.832760] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  186.841003] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  186.849390] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  186.855342] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  186.862941] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  186.868882] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  186.877274] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  186.883222] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  186.889561] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  186.897808] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  186.906207] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  186.912160] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  186.920537] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  186.926477] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  186.934915] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  186.940854] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  186.947195] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  186.955444] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  186.963816] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  186.969767] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  186.978152] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  186.984095] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  186.992507] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  186.998456] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.004792] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.013034] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.021426] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.027375] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.034942] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.040881] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.049280] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.055228] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.061577] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.069826] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.078217] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.084168] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.092551] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.098491] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.106950] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.112894] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.119231] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.127486] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.135863] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.141813] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.150206] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.156149] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.164561] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.170498] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.176842] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.185069] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.193458] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.199407] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.206938] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.212879] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.221272] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.227219] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.233565] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.241806] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.250199] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.256149] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.264522] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.270460] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.278844] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.284789] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.291136] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.299389] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.307768] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.313716] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.322109] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.328054] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.336459] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.342397] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.348729] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.356973] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.365372] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.371320] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.378940] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.384881] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.393284] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.399232] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.405581] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.413830] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.422224] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.428177] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.436563] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.442501] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.450910] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.456849] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.463183] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.471430] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.479789] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.485738] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.494147] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.500100] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.508502] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.514450] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.520813] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.529043] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.537413] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.543362] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.550961] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.556906] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.565275] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.571230] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.577557] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.585791] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.594183] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.600133] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.608530] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.614471] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.622929] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.628875] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.635212] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.643471] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.651855] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.657805] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.666198] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.672140] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.680544] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.686486] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.692840] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.701074] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.709475] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.715426] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.722917] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.728862] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.737239] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.743194] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.749534] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.757750] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:00 localhost kernel: [  187.766142] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.772092] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.780501] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.786440] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.794819] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:00 localhost kernel: [  187.800769] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:00 localhost kernel: [  187.807114] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:00 localhost kernel: [  187.815360] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  187.823776] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  187.829726] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  187.838118] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  187.844066] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  187.852472] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  187.858413] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  187.864743] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  187.872985] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  187.881375] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  187.887326] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  187.894944] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  187.900882] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  187.909272] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  187.915219] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  187.921576] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  187.929825] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  187.938224] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  187.944179] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  187.952558] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  187.958498] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  187.966932] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  187.972873] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  187.979222] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  187.987473] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  187.995852] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.001800] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.010190] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.016132] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.024532] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.030477] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.036809] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.045051] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.053442] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.059390] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.066942] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.072887] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.081279] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.087228] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.093578] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.101823] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.110255] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.116197] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.124573] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.130515] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.138935] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.144874] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.151210] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.159469] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.167821] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.173770] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.182167] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.188138] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.196562] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.202515] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.208866] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.217106] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.225489] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.231448] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.238959] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.244908] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.253312] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.259256] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.265619] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.273868] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.282244] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.288196] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.296576] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.302522] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.310931] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.316869] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.323201] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.331454] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.339833] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.345782] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.354174] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.360116] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.368512] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.374451] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.380798] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.389044] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.397443] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.403392] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.410939] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.416879] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.425274] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.431223] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.437580] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.445829] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.454229] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.460182] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.468572] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.474509] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.482933] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.488870] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.495203] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.503454] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.511827] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.517773] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.526167] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.532110] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.540513] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.546455] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.552790] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.561034] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.569434] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.575386] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.582941] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.588877] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.597275] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.603225] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.609573] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.617821] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.626214] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.632165] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.640538] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.646477] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.654916] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.660856] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.667195] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.675440] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.683811] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.689761] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.698156] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.704100] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.712510] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.718453] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.724782] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.733031] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.741422] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.747374] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.754938] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.760880] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.769256] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.775203] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.781550] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:01 localhost kernel: [  188.789792] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:01 localhost kernel: [  188.798189] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.804140] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.812522] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:01 localhost kernel: [  188.818458] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:01 localhost kernel: [  188.826841] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  188.832786] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  188.839138] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  188.847389] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  188.855771] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  188.861718] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  188.870114] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  188.876056] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  188.884459] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  188.890401] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  188.896736] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  188.904986] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  188.913388] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  188.919338] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  188.926938] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  188.932876] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  188.941270] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  188.947218] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  188.953565] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  188.961816] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  188.970215] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  188.976167] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  188.984547] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  188.990484] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  188.998921] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.004863] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.011208] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.019455] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.027829] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.033778] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.042172] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.048124] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.056513] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.062461] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.068814] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.077038] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.085427] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.091379] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.098915] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.104862] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.113259] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.119209] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.125557] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.133787] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.142199] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.148151] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.156552] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.162491] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.170928] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.176866] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.183206] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.191458] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.199807] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.205752] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.214154] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.220106] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.220181] brcmfmac: brcmf_sdio_bus_rxctl: resumed on timeout
Aug 11 15:52:02 localhost kernel: [  189.220191] brcmfmac: brcmf_dongle_scantime: Scan assoc time error (-110)
Aug 11 15:52:02 localhost kernel: [  189.241134] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.247085] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.253422] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.261790] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.267733] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.276120] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.282067] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.290449] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.296400] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.302762] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.311027] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.319739] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.325691] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.334106] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.340055] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.348444] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.354389] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.360737] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.368981] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.377385] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.383338] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.390943] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.396885] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.405279] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.411226] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.417576] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.425800] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.434190] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.440138] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.448517] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.454453] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.462840] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.468784] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.475141] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.483388] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.491766] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.497716] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.506119] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.512060] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.520469] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.526416] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.532752] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.540997] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.549390] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.555340] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.562939] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.568880] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.577279] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.583230] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.589586] brcmfmac: brcmf_sdiod_regrw_helper: failed to read data F1@0x0a020, err: -110
Aug 11 15:52:02 localhost kernel: [  189.597831] brcmfmac: brcmf_sdio_dpc: failed backplane access over SDIO, halting operation
Aug 11 15:52:02 localhost kernel: [  189.606227] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Aug 11 15:52:02 localhost kernel: [  189.612174] sunxi-mmc 1c10000.mmc: data error, sending stop command
Aug 11 15:52:02 localhost kernel: [  189.620559] sunxi-mmc 1c10000.mmc: smc 2 err, cmd 53, RD DCE !!
Download as text