From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A7D6BC636CA for ; Mon, 19 Jul 2021 02:33:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7F06C61019 for ; Mon, 19 Jul 2021 02:33:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234270AbhGSCgD (ORCPT ); Sun, 18 Jul 2021 22:36:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39444 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233759AbhGSCgC (ORCPT ); Sun, 18 Jul 2021 22:36:02 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2D1FFC061762 for ; Sun, 18 Jul 2021 19:33:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=lBjjp8J+Tqp3xf+vSwlOPlck4yC59kCbKLbvN+rwOQo=; b=OU8b6Fi3bGUkzahn3rv2irVKz/ F0xgLdF2gIz+hruxrPCn521Lq/o1L/xVYqU6byGSZgc5KKVvBz+PQtvyNZDupbviD/T8z5fl6CRXz Mv93QgE0uV11ZbpP+/lBo35KdbSF0H1IRD17gFPd6gk6hbNhlHn34XMGn8+ecTDXQ5GA2I+RJx/8a BVWos6zsAlo5HBxHYXB287FltwRfpxOvVJYIU5Nm649ZRI69ybRr2nleLsjuWLIJMXaspnYmTJ4jL RCFcByctmMFZrQHjlk3fDYWZoRoxTwRoFz3zXZmV3ZAKT8oeq9FMrmk6jem7DpFw8oXCZpq1yE/IV 0C4mni/g==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1m5J4R-006Stc-3p; Mon, 19 Jul 2021 02:32:11 +0000 Date: Mon, 19 Jul 2021 03:31:51 +0100 From: Matthew Wilcox To: Chanho Min Cc: Andrew Morton , linux-mm@kvack.org, linux-kernel@vger.kernel.org, "Kirill A . Shutemov" , Gunho Lee , Juneho Choi , Inkyu Hwang Subject: Re: [PATCH] mm: make falutaround selectable Message-ID: References: <20210719010845.31898-1-chanho.min@lge.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210719010845.31898-1-chanho.min@lge.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jul 19, 2021 at 10:08:45AM +0900, Chanho Min wrote: > While faultaround can have performance gains, on certain platform it > increases pss and causes swap to occur more frequently. This patch allows > to unselect faultaround on platforms that do not want this behavior. It would be better if we could determine the circumstances under which faultaround is causing problems and automatically disable it without asking the sysadmin to determine that. Can you tell us more about the workload?