From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-173.mta1.migadu.com (out-173.mta1.migadu.com [95.215.58.173]) (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 DECF42C3260 for ; Wed, 18 Mar 2026 20:22:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.173 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773865371; cv=none; b=SHVw5ylY4BQGGIkuTj5UyV+EEvQWYYrSIwjrQyqhs8s10shm/S/nezjde0AE6XmJ7v73Sl0QhZjBaqRlrmXGSbGMXS2ohQxTtoXlixtwXwdaby9jJducLWtFrymvnOBCPGiCbUU60uHAnHkuePUl3ivGzQDc4WnujJaOQnE5rXY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773865371; c=relaxed/simple; bh=NLU1/9NUI9ESiuGUSExzrH1pZjFywzfoj7wOmiGpNmU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Db1YOe3Tr6+WFOw982TreD/tINDylQGVbcjnIa4THTib2PauG7CnYWwAL1Tfru66cBphxMP+CTlcAElZDQ2ugRJwyik7AzPDCDo46T/dU89PgWLDTkYuC8DCZBvd4Gf7lsquQqVKA3ZP3qSnD3FlXAMYOPxuKLkGwe+ofMMBSso= 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=mz3pjj40; arc=none smtp.client-ip=95.215.58.173 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="mz3pjj40" Date: Wed, 18 Mar 2026 13:22:43 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1773865368; 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: in-reply-to:in-reply-to:references:references; bh=VTOk/HwhDYPUV1Fg9ZS7U7rtMr0TqNQvrYgA9tKBIA0=; b=mz3pjj40DQYyDnViON8JVCrdkK9V89CCMjOgjh02MnBBb63UvdygTXgyi1UNy66u8fjXUb KB/jrNjvA6zIyMZPJm0Fw4grCFJmMkdVLRter3akLXC7ZTOhOy2jzrpD7xZ2omxqHnYYeN Ubv39vsRoDRP0d65j7NT3kZr+5hgj6U= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Shakeel Butt To: Johannes Weiner Cc: Andrew Morton , David Hildenbrand , Yosry Ahmed , Zi Yan , "Liam R. Howlett" , Usama Arif , Kiryl Shutsemau , Dave Chinner , Roman Gushchin , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 4/7] mm: list_lru: deduplicate lock_list_lru() Message-ID: References: <20260318200352.1039011-1-hannes@cmpxchg.org> <20260318200352.1039011-5-hannes@cmpxchg.org> 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 In-Reply-To: <20260318200352.1039011-5-hannes@cmpxchg.org> X-Migadu-Flow: FLOW_OUT On Wed, Mar 18, 2026 at 03:53:22PM -0400, Johannes Weiner wrote: > The MEMCG and !MEMCG paths have the same pattern. Share the code. > > Reviewed-by: David Hildenbrand (Arm) > Signed-off-by: Johannes Weiner Acked-by: Shakeel Butt