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 467AE33ADAE for ; Wed, 25 Mar 2026 21:16:50 +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=1774473410; cv=none; b=LtAMZ/WTI8uAWhn1Sk9BETZt5KUqHqfKhToTzRF6Bkj7QHMtjS45U9mBY0WLAUc6EwOMTT5iVTFAGRs4iGYZ2fjr4udOjDPZf4u7PBnTao+4ZBqSgZhXYnMdO3zwQlZj5zkvgalMZI23NeSPavV3owgd8SGeWYIXn1FavI0IoDY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774473410; c=relaxed/simple; bh=M8iHywxXPm5aObmYUsI+uCSPIMMyKPExuaLU80XuIk8=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=iO7HByA4BeQT0kBvzMqlWMWHjU3A9rTgxxMBW58IdnHgvFM7+oUWgFaiq5+Q+se/dVVzP9Wqok1spyKd8QvW/Az/RE0yOk4kD5NwjccKu3eGVvR9ltbyL0nLGh0pHZ1AmiYmaaBmFsqlOPaPbFZLOoX5t5DkFv/7JaTdW7hOTBY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=rlPgj0Yw; 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="rlPgj0Yw" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DEFACC4CEF7; Wed, 25 Mar 2026 21:16:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1774473409; bh=M8iHywxXPm5aObmYUsI+uCSPIMMyKPExuaLU80XuIk8=; h=Date:From:To:Cc:Subject:From; b=rlPgj0Yw1vtSpvAc9Giq9a02EGV0eNSumOCYdAtpNWmrBqCL/sskTfqFPlfBUDjNa fmvG8gXINrat5Vq8xnJoYQDhghVm23/x/ao6xkDmRGs4QtqeUexgf9G++8w9mK+lqa YKxEMcaJbzS07kUYav1pKvKj6x3o+q5Bn4xtCP72OtD4sRcL2APYHKZ8PPtHAawHMX W0+BFMlaXRTwFmM1C0bkmj38etp8hCRutvoIt9jJAum5lFW2l7tKx4zGrdS3YAOXtl Z9L7R6pzIfEvxpQYjTTTTUu/Sy2e9s497VLyTWPSHmXj1ESqUisTMoTcnvM6msiNXo /LHpjIiIzEUWA== Date: Wed, 25 Mar 2026 14:16:49 -0700 From: Kees Cook To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Kees Cook , Nathan Chancellor Subject: [GIT PULL] hardening fixes for v7.0-rc6 Message-ID: <202603251416.92BCB184@keescook> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Linus, Please pull these two small hardening fixes for v7.0-rc6. Thanks! -Kees The following changes since commit 11439c4635edd669ae435eec308f4ab8a0804808: Linux 7.0-rc2 (2026-03-01 15:39:31 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git tags/hardening-v7.0-rc6 for you to fetch changes up to 7a618ca9b9c4769fc5adf7344bb1dd98f823da22: init/Kconfig: Require a release version of clang-22 for CC_HAS_COUNTED_BY_PTR (2026-03-20 11:51:48 -0700) ---------------------------------------------------------------- hardening fixes for v7.0-rc6 - fix required Clang version for CC_HAS_COUNTED_BY_PTR (Nathan Chancellor) - update Coccinelle script used for kmalloc_obj ---------------------------------------------------------------- Kees Cook (1): coccinelle: kmalloc_obj: Remove default GFP_KERNEL arg Nathan Chancellor (1): init/Kconfig: Require a release version of clang-22 for CC_HAS_COUNTED_BY_PTR init/Kconfig | 2 +- scripts/coccinelle/api/kmalloc_objs.cocci | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) -- Kees Cook