From: "Modem, Bhanuprakash" <bhanuprakash.modem@intel.com>
To: Kunal Joshi <kunal1.joshi@intel.com>, <igt-dev@lists.freedesktop.org>
Subject: Re: [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled
Date: Wed, 24 Jan 2024 11:00:33 +0530 [thread overview]
Message-ID: <11ec7aa3-48fc-49a5-8751-bfa31cc2e92c@intel.com> (raw)
In-Reply-To: <20240123141835.1211107-2-kunal1.joshi@intel.com>
Hi Kunal,
On 23-01-2024 07:48 pm, Kunal Joshi wrote:
> Check if given psr mode can be enabled by reading enable_psr
> modparam
>
> Signed-off-by: Kunal Joshi <kunal1.joshi@intel.com>
> ---
> lib/igt_psr.c | 23 +++++++++++++++++++++++
> lib/igt_psr.h | 1 +
> 2 files changed, 24 insertions(+)
>
> diff --git a/lib/igt_psr.c b/lib/igt_psr.c
> index 663bac163..181499cf7 100644
> --- a/lib/igt_psr.c
> +++ b/lib/igt_psr.c
> @@ -394,3 +394,26 @@ enum psr_mode psr_get_mode(int debugfs_fd)
>
> return PSR_DISABLED;
> }
> +
> +/**
> + * is_psr_enable_possible
> + * Check if given psr mode can be enabled by reading enable_psr
> + * modparam
> + *
> + * Returns:
> + * True if given psr mode can be enabled, false otherwise.
> + */
> +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode)
> +{
> + char *param_value;
> + int enable_psr;
> +
> + param_value = __igt_params_get(drm_fd, "enable_psr");
> + if (!is_i915_device(drm_fd) && !param_value) {
Why do we need a driver check here?
> + igt_info("Failed to retrieve module parameter enable_psr\n");
> + return false;
> + }
> + enable_psr = atoi(param_value);
It may cause a segmentation fault, if the driver is i915 & param_value
== NULL.
Hence, NACK to merge this patch.
- Bhanu
> + free(param_value);
> + return enable_psr > mode;
> +}
> diff --git a/lib/igt_psr.h b/lib/igt_psr.h
> index 36711c0d4..82a4e8c5e 100644
> --- a/lib/igt_psr.h
> +++ b/lib/igt_psr.h
> @@ -61,5 +61,6 @@ bool i915_psr2_selective_fetch_check(int drm_fd);
>
> bool i915_psr2_sel_fetch_to_psr1(int drm_fd);
> void i915_psr2_sel_fetch_restore(int drm_fd);
> +bool is_psr_enable_possible(int drm_fd, enum psr_mode mode);
>
> #endif
next prev parent reply other threads:[~2024-01-24 5:31 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-23 14:18 [PATCH i-g-t 0/2] check modparam before enabling psr mode Kunal Joshi
2024-01-23 14:18 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi
2024-01-23 14:44 ` B, Jeevan
2024-01-24 5:30 ` Modem, Bhanuprakash [this message]
2024-01-23 14:18 ` [PATCH i-g-t 2/2] tests/intel/kms_psr: enable given psr mode only after checking enable_psr modparam Kunal Joshi
2024-01-23 14:44 ` B, Jeevan
2024-01-23 15:11 ` Srinivas, Vidya
2024-01-23 17:22 ` ✓ Fi.CI.BAT: success for check modparam before enabling psr mode Patchwork
2024-01-23 18:11 ` ✓ CI.xeBAT: " Patchwork
2024-01-24 0:17 ` ✗ Fi.CI.IGT: failure " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2024-01-24 10:34 [PATCH i-g-t 0/2] " Kunal Joshi
2024-01-24 10:34 ` [PATCH i-g-t 1/2] lib/igt_psr: add helper to check of given psr mode can be enabled Kunal Joshi
2024-01-24 11:57 ` Modem, Bhanuprakash
2024-01-24 12:06 ` Joshi, Kunal1
2024-01-24 14:34 ` Modem, Bhanuprakash
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=11ec7aa3-48fc-49a5-8751-bfa31cc2e92c@intel.com \
--to=bhanuprakash.modem@intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=kunal1.joshi@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox