Skip to content

Commit 43c2c9b

Browse files
authored
Create memory-reg.c
0 parents  commit 43c2c9b

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

memory-reg.c

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#define size_t int
2+
struct ibv_pd *pd;
3+
struct ibv_mr *mr;
4+
5+
6+
7+
// Memory Reg Example
8+
9+
struct ibv_mr *ibv_reg_mr(struct ibv_pd *pd,
10+
void *addr, size_t length,
11+
enum ibv_access_flags access);
12+
13+
/* Notice the following fields in struct ibv_mr:
14+
rkey - The remote key of this MR
15+
lkey - The local key of this MR
16+
addr – The start address of the memory buffer that this MR registered
17+
length – The size of the memory buffer that was registered
18+
*/
19+
20+
//Deregister a Memory Region
21+
22+
int ibv_dereg_mr(struct ibv_mr *mr);
23+
24+
25+
26+
27+
/*
28+
This verb should be called if there is no outstanding
29+
Send Request or Receive Request that points to it
30+
*/

0 commit comments

Comments
 (0)