diff options
author | Karsten Graul <kgraul@linux.ibm.com> | 2021-10-16 11:37:50 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-10-16 14:58:13 +0100 |
commit | b4ba4652b3f8b7c9bbb5786f8acf4724bdab2196 (patch) | |
tree | 9ec7c43e1e0eda4790a57563bf8b8f1af4bc7180 /net/smc/smc_core.h | |
parent | 8799e310fb3f15759824a78b6b93d7e6d5def067 (diff) | |
download | linux-stable-b4ba4652b3f8b7c9bbb5786f8acf4724bdab2196.tar.gz linux-stable-b4ba4652b3f8b7c9bbb5786f8acf4724bdab2196.tar.bz2 linux-stable-b4ba4652b3f8b7c9bbb5786f8acf4724bdab2196.zip |
net/smc: extend LLC layer for SMC-Rv2
Add support for large v2 LLC control messages in smc_llc.c.
The new large work request buffer allows to combine control
messages into one packet that had to be spread over several
packets before.
Add handling of the new v2 LLC messages.
Signed-off-by: Karsten Graul <kgraul@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/smc/smc_core.h')
-rw-r--r-- | net/smc/smc_core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/smc/smc_core.h b/net/smc/smc_core.h index 5997657ee9cc..59cef3b830d8 100644 --- a/net/smc/smc_core.h +++ b/net/smc/smc_core.h @@ -218,6 +218,7 @@ enum smc_llc_flowtype { SMC_LLC_FLOW_NONE = 0, SMC_LLC_FLOW_ADD_LINK = 2, SMC_LLC_FLOW_DEL_LINK = 4, + SMC_LLC_FLOW_REQ_ADD_LINK = 5, SMC_LLC_FLOW_RKEY = 6, }; |