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

Commit d1eab9de authored by Stefan Wahren's avatar Stefan Wahren Committed by Greg Kroah-Hartman
Browse files

staging: vchiq_core: Bail out in case of invalid tx_pos



Properly handle the error case in case of an invalid tx_pos.

Signed-off-by: default avatarStefan Wahren <stefan.wahren@i2se.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6f2370d2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -600,8 +600,10 @@ reserve_space(VCHIQ_STATE_T *state, size_t space, int is_blocking)
				return NULL; /* No space available */
		}

		BUG_ON(tx_pos ==
			(state->slot_queue_available * VCHIQ_SLOT_SIZE));
		if (tx_pos == (state->slot_queue_available * VCHIQ_SLOT_SIZE)) {
			pr_warn("%s: invalid tx_pos: %d\n", __func__, tx_pos);
			return NULL;
		}

		slot_index = local->slot_queue[
			SLOT_QUEUE_INDEX_FROM_POS(tx_pos) &