From: Francois Dugast <francois.dugast@intel.com>
To: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: igt-dev@lists.freedesktop.org,
"Michał Wajdeczko" <michal.wajdeczko@intel.com>
Subject: Re: [PATCH i-g-t 4/4] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv.
Date: Tue, 18 Feb 2025 14:48:15 +0100 [thread overview]
Message-ID: <Z7SPn9Kstq7TKErm@fdugast-desk> (raw)
In-Reply-To: <20250207072902.12582-5-satyanarayana.k.v.p@intel.com>
On Fri, Feb 07, 2025 at 12:59:02PM +0530, Satyanarayana K V P wrote:
> Use the kernel fault injection infrastructure to test error handling
> of xe during driver probe when executing xe_guc_ct_send_recv() /
> xe_guc_mmio_send_recv() so that more code paths are tested, such as
> error handling and unwinding.
>
> Error can be injected using:
> igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv
> igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv
>
> 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>
> ---
> tests/intel/xe_fault_injection.c | 41 ++++++++++++++++++++++++++++++++
> 1 file changed, 41 insertions(+)
>
> diff --git a/tests/intel/xe_fault_injection.c b/tests/intel/xe_fault_injection.c
> index 9432828c2..288a5c384 100644
> --- a/tests/intel/xe_fault_injection.c
> +++ b/tests/intel/xe_fault_injection.c
> @@ -231,6 +231,34 @@ inject_fault_probe(int fd, char pci_slot[], const char function_name[])
> xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_TRY_UNBIND);
> }
>
> +/**
> + * SUBTEST: probe-fail-guc-%s
> + * Description: inject an error in the injectable function %arg[1] then reprobe driver
> + * Functionality: fault
> + *
> + * arg[1]:
> + * @xe_guc_mmio_send_recv: Inject an error when calling xe_guc_mmio_send_recv
> + * @xe_guc_ct_send_recv: Inject an error when calling xe_guc_ct_send_recv
> + */
> +
> +static void probe_fail_guc(int fd, char pci_slot[], const char function_name[],
> + struct fault_injection_params *fault_params)
> +{
> + int iter_start = 0, iter_end = 0, iter = 0;
> +
> + igt_assert(fault_params);
> +
> + /* Get the iteration count from environment */
> + iter = get_fault_inject_iter();
> + iter_start = iter ? : 0;
> + iter_end = iter ? iter + 1 : INJECT_ITERATIONS;
> + 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);
> + }
This loop is specific to the guc test, it is not present for other tests.
What is different about this test, why do we need to inject a fault at a
given iteration?
In case IGT_FAULT_INJECT_ITERATION is not set, why running
inject_fault_probe() 100 times instead of just once like with existing
tests during probe?
> +}
> +
> static int
> simple_vm_create(int fd, unsigned int flags)
> {
> @@ -330,6 +358,7 @@ igt_main
> {
> int fd;
> char pci_slot[NAME_MAX];
> + struct fault_injection_params fault_params;
This struct is used only in probe_fail_guc() so it could be local to that
function, along with the memcpy() below.
Francois
> const struct section {
> const char *name;
> unsigned int flags;
> @@ -363,6 +392,11 @@ igt_main
> { "xe_vma_ops_alloc" },
> { }
> };
> + const struct section guc_fail_functions[] = {
> + { "xe_guc_mmio_send_recv" },
> + { "xe_guc_ct_send_recv" },
> + { }
> + };
>
> igt_fixture {
> igt_require(fail_function_injection_enabled());
> @@ -387,6 +421,13 @@ igt_main
> igt_subtest_f("inject-fault-probe-function-%s", s->name)
> inject_fault_probe(fd, pci_slot, s->name);
>
> + for (const struct section *s = guc_fail_functions; s->name; s++)
> + igt_subtest_f("probe-fail-guc-%s", s->name) {
> + memcpy(&fault_params, &default_fault_params,
> + sizeof(struct fault_injection_params));
> + probe_fail_guc(fd, pci_slot, s->name, &fault_params);
> + }
> +
> igt_fixture {
> drm_close_driver(fd);
> xe_sysfs_driver_do(fd, pci_slot, XE_SYSFS_DRIVER_BIND);
> --
> 2.35.3
>
next prev parent reply other threads:[~2025-02-18 13:48 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-07 7:28 [PATCH i-g-t 0/4] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv() xe_guc_mmio_send_recv() Satyanarayana K V P
2025-02-07 7:28 ` [PATCH i-g-t 1/4] lib/igt_sysfs: Add support for device unbinding Satyanarayana K V P
2025-02-18 12:19 ` Francois Dugast
2025-02-07 7:29 ` [PATCH i-g-t 2/4] tests/intel/xe_fault_injection: Make setup_injection_fault() programmable Satyanarayana K V P
2025-02-18 12:46 ` Francois Dugast
2025-02-07 7:29 ` [PATCH i-g-t 3/4] tests/intel/xe_fault_injection: Add helper functions to inject fault with specific budget parameter Satyanarayana K V P
2025-02-18 13:04 ` Francois Dugast
2025-02-07 7:29 ` [PATCH i-g-t 4/4] tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv & xe_guc_mmio_send_recv Satyanarayana K V P
2025-02-18 13:48 ` Francois Dugast [this message]
2025-02-18 14:06 ` Michal Wajdeczko
2025-02-18 16:40 ` Francois Dugast
2025-02-08 0:01 ` ✓ i915.CI.BAT: success for tests/intel/xe_fault_injection: Inject errors during xe_guc_ct_send_recv() xe_guc_mmio_send_recv() Patchwork
2025-02-08 0:42 ` ✓ Xe.CI.BAT: " Patchwork
2025-02-08 15:59 ` ✗ i915.CI.Full: failure " Patchwork
2025-02-08 17:21 ` ✗ Xe.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=Z7SPn9Kstq7TKErm@fdugast-desk \
--to=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 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.