From mboxrd@z Thu Jan 1 00:00:00 1970 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 D411D3A75A2; Thu, 23 Apr 2026 17:26:58 +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=1776965218; cv=none; b=jA2ut32fVzr6jDIq8zDNHbCdkj43r37lCgL9erJx0BDdGwofIXoURaxZS2TA3lXBMNpc2Yg1mVIdCg0187DTeqP3usvm8z24/2saQJWMqiefPQbUArYpd7nw0GvouNTwEQKjlPBWXIA5vyXN7S3dXdsm7p59tamepoQlP0w7g0c= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776965218; c=relaxed/simple; bh=4+ZpLISoNIRbHqDjv0MBVGx4X0awsHsYwas0EO6i6VM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type; b=OhnsbgZtjJDS1j8G5MyKyejVHMNyRHYCefm7ctoBbUvrySQbxKHBzAsky+oGWMxM8Y9+8cufFm08QdLl0ByKTl+t/W5UxuyG55JdZSOYFX0vV1Kkp/NlFHEUdXwPHkEf+X36XPYZavSQRIcKTFcfpCIC24Nh7SXuZqOm8Qr84wk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Q5mEC6gB; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Q5mEC6gB" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4E1E5C2BCAF; Thu, 23 Apr 2026 17:26:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1776965218; bh=4+ZpLISoNIRbHqDjv0MBVGx4X0awsHsYwas0EO6i6VM=; h=From:To:Cc:Subject:Date:From; b=Q5mEC6gBa70Isfvqtz1qcTZOvq6kqHsLgruTkEsJDH9NIzgVuotgTyq09m5a62bYt ExCI9GA5IMg1FJTOt1GS16k7FADizKpecoicfbdHJ50ix7rB5xf6WaxP4iHjTJNKgn qxwdGKZTm+ryVmcDxRaRCY9294F0VJDwF5IBnibBYunVFteyDmTewb8bhMPSBU5Mgy 38HSLNnBZyA+1AkkmYvL56Iue2PJSEvebD83MBKKSrgXt8BMAkxjy9N4y9mrR+GiNi jKN8qvs4722IpQJeU/GpSVCNfupMcVPVSxGv86O+UGH4YIwLWWzn/Nq+0NXTLqFSQM +0iT2UxKB4sow== From: wei.liu@kernel.org To: Linux on Hyper-V List Cc: Wei Liu , =?UTF-8?q?Doru=20Bl=C3=A2nzeanu?= , Magnus Kulke , stable@kernel.org, "K. Y. Srinivasan" , Haiyang Zhang , Dexuan Cui , Long Li , Nuno Das Neves , Roman Kisel , Michael Kelley , Easwar Hariharan , linux-kernel@vger.kernel.org (open list) Subject: [PATCH] mshv: add a missing padding field Date: Thu, 23 Apr 2026 17:26:26 +0000 Message-ID: <20260423172625.1189669-2-wei.liu@kernel.org> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-hyperv@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Wei Liu That was missed when importing the header. Reported-by: Doru Blânzeanu Reported-by: Magnus Kulke Fixes: e68bda71a2384 ("hyperv: Add new Hyper-V headers in include/hyperv") Cc: stable@kernel.org Signed-off-by: Wei Liu --- include/hyperv/hvhdk.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/hyperv/hvhdk.h b/include/hyperv/hvhdk.h index 5e83d3714966..ff7ca9ee1bd4 100644 --- a/include/hyperv/hvhdk.h +++ b/include/hyperv/hvhdk.h @@ -79,6 +79,7 @@ struct hv_vp_register_page { u64 registers[18]; }; + __u8 reserved[8]; /* Volatile XMM registers (HV_X64_REGISTER_CLASS_XMM) */ union { struct { -- 2.43.0