All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Sean Christopherson" <seanjc@google.com>
Cc: "Oliver Upton" <oupton@kernel.org>,
	"Marc Zyngier" <maz@kernel.org>,
	kvm@vger.kernel.org, kvmarm@lists.linux.dev
Subject: Re: [PATCH 4/9] KVM: selftests: Drop unreachable, dead code from hardware disable test
Date: Thu, 30 Jul 2026 19:30:35 +0000	[thread overview]
Message-ID: <20260730193035.CFEDF1F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260730191908.2084803-5-seanjc@google.com>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] Replacing a blocking `pthread_join` with an infinite busy-wait loop (`while (1);`) in the child process unnecessarily burns CPU and causes scheduler contention with the parent process.
--

--- Patch [4]: [PATCH 4/9] KVM: selftests: Drop unreachable, dead code from hardware disable test ---
commit 80b1aa13e14f4a3f65225bf79adc03a7a8eda318
Author: Sean Christopherson <seanjc@google.com>

KVM: selftests: Drop unreachable, dead code from hardware disable test

This commit removes unreachable code from the hardware disable test to reduce
noise and simplify the test logic. It refactors thread creation and replaces
a blocking wait with a busy loop in the child process.

> diff --git a/tools/testing/selftests/kvm/hardware_disable_test.c b/tools/testing/selftests/kvm/hardware_disable_test.c
> index 1bcbd13e99947..e08aef94382f3 100644
> --- a/tools/testing/selftests/kvm/hardware_disable_test.c
> +++ b/tools/testing/selftests/kvm/hardware_disable_test.c

[ ... ]

> @@ -96,21 +84,19 @@ static void run_test(u32 run)
[ ... ]
>  	pr_debug("%s: [%d] all threads launched\n", __func__, run);
>  	sem_post(sem);
> -	for (i = 0; i < VCPU_NUM; ++i)
> -		check_join(threads[i], &b);
> -	/* Should not be reached */
> -	TEST_ASSERT(false, "%s: [%d] child escaped the ninja", __func__, run);
> +
> +	/* Wait for the parent to SIGKILL this child. */
> +	while (1);

[Severity: Medium]
Since the child and parent share the same CPU affinity, will this busy spin
loop cause unnecessary scheduler contention with the parent process when the
parent's timer fires?

Because the processes are pinned to a single CPU core, spinning in this loop
burns CPU cycles and forces the parent to contend with the spinning child for
CPU time.

Would it be better to use a blocking wait like pause() or sleep() here to
reduce scheduler latency and avoid 100% CPU utilization?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260730191908.2084803-1-seanjc@google.com?part=4

  reply	other threads:[~2026-07-30 19:30 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-30 19:18 [PATCH 0/9] KVM: selftests: Add more syscall wrappers, fix hardware_disable_test Sean Christopherson
2026-07-30 19:19 ` [PATCH 1/9] KVM: selftests: Return the target CPU from pin_task_to_random_cpu() Sean Christopherson
2026-07-30 19:19 ` [PATCH 2/9] KVM: selftests: Extract picking of random CPU from cpu_set_t to separate API Sean Christopherson
2026-07-30 19:19 ` [PATCH 3/9] KVM: selftests: Affine child tasks to other pCPUs in hardware disable test Sean Christopherson
2026-07-30 19:33   ` sashiko-bot
2026-07-30 19:19 ` [PATCH 4/9] KVM: selftests: Drop unreachable, dead code from " Sean Christopherson
2026-07-30 19:30   ` sashiko-bot [this message]
2026-07-30 19:19 ` [PATCH 5/9] KVM: selftests: Add KVM syscall wrapper for pthread_create() Sean Christopherson
2026-07-30 19:30   ` sashiko-bot
2026-07-30 19:19 ` [PATCH 6/9] KVM: selftests: Add KVM syscall wrappers for pthread_{cancel,join}() Sean Christopherson
2026-07-30 19:19 ` [PATCH 7/9] KVM: selftests: Add helper APIs to cancel+join pthreads Sean Christopherson
2026-07-30 19:19 ` [PATCH 8/9] KVM: selftests: Add KVM syscall wrappers for pthread_{g,s}etaffinity_np() Sean Christopherson
2026-07-30 19:29   ` sashiko-bot
2026-07-30 20:24     ` Sean Christopherson
2026-07-30 19:19 ` [PATCH 9/9] KVM: selftests: Clean up global constants in hardware disable test Sean Christopherson

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=20260730193035.CFEDF1F000E9@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=kvm@vger.kernel.org \
    --cc=kvmarm@lists.linux.dev \
    --cc=maz@kernel.org \
    --cc=oupton@kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    --cc=seanjc@google.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.