From: "Reddy Guddati, Santhosh" <santhosh.reddy.guddati@intel.com>
To: Sowmiya S <sowmiya.s@intel.com>, <igt-dev@lists.freedesktop.org>
Cc: <swati2.sharma@intel.com>
Subject: Re: [PATCH i-g-t v2 2/2] lib/igt_kms: Skip joiner exception modes in boundary non-joiner search
Date: Tue, 4 Aug 2026 11:32:35 +0530 [thread overview]
Message-ID: <d5e894ac-935e-4a47-a4ea-59e6d0abcfa4@intel.com> (raw)
In-Reply-To: <20260727060321.361027-3-sowmiya.s@intel.com>
On 27-07-2026 11:33, Sowmiya S wrote:
> Fix intel_boundary_non_joiner_mode_found() to skip exception modes,
> preventing test_basic_max_non_joiner from incorrectly selecting a
> joiner-required mode as a non-joiner boundary mode.
>
> Signed-off-by: Sowmiya S <sowmiya.s@intel.com>
Reviewed-by: Santhosh Reddy Guddati <santhosh.reddy.guddati@intel.com>
> ---
> lib/igt_kms.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index d591e696d..2475f0916 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -7192,7 +7192,8 @@ bool intel_boundary_non_joiner_mode_found(int drm_fd, drmModeConnector *connecto
> drmModeModeInfo *current_mode = &connector->modes[i];
>
> if (current_mode->hdisplay == max_hdisplay &&
> - current_mode->clock < max_dotclock) {
> + current_mode->clock < max_dotclock &&
> + !mode_needs_joiner_exception(drm_fd, current_mode)) {
> *mode = *current_mode;
> return true;
> }
next parent reply other threads:[~2026-08-04 6:05 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260727060321.361027-1-sowmiya.s@intel.com>
[not found] ` <20260727060321.361027-3-sowmiya.s@intel.com>
2026-08-04 6:02 ` Reddy Guddati, Santhosh [this message]
2026-07-28 6:00 [PATCH i-g-t v2 0/2] Add platform-specific joiner exception mode handling Sowmiya S
2026-07-28 6:00 ` [PATCH i-g-t v2 2/2] lib/igt_kms: Skip joiner exception modes in boundary non-joiner search Sowmiya S
2026-08-05 7:48 ` Reddy Guddati, Santhosh
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=d5e894ac-935e-4a47-a4ea-59e6d0abcfa4@intel.com \
--to=santhosh.reddy.guddati@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=sowmiya.s@intel.com \
--cc=swati2.sharma@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.