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 2A7A027A907 for ; Sat, 14 Feb 2026 07:25:45 +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=1771053946; cv=none; b=bYX+KiwMDjRP9pzGDQyhxDhhYB+bR1EWblmOaVjsgJFYh4hCajNKlQOYPn0WT1K+qSvsvh0kFTTvVnzJsOnmTbTcu4JPO1GyYvUiZpQRC0GV45DwWq17/r/PHlxq/HFWyvc56Se3kznYUbbBuooct9fEtYBpOE9PrHdJSEjqhc4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771053946; c=relaxed/simple; bh=tuqsMbh1p8jlfKMkzXBIIp942vE25ye6hfGa+4w7SX4=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=WrLtdlOn0Sag+3/Xli9G/g2TsO9QzcP3wfOC2M1hU7wN26U4iHOEXRiVXV2PY4Q/Quak/uRo5RSKql/ivXxVs86dmwrAY+0X1k20CW2cBCGKHxV/T0vF9d6Moyas6WNkq25MkSg29WhbagcxCEqE8h70WH1llH9p/wjJ4qdgOIo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=lWmCGOCd; 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="lWmCGOCd" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8F022C19421; Sat, 14 Feb 2026 07:25:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1771053945; bh=tuqsMbh1p8jlfKMkzXBIIp942vE25ye6hfGa+4w7SX4=; h=Date:From:To:Cc:Subject:From; b=lWmCGOCdrxZSKj9rtrInLm/7C6miTki3S9Hi61RUEOr5oTwlLnUh15GRlIcvi6gqS 5rXu4XawTp/4PHetdyruZeXyfH2zzrvfINQyxVeub13yAveQwkZx0xOkFy7b0mXHBQ NfpS3BD3OWAabUplIYp2qFovficCj5dIj0xVzGgislxfqgleNQZ1Su0r0pbmmENslK tWFIhS0Ri7Bawb2dLaKHc/yx96U6UllkmVyJ7SXmr9c1OxHtATN8yfj2V21XeDGhWD 3ufqHpxZMLXxKF+qy5JA4wrwtVUHZ0g+uf0vjrFx41QRXb0dji9nZy91g0utNQI0Yu ZdILbEEqrNDMw== Date: Sat, 14 Feb 2026 09:25:39 +0200 From: Mike Rapoport To: Linus Torvalds Cc: Andrew Morton , Kevin Lourenco , Mike Rapoport , Shengming Hu , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] memblock updates for v7.0-rc1 Message-ID: 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, The following changes since commit f8f9c1f4d0c7a64600e2ca312dec824a0bc2f1da: Linux 6.19-rc3 (2025-12-28 13:24:26 -0800) are available in the Git repository at: https://git.kernel.org/pub/scm/linux/kernel/git/rppt/memblock tags/memblock-v7.0-rc1 for you to fetch changes up to f56ccc32468ee7885d3a9175e7d2cb608d301521: mm/memtest: add underflow detection for size calculation (2026-01-09 11:53:51 +0200) ---------------------------------------------------------------- memblock: updates for 7.0-rc1 * update tools/include/linux/mm.h to fix memblock tests compilation * drop redundant struct page* parameter from memblock_free_pages() and get struct page from the pfn * add underflow detection for size calculation in memtest and warn about underflow when VM_DEBUG is enabled ---------------------------------------------------------------- Kevin Lourenco (1): mm/memtest: add underflow detection for size calculation Mike Rapoport (Microsoft) (1): memblock test: include from tools mm.h stub Shengming Hu (1): memblock: drop redundant 'struct page *' argument from memblock_free_pages() mm/internal.h | 3 +-- mm/memblock.c | 4 ++-- mm/memtest.c | 2 ++ mm/mm_init.c | 5 +++-- tools/include/linux/mm.h | 1 + tools/testing/memblock/internal.h | 3 +-- 6 files changed, 10 insertions(+), 8 deletions(-) -- Sincerely yours, Mike.