Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4dd96f7 authored by Andy Grover's avatar Andy Grover
Browse files

RDS: make sure all sgs alloced are initialized



rds_message_alloc_sgs() now returns correctly-initialized
sg lists, so calleds need not do this themselves.

Signed-off-by: default avatarAndy Grover <andy.grover@oracle.com>
parent ff87e97a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -249,7 +249,7 @@ struct scatterlist *rds_message_alloc_sgs(struct rds_message *rm, int nents)
	WARN_ON(rm->m_used_sgs + nents > rm->m_total_sgs);

	sg_ret = &sg_first[rm->m_used_sgs];

	sg_init_table(sg_ret, nents);
	rm->m_used_sgs += nents;

	return sg_ret;
+1 −2
Original line number Diff line number Diff line
@@ -534,14 +534,13 @@ static int rds_rdma_prepare(struct rds_message *rm,
		goto out;
	}

	op->r_sg = rds_message_alloc_sgs(rm, nr_pages);
	op->r_write = !!(args->flags & RDS_RDMA_READWRITE);
	op->r_fence = !!(args->flags & RDS_RDMA_FENCE);
	op->r_notify = !!(args->flags & RDS_RDMA_NOTIFY_ME);
	op->r_active = 1;
	op->r_recverr = rs->rs_recverr;
	WARN_ON(!nr_pages);
	sg_init_table(op->r_sg, nr_pages);
	op->r_sg = rds_message_alloc_sgs(rm, nr_pages);

	if (op->r_notify || op->r_recverr) {
		/* We allocate an uninitialized notifier here, because