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 B7B0429B79B for ; Wed, 8 Apr 2026 20:07:15 +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=1775678835; cv=none; b=c5yKdnIHQ7Afgr/e+Shhz5U5NJnk8VCWq3eP2UubXxRF+oHHDnu/dCb5O6YcGN4FfavSQaTZYezL2L3O7IZ+ArT3cWnXfjSGAnFOuqHoiCFB5iZJrdqkze57loTPQgkLlLNf282YMNDABzhBU+mLgT0vdJAAMEBr81I9pgJ0ZvI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775678835; c=relaxed/simple; bh=zkMpvfcXurA2nO2kaov6GLyQ92lcLQj1NOJR5OwkUP0=; h=Date:From:To:Cc:Subject:Message-Id:In-Reply-To:References: Mime-Version:Content-Type; b=LkJsENc5rTy4b1mgXTzXCft50UL+wlxQWYzaenZC88lMw2apuQSgbTqalwAhDmDj2TZ5Uc/8KxV/zx9Qr3+Cy8uTv5RIeKcxprMz1DVaRVOgIOpkHbyTKOTg4qvu/uYg8EhHG9Xfl/lU0hELgCCMR2ZBIPYX2/T/gy+KqXgTUA4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b=SaBd3YuC; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux-foundation.org header.i=@linux-foundation.org header.b="SaBd3YuC" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 05B94C19421; Wed, 8 Apr 2026 20:07:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1775678835; bh=zkMpvfcXurA2nO2kaov6GLyQ92lcLQj1NOJR5OwkUP0=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=SaBd3YuCdhQxAdkWNbXgdlSnM/jYGSa2YieQJA6TGn4Gi7PVdxH3vBSE7VNj1yHEY R+ypk9kkxCwnxwY/7zXkHQ+kLYpRChybFCV803VtI0B3C0Y2fsJoXgeK826uT49uVl 8vYuzKpEq03hC2FvhTrlf3SYWcb4zEyJLr1evpNs= Date: Wed, 8 Apr 2026 13:07:15 -0700 From: Andrew Morton To: Michal Hocko Cc: Dmitry Ilvokhin , Vlastimil Babka , Suren Baghdasaryan , Brendan Jackman , Johannes Weiner , Zi Yan , linux-mm@kvack.org, linux-kernel@vger.kernel.org, kernel-team@meta.com, Steven Rostedt Subject: Re: [RESEND PATCH v2 0/8] mm: use spinlock guards for zone lock Message-Id: <20260408130715.d6772b9675b0182bac9fe427@linux-foundation.org> In-Reply-To: References: X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; x86_64-pc-linux-gnu) 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-Transfer-Encoding: 7bit On Wed, 8 Apr 2026 18:42:16 +0200 Michal Hocko wrote: > > Dmitry Ilvokhin (8): > > mm: use zone lock guard in reserve_highatomic_pageblock() > > mm: use zone lock guard in unset_migratetype_isolate() > > mm: use zone lock guard in unreserve_highatomic_pageblock() > > mm: use zone lock guard in set_migratetype_isolate() > > mm: use zone lock guard in take_page_off_buddy() > > mm: use zone lock guard in put_page_back_buddy() > > mm: use zone lock guard in free_pcppages_bulk() > > mm: use zone lock guard in __offline_isolated_pages() > > > > mm/page_alloc.c | 53 ++++++++++++----------------------- > > mm/page_isolation.c | 67 +++++++++++++++++++-------------------------- > > 2 files changed, 45 insertions(+), 75 deletions(-) > > I like the resulting code. For the whole series. > Acked-by: Michal Hocko Thanks. As I mentioned previously, the outcome here hinges on how the developers who work on this code feel about using guard(). Most of them are in hiding at present but that's OK - it's post -rc1 fun.