From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-177.mta1.migadu.com (out-177.mta1.migadu.com [95.215.58.177]) (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 8954D11193 for ; Wed, 13 Mar 2024 05:10:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.177 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710306659; cv=none; b=vEsAYwP314p68834YKx7P8p+fYvQ2Lwl7bAwodjyFiYedguaMkI5uH9xBlwyiHumRjLmx78MNqjXai0NeUUH1S0nv9pbDqvnUsEw+XF3wjNTK0/GDmAmFRLmCFOPjx9LPNcl4Z7dl6Ht3guPbBmAZ5TPGtosO3EyFCqyBncMYtU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1710306659; c=relaxed/simple; bh=wewy7uaRPeiTZxNNUz+7Jc43Bc5c/R4w0IVXzPUj4qY=; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From: In-Reply-To:Content-Type; b=ASvulLiOztFJ4iRu/BfN4dms7lcyXQyg7Dc93tp/i1uU71XLy2Z7aWFKOjIia7rv8BnX0E0ICPSEMvS1N0VV+BSgEBQBZ0J5LexQzxYRu0w2vyEuJINFtDHktdcg0elW8BvlVtIjvcj2FvjJ/NQD7agqG2MBfGxYOYTs+gzD1GI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=PyEjcNRn; arc=none smtp.client-ip=95.215.58.177 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="PyEjcNRn" Message-ID: <15e3cf4e-f8d3-4706-b667-2575659b5552@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1710306655; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/KYgfvIsMcO/TmdlLE/KJZBk82wNlhv38pmZ/YdZGdw=; b=PyEjcNRnemsMncI1JJwbShz3Q5spPyB8OWIoT1y9FU+GGOPB5XldanrEYgQxmHE+griePS 7MGZkD5qG2dtZ0GngwEpLdK5bCMqBz+2Hd+6EG9XN5I6OBZFbWAHtr533WS0nqMgp8H/Tn QBi09lD4KzjWzBedjn91lpi9qE1TM2s= Date: Wed, 13 Mar 2024 13:10:41 +0800 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Subject: Re: [GIT PULL] slab updates for 6.9 Content-Language: en-US To: Linus Torvalds , Vlastimil Babka Cc: David Rientjes , Joonsoo Kim , Christoph Lameter , Pekka Enberg , Andrew Morton , "linux-mm@kvack.org" , LKML , patches@lists.linux.dev, Roman Gushchin , Hyeonggon Yoo <42.hyeyoo@gmail.com>, Xiongwei Song References: X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Chengming Zhou In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 2024/3/13 11:54, Linus Torvalds wrote: > On Tue, 12 Mar 2024 at 02:55, Vlastimil Babka wrote: >> >> Also deprecate SLAB_MEM_SPREAD which was only >> used by SLAB, so it's a no-op since SLAB removal. Assign it an explicit zero >> value. The removals of the flag usage are handled independently in the >> respective subsystems, with a final removal of any leftover usage planned >> for the next release. > > I already had the patch ready to go: > > https://lore.kernel.org/all/CAHk-=wji0u+OOtmAOD-5JV3SXcRJF___k_+8XNKmak0yd5vW1Q@mail.gmail.com/ > > so I just did a "git stash apply" and got rid of the final stragglers. > No need to have various random maintainers have to worry about a flag > that hasn't had any meaning since 6.7, and very little before that > either. Great! It's better. Thanks for doing this.