diff options
author | Karsten Graul <kgraul@linux.ibm.com> | 2018-05-15 17:04:55 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-05-16 11:49:19 -0400 |
commit | 44aa81ce953aadd683765e6416ad53cc61d0624a (patch) | |
tree | 143f1e7d085f8d87e3100fd4d37887af87ab1ddc /net/smc/smc_core.h | |
parent | 569bc643656826d5305aebdc5d5500c99881b2e5 (diff) | |
download | talos-obmc-linux-44aa81ce953aadd683765e6416ad53cc61d0624a.tar.gz talos-obmc-linux-44aa81ce953aadd683765e6416ad53cc61d0624a.zip |
net/smc: register new rmbs with the peer
Register new rmb buffers with the remote peer by exchanging a
confirm_rkey llc message.
Signed-off-by: Karsten Graul <kgraul@linux.ibm.com>
Signed-off-by: Ursula Braun <ubraun@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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/smc/smc_core.h b/net/smc/smc_core.h index fca8624e5e71..9398e235d74b 100644 --- a/net/smc/smc_core.h +++ b/net/smc/smc_core.h @@ -105,6 +105,8 @@ struct smc_link { struct delayed_work llc_testlink_wrk; /* testlink worker */ struct completion llc_testlink_resp; /* wait for rx of testlink */ int llc_testlink_time; /* testlink interval */ + struct completion llc_confirm_rkey; /* wait 4 rx of cnf rkey */ + int llc_confirm_rkey_rc; /* rc from cnf rkey msg */ }; /* For now we just allow one parallel link per link group. The SMC protocol |