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 B34D3280318 for ; Fri, 13 Mar 2026 09:20:27 +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=1773393627; cv=none; b=LTsSOp0itD8wxD6eXaF+UHhC0lyOiJamztHVREKTKwpWIl93edN12yr9RyZ/eYsVlox8LAPEC/NXnK42mYlPORG/x/7cd3yfV/JDDY6D+gwg6t4BCkZbqCr4IZVGwsxe9z3qLpkLJgpMANQR94iuv89S2d1FGkT5tgwmw7awVKE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773393627; c=relaxed/simple; bh=HsNnN1Pn91LzaF3IAb3xI53vglIsVSL5eymXeouw0sQ=; h=Message-ID:Date:MIME-Version:From:Subject:To:Cc:Content-Type; b=c1DMRtHDnvDvdE4Qx6NjcH6NiNuZ35NI5ESy9EKiNQv+0rv90Q8Pmr7zuoyGoSmdKS2a7hiWEaFCeuImWu6Eorqp3yNVIrUdh0EeITTtd3AQU4WJyQFDKOH3x1j+qKm9d7xOpAdM1K1yHZd7rdFa/3TSODbpbb4mhUsxb3e+fgY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=GOgCDnG7; 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="GOgCDnG7" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 9AF4DC19421; Fri, 13 Mar 2026 09:20:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1773393627; bh=HsNnN1Pn91LzaF3IAb3xI53vglIsVSL5eymXeouw0sQ=; h=Date:From:Subject:To:Cc:From; b=GOgCDnG7X1VCoYONbw4nrOC+zzPrCKPo3NlD2qA3R+OvlTGVZZrShrrPhuusfc5ug Cg5Pw3MySATuRaLTe7OmKfwMe3gC9sKXOo4yeS3YCC96qBsrbJwlRYhWDfTS161KXt 5hs94BcG2IkGjm8FgP4Ky6iqUx06X9U9h+ZAYnH/qndPwGAkzO7QyaY33XupcAgFW6 fQTc1gUENgx11iv4nrr7v5E4E67FmrSYe9JwTC5HxBaERju1WXbWoVjzihaNMa6u2z IaZtLKvgRiZoa94Kp88p85d3i6R+hJaiAQPHsWfDPJ8Iu1rM1m+18Ntf3qwajlquvl UVZBrI1E2lViw== Message-ID: <77adefa6-8aa8-44ad-bb01-9f1fe33c8f7d@kernel.org> Date: Fri, 13 Mar 2026 10:20:23 +0100 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird From: "Vlastimil Babka (SUSE)" Subject: [GIT PULL] slab fixes for 7.0-rc3 To: Linus Torvalds Cc: Andrew Morton , Harry Yoo , David Rientjes , Christoph Lameter , Roman Gushchin , "linux-mm@kvack.org" , LKML , Hao Li Content-Language: en-US Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hi Linus, please pull the latest slab fixes from: git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git tags/slab-for-7.0-rc3 Thanks, Vlastimil ====================================== - Fix for a memory leak that can occur when already so low on memory that we can't allocate a new slab anymore. (Qing Wang) - Fix for a case where slabobj_ext array for a slab might be allocated from the same slab, making it permanently non-freeable. (Harry Yoo) ---------------------------------------------------------------- The following changes since commit 6432f15c818cb30eec7c4ca378ecdebd9796f741: mm/slab: change stride type from unsigned short to unsigned int (2026-03-04 11:05:57 +0100) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git tags/slab-for-7.0-rc3 for you to fetch changes up to 464b1c115852fe025635ae2065e00caced184d92: slab: fix memory leak when refill_sheaf() fails (2026-03-11 17:55:26 +0100) ---------------------------------------------------------------- slab fixes for 7.0-rc3 ---------------------------------------------------------------- Harry Yoo (1): mm/slab: fix an incorrect check in obj_exts_alloc_size() Qing Wang (1): slab: fix memory leak when refill_sheaf() fails mm/slub.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-)