diff options
author | Stefan Raspl <raspl@linux.ibm.com> | 2023-01-23 21:17:50 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-01-25 12:46:48 +0300 |
commit | 9de4df7b6be1cfca500f8ba21137d53eec45418a (patch) | |
tree | 85ed634e832e467d61bcfdda026031bdd2cccc3a /include/linux/ism.h | |
parent | 8747716f3942a610efdd12e3655df47269c268ac (diff) | |
download | linux-9de4df7b6be1cfca500f8ba21137d53eec45418a.tar.xz |
net/smc: Separate SMC-D and ISM APIs
We separate the code implementing the struct smcd_ops API in the ISM
device driver from the functions that may be used by other exploiters of
ISM devices.
Note: We start out small, and don't offer the whole breadth of the ISM
device for public use, as many functions are specific to or likely only
ever used in the context of SMC-D.
This is the third part of a bigger overhaul of the interfaces between SMC
and ISM.
Signed-off-by: Stefan Raspl <raspl@linux.ibm.com>
Signed-off-by: Jan Karcher <jaka@linux.ibm.com>
Signed-off-by: Wenjia Zhang <wenjia@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/ism.h')
-rw-r--r-- | include/linux/ism.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/ism.h b/include/linux/ism.h index 55c8ad306928..bdd29e08d4fe 100644 --- a/include/linux/ism.h +++ b/include/linux/ism.h @@ -87,4 +87,11 @@ static inline void ism_set_priv(struct ism_dev *dev, struct ism_client *client, dev->priv[client->id] = priv; } +int ism_register_dmb(struct ism_dev *dev, struct ism_dmb *dmb, + struct ism_client *client); +int ism_unregister_dmb(struct ism_dev *dev, struct ism_dmb *dmb); +int ism_move(struct ism_dev *dev, u64 dmb_tok, unsigned int idx, bool sf, + unsigned int offset, void *data, unsigned int size); +u8 *ism_get_seid(void); + #endif /* _ISM_H */ |