/* SPDX-License-Identifier: GPL-2.0 */ /* * Shared Memory Communications over RDMA (SMC-R) and RoCE * * Manage RMBE * * Copyright IBM Corp. 2016 * * Author(s): Ursula Braun */ #ifndef SMC_RX_H #define SMC_RX_H #include #include #include "smc.h" void smc_rx_init(struct smc_sock *smc); int smc_rx_recvmsg(struct smc_sock *smc, struct msghdr *msg, size_t len, int flags); #endif /* SMC_RX_H */