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 2AF4E2D5C8E for ; Thu, 19 Feb 2026 18:31:48 +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=1771525909; cv=none; b=CxjOFBnYxY//tOWOPEiXPnCIcLm751ULcgemc3ZldETKGoFy4e+NfhqVKA6pwYCfNTWlUg6ieP1kZsnlfd8474UAoYVfxd34MGn8GmrynP4y4wMmU0wMEdoxTawxv+gI9HpVecUNa2qNzetSoIMo7GlVyc2dqkcBXY/hmKcqvLw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771525909; c=relaxed/simple; bh=xzDZPHDsibNVx8L8lWSSAf16Wx+g1Q7k3qBR5g/t0iE=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=o1NwLpCZ6gABa+Yx7dDU7rat9IAaQbPk8XwU0XRsi9H+oSVabWET1simRkWSxicVDFs1wx1eW0jFwlLU8M03rI7Kw7/YYpQj33xCDRanV8tNaL3YIh5HA1hCPS5YKQ+OKZCZuIhuYdI+QuNEG2IuD0gMNuLJ+okC0So7ffxqKTs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=CxcaG8Ps; 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="CxcaG8Ps" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B6823C116D0; Thu, 19 Feb 2026 18:31:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1771525908; bh=xzDZPHDsibNVx8L8lWSSAf16Wx+g1Q7k3qBR5g/t0iE=; h=Date:From:To:Cc:Subject:From; b=CxcaG8PsuNK3qnzHwZ1UQ/nw9n7MPJALDkkAHcPgkIxm/58nHnb2GMU8kba6zmP5S ipMXc1QL6+hzeOr/5QEfN8AQE9n5SSLKVGqVpBQ1ghM5fCso0XR8e4v2dFEm3GHPbR jBjo6fx+3SyflA63JU6ePSBnytd4yrVxiD80IsIIMqN2oCh/fwCo/vEuwC9u3ehvcv vXe1Npq70pmnsBmEKzTqNR1zyp2Dbsz42XhYSPU3mRIqAOjv5R0Qh7u6oPnb930div Egek+Nz4b4+492JnR6wWAXn85IXZZuG1oqeCIZDiTvyeCM/muIF0fn2WEB02NNVrE6 v7BZxRRkh2zQA== Date: Thu, 19 Feb 2026 10:31:48 -0800 From: Kees Cook To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Dmitry Baryshkov , Kees Cook Subject: [GIT PULL] kmalloc_obj prep for v7.0-rc1 Message-ID: <202602191029.2F0E7F01@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 kmalloc_obj preparation patches for v7.0-rc1. I'm expecting to send the treewide conversion PR later today (or early tomorrow). Thanks! -Kees The following changes since commit 2b7a25df823dc7d8f56f8ce7c2d2dac391cea9c2: Merge tag 'mm-nonmm-stable-2026-02-18-19-56' of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm (2026-02-18 21:40:16 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git tags/kmalloc_obj-prep-v7.0-rc1 for you to fetch changes up to c732084c891d89a1a0824126b3075999a981bc88: KVM: arm64: vgic: Handle const qualifier from gic_kvm_info allocation type (2026-02-19 10:14:02 -0800) ---------------------------------------------------------------- kmalloc_obj prep for v7.0-rc1 Fixes for return types to prepare for the kmalloc_obj treewide conversion, that haven't yet appeared during the merge window: dm-crypt, dm-zoned, drm/msm, and arm64 kvm. ---------------------------------------------------------------- Kees Cook (4): dm-crypt: Adjust crypt_alloc_tfms_aead() allocation type dm: dm-zoned: Adjust dmz_load_mapping() allocation type drm/msm: Adjust msm_iommu_pagetable_prealloc_allocate() allocation type KVM: arm64: vgic: Handle const qualifier from gic_kvm_info allocation type arch/arm64/kvm/vgic/vgic-init.c | 2 +- drivers/gpu/drm/msm/msm_iommu.c | 2 +- drivers/md/dm-crypt.c | 2 +- drivers/md/dm-zoned-metadata.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) -- Kees Cook