From nobody Tue Apr 7 02:36:14 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 354603D3D18 for ; Mon, 16 Mar 2026 18:35:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773686138; cv=none; b=k6PpueHKV1d+Le1/wmoRZJDuwjosU3X+zZBNHPQKi8A/1PFmluQ+B6AnDK2KRU9XNa+N/UAwNM3eoUEl6kCXB9BtF3jKPIRpUxPaKzkKN8LQhNxyUEZPpmTIgduLfhKWM8JFYCtcIsQVGHy6RQ7JJdKoX+IS5jIRbX6nx/uV13g= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773686138; c=relaxed/simple; bh=MBzQUoMCXO457cK6Ypvc4zLxcHx0q4yPFgnTUagaJA8=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=i0nZvyu8V1/VjPSiCzJzTKBoA14n7HtD4o3Yg9mt7p38CMJEgPXYm85mET2qpFPWkymEhQIWZPJ3b81Qm5zSyIScWqtgNFmn3qlqHQ9GxYgEQ/GY4PScdm5vEPQqWLkJPULamCX3pfK1v6aQ0rsYSYmAlLi8Fu2vvv5naurQcis= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id C8419C19421; Mon, 16 Mar 2026 18:35:37 +0000 (UTC) From: Joseph Salisbury To: Arnaldo Carvalho de Melo , Namhyung Kim , Ingo Molnar , "Pratik R . Sampat" , Sean Christopherson Cc: linux-kernel@vger.kernel.org Subject: [PATCH] tools/x86: kvm: fix comment typo Date: Mon, 16 Mar 2026 14:35:36 -0400 Message-ID: <20260316183536.158105-1-joseph.salisbury@oracle.com> X-Mailer: git-send-email 2.47.3 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The file contains a spelling error in a source comment (compatability). Typos in comments reduce readability and make text searches less reliable for developers and maintainers. Replace 'compatability' with 'compatibility' in the affected comment. This is a comment-only cleanup and does not change behavior. Fixes: c499d1f483a9 ("tools arch kvm: Sync kvm headers with the kernel sour= ces") Cc: stable@vger.kernel.org Signed-off-by: Joseph Salisbury --- tools/arch/x86/include/uapi/asm/kvm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/arch/x86/include/uapi/asm/kvm.h b/tools/arch/x86/include= /uapi/asm/kvm.h index 7ceff6583652..f7d6f22ce5ef 100644 --- a/tools/arch/x86/include/uapi/asm/kvm.h +++ b/tools/arch/x86/include/uapi/asm/kvm.h @@ -547,7 +547,7 @@ struct kvm_nested_state { } hdr; =20 /* - * Define data region as 0 bytes to preserve backwards-compatability + * Define data region as 0 bytes to preserve backwards-compatibility * to old definition of kvm_nested_state in order to avoid changing * KVM_{GET,PUT}_NESTED_STATE ioctl values. */ --=20 2.47.3