]> git.proxmox.com Git - mirror_iproute2.git/blob - rdma/res.h
e36197732146595f662002cd55bbb645dfd9bfee
[mirror_iproute2.git] / rdma / res.h
1 /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
2 /*
3 * res.h RDMA tool
4 * Authors: Leon Romanovsky <leonro@mellanox.com>
5 */
6 #ifndef _RDMA_TOOL_RES_H_
7 #define _RDMA_TOOL_RES_H_
8
9 #include "rdma.h"
10
11 int _res_send_msg(struct rd *rd, uint32_t command, mnl_cb_t callback);
12 int res_pd_parse_cb(const struct nlmsghdr *nlh, void *data);
13 int res_mr_parse_cb(const struct nlmsghdr *nlh, void *data);
14
15 #define RES_FUNC(name, command, valid_filters, strict_port) \
16 static inline int _##name(struct rd *rd)\
17 { \
18 return _res_send_msg(rd, command, name##_parse_cb); \
19 } \
20 static inline int name(struct rd *rd) \
21 {\
22 int ret = rd_build_filter(rd, valid_filters); \
23 if (ret) \
24 return ret; \
25 if ((uintptr_t)valid_filters != (uintptr_t)NULL) { \
26 ret = rd_set_arg_to_devname(rd); \
27 if (ret) \
28 return ret;\
29 } \
30 if (strict_port) \
31 return rd_exec_dev(rd, _##name); \
32 else \
33 return rd_exec_link(rd, _##name, strict_port); \
34 }
35
36 static const
37 struct filters pd_valid_filters[MAX_NUMBER_OF_FILTERS] = {
38 { .name = "dev", .is_number = false },
39 { .name = "users", .is_number = true },
40 { .name = "pid", .is_number = true },
41 { .name = "ctxn", .is_number = true },
42 { .name = "pdn", .is_number = true },
43 { .name = "ctxn", .is_number = true }
44 };
45
46 RES_FUNC(res_pd, RDMA_NLDEV_CMD_RES_PD_GET, pd_valid_filters, true);
47
48 static const
49 struct filters mr_valid_filters[MAX_NUMBER_OF_FILTERS] = {
50 { .name = "dev", .is_number = false },
51 { .name = "rkey", .is_number = true },
52 { .name = "lkey", .is_number = true },
53 { .name = "mrlen", .is_number = true },
54 { .name = "pid", .is_number = true },
55 { .name = "mrn", .is_number = true },
56 { .name = "pdn", .is_number = true }
57 };
58
59 RES_FUNC(res_mr, RDMA_NLDEV_CMD_RES_MR_GET, mr_valid_filters, true);
60
61 char *get_task_name(uint32_t pid);
62 void print_dev(struct rd *rd, uint32_t idx, const char *name);
63 void print_users(struct rd *rd, uint64_t val);
64 void print_key(struct rd *rd, const char *name, uint64_t val);
65 void res_print_uint(struct rd *rd, const char *name, uint64_t val);
66 void print_pid(struct rd *rd, uint32_t val);
67 void print_comm(struct rd *rd, const char *str, struct nlattr **nla_line);
68
69 #endif /* _RDMA_TOOL_RES_H_ */