From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-184.mta0.migadu.com (out-184.mta0.migadu.com [91.218.175.184]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4E1AA33372B for ; Mon, 22 Dec 2025 18:14:08 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.184 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1766427250; cv=none; b=d4uEcO4ivM2cLlxPlfp3MwZBpjWmtsr0FSvqeeyUw6k6R2kRZResOeFZCu4AHpPd949bgFQjjrWh+qVRgFVy3WDpmYld4A779eyv0W/pLTdSUG+rduMymdWGr/1l8hfYvQuWeldzDL3//hIsSRGvVBmoL/eneD4ZFo7BSZNZCY8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1766427250; c=relaxed/simple; bh=EyyOb4PKxtLYhAmad4I67cewqyzz2pY3nBCwkpU0xJ4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=fpnwpUOdz6ctPwapfL3O7nKkSKbv4PVdu4CkqLBxY3nAUm+/ow5AjOhilHF+WDGkn/O5BWbD07oF4X9Rc2uBWgRVo3QKlvieaGnTZlkZZWJNtSkhGlN2JUqaSiy0o0QqqJVH8IFcdjgDHToDBs+G/sHYwjlBb+L1+JvR1lnP0R4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=mSmweQke; arc=none smtp.client-ip=91.218.175.184 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="mSmweQke" Date: Mon, 22 Dec 2025 12:13:58 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1766427242; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=zbdPyaZPt9HJuw5KayESUOdJwXP9h3ishpTKFDCnuOw=; b=mSmweQkezDjTlowvtfQ01ceqsPrAlzTD82wZ81Ff/00w8pOs5trd9BEiiRITc9iGRwWqQE U/PavRPG/J60U79SSPVmg4xwSrDn4IJoYOGYeQTXAHSpAXw8IwtCaDe2eKFVAII3U53+5c VessnowekdTgPsJucK4sOf+amI3vf58= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Andrew Jones To: Fuad Tabba Cc: kvm@vger.kernel.org, kvm-riscv@lists.infradead.org, kvmarm@lists.linux.dev, linux-arm-kernel@lists.infradead.org, maz@kernel.org, oliver.upton@linux.dev, joey.gouly@arm.com, suzuki.poulose@arm.com, yuzenghui@huawei.com, will@kernel.org, pbonzini@redhat.com, shuah@kernel.org, anup@brainfault.org Subject: Re: [PATCH v2 5/5] KVM: selftests: Fix typos and stale comments in kvm_util Message-ID: <20251222-5d40dd87b6e6d0308ff1e900@orel> References: <20251215165155.3451819-1-tabba@google.com> <20251215165155.3451819-6-tabba@google.com> Precedence: bulk X-Mailing-List: kvmarm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20251215165155.3451819-6-tabba@google.com> X-Migadu-Flow: FLOW_OUT On Mon, Dec 15, 2025 at 04:51:55PM +0000, Fuad Tabba wrote: > Fix minor documentation errors in `kvm_util.h` and `kvm_util.c`. > > - Correct the argument description for `vcpu_args_set` in `kvm_util.h`, > which incorrectly listed `vm` instead of `vcpu`. > - Fix a typo in the comment for `kvm_selftest_arch_init` ("exeucting" -> > "executing"). > - Correct the return value description for `vm_vaddr_unused_gap` in > `kvm_util.c` to match the implementation, which returns an address "at > or above" `vaddr_min`, not "at or below". > > No functional change intended. > > Signed-off-by: Fuad Tabba > --- > tools/testing/selftests/kvm/include/kvm_util.h | 4 ++-- > tools/testing/selftests/kvm/lib/kvm_util.c | 2 +- > 2 files changed, 3 insertions(+), 3 deletions(-) > Reviewed-by: Andrew Jones