From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-183.mta0.migadu.com (out-183.mta0.migadu.com [91.218.175.183]) (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 817052BDC3F for ; Tue, 28 Apr 2026 08:01:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.183 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777363288; cv=none; b=b2jIg/9gVufnKakgA4kKoNLHQXSu+oG5QFBrhq1+1rvwHInQjz7A0UkiS2E+eEnRuJfUr7FTpahs6GcLptWKuvnJKBg0eJjfVF83ntvSujsr6/6r3PxOlWeg3TxEdJng9YTNG30rQH5dKrGPAUzzDFkcZd9oCEmVL8nNyaBFzLk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777363288; c=relaxed/simple; bh=lkBWCIF6L2QJunHCW3EUgTULJD3KtI4tQtMkohEHoII=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version:Content-Type; b=ZzFSo9HCJFkd+wR1NCSy+Nwdz81kgNek+OkUhDEZZjldtuh/tcpl1eG/oUGUXMXktvYe3rlUQXi/kCESji0ik8XCbywACUd/koiowYjZRqRz4hUeY/KcplM1GZh23jF1V7i6KW05ZSNuuOCQ2ru36rezLTuDxqoZVhVpLMviQXA= 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=towCCtqY; arc=none smtp.client-ip=91.218.175.183 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="towCCtqY" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1777363280; 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=lkBWCIF6L2QJunHCW3EUgTULJD3KtI4tQtMkohEHoII=; b=towCCtqYHuH6SNf4wfD7z23/nzpdjmjMkhA+LOK3mvK5i14nRHYwwKdjoAXJmFu3Ikxny7 9XKIHQtGHAdspXL7OL0t3g6DIXtIEVfkue756CiEyJ02yAm7OYrCA/7kLwdbG2dPTEI+7R 0kbUt6V3TwirFrtH8q3S+I5CqSUF3MU= From: Lance Yang To: shivankg@amd.com Cc: akpm@linux-foundation.org, david@kernel.org, willy@infradead.org, ziy@nvidia.com, matthew.brost@intel.com, joshua.hahnjy@gmail.com, rakie.kim@sk.com, byungchul@sk.com, gourry@gourry.net, ying.huang@linux.alibaba.com, apopple@nvidia.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Lance Yang Subject: Re: [PATCH v3] mm/migrate: rename PAGE_ migration flags to FOLIO_ Date: Tue, 28 Apr 2026 16:01:00 +0800 Message-Id: <20260428080100.79894-1-lance.yang@linux.dev> In-Reply-To: <20260324190706.964555-4-shivankg@amd.com> References: <20260324190706.964555-4-shivankg@amd.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=UTF-8 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT On Tue, Mar 24, 2026 at 07:07:09PM +0000, Shivank Garg wrote: >These flags only track folio-specific state during migration and are >not used for movable_ops pages. Rename the enum values and the >old_page_state variable to match. > >No functional change. > >Suggested-by: David Hildenbrand >Acked-by: David Hildenbrand (Arm) >Reviewed-by: Zi Yan >Signed-off-by: Shivank Garg >--- Thanks, LGTM. Reviewed-by: Lance Yang