-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.d
3373 lines (3373 loc) · 250 KB
/
log.d
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
[ 149.682695] [python3: anon_vma_fork] --======================before-376, vma: 000000008bf9233b, pvma:00000000b22d6aa5
[ 149.682695] [ python3:c9c ] we are following, vma: 000000008bf9233b, anon_vma:000000002ba26207
[ 149.682696] [python3: anon_vma_fork] --======================end -379, vma: 000000008bf9233b, pvma:00000000b22d6aa5
[ 149.682698] [python3: anon_vma_fork] --======================000-343, vma: 000000002b7674af, pvma:000000003b881f65
[ 149.682699] [anon_vma_clone] --- 288, i: 0
[ 149.682700] [ python3:c9c ] we are first, vma: 000000002b7674af, anon_vma:00000000d3e35bb5
[ 149.682701] [python3: anon_vma_fork] --======================before-376, vma: 000000002b7674af, pvma:000000003b881f65
[ 149.682702] [ python3:c9c ] we are following, vma: 000000002b7674af, anon_vma:00000000f0a2e145
[ 149.682703] [python3: anon_vma_fork] --======================end -379, vma: 000000002b7674af, pvma:000000003b881f65
[ 149.682705] [python3: anon_vma_fork] --======================000-343, vma: 000000004883d414, pvma:000000008e13211d
[ 149.682705] [anon_vma_clone] --- 288, i: 0
[ 149.682706] [ python3:c9c ] we are first, vma: 000000004883d414, anon_vma:0000000056d39d5d
[ 149.682707] [python3: anon_vma_fork] --======================before-376, vma: 000000004883d414, pvma:000000008e13211d
[ 149.682708] [ python3:c9c ] we are following, vma: 000000004883d414, anon_vma:000000000f3720f7
[ 149.682709] [python3: anon_vma_fork] --======================end -379, vma: 000000004883d414, pvma:000000008e13211d
[ 149.682711] [python3: anon_vma_fork] --======================000-343, vma: 0000000097f2641d, pvma:0000000068eee2cd
[ 149.682712] [anon_vma_clone] --- 288, i: 0
[ 149.682712] [ python3:c9c ] we are first, vma: 0000000097f2641d, anon_vma:0000000056d39d5d
[ 149.682713] [python3: anon_vma_fork] --======================before-376, vma: 0000000097f2641d, pvma:0000000068eee2cd
[ 149.682714] [ python3:c9c ] we are following, vma: 0000000097f2641d, anon_vma:0000000038caa039
[ 149.682715] [python3: anon_vma_fork] --======================end -379, vma: 0000000097f2641d, pvma:0000000068eee2cd
[ 149.682717] [python3: anon_vma_fork] --======================000-343, vma: 000000000c290460, pvma:000000002f811815
[ 149.682718] [anon_vma_clone] --- 288, i: 0
[ 149.682719] [ python3:c9c ] we are first, vma: 000000000c290460, anon_vma:00000000339f8fc7
[ 149.682720] [python3: anon_vma_fork] --======================before-376, vma: 000000000c290460, pvma:000000002f811815
[ 149.682721] [ python3:c9c ] we are following, vma: 000000000c290460, anon_vma:000000008bc2d6b9
[ 149.682722] [python3: anon_vma_fork] --======================end -379, vma: 000000000c290460, pvma:000000002f811815
[ 149.682723] [python3: anon_vma_fork] --======================000-343, vma: 0000000070083e58, pvma:000000006c673050
[ 149.682724] [anon_vma_clone] --- 288, i: 0
[ 149.682725] [ python3:c9c ] we are first, vma: 0000000070083e58, anon_vma:00000000339f8fc7
[ 149.682730] [python3: anon_vma_fork] --======================before-376, vma: 0000000070083e58, pvma:000000006c673050
[ 149.682731] [ python3:c9c ] we are following, vma: 0000000070083e58, anon_vma:00000000b5b30d69
[ 149.682732] [python3: anon_vma_fork] --======================end -379, vma: 0000000070083e58, pvma:000000006c673050
[ 149.682733] [python3: anon_vma_fork] --======================000-343, vma: 00000000afedfa46, pvma:00000000a869255e
[ 149.682734] [anon_vma_clone] --- 288, i: 0
[ 149.682735] [ python3:c9c ] we are first, vma: 00000000afedfa46, anon_vma:00000000f4086fa3
[ 149.682736] [python3: anon_vma_fork] --======================before-376, vma: 00000000afedfa46, pvma:00000000a869255e
[ 149.682737] [ python3:c9c ] we are following, vma: 00000000afedfa46, anon_vma:000000002fefa2df
[ 149.682738] [python3: anon_vma_fork] --======================end -379, vma: 00000000afedfa46, pvma:00000000a869255e
[ 149.682740] [python3: anon_vma_fork] --======================000-343, vma: 00000000a9582a01, pvma:00000000e074b65d
[ 149.682740] [anon_vma_clone] --- 288, i: 0
[ 149.682741] [ python3:c9c ] we are first, vma: 00000000a9582a01, anon_vma:00000000f4086fa3
[ 149.682742] [python3: anon_vma_fork] --======================before-376, vma: 00000000a9582a01, pvma:00000000e074b65d
[ 149.682743] [ python3:c9c ] we are following, vma: 00000000a9582a01, anon_vma:000000009e33a0e8
[ 149.682744] [python3: anon_vma_fork] --======================end -379, vma: 00000000a9582a01, pvma:00000000e074b65d
[ 149.682745] [python3: anon_vma_fork] --======================000-343, vma: 00000000e70a251c, pvma:00000000d40ab19e
[ 149.682746] [anon_vma_clone] --- 288, i: 0
[ 149.682747] [ python3:c9c ] we are first, vma: 00000000e70a251c, anon_vma:00000000a720773a
[ 149.682749] [python3: anon_vma_fork] --======================before-376, vma: 00000000e70a251c, pvma:00000000d40ab19e
[ 149.682750] [ python3:c9c ] we are following, vma: 00000000e70a251c, anon_vma:00000000d04bebf2
[ 149.682751] [python3: anon_vma_fork] --======================end -379, vma: 00000000e70a251c, pvma:00000000d40ab19e
[ 149.682753] [python3: anon_vma_fork] --======================000-343, vma: 00000000dbdae149, pvma:00000000642cb9aa
[ 149.682753] [anon_vma_clone] --- 288, i: 0
[ 149.682754] [ python3:c9c ] we are first, vma: 00000000dbdae149, anon_vma:0000000047947769
[ 149.682755] [python3: anon_vma_fork] --======================before-376, vma: 00000000dbdae149, pvma:00000000642cb9aa
[ 149.682756] [ python3:c9c ] we are following, vma: 00000000dbdae149, anon_vma:00000000f09877e6
[ 149.682757] [python3: anon_vma_fork] --======================end -379, vma: 00000000dbdae149, pvma:00000000642cb9aa
[ 149.682761] [python3: anon_vma_fork] --======================000-343, vma: 0000000023c52f32, pvma:00000000de55d437
[ 149.682762] [anon_vma_clone] --- 288, i: 0
[ 149.682762] [ python3:c9c ] we are first, vma: 0000000023c52f32, anon_vma:0000000047947769
[ 149.682764] [python3: anon_vma_fork] --======================before-376, vma: 0000000023c52f32, pvma:00000000de55d437
[ 149.682764] [ python3:c9c ] we are following, vma: 0000000023c52f32, anon_vma:00000000ae167de9
[ 149.682765] [python3: anon_vma_fork] --======================end -379, vma: 0000000023c52f32, pvma:00000000de55d437
[ 149.682777] [python3: anon_vma_fork] --======================000-343, vma: 0000000048c3cda9, pvma:000000002d715994
[ 149.682778] [anon_vma_clone] --- 288, i: 0
[ 149.682778] [ python3:c9c ] we are first, vma: 0000000048c3cda9, anon_vma:000000002ea1a279
[ 149.682780] [python3: anon_vma_fork] --======================before-376, vma: 0000000048c3cda9, pvma:000000002d715994
[ 149.682780] [ python3:c9c ] we are following, vma: 0000000048c3cda9, anon_vma:000000002a0fb83d
[ 149.682781] [python3: anon_vma_fork] --======================end -379, vma: 0000000048c3cda9, pvma:000000002d715994
[ 149.682784] [python3: anon_vma_fork] --======================000-343, vma: 000000002b97123b, pvma:00000000a1483ca6
[ 149.682784] [anon_vma_clone] --- 288, i: 0
[ 149.682785] [ python3:c9c ] we are first, vma: 000000002b97123b, anon_vma:00000000d6e2dee3
[ 149.682786] [python3: anon_vma_fork] --======================before-376, vma: 000000002b97123b, pvma:00000000a1483ca6
[ 149.682787] [ python3:c9c ] we are following, vma: 000000002b97123b, anon_vma:000000009234ed05
[ 149.682788] [python3: anon_vma_fork] --======================end -379, vma: 000000002b97123b, pvma:00000000a1483ca6
[ 149.682789] [python3: anon_vma_fork] --======================000-343, vma: 00000000010171f3, pvma:000000000e63fe74
[ 149.682790] [anon_vma_clone] --- 288, i: 0
[ 149.682791] [ python3:c9c ] we are first, vma: 00000000010171f3, anon_vma:00000000d6e2dee3
[ 149.682792] [python3: anon_vma_fork] --======================before-376, vma: 00000000010171f3, pvma:000000000e63fe74
[ 149.682793] [ python3:c9c ] we are following, vma: 00000000010171f3, anon_vma:00000000b1aca01b
[ 149.682794] [python3: anon_vma_fork] --======================end -379, vma: 00000000010171f3, pvma:000000000e63fe74
[ 149.682795] [python3: anon_vma_fork] --======================000-343, vma: 000000006ab44abc, pvma:0000000065877113
[ 149.682796] [anon_vma_clone] --- 288, i: 0
[ 149.682797] [ python3:c9c ] we are first, vma: 000000006ab44abc, anon_vma:00000000ffd346f7
[ 149.682798] [python3: anon_vma_fork] --======================before-376, vma: 000000006ab44abc, pvma:0000000065877113
[ 149.682799] [ python3:c9c ] we are following, vma: 000000006ab44abc, anon_vma:0000000098ff434a
[ 149.682800] [python3: anon_vma_fork] --======================end -379, vma: 000000006ab44abc, pvma:0000000065877113
[ 149.682801] [python3: anon_vma_fork] --======================000-343, vma: 0000000031d89b68, pvma:00000000faab33bf
[ 149.682801] [anon_vma_clone] --- 288, i: 0
[ 149.682802] [ python3:c9c ] we are first, vma: 0000000031d89b68, anon_vma:00000000121643d0
[ 149.682803] [python3: anon_vma_fork] --======================before-376, vma: 0000000031d89b68, pvma:00000000faab33bf
[ 149.682804] [ python3:c9c ] we are following, vma: 0000000031d89b68, anon_vma:0000000026b05888
[ 149.682805] [python3: anon_vma_fork] --======================end -379, vma: 0000000031d89b68, pvma:00000000faab33bf
[ 149.682881] [python3:__anon_vma_prepare] --- 207, offset: 7fffffffe, flag: 8118173
[ 149.682884] CPU: 1 PID: 3236 Comm: python3 Not tainted 4.18.0-next-20180814+ #13
[ 149.682885] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.682885] Call Trace:
[ 149.682891] dump_stack+0x63/0x85
[ 149.682894] __anon_vma_prepare+0xbe/0x180
[ 149.682895] __handle_mm_fault+0x112a/0x11d0
[ 149.682897] handle_mm_fault+0x100/0x210
[ 149.682900] __get_user_pages+0x135/0x6c0
[ 149.682902] get_user_pages_remote+0x122/0x1a0
[ 149.682905] copy_strings.isra.27+0x15a/0x440
[ 149.682908] copy_strings_kernel+0x39/0x50
[ 149.682910] __do_execve_file.isra.36+0x518/0x860
[ 149.682912] __x64_sys_execve+0x39/0x50
[ 149.682915] do_syscall_64+0x5a/0x110
[ 149.682917] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 149.682918] RIP: 0033:0x7f9a1987be37
[ 149.682920] Code: e2 f7 d8 64 41 89 01 eb da 66 2e 0f 1f 84 00 00 00 00 00 f7 d8 64 41 89 01 eb d6 0f 1f 84 00 00 00 00 00 b8 3b 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 21 60 30 00 f7 d8 64 89 01 48
[ 149.682921] RSP: 002b:00007ffd915f1d78 EFLAGS: 00000207 ORIG_RAX: 000000000000003b
[ 149.682923] RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007f9a1987be37
[ 149.682924] RDX: 00007ffd915f25d0 RSI: 00007ffd915f1dc0 RDI: 00007f9a1994ae9a
[ 149.682924] RBP: 00007ffd915f1de0 R08: 0000000000000000 R09: 00007ffd915f191d
[ 149.682925] R10: 0000000000000008 R11: 0000000000000207 R12: 00007f9a12b0f830
[ 149.682926] R13: 00007f9a1aafee58 R14: 000000000060cbe0 R15: 000000000166ec28
[ 149.682928] [ python3:ca4 ] we are first, vma: 0000000094066c05, anon_vma:0000000037bb1bd1
[ 149.683251] [sh:__anon_vma_prepare] --- 207, offset: 1b, flag: 8100873
[ 149.683252] CPU: 1 PID: 3236 Comm: sh Not tainted 4.18.0-next-20180814+ #13
[ 149.683253] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.683253] Call Trace:
[ 149.683256] dump_stack+0x63/0x85
[ 149.683258] __anon_vma_prepare+0xbe/0x180
[ 149.683260] ? __pmd_alloc+0x11b/0x170
[ 149.683262] __handle_mm_fault+0x1010/0x11d0
[ 149.683264] handle_mm_fault+0x100/0x210
[ 149.683266] __do_page_fault+0x260/0x500
[ 149.683267] do_page_fault+0x2e/0xf0
[ 149.683269] page_fault+0x1e/0x30
[ 149.683271] RIP: 0010:__clear_user+0x1e/0x50
[ 149.683272] Code: 41 5d 41 5e 5d c3 90 90 90 90 90 90 0f 1f 44 00 00 55 48 89 e5 0f 01 cb 48 89 f0 48 c1 ee 03 83 e0 07 48 89 f1 48 85 c9 74 0f <48> c7 07 00 00 00 00 48 83 c7 08 ff c9 75 f1 48 89 c1 85 c9 74 0a
[ 149.683273] RSP: 0018:ffffb90d0478fd30 EFLAGS: 00050202
[ 149.683274] RAX: 0000000000000000 RBX: ffff963e48796a00 RCX: 00000000000001bc
[ 149.683275] RDX: 00007ffffffff000 RSI: 00000000000001bc RDI: 000055c5436af220
[ 149.683276] RBP: ffffb90d0478fd30 R08: ffffffffae23c380 R09: ffff963e6c548898
[ 149.683277] R10: ffff963e6c548bd8 R11: 0000000000000000 R12: ffff963ea8d98200
[ 149.683278] R13: 000055c5436af220 R14: ffffb90d0478c000 R15: ffff963e8eb24100
[ 149.683279] ? vma_compute_subtree_gap+0x80/0x80
[ 149.683281] clear_user+0x2b/0x40
[ 149.683284] load_elf_binary+0x13d0/0x1730
[ 149.683288] ? load_misc_binary+0x51/0x470 [binfmt_misc]
[ 149.683290] search_binary_handler+0xa4/0x1d0
[ 149.683292] __do_execve_file.isra.36+0x5b9/0x860
[ 149.683294] __x64_sys_execve+0x39/0x50
[ 149.683296] do_syscall_64+0x5a/0x110
[ 149.683298] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 149.683299] RIP: 0033:0x7f9a1987be37
[ 149.683302] Code: Bad RIP value.
[ 149.683303] RSP: 002b:00007ffd915f1d78 EFLAGS: 00000207 ORIG_RAX: 000000000000003b
[ 149.683305] RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007f9a1987be37
[ 149.683305] RDX: 00007ffd915f25d0 RSI: 00007ffd915f1dc0 RDI: 00007f9a1994ae9a
[ 149.683306] RBP: 00007ffd915f1de0 R08: 0000000000000000 R09: 00007ffd915f191d
[ 149.683307] R10: 0000000000000008 R11: 0000000000000207 R12: 00007f9a12b0f830
[ 149.683308] R13: 00007f9a1aafee58 R14: 000000000060cbe0 R15: 000000000166ec28
[ 149.683310] [ sh:ca4 ] we are first, vma: 00000000e72bfec6, anon_vma:00000000d3fb219d
[ 149.683323] [sh:__anon_vma_prepare] --- 207, offset: 27, flag: 8100873
[ 149.683324] CPU: 1 PID: 3236 Comm: sh Not tainted 4.18.0-next-20180814+ #13
[ 149.683325] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.683325] Call Trace:
[ 149.683327] dump_stack+0x63/0x85
[ 149.683329] __anon_vma_prepare+0xbe/0x180
[ 149.683331] ? __pmd_alloc+0x11b/0x170
[ 149.683333] __handle_mm_fault+0x1010/0x11d0
[ 149.683335] handle_mm_fault+0x100/0x210
[ 149.683336] __do_page_fault+0x260/0x500
[ 149.683338] do_page_fault+0x2e/0xf0
[ 149.683339] page_fault+0x1e/0x30
[ 149.683341] RIP: 0010:__clear_user+0x1e/0x50
[ 149.683342] Code: 41 5d 41 5e 5d c3 90 90 90 90 90 90 0f 1f 44 00 00 55 48 89 e5 0f 01 cb 48 89 f0 48 c1 ee 03 83 e0 07 48 89 f1 48 85 c9 74 0f <48> c7 07 00 00 00 00 48 83 c7 08 ff c9 75 f1 48 89 c1 85 c9 74 0a
[ 149.683343] RSP: 0018:ffffb90d0478fd30 EFLAGS: 00050206
[ 149.683344] RAX: 0000000000000000 RBX: ffff963e48796a00 RCX: 0000000000000005
[ 149.683345] RDX: 00007ffffffff000 RSI: 0000000000000005 RDI: 00007ff1f6ff2fd8
[ 149.683345] RBP: ffffb90d0478fd30 R08: ffffffffae22be00 R09: 0000000000000000
[ 149.683346] R10: ffff963e4aacb588 R11: ffff963ea5ac9780 R12: ffff963ea8d98200
[ 149.683347] R13: 0000000000000007 R14: ffffb90d0478c000 R15: ffff963e8eb24100
[ 149.683349] ? vmacache_find+0xb0/0xb0
[ 149.683351] clear_user+0x2b/0x40
[ 149.683352] load_elf_binary+0x1701/0x1730
[ 149.683355] ? load_misc_binary+0x51/0x470 [binfmt_misc]
[ 149.683357] search_binary_handler+0xa4/0x1d0
[ 149.683359] __do_execve_file.isra.36+0x5b9/0x860
[ 149.683361] __x64_sys_execve+0x39/0x50
[ 149.683363] do_syscall_64+0x5a/0x110
[ 149.683365] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 149.683366] RIP: 0033:0x7f9a1987be37
[ 149.683368] Code: Bad RIP value.
[ 149.683369] RSP: 002b:00007ffd915f1d78 EFLAGS: 00000207 ORIG_RAX: 000000000000003b
[ 149.683370] RAX: ffffffffffffffda RBX: 0000000000000001 RCX: 00007f9a1987be37
[ 149.683371] RDX: 00007ffd915f25d0 RSI: 00007ffd915f1dc0 RDI: 00007f9a1994ae9a
[ 149.683371] RBP: 00007ffd915f1de0 R08: 0000000000000000 R09: 00007ffd915f191d
[ 149.683372] R10: 0000000000000008 R11: 0000000000000207 R12: 00007f9a12b0f830
[ 149.683373] R13: 00007f9a1aafee58 R14: 000000000060cbe0 R15: 000000000166ec28
[ 149.683374] [ sh:ca4 ] we are first, vma: 000000006dfcf0e2, anon_vma:000000003d847cde
[ 149.683399] [sh:__anon_vma_prepare] --- 207, offset: 7ff1f6ff3, flag: 8100073
[ 149.683400] CPU: 1 PID: 3236 Comm: sh Not tainted 4.18.0-next-20180814+ #13
[ 149.683401] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.683401] Call Trace:
[ 149.683403] dump_stack+0x63/0x85
[ 149.683405] __anon_vma_prepare+0xbe/0x180
[ 149.683407] __handle_mm_fault+0x112a/0x11d0
[ 149.683408] handle_mm_fault+0x100/0x210
[ 149.683410] __do_page_fault+0x260/0x500
[ 149.683411] do_page_fault+0x2e/0xf0
[ 149.683413] ? page_fault+0x8/0x30
[ 149.683414] page_fault+0x1e/0x30
[ 149.683415] RIP: 0033:0x7ff1f6de4913
[ 149.683416] Code: 89 f5 55 53 48 83 ec 58 48 8b 07 48 89 3d 5d d5 20 00 48 83 c7 08 48 89 3d 3a ce 20 00 89 05 3c ce 20 00 48 98 48 8d 7c c7 08 <48> 89 3d fe e7 20 00 48 83 3f 00 48 89 f8 74 0a 48 83 c0 08 48 83
[ 149.683417] RSP: 002b:00007ffcd7d8f1f0 EFLAGS: 00010202
[ 149.683418] RAX: 0000000000000003 RBX: 0000000000000007 RCX: 0000000000000008
[ 149.683419] RDX: 000000812630f3b5 RSI: 00007ff1f6dcc660 RDI: 00007ffcd7d8f328
[ 149.683420] RBP: 00007ffcd7d8f2f0 R08: 00007ff1f6dca2d8 R09: 00007ff1f6de3840
[ 149.683421] R10: 0000000000000031 R11: 000000006ffffdff R12: 00007ffcd7d8f300
[ 149.683421] R13: 00007ff1f6dcc660 R14: 00007ff1f6dca000 R15: 00007ff1f6dca480
[ 149.683423] [ sh:ca4 ] we are first, vma: 00000000ac1de420, anon_vma:000000005c13f918
[ 149.683473] [sh:__anon_vma_prepare] --- 207, offset: 7ff1f6fd2, flag: 8100073
[ 149.683474] CPU: 1 PID: 3236 Comm: sh Not tainted 4.18.0-next-20180814+ #13
[ 149.683475] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.683475] Call Trace:
[ 149.683477] dump_stack+0x63/0x85
[ 149.683479] __anon_vma_prepare+0xbe/0x180
[ 149.683480] __handle_mm_fault+0x112a/0x11d0
[ 149.683482] handle_mm_fault+0x100/0x210
[ 149.683484] __do_page_fault+0x260/0x500
[ 149.683485] do_page_fault+0x2e/0xf0
[ 149.683487] ? page_fault+0x8/0x30
[ 149.683488] page_fault+0x1e/0x30
[ 149.683489] RIP: 0033:0x7ff1f6dd6117
[ 149.683490] Code: e1 04 49 8d bc 29 91 04 00 00 4c 89 4c 24 08 e8 bf 4d ff ff 48 85 c0 48 89 c3 0f 84 dc 01 00 00 4c 8b 4c 24 08 4c 8b 54 24 20 <48> 89 43 28 48 8b 54 24 18 4e 8d 8c 08 70 04 00 00 4c 89 d6 4c 89
[ 149.683491] RSP: 002b:00007ffcd7d8e7b0 EFLAGS: 00010206
[ 149.683492] RAX: 00007ff1f6fd2000 RBX: 00007ff1f6fd2000 RCX: 00007ff1f6de6f43
[ 149.683493] RDX: 00007ff1f6fd2000 RSI: 0000000000002000 RDI: 0000000000000000
[ 149.683494] RBP: 0000000000000009 R08: 00000000ffffffff R09: 0000000000000000
[ 149.683494] R10: 000055c5434936e1 R11: 0000000000000246 R12: 0000000000000000
[ 149.683495] R13: 0000000000000000 R14: 00007ff1f6ff3170 R15: 0000000000000001
[ 149.683497] [ sh:ca4 ] we are first, vma: 000000002c2c2e57, anon_vma:000000004e96bfef
[ 149.683514] [sh:__anon_vma_prepare] --- 207, offset: 1e7, flag: 8100073
[ 149.683515] CPU: 1 PID: 3236 Comm: sh Not tainted 4.18.0-next-20180814+ #13
[ 149.683515] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.683516] Call Trace:
[ 149.683517] dump_stack+0x63/0x85
[ 149.683519] __anon_vma_prepare+0xbe/0x180
[ 149.683521] __handle_mm_fault+0x1010/0x11d0
[ 149.683522] handle_mm_fault+0x100/0x210
[ 149.683524] __do_page_fault+0x260/0x500
[ 149.683525] do_page_fault+0x2e/0xf0
[ 149.683527] ? page_fault+0x8/0x30
[ 149.683528] page_fault+0x1e/0x30
[ 149.683529] RIP: 0033:0x7ff1f6de9a6f
[ 149.683530] Code: 0f 7f 44 17 f0 f3 0f 7f 07 c3 48 83 fa 40 77 16 f3 0f 7f 07 f3 0f 7f 47 10 f3 0f 7f 44 17 f0 f3 0f 7f 44 17 e0 c3 48 8d 4f 40 <f3> 0f 7f 07 48 83 e1 c0 f3 0f 7f 44 17 f0 f3 0f 7f 47 10 f3 0f 7f
[ 149.683531] RSP: 002b:00007ffcd7d8e628 EFLAGS: 00010206
[ 149.683532] RAX: 00007ff1f6dc5860 RBX: 00007ff1f6fd2000 RCX: 00007ff1f6dc58a0
[ 149.683532] RDX: 00000000000007a0 RSI: 0000000000000000 RDI: 00007ff1f6dc5860
[ 149.683533] RBP: 00007ffcd7d8e960 R08: 00007ff1f6dc5860 R09: 00000000001e7000
[ 149.683534] R10: 00007ff1f6dc6000 R11: 0000000000000206 R12: 00007ffcd7d8e660
[ 149.683535] R13: 00007ffcd7d8ea48 R14: 0000000000000002 R15: 0000000000010301
[ 149.683536] [ sh:ca4 ] we are first, vma: 0000000053ddfb08, anon_vma:00000000a43218ee
[ 149.683606] [anon_vma_clone] --- 288, i: 0
[ 149.683607] [ sh:ca4 ] we are first, vma: 00000000ea98af80, anon_vma:00000000a43218ee
[ 149.683634] [anon_vma_clone] --- 288, i: 0
[ 149.683635] [ sh:ca4 ] we are first, vma: 00000000a705e311, anon_vma:00000000d3fb219d
[ 149.683640] [anon_vma_clone] --- 288, i: 0
[ 149.683641] [ sh:ca4 ] we are first, vma: 00000000bbfb8fd3, anon_vma:000000003d847cde
[ 149.683659] [sh:__anon_vma_prepare] --- 207, offset: 7ff1f6dc6, flag: 8100073
[ 149.683661] CPU: 1 PID: 3236 Comm: sh Not tainted 4.18.0-next-20180814+ #13
[ 149.683661] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.683662] Call Trace:
[ 149.683664] dump_stack+0x63/0x85
[ 149.683666] __anon_vma_prepare+0xbe/0x180
[ 149.683667] __handle_mm_fault+0x112a/0x11d0
[ 149.683669] handle_mm_fault+0x100/0x210
[ 149.683670] __do_page_fault+0x260/0x500
[ 149.683672] do_page_fault+0x2e/0xf0
[ 149.683673] ? page_fault+0x8/0x30
[ 149.683675] page_fault+0x1e/0x30
[ 149.683676] RIP: 0033:0x7ff1f69fa964
[ 149.683677] Code: 85 c0 0f 84 0e 01 00 00 8b 00 85 c0 0f 85 04 01 00 00 c7 05 4a 98 3c 00 01 00 00 00 48 8b 05 4b 95 3c 00 48 8d 0d 09 1e 19 00 <89> 1d 5e eb 3c 00 48 89 2d 4f eb 3c 00 ba 5f 00 00 00 4c 89 20 48
[ 149.683678] RSP: 002b:00007ffcd7d8f260 EFLAGS: 00010246
[ 149.683679] RAX: 000055c5436af220 RBX: 0000000000000003 RCX: 00007ff1f6b8c76d
[ 149.683679] RDX: 00007ffcd7d8f328 RSI: 00007ffcd7d8f308 RDI: 000000000000037f
[ 149.683680] RBP: 00007ffcd7d8f308 R08: 0000000000000000 R09: 00000000000000c0
[ 149.683681] R10: 00007ff1f6ff29f0 R11: 0000000000000206 R12: 00007ffcd7d8f328
[ 149.683682] R13: 00007ffcd7d8f328 R14: 00007ff1f6fd2000 R15: 00007ff1f6ff3170
[ 149.683683] [ sh:ca4 ] we are first, vma: 00000000b11994e1, anon_vma:000000000cbacd28
[ 149.683702] [sh:__anon_vma_prepare] --- 207, offset: 55c5436b0, flag: 8100073
[ 149.683703] CPU: 1 PID: 3236 Comm: sh Not tainted 4.18.0-next-20180814+ #13
[ 149.683703] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.683704] Call Trace:
[ 149.683706] dump_stack+0x63/0x85
[ 149.683708] __anon_vma_prepare+0xbe/0x180
[ 149.683709] __handle_mm_fault+0x112a/0x11d0
[ 149.683711] handle_mm_fault+0x100/0x210
[ 149.683712] __do_page_fault+0x260/0x500
[ 149.683713] do_page_fault+0x2e/0xf0
[ 149.683715] ? page_fault+0x8/0x30
[ 149.683716] page_fault+0x1e/0x30
[ 149.683717] RIP: 0033:0x55c543496879
[ 149.683718] Code: 90 53 48 81 ec 10 01 00 00 89 7c 24 04 48 89 74 24 08 64 48 8b 04 25 28 00 00 00 48 89 84 24 08 01 00 00 31 c0 e8 67 fa ff ff <48> 89 05 f8 b1 21 00 e8 9b fb ff ff 89 05 d1 b4 21 00 e8 20 fd ff
[ 149.683719] RSP: 002b:00007ffcd7d8f110 EFLAGS: 00010207
[ 149.683720] RAX: 00007ff1f6fd34c0 RBX: 0000000000000000 RCX: 000055c5434a7a90
[ 149.683721] RDX: 00007ffcd7d8f328 RSI: 00007ffcd7d8f308 RDI: 0000000000000003
[ 149.683721] RBP: 000055c5434a7a90 R08: 00007ff1f6dc5d80 R09: 00007ff1f6dc5d80
[ 149.683722] R10: 0000000000000002 R11: 0000000000000007 R12: 000055c543496a20
[ 149.683723] R13: 00007ffcd7d8f300 R14: 0000000000000000 R15: 0000000000000000
[ 149.683724] [ sh:ca4 ] we are first, vma: 0000000034eb0b54, anon_vma:0000000083b5af9c
[ 149.683779] [sh:__anon_vma_prepare] --- 207, offset: 55c54427d, flag: 8100073
[ 149.683780] CPU: 1 PID: 3236 Comm: sh Not tainted 4.18.0-next-20180814+ #13
[ 149.683781] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.683781] Call Trace:
[ 149.683783] dump_stack+0x63/0x85
[ 149.683785] __anon_vma_prepare+0xbe/0x180
[ 149.683786] __handle_mm_fault+0x112a/0x11d0
[ 149.683788] handle_mm_fault+0x100/0x210
[ 149.683789] __do_page_fault+0x260/0x500
[ 149.683791] do_page_fault+0x2e/0xf0
[ 149.683793] ? page_fault+0x8/0x30
[ 149.683794] page_fault+0x1e/0x30
[ 149.683795] RIP: 0033:0x7ff1f6a6d083
[ 149.683796] Code: 48 8b 0d 68 84 35 00 0f 84 49 fe ff ff 45 31 ff 45 31 e4 48 29 d0 4c 01 f9 48 89 15 27 7c 35 00 4c 01 e0 48 83 c8 01 4d 85 f6 <48> 89 42 08 48 89 0d 3a 84 35 00 0f 84 d1 fa ff ff 49 83 ee 20 49
[ 149.683797] RSP: 002b:00007ffcd7d8ee00 EFLAGS: 00010246
[ 149.683798] RAX: 0000000000021001 RBX: 00007ff1f6dc4c40 RCX: 0000000000021000
[ 149.683799] RDX: 000055c54427d000 RSI: 000055c54429e000 RDI: 0000000000000000
[ 149.683799] RBP: 0000000000000250 R08: 0000000000000002 R09: 0000000000000000
[ 149.683800] R10: fffffffffffff000 R11: 00007ff1f6dc4ca0 R12: 0000000000000000
[ 149.683801] R13: 00007ff1f6dc4ca0 R14: 0000000000000000 R15: 0000000000000000
[ 149.683802] [ sh:ca4 ] we are first, vma: 0000000031300336, anon_vma:0000000062520996
[ 149.683855] [sh: anon_vma_fork] --======================000-343, vma: 000000006e2c44df, pvma:00000000e72bfec6
[ 149.683856] [anon_vma_clone] --- 288, i: 0
[ 149.683857] [ sh:ca4 ] we are first, vma: 000000006e2c44df, anon_vma:00000000d3fb219d
[ 149.683858] [sh: anon_vma_fork] --======================before-376, vma: 000000006e2c44df, pvma:00000000e72bfec6
[ 149.683859] [ sh:ca4 ] we are following, vma: 000000006e2c44df, anon_vma:00000000622f1446
[ 149.683860] [sh: anon_vma_fork] --======================end -379, vma: 000000006e2c44df, pvma:00000000e72bfec6
[ 149.683863] [sh: anon_vma_fork] --======================000-343, vma: 00000000dbde6fc7, pvma:00000000a705e311
[ 149.683864] [anon_vma_clone] --- 288, i: 0
[ 149.683865] [ sh:ca4 ] we are first, vma: 00000000dbde6fc7, anon_vma:00000000d3fb219d
[ 149.683866] [sh: anon_vma_fork] --======================before-376, vma: 00000000dbde6fc7, pvma:00000000a705e311
[ 149.683867] [ sh:ca4 ] we are following, vma: 00000000dbde6fc7, anon_vma:00000000d9318ab7
[ 149.683868] [sh: anon_vma_fork] --======================end -379, vma: 00000000dbde6fc7, pvma:00000000a705e311
[ 149.683869] [sh: anon_vma_fork] --======================000-343, vma: 0000000048c3cda9, pvma:0000000034eb0b54
[ 149.683870] [anon_vma_clone] --- 288, i: 0
[ 149.683871] [ sh:ca4 ] we are first, vma: 0000000048c3cda9, anon_vma:0000000083b5af9c
[ 149.683872] [sh: anon_vma_fork] --======================before-376, vma: 0000000048c3cda9, pvma:0000000034eb0b54
[ 149.683873] [ sh:ca4 ] we are following, vma: 0000000048c3cda9, anon_vma:000000004cf0f6f8
[ 149.683874] [sh: anon_vma_fork] --======================end -379, vma: 0000000048c3cda9, pvma:0000000034eb0b54
[ 149.683875] [sh: anon_vma_fork] --======================000-343, vma: 0000000023c52f32, pvma:0000000031300336
[ 149.683876] [anon_vma_clone] --- 288, i: 0
[ 149.683876] [ sh:ca4 ] we are first, vma: 0000000023c52f32, anon_vma:0000000062520996
[ 149.683877] [sh: anon_vma_fork] --======================before-376, vma: 0000000023c52f32, pvma:0000000031300336
[ 149.683878] [ sh:ca4 ] we are following, vma: 0000000023c52f32, anon_vma:00000000041b9ed6
[ 149.683879] [sh: anon_vma_fork] --======================end -379, vma: 0000000023c52f32, pvma:0000000031300336
[ 149.683882] [sh: anon_vma_fork] --======================000-343, vma: 00000000e70a251c, pvma:0000000053ddfb08
[ 149.683882] [anon_vma_clone] --- 288, i: 0
[ 149.683883] [ sh:ca4 ] we are first, vma: 00000000e70a251c, anon_vma:00000000a43218ee
[ 149.683884] [sh: anon_vma_fork] --======================before-376, vma: 00000000e70a251c, pvma:0000000053ddfb08
[ 149.683885] [ sh:ca4 ] we are following, vma: 00000000e70a251c, anon_vma:0000000077116133
[ 149.683886] [sh: anon_vma_fork] --======================end -379, vma: 00000000e70a251c, pvma:0000000053ddfb08
[ 149.683888] [sh: anon_vma_fork] --======================000-343, vma: 00000000a9582a01, pvma:00000000ea98af80
[ 149.683889] [anon_vma_clone] --- 288, i: 0
[ 149.683890] [ sh:ca4 ] we are first, vma: 00000000a9582a01, anon_vma:00000000a43218ee
[ 149.683891] [sh: anon_vma_fork] --======================before-376, vma: 00000000a9582a01, pvma:00000000ea98af80
[ 149.683892] [ sh:ca4 ] we are following, vma: 00000000a9582a01, anon_vma:00000000858b29e2
[ 149.683893] [sh: anon_vma_fork] --======================end -379, vma: 00000000a9582a01, pvma:00000000ea98af80
[ 149.683894] [sh: anon_vma_fork] --======================000-343, vma: 00000000afedfa46, pvma:00000000b11994e1
[ 149.683895] [anon_vma_clone] --- 288, i: 0
[ 149.683896] [ sh:ca4 ] we are first, vma: 00000000afedfa46, anon_vma:000000000cbacd28
[ 149.683897] [sh: anon_vma_fork] --======================before-376, vma: 00000000afedfa46, pvma:00000000b11994e1
[ 149.683898] [ sh:ca4 ] we are following, vma: 00000000afedfa46, anon_vma:00000000c54a67e0
[ 149.683898] [sh: anon_vma_fork] --======================end -379, vma: 00000000afedfa46, pvma:00000000b11994e1
[ 149.683900] [sh: anon_vma_fork] --======================000-343, vma: 00000000a3274be7, pvma:000000002c2c2e57
[ 149.683901] [anon_vma_clone] --- 288, i: 0
[ 149.683902] [ sh:ca4 ] we are first, vma: 00000000a3274be7, anon_vma:000000004e96bfef
[ 149.683903] [sh: anon_vma_fork] --======================before-376, vma: 00000000a3274be7, pvma:000000002c2c2e57
[ 149.683903] [ sh:ca4 ] we are following, vma: 00000000a3274be7, anon_vma:000000002232223b
[ 149.683904] [sh: anon_vma_fork] --======================end -379, vma: 00000000a3274be7, pvma:000000002c2c2e57
[ 149.683906] [sh: anon_vma_fork] --======================000-343, vma: 0000000070083e58, pvma:000000006dfcf0e2
[ 149.683907] [anon_vma_clone] --- 288, i: 0
[ 149.683907] [ sh:ca4 ] we are first, vma: 0000000070083e58, anon_vma:000000003d847cde
[ 149.683909] [sh: anon_vma_fork] --======================before-376, vma: 0000000070083e58, pvma:000000006dfcf0e2
[ 149.683909] [ sh:ca4 ] we are following, vma: 0000000070083e58, anon_vma:00000000343d7117
[ 149.683910] [sh: anon_vma_fork] --======================end -379, vma: 0000000070083e58, pvma:000000006dfcf0e2
[ 149.683912] [sh: anon_vma_fork] --======================000-343, vma: 000000000c290460, pvma:00000000bbfb8fd3
[ 149.683912] [anon_vma_clone] --- 288, i: 0
[ 149.683913] [ sh:ca4 ] we are first, vma: 000000000c290460, anon_vma:000000003d847cde
[ 149.683914] [sh: anon_vma_fork] --======================before-376, vma: 000000000c290460, pvma:00000000bbfb8fd3
[ 149.683915] [ sh:ca4 ] we are following, vma: 000000000c290460, anon_vma:0000000051a9360a
[ 149.683916] [sh: anon_vma_fork] --======================end -379, vma: 000000000c290460, pvma:00000000bbfb8fd3
[ 149.683917] [sh: anon_vma_fork] --======================000-343, vma: 00000000f6dc97f0, pvma:00000000ac1de420
[ 149.683918] [anon_vma_clone] --- 288, i: 0
[ 149.683919] [ sh:ca4 ] we are first, vma: 00000000f6dc97f0, anon_vma:000000005c13f918
[ 149.683920] [sh: anon_vma_fork] --======================before-376, vma: 00000000f6dc97f0, pvma:00000000ac1de420
[ 149.683921] [ sh:ca4 ] we are following, vma: 00000000f6dc97f0, anon_vma:000000008db69126
[ 149.683922] [sh: anon_vma_fork] --======================end -379, vma: 00000000f6dc97f0, pvma:00000000ac1de420
[ 149.683923] [sh: anon_vma_fork] --======================000-343, vma: 000000008bb60d64, pvma:0000000094066c05
[ 149.683924] [anon_vma_clone] --- 288, i: 0
[ 149.683924] [ sh:ca4 ] we are first, vma: 000000008bb60d64, anon_vma:0000000037bb1bd1
[ 149.683925] [sh: anon_vma_fork] --======================before-376, vma: 000000008bb60d64, pvma:0000000094066c05
[ 149.683926] [ sh:ca4 ] we are following, vma: 000000008bb60d64, anon_vma:00000000ecd54e9d
[ 149.683927] [sh: anon_vma_fork] --======================end -379, vma: 000000008bb60d64, pvma:0000000094066c05
[ 149.684236] [sh:__anon_vma_prepare] --- 207, offset: 7fffffffe, flag: 8118173
[ 149.684238] CPU: 7 PID: 3237 Comm: sh Not tainted 4.18.0-next-20180814+ #13
[ 149.684239] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.684239] Call Trace:
[ 149.684243] dump_stack+0x63/0x85
[ 149.684245] __anon_vma_prepare+0xbe/0x180
[ 149.684247] __handle_mm_fault+0x112a/0x11d0
[ 149.684249] handle_mm_fault+0x100/0x210
[ 149.684251] __get_user_pages+0x135/0x6c0
[ 149.684253] get_user_pages_remote+0x122/0x1a0
[ 149.684256] copy_strings.isra.27+0x15a/0x440
[ 149.684259] copy_strings_kernel+0x39/0x50
[ 149.684261] __do_execve_file.isra.36+0x518/0x860
[ 149.684263] __x64_sys_execve+0x39/0x50
[ 149.684265] do_syscall_64+0x5a/0x110
[ 149.684267] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 149.684269] RIP: 0033:0x7ff1f6abde37
[ 149.684270] Code: e2 f7 d8 64 41 89 01 eb da 66 2e 0f 1f 84 00 00 00 00 00 f7 d8 64 41 89 01 eb d6 0f 1f 84 00 00 00 00 00 b8 3b 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 21 60 30 00 f7 d8 64 89 01 48
[ 149.684271] RSP: 002b:00007ffcd7d8ee98 EFLAGS: 00000246 ORIG_RAX: 000000000000003b
[ 149.684273] RAX: ffffffffffffffda RBX: 000055c5436b1c40 RCX: 00007ff1f6abde37
[ 149.684273] RDX: 000055c5436b1c00 RSI: 000055c5436b1bf0 RDI: 000055c5436b1c40
[ 149.684274] RBP: 000055c5436b1bf0 R08: 00007ff1f6fd3540 R09: 0000000000000000
[ 149.684275] R10: 00007ff1f6fd3810 R11: 0000000000000246 R12: 000055c5434a7f59
[ 149.684276] R13: 000055c5436b1c00 R14: 00007ffcd7d8eea0 R15: 00007ffcd7d90fb9
[ 149.684278] [ sh:ca5 ] we are first, vma: 000000008f23db68, anon_vma:00000000a598cd9b
[ 149.684331] [sync:__anon_vma_prepare] --- 207, offset: 7, flag: 8100873
[ 149.684332] CPU: 7 PID: 3237 Comm: sync Not tainted 4.18.0-next-20180814+ #13
[ 149.684333] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.684333] Call Trace:
[ 149.684336] dump_stack+0x63/0x85
[ 149.684338] __anon_vma_prepare+0xbe/0x180
[ 149.684340] ? __pmd_alloc+0x11b/0x170
[ 149.684342] __handle_mm_fault+0x1010/0x11d0
[ 149.684344] handle_mm_fault+0x100/0x210
[ 149.684345] __do_page_fault+0x260/0x500
[ 149.684347] do_page_fault+0x2e/0xf0
[ 149.684349] page_fault+0x1e/0x30
[ 149.684350] RIP: 0010:__clear_user+0x1e/0x50
[ 149.684352] Code: 41 5d 41 5e 5d c3 90 90 90 90 90 90 0f 1f 44 00 00 55 48 89 e5 0f 01 cb 48 89 f0 48 c1 ee 03 83 e0 07 48 89 f1 48 85 c9 74 0f <48> c7 07 00 00 00 00 48 83 c7 08 ff c9 75 f1 48 89 c1 85 c9 74 0a
[ 149.684352] RSP: 0018:ffffb90d048d7d30 EFLAGS: 00050206
[ 149.684354] RAX: 0000000000000000 RBX: ffff963e5cee2800 RCX: 00000000000001f0
[ 149.684355] RDX: 00007ffffffff000 RSI: 00000000000001f0 RDI: 0000561b5340b080
[ 149.684356] RBP: ffffb90d048d7d30 R08: ffffffffae22be00 R09: ffff963e6c50a760
[ 149.684356] R10: 0000000000000873 R11: ffff963e8e85af00 R12: ffff963ea296a400
[ 149.684357] R13: 0000561b5340b080 R14: ffffb90d048d4000 R15: ffff963e8eb08400
[ 149.684359] ? vmacache_find+0xb0/0xb0
[ 149.684361] clear_user+0x2b/0x40
[ 149.684363] load_elf_binary+0x13d0/0x1730
[ 149.684366] ? load_misc_binary+0x51/0x470 [binfmt_misc]
[ 149.684369] search_binary_handler+0xa4/0x1d0
[ 149.684371] __do_execve_file.isra.36+0x5b9/0x860
[ 149.684373] __x64_sys_execve+0x39/0x50
[ 149.684375] do_syscall_64+0x5a/0x110
[ 149.684377] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 149.684378] RIP: 0033:0x7ff1f6abde37
[ 149.684380] Code: Bad RIP value.
[ 149.684381] RSP: 002b:00007ffcd7d8ee98 EFLAGS: 00000246 ORIG_RAX: 000000000000003b
[ 149.684382] RAX: ffffffffffffffda RBX: 000055c5436b1c40 RCX: 00007ff1f6abde37
[ 149.684383] RDX: 000055c5436b1c00 RSI: 000055c5436b1bf0 RDI: 000055c5436b1c40
[ 149.684384] RBP: 000055c5436b1bf0 R08: 00007ff1f6fd3540 R09: 0000000000000000
[ 149.684385] R10: 00007ff1f6fd3810 R11: 0000000000000246 R12: 000055c5434a7f59
[ 149.684385] R13: 000055c5436b1c00 R14: 00007ffcd7d8eea0 R15: 00007ffcd7d90fb9
[ 149.684387] [ sync:ca5 ] we are first, vma: 00000000ea61b0f3, anon_vma:00000000f7b86e6f
[ 149.684538] [sync:__anon_vma_prepare] --- 207, offset: 27, flag: 8100873
[ 149.684541] CPU: 1 PID: 3237 Comm: sync Not tainted 4.18.0-next-20180814+ #13
[ 149.684544] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.684546] Call Trace:
[ 149.684550] dump_stack+0x63/0x85
[ 149.684555] __anon_vma_prepare+0xbe/0x180
[ 149.684561] ? __pmd_alloc+0x11b/0x170
[ 149.684565] __handle_mm_fault+0x1010/0x11d0
[ 149.684569] handle_mm_fault+0x100/0x210
[ 149.684572] __do_page_fault+0x260/0x500
[ 149.684575] do_page_fault+0x2e/0xf0
[ 149.684579] page_fault+0x1e/0x30
[ 149.684582] RIP: 0010:__clear_user+0x1e/0x50
[ 149.684586] Code: 41 5d 41 5e 5d c3 90 90 90 90 90 90 0f 1f 44 00 00 55 48 89 e5 0f 01 cb 48 89 f0 48 c1 ee 03 83 e0 07 48 89 f1 48 85 c9 74 0f <48> c7 07 00 00 00 00 48 83 c7 08 ff c9 75 f1 48 89 c1 85 c9 74 0a
[ 149.684586] RSP: 0018:ffffb90d048d7d30 EFLAGS: 00050206
[ 149.684589] RAX: 0000000000000000 RBX: ffff963e5cee2800 RCX: 0000000000000005
[ 149.684589] RDX: 00007ffffffff000 RSI: 0000000000000005 RDI: 00007f7c096b7fd8
[ 149.684590] RBP: ffffb90d048d7d30 R08: ffffffffae22be00 R09: 0000000000000000
[ 149.684591] R10: ffff963ea2600988 R11: ffff963e8e85af00 R12: ffff963ea296a400
[ 149.684592] R13: 0000000000000007 R14: ffffb90d048d4000 R15: ffff963e8eb08400
[ 149.684594] ? vmacache_find+0xb0/0xb0
[ 149.684595] clear_user+0x2b/0x40
[ 149.684597] load_elf_binary+0x1701/0x1730
[ 149.684600] ? load_misc_binary+0x51/0x470 [binfmt_misc]
[ 149.684603] search_binary_handler+0xa4/0x1d0
[ 149.684606] __do_execve_file.isra.36+0x5b9/0x860
[ 149.684612] __x64_sys_execve+0x39/0x50
[ 149.684615] do_syscall_64+0x5a/0x110
[ 149.684617] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 149.684619] RIP: 0033:0x7ff1f6abde37
[ 149.684623] Code: Bad RIP value.
[ 149.684624] RSP: 002b:00007ffcd7d8ee98 EFLAGS: 00000246 ORIG_RAX: 000000000000003b
[ 149.684626] RAX: ffffffffffffffda RBX: 000055c5436b1c40 RCX: 00007ff1f6abde37
[ 149.684627] RDX: 000055c5436b1c00 RSI: 000055c5436b1bf0 RDI: 000055c5436b1c40
[ 149.684628] RBP: 000055c5436b1bf0 R08: 00007ff1f6fd3540 R09: 0000000000000000
[ 149.684629] R10: 00007ff1f6fd3810 R11: 0000000000000246 R12: 000055c5434a7f59
[ 149.684630] R13: 000055c5436b1c00 R14: 00007ffcd7d8eea0 R15: 00007ffcd7d90fb9
[ 149.684633] [ sync:ca5 ] we are first, vma: 0000000051031864, anon_vma:000000001c0903b6
[ 149.684662] [sync:__anon_vma_prepare] --- 207, offset: 7f7c096b8, flag: 8100073
[ 149.684666] CPU: 1 PID: 3237 Comm: sync Not tainted 4.18.0-next-20180814+ #13
[ 149.684667] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.684667] Call Trace:
[ 149.684670] dump_stack+0x63/0x85
[ 149.684673] __anon_vma_prepare+0xbe/0x180
[ 149.684674] __handle_mm_fault+0x112a/0x11d0
[ 149.684677] handle_mm_fault+0x100/0x210
[ 149.684679] __do_page_fault+0x260/0x500
[ 149.684681] do_page_fault+0x2e/0xf0
[ 149.684683] ? page_fault+0x8/0x30
[ 149.684685] page_fault+0x1e/0x30
[ 149.684687] RIP: 0033:0x7f7c094a9913
[ 149.684688] Code: 89 f5 55 53 48 83 ec 58 48 8b 07 48 89 3d 5d d5 20 00 48 83 c7 08 48 89 3d 3a ce 20 00 89 05 3c ce 20 00 48 98 48 8d 7c c7 08 <48> 89 3d fe e7 20 00 48 83 3f 00 48 89 f8 74 0a 48 83 c0 08 48 83
[ 149.684689] RSP: 002b:00007ffe9c120be0 EFLAGS: 00010202
[ 149.684691] RAX: 0000000000000001 RBX: 0000000000000007 RCX: 0000000000000008
[ 149.684693] RDX: 000000812668e432 RSI: 00007f7c09491660 RDI: 00007ffe9c120d08
[ 149.684694] RBP: 00007ffe9c120ce0 R08: 00007f7c0948f2d8 R09: 00007f7c094a8840
[ 149.684695] R10: 0000000000000031 R11: 000000006ffffdff R12: 00007ffe9c120cf0
[ 149.684697] R13: 00007f7c09491660 R14: 00007f7c0948f000 R15: 00007f7c0948f480
[ 149.684699] [ sync:ca5 ] we are first, vma: 000000002b7674af, anon_vma:000000006fbf81e1
[ 149.684754] [sync:__anon_vma_prepare] --- 207, offset: 7f7c09697, flag: 8100073
[ 149.684757] CPU: 1 PID: 3237 Comm: sync Not tainted 4.18.0-next-20180814+ #13
[ 149.684760] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.684763] Call Trace:
[ 149.684767] dump_stack+0x63/0x85
[ 149.684773] __anon_vma_prepare+0xbe/0x180
[ 149.684776] __handle_mm_fault+0x112a/0x11d0
[ 149.684778] handle_mm_fault+0x100/0x210
[ 149.684780] __do_page_fault+0x260/0x500
[ 149.684782] do_page_fault+0x2e/0xf0
[ 149.684784] ? page_fault+0x8/0x30
[ 149.684786] page_fault+0x1e/0x30
[ 149.684788] RIP: 0033:0x7f7c0949b117
[ 149.684790] Code: e1 04 49 8d bc 29 91 04 00 00 4c 89 4c 24 08 e8 bf 4d ff ff 48 85 c0 48 89 c3 0f 84 dc 01 00 00 4c 8b 4c 24 08 4c 8b 54 24 20 <48> 89 43 28 48 8b 54 24 18 4e 8d 8c 08 70 04 00 00 4c 89 d6 4c 89
[ 149.684791] RSP: 002b:00007ffe9c1201a0 EFLAGS: 00010206
[ 149.684793] RAX: 00007f7c09697000 RBX: 00007f7c09697000 RCX: 00007f7c094abf43
[ 149.684795] RDX: 00007f7c09697000 RSI: 0000000000002000 RDI: 0000000000000000
[ 149.684796] RBP: 0000000000000009 R08: 00000000ffffffff R09: 0000000000000000
[ 149.684797] R10: 0000561b532039d9 R11: 0000000000000246 R12: 0000000000000000
[ 149.684798] R13: 0000000000000000 R14: 00007f7c096b8170 R15: 0000000000000001
[ 149.684801] [ sync:ca5 ] we are first, vma: 000000008bb60d64, anon_vma:000000001da9f9de
[ 149.684825] [sync:__anon_vma_prepare] --- 207, offset: 1e7, flag: 8100073
[ 149.684827] CPU: 1 PID: 3237 Comm: sync Not tainted 4.18.0-next-20180814+ #13
[ 149.684827] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.684828] Call Trace:
[ 149.684831] dump_stack+0x63/0x85
[ 149.684833] __anon_vma_prepare+0xbe/0x180
[ 149.684835] __handle_mm_fault+0x1010/0x11d0
[ 149.684838] handle_mm_fault+0x100/0x210
[ 149.684839] __do_page_fault+0x260/0x500
[ 149.684842] do_page_fault+0x2e/0xf0
[ 149.684844] ? page_fault+0x8/0x30
[ 149.684846] page_fault+0x1e/0x30
[ 149.684848] RIP: 0033:0x7f7c094aea6f
[ 149.684850] Code: 0f 7f 44 17 f0 f3 0f 7f 07 c3 48 83 fa 40 77 16 f3 0f 7f 07 f3 0f 7f 47 10 f3 0f 7f 44 17 f0 f3 0f 7f 44 17 e0 c3 48 8d 4f 40 <f3> 0f 7f 07 48 83 e1 c0 f3 0f 7f 44 17 f0 f3 0f 7f 47 10 f3 0f 7f
[ 149.684851] RSP: 002b:00007ffe9c120018 EFLAGS: 00010206
[ 149.684852] RAX: 00007f7c0948a860 RBX: 00007f7c09697000 RCX: 00007f7c0948a8a0
[ 149.684853] RDX: 00000000000007a0 RSI: 0000000000000000 RDI: 00007f7c0948a860
[ 149.684855] RBP: 00007ffe9c120350 R08: 00007f7c0948a860 R09: 00000000001e7000
[ 149.684856] R10: 00007f7c0948b000 R11: 0000000000000206 R12: 00007ffe9c120050
[ 149.684857] R13: 00007ffe9c120438 R14: 0000000000000002 R15: 0000000000010301
[ 149.684859] [ sync:ca5 ] we are first, vma: 00000000a3274be7, anon_vma:00000000f20b4186
[ 149.684939] [anon_vma_clone] --- 288, i: 0
[ 149.684944] [ sync:ca5 ] we are first, vma: 00000000dd41f5e2, anon_vma:00000000f20b4186
[ 149.684973] [anon_vma_clone] --- 288, i: 0
[ 149.684977] [ sync:ca5 ] we are first, vma: 00000000afedfa46, anon_vma:00000000f7b86e6f
[ 149.684986] [anon_vma_clone] --- 288, i: 0
[ 149.684989] [ sync:ca5 ] we are first, vma: 00000000a9582a01, anon_vma:000000001c0903b6
[ 149.685013] [sync:__anon_vma_prepare] --- 207, offset: 7f7c0948b, flag: 8100073
[ 149.685015] CPU: 1 PID: 3237 Comm: sync Not tainted 4.18.0-next-20180814+ #13
[ 149.685016] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.685016] Call Trace:
[ 149.685020] dump_stack+0x63/0x85
[ 149.685022] __anon_vma_prepare+0xbe/0x180
[ 149.685025] __handle_mm_fault+0x112a/0x11d0
[ 149.685028] handle_mm_fault+0x100/0x210
[ 149.685030] __do_page_fault+0x260/0x500
[ 149.685032] do_page_fault+0x2e/0xf0
[ 149.685034] ? page_fault+0x8/0x30
[ 149.685036] page_fault+0x1e/0x30
[ 149.685037] RIP: 0033:0x7f7c090bf964
[ 149.685039] Code: 85 c0 0f 84 0e 01 00 00 8b 00 85 c0 0f 85 04 01 00 00 c7 05 4a 98 3c 00 01 00 00 00 48 8b 05 4b 95 3c 00 48 8d 0d 09 1e 19 00 <89> 1d 5e eb 3c 00 48 89 2d 4f eb 3c 00 ba 5f 00 00 00 4c 89 20 48
[ 149.685040] RSP: 002b:00007ffe9c120c50 EFLAGS: 00010246
[ 149.685042] RAX: 00007f7c0948c098 RBX: 0000000000000001 RCX: 00007f7c0925176d
[ 149.685043] RDX: 00007ffe9c120d08 RSI: 00007ffe9c120cf8 RDI: 000000000000037f
[ 149.685044] RBP: 00007ffe9c120cf8 R08: 0000000000000000 R09: 00000000000000c0
[ 149.685045] R10: 00007f7c096b79f0 R11: 0000000000000202 R12: 00007ffe9c120d08
[ 149.685046] R13: 00007ffe9c120d08 R14: 00007f7c09697000 R15: 00007f7c096b8170
[ 149.685050] [ sync:ca5 ] we are first, vma: 0000000070083e58, anon_vma:00000000ecd54e9d
[ 149.685128] [sync:__anon_vma_prepare] --- 207, offset: 561b54f71, flag: 8100073
[ 149.685133] CPU: 1 PID: 3237 Comm: sync Not tainted 4.18.0-next-20180814+ #13
[ 149.685137] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.685141] Call Trace:
[ 149.685146] dump_stack+0x63/0x85
[ 149.685151] __anon_vma_prepare+0xbe/0x180
[ 149.685154] __handle_mm_fault+0x112a/0x11d0
[ 149.685159] handle_mm_fault+0x100/0x210
[ 149.685163] __do_page_fault+0x260/0x500
[ 149.685169] do_page_fault+0x2e/0xf0
[ 149.685174] ? page_fault+0x8/0x30
[ 149.685177] page_fault+0x1e/0x30
[ 149.685182] RIP: 0033:0x7f7c09132083
[ 149.685187] Code: 48 8b 0d 68 84 35 00 0f 84 49 fe ff ff 45 31 ff 45 31 e4 48 29 d0 4c 01 f9 48 89 15 27 7c 35 00 4c 01 e0 48 83 c8 01 4d 85 f6 <48> 89 42 08 48 89 0d 3a 84 35 00 0f 84 d1 fa ff ff 49 83 ee 20 49
[ 149.685190] RSP: 002b:00007ffe9c120700 EFLAGS: 00010246
[ 149.685195] RAX: 0000000000021001 RBX: 00007f7c09489c40 RCX: 0000000000021000
[ 149.685198] RDX: 0000561b54f71000 RSI: 0000561b54f92000 RDI: 0000000000000000
[ 149.685201] RBP: 0000000000000250 R08: 0000000000000002 R09: 0000000000000000
[ 149.685206] R10: fffffffffffff000 R11: 00007f7c09489ca0 R12: 0000000000000000
[ 149.685211] R13: 00007f7c09489ca0 R14: 0000000000000000 R15: 0000000000000000
[ 149.685215] [ sync:ca5 ] we are first, vma: 0000000097f2641d, anon_vma:000000008db69126
[ 149.842189] [bash: anon_vma_fork] --======================000-343, vma: 00000000f521f1b0, pvma:00000000ed316ede
[ 149.842191] [anon_vma_clone] --- 288, i: 0
[ 149.842192] [ bash:c84 ] we are first, vma: 00000000f521f1b0, anon_vma:00000000046c3bf9
[ 149.842193] [bash: anon_vma_fork] --======================before-376, vma: 00000000f521f1b0, pvma:00000000ed316ede
[ 149.842194] [ bash:c84 ] we are following, vma: 00000000f521f1b0, anon_vma:00000000772aeced
[ 149.842195] [bash: anon_vma_fork] --======================end -379, vma: 00000000f521f1b0, pvma:00000000ed316ede
[ 149.842218] [bash: anon_vma_fork] --======================000-343, vma: 000000004fd6b44a, pvma:00000000c6ad7f50
[ 149.842218] [anon_vma_clone] --- 288, i: 0
[ 149.842219] [ bash:c84 ] we are first, vma: 000000004fd6b44a, anon_vma:00000000046c3bf9
[ 149.842220] [bash: anon_vma_fork] --======================before-376, vma: 000000004fd6b44a, pvma:00000000c6ad7f50
[ 149.842221] [ bash:c84 ] we are following, vma: 000000004fd6b44a, anon_vma:0000000011eda2a1
[ 149.842221] [bash: anon_vma_fork] --======================end -379, vma: 000000004fd6b44a, pvma:00000000c6ad7f50
[ 149.842223] [bash: anon_vma_fork] --======================000-343, vma: 00000000f607a4b7, pvma:000000001dd90e37
[ 149.842223] [anon_vma_clone] --- 288, i: 0
[ 149.842224] [ bash:c84 ] we are first, vma: 00000000f607a4b7, anon_vma:00000000f6ff305c
[ 149.842225] [bash: anon_vma_fork] --======================before-376, vma: 00000000f607a4b7, pvma:000000001dd90e37
[ 149.842225] [ bash:c84 ] we are following, vma: 00000000f607a4b7, anon_vma:00000000a63df52f
[ 149.842226] [bash: anon_vma_fork] --======================end -379, vma: 00000000f607a4b7, pvma:000000001dd90e37
[ 149.842227] [bash: anon_vma_fork] --======================000-343, vma: 00000000e19f5d19, pvma:00000000c0819d4f
[ 149.842228] [anon_vma_clone] --- 288, i: 0
[ 149.842229] [ bash:c84 ] we are first, vma: 00000000e19f5d19, anon_vma:000000000e05517e
[ 149.842229] [bash: anon_vma_fork] --======================before-376, vma: 00000000e19f5d19, pvma:00000000c0819d4f
[ 149.842230] [ bash:c84 ] we are following, vma: 00000000e19f5d19, anon_vma:0000000088bda710
[ 149.842230] [bash: anon_vma_fork] --======================end -379, vma: 00000000e19f5d19, pvma:00000000c0819d4f
[ 149.842241] [bash: anon_vma_fork] --======================000-343, vma: 00000000a5d3b10c, pvma:00000000ef85138e
[ 149.842242] [anon_vma_clone] --- 288, i: 0
[ 149.842243] [ bash:c84 ] we are first, vma: 00000000a5d3b10c, anon_vma:00000000e554f2bc
[ 149.842244] [bash: anon_vma_fork] --======================before-376, vma: 00000000a5d3b10c, pvma:00000000ef85138e
[ 149.842244] [ bash:c84 ] we are following, vma: 00000000a5d3b10c, anon_vma:000000009a91f219
[ 149.842245] [bash: anon_vma_fork] --======================end -379, vma: 00000000a5d3b10c, pvma:00000000ef85138e
[ 149.842248] [bash: anon_vma_fork] --======================000-343, vma: 00000000a8d7876e, pvma:00000000ee71e21f
[ 149.842248] [anon_vma_clone] --- 288, i: 0
[ 149.842249] [ bash:c84 ] we are first, vma: 00000000a8d7876e, anon_vma:00000000e554f2bc
[ 149.842250] [bash: anon_vma_fork] --======================before-376, vma: 00000000a8d7876e, pvma:00000000ee71e21f
[ 149.842250] [ bash:c84 ] we are following, vma: 00000000a8d7876e, anon_vma:00000000b28ef154
[ 149.842251] [bash: anon_vma_fork] --======================end -379, vma: 00000000a8d7876e, pvma:00000000ee71e21f
[ 149.842253] [bash: anon_vma_fork] --======================000-343, vma: 00000000ffcc3d61, pvma:000000007dfa5324
[ 149.842254] [anon_vma_clone] --- 288, i: 0
[ 149.842254] [ bash:c84 ] we are first, vma: 00000000ffcc3d61, anon_vma:000000001d1369dd
[ 149.842255] [bash: anon_vma_fork] --======================before-376, vma: 00000000ffcc3d61, pvma:000000007dfa5324
[ 149.842256] [ bash:c84 ] we are following, vma: 00000000ffcc3d61, anon_vma:00000000dca19bd1
[ 149.842256] [bash: anon_vma_fork] --======================end -379, vma: 00000000ffcc3d61, pvma:000000007dfa5324
[ 149.842258] [bash: anon_vma_fork] --======================000-343, vma: 0000000055e1eb65, pvma:00000000e2850eca
[ 149.842258] [anon_vma_clone] --- 288, i: 0
[ 149.842259] [ bash:c84 ] we are first, vma: 0000000055e1eb65, anon_vma:000000001d1369dd
[ 149.842259] [bash: anon_vma_fork] --======================before-376, vma: 0000000055e1eb65, pvma:00000000e2850eca
[ 149.842260] [ bash:c84 ] we are following, vma: 0000000055e1eb65, anon_vma:000000007a898812
[ 149.842261] [bash: anon_vma_fork] --======================end -379, vma: 0000000055e1eb65, pvma:00000000e2850eca
[ 149.842262] [bash: anon_vma_fork] --======================000-343, vma: 00000000428595cb, pvma:00000000b4e47091
[ 149.842263] [anon_vma_clone] --- 288, i: 0
[ 149.842264] [ bash:c84 ] we are first, vma: 00000000428595cb, anon_vma:0000000089b8c5b1
[ 149.842264] [bash: anon_vma_fork] --======================before-376, vma: 00000000428595cb, pvma:00000000b4e47091
[ 149.842277] [ bash:c84 ] we are following, vma: 00000000428595cb, anon_vma:00000000695f2406
[ 149.842278] [bash: anon_vma_fork] --======================end -379, vma: 00000000428595cb, pvma:00000000b4e47091
[ 149.842280] [bash: anon_vma_fork] --======================000-343, vma: 00000000e9b77bba, pvma:00000000c734e7a4
[ 149.842280] [anon_vma_clone] --- 288, i: 0
[ 149.842281] [ bash:c84 ] we are first, vma: 00000000e9b77bba, anon_vma:0000000089b8c5b1
[ 149.842281] [bash: anon_vma_fork] --======================before-376, vma: 00000000e9b77bba, pvma:00000000c734e7a4
[ 149.842282] [ bash:c84 ] we are following, vma: 00000000e9b77bba, anon_vma:000000003f1e09de
[ 149.842282] [bash: anon_vma_fork] --======================end -379, vma: 00000000e9b77bba, pvma:00000000c734e7a4
[ 149.842286] [bash: anon_vma_fork] --======================000-343, vma: 0000000081df7e7c, pvma:000000002b80295e
[ 149.842287] [anon_vma_clone] --- 288, i: 0
[ 149.842287] [ bash:c84 ] we are first, vma: 0000000081df7e7c, anon_vma:00000000f1f469fe
[ 149.842288] [bash: anon_vma_fork] --======================before-376, vma: 0000000081df7e7c, pvma:000000002b80295e
[ 149.842288] [ bash:c84 ] we are following, vma: 0000000081df7e7c, anon_vma:00000000a5027a04
[ 149.842289] [bash: anon_vma_fork] --======================end -379, vma: 0000000081df7e7c, pvma:000000002b80295e
[ 149.842290] [bash: anon_vma_fork] --======================000-343, vma: 0000000072889baf, pvma:00000000cc8f2c1e
[ 149.842291] [anon_vma_clone] --- 288, i: 0
[ 149.842291] [ bash:c84 ] we are first, vma: 0000000072889baf, anon_vma:00000000f1f469fe
[ 149.842292] [bash: anon_vma_fork] --======================before-376, vma: 0000000072889baf, pvma:00000000cc8f2c1e
[ 149.842293] [ bash:c84 ] we are following, vma: 0000000072889baf, anon_vma:00000000d540b7c6
[ 149.842293] [bash: anon_vma_fork] --======================end -379, vma: 0000000072889baf, pvma:00000000cc8f2c1e
[ 149.842295] [bash: anon_vma_fork] --======================000-343, vma: 000000004d51dfa3, pvma:000000007f5b3ae4
[ 149.842296] [anon_vma_clone] --- 288, i: 0
[ 149.842296] [ bash:c84 ] we are first, vma: 000000004d51dfa3, anon_vma:000000004af05085
[ 149.842297] [bash: anon_vma_fork] --======================before-376, vma: 000000004d51dfa3, pvma:000000007f5b3ae4
[ 149.842297] [ bash:c84 ] we are following, vma: 000000004d51dfa3, anon_vma:0000000095ecffab
[ 149.842298] [bash: anon_vma_fork] --======================end -379, vma: 000000004d51dfa3, pvma:000000007f5b3ae4
[ 149.842300] [bash: anon_vma_fork] --======================000-343, vma: 00000000e2af0f05, pvma:000000008efb84c5
[ 149.842300] [anon_vma_clone] --- 288, i: 0
[ 149.842301] [ bash:c84 ] we are first, vma: 00000000e2af0f05, anon_vma:000000004af05085
[ 149.842301] [bash: anon_vma_fork] --======================before-376, vma: 00000000e2af0f05, pvma:000000008efb84c5
[ 149.842302] [ bash:c84 ] we are following, vma: 00000000e2af0f05, anon_vma:000000003240314a
[ 149.842303] [bash: anon_vma_fork] --======================end -379, vma: 00000000e2af0f05, pvma:000000008efb84c5
[ 149.842304] [bash: anon_vma_fork] --======================000-343, vma: 00000000d88f53b5, pvma:00000000aaa37067
[ 149.842304] [anon_vma_clone] --- 288, i: 0
[ 149.842305] [ bash:c84 ] we are first, vma: 00000000d88f53b5, anon_vma:00000000b70e34e4
[ 149.842305] [bash: anon_vma_fork] --======================before-376, vma: 00000000d88f53b5, pvma:00000000aaa37067
[ 149.842306] [ bash:c84 ] we are following, vma: 00000000d88f53b5, anon_vma:00000000991bc992
[ 149.842307] [bash: anon_vma_fork] --======================end -379, vma: 00000000d88f53b5, pvma:00000000aaa37067
[ 149.842308] [bash: anon_vma_fork] --======================000-343, vma: 0000000038a2ae53, pvma:0000000083cc8caf
[ 149.842308] [anon_vma_clone] --- 288, i: 0
[ 149.842309] [ bash:c84 ] we are first, vma: 0000000038a2ae53, anon_vma:00000000c10485db
[ 149.842310] [bash: anon_vma_fork] --======================before-376, vma: 0000000038a2ae53, pvma:0000000083cc8caf
[ 149.842310] [ bash:c84 ] we are following, vma: 0000000038a2ae53, anon_vma:00000000872a1ee8
[ 149.842311] [bash: anon_vma_fork] --======================end -379, vma: 0000000038a2ae53, pvma:0000000083cc8caf
[ 149.842312] [bash: anon_vma_fork] --======================000-343, vma: 000000009ad7e8ea, pvma:0000000066c36814
[ 149.842313] [anon_vma_clone] --- 288, i: 0
[ 149.842313] [ bash:c84 ] we are first, vma: 000000009ad7e8ea, anon_vma:00000000c10485db
[ 149.842314] [bash: anon_vma_fork] --======================before-376, vma: 000000009ad7e8ea, pvma:0000000066c36814
[ 149.842315] [ bash:c84 ] we are following, vma: 000000009ad7e8ea, anon_vma:00000000b6492e45
[ 149.842315] [bash: anon_vma_fork] --======================end -379, vma: 000000009ad7e8ea, pvma:0000000066c36814
[ 149.842317] [bash: anon_vma_fork] --======================000-343, vma: 00000000793ee1cf, pvma:000000006083d969
[ 149.842317] [anon_vma_clone] --- 288, i: 0
[ 149.842318] [ bash:c84 ] we are first, vma: 00000000793ee1cf, anon_vma:000000007849df63
[ 149.842319] [bash: anon_vma_fork] --======================before-376, vma: 00000000793ee1cf, pvma:000000006083d969
[ 149.842319] [ bash:c84 ] we are following, vma: 00000000793ee1cf, anon_vma:00000000174bd6e0
[ 149.842320] [bash: anon_vma_fork] --======================end -379, vma: 00000000793ee1cf, pvma:000000006083d969
[ 149.842321] [bash: anon_vma_fork] --======================000-343, vma: 000000009491df2f, pvma:00000000825806d6
[ 149.842322] [anon_vma_clone] --- 288, i: 0
[ 149.842322] [ bash:c84 ] we are first, vma: 000000009491df2f, anon_vma:000000007849df63
[ 149.842323] [bash: anon_vma_fork] --======================before-376, vma: 000000009491df2f, pvma:00000000825806d6
[ 149.842324] [ bash:c84 ] we are following, vma: 000000009491df2f, anon_vma:0000000014ae69ab
[ 149.842324] [bash: anon_vma_fork] --======================end -379, vma: 000000009491df2f, pvma:00000000825806d6
[ 149.842325] [bash: anon_vma_fork] --======================000-343, vma: 00000000ee730a07, pvma:00000000aed964a5
[ 149.842326] [anon_vma_clone] --- 288, i: 0
[ 149.842327] [ bash:c84 ] we are first, vma: 00000000ee730a07, anon_vma:00000000dab21a41
[ 149.842327] [bash: anon_vma_fork] --======================before-376, vma: 00000000ee730a07, pvma:00000000aed964a5
[ 149.842328] [ bash:c84 ] we are following, vma: 00000000ee730a07, anon_vma:0000000032d301b6
[ 149.842328] [bash: anon_vma_fork] --======================end -379, vma: 00000000ee730a07, pvma:00000000aed964a5
[ 149.842331] [bash: anon_vma_fork] --======================000-343, vma: 00000000205315fb, pvma:000000006c4526a2
[ 149.842331] [anon_vma_clone] --- 288, i: 0
[ 149.842332] [ bash:c84 ] we are first, vma: 00000000205315fb, anon_vma:00000000ff8a8a0f
[ 149.842333] [bash: anon_vma_fork] --======================before-376, vma: 00000000205315fb, pvma:000000006c4526a2
[ 149.842333] [ bash:c84 ] we are following, vma: 00000000205315fb, anon_vma:0000000047296660
[ 149.842334] [bash: anon_vma_fork] --======================end -379, vma: 00000000205315fb, pvma:000000006c4526a2
[ 149.842335] [bash: anon_vma_fork] --======================000-343, vma: 0000000026d123d7, pvma:00000000094b94f7
[ 149.842336] [anon_vma_clone] --- 288, i: 0
[ 149.842336] [ bash:c84 ] we are first, vma: 0000000026d123d7, anon_vma:00000000ff8a8a0f
[ 149.842337] [bash: anon_vma_fork] --======================before-376, vma: 0000000026d123d7, pvma:00000000094b94f7
[ 149.842337] [ bash:c84 ] we are following, vma: 0000000026d123d7, anon_vma:0000000071402125
[ 149.842338] [bash: anon_vma_fork] --======================end -379, vma: 0000000026d123d7, pvma:00000000094b94f7
[ 149.842339] [bash: anon_vma_fork] --======================000-343, vma: 00000000a332f89c, pvma:000000002872592f
[ 149.842339] [anon_vma_clone] --- 288, i: 0
[ 149.842340] [ bash:c84 ] we are first, vma: 00000000a332f89c, anon_vma:00000000f18107aa
[ 149.842341] [bash: anon_vma_fork] --======================before-376, vma: 00000000a332f89c, pvma:000000002872592f
[ 149.842341] [ bash:c84 ] we are following, vma: 00000000a332f89c, anon_vma:000000009cd14058
[ 149.842342] [bash: anon_vma_fork] --======================end -379, vma: 00000000a332f89c, pvma:000000002872592f
[ 149.842343] [bash: anon_vma_fork] --======================000-343, vma: 000000004d692244, pvma:00000000018555a9
[ 149.842343] [anon_vma_clone] --- 288, i: 0
[ 149.842344] [ bash:c84 ] we are first, vma: 000000004d692244, anon_vma:0000000022cf0eba
[ 149.842345] [bash: anon_vma_fork] --======================before-376, vma: 000000004d692244, pvma:00000000018555a9
[ 149.842345] [ bash:c84 ] we are following, vma: 000000004d692244, anon_vma:00000000879a1edf
[ 149.842346] [bash: anon_vma_fork] --======================end -379, vma: 000000004d692244, pvma:00000000018555a9
[ 149.842477] [bash:__anon_vma_prepare] --- 207, offset: 7fffffffe, flag: 8118173
[ 149.842478] CPU: 4 PID: 3238 Comm: bash Not tainted 4.18.0-next-20180814+ #13
[ 149.842479] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842479] Call Trace:
[ 149.842484] dump_stack+0x63/0x85
[ 149.842486] __anon_vma_prepare+0xbe/0x180
[ 149.842487] __handle_mm_fault+0x112a/0x11d0
[ 149.842489] handle_mm_fault+0x100/0x210
[ 149.842491] __get_user_pages+0x135/0x6c0
[ 149.842492] get_user_pages_remote+0x122/0x1a0
[ 149.842494] copy_strings.isra.27+0x15a/0x440
[ 149.842496] copy_strings_kernel+0x39/0x50
[ 149.842497] __do_execve_file.isra.36+0x518/0x860
[ 149.842499] __x64_sys_execve+0x39/0x50
[ 149.842501] do_syscall_64+0x5a/0x110
[ 149.842503] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 149.842504] RIP: 0033:0x7f0ffdb2de37
[ 149.842505] Code: e2 f7 d8 64 41 89 01 eb da 66 2e 0f 1f 84 00 00 00 00 00 f7 d8 64 41 89 01 eb d6 0f 1f 84 00 00 00 00 00 b8 3b 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 21 60 30 00 f7 d8 64 89 01 48
[ 149.842506] RSP: 002b:00007fff0eaf5618 EFLAGS: 00000246 ORIG_RAX: 000000000000003b
[ 149.842507] RAX: ffffffffffffffda RBX: 0000556a330a4e50 RCX: 00007f0ffdb2de37
[ 149.842508] RDX: 0000556a330a45d0 RSI: 0000556a32f8a8e0 RDI: 0000556a330a4e50
[ 149.842508] RBP: 0000556a330a4e50 R08: 00007fff0eaf55e0 R09: 0000000000000000
[ 149.842509] R10: 0000000000000008 R11: 0000000000000246 R12: 0000000000000001
[ 149.842509] R13: 0000556a32f8a8e0 R14: 0000556a330a45d0 R15: 0000000000000000
[ 149.842511] [ bash:ca6 ] we are first, vma: 00000000c16e9c32, anon_vma:000000006e0d96b8
[ 149.842582] [ls:__anon_vma_prepare] --- 207, offset: 1e, flag: 8100873
[ 149.842583] CPU: 4 PID: 3238 Comm: ls Not tainted 4.18.0-next-20180814+ #13
[ 149.842584] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842584] Call Trace:
[ 149.842586] dump_stack+0x63/0x85
[ 149.842587] __anon_vma_prepare+0xbe/0x180
[ 149.842589] ? __pmd_alloc+0x11b/0x170
[ 149.842590] __handle_mm_fault+0x1010/0x11d0
[ 149.842591] handle_mm_fault+0x100/0x210
[ 149.842593] __do_page_fault+0x260/0x500
[ 149.842594] do_page_fault+0x2e/0xf0
[ 149.842595] page_fault+0x1e/0x30
[ 149.842596] RIP: 0010:__clear_user+0x1e/0x50
[ 149.842597] Code: 41 5d 41 5e 5d c3 90 90 90 90 90 90 0f 1f 44 00 00 55 48 89 e5 0f 01 cb 48 89 f0 48 c1 ee 03 83 e0 07 48 89 f1 48 85 c9 74 0f <48> c7 07 00 00 00 00 48 83 c7 08 ff c9 75 f1 48 89 c1 85 c9 74 0a
[ 149.842598] RSP: 0018:ffffb90d04967d30 EFLAGS: 00050202
[ 149.842599] RAX: 0000000000000000 RBX: ffff963e8ec91c80 RCX: 00000000000001b3
[ 149.842599] RDX: 00007ffffffff000 RSI: 00000000000001b3 RDI: 00005652b623b268
[ 149.842600] RBP: ffffb90d04967d30 R08: ffffffffae23c380 R09: ffff963e9e70cd48
[ 149.842600] R10: ffff963e9e70c728 R11: 0000000000000000 R12: ffff963e4a2bb000
[ 149.842601] R13: 00005652b623b268 R14: ffffb90d04964000 R15: ffff963e8f223300
[ 149.842602] ? vma_compute_subtree_gap+0x80/0x80
[ 149.842603] clear_user+0x2b/0x40
[ 149.842605] load_elf_binary+0x13d0/0x1730
[ 149.842608] ? load_misc_binary+0x51/0x470 [binfmt_misc]
[ 149.842610] search_binary_handler+0xa4/0x1d0
[ 149.842611] __do_execve_file.isra.36+0x5b9/0x860
[ 149.842613] __x64_sys_execve+0x39/0x50
[ 149.842614] do_syscall_64+0x5a/0x110
[ 149.842615] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 149.842616] RIP: 0033:0x7f0ffdb2de37
[ 149.842618] Code: Bad RIP value.
[ 149.842619] RSP: 002b:00007fff0eaf5618 EFLAGS: 00000246 ORIG_RAX: 000000000000003b
[ 149.842620] RAX: ffffffffffffffda RBX: 0000556a330a4e50 RCX: 00007f0ffdb2de37
[ 149.842620] RDX: 0000556a330a45d0 RSI: 0000556a32f8a8e0 RDI: 0000556a330a4e50
[ 149.842621] RBP: 0000556a330a4e50 R08: 00007fff0eaf55e0 R09: 0000000000000000
[ 149.842621] R10: 0000000000000008 R11: 0000000000000246 R12: 0000000000000001
[ 149.842622] R13: 0000556a32f8a8e0 R14: 0000556a330a45d0 R15: 0000000000000000
[ 149.842623] [ ls:ca6 ] we are first, vma: 00000000d755801d, anon_vma:000000002d035683
[ 149.842633] [ls:__anon_vma_prepare] --- 207, offset: 27, flag: 8100873
[ 149.842634] CPU: 4 PID: 3238 Comm: ls Not tainted 4.18.0-next-20180814+ #13
[ 149.842635] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842635] Call Trace:
[ 149.842636] dump_stack+0x63/0x85
[ 149.842638] __anon_vma_prepare+0xbe/0x180
[ 149.842639] ? __pmd_alloc+0x11b/0x170
[ 149.842640] __handle_mm_fault+0x1010/0x11d0
[ 149.842641] handle_mm_fault+0x100/0x210
[ 149.842642] __do_page_fault+0x260/0x500
[ 149.842643] do_page_fault+0x2e/0xf0
[ 149.842644] page_fault+0x1e/0x30
[ 149.842645] RIP: 0010:__clear_user+0x1e/0x50
[ 149.842646] Code: 41 5d 41 5e 5d c3 90 90 90 90 90 90 0f 1f 44 00 00 55 48 89 e5 0f 01 cb 48 89 f0 48 c1 ee 03 83 e0 07 48 89 f1 48 85 c9 74 0f <48> c7 07 00 00 00 00 48 83 c7 08 ff c9 75 f1 48 89 c1 85 c9 74 0a
[ 149.842646] RSP: 0018:ffffb90d04967d30 EFLAGS: 00050206
[ 149.842647] RAX: 0000000000000000 RBX: ffff963e8ec91c80 RCX: 0000000000000005
[ 149.842648] RDX: 00007ffffffff000 RSI: 0000000000000005 RDI: 00007f4a5f17afd8
[ 149.842648] RBP: ffffb90d04967d30 R08: ffffffffae22be00 R09: 0000000000000000
[ 149.842649] R10: ffff963e94dfdb88 R11: ffff963e8f24af00 R12: ffff963e4a2bb000
[ 149.842649] R13: 0000000000000007 R14: ffffb90d04964000 R15: ffff963e8f223300
[ 149.842651] ? vmacache_find+0xb0/0xb0
[ 149.842652] clear_user+0x2b/0x40
[ 149.842653] load_elf_binary+0x1701/0x1730
[ 149.842655] ? load_misc_binary+0x51/0x470 [binfmt_misc]
[ 149.842656] search_binary_handler+0xa4/0x1d0
[ 149.842658] __do_execve_file.isra.36+0x5b9/0x860
[ 149.842659] __x64_sys_execve+0x39/0x50
[ 149.842660] do_syscall_64+0x5a/0x110
[ 149.842662] entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 149.842662] RIP: 0033:0x7f0ffdb2de37
[ 149.842663] Code: Bad RIP value.
[ 149.842664] RSP: 002b:00007fff0eaf5618 EFLAGS: 00000246 ORIG_RAX: 000000000000003b
[ 149.842665] RAX: ffffffffffffffda RBX: 0000556a330a4e50 RCX: 00007f0ffdb2de37
[ 149.842665] RDX: 0000556a330a45d0 RSI: 0000556a32f8a8e0 RDI: 0000556a330a4e50
[ 149.842666] RBP: 0000556a330a4e50 R08: 00007fff0eaf55e0 R09: 0000000000000000
[ 149.842666] R10: 0000000000000008 R11: 0000000000000246 R12: 0000000000000001
[ 149.842667] R13: 0000556a32f8a8e0 R14: 0000556a330a45d0 R15: 0000000000000000
[ 149.842668] [ ls:ca6 ] we are first, vma: 00000000de7a4094, anon_vma:00000000e8b979b6
[ 149.842689] [ls:__anon_vma_prepare] --- 207, offset: 7f4a5f17b, flag: 8100073
[ 149.842689] CPU: 4 PID: 3238 Comm: ls Not tainted 4.18.0-next-20180814+ #13
[ 149.842690] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842690] Call Trace:
[ 149.842691] dump_stack+0x63/0x85
[ 149.842693] __anon_vma_prepare+0xbe/0x180
[ 149.842694] __handle_mm_fault+0x112a/0x11d0
[ 149.842695] handle_mm_fault+0x100/0x210
[ 149.842696] __do_page_fault+0x260/0x500
[ 149.842697] do_page_fault+0x2e/0xf0
[ 149.842698] ? page_fault+0x8/0x30
[ 149.842699] page_fault+0x1e/0x30
[ 149.842699] RIP: 0033:0x7f4a5ef6c913
[ 149.842700] Code: 89 f5 55 53 48 83 ec 58 48 8b 07 48 89 3d 5d d5 20 00 48 83 c7 08 48 89 3d 3a ce 20 00 89 05 3c ce 20 00 48 98 48 8d 7c c7 08 <48> 89 3d fe e7 20 00 48 83 3f 00 48 89 f8 74 0a 48 83 c0 08 48 83
[ 149.842701] RSP: 002b:00007ffd9e657640 EFLAGS: 00010202
[ 149.842701] RAX: 0000000000000002 RBX: 0000000000000007 RCX: 0000000000000008
[ 149.842702] RDX: 0000008141c34388 RSI: 00007f4a5ef54660 RDI: 00007ffd9e657770
[ 149.842702] RBP: 00007ffd9e657740 R08: 00007f4a5ef522d8 R09: 00007f4a5ef6b840
[ 149.842703] R10: 0000000000000031 R11: 000000006ffffdff R12: 00007ffd9e657750
[ 149.842704] R13: 00007f4a5ef54660 R14: 00007f4a5ef52000 R15: 00007f4a5ef52480
[ 149.842705] [ ls:ca6 ] we are first, vma: 00000000d04f2902, anon_vma:000000006bc6c853
[ 149.842775] [ls:__anon_vma_prepare] --- 207, offset: 7f4a5f15a, flag: 8100073
[ 149.842776] CPU: 4 PID: 3238 Comm: ls Not tainted 4.18.0-next-20180814+ #13
[ 149.842777] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842777] Call Trace:
[ 149.842778] dump_stack+0x63/0x85
[ 149.842780] __anon_vma_prepare+0xbe/0x180
[ 149.842781] __handle_mm_fault+0x112a/0x11d0
[ 149.842782] handle_mm_fault+0x100/0x210
[ 149.842783] __do_page_fault+0x260/0x500
[ 149.842784] do_page_fault+0x2e/0xf0
[ 149.842785] ? page_fault+0x8/0x30
[ 149.842786] page_fault+0x1e/0x30
[ 149.842786] RIP: 0033:0x7f4a5ef5e117
[ 149.842787] Code: e1 04 49 8d bc 29 91 04 00 00 4c 89 4c 24 08 e8 bf 4d ff ff 48 85 c0 48 89 c3 0f 84 dc 01 00 00 4c 8b 4c 24 08 4c 8b 54 24 20 <48> 89 43 28 48 8b 54 24 18 4e 8d 8c 08 70 04 00 00 4c 89 d6 4c 89
[ 149.842788] RSP: 002b:00007ffd9e656c00 EFLAGS: 00010206
[ 149.842788] RAX: 00007f4a5f15a000 RBX: 00007f4a5f15a000 RCX: 00007f4a5ef6ef43
[ 149.842789] RDX: 00007f4a5f15a000 RSI: 0000000000002000 RDI: 0000000000000000
[ 149.842790] RBP: 000000000000000f R08: 00000000ffffffff R09: 0000000000000000
[ 149.842790] R10: 00005652b601c181 R11: 0000000000000246 R12: 0000000000000000
[ 149.842791] R13: 0000000000000000 R14: 00007f4a5f17b170 R15: 0000000000000001
[ 149.842792] [ ls:ca6 ] we are first, vma: 00000000ea28c5f0, anon_vma:0000000023de261e
[ 149.842804] [ls:__anon_vma_prepare] --- 207, offset: 24, flag: 8100073
[ 149.842805] CPU: 4 PID: 3238 Comm: ls Not tainted 4.18.0-next-20180814+ #13
[ 149.842805] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842805] Call Trace:
[ 149.842806] dump_stack+0x63/0x85
[ 149.842808] __anon_vma_prepare+0xbe/0x180
[ 149.842809] __handle_mm_fault+0x1010/0x11d0
[ 149.842810] handle_mm_fault+0x100/0x210
[ 149.842811] __do_page_fault+0x260/0x500
[ 149.842812] do_page_fault+0x2e/0xf0
[ 149.842813] ? page_fault+0x8/0x30
[ 149.842814] page_fault+0x1e/0x30
[ 149.842814] RIP: 0033:0x7f4a5ef71a6f
[ 149.842815] Code: 0f 7f 44 17 f0 f3 0f 7f 07 c3 48 83 fa 40 77 16 f3 0f 7f 07 f3 0f 7f 47 10 f3 0f 7f 44 17 f0 f3 0f 7f 44 17 e0 c3 48 8d 4f 40 <f3> 0f 7f 07 48 83 e1 c0 f3 0f 7f 44 17 f0 f3 0f 7f 47 10 f3 0f 7f
[ 149.842815] RSP: 002b:00007ffd9e656ad8 EFLAGS: 00010202
[ 149.842816] RAX: 00007f4a5ef4f458 RBX: 00007f4a5f15a000 RCX: 00007f4a5ef4f498
[ 149.842817] RDX: 0000000000000ba8 RSI: 0000000000000000 RDI: 00007f4a5ef4f458
[ 149.842817] RBP: 00007ffd9e656db0 R08: 00007f4a5ef4f458 R09: 0000000000024000
[ 149.842818] R10: 00007f4a5ef50000 R11: 0000000000000206 R12: 00007ffd9e656b10
[ 149.842818] R13: 00007ffd9e656e98 R14: 0000000000000002 R15: 0000000000010301
[ 149.842819] [ ls:ca6 ] we are first, vma: 000000004e278d01, anon_vma:00000000cd2dfdfb
[ 149.842852] [ls:__anon_vma_prepare] --- 207, offset: 1e7, flag: 8100073
[ 149.842853] CPU: 4 PID: 3238 Comm: ls Not tainted 4.18.0-next-20180814+ #13
[ 149.842853] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842853] Call Trace:
[ 149.842855] dump_stack+0x63/0x85
[ 149.842856] __anon_vma_prepare+0xbe/0x180
[ 149.842857] __handle_mm_fault+0x1010/0x11d0
[ 149.842858] handle_mm_fault+0x100/0x210
[ 149.842859] __do_page_fault+0x260/0x500
[ 149.842860] do_page_fault+0x2e/0xf0
[ 149.842861] ? page_fault+0x8/0x30
[ 149.842862] page_fault+0x1e/0x30
[ 149.842862] RIP: 0033:0x7f4a5ef71a6f
[ 149.842863] Code: 0f 7f 44 17 f0 f3 0f 7f 07 c3 48 83 fa 40 77 16 f3 0f 7f 07 f3 0f 7f 47 10 f3 0f 7f 44 17 f0 f3 0f 7f 44 17 e0 c3 48 8d 4f 40 <f3> 0f 7f 07 48 83 e1 c0 f3 0f 7f 44 17 f0 f3 0f 7f 47 10 f3 0f 7f
[ 149.842864] RSP: 002b:00007ffd9e656a48 EFLAGS: 00010206
[ 149.842864] RAX: 00007f4a5ed25860 RBX: 00007f4a5f15a4f0 RCX: 00007f4a5ed258a0
[ 149.842865] RDX: 00000000000007a0 RSI: 0000000000000000 RDI: 00007f4a5ed25860
[ 149.842865] RBP: 00007ffd9e656d80 R08: 00007f4a5ed25860 R09: 00000000001e7000
[ 149.842866] R10: 00007f4a5ed26000 R11: 0000000000000206 R12: 00007ffd9e656a80
[ 149.842866] R13: 00007ffd9e656e68 R14: 0000000000000002 R15: 0000000000010301
[ 149.842867] [ ls:ca6 ] we are first, vma: 000000008a9855e0, anon_vma:00000000a01aa7af
[ 149.842900] [ls:__anon_vma_prepare] --- 207, offset: 70, flag: 8100073
[ 149.842900] CPU: 4 PID: 3238 Comm: ls Not tainted 4.18.0-next-20180814+ #13
[ 149.842901] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842901] Call Trace:
[ 149.842902] dump_stack+0x63/0x85
[ 149.842904] __anon_vma_prepare+0xbe/0x180
[ 149.842905] __handle_mm_fault+0x1010/0x11d0
[ 149.842906] handle_mm_fault+0x100/0x210
[ 149.842907] __do_page_fault+0x260/0x500
[ 149.842908] do_page_fault+0x2e/0xf0
[ 149.842909] ? page_fault+0x8/0x30
[ 149.842910] page_fault+0x1e/0x30
[ 149.842910] RIP: 0033:0x7f4a5ef71a6f
[ 149.842911] Code: 0f 7f 44 17 f0 f3 0f 7f 07 c3 48 83 fa 40 77 16 f3 0f 7f 07 f3 0f 7f 47 10 f3 0f 7f 44 17 f0 f3 0f 7f 44 17 e0 c3 48 8d 4f 40 <f3> 0f 7f 07 48 83 e1 c0 f3 0f 7f 44 17 f0 f3 0f 7f 47 10 f3 0f 7f
[ 149.842912] RSP: 002b:00007ffd9e656998 EFLAGS: 00010202
[ 149.842912] RAX: 00007f4a5e938030 RBX: 00007f4a5f15a9e0 RCX: 00007f4a5e938070
[ 149.842913] RDX: 00000000000000d8 RSI: 0000000000000000 RDI: 00007f4a5e938030
[ 149.842913] RBP: 00007ffd9e656c40 R08: 00007f4a5e938030 R09: 0000000000070000
[ 149.842914] R10: 00007f4a5e938108 R11: 0000000000000206 R12: 00007ffd9e6569d0
[ 149.842914] R13: 00007ffd9e656d28 R14: 0000000000000002 R15: 0000000000010301
[ 149.842915] [ ls:ca6 ] we are first, vma: 00000000ee730a07, anon_vma:00000000af13c446
[ 149.842943] [ls:__anon_vma_prepare] --- 207, offset: 2, flag: 8100073
[ 149.842944] CPU: 4 PID: 3238 Comm: ls Not tainted 4.18.0-next-20180814+ #13
[ 149.842944] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842944] Call Trace:
[ 149.842946] dump_stack+0x63/0x85
[ 149.842947] __anon_vma_prepare+0xbe/0x180
[ 149.842948] __handle_mm_fault+0x1010/0x11d0
[ 149.842949] handle_mm_fault+0x100/0x210
[ 149.842950] __do_page_fault+0x260/0x500
[ 149.842951] do_page_fault+0x2e/0xf0
[ 149.842952] ? page_fault+0x8/0x30
[ 149.842953] page_fault+0x1e/0x30
[ 149.842954] RIP: 0033:0x7f4a5ef71a6f
[ 149.842954] Code: 0f 7f 44 17 f0 f3 0f 7f 07 c3 48 83 fa 40 77 16 f3 0f 7f 07 f3 0f 7f 47 10 f3 0f 7f 44 17 f0 f3 0f 7f 44 17 e0 c3 48 8d 4f 40 <f3> 0f 7f 07 48 83 e1 c0 f3 0f 7f 44 17 f0 f3 0f 7f 47 10 f3 0f 7f
[ 149.842955] RSP: 002b:00007ffd9e656968 EFLAGS: 00010206
[ 149.842956] RAX: 00007f4a5e6c6088 RBX: 00007f4a5f15aee0 RCX: 00007f4a5e6c60c8
[ 149.842956] RDX: 0000000000000088 RSI: 0000000000000000 RDI: 00007f4a5e6c6088
[ 149.842957] RBP: 00007ffd9e656c10 R08: 00007f4a5e6c6088 R09: 0000000000002000
[ 149.842957] R10: 00007f4a5e6c6110 R11: 0000000000000206 R12: 00007ffd9e6569a0
[ 149.842958] R13: 00007ffd9e656cf8 R14: 0000000000000002 R15: 0000000000010301
[ 149.842959] [ ls:ca6 ] we are first, vma: 00000000793ee1cf, anon_vma:000000007e37b9b8
[ 149.842985] [ls:__anon_vma_prepare] --- 207, offset: 19, flag: 8100073
[ 149.842986] CPU: 4 PID: 3238 Comm: ls Not tainted 4.18.0-next-20180814+ #13
[ 149.842986] Hardware name: Dell Inc. Precision 5520/0R6JFH, BIOS 1.6.2 11/12/2017
[ 149.842987] Call Trace:
[ 149.842988] dump_stack+0x63/0x85
[ 149.842990] __anon_vma_prepare+0xbe/0x180
[ 149.842990] __handle_mm_fault+0x1010/0x11d0
[ 149.842992] handle_mm_fault+0x100/0x210
[ 149.842992] __do_page_fault+0x260/0x500
[ 149.842993] do_page_fault+0x2e/0xf0
[ 149.842995] ? page_fault+0x8/0x30
[ 149.842996] page_fault+0x1e/0x30
[ 149.842996] RIP: 0033:0x7f4a5ef71a6f
[ 149.842997] Code: 0f 7f 44 17 f0 f3 0f 7f 07 c3 48 83 fa 40 77 16 f3 0f 7f 07 f3 0f 7f 47 10 f3 0f 7f 44 17 f0 f3 0f 7f 44 17 e0 c3 48 8d 4f 40 <f3> 0f 7f 07 48 83 e1 c0 f3 0f 7f 44 17 f0 f3 0f 7f 47 10 f3 0f 7f
[ 149.842997] RSP: 002b:00007ffd9e6568a8 EFLAGS: 00010202
[ 149.842998] RAX: 00007f4a5e4be2f0 RBX: 00007f4a5f15b470 RCX: 00007f4a5e4be330
[ 149.842999] RDX: 0000000000000d10 RSI: 0000000000000000 RDI: 00007f4a5e4be2f0
[ 149.842999] RBP: 00007ffd9e656bb0 R08: 00007f4a5e4be2f0 R09: 0000000000019000
[ 149.843000] R10: 00007f4a5e4bf000 R11: 0000000000000206 R12: 00007ffd9e6568e0