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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
|
other: 0.899
mistranslation: 0.861
instruction: 0.854
device: 0.853
vnc: 0.851
assembly: 0.841
semantic: 0.835
boot: 0.827
graphic: 0.824
network: 0.822
socket: 0.820
KVM: 0.817
[Qemu-devel] 答复: Re: 答复: Re: 答复: Re: [BUG]COLO failover hang
amost like wikiï¼but panic in Primary Node.
setp:
1
Primary Node.
x86_64-softmmu/qemu-system-x86_64 -enable-kvm -boot c -m 2048 -smp 2 -qmp stdio
-vnc :7 -name primary -cpu qemu64,+kvmclock -device piix3-usb-uhci -usb
-usbdevice tablet\
-drive
if=virtio,id=colo-disk0,driver=quorum,read-pattern=fifo,vote-threshold=1,
children.0.file.filename=/mnt/sdd/pure_IMG/linux/redhat/rhel_6.5_64_2U_ide,children.0.driver=qcow2
-S \
-netdev
tap,id=hn1,vhost=off,script=/etc/qemu-ifup2,downscript=/etc/qemu-ifdown2 \
-device e1000,id=e1,netdev=hn1,mac=52:a4:00:12:78:67 \
-netdev
tap,id=hn0,vhost=off,script=/etc/qemu-ifup,downscript=/etc/qemu-ifdown \
-device e1000,id=e0,netdev=hn0,mac=52:a4:00:12:78:66 \
-chardev socket,id=mirror0,host=9.61.1.8,port=9003,server,nowait -chardev
socket,id=compare1,host=9.61.1.8,port=9004,server,nowait \
-chardev socket,id=compare0,host=9.61.1.8,port=9001,server,nowait -chardev
socket,id=compare0-0,host=9.61.1.8,port=9001 \
-chardev socket,id=compare_out,host=9.61.1.8,port=9005,server,nowait \
-chardev socket,id=compare_out0,host=9.61.1.8,port=9005 \
-object filter-mirror,id=m0,netdev=hn0,queue=tx,outdev=mirror0 \
-object filter-redirector,netdev=hn0,id=redire0,queue=rx,indev=compare_out
-object filter-redirector,netdev=hn0,id=redire1,queue=rx,outdev=compare0 \
-object
colo-compare,id=comp0,primary_in=compare0-0,secondary_in=compare1,outdev=compare_out0
2 Second node:
x86_64-softmmu/qemu-system-x86_64 -boot c -m 2048 -smp 2 -qmp stdio -vnc :7
-name secondary -enable-kvm -cpu qemu64,+kvmclock -device piix3-usb-uhci -usb
-usbdevice tablet\
-drive
if=none,id=colo-disk0,file.filename=/mnt/sdd/pure_IMG/linux/redhat/rhel_6.5_64_2U_ide,driver=qcow2,node-name=node0
\
-drive
if=virtio,id=active-disk0,driver=replication,mode=secondary,file.driver=qcow2,top-id=active-disk0,file.file.filename=/mnt/ramfstest/active_disk.img,file.backing.driver=qcow2,file.backing.file.filename=/mnt/ramfstest/hidden_disk.img,file.backing.backing=colo-disk0
\
-netdev
tap,id=hn1,vhost=off,script=/etc/qemu-ifup2,downscript=/etc/qemu-ifdown2 \
-device e1000,id=e1,netdev=hn1,mac=52:a4:00:12:78:67 \
-netdev
tap,id=hn0,vhost=off,script=/etc/qemu-ifup,downscript=/etc/qemu-ifdown \
-device e1000,netdev=hn0,mac=52:a4:00:12:78:66 -chardev
socket,id=red0,host=9.61.1.8,port=9003 \
-chardev socket,id=red1,host=9.61.1.8,port=9004 \
-object filter-redirector,id=f1,netdev=hn0,queue=tx,indev=red0 \
-object filter-redirector,id=f2,netdev=hn0,queue=rx,outdev=red1 \
-object filter-rewriter,id=rew0,netdev=hn0,queue=all -incoming tcp:0:8888
3 Secondary node:
{'execute':'qmp_capabilities'}
{ 'execute': 'nbd-server-start',
'arguments': {'addr': {'type': 'inet', 'data': {'host': '9.61.1.7', 'port':
'8889'} } }
}
{'execute': 'nbd-server-add', 'arguments': {'device': 'colo-disk0', 'writable':
true } }
4:Primary Nodeï¼
{'execute':'qmp_capabilities'}
{ 'execute': 'human-monitor-command',
'arguments': {'command-line': 'drive_add -n buddy
driver=replication,mode=primary,file.driver=nbd,file.host=9.61.1.7,file.port=8889,file.export=colo-disk0,node-name=node0'}}
{ 'execute':'x-blockdev-change', 'arguments':{'parent': 'colo-disk0', 'node':
'node0' } }
{ 'execute': 'migrate-set-capabilities',
'arguments': {'capabilities': [ {'capability': 'x-colo', 'state': true }
] } }
{ 'execute': 'migrate', 'arguments': {'uri': 'tcp:9.61.1.7:8888' } }
then can see two runing VMs, whenever you make changes to PVM, SVM will be
synced.
5ï¼Primary Nodeï¼
echo c ï¼ /proc/sysrq-trigger
ï¼ï¼Secondary node:
{ 'execute': 'nbd-server-stop' }
{ "execute": "x-colo-lost-heartbeat" }
then can see the Secondary node hang at recvmsg recvmsg .
åå§é®ä»¶
åä»¶äººï¼ address@hidden
æ¶ä»¶äººï¼ç广10165992 address@hidden
æéäººï¼ address@hidden address@hidden
æ¥ æ ï¼2017å¹´03æ21æ¥ 16:27
主 é¢ ï¼Re: [Qemu-devel] çå¤: Re: çå¤: Re: [BUG]COLO failover hang
Hi,
On 2017/3/21 16:10, address@hidden wrote:
ï¼ Thank youã
ï¼
ï¼ I have test areadyã
ï¼
ï¼ When the Primary Node panic,the Secondary Node qemu hang at the same placeã
ï¼
ï¼ Incorrding
http://wiki.qemu-project.org/Features/COLO
ï¼kill Primary Node qemu
will not produce the problem,but Primary Node panic canã
ï¼
ï¼ I think due to the feature of channel does not support
QIO_CHANNEL_FEATURE_SHUTDOWN.
ï¼
ï¼
Yes, you are right, when we do failover for primary/secondary VM, we will
shutdown the related
fd in case it is stuck in the read/write fd.
It seems that you didn't follow the above introduction exactly to do the test.
Could you
share your test procedures ? Especially the commands used in the test.
Thanks,
Hailiang
ï¼ when failover,channel_shutdown could not shut down the channel.
ï¼
ï¼
ï¼ so the colo_process_incoming_thread will hang at recvmsg.
ï¼
ï¼
ï¼ I test a patch:
ï¼
ï¼
ï¼ diff --git a/migration/socket.c b/migration/socket.c
ï¼
ï¼
ï¼ index 13966f1..d65a0ea 100644
ï¼
ï¼
ï¼ --- a/migration/socket.c
ï¼
ï¼
ï¼ +++ b/migration/socket.c
ï¼
ï¼
ï¼ @@ -147,8 +147,9 @@ static gboolean
socket_accept_incoming_migration(QIOChannel *ioc,
ï¼
ï¼
ï¼ }
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼ trace_migration_socket_incoming_accepted()
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼ qio_channel_set_name(QIO_CHANNEL(sioc), "migration-socket-incoming")
ï¼
ï¼
ï¼ + qio_channel_set_feature(QIO_CHANNEL(sioc), QIO_CHANNEL_FEATURE_SHUTDOWN)
ï¼
ï¼
ï¼ migration_channel_process_incoming(migrate_get_current(),
ï¼
ï¼
ï¼ QIO_CHANNEL(sioc))
ï¼
ï¼
ï¼ object_unref(OBJECT(sioc))
ï¼
ï¼
ï¼
ï¼
ï¼ My test will not hang any more.
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼ åå§é®ä»¶
ï¼
ï¼
ï¼
ï¼ åä»¶äººï¼ address@hidden
ï¼ æ¶ä»¶äººï¼ç广10165992 address@hidden
ï¼ æéäººï¼ address@hidden address@hidden
ï¼ æ¥ æ ï¼2017å¹´03æ21æ¥ 15:58
ï¼ ä¸» é¢ ï¼Re: [Qemu-devel] çå¤: Re: [BUG]COLO failover hang
ï¼
ï¼
ï¼
ï¼
ï¼
ï¼ Hi,Wang.
ï¼
ï¼ You can test this branch:
ï¼
ï¼
https://github.com/coloft/qemu/tree/colo-v5.1-developing-COLO-frame-v21-with-shared-disk
ï¼
ï¼ and please follow wiki ensure your own configuration correctly.
ï¼
ï¼
http://wiki.qemu-project.org/Features/COLO
ï¼
ï¼
ï¼ Thanks
ï¼
ï¼ Zhang Chen
ï¼
ï¼
ï¼ On 03/21/2017 03:27 PM, address@hidden wrote:
ï¼ ï¼
ï¼ ï¼ hi.
ï¼ ï¼
ï¼ ï¼ I test the git qemu master have the same problem.
ï¼ ï¼
ï¼ ï¼ (gdb) bt
ï¼ ï¼
ï¼ ï¼ #0 qio_channel_socket_readv (ioc=0x7f65911b4e50, iov=0x7f64ef3fd880,
ï¼ ï¼ niov=1, fds=0x0, nfds=0x0, errp=0x0) at io/channel-socket.c:461
ï¼ ï¼
ï¼ ï¼ #1 0x00007f658e4aa0c2 in qio_channel_read
ï¼ ï¼ (address@hidden, address@hidden "",
ï¼ ï¼ address@hidden, address@hidden) at io/channel.c:114
ï¼ ï¼
ï¼ ï¼ #2 0x00007f658e3ea990 in channel_get_buffer (opaque=ï¼optimized outï¼,
ï¼ ï¼ buf=0x7f65907cb838 "", pos=ï¼optimized outï¼, size=32768) at
ï¼ ï¼ migration/qemu-file-channel.c:78
ï¼ ï¼
ï¼ ï¼ #3 0x00007f658e3e97fc in qemu_fill_buffer (f=0x7f65907cb800) at
ï¼ ï¼ migration/qemu-file.c:295
ï¼ ï¼
ï¼ ï¼ #4 0x00007f658e3ea2e1 in qemu_peek_byte (address@hidden,
ï¼ ï¼ address@hidden) at migration/qemu-file.c:555
ï¼ ï¼
ï¼ ï¼ #5 0x00007f658e3ea34b in qemu_get_byte (address@hidden) at
ï¼ ï¼ migration/qemu-file.c:568
ï¼ ï¼
ï¼ ï¼ #6 0x00007f658e3ea552 in qemu_get_be32 (address@hidden) at
ï¼ ï¼ migration/qemu-file.c:648
ï¼ ï¼
ï¼ ï¼ #7 0x00007f658e3e66e5 in colo_receive_message (f=0x7f65907cb800,
ï¼ ï¼ address@hidden) at migration/colo.c:244
ï¼ ï¼
ï¼ ï¼ #8 0x00007f658e3e681e in colo_receive_check_message (f=ï¼optimized
ï¼ ï¼ outï¼, address@hidden,
ï¼ ï¼ address@hidden)
ï¼ ï¼
ï¼ ï¼ at migration/colo.c:264
ï¼ ï¼
ï¼ ï¼ #9 0x00007f658e3e740e in colo_process_incoming_thread
ï¼ ï¼ (opaque=0x7f658eb30360 ï¼mis_current.31286ï¼) at migration/colo.c:577
ï¼ ï¼
ï¼ ï¼ #10 0x00007f658be09df3 in start_thread () from /lib64/libpthread.so.0
ï¼ ï¼
ï¼ ï¼ #11 0x00007f65881983ed in clone () from /lib64/libc.so.6
ï¼ ï¼
ï¼ ï¼ (gdb) p ioc-ï¼name
ï¼ ï¼
ï¼ ï¼ $2 = 0x7f658ff7d5c0 "migration-socket-incoming"
ï¼ ï¼
ï¼ ï¼ (gdb) p ioc-ï¼features Do not support QIO_CHANNEL_FEATURE_SHUTDOWN
ï¼ ï¼
ï¼ ï¼ $3 = 0
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼ (gdb) bt
ï¼ ï¼
ï¼ ï¼ #0 socket_accept_incoming_migration (ioc=0x7fdcceeafa90,
ï¼ ï¼ condition=G_IO_IN, opaque=0x7fdcceeafa90) at migration/socket.c:137
ï¼ ï¼
ï¼ ï¼ #1 0x00007fdcc6966350 in g_main_dispatch (context=ï¼optimized outï¼) at
ï¼ ï¼ gmain.c:3054
ï¼ ï¼
ï¼ ï¼ #2 g_main_context_dispatch (context=ï¼optimized outï¼,
ï¼ ï¼ address@hidden) at gmain.c:3630
ï¼ ï¼
ï¼ ï¼ #3 0x00007fdccb8a6dcc in glib_pollfds_poll () at util/main-loop.c:213
ï¼ ï¼
ï¼ ï¼ #4 os_host_main_loop_wait (timeout=ï¼optimized outï¼) at
ï¼ ï¼ util/main-loop.c:258
ï¼ ï¼
ï¼ ï¼ #5 main_loop_wait (address@hidden) at
ï¼ ï¼ util/main-loop.c:506
ï¼ ï¼
ï¼ ï¼ #6 0x00007fdccb526187 in main_loop () at vl.c:1898
ï¼ ï¼
ï¼ ï¼ #7 main (argc=ï¼optimized outï¼, argv=ï¼optimized outï¼, envp=ï¼optimized
ï¼ ï¼ outï¼) at vl.c:4709
ï¼ ï¼
ï¼ ï¼ (gdb) p ioc-ï¼features
ï¼ ï¼
ï¼ ï¼ $1 = 6
ï¼ ï¼
ï¼ ï¼ (gdb) p ioc-ï¼name
ï¼ ï¼
ï¼ ï¼ $2 = 0x7fdcce1b1ab0 "migration-socket-listener"
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼ May be socket_accept_incoming_migration should
ï¼ ï¼ call qio_channel_set_feature(ioc, QIO_CHANNEL_FEATURE_SHUTDOWN)??
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼ thank you.
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼ åå§é®ä»¶
ï¼ ï¼ address@hidden
ï¼ ï¼ address@hidden
ï¼ ï¼ address@hidden@huawei.comï¼
ï¼ ï¼ *æ¥ æ ï¼*2017å¹´03æ16æ¥ 14:46
ï¼ ï¼ *主 é¢ ï¼**Re: [Qemu-devel] COLO failover hang*
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼ On 03/15/2017 05:06 PM, wangguang wrote:
ï¼ ï¼ ï¼ am testing QEMU COLO feature described here [QEMU
ï¼ ï¼ ï¼ Wiki](
http://wiki.qemu-project.org/Features/COLO
).
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼ When the Primary Node panic,the Secondary Node qemu hang.
ï¼ ï¼ ï¼ hang at recvmsg in qio_channel_socket_readv.
ï¼ ï¼ ï¼ And I run { 'execute': 'nbd-server-stop' } and { "execute":
ï¼ ï¼ ï¼ "x-colo-lost-heartbeat" } in Secondary VM's
ï¼ ï¼ ï¼ monitor,the Secondary Node qemu still hang at recvmsg .
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼ I found that the colo in qemu is not complete yet.
ï¼ ï¼ ï¼ Do the colo have any plan for development?
ï¼ ï¼
ï¼ ï¼ Yes, We are developing. You can see some of patch we pushing.
ï¼ ï¼
ï¼ ï¼ ï¼ Has anyone ever run it successfully? Any help is appreciated!
ï¼ ï¼
ï¼ ï¼ In our internal version can run it successfully,
ï¼ ï¼ The failover detail you can ask Zhanghailiang for help.
ï¼ ï¼ Next time if you have some question about COLO,
ï¼ ï¼ please cc me and zhanghailiang address@hidden
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼ Thanks
ï¼ ï¼ Zhang Chen
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼ centos7.2+qemu2.7.50
ï¼ ï¼ ï¼ (gdb) bt
ï¼ ï¼ ï¼ #0 0x00007f3e00cc86ad in recvmsg () from /lib64/libpthread.so.0
ï¼ ï¼ ï¼ #1 0x00007f3e0332b738 in qio_channel_socket_readv (ioc=ï¼optimized outï¼,
ï¼ ï¼ ï¼ iov=ï¼optimized outï¼, niov=ï¼optimized outï¼, fds=0x0, nfds=0x0, errp=0x0) at
ï¼ ï¼ ï¼ io/channel-socket.c:497
ï¼ ï¼ ï¼ #2 0x00007f3e03329472 in qio_channel_read (address@hidden,
ï¼ ï¼ ï¼ address@hidden "", address@hidden,
ï¼ ï¼ ï¼ address@hidden) at io/channel.c:97
ï¼ ï¼ ï¼ #3 0x00007f3e032750e0 in channel_get_buffer (opaque=ï¼optimized outï¼,
ï¼ ï¼ ï¼ buf=0x7f3e05910f38 "", pos=ï¼optimized outï¼, size=32768) at
ï¼ ï¼ ï¼ migration/qemu-file-channel.c:78
ï¼ ï¼ ï¼ #4 0x00007f3e0327412c in qemu_fill_buffer (f=0x7f3e05910f00) at
ï¼ ï¼ ï¼ migration/qemu-file.c:257
ï¼ ï¼ ï¼ #5 0x00007f3e03274a41 in qemu_peek_byte (address@hidden,
ï¼ ï¼ ï¼ address@hidden) at migration/qemu-file.c:510
ï¼ ï¼ ï¼ #6 0x00007f3e03274aab in qemu_get_byte (address@hidden) at
ï¼ ï¼ ï¼ migration/qemu-file.c:523
ï¼ ï¼ ï¼ #7 0x00007f3e03274cb2 in qemu_get_be32 (address@hidden) at
ï¼ ï¼ ï¼ migration/qemu-file.c:603
ï¼ ï¼ ï¼ #8 0x00007f3e03271735 in colo_receive_message (f=0x7f3e05910f00,
ï¼ ï¼ ï¼ address@hidden) at migration/colo..c:215
ï¼ ï¼ ï¼ #9 0x00007f3e0327250d in colo_wait_handle_message (errp=0x7f3d62bfaa48,
ï¼ ï¼ ï¼ checkpoint_request=ï¼synthetic pointerï¼, f=ï¼optimized outï¼) at
ï¼ ï¼ ï¼ migration/colo.c:546
ï¼ ï¼ ï¼ #10 colo_process_incoming_thread (opaque=0x7f3e067245e0) at
ï¼ ï¼ ï¼ migration/colo.c:649
ï¼ ï¼ ï¼ #11 0x00007f3e00cc1df3 in start_thread () from /lib64/libpthread.so.0
ï¼ ï¼ ï¼ #12 0x00007f3dfc9c03ed in clone () from /lib64/libc.so.6
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼ --
ï¼ ï¼ ï¼ View this message in context:
http://qemu.11.n7.nabble.com/COLO-failover-hang-tp473250.html
ï¼ ï¼ ï¼ Sent from the Developer mailing list archive at Nabble.com.
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼ ï¼
ï¼ ï¼
ï¼ ï¼ --
ï¼ ï¼ Thanks
ï¼ ï¼ Zhang Chen
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼
ï¼ ï¼
ï¼
diff --git a/migration/socket.c b/migration/socket.c
index 13966f1..d65a0ea 100644
--- a/migration/socket.c
+++ b/migration/socket.c
@@ -147,8 +147,9 @@ static gboolean socket_accept_incoming_migration(QIOChannel
*ioc,
}
trace_migration_socket_incoming_accepted()
qio_channel_set_name(QIO_CHANNEL(sioc), "migration-socket-incoming")
+ qio_channel_set_feature(QIO_CHANNEL(sioc), QIO_CHANNEL_FEATURE_SHUTDOWN)
migration_channel_process_incoming(migrate_get_current(),
QIO_CHANNEL(sioc))
object_unref(OBJECT(sioc))
Is this patch ok?
I have test it . The test could not hang any more.
åå§é®ä»¶
åä»¶äººï¼ address@hidden
æ¶ä»¶äººï¼ address@hidden address@hidden
æéäººï¼ address@hidden address@hidden address@hidden
æ¥ æ ï¼2017å¹´03æ22æ¥ 09:11
主 é¢ ï¼Re: [Qemu-devel] çå¤: Re: çå¤: Re: [BUG]COLO failover hang
On 2017/3/21 19:56, Dr. David Alan Gilbert wrote:
ï¼ * Hailiang Zhang (address@hidden) wrote:
ï¼ï¼ Hi,
ï¼ï¼
ï¼ï¼ Thanks for reporting this, and i confirmed it in my test, and it is a bug.
ï¼ï¼
ï¼ï¼ Though we tried to call qemu_file_shutdown() to shutdown the related fd, in
ï¼ï¼ case COLO thread/incoming thread is stuck in read/write() while do failover,
ï¼ï¼ but it didn't take effect, because all the fd used by COLO (also migration)
ï¼ï¼ has been wrapped by qio channel, and it will not call the shutdown API if
ï¼ï¼ we didn't qio_channel_set_feature(QIO_CHANNEL(sioc),
QIO_CHANNEL_FEATURE_SHUTDOWN).
ï¼ï¼
ï¼ï¼ Cc: Dr. David Alan Gilbert address@hidden
ï¼ï¼
ï¼ï¼ I doubted migration cancel has the same problem, it may be stuck in write()
ï¼ï¼ if we tried to cancel migration.
ï¼ï¼
ï¼ï¼ void fd_start_outgoing_migration(MigrationState *s, const char *fdname,
Error **errp)
ï¼ï¼ {
ï¼ï¼ qio_channel_set_name(QIO_CHANNEL(ioc), "migration-fd-outgoing")
ï¼ï¼ migration_channel_connect(s, ioc, NULL)
ï¼ï¼ ... ...
ï¼ï¼ We didn't call qio_channel_set_feature(QIO_CHANNEL(sioc),
QIO_CHANNEL_FEATURE_SHUTDOWN) above,
ï¼ï¼ and the
ï¼ï¼ migrate_fd_cancel()
ï¼ï¼ {
ï¼ï¼ ... ...
ï¼ï¼ if (s-ï¼state == MIGRATION_STATUS_CANCELLING && f) {
ï¼ï¼ qemu_file_shutdown(f) --ï¼ This will not take effect. No ?
ï¼ï¼ }
ï¼ï¼ }
ï¼
ï¼ (cc'd in Daniel Berrange).
ï¼ I see that we call qio_channel_set_feature(ioc, QIO_CHANNEL_FEATURE_SHUTDOWN)
at the
ï¼ top of qio_channel_socket_new so I think that's safe isn't it?
ï¼
Hmm, you are right, this problem is only exist for the migration incoming fd,
thanks.
ï¼ Dave
ï¼
ï¼ï¼ Thanks,
ï¼ï¼ Hailiang
ï¼ï¼
ï¼ï¼ On 2017/3/21 16:10, address@hidden wrote:
ï¼ï¼ï¼ Thank youã
ï¼ï¼ï¼
ï¼ï¼ï¼ I have test areadyã
ï¼ï¼ï¼
ï¼ï¼ï¼ When the Primary Node panic,the Secondary Node qemu hang at the same placeã
ï¼ï¼ï¼
ï¼ï¼ï¼ Incorrding
http://wiki.qemu-project.org/Features/COLO
ï¼kill Primary Node
qemu will not produce the problem,but Primary Node panic canã
ï¼ï¼ï¼
ï¼ï¼ï¼ I think due to the feature of channel does not support
QIO_CHANNEL_FEATURE_SHUTDOWN.
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ when failover,channel_shutdown could not shut down the channel.
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ so the colo_process_incoming_thread will hang at recvmsg.
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ I test a patch:
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ diff --git a/migration/socket.c b/migration/socket.c
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ index 13966f1..d65a0ea 100644
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ --- a/migration/socket.c
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ +++ b/migration/socket.c
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ @@ -147,8 +147,9 @@ static gboolean
socket_accept_incoming_migration(QIOChannel *ioc,
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ }
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ trace_migration_socket_incoming_accepted()
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ qio_channel_set_name(QIO_CHANNEL(sioc), "migration-socket-incoming")
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ + qio_channel_set_feature(QIO_CHANNEL(sioc),
QIO_CHANNEL_FEATURE_SHUTDOWN)
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ migration_channel_process_incoming(migrate_get_current(),
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ QIO_CHANNEL(sioc))
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ object_unref(OBJECT(sioc))
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ My test will not hang any more.
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ åå§é®ä»¶
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ åä»¶äººï¼ address@hidden
ï¼ï¼ï¼ æ¶ä»¶äººï¼ç广10165992 address@hidden
ï¼ï¼ï¼ æéäººï¼ address@hidden address@hidden
ï¼ï¼ï¼ æ¥ æ ï¼2017å¹´03æ21æ¥ 15:58
ï¼ï¼ï¼ 主 é¢ ï¼Re: [Qemu-devel] çå¤: Re: [BUG]COLO failover hang
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ Hi,Wang.
ï¼ï¼ï¼
ï¼ï¼ï¼ You can test this branch:
ï¼ï¼ï¼
ï¼ï¼ï¼
https://github.com/coloft/qemu/tree/colo-v5.1-developing-COLO-frame-v21-with-shared-disk
ï¼ï¼ï¼
ï¼ï¼ï¼ and please follow wiki ensure your own configuration correctly.
ï¼ï¼ï¼
ï¼ï¼ï¼
http://wiki.qemu-project.org/Features/COLO
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ Thanks
ï¼ï¼ï¼
ï¼ï¼ï¼ Zhang Chen
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ On 03/21/2017 03:27 PM, address@hidden wrote:
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ hi.
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ I test the git qemu master have the same problem.
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) bt
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #0 qio_channel_socket_readv (ioc=0x7f65911b4e50, iov=0x7f64ef3fd880,
ï¼ï¼ï¼ ï¼ niov=1, fds=0x0, nfds=0x0, errp=0x0) at io/channel-socket.c:461
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #1 0x00007f658e4aa0c2 in qio_channel_read
ï¼ï¼ï¼ ï¼ (address@hidden, address@hidden "",
ï¼ï¼ï¼ ï¼ address@hidden, address@hidden) at io/channel.c:114
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #2 0x00007f658e3ea990 in channel_get_buffer (opaque=ï¼optimized outï¼,
ï¼ï¼ï¼ ï¼ buf=0x7f65907cb838 "", pos=ï¼optimized outï¼, size=32768) at
ï¼ï¼ï¼ ï¼ migration/qemu-file-channel.c:78
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #3 0x00007f658e3e97fc in qemu_fill_buffer (f=0x7f65907cb800) at
ï¼ï¼ï¼ ï¼ migration/qemu-file.c:295
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #4 0x00007f658e3ea2e1 in qemu_peek_byte (address@hidden,
ï¼ï¼ï¼ ï¼ address@hidden) at migration/qemu-file.c:555
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #5 0x00007f658e3ea34b in qemu_get_byte (address@hidden) at
ï¼ï¼ï¼ ï¼ migration/qemu-file.c:568
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #6 0x00007f658e3ea552 in qemu_get_be32 (address@hidden) at
ï¼ï¼ï¼ ï¼ migration/qemu-file.c:648
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #7 0x00007f658e3e66e5 in colo_receive_message (f=0x7f65907cb800,
ï¼ï¼ï¼ ï¼ address@hidden) at migration/colo.c:244
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #8 0x00007f658e3e681e in colo_receive_check_message (f=ï¼optimized
ï¼ï¼ï¼ ï¼ outï¼, address@hidden,
ï¼ï¼ï¼ ï¼ address@hidden)
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ at migration/colo.c:264
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #9 0x00007f658e3e740e in colo_process_incoming_thread
ï¼ï¼ï¼ ï¼ (opaque=0x7f658eb30360 ï¼mis_current.31286ï¼) at migration/colo.c:577
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #10 0x00007f658be09df3 in start_thread () from /lib64/libpthread.so.0
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #11 0x00007f65881983ed in clone () from /lib64/libc.so.6
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) p ioc-ï¼name
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ $2 = 0x7f658ff7d5c0 "migration-socket-incoming"
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) p ioc-ï¼features Do not support QIO_CHANNEL_FEATURE_SHUTDOWN
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ $3 = 0
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) bt
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #0 socket_accept_incoming_migration (ioc=0x7fdcceeafa90,
ï¼ï¼ï¼ ï¼ condition=G_IO_IN, opaque=0x7fdcceeafa90) at migration/socket.c:137
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #1 0x00007fdcc6966350 in g_main_dispatch (context=ï¼optimized outï¼) at
ï¼ï¼ï¼ ï¼ gmain.c:3054
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #2 g_main_context_dispatch (context=ï¼optimized outï¼,
ï¼ï¼ï¼ ï¼ address@hidden) at gmain.c:3630
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #3 0x00007fdccb8a6dcc in glib_pollfds_poll () at util/main-loop.c:213
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #4 os_host_main_loop_wait (timeout=ï¼optimized outï¼) at
ï¼ï¼ï¼ ï¼ util/main-loop.c:258
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #5 main_loop_wait (address@hidden) at
ï¼ï¼ï¼ ï¼ util/main-loop.c:506
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #6 0x00007fdccb526187 in main_loop () at vl.c:1898
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #7 main (argc=ï¼optimized outï¼, argv=ï¼optimized outï¼, envp=ï¼optimized
ï¼ï¼ï¼ ï¼ outï¼) at vl.c:4709
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) p ioc-ï¼features
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ $1 = 6
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) p ioc-ï¼name
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ $2 = 0x7fdcce1b1ab0 "migration-socket-listener"
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ May be socket_accept_incoming_migration should
ï¼ï¼ï¼ ï¼ call qio_channel_set_feature(ioc, QIO_CHANNEL_FEATURE_SHUTDOWN)??
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ thank you.
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ åå§é®ä»¶
ï¼ï¼ï¼ ï¼ address@hidden
ï¼ï¼ï¼ ï¼ address@hidden
ï¼ï¼ï¼ ï¼ address@hidden@huawei.comï¼
ï¼ï¼ï¼ ï¼ *æ¥ æ ï¼*2017å¹´03æ16æ¥ 14:46
ï¼ï¼ï¼ ï¼ *主 é¢ ï¼**Re: [Qemu-devel] COLO failover hang*
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ On 03/15/2017 05:06 PM, wangguang wrote:
ï¼ï¼ï¼ ï¼ ï¼ am testing QEMU COLO feature described here [QEMU
ï¼ï¼ï¼ ï¼ ï¼ Wiki](
http://wiki.qemu-project.org/Features/COLO
).
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ When the Primary Node panic,the Secondary Node qemu hang.
ï¼ï¼ï¼ ï¼ ï¼ hang at recvmsg in qio_channel_socket_readv.
ï¼ï¼ï¼ ï¼ ï¼ And I run { 'execute': 'nbd-server-stop' } and { "execute":
ï¼ï¼ï¼ ï¼ ï¼ "x-colo-lost-heartbeat" } in Secondary VM's
ï¼ï¼ï¼ ï¼ ï¼ monitor,the Secondary Node qemu still hang at recvmsg .
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ I found that the colo in qemu is not complete yet.
ï¼ï¼ï¼ ï¼ ï¼ Do the colo have any plan for development?
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ Yes, We are developing. You can see some of patch we pushing.
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ Has anyone ever run it successfully? Any help is appreciated!
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ In our internal version can run it successfully,
ï¼ï¼ï¼ ï¼ The failover detail you can ask Zhanghailiang for help.
ï¼ï¼ï¼ ï¼ Next time if you have some question about COLO,
ï¼ï¼ï¼ ï¼ please cc me and zhanghailiang address@hidden
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ Thanks
ï¼ï¼ï¼ ï¼ Zhang Chen
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ centos7.2+qemu2.7.50
ï¼ï¼ï¼ ï¼ ï¼ (gdb) bt
ï¼ï¼ï¼ ï¼ ï¼ #0 0x00007f3e00cc86ad in recvmsg () from /lib64/libpthread.so.0
ï¼ï¼ï¼ ï¼ ï¼ #1 0x00007f3e0332b738 in qio_channel_socket_readv (ioc=ï¼optimized outï¼,
ï¼ï¼ï¼ ï¼ ï¼ iov=ï¼optimized outï¼, niov=ï¼optimized outï¼, fds=0x0, nfds=0x0, errp=0x0)
at
ï¼ï¼ï¼ ï¼ ï¼ io/channel-socket.c:497
ï¼ï¼ï¼ ï¼ ï¼ #2 0x00007f3e03329472 in qio_channel_read (address@hidden,
ï¼ï¼ï¼ ï¼ ï¼ address@hidden "", address@hidden,
ï¼ï¼ï¼ ï¼ ï¼ address@hidden) at io/channel.c:97
ï¼ï¼ï¼ ï¼ ï¼ #3 0x00007f3e032750e0 in channel_get_buffer (opaque=ï¼optimized outï¼,
ï¼ï¼ï¼ ï¼ ï¼ buf=0x7f3e05910f38 "", pos=ï¼optimized outï¼, size=32768) at
ï¼ï¼ï¼ ï¼ ï¼ migration/qemu-file-channel.c:78
ï¼ï¼ï¼ ï¼ ï¼ #4 0x00007f3e0327412c in qemu_fill_buffer (f=0x7f3e05910f00) at
ï¼ï¼ï¼ ï¼ ï¼ migration/qemu-file.c:257
ï¼ï¼ï¼ ï¼ ï¼ #5 0x00007f3e03274a41 in qemu_peek_byte (address@hidden,
ï¼ï¼ï¼ ï¼ ï¼ address@hidden) at migration/qemu-file.c:510
ï¼ï¼ï¼ ï¼ ï¼ #6 0x00007f3e03274aab in qemu_get_byte (address@hidden) at
ï¼ï¼ï¼ ï¼ ï¼ migration/qemu-file.c:523
ï¼ï¼ï¼ ï¼ ï¼ #7 0x00007f3e03274cb2 in qemu_get_be32 (address@hidden) at
ï¼ï¼ï¼ ï¼ ï¼ migration/qemu-file.c:603
ï¼ï¼ï¼ ï¼ ï¼ #8 0x00007f3e03271735 in colo_receive_message (f=0x7f3e05910f00,
ï¼ï¼ï¼ ï¼ ï¼ address@hidden) at migration/colo.c:215
ï¼ï¼ï¼ ï¼ ï¼ #9 0x00007f3e0327250d in colo_wait_handle_message (errp=0x7f3d62bfaa48,
ï¼ï¼ï¼ ï¼ ï¼ checkpoint_request=ï¼synthetic pointerï¼, f=ï¼optimized outï¼) at
ï¼ï¼ï¼ ï¼ ï¼ migration/colo.c:546
ï¼ï¼ï¼ ï¼ ï¼ #10 colo_process_incoming_thread (opaque=0x7f3e067245e0) at
ï¼ï¼ï¼ ï¼ ï¼ migration/colo.c:649
ï¼ï¼ï¼ ï¼ ï¼ #11 0x00007f3e00cc1df3 in start_thread () from /lib64/libpthread.so.0
ï¼ï¼ï¼ ï¼ ï¼ #12 0x00007f3dfc9c03ed in clone () from /lib64/libc..so.6
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ --
ï¼ï¼ï¼ ï¼ ï¼ View this message in context:
http://qemu.11.n7.nabble.com/COLO-failover-hang-tp473250.html
ï¼ï¼ï¼ ï¼ ï¼ Sent from the Developer mailing list archive at Nabble.com.
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ --
ï¼ï¼ï¼ ï¼ Thanks
ï¼ï¼ï¼ ï¼ Zhang Chen
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼
ï¼ï¼
ï¼ --
ï¼ Dr. David Alan Gilbert / address@hidden / Manchester, UK
ï¼
ï¼ .
ï¼
Hi,
On 2017/3/22 9:42, address@hidden wrote:
diff --git a/migration/socket.c b/migration/socket.c
index 13966f1..d65a0ea 100644
--- a/migration/socket.c
+++ b/migration/socket.c
@@ -147,8 +147,9 @@ static gboolean socket_accept_incoming_migration(QIOChannel
*ioc,
}
trace_migration_socket_incoming_accepted()
qio_channel_set_name(QIO_CHANNEL(sioc), "migration-socket-incoming")
+ qio_channel_set_feature(QIO_CHANNEL(sioc), QIO_CHANNEL_FEATURE_SHUTDOWN)
migration_channel_process_incoming(migrate_get_current(),
QIO_CHANNEL(sioc))
object_unref(OBJECT(sioc))
Is this patch ok?
Yes, i think this works, but a better way maybe to call
qio_channel_set_feature()
in qio_channel_socket_accept(), we didn't set the SHUTDOWN feature for the
socket accept fd,
Or fix it by this:
diff --git a/io/channel-socket.c b/io/channel-socket.c
index f546c68..ce6894c 100644
--- a/io/channel-socket.c
+++ b/io/channel-socket.c
@@ -330,9 +330,8 @@ qio_channel_socket_accept(QIOChannelSocket *ioc,
Error **errp)
{
QIOChannelSocket *cioc;
-
- cioc = QIO_CHANNEL_SOCKET(object_new(TYPE_QIO_CHANNEL_SOCKET));
- cioc->fd = -1;
+
+ cioc = qio_channel_socket_new();
cioc->remoteAddrLen = sizeof(ioc->remoteAddr);
cioc->localAddrLen = sizeof(ioc->localAddr);
Thanks,
Hailiang
I have test it . The test could not hang any more.
åå§é®ä»¶
åä»¶äººï¼ address@hidden
æ¶ä»¶äººï¼ address@hidden address@hidden
æéäººï¼ address@hidden address@hidden address@hidden
æ¥ æ ï¼2017å¹´03æ22æ¥ 09:11
主 é¢ ï¼Re: [Qemu-devel] çå¤: Re: çå¤: Re: [BUG]COLO failover hang
On 2017/3/21 19:56, Dr. David Alan Gilbert wrote:
ï¼ * Hailiang Zhang (address@hidden) wrote:
ï¼ï¼ Hi,
ï¼ï¼
ï¼ï¼ Thanks for reporting this, and i confirmed it in my test, and it is a bug.
ï¼ï¼
ï¼ï¼ Though we tried to call qemu_file_shutdown() to shutdown the related fd, in
ï¼ï¼ case COLO thread/incoming thread is stuck in read/write() while do failover,
ï¼ï¼ but it didn't take effect, because all the fd used by COLO (also migration)
ï¼ï¼ has been wrapped by qio channel, and it will not call the shutdown API if
ï¼ï¼ we didn't qio_channel_set_feature(QIO_CHANNEL(sioc),
QIO_CHANNEL_FEATURE_SHUTDOWN).
ï¼ï¼
ï¼ï¼ Cc: Dr. David Alan Gilbert address@hidden
ï¼ï¼
ï¼ï¼ I doubted migration cancel has the same problem, it may be stuck in write()
ï¼ï¼ if we tried to cancel migration.
ï¼ï¼
ï¼ï¼ void fd_start_outgoing_migration(MigrationState *s, const char *fdname,
Error **errp)
ï¼ï¼ {
ï¼ï¼ qio_channel_set_name(QIO_CHANNEL(ioc), "migration-fd-outgoing")
ï¼ï¼ migration_channel_connect(s, ioc, NULL)
ï¼ï¼ ... ...
ï¼ï¼ We didn't call qio_channel_set_feature(QIO_CHANNEL(sioc),
QIO_CHANNEL_FEATURE_SHUTDOWN) above,
ï¼ï¼ and the
ï¼ï¼ migrate_fd_cancel()
ï¼ï¼ {
ï¼ï¼ ... ...
ï¼ï¼ if (s-ï¼state == MIGRATION_STATUS_CANCELLING && f) {
ï¼ï¼ qemu_file_shutdown(f) --ï¼ This will not take effect. No ?
ï¼ï¼ }
ï¼ï¼ }
ï¼
ï¼ (cc'd in Daniel Berrange).
ï¼ I see that we call qio_channel_set_feature(ioc, QIO_CHANNEL_FEATURE_SHUTDOWN)
at the
ï¼ top of qio_channel_socket_new so I think that's safe isn't it?
ï¼
Hmm, you are right, this problem is only exist for the migration incoming fd,
thanks.
ï¼ Dave
ï¼
ï¼ï¼ Thanks,
ï¼ï¼ Hailiang
ï¼ï¼
ï¼ï¼ On 2017/3/21 16:10, address@hidden wrote:
ï¼ï¼ï¼ Thank youã
ï¼ï¼ï¼
ï¼ï¼ï¼ I have test areadyã
ï¼ï¼ï¼
ï¼ï¼ï¼ When the Primary Node panic,the Secondary Node qemu hang at the same placeã
ï¼ï¼ï¼
ï¼ï¼ï¼ Incorrding
http://wiki.qemu-project.org/Features/COLO
ï¼kill Primary Node
qemu will not produce the problem,but Primary Node panic canã
ï¼ï¼ï¼
ï¼ï¼ï¼ I think due to the feature of channel does not support
QIO_CHANNEL_FEATURE_SHUTDOWN.
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ when failover,channel_shutdown could not shut down the channel.
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ so the colo_process_incoming_thread will hang at recvmsg.
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ I test a patch:
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ diff --git a/migration/socket.c b/migration/socket.c
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ index 13966f1..d65a0ea 100644
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ --- a/migration/socket.c
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ +++ b/migration/socket.c
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ @@ -147,8 +147,9 @@ static gboolean
socket_accept_incoming_migration(QIOChannel *ioc,
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ }
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ trace_migration_socket_incoming_accepted()
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ qio_channel_set_name(QIO_CHANNEL(sioc), "migration-socket-incoming")
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ + qio_channel_set_feature(QIO_CHANNEL(sioc),
QIO_CHANNEL_FEATURE_SHUTDOWN)
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ migration_channel_process_incoming(migrate_get_current(),
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ QIO_CHANNEL(sioc))
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ object_unref(OBJECT(sioc))
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ My test will not hang any more.
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ åå§é®ä»¶
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ åä»¶äººï¼ address@hidden
ï¼ï¼ï¼ æ¶ä»¶äººï¼ç广10165992 address@hidden
ï¼ï¼ï¼ æéäººï¼ address@hidden address@hidden
ï¼ï¼ï¼ æ¥ æ ï¼2017å¹´03æ21æ¥ 15:58
ï¼ï¼ï¼ 主 é¢ ï¼Re: [Qemu-devel] çå¤: Re: [BUG]COLO failover hang
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ Hi,Wang.
ï¼ï¼ï¼
ï¼ï¼ï¼ You can test this branch:
ï¼ï¼ï¼
ï¼ï¼ï¼
https://github.com/coloft/qemu/tree/colo-v5.1-developing-COLO-frame-v21-with-shared-disk
ï¼ï¼ï¼
ï¼ï¼ï¼ and please follow wiki ensure your own configuration correctly.
ï¼ï¼ï¼
ï¼ï¼ï¼
http://wiki.qemu-project.org/Features/COLO
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ Thanks
ï¼ï¼ï¼
ï¼ï¼ï¼ Zhang Chen
ï¼ï¼ï¼
ï¼ï¼ï¼
ï¼ï¼ï¼ On 03/21/2017 03:27 PM, address@hidden wrote:
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ hi.
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ I test the git qemu master have the same problem.
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) bt
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #0 qio_channel_socket_readv (ioc=0x7f65911b4e50, iov=0x7f64ef3fd880,
ï¼ï¼ï¼ ï¼ niov=1, fds=0x0, nfds=0x0, errp=0x0) at io/channel-socket.c:461
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #1 0x00007f658e4aa0c2 in qio_channel_read
ï¼ï¼ï¼ ï¼ (address@hidden, address@hidden "",
ï¼ï¼ï¼ ï¼ address@hidden, address@hidden) at io/channel.c:114
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #2 0x00007f658e3ea990 in channel_get_buffer (opaque=ï¼optimized outï¼,
ï¼ï¼ï¼ ï¼ buf=0x7f65907cb838 "", pos=ï¼optimized outï¼, size=32768) at
ï¼ï¼ï¼ ï¼ migration/qemu-file-channel.c:78
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #3 0x00007f658e3e97fc in qemu_fill_buffer (f=0x7f65907cb800) at
ï¼ï¼ï¼ ï¼ migration/qemu-file.c:295
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #4 0x00007f658e3ea2e1 in qemu_peek_byte (address@hidden,
ï¼ï¼ï¼ ï¼ address@hidden) at migration/qemu-file.c:555
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #5 0x00007f658e3ea34b in qemu_get_byte (address@hidden) at
ï¼ï¼ï¼ ï¼ migration/qemu-file.c:568
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #6 0x00007f658e3ea552 in qemu_get_be32 (address@hidden) at
ï¼ï¼ï¼ ï¼ migration/qemu-file.c:648
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #7 0x00007f658e3e66e5 in colo_receive_message (f=0x7f65907cb800,
ï¼ï¼ï¼ ï¼ address@hidden) at migration/colo.c:244
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #8 0x00007f658e3e681e in colo_receive_check_message (f=ï¼optimized
ï¼ï¼ï¼ ï¼ outï¼, address@hidden,
ï¼ï¼ï¼ ï¼ address@hidden)
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ at migration/colo.c:264
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #9 0x00007f658e3e740e in colo_process_incoming_thread
ï¼ï¼ï¼ ï¼ (opaque=0x7f658eb30360 ï¼mis_current.31286ï¼) at migration/colo.c:577
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #10 0x00007f658be09df3 in start_thread () from /lib64/libpthread.so.0
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #11 0x00007f65881983ed in clone () from /lib64/libc.so.6
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) p ioc-ï¼name
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ $2 = 0x7f658ff7d5c0 "migration-socket-incoming"
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) p ioc-ï¼features Do not support QIO_CHANNEL_FEATURE_SHUTDOWN
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ $3 = 0
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) bt
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #0 socket_accept_incoming_migration (ioc=0x7fdcceeafa90,
ï¼ï¼ï¼ ï¼ condition=G_IO_IN, opaque=0x7fdcceeafa90) at migration/socket.c:137
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #1 0x00007fdcc6966350 in g_main_dispatch (context=ï¼optimized outï¼) at
ï¼ï¼ï¼ ï¼ gmain.c:3054
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #2 g_main_context_dispatch (context=ï¼optimized outï¼,
ï¼ï¼ï¼ ï¼ address@hidden) at gmain.c:3630
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #3 0x00007fdccb8a6dcc in glib_pollfds_poll () at util/main-loop.c:213
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #4 os_host_main_loop_wait (timeout=ï¼optimized outï¼) at
ï¼ï¼ï¼ ï¼ util/main-loop.c:258
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #5 main_loop_wait (address@hidden) at
ï¼ï¼ï¼ ï¼ util/main-loop.c:506
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #6 0x00007fdccb526187 in main_loop () at vl.c:1898
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ #7 main (argc=ï¼optimized outï¼, argv=ï¼optimized outï¼, envp=ï¼optimized
ï¼ï¼ï¼ ï¼ outï¼) at vl.c:4709
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) p ioc-ï¼features
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ $1 = 6
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ (gdb) p ioc-ï¼name
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ $2 = 0x7fdcce1b1ab0 "migration-socket-listener"
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ May be socket_accept_incoming_migration should
ï¼ï¼ï¼ ï¼ call qio_channel_set_feature(ioc, QIO_CHANNEL_FEATURE_SHUTDOWN)??
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ thank you.
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ åå§é®ä»¶
ï¼ï¼ï¼ ï¼ address@hidden
ï¼ï¼ï¼ ï¼ address@hidden
ï¼ï¼ï¼ ï¼ address@hidden@huawei.comï¼
ï¼ï¼ï¼ ï¼ *æ¥ æ ï¼*2017å¹´03æ16æ¥ 14:46
ï¼ï¼ï¼ ï¼ *主 é¢ ï¼**Re: [Qemu-devel] COLO failover hang*
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ On 03/15/2017 05:06 PM, wangguang wrote:
ï¼ï¼ï¼ ï¼ ï¼ am testing QEMU COLO feature described here [QEMU
ï¼ï¼ï¼ ï¼ ï¼ Wiki](
http://wiki.qemu-project.org/Features/COLO
).
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ When the Primary Node panic,the Secondary Node qemu hang.
ï¼ï¼ï¼ ï¼ ï¼ hang at recvmsg in qio_channel_socket_readv.
ï¼ï¼ï¼ ï¼ ï¼ And I run { 'execute': 'nbd-server-stop' } and { "execute":
ï¼ï¼ï¼ ï¼ ï¼ "x-colo-lost-heartbeat" } in Secondary VM's
ï¼ï¼ï¼ ï¼ ï¼ monitor,the Secondary Node qemu still hang at recvmsg .
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ I found that the colo in qemu is not complete yet.
ï¼ï¼ï¼ ï¼ ï¼ Do the colo have any plan for development?
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ Yes, We are developing. You can see some of patch we pushing.
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ Has anyone ever run it successfully? Any help is appreciated!
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ In our internal version can run it successfully,
ï¼ï¼ï¼ ï¼ The failover detail you can ask Zhanghailiang for help.
ï¼ï¼ï¼ ï¼ Next time if you have some question about COLO,
ï¼ï¼ï¼ ï¼ please cc me and zhanghailiang address@hidden
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ Thanks
ï¼ï¼ï¼ ï¼ Zhang Chen
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ centos7.2+qemu2.7.50
ï¼ï¼ï¼ ï¼ ï¼ (gdb) bt
ï¼ï¼ï¼ ï¼ ï¼ #0 0x00007f3e00cc86ad in recvmsg () from /lib64/libpthread.so.0
ï¼ï¼ï¼ ï¼ ï¼ #1 0x00007f3e0332b738 in qio_channel_socket_readv (ioc=ï¼optimized outï¼,
ï¼ï¼ï¼ ï¼ ï¼ iov=ï¼optimized outï¼, niov=ï¼optimized outï¼, fds=0x0, nfds=0x0, errp=0x0)
at
ï¼ï¼ï¼ ï¼ ï¼ io/channel-socket.c:497
ï¼ï¼ï¼ ï¼ ï¼ #2 0x00007f3e03329472 in qio_channel_read (address@hidden,
ï¼ï¼ï¼ ï¼ ï¼ address@hidden "", address@hidden,
ï¼ï¼ï¼ ï¼ ï¼ address@hidden) at io/channel.c:97
ï¼ï¼ï¼ ï¼ ï¼ #3 0x00007f3e032750e0 in channel_get_buffer (opaque=ï¼optimized outï¼,
ï¼ï¼ï¼ ï¼ ï¼ buf=0x7f3e05910f38 "", pos=ï¼optimized outï¼, size=32768) at
ï¼ï¼ï¼ ï¼ ï¼ migration/qemu-file-channel.c:78
ï¼ï¼ï¼ ï¼ ï¼ #4 0x00007f3e0327412c in qemu_fill_buffer (f=0x7f3e05910f00) at
ï¼ï¼ï¼ ï¼ ï¼ migration/qemu-file.c:257
ï¼ï¼ï¼ ï¼ ï¼ #5 0x00007f3e03274a41 in qemu_peek_byte (address@hidden,
ï¼ï¼ï¼ ï¼ ï¼ address@hidden) at migration/qemu-file.c:510
ï¼ï¼ï¼ ï¼ ï¼ #6 0x00007f3e03274aab in qemu_get_byte (address@hidden) at
ï¼ï¼ï¼ ï¼ ï¼ migration/qemu-file.c:523
ï¼ï¼ï¼ ï¼ ï¼ #7 0x00007f3e03274cb2 in qemu_get_be32 (address@hidden) at
ï¼ï¼ï¼ ï¼ ï¼ migration/qemu-file.c:603
ï¼ï¼ï¼ ï¼ ï¼ #8 0x00007f3e03271735 in colo_receive_message (f=0x7f3e05910f00,
ï¼ï¼ï¼ ï¼ ï¼ address@hidden) at migration/colo.c:215
ï¼ï¼ï¼ ï¼ ï¼ #9 0x00007f3e0327250d in colo_wait_handle_message (errp=0x7f3d62bfaa48,
ï¼ï¼ï¼ ï¼ ï¼ checkpoint_request=ï¼synthetic pointerï¼, f=ï¼optimized outï¼) at
ï¼ï¼ï¼ ï¼ ï¼ migration/colo.c:546
ï¼ï¼ï¼ ï¼ ï¼ #10 colo_process_incoming_thread (opaque=0x7f3e067245e0) at
ï¼ï¼ï¼ ï¼ ï¼ migration/colo.c:649
ï¼ï¼ï¼ ï¼ ï¼ #11 0x00007f3e00cc1df3 in start_thread () from /lib64/libpthread.so.0
ï¼ï¼ï¼ ï¼ ï¼ #12 0x00007f3dfc9c03ed in clone () from /lib64/libc..so.6
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼ --
ï¼ï¼ï¼ ï¼ ï¼ View this message in context:
http://qemu.11.n7.nabble.com/COLO-failover-hang-tp473250.html
ï¼ï¼ï¼ ï¼ ï¼ Sent from the Developer mailing list archive at Nabble.com.
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼ --
ï¼ï¼ï¼ ï¼ Thanks
ï¼ï¼ï¼ ï¼ Zhang Chen
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼ ï¼
ï¼ï¼ï¼
ï¼ï¼
ï¼ --
ï¼ Dr. David Alan Gilbert / address@hidden / Manchester, UK
ï¼
ï¼ .
ï¼
|