All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: "Borah, Chaitanya Kumar" <chaitanya.kumar.borah@intel.com>,
	Suraj Kandpal <suraj.kandpal@intel.com>,
	intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org
Cc: ankit.k.nautiyal@intel.com
Subject: Re: [PATCH v2] drm/i915/dp: Use array size for intersect_rates() bound
Date: Wed, 05 Aug 2026 10:44:19 +0300	[thread overview]
Message-ID: <cec10cd7e2357098ed28c29c9948d2fcf03ba28e@intel.com> (raw)
In-Reply-To: <4af6b668-e117-4ab3-a534-82564feb9002@intel.com>

On Wed, 05 Aug 2026, "Borah, Chaitanya Kumar" <chaitanya.kumar.borah@intel.com> wrote:
> On 8/4/2026 4:25 PM, Suraj Kandpal wrote:
>> Take an explicit common_len parameter and pass
>> ARRAY_SIZE(intel_dp->common_rates) at the call site, so the bound is
>> tied to the destination array.
>> 
>> Fixes: e6bda3e4cb43 ("drm/i915: Avoid overflowing the DP link rate arrays")
>> Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
>> ---
>> v1 -> v2:
>> -Use latest baseline (Jani)
>> 
>>   drivers/gpu/drm/i915/display/intel_dp.c | 11 +++++++----
>>   1 file changed, 7 insertions(+), 4 deletions(-)
>> 
>> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
>> index 7f13595f40c1..1f1324c99130 100644
>> --- a/drivers/gpu/drm/i915/display/intel_dp.c
>> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
>> @@ -625,13 +625,13 @@ intel_dp_set_source_rates(struct intel_dp *intel_dp)
>>   
>>   static int intersect_rates(const int *source_rates, int source_len,
>>   			   const int *sink_rates, int sink_len,
>> -			   int *common_rates)
>> +			   int *common_rates, int common_len)
>>   {
>>   	int i = 0, j = 0, k = 0;
>>   
>>   	while (i < source_len && j < sink_len) {
>>   		if (source_rates[i] == sink_rates[j]) {
>> -			if (WARN_ON(k >= DP_MAX_SUPPORTED_RATES))
>> +			if (WARN_ON(k >= common_len))
>
> DP_MAX_SUPPORTED_RATES made more sense here because it keeps the size of 
> the common rate (and sink rate) from drifting away from the standard macro.

DP_MAX_SUPPORTED_RATES means the number of 16-bit rates to read from the
eDP specific DP_SUPPORTED_LINK_RATES DPCD register. I think it's
misleading to use it for *anything* else.

The number of source and sink rates don't have to be linked in any way.

See intel_dp_set_source_rates(). All the platforms since ICL support 10
or 11 rates i.e. more than DP_MAX_SUPPORTED_RATES.

>
>>   				return k;
>>   			common_rates[k] = source_rates[i];
>>   			++k;
>> @@ -660,6 +660,7 @@ int intel_dp_rate_index(const int *rates, int len, int rate)
>>   
>>   static void intel_dp_get_common_rates(struct intel_dp *intel_dp,
>>   				      int common_rates[DP_MAX_SUPPORTED_RATES],
>> +				      int common_len,
>>   				      int *num_common_rates)
>>   {
>>   	struct intel_display *display = to_intel_display(intel_dp);
>> @@ -671,7 +672,8 @@ static void intel_dp_get_common_rates(struct intel_dp *intel_dp,
>>   					    intel_dp->num_source_rates,
>>   					    intel_dp->sink_rates,
>>   					    intel_dp->num_sink_rates,
>> -					    common_rates);
>> +					    common_rates,
>> +					    common_len);
>>   
>>   	/* Paranoia, there should always be something in common. */
>>   	if (drm_WARN_ON(display->drm, *num_common_rates == 0)) {
>> @@ -687,7 +689,8 @@ static bool intel_dp_set_common_link_params(struct intel_dp *intel_dp)
>>   	int common_rates[DP_MAX_SUPPORTED_RATES];
>>   	bool params_changed = false;
>>   
>> -	intel_dp_get_common_rates(intel_dp, common_rates, &num_common_rates);
>> +	intel_dp_get_common_rates(intel_dp, common_rates, ARRAY_SIZE(common_rates),
>> +				  &num_common_rates);
>
> Is this patch in response to an actual bug or just a defensive code 
> change? If it is the later, does it add much value?
>
> common_rates and sink_rate are already locked in with 
> DP_MAX_SUPPORTED_RATES. There is a hazard of them drifting away from a 
> common size for which we could add a static enforcement of
>
> BUILD_BUG_ON(ARRAY_SIZE(common_rates) != ARRAY_SIZE(sink_rates));
>
> Something similar is done in intel_dp_set_dpcd_sink_rates() to keep the 
> sink_rate within limits.
>
> Regardless, if there is no actual bug then the Fixes tag is unjustified.
>
> ==
>
> Chaitanya
>
>
>
>>   	if (intel_dp_link_caps_update(intel_dp->link.caps,
>>   				      common_rates, num_common_rates,
>>   				      intel_dp_get_max_common_lane_count(intel_dp),
>

-- 
Jani Nikula, Intel

  reply	other threads:[~2026-08-05  7:44 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-04  8:56 [PATCH] drm/i915/dp: Use array size for intersect_rates() bound Suraj Kandpal
2026-08-04  9:17 ` Jani Nikula
2026-08-04 10:55 ` [PATCH v2] " Suraj Kandpal
2026-08-05  5:38   ` Borah, Chaitanya Kumar
2026-08-05  7:44     ` Jani Nikula [this message]
2026-08-05  8:01       ` Borah, Chaitanya Kumar
2026-08-07  2:45   ` [PATCH v3] " Suraj Kandpal
2026-08-04 11:02 ` ✓ CI.KUnit: success for drm/i915/dp: Use array size for intersect_rates() bound (rev2) Patchwork
2026-08-04 11:46 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-04 17:55 ` ✓ Xe.CI.FULL: " Patchwork
2026-08-05  2:03 ` ✓ i915.CI.BAT: " Patchwork
2026-08-05 13:09 ` ✗ i915.CI.Full: failure " Patchwork
2026-08-07  2:53 ` ✓ CI.KUnit: success for drm/i915/dp: Use array size for intersect_rates() bound (rev3) Patchwork
2026-08-07  3:30 ` ✓ Xe.CI.BAT: " Patchwork
2026-08-07 12:59 ` ✓ i915.CI.BAT: " Patchwork
2026-08-07 15:37 ` ✓ Xe.CI.FULL: " Patchwork
2026-08-07 18:52 ` ✗ i915.CI.Full: failure " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cec10cd7e2357098ed28c29c9948d2fcf03ba28e@intel.com \
    --to=jani.nikula@intel.com \
    --cc=ankit.k.nautiyal@intel.com \
    --cc=chaitanya.kumar.borah@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=suraj.kandpal@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.