Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759727AbcJRLLZ (ORCPT ); Tue, 18 Oct 2016 07:11:25 -0400 Received: from szxga02-in.huawei.com ([119.145.14.65]:22014 "EHLO szxga02-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751905AbcJRLLR (ORCPT ); Tue, 18 Oct 2016 07:11:17 -0400 Subject: Re: [PATCH] bdi flusher should not be throttled here when it fall into buddy slow path To: Mel Gorman References: <1476774765-21130-1-git-send-email-zhouxianrong@huawei.com> <20161018095912.GD22174@techsingularity.net> CC: , , , , , , , , , , , , , , , From: zhouxianrong Message-ID: <1f606d0e-791b-31ea-94b2-2c9713b7c176@huawei.com> Date: Tue, 18 Oct 2016 19:08:05 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:45.0) Gecko/20100101 Thunderbird/45.0 MIME-Version: 1.0 In-Reply-To: <20161018095912.GD22174@techsingularity.net> Content-Type: text/plain; charset="iso-8859-15"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [10.142.145.228] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3265 Lines: 65 Call trace: [] __switch_to+0x80/0x98 [] __schedule+0x314/0x854 [] schedule+0x48/0xa4 [] schedule_timeout+0x158/0x2c8 [] io_schedule_timeout+0xbc/0x14c [] wait_iff_congested+0x1d4/0x1ec [] shrink_inactive_list+0x530/0x760 [] shrink_lruvec+0x534/0x76c [] shrink_zone+0x88/0x1b8 [] do_try_to_free_pages+0x240/0x478 [] try_to_free_pages+0x10c/0x284 [] __alloc_pages_nodemask+0x540/0x918 [] new_slab+0x334/0x4a0 [] __slab_alloc.isra.75.constprop.77+0x6bc/0x780 [] kmem_cache_alloc+0x144/0x23c [] mempool_alloc_slab+0x2c/0x38 [] mempool_alloc+0x7c/0x188 [] bio_alloc_bioset+0x1cc/0x254 [] _submit_bh+0x74/0x1c8 [] __block_write_full_page.constprop.33+0x1a0/0x40c [] block_write_full_page+0xe0/0x134 [] blkdev_writepage+0x30/0x3c [] __writepage+0x34/0x74 [] write_cache_pages+0x1e8/0x450 [] generic_writepages+0x54/0x8c [] do_writepages+0x40/0x6c [] __writeback_single_inode+0x60/0x51c [] writeback_sb_inodes+0x2d4/0x46c [] __writeback_inodes_wb+0xa4/0xe8 [] wb_writeback+0x314/0x3fc [] bdi_writeback_workfn+0x130/0x4e0 [] process_one_work+0x18c/0x51c [] worker_thread+0x15c/0x51c [] kthread+0x10c/0x120 the above calltrace occured when write sdcard under large and long pressure. the patch is a performance issue. i hope flusher do not be throttled just here and let it reclaim the successive clean file pages or anonymous pages on lru list and then return to write left dirty pages of inode. it would speed up write-back speed of dirty pages. so other direct reclaimers can reclaim more clean pages. in low memory caused by big pagecache bdi writeback speed play a key role. On 2016/10/18 17:59, Mel Gorman wrote: > On Tue, Oct 18, 2016 at 03:12:45PM +0800, zhouxianrong@huawei.com wrote: >> From: z00281421 >> >> bdi flusher may enter page alloc slow path due to writepage and kmalloc. >> in that case the flusher as a direct reclaimer should not be throttled here >> because it can not to reclaim clean file pages or anaonymous pages >> for next moment; furthermore writeback rate of dirty pages would be >> slow down and other direct reclaimers and kswapd would be affected. >> bdi flusher should be iosceduled by get_request rather than here. >> >> Signed-off-by: z00281421 > > What does this patch do that PF_LESS_THROTTLE is not doing already if > there is an underlying BDI? > > There have been a few patches like this recently that look like they might > do something useful but are subtle. They really should be accompanied by > a test case and data showing they either fix a functional issue (machine > livelocking due to writeback not making progress) or a performance issue. >