/*
*/
/*
* This file contains code imported from the OFED rds source file loop.c
* Oracle elects to have and use the contents of loop.c under and governed
* by the OpenIB.org BSD license (see below for full license text). However,
* the following notice accompanied the original version of this file:
*/
/*
* Copyright (c) 2006 Oracle. All rights reserved.
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* OpenIB.org BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* provided with the distribution.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
/*
* This 'loopback' transport is a special case for flows that originate
* and terminate on the same machine.
*
* Connection build-up notices if the destination address is thought of
* as a local address by a transport. At that time it decides to use the
* loopback transport instead of the bound transport of the sending socket.
*
* The loopback transport's sending path just hands the sent rds_message
* straight to the receiving path via an embedded rds_incoming.
*/
/*
* Usually a message transits both the sender and receiver's conns as it
* flows to the receiver. In the loopback case, though, the receive path
* is handed the sending conn so the sense of the addresses is reversed.
*/
static int
unsigned int off)
{
/* Do not send cong updates to loopback */
return (sizeof (struct rdsv3_header) + RDSV3_CONG_MAP_BYTES);
}
/* For the embedded inc. Matching put is in loop_inc_free() */
NULL);
return (sizeof (struct rdsv3_header) +
}
/*
* See rds_loop_xmit(). Since our inc is embedded in the rm, we
* make sure the rm lives at least until the inc is done.
*/
static void
{
m_inc);
}
static int
struct rdsv3_cong_map *map,
unsigned long offset)
{
return (sizeof (struct rdsv3_header) + RDSV3_CONG_MAP_BYTES);
}
/* we need to at least give the thread something to succeed */
/* ARGSUSED */
static int
{
return (0);
}
struct rdsv3_loop_connection {
};
/*
* Even the loopback transport needs to keep track of its connections,
* so it can call rdsv3_conn_destroy() on them on exit. N.B. there are
* 1+ loopback addresses (127.*.*.*) so it's not a bug to have
* multiple loopback conns allocated, although rather useless.
*/
/* ARGSUSED */
static int
{
if (!lc)
return (-ENOMEM);
return (0);
}
static void
{
}
static int
{
return (0);
}
/* ARGSUSED */
static void
{
}
void
rdsv3_loop_exit(void)
{
/* avoid calling conn_destroy with irqs off */
}
}
/*
* This is missing .xmit_* because loop doesn't go through generic
* rdsv3_send_xmit() and doesn't call rdsv3_recv_incoming(). .listen_stop and
* .laddr_check are missing because transport.c doesn't iterate over
* rdsv3_loop_transport.
*/
#ifndef __lock_lint
.xmit = rdsv3_loop_xmit,
.recv = rdsv3_loop_recv,
.t_name = "loopback",
};
#else
#endif