File tree 4 files changed +462
-0
lines changed
libibverbs-1.2.1mlnx1/src
libibverbs-1.2.1mlnx1/src
4 files changed +462
-0
lines changed Original file line number Diff line number Diff line change
1
+ IBVERBS_1.0 {
2
+ global:
3
+ ibv_get_device_list;
4
+ ibv_free_device_list;
5
+ ibv_get_device_name;
6
+ ibv_get_device_guid;
7
+ ibv_open_device;
8
+ ibv_close_device;
9
+ ibv_get_async_event;
10
+ ibv_ack_async_event;
11
+ ibv_query_device;
12
+ ibv_query_device_ex;
13
+ ibv_query_port;
14
+ ibv_query_gid;
15
+ ibv_query_pkey;
16
+ ibv_alloc_pd;
17
+ ibv_dealloc_pd;
18
+ ibv_reg_mr;
19
+ ibv_dereg_mr;
20
+ ibv_create_comp_channel;
21
+ ibv_destroy_comp_channel;
22
+ ibv_create_cq;
23
+ ibv_resize_cq;
24
+ ibv_destroy_cq;
25
+ ibv_get_cq_event;
26
+ ibv_ack_cq_events;
27
+ ibv_create_srq;
28
+ ibv_modify_srq;
29
+ ibv_query_srq;
30
+ ibv_destroy_srq;
31
+ ibv_create_qp;
32
+ ibv_query_qp;
33
+ ibv_modify_qp;
34
+ ibv_destroy_qp;
35
+ ibv_create_ah;
36
+ ibv_destroy_ah;
37
+ ibv_attach_mcast;
38
+ ibv_detach_mcast;
39
+ ibv_cmd_get_context;
40
+ ibv_cmd_query_device;
41
+ ibv_cmd_query_device_ex;
42
+ ibv_cmd_query_port;
43
+ ibv_cmd_query_gid;
44
+ ibv_cmd_query_pkey;
45
+ ibv_cmd_alloc_pd;
46
+ ibv_cmd_dealloc_pd;
47
+ ibv_cmd_reg_mr;
48
+ ibv_cmd_dereg_mr;
49
+ ibv_cmd_create_cq;
50
+ ibv_cmd_poll_cq;
51
+ ibv_cmd_req_notify_cq;
52
+ ibv_cmd_resize_cq;
53
+ ibv_cmd_destroy_cq;
54
+ ibv_cmd_create_srq;
55
+ ibv_cmd_modify_srq;
56
+ ibv_cmd_query_srq;
57
+ ibv_cmd_destroy_srq;
58
+ ibv_cmd_create_qp;
59
+ ibv_cmd_query_qp;
60
+ ibv_cmd_modify_qp;
61
+ ibv_cmd_destroy_qp;
62
+ ibv_cmd_post_send;
63
+ ibv_cmd_post_recv;
64
+ ibv_cmd_post_srq_recv;
65
+ ibv_cmd_create_ah;
66
+ ibv_cmd_destroy_ah;
67
+ ibv_cmd_attach_mcast;
68
+ ibv_cmd_detach_mcast;
69
+ ibv_cmd_create_flow;
70
+ ibv_cmd_destroy_flow;
71
+ ibv_copy_qp_attr_from_kern;
72
+ ibv_copy_path_rec_from_kern;
73
+ ibv_copy_path_rec_to_kern;
74
+ ibv_rate_to_mult;
75
+ mult_to_ibv_rate;
76
+ ibv_get_sysfs_path;
77
+ ibv_read_sysfs_file;
78
+
79
+ local: *;
80
+ };
81
+
82
+ IBVERBS_1.1 {
83
+ global:
84
+ ibv_get_device_list;
85
+ ibv_free_device_list;
86
+ ibv_get_device_name;
87
+ ibv_get_device_guid;
88
+ ibv_open_device;
89
+ ibv_close_device;
90
+
91
+ ibv_init_ah_from_wc;
92
+ ibv_create_ah_from_wc;
93
+ ibv_copy_ah_attr_from_kern;
94
+ ibv_fork_init;
95
+ ibv_dontfork_range;
96
+ ibv_dofork_range;
97
+ ibv_register_driver;
98
+ verbs_register_driver;
99
+
100
+ ibv_node_type_str;
101
+ ibv_port_state_str;
102
+ ibv_event_type_str;
103
+ ibv_wc_status_str;
104
+
105
+ ibv_cmd_alloc_mw;
106
+ ibv_cmd_dealloc_mw;
107
+
108
+ ibv_rate_to_mbps;
109
+ mbps_to_ibv_rate;
110
+ ibv_cmd_open_xrcd;
111
+ ibv_cmd_close_xrcd;
112
+ ibv_cmd_create_srq_ex;
113
+ ibv_cmd_open_qp;
114
+ ibv_open_xrc_domain;
115
+ ibv_create_xrc_srq;
116
+ ibv_close_xrc_domain;
117
+ ibv_create_xrc_rcv_qp;
118
+ ibv_modify_xrc_rcv_qp;
119
+ ibv_reg_xrc_rcv_qp;
120
+ ibv_unreg_xrc_rcv_qp;
121
+ ibv_query_xrc_rcv_qp;
122
+ ibv_exp_cmd_create_qp;
123
+ ibv_exp_cmd_query_device;
124
+ ibv_exp_cmd_create_dct;
125
+ ibv_exp_cmd_destroy_dct;
126
+ ibv_exp_cmd_query_dct;
127
+ ibv_exp_cmd_arm_dct;
128
+ ibv_exp_cmd_modify_cq;
129
+ ibv_exp_cmd_modify_qp;
130
+ ibv_exp_cmd_create_cq;
131
+ ibv_exp_cmd_create_mr;
132
+ ibv_exp_cmd_query_mkey;
133
+ ibv_cmd_exp_reg_mr;
134
+ ibv_cmd_exp_prefetch_mr;
135
+ ibv_exp_cmd_rereg_mr;
136
+ ibv_exp_cmd_getenv;
137
+ ibv_exp_cmd_create_flow;
138
+ ibv_exp_cmd_destroy_flow;
139
+ ibv_exp_cmd_create_wq;
140
+ ibv_exp_cmd_modify_wq;
141
+ ibv_exp_cmd_destroy_wq;
142
+ ibv_exp_cmd_create_rwq_ind_table;
143
+ ibv_exp_cmd_destroy_rwq_ind_table;
144
+ ibv_cmd_rereg_mr;
145
+ } IBVERBS_1.0;
Original file line number Diff line number Diff line change
1
+ RDMACM_1.0 {
2
+ global:
3
+ rdma_create_event_channel;
4
+ rdma_destroy_event_channel;
5
+ rdma_create_id;
6
+ rdma_destroy_id;
7
+ rdma_bind_addr;
8
+ rdma_bind_addr2;
9
+ rdma_resolve_addr;
10
+ rdma_resolve_addr2;
11
+ rdma_resolve_route;
12
+ rdma_create_qp;
13
+ rdma_destroy_qp;
14
+ rdma_connect;
15
+ rdma_listen;
16
+ rdma_accept;
17
+ rdma_reject;
18
+ rdma_notify;
19
+ rdma_disconnect;
20
+ rdma_get_cm_event;
21
+ rdma_get_cm_event_resp;
22
+ rdma_ack_cm_event;
23
+ rdma_get_src_port;
24
+ rdma_get_dst_port;
25
+ rdma_join_multicast;
26
+ rdma_leave_multicast;
27
+ rdma_get_devices;
28
+ rdma_free_devices;
29
+ rdma_event_str;
30
+ rdma_set_option;
31
+ rdma_get_local_addr;
32
+ rdma_get_peer_addr;
33
+ rdma_migrate_id;
34
+ rdma_getaddrinfo;
35
+ rdma_freeaddrinfo;
36
+ rdma_get_request;
37
+ rdma_create_ep;
38
+ rdma_destroy_ep;
39
+ rdma_create_srq;
40
+ rdma_destroy_srq;
41
+ rdma_lib_reset;
42
+ rsocket;
43
+ rbind;
44
+ rlisten;
45
+ raccept;
46
+ rconnect;
47
+ rshutdown;
48
+ rclose;
49
+ rrecv;
50
+ rrecvfrom;
51
+ rrecvmsg;
52
+ rsend;
53
+ rsendto;
54
+ rsendmsg;
55
+ rread;
56
+ rreadv;
57
+ rwrite;
58
+ rwritev;
59
+ rpoll;
60
+ rselect;
61
+ rgetpeername;
62
+ rgetsockname;
63
+ rsetsockopt;
64
+ rgetsockopt;
65
+ rfcntl;
66
+ rpoll;
67
+ rselect;
68
+ rdma_get_src_port;
69
+ rdma_get_dst_port;
70
+ riomap;
71
+ riounmap;
72
+ riowrite;
73
+ rdma_create_srq_ex;
74
+ rdma_create_qp_ex;
75
+ rdma_create_qp_exp;
76
+
77
+ rdma_create_id_resp;
78
+ rdma_bind_addr_resp;
79
+ rdma_bind_resp;
80
+ rdma_get_cm_event_resp;
81
+ ucma_query_route_resp;
82
+ rdma_listen_resp;
83
+ rdma_resolve_addr_resp;
84
+ rdma_resolve_addr2_resp;
85
+ ucma_query_addr_resp;
86
+ ucma_query_gid_resp;
87
+ ucma_process_conn_resp_resp;
88
+ ucma_destroy_kern_id_resp;
89
+ rdma_resolve_route_resp;
90
+ ucma_query_path_resp;
91
+ rdma_connect_resp;
92
+ rdma_accept_resp;
93
+ rdma_set_option_resp;
94
+ rdma_migrate_id_resp;
95
+ rdma_disconnect_resp;
96
+ rdma_init_qp_attr_resp;
97
+ local: *;
98
+ };
Original file line number Diff line number Diff line change
1
+ IBVERBS_1.0 {
2
+ global:
3
+ ibv_get_device_list;
4
+ ibv_free_device_list;
5
+ ibv_get_device_name;
6
+ ibv_get_device_guid;
7
+ ibv_open_device;
8
+ ibv_close_device;
9
+ ibv_get_async_event;
10
+ ibv_ack_async_event;
11
+ ibv_query_device;
12
+ ibv_query_device_ex;
13
+ ibv_query_port;
14
+ ibv_query_gid;
15
+ ibv_query_pkey;
16
+ ibv_alloc_pd;
17
+ ibv_dealloc_pd;
18
+ ibv_reg_mr;
19
+ ibv_dereg_mr;
20
+ ibv_create_comp_channel;
21
+ ibv_destroy_comp_channel;
22
+ ibv_create_cq;
23
+ ibv_resize_cq;
24
+ ibv_destroy_cq;
25
+ ibv_get_cq_event;
26
+ ibv_ack_cq_events;
27
+ ibv_create_srq;
28
+ ibv_modify_srq;
29
+ ibv_query_srq;
30
+ ibv_destroy_srq;
31
+ ibv_create_qp;
32
+ ibv_query_qp;
33
+ ibv_modify_qp;
34
+ ibv_destroy_qp;
35
+ ibv_create_ah;
36
+ ibv_destroy_ah;
37
+ ibv_attach_mcast;
38
+ ibv_detach_mcast;
39
+ ibv_cmd_get_context;
40
+ ibv_cmd_query_device;
41
+ ibv_cmd_query_device_ex;
42
+ ibv_cmd_query_port;
43
+ ibv_cmd_query_gid;
44
+ ibv_cmd_query_pkey;
45
+ ibv_cmd_alloc_pd;
46
+ ibv_cmd_dealloc_pd;
47
+ ibv_cmd_reg_mr;
48
+ ibv_cmd_dereg_mr;
49
+ ibv_cmd_create_cq;
50
+ ibv_cmd_poll_cq;
51
+ ibv_cmd_req_notify_cq;
52
+ ibv_cmd_resize_cq;
53
+ ibv_cmd_destroy_cq;
54
+ ibv_cmd_create_srq;
55
+ ibv_cmd_modify_srq;
56
+ ibv_cmd_query_srq;
57
+ ibv_cmd_destroy_srq;
58
+ ibv_cmd_create_qp;
59
+ ibv_cmd_query_qp;
60
+ ibv_cmd_modify_qp;
61
+ ibv_cmd_destroy_qp;
62
+ ibv_cmd_post_send;
63
+ ibv_cmd_post_recv;
64
+ ibv_cmd_post_srq_recv;
65
+ ibv_cmd_create_ah;
66
+ ibv_cmd_destroy_ah;
67
+ ibv_cmd_attach_mcast;
68
+ ibv_cmd_detach_mcast;
69
+ ibv_cmd_create_flow;
70
+ ibv_cmd_destroy_flow;
71
+ ibv_copy_qp_attr_from_kern;
72
+ ibv_copy_path_rec_from_kern;
73
+ ibv_copy_path_rec_to_kern;
74
+ ibv_rate_to_mult;
75
+ mult_to_ibv_rate;
76
+ ibv_get_sysfs_path;
77
+ ibv_read_sysfs_file;
78
+
79
+ local: *;
80
+ };
81
+
82
+ IBVERBS_1.1 {
83
+ global:
84
+ ibv_get_device_list;
85
+ ibv_free_device_list;
86
+ ibv_get_device_name;
87
+ ibv_get_device_guid;
88
+ ibv_open_device;
89
+ ibv_close_device;
90
+
91
+ ibv_init_ah_from_wc;
92
+ ibv_create_ah_from_wc;
93
+ ibv_copy_ah_attr_from_kern;
94
+ ibv_fork_init;
95
+ ibv_dontfork_range;
96
+ ibv_dofork_range;
97
+ ibv_register_driver;
98
+ verbs_register_driver;
99
+
100
+ ibv_node_type_str;
101
+ ibv_port_state_str;
102
+ ibv_event_type_str;
103
+ ibv_wc_status_str;
104
+
105
+ ibv_cmd_alloc_mw;
106
+ ibv_cmd_dealloc_mw;
107
+
108
+ ibv_rate_to_mbps;
109
+ mbps_to_ibv_rate;
110
+ ibv_cmd_open_xrcd;
111
+ ibv_cmd_close_xrcd;
112
+ ibv_cmd_create_srq_ex;
113
+ ibv_cmd_open_qp;
114
+ ibv_open_xrc_domain;
115
+ ibv_create_xrc_srq;
116
+ ibv_close_xrc_domain;
117
+ ibv_create_xrc_rcv_qp;
118
+ ibv_modify_xrc_rcv_qp;
119
+ ibv_reg_xrc_rcv_qp;
120
+ ibv_unreg_xrc_rcv_qp;
121
+ ibv_query_xrc_rcv_qp;
122
+ ibv_exp_cmd_create_qp;
123
+ ibv_exp_cmd_query_device;
124
+ ibv_exp_cmd_create_dct;
125
+ ibv_exp_cmd_destroy_dct;
126
+ ibv_exp_cmd_query_dct;
127
+ ibv_exp_cmd_arm_dct;
128
+ ibv_exp_cmd_modify_cq;
129
+ ibv_exp_cmd_modify_qp;
130
+ ibv_exp_cmd_create_cq;
131
+ ibv_exp_cmd_create_mr;
132
+ ibv_exp_cmd_query_mkey;
133
+ ibv_cmd_exp_reg_mr;
134
+ ibv_cmd_exp_prefetch_mr;
135
+ ibv_exp_cmd_rereg_mr;
136
+ ibv_exp_cmd_getenv;
137
+ ibv_exp_cmd_create_flow;
138
+ ibv_exp_cmd_destroy_flow;
139
+ ibv_exp_cmd_create_wq;
140
+ ibv_exp_cmd_modify_wq;
141
+ ibv_exp_cmd_destroy_wq;
142
+ ibv_exp_cmd_create_rwq_ind_table;
143
+ ibv_exp_cmd_destroy_rwq_ind_table;
144
+ ibv_cmd_rereg_mr;
145
+ } IBVERBS_1.0;
You can’t perform that action at this time.
0 commit comments