Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Bernatowicz, Marcin" <marcin.bernatowicz@linux.intel.com>
To: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>,
	igt-dev@lists.freedesktop.org
Cc: "Michał Wajdeczko" <michal.wajdeczko@intel.com>,
	"Francois Dugast" <francois.dugast@intel.com>
Subject: Re: [PATCH i-g-t v6 3/3] tests/intel/xe_fault_injection: Do not assert for probe_guc_fail_* functions.
Date: Thu, 17 Apr 2025 13:54:37 +0200	[thread overview]
Message-ID: <2ce06211-6cbd-421b-8f1c-26a12ddd9742@linux.intel.com> (raw)
In-Reply-To: <20250415082711.4831-4-satyanarayana.k.v.p@intel.com>

Hi,

On 4/15/2025 10:27 AM, Satyanarayana K V P wrote:
> In the current implementation, test asserts if the captured error is not same as
> injected error. It is possible that the error received is translated to other
> error which can be returned to application and in some scenarios driver retries
> in case of failure and so, no error might be captured.
> 
> Considering above cases, added flags to control the assertion after injecting
> error. Test does not assert for probe_guc_fail_* functions as driver some times
> retries in case of failure. The main idea of injecting errors for these guc
> functions is to check the robustness of the driver.
> 
> Signed-off-by: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Cc: Michał Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Francois Dugast <francois.dugast@intel.com>
> Reviewed-by: Francois Dugast <francois.dugast@intel.com>
> ---
>   tests/intel/xe_fault_injection.c | 14 ++++++++++----
>   1 file changed, 10 insertions(+), 4 deletions(-)
> 
> diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
> index 252209308..3c389a268 100644
> --- a/tests/intel/xe_fault_injection.c
> +++ b/tests/intel/xe_fault_injection.c
> @@ -28,6 +28,11 @@
>   #define BO_SIZE		(1024*1024)
>   #define INJECT_ITERATIONS	100
>   
> +enum assert_flags {
> +	INJECT_ASSERT_ON_FAIL,
> +	INJECT_NOASSERT_ON_FAIL,
> +};
> +
>   int32_t inject_iters_raw;
>   struct fault_injection_params {
>   	/* @probability: Likelihood of failure injection, in percent. */
> @@ -223,7 +228,7 @@ static void set_retval(const char function_name[], long long retval)
>    * @xe_wopcm_init:			xe_wopcm_init
>    */
>   static void
> -inject_fault_probe(int fd, char pci_slot[], const char function_name[])
> +inject_fault_probe(int fd, int flags, char pci_slot[], const char function_name[])
>   {
>   	igt_info("Injecting error \"%s\" (%d) in function \"%s\"\n",
>   		 strerror(-INJECT_ERRNO), INJECT_ERRNO, function_name);
> @@ -232,7 +237,8 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
>   	injection_list_add(function_name);
>   	set_retval(function_name, INJECT_ERRNO);
>   	xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_TRY_BIND);
> -	igt_assert_eq(-errno, INJECT_ERRNO);
> +	if (flags & INJECT_ASSERT_ON_FAIL)
> +		igt_assert_eq(-errno, INJECT_ERRNO);
>   	injection_list_remove(function_name);
>   }

Would it make sense to return the probe result from 
inject_fault_probe(...) and decide to assert/not assert outside?

>   
> @@ -263,7 +269,7 @@ static void probe_fail_guc(int fd, char pci_slot[], const char function_name[],
>   	for (int i = iter_start; i < iter_end; i++) {
>   		fault_params->space = i;
>   		setup_injection_fault(fault_params);
> -		inject_fault_probe(fd, pci_slot, function_name);
> +		inject_fault_probe(fd, INJECT_NOASSERT_ON_FAIL, pci_slot, function_name);

		inject_fault_probe(fd, pci_slot, function_name);

>   		igt_kmod_unbind("xe", pci_slot);
>   	}
>   }
> @@ -575,7 +581,7 @@ igt_main_args("I:", NULL, help_str, opt_handler, NULL)
>   
>   	for (const struct section *s = probe_fail_functions; s->name; s++)
>   		igt_subtest_f("inject-fault-probe-function-%s", s->name)
> -			inject_fault_probe(fd, pci_slot, s->name);
> +			inject_fault_probe(fd, INJECT_ASSERT_ON_FAIL, pci_slot,	s->name);

	igt_assert_eq(INJECT_ERRNO, inject_fault_probe(fd, pci_slot, 
function_name));

>   
>   	for (const struct section *s = guc_fail_functions; s->name; s++)
>   		igt_subtest_f("probe-fail-guc-%s", s->name) {


  reply	other threads:[~2025-04-17 11:54 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-15  8:27 [PATCH i-g-t v6 0/3] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv() xe_guc_mmio_send_recv() Satyanarayana K V P
2025-04-15  8:27 ` [PATCH i-g-t v6 1/3] tests/intel/xe_fault_injection: Make setup_injection_fault() programmable Satyanarayana K V P
2025-04-15 14:31   ` Cavitt, Jonathan
2025-04-21  7:32     ` K V P, Satyanarayana
2025-04-15  8:27 ` [PATCH i-g-t v6 2/3] tests/intel/xe_fault_injection: Inject errors in xe_guc_* calls Satyanarayana K V P
2025-04-15 14:31   ` Cavitt, Jonathan
2025-04-15  8:27 ` [PATCH i-g-t v6 3/3] tests/intel/xe_fault_injection: Do not assert for probe_guc_fail_* functions Satyanarayana K V P
2025-04-17 11:54   ` Bernatowicz, Marcin [this message]
2025-04-21  7:31     ` K V P, Satyanarayana
2025-04-15 19:41 ` ✓ i915.CI.BAT: success for tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv() xe_guc_mmio_send_recv() (rev7) Patchwork
2025-04-15 19:54 ` ✓ Xe.CI.BAT: " Patchwork
2025-04-16  2:34 ` ✗ Xe.CI.Full: failure " Patchwork
2025-04-16  2:53 ` ✗ i915.CI.Full: " 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=2ce06211-6cbd-421b-8f1c-26a12ddd9742@linux.intel.com \
    --to=marcin.bernatowicz@linux.intel.com \
    --cc=francois.dugast@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=michal.wajdeczko@intel.com \
    --cc=satyanarayana.k.v.p@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