~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/net/smc.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  *  Shared Memory Communications over RDMA (SMC-R) and RoCE
  4  *
  5  *  Definitions for the SMC module (socket related)
  6  *
  7  *  Copyright IBM Corp. 2016
  8  *
  9  *  Author(s):  Ursula Braun <ubraun@linux.vnet.ibm.com>
 10  */
 11 #ifndef _SMC_H
 12 #define _SMC_H
 13 
 14 #include <linux/device.h>
 15 #include <linux/spinlock.h>
 16 #include <linux/types.h>
 17 #include <linux/wait.h>
 18 #include "linux/ism.h"
 19 
 20 struct sock;
 21 
 22 #define SMC_MAX_PNETID_LEN      16      /* Max. length of PNET id */
 23 
 24 struct smc_hashinfo {
 25         rwlock_t lock;
 26         struct hlist_head ht;
 27 };
 28 
 29 /* SMCD/ISM device driver interface */
 30 struct smcd_dmb {
 31         u64 dmb_tok;
 32         u64 rgid;
 33         u32 dmb_len;
 34         u32 sba_idx;
 35         u32 vlan_valid;
 36         u32 vlan_id;
 37         void *cpu_addr;
 38         dma_addr_t dma_addr;
 39 };
 40 
 41 #define ISM_EVENT_DMB   0
 42 #define ISM_EVENT_GID   1
 43 #define ISM_EVENT_SWR   2
 44 
 45 #define ISM_RESERVED_VLANID     0x1FFF
 46 
 47 #define ISM_ERROR       0xFFFF
 48 
 49 struct smcd_dev;
 50 
 51 struct smcd_gid {
 52         u64     gid;
 53         u64     gid_ext;
 54 };
 55 
 56 struct smcd_ops {
 57         int (*query_remote_gid)(struct smcd_dev *dev, struct smcd_gid *rgid,
 58                                 u32 vid_valid, u32 vid);
 59         int (*register_dmb)(struct smcd_dev *dev, struct smcd_dmb *dmb,
 60                             void *client);
 61         int (*unregister_dmb)(struct smcd_dev *dev, struct smcd_dmb *dmb);
 62         int (*move_data)(struct smcd_dev *dev, u64 dmb_tok, unsigned int idx,
 63                          bool sf, unsigned int offset, void *data,
 64                          unsigned int size);
 65         int (*supports_v2)(void);
 66         void (*get_local_gid)(struct smcd_dev *dev, struct smcd_gid *gid);
 67         u16 (*get_chid)(struct smcd_dev *dev);
 68         struct device* (*get_dev)(struct smcd_dev *dev);
 69 
 70         /* optional operations */
 71         int (*add_vlan_id)(struct smcd_dev *dev, u64 vlan_id);
 72         int (*del_vlan_id)(struct smcd_dev *dev, u64 vlan_id);
 73         int (*set_vlan_required)(struct smcd_dev *dev);
 74         int (*reset_vlan_required)(struct smcd_dev *dev);
 75         int (*signal_event)(struct smcd_dev *dev, struct smcd_gid *rgid,
 76                             u32 trigger_irq, u32 event_code, u64 info);
 77         int (*support_dmb_nocopy)(struct smcd_dev *dev);
 78         int (*attach_dmb)(struct smcd_dev *dev, struct smcd_dmb *dmb);
 79         int (*detach_dmb)(struct smcd_dev *dev, u64 token);
 80 };
 81 
 82 struct smcd_dev {
 83         const struct smcd_ops *ops;
 84         void *priv;
 85         void *client;
 86         struct list_head list;
 87         spinlock_t lock;
 88         struct smc_connection **conn;
 89         struct list_head vlan;
 90         struct workqueue_struct *event_wq;
 91         u8 pnetid[SMC_MAX_PNETID_LEN];
 92         bool pnetid_by_user;
 93         struct list_head lgr_list;
 94         spinlock_t lgr_lock;
 95         atomic_t lgr_cnt;
 96         wait_queue_head_t lgrs_deleted;
 97         u8 going_away : 1;
 98 };
 99 
100 #endif  /* _SMC_H */
101 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php