From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pg0-f70.google.com (mail-pg0-f70.google.com [74.125.83.70]) by kanga.kvack.org (Postfix) with ESMTP id EA33F6B0253 for ; Mon, 27 Nov 2017 03:21:15 -0500 (EST) Received: by mail-pg0-f70.google.com with SMTP id c123so28386847pga.17 for ; Mon, 27 Nov 2017 00:21:15 -0800 (PST) Received: from mx2.suse.de (mx2.suse.de. [195.135.220.15]) by mx.google.com with ESMTPS id j21si22674333pga.622.2017.11.27.00.21.14 for (version=TLS1 cipher=AES128-SHA bits=128/128); Mon, 27 Nov 2017 00:21:14 -0800 (PST) Date: Mon, 27 Nov 2017 09:21:12 +0100 From: Michal Hocko Subject: Re: [PATCH] mm: print a warning once the vm dirtiness settings is illogical Message-ID: <20171127082112.b7elnzy24qiqze46@dhcp22.suse.cz> References: <201711261142.EIE82842.LFOtSHOFVOFJQM@I-love.SAKURA.ne.jp> <201711261703.HDI52138.JSFVOFOtHLMOFQ@I-love.SAKURA.ne.jp> <201711261938.BCD34864.QLVFOSJFHOtOFM@I-love.SAKURA.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: owner-linux-mm@kvack.org List-ID: To: Yafang Shao Cc: Tetsuo Handa , Andrew Morton , Jan Kara , Linux MM , fcicq@fcicq.net On Mon 27-11-17 16:06:50, Yafang Shao wrote: > +cc fcicq [...] > diff --git a/mm/page-writeback.c b/mm/page-writeback.c > index 8a15511..6c5c018 100644 > --- a/mm/page-writeback.c > +++ b/mm/page-writeback.c > @@ -377,7 +377,16 @@ static unsigned long global_dirtyable_memory(void) > if (!vm_highmem_is_dirtyable) > x -= highmem_dirtyable_memory(x); > > - return x + 1; /* Ensure that we never return 0 */ > + /* > + * - Why 100 ? > + * - Because the return value will be used by dirty ratio and > + * dirty background ratio to calculate dirty thresh and bg thresh, > + * so if the return value is two small, the thresh value maybe > + * calculated to 0. > + * As the max value of ratio is 100, so the return value is added > + * by 100 here. > + */ > + return x + 100; No. We should just revert 0f6d24f87856 ("mm/page-writeback.c: print a warning if the vm dirtiness settings are illogical") because it is of a dubious value and it causes problems. I am not even sure why it got merged. It doesn't have any ack or review and I remember objecting to the patch previously as pointless. -- Michal Hocko SUSE Labs -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org