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
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright 2018 6WIND S.A.
* Copyright 2018 Mellanox Technologies, Ltd
*/
#include <errno.h>
#include <stdalign.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
/*
* Not needed by this file; included to work around the lack of off_t
* definition for mlx5dv.h with unpatched rdma-core versions.
*/
#include <sys/types.h>
#include "mlx5_glue.h"
static int
mlx5_glue_fork_init(void)
{
return ibv_fork_init();
}
static struct ibv_pd *
mlx5_glue_alloc_pd(struct ibv_context *context)
{
return ibv_alloc_pd(context);
}
static int
mlx5_glue_dealloc_pd(struct ibv_pd *pd)
{
return ibv_dealloc_pd(pd);
}
static struct ibv_device **
mlx5_glue_get_device_list(int *num_devices)
{
return ibv_get_device_list(num_devices);
}
static void
mlx5_glue_free_device_list(struct ibv_device **list)
{
ibv_free_device_list(list);
}
static struct ibv_context *
mlx5_glue_open_device(struct ibv_device *device)
{
return ibv_open_device(device);
}
static int
mlx5_glue_close_device(struct ibv_context *context)
{
return ibv_close_device(context);
}
static int
mlx5_glue_query_device(struct ibv_context *context,
struct ibv_device_attr *device_attr)
{
return ibv_query_device(context, device_attr);
}
static int
mlx5_glue_query_device_ex(struct ibv_context *context,
const struct ibv_query_device_ex_input *input,
struct ibv_device_attr_ex *attr)
{
return ibv_query_device_ex(context, input, attr);
}
static int
mlx5_glue_query_rt_values_ex(struct ibv_context *context,
struct ibv_values_ex *values)
{
return ibv_query_rt_values_ex(context, values);
}
static int
mlx5_glue_query_port(struct ibv_context *context, uint8_t port_num,
struct ibv_port_attr *port_attr)
{
return ibv_query_port(context, port_num, port_attr);
}
static struct ibv_comp_channel *
mlx5_glue_create_comp_channel(struct ibv_context *context)
{
return ibv_create_comp_channel(context);
}
static int
mlx5_glue_destroy_comp_channel(struct ibv_comp_channel *channel)
{
return ibv_destroy_comp_channel(channel);
}
static struct ibv_cq *
mlx5_glue_create_cq(struct ibv_context *context, int cqe, void *cq_context,
struct ibv_comp_channel *channel, int comp_vector)
{
return ibv_create_cq(context, cqe, cq_context, channel, comp_vector);
}
static int
mlx5_glue_destroy_cq(struct ibv_cq *cq)
{
return ibv_destroy_cq(cq);
}
static int
mlx5_glue_get_cq_event(struct ibv_comp_channel *channel, struct ibv_cq **cq,
void **cq_context)
{
return ibv_get_cq_event(channel, cq, cq_context);
}
static void
mlx5_glue_ack_cq_events(struct ibv_cq *cq, unsigned int nevents)
{
ibv_ack_cq_events(cq, nevents);
}
static struct ibv_rwq_ind_table *
mlx5_glue_create_rwq_ind_table(struct ibv_context *context,
struct ibv_rwq_ind_table_init_attr *init_attr)
{
return ibv_create_rwq_ind_table(context, init_attr);
}
static int
mlx5_glue_destroy_rwq_ind_table(struct ibv_rwq_ind_table *rwq_ind_table)
{
return ibv_destroy_rwq_ind_table(rwq_ind_table);
}
static struct ibv_wq *
mlx5_glue_create_wq(struct ibv_context *context,
struct ibv_wq_init_attr *wq_init_attr)
{
return ibv_create_wq(context, wq_init_attr);
}
static int
mlx5_glue_destroy_wq(struct ibv_wq *wq)
{
return ibv_destroy_wq(wq);
}
static int
mlx5_glue_modify_wq(struct ibv_wq *wq, struct ibv_wq_attr *wq_attr)
{
return ibv_modify_wq(wq, wq_attr);
}
static struct ibv_flow *
mlx5_glue_create_flow(struct ibv_qp *qp, struct ibv_flow_attr *flow)
{
return ibv_create_flow(qp, flow);
}
static int
mlx5_glue_destroy_flow(struct ibv_flow *flow_id)
{
return ibv_destroy_flow(flow_id);
}
static int
mlx5_glue_destroy_flow_action(void *action)
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_action_destroy(action);
#else
struct mlx5dv_flow_action_attr *attr = action;
int res = 0;
switch (attr->type) {
case MLX5DV_FLOW_ACTION_TAG:
break;
default:
res = ibv_destroy_flow_action(attr->action);
break;
}
free(action);
return res;
#endif
#else
(void)action;
return ENOTSUP;
#endif
}
static struct ibv_qp *
mlx5_glue_create_qp(struct ibv_pd *pd, struct ibv_qp_init_attr *qp_init_attr)
{
return ibv_create_qp(pd, qp_init_attr);
}
static struct ibv_qp *
mlx5_glue_create_qp_ex(struct ibv_context *context,
struct ibv_qp_init_attr_ex *qp_init_attr_ex)
{
return ibv_create_qp_ex(context, qp_init_attr_ex);
}
static int
mlx5_glue_destroy_qp(struct ibv_qp *qp)
{
return ibv_destroy_qp(qp);
}
static int
mlx5_glue_modify_qp(struct ibv_qp *qp, struct ibv_qp_attr *attr, int attr_mask)
{
return ibv_modify_qp(qp, attr, attr_mask);
}
static struct ibv_mr *
mlx5_glue_reg_mr(struct ibv_pd *pd, void *addr, size_t length, int access)
{
return ibv_reg_mr(pd, addr, length, access);
}
static struct ibv_mr *
mlx5_glue_alloc_null_mr(struct ibv_pd *pd)
{
#ifdef HAVE_IBV_DEVX_OBJ
return ibv_alloc_null_mr(pd);
#else
(void)pd;
errno = ENOTSUP;
return NULL;
#endif
}
static int
mlx5_glue_dereg_mr(struct ibv_mr *mr)
{
return ibv_dereg_mr(mr);
}
static struct ibv_counter_set *
mlx5_glue_create_counter_set(struct ibv_context *context,
struct ibv_counter_set_init_attr *init_attr)
{
#ifndef HAVE_IBV_DEVICE_COUNTERS_SET_V42
(void)context;
(void)init_attr;
return NULL;
#else
return ibv_create_counter_set(context, init_attr);
#endif
}
static int
mlx5_glue_destroy_counter_set(struct ibv_counter_set *cs)
{
#ifndef HAVE_IBV_DEVICE_COUNTERS_SET_V42
(void)cs;
return ENOTSUP;
#else
return ibv_destroy_counter_set(cs);
#endif
}
static int
mlx5_glue_describe_counter_set(struct ibv_context *context,
uint16_t counter_set_id,
struct ibv_counter_set_description *cs_desc)
{
#ifndef HAVE_IBV_DEVICE_COUNTERS_SET_V42
(void)context;
(void)counter_set_id;
(void)cs_desc;
return ENOTSUP;
#else
return ibv_describe_counter_set(context, counter_set_id, cs_desc);
#endif
}
static int
mlx5_glue_query_counter_set(struct ibv_query_counter_set_attr *query_attr,
struct ibv_counter_set_data *cs_data)
{
#ifndef HAVE_IBV_DEVICE_COUNTERS_SET_V42
(void)query_attr;
(void)cs_data;
return ENOTSUP;
#else
return ibv_query_counter_set(query_attr, cs_data);
#endif
}
static struct ibv_counters *
mlx5_glue_create_counters(struct ibv_context *context,
struct ibv_counters_init_attr *init_attr)
{
#ifndef HAVE_IBV_DEVICE_COUNTERS_SET_V45
(void)context;
(void)init_attr;
errno = ENOTSUP;
return NULL;
#else
return ibv_create_counters(context, init_attr);
#endif
}
static int
mlx5_glue_destroy_counters(struct ibv_counters *counters)
{
#ifndef HAVE_IBV_DEVICE_COUNTERS_SET_V45
(void)counters;
return ENOTSUP;
#else
return ibv_destroy_counters(counters);
#endif
}
static int
mlx5_glue_attach_counters(struct ibv_counters *counters,
struct ibv_counter_attach_attr *attr,
struct ibv_flow *flow)
{
#ifndef HAVE_IBV_DEVICE_COUNTERS_SET_V45
(void)counters;
(void)attr;
(void)flow;
return ENOTSUP;
#else
return ibv_attach_counters_point_flow(counters, attr, flow);
#endif
}
static int
mlx5_glue_query_counters(struct ibv_counters *counters,
uint64_t *counters_value,
uint32_t ncounters,
uint32_t flags)
{
#ifndef HAVE_IBV_DEVICE_COUNTERS_SET_V45
(void)counters;
(void)counters_value;
(void)ncounters;
(void)flags;
return ENOTSUP;
#else
return ibv_read_counters(counters, counters_value, ncounters, flags);
#endif
}
static void
mlx5_glue_ack_async_event(struct ibv_async_event *event)
{
ibv_ack_async_event(event);
}
static int
mlx5_glue_get_async_event(struct ibv_context *context,
struct ibv_async_event *event)
{
return ibv_get_async_event(context, event);
}
static const char *
mlx5_glue_port_state_str(enum ibv_port_state port_state)
{
return ibv_port_state_str(port_state);
}
static struct ibv_cq *
mlx5_glue_cq_ex_to_cq(struct ibv_cq_ex *cq)
{
return ibv_cq_ex_to_cq(cq);
}
static void *
mlx5_glue_dr_create_flow_action_dest_flow_tbl(void *tbl)
{
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_action_create_dest_table(tbl);
#else
(void)tbl;
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dr_create_flow_action_dest_port(void *domain, uint32_t port)
{
#ifdef HAVE_MLX5DV_DR_DEVX_PORT
return mlx5dv_dr_action_create_dest_ib_port(domain, port);
#else
#ifdef HAVE_MLX5DV_DR_ESWITCH
return mlx5dv_dr_action_create_dest_vport(domain, port);
#else
(void)domain;
(void)port;
errno = ENOTSUP;
return NULL;
#endif
#endif
}
static void *
mlx5_glue_dr_create_flow_action_drop(void)
{
#ifdef HAVE_MLX5DV_DR_ESWITCH
return mlx5dv_dr_action_create_drop();
#else
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dr_create_flow_action_push_vlan(struct mlx5dv_dr_domain *domain,
rte_be32_t vlan_tag)
{
#ifdef HAVE_MLX5DV_DR_VLAN
return mlx5dv_dr_action_create_push_vlan(domain, vlan_tag);
#else
(void)domain;
(void)vlan_tag;
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dr_create_flow_action_pop_vlan(void)
{
#ifdef HAVE_MLX5DV_DR_VLAN
return mlx5dv_dr_action_create_pop_vlan();
#else
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dr_create_flow_tbl(void *domain, uint32_t level)
{
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_table_create(domain, level);
#else
(void)domain;
(void)level;
errno = ENOTSUP;
return NULL;
#endif
}
static int
mlx5_glue_dr_destroy_flow_tbl(void *tbl)
{
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_table_destroy(tbl);
#else
(void)tbl;
errno = ENOTSUP;
return errno;
#endif
}
static void *
mlx5_glue_dr_create_domain(struct ibv_context *ctx,
enum mlx5dv_dr_domain_type domain)
{
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_domain_create(ctx, domain);
#else
(void)ctx;
(void)domain;
errno = ENOTSUP;
return NULL;
#endif
}
static int
mlx5_glue_dr_destroy_domain(void *domain)
{
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_domain_destroy(domain);
#else
(void)domain;
errno = ENOTSUP;
return errno;
#endif
}
static struct ibv_cq_ex *
mlx5_glue_dv_create_cq(struct ibv_context *context,
struct ibv_cq_init_attr_ex *cq_attr,
struct mlx5dv_cq_init_attr *mlx5_cq_attr)
{
return mlx5dv_create_cq(context, cq_attr, mlx5_cq_attr);
}
static struct ibv_wq *
mlx5_glue_dv_create_wq(struct ibv_context *context,
struct ibv_wq_init_attr *wq_attr,
struct mlx5dv_wq_init_attr *mlx5_wq_attr)
{
#ifndef HAVE_IBV_DEVICE_STRIDING_RQ_SUPPORT
(void)context;
(void)wq_attr;
(void)mlx5_wq_attr;
errno = ENOTSUP;
return NULL;
#else
return mlx5dv_create_wq(context, wq_attr, mlx5_wq_attr);
#endif
}
static int
mlx5_glue_dv_query_device(struct ibv_context *ctx,
struct mlx5dv_context *attrs_out)
{
return mlx5dv_query_device(ctx, attrs_out);
}
static int
mlx5_glue_dv_set_context_attr(struct ibv_context *ibv_ctx,
enum mlx5dv_set_ctx_attr_type type, void *attr)
{
return mlx5dv_set_context_attr(ibv_ctx, type, attr);
}
static int
mlx5_glue_dv_init_obj(struct mlx5dv_obj *obj, uint64_t obj_type)
{
return mlx5dv_init_obj(obj, obj_type);
}
static struct ibv_qp *
mlx5_glue_dv_create_qp(struct ibv_context *context,
struct ibv_qp_init_attr_ex *qp_init_attr_ex,
struct mlx5dv_qp_init_attr *dv_qp_init_attr)
{
#ifdef HAVE_IBV_DEVICE_TUNNEL_SUPPORT
return mlx5dv_create_qp(context, qp_init_attr_ex, dv_qp_init_attr);
#else
(void)context;
(void)qp_init_attr_ex;
(void)dv_qp_init_attr;
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dv_create_flow_matcher(struct ibv_context *context,
struct mlx5dv_flow_matcher_attr *matcher_attr,
void *tbl)
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
#ifdef HAVE_MLX5DV_DR
(void)context;
return mlx5dv_dr_matcher_create(tbl, matcher_attr->priority,
matcher_attr->match_criteria_enable,
matcher_attr->match_mask);
#else
(void)tbl;
return mlx5dv_create_flow_matcher(context, matcher_attr);
#endif
#else
(void)context;
(void)matcher_attr;
(void)tbl;
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dv_create_flow(void *matcher,
void *match_value,
size_t num_actions,
void *actions[])
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_rule_create(matcher, match_value, num_actions,
(struct mlx5dv_dr_action **)actions);
#else
struct mlx5dv_flow_action_attr actions_attr[8];
if (num_actions > 8)
return NULL;
for (size_t i = 0; i < num_actions; i++)
actions_attr[i] =
*((struct mlx5dv_flow_action_attr *)(actions[i]));
return mlx5dv_create_flow(matcher, match_value,
num_actions, actions_attr);
#endif
#else
(void)matcher;
(void)match_value;
(void)num_actions;
(void)actions;
return NULL;
#endif
}
static void *
mlx5_glue_dv_create_flow_action_counter(void *counter_obj, uint32_t offset)
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_action_create_flow_counter(counter_obj, offset);
#else
struct mlx5dv_flow_action_attr *action;
(void)offset;
action = malloc(sizeof(*action));
if (!action)
return NULL;
action->type = MLX5DV_FLOW_ACTION_COUNTERS_DEVX;
action->obj = counter_obj;
return action;
#endif
#else
(void)counter_obj;
(void)offset;
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dv_create_flow_action_dest_ibv_qp(void *qp)
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_action_create_dest_ibv_qp(qp);
#else
struct mlx5dv_flow_action_attr *action;
action = malloc(sizeof(*action));
if (!action)
return NULL;
action->type = MLX5DV_FLOW_ACTION_DEST_IBV_QP;
action->obj = qp;
return action;
#endif
#else
(void)qp;
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dv_create_flow_action_dest_devx_tir(void *tir)
{
#ifdef HAVE_MLX5DV_DR_ACTION_DEST_DEVX_TIR
return mlx5dv_dr_action_create_dest_devx_tir(tir);
#else
(void)tir;
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dv_create_flow_action_modify_header
(struct ibv_context *ctx,
enum mlx5dv_flow_table_type ft_type,
void *domain, uint64_t flags,
size_t actions_sz,
uint64_t actions[])
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
#ifdef HAVE_MLX5DV_DR
(void)ctx;
(void)ft_type;
return mlx5dv_dr_action_create_modify_header(domain, flags, actions_sz,
(__be64 *)actions);
#else
struct mlx5dv_flow_action_attr *action;
(void)domain;
(void)flags;
action = malloc(sizeof(*action));
if (!action)
return NULL;
action->type = MLX5DV_FLOW_ACTION_IBV_FLOW_ACTION;
action->action = mlx5dv_create_flow_action_modify_header
(ctx, actions_sz, actions, ft_type);
return action;
#endif
#else
(void)ctx;
(void)ft_type;
(void)domain;
(void)flags;
(void)actions_sz;
(void)actions;
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dv_create_flow_action_packet_reformat
(struct ibv_context *ctx,
enum mlx5dv_flow_action_packet_reformat_type reformat_type,
enum mlx5dv_flow_table_type ft_type,
struct mlx5dv_dr_domain *domain,
uint32_t flags, size_t data_sz, void *data)
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
#ifdef HAVE_MLX5DV_DR
(void)ctx;
(void)ft_type;
return mlx5dv_dr_action_create_packet_reformat(domain, flags,
reformat_type, data_sz,
data);
#else
(void)domain;
(void)flags;
struct mlx5dv_flow_action_attr *action;
action = malloc(sizeof(*action));
if (!action)
return NULL;
action->type = MLX5DV_FLOW_ACTION_IBV_FLOW_ACTION;
action->action = mlx5dv_create_flow_action_packet_reformat
(ctx, data_sz, data, reformat_type, ft_type);
return action;
#endif
#else
(void)ctx;
(void)reformat_type;
(void)ft_type;
(void)domain;
(void)flags;
(void)data_sz;
(void)data;
errno = ENOTSUP;
return NULL;
#endif
}
static void *
mlx5_glue_dv_create_flow_action_tag(uint32_t tag)
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_action_create_tag(tag);
#else
struct mlx5dv_flow_action_attr *action;
action = malloc(sizeof(*action));
if (!action)
return NULL;
action->type = MLX5DV_FLOW_ACTION_TAG;
action->tag_value = tag;
return action;
#endif
#endif
(void)tag;
errno = ENOTSUP;
return NULL;
}
static void *
mlx5_glue_dv_create_flow_action_meter(struct mlx5dv_dr_flow_meter_attr *attr)
{
#if defined(HAVE_MLX5DV_DR) && defined(HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER)
return mlx5dv_dr_action_create_flow_meter(attr);
#else
(void)attr;
errno = ENOTSUP;
return NULL;
#endif
}
static int
mlx5_glue_dv_modify_flow_action_meter(void *action,
struct mlx5dv_dr_flow_meter_attr *attr,
uint64_t modify_bits)
{
#if defined(HAVE_MLX5DV_DR) && defined(HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER)
return mlx5dv_dr_action_modify_flow_meter(action, attr, modify_bits);
#else
(void)action;
(void)attr;
(void)modify_bits;
errno = ENOTSUP;
return errno;
#endif
}
static int
mlx5_glue_dv_destroy_flow(void *flow_id)
{
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_rule_destroy(flow_id);
#else
return ibv_destroy_flow(flow_id);
#endif
}
static int
mlx5_glue_dv_destroy_flow_matcher(void *matcher)
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
#ifdef HAVE_MLX5DV_DR
return mlx5dv_dr_matcher_destroy(matcher);
#else
return mlx5dv_destroy_flow_matcher(matcher);
#endif
#else
(void)matcher;
errno = ENOTSUP;
return errno;
#endif
}
static struct ibv_context *
mlx5_glue_dv_open_device(struct ibv_device *device)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_open_device(device,
&(struct mlx5dv_context_attr){
.flags = MLX5DV_CONTEXT_FLAGS_DEVX,
});
#else
(void)device;
errno = ENOTSUP;
return NULL;
#endif
}
static struct mlx5dv_devx_obj *
mlx5_glue_devx_obj_create(struct ibv_context *ctx,
const void *in, size_t inlen,
void *out, size_t outlen)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_devx_obj_create(ctx, in, inlen, out, outlen);
#else
(void)ctx;
(void)in;
(void)inlen;
(void)out;
(void)outlen;
errno = ENOTSUP;
return NULL;
#endif
}
static int
mlx5_glue_devx_obj_destroy(struct mlx5dv_devx_obj *obj)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_devx_obj_destroy(obj);
#else
(void)obj;
return -ENOTSUP;
#endif
}
static int
mlx5_glue_devx_obj_query(struct mlx5dv_devx_obj *obj,
const void *in, size_t inlen,
void *out, size_t outlen)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_devx_obj_query(obj, in, inlen, out, outlen);
#else
(void)obj;
(void)in;
(void)inlen;
(void)out;
(void)outlen;
return -ENOTSUP;
#endif
}
static int
mlx5_glue_devx_obj_modify(struct mlx5dv_devx_obj *obj,
const void *in, size_t inlen,
void *out, size_t outlen)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_devx_obj_modify(obj, in, inlen, out, outlen);
#else
(void)obj;
(void)in;
(void)inlen;
(void)out;
(void)outlen;
return -ENOTSUP;
#endif
}
static int
mlx5_glue_devx_general_cmd(struct ibv_context *ctx,
const void *in, size_t inlen,
void *out, size_t outlen)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_devx_general_cmd(ctx, in, inlen, out, outlen);
#else
(void)ctx;
(void)in;
(void)inlen;
(void)out;
(void)outlen;
return -ENOTSUP;
#endif
}
static struct mlx5dv_devx_cmd_comp *
mlx5_glue_devx_create_cmd_comp(struct ibv_context *ctx)
{
#ifdef HAVE_IBV_DEVX_ASYNC
return mlx5dv_devx_create_cmd_comp(ctx);
#else
(void)ctx;
errno = -ENOTSUP;
return NULL;
#endif
}
static void
mlx5_glue_devx_destroy_cmd_comp(struct mlx5dv_devx_cmd_comp *cmd_comp)
{
#ifdef HAVE_IBV_DEVX_ASYNC
mlx5dv_devx_destroy_cmd_comp(cmd_comp);
#else
(void)cmd_comp;
errno = -ENOTSUP;
#endif
}
static int
mlx5_glue_devx_obj_query_async(struct mlx5dv_devx_obj *obj, const void *in,
size_t inlen, size_t outlen, uint64_t wr_id,
struct mlx5dv_devx_cmd_comp *cmd_comp)
{
#ifdef HAVE_IBV_DEVX_ASYNC
return mlx5dv_devx_obj_query_async(obj, in, inlen, outlen, wr_id,
cmd_comp);
#else
(void)obj;
(void)in;
(void)inlen;
(void)outlen;
(void)wr_id;
(void)cmd_comp;
return -ENOTSUP;
#endif
}
static int
mlx5_glue_devx_get_async_cmd_comp(struct mlx5dv_devx_cmd_comp *cmd_comp,
struct mlx5dv_devx_async_cmd_hdr *cmd_resp,
size_t cmd_resp_len)
{
#ifdef HAVE_IBV_DEVX_ASYNC
return mlx5dv_devx_get_async_cmd_comp(cmd_comp, cmd_resp,
cmd_resp_len);
#else
(void)cmd_comp;
(void)cmd_resp;
(void)cmd_resp_len;
return -ENOTSUP;
#endif
}
static struct mlx5dv_devx_umem *
mlx5_glue_devx_umem_reg(struct ibv_context *context, void *addr, size_t size,
uint32_t access)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_devx_umem_reg(context, addr, size, access);
#else
(void)context;
(void)addr;
(void)size;
(void)access;
errno = -ENOTSUP;
return NULL;
#endif
}
static int
mlx5_glue_devx_umem_dereg(struct mlx5dv_devx_umem *dv_devx_umem)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_devx_umem_dereg(dv_devx_umem);
#else
(void)dv_devx_umem;
return -ENOTSUP;
#endif
}
static int
mlx5_glue_devx_qp_query(struct ibv_qp *qp,
const void *in, size_t inlen,
void *out, size_t outlen)
{
#ifdef HAVE_IBV_DEVX_QP
return mlx5dv_devx_qp_query(qp, in, inlen, out, outlen);
#else
(void)qp;
(void)in;
(void)inlen;
(void)out;
(void)outlen;
errno = ENOTSUP;
return errno;
#endif
}
static int
mlx5_glue_devx_port_query(struct ibv_context *ctx,
uint32_t port_num,
struct mlx5dv_devx_port *mlx5_devx_port)
{
#ifdef HAVE_MLX5DV_DR_DEVX_PORT
return mlx5dv_query_devx_port(ctx, port_num, mlx5_devx_port);
#else
(void)ctx;
(void)port_num;
(void)mlx5_devx_port;
errno = ENOTSUP;
return errno;
#endif
}
static int
mlx5_glue_dr_dump_domain(FILE *file, void *domain)
{
#ifdef HAVE_MLX5_DR_FLOW_DUMP
return mlx5dv_dump_dr_domain(file, domain);
#else
RTE_SET_USED(file);
RTE_SET_USED(domain);
return -ENOTSUP;
#endif
}
static int
mlx5_glue_devx_query_eqn(struct ibv_context *ctx, uint32_t cpus,
uint32_t *eqn)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_devx_query_eqn(ctx, cpus, eqn);
#else
(void)ctx;
(void)cpus;
(void)eqn;
return -ENOTSUP;
#endif
}
static struct mlx5dv_devx_event_channel *
mlx5_glue_devx_create_event_channel(struct ibv_context *ctx, int flags)
{
#ifdef HAVE_IBV_DEVX_EVENT
return mlx5dv_devx_create_event_channel(ctx, flags);
#else
(void)ctx;
(void)flags;
errno = ENOTSUP;
return NULL;
#endif
}
static void
mlx5_glue_devx_destroy_event_channel(struct mlx5dv_devx_event_channel *eventc)
{
#ifdef HAVE_IBV_DEVX_EVENT
mlx5dv_devx_destroy_event_channel(eventc);
#else
(void)eventc;
#endif
}
static int
mlx5_glue_devx_subscribe_devx_event(struct mlx5dv_devx_event_channel *eventc,
struct mlx5dv_devx_obj *obj,
uint16_t events_sz, uint16_t events_num[],
uint64_t cookie)
{
#ifdef HAVE_IBV_DEVX_EVENT
return mlx5dv_devx_subscribe_devx_event(eventc, obj, events_sz,
events_num, cookie);
#else
(void)eventc;
(void)obj;
(void)events_sz;
(void)events_num;
(void)cookie;
return -ENOTSUP;
#endif
}
static int
mlx5_glue_devx_subscribe_devx_event_fd(struct mlx5dv_devx_event_channel *eventc,
int fd, struct mlx5dv_devx_obj *obj,
uint16_t event_num)
{
#ifdef HAVE_IBV_DEVX_EVENT
return mlx5dv_devx_subscribe_devx_event_fd(eventc, fd, obj, event_num);
#else
(void)eventc;
(void)fd;
(void)obj;
(void)event_num;
return -ENOTSUP;
#endif
}
static ssize_t
mlx5_glue_devx_get_event(struct mlx5dv_devx_event_channel *eventc,
struct mlx5dv_devx_async_event_hdr *event_data,
size_t event_resp_len)
{
#ifdef HAVE_IBV_DEVX_EVENT
return mlx5dv_devx_get_event(eventc, event_data, event_resp_len);
#else
(void)eventc;
(void)event_data;
(void)event_resp_len;
errno = ENOTSUP;
return -1;
#endif
}
static struct mlx5dv_devx_uar *
mlx5_glue_devx_alloc_uar(struct ibv_context *context, uint32_t flags)
{
#ifdef HAVE_IBV_DEVX_OBJ
return mlx5dv_devx_alloc_uar(context, flags);
#else
(void)context;
(void)flags;
errno = ENOTSUP;
return NULL;
#endif
}
static void
mlx5_glue_devx_free_uar(struct mlx5dv_devx_uar *devx_uar)
{
#ifdef HAVE_IBV_DEVX_OBJ
mlx5dv_devx_free_uar(devx_uar);
#else
(void)devx_uar;
#endif
}
static struct mlx5dv_var *
mlx5_glue_dv_alloc_var(struct ibv_context *context, uint32_t flags)
{
#ifdef HAVE_IBV_VAR
return mlx5dv_alloc_var(context, flags);
#else
(void)context;
(void)flags;
errno = ENOTSUP;
return NULL;
#endif
}
static void
mlx5_glue_dv_free_var(struct mlx5dv_var *var)
{
#ifdef HAVE_IBV_VAR
mlx5dv_free_var(var);
#else
(void)var;
errno = ENOTSUP;
#endif
}
__rte_cache_aligned
const struct mlx5_glue *mlx5_glue = &(const struct mlx5_glue) {
.version = MLX5_GLUE_VERSION,
.fork_init = mlx5_glue_fork_init,
.alloc_pd = mlx5_glue_alloc_pd,
.dealloc_pd = mlx5_glue_dealloc_pd,
.get_device_list = mlx5_glue_get_device_list,
.free_device_list = mlx5_glue_free_device_list,
.open_device = mlx5_glue_open_device,
.close_device = mlx5_glue_close_device,
.query_device = mlx5_glue_query_device,
.query_device_ex = mlx5_glue_query_device_ex,
.query_rt_values_ex = mlx5_glue_query_rt_values_ex,
.query_port = mlx5_glue_query_port,
.create_comp_channel = mlx5_glue_create_comp_channel,
.destroy_comp_channel = mlx5_glue_destroy_comp_channel,
.create_cq = mlx5_glue_create_cq,
.destroy_cq = mlx5_glue_destroy_cq,
.get_cq_event = mlx5_glue_get_cq_event,
.ack_cq_events = mlx5_glue_ack_cq_events,
.create_rwq_ind_table = mlx5_glue_create_rwq_ind_table,
.destroy_rwq_ind_table = mlx5_glue_destroy_rwq_ind_table,
.create_wq = mlx5_glue_create_wq,
.destroy_wq = mlx5_glue_destroy_wq,
.modify_wq = mlx5_glue_modify_wq,
.create_flow = mlx5_glue_create_flow,
.destroy_flow = mlx5_glue_destroy_flow,
.destroy_flow_action = mlx5_glue_destroy_flow_action,
.create_qp = mlx5_glue_create_qp,
.create_qp_ex = mlx5_glue_create_qp_ex,
.destroy_qp = mlx5_glue_destroy_qp,
.modify_qp = mlx5_glue_modify_qp,
.reg_mr = mlx5_glue_reg_mr,
.alloc_null_mr = mlx5_glue_alloc_null_mr,
.dereg_mr = mlx5_glue_dereg_mr,
.create_counter_set = mlx5_glue_create_counter_set,
.destroy_counter_set = mlx5_glue_destroy_counter_set,
.describe_counter_set = mlx5_glue_describe_counter_set,
.query_counter_set = mlx5_glue_query_counter_set,
.create_counters = mlx5_glue_create_counters,
.destroy_counters = mlx5_glue_destroy_counters,
.attach_counters = mlx5_glue_attach_counters,
.query_counters = mlx5_glue_query_counters,
.ack_async_event = mlx5_glue_ack_async_event,
.get_async_event = mlx5_glue_get_async_event,
.port_state_str = mlx5_glue_port_state_str,
.cq_ex_to_cq = mlx5_glue_cq_ex_to_cq,
.dr_create_flow_action_dest_flow_tbl =
mlx5_glue_dr_create_flow_action_dest_flow_tbl,
.dr_create_flow_action_dest_port =
mlx5_glue_dr_create_flow_action_dest_port,
.dr_create_flow_action_drop =
mlx5_glue_dr_create_flow_action_drop,
.dr_create_flow_action_push_vlan =
mlx5_glue_dr_create_flow_action_push_vlan,
.dr_create_flow_action_pop_vlan =
mlx5_glue_dr_create_flow_action_pop_vlan,
.dr_create_flow_tbl = mlx5_glue_dr_create_flow_tbl,
.dr_destroy_flow_tbl = mlx5_glue_dr_destroy_flow_tbl,
.dr_create_domain = mlx5_glue_dr_create_domain,
.dr_destroy_domain = mlx5_glue_dr_destroy_domain,
.dv_create_cq = mlx5_glue_dv_create_cq,
.dv_create_wq = mlx5_glue_dv_create_wq,
.dv_query_device = mlx5_glue_dv_query_device,
.dv_set_context_attr = mlx5_glue_dv_set_context_attr,
.dv_init_obj = mlx5_glue_dv_init_obj,
.dv_create_qp = mlx5_glue_dv_create_qp,
.dv_create_flow_matcher = mlx5_glue_dv_create_flow_matcher,
.dv_create_flow = mlx5_glue_dv_create_flow,
.dv_create_flow_action_counter =
mlx5_glue_dv_create_flow_action_counter,
.dv_create_flow_action_dest_ibv_qp =
mlx5_glue_dv_create_flow_action_dest_ibv_qp,
.dv_create_flow_action_dest_devx_tir =
mlx5_glue_dv_create_flow_action_dest_devx_tir,
.dv_create_flow_action_modify_header =
mlx5_glue_dv_create_flow_action_modify_header,
.dv_create_flow_action_packet_reformat =
mlx5_glue_dv_create_flow_action_packet_reformat,
.dv_create_flow_action_tag = mlx5_glue_dv_create_flow_action_tag,
.dv_create_flow_action_meter = mlx5_glue_dv_create_flow_action_meter,
.dv_modify_flow_action_meter = mlx5_glue_dv_modify_flow_action_meter,
.dv_destroy_flow = mlx5_glue_dv_destroy_flow,
.dv_destroy_flow_matcher = mlx5_glue_dv_destroy_flow_matcher,
.dv_open_device = mlx5_glue_dv_open_device,
.devx_obj_create = mlx5_glue_devx_obj_create,
.devx_obj_destroy = mlx5_glue_devx_obj_destroy,
.devx_obj_query = mlx5_glue_devx_obj_query,
.devx_obj_modify = mlx5_glue_devx_obj_modify,
.devx_general_cmd = mlx5_glue_devx_general_cmd,
.devx_create_cmd_comp = mlx5_glue_devx_create_cmd_comp,
.devx_destroy_cmd_comp = mlx5_glue_devx_destroy_cmd_comp,
.devx_obj_query_async = mlx5_glue_devx_obj_query_async,
.devx_get_async_cmd_comp = mlx5_glue_devx_get_async_cmd_comp,
.devx_umem_reg = mlx5_glue_devx_umem_reg,
.devx_umem_dereg = mlx5_glue_devx_umem_dereg,
.devx_qp_query = mlx5_glue_devx_qp_query,
.devx_port_query = mlx5_glue_devx_port_query,
.dr_dump_domain = mlx5_glue_dr_dump_domain,
.devx_query_eqn = mlx5_glue_devx_query_eqn,
.devx_create_event_channel = mlx5_glue_devx_create_event_channel,
.devx_destroy_event_channel = mlx5_glue_devx_destroy_event_channel,
.devx_subscribe_devx_event = mlx5_glue_devx_subscribe_devx_event,
.devx_subscribe_devx_event_fd = mlx5_glue_devx_subscribe_devx_event_fd,
.devx_get_event = mlx5_glue_devx_get_event,
.devx_alloc_uar = mlx5_glue_devx_alloc_uar,
.devx_free_uar = mlx5_glue_devx_free_uar,
.dv_alloc_var = mlx5_glue_dv_alloc_var,
.dv_free_var = mlx5_glue_dv_free_var,
};
|