summaryrefslogtreecommitdiffstats
path: root/debian/grub-extras/disabled/gpxe/src/include/gpxe/ib_pathrec.h
blob: 5884d5363d7d063fcb283f603fb5b4c634f39767 (plain)
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
#ifndef _GPXE_IB_PATHREC_H
#define _GPXE_IB_PATHREC_H

/** @file
 *
 * Infiniband path records
 *
 */

FILE_LICENCE ( GPL2_OR_LATER );

#include <gpxe/infiniband.h>

struct ib_mad_transaction;
struct ib_path;

/** Infiniband path operations */
struct ib_path_operations {
	/** Handle path transaction completion
	 *
	 * @v ibdev		Infiniband device
	 * @v path		Path
	 * @v rc		Status code
	 * @v av		Address vector, or NULL on error
	 */
	void ( * complete ) ( struct ib_device *ibdev,
			      struct ib_path *path, int rc,
			      struct ib_address_vector *av );
};

/** An Infiniband path */
struct ib_path {
	/** Infiniband device */
	struct ib_device *ibdev;
	/** Address vector */
	struct ib_address_vector av;
	/** Management transaction */
	struct ib_mad_transaction *madx;
	/** Path operations */
	struct ib_path_operations *op;
	/** Owner private data */
	void *owner_priv;
};

/**
 * Set Infiniband path owner-private data
 *
 * @v path		Path
 * @v priv		Private data
 */
static inline __always_inline void
ib_path_set_ownerdata ( struct ib_path *path, void *priv ) {
	path->owner_priv = priv;
}

/**
 * Get Infiniband path owner-private data
 *
 * @v path		Path
 * @ret priv		Private data
 */
static inline __always_inline void *
ib_path_get_ownerdata ( struct ib_path *path ) {
	return path->owner_priv;
}

extern struct ib_path *
ib_create_path ( struct ib_device *ibdev, struct ib_address_vector *av,
		 struct ib_path_operations *op );
extern void ib_destroy_path ( struct ib_device *ibdev,
			      struct ib_path *path );

extern int ib_resolve_path ( struct ib_device *ibdev,
			     struct ib_address_vector *av );

#endif /* _GPXE_IB_PATHREC_H */