Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp2629154imu; Mon, 17 Dec 2018 05:22:16 -0800 (PST) X-Google-Smtp-Source: AFSGD/UdJg7rZgMi8RZZixmz7/Y/h9gOVWDe4uRa/YOZQADjh7f98kmFompbEJFyoQpMdTEPrvol X-Received: by 2002:a17:902:32c3:: with SMTP id z61mr12648031plb.114.1545052936538; Mon, 17 Dec 2018 05:22:16 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1545052936; cv=none; d=google.com; s=arc-20160816; b=FsNS+s1GZqYDdZdcl09cdlfBzZrlskiz4mABPJxNeH2yPUXdzsRAorMHqdv7W+HBnf 8nTfYjBnimwydYTBFnic8ZKALSjBN/GhBHIjiJobDc476ZOCddOev6bfIngbUEI5hbr0 wq6xRzPSPq+j98vuksSXoQimVp8FvCQAzh045sCJoIC2JditRq4lu9Hf4/uF3X579/xW roh/2uwT0s8REvzbqKgo2YuXVs3qATNPjOeEGwjdhtDUpeBZVuQYQo1lfrC+4VzlVcD0 xDphL61KTb4JKBGO6bQsASjUQguyzE2d6PksMTjGcLliRGBwYaqu3KMnmo1S68GWHGMI DNaQ== 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=5kvKLyiIzyhplKccXeaIAQa4k5YuImBjzBPE/OSx9VA=; b=vErfubbMpOKNXrEdkF2/5h2EBlw74Hm/OFgqlnj/ehCeD7ywGRxt1NoQN14SuW7Nr4 Nx+u7l/2Bbo/sws+b02e0nGmrAaD/zA0vMCz9nUKl7ZlI3y6YpfJXtJfx6XlaUaL6b5N 6HbgBw4JkKxzBBE8e3E20rmk98Dneg96E9B0X41D+7M2rGqtPf1c7EYQ0UTlEpV89Odz RBZ0gtgo8O+kVMu7cF3lOvoyEP3x5p2k3K0VJU4FAeDuThCjC918xdfV+JuJHvdslCFQ NkmCHFcFKwmJirMp1rYF+I2LfFNjdK4fsajCFnotsYMyxSMTHmgKVXcRzDn20Bc7nmeO 0XZA== 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 h191si1959732pgc.302.2018.12.17.05.22.01; Mon, 17 Dec 2018 05:22:16 -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 S1732870AbeLQNUb (ORCPT + 99 others); Mon, 17 Dec 2018 08:20:31 -0500 Received: from mx2.suse.de ([195.135.220.15]:40976 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727464AbeLQNUa (ORCPT ); Mon, 17 Dec 2018 08:20:30 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 11C07ABE6; Mon, 17 Dec 2018 13:20:29 +0000 (UTC) Subject: Re: [PATCH 02/14] mm, compaction: Rearrange 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-3-mgorman@techsingularity.net> From: Vlastimil Babka Openpgp: preference=signencrypt Message-ID: <85aad977-efdd-91ff-8e71-4f17b4695cf2@suse.cz> Date: Mon, 17 Dec 2018 14:20:28 +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-3-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: > compact_control spans two cache lines with write-intensive lines on > both. Rearrange so the most write-intensive fields are in the same > cache line. This has a negligible impact on the overall performance of > compaction and is more a tidying exercise than anything. > > Signed-off-by: Mel Gorman Acked-by: Vlastimil Babka