Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp3664110yba; Tue, 23 Apr 2019 07:36:48 -0700 (PDT) X-Google-Smtp-Source: APXvYqxrRLjWLMXe3pTjlw5HWyzDwkFBLOOzFKSL+bSqmGbQdY5c8j1Azey5uvWGCrS7sOweZ9iw X-Received: by 2002:a65:6489:: with SMTP id e9mr24424447pgv.364.1556030207973; Tue, 23 Apr 2019 07:36:47 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1556030207; cv=none; d=google.com; s=arc-20160816; b=XhlpR+HD4BWI+LGnanhhpuIeDToqX3asepaB0TFfnw5cA1Xz0MfXeLJlhbyrU273d6 Ni6exFPxFpKjHwU1J53lStnNhytJi0GzT0JbBR51dNbaWfbGJVudqvL5jC5FbTJO0JSe pzMZWusRCetJIEW78/V2talDAEHTZBAIAzNCINK9J0ThSKl3HPtDkclAkuVWbrcGMkrV gk6bzCFLhUlpNDglJRL7P/U5KVDGfCbSY9AcOhutpY4qqzdlfa3lNI2TSgPC7+IKw/DY 1zWGq0N0QVoSWSQuONcd+TXPhtcqQGVPACPZ0SGwTb6u3HKtnnz8/4R+S9Z21TqmHONv mqmQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=gsDrQzndwT6J1SDmOesp5ETe0qGalQbPzULyQ2iff3M=; b=SToR45GgXKxUu5/aypUt6Ru8+CKXC93aYpMqxgM8E1eL1Fdzcx0yiloO4+JS2ctohn tKEEt/crVSroHV5iIJyf+Uu9SGg0f+yQXfbH+D1pEjDO00lMovVZfV8oku4f5A09RGud lZrOVx88X1iGMPuPYXeg9NA7PStD9HFT5hc48kj9/WQPan8ax7Af4gKwhYeVQpZX9ox7 xhRHU8J+LSJQ/P4NFJdSjSAjmrLDPDbrG8Lj9mnFnN8XhWiF4/+8aJRVaadIHqfQz9GB nbDw0tZkm2Ee/ljGnFVt5mWRpcZ4VLQE8XZnV98Hb5GfGEAmNigwt3C2h8uRnvtbHud0 x38g== 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 i61si16666454plb.330.2019.04.23.07.36.31; Tue, 23 Apr 2019 07:36:47 -0700 (PDT) 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 S1728120AbfDWOfS (ORCPT + 99 others); Tue, 23 Apr 2019 10:35:18 -0400 Received: from outbound-smtp18.blacknight.com ([46.22.139.245]:49972 "EHLO outbound-smtp18.blacknight.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727228AbfDWOfS (ORCPT ); Tue, 23 Apr 2019 10:35:18 -0400 Received: from mail.blacknight.com (pemlinmail05.blacknight.ie [81.17.254.26]) by outbound-smtp18.blacknight.com (Postfix) with ESMTPS id C04AC1C25D3 for ; Tue, 23 Apr 2019 15:35:16 +0100 (IST) Received: (qmail 21554 invoked from network); 23 Apr 2019 14:35:16 -0000 Received: from unknown (HELO techsingularity.net) (mgorman@techsingularity.net@[37.228.225.79]) by 81.17.254.9 with ESMTPSA (AES256-SHA encrypted, authenticated); 23 Apr 2019 14:35:16 -0000 Date: Tue, 23 Apr 2019 15:35:15 +0100 From: Mel Gorman To: Andrey Ryabinin Cc: Andrew Morton , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/2] mm/page_alloc: fix never set ALLOC_NOFRAGMENT flag Message-ID: <20190423143515.GP18914@techsingularity.net> References: <20190423120806.3503-1-aryabinin@virtuozzo.com> <20190423120806.3503-2-aryabinin@virtuozzo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20190423120806.3503-2-aryabinin@virtuozzo.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Apr 23, 2019 at 03:08:06PM +0300, Andrey Ryabinin wrote: > Commit 0a79cdad5eb2 ("mm: use alloc_flags to record if kswapd can wake") > removed setting of the ALLOC_NOFRAGMENT flag. Bring it back. > > Fixes: 0a79cdad5eb2 ("mm: use alloc_flags to record if kswapd can wake") > Signed-off-by: Andrey Ryabinin Acked-by: Mel Gorman -- Mel Gorman SUSE Labs