From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BF4D93382CB; Sat, 12 Sep 2026 19:43:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789242184; cv=none; b=i9h1weLxEfXMfokpsFN18gN5psjPbYIf37aaF0SWCixxOOXt8T/0ECzVQi75RPdRWY/0XAGiydAGs4Eia1qXiPekIlQnPzgpj2uhSMTfLGU70+YhkoTLvLAv0LyzhrxCE+L25XAE0gXM6BhTUh1356l9ngHxPNz9gLCFt26m4Mg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789242184; c=relaxed/simple; bh=TFozoGwQcRdNOKHl1UQtVG8+uILtbv4lxVWT3z3RcXc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=tFb+kYuYhZBuUxFiljFcYmicZJYoR6Kaim/wHlYUx+XXpjyD5AB0CSBamTisshfu3lyTpDISuWP9p3Z86FWdq9WMSw5LBNBBbEuOONzZtO0EC3o1wUAqJ+bjDB8t10aQVF1FXEQ1oCIfGZ1SvCRTvI5R9XEVZQerDP0JfG+tCSY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YmMTzWgY; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="YmMTzWgY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5091D1F000FF; Sat, 12 Sep 2026 19:43:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789242183; bh=cAPXDW7nnlMAUSFxV46EmH0xe7VyMA9s5tki7FfqjmY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=YmMTzWgYUB0n4xa87ABkM4FLbDqU0sFp4vgIbINOMOYZJbp1262SfKCdvsceoJj6G o+BLjjHGMuIkDD3QqpTxzSrcUkD1yRjw1UhFtzASL4NX83J/42xVD8MaBfqhCbjBvd vrgzhQ/uOBfoMsOB5a4pdNYDWo8SZT6+5OBDsRKk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Mohammed EL Kadiri , Dmitry Baryshkov , Bryan ODonoghue Subject: [PATCH 5.10 288/798] media: venus: fix payload size calculation in parse_raw_formats() Date: Sat, 12 Sep 2026 08:58:36 +0200 Message-ID: <20260912065523.764689335@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065516.948645775@linuxfoundation.org> References: <20260912065516.948645775@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Mohammed EL Kadiri commit bd595b745eb770e80347c31ffc25351046935305 upstream. The consumed size is computed after the loop using the num_planes value from the last iteration for all entries. When entries have different plane counts, this produces an incorrect total. Accumulate the actual size during the loop instead. Fixes: 9edaaa8e3e15 ("media: venus: hfi_parser: refactor hfi packet parsing logic") Cc: stable@vger.kernel.org Signed-off-by: Mohammed EL Kadiri Reviewed-by: Dmitry Baryshkov Signed-off-by: Bryan O'Donoghue Signed-off-by: Greg Kroah-Hartman --- drivers/media/platform/qcom/venus/hfi_parser.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/drivers/media/platform/qcom/venus/hfi_parser.c +++ b/drivers/media/platform/qcom/venus/hfi_parser.c @@ -171,7 +171,7 @@ parse_raw_formats(struct venus_core *cor u32 entries = fmt->format_entries; unsigned int i = 0; u32 num_planes = 0; - u32 size; + u32 size = 2 * sizeof(u32); while (entries) { num_planes = pinfo->num_planes; @@ -186,6 +186,7 @@ parse_raw_formats(struct venus_core *cor if (pinfo->num_planes > MAX_PLANES) break; + size += sizeof(*constr) * num_planes + 2 * sizeof(u32); pinfo = (void *)pinfo + sizeof(*constr) * num_planes + 2 * sizeof(u32); entries--; @@ -193,8 +194,6 @@ parse_raw_formats(struct venus_core *cor for_each_codec(core->caps, ARRAY_SIZE(core->caps), codecs, domain, fill_raw_fmts, rawfmts, i); - size = fmt->format_entries * (sizeof(*constr) * num_planes + 2 * sizeof(u32)) - + 2 * sizeof(u32); return size; }