Skip to content

Commit

Permalink
RDS: Inline rdma_prepare into cmsg_rdma_args
Browse files Browse the repository at this point in the history
cmsg_rdma_args just calls rdma_prepare and does a little
arg checking -- not quite enough to justify its existence.
Plus, it is the only caller of rdma_prepare().

Signed-off-by: Andy Grover <andy.grover@oracle.com>
  • Loading branch information
Andy Grover committed Sep 9, 2010
1 parent 241eef3 commit 4324879
Showing 1 changed file with 12 additions and 26 deletions.
38 changes: 12 additions & 26 deletions net/rds/rdma.c
Original file line number Diff line number Diff line change
Expand Up @@ -497,12 +497,13 @@ int rds_rdma_extra_size(struct rds_rdma_args *args)
}

/*
* args is a pointer to an in-kernel copy in the sendmsg cmsg.
* The application asks for a RDMA transfer.
* Extract all arguments and set up the rdma_op
*/
static int rds_rdma_prepare(struct rds_message *rm,
struct rds_sock *rs,
struct rds_rdma_args *args)
int rds_cmsg_rdma_args(struct rds_sock *rs, struct rds_message *rm,
struct cmsghdr *cmsg)
{
struct rds_rdma_args *args;
struct rds_iovec vec;
struct rds_rdma_op *op = &rm->rdma.m_rdma_op;
unsigned int nr_pages;
Expand All @@ -513,6 +514,11 @@ static int rds_rdma_prepare(struct rds_message *rm,
unsigned int i, j;
int ret = 0;

if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct rds_rdma_args))
|| rm->rdma.m_rdma_op.r_active)
return -EINVAL;

args = CMSG_DATA(cmsg);

if (rs->rs_bound_addr == 0) {
ret = -ENOTCONN; /* XXX not a great errno */
Expand Down Expand Up @@ -623,7 +629,6 @@ static int rds_rdma_prepare(struct rds_message *rm,
op->r_nents += nr;
}


if (nr_bytes > args->remote_vec.bytes) {
rdsdebug("RDS nr_bytes %u remote_bytes %u do not match\n",
nr_bytes,
Expand All @@ -639,28 +644,9 @@ static int rds_rdma_prepare(struct rds_message *rm,
if (ret)
rds_rdma_free_op(op);

return ret;
}

/*
* The application asks for a RDMA transfer.
* Extract all arguments and set up the rdma_op
*/
int rds_cmsg_rdma_args(struct rds_sock *rs, struct rds_message *rm,
struct cmsghdr *cmsg)
{
int ret;

if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct rds_rdma_args)) ||
rm->rdma.m_rdma_op.r_active)
return -EINVAL;

ret = rds_rdma_prepare(rm, rs, CMSG_DATA(cmsg));
if (ret)
return ret;

rds_stats_inc(s_send_rdma);
return 0;

return ret;
}

/*
Expand Down

0 comments on commit 4324879

Please sign in to comment.