From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-186.mta1.migadu.com (out-186.mta1.migadu.com [95.215.58.186]) (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 7891B37F754 for ; Mon, 23 Feb 2026 23:28:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.186 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771889314; cv=none; b=ua7XkQbGRX0bhrvGwy76avdHsgjJKAptWx9767uKqyWlIRkd7NbZkqcBEBYQpqnVqjb0UoONPmGs4lZ9X1m1FRridK6upA9m8Kp1VRZTNuMKqeJxCHOCg6oPxu7B/XLqW2tGBHuY9RtBPKqCiSahEQ0z29FY/nZlL1V2a+8ATSY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771889314; c=relaxed/simple; bh=R34J6jvnkRPZjUFInmh1iWJ7K4DTrcNs8QrCatVBwQ4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=uilhiXe6pn03btjhwk12P7QEu6EihYlFPdriacfNyIVCAa4kVSYdoMgzRhPZ7+8C5CRllKJyxphJqhr6szND3klqdf7G9+eYGbjs10a6YGLRAYBWPsKpJoaCE/RhtKyKiS1MhFFvVnoY0AcVXmsmg8TquOcjL/camVHPvwB9uHA= 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=U9I3TT8y; arc=none smtp.client-ip=95.215.58.186 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="U9I3TT8y" Date: Mon, 23 Feb 2026 15:28:11 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1771889301; 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=GLOdiaqX3yPW7m0nfesCXj4Mjr6o8vyaIg3hDRZrwfg=; b=U9I3TT8y7+uV4deYZUwpc4lIdgTCMA8gOEmXftR1Fmaq+hNfql6+1u3cYtPTi8xDkpb/8y UZpwFxw/9s7pc9xorCwqzRuZJawv6q/Xjd3SQ4PubC1AuBd9EVXJc5/ZQNf6ZH4rDlxEU+ Q97zILbWyMtZuFl4NOxk2bX9/BQBdtg= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Shakeel Butt To: Dmitry Ilvokhin Cc: Andrew Morton , David Hildenbrand , Lorenzo Stoakes , "Liam R. Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , Steven Rostedt , Masami Hiramatsu , Mathieu Desnoyers , Brendan Jackman , Johannes Weiner , Zi Yan , Oscar Salvador , Qi Zheng , Axel Rasmussen , Yuanchu Xie , Wei Xu , linux-kernel@vger.kernel.org, linux-mm@kvack.org, linux-trace-kernel@vger.kernel.org, linux-cxl@vger.kernel.org, kernel-team@meta.com Subject: Re: [PATCH 2/4] mm: convert zone lock users to wrappers Message-ID: References: <7d1ee95201a8870445556e61e47161f46ade8b3b.1770821420.git.d@ilvokhin.com> 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: <7d1ee95201a8870445556e61e47161f46ade8b3b.1770821420.git.d@ilvokhin.com> X-Migadu-Flow: FLOW_OUT On Wed, Feb 11, 2026 at 03:22:14PM +0000, Dmitry Ilvokhin wrote: > Replace direct zone lock acquire/release operations with the > newly introduced wrappers. > > The changes are purely mechanical substitutions. No functional change > intended. Locking semantics and ordering remain unchanged. > > The compaction path is left unchanged for now and will be > handled separately in the following patch due to additional > non-trivial modifications. > > Signed-off-by: Dmitry Ilvokhin Acked-by: Shakeel Butt