Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5BC67C636D4 for ; Tue, 7 Feb 2023 16:22:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232383AbjBGQWq (ORCPT ); Tue, 7 Feb 2023 11:22:46 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45168 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229727AbjBGQWo (ORCPT ); Tue, 7 Feb 2023 11:22:44 -0500 Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4B7CE1A5 for ; Tue, 7 Feb 2023 08:22:43 -0800 (PST) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id F32FC3E726; Tue, 7 Feb 2023 16:22:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1675786962; h=from:from:reply-to: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=IgIaY+60H9Y4KDbp25QpOtfJ5cBNJYAa5+eQFcyi++M=; b=l+aBA5K0ZCAKDMsX5l2FhnIqf0HMshopWWSKhvrTluaMaK7c3uAKeAzUQwkuHkHrtytGjY exssZZ/T2qRqwK+FvUrSm6SgMi3xvHUVuP9wrzgEEx3BgS59KiataikswozBF5pSG6c4U6 EUbtjg4x19MY5UuSLk0OSy2vjbTsVt4= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1675786962; h=from:from:reply-to: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=IgIaY+60H9Y4KDbp25QpOtfJ5cBNJYAa5+eQFcyi++M=; b=Vz6Fa+fw1cBTMn0w/OQJczz8doUugENLz4kFazkktieQrpYaPyq4nVHqwhZ3Vz6WXsqgz5 5EIgveqQBwtjFYDQ== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id CC2B2139ED; Tue, 7 Feb 2023 16:22:41 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id fxQcMdF64mPJQQAAMHmgww (envelope-from ); Tue, 07 Feb 2023 16:22:41 +0000 Message-ID: <9cbde82c-b8e0-cb79-4a22-2b4cf2c7bd34@suse.cz> Date: Tue, 7 Feb 2023 17:22:41 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1 Subject: Re: [PATCH 1/4] mm, compaction: Rename compact_control->rescan to finish_pageblock Content-Language: en-US To: Mel Gorman Cc: Andrew Morton , Jiri Slaby , Maxim Levitsky , Michal Hocko , Pedro Falcato , Paolo Bonzini , Chuyi Zhou , Linux-MM , LKML References: <20230125134434.18017-1-mgorman@techsingularity.net> <20230125134434.18017-2-mgorman@techsingularity.net> From: Vlastimil Babka In-Reply-To: <20230125134434.18017-2-mgorman@techsingularity.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 1/25/23 14:44, Mel Gorman wrote: > The rescan field was not well named albeit accurate at the time. Rename the > field to finish_pageblock to indicate that the remainder of the pageblock > should be scanned regardless of COMPACT_CLUSTER_MAX. The intent is that > pageblocks with transient failures get marked for skipping to avoid > revisiting the same pageblock. > > Signed-off-by: Mel Gorman Acked-by: Vlastimil Babka