Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp2686155imu; Mon, 17 Dec 2018 06:16:41 -0800 (PST) X-Google-Smtp-Source: AFSGD/Uwf5cIP7LVUoZaGF6IgGjLzqN5yg9tmZ2LPiQmSDsnPcNhD096DF9DJg1AhAbOvrtZCSJn X-Received: by 2002:a17:902:66e6:: with SMTP id e93mr12519051plk.92.1545056201684; Mon, 17 Dec 2018 06:16:41 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1545056201; cv=none; d=google.com; s=arc-20160816; b=1EMCMBWdbkAAORXCz0uB+VQoK3iQ49Coev11SN6hSaXnI6IqfzCBDyzZhQ8I5kKML6 ZPd1Fpeplyh7fr4Sgm23l5Cev1EIOx9iIyJn8Ry5NsRT8gYkyWgeTVOK1zcRIfS2QgKE UjdOefVfLWzGMbd8DJrX/L+D3L5jN4B1f1oAz0Bk1MCD+xiRr+maYl2ra2YPzTC76SJx lhZcjfRKQB6ZmE4YTa2E0/sEG00CTw1e1t4XuGnCNHoFnah6VM24Qy1H7DTYo9sADcZX Qg/7To5WSc3suIznmUReipvDVB3AjurB9Fzi3UaPzJJrYJciKjlxTWhbI8mYSBhu2hnL XvxQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding :content-language:in-reply-to:mime-version:user-agent:date :message-id:openpgp:from:references:cc:to:subject; bh=SsA0Nqi6jN6ukoCJXrhAhQkqWFcSwT2ApUsjkz/+5AY=; b=G3xGyyaMJPKT1zmnz0rwJU5t/HAusPpONPgz31KzN2nmgRyg17GouPISr4eEkqPlch vKBa4AIA5gtD3gc2VkFG0Jbq8F4J/lWGVCaak4EnaDUUMVV8F38z+R/JoIZGgW/AWLYO 6cCphy0ZRtkacY5DPNLk9IBWR3e3U+t0o/9hy1JEBWwZVSL3pT7hMmt4ishbC/bPG7GT cuEw+36z9rusPITKbQDYkvQrdYuFtTad4uj9RQRCp5jcgzQYUxA4osSoBTuulXufhPsK NJXBXhTQHEbfex1qplgU5FsLvyi33OUbDrzg7AowMEyaM5LfY9RnIqxcSwPdXXfyzsfp jANg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id i5si8082898pgg.279.2018.12.17.06.16.26; Mon, 17 Dec 2018 06:16:41 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731963AbeLQNui (ORCPT + 99 others); Mon, 17 Dec 2018 08:50:38 -0500 Received: from mx2.suse.de ([195.135.220.15]:45666 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726758AbeLQNuh (ORCPT ); Mon, 17 Dec 2018 08:50:37 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 2CD7EAD52; Mon, 17 Dec 2018 13:50:36 +0000 (UTC) Subject: Re: [PATCH 03/14] mm, compaction: Remove last_migrated_pfn from compact_control To: Mel Gorman , Linux-MM Cc: David Rientjes , Andrea Arcangeli , Linus Torvalds , Michal Hocko , ying.huang@intel.com, kirill@shutemov.name, Andrew Morton , Linux List Kernel Mailing References: <20181214230310.572-1-mgorman@techsingularity.net> <20181214230310.572-4-mgorman@techsingularity.net> From: Vlastimil Babka Openpgp: preference=signencrypt Message-ID: <76f7182b-5521-2ee9-fa6f-4331e1eae313@suse.cz> Date: Mon, 17 Dec 2018 14:50:35 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.3.2 MIME-Version: 1.0 In-Reply-To: <20181214230310.572-4-mgorman@techsingularity.net> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/15/18 12:02 AM, Mel Gorman wrote: > The last_migrated_pfn field is a bit dubious as to whether it really helps > but either way, the information from it can be inferred without increasing > the size of compact_control so remove the field. Yeah looks like this won't cause more frequent drains. > Signed-off-by: Mel Gorman Acked-by: Vlastimil Babka