-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathswitch_ingress_subset.py
931 lines (930 loc) · 65.9 KB
/
switch_ingress_subset.py
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
nodes = \
{'_condition_0': {'num_fields': 0, 'type': 'condition'},
'_condition_10': {'num_fields': 0, 'type': 'condition'},
'_condition_11': {'num_fields': 0, 'type': 'condition'},
'_condition_12': {'num_fields': 0, 'type': 'condition'},
'_condition_13': {'num_fields': 0, 'type': 'condition'},
'_condition_14': {'num_fields': 0, 'type': 'condition'},
'_condition_15': {'num_fields': 0, 'type': 'condition'},
'_condition_16': {'num_fields': 0, 'type': 'condition'},
'_condition_17': {'num_fields': 0, 'type': 'condition'},
'_condition_18': {'num_fields': 0, 'type': 'condition'},
'_condition_19': {'num_fields': 0, 'type': 'condition'},
'_condition_2': {'num_fields': 0, 'type': 'condition'},
'_condition_21': {'num_fields': 0, 'type': 'condition'},
'_condition_22': {'num_fields': 0, 'type': 'condition'},
'_condition_23': {'num_fields': 0, 'type': 'condition'},
'_condition_25': {'num_fields': 0, 'type': 'condition'},
'_condition_26': {'num_fields': 0, 'type': 'condition'},
'_condition_27': {'num_fields': 0, 'type': 'condition'},
'_condition_29': {'num_fields': 0, 'type': 'condition'},
'_condition_3': {'num_fields': 0, 'type': 'condition'},
'_condition_30': {'num_fields': 0, 'type': 'condition'},
'_condition_31': {'num_fields': 0, 'type': 'condition'},
'_condition_32': {'num_fields': 0, 'type': 'condition'},
'_condition_33': {'num_fields': 0, 'type': 'condition'},
'_condition_34': {'num_fields': 0, 'type': 'condition'},
'_condition_35': {'num_fields': 0, 'type': 'condition'},
'_condition_36': {'num_fields': 0, 'type': 'condition'},
'_condition_37': {'num_fields': 0, 'type': 'condition'},
'_condition_38': {'num_fields': 0, 'type': 'condition'},
'_condition_39': {'num_fields': 0, 'type': 'condition'},
'_condition_4': {'num_fields': 0, 'type': 'condition'},
'_condition_40': {'num_fields': 0, 'type': 'condition'},
'_condition_5': {'num_fields': 0, 'type': 'condition'},
'_condition_6': {'num_fields': 0, 'type': 'condition'},
'_condition_7': {'num_fields': 0, 'type': 'condition'},
'_condition_8': {'num_fields': 0, 'type': 'condition'},
'_condition_9': {'num_fields': 0, 'type': 'condition'},
'acl_stats_ACTION': {'num_fields': 1, 'type': 'action'},
'adjust_lkp_fields_ACTION': {'num_fields': 8, 'type': 'action'},
'adjust_lkp_fields_MATCH': {'key_width': 2, 'type': 'match'},
'bd_flood_ACTION': {'num_fields': 1, 'type': 'action'},
'bd_flood_MATCH': {'key_width': 19, 'type': 'match'},
'compute_ipv4_hashes_ACTION': {'num_fields': 2, 'type': 'action'},
'compute_ipv4_hashes_MATCH': {'key_width': 1, 'type': 'match'},
'compute_non_ip_hashes_ACTION': {'num_fields': 1, 'type': 'action'},
'compute_non_ip_hashes_MATCH': {'key_width': 1, 'type': 'match'},
'compute_other_hashes_ACTION': {'num_fields': 3, 'type': 'action'},
'compute_other_hashes_MATCH': {'key_width': 16, 'type': 'match'},
'dmac_ACTION': {'num_fields': 3, 'type': 'action'},
'dmac_MATCH': {'key_width': 64, 'type': 'match'},
'drop_stats_ACTION': {'num_fields': 1, 'type': 'action'},
'ecmp_group_ACTION': {'num_fields': 5, 'type': 'action'},
'ecmp_group_MATCH': {'key_width': 16, 'type': 'match'},
'fabric_ingress_dst_lkp_ACTION': {'num_fields': 10, 'type': 'action'},
'fabric_ingress_dst_lkp_MATCH': {'key_width': 8, 'type': 'match'},
'fabric_ingress_src_lkp_ACTION': {'num_fields': 0, 'type': 'action'},
'fabric_ingress_src_lkp_MATCH': {'key_width': 16, 'type': 'match'},
'fabric_lag_ACTION': {'num_fields': 1, 'type': 'action'},
'fabric_lag_MATCH': {'key_width': 8, 'type': 'match'},
'fwd_result_ACTION': {'num_fields': 6, 'type': 'action'},
'fwd_result_MATCH': {'key_width': 33, 'type': 'match'},
'ingress_bd_stats_ACTION': {'num_fields': 1, 'type': 'action'},
'ingress_l4_dst_port_ACTION': {'num_fields': 1, 'type': 'action'},
'ingress_l4_dst_port_MATCH': {'key_width': 16, 'type': 'match'},
'ingress_l4_src_port_ACTION': {'num_fields': 1, 'type': 'action'},
'ingress_l4_src_port_MATCH': {'key_width': 16, 'type': 'match'},
'ingress_port_mapping_ACTION': {'num_fields': 2, 'type': 'action'},
'ingress_port_mapping_MATCH': {'key_width': 9, 'type': 'match'},
'ingress_port_properties_ACTION': {'num_fields': 7, 'type': 'action'},
'ingress_port_properties_MATCH': {'key_width': 9, 'type': 'match'},
'ingress_qos_map_dscp_ACTION': {'num_fields': 2, 'type': 'action'},
'ingress_qos_map_dscp_MATCH': {'key_width': 13, 'type': 'match'},
'ingress_qos_map_pcp_ACTION': {'num_fields': 2, 'type': 'action'},
'ingress_qos_map_pcp_MATCH': {'key_width': 8, 'type': 'match'},
'ip_acl_ACTION': {'num_fields': 10, 'type': 'action'},
'ip_acl_MATCH': {'key_width': 136, 'type': 'match'},
'ipsg_ACTION': {'num_fields': 0, 'type': 'action'},
'ipsg_MATCH': {'key_width': 112, 'type': 'match'},
'ipsg_permit_special_ACTION': {'num_fields': 1, 'type': 'action'},
'ipsg_permit_special_MATCH': {'key_width': 56, 'type': 'match'},
'ipv4_fib_ACTION': {'num_fields': 3, 'type': 'action'},
'ipv4_fib_MATCH': {'key_width': 48, 'type': 'match'},
'ipv4_fib_lpm_ACTION': {'num_fields': 3, 'type': 'action'},
'ipv4_fib_lpm_MATCH': {'key_width': 48, 'type': 'match'},
'ipv4_multicast_bridge_ACTION': {'num_fields': 2, 'type': 'action'},
'ipv4_multicast_bridge_MATCH': {'key_width': 80, 'type': 'match'},
'ipv4_multicast_bridge_star_g_ACTION': {'num_fields': 2, 'type': 'action'},
'ipv4_multicast_bridge_star_g_MATCH': {'key_width': 48, 'type': 'match'},
'ipv4_multicast_route_ACTION': {'num_fields': 4, 'type': 'action'},
'ipv4_multicast_route_MATCH': {'key_width': 80, 'type': 'match'},
'ipv4_multicast_route_star_g_ACTION': {'num_fields': 4, 'type': 'action'},
'ipv4_multicast_route_star_g_MATCH': {'key_width': 48, 'type': 'match'},
'ipv4_racl_ACTION': {'num_fields': 8, 'type': 'action'},
'ipv4_racl_MATCH': {'key_width': 104, 'type': 'match'},
'ipv4_urpf_ACTION': {'num_fields': 3, 'type': 'action'},
'ipv4_urpf_MATCH': {'key_width': 48, 'type': 'match'},
'ipv4_urpf_lpm_ACTION': {'num_fields': 3, 'type': 'action'},
'ipv4_urpf_lpm_MATCH': {'key_width': 48, 'type': 'match'},
'lag_group_ACTION': {'num_fields': 2, 'type': 'action'},
'lag_group_MATCH': {'key_width': 16, 'type': 'match'},
'learn_notify_ACTION': {'num_fields': 1, 'type': 'action'},
'learn_notify_MATCH': {'key_width': 20, 'type': 'match'},
'mac_acl_ACTION': {'num_fields': 10, 'type': 'action'},
'mac_acl_MATCH': {'key_width': 144, 'type': 'match'},
'meter_action_ACTION': {'num_fields': 1, 'type': 'action'},
'meter_action_MATCH': {'key_width': 18, 'type': 'match'},
'meter_index_ACTION': {'num_fields': 0, 'type': 'action'},
'meter_index_MATCH': {'key_width': 16, 'type': 'match'},
'nat_dst_ACTION': {'num_fields': 4, 'type': 'action'},
'nat_dst_MATCH': {'key_width': 72, 'type': 'match'},
'nat_flow_ACTION': {'num_fields': 4, 'type': 'action'},
'nat_flow_MATCH': {'key_width': 120, 'type': 'match'},
'nat_src_ACTION': {'num_fields': 1, 'type': 'action'},
'nat_src_MATCH': {'key_width': 72, 'type': 'match'},
'nat_twice_ACTION': {'num_fields': 4, 'type': 'action'},
'nat_twice_MATCH': {'key_width': 120, 'type': 'match'},
'native_packet_over_fabric_ACTION': {'num_fields': 7, 'type': 'action'},
'native_packet_over_fabric_MATCH': {'key_width': 2, 'type': 'match'},
'nexthop_ACTION': {'num_fields': 4, 'type': 'action'},
'nexthop_MATCH': {'key_width': 16, 'type': 'match'},
'port_vlan_mapping_ACTION': {'num_fields': 21, 'type': 'action'},
'port_vlan_mapping_MATCH': {'key_width': 42, 'type': 'match'},
'rmac_ACTION': {'num_fields': 1, 'type': 'action'},
'rmac_MATCH': {'key_width': 58, 'type': 'match'},
'smac_ACTION': {'num_fields': 1, 'type': 'action'},
'smac_MATCH': {'key_width': 64, 'type': 'match'},
'spanning_tree_ACTION': {'num_fields': 1, 'type': 'action'},
'spanning_tree_MATCH': {'key_width': 26, 'type': 'match'},
'storm_control_ACTION': {'num_fields': 2, 'type': 'action'},
'storm_control_MATCH': {'key_width': 12, 'type': 'match'},
'storm_control_stats_ACTION': {'num_fields': 0, 'type': 'action'},
'storm_control_stats_MATCH': {'key_width': 11, 'type': 'match'},
'switch_config_params_ACTION': {'num_fields': 5, 'type': 'action'},
'switch_config_params_MATCH': {'key_width': 1, 'type': 'match'},
'system_acl_ACTION': {'num_fields': 7, 'type': 'action'},
'system_acl_MATCH': {'key_width': 153, 'type': 'match'},
'traffic_class_ACTION': {'num_fields': 2, 'type': 'action'},
'traffic_class_MATCH': {'key_width': 13, 'type': 'match'},
'urpf_bd_ACTION': {'num_fields': 1, 'type': 'action'},
'urpf_bd_MATCH': {'key_width': 32, 'type': 'match'},
'validate_outer_ethernet_ACTION': {'num_fields': 3, 'type': 'action'},
'validate_outer_ethernet_MATCH': {'key_width': 98, 'type': 'match'},
'validate_outer_ipv4_packet_ACTION': {'num_fields': 3, 'type': 'action'},
'validate_outer_ipv4_packet_MATCH': {'key_width': 20, 'type': 'match'},
'validate_packet_ACTION': {'num_fields': 3, 'type': 'action'},
'validate_packet_MATCH': {'key_width': 118, 'type': 'match'}}
edges = \
{('_condition_0', 'validate_outer_ipv4_packet_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_10', 'native_packet_over_fabric_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_11', 'storm_control_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_12', '_condition_13'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_12', '_condition_14'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_12', '_condition_15'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_12', '_condition_16'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_12', 'ingress_l4_dst_port_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_12', 'ingress_l4_src_port_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_12', 'nat_twice_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_12', 'rmac_ACTION'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_13', 'fwd_result_ACTION'): {'delay': 0,
'dep_type': 'rmt_reverse_read'},
('_condition_13', 'validate_packet_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_14', 'smac_ACTION'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_15', 'dmac_ACTION'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_16', '_condition_17'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_16', '_condition_18'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_17', 'mac_acl_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_18', '_condition_19'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_19', 'ip_acl_ACTION'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_2', 'spanning_tree_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_21', '_condition_22'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_21', '_condition_23'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_22', 'ipv4_multicast_bridge_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_23', 'ipv4_multicast_route_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_25', '_condition_26'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_25', '_condition_29'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_26', '_condition_27'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_26', 'ipv4_fib_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_26', 'ipv4_racl_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_27', 'ipv4_urpf_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_29', 'urpf_bd_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_3', '_condition_4'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_30', 'meter_index_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_31', 'compute_ipv4_hashes_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_31', 'compute_non_ip_hashes_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_32', 'meter_action_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_33', '_condition_34'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_33', '_condition_35'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_33', '_condition_36'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_33', '_condition_37'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_33', 'acl_stats_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_33', 'ingress_bd_stats_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_33', 'storm_control_stats_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_34', 'fwd_result_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_35', 'ecmp_group_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_35', 'nexthop_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_36', 'bd_flood_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_36', 'lag_group_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_37', 'learn_notify_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_38', '_condition_39'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_39', '_condition_40'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_39', 'system_acl_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_4', '_condition_5'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_4', 'ingress_qos_map_dscp_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_40', 'drop_stats_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_5', 'ingress_qos_map_pcp_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_6', 'ipsg_ACTION'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_6', 'ipsg_permit_special_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_7', '_condition_8'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_7', 'fabric_ingress_dst_lkp_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('_condition_8', '_condition_10'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_8', '_condition_9'): {'delay': 0, 'dep_type': 'rmt_successor'},
('_condition_9', 'fabric_ingress_src_lkp_ACTION'): {'delay': 0,
'dep_type': 'rmt_successor'},
('adjust_lkp_fields_ACTION', 'compute_ipv4_hashes_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('adjust_lkp_fields_ACTION', 'compute_non_ip_hashes_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('adjust_lkp_fields_ACTION', 'dmac_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ingress_l4_dst_port_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ingress_l4_src_port_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ip_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipsg_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipsg_permit_special_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipv4_fib_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipv4_fib_lpm_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipv4_multicast_bridge_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipv4_multicast_bridge_star_g_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipv4_multicast_route_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipv4_multicast_route_star_g_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipv4_racl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipv4_urpf_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'ipv4_urpf_lpm_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'learn_notify_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('adjust_lkp_fields_ACTION', 'mac_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'nat_dst_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'nat_flow_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'nat_src_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'nat_twice_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'native_packet_over_fabric_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('adjust_lkp_fields_ACTION', 'rmac_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'smac_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_ACTION', 'validate_packet_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('adjust_lkp_fields_MATCH', 'adjust_lkp_fields_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('bd_flood_ACTION', 'fabric_lag_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('bd_flood_MATCH', 'bd_flood_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('compute_ipv4_hashes_ACTION', 'compute_other_hashes_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('compute_ipv4_hashes_ACTION', 'ecmp_group_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('compute_ipv4_hashes_ACTION', 'fabric_lag_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('compute_ipv4_hashes_ACTION', 'fwd_result_ACTION'): {'delay': 0,
'dep_type': 'rmt_reverse_read'},
('compute_ipv4_hashes_ACTION', 'lag_group_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('compute_ipv4_hashes_MATCH', 'compute_ipv4_hashes_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('compute_non_ip_hashes_ACTION', 'compute_other_hashes_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('compute_non_ip_hashes_ACTION', 'fabric_lag_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('compute_non_ip_hashes_ACTION', 'fwd_result_ACTION'): {'delay': 0,
'dep_type': 'rmt_reverse_read'},
('compute_non_ip_hashes_ACTION', 'lag_group_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('compute_non_ip_hashes_MATCH', 'compute_non_ip_hashes_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('compute_other_hashes_ACTION', 'ecmp_group_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('compute_other_hashes_MATCH', 'compute_other_hashes_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('dmac_ACTION', '_condition_36'): {'delay': 1, 'dep_type': 'rmt_match'},
('dmac_ACTION', 'bd_flood_ACTION'): {'delay': 1, 'dep_type': 'rmt_action'},
('dmac_ACTION', 'ecmp_group_ACTION'): {'delay': 1, 'dep_type': 'rmt_action'},
('dmac_ACTION', 'fabric_lag_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('dmac_ACTION', 'fwd_result_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('dmac_ACTION', 'lag_group_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('dmac_ACTION', 'nexthop_ACTION'): {'delay': 1, 'dep_type': 'rmt_action'},
('dmac_ACTION', 'system_acl_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('dmac_MATCH', 'dmac_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ecmp_group_ACTION', '_condition_36'): {'delay': 1, 'dep_type': 'rmt_match'},
('ecmp_group_ACTION', 'bd_flood_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ecmp_group_ACTION', 'fabric_lag_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ecmp_group_ACTION', 'lag_group_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ecmp_group_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ecmp_group_MATCH', 'ecmp_group_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('fabric_ingress_dst_lkp_ACTION', '_condition_10'): {'delay': 1,
'dep_type': 'rmt_match'},
('fabric_ingress_dst_lkp_ACTION', '_condition_31'): {'delay': 1,
'dep_type': 'rmt_match'},
('fabric_ingress_dst_lkp_ACTION', '_condition_9'): {'delay': 1,
'dep_type': 'rmt_match'},
('fabric_ingress_dst_lkp_ACTION', 'bd_flood_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('fabric_ingress_dst_lkp_ACTION', 'dmac_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('fabric_ingress_dst_lkp_ACTION', 'ecmp_group_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('fabric_ingress_dst_lkp_ACTION', 'fabric_ingress_src_lkp_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('fabric_ingress_dst_lkp_ACTION', 'fabric_lag_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('fabric_ingress_dst_lkp_ACTION', 'fwd_result_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('fabric_ingress_dst_lkp_ACTION', 'lag_group_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('fabric_ingress_dst_lkp_ACTION', 'native_packet_over_fabric_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('fabric_ingress_dst_lkp_ACTION', 'nexthop_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('fabric_ingress_dst_lkp_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('fabric_ingress_dst_lkp_MATCH', 'fabric_ingress_dst_lkp_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('fabric_ingress_src_lkp_MATCH', 'fabric_ingress_src_lkp_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('fabric_lag_ACTION', 'system_acl_ACTION'): {'delay': 0,
'dep_type': 'rmt_reverse_read'},
('fabric_lag_MATCH', 'fabric_lag_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('fwd_result_ACTION', '_condition_35'): {'delay': 1, 'dep_type': 'rmt_match'},
('fwd_result_ACTION', '_condition_36'): {'delay': 1, 'dep_type': 'rmt_match'},
('fwd_result_ACTION', '_condition_40'): {'delay': 1, 'dep_type': 'rmt_match'},
('fwd_result_ACTION', 'bd_flood_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('fwd_result_ACTION', 'drop_stats_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('fwd_result_ACTION', 'ecmp_group_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('fwd_result_ACTION', 'fabric_lag_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('fwd_result_ACTION', 'lag_group_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('fwd_result_ACTION', 'nexthop_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('fwd_result_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('fwd_result_MATCH', 'fwd_result_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ingress_l4_dst_port_ACTION', 'ip_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_l4_dst_port_ACTION', 'ipv4_racl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_l4_dst_port_MATCH', 'ingress_l4_dst_port_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ingress_l4_src_port_ACTION', 'ip_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_l4_src_port_ACTION', 'ipv4_racl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_l4_src_port_MATCH', 'ingress_l4_src_port_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ingress_port_mapping_ACTION', '_condition_11'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', '_condition_12'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', '_condition_14'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', '_condition_2'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', '_condition_33'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', '_condition_38'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', '_condition_6'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', '_condition_7'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', '_condition_8'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', 'compute_non_ip_hashes_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_port_mapping_ACTION', 'ipsg_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', 'learn_notify_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_port_mapping_ACTION', 'port_vlan_mapping_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', 'smac_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_port_mapping_ACTION', 'spanning_tree_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_ACTION', 'switch_config_params_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_port_mapping_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_mapping_MATCH', 'ingress_port_mapping_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ingress_port_properties_ACTION', '_condition_4'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_ACTION', '_condition_5'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_ACTION', 'ingress_qos_map_dscp_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_ACTION', 'ingress_qos_map_pcp_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_ACTION', 'ip_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_ACTION', 'ipv4_racl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_port_properties_ACTION', 'mac_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_ACTION', 'meter_action_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_ACTION', 'meter_index_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_port_properties_ACTION', 'storm_control_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_port_properties_ACTION', 'storm_control_stats_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_ACTION', 'traffic_class_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_port_properties_MATCH', 'ingress_port_properties_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ingress_qos_map_dscp_ACTION', 'ip_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_dscp_ACTION', 'ipv4_racl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_dscp_ACTION', 'mac_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_dscp_ACTION', 'meter_action_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_qos_map_dscp_ACTION', 'meter_index_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_dscp_ACTION', 'storm_control_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_dscp_ACTION', 'storm_control_stats_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_qos_map_dscp_ACTION', 'traffic_class_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_qos_map_dscp_MATCH', 'ingress_qos_map_dscp_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ingress_qos_map_pcp_ACTION', 'ip_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_pcp_ACTION', 'ipv4_racl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_pcp_ACTION', 'mac_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_pcp_ACTION', 'meter_action_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_qos_map_pcp_ACTION', 'meter_index_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_pcp_ACTION', 'storm_control_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ingress_qos_map_pcp_ACTION', 'storm_control_stats_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_qos_map_pcp_ACTION', 'traffic_class_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ingress_qos_map_pcp_MATCH', 'ingress_qos_map_pcp_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ip_acl_ACTION', 'acl_stats_ACTION'): {'delay': 1, 'dep_type': 'rmt_action'},
('ip_acl_ACTION', 'fwd_result_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('ip_acl_ACTION', 'ipv4_racl_ACTION'): {'delay': 1, 'dep_type': 'rmt_action'},
('ip_acl_ACTION', 'meter_action_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ip_acl_ACTION', 'meter_index_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('ip_acl_ACTION', 'storm_control_stats_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ip_acl_ACTION', 'system_acl_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('ip_acl_ACTION', 'traffic_class_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ip_acl_MATCH', 'ip_acl_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipsg_ACTION', 'native_packet_over_fabric_ACTION'): {'delay': 0,
'dep_type': 'rmt_reverse_read'},
('ipsg_MATCH', 'ipsg_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipsg_permit_special_ACTION', 'native_packet_over_fabric_ACTION'): {'delay': 0,
'dep_type': 'rmt_reverse_read'},
('ipsg_permit_special_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipsg_permit_special_MATCH', 'ipsg_permit_special_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipv4_fib_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_fib_MATCH', 'ipv4_fib_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipv4_fib_MATCH', 'ipv4_fib_lpm_ACTION'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('ipv4_fib_lpm_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_fib_lpm_MATCH', 'ipv4_fib_lpm_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipv4_multicast_bridge_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_multicast_bridge_MATCH', 'ipv4_multicast_bridge_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipv4_multicast_bridge_MATCH', 'ipv4_multicast_bridge_star_g_ACTION'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('ipv4_multicast_bridge_star_g_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_multicast_bridge_star_g_MATCH', 'ipv4_multicast_bridge_star_g_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipv4_multicast_route_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_multicast_route_MATCH', 'ipv4_multicast_route_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipv4_multicast_route_MATCH', 'ipv4_multicast_route_star_g_ACTION'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('ipv4_multicast_route_star_g_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_multicast_route_star_g_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_multicast_route_star_g_MATCH', 'ipv4_multicast_route_star_g_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipv4_racl_ACTION', 'acl_stats_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ipv4_racl_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_racl_ACTION', 'meter_action_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_racl_ACTION', 'meter_index_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('ipv4_racl_ACTION', 'storm_control_stats_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_racl_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_racl_ACTION', 'traffic_class_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_racl_MATCH', 'ipv4_racl_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipv4_urpf_ACTION', '_condition_29'): {'delay': 1, 'dep_type': 'rmt_match'},
('ipv4_urpf_ACTION', 'urpf_bd_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('ipv4_urpf_MATCH', 'ipv4_urpf_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('ipv4_urpf_MATCH', 'ipv4_urpf_lpm_ACTION'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('ipv4_urpf_lpm_ACTION', '_condition_29'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_urpf_lpm_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_urpf_lpm_ACTION', 'urpf_bd_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('ipv4_urpf_lpm_MATCH', 'ipv4_urpf_lpm_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('lag_group_ACTION', 'fabric_lag_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('lag_group_ACTION', 'system_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('lag_group_MATCH', 'lag_group_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('learn_notify_MATCH', 'learn_notify_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('mac_acl_ACTION', 'acl_stats_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('mac_acl_ACTION', 'fwd_result_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('mac_acl_ACTION', 'ipv4_racl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('mac_acl_ACTION', 'meter_action_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('mac_acl_ACTION', 'meter_index_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('mac_acl_ACTION', 'storm_control_stats_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('mac_acl_ACTION', 'system_acl_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('mac_acl_ACTION', 'traffic_class_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('mac_acl_MATCH', 'mac_acl_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('meter_action_MATCH', 'meter_action_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('meter_index_ACTION', 'meter_action_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('meter_index_ACTION', 'storm_control_stats_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('meter_index_MATCH', 'meter_index_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('nat_dst_ACTION', 'fwd_result_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('nat_dst_MATCH', 'nat_dst_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('nat_dst_MATCH', 'nat_src_ACTION'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('nat_flow_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('nat_flow_MATCH', 'nat_flow_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('nat_src_MATCH', 'nat_flow_ACTION'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('nat_src_MATCH', 'nat_src_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('nat_twice_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('nat_twice_MATCH', 'nat_dst_ACTION'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('nat_twice_MATCH', 'nat_twice_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('native_packet_over_fabric_ACTION', 'compute_ipv4_hashes_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('native_packet_over_fabric_ACTION', 'compute_non_ip_hashes_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('native_packet_over_fabric_ACTION', 'dmac_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ingress_l4_dst_port_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ingress_l4_src_port_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ip_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ipv4_fib_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ipv4_fib_lpm_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ipv4_multicast_bridge_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ipv4_multicast_bridge_star_g_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ipv4_multicast_route_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ipv4_multicast_route_star_g_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ipv4_racl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ipv4_urpf_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'ipv4_urpf_lpm_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'learn_notify_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('native_packet_over_fabric_ACTION', 'mac_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'nat_dst_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'nat_flow_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'nat_src_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'nat_twice_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'rmac_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'smac_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_ACTION', 'validate_packet_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('native_packet_over_fabric_MATCH', 'native_packet_over_fabric_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('nexthop_ACTION', '_condition_36'): {'delay': 1, 'dep_type': 'rmt_match'},
('nexthop_ACTION', 'bd_flood_ACTION'): {'delay': 1, 'dep_type': 'rmt_action'},
('nexthop_ACTION', 'fabric_lag_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('nexthop_ACTION', 'lag_group_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('nexthop_ACTION', 'system_acl_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('nexthop_MATCH', 'nexthop_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('port_vlan_mapping_ACTION', '_condition_2'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', '_condition_23'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', '_condition_26'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', '_condition_27'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', '_condition_37'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'bd_flood_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'dmac_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ecmp_group_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('port_vlan_mapping_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ingress_bd_stats_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('port_vlan_mapping_ACTION', 'ip_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipsg_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipv4_fib_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipv4_fib_lpm_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipv4_multicast_bridge_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipv4_multicast_bridge_star_g_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipv4_multicast_route_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipv4_multicast_route_star_g_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipv4_racl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipv4_urpf_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'ipv4_urpf_lpm_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'learn_notify_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('port_vlan_mapping_ACTION', 'mac_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'nat_dst_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'nat_flow_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'nat_src_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'nat_twice_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'nexthop_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('port_vlan_mapping_ACTION', 'rmac_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'smac_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'spanning_tree_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'urpf_bd_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('port_vlan_mapping_ACTION', 'validate_packet_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('port_vlan_mapping_MATCH', 'port_vlan_mapping_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('rmac_ACTION', 'fwd_result_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('rmac_ACTION', 'system_acl_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('rmac_MATCH', '_condition_21'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('rmac_MATCH', '_condition_25'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('rmac_MATCH', 'rmac_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('smac_ACTION', 'learn_notify_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('smac_MATCH', 'smac_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('spanning_tree_ACTION', 'learn_notify_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('spanning_tree_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('spanning_tree_MATCH', 'spanning_tree_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('storm_control_ACTION', 'ip_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('storm_control_ACTION', 'ipv4_racl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('storm_control_ACTION', 'mac_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('storm_control_ACTION', 'meter_action_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('storm_control_ACTION', 'meter_index_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('storm_control_ACTION', 'storm_control_stats_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('storm_control_ACTION', 'validate_packet_ACTION'): {'delay': 0,
'dep_type': 'rmt_reverse_read'},
('storm_control_MATCH', 'storm_control_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('storm_control_stats_MATCH', 'storm_control_stats_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('switch_config_params_ACTION', 'dmac_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('switch_config_params_ACTION', 'ecmp_group_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('switch_config_params_ACTION', 'fabric_ingress_dst_lkp_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('switch_config_params_ACTION', 'fabric_lag_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('switch_config_params_ACTION', 'fwd_result_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('switch_config_params_ACTION', 'ip_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('switch_config_params_ACTION', 'lag_group_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('switch_config_params_ACTION', 'mac_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('switch_config_params_ACTION', 'nexthop_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('switch_config_params_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('switch_config_params_MATCH', 'switch_config_params_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('system_acl_MATCH', 'system_acl_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('traffic_class_ACTION', 'system_acl_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('traffic_class_MATCH', 'traffic_class_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('urpf_bd_ACTION', 'system_acl_MATCH'): {'delay': 1, 'dep_type': 'rmt_match'},
('urpf_bd_MATCH', 'urpf_bd_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('validate_outer_ethernet_ACTION', '_condition_13'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ethernet_ACTION', '_condition_40'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ethernet_ACTION', 'bd_flood_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ethernet_ACTION', 'compute_ipv4_hashes_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ethernet_ACTION', 'compute_non_ip_hashes_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ethernet_ACTION', 'drop_stats_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('validate_outer_ethernet_ACTION', 'fabric_ingress_dst_lkp_ACTION'): {'delay': 0,
'dep_type': 'rmt_reverse_read'},
('validate_outer_ethernet_ACTION', 'fwd_result_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('validate_outer_ethernet_ACTION', 'ingress_qos_map_pcp_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ethernet_ACTION', 'mac_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ethernet_ACTION', 'native_packet_over_fabric_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('validate_outer_ethernet_ACTION', 'storm_control_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ethernet_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ethernet_ACTION', 'validate_packet_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('validate_outer_ethernet_MATCH', '_condition_0'): {'delay': 9,
'dep_type': 'new_successor_conditional_on_table_result_action_type'},
('validate_outer_ethernet_MATCH', 'validate_outer_ethernet_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('validate_outer_ipv4_packet_ACTION', '_condition_13'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', '_condition_16'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', '_condition_19'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', '_condition_21'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', '_condition_26'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', '_condition_40'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', 'compute_ipv4_hashes_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', 'compute_non_ip_hashes_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', 'drop_stats_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('validate_outer_ipv4_packet_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', 'ingress_qos_map_dscp_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_ACTION', 'validate_packet_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_outer_ipv4_packet_MATCH', 'validate_outer_ipv4_packet_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'},
('validate_packet_ACTION', '_condition_40'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_packet_ACTION', 'bd_flood_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_packet_ACTION', 'compute_ipv4_hashes_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_packet_ACTION', 'compute_non_ip_hashes_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_packet_ACTION', 'drop_stats_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('validate_packet_ACTION', 'fwd_result_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_packet_ACTION', 'ingress_bd_stats_ACTION'): {'delay': 1,
'dep_type': 'rmt_action'},
('validate_packet_ACTION', 'system_acl_MATCH'): {'delay': 1,
'dep_type': 'rmt_match'},
('validate_packet_MATCH', 'validate_packet_ACTION'): {'delay': 9,
'dep_type': 'new_match_to_action'}}