From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 A924243E49F; Tue, 16 Jun 2026 15:17:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781623055; cv=none; b=nq9qjdv6s/Vt4dtEHUo9c9nRC6d3BQZzg4Uc3RD5EFCryB6XnQiDkNUBG4QvMdqC7GYg7PnYpP6S6iVQTd5pWAYDyeMYkr4HYYa7ql06njeXct0f0cDHlp4x4gt35PVA8qyatX1DJvZzHceSIwDAA6CJs86FY6f9JGopXLDo1gA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781623055; c=relaxed/simple; bh=hegltPWP1Vm3eaO0dlUnmbHkqFNcb9GgZ1mkNFiHwxY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=rUzXrtAtiqDAeamfEi+stgy5Q7S53T4CWJJuURJDSgfYs4XijoFixSgbeyxyYp9DMD/ioq9tlfiVjkwBhiv6tUEx+L+qmdlfOiW1hnuR9TwSWIh4DN6aOIga5mIwGQb5zLye9G5AGjxKn65t8TfyLn6GDmwY2xv7eZ+17QHAq1o= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=2tmrcfMJ; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="2tmrcfMJ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 544151F000E9; Tue, 16 Jun 2026 15:17:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1781623054; bh=79MvhfUvtOrDi4Qv4SF0Ahc7DFwYbLRXpoRC/7dFWks=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=2tmrcfMJqyzSwuoRweexO3eSfZQCFgh5y/SUMe66mtNt+rIEEV5HAnX27FanAYBZH 6Y4RhzRriEOuvyBtqEw28T6u5WMkwWvo9j7ot2yymC+q8xDLfWQr+c9fE+5c0n/cH7 FXUJVEca61W5lqrippC61icKN0iAMJXQmtMZ3Hsk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dexuan Cui , Hamza Mahfooz , Wei Liu , Sasha Levin Subject: [PATCH 7.0 080/378] hyperv: Clean up and fix the guest ID comment in hvgdk.h Date: Tue, 16 Jun 2026 20:25:11 +0530 Message-ID: <20260616145114.409807726@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260616145109.744539446@linuxfoundation.org> References: <20260616145109.744539446@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.0-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dexuan Cui [ Upstream commit 83eb00f31eb1b10735d48e469df72cc2b0e06f6d ] Change the "64 bit" to "64-bit", and the "Os" to "OS". Remove the obsolete paragraph since the guideline has been published in the Hypervisor Top Level Functional Specification for many years. The "OS Type" is 0x1 for Linux, not 0x100. No functional change. Fixes: 83ba0c4f3f31 ("Drivers: hv: Cleanup the guest ID computation") Signed-off-by: Dexuan Cui Reviewed-by: Hamza Mahfooz Signed-off-by: Wei Liu Signed-off-by: Sasha Levin --- include/hyperv/hvgdk.h | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/include/hyperv/hvgdk.h b/include/hyperv/hvgdk.h index 384c3f3ff4a525..f538144280ca55 100644 --- a/include/hyperv/hvgdk.h +++ b/include/hyperv/hvgdk.h @@ -10,18 +10,12 @@ /* * The guest OS needs to register the guest ID with the hypervisor. - * The guest ID is a 64 bit entity and the structure of this ID is + * The guest ID is a 64-bit entity and the structure of this ID is * specified in the Hyper-V TLFS specification. * - * While the current guideline does not specify how Linux guest ID(s) - * need to be generated, our plan is to publish the guidelines for - * Linux and other guest operating systems that currently are hosted - * on Hyper-V. The implementation here conforms to this yet - * unpublished guidelines. - * * Bit(s) * 63 - Indicates if the OS is Open Source or not; 1 is Open Source - * 62:56 - Os Type; Linux is 0x100 + * 62:56 - OS Type; Linux is 0x1 * 55:48 - Distro specific identification * 47:16 - Linux kernel version number * 15:0 - Distro specific identification -- 2.53.0