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

Commit aa89ee4a authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "net: qrtr: haven: Add bounds check on tx path"

parents 5cbaa455 cf0602ad
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -188,6 +188,9 @@ static size_t haven_tx_avail(struct haven_pipe *pipe)
	else
		avail -= FIFO_FULL_RESERVE;

	if (WARN_ON_ONCE(avail > pipe->length))
		avail = 0;

	return avail;
}

@@ -198,6 +201,8 @@ static void haven_tx_write(struct haven_pipe *pipe,
	u32 head;

	head = le32_to_cpu(*pipe->head);
	if (WARN_ON_ONCE(head > pipe->length))
		return;

	len = min_t(size_t, count, pipe->length - head);
	if (len)