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 634DD1B0F19 for ; Fri, 20 Feb 2026 00:37:09 +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=1771547829; cv=none; b=H3KhW1kYNx8hOfRC70CQVSohTNHCN4YkfawjLEkl1xMfS+pgK8UIn030+h90fdl49f8g9qUOMFmaIWWE0ZfzqJR8FmQdHEJI2jRny4c9ByJNs7ShS1MNRoYs12vNee1OIXo+RFUIHsf81skd+Ge0mf1RmZsh+rW7lsZZ9aH/AWs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771547829; c=relaxed/simple; bh=g5CMc919WnT/Ko+Hr9rTvMXTR42y/i3Uxs7t4e11M3g=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=TeYdij2jHV18Ksk45fRI4Qpb/WVGzO8L8xvuRSDUYrHeXfcuKWkp7I+L9k40gvI55gXAsOpdrkOZx0FKbaF288iQAV9AmKkKnvHNIttljaHTWdJ56Q7amQO9y9r/yCc65X0RzFR3lISx1aQ7IQN6uGoHNP1vmio3+31mHbEB4FI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=NYilZCpv; 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="NYilZCpv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A9095C4CEF7; Fri, 20 Feb 2026 00:37:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1771547828; bh=g5CMc919WnT/Ko+Hr9rTvMXTR42y/i3Uxs7t4e11M3g=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NYilZCpvnYHvkEY6+Ja7rnwuyXlDPgevW4jqRfGlevYbXTrf+G2qi0bfyPdDrmtOZ pkUp14i/iXeh+wJ1za0qT3RHDcDQw5j/84hDTbiFDo6bC3q6hSqr1tGpsHOSnDuak/ 7jWfdx1ioLDy9q5HnnAj+JjBzaIhuuIzHOiXRBXETAzzKyphDUIr12gSOAUp4bWZjH jM75ABYgzcjQ2TMtGDCWjGRW/0BlhajGKr0M0QYN3cazZu+f/TcgZqDisl7FdJVVT2 njG8edirz/S+BUvObbLKP3IQPQimxeiXSTvGD6eNnjlET7/2ksfQ9EToC7FtSk3HJo jNmRbZLtVoqug== From: SeongJae Park To: =?UTF-8?q?Miquel=20Sabat=C3=A9=20Sol=C3=A0?= Cc: SeongJae Park , akpm@linux-foundation.org, david@kernel.org, lorenzo.stoakes@oracle.com, Liam.Howlett@oracle.com, vbabka@suse.cz, rppt@kernel.org, surenb@google.com, mhocko@suse.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] mm: fix typo in the comment of mod_zone_state() Date: Thu, 19 Feb 2026 16:37:00 -0800 Message-ID: <20260220003702.72962-1-sj@kernel.org> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260219234407.3261196-1-mssola@mssola.com> References: 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=UTF-8 Content-Transfer-Encoding: 8bit On Fri, 20 Feb 2026 00:44:07 +0100 Miquel Sabaté Solà wrote: > Use the proper function name, followed by parenthesis as usual. I'm not sure if it is really a typo, or was speaking about the general this_cpu_cmpxchg() variants. Either way, the change makes sense to me, though. > > Signed-off-by: Miquel Sabaté Solà Acked-by: SeongJae Park Thanks, SJ [...]