1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Shared Memory Communications Direct over loopback-ism device.
5 * SMC-D loopback-ism device structure definitions.
7 * Copyright (c) 2024, Alibaba Inc.
9 * Author: Wen Gu <guwen@linux.alibaba.com>
10 * Tony Lu <tonylu@linux.alibaba.com>
14 #ifndef _SMC_LOOPBACK_H
15 #define _SMC_LOOPBACK_H
17 #include <linux/device.h>
20 #if IS_ENABLED(CONFIG_SMC_LO)
21 #define SMC_LO_MAX_DMBS 5000
22 #define SMC_LO_DMBS_HASH_BITS 12
23 #define SMC_LO_RESERVED_CHID 0xFFFF
25 struct smc_lo_dmb_node
{
26 struct hlist_node list
;
36 struct smcd_dev
*smcd
;
39 struct smcd_gid local_gid
;
42 DECLARE_BITMAP(sba_idx_mask
, SMC_LO_MAX_DMBS
);
43 DECLARE_HASHTABLE(dmb_ht
, SMC_LO_DMBS_HASH_BITS
);
44 wait_queue_head_t ldev_release
;
47 int smc_loopback_init(void);
48 void smc_loopback_exit(void);
50 static inline int smc_loopback_init(void)
55 static inline void smc_loopback_exit(void)
60 #endif /* _SMC_LOOPBACK_H */