Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.71.254.85
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
src /
linux-headers-5.15.0-25 /
include /
rdma /
[ HOME SHELL ]
Name
Size
Permission
Action
ib.h
2.09
KB
-rw-r--r--
ib_addr.h
7.66
KB
-rw-r--r--
ib_cache.h
4.23
KB
-rw-r--r--
ib_cm.h
16.92
KB
-rw-r--r--
ib_hdrs.h
6.79
KB
-rw-r--r--
ib_mad.h
24.48
KB
-rw-r--r--
ib_marshall.h
778
B
-rw-r--r--
ib_pack.h
7.71
KB
-rw-r--r--
ib_pma.h
4.17
KB
-rw-r--r--
ib_sa.h
19.5
KB
-rw-r--r--
ib_smi.h
4.21
KB
-rw-r--r--
ib_sysfs.h
1.23
KB
-rw-r--r--
ib_umem.h
6.64
KB
-rw-r--r--
ib_umem_odp.h
3.39
KB
-rw-r--r--
ib_verbs.h
138.24
KB
-rw-r--r--
iba.h
5.51
KB
-rw-r--r--
ibta_vol1_c12.h
12.94
KB
-rw-r--r--
iw_cm.h
7.12
KB
-rw-r--r--
iw_portmap.h
2.19
KB
-rw-r--r--
lag.h
530
B
-rw-r--r--
mr_pool.h
568
B
-rw-r--r--
opa_addr.h
2.39
KB
-rw-r--r--
opa_port_info.h
13.43
KB
-rw-r--r--
opa_smi.h
3
KB
-rw-r--r--
opa_vnic.h
2
KB
-rw-r--r--
peer_mem.h
6.19
KB
-rw-r--r--
rdma_cm.h
12.81
KB
-rw-r--r--
rdma_cm_ib.h
797
B
-rw-r--r--
rdma_counter.h
1.78
KB
-rw-r--r--
rdma_netlink.h
3.97
KB
-rw-r--r--
rdma_vt.h
14.22
KB
-rw-r--r--
rdmavt_cq.h
1.74
KB
-rw-r--r--
rdmavt_mr.h
3.94
KB
-rw-r--r--
rdmavt_qp.h
28.01
KB
-rw-r--r--
restrack.h
4.2
KB
-rw-r--r--
rw.h
2.22
KB
-rw-r--r--
signature.h
2.9
KB
-rw-r--r--
tid_rdma_defs.h
2.05
KB
-rw-r--r--
uverbs_ioctl.h
32.22
KB
-rw-r--r--
uverbs_named_ioctl.h
4.72
KB
-rw-r--r--
uverbs_std_types.h
5.23
KB
-rw-r--r--
uverbs_types.h
6.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : restrack.h
/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */ /* * Copyright (c) 2017-2018 Mellanox Technologies. All rights reserved. */ #ifndef _RDMA_RESTRACK_H_ #define _RDMA_RESTRACK_H_ #include <linux/typecheck.h> #include <linux/sched.h> #include <linux/kref.h> #include <linux/completion.h> #include <linux/sched/task.h> #include <uapi/rdma/rdma_netlink.h> #include <linux/xarray.h> struct ib_device; struct sk_buff; /** * enum rdma_restrack_type - HW objects to track */ enum rdma_restrack_type { /** * @RDMA_RESTRACK_PD: Protection domain (PD) */ RDMA_RESTRACK_PD, /** * @RDMA_RESTRACK_CQ: Completion queue (CQ) */ RDMA_RESTRACK_CQ, /** * @RDMA_RESTRACK_QP: Queue pair (QP) */ RDMA_RESTRACK_QP, /** * @RDMA_RESTRACK_CM_ID: Connection Manager ID (CM_ID) */ RDMA_RESTRACK_CM_ID, /** * @RDMA_RESTRACK_MR: Memory Region (MR) */ RDMA_RESTRACK_MR, /** * @RDMA_RESTRACK_CTX: Verbs contexts (CTX) */ RDMA_RESTRACK_CTX, /** * @RDMA_RESTRACK_COUNTER: Statistic Counter */ RDMA_RESTRACK_COUNTER, /** * @RDMA_RESTRACK_SRQ: Shared receive queue (SRQ) */ RDMA_RESTRACK_SRQ, /** * @RDMA_RESTRACK_MAX: Last entry, used for array dclarations */ RDMA_RESTRACK_MAX }; /** * struct rdma_restrack_entry - metadata per-entry */ struct rdma_restrack_entry { /** * @valid: validity indicator * * The entries are filled during rdma_restrack_add, * can be attempted to be free during rdma_restrack_del. * * As an example for that, see mlx5 QPs with type MLX5_IB_QPT_HW_GSI */ bool valid; /** * @no_track: don't add this entry to restrack DB * * This field is used to mark an entry that doesn't need to be added to * internal restrack DB and presented later to the users at the nldev * query stage. */ u8 no_track : 1; /* * @kref: Protect destroy of the resource */ struct kref kref; /* * @comp: Signal that all consumers of resource are completed their work */ struct completion comp; /** * @task: owner of resource tracking entity * * There are two types of entities: created by user and created * by kernel. * * This is relevant for the entities created by users. * For the entities created by kernel, this pointer will be NULL. */ struct task_struct *task; /** * @kern_name: name of owner for the kernel created entities. */ const char *kern_name; /** * @type: various objects in restrack database */ enum rdma_restrack_type type; /** * @user: user resource */ bool user; /** * @id: ID to expose to users */ u32 id; }; int rdma_restrack_count(struct ib_device *dev, enum rdma_restrack_type type); /** * rdma_is_kernel_res() - check the owner of resource * @res: resource entry */ static inline bool rdma_is_kernel_res(const struct rdma_restrack_entry *res) { return !res->user; } /** * rdma_restrack_get() - grab to protect resource from release * @res: resource entry */ int __must_check rdma_restrack_get(struct rdma_restrack_entry *res); /** * rdma_restrack_put() - release resource * @res: resource entry */ int rdma_restrack_put(struct rdma_restrack_entry *res); /* * Helper functions for rdma drivers when filling out * nldev driver attributes. */ int rdma_nl_put_driver_u32(struct sk_buff *msg, const char *name, u32 value); int rdma_nl_put_driver_u32_hex(struct sk_buff *msg, const char *name, u32 value); int rdma_nl_put_driver_u64(struct sk_buff *msg, const char *name, u64 value); int rdma_nl_put_driver_u64_hex(struct sk_buff *msg, const char *name, u64 value); int rdma_nl_put_driver_string(struct sk_buff *msg, const char *name, const char *str); int rdma_nl_stat_hwcounter_entry(struct sk_buff *msg, const char *name, u64 value); struct rdma_restrack_entry *rdma_restrack_get_byid(struct ib_device *dev, enum rdma_restrack_type type, u32 id); /** * rdma_restrack_no_track() - don't add resource to the DB * @res: resource entry * * Every user of thie API should be cross examined. * Probaby you don't need to use this function. */ static inline void rdma_restrack_no_track(struct rdma_restrack_entry *res) { res->no_track = true; } static inline bool rdma_restrack_is_tracked(struct rdma_restrack_entry *res) { return !res->no_track; } #endif /* _RDMA_RESTRACK_H_ */
Close