From nobody Tue Apr 7 07:29:19 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 767461F8AC5 for ; Sat, 14 Mar 2026 20:42:19 +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=1773520939; cv=none; b=mXNQbczBNzxXHdY8yxfr6bFarrE7bmIQUSk0sGN2upF0tgn1kC2eunAdgIX0R1DDEdqy/qmHqyCsROtbDQS44CLCK0F/+A+Uv46VyBivMnUSiUGT2mlk/XWBKetv+nKyHB63qPyT9zOR6av1tCA0TTC0+L1x4uysSaXeX+KT81c= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773520939; c=relaxed/simple; bh=3MyRZyHFOwGHloTPezn9JMoFcYJ0FFqkU9SBJORQdYg=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=ZVjggulOII8j/oFniVMNUtdQGp7Enb9kB3Gty1aMSTvaLE+TcYMohFeAq+pDmBQpN+eWPFmRcKzTVID5ngLa3W/kXTFGImBt79GEO3bnqYhbIbHRgsWfdd3QTggWe9NZPa9Gl4mQSoRc6LGtVnxtGZB9IqkobOK5rK3UnSILI/I= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=XlRKjYZ1; 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="XlRKjYZ1" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CB074C116C6; Sat, 14 Mar 2026 20:42:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773520939; bh=3MyRZyHFOwGHloTPezn9JMoFcYJ0FFqkU9SBJORQdYg=; h=From:To:Cc:Subject:Date:From; b=XlRKjYZ1KGGyHC4B+mLNLD6cwYqWY+togujJ/2nsEemHMDp0HXWa24tW8RhVnOYXB IFnP0OnOaitj1tdccTNaJ3GdhNjV5+A5GujNfrAk0rbzQs7qYRFpX8jXsgLsNIbD10 /32hW8NELhjG9SxQNhyISoHHouAhvIS8dNXwktHtaHwdloJfZmkAO3L+7HjchJzD4U A/73BSIeBECg3PxkuLDUmIcyN4drNmbeMkFz0dtmvw0mZn/9fvFglhbcSNO5V5Sfco qL/cK3jMis4F8x15WyIUEEe+w8xqkMPmYGPXh8fywB9/MkoBEjRULm14yTKtkDRm4K 5STeLDUYpxsNg== From: Eric Biggers To: Andrew Morton , Baoquan He Cc: kexec@lists.infradead.org, linux-kernel@vger.kernel.org, Eric Biggers Subject: [PATCH] kernel/kexec: Remove inclusion of crypto/hash.h Date: Sat, 14 Mar 2026 13:41:44 -0700 Message-ID: <20260314204144.44884-1-ebiggers@kernel.org> X-Mailer: git-send-email 2.53.0 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" kexec_core.c does not do any cryptographic hashing, so the header crypto/hash.h is not needed at all. Signed-off-by: Eric Biggers --- kernel/kexec_core.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/kexec_core.c b/kernel/kexec_core.c index 2fea396d29b97..a43d2da0fe3e7 100644 --- a/kernel/kexec_core.c +++ b/kernel/kexec_core.c @@ -45,11 +45,10 @@ #include =20 #include #include =20 -#include #include "kexec_internal.h" =20 atomic_t __kexec_lock =3D ATOMIC_INIT(0); =20 /* Flag to indicate we are going to kexec a new kernel */ base-commit: 1c9982b4961334c1edb0745a04cabd34bc2de675 --=20 2.53.0