[PATCH i-g-t v3] tests/amdgpu: Fix compilation warnings for USERQ
vitaly prosyak
vprosyak at amd.com
Wed Jun 11 23:02:29 UTC 2025
Hi Kamil,
Sorry I missed those warnings and accidentally merged them — my mistake.
Your change looks great to me. Thanks for taking care of it!
I hope Sunil will also agree with your proposal. I’m planning to merge it tomorrow — unless you’d prefer to do it yourself?
Reviewed-by Vitaly Prosyak ,vitaly.prosyak at amd.com>
On 2025-06-11 17:25, Kamil Konieczny wrote:
> Recent change brings compilation warnings when
> AMDGPU_USERQ_ENABLED was not defined, for example:
>
> ../tests/amdgpu/amd_security.c: In function '__igt_unique____real_main311':
> ../tests/amdgpu/amd_security.c:319:14: warning: variable 'enable_test' set but not used [-Wunused-but-set-variable]
> 319 | bool enable_test = false;
>
> Fix this.
>
> v2: removed additional vars and prints (Sunil)
> v3: correcting description, moved var setting back (Kamil)
>
> Cc: Sunil Khatri <sunil.khatri at amd.com>
> Cc: Vitaly Prosyak <vitaly.prosyak at amd.com>
> Fixes: dad4b2bb9e5a ("tests/amdgpu: add environment variable to enable tests")
> Signed-off-by: Kamil Konieczny <kamil.konieczny at linux.intel.com>
> ---
> tests/amdgpu/amd_cs_nop.c | 2 ++
> tests/amdgpu/amd_deadlock.c | 2 ++
> tests/amdgpu/amd_security.c | 2 ++
> 3 files changed, 6 insertions(+)
>
> diff --git a/tests/amdgpu/amd_cs_nop.c b/tests/amdgpu/amd_cs_nop.c
> index 644016d5d..c406f2fc5 100644
> --- a/tests/amdgpu/amd_cs_nop.c
> +++ b/tests/amdgpu/amd_cs_nop.c
> @@ -171,10 +171,12 @@ igt_main
> int fd = -1;
> bool arr_cap[AMD_IP_MAX] = {0};
> bool userq_arr_cap[AMD_IP_MAX] = {0};
> +#ifdef AMDGPU_USERQ_ENABLED
> bool enable_test;
> const char *env = getenv("AMDGPU_DISABLE_USERQTEST");
>
> enable_test = env && atoi(env);
> +#endif
>
> igt_fixture {
> uint32_t major, minor;
> diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
> index 45a864feb..2330b2955 100644
> --- a/tests/amdgpu/amd_deadlock.c
> +++ b/tests/amdgpu/amd_deadlock.c
> @@ -43,10 +43,12 @@ igt_main
> bool arr_cap[AMD_IP_MAX] = {0};
> bool userq_arr_cap[AMD_IP_MAX] = {0};
> struct pci_addr pci;
> +#ifdef AMDGPU_USERQ_ENABLED
> bool enable_test = false;
> const char *env = getenv("AMDGPU_DISABLE_USERQTEST");
>
> enable_test = env && atoi(env);
> +#endif
>
> igt_fixture {
> uint32_t major, minor;
> diff --git a/tests/amdgpu/amd_security.c b/tests/amdgpu/amd_security.c
> index 45bd7e771..4f38ee04e 100644
> --- a/tests/amdgpu/amd_security.c
> +++ b/tests/amdgpu/amd_security.c
> @@ -316,10 +316,12 @@ igt_main
> int r, fd = -1;
> bool is_secure = true;
> bool userq_arr_cap[AMD_IP_MAX] = {0};
> +#ifdef AMDGPU_USERQ_ENABLED
> bool enable_test = false;
> const char *env = getenv("AMDGPU_DISABLE_USERQTEST");
>
> enable_test = env && atoi(env);
> +#endif
>
> igt_fixture {
> uint32_t major, minor;
More information about the igt-dev
mailing list