-
Notifications
You must be signed in to change notification settings - Fork 720
/
Copy pathibverbs.h
96 lines (80 loc) · 3.03 KB
/
ibverbs.h
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
/*
* Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
* Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* OpenIB.org BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef IB_VERBS_H
#define IB_VERBS_H
#include <pthread.h>
#include <infiniband/driver.h>
#include <util/bitmap.h>
#define INIT __attribute__((constructor))
#define PFX "libibverbs: "
#define VERBS_OPS_NUM (sizeof(struct verbs_context_ops) / sizeof(void *))
struct ibv_abi_compat_v2 {
struct ibv_comp_channel channel;
pthread_mutex_t in_use;
};
extern int abi_ver;
extern const struct verbs_context_ops verbs_dummy_ops;
int ibverbs_get_device_list(struct list_head *list);
int ibverbs_init(void);
void ibverbs_device_put(struct ibv_device *dev);
void ibverbs_device_hold(struct ibv_device *dev);
int __lib_query_port(struct ibv_context *context, uint8_t port_num,
struct ibv_port_attr *port_attr, size_t port_attr_len);
int setup_sysfs_uverbs(int uv_dirfd, const char *uverbs,
struct verbs_sysfs_dev *sysfs_dev);
#ifdef _STATIC_LIBRARY_BUILD_
static inline void load_drivers(void)
{
}
#else
void load_drivers(void);
#endif
struct verbs_ex_private {
BMP_DECLARE(unsupported_ioctls, VERBS_OPS_NUM);
uint32_t driver_id;
bool use_ioctl_write;
struct verbs_context_ops ops;
bool imported;
};
static inline struct verbs_ex_private *get_priv(struct ibv_context *ctx)
{
return container_of(ctx, struct verbs_context, context)->priv;
}
static inline const struct verbs_context_ops *get_ops(struct ibv_context *ctx)
{
return &get_priv(ctx)->ops;
}
enum ibv_node_type decode_knode_type(unsigned int knode_type);
int find_sysfs_devs_nl(struct list_head *tmp_sysfs_dev_list);
int try_access_device(const struct verbs_sysfs_dev *sysfs_dev);
#endif /* IB_VERBS_H */